diff --git a/stage0/src/CMakeLists.txt b/stage0/src/CMakeLists.txt index de76e3ce42..976841c154 100644 --- a/stage0/src/CMakeLists.txt +++ b/stage0/src/CMakeLists.txt @@ -299,13 +299,12 @@ if(${CMAKE_SYSTEM_NAME} MATCHES "Darwin") cmake_path(GET ZLIB_LIBRARY PARENT_PATH ZLIB_LIBRARY_PARENT_PATH) string(APPEND LEANSHARED_LINKER_FLAGS " -L ${ZLIB_LIBRARY_PARENT_PATH}") endif() - string(APPEND LEANC_STATIC_LINKER_FLAGS " -lleancpp -lInit -lLean -lleanrt") + string(APPEND TOOLCHAIN_STATIC_LINKER_FLAGS " -lleancpp -lInit -lLean -lleanrt") elseif(${CMAKE_SYSTEM_NAME} MATCHES "Emscripten") - string(APPEND LEANC_STATIC_LINKER_FLAGS " -lleancpp -lInit -lLean -lnodefs.js -lleanrt") + string(APPEND TOOLCHAIN_STATIC_LINKER_FLAGS " -lleancpp -lInit -lLean -lnodefs.js -lleanrt") else() - string(APPEND LEANC_STATIC_LINKER_FLAGS " -Wl,--start-group -lleancpp -lLean -Wl,--end-group -Wl,--start-group -lInit -lleanrt -Wl,--end-group") + string(APPEND TOOLCHAIN_STATIC_LINKER_FLAGS " -Wl,--start-group -lleancpp -lLean -Wl,--end-group -Wl,--start-group -lInit -lleanrt -Wl,--end-group") endif() -string(APPEND LEANC_STATIC_LINKER_FLAGS " -lLake") set(LEAN_CXX_STDLIB "-lstdc++" CACHE STRING "C++ stdlib linker flags") @@ -313,8 +312,11 @@ if(${CMAKE_SYSTEM_NAME} MATCHES "Darwin") set(LEAN_CXX_STDLIB "-lc++") endif() -string(APPEND LEANC_STATIC_LINKER_FLAGS " ${LEAN_CXX_STDLIB}") -string(APPEND LEANSHARED_LINKER_FLAGS " ${LEAN_CXX_STDLIB}") +string(APPEND TOOLCHAIN_STATIC_LINKER_FLAGS " ${LEAN_CXX_STDLIB}") +string(APPEND TOOLCHAIN_SHARED_LINKER_FLAGS " ${LEAN_CXX_STDLIB}") + +# flags for user binaries = flags for toolchain binaries + Lake +string(APPEND LEANC_STATIC_LINKER_FLAGS " ${TOOLCHAIN_STATIC_LINKER_FLAGS} -lLake") if (LLVM) string(APPEND LEANSHARED_LINKER_FLAGS " -L${LLVM_CONFIG_LIBDIR} ${LLVM_CONFIG_LDFLAGS} ${LLVM_CONFIG_LIBS} ${LLVM_CONFIG_SYSTEM_LIBS}") @@ -342,9 +344,9 @@ endif() # get rid of unused parts of C++ stdlib if(${CMAKE_SYSTEM_NAME} MATCHES "Darwin") - string(APPEND LEANSHARED_LINKER_FLAGS " -Wl,-dead_strip") + string(APPEND TOOLCHAIN_SHARED_LINKER_FLAGS " -Wl,-dead_strip") elseif(NOT ${CMAKE_SYSTEM_NAME} MATCHES "Emscripten") - string(APPEND LEANSHARED_LINKER_FLAGS " -Wl,--gc-sections") + string(APPEND TOOLCHAIN_SHARED_LINKER_FLAGS " -Wl,--gc-sections") endif() if(NOT ${CMAKE_SYSTEM_NAME} MATCHES "Darwin") @@ -354,26 +356,20 @@ endif() if(${CMAKE_SYSTEM_NAME} MATCHES "Linux") if(BSYMBOLIC) string(APPEND LEANC_SHARED_LINKER_FLAGS " -Wl,-Bsymbolic") - string(APPEND LEANSHARED_LINKER_FLAGS " -Wl,-Bsymbolic") + string(APPEND TOOLCHAIN_SHARED_LINKER_FLAGS " -Wl,-Bsymbolic") endif() string(APPEND CMAKE_CXX_FLAGS " -fPIC -ftls-model=initial-exec") string(APPEND LEANC_EXTRA_FLAGS " -fPIC") - string(APPEND LEANSHARED_LINKER_FLAGS " -Wl,-rpath=\\$$ORIGIN/..:\\$$ORIGIN") - string(APPEND CMAKE_EXE_LINKER_FLAGS " -lleanshared -Wl,-rpath=\\\$ORIGIN/../lib:\\\$ORIGIN/../lib/lean") + string(APPEND TOOLCHAIN_SHARED_LINKER_FLAGS " -Wl,-rpath=\\$$ORIGIN/..:\\$$ORIGIN") + string(APPEND CMAKE_EXE_LINKER_FLAGS " -Wl,-rpath=\\\$ORIGIN/../lib:\\\$ORIGIN/../lib/lean") elseif(${CMAKE_SYSTEM_NAME} MATCHES "Darwin") string(APPEND CMAKE_CXX_FLAGS " -ftls-model=initial-exec") + string(APPEND INIT_SHARED_LINKER_FLAGS " -install_name @rpath/libInit_shared.dylib") string(APPEND LEANSHARED_LINKER_FLAGS " -install_name @rpath/libleanshared.dylib") - string(APPEND CMAKE_EXE_LINKER_FLAGS " -lleanshared -Wl,-rpath,@executable_path/../lib -Wl,-rpath,@executable_path/../lib/lean") + string(APPEND CMAKE_EXE_LINKER_FLAGS " -Wl,-rpath,@executable_path/../lib -Wl,-rpath,@executable_path/../lib/lean") elseif(${CMAKE_SYSTEM_NAME} MATCHES "Emscripten") string(APPEND CMAKE_CXX_FLAGS " -fPIC") string(APPEND LEANC_EXTRA_FLAGS " -fPIC") - # We do not use dynamic linking via leanshared for Emscripten to keep things - # simple. (And we are not interested in `Lake` anyway.) To use dynamic - # linking, we would probably have to set MAIN_MODULE=2 on `leanshared`, - # SIDE_MODULE=2 on `lean`, and set CMAKE_SHARED_LIBRARY_SUFFIX to ".js". - string(APPEND CMAKE_EXE_LINKER_FLAGS " -Wl,--whole-archive -lInit -lLean -lleancpp -lleanrt ${EMSCRIPTEN_SETTINGS} -lnodefs.js -s EXIT_RUNTIME=1 -s MAIN_MODULE=1 -s LINKABLE=1 -s EXPORT_ALL=1") -elseif(${CMAKE_SYSTEM_NAME} MATCHES "Windows") - string(APPEND CMAKE_EXE_LINKER_FLAGS " -lleanshared") endif() if(${CMAKE_SYSTEM_NAME} MATCHES "Linux") @@ -399,7 +395,7 @@ endif() # are already loaded) and probably fail unless we set up LD_LIBRARY_PATH. if(${CMAKE_SYSTEM_NAME} MATCHES "Windows") # import library created by the `leanshared` target - string(APPEND LEANC_SHARED_LINKER_FLAGS " -lleanshared") + string(APPEND LEANC_SHARED_LINKER_FLAGS " -lInit_shared -lleanshared") elseif("${CMAKE_SYSTEM_NAME}" MATCHES "Darwin") string(APPEND LEANC_SHARED_LINKER_FLAGS " -Wl,-undefined,dynamic_lookup") endif() @@ -506,13 +502,31 @@ string(REGEX REPLACE "^([a-zA-Z]):" "/\\1" LEAN_BIN "${CMAKE_BINARY_DIR}/bin") file(RELATIVE_PATH LIB ${LEAN_SOURCE_DIR} ${CMAKE_BINARY_DIR}/lib) if(${CMAKE_SYSTEM_NAME} MATCHES "Darwin") - set(LEANSHARED_LINKER_FLAGS "-Wl,-force_load,${CMAKE_BINARY_DIR}/lib/lean/libInit.a -Wl,-force_load,${CMAKE_BINARY_DIR}/lib/lean/libLean.a -Wl,-force_load,${CMAKE_BINARY_DIR}/lib/lean/libleancpp.a ${CMAKE_BINARY_DIR}/runtime/libleanrt_initial-exec.a ${LEANSHARED_LINKER_FLAGS}") + string(APPEND INIT_SHARED_LINKER_FLAGS " -Wl,-force_load,${CMAKE_BINARY_DIR}/lib/lean/libInit.a -Wl,-force_load,${CMAKE_BINARY_DIR}/runtime/libleanrt_initial-exec.a") else() - set(LEANSHARED_LINKER_FLAGS "-Wl,--whole-archive -lInit -lLean -lleancpp -Wl,--no-whole-archive ${CMAKE_BINARY_DIR}/runtime/libleanrt_initial-exec.a ${LEANSHARED_LINKER_FLAGS}") + string(APPEND INIT_SHARED_LINKER_FLAGS " -Wl,--whole-archive -lInit ${CMAKE_BINARY_DIR}/runtime/libleanrt_initial-exec.a -Wl,--no-whole-archive") + if(${CMAKE_SYSTEM_NAME} MATCHES "Windows") + string(APPEND INIT_SHARED_LINKER_FLAGS " -Wl,--out-implib,${CMAKE_BINARY_DIR}/lib/lean/libInit_shared.dll.a") + endif() +endif() + +if(${CMAKE_SYSTEM_NAME} MATCHES "Darwin") + string(APPEND LEANSHARED_LINKER_FLAGS " -Wl,-force_load,${CMAKE_BINARY_DIR}/lib/lean/libLean.a -Wl,-force_load,${CMAKE_BINARY_DIR}/lib/lean/libleancpp.a") +else() + string(APPEND LEANSHARED_LINKER_FLAGS " -Wl,--whole-archive -lLean -lleancpp -Wl,--no-whole-archive") if(${CMAKE_SYSTEM_NAME} MATCHES "Windows") string(APPEND LEANSHARED_LINKER_FLAGS " -Wl,--out-implib,${CMAKE_BINARY_DIR}/lib/lean/libleanshared.dll.a") endif() endif() +string(APPEND LEANSHARED_LINKER_FLAGS " -lInit_shared") + +if (${CMAKE_SYSTEM_NAME} MATCHES "Emscripten") + # We do not use dynamic linking via leanshared for Emscripten to keep things + # simple. (And we are not interested in `Lake` anyway.) To use dynamic + # linking, we would probably have to set MAIN_MODULE=2 on `leanshared`, + # SIDE_MODULE=2 on `lean`, and set CMAKE_SHARED_LIBRARY_SUFFIX to ".js". + string(APPEND LEAN_EXE_LINKER_FLAGS " ${TOOLCHAIN_STATIC_LINKER_FLAGS} ${EMSCRIPTEN_SETTINGS} -lnodefs.js -s EXIT_RUNTIME=1 -s MAIN_MODULE=1 -s LINKABLE=1 -s EXPORT_ALL=1") +endif() # Build the compiler using the bootstrapped C sources for stage0, and use # the LLVM build for stage1 and further. @@ -520,10 +534,6 @@ if (LLVM AND ${STAGE} GREATER 0) set(EXTRA_LEANMAKE_OPTS "LLVM=1") endif() -# Escape for `make`. Yes, twice. -string(REPLACE "$" "$$" CMAKE_EXE_LINKER_FLAGS_MAKE "${CMAKE_EXE_LINKER_FLAGS}") -string(REPLACE "$" "$$" CMAKE_EXE_LINKER_FLAGS_MAKE_MAKE "${CMAKE_EXE_LINKER_FLAGS_MAKE}") -configure_file(${LEAN_SOURCE_DIR}/stdlib.make.in ${CMAKE_BINARY_DIR}/stdlib.make) add_custom_target(make_stdlib ALL WORKING_DIRECTORY ${LEAN_SOURCE_DIR} # The actual rule is in a separate makefile because we want to prefix it with '+' to use the Make job server @@ -541,13 +551,33 @@ endif() # We declare these as separate custom targets so they use separate `make` invocations, which makes `make` recompute which dependencies # (e.g. `libLean.a`) are now newer than the target file -add_custom_target(leanshared ALL - WORKING_DIRECTORY ${LEAN_SOURCE_DIR} - DEPENDS make_stdlib leancpp leanrt_initial-exec - COMMAND $(MAKE) -f ${CMAKE_BINARY_DIR}/stdlib.make leanshared - VERBATIM) +if(${CMAKE_SYSTEM_NAME} MATCHES "Emscripten") + # dummy targets, see `MAIN_MODULE` discussion above + add_custom_target(Init_shared ALL + DEPENDS make_stdlib leanrt_initial-exec + COMMAND touch ${CMAKE_LIBRARY_OUTPUT_DIRECTORY}/libInit_shared${CMAKE_SHARED_LIBRARY_SUFFIX} + ) + add_custom_target(leanshared ALL + DEPENDS Init_shared leancpp + COMMAND touch ${CMAKE_LIBRARY_OUTPUT_DIRECTORY}/libleanshared${CMAKE_SHARED_LIBRARY_SUFFIX} + ) +else() + add_custom_target(Init_shared ALL + WORKING_DIRECTORY ${LEAN_SOURCE_DIR} + DEPENDS make_stdlib leanrt_initial-exec + COMMAND $(MAKE) -f ${CMAKE_BINARY_DIR}/stdlib.make Init_shared + VERBATIM) -if(${STAGE} GREATER 0) + add_custom_target(leanshared ALL + WORKING_DIRECTORY ${LEAN_SOURCE_DIR} + DEPENDS Init_shared leancpp + COMMAND $(MAKE) -f ${CMAKE_BINARY_DIR}/stdlib.make leanshared + VERBATIM) + + string(APPEND CMAKE_EXE_LINKER_FLAGS " -lInit_shared -lleanshared") +endif() + +if(${STAGE} GREATER 0 AND NOT ${CMAKE_SYSTEM_NAME} MATCHES "Emscripten") if(NOT EXISTS ${LEAN_SOURCE_DIR}/lake/Lake.lean) message(FATAL_ERROR "src/lake does not exist. Please check out the Lake submodule using `git submodule update --init src/lake`.") endif() @@ -568,7 +598,7 @@ endif() # use Bash version for building, use Lean version in bin/ for tests & distribution configure_file("${LEAN_SOURCE_DIR}/bin/leanc.in" "${CMAKE_BINARY_DIR}/leanc.sh" @ONLY) -if(${STAGE} GREATER 0 AND EXISTS ${LEAN_SOURCE_DIR}/Leanc.lean) +if(${STAGE} GREATER 0 AND EXISTS ${LEAN_SOURCE_DIR}/Leanc.lean AND NOT ${CMAKE_SYSTEM_NAME} MATCHES "Emscripten") configure_file("${LEAN_SOURCE_DIR}/Leanc.lean" "${CMAKE_BINARY_DIR}/leanc/Leanc.lean" @ONLY) add_custom_target(leanc ALL WORKING_DIRECTORY ${CMAKE_BINARY_DIR}/leanc @@ -619,3 +649,8 @@ if(LEAN_INSTALL_PREFIX) set(LEAN_INSTALL_SUFFIX "-${LOWER_SYSTEM_NAME}" CACHE STRING "If LEAN_INSTALL_PREFIX is set, append this value to CMAKE_INSTALL_PREFIX") set(CMAKE_INSTALL_PREFIX "${LEAN_INSTALL_PREFIX}/lean-${LEAN_VERSION_STRING}${LEAN_INSTALL_SUFFIX}") endif() + +# Escape for `make`. Yes, twice. +string(REPLACE "$" "$$" CMAKE_EXE_LINKER_FLAGS_MAKE "${CMAKE_EXE_LINKER_FLAGS}") +string(REPLACE "$" "$$" CMAKE_EXE_LINKER_FLAGS_MAKE_MAKE "${CMAKE_EXE_LINKER_FLAGS_MAKE}") +configure_file(${LEAN_SOURCE_DIR}/stdlib.make.in ${CMAKE_BINARY_DIR}/stdlib.make) diff --git a/stage0/src/runtime/apply.h b/stage0/src/runtime/apply.h index 7a08d58d1c..7b297951b7 100644 --- a/stage0/src/runtime/apply.h +++ b/stage0/src/runtime/apply.h @@ -7,5 +7,5 @@ Author: Leonardo de Moura #pragma once #include "runtime/object.h" namespace lean { -object * curry(void * f, unsigned n, object ** as); +LEAN_EXPORT object * curry(void * f, unsigned n, object ** as); } diff --git a/stage0/src/runtime/compact.h b/stage0/src/runtime/compact.h index 8664c0614d..2bb05a4fca 100644 --- a/stage0/src/runtime/compact.h +++ b/stage0/src/runtime/compact.h @@ -13,7 +13,7 @@ Author: Leonardo de Moura namespace lean { typedef lean_object * object_offset; -class object_compactor { +class LEAN_EXPORT object_compactor { struct max_sharing_table; friend struct max_sharing_hash; friend struct max_sharing_eq; @@ -55,7 +55,7 @@ public: void const * data() const { return m_begin; } }; -class compacted_region { +class LEAN_EXPORT compacted_region { // see `object_compactor::m_base_addr` void * m_base_addr; bool m_is_mmap; diff --git a/stage0/src/runtime/debug.h b/stage0/src/runtime/debug.h index d3d857a66f..1ddc06445c 100644 --- a/stage0/src/runtime/debug.h +++ b/stage0/src/runtime/debug.h @@ -27,89 +27,20 @@ Author: Leonardo de Moura #define lean_verify(COND) (COND) #endif -// LEAN_NARG(ARGS...) return the number of arguments. -// This is a hack based on the following stackoverflow post: -// http://stackoverflow.com/questions/11317474/macro-to-count-number-of-arguments -#define LEAN_COMMASEQ_N() 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0 -#define LEAN_RSEQ_N() 17, 16, 15, 14, 13, 12, 11, 10, 9, 8, 7, 6, 5, 4, 3, 2, 1, 0 -#define LEAN_ARG_N(_1, _2, _3, _4, _5, _6, _7, _8, _9, _10, _11, _12, _13, _14, _15, _16, _17, N, ...) N -#define LEAN_EXPAND(x) x -#ifdef _MSC_VER -#define LEAN_AUGMENT(...) dummy, __VA_ARGS__ -#define LEAN_NARG_1(...) LEAN_EXPAND(LEAN_ARG_N(__VA_ARGS__, 16, 15, 14, 13, 12, 11, 10, 9, 8, 7, 6, 5, 4, 3, 2, 1, 0)) -#define LEAN_NARG(...) LEAN_NARG_1(LEAN_AUGMENT(__VA_ARGS__)) -#else -#define LEAN_NARG_(ARGS...) LEAN_ARG_N(ARGS) -#define LEAN_HASCOMMA(ARGS...) LEAN_NARG_(ARGS, LEAN_COMMASEQ_N()) -#define LEAN_COMMA() , -#define LEAN_NARG_HELPER3_01(N) 0 -#define LEAN_NARG_HELPER3_00(N) 1 -#define LEAN_NARG_HELPER3_11(N) N -#define LEAN_NARG_HELPER2(a, b, N) LEAN_NARG_HELPER3_ ## a ## b(N) -#define LEAN_NARG_HELPER1(a, b, N) LEAN_NARG_HELPER2(a, b, N) -#define LEAN_NARG(ARGS...) LEAN_NARG_HELPER1(LEAN_HASCOMMA(ARGS), LEAN_HASCOMMA(LEAN_COMMA ARGS ()), LEAN_NARG_(ARGS, LEAN_RSEQ_N())) -#endif - -// Hack for LEAN_DISPLAY(ARGS...) -// It works for at most 16 arguments. -#define LEAN_DISPLAY1_CORE(V) lean::debug::display_var(#V, V); -#define LEAN_DISPLAY2_CORE(V, ...) lean::debug::display_var(#V, V); LEAN_EXPAND(LEAN_DISPLAY1_CORE(__VA_ARGS__)) -#define LEAN_DISPLAY3_CORE(V, ...) lean::debug::display_var(#V, V); LEAN_EXPAND(LEAN_DISPLAY2_CORE(__VA_ARGS__)) -#define LEAN_DISPLAY4_CORE(V, ...) lean::debug::display_var(#V, V); LEAN_EXPAND(LEAN_DISPLAY3_CORE(__VA_ARGS__)) -#define LEAN_DISPLAY5_CORE(V, ...) lean::debug::display_var(#V, V); LEAN_EXPAND(LEAN_DISPLAY4_CORE(__VA_ARGS__)) -#define LEAN_DISPLAY6_CORE(V, ...) lean::debug::display_var(#V, V); LEAN_EXPAND(LEAN_DISPLAY5_CORE(__VA_ARGS__)) -#define LEAN_DISPLAY7_CORE(V, ...) lean::debug::display_var(#V, V); LEAN_EXPAND(LEAN_DISPLAY6_CORE(__VA_ARGS__)) -#define LEAN_DISPLAY8_CORE(V, ...) lean::debug::display_var(#V, V); LEAN_EXPAND(LEAN_DISPLAY7_CORE(__VA_ARGS__)) -#define LEAN_DISPLAY9_CORE(V, ...) lean::debug::display_var(#V, V); LEAN_EXPAND(LEAN_DISPLAY8_CORE(__VA_ARGS__)) -#define LEAN_DISPLAY10_CORE(V, ...) lean::debug::display_var(#V, V); LEAN_EXPAND(LEAN_DISPLAY9_CORE(__VA_ARGS__)) -#define LEAN_DISPLAY11_CORE(V, ...) lean::debug::display_var(#V, V); LEAN_EXPAND(LEAN_DISPLAY10_CORE(__VA_ARGS__)) -#define LEAN_DISPLAY12_CORE(V, ...) lean::debug::display_var(#V, V); LEAN_EXPAND(LEAN_DISPLAY11_CORE(__VA_ARGS__)) -#define LEAN_DISPLAY13_CORE(V, ...) lean::debug::display_var(#V, V); LEAN_EXPAND(LEAN_DISPLAY12_CORE(__VA_ARGS__)) -#define LEAN_DISPLAY14_CORE(V, ...) lean::debug::display_var(#V, V); LEAN_EXPAND(LEAN_DISPLAY13_CORE(__VA_ARGS__)) -#define LEAN_DISPLAY15_CORE(V, ...) lean::debug::display_var(#V, V); LEAN_EXPAND(LEAN_DISPLAY14_CORE(__VA_ARGS__)) -#define LEAN_DISPLAY16_CORE(V, ...) lean::debug::display_var(#V, V); LEAN_EXPAND(LEAN_DISPLAY15_CORE(__VA_ARGS__)) -#define LEAN_DISPLAY0(...) -#define LEAN_DISPLAY1(ARG) std::cerr << "Argument\n"; LEAN_DISPLAY1_CORE(ARG) -#define LEAN_DISPLAY2(...) std::cerr << "Arguments\n"; LEAN_EXPAND(LEAN_DISPLAY2_CORE(__VA_ARGS__)) -#define LEAN_DISPLAY3(...) std::cerr << "Arguments\n"; LEAN_EXPAND(LEAN_DISPLAY3_CORE(__VA_ARGS__)) -#define LEAN_DISPLAY4(...) std::cerr << "Arguments\n"; LEAN_EXPAND(LEAN_DISPLAY4_CORE(__VA_ARGS__)) -#define LEAN_DISPLAY5(...) std::cerr << "Arguments\n"; LEAN_EXPAND(LEAN_DISPLAY5_CORE(__VA_ARGS__)) -#define LEAN_DISPLAY6(...) std::cerr << "Arguments\n"; LEAN_EXPAND(LEAN_DISPLAY6_CORE(__VA_ARGS__)) -#define LEAN_DISPLAY7(...) std::cerr << "Arguments\n"; LEAN_EXPAND(LEAN_DISPLAY7_CORE(__VA_ARGS__)) -#define LEAN_DISPLAY8(...) std::cerr << "Arguments\n"; LEAN_EXPAND(LEAN_DISPLAY8_CORE(__VA_ARGS__)) -#define LEAN_DISPLAY9(...) std::cerr << "Arguments\n"; LEAN_EXPAND(LEAN_DISPLAY9_CORE(__VA_ARGS__)) -#define LEAN_DISPLAY10(...) std::cerr << "Arguments\n"; LEAN_EXPAND(LEAN_DISPLAY10_CORE(__VA_ARGS__)) -#define LEAN_DISPLAY11(...) std::cerr << "Arguments\n"; LEAN_EXPAND(LEAN_DISPLAY11_CORE(__VA_ARGS__)) -#define LEAN_DISPLAY12(...) std::cerr << "Arguments\n"; LEAN_EXPAND(LEAN_DISPLAY12_CORE(__VA_ARGS__)) -#define LEAN_DISPLAY13(...) std::cerr << "Arguments\n"; LEAN_EXPAND(LEAN_DISPLAY13_CORE(__VA_ARGS__)) -#define LEAN_DISPLAY14(...) std::cerr << "Arguments\n"; LEAN_EXPAND(LEAN_DISPLAY14_CORE(__VA_ARGS__)) -#define LEAN_DISPLAY15(...) std::cerr << "Arguments\n"; LEAN_EXPAND(LEAN_DISPLAY15_CORE(__VA_ARGS__)) -#define LEAN_DISPLAY16(...) std::cerr << "Arguments\n"; LEAN_EXPAND(LEAN_DISPLAY16_CORE(__VA_ARGS__)) -#define LEAN_JOIN0(A, B) A ## B -#define LEAN_JOIN(A, B) LEAN_JOIN0(A, B) -#define LEAN_DISPLAY(...) { LEAN_JOIN(LEAN_DISPLAY, LEAN_NARG(__VA_ARGS__))(__VA_ARGS__) } - -#define lean_assert(COND, ...) DEBUG_CODE({if (LEAN_UNLIKELY(!(COND))) { lean::notify_assertion_violation(__FILE__, __LINE__, #COND); LEAN_DISPLAY(__VA_ARGS__); lean::invoke_debugger(); }}) -#define lean_cond_assert(TAG, COND, ...) DEBUG_CODE({if (lean::is_debug_enabled(TAG) && LEAN_UNLIKELY(!(COND))) { lean::notify_assertion_violation(__FILE__, __LINE__, #COND); LEAN_DISPLAY(__VA_ARGS__); lean::invoke_debugger(); }}) -#define lean_always_assert(COND, ...) { if (LEAN_UNLIKELY(!(COND))) { lean::notify_assertion_violation(__FILE__, __LINE__, #COND); LEAN_DISPLAY(__VA_ARGS__); lean_unreachable(); } } - -#define lean_assert_eq(A, B) lean_assert(A == B, A, B) -#define lean_assert_ne(A, B) lean_assert(A != B, A, B) -#define lean_assert_gt(A, B) lean_assert(A > B, A, B) -#define lean_assert_lt(A, B) lean_assert(A < B, A, B) -#define lean_assert_ge(A, B) lean_assert(A >= B, A, B) -#define lean_assert_le(A, B) lean_assert(A <= B, A, B) +#define lean_assert(COND) DEBUG_CODE({if (LEAN_UNLIKELY(!(COND))) { lean::notify_assertion_violation(__FILE__, __LINE__, #COND); lean::invoke_debugger(); }}) +#define lean_cond_assert(TAG, COND) DEBUG_CODE({if (lean::is_debug_enabled(TAG) && LEAN_UNLIKELY(!(COND))) { lean::notify_assertion_violation(__FILE__, __LINE__, #COND); lean::invoke_debugger(); }}) +#define lean_always_assert(COND) { if (LEAN_UNLIKELY(!(COND))) { lean::notify_assertion_violation(__FILE__, __LINE__, #COND); lean_unreachable(); } } namespace lean { void initialize_debug(); void finalize_debug(); -void notify_assertion_violation(char const * file_name, int line, char const * condition); -void enable_debug(char const * tag); -void disable_debug(char const * tag); -bool is_debug_enabled(char const * tag); -void invoke_debugger(); -bool has_violations(); -void enable_debug_dialog(bool flag); +LEAN_EXPORT void notify_assertion_violation(char const * file_name, int line, char const * condition); +LEAN_EXPORT void enable_debug(char const * tag); +LEAN_EXPORT void disable_debug(char const * tag); +LEAN_EXPORT bool is_debug_enabled(char const * tag); +LEAN_EXPORT void invoke_debugger(); +LEAN_EXPORT bool has_violations(); +LEAN_EXPORT void enable_debug_dialog(bool flag); // LCOV_EXCL_START /** \brief Exception used to sign that unreachable code was reached */ class unreachable_reached : public exception { @@ -118,12 +49,5 @@ public: virtual ~unreachable_reached() noexcept {} virtual char const * what() const noexcept { return "'unreachable' code was reached"; } }; -namespace debug { -template void display_var(char const * name, T const & value) { - // commented typeid(value).name() since the name is mangled - std::cerr << name << /* " : " << typeid(value).name() << */ " := " - << std::boolalpha << value << std::noboolalpha - << std::endl; } -} // LCOV_EXCL_STOP } diff --git a/stage0/src/runtime/exception.h b/stage0/src/runtime/exception.h index ed4fb4fa3f..0004494591 100644 --- a/stage0/src/runtime/exception.h +++ b/stage0/src/runtime/exception.h @@ -8,11 +8,12 @@ Author: Leonardo de Moura #include #include #include +#include "lean/lean.h" namespace lean { class sstream; /** \brief Base class for all Lean exceptions */ -class throwable : public std::exception { +class LEAN_EXPORT throwable : public std::exception { protected: std::string m_msg; throwable() {} @@ -26,7 +27,7 @@ public: /** \brief Base class for all Lean "logical" exceptions, that is, exceptions not related to resource constraints, and runtime errors */ -class exception : public throwable { +class LEAN_EXPORT exception : public throwable { protected: exception() {} public: @@ -36,14 +37,14 @@ public: }; /** \brief Exception used to sign that a computation was interrupted */ -class interrupted { +class LEAN_EXPORT interrupted { public: interrupted() {} virtual ~interrupted() noexcept {} virtual char const * what() const noexcept { return "interrupted"; } }; -class stack_space_exception : public throwable { +class LEAN_EXPORT stack_space_exception : public throwable { std::string m_msg; stack_space_exception(std::string const & msg):m_msg(msg) {} public: @@ -51,7 +52,7 @@ public: virtual char const * what() const noexcept { return m_msg.c_str(); } }; -class memory_exception : public throwable { +class LEAN_EXPORT memory_exception : public throwable { std::string m_msg; memory_exception(std::string const & msg):m_msg(msg) {} public: @@ -59,7 +60,7 @@ public: virtual char const * what() const noexcept { return m_msg.c_str(); } }; -class heartbeat_exception : public throwable { +class LEAN_EXPORT heartbeat_exception : public throwable { public: heartbeat_exception() {} virtual char const * what() const noexcept; diff --git a/stage0/src/runtime/init_module.cpp b/stage0/src/runtime/init_module.cpp index f562dca698..8bf949d8bd 100644 --- a/stage0/src/runtime/init_module.cpp +++ b/stage0/src/runtime/init_module.cpp @@ -12,6 +12,7 @@ Author: Leonardo de Moura #include "runtime/stack_overflow.h" #include "runtime/process.h" #include "runtime/mutex.h" +#include "runtime/init_module.h" namespace lean { extern "C" LEAN_EXPORT void lean_initialize_runtime_module() { diff --git a/stage0/src/runtime/init_module.h b/stage0/src/runtime/init_module.h index b28dfb4cd2..bb80d361bf 100644 --- a/stage0/src/runtime/init_module.h +++ b/stage0/src/runtime/init_module.h @@ -5,8 +5,9 @@ Released under Apache 2.0 license as described in the file LICENSE. Author: Leonardo de Moura */ #pragma once +#include namespace lean { -void initialize_runtime_module(); -void finalize_runtime_module(); +LEAN_EXPORT void initialize_runtime_module(); +LEAN_EXPORT void finalize_runtime_module(); } diff --git a/stage0/src/runtime/interrupt.h b/stage0/src/runtime/interrupt.h index 4746701f31..ccc6793193 100644 --- a/stage0/src/runtime/interrupt.h +++ b/stage0/src/runtime/interrupt.h @@ -13,10 +13,10 @@ Author: Leonardo de Moura namespace lean { /** \brief Increment thread local counter for approximating elapsed time. */ -void inc_heartbeat(); +LEAN_EXPORT void inc_heartbeat(); /** \brief Reset thread local counter for approximating elapsed time. */ -void reset_heartbeat(); +LEAN_EXPORT void reset_heartbeat(); /* Update the current heartbeat */ class scope_heartbeat : flet { @@ -30,9 +30,9 @@ public: This is a thread local value. The class lthread uses the maximum of the parent thread. */ -void set_max_heartbeat(size_t max); -void set_max_heartbeat_thousands(unsigned max); -size_t get_max_heartbeat(); +LEAN_EXPORT void set_max_heartbeat(size_t max); +LEAN_EXPORT void set_max_heartbeat_thousands(unsigned max); +LEAN_EXPORT size_t get_max_heartbeat(); /* Update the thread local max heartbeat */ class scope_max_heartbeat : flet { @@ -40,12 +40,12 @@ public: scope_max_heartbeat(size_t max); }; -void check_heartbeat(); +LEAN_EXPORT void check_heartbeat(); /** \brief Throw an interrupted exception if the current task is marked cancelled. */ -void check_interrupted(); +LEAN_EXPORT void check_interrupted(); /** \brief Check system resources: stack, memory, and (if `do_check_interrupted` is true) heartbeat @@ -55,7 +55,7 @@ void check_interrupted(); would not bring down the entire process as interruption (via heartbeat limit or flag) should not be a fatal error. */ -void check_system(char const * component_name, bool do_check_interrupted = false); +LEAN_EXPORT void check_system(char const * component_name, bool do_check_interrupted = false); constexpr unsigned g_small_sleep = 10; @@ -64,6 +64,6 @@ constexpr unsigned g_small_sleep = 10; \remark check_interrupted is invoked every \c step_ms milliseconds; */ -void sleep_for(unsigned ms, unsigned step_ms = g_small_sleep); -inline void sleep_for(chrono::milliseconds const & ms) { sleep_for(ms.count(), 10); } +LEAN_EXPORT void sleep_for(unsigned ms, unsigned step_ms = g_small_sleep); +LEAN_EXPORT inline void sleep_for(chrono::milliseconds const & ms) { sleep_for(ms.count(), 10); } } diff --git a/stage0/src/runtime/io.h b/stage0/src/runtime/io.h index 6fe6f2a1bc..783f2fc08b 100644 --- a/stage0/src/runtime/io.h +++ b/stage0/src/runtime/io.h @@ -12,10 +12,10 @@ Author: Leonardo de Moura namespace lean { inline lean_obj_res io_result_mk_ok(lean_obj_arg a) { return lean_io_result_mk_ok(a); } inline lean_obj_res io_result_mk_error(lean_obj_arg e) { return lean_io_result_mk_error(e); } -lean_obj_res io_result_mk_error(char const * msg); -lean_obj_res io_result_mk_error(std::string const & msg); +LEAN_EXPORT lean_obj_res io_result_mk_error(char const * msg); +LEAN_EXPORT lean_obj_res io_result_mk_error(std::string const & msg); inline lean_obj_res decode_io_error(int errnum, b_lean_obj_arg fname) { return lean_decode_io_error(errnum, fname); } -lean_obj_res io_wrap_handle(FILE * hfile); +LEAN_EXPORT lean_obj_res io_wrap_handle(FILE * hfile); void initialize_io(); void finalize_io(); } diff --git a/stage0/src/runtime/load_dynlib.h b/stage0/src/runtime/load_dynlib.h index 5f58fd9d66..e294daf937 100644 --- a/stage0/src/runtime/load_dynlib.h +++ b/stage0/src/runtime/load_dynlib.h @@ -8,5 +8,5 @@ Author: Mac Malone #include namespace lean { -void load_dynlib(std::string path); +LEAN_EXPORT void load_dynlib(std::string path); } diff --git a/stage0/src/runtime/memory.h b/stage0/src/runtime/memory.h index e57f757f36..e2d775f594 100644 --- a/stage0/src/runtime/memory.h +++ b/stage0/src/runtime/memory.h @@ -6,12 +6,13 @@ Author: Leonardo de Moura */ #pragma once #include +#include namespace lean { /** \brief Set maximum amount of memory in bytes */ -void set_max_memory(size_t max); +LEAN_EXPORT void set_max_memory(size_t max); /** \brief Set maximum amount of memory in megabytes */ -void set_max_memory_megabyte(unsigned max); -void check_memory(char const * component_name); -size_t get_allocated_memory(); +LEAN_EXPORT void set_max_memory_megabyte(unsigned max); +LEAN_EXPORT void check_memory(char const * component_name); +LEAN_EXPORT size_t get_allocated_memory(); } diff --git a/stage0/src/runtime/mpz.h b/stage0/src/runtime/mpz.h index e0680916f4..68127c4606 100644 --- a/stage0/src/runtime/mpz.h +++ b/stage0/src/runtime/mpz.h @@ -21,7 +21,7 @@ Author: Leonardo de Moura namespace lean { /** \brief Wrapper for GMP integers */ -class mpz { +class LEAN_EXPORT mpz { friend class object_compactor; friend class compacted_region; #ifdef LEAN_USE_GMP @@ -146,9 +146,9 @@ public: mpz & operator=(unsigned int v); mpz & operator=(int v); - friend int cmp(mpz const & a, mpz const & b); - friend int cmp(mpz const & a, unsigned b); - friend int cmp(mpz const & a, int b); + LEAN_EXPORT friend int cmp(mpz const & a, mpz const & b); + LEAN_EXPORT friend int cmp(mpz const & a, unsigned b); + LEAN_EXPORT friend int cmp(mpz const & a, int b); friend bool operator<(mpz const & a, mpz const & b) { return cmp(a, b) < 0; } friend bool operator<(mpz const & a, unsigned b) { return cmp(a, b) < 0; } @@ -284,7 +284,7 @@ public: friend void gcd(mpz & g, mpz const & a, mpz const & b); friend mpz gcd(mpz const & a, mpz const & b) { mpz r; gcd(r, a, b); return r; } - friend std::ostream & operator<<(std::ostream & out, mpz const & v); + LEAN_EXPORT friend std::ostream & operator<<(std::ostream & out, mpz const & v); std::string to_string() const; }; diff --git a/stage0/src/runtime/object.h b/stage0/src/runtime/object.h index f93ccd621e..04f13fe1b6 100644 --- a/stage0/src/runtime/object.h +++ b/stage0/src/runtime/object.h @@ -99,7 +99,6 @@ inline void cnstr_set_float(b_obj_arg o, unsigned offset, double v) { lean_ctor_ // ======================================= // Closures -void free_closure_obj(object * o); inline void * closure_fun(object * o) { return lean_closure_fun(o); } inline unsigned closure_arity(object * o) { return lean_closure_arity(o); } inline unsigned closure_num_fixed(object * o) { return lean_closure_num_fixed(o); } @@ -178,7 +177,7 @@ inline object* apply_m(object* f, unsigned n, object** args) { return lean_apply // ======================================= // MPZ -object * alloc_mpz(mpz const &); +LEAN_EXPORT object * alloc_mpz(mpz const &); inline mpz_object * to_mpz(object * o) { lean_assert(is_mpz(o)); return (mpz_object*)o; } // ======================================= @@ -187,7 +186,7 @@ inline mpz_object * to_mpz(object * o) { lean_assert(is_mpz(o)); return (mpz_obj inline size_t array_capacity(object * o) { return lean_array_capacity(o); } inline object ** array_cptr(object * o) { return lean_array_cptr(o); } inline obj_res alloc_array(size_t size, size_t capacity) { return lean_alloc_array(size, capacity); } -object * array_mk_empty(); +LEAN_EXPORT object * array_mk_empty(); inline size_t array_size(b_obj_arg o) { return lean_array_size(o); } inline void array_set_size(u_obj_arg o, size_t sz) { lean_array_set_size(o, sz); } inline b_obj_res array_get(b_obj_arg o, size_t i) { return lean_array_get_core(o, i); } @@ -239,8 +238,8 @@ inline size_t string_capacity(object * o) { return lean_string_capacity(o); } inline uint32 char_default_value() { return lean_char_default_value(); } inline obj_res alloc_string(size_t size, size_t capacity, size_t len) { return lean_alloc_string(size, capacity, len); } inline obj_res mk_string(char const * s) { return lean_mk_string(s); } -obj_res mk_string(std::string const & s); -std::string string_to_std(b_obj_arg o); +LEAN_EXPORT obj_res mk_string(std::string const & s); +LEAN_EXPORT std::string string_to_std(b_obj_arg o); inline char const * string_cstr(b_obj_arg o) { return lean_string_cstr(o); } inline size_t string_size(b_obj_arg o) { return lean_string_size(o); } inline size_t string_len(b_obj_arg o) { return lean_string_len(o); } @@ -257,7 +256,7 @@ inline uint8 string_utf8_at_end(b_obj_arg s, b_obj_arg i) { return lean_string_u inline obj_res string_utf8_extract(b_obj_arg s, b_obj_arg b, b_obj_arg e) { return lean_string_utf8_extract(s, b, e); } inline obj_res string_utf8_byte_size(b_lean_obj_arg s) { return lean_string_utf8_byte_size(s); } inline bool string_eq(b_obj_arg s1, b_obj_arg s2) { return lean_string_eq(s1, s2); } -bool string_eq(b_obj_arg s1, char const * s2); +LEAN_EXPORT bool string_eq(b_obj_arg s1, char const * s2); inline bool string_ne(b_obj_arg s1, b_obj_arg s2) { return lean_string_ne(s1, s2); } inline bool string_lt(b_obj_arg s1, b_obj_arg s2) { return lean_string_lt(s1, s2); } inline uint8 string_dec_eq(b_obj_arg s1, b_obj_arg s2) { return string_eq(s1, s2); } @@ -275,7 +274,7 @@ inline obj_res thunk_get_own(b_obj_arg t) { return lean_thunk_get_own(t); } // ======================================= // Tasks -class scoped_task_manager { +class LEAN_EXPORT scoped_task_manager { public: scoped_task_manager(unsigned num_workers); ~scoped_task_manager(); @@ -309,7 +308,7 @@ inline obj_res mk_option_some(obj_arg v) { obj_res r = alloc_cnstr(1, 1, 0); cns // Natural numbers inline mpz const & mpz_value(b_obj_arg o) { return to_mpz(o)->m_value; } -object * mpz_to_nat_core(mpz const & m); +LEAN_EXPORT object * mpz_to_nat_core(mpz const & m); inline object * mk_nat_obj_core(mpz const & m) { return mpz_to_nat_core(m); } inline obj_res mk_nat_obj(mpz const & m) { if (m.is_size_t() && m.get_size_t() <= LEAN_MAX_SMALL_NAT) @@ -341,7 +340,7 @@ inline obj_res nat_lxor(b_obj_arg a1, b_obj_arg a2) { return lean_nat_lxor(a1, a // ======================================= // Integers -object * mk_int_obj_core(mpz const & m); +LEAN_EXPORT object * mk_int_obj_core(mpz const & m); inline obj_res mk_int_obj(mpz const & m) { if (m < LEAN_MIN_SMALL_INT || m > LEAN_MAX_SMALL_INT) return mk_int_obj_core(m); @@ -463,7 +462,7 @@ inline b_obj_res io_result_get_value(b_obj_arg r) { return lean_io_result_get_va inline b_obj_res io_result_get_error(b_obj_arg r) { return lean_io_result_get_error(r); } inline void io_result_show_error(b_obj_arg r) { return lean_io_result_show_error(r); } inline void io_mark_end_initialization() { return lean_io_mark_end_initialization(); } -void io_eprintln(obj_arg s); +LEAN_EXPORT void io_eprintln(obj_arg s); // ======================================= // ST ref primitives diff --git a/stage0/src/runtime/object_ref.h b/stage0/src/runtime/object_ref.h index e00a2b95eb..c0209676f3 100644 --- a/stage0/src/runtime/object_ref.h +++ b/stage0/src/runtime/object_ref.h @@ -42,7 +42,7 @@ public: }; /* Remark: this function doesn't increase the reference counter of objs */ -object_ref mk_cnstr(unsigned tag, unsigned num_objs, object ** objs, unsigned scalar_sz = 0); +LEAN_EXPORT object_ref mk_cnstr(unsigned tag, unsigned num_objs, object ** objs, unsigned scalar_sz = 0); inline object_ref mk_cnstr(unsigned tag, object * o, unsigned scalar_sz = 0) { return mk_cnstr(tag, 1, &o, scalar_sz); } inline object_ref mk_cnstr(unsigned tag, object * o1, object * o2, unsigned scalar_sz = 0) { object * os[2] = { o1, o2 }; diff --git a/stage0/src/runtime/stackinfo.cpp b/stage0/src/runtime/stackinfo.cpp index 48f4c7a394..b27c10cdae 100644 --- a/stage0/src/runtime/stackinfo.cpp +++ b/stage0/src/runtime/stackinfo.cpp @@ -8,6 +8,7 @@ Author: Leonardo de Moura #include #include "runtime/thread.h" #include "runtime/exception.h" +#include "runtime/stackinfo.h" #if !defined(LEAN_USE_SPLIT_STACK) #if defined(LEAN_WINDOWS) @@ -29,7 +30,7 @@ void throw_get_stack_size_failed() { } #if defined(LEAN_WINDOWS) -size_t get_stack_size(int main) { +size_t get_stack_size(bool main) { if (main) { return LEAN_WIN_STACK_SIZE; } else { @@ -37,7 +38,7 @@ size_t get_stack_size(int main) { } } #elif defined (__APPLE__) -size_t get_stack_size(int main) { +size_t get_stack_size(bool main) { if (main) { // Retrieve stack size of the main thread. struct rlimit curr; @@ -50,7 +51,7 @@ size_t get_stack_size(int main) { } } #elif defined(LEAN_EMSCRIPTEN) -size_t get_stack_size(int main) { +size_t get_stack_size(bool main) { if (main) { return emscripten_stack_get_end() - emscripten_stack_get_base(); } else { @@ -58,7 +59,7 @@ size_t get_stack_size(int main) { } } #else -size_t get_stack_size(int main) { +size_t get_stack_size(bool main) { if (main) { // Retrieve stack size of the main thread. struct rlimit curr; diff --git a/stage0/src/runtime/stackinfo.h b/stage0/src/runtime/stackinfo.h index 8469406bcc..0181a530d2 100644 --- a/stage0/src/runtime/stackinfo.h +++ b/stage0/src/runtime/stackinfo.h @@ -6,6 +6,7 @@ Author: Leonardo de Moura */ #pragma once #include +#include namespace lean { #if defined(LEAN_USE_SPLIT_STACK) @@ -16,16 +17,17 @@ inline void save_stack_info(bool = true) {} inline size_t get_used_stack_size() { return 0; } inline size_t get_available_stack_size() { return 8192*1024; } #else -size_t get_stack_size(bool main); -void save_stack_info(bool main = true); -size_t get_used_stack_size(); -size_t get_available_stack_size(); +LEAN_EXPORT size_t get_stack_size(bool main); +LEAN_EXPORT void save_stack_info(bool main = true); +LEAN_EXPORT size_t get_used_stack_size(); +LEAN_EXPORT size_t get_available_stack_size(); /** \brief Throw an exception if the amount of available stack space is low. \remark The optional argument \c component_name is used to inform the user which module is the potential offender. */ -void check_stack(char const * component_name); +LEAN_EXPORT void check_stack(char const * component_name); #endif + } diff --git a/stage0/src/runtime/thread.h b/stage0/src/runtime/thread.h index cc1b14ec00..decebaeae0 100644 --- a/stage0/src/runtime/thread.h +++ b/stage0/src/runtime/thread.h @@ -8,6 +8,7 @@ Author: Leonardo de Moura #include #include #include +#include #ifndef LEAN_STACK_BUFFER_SPACE #define LEAN_STACK_BUFFER_SPACE 128*1024 // 128 Kb @@ -50,7 +51,7 @@ namespace this_thread = std::this_thread; inline unsigned hardware_concurrency() { return std::thread::hardware_concurrency(); } /** Simple thread class that allows us to set the thread stack size. We implement it using pthreads on OSX/Linux and WinThreads on Windows. */ -class lthread { +class LEAN_EXPORT lthread { static size_t m_thread_stack_size; struct imp; std::unique_ptr m_imp; @@ -220,13 +221,13 @@ void initialize_thread(); void finalize_thread(); typedef void (*thread_finalizer)(void *); // NOLINT -void register_post_thread_finalizer(thread_finalizer fn, void * p); -void register_thread_finalizer(thread_finalizer fn, void * p); -void run_thread_finalizers(); -void run_post_thread_finalizers(); -void delete_thread_finalizer_manager(); +LEAN_EXPORT void register_post_thread_finalizer(thread_finalizer fn, void * p); +LEAN_EXPORT void register_thread_finalizer(thread_finalizer fn, void * p); +LEAN_EXPORT void run_thread_finalizers(); +LEAN_EXPORT void run_post_thread_finalizers(); +LEAN_EXPORT void delete_thread_finalizer_manager(); -bool in_thread_finalization(); +LEAN_EXPORT bool in_thread_finalization(); /** \brief Add \c fn to the list of functions used to reset thread local storage. @@ -237,7 +238,7 @@ bool in_thread_finalization(); contains cached data that may not be valid anymore. \see reset_thread_local */ -void register_thread_local_reset_fn(std::function fn); +LEAN_EXPORT void register_thread_local_reset_fn(std::function fn); /** \brief Reset thread local storage that contains cached @@ -245,5 +246,5 @@ void register_thread_local_reset_fn(std::function fn); We invoke this function before processing a command and before executing a task. */ -void reset_thread_local(); +LEAN_EXPORT void reset_thread_local(); } diff --git a/stage0/src/runtime/utf8.h b/stage0/src/runtime/utf8.h index fdbcbff520..3eeb6c96ff 100644 --- a/stage0/src/runtime/utf8.h +++ b/stage0/src/runtime/utf8.h @@ -8,24 +8,25 @@ Author: Leonardo de Moura #include #include #include "runtime/optional.h" +#include "lean/lean.h" namespace lean { using uchar = unsigned char; -bool is_utf8_next(unsigned char c); -unsigned get_utf8_size(unsigned char c); +LEAN_EXPORT bool is_utf8_next(unsigned char c); +LEAN_EXPORT unsigned get_utf8_size(unsigned char c); /* Return the length of the null terminated string encoded using UTF8 */ -size_t utf8_strlen(char const * str); +LEAN_EXPORT size_t utf8_strlen(char const * str); /* Return the length of the string `str` encoded using UTF8. `str` may contain null characters. */ -size_t utf8_strlen(std::string const & str); +LEAN_EXPORT size_t utf8_strlen(std::string const & str); /* Return the length of the string `str` encoded using UTF8. `str` may contain null characters. */ -size_t utf8_strlen(char const * str, size_t sz); -optional utf8_char_pos(char const * str, size_t char_idx); -char const * get_utf8_last_char(char const * str); -std::string utf8_trim(std::string const & s); -unsigned utf8_to_unicode(uchar const * begin, uchar const * end); +LEAN_EXPORT size_t utf8_strlen(char const * str, size_t sz); +LEAN_EXPORT optional utf8_char_pos(char const * str, size_t char_idx); +LEAN_EXPORT char const * get_utf8_last_char(char const * str); +LEAN_EXPORT std::string utf8_trim(std::string const & s); +LEAN_EXPORT unsigned utf8_to_unicode(uchar const * begin, uchar const * end); inline unsigned utf8_to_unicode(char const * begin, char const * end) { return utf8_to_unicode(reinterpret_cast(begin), reinterpret_cast(end)); @@ -34,20 +35,20 @@ inline unsigned utf8_to_unicode(char const * begin, char const * end) { /* If `c` is the first byte of an utf-8 encoded unicode scalar value, then return `some(n)` where `n` is the number of bytes needed to encode the unicode scalar value. Otherwise, return `none` */ -optional get_utf8_first_byte_opt(unsigned char c); +LEAN_EXPORT optional get_utf8_first_byte_opt(unsigned char c); /* "Read" next unicode character starting at position i in a string using UTF-8 encoding. Return the unicode character and update i. */ -unsigned next_utf8(std::string const & str, size_t & i); -unsigned next_utf8(char const * str, size_t size, size_t & i); +LEAN_EXPORT unsigned next_utf8(std::string const & str, size_t & i); +LEAN_EXPORT unsigned next_utf8(char const * str, size_t size, size_t & i); /* Decode a UTF-8 encoded string `str` into unicode scalar values */ -void utf8_decode(std::string const & str, std::vector & out); +LEAN_EXPORT void utf8_decode(std::string const & str, std::vector & out); /* Push a unicode scalar value into a utf-8 encoded string */ -void push_unicode_scalar(std::string & s, unsigned code); +LEAN_EXPORT void push_unicode_scalar(std::string & s, unsigned code); /* Store unicode scalar value at `d`, `d` must point to memory with enough space to store `c`. Return the number of bytes consumed. */ -unsigned push_unicode_scalar(char * d, unsigned code); +LEAN_EXPORT unsigned push_unicode_scalar(char * d, unsigned code); } diff --git a/stage0/src/stdlib.make.in b/stage0/src/stdlib.make.in index 85d0b9d27d..ba279cfd1b 100644 --- a/stage0/src/stdlib.make.in +++ b/stage0/src/stdlib.make.in @@ -33,8 +33,11 @@ endif # These can be phony since the inner Makefile will have the correct dependencies and avoid rebuilds Init: + @mkdir -p "${LIB}/lean/Lean" "${LIB}/lean/Lake" # Use `+` to use the Make jobserver with `leanmake` for parallelized builds - +"${LEAN_BIN}/leanmake" lib PKG=Init $(LEANMAKE_OPTS) LEANC_OPTS+=-DLEAN_EXPORTING +# Build .oleans of downstream libraries as well for better parallelism + +"${LEAN_BIN}/leanmake" objs lib PKG=Init $(LEANMAKE_OPTS) LEANC_OPTS+=-DLEAN_EXPORTING \ + EXTRA_SRC_ROOTS="Lean Lean.lean" Lean: Init +"${LEAN_BIN}/leanmake" lib PKG=Lean $(LEANMAKE_OPTS) LEANC_OPTS+=-DLEAN_EXPORTING @@ -42,11 +45,19 @@ Lean: Init # the following targets are all invoked by separate `make` calls; see src/CMakeLists.txt # we specify the precise file names here to avoid rebuilds -${CMAKE_LIBRARY_OUTPUT_DIRECTORY}/libleanshared${CMAKE_SHARED_LIBRARY_SUFFIX}: ${LIB}/lean/libInit.a ${LIB}/lean/libLean.a ${LIB}/lean/libleancpp.a ${CMAKE_BINARY_DIR}/runtime/libleanrt_initial-exec.a +${CMAKE_LIBRARY_OUTPUT_DIRECTORY}/libInit_shared${CMAKE_SHARED_LIBRARY_SUFFIX}: ${LIB}/lean/libInit.a ${CMAKE_BINARY_DIR}/runtime/libleanrt_initial-exec.a @echo "[ ] Building $@" # on Windows, must remove file before writing a new one (since the old one may be in use) @rm -f $@ - "${CMAKE_BINARY_DIR}/leanc.sh" -shared -o $@ ${LEANSHARED_LINKER_FLAGS} ${LEANC_OPTS} + "${CMAKE_BINARY_DIR}/leanc.sh" -shared -o $@ ${INIT_SHARED_LINKER_FLAGS} ${TOOLCHAIN_SHARED_LINKER_FLAGS} ${LEANC_OPTS} + +Init_shared: ${CMAKE_LIBRARY_OUTPUT_DIRECTORY}/libInit_shared${CMAKE_SHARED_LIBRARY_SUFFIX} + +${CMAKE_LIBRARY_OUTPUT_DIRECTORY}/libleanshared${CMAKE_SHARED_LIBRARY_SUFFIX}: ${CMAKE_LIBRARY_OUTPUT_DIRECTORY}/libInit_shared${CMAKE_SHARED_LIBRARY_SUFFIX} ${LIB}/lean/libLean.a ${LIB}/lean/libleancpp.a + @echo "[ ] Building $@" +# on Windows, must remove file before writing a new one (since the old one may be in use) + @rm -f $@ + "${CMAKE_BINARY_DIR}/leanc.sh" -shared -o $@ ${LEANSHARED_LINKER_FLAGS} ${TOOLCHAIN_SHARED_LINKER_FLAGS} ${LEANC_OPTS} leanshared: ${CMAKE_LIBRARY_OUTPUT_DIRECTORY}/libleanshared${CMAKE_SHARED_LIBRARY_SUFFIX} @@ -54,7 +65,7 @@ Lake: # lake is in its own subdirectory, so must adjust relative paths... +"${LEAN_BIN}/leanmake" -C lake bin lib PKG=Lake BIN_NAME=lake${CMAKE_EXECUTABLE_SUFFIX} $(LEANMAKE_OPTS) LINK_OPTS='${CMAKE_EXE_LINKER_FLAGS_MAKE_MAKE}' OUT="../${LIB}" LIB_OUT="../${LIB}/lean" OLEAN_OUT="../${LIB}/lean" -${CMAKE_BINARY_DIR}/bin/lean${CMAKE_EXECUTABLE_SUFFIX}: ${CMAKE_LIBRARY_OUTPUT_DIRECTORY}/libleanshared${CMAKE_SHARED_LIBRARY_SUFFIX} $(LEAN_SHELL) +${CMAKE_BINARY_DIR}/bin/lean${CMAKE_EXECUTABLE_SUFFIX}: ${CMAKE_LIBRARY_OUTPUT_DIRECTORY}/libInit_shared${CMAKE_SHARED_LIBRARY_SUFFIX} ${CMAKE_LIBRARY_OUTPUT_DIRECTORY}/libleanshared${CMAKE_SHARED_LIBRARY_SUFFIX} $(LEAN_SHELL) @echo "[ ] Building $@" # on Windows, must remove file before writing a new one (since the old one may be in use) @rm -f $@ diff --git a/stage0/stdlib/Init/Conv.c b/stage0/stdlib/Init/Conv.c index 6f4653360c..c590b0830f 100644 --- a/stage0/stdlib/Init/Conv.c +++ b/stage0/stdlib/Init/Conv.c @@ -1,6 +1,6 @@ // Lean compiler output // Module: Init.Conv -// Imports: Init.NotationExtra +// Imports: Init.Meta #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -9400,13 +9400,13 @@ x_1 = l_Lean_Parser_Tactic_Conv_normCast___closed__5; return x_1; } } -lean_object* initialize_Init_NotationExtra(uint8_t builtin, lean_object*); +lean_object* initialize_Init_Meta(uint8_t builtin, lean_object*); static bool _G_initialized = false; LEAN_EXPORT lean_object* initialize_Init_Conv(uint8_t builtin, lean_object* w) { lean_object * res; if (_G_initialized) return lean_io_result_mk_ok(lean_box(0)); _G_initialized = true; -res = initialize_Init_NotationExtra(builtin, lean_io_mk_world()); +res = initialize_Init_Meta(builtin, lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); l_Lean_Parser_Tactic_Conv_conv_quot___closed__1 = _init_l_Lean_Parser_Tactic_Conv_conv_quot___closed__1(); diff --git a/stage0/stdlib/Init/Data/Array/Mem.c b/stage0/stdlib/Init/Data/Array/Mem.c index 008fba76d0..e0320cb3e5 100644 --- a/stage0/stdlib/Init/Data/Array/Mem.c +++ b/stage0/stdlib/Init/Data/Array/Mem.c @@ -13,7 +13,6 @@ #ifdef __cplusplus extern "C" { #endif -LEAN_EXPORT lean_object* l___private_Init_Data_Array_Mem_0__List_get_match__1_splitter___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Array_tacticArray__mem__dec___closed__1; static lean_object* l_Array___aux__Init__Data__Array__Mem______macroRules__Array__tacticArray__get__dec__1___closed__42; static lean_object* l_Array___aux__Init__Data__Array__Mem______macroRules__Array__tacticArray__mem__dec__1___closed__12; @@ -48,7 +47,6 @@ static lean_object* l_Array___aux__Init__Data__Array__Mem______macroRules__Array lean_object* l_Lean_SourceInfo_fromRef(lean_object*, uint8_t); lean_object* l_Lean_Syntax_node6(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array___aux__Init__Data__Array__Mem______macroRules__Array__tacticArray__mem__dec__1(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Init_Data_Array_Mem_0__List_get_match__1_splitter___rarg(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Array___aux__Init__Data__Array__Mem______macroRules__Array__tacticArray__get__dec__1___closed__44; static lean_object* l_Array___aux__Init__Data__Array__Mem______macroRules__Array__tacticArray__get__dec__1___closed__34; static lean_object* l_Array___aux__Init__Data__Array__Mem______macroRules__Array__tacticArray__mem__dec__1___closed__18; @@ -83,13 +81,11 @@ lean_object* l_Lean_Syntax_node4(lean_object*, lean_object*, lean_object*, lean_ static lean_object* l_Array___aux__Init__Data__Array__Mem______macroRules__Array__tacticArray__get__dec__1___closed__21; static lean_object* l_Array___aux__Init__Data__Array__Mem______macroRules__Array__tacticArray__get__dec__1___closed__8; static lean_object* l_Array___aux__Init__Data__Array__Mem______macroRules__Array__tacticArray__get__dec__1___closed__41; -LEAN_EXPORT lean_object* l___private_Init_Data_Array_Mem_0__List_get_match__1_splitter(lean_object*, lean_object*); static lean_object* l_Array___aux__Init__Data__Array__Mem______macroRules__Array__tacticArray__mem__dec__1___closed__4; static lean_object* l_Array___aux__Init__Data__Array__Mem______macroRules__Array__tacticArray__get__dec__1___closed__36; static lean_object* l_Array_tacticArray__get__dec___closed__1; static lean_object* l_Array___aux__Init__Data__Array__Mem______macroRules__Array__tacticArray__get__dec__1___closed__32; static lean_object* l_Array_tacticArray__mem__dec___closed__4; -uint8_t lean_nat_dec_eq(lean_object*, lean_object*); static lean_object* l_Array___aux__Init__Data__Array__Mem______macroRules__Array__tacticArray__get__dec__1___closed__31; static lean_object* l_Array___aux__Init__Data__Array__Mem______macroRules__Array__tacticArray__get__dec__1___closed__18; lean_object* l_Lean_Name_mkStr2(lean_object*, lean_object*); @@ -102,7 +98,6 @@ static lean_object* l_Array___aux__Init__Data__Array__Mem______macroRules__Array static lean_object* l_Array___aux__Init__Data__Array__Mem______macroRules__Array__tacticArray__mem__dec__1___closed__17; static lean_object* l_Array___aux__Init__Data__Array__Mem______macroRules__Array__tacticArray__get__dec__1___closed__37; static lean_object* l_Array___aux__Init__Data__Array__Mem______macroRules__Array__tacticArray__get__dec__1___closed__4; -lean_object* lean_nat_sub(lean_object*, lean_object*); static lean_object* l_Array_tacticArray__mem__dec___closed__2; LEAN_EXPORT lean_object* l_Array___aux__Init__Data__Array__Mem______macroRules__tacticDecreasing__trivial__1(lean_object*, lean_object*, lean_object*); static lean_object* l_Array_tacticArray__get__dec___closed__2; @@ -119,52 +114,6 @@ LEAN_EXPORT lean_object* l_Array___aux__Init__Data__Array__Mem______macroRules__ lean_object* l_String_toSubstring_x27(lean_object*); static lean_object* l_Array___aux__Init__Data__Array__Mem______macroRules__Array__tacticArray__get__dec__1___closed__2; static lean_object* l_Array___aux__Init__Data__Array__Mem______macroRules__Array__tacticArray__mem__dec__1___closed__21; -LEAN_EXPORT lean_object* l___private_Init_Data_Array_Mem_0__List_get_match__1_splitter___rarg(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; lean_object* x_7; uint8_t x_8; -x_5 = lean_ctor_get(x_1, 0); -lean_inc(x_5); -x_6 = lean_ctor_get(x_1, 1); -lean_inc(x_6); -lean_dec(x_1); -x_7 = lean_unsigned_to_nat(0u); -x_8 = lean_nat_dec_eq(x_2, x_7); -if (x_8 == 0) -{ -lean_object* x_9; lean_object* x_10; lean_object* x_11; -lean_dec(x_3); -x_9 = lean_unsigned_to_nat(1u); -x_10 = lean_nat_sub(x_2, x_9); -x_11 = lean_apply_4(x_4, x_5, x_6, x_10, lean_box(0)); -return x_11; -} -else -{ -lean_object* x_12; -lean_dec(x_4); -x_12 = lean_apply_3(x_3, x_5, x_6, lean_box(0)); -return x_12; -} -} -} -LEAN_EXPORT lean_object* l___private_Init_Data_Array_Mem_0__List_get_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_Array_Mem_0__List_get_match__1_splitter___rarg___boxed), 4, 0); -return x_3; -} -} -LEAN_EXPORT lean_object* l___private_Init_Data_Array_Mem_0__List_get_match__1_splitter___rarg___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___private_Init_Data_Array_Mem_0__List_get_match__1_splitter___rarg(x_1, x_2, x_3, x_4); -lean_dec(x_2); -return x_5; -} -} LEAN_EXPORT lean_object* l_Array_instMembershipArray(lean_object* x_1) { _start: { diff --git a/stage0/stdlib/Init/Data/BitVec/Basic.c b/stage0/stdlib/Init/Data/BitVec/Basic.c index 2af9e91954..80d868d467 100644 --- a/stage0/stdlib/Init/Data/BitVec/Basic.c +++ b/stage0/stdlib/Init/Data/BitVec/Basic.c @@ -13,312 +13,308 @@ #ifdef __cplusplus extern "C" { #endif -LEAN_EXPORT lean_object* l_Std_BitVec_instLEBitVec___boxed(lean_object*); -LEAN_EXPORT lean_object* l_Std_BitVec_term_____x23____; -static lean_object* l_Std_BitVec_term_____x23_______closed__12; -static lean_object* l_Std_BitVec_term_____x23_______closed__1; +LEAN_EXPORT lean_object* l_BitVec_ushiftRight___rarg___boxed(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_BitVec_instAddBitVec(lean_object*); +LEAN_EXPORT lean_object* l_BitVec_abs(lean_object*, lean_object*); +LEAN_EXPORT uint8_t l_BitVec_instDecidableLtBitVecInstLTBitVec___rarg(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_BitVec_toInt___boxed(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_BitVec_instOrOpBitVec___boxed(lean_object*); +LEAN_EXPORT lean_object* l_BitVec_ofBool___boxed(lean_object*); +LEAN_EXPORT lean_object* l_BitVec_instOfNat___boxed(lean_object*, lean_object*); lean_object* lean_format_pretty(lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Std_BitVec_neg___boxed(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Std_BitVec_unexpandBitVecOfNatLt(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Std_BitVec_getLsb___boxed(lean_object*); -LEAN_EXPORT lean_object* l_Std_BitVec_concat___rarg(lean_object*, uint8_t); -static lean_object* l_Std_BitVec___aux__Init__Data__BitVec__Basic______macroRules__Std__BitVec__term_____x23_x27______1___closed__3; -LEAN_EXPORT lean_object* l_Std_BitVec_instLEBitVec(lean_object*); -LEAN_EXPORT lean_object* l_Std_BitVec_smtSDiv(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Std_BitVec_instHShiftLeftBitVec(lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Std_BitVec_signExtend(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Std_BitVec_instModBitVec___boxed(lean_object*); -LEAN_EXPORT lean_object* l_Std_BitVec_sub___boxed(lean_object*, lean_object*, lean_object*); -static lean_object* l_Std_BitVec_term_____x23_______closed__5; -LEAN_EXPORT lean_object* l_Std_BitVec_extractLsb_x27___rarg___boxed(lean_object*, lean_object*, lean_object*); -static lean_object* l_Std_BitVec_term_____x23_x27_______closed__5; -LEAN_EXPORT lean_object* l_Std_BitVec_getLsb(lean_object*); -LEAN_EXPORT lean_object* l_Std_BitVec_sle___boxed(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Std_BitVec_ult(lean_object*); -LEAN_EXPORT lean_object* l_Std_BitVec_instOfNat___boxed(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Std_BitVec_instReprBitVec___boxed(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Std_BitVec_toNat___rarg(lean_object*); -LEAN_EXPORT lean_object* l_Std_BitVec_toHex___boxed(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Std_BitVec_ofInt(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Std_BitVec_ule___boxed(lean_object*); -LEAN_EXPORT lean_object* l_Std_BitVec_umod___boxed(lean_object*); -LEAN_EXPORT uint8_t l_Std_BitVec_msb(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Std_BitVec_instModBitVec(lean_object*); -LEAN_EXPORT uint8_t l_Std_instDecidableEqBitVec___rarg(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Std_BitVec_rotateLeft(lean_object*, lean_object*, lean_object*); -static lean_object* l_Std_BitVec_term_____x23_______closed__18; -LEAN_EXPORT lean_object* l_Std_BitVec_instHShiftRightBitVec___rarg___boxed(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Std_BitVec_natCastInst(lean_object*); -LEAN_EXPORT lean_object* l_Std_BitVec_instHAppendBitVecHAddNatInstHAddInstAddNat___boxed(lean_object*); -LEAN_EXPORT lean_object* l_Std_BitVec_xor(lean_object*); -static lean_object* l_Std_BitVec_instModBitVec___closed__1; -LEAN_EXPORT lean_object* l_Std_BitVec_nil; -static lean_object* l_Std_BitVec_instXorBitVec___closed__1; -LEAN_EXPORT lean_object* l_Std_BitVec_or___boxed(lean_object*); -LEAN_EXPORT lean_object* l_Std_BitVec_instDivBitVec___boxed(lean_object*); -LEAN_EXPORT lean_object* l_Std_BitVec_instMulBitVec(lean_object*); -LEAN_EXPORT lean_object* l_Std_BitVec_instInhabitedBitVec(lean_object*); -static lean_object* l_Std_BitVec___aux__Init__Data__BitVec__Basic______macroRules__Std__BitVec__term_____x23______1___closed__14; -LEAN_EXPORT uint8_t l_Std_BitVec_instDecidableLeBitVecInstLEBitVec___rarg(lean_object*, lean_object*); -static lean_object* l_Std_BitVec_term_____x23_______closed__6; -LEAN_EXPORT lean_object* l_Std_BitVec_extractLsb___rarg___boxed(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Std_BitVec_decEq___boxed(lean_object*); -LEAN_EXPORT lean_object* l_Std_BitVec_shiftLeft___boxed(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Std_BitVec_srem(lean_object*, lean_object*, lean_object*); -static lean_object* l_Std_BitVec_nil___closed__1; -LEAN_EXPORT lean_object* l_Std_BitVec_ushiftRight(lean_object*); -LEAN_EXPORT lean_object* l_Std_BitVec_toNat___boxed(lean_object*); -LEAN_EXPORT lean_object* l_Std_BitVec_instNegBitVec(lean_object*); -LEAN_EXPORT lean_object* l_Std_BitVec_rotateRight___boxed(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Std_BitVec_cast___boxed(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Std_BitVec_msb___boxed(lean_object*, lean_object*); -static lean_object* l_Std_BitVec_instReprBitVec___closed__3; -LEAN_EXPORT lean_object* l_Std_BitVec_instToStringBitVec(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Std_BitVec_toHex(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_BitVec_rotateRight___boxed(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_BitVec_instHShiftRightBitVecNat(lean_object*); +static lean_object* l_BitVec_instHShiftRightBitVecNat___closed__1; +LEAN_EXPORT lean_object* l_BitVec_ofNat___boxed(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_BitVec_ofNatLt(lean_object*); +LEAN_EXPORT lean_object* l_BitVec_shiftLeft___boxed(lean_object*, lean_object*, lean_object*); +static lean_object* l_BitVec_term_____x23_______closed__7; +LEAN_EXPORT uint8_t l_BitVec_instDecidableLeBitVecInstLEBitVec___rarg(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_BitVec_neg___boxed(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_BitVec_smtSDiv___boxed(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_BitVec_smod___boxed(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_BitVec_replicate(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_BitVec_truncate(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_BitVec_instDivBitVec(lean_object*); +LEAN_EXPORT lean_object* l_BitVec_srem___boxed(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_BitVec_extractLsb_x27(lean_object*); +LEAN_EXPORT lean_object* l_BitVec_replicate___boxed(lean_object*, lean_object*, lean_object*); +static lean_object* l_BitVec_term_____x23_______closed__10; +static lean_object* l_BitVec_term_____x23_x27_______closed__2; +LEAN_EXPORT lean_object* l_BitVec_append___boxed(lean_object*); +LEAN_EXPORT lean_object* l_BitVec_instOfNat(lean_object*, lean_object*); +static lean_object* l_BitVec___aux__Init__Data__BitVec__Basic______macroRules__BitVec__term_____x23_x27______1___closed__1; +LEAN_EXPORT lean_object* l_BitVec_term_____x23_x27____; +LEAN_EXPORT lean_object* l_BitVec_toNat___boxed(lean_object*); +LEAN_EXPORT lean_object* l_BitVec_or(lean_object*); +LEAN_EXPORT lean_object* l_BitVec_udiv(lean_object*); +LEAN_EXPORT lean_object* l_BitVec_instHShiftRightBitVec___rarg(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_BitVec_xor___rarg(lean_object*, lean_object*); +static lean_object* l_BitVec_ofInt___closed__1; +static lean_object* l_BitVec_term_____x23_______closed__12; +LEAN_EXPORT lean_object* l_BitVec___aux__Init__Data__BitVec__Basic______macroRules__BitVec__term_____x23_x27______1(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_instDecidableEqBitVec___boxed(lean_object*); +LEAN_EXPORT lean_object* l_BitVec_instAndOpBitVec(lean_object*); +LEAN_EXPORT lean_object* l_BitVec_zeroExtend_x27(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_BitVec_getMsb___boxed(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_BitVec_toNat___rarg(lean_object*); +LEAN_EXPORT lean_object* l_BitVec_append(lean_object*); +static lean_object* l_BitVec_term_____x23_x27_______closed__1; +static lean_object* l_BitVec_instReprBitVec___closed__1; +LEAN_EXPORT lean_object* l_BitVec_instModBitVec___boxed(lean_object*); +LEAN_EXPORT lean_object* l_BitVec_or___boxed(lean_object*); +LEAN_EXPORT lean_object* l_BitVec_sshiftRight___boxed(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_BitVec_fill___boxed(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_BitVec_toNat___rarg___boxed(lean_object*); +LEAN_EXPORT lean_object* l_BitVec_instDecidableLeBitVecInstLEBitVec___boxed(lean_object*); +LEAN_EXPORT lean_object* l_BitVec_and___boxed(lean_object*); +LEAN_EXPORT lean_object* l_BitVec_signExtend___boxed(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_BitVec_extractLsb_x27___rarg(lean_object*, lean_object*, lean_object*); +static lean_object* l_BitVec_instReprBitVec___closed__3; +LEAN_EXPORT uint8_t l_instDecidableEqBitVec___rarg(lean_object*, lean_object*); +static lean_object* l_BitVec_instReprBitVec___closed__2; +LEAN_EXPORT lean_object* l_BitVec_extractLsb___rarg(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_BitVec_xor___boxed(lean_object*); uint8_t l_Lean_Syntax_isOfKind(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Std_BitVec_ofNatLt(lean_object*); -LEAN_EXPORT lean_object* l_Std_BitVec_extractLsb_x27___rarg(lean_object*, lean_object*, lean_object*); -static lean_object* l_Std_BitVec___aux__Init__Data__BitVec__Basic______macroRules__Std__BitVec__term_____x23______1___closed__16; -LEAN_EXPORT uint8_t l_Std_BitVec_decEq___rarg(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Std_BitVec_allOnes(lean_object*); -static lean_object* l_Std_BitVec_instHShiftRightBitVecNat___closed__1; -LEAN_EXPORT lean_object* l_Std_BitVec_ofNatLt___rarg___boxed(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Std_BitVec_cast___rarg(lean_object*); -LEAN_EXPORT lean_object* l_Std_BitVec_append___rarg(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_BitVec_or___rarg(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_BitVec_instXorBitVec___boxed(lean_object*); +LEAN_EXPORT lean_object* l_BitVec_instDivBitVec___boxed(lean_object*); +LEAN_EXPORT lean_object* l_BitVec_unexpandBitVecOfNat(lean_object*, lean_object*, lean_object*); +static lean_object* l_BitVec_term_____x23_______closed__6; +LEAN_EXPORT lean_object* l_BitVec_instReprBitVec(lean_object*, lean_object*, lean_object*); +static lean_object* l_BitVec___aux__Init__Data__BitVec__Basic______macroRules__BitVec__term_____x23_x27______1___closed__8; +LEAN_EXPORT lean_object* l_BitVec_instDecidableLtBitVecInstLTBitVec___boxed(lean_object*); +LEAN_EXPORT lean_object* l_BitVec_and___rarg(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_BitVec_shiftLeft(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_BitVec_ofNatLt___boxed(lean_object*); uint8_t lean_int_dec_le(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_BitVec_instHShiftRightBitVec(lean_object*, lean_object*); lean_object* lean_nat_shiftr(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Std_BitVec_append(lean_object*); -LEAN_EXPORT uint8_t l_Std_BitVec_sle(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT uint8_t l_Std_BitVec_ule___rarg(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Std_BitVec_zero___boxed(lean_object*); -LEAN_EXPORT lean_object* l_Std_BitVec_instHShiftLeftBitVec___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Std_BitVec_decEq___rarg___boxed(lean_object*, lean_object*); -lean_object* l_Lean_Name_mkStr3(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Std_BitVec_extractLsb(lean_object*); -LEAN_EXPORT lean_object* l_Std_BitVec_instAddBitVec(lean_object*); -LEAN_EXPORT uint8_t l_Std_BitVec_slt(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Std_BitVec_shiftLeftZeroExtend___boxed(lean_object*); -LEAN_EXPORT lean_object* l_Std_BitVec_xor___rarg(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Std_BitVec_ofBool(uint8_t); -LEAN_EXPORT lean_object* l_Std_BitVec_sshiftRight(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Std_BitVec_append___rarg___boxed(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Std_BitVec_replicate___boxed(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Std_BitVec_fill___boxed(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Std_BitVec_instSubBitVec(lean_object*); -LEAN_EXPORT lean_object* l_Std_BitVec_zeroExtend_x27___rarg___boxed(lean_object*); -LEAN_EXPORT lean_object* l_Std_BitVec_instReprBitVec(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Std_BitVec_ushiftRight___rarg(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Std_BitVec_not(lean_object*, lean_object*); -static lean_object* l_Std_BitVec_instOrOpBitVec___closed__1; -LEAN_EXPORT lean_object* l_Std_BitVec_smod___boxed(lean_object*, lean_object*, lean_object*); -static lean_object* l_Std_BitVec_term_____x23_______closed__15; +LEAN_EXPORT lean_object* l_BitVec_cast___boxed(lean_object*, lean_object*, lean_object*); +static lean_object* l_BitVec_instModBitVec___closed__1; +LEAN_EXPORT lean_object* l_BitVec_shiftLeftZeroExtend___rarg___boxed(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_BitVec_fill(lean_object*, uint8_t); +LEAN_EXPORT lean_object* l_BitVec_smtUDiv(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_BitVec_instToStringBitVec(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_BitVec_allOnes(lean_object*); +LEAN_EXPORT lean_object* l_BitVec_natCastInst(lean_object*); +static lean_object* l_BitVec_term_____x23_______closed__16; +static lean_object* l_BitVec___aux__Init__Data__BitVec__Basic______macroRules__BitVec__term_____x23_x27______1___closed__4; +static lean_object* l_BitVec___aux__Init__Data__BitVec__Basic______macroRules__BitVec__term_____x23______1___closed__4; +LEAN_EXPORT lean_object* l_BitVec_concat___rarg___boxed(lean_object*, lean_object*); +static lean_object* l_BitVec___aux__Init__Data__BitVec__Basic______macroRules__BitVec__term_____x23_x27______1___closed__6; +static lean_object* l_BitVec___aux__Init__Data__BitVec__Basic______macroRules__BitVec__term_____x23_x27______1___closed__7; +static lean_object* l_BitVec___aux__Init__Data__BitVec__Basic______macroRules__BitVec__term_____x23______1___closed__15; +LEAN_EXPORT lean_object* l_BitVec_umod___rarg___boxed(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_BitVec_instDecidableLtBitVecInstLTBitVec___rarg___boxed(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_BitVec_neg(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_BitVec_umod___boxed(lean_object*); +LEAN_EXPORT lean_object* l_BitVec_udiv___rarg___boxed(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_BitVec_decEq___rarg___boxed(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_BitVec_msb___boxed(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_BitVec_unexpandBitVecOfNatLt(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_BitVec_decEq___boxed(lean_object*); lean_object* l_Lean_SourceInfo_fromRef(lean_object*, uint8_t); -LEAN_EXPORT lean_object* l_Std_BitVec_ushiftRight___rarg___boxed(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_BitVec_ofInt(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_BitVec_not(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_BitVec_zero(lean_object*); lean_object* lean_nat_to_int(lean_object*); -LEAN_EXPORT uint8_t l_Std_BitVec_ult___rarg(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_BitVec_and___rarg___boxed(lean_object*, lean_object*); +static lean_object* l_BitVec_term_____x23_x27_______closed__4; lean_object* lean_nat_div(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Std_BitVec_allOnes___boxed(lean_object*); -static lean_object* l_Std_BitVec_term_____x23_______closed__4; -LEAN_EXPORT lean_object* l_Std_BitVec_ofBool___boxed(lean_object*); -LEAN_EXPORT lean_object* l_Std_BitVec_sdiv___boxed(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Std_BitVec_shiftLeftZeroExtend(lean_object*); -LEAN_EXPORT lean_object* l_Std_BitVec_udiv(lean_object*); -static lean_object* l_Std_BitVec___aux__Init__Data__BitVec__Basic______macroRules__Std__BitVec__term_____x23______1___closed__8; -LEAN_EXPORT lean_object* l_Std_BitVec_term_____x23_x27____; -LEAN_EXPORT uint8_t l_Std_BitVec_instDecidableLtBitVecInstLTBitVec___rarg(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Std_BitVec_toInt___boxed(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Std_BitVec_zeroExtend_x27___rarg(lean_object*); -static lean_object* l_Std_BitVec___aux__Init__Data__BitVec__Basic______macroRules__Std__BitVec__term_____x23______1___closed__4; -static lean_object* l_Std_BitVec_term_____x23_______closed__8; -LEAN_EXPORT lean_object* l_Std_BitVec_decEq(lean_object*); +LEAN_EXPORT lean_object* l_BitVec_toHex___boxed(lean_object*, lean_object*); +static lean_object* l_BitVec_term_____x23_x27_______closed__5; +static lean_object* l_BitVec___aux__Init__Data__BitVec__Basic______macroRules__BitVec__term_____x23______1___closed__5; +LEAN_EXPORT lean_object* l_BitVec_ushiftRight___boxed(lean_object*); +LEAN_EXPORT lean_object* l_BitVec_ule___boxed(lean_object*); +static lean_object* l_BitVec___aux__Init__Data__BitVec__Basic______macroRules__BitVec__term_____x23_x27______1___closed__3; +LEAN_EXPORT lean_object* l_BitVec_toNat(lean_object*); +LEAN_EXPORT lean_object* l_BitVec_append___rarg___boxed(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_BitVec_instOrOpBitVec(lean_object*); +LEAN_EXPORT lean_object* l_BitVec_smtSDiv(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_BitVec_instHShiftLeftBitVecNat(lean_object*); +LEAN_EXPORT lean_object* l_BitVec_sub___boxed(lean_object*, lean_object*, lean_object*); lean_object* lean_string_mk(lean_object*); -LEAN_EXPORT lean_object* l_Std_BitVec_ult___boxed(lean_object*); -static lean_object* l_Std_BitVec___aux__Init__Data__BitVec__Basic______macroRules__Std__BitVec__term_____x23_x27______1___closed__4; -LEAN_EXPORT lean_object* l_Std_BitVec_instComplementBitVec(lean_object*); -LEAN_EXPORT lean_object* l_Std_BitVec_sdiv(lean_object*, lean_object*, lean_object*); -static lean_object* l_Std_BitVec___aux__Init__Data__BitVec__Basic______macroRules__Std__BitVec__term_____x23______1___closed__5; -LEAN_EXPORT lean_object* l_Std_BitVec_shiftLeftZeroExtend___rarg___boxed(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Std_BitVec_toInt(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Std_instDecidableEqBitVec___rarg___boxed(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Std_BitVec_extractLsb___rarg(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Std_BitVec_instDivBitVec(lean_object*); -LEAN_EXPORT lean_object* l_Std_BitVec_ofNatLt___rarg(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Std_BitVec_ushiftRight___boxed(lean_object*); -LEAN_EXPORT lean_object* l_Std_BitVec_smtUDiv___boxed(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Std_BitVec_umod(lean_object*); -static lean_object* l_Std_BitVec___aux__Init__Data__BitVec__Basic______macroRules__Std__BitVec__term_____x23_x27______1___closed__2; -LEAN_EXPORT lean_object* l_Std_BitVec_instDecidableLtBitVecInstLTBitVec(lean_object*); -static lean_object* l_Std_BitVec___aux__Init__Data__BitVec__Basic______macroRules__Std__BitVec__term_____x23_x27______1___closed__6; -LEAN_EXPORT lean_object* l_Std_BitVec_sshiftRight___boxed(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_BitVec_instReprBitVec___boxed(lean_object*, lean_object*, lean_object*); +static lean_object* l_BitVec_ofBool___closed__2; +LEAN_EXPORT lean_object* l_BitVec_instMulBitVec(lean_object*); +LEAN_EXPORT lean_object* l_BitVec_ofNat(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_BitVec_instLTBitVec(lean_object*); +static lean_object* l_BitVec_term_____x23_x27_______closed__6; +LEAN_EXPORT lean_object* l_BitVec_extractLsb___boxed(lean_object*); +LEAN_EXPORT lean_object* l_BitVec_concat___boxed(lean_object*); +LEAN_EXPORT lean_object* l_BitVec_zeroExtend_x27___boxed(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_BitVec_instHShiftLeftBitVec(lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_BitVec_smtUDiv___boxed(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_BitVec_zeroExtend_x27___rarg___boxed(lean_object*); +LEAN_EXPORT lean_object* l_BitVec_decEq(lean_object*); +LEAN_EXPORT lean_object* l_BitVec_slt___boxed(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_instDecidableEqBitVec(lean_object*); +LEAN_EXPORT lean_object* l_BitVec_instLTBitVec___boxed(lean_object*); +LEAN_EXPORT lean_object* l_BitVec_getLsb(lean_object*); +static lean_object* l_BitVec_instOrOpBitVec___closed__1; +LEAN_EXPORT lean_object* l_BitVec_srem(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_node3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Std_BitVec_instAndOpBitVec___closed__1; -LEAN_EXPORT lean_object* l_Std_BitVec_instAndOpBitVec(lean_object*); -LEAN_EXPORT lean_object* l_Std_BitVec_toHex___boxed__const__1; -LEAN_EXPORT lean_object* l_Std_BitVec_add___boxed(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Std_BitVec_not___boxed(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Std_BitVec_instDecidableLtBitVecInstLTBitVec___boxed(lean_object*); +LEAN_EXPORT lean_object* l_BitVec_concat(lean_object*); +LEAN_EXPORT lean_object* l_BitVec_ule___rarg___boxed(lean_object*, lean_object*); +static lean_object* l_BitVec___aux__Init__Data__BitVec__Basic______macroRules__BitVec__term_____x23______1___closed__1; +LEAN_EXPORT lean_object* l_BitVec_sdiv(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_BitVec_instHAppendBitVecHAddNatInstHAddInstAddNat(lean_object*); lean_object* l_List_replicateTR___rarg(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Std_BitVec_shiftLeftZeroExtend___rarg(lean_object*, lean_object*); -static lean_object* l_Std_BitVec_term_____x23_______closed__14; -LEAN_EXPORT uint8_t l_Std_BitVec_getLsb___rarg(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Std_BitVec_toNat___rarg___boxed(lean_object*); -static lean_object* l_Std_BitVec___aux__Init__Data__BitVec__Basic______macroRules__Std__BitVec__term_____x23______1___closed__9; -static lean_object* l_Std_BitVec_term_____x23_x27_______closed__3; -LEAN_EXPORT lean_object* l_Std_BitVec_fill(lean_object*, uint8_t); +LEAN_EXPORT lean_object* l_BitVec_getLsb___rarg___boxed(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_BitVec_ushiftRight(lean_object*); +static lean_object* l_BitVec_term_____x23_______closed__13; lean_object* l_Lean_addMacroScope(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Std_BitVec_zero(lean_object*); -static lean_object* l_Std_BitVec_term_____x23_______closed__2; -static lean_object* l_Std_BitVec_instReprBitVec___closed__1; -static lean_object* l_Std_BitVec___aux__Init__Data__BitVec__Basic______macroRules__Std__BitVec__term_____x23______1___closed__11; +LEAN_EXPORT lean_object* l_BitVec_add(lean_object*, lean_object*, lean_object*); lean_object* lean_nat_land(lean_object*, lean_object*); +static lean_object* l_BitVec_term_____x23_x27_______closed__7; lean_object* l_Lean_Name_str___override(lean_object*, lean_object*); -static lean_object* l_Std_BitVec_instReprBitVec___closed__2; -LEAN_EXPORT lean_object* l_Std_BitVec_udiv___boxed(lean_object*); +static lean_object* l_BitVec_term_____x23_______closed__1; +LEAN_EXPORT lean_object* l_BitVec_sdiv___boxed(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_BitVec_instHShiftRightBitVec___rarg___boxed(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_BitVec_ule(lean_object*); lean_object* l_Lean_Syntax_node2(lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Std_BitVec_term_____x23_x27_______closed__2; +LEAN_EXPORT lean_object* l_BitVec___aux__Init__Data__BitVec__Basic______macroRules__BitVec__term_____x23______1(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_BitVec_zeroExtend(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_BitVec_instHShiftLeftBitVec___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_BitVec_extractLsb_x27___boxed(lean_object*); +LEAN_EXPORT lean_object* l_BitVec_instIntCastBitVec(lean_object*); +LEAN_EXPORT lean_object* l_BitVec_rotateLeft___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_getArg(lean_object*, lean_object*); uint8_t l_Lean_Syntax_matchesNull(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Std_BitVec_instDecidableLtBitVecInstLTBitVec___rarg___boxed(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Std_BitVec_abs(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Std_BitVec_ule(lean_object*); -LEAN_EXPORT lean_object* l_Std_BitVec_xor___boxed(lean_object*); -LEAN_EXPORT lean_object* l_Std_BitVec_instHShiftRightBitVec___rarg(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_BitVec_toHex___boxed__const__1; +LEAN_EXPORT lean_object* l_BitVec_instLEBitVec___boxed(lean_object*); +LEAN_EXPORT uint8_t l_BitVec_getMsb(lean_object*, lean_object*, lean_object*); +static lean_object* l_BitVec_instAndOpBitVec___closed__1; +LEAN_EXPORT lean_object* l_BitVec_cast___rarg___boxed(lean_object*); +LEAN_EXPORT lean_object* l_BitVec_add___boxed(lean_object*, lean_object*, lean_object*); extern lean_object* l_Std_Format_defWidth; -LEAN_EXPORT lean_object* l_Std_BitVec_and___boxed(lean_object*); -LEAN_EXPORT lean_object* l_Std_BitVec_zeroExtend___boxed(lean_object*, lean_object*, lean_object*); -static lean_object* l_Std_BitVec_term_____x23_______closed__9; -LEAN_EXPORT lean_object* l_Std_BitVec_and___rarg(lean_object*, lean_object*); -static lean_object* l_Std_BitVec_term_____x23_______closed__3; -LEAN_EXPORT lean_object* l_Std_BitVec_umod___rarg___boxed(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Std_BitVec_truncate___boxed(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Std_BitVec_ult___rarg___boxed(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Std_BitVec_zeroExtend(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Std_BitVec_or___rarg(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Std_BitVec_getMsb___boxed(lean_object*, lean_object*, lean_object*); +static lean_object* l_BitVec_term_____x23_______closed__4; +LEAN_EXPORT lean_object* l_BitVec_sshiftRight(lean_object*, lean_object*, lean_object*); +static lean_object* l_BitVec_term_____x23_______closed__17; +static lean_object* l_BitVec_instXorBitVec___closed__1; +LEAN_EXPORT uint8_t l_BitVec_slt(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_BitVec_umod(lean_object*); lean_object* lean_int_sub(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Std_BitVec_concat___rarg___boxed(lean_object*, lean_object*); -static lean_object* l_Std_BitVec_term_____x23_x27_______closed__6; -static lean_object* l_Std_BitVec___aux__Init__Data__BitVec__Basic______macroRules__Std__BitVec__term_____x23______1___closed__12; -LEAN_EXPORT lean_object* l_Std_BitVec_instIntCastBitVec(lean_object*); -LEAN_EXPORT lean_object* l_Std_BitVec_instXorBitVec(lean_object*); -LEAN_EXPORT lean_object* l_Std_BitVec_ofNat(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Std_BitVec_add(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Std_BitVec_zeroExtend_x27(lean_object*, lean_object*, lean_object*); +static lean_object* l_BitVec_term_____x23_______closed__14; +LEAN_EXPORT lean_object* l_BitVec_append___rarg(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_BitVec_rotateRight(lean_object*, lean_object*, lean_object*); lean_object* l_Int_shiftRight(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_BitVec_cast(lean_object*, lean_object*, lean_object*); lean_object* l_Nat_toDigits(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Std_BitVec_instHShiftRightBitVecNat(lean_object*); -LEAN_EXPORT lean_object* l_Std_BitVec_smtSDiv___boxed(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Std_BitVec_cast(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Std_instDecidableEqBitVec(lean_object*); -static lean_object* l_Std_BitVec___aux__Init__Data__BitVec__Basic______macroRules__Std__BitVec__term_____x23_x27______1___closed__8; -LEAN_EXPORT lean_object* l_Std_BitVec_cast___rarg___boxed(lean_object*); +static lean_object* l_BitVec_term_____x23_______closed__9; +static lean_object* l_BitVec___aux__Init__Data__BitVec__Basic______macroRules__BitVec__term_____x23______1___closed__11; +LEAN_EXPORT lean_object* l_BitVec_abs___boxed(lean_object*, lean_object*); lean_object* lean_nat_lxor(lean_object*, lean_object*); lean_object* lean_nat_abs(lean_object*); uint8_t l_Nat_testBit(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Std_BitVec_extractLsb___boxed(lean_object*); -LEAN_EXPORT lean_object* l_Std_BitVec_append___boxed(lean_object*); -LEAN_EXPORT lean_object* l_Std_BitVec_abs___boxed(lean_object*, lean_object*); -static lean_object* l_Std_BitVec_term_____x23_x27_______closed__4; -static lean_object* l_Std_BitVec___aux__Init__Data__BitVec__Basic______macroRules__Std__BitVec__term_____x23______1___closed__7; -LEAN_EXPORT lean_object* l_Std_BitVec_neg(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Std_BitVec_instDecidableLeBitVecInstLEBitVec___boxed(lean_object*); -LEAN_EXPORT lean_object* l_Std_BitVec_instHAppendBitVecHAddNatInstHAddInstAddNat___rarg(lean_object*); +LEAN_EXPORT lean_object* l_BitVec_zeroExtend___boxed(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_BitVec_truncate___boxed(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_BitVec_and(lean_object*); +LEAN_EXPORT lean_object* l_BitVec_instInhabitedBitVec___boxed(lean_object*); +LEAN_EXPORT lean_object* l_BitVec_instXorBitVec(lean_object*); +LEAN_EXPORT lean_object* l_BitVec_instHAppendBitVecHAddNatInstHAddInstAddNat___rarg(lean_object*); +static lean_object* l_BitVec_term_____x23_______closed__11; lean_object* lean_nat_pow(lean_object*, lean_object*); lean_object* lean_string_length(lean_object*); -static lean_object* l_Std_BitVec_term_____x23_x27_______closed__1; -LEAN_EXPORT lean_object* l_Std_BitVec_zeroExtend_x27___boxed(lean_object*, lean_object*, lean_object*); +static lean_object* l_BitVec___aux__Init__Data__BitVec__Basic______macroRules__BitVec__term_____x23______1___closed__6; +LEAN_EXPORT lean_object* l_BitVec_signExtend(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_BitVec_instDecidableLeBitVecInstLEBitVec(lean_object*); uint8_t lean_nat_dec_eq(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Std_BitVec_ofNatLt___boxed(lean_object*); -static lean_object* l_Std_BitVec_term_____x23_______closed__11; -static lean_object* l_Std_BitVec___aux__Init__Data__BitVec__Basic______macroRules__Std__BitVec__term_____x23_x27______1___closed__5; +LEAN_EXPORT uint8_t l_BitVec_getLsb___rarg(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_BitVec_udiv___rarg(lean_object*, lean_object*); +LEAN_EXPORT uint8_t l_BitVec_decEq___rarg(lean_object*, lean_object*); uint8_t lean_nat_dec_lt(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Std_BitVec_instHAppendBitVecHAddNatInstHAddInstAddNat(lean_object*); +LEAN_EXPORT lean_object* l_BitVec_cons(lean_object*, uint8_t, lean_object*); +LEAN_EXPORT lean_object* l_BitVec_ofNatLt___rarg(lean_object*, lean_object*); lean_object* lean_nat_mod(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Std_BitVec_instOfNat(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Std_BitVec___aux__Init__Data__BitVec__Basic______macroRules__Std__BitVec__term_____x23______1(lean_object*, lean_object*, lean_object*); +static lean_object* l_BitVec_term_____x23_______closed__2; lean_object* l_Lean_Name_mkStr2(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Std_BitVec_ofNat___boxed(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Std_BitVec_udiv___rarg(lean_object*, lean_object*); -static lean_object* l_Std_BitVec_instDivBitVec___closed__1; -LEAN_EXPORT lean_object* l_Std_BitVec_smod(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Std_BitVec_extractLsb_x27(lean_object*); -static lean_object* l_Std_BitVec_ofBool___closed__2; -static lean_object* l_Std_BitVec___aux__Init__Data__BitVec__Basic______macroRules__Std__BitVec__term_____x23______1___closed__1; -LEAN_EXPORT uint8_t l_Std_BitVec_getMsb(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Std_BitVec_srem___boxed(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_BitVec_instModBitVec(lean_object*); +LEAN_EXPORT lean_object* l_BitVec_extractLsb(lean_object*); +LEAN_EXPORT lean_object* l_BitVec_ofNatLt___rarg___boxed(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_BitVec_rotateLeft(lean_object*, lean_object*, lean_object*); +static lean_object* l_BitVec___aux__Init__Data__BitVec__Basic______macroRules__BitVec__term_____x23______1___closed__7; +LEAN_EXPORT lean_object* l_BitVec_instHShiftRightBitVec___boxed(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_BitVec_instDecidableLtBitVecInstLTBitVec(lean_object*); +LEAN_EXPORT lean_object* l_BitVec_toInt(lean_object*, lean_object*); +LEAN_EXPORT uint8_t l_BitVec_msb(lean_object*, lean_object*); lean_object* lean_nat_shiftl(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Std_BitVec_signExtend___boxed(lean_object*, lean_object*, lean_object*); -static lean_object* l_Std_BitVec_term_____x23_______closed__10; uint8_t lean_int_dec_lt(lean_object*, lean_object*); -static lean_object* l_Std_BitVec___aux__Init__Data__BitVec__Basic______macroRules__Std__BitVec__term_____x23______1___closed__10; lean_object* lean_nat_sub(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Std_BitVec_cons___boxed(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_BitVec_cons___boxed(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_BitVec_zeroExtend_x27___rarg(lean_object*); lean_object* lean_nat_mul(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Std_BitVec_concat(lean_object*); -static lean_object* l_Std_BitVec___aux__Init__Data__BitVec__Basic______macroRules__Std__BitVec__term_____x23______1___closed__2; -LEAN_EXPORT lean_object* l_Std_BitVec_unexpandBitVecOfNat(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Std_BitVec_instLTBitVec___boxed(lean_object*); -LEAN_EXPORT lean_object* l_Std_BitVec_instHShiftRightBitVec(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Std_BitVec_cons(lean_object*, uint8_t, lean_object*); -LEAN_EXPORT lean_object* l_Std_BitVec_and(lean_object*); -LEAN_EXPORT lean_object* l_Std_BitVec_sub(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Std_BitVec_instXorBitVec___boxed(lean_object*); -LEAN_EXPORT lean_object* l_Std_BitVec_mul(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Std_BitVec_extractLsb_x27___boxed(lean_object*); -LEAN_EXPORT lean_object* l_Std_BitVec_and___rarg___boxed(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Std_BitVec_udiv___rarg___boxed(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Std_BitVec_ule___rarg___boxed(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Std_BitVec_instHShiftRightBitVec___boxed(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Std_BitVec_instHShiftLeftBitVecNat(lean_object*); +static lean_object* l_BitVec_term_____x23_______closed__5; +LEAN_EXPORT uint8_t l_BitVec_ule___rarg(lean_object*, lean_object*); +static lean_object* l_BitVec___aux__Init__Data__BitVec__Basic______macroRules__BitVec__term_____x23______1___closed__9; +LEAN_EXPORT lean_object* l_BitVec_shiftLeftZeroExtend(lean_object*); +LEAN_EXPORT lean_object* l_BitVec_shiftLeftZeroExtend___boxed(lean_object*); +static lean_object* l_BitVec___aux__Init__Data__BitVec__Basic______macroRules__BitVec__term_____x23______1___closed__10; +static lean_object* l_BitVec_ofBool___closed__1; +LEAN_EXPORT lean_object* l_BitVec_umod___rarg(lean_object*, lean_object*); +static lean_object* l_BitVec_nil___closed__1; +LEAN_EXPORT lean_object* l_BitVec_instLEBitVec(lean_object*); +static lean_object* l_BitVec___aux__Init__Data__BitVec__Basic______macroRules__BitVec__term_____x23______1___closed__8; +LEAN_EXPORT lean_object* l_BitVec_allOnes___boxed(lean_object*); +static lean_object* l_BitVec___aux__Init__Data__BitVec__Basic______macroRules__BitVec__term_____x23______1___closed__13; +LEAN_EXPORT lean_object* l_BitVec_or___rarg___boxed(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_BitVec_extractLsb_x27___rarg___boxed(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_BitVec_smod(lean_object*, lean_object*, lean_object*); +static lean_object* l_BitVec_term_____x23_______closed__3; +LEAN_EXPORT lean_object* l_BitVec_ult___rarg___boxed(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_BitVec_mul___boxed(lean_object*, lean_object*, lean_object*); +static lean_object* l_BitVec_term_____x23_______closed__15; +LEAN_EXPORT lean_object* l_instDecidableEqBitVec___rarg___boxed(lean_object*, lean_object*); +static lean_object* l_BitVec___aux__Init__Data__BitVec__Basic______macroRules__BitVec__term_____x23______1___closed__2; +static lean_object* l_BitVec_term_____x23_x27_______closed__3; +LEAN_EXPORT lean_object* l_BitVec_ofInt___boxed(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_BitVec_mul(lean_object*, lean_object*, lean_object*); +static lean_object* l_BitVec___aux__Init__Data__BitVec__Basic______macroRules__BitVec__term_____x23______1___closed__3; +LEAN_EXPORT lean_object* l_BitVec_sle___boxed(lean_object*, lean_object*, lean_object*); +static lean_object* l_BitVec___aux__Init__Data__BitVec__Basic______macroRules__BitVec__term_____x23_x27______1___closed__5; +LEAN_EXPORT lean_object* l_BitVec_concat___rarg(lean_object*, uint8_t); +static lean_object* l_BitVec_term_____x23_x27_______closed__8; +LEAN_EXPORT lean_object* l_BitVec_xor(lean_object*); lean_object* l_Lean_Name_mkStr4(lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Std_BitVec_or(lean_object*); -static lean_object* l_Std_BitVec___aux__Init__Data__BitVec__Basic______macroRules__Std__BitVec__term_____x23_x27______1___closed__1; -static lean_object* l_Std_BitVec___aux__Init__Data__BitVec__Basic______macroRules__Std__BitVec__term_____x23______1___closed__13; -LEAN_EXPORT lean_object* l_Std_BitVec_ofInt___boxed(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_BitVec_ult___boxed(lean_object*); +static lean_object* l_BitVec___aux__Init__Data__BitVec__Basic______macroRules__BitVec__term_____x23______1___closed__12; +LEAN_EXPORT lean_object* l_BitVec_not___boxed(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_BitVec_zero___boxed(lean_object*); +LEAN_EXPORT lean_object* l_BitVec_toHex(lean_object*, lean_object*); +static lean_object* l_BitVec___aux__Init__Data__BitVec__Basic______macroRules__BitVec__term_____x23_x27______1___closed__2; lean_object* lean_string_append(lean_object*, lean_object*); -static lean_object* l_Std_BitVec___aux__Init__Data__BitVec__Basic______macroRules__Std__BitVec__term_____x23______1___closed__6; -LEAN_EXPORT lean_object* l_Std_BitVec_umod___rarg(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Std_BitVec_replicate(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Std_BitVec_shiftLeft(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Std_BitVec_instHShiftRightBitVecNat___boxed(lean_object*); -LEAN_EXPORT lean_object* l_Std_BitVec___aux__Init__Data__BitVec__Basic______macroRules__Std__BitVec__term_____x23_x27______1(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Std_BitVec_instOrOpBitVec___boxed(lean_object*); -static lean_object* l_Std_BitVec_term_____x23_______closed__16; -LEAN_EXPORT lean_object* l_Std_BitVec_rotateRight(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Std_BitVec_concat___boxed(lean_object*); +LEAN_EXPORT uint8_t l_BitVec_ult___rarg(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_BitVec_term_____x23____; +LEAN_EXPORT lean_object* l_BitVec_cast___rarg(lean_object*); +static lean_object* l_BitVec_term_____x23_______closed__8; uint8_t lean_nat_dec_le(lean_object*, lean_object*); -static lean_object* l_Std_BitVec_term_____x23_______closed__13; -static lean_object* l_Std_BitVec_ofBool___closed__1; +LEAN_EXPORT lean_object* l_BitVec_ushiftRight___rarg(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_BitVec_instInhabitedBitVec(lean_object*); +LEAN_EXPORT lean_object* l_BitVec_instSubBitVec(lean_object*); +static lean_object* l_BitVec_instDivBitVec___closed__1; +LEAN_EXPORT lean_object* l_BitVec_getLsb___boxed(lean_object*); lean_object* lean_nat_add(lean_object*, lean_object*); -static lean_object* l_Std_BitVec_ofInt___closed__1; -LEAN_EXPORT lean_object* l_Std_BitVec_instAndOpBitVec___boxed(lean_object*); -LEAN_EXPORT lean_object* l_Std_BitVec_instLTBitVec(lean_object*); -static lean_object* l_Std_BitVec___aux__Init__Data__BitVec__Basic______macroRules__Std__BitVec__term_____x23______1___closed__3; -LEAN_EXPORT lean_object* l_Std_BitVec_rotateLeft___boxed(lean_object*, lean_object*, lean_object*); -static lean_object* l_Std_BitVec___aux__Init__Data__BitVec__Basic______macroRules__Std__BitVec__term_____x23_x27______1___closed__9; -static lean_object* l_Std_BitVec_term_____x23_x27_______closed__8; -static lean_object* l_Std_BitVec_term_____x23_______closed__7; -LEAN_EXPORT lean_object* l_Std_BitVec_or___rarg___boxed(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Std_BitVec_smtUDiv(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Std_BitVec_getLsb___rarg___boxed(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Std_BitVec_toNat(lean_object*); -LEAN_EXPORT lean_object* l_Std_BitVec_xor___rarg___boxed(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_BitVec_instComplementBitVec(lean_object*); +LEAN_EXPORT lean_object* l_BitVec_shiftLeftZeroExtend___rarg(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_BitVec_udiv___boxed(lean_object*); +LEAN_EXPORT lean_object* l_BitVec_instHShiftRightBitVecNat___boxed(lean_object*); +LEAN_EXPORT lean_object* l_BitVec_instAndOpBitVec___boxed(lean_object*); +LEAN_EXPORT lean_object* l_BitVec_ult(lean_object*); +LEAN_EXPORT lean_object* l_BitVec_extractLsb___rarg___boxed(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_BitVec_instDecidableLeBitVecInstLEBitVec___rarg___boxed(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_BitVec_instHAppendBitVecHAddNatInstHAddInstAddNat___boxed(lean_object*); +static lean_object* l_BitVec___aux__Init__Data__BitVec__Basic______macroRules__BitVec__term_____x23______1___closed__14; lean_object* l_String_toSubstring_x27(lean_object*); -LEAN_EXPORT lean_object* l_Std_BitVec_instDecidableLeBitVecInstLEBitVec(lean_object*); -static lean_object* l_Std_BitVec_term_____x23_x27_______closed__7; -LEAN_EXPORT lean_object* l_Std_BitVec_instInhabitedBitVec___boxed(lean_object*); -static lean_object* l_Std_BitVec_term_____x23_______closed__17; -LEAN_EXPORT lean_object* l_Std_instDecidableEqBitVec___boxed(lean_object*); -LEAN_EXPORT lean_object* l_Std_BitVec_slt___boxed(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Std_BitVec_instOrOpBitVec(lean_object*); +LEAN_EXPORT lean_object* l_BitVec_xor___rarg___boxed(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_BitVec_ofBool(uint8_t); +LEAN_EXPORT lean_object* l_BitVec_nil; +LEAN_EXPORT lean_object* l_BitVec_instNegBitVec(lean_object*); lean_object* lean_nat_lor(lean_object*, lean_object*); -static lean_object* l_Std_BitVec___aux__Init__Data__BitVec__Basic______macroRules__Std__BitVec__term_____x23______1___closed__15; lean_object* l_Nat_repr(lean_object*); -LEAN_EXPORT lean_object* l_Std_BitVec_truncate(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Std_BitVec_instDecidableLeBitVecInstLEBitVec___rarg___boxed(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Std_BitVec_mul___boxed(lean_object*, lean_object*, lean_object*); -static lean_object* l_Std_BitVec___aux__Init__Data__BitVec__Basic______macroRules__Std__BitVec__term_____x23_x27______1___closed__7; -LEAN_EXPORT uint8_t l_Std_BitVec_decEq___rarg(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l_BitVec_sub(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT uint8_t l_BitVec_sle(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT uint8_t l_BitVec_decEq___rarg(lean_object* x_1, lean_object* x_2) { _start: { uint8_t x_3; @@ -326,35 +322,35 @@ x_3 = lean_nat_dec_eq(x_1, x_2); return x_3; } } -LEAN_EXPORT lean_object* l_Std_BitVec_decEq(lean_object* x_1) { +LEAN_EXPORT lean_object* l_BitVec_decEq(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l_Std_BitVec_decEq___rarg___boxed), 2, 0); +x_2 = lean_alloc_closure((void*)(l_BitVec_decEq___rarg___boxed), 2, 0); return x_2; } } -LEAN_EXPORT lean_object* l_Std_BitVec_decEq___rarg___boxed(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l_BitVec_decEq___rarg___boxed(lean_object* x_1, lean_object* x_2) { _start: { uint8_t x_3; lean_object* x_4; -x_3 = l_Std_BitVec_decEq___rarg(x_1, x_2); +x_3 = l_BitVec_decEq___rarg(x_1, x_2); lean_dec(x_2); lean_dec(x_1); x_4 = lean_box(x_3); return x_4; } } -LEAN_EXPORT lean_object* l_Std_BitVec_decEq___boxed(lean_object* x_1) { +LEAN_EXPORT lean_object* l_BitVec_decEq___boxed(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = l_Std_BitVec_decEq(x_1); +x_2 = l_BitVec_decEq(x_1); lean_dec(x_1); return x_2; } } -LEAN_EXPORT uint8_t l_Std_instDecidableEqBitVec___rarg(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT uint8_t l_instDecidableEqBitVec___rarg(lean_object* x_1, lean_object* x_2) { _start: { uint8_t x_3; @@ -362,68 +358,68 @@ x_3 = lean_nat_dec_eq(x_1, x_2); return x_3; } } -LEAN_EXPORT lean_object* l_Std_instDecidableEqBitVec(lean_object* x_1) { +LEAN_EXPORT lean_object* l_instDecidableEqBitVec(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l_Std_instDecidableEqBitVec___rarg___boxed), 2, 0); +x_2 = lean_alloc_closure((void*)(l_instDecidableEqBitVec___rarg___boxed), 2, 0); return x_2; } } -LEAN_EXPORT lean_object* l_Std_instDecidableEqBitVec___rarg___boxed(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l_instDecidableEqBitVec___rarg___boxed(lean_object* x_1, lean_object* x_2) { _start: { uint8_t x_3; lean_object* x_4; -x_3 = l_Std_instDecidableEqBitVec___rarg(x_1, x_2); +x_3 = l_instDecidableEqBitVec___rarg(x_1, x_2); lean_dec(x_2); lean_dec(x_1); x_4 = lean_box(x_3); return x_4; } } -LEAN_EXPORT lean_object* l_Std_instDecidableEqBitVec___boxed(lean_object* x_1) { +LEAN_EXPORT lean_object* l_instDecidableEqBitVec___boxed(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = l_Std_instDecidableEqBitVec(x_1); +x_2 = l_instDecidableEqBitVec(x_1); lean_dec(x_1); return x_2; } } -LEAN_EXPORT lean_object* l_Std_BitVec_ofNatLt___rarg(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l_BitVec_ofNatLt___rarg(lean_object* x_1, lean_object* x_2) { _start: { lean_inc(x_1); return x_1; } } -LEAN_EXPORT lean_object* l_Std_BitVec_ofNatLt(lean_object* x_1) { +LEAN_EXPORT lean_object* l_BitVec_ofNatLt(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l_Std_BitVec_ofNatLt___rarg___boxed), 2, 0); +x_2 = lean_alloc_closure((void*)(l_BitVec_ofNatLt___rarg___boxed), 2, 0); return x_2; } } -LEAN_EXPORT lean_object* l_Std_BitVec_ofNatLt___rarg___boxed(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l_BitVec_ofNatLt___rarg___boxed(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = l_Std_BitVec_ofNatLt___rarg(x_1, x_2); +x_3 = l_BitVec_ofNatLt___rarg(x_1, x_2); lean_dec(x_1); return x_3; } } -LEAN_EXPORT lean_object* l_Std_BitVec_ofNatLt___boxed(lean_object* x_1) { +LEAN_EXPORT lean_object* l_BitVec_ofNatLt___boxed(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = l_Std_BitVec_ofNatLt(x_1); +x_2 = l_BitVec_ofNatLt(x_1); lean_dec(x_1); return x_2; } } -LEAN_EXPORT lean_object* l_Std_BitVec_ofNat(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l_BitVec_ofNat(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; lean_object* x_4; lean_object* x_5; @@ -434,94 +430,94 @@ lean_dec(x_4); return x_5; } } -LEAN_EXPORT lean_object* l_Std_BitVec_ofNat___boxed(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l_BitVec_ofNat___boxed(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = l_Std_BitVec_ofNat(x_1, x_2); +x_3 = l_BitVec_ofNat(x_1, x_2); lean_dec(x_2); lean_dec(x_1); return x_3; } } -LEAN_EXPORT lean_object* l_Std_BitVec_instOfNat(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l_BitVec_instOfNat(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = l_Std_BitVec_ofNat(x_1, x_2); +x_3 = l_BitVec_ofNat(x_1, x_2); return x_3; } } -LEAN_EXPORT lean_object* l_Std_BitVec_instOfNat___boxed(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l_BitVec_instOfNat___boxed(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = l_Std_BitVec_instOfNat(x_1, x_2); +x_3 = l_BitVec_instOfNat(x_1, x_2); lean_dec(x_2); lean_dec(x_1); return x_3; } } -LEAN_EXPORT lean_object* l_Std_BitVec_natCastInst(lean_object* x_1) { +LEAN_EXPORT lean_object* l_BitVec_natCastInst(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l_Std_BitVec_ofNat___boxed), 2, 1); +x_2 = lean_alloc_closure((void*)(l_BitVec_ofNat___boxed), 2, 1); lean_closure_set(x_2, 0, x_1); return x_2; } } -LEAN_EXPORT lean_object* l_Std_BitVec_toNat___rarg(lean_object* x_1) { +LEAN_EXPORT lean_object* l_BitVec_toNat___rarg(lean_object* x_1) { _start: { lean_inc(x_1); return x_1; } } -LEAN_EXPORT lean_object* l_Std_BitVec_toNat(lean_object* x_1) { +LEAN_EXPORT lean_object* l_BitVec_toNat(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l_Std_BitVec_toNat___rarg___boxed), 1, 0); +x_2 = lean_alloc_closure((void*)(l_BitVec_toNat___rarg___boxed), 1, 0); return x_2; } } -LEAN_EXPORT lean_object* l_Std_BitVec_toNat___rarg___boxed(lean_object* x_1) { +LEAN_EXPORT lean_object* l_BitVec_toNat___rarg___boxed(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = l_Std_BitVec_toNat___rarg(x_1); +x_2 = l_BitVec_toNat___rarg(x_1); lean_dec(x_1); return x_2; } } -LEAN_EXPORT lean_object* l_Std_BitVec_toNat___boxed(lean_object* x_1) { +LEAN_EXPORT lean_object* l_BitVec_toNat___boxed(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = l_Std_BitVec_toNat(x_1); +x_2 = l_BitVec_toNat(x_1); lean_dec(x_1); return x_2; } } -static lean_object* _init_l_Std_BitVec_nil___closed__1() { +static lean_object* _init_l_BitVec_nil___closed__1() { _start: { lean_object* x_1; lean_object* x_2; x_1 = lean_unsigned_to_nat(0u); -x_2 = l_Std_BitVec_ofNat(x_1, x_1); +x_2 = l_BitVec_ofNat(x_1, x_1); return x_2; } } -static lean_object* _init_l_Std_BitVec_nil() { +static lean_object* _init_l_BitVec_nil() { _start: { lean_object* x_1; -x_1 = l_Std_BitVec_nil___closed__1; +x_1 = l_BitVec_nil___closed__1; return x_1; } } -LEAN_EXPORT lean_object* l_Std_BitVec_zero(lean_object* x_1) { +LEAN_EXPORT lean_object* l_BitVec_zero(lean_object* x_1) { _start: { lean_object* x_2; @@ -529,16 +525,16 @@ x_2 = lean_unsigned_to_nat(0u); return x_2; } } -LEAN_EXPORT lean_object* l_Std_BitVec_zero___boxed(lean_object* x_1) { +LEAN_EXPORT lean_object* l_BitVec_zero___boxed(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = l_Std_BitVec_zero(x_1); +x_2 = l_BitVec_zero(x_1); lean_dec(x_1); return x_2; } } -LEAN_EXPORT lean_object* l_Std_BitVec_instInhabitedBitVec(lean_object* x_1) { +LEAN_EXPORT lean_object* l_BitVec_instInhabitedBitVec(lean_object* x_1) { _start: { lean_object* x_2; @@ -546,16 +542,16 @@ x_2 = lean_unsigned_to_nat(0u); return x_2; } } -LEAN_EXPORT lean_object* l_Std_BitVec_instInhabitedBitVec___boxed(lean_object* x_1) { +LEAN_EXPORT lean_object* l_BitVec_instInhabitedBitVec___boxed(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = l_Std_BitVec_instInhabitedBitVec(x_1); +x_2 = l_BitVec_instInhabitedBitVec(x_1); lean_dec(x_1); return x_2; } } -LEAN_EXPORT lean_object* l_Std_BitVec_allOnes(lean_object* x_1) { +LEAN_EXPORT lean_object* l_BitVec_allOnes(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; @@ -567,16 +563,16 @@ lean_dec(x_3); return x_5; } } -LEAN_EXPORT lean_object* l_Std_BitVec_allOnes___boxed(lean_object* x_1) { +LEAN_EXPORT lean_object* l_BitVec_allOnes___boxed(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = l_Std_BitVec_allOnes(x_1); +x_2 = l_BitVec_allOnes(x_1); lean_dec(x_1); return x_2; } } -LEAN_EXPORT uint8_t l_Std_BitVec_getLsb___rarg(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT uint8_t l_BitVec_getLsb___rarg(lean_object* x_1, lean_object* x_2) { _start: { uint8_t x_3; @@ -584,35 +580,35 @@ x_3 = l_Nat_testBit(x_1, x_2); return x_3; } } -LEAN_EXPORT lean_object* l_Std_BitVec_getLsb(lean_object* x_1) { +LEAN_EXPORT lean_object* l_BitVec_getLsb(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l_Std_BitVec_getLsb___rarg___boxed), 2, 0); +x_2 = lean_alloc_closure((void*)(l_BitVec_getLsb___rarg___boxed), 2, 0); return x_2; } } -LEAN_EXPORT lean_object* l_Std_BitVec_getLsb___rarg___boxed(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l_BitVec_getLsb___rarg___boxed(lean_object* x_1, lean_object* x_2) { _start: { uint8_t x_3; lean_object* x_4; -x_3 = l_Std_BitVec_getLsb___rarg(x_1, x_2); +x_3 = l_BitVec_getLsb___rarg(x_1, x_2); lean_dec(x_2); lean_dec(x_1); x_4 = lean_box(x_3); return x_4; } } -LEAN_EXPORT lean_object* l_Std_BitVec_getLsb___boxed(lean_object* x_1) { +LEAN_EXPORT lean_object* l_BitVec_getLsb___boxed(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = l_Std_BitVec_getLsb(x_1); +x_2 = l_BitVec_getLsb(x_1); lean_dec(x_1); return x_2; } } -LEAN_EXPORT uint8_t l_Std_BitVec_getMsb(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT uint8_t l_BitVec_getMsb(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { uint8_t x_4; @@ -636,11 +632,11 @@ return x_9; } } } -LEAN_EXPORT lean_object* l_Std_BitVec_getMsb___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_BitVec_getMsb___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { uint8_t x_4; lean_object* x_5; -x_4 = l_Std_BitVec_getMsb(x_1, x_2, x_3); +x_4 = l_BitVec_getMsb(x_1, x_2, x_3); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); @@ -648,7 +644,7 @@ x_5 = lean_box(x_4); return x_5; } } -LEAN_EXPORT uint8_t l_Std_BitVec_msb(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT uint8_t l_BitVec_msb(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; uint8_t x_4; @@ -673,18 +669,18 @@ return x_9; } } } -LEAN_EXPORT lean_object* l_Std_BitVec_msb___boxed(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l_BitVec_msb___boxed(lean_object* x_1, lean_object* x_2) { _start: { uint8_t x_3; lean_object* x_4; -x_3 = l_Std_BitVec_msb(x_1, x_2); +x_3 = l_BitVec_msb(x_1, x_2); lean_dec(x_2); lean_dec(x_1); x_4 = lean_box(x_3); return x_4; } } -LEAN_EXPORT lean_object* l_Std_BitVec_toInt(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l_BitVec_toInt(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; uint8_t x_4; @@ -726,16 +722,16 @@ return x_15; } } } -LEAN_EXPORT lean_object* l_Std_BitVec_toInt___boxed(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l_BitVec_toInt___boxed(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = l_Std_BitVec_toInt(x_1, x_2); +x_3 = l_BitVec_toInt(x_1, x_2); lean_dec(x_1); return x_3; } } -static lean_object* _init_l_Std_BitVec_ofInt___closed__1() { +static lean_object* _init_l_BitVec_ofInt___closed__1() { _start: { lean_object* x_1; lean_object* x_2; @@ -744,17 +740,17 @@ x_2 = lean_nat_to_int(x_1); return x_2; } } -LEAN_EXPORT lean_object* l_Std_BitVec_ofInt(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l_BitVec_ofInt(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; uint8_t x_4; -x_3 = l_Std_BitVec_ofInt___closed__1; +x_3 = l_BitVec_ofInt___closed__1; x_4 = lean_int_dec_lt(x_2, x_3); if (x_4 == 0) { lean_object* x_5; lean_object* x_6; x_5 = lean_nat_abs(x_2); -x_6 = l_Std_BitVec_ofNat(x_1, x_5); +x_6 = l_BitVec_ofNat(x_1, x_5); lean_dec(x_5); return x_6; } @@ -778,34 +774,26 @@ return x_14; } } } -LEAN_EXPORT lean_object* l_Std_BitVec_ofInt___boxed(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l_BitVec_ofInt___boxed(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = l_Std_BitVec_ofInt(x_1, x_2); +x_3 = l_BitVec_ofInt(x_1, x_2); lean_dec(x_2); lean_dec(x_1); return x_3; } } -LEAN_EXPORT lean_object* l_Std_BitVec_instIntCastBitVec(lean_object* x_1) { +LEAN_EXPORT lean_object* l_BitVec_instIntCastBitVec(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l_Std_BitVec_ofInt___boxed), 2, 1); +x_2 = lean_alloc_closure((void*)(l_BitVec_ofInt___boxed), 2, 1); lean_closure_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Std_BitVec_term_____x23_______closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("Std", 3); -return x_1; -} -} -static lean_object* _init_l_Std_BitVec_term_____x23_______closed__2() { +static lean_object* _init_l_BitVec_term_____x23_______closed__1() { _start: { lean_object* x_1; @@ -813,7 +801,7 @@ x_1 = lean_mk_string_from_bytes("BitVec", 6); return x_1; } } -static lean_object* _init_l_Std_BitVec_term_____x23_______closed__3() { +static lean_object* _init_l_BitVec_term_____x23_______closed__2() { _start: { lean_object* x_1; @@ -821,18 +809,17 @@ x_1 = lean_mk_string_from_bytes("term__#__", 9); return x_1; } } -static lean_object* _init_l_Std_BitVec_term_____x23_______closed__4() { +static lean_object* _init_l_BitVec_term_____x23_______closed__3() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Std_BitVec_term_____x23_______closed__1; -x_2 = l_Std_BitVec_term_____x23_______closed__2; -x_3 = l_Std_BitVec_term_____x23_______closed__3; -x_4 = l_Lean_Name_mkStr3(x_1, x_2, x_3); -return x_4; +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_BitVec_term_____x23_______closed__1; +x_2 = l_BitVec_term_____x23_______closed__2; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; } } -static lean_object* _init_l_Std_BitVec_term_____x23_______closed__5() { +static lean_object* _init_l_BitVec_term_____x23_______closed__4() { _start: { lean_object* x_1; @@ -840,17 +827,17 @@ x_1 = lean_mk_string_from_bytes("andthen", 7); return x_1; } } -static lean_object* _init_l_Std_BitVec_term_____x23_______closed__6() { +static lean_object* _init_l_BitVec_term_____x23_______closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Std_BitVec_term_____x23_______closed__5; +x_2 = l_BitVec_term_____x23_______closed__4; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l_Std_BitVec_term_____x23_______closed__7() { +static lean_object* _init_l_BitVec_term_____x23_______closed__6() { _start: { lean_object* x_1; @@ -858,27 +845,27 @@ x_1 = lean_mk_string_from_bytes("noWs", 4); return x_1; } } -static lean_object* _init_l_Std_BitVec_term_____x23_______closed__8() { +static lean_object* _init_l_BitVec_term_____x23_______closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Std_BitVec_term_____x23_______closed__7; +x_2 = l_BitVec_term_____x23_______closed__6; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l_Std_BitVec_term_____x23_______closed__9() { +static lean_object* _init_l_BitVec_term_____x23_______closed__8() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Std_BitVec_term_____x23_______closed__8; +x_1 = l_BitVec_term_____x23_______closed__7; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Std_BitVec_term_____x23_______closed__10() { +static lean_object* _init_l_BitVec_term_____x23_______closed__9() { _start: { lean_object* x_1; @@ -886,23 +873,23 @@ x_1 = lean_mk_string_from_bytes("#", 1); return x_1; } } -static lean_object* _init_l_Std_BitVec_term_____x23_______closed__11() { +static lean_object* _init_l_BitVec_term_____x23_______closed__10() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Std_BitVec_term_____x23_______closed__10; +x_1 = l_BitVec_term_____x23_______closed__9; x_2 = lean_alloc_ctor(5, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Std_BitVec_term_____x23_______closed__12() { +static lean_object* _init_l_BitVec_term_____x23_______closed__11() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Std_BitVec_term_____x23_______closed__6; -x_2 = l_Std_BitVec_term_____x23_______closed__9; -x_3 = l_Std_BitVec_term_____x23_______closed__11; +x_1 = l_BitVec_term_____x23_______closed__5; +x_2 = l_BitVec_term_____x23_______closed__8; +x_3 = l_BitVec_term_____x23_______closed__10; x_4 = lean_alloc_ctor(2, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -910,13 +897,13 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_Std_BitVec_term_____x23_______closed__13() { +static lean_object* _init_l_BitVec_term_____x23_______closed__12() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Std_BitVec_term_____x23_______closed__6; -x_2 = l_Std_BitVec_term_____x23_______closed__12; -x_3 = l_Std_BitVec_term_____x23_______closed__9; +x_1 = l_BitVec_term_____x23_______closed__5; +x_2 = l_BitVec_term_____x23_______closed__11; +x_3 = l_BitVec_term_____x23_______closed__8; x_4 = lean_alloc_ctor(2, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -924,7 +911,7 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_Std_BitVec_term_____x23_______closed__14() { +static lean_object* _init_l_BitVec_term_____x23_______closed__13() { _start: { lean_object* x_1; @@ -932,21 +919,21 @@ x_1 = lean_mk_string_from_bytes("term", 4); return x_1; } } -static lean_object* _init_l_Std_BitVec_term_____x23_______closed__15() { +static lean_object* _init_l_BitVec_term_____x23_______closed__14() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Std_BitVec_term_____x23_______closed__14; +x_2 = l_BitVec_term_____x23_______closed__13; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l_Std_BitVec_term_____x23_______closed__16() { +static lean_object* _init_l_BitVec_term_____x23_______closed__15() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Std_BitVec_term_____x23_______closed__15; +x_1 = l_BitVec_term_____x23_______closed__14; x_2 = lean_unsigned_to_nat(1024u); x_3 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -954,13 +941,13 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l_Std_BitVec_term_____x23_______closed__17() { +static lean_object* _init_l_BitVec_term_____x23_______closed__16() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Std_BitVec_term_____x23_______closed__6; -x_2 = l_Std_BitVec_term_____x23_______closed__13; -x_3 = l_Std_BitVec_term_____x23_______closed__16; +x_1 = l_BitVec_term_____x23_______closed__5; +x_2 = l_BitVec_term_____x23_______closed__12; +x_3 = l_BitVec_term_____x23_______closed__15; x_4 = lean_alloc_ctor(2, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -968,13 +955,13 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_Std_BitVec_term_____x23_______closed__18() { +static lean_object* _init_l_BitVec_term_____x23_______closed__17() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Std_BitVec_term_____x23_______closed__4; +x_1 = l_BitVec_term_____x23_______closed__3; x_2 = lean_unsigned_to_nat(1024u); -x_3 = l_Std_BitVec_term_____x23_______closed__17; +x_3 = l_BitVec_term_____x23_______closed__16; x_4 = lean_alloc_ctor(4, 4, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -983,15 +970,15 @@ lean_ctor_set(x_4, 3, x_3); return x_4; } } -static lean_object* _init_l_Std_BitVec_term_____x23____() { +static lean_object* _init_l_BitVec_term_____x23____() { _start: { lean_object* x_1; -x_1 = l_Std_BitVec_term_____x23_______closed__18; +x_1 = l_BitVec_term_____x23_______closed__17; return x_1; } } -static lean_object* _init_l_Std_BitVec___aux__Init__Data__BitVec__Basic______macroRules__Std__BitVec__term_____x23______1___closed__1() { +static lean_object* _init_l_BitVec___aux__Init__Data__BitVec__Basic______macroRules__BitVec__term_____x23______1___closed__1() { _start: { lean_object* x_1; @@ -999,7 +986,7 @@ x_1 = lean_mk_string_from_bytes("Lean", 4); return x_1; } } -static lean_object* _init_l_Std_BitVec___aux__Init__Data__BitVec__Basic______macroRules__Std__BitVec__term_____x23______1___closed__2() { +static lean_object* _init_l_BitVec___aux__Init__Data__BitVec__Basic______macroRules__BitVec__term_____x23______1___closed__2() { _start: { lean_object* x_1; @@ -1007,7 +994,7 @@ x_1 = lean_mk_string_from_bytes("Parser", 6); return x_1; } } -static lean_object* _init_l_Std_BitVec___aux__Init__Data__BitVec__Basic______macroRules__Std__BitVec__term_____x23______1___closed__3() { +static lean_object* _init_l_BitVec___aux__Init__Data__BitVec__Basic______macroRules__BitVec__term_____x23______1___closed__3() { _start: { lean_object* x_1; @@ -1015,7 +1002,7 @@ x_1 = lean_mk_string_from_bytes("Term", 4); return x_1; } } -static lean_object* _init_l_Std_BitVec___aux__Init__Data__BitVec__Basic______macroRules__Std__BitVec__term_____x23______1___closed__4() { +static lean_object* _init_l_BitVec___aux__Init__Data__BitVec__Basic______macroRules__BitVec__term_____x23______1___closed__4() { _start: { lean_object* x_1; @@ -1023,19 +1010,19 @@ x_1 = lean_mk_string_from_bytes("app", 3); return x_1; } } -static lean_object* _init_l_Std_BitVec___aux__Init__Data__BitVec__Basic______macroRules__Std__BitVec__term_____x23______1___closed__5() { +static lean_object* _init_l_BitVec___aux__Init__Data__BitVec__Basic______macroRules__BitVec__term_____x23______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_Std_BitVec___aux__Init__Data__BitVec__Basic______macroRules__Std__BitVec__term_____x23______1___closed__1; -x_2 = l_Std_BitVec___aux__Init__Data__BitVec__Basic______macroRules__Std__BitVec__term_____x23______1___closed__2; -x_3 = l_Std_BitVec___aux__Init__Data__BitVec__Basic______macroRules__Std__BitVec__term_____x23______1___closed__3; -x_4 = l_Std_BitVec___aux__Init__Data__BitVec__Basic______macroRules__Std__BitVec__term_____x23______1___closed__4; +x_1 = l_BitVec___aux__Init__Data__BitVec__Basic______macroRules__BitVec__term_____x23______1___closed__1; +x_2 = l_BitVec___aux__Init__Data__BitVec__Basic______macroRules__BitVec__term_____x23______1___closed__2; +x_3 = l_BitVec___aux__Init__Data__BitVec__Basic______macroRules__BitVec__term_____x23______1___closed__3; +x_4 = l_BitVec___aux__Init__Data__BitVec__Basic______macroRules__BitVec__term_____x23______1___closed__4; x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); return x_5; } } -static lean_object* _init_l_Std_BitVec___aux__Init__Data__BitVec__Basic______macroRules__Std__BitVec__term_____x23______1___closed__6() { +static lean_object* _init_l_BitVec___aux__Init__Data__BitVec__Basic______macroRules__BitVec__term_____x23______1___closed__6() { _start: { lean_object* x_1; @@ -1043,16 +1030,16 @@ x_1 = lean_mk_string_from_bytes("BitVec.ofNat", 12); return x_1; } } -static lean_object* _init_l_Std_BitVec___aux__Init__Data__BitVec__Basic______macroRules__Std__BitVec__term_____x23______1___closed__7() { +static lean_object* _init_l_BitVec___aux__Init__Data__BitVec__Basic______macroRules__BitVec__term_____x23______1___closed__7() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Std_BitVec___aux__Init__Data__BitVec__Basic______macroRules__Std__BitVec__term_____x23______1___closed__6; +x_1 = l_BitVec___aux__Init__Data__BitVec__Basic______macroRules__BitVec__term_____x23______1___closed__6; x_2 = l_String_toSubstring_x27(x_1); return x_2; } } -static lean_object* _init_l_Std_BitVec___aux__Init__Data__BitVec__Basic______macroRules__Std__BitVec__term_____x23______1___closed__8() { +static lean_object* _init_l_BitVec___aux__Init__Data__BitVec__Basic______macroRules__BitVec__term_____x23______1___closed__8() { _start: { lean_object* x_1; @@ -1060,74 +1047,63 @@ x_1 = lean_mk_string_from_bytes("ofNat", 5); return x_1; } } -static lean_object* _init_l_Std_BitVec___aux__Init__Data__BitVec__Basic______macroRules__Std__BitVec__term_____x23______1___closed__9() { +static lean_object* _init_l_BitVec___aux__Init__Data__BitVec__Basic______macroRules__BitVec__term_____x23______1___closed__9() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Std_BitVec_term_____x23_______closed__2; -x_2 = l_Std_BitVec___aux__Init__Data__BitVec__Basic______macroRules__Std__BitVec__term_____x23______1___closed__8; +x_1 = l_BitVec_term_____x23_______closed__1; +x_2 = l_BitVec___aux__Init__Data__BitVec__Basic______macroRules__BitVec__term_____x23______1___closed__8; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } -static lean_object* _init_l_Std_BitVec___aux__Init__Data__BitVec__Basic______macroRules__Std__BitVec__term_____x23______1___closed__10() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Std_BitVec_term_____x23_______closed__1; -x_2 = l_Std_BitVec_term_____x23_______closed__2; -x_3 = l_Std_BitVec___aux__Init__Data__BitVec__Basic______macroRules__Std__BitVec__term_____x23______1___closed__8; -x_4 = l_Lean_Name_mkStr3(x_1, x_2, x_3); -return x_4; -} -} -static lean_object* _init_l_Std_BitVec___aux__Init__Data__BitVec__Basic______macroRules__Std__BitVec__term_____x23______1___closed__11() { +static lean_object* _init_l_BitVec___aux__Init__Data__BitVec__Basic______macroRules__BitVec__term_____x23______1___closed__10() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Std_BitVec___aux__Init__Data__BitVec__Basic______macroRules__Std__BitVec__term_____x23______1___closed__10; +x_2 = l_BitVec___aux__Init__Data__BitVec__Basic______macroRules__BitVec__term_____x23______1___closed__9; 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_BitVec___aux__Init__Data__BitVec__Basic______macroRules__Std__BitVec__term_____x23______1___closed__12() { +static lean_object* _init_l_BitVec___aux__Init__Data__BitVec__Basic______macroRules__BitVec__term_____x23______1___closed__11() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Std_BitVec___aux__Init__Data__BitVec__Basic______macroRules__Std__BitVec__term_____x23______1___closed__10; +x_1 = l_BitVec___aux__Init__Data__BitVec__Basic______macroRules__BitVec__term_____x23______1___closed__9; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Std_BitVec___aux__Init__Data__BitVec__Basic______macroRules__Std__BitVec__term_____x23______1___closed__13() { +static lean_object* _init_l_BitVec___aux__Init__Data__BitVec__Basic______macroRules__BitVec__term_____x23______1___closed__12() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Std_BitVec___aux__Init__Data__BitVec__Basic______macroRules__Std__BitVec__term_____x23______1___closed__12; +x_2 = l_BitVec___aux__Init__Data__BitVec__Basic______macroRules__BitVec__term_____x23______1___closed__11; 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_BitVec___aux__Init__Data__BitVec__Basic______macroRules__Std__BitVec__term_____x23______1___closed__14() { +static lean_object* _init_l_BitVec___aux__Init__Data__BitVec__Basic______macroRules__BitVec__term_____x23______1___closed__13() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Std_BitVec___aux__Init__Data__BitVec__Basic______macroRules__Std__BitVec__term_____x23______1___closed__11; -x_2 = l_Std_BitVec___aux__Init__Data__BitVec__Basic______macroRules__Std__BitVec__term_____x23______1___closed__13; +x_1 = l_BitVec___aux__Init__Data__BitVec__Basic______macroRules__BitVec__term_____x23______1___closed__10; +x_2 = l_BitVec___aux__Init__Data__BitVec__Basic______macroRules__BitVec__term_____x23______1___closed__12; 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_BitVec___aux__Init__Data__BitVec__Basic______macroRules__Std__BitVec__term_____x23______1___closed__15() { +static lean_object* _init_l_BitVec___aux__Init__Data__BitVec__Basic______macroRules__BitVec__term_____x23______1___closed__14() { _start: { lean_object* x_1; @@ -1135,21 +1111,21 @@ x_1 = lean_mk_string_from_bytes("null", 4); return x_1; } } -static lean_object* _init_l_Std_BitVec___aux__Init__Data__BitVec__Basic______macroRules__Std__BitVec__term_____x23______1___closed__16() { +static lean_object* _init_l_BitVec___aux__Init__Data__BitVec__Basic______macroRules__BitVec__term_____x23______1___closed__15() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Std_BitVec___aux__Init__Data__BitVec__Basic______macroRules__Std__BitVec__term_____x23______1___closed__15; +x_2 = l_BitVec___aux__Init__Data__BitVec__Basic______macroRules__BitVec__term_____x23______1___closed__14; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -LEAN_EXPORT lean_object* l_Std_BitVec___aux__Init__Data__BitVec__Basic______macroRules__Std__BitVec__term_____x23______1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_BitVec___aux__Init__Data__BitVec__Basic______macroRules__BitVec__term_____x23______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_Std_BitVec_term_____x23_______closed__4; +x_4 = l_BitVec_term_____x23_______closed__3; lean_inc(x_1); x_5 = l_Lean_Syntax_isOfKind(x_1, x_4); if (x_5 == 0) @@ -1180,20 +1156,20 @@ lean_inc(x_15); x_16 = lean_ctor_get(x_2, 1); lean_inc(x_16); lean_dec(x_2); -x_17 = l_Std_BitVec___aux__Init__Data__BitVec__Basic______macroRules__Std__BitVec__term_____x23______1___closed__9; +x_17 = l_BitVec___aux__Init__Data__BitVec__Basic______macroRules__BitVec__term_____x23______1___closed__9; x_18 = l_Lean_addMacroScope(x_16, x_17, x_15); -x_19 = l_Std_BitVec___aux__Init__Data__BitVec__Basic______macroRules__Std__BitVec__term_____x23______1___closed__7; -x_20 = l_Std_BitVec___aux__Init__Data__BitVec__Basic______macroRules__Std__BitVec__term_____x23______1___closed__14; +x_19 = l_BitVec___aux__Init__Data__BitVec__Basic______macroRules__BitVec__term_____x23______1___closed__7; +x_20 = l_BitVec___aux__Init__Data__BitVec__Basic______macroRules__BitVec__term_____x23______1___closed__13; lean_inc(x_14); x_21 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_21, 0, x_14); lean_ctor_set(x_21, 1, x_19); lean_ctor_set(x_21, 2, x_18); lean_ctor_set(x_21, 3, x_20); -x_22 = l_Std_BitVec___aux__Init__Data__BitVec__Basic______macroRules__Std__BitVec__term_____x23______1___closed__16; +x_22 = l_BitVec___aux__Init__Data__BitVec__Basic______macroRules__BitVec__term_____x23______1___closed__15; lean_inc(x_14); x_23 = l_Lean_Syntax_node2(x_14, x_22, x_11, x_9); -x_24 = l_Std_BitVec___aux__Init__Data__BitVec__Basic______macroRules__Std__BitVec__term_____x23______1___closed__5; +x_24 = l_BitVec___aux__Init__Data__BitVec__Basic______macroRules__BitVec__term_____x23______1___closed__5; x_25 = l_Lean_Syntax_node2(x_14, x_24, x_21, x_23); x_26 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_26, 0, x_25); @@ -1202,11 +1178,11 @@ return x_26; } } } -LEAN_EXPORT lean_object* l_Std_BitVec_unexpandBitVecOfNat(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_BitVec_unexpandBitVecOfNat(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; -x_4 = l_Std_BitVec___aux__Init__Data__BitVec__Basic______macroRules__Std__BitVec__term_____x23______1___closed__5; +x_4 = l_BitVec___aux__Init__Data__BitVec__Basic______macroRules__BitVec__term_____x23______1___closed__5; lean_inc(x_1); x_5 = l_Lean_Syntax_isOfKind(x_1, x_4); if (x_5 == 0) @@ -1249,12 +1225,12 @@ x_16 = l_Lean_Syntax_getArg(x_9, x_8); lean_dec(x_9); x_17 = 0; x_18 = l_Lean_SourceInfo_fromRef(x_2, x_17); -x_19 = l_Std_BitVec_term_____x23_______closed__10; +x_19 = l_BitVec_term_____x23_______closed__9; lean_inc(x_18); x_20 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_20, 0, x_18); lean_ctor_set(x_20, 1, x_19); -x_21 = l_Std_BitVec_term_____x23_______closed__4; +x_21 = l_BitVec_term_____x23_______closed__3; x_22 = l_Lean_Syntax_node3(x_18, x_21, x_16, x_20, x_15); x_23 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_23, 0, x_22); @@ -1264,7 +1240,7 @@ return x_23; } } } -static lean_object* _init_l_Std_BitVec_term_____x23_x27_______closed__1() { +static lean_object* _init_l_BitVec_term_____x23_x27_______closed__1() { _start: { lean_object* x_1; @@ -1272,18 +1248,17 @@ x_1 = lean_mk_string_from_bytes("term__#'__", 10); return x_1; } } -static lean_object* _init_l_Std_BitVec_term_____x23_x27_______closed__2() { +static lean_object* _init_l_BitVec_term_____x23_x27_______closed__2() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Std_BitVec_term_____x23_______closed__1; -x_2 = l_Std_BitVec_term_____x23_______closed__2; -x_3 = l_Std_BitVec_term_____x23_x27_______closed__1; -x_4 = l_Lean_Name_mkStr3(x_1, x_2, x_3); -return x_4; +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_BitVec_term_____x23_______closed__1; +x_2 = l_BitVec_term_____x23_x27_______closed__1; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; } } -static lean_object* _init_l_Std_BitVec_term_____x23_x27_______closed__3() { +static lean_object* _init_l_BitVec_term_____x23_x27_______closed__3() { _start: { lean_object* x_1; @@ -1291,23 +1266,23 @@ x_1 = lean_mk_string_from_bytes("#'", 2); return x_1; } } -static lean_object* _init_l_Std_BitVec_term_____x23_x27_______closed__4() { +static lean_object* _init_l_BitVec_term_____x23_x27_______closed__4() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Std_BitVec_term_____x23_x27_______closed__3; +x_1 = l_BitVec_term_____x23_x27_______closed__3; x_2 = lean_alloc_ctor(5, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Std_BitVec_term_____x23_x27_______closed__5() { +static lean_object* _init_l_BitVec_term_____x23_x27_______closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Std_BitVec_term_____x23_______closed__6; -x_2 = l_Std_BitVec_term_____x23_______closed__9; -x_3 = l_Std_BitVec_term_____x23_x27_______closed__4; +x_1 = l_BitVec_term_____x23_______closed__5; +x_2 = l_BitVec_term_____x23_______closed__8; +x_3 = l_BitVec_term_____x23_x27_______closed__4; x_4 = lean_alloc_ctor(2, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -1315,13 +1290,13 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_Std_BitVec_term_____x23_x27_______closed__6() { +static lean_object* _init_l_BitVec_term_____x23_x27_______closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Std_BitVec_term_____x23_______closed__6; -x_2 = l_Std_BitVec_term_____x23_x27_______closed__5; -x_3 = l_Std_BitVec_term_____x23_______closed__9; +x_1 = l_BitVec_term_____x23_______closed__5; +x_2 = l_BitVec_term_____x23_x27_______closed__5; +x_3 = l_BitVec_term_____x23_______closed__8; x_4 = lean_alloc_ctor(2, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -1329,13 +1304,13 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_Std_BitVec_term_____x23_x27_______closed__7() { +static lean_object* _init_l_BitVec_term_____x23_x27_______closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Std_BitVec_term_____x23_______closed__6; -x_2 = l_Std_BitVec_term_____x23_x27_______closed__6; -x_3 = l_Std_BitVec_term_____x23_______closed__16; +x_1 = l_BitVec_term_____x23_______closed__5; +x_2 = l_BitVec_term_____x23_x27_______closed__6; +x_3 = l_BitVec_term_____x23_______closed__15; x_4 = lean_alloc_ctor(2, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -1343,13 +1318,13 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_Std_BitVec_term_____x23_x27_______closed__8() { +static lean_object* _init_l_BitVec_term_____x23_x27_______closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Std_BitVec_term_____x23_x27_______closed__2; +x_1 = l_BitVec_term_____x23_x27_______closed__2; x_2 = lean_unsigned_to_nat(1024u); -x_3 = l_Std_BitVec_term_____x23_x27_______closed__7; +x_3 = l_BitVec_term_____x23_x27_______closed__7; x_4 = lean_alloc_ctor(4, 4, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -1358,15 +1333,15 @@ lean_ctor_set(x_4, 3, x_3); return x_4; } } -static lean_object* _init_l_Std_BitVec_term_____x23_x27____() { +static lean_object* _init_l_BitVec_term_____x23_x27____() { _start: { lean_object* x_1; -x_1 = l_Std_BitVec_term_____x23_x27_______closed__8; +x_1 = l_BitVec_term_____x23_x27_______closed__8; return x_1; } } -static lean_object* _init_l_Std_BitVec___aux__Init__Data__BitVec__Basic______macroRules__Std__BitVec__term_____x23_x27______1___closed__1() { +static lean_object* _init_l_BitVec___aux__Init__Data__BitVec__Basic______macroRules__BitVec__term_____x23_x27______1___closed__1() { _start: { lean_object* x_1; @@ -1374,16 +1349,16 @@ x_1 = lean_mk_string_from_bytes("BitVec.ofNatLt", 14); return x_1; } } -static lean_object* _init_l_Std_BitVec___aux__Init__Data__BitVec__Basic______macroRules__Std__BitVec__term_____x23_x27______1___closed__2() { +static lean_object* _init_l_BitVec___aux__Init__Data__BitVec__Basic______macroRules__BitVec__term_____x23_x27______1___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Std_BitVec___aux__Init__Data__BitVec__Basic______macroRules__Std__BitVec__term_____x23_x27______1___closed__1; +x_1 = l_BitVec___aux__Init__Data__BitVec__Basic______macroRules__BitVec__term_____x23_x27______1___closed__1; x_2 = l_String_toSubstring_x27(x_1); return x_2; } } -static lean_object* _init_l_Std_BitVec___aux__Init__Data__BitVec__Basic______macroRules__Std__BitVec__term_____x23_x27______1___closed__3() { +static lean_object* _init_l_BitVec___aux__Init__Data__BitVec__Basic______macroRules__BitVec__term_____x23_x27______1___closed__3() { _start: { lean_object* x_1; @@ -1391,78 +1366,67 @@ x_1 = lean_mk_string_from_bytes("ofNatLt", 7); return x_1; } } -static lean_object* _init_l_Std_BitVec___aux__Init__Data__BitVec__Basic______macroRules__Std__BitVec__term_____x23_x27______1___closed__4() { +static lean_object* _init_l_BitVec___aux__Init__Data__BitVec__Basic______macroRules__BitVec__term_____x23_x27______1___closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Std_BitVec_term_____x23_______closed__2; -x_2 = l_Std_BitVec___aux__Init__Data__BitVec__Basic______macroRules__Std__BitVec__term_____x23_x27______1___closed__3; +x_1 = l_BitVec_term_____x23_______closed__1; +x_2 = l_BitVec___aux__Init__Data__BitVec__Basic______macroRules__BitVec__term_____x23_x27______1___closed__3; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } -static lean_object* _init_l_Std_BitVec___aux__Init__Data__BitVec__Basic______macroRules__Std__BitVec__term_____x23_x27______1___closed__5() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Std_BitVec_term_____x23_______closed__1; -x_2 = l_Std_BitVec_term_____x23_______closed__2; -x_3 = l_Std_BitVec___aux__Init__Data__BitVec__Basic______macroRules__Std__BitVec__term_____x23_x27______1___closed__3; -x_4 = l_Lean_Name_mkStr3(x_1, x_2, x_3); -return x_4; -} -} -static lean_object* _init_l_Std_BitVec___aux__Init__Data__BitVec__Basic______macroRules__Std__BitVec__term_____x23_x27______1___closed__6() { +static lean_object* _init_l_BitVec___aux__Init__Data__BitVec__Basic______macroRules__BitVec__term_____x23_x27______1___closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Std_BitVec___aux__Init__Data__BitVec__Basic______macroRules__Std__BitVec__term_____x23_x27______1___closed__5; +x_2 = l_BitVec___aux__Init__Data__BitVec__Basic______macroRules__BitVec__term_____x23_x27______1___closed__4; 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_BitVec___aux__Init__Data__BitVec__Basic______macroRules__Std__BitVec__term_____x23_x27______1___closed__7() { +static lean_object* _init_l_BitVec___aux__Init__Data__BitVec__Basic______macroRules__BitVec__term_____x23_x27______1___closed__6() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Std_BitVec___aux__Init__Data__BitVec__Basic______macroRules__Std__BitVec__term_____x23_x27______1___closed__5; +x_1 = l_BitVec___aux__Init__Data__BitVec__Basic______macroRules__BitVec__term_____x23_x27______1___closed__4; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Std_BitVec___aux__Init__Data__BitVec__Basic______macroRules__Std__BitVec__term_____x23_x27______1___closed__8() { +static lean_object* _init_l_BitVec___aux__Init__Data__BitVec__Basic______macroRules__BitVec__term_____x23_x27______1___closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Std_BitVec___aux__Init__Data__BitVec__Basic______macroRules__Std__BitVec__term_____x23_x27______1___closed__7; +x_2 = l_BitVec___aux__Init__Data__BitVec__Basic______macroRules__BitVec__term_____x23_x27______1___closed__6; 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_BitVec___aux__Init__Data__BitVec__Basic______macroRules__Std__BitVec__term_____x23_x27______1___closed__9() { +static lean_object* _init_l_BitVec___aux__Init__Data__BitVec__Basic______macroRules__BitVec__term_____x23_x27______1___closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Std_BitVec___aux__Init__Data__BitVec__Basic______macroRules__Std__BitVec__term_____x23_x27______1___closed__6; -x_2 = l_Std_BitVec___aux__Init__Data__BitVec__Basic______macroRules__Std__BitVec__term_____x23_x27______1___closed__8; +x_1 = l_BitVec___aux__Init__Data__BitVec__Basic______macroRules__BitVec__term_____x23_x27______1___closed__5; +x_2 = l_BitVec___aux__Init__Data__BitVec__Basic______macroRules__BitVec__term_____x23_x27______1___closed__7; 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; } } -LEAN_EXPORT lean_object* l_Std_BitVec___aux__Init__Data__BitVec__Basic______macroRules__Std__BitVec__term_____x23_x27______1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_BitVec___aux__Init__Data__BitVec__Basic______macroRules__BitVec__term_____x23_x27______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_Std_BitVec_term_____x23_x27_______closed__2; +x_4 = l_BitVec_term_____x23_x27_______closed__2; lean_inc(x_1); x_5 = l_Lean_Syntax_isOfKind(x_1, x_4); if (x_5 == 0) @@ -1493,20 +1457,20 @@ lean_inc(x_15); x_16 = lean_ctor_get(x_2, 1); lean_inc(x_16); lean_dec(x_2); -x_17 = l_Std_BitVec___aux__Init__Data__BitVec__Basic______macroRules__Std__BitVec__term_____x23_x27______1___closed__4; +x_17 = l_BitVec___aux__Init__Data__BitVec__Basic______macroRules__BitVec__term_____x23_x27______1___closed__4; x_18 = l_Lean_addMacroScope(x_16, x_17, x_15); -x_19 = l_Std_BitVec___aux__Init__Data__BitVec__Basic______macroRules__Std__BitVec__term_____x23_x27______1___closed__2; -x_20 = l_Std_BitVec___aux__Init__Data__BitVec__Basic______macroRules__Std__BitVec__term_____x23_x27______1___closed__9; +x_19 = l_BitVec___aux__Init__Data__BitVec__Basic______macroRules__BitVec__term_____x23_x27______1___closed__2; +x_20 = l_BitVec___aux__Init__Data__BitVec__Basic______macroRules__BitVec__term_____x23_x27______1___closed__8; lean_inc(x_14); x_21 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_21, 0, x_14); lean_ctor_set(x_21, 1, x_19); lean_ctor_set(x_21, 2, x_18); lean_ctor_set(x_21, 3, x_20); -x_22 = l_Std_BitVec___aux__Init__Data__BitVec__Basic______macroRules__Std__BitVec__term_____x23______1___closed__16; +x_22 = l_BitVec___aux__Init__Data__BitVec__Basic______macroRules__BitVec__term_____x23______1___closed__15; lean_inc(x_14); x_23 = l_Lean_Syntax_node2(x_14, x_22, x_9, x_11); -x_24 = l_Std_BitVec___aux__Init__Data__BitVec__Basic______macroRules__Std__BitVec__term_____x23______1___closed__5; +x_24 = l_BitVec___aux__Init__Data__BitVec__Basic______macroRules__BitVec__term_____x23______1___closed__5; x_25 = l_Lean_Syntax_node2(x_14, x_24, x_21, x_23); x_26 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_26, 0, x_25); @@ -1515,11 +1479,11 @@ return x_26; } } } -LEAN_EXPORT lean_object* l_Std_BitVec_unexpandBitVecOfNatLt(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_BitVec_unexpandBitVecOfNatLt(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; -x_4 = l_Std_BitVec___aux__Init__Data__BitVec__Basic______macroRules__Std__BitVec__term_____x23______1___closed__5; +x_4 = l_BitVec___aux__Init__Data__BitVec__Basic______macroRules__BitVec__term_____x23______1___closed__5; lean_inc(x_1); x_5 = l_Lean_Syntax_isOfKind(x_1, x_4); if (x_5 == 0) @@ -1562,12 +1526,12 @@ x_16 = l_Lean_Syntax_getArg(x_9, x_8); lean_dec(x_9); x_17 = 0; x_18 = l_Lean_SourceInfo_fromRef(x_2, x_17); -x_19 = l_Std_BitVec_term_____x23_x27_______closed__3; +x_19 = l_BitVec_term_____x23_x27_______closed__3; lean_inc(x_18); x_20 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_20, 0, x_18); lean_ctor_set(x_20, 1, x_19); -x_21 = l_Std_BitVec_term_____x23_x27_______closed__2; +x_21 = l_BitVec_term_____x23_x27_______closed__2; x_22 = l_Lean_Syntax_node3(x_18, x_21, x_15, x_20, x_16); x_23 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_23, 0, x_22); @@ -1577,7 +1541,7 @@ return x_23; } } } -static lean_object* _init_l_Std_BitVec_toHex___boxed__const__1() { +static lean_object* _init_l_BitVec_toHex___boxed__const__1() { _start: { uint32_t x_1; lean_object* x_2; @@ -1586,7 +1550,7 @@ x_2 = lean_box_uint32(x_1); return x_2; } } -LEAN_EXPORT lean_object* l_Std_BitVec_toHex(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l_BitVec_toHex(lean_object* x_1, lean_object* x_2) { _start: { 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; @@ -1602,7 +1566,7 @@ x_10 = lean_string_length(x_5); x_11 = lean_nat_sub(x_9, x_10); lean_dec(x_10); lean_dec(x_9); -x_12 = l_Std_BitVec_toHex___boxed__const__1; +x_12 = l_BitVec_toHex___boxed__const__1; x_13 = l_List_replicateTR___rarg(x_11, x_12); x_14 = lean_string_mk(x_13); x_15 = lean_string_append(x_14, x_5); @@ -1610,16 +1574,16 @@ lean_dec(x_5); return x_15; } } -LEAN_EXPORT lean_object* l_Std_BitVec_toHex___boxed(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l_BitVec_toHex___boxed(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = l_Std_BitVec_toHex(x_1, x_2); +x_3 = l_BitVec_toHex(x_1, x_2); lean_dec(x_1); return x_3; } } -static lean_object* _init_l_Std_BitVec_instReprBitVec___closed__1() { +static lean_object* _init_l_BitVec_instReprBitVec___closed__1() { _start: { lean_object* x_1; @@ -1627,38 +1591,38 @@ x_1 = lean_mk_string_from_bytes("0x", 2); return x_1; } } -static lean_object* _init_l_Std_BitVec_instReprBitVec___closed__2() { +static lean_object* _init_l_BitVec_instReprBitVec___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Std_BitVec_instReprBitVec___closed__1; +x_1 = l_BitVec_instReprBitVec___closed__1; x_2 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Std_BitVec_instReprBitVec___closed__3() { +static lean_object* _init_l_BitVec_instReprBitVec___closed__3() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Std_BitVec_term_____x23_______closed__10; +x_1 = l_BitVec_term_____x23_______closed__9; x_2 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -LEAN_EXPORT lean_object* l_Std_BitVec_instReprBitVec(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_BitVec_instReprBitVec(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; -x_4 = l_Std_BitVec_toHex(x_1, x_2); +x_4 = l_BitVec_toHex(x_1, x_2); x_5 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_5, 0, x_4); -x_6 = l_Std_BitVec_instReprBitVec___closed__2; +x_6 = l_BitVec_instReprBitVec___closed__2; x_7 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_7, 0, x_6); lean_ctor_set(x_7, 1, x_5); -x_8 = l_Std_BitVec_instReprBitVec___closed__3; +x_8 = l_BitVec_instReprBitVec___closed__3; x_9 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_9, 0, x_7); lean_ctor_set(x_9, 1, x_8); @@ -1671,27 +1635,27 @@ lean_ctor_set(x_12, 1, x_11); return x_12; } } -LEAN_EXPORT lean_object* l_Std_BitVec_instReprBitVec___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_BitVec_instReprBitVec___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l_Std_BitVec_instReprBitVec(x_1, x_2, x_3); +x_4 = l_BitVec_instReprBitVec(x_1, x_2, x_3); lean_dec(x_3); return x_4; } } -LEAN_EXPORT lean_object* l_Std_BitVec_instToStringBitVec(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l_BitVec_instToStringBitVec(lean_object* x_1, lean_object* x_2) { _start: { 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; -x_3 = l_Std_BitVec_toHex(x_1, x_2); +x_3 = l_BitVec_toHex(x_1, x_2); x_4 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_4, 0, x_3); -x_5 = l_Std_BitVec_instReprBitVec___closed__2; +x_5 = l_BitVec_instReprBitVec___closed__2; x_6 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_6, 0, x_5); lean_ctor_set(x_6, 1, x_4); -x_7 = l_Std_BitVec_instReprBitVec___closed__3; +x_7 = l_BitVec_instReprBitVec___closed__3; x_8 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_8, 0, x_6); lean_ctor_set(x_8, 1, x_7); @@ -1707,37 +1671,37 @@ x_14 = lean_format_pretty(x_11, x_12, x_13, x_13); return x_14; } } -LEAN_EXPORT lean_object* l_Std_BitVec_add(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_BitVec_add(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; lean_object* x_5; x_4 = lean_nat_add(x_2, x_3); -x_5 = l_Std_BitVec_ofNat(x_1, x_4); +x_5 = l_BitVec_ofNat(x_1, x_4); lean_dec(x_4); return x_5; } } -LEAN_EXPORT lean_object* l_Std_BitVec_add___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_BitVec_add___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l_Std_BitVec_add(x_1, x_2, x_3); +x_4 = l_BitVec_add(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_Std_BitVec_instAddBitVec(lean_object* x_1) { +LEAN_EXPORT lean_object* l_BitVec_instAddBitVec(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l_Std_BitVec_add___boxed), 3, 1); +x_2 = lean_alloc_closure((void*)(l_BitVec_add___boxed), 3, 1); lean_closure_set(x_2, 0, x_1); return x_2; } } -LEAN_EXPORT lean_object* l_Std_BitVec_sub(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_BitVec_sub(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; @@ -1747,32 +1711,32 @@ x_6 = lean_nat_sub(x_5, x_3); lean_dec(x_5); x_7 = lean_nat_add(x_2, x_6); lean_dec(x_6); -x_8 = l_Std_BitVec_ofNat(x_1, x_7); +x_8 = l_BitVec_ofNat(x_1, x_7); lean_dec(x_7); return x_8; } } -LEAN_EXPORT lean_object* l_Std_BitVec_sub___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_BitVec_sub___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l_Std_BitVec_sub(x_1, x_2, x_3); +x_4 = l_BitVec_sub(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_Std_BitVec_instSubBitVec(lean_object* x_1) { +LEAN_EXPORT lean_object* l_BitVec_instSubBitVec(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l_Std_BitVec_sub___boxed), 3, 1); +x_2 = lean_alloc_closure((void*)(l_BitVec_sub___boxed), 3, 1); lean_closure_set(x_2, 0, x_1); return x_2; } } -LEAN_EXPORT lean_object* l_Std_BitVec_neg(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l_BitVec_neg(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; @@ -1780,31 +1744,31 @@ x_3 = lean_unsigned_to_nat(2u); x_4 = lean_nat_pow(x_3, x_1); x_5 = lean_nat_sub(x_4, x_2); lean_dec(x_4); -x_6 = l_Std_BitVec_ofNat(x_1, x_5); +x_6 = l_BitVec_ofNat(x_1, x_5); lean_dec(x_5); return x_6; } } -LEAN_EXPORT lean_object* l_Std_BitVec_neg___boxed(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l_BitVec_neg___boxed(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = l_Std_BitVec_neg(x_1, x_2); +x_3 = l_BitVec_neg(x_1, x_2); lean_dec(x_2); lean_dec(x_1); return x_3; } } -LEAN_EXPORT lean_object* l_Std_BitVec_instNegBitVec(lean_object* x_1) { +LEAN_EXPORT lean_object* l_BitVec_instNegBitVec(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l_Std_BitVec_neg___boxed), 2, 1); +x_2 = lean_alloc_closure((void*)(l_BitVec_neg___boxed), 2, 1); lean_closure_set(x_2, 0, x_1); return x_2; } } -LEAN_EXPORT lean_object* l_Std_BitVec_abs(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l_BitVec_abs(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; uint8_t x_4; @@ -1832,53 +1796,53 @@ return x_2; else { lean_object* x_9; -x_9 = l_Std_BitVec_neg(x_1, x_2); +x_9 = l_BitVec_neg(x_1, x_2); return x_9; } } } } -LEAN_EXPORT lean_object* l_Std_BitVec_abs___boxed(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l_BitVec_abs___boxed(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = l_Std_BitVec_abs(x_1, x_2); +x_3 = l_BitVec_abs(x_1, x_2); lean_dec(x_2); lean_dec(x_1); return x_3; } } -LEAN_EXPORT lean_object* l_Std_BitVec_mul(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_BitVec_mul(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; lean_object* x_5; x_4 = lean_nat_mul(x_2, x_3); -x_5 = l_Std_BitVec_ofNat(x_1, x_4); +x_5 = l_BitVec_ofNat(x_1, x_4); lean_dec(x_4); return x_5; } } -LEAN_EXPORT lean_object* l_Std_BitVec_mul___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_BitVec_mul___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l_Std_BitVec_mul(x_1, x_2, x_3); +x_4 = l_BitVec_mul(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_Std_BitVec_instMulBitVec(lean_object* x_1) { +LEAN_EXPORT lean_object* l_BitVec_instMulBitVec(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l_Std_BitVec_mul___boxed), 3, 1); +x_2 = lean_alloc_closure((void*)(l_BitVec_mul___boxed), 3, 1); lean_closure_set(x_2, 0, x_1); return x_2; } } -LEAN_EXPORT lean_object* l_Std_BitVec_udiv___rarg(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l_BitVec_udiv___rarg(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; @@ -1886,59 +1850,59 @@ x_3 = lean_nat_div(x_1, x_2); return x_3; } } -LEAN_EXPORT lean_object* l_Std_BitVec_udiv(lean_object* x_1) { +LEAN_EXPORT lean_object* l_BitVec_udiv(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l_Std_BitVec_udiv___rarg___boxed), 2, 0); +x_2 = lean_alloc_closure((void*)(l_BitVec_udiv___rarg___boxed), 2, 0); return x_2; } } -LEAN_EXPORT lean_object* l_Std_BitVec_udiv___rarg___boxed(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l_BitVec_udiv___rarg___boxed(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = l_Std_BitVec_udiv___rarg(x_1, x_2); +x_3 = l_BitVec_udiv___rarg(x_1, x_2); lean_dec(x_2); lean_dec(x_1); return x_3; } } -LEAN_EXPORT lean_object* l_Std_BitVec_udiv___boxed(lean_object* x_1) { +LEAN_EXPORT lean_object* l_BitVec_udiv___boxed(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = l_Std_BitVec_udiv(x_1); +x_2 = l_BitVec_udiv(x_1); lean_dec(x_1); return x_2; } } -static lean_object* _init_l_Std_BitVec_instDivBitVec___closed__1() { +static lean_object* _init_l_BitVec_instDivBitVec___closed__1() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Std_BitVec_udiv___rarg___boxed), 2, 0); +x_1 = lean_alloc_closure((void*)(l_BitVec_udiv___rarg___boxed), 2, 0); return x_1; } } -LEAN_EXPORT lean_object* l_Std_BitVec_instDivBitVec(lean_object* x_1) { +LEAN_EXPORT lean_object* l_BitVec_instDivBitVec(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = l_Std_BitVec_instDivBitVec___closed__1; +x_2 = l_BitVec_instDivBitVec___closed__1; return x_2; } } -LEAN_EXPORT lean_object* l_Std_BitVec_instDivBitVec___boxed(lean_object* x_1) { +LEAN_EXPORT lean_object* l_BitVec_instDivBitVec___boxed(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = l_Std_BitVec_instDivBitVec(x_1); +x_2 = l_BitVec_instDivBitVec(x_1); lean_dec(x_1); return x_2; } } -LEAN_EXPORT lean_object* l_Std_BitVec_umod___rarg(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l_BitVec_umod___rarg(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; @@ -1946,64 +1910,64 @@ x_3 = lean_nat_mod(x_1, x_2); return x_3; } } -LEAN_EXPORT lean_object* l_Std_BitVec_umod(lean_object* x_1) { +LEAN_EXPORT lean_object* l_BitVec_umod(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l_Std_BitVec_umod___rarg___boxed), 2, 0); +x_2 = lean_alloc_closure((void*)(l_BitVec_umod___rarg___boxed), 2, 0); return x_2; } } -LEAN_EXPORT lean_object* l_Std_BitVec_umod___rarg___boxed(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l_BitVec_umod___rarg___boxed(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = l_Std_BitVec_umod___rarg(x_1, x_2); +x_3 = l_BitVec_umod___rarg(x_1, x_2); lean_dec(x_2); lean_dec(x_1); return x_3; } } -LEAN_EXPORT lean_object* l_Std_BitVec_umod___boxed(lean_object* x_1) { +LEAN_EXPORT lean_object* l_BitVec_umod___boxed(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = l_Std_BitVec_umod(x_1); +x_2 = l_BitVec_umod(x_1); lean_dec(x_1); return x_2; } } -static lean_object* _init_l_Std_BitVec_instModBitVec___closed__1() { +static lean_object* _init_l_BitVec_instModBitVec___closed__1() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Std_BitVec_umod___rarg___boxed), 2, 0); +x_1 = lean_alloc_closure((void*)(l_BitVec_umod___rarg___boxed), 2, 0); return x_1; } } -LEAN_EXPORT lean_object* l_Std_BitVec_instModBitVec(lean_object* x_1) { +LEAN_EXPORT lean_object* l_BitVec_instModBitVec(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = l_Std_BitVec_instModBitVec___closed__1; +x_2 = l_BitVec_instModBitVec___closed__1; return x_2; } } -LEAN_EXPORT lean_object* l_Std_BitVec_instModBitVec___boxed(lean_object* x_1) { +LEAN_EXPORT lean_object* l_BitVec_instModBitVec___boxed(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = l_Std_BitVec_instModBitVec(x_1); +x_2 = l_BitVec_instModBitVec(x_1); lean_dec(x_1); return x_2; } } -LEAN_EXPORT lean_object* l_Std_BitVec_smtUDiv(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_BitVec_smtUDiv(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; x_4 = lean_unsigned_to_nat(0u); -x_5 = l_Std_BitVec_ofNat(x_1, x_4); +x_5 = l_BitVec_ofNat(x_1, x_4); x_6 = lean_nat_dec_eq(x_3, x_5); lean_dec(x_5); if (x_6 == 0) @@ -2015,23 +1979,23 @@ return x_7; else { lean_object* x_8; -x_8 = l_Std_BitVec_allOnes(x_1); +x_8 = l_BitVec_allOnes(x_1); return x_8; } } } -LEAN_EXPORT lean_object* l_Std_BitVec_smtUDiv___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_BitVec_smtUDiv___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l_Std_BitVec_smtUDiv(x_1, x_2, x_3); +x_4 = l_BitVec_smtUDiv(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_Std_BitVec_sdiv(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_BitVec_sdiv(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -2064,10 +2028,10 @@ return x_12; else { lean_object* x_13; lean_object* x_14; lean_object* x_15; -x_13 = l_Std_BitVec_neg(x_1, x_3); +x_13 = l_BitVec_neg(x_1, x_3); x_14 = lean_nat_div(x_2, x_13); lean_dec(x_13); -x_15 = l_Std_BitVec_neg(x_1, x_14); +x_15 = l_BitVec_neg(x_1, x_14); lean_dec(x_14); return x_15; } @@ -2077,18 +2041,18 @@ else if (x_11 == 0) { lean_object* x_16; lean_object* x_17; lean_object* x_18; -x_16 = l_Std_BitVec_neg(x_1, x_2); +x_16 = l_BitVec_neg(x_1, x_2); x_17 = lean_nat_div(x_16, x_3); lean_dec(x_16); -x_18 = l_Std_BitVec_neg(x_1, x_17); +x_18 = l_BitVec_neg(x_1, x_17); lean_dec(x_17); return x_18; } else { lean_object* x_19; lean_object* x_20; lean_object* x_21; -x_19 = l_Std_BitVec_neg(x_1, x_2); -x_20 = l_Std_BitVec_neg(x_1, x_3); +x_19 = l_BitVec_neg(x_1, x_2); +x_20 = l_BitVec_neg(x_1, x_3); x_21 = lean_nat_div(x_19, x_20); lean_dec(x_20); lean_dec(x_19); @@ -2098,18 +2062,18 @@ return x_21; } } } -LEAN_EXPORT lean_object* l_Std_BitVec_sdiv___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_BitVec_sdiv___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l_Std_BitVec_sdiv(x_1, x_2, x_3); +x_4 = l_BitVec_sdiv(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_Std_BitVec_smtSDiv(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_BitVec_smtSDiv(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -2118,7 +2082,7 @@ x_5 = lean_nat_dec_lt(x_4, x_1); if (x_5 == 0) { lean_object* x_6; -x_6 = l_Std_BitVec_smtUDiv(x_1, x_2, x_3); +x_6 = l_BitVec_smtUDiv(x_1, x_2, x_3); return x_6; } else @@ -2136,16 +2100,16 @@ if (x_10 == 0) if (x_11 == 0) { lean_object* x_12; -x_12 = l_Std_BitVec_smtUDiv(x_1, x_2, x_3); +x_12 = l_BitVec_smtUDiv(x_1, x_2, x_3); return x_12; } else { lean_object* x_13; lean_object* x_14; lean_object* x_15; -x_13 = l_Std_BitVec_neg(x_1, x_3); -x_14 = l_Std_BitVec_smtUDiv(x_1, x_2, x_13); +x_13 = l_BitVec_neg(x_1, x_3); +x_14 = l_BitVec_smtUDiv(x_1, x_2, x_13); lean_dec(x_13); -x_15 = l_Std_BitVec_neg(x_1, x_14); +x_15 = l_BitVec_neg(x_1, x_14); lean_dec(x_14); return x_15; } @@ -2155,19 +2119,19 @@ else if (x_11 == 0) { lean_object* x_16; lean_object* x_17; lean_object* x_18; -x_16 = l_Std_BitVec_neg(x_1, x_2); -x_17 = l_Std_BitVec_smtUDiv(x_1, x_16, x_3); +x_16 = l_BitVec_neg(x_1, x_2); +x_17 = l_BitVec_smtUDiv(x_1, x_16, x_3); lean_dec(x_16); -x_18 = l_Std_BitVec_neg(x_1, x_17); +x_18 = l_BitVec_neg(x_1, x_17); lean_dec(x_17); return x_18; } else { lean_object* x_19; lean_object* x_20; lean_object* x_21; -x_19 = l_Std_BitVec_neg(x_1, x_2); -x_20 = l_Std_BitVec_neg(x_1, x_3); -x_21 = l_Std_BitVec_smtUDiv(x_1, x_19, x_20); +x_19 = l_BitVec_neg(x_1, x_2); +x_20 = l_BitVec_neg(x_1, x_3); +x_21 = l_BitVec_smtUDiv(x_1, x_19, x_20); lean_dec(x_20); lean_dec(x_19); return x_21; @@ -2176,18 +2140,18 @@ return x_21; } } } -LEAN_EXPORT lean_object* l_Std_BitVec_smtSDiv___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_BitVec_smtSDiv___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l_Std_BitVec_smtSDiv(x_1, x_2, x_3); +x_4 = l_BitVec_smtSDiv(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_Std_BitVec_srem(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_BitVec_srem(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -2220,7 +2184,7 @@ return x_12; else { lean_object* x_13; lean_object* x_14; -x_13 = l_Std_BitVec_neg(x_1, x_3); +x_13 = l_BitVec_neg(x_1, x_3); x_14 = lean_nat_mod(x_2, x_13); lean_dec(x_13); return x_14; @@ -2231,22 +2195,22 @@ else if (x_11 == 0) { lean_object* x_15; lean_object* x_16; lean_object* x_17; -x_15 = l_Std_BitVec_neg(x_1, x_2); +x_15 = l_BitVec_neg(x_1, x_2); x_16 = lean_nat_mod(x_15, x_3); lean_dec(x_15); -x_17 = l_Std_BitVec_neg(x_1, x_16); +x_17 = l_BitVec_neg(x_1, x_16); lean_dec(x_16); return x_17; } else { lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; -x_18 = l_Std_BitVec_neg(x_1, x_2); -x_19 = l_Std_BitVec_neg(x_1, x_3); +x_18 = l_BitVec_neg(x_1, x_2); +x_19 = l_BitVec_neg(x_1, x_3); x_20 = lean_nat_mod(x_18, x_19); lean_dec(x_19); lean_dec(x_18); -x_21 = l_Std_BitVec_neg(x_1, x_20); +x_21 = l_BitVec_neg(x_1, x_20); lean_dec(x_20); return x_21; } @@ -2254,18 +2218,18 @@ return x_21; } } } -LEAN_EXPORT lean_object* l_Std_BitVec_srem___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_BitVec_srem___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l_Std_BitVec_srem(x_1, x_2, x_3); +x_4 = l_BitVec_srem(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_Std_BitVec_smod(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_BitVec_smod(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -2298,14 +2262,14 @@ return x_12; else { lean_object* x_13; lean_object* x_14; uint8_t x_15; -x_13 = l_Std_BitVec_neg(x_1, x_3); +x_13 = l_BitVec_neg(x_1, x_3); x_14 = lean_nat_mod(x_2, x_13); lean_dec(x_13); x_15 = lean_nat_dec_eq(x_14, x_4); if (x_15 == 0) { lean_object* x_16; -x_16 = l_Std_BitVec_add(x_1, x_14, x_3); +x_16 = l_BitVec_add(x_1, x_14, x_3); lean_dec(x_14); return x_16; } @@ -2320,14 +2284,14 @@ else if (x_11 == 0) { lean_object* x_17; lean_object* x_18; uint8_t x_19; -x_17 = l_Std_BitVec_neg(x_1, x_2); +x_17 = l_BitVec_neg(x_1, x_2); x_18 = lean_nat_mod(x_17, x_3); lean_dec(x_17); x_19 = lean_nat_dec_eq(x_18, x_4); if (x_19 == 0) { lean_object* x_20; -x_20 = l_Std_BitVec_sub(x_1, x_3, x_18); +x_20 = l_BitVec_sub(x_1, x_3, x_18); lean_dec(x_18); return x_20; } @@ -2339,12 +2303,12 @@ return x_18; else { lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; -x_21 = l_Std_BitVec_neg(x_1, x_2); -x_22 = l_Std_BitVec_neg(x_1, x_3); +x_21 = l_BitVec_neg(x_1, x_2); +x_22 = l_BitVec_neg(x_1, x_3); x_23 = lean_nat_mod(x_21, x_22); lean_dec(x_22); lean_dec(x_21); -x_24 = l_Std_BitVec_neg(x_1, x_23); +x_24 = l_BitVec_neg(x_1, x_23); lean_dec(x_23); return x_24; } @@ -2352,96 +2316,96 @@ return x_24; } } } -LEAN_EXPORT lean_object* l_Std_BitVec_smod___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_BitVec_smod___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l_Std_BitVec_smod(x_1, x_2, x_3); +x_4 = l_BitVec_smod(x_1, x_2, x_3); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); return x_4; } } -static lean_object* _init_l_Std_BitVec_ofBool___closed__1() { +static lean_object* _init_l_BitVec_ofBool___closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_unsigned_to_nat(1u); x_2 = lean_unsigned_to_nat(0u); -x_3 = l_Std_BitVec_ofNat(x_1, x_2); +x_3 = l_BitVec_ofNat(x_1, x_2); return x_3; } } -static lean_object* _init_l_Std_BitVec_ofBool___closed__2() { +static lean_object* _init_l_BitVec_ofBool___closed__2() { _start: { lean_object* x_1; lean_object* x_2; x_1 = lean_unsigned_to_nat(1u); -x_2 = l_Std_BitVec_ofNat(x_1, x_1); +x_2 = l_BitVec_ofNat(x_1, x_1); return x_2; } } -LEAN_EXPORT lean_object* l_Std_BitVec_ofBool(uint8_t x_1) { +LEAN_EXPORT lean_object* l_BitVec_ofBool(uint8_t x_1) { _start: { if (x_1 == 0) { lean_object* x_2; -x_2 = l_Std_BitVec_ofBool___closed__1; +x_2 = l_BitVec_ofBool___closed__1; return x_2; } else { lean_object* x_3; -x_3 = l_Std_BitVec_ofBool___closed__2; +x_3 = l_BitVec_ofBool___closed__2; return x_3; } } } -LEAN_EXPORT lean_object* l_Std_BitVec_ofBool___boxed(lean_object* x_1) { +LEAN_EXPORT lean_object* l_BitVec_ofBool___boxed(lean_object* x_1) { _start: { uint8_t x_2; lean_object* x_3; x_2 = lean_unbox(x_1); lean_dec(x_1); -x_3 = l_Std_BitVec_ofBool(x_2); +x_3 = l_BitVec_ofBool(x_2); return x_3; } } -LEAN_EXPORT lean_object* l_Std_BitVec_fill(lean_object* x_1, uint8_t x_2) { +LEAN_EXPORT lean_object* l_BitVec_fill(lean_object* x_1, uint8_t x_2) { _start: { if (x_2 == 0) { lean_object* x_3; lean_object* x_4; x_3 = lean_unsigned_to_nat(0u); -x_4 = l_Std_BitVec_ofNat(x_1, x_3); +x_4 = l_BitVec_ofNat(x_1, x_3); return x_4; } else { lean_object* x_5; lean_object* x_6; lean_object* x_7; x_5 = lean_unsigned_to_nat(1u); -x_6 = l_Std_BitVec_ofNat(x_1, x_5); -x_7 = l_Std_BitVec_neg(x_1, x_6); +x_6 = l_BitVec_ofNat(x_1, x_5); +x_7 = l_BitVec_neg(x_1, x_6); lean_dec(x_6); return x_7; } } } -LEAN_EXPORT lean_object* l_Std_BitVec_fill___boxed(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l_BitVec_fill___boxed(lean_object* x_1, lean_object* x_2) { _start: { uint8_t x_3; lean_object* x_4; x_3 = lean_unbox(x_2); lean_dec(x_2); -x_4 = l_Std_BitVec_fill(x_1, x_3); +x_4 = l_BitVec_fill(x_1, x_3); lean_dec(x_1); return x_4; } } -LEAN_EXPORT uint8_t l_Std_BitVec_ult___rarg(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT uint8_t l_BitVec_ult___rarg(lean_object* x_1, lean_object* x_2) { _start: { uint8_t x_3; @@ -2449,35 +2413,35 @@ x_3 = lean_nat_dec_lt(x_1, x_2); return x_3; } } -LEAN_EXPORT lean_object* l_Std_BitVec_ult(lean_object* x_1) { +LEAN_EXPORT lean_object* l_BitVec_ult(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l_Std_BitVec_ult___rarg___boxed), 2, 0); +x_2 = lean_alloc_closure((void*)(l_BitVec_ult___rarg___boxed), 2, 0); return x_2; } } -LEAN_EXPORT lean_object* l_Std_BitVec_ult___rarg___boxed(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l_BitVec_ult___rarg___boxed(lean_object* x_1, lean_object* x_2) { _start: { uint8_t x_3; lean_object* x_4; -x_3 = l_Std_BitVec_ult___rarg(x_1, x_2); +x_3 = l_BitVec_ult___rarg(x_1, x_2); lean_dec(x_2); lean_dec(x_1); x_4 = lean_box(x_3); return x_4; } } -LEAN_EXPORT lean_object* l_Std_BitVec_ult___boxed(lean_object* x_1) { +LEAN_EXPORT lean_object* l_BitVec_ult___boxed(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = l_Std_BitVec_ult(x_1); +x_2 = l_BitVec_ult(x_1); lean_dec(x_1); return x_2; } } -LEAN_EXPORT lean_object* l_Std_BitVec_instLTBitVec(lean_object* x_1) { +LEAN_EXPORT lean_object* l_BitVec_instLTBitVec(lean_object* x_1) { _start: { lean_object* x_2; @@ -2485,16 +2449,16 @@ x_2 = lean_box(0); return x_2; } } -LEAN_EXPORT lean_object* l_Std_BitVec_instLTBitVec___boxed(lean_object* x_1) { +LEAN_EXPORT lean_object* l_BitVec_instLTBitVec___boxed(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = l_Std_BitVec_instLTBitVec(x_1); +x_2 = l_BitVec_instLTBitVec(x_1); lean_dec(x_1); return x_2; } } -LEAN_EXPORT uint8_t l_Std_BitVec_instDecidableLtBitVecInstLTBitVec___rarg(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT uint8_t l_BitVec_instDecidableLtBitVecInstLTBitVec___rarg(lean_object* x_1, lean_object* x_2) { _start: { uint8_t x_3; @@ -2502,35 +2466,35 @@ x_3 = lean_nat_dec_lt(x_1, x_2); return x_3; } } -LEAN_EXPORT lean_object* l_Std_BitVec_instDecidableLtBitVecInstLTBitVec(lean_object* x_1) { +LEAN_EXPORT lean_object* l_BitVec_instDecidableLtBitVecInstLTBitVec(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l_Std_BitVec_instDecidableLtBitVecInstLTBitVec___rarg___boxed), 2, 0); +x_2 = lean_alloc_closure((void*)(l_BitVec_instDecidableLtBitVecInstLTBitVec___rarg___boxed), 2, 0); return x_2; } } -LEAN_EXPORT lean_object* l_Std_BitVec_instDecidableLtBitVecInstLTBitVec___rarg___boxed(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l_BitVec_instDecidableLtBitVecInstLTBitVec___rarg___boxed(lean_object* x_1, lean_object* x_2) { _start: { uint8_t x_3; lean_object* x_4; -x_3 = l_Std_BitVec_instDecidableLtBitVecInstLTBitVec___rarg(x_1, x_2); +x_3 = l_BitVec_instDecidableLtBitVecInstLTBitVec___rarg(x_1, x_2); lean_dec(x_2); lean_dec(x_1); x_4 = lean_box(x_3); return x_4; } } -LEAN_EXPORT lean_object* l_Std_BitVec_instDecidableLtBitVecInstLTBitVec___boxed(lean_object* x_1) { +LEAN_EXPORT lean_object* l_BitVec_instDecidableLtBitVecInstLTBitVec___boxed(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = l_Std_BitVec_instDecidableLtBitVecInstLTBitVec(x_1); +x_2 = l_BitVec_instDecidableLtBitVecInstLTBitVec(x_1); lean_dec(x_1); return x_2; } } -LEAN_EXPORT uint8_t l_Std_BitVec_ule___rarg(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT uint8_t l_BitVec_ule___rarg(lean_object* x_1, lean_object* x_2) { _start: { uint8_t x_3; @@ -2538,35 +2502,35 @@ x_3 = lean_nat_dec_le(x_1, x_2); return x_3; } } -LEAN_EXPORT lean_object* l_Std_BitVec_ule(lean_object* x_1) { +LEAN_EXPORT lean_object* l_BitVec_ule(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l_Std_BitVec_ule___rarg___boxed), 2, 0); +x_2 = lean_alloc_closure((void*)(l_BitVec_ule___rarg___boxed), 2, 0); return x_2; } } -LEAN_EXPORT lean_object* l_Std_BitVec_ule___rarg___boxed(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l_BitVec_ule___rarg___boxed(lean_object* x_1, lean_object* x_2) { _start: { uint8_t x_3; lean_object* x_4; -x_3 = l_Std_BitVec_ule___rarg(x_1, x_2); +x_3 = l_BitVec_ule___rarg(x_1, x_2); lean_dec(x_2); lean_dec(x_1); x_4 = lean_box(x_3); return x_4; } } -LEAN_EXPORT lean_object* l_Std_BitVec_ule___boxed(lean_object* x_1) { +LEAN_EXPORT lean_object* l_BitVec_ule___boxed(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = l_Std_BitVec_ule(x_1); +x_2 = l_BitVec_ule(x_1); lean_dec(x_1); return x_2; } } -LEAN_EXPORT lean_object* l_Std_BitVec_instLEBitVec(lean_object* x_1) { +LEAN_EXPORT lean_object* l_BitVec_instLEBitVec(lean_object* x_1) { _start: { lean_object* x_2; @@ -2574,16 +2538,16 @@ x_2 = lean_box(0); return x_2; } } -LEAN_EXPORT lean_object* l_Std_BitVec_instLEBitVec___boxed(lean_object* x_1) { +LEAN_EXPORT lean_object* l_BitVec_instLEBitVec___boxed(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = l_Std_BitVec_instLEBitVec(x_1); +x_2 = l_BitVec_instLEBitVec(x_1); lean_dec(x_1); return x_2; } } -LEAN_EXPORT uint8_t l_Std_BitVec_instDecidableLeBitVecInstLEBitVec___rarg(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT uint8_t l_BitVec_instDecidableLeBitVecInstLEBitVec___rarg(lean_object* x_1, lean_object* x_2) { _start: { uint8_t x_3; @@ -2591,151 +2555,151 @@ x_3 = lean_nat_dec_le(x_1, x_2); return x_3; } } -LEAN_EXPORT lean_object* l_Std_BitVec_instDecidableLeBitVecInstLEBitVec(lean_object* x_1) { +LEAN_EXPORT lean_object* l_BitVec_instDecidableLeBitVecInstLEBitVec(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l_Std_BitVec_instDecidableLeBitVecInstLEBitVec___rarg___boxed), 2, 0); +x_2 = lean_alloc_closure((void*)(l_BitVec_instDecidableLeBitVecInstLEBitVec___rarg___boxed), 2, 0); return x_2; } } -LEAN_EXPORT lean_object* l_Std_BitVec_instDecidableLeBitVecInstLEBitVec___rarg___boxed(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l_BitVec_instDecidableLeBitVecInstLEBitVec___rarg___boxed(lean_object* x_1, lean_object* x_2) { _start: { uint8_t x_3; lean_object* x_4; -x_3 = l_Std_BitVec_instDecidableLeBitVecInstLEBitVec___rarg(x_1, x_2); +x_3 = l_BitVec_instDecidableLeBitVecInstLEBitVec___rarg(x_1, x_2); lean_dec(x_2); lean_dec(x_1); x_4 = lean_box(x_3); return x_4; } } -LEAN_EXPORT lean_object* l_Std_BitVec_instDecidableLeBitVecInstLEBitVec___boxed(lean_object* x_1) { +LEAN_EXPORT lean_object* l_BitVec_instDecidableLeBitVecInstLEBitVec___boxed(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = l_Std_BitVec_instDecidableLeBitVecInstLEBitVec(x_1); +x_2 = l_BitVec_instDecidableLeBitVecInstLEBitVec(x_1); lean_dec(x_1); return x_2; } } -LEAN_EXPORT uint8_t l_Std_BitVec_slt(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT uint8_t l_BitVec_slt(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; -x_4 = l_Std_BitVec_toInt(x_1, x_2); -x_5 = l_Std_BitVec_toInt(x_1, x_3); +x_4 = l_BitVec_toInt(x_1, x_2); +x_5 = l_BitVec_toInt(x_1, x_3); x_6 = lean_int_dec_lt(x_4, x_5); lean_dec(x_5); lean_dec(x_4); return x_6; } } -LEAN_EXPORT lean_object* l_Std_BitVec_slt___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_BitVec_slt___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { uint8_t x_4; lean_object* x_5; -x_4 = l_Std_BitVec_slt(x_1, x_2, x_3); +x_4 = l_BitVec_slt(x_1, x_2, x_3); lean_dec(x_1); x_5 = lean_box(x_4); return x_5; } } -LEAN_EXPORT uint8_t l_Std_BitVec_sle(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT uint8_t l_BitVec_sle(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; -x_4 = l_Std_BitVec_toInt(x_1, x_2); -x_5 = l_Std_BitVec_toInt(x_1, x_3); +x_4 = l_BitVec_toInt(x_1, x_2); +x_5 = l_BitVec_toInt(x_1, x_3); x_6 = lean_int_dec_le(x_4, x_5); lean_dec(x_5); lean_dec(x_4); return x_6; } } -LEAN_EXPORT lean_object* l_Std_BitVec_sle___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_BitVec_sle___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { uint8_t x_4; lean_object* x_5; -x_4 = l_Std_BitVec_sle(x_1, x_2, x_3); +x_4 = l_BitVec_sle(x_1, x_2, x_3); lean_dec(x_1); x_5 = lean_box(x_4); return x_5; } } -LEAN_EXPORT lean_object* l_Std_BitVec_cast___rarg(lean_object* x_1) { +LEAN_EXPORT lean_object* l_BitVec_cast___rarg(lean_object* x_1) { _start: { lean_inc(x_1); return x_1; } } -LEAN_EXPORT lean_object* l_Std_BitVec_cast(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_BitVec_cast(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = lean_alloc_closure((void*)(l_Std_BitVec_cast___rarg___boxed), 1, 0); +x_4 = lean_alloc_closure((void*)(l_BitVec_cast___rarg___boxed), 1, 0); return x_4; } } -LEAN_EXPORT lean_object* l_Std_BitVec_cast___rarg___boxed(lean_object* x_1) { +LEAN_EXPORT lean_object* l_BitVec_cast___rarg___boxed(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = l_Std_BitVec_cast___rarg(x_1); +x_2 = l_BitVec_cast___rarg(x_1); lean_dec(x_1); return x_2; } } -LEAN_EXPORT lean_object* l_Std_BitVec_cast___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_BitVec_cast___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l_Std_BitVec_cast(x_1, x_2, x_3); +x_4 = l_BitVec_cast(x_1, x_2, x_3); lean_dec(x_2); lean_dec(x_1); return x_4; } } -LEAN_EXPORT lean_object* l_Std_BitVec_extractLsb_x27___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_BitVec_extractLsb_x27___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; lean_object* x_5; x_4 = lean_nat_shiftr(x_3, x_1); -x_5 = l_Std_BitVec_ofNat(x_2, x_4); +x_5 = l_BitVec_ofNat(x_2, x_4); lean_dec(x_4); return x_5; } } -LEAN_EXPORT lean_object* l_Std_BitVec_extractLsb_x27(lean_object* x_1) { +LEAN_EXPORT lean_object* l_BitVec_extractLsb_x27(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l_Std_BitVec_extractLsb_x27___rarg___boxed), 3, 0); +x_2 = lean_alloc_closure((void*)(l_BitVec_extractLsb_x27___rarg___boxed), 3, 0); return x_2; } } -LEAN_EXPORT lean_object* l_Std_BitVec_extractLsb_x27___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_BitVec_extractLsb_x27___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l_Std_BitVec_extractLsb_x27___rarg(x_1, x_2, x_3); +x_4 = l_BitVec_extractLsb_x27___rarg(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_Std_BitVec_extractLsb_x27___boxed(lean_object* x_1) { +LEAN_EXPORT lean_object* l_BitVec_extractLsb_x27___boxed(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = l_Std_BitVec_extractLsb_x27(x_1); +x_2 = l_BitVec_extractLsb_x27(x_1); lean_dec(x_1); return x_2; } } -LEAN_EXPORT lean_object* l_Std_BitVec_extractLsb___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_BitVec_extractLsb___rarg(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; @@ -2743,74 +2707,74 @@ x_4 = lean_nat_sub(x_1, x_2); x_5 = lean_unsigned_to_nat(1u); x_6 = lean_nat_add(x_4, x_5); lean_dec(x_4); -x_7 = l_Std_BitVec_extractLsb_x27___rarg(x_2, x_6, x_3); +x_7 = l_BitVec_extractLsb_x27___rarg(x_2, x_6, x_3); lean_dec(x_6); return x_7; } } -LEAN_EXPORT lean_object* l_Std_BitVec_extractLsb(lean_object* x_1) { +LEAN_EXPORT lean_object* l_BitVec_extractLsb(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l_Std_BitVec_extractLsb___rarg___boxed), 3, 0); +x_2 = lean_alloc_closure((void*)(l_BitVec_extractLsb___rarg___boxed), 3, 0); return x_2; } } -LEAN_EXPORT lean_object* l_Std_BitVec_extractLsb___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_BitVec_extractLsb___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l_Std_BitVec_extractLsb___rarg(x_1, x_2, x_3); +x_4 = l_BitVec_extractLsb___rarg(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_Std_BitVec_extractLsb___boxed(lean_object* x_1) { +LEAN_EXPORT lean_object* l_BitVec_extractLsb___boxed(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = l_Std_BitVec_extractLsb(x_1); +x_2 = l_BitVec_extractLsb(x_1); lean_dec(x_1); return x_2; } } -LEAN_EXPORT lean_object* l_Std_BitVec_zeroExtend_x27___rarg(lean_object* x_1) { +LEAN_EXPORT lean_object* l_BitVec_zeroExtend_x27___rarg(lean_object* x_1) { _start: { lean_inc(x_1); return x_1; } } -LEAN_EXPORT lean_object* l_Std_BitVec_zeroExtend_x27(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_BitVec_zeroExtend_x27(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = lean_alloc_closure((void*)(l_Std_BitVec_zeroExtend_x27___rarg___boxed), 1, 0); +x_4 = lean_alloc_closure((void*)(l_BitVec_zeroExtend_x27___rarg___boxed), 1, 0); return x_4; } } -LEAN_EXPORT lean_object* l_Std_BitVec_zeroExtend_x27___rarg___boxed(lean_object* x_1) { +LEAN_EXPORT lean_object* l_BitVec_zeroExtend_x27___rarg___boxed(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = l_Std_BitVec_zeroExtend_x27___rarg(x_1); +x_2 = l_BitVec_zeroExtend_x27___rarg(x_1); lean_dec(x_1); return x_2; } } -LEAN_EXPORT lean_object* l_Std_BitVec_zeroExtend_x27___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_BitVec_zeroExtend_x27___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l_Std_BitVec_zeroExtend_x27(x_1, x_2, x_3); +x_4 = l_BitVec_zeroExtend_x27(x_1, x_2, x_3); lean_dec(x_2); lean_dec(x_1); return x_4; } } -LEAN_EXPORT lean_object* l_Std_BitVec_shiftLeftZeroExtend___rarg(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l_BitVec_shiftLeftZeroExtend___rarg(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; @@ -2818,34 +2782,34 @@ x_3 = lean_nat_shiftl(x_1, x_2); return x_3; } } -LEAN_EXPORT lean_object* l_Std_BitVec_shiftLeftZeroExtend(lean_object* x_1) { +LEAN_EXPORT lean_object* l_BitVec_shiftLeftZeroExtend(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l_Std_BitVec_shiftLeftZeroExtend___rarg___boxed), 2, 0); +x_2 = lean_alloc_closure((void*)(l_BitVec_shiftLeftZeroExtend___rarg___boxed), 2, 0); return x_2; } } -LEAN_EXPORT lean_object* l_Std_BitVec_shiftLeftZeroExtend___rarg___boxed(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l_BitVec_shiftLeftZeroExtend___rarg___boxed(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = l_Std_BitVec_shiftLeftZeroExtend___rarg(x_1, x_2); +x_3 = l_BitVec_shiftLeftZeroExtend___rarg(x_1, x_2); lean_dec(x_2); lean_dec(x_1); return x_3; } } -LEAN_EXPORT lean_object* l_Std_BitVec_shiftLeftZeroExtend___boxed(lean_object* x_1) { +LEAN_EXPORT lean_object* l_BitVec_shiftLeftZeroExtend___boxed(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = l_Std_BitVec_shiftLeftZeroExtend(x_1); +x_2 = l_BitVec_shiftLeftZeroExtend(x_1); lean_dec(x_1); return x_2; } } -LEAN_EXPORT lean_object* l_Std_BitVec_zeroExtend(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_BitVec_zeroExtend(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { uint8_t x_4; @@ -2853,7 +2817,7 @@ x_4 = lean_nat_dec_le(x_1, x_2); if (x_4 == 0) { lean_object* x_5; -x_5 = l_Std_BitVec_ofNat(x_2, x_3); +x_5 = l_BitVec_ofNat(x_2, x_3); return x_5; } else @@ -2863,57 +2827,57 @@ return x_3; } } } -LEAN_EXPORT lean_object* l_Std_BitVec_zeroExtend___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_BitVec_zeroExtend___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l_Std_BitVec_zeroExtend(x_1, x_2, x_3); +x_4 = l_BitVec_zeroExtend(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_Std_BitVec_truncate(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_BitVec_truncate(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l_Std_BitVec_zeroExtend(x_1, x_2, x_3); +x_4 = l_BitVec_zeroExtend(x_1, x_2, x_3); return x_4; } } -LEAN_EXPORT lean_object* l_Std_BitVec_truncate___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_BitVec_truncate___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l_Std_BitVec_truncate(x_1, x_2, x_3); +x_4 = l_BitVec_truncate(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_Std_BitVec_signExtend(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_BitVec_signExtend(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; lean_object* x_5; -x_4 = l_Std_BitVec_toInt(x_1, x_3); -x_5 = l_Std_BitVec_ofInt(x_2, x_4); +x_4 = l_BitVec_toInt(x_1, x_3); +x_5 = l_BitVec_ofInt(x_2, x_4); lean_dec(x_4); return x_5; } } -LEAN_EXPORT lean_object* l_Std_BitVec_signExtend___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_BitVec_signExtend___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l_Std_BitVec_signExtend(x_1, x_2, x_3); +x_4 = l_BitVec_signExtend(x_1, x_2, x_3); lean_dec(x_2); lean_dec(x_1); return x_4; } } -LEAN_EXPORT lean_object* l_Std_BitVec_and___rarg(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l_BitVec_and___rarg(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; @@ -2921,59 +2885,59 @@ x_3 = lean_nat_land(x_1, x_2); return x_3; } } -LEAN_EXPORT lean_object* l_Std_BitVec_and(lean_object* x_1) { +LEAN_EXPORT lean_object* l_BitVec_and(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l_Std_BitVec_and___rarg___boxed), 2, 0); +x_2 = lean_alloc_closure((void*)(l_BitVec_and___rarg___boxed), 2, 0); return x_2; } } -LEAN_EXPORT lean_object* l_Std_BitVec_and___rarg___boxed(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l_BitVec_and___rarg___boxed(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = l_Std_BitVec_and___rarg(x_1, x_2); +x_3 = l_BitVec_and___rarg(x_1, x_2); lean_dec(x_2); lean_dec(x_1); return x_3; } } -LEAN_EXPORT lean_object* l_Std_BitVec_and___boxed(lean_object* x_1) { +LEAN_EXPORT lean_object* l_BitVec_and___boxed(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = l_Std_BitVec_and(x_1); +x_2 = l_BitVec_and(x_1); lean_dec(x_1); return x_2; } } -static lean_object* _init_l_Std_BitVec_instAndOpBitVec___closed__1() { +static lean_object* _init_l_BitVec_instAndOpBitVec___closed__1() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Std_BitVec_and___rarg___boxed), 2, 0); +x_1 = lean_alloc_closure((void*)(l_BitVec_and___rarg___boxed), 2, 0); return x_1; } } -LEAN_EXPORT lean_object* l_Std_BitVec_instAndOpBitVec(lean_object* x_1) { +LEAN_EXPORT lean_object* l_BitVec_instAndOpBitVec(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = l_Std_BitVec_instAndOpBitVec___closed__1; +x_2 = l_BitVec_instAndOpBitVec___closed__1; return x_2; } } -LEAN_EXPORT lean_object* l_Std_BitVec_instAndOpBitVec___boxed(lean_object* x_1) { +LEAN_EXPORT lean_object* l_BitVec_instAndOpBitVec___boxed(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = l_Std_BitVec_instAndOpBitVec(x_1); +x_2 = l_BitVec_instAndOpBitVec(x_1); lean_dec(x_1); return x_2; } } -LEAN_EXPORT lean_object* l_Std_BitVec_or___rarg(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l_BitVec_or___rarg(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; @@ -2981,59 +2945,59 @@ x_3 = lean_nat_lor(x_1, x_2); return x_3; } } -LEAN_EXPORT lean_object* l_Std_BitVec_or(lean_object* x_1) { +LEAN_EXPORT lean_object* l_BitVec_or(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l_Std_BitVec_or___rarg___boxed), 2, 0); +x_2 = lean_alloc_closure((void*)(l_BitVec_or___rarg___boxed), 2, 0); return x_2; } } -LEAN_EXPORT lean_object* l_Std_BitVec_or___rarg___boxed(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l_BitVec_or___rarg___boxed(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = l_Std_BitVec_or___rarg(x_1, x_2); +x_3 = l_BitVec_or___rarg(x_1, x_2); lean_dec(x_2); lean_dec(x_1); return x_3; } } -LEAN_EXPORT lean_object* l_Std_BitVec_or___boxed(lean_object* x_1) { +LEAN_EXPORT lean_object* l_BitVec_or___boxed(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = l_Std_BitVec_or(x_1); +x_2 = l_BitVec_or(x_1); lean_dec(x_1); return x_2; } } -static lean_object* _init_l_Std_BitVec_instOrOpBitVec___closed__1() { +static lean_object* _init_l_BitVec_instOrOpBitVec___closed__1() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Std_BitVec_or___rarg___boxed), 2, 0); +x_1 = lean_alloc_closure((void*)(l_BitVec_or___rarg___boxed), 2, 0); return x_1; } } -LEAN_EXPORT lean_object* l_Std_BitVec_instOrOpBitVec(lean_object* x_1) { +LEAN_EXPORT lean_object* l_BitVec_instOrOpBitVec(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = l_Std_BitVec_instOrOpBitVec___closed__1; +x_2 = l_BitVec_instOrOpBitVec___closed__1; return x_2; } } -LEAN_EXPORT lean_object* l_Std_BitVec_instOrOpBitVec___boxed(lean_object* x_1) { +LEAN_EXPORT lean_object* l_BitVec_instOrOpBitVec___boxed(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = l_Std_BitVec_instOrOpBitVec(x_1); +x_2 = l_BitVec_instOrOpBitVec(x_1); lean_dec(x_1); return x_2; } } -LEAN_EXPORT lean_object* l_Std_BitVec_xor___rarg(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l_BitVec_xor___rarg(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; @@ -3041,118 +3005,118 @@ x_3 = lean_nat_lxor(x_1, x_2); return x_3; } } -LEAN_EXPORT lean_object* l_Std_BitVec_xor(lean_object* x_1) { +LEAN_EXPORT lean_object* l_BitVec_xor(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l_Std_BitVec_xor___rarg___boxed), 2, 0); +x_2 = lean_alloc_closure((void*)(l_BitVec_xor___rarg___boxed), 2, 0); return x_2; } } -LEAN_EXPORT lean_object* l_Std_BitVec_xor___rarg___boxed(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l_BitVec_xor___rarg___boxed(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = l_Std_BitVec_xor___rarg(x_1, x_2); +x_3 = l_BitVec_xor___rarg(x_1, x_2); lean_dec(x_2); lean_dec(x_1); return x_3; } } -LEAN_EXPORT lean_object* l_Std_BitVec_xor___boxed(lean_object* x_1) { +LEAN_EXPORT lean_object* l_BitVec_xor___boxed(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = l_Std_BitVec_xor(x_1); +x_2 = l_BitVec_xor(x_1); lean_dec(x_1); return x_2; } } -static lean_object* _init_l_Std_BitVec_instXorBitVec___closed__1() { +static lean_object* _init_l_BitVec_instXorBitVec___closed__1() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Std_BitVec_xor___rarg___boxed), 2, 0); +x_1 = lean_alloc_closure((void*)(l_BitVec_xor___rarg___boxed), 2, 0); return x_1; } } -LEAN_EXPORT lean_object* l_Std_BitVec_instXorBitVec(lean_object* x_1) { +LEAN_EXPORT lean_object* l_BitVec_instXorBitVec(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = l_Std_BitVec_instXorBitVec___closed__1; +x_2 = l_BitVec_instXorBitVec___closed__1; return x_2; } } -LEAN_EXPORT lean_object* l_Std_BitVec_instXorBitVec___boxed(lean_object* x_1) { +LEAN_EXPORT lean_object* l_BitVec_instXorBitVec___boxed(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = l_Std_BitVec_instXorBitVec(x_1); +x_2 = l_BitVec_instXorBitVec(x_1); lean_dec(x_1); return x_2; } } -LEAN_EXPORT lean_object* l_Std_BitVec_not(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l_BitVec_not(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; lean_object* x_4; -x_3 = l_Std_BitVec_allOnes(x_1); +x_3 = l_BitVec_allOnes(x_1); x_4 = lean_nat_lxor(x_3, x_2); lean_dec(x_3); return x_4; } } -LEAN_EXPORT lean_object* l_Std_BitVec_not___boxed(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l_BitVec_not___boxed(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = l_Std_BitVec_not(x_1, x_2); +x_3 = l_BitVec_not(x_1, x_2); lean_dec(x_2); lean_dec(x_1); return x_3; } } -LEAN_EXPORT lean_object* l_Std_BitVec_instComplementBitVec(lean_object* x_1) { +LEAN_EXPORT lean_object* l_BitVec_instComplementBitVec(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l_Std_BitVec_not___boxed), 2, 1); +x_2 = lean_alloc_closure((void*)(l_BitVec_not___boxed), 2, 1); lean_closure_set(x_2, 0, x_1); return x_2; } } -LEAN_EXPORT lean_object* l_Std_BitVec_shiftLeft(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_BitVec_shiftLeft(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; lean_object* x_5; x_4 = lean_nat_shiftl(x_2, x_3); -x_5 = l_Std_BitVec_ofNat(x_1, x_4); +x_5 = l_BitVec_ofNat(x_1, x_4); lean_dec(x_4); return x_5; } } -LEAN_EXPORT lean_object* l_Std_BitVec_shiftLeft___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_BitVec_shiftLeft___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l_Std_BitVec_shiftLeft(x_1, x_2, x_3); +x_4 = l_BitVec_shiftLeft(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_Std_BitVec_instHShiftLeftBitVecNat(lean_object* x_1) { +LEAN_EXPORT lean_object* l_BitVec_instHShiftLeftBitVecNat(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l_Std_BitVec_shiftLeft___boxed), 3, 1); +x_2 = lean_alloc_closure((void*)(l_BitVec_shiftLeft___boxed), 3, 1); lean_closure_set(x_2, 0, x_1); return x_2; } } -LEAN_EXPORT lean_object* l_Std_BitVec_ushiftRight___rarg(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l_BitVec_ushiftRight___rarg(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; @@ -3160,93 +3124,93 @@ x_3 = lean_nat_shiftr(x_1, x_2); return x_3; } } -LEAN_EXPORT lean_object* l_Std_BitVec_ushiftRight(lean_object* x_1) { +LEAN_EXPORT lean_object* l_BitVec_ushiftRight(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l_Std_BitVec_ushiftRight___rarg___boxed), 2, 0); +x_2 = lean_alloc_closure((void*)(l_BitVec_ushiftRight___rarg___boxed), 2, 0); return x_2; } } -LEAN_EXPORT lean_object* l_Std_BitVec_ushiftRight___rarg___boxed(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l_BitVec_ushiftRight___rarg___boxed(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = l_Std_BitVec_ushiftRight___rarg(x_1, x_2); +x_3 = l_BitVec_ushiftRight___rarg(x_1, x_2); lean_dec(x_2); lean_dec(x_1); return x_3; } } -LEAN_EXPORT lean_object* l_Std_BitVec_ushiftRight___boxed(lean_object* x_1) { +LEAN_EXPORT lean_object* l_BitVec_ushiftRight___boxed(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = l_Std_BitVec_ushiftRight(x_1); +x_2 = l_BitVec_ushiftRight(x_1); lean_dec(x_1); return x_2; } } -static lean_object* _init_l_Std_BitVec_instHShiftRightBitVecNat___closed__1() { +static lean_object* _init_l_BitVec_instHShiftRightBitVecNat___closed__1() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Std_BitVec_ushiftRight___rarg___boxed), 2, 0); +x_1 = lean_alloc_closure((void*)(l_BitVec_ushiftRight___rarg___boxed), 2, 0); return x_1; } } -LEAN_EXPORT lean_object* l_Std_BitVec_instHShiftRightBitVecNat(lean_object* x_1) { +LEAN_EXPORT lean_object* l_BitVec_instHShiftRightBitVecNat(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = l_Std_BitVec_instHShiftRightBitVecNat___closed__1; +x_2 = l_BitVec_instHShiftRightBitVecNat___closed__1; return x_2; } } -LEAN_EXPORT lean_object* l_Std_BitVec_instHShiftRightBitVecNat___boxed(lean_object* x_1) { +LEAN_EXPORT lean_object* l_BitVec_instHShiftRightBitVecNat___boxed(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = l_Std_BitVec_instHShiftRightBitVecNat(x_1); +x_2 = l_BitVec_instHShiftRightBitVecNat(x_1); lean_dec(x_1); return x_2; } } -LEAN_EXPORT lean_object* l_Std_BitVec_sshiftRight(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_BitVec_sshiftRight(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_BitVec_toInt(x_1, x_2); +x_4 = l_BitVec_toInt(x_1, x_2); x_5 = l_Int_shiftRight(x_4, x_3); lean_dec(x_4); -x_6 = l_Std_BitVec_ofInt(x_1, x_5); +x_6 = l_BitVec_ofInt(x_1, x_5); lean_dec(x_5); return x_6; } } -LEAN_EXPORT lean_object* l_Std_BitVec_sshiftRight___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_BitVec_sshiftRight___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l_Std_BitVec_sshiftRight(x_1, x_2, x_3); +x_4 = l_BitVec_sshiftRight(x_1, x_2, x_3); lean_dec(x_3); lean_dec(x_1); return x_4; } } -LEAN_EXPORT lean_object* l_Std_BitVec_instHShiftLeftBitVec(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +LEAN_EXPORT lean_object* l_BitVec_instHShiftLeftBitVec(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_BitVec_shiftLeft(x_1, x_3, x_4); +x_5 = l_BitVec_shiftLeft(x_1, x_3, x_4); return x_5; } } -LEAN_EXPORT lean_object* l_Std_BitVec_instHShiftLeftBitVec___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +LEAN_EXPORT lean_object* l_BitVec_instHShiftLeftBitVec___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_BitVec_instHShiftLeftBitVec(x_1, x_2, x_3, x_4); +x_5 = l_BitVec_instHShiftLeftBitVec(x_1, x_2, x_3, x_4); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); @@ -3254,7 +3218,7 @@ lean_dec(x_1); return x_5; } } -LEAN_EXPORT lean_object* l_Std_BitVec_instHShiftRightBitVec___rarg(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l_BitVec_instHShiftRightBitVec___rarg(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; @@ -3262,39 +3226,39 @@ x_3 = lean_nat_shiftr(x_1, x_2); return x_3; } } -LEAN_EXPORT lean_object* l_Std_BitVec_instHShiftRightBitVec(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l_BitVec_instHShiftRightBitVec(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = lean_alloc_closure((void*)(l_Std_BitVec_instHShiftRightBitVec___rarg___boxed), 2, 0); +x_3 = lean_alloc_closure((void*)(l_BitVec_instHShiftRightBitVec___rarg___boxed), 2, 0); return x_3; } } -LEAN_EXPORT lean_object* l_Std_BitVec_instHShiftRightBitVec___rarg___boxed(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l_BitVec_instHShiftRightBitVec___rarg___boxed(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = l_Std_BitVec_instHShiftRightBitVec___rarg(x_1, x_2); +x_3 = l_BitVec_instHShiftRightBitVec___rarg(x_1, x_2); lean_dec(x_2); lean_dec(x_1); return x_3; } } -LEAN_EXPORT lean_object* l_Std_BitVec_instHShiftRightBitVec___boxed(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l_BitVec_instHShiftRightBitVec___boxed(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = l_Std_BitVec_instHShiftRightBitVec(x_1, x_2); +x_3 = l_BitVec_instHShiftRightBitVec(x_1, x_2); lean_dec(x_2); lean_dec(x_1); return x_3; } } -LEAN_EXPORT lean_object* l_Std_BitVec_rotateLeft(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_BitVec_rotateLeft(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; -x_4 = l_Std_BitVec_shiftLeft(x_1, x_2, x_3); +x_4 = l_BitVec_shiftLeft(x_1, x_2, x_3); x_5 = lean_nat_sub(x_1, x_3); x_6 = lean_nat_shiftr(x_2, x_5); lean_dec(x_5); @@ -3304,24 +3268,24 @@ lean_dec(x_4); return x_7; } } -LEAN_EXPORT lean_object* l_Std_BitVec_rotateLeft___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_BitVec_rotateLeft___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l_Std_BitVec_rotateLeft(x_1, x_2, x_3); +x_4 = l_BitVec_rotateLeft(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_Std_BitVec_rotateRight(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_BitVec_rotateRight(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; x_4 = lean_nat_shiftr(x_2, x_3); x_5 = lean_nat_sub(x_1, x_3); -x_6 = l_Std_BitVec_shiftLeft(x_1, x_2, x_5); +x_6 = l_BitVec_shiftLeft(x_1, x_2, x_5); lean_dec(x_5); x_7 = lean_nat_lor(x_4, x_6); lean_dec(x_6); @@ -3329,18 +3293,18 @@ lean_dec(x_4); return x_7; } } -LEAN_EXPORT lean_object* l_Std_BitVec_rotateRight___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_BitVec_rotateRight___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l_Std_BitVec_rotateRight(x_1, x_2, x_3); +x_4 = l_BitVec_rotateRight(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_Std_BitVec_append___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_BitVec_append___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; lean_object* x_5; @@ -3350,61 +3314,61 @@ lean_dec(x_4); return x_5; } } -LEAN_EXPORT lean_object* l_Std_BitVec_append(lean_object* x_1) { +LEAN_EXPORT lean_object* l_BitVec_append(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l_Std_BitVec_append___rarg___boxed), 3, 0); +x_2 = lean_alloc_closure((void*)(l_BitVec_append___rarg___boxed), 3, 0); return x_2; } } -LEAN_EXPORT lean_object* l_Std_BitVec_append___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_BitVec_append___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l_Std_BitVec_append___rarg(x_1, x_2, x_3); +x_4 = l_BitVec_append___rarg(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_Std_BitVec_append___boxed(lean_object* x_1) { +LEAN_EXPORT lean_object* l_BitVec_append___boxed(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = l_Std_BitVec_append(x_1); +x_2 = l_BitVec_append(x_1); lean_dec(x_1); return x_2; } } -LEAN_EXPORT lean_object* l_Std_BitVec_instHAppendBitVecHAddNatInstHAddInstAddNat___rarg(lean_object* x_1) { +LEAN_EXPORT lean_object* l_BitVec_instHAppendBitVecHAddNatInstHAddInstAddNat___rarg(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l_Std_BitVec_append___rarg___boxed), 3, 1); +x_2 = lean_alloc_closure((void*)(l_BitVec_append___rarg___boxed), 3, 1); lean_closure_set(x_2, 0, x_1); return x_2; } } -LEAN_EXPORT lean_object* l_Std_BitVec_instHAppendBitVecHAddNatInstHAddInstAddNat(lean_object* x_1) { +LEAN_EXPORT lean_object* l_BitVec_instHAppendBitVecHAddNatInstHAddInstAddNat(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l_Std_BitVec_instHAppendBitVecHAddNatInstHAddInstAddNat___rarg), 1, 0); +x_2 = lean_alloc_closure((void*)(l_BitVec_instHAppendBitVecHAddNatInstHAddInstAddNat___rarg), 1, 0); return x_2; } } -LEAN_EXPORT lean_object* l_Std_BitVec_instHAppendBitVecHAddNatInstHAddInstAddNat___boxed(lean_object* x_1) { +LEAN_EXPORT lean_object* l_BitVec_instHAppendBitVecHAddNatInstHAddInstAddNat___boxed(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = l_Std_BitVec_instHAppendBitVecHAddNatInstHAddInstAddNat(x_1); +x_2 = l_BitVec_instHAppendBitVecHAddNatInstHAddInstAddNat(x_1); lean_dec(x_1); return x_2; } } -LEAN_EXPORT lean_object* l_Std_BitVec_replicate(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_BitVec_replicate(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -3416,9 +3380,9 @@ lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_obj x_6 = lean_unsigned_to_nat(1u); x_7 = lean_nat_sub(x_2, x_6); x_8 = lean_nat_mul(x_1, x_7); -x_9 = l_Std_BitVec_replicate(x_1, x_7, x_3); +x_9 = l_BitVec_replicate(x_1, x_7, x_3); lean_dec(x_7); -x_10 = l_Std_BitVec_append___rarg(x_8, x_3, x_9); +x_10 = l_BitVec_append___rarg(x_8, x_3, x_9); lean_dec(x_9); lean_dec(x_8); return x_10; @@ -3427,79 +3391,79 @@ else { lean_object* x_11; lean_object* x_12; x_11 = lean_nat_mul(x_1, x_4); -x_12 = l_Std_BitVec_ofNat(x_11, x_4); +x_12 = l_BitVec_ofNat(x_11, x_4); lean_dec(x_11); return x_12; } } } -LEAN_EXPORT lean_object* l_Std_BitVec_replicate___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_BitVec_replicate___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l_Std_BitVec_replicate(x_1, x_2, x_3); +x_4 = l_BitVec_replicate(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_Std_BitVec_concat___rarg(lean_object* x_1, uint8_t x_2) { +LEAN_EXPORT lean_object* l_BitVec_concat___rarg(lean_object* x_1, uint8_t x_2) { _start: { lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_3 = l_Std_BitVec_ofBool(x_2); +x_3 = l_BitVec_ofBool(x_2); x_4 = lean_unsigned_to_nat(1u); -x_5 = l_Std_BitVec_append___rarg(x_4, x_1, x_3); +x_5 = l_BitVec_append___rarg(x_4, x_1, x_3); lean_dec(x_3); return x_5; } } -LEAN_EXPORT lean_object* l_Std_BitVec_concat(lean_object* x_1) { +LEAN_EXPORT lean_object* l_BitVec_concat(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l_Std_BitVec_concat___rarg___boxed), 2, 0); +x_2 = lean_alloc_closure((void*)(l_BitVec_concat___rarg___boxed), 2, 0); return x_2; } } -LEAN_EXPORT lean_object* l_Std_BitVec_concat___rarg___boxed(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l_BitVec_concat___rarg___boxed(lean_object* x_1, lean_object* x_2) { _start: { uint8_t x_3; lean_object* x_4; x_3 = lean_unbox(x_2); lean_dec(x_2); -x_4 = l_Std_BitVec_concat___rarg(x_1, x_3); +x_4 = l_BitVec_concat___rarg(x_1, x_3); lean_dec(x_1); return x_4; } } -LEAN_EXPORT lean_object* l_Std_BitVec_concat___boxed(lean_object* x_1) { +LEAN_EXPORT lean_object* l_BitVec_concat___boxed(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = l_Std_BitVec_concat(x_1); +x_2 = l_BitVec_concat(x_1); lean_dec(x_1); return x_2; } } -LEAN_EXPORT lean_object* l_Std_BitVec_cons(lean_object* x_1, uint8_t x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_BitVec_cons(lean_object* x_1, uint8_t x_2, lean_object* x_3) { _start: { lean_object* x_4; lean_object* x_5; -x_4 = l_Std_BitVec_ofBool(x_2); -x_5 = l_Std_BitVec_append___rarg(x_1, x_4, x_3); +x_4 = l_BitVec_ofBool(x_2); +x_5 = l_BitVec_append___rarg(x_1, x_4, x_3); lean_dec(x_4); return x_5; } } -LEAN_EXPORT lean_object* l_Std_BitVec_cons___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_BitVec_cons___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { uint8_t x_4; lean_object* x_5; x_4 = lean_unbox(x_2); lean_dec(x_2); -x_5 = l_Std_BitVec_cons(x_1, x_4, x_3); +x_5 = l_BitVec_cons(x_1, x_4, x_3); lean_dec(x_3); lean_dec(x_1); return x_5; @@ -3522,142 +3486,136 @@ lean_dec_ref(res); res = initialize_Init_Data_Nat_Power2(builtin, lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -l_Std_BitVec_nil___closed__1 = _init_l_Std_BitVec_nil___closed__1(); -lean_mark_persistent(l_Std_BitVec_nil___closed__1); -l_Std_BitVec_nil = _init_l_Std_BitVec_nil(); -lean_mark_persistent(l_Std_BitVec_nil); -l_Std_BitVec_ofInt___closed__1 = _init_l_Std_BitVec_ofInt___closed__1(); -lean_mark_persistent(l_Std_BitVec_ofInt___closed__1); -l_Std_BitVec_term_____x23_______closed__1 = _init_l_Std_BitVec_term_____x23_______closed__1(); -lean_mark_persistent(l_Std_BitVec_term_____x23_______closed__1); -l_Std_BitVec_term_____x23_______closed__2 = _init_l_Std_BitVec_term_____x23_______closed__2(); -lean_mark_persistent(l_Std_BitVec_term_____x23_______closed__2); -l_Std_BitVec_term_____x23_______closed__3 = _init_l_Std_BitVec_term_____x23_______closed__3(); -lean_mark_persistent(l_Std_BitVec_term_____x23_______closed__3); -l_Std_BitVec_term_____x23_______closed__4 = _init_l_Std_BitVec_term_____x23_______closed__4(); -lean_mark_persistent(l_Std_BitVec_term_____x23_______closed__4); -l_Std_BitVec_term_____x23_______closed__5 = _init_l_Std_BitVec_term_____x23_______closed__5(); -lean_mark_persistent(l_Std_BitVec_term_____x23_______closed__5); -l_Std_BitVec_term_____x23_______closed__6 = _init_l_Std_BitVec_term_____x23_______closed__6(); -lean_mark_persistent(l_Std_BitVec_term_____x23_______closed__6); -l_Std_BitVec_term_____x23_______closed__7 = _init_l_Std_BitVec_term_____x23_______closed__7(); -lean_mark_persistent(l_Std_BitVec_term_____x23_______closed__7); -l_Std_BitVec_term_____x23_______closed__8 = _init_l_Std_BitVec_term_____x23_______closed__8(); -lean_mark_persistent(l_Std_BitVec_term_____x23_______closed__8); -l_Std_BitVec_term_____x23_______closed__9 = _init_l_Std_BitVec_term_____x23_______closed__9(); -lean_mark_persistent(l_Std_BitVec_term_____x23_______closed__9); -l_Std_BitVec_term_____x23_______closed__10 = _init_l_Std_BitVec_term_____x23_______closed__10(); -lean_mark_persistent(l_Std_BitVec_term_____x23_______closed__10); -l_Std_BitVec_term_____x23_______closed__11 = _init_l_Std_BitVec_term_____x23_______closed__11(); -lean_mark_persistent(l_Std_BitVec_term_____x23_______closed__11); -l_Std_BitVec_term_____x23_______closed__12 = _init_l_Std_BitVec_term_____x23_______closed__12(); -lean_mark_persistent(l_Std_BitVec_term_____x23_______closed__12); -l_Std_BitVec_term_____x23_______closed__13 = _init_l_Std_BitVec_term_____x23_______closed__13(); -lean_mark_persistent(l_Std_BitVec_term_____x23_______closed__13); -l_Std_BitVec_term_____x23_______closed__14 = _init_l_Std_BitVec_term_____x23_______closed__14(); -lean_mark_persistent(l_Std_BitVec_term_____x23_______closed__14); -l_Std_BitVec_term_____x23_______closed__15 = _init_l_Std_BitVec_term_____x23_______closed__15(); -lean_mark_persistent(l_Std_BitVec_term_____x23_______closed__15); -l_Std_BitVec_term_____x23_______closed__16 = _init_l_Std_BitVec_term_____x23_______closed__16(); -lean_mark_persistent(l_Std_BitVec_term_____x23_______closed__16); -l_Std_BitVec_term_____x23_______closed__17 = _init_l_Std_BitVec_term_____x23_______closed__17(); -lean_mark_persistent(l_Std_BitVec_term_____x23_______closed__17); -l_Std_BitVec_term_____x23_______closed__18 = _init_l_Std_BitVec_term_____x23_______closed__18(); -lean_mark_persistent(l_Std_BitVec_term_____x23_______closed__18); -l_Std_BitVec_term_____x23____ = _init_l_Std_BitVec_term_____x23____(); -lean_mark_persistent(l_Std_BitVec_term_____x23____); -l_Std_BitVec___aux__Init__Data__BitVec__Basic______macroRules__Std__BitVec__term_____x23______1___closed__1 = _init_l_Std_BitVec___aux__Init__Data__BitVec__Basic______macroRules__Std__BitVec__term_____x23______1___closed__1(); -lean_mark_persistent(l_Std_BitVec___aux__Init__Data__BitVec__Basic______macroRules__Std__BitVec__term_____x23______1___closed__1); -l_Std_BitVec___aux__Init__Data__BitVec__Basic______macroRules__Std__BitVec__term_____x23______1___closed__2 = _init_l_Std_BitVec___aux__Init__Data__BitVec__Basic______macroRules__Std__BitVec__term_____x23______1___closed__2(); -lean_mark_persistent(l_Std_BitVec___aux__Init__Data__BitVec__Basic______macroRules__Std__BitVec__term_____x23______1___closed__2); -l_Std_BitVec___aux__Init__Data__BitVec__Basic______macroRules__Std__BitVec__term_____x23______1___closed__3 = _init_l_Std_BitVec___aux__Init__Data__BitVec__Basic______macroRules__Std__BitVec__term_____x23______1___closed__3(); -lean_mark_persistent(l_Std_BitVec___aux__Init__Data__BitVec__Basic______macroRules__Std__BitVec__term_____x23______1___closed__3); -l_Std_BitVec___aux__Init__Data__BitVec__Basic______macroRules__Std__BitVec__term_____x23______1___closed__4 = _init_l_Std_BitVec___aux__Init__Data__BitVec__Basic______macroRules__Std__BitVec__term_____x23______1___closed__4(); -lean_mark_persistent(l_Std_BitVec___aux__Init__Data__BitVec__Basic______macroRules__Std__BitVec__term_____x23______1___closed__4); -l_Std_BitVec___aux__Init__Data__BitVec__Basic______macroRules__Std__BitVec__term_____x23______1___closed__5 = _init_l_Std_BitVec___aux__Init__Data__BitVec__Basic______macroRules__Std__BitVec__term_____x23______1___closed__5(); -lean_mark_persistent(l_Std_BitVec___aux__Init__Data__BitVec__Basic______macroRules__Std__BitVec__term_____x23______1___closed__5); -l_Std_BitVec___aux__Init__Data__BitVec__Basic______macroRules__Std__BitVec__term_____x23______1___closed__6 = _init_l_Std_BitVec___aux__Init__Data__BitVec__Basic______macroRules__Std__BitVec__term_____x23______1___closed__6(); -lean_mark_persistent(l_Std_BitVec___aux__Init__Data__BitVec__Basic______macroRules__Std__BitVec__term_____x23______1___closed__6); -l_Std_BitVec___aux__Init__Data__BitVec__Basic______macroRules__Std__BitVec__term_____x23______1___closed__7 = _init_l_Std_BitVec___aux__Init__Data__BitVec__Basic______macroRules__Std__BitVec__term_____x23______1___closed__7(); -lean_mark_persistent(l_Std_BitVec___aux__Init__Data__BitVec__Basic______macroRules__Std__BitVec__term_____x23______1___closed__7); -l_Std_BitVec___aux__Init__Data__BitVec__Basic______macroRules__Std__BitVec__term_____x23______1___closed__8 = _init_l_Std_BitVec___aux__Init__Data__BitVec__Basic______macroRules__Std__BitVec__term_____x23______1___closed__8(); -lean_mark_persistent(l_Std_BitVec___aux__Init__Data__BitVec__Basic______macroRules__Std__BitVec__term_____x23______1___closed__8); -l_Std_BitVec___aux__Init__Data__BitVec__Basic______macroRules__Std__BitVec__term_____x23______1___closed__9 = _init_l_Std_BitVec___aux__Init__Data__BitVec__Basic______macroRules__Std__BitVec__term_____x23______1___closed__9(); -lean_mark_persistent(l_Std_BitVec___aux__Init__Data__BitVec__Basic______macroRules__Std__BitVec__term_____x23______1___closed__9); -l_Std_BitVec___aux__Init__Data__BitVec__Basic______macroRules__Std__BitVec__term_____x23______1___closed__10 = _init_l_Std_BitVec___aux__Init__Data__BitVec__Basic______macroRules__Std__BitVec__term_____x23______1___closed__10(); -lean_mark_persistent(l_Std_BitVec___aux__Init__Data__BitVec__Basic______macroRules__Std__BitVec__term_____x23______1___closed__10); -l_Std_BitVec___aux__Init__Data__BitVec__Basic______macroRules__Std__BitVec__term_____x23______1___closed__11 = _init_l_Std_BitVec___aux__Init__Data__BitVec__Basic______macroRules__Std__BitVec__term_____x23______1___closed__11(); -lean_mark_persistent(l_Std_BitVec___aux__Init__Data__BitVec__Basic______macroRules__Std__BitVec__term_____x23______1___closed__11); -l_Std_BitVec___aux__Init__Data__BitVec__Basic______macroRules__Std__BitVec__term_____x23______1___closed__12 = _init_l_Std_BitVec___aux__Init__Data__BitVec__Basic______macroRules__Std__BitVec__term_____x23______1___closed__12(); -lean_mark_persistent(l_Std_BitVec___aux__Init__Data__BitVec__Basic______macroRules__Std__BitVec__term_____x23______1___closed__12); -l_Std_BitVec___aux__Init__Data__BitVec__Basic______macroRules__Std__BitVec__term_____x23______1___closed__13 = _init_l_Std_BitVec___aux__Init__Data__BitVec__Basic______macroRules__Std__BitVec__term_____x23______1___closed__13(); -lean_mark_persistent(l_Std_BitVec___aux__Init__Data__BitVec__Basic______macroRules__Std__BitVec__term_____x23______1___closed__13); -l_Std_BitVec___aux__Init__Data__BitVec__Basic______macroRules__Std__BitVec__term_____x23______1___closed__14 = _init_l_Std_BitVec___aux__Init__Data__BitVec__Basic______macroRules__Std__BitVec__term_____x23______1___closed__14(); -lean_mark_persistent(l_Std_BitVec___aux__Init__Data__BitVec__Basic______macroRules__Std__BitVec__term_____x23______1___closed__14); -l_Std_BitVec___aux__Init__Data__BitVec__Basic______macroRules__Std__BitVec__term_____x23______1___closed__15 = _init_l_Std_BitVec___aux__Init__Data__BitVec__Basic______macroRules__Std__BitVec__term_____x23______1___closed__15(); -lean_mark_persistent(l_Std_BitVec___aux__Init__Data__BitVec__Basic______macroRules__Std__BitVec__term_____x23______1___closed__15); -l_Std_BitVec___aux__Init__Data__BitVec__Basic______macroRules__Std__BitVec__term_____x23______1___closed__16 = _init_l_Std_BitVec___aux__Init__Data__BitVec__Basic______macroRules__Std__BitVec__term_____x23______1___closed__16(); -lean_mark_persistent(l_Std_BitVec___aux__Init__Data__BitVec__Basic______macroRules__Std__BitVec__term_____x23______1___closed__16); -l_Std_BitVec_term_____x23_x27_______closed__1 = _init_l_Std_BitVec_term_____x23_x27_______closed__1(); -lean_mark_persistent(l_Std_BitVec_term_____x23_x27_______closed__1); -l_Std_BitVec_term_____x23_x27_______closed__2 = _init_l_Std_BitVec_term_____x23_x27_______closed__2(); -lean_mark_persistent(l_Std_BitVec_term_____x23_x27_______closed__2); -l_Std_BitVec_term_____x23_x27_______closed__3 = _init_l_Std_BitVec_term_____x23_x27_______closed__3(); -lean_mark_persistent(l_Std_BitVec_term_____x23_x27_______closed__3); -l_Std_BitVec_term_____x23_x27_______closed__4 = _init_l_Std_BitVec_term_____x23_x27_______closed__4(); -lean_mark_persistent(l_Std_BitVec_term_____x23_x27_______closed__4); -l_Std_BitVec_term_____x23_x27_______closed__5 = _init_l_Std_BitVec_term_____x23_x27_______closed__5(); -lean_mark_persistent(l_Std_BitVec_term_____x23_x27_______closed__5); -l_Std_BitVec_term_____x23_x27_______closed__6 = _init_l_Std_BitVec_term_____x23_x27_______closed__6(); -lean_mark_persistent(l_Std_BitVec_term_____x23_x27_______closed__6); -l_Std_BitVec_term_____x23_x27_______closed__7 = _init_l_Std_BitVec_term_____x23_x27_______closed__7(); -lean_mark_persistent(l_Std_BitVec_term_____x23_x27_______closed__7); -l_Std_BitVec_term_____x23_x27_______closed__8 = _init_l_Std_BitVec_term_____x23_x27_______closed__8(); -lean_mark_persistent(l_Std_BitVec_term_____x23_x27_______closed__8); -l_Std_BitVec_term_____x23_x27____ = _init_l_Std_BitVec_term_____x23_x27____(); -lean_mark_persistent(l_Std_BitVec_term_____x23_x27____); -l_Std_BitVec___aux__Init__Data__BitVec__Basic______macroRules__Std__BitVec__term_____x23_x27______1___closed__1 = _init_l_Std_BitVec___aux__Init__Data__BitVec__Basic______macroRules__Std__BitVec__term_____x23_x27______1___closed__1(); -lean_mark_persistent(l_Std_BitVec___aux__Init__Data__BitVec__Basic______macroRules__Std__BitVec__term_____x23_x27______1___closed__1); -l_Std_BitVec___aux__Init__Data__BitVec__Basic______macroRules__Std__BitVec__term_____x23_x27______1___closed__2 = _init_l_Std_BitVec___aux__Init__Data__BitVec__Basic______macroRules__Std__BitVec__term_____x23_x27______1___closed__2(); -lean_mark_persistent(l_Std_BitVec___aux__Init__Data__BitVec__Basic______macroRules__Std__BitVec__term_____x23_x27______1___closed__2); -l_Std_BitVec___aux__Init__Data__BitVec__Basic______macroRules__Std__BitVec__term_____x23_x27______1___closed__3 = _init_l_Std_BitVec___aux__Init__Data__BitVec__Basic______macroRules__Std__BitVec__term_____x23_x27______1___closed__3(); -lean_mark_persistent(l_Std_BitVec___aux__Init__Data__BitVec__Basic______macroRules__Std__BitVec__term_____x23_x27______1___closed__3); -l_Std_BitVec___aux__Init__Data__BitVec__Basic______macroRules__Std__BitVec__term_____x23_x27______1___closed__4 = _init_l_Std_BitVec___aux__Init__Data__BitVec__Basic______macroRules__Std__BitVec__term_____x23_x27______1___closed__4(); -lean_mark_persistent(l_Std_BitVec___aux__Init__Data__BitVec__Basic______macroRules__Std__BitVec__term_____x23_x27______1___closed__4); -l_Std_BitVec___aux__Init__Data__BitVec__Basic______macroRules__Std__BitVec__term_____x23_x27______1___closed__5 = _init_l_Std_BitVec___aux__Init__Data__BitVec__Basic______macroRules__Std__BitVec__term_____x23_x27______1___closed__5(); -lean_mark_persistent(l_Std_BitVec___aux__Init__Data__BitVec__Basic______macroRules__Std__BitVec__term_____x23_x27______1___closed__5); -l_Std_BitVec___aux__Init__Data__BitVec__Basic______macroRules__Std__BitVec__term_____x23_x27______1___closed__6 = _init_l_Std_BitVec___aux__Init__Data__BitVec__Basic______macroRules__Std__BitVec__term_____x23_x27______1___closed__6(); -lean_mark_persistent(l_Std_BitVec___aux__Init__Data__BitVec__Basic______macroRules__Std__BitVec__term_____x23_x27______1___closed__6); -l_Std_BitVec___aux__Init__Data__BitVec__Basic______macroRules__Std__BitVec__term_____x23_x27______1___closed__7 = _init_l_Std_BitVec___aux__Init__Data__BitVec__Basic______macroRules__Std__BitVec__term_____x23_x27______1___closed__7(); -lean_mark_persistent(l_Std_BitVec___aux__Init__Data__BitVec__Basic______macroRules__Std__BitVec__term_____x23_x27______1___closed__7); -l_Std_BitVec___aux__Init__Data__BitVec__Basic______macroRules__Std__BitVec__term_____x23_x27______1___closed__8 = _init_l_Std_BitVec___aux__Init__Data__BitVec__Basic______macroRules__Std__BitVec__term_____x23_x27______1___closed__8(); -lean_mark_persistent(l_Std_BitVec___aux__Init__Data__BitVec__Basic______macroRules__Std__BitVec__term_____x23_x27______1___closed__8); -l_Std_BitVec___aux__Init__Data__BitVec__Basic______macroRules__Std__BitVec__term_____x23_x27______1___closed__9 = _init_l_Std_BitVec___aux__Init__Data__BitVec__Basic______macroRules__Std__BitVec__term_____x23_x27______1___closed__9(); -lean_mark_persistent(l_Std_BitVec___aux__Init__Data__BitVec__Basic______macroRules__Std__BitVec__term_____x23_x27______1___closed__9); -l_Std_BitVec_toHex___boxed__const__1 = _init_l_Std_BitVec_toHex___boxed__const__1(); -lean_mark_persistent(l_Std_BitVec_toHex___boxed__const__1); -l_Std_BitVec_instReprBitVec___closed__1 = _init_l_Std_BitVec_instReprBitVec___closed__1(); -lean_mark_persistent(l_Std_BitVec_instReprBitVec___closed__1); -l_Std_BitVec_instReprBitVec___closed__2 = _init_l_Std_BitVec_instReprBitVec___closed__2(); -lean_mark_persistent(l_Std_BitVec_instReprBitVec___closed__2); -l_Std_BitVec_instReprBitVec___closed__3 = _init_l_Std_BitVec_instReprBitVec___closed__3(); -lean_mark_persistent(l_Std_BitVec_instReprBitVec___closed__3); -l_Std_BitVec_instDivBitVec___closed__1 = _init_l_Std_BitVec_instDivBitVec___closed__1(); -lean_mark_persistent(l_Std_BitVec_instDivBitVec___closed__1); -l_Std_BitVec_instModBitVec___closed__1 = _init_l_Std_BitVec_instModBitVec___closed__1(); -lean_mark_persistent(l_Std_BitVec_instModBitVec___closed__1); -l_Std_BitVec_ofBool___closed__1 = _init_l_Std_BitVec_ofBool___closed__1(); -lean_mark_persistent(l_Std_BitVec_ofBool___closed__1); -l_Std_BitVec_ofBool___closed__2 = _init_l_Std_BitVec_ofBool___closed__2(); -lean_mark_persistent(l_Std_BitVec_ofBool___closed__2); -l_Std_BitVec_instAndOpBitVec___closed__1 = _init_l_Std_BitVec_instAndOpBitVec___closed__1(); -lean_mark_persistent(l_Std_BitVec_instAndOpBitVec___closed__1); -l_Std_BitVec_instOrOpBitVec___closed__1 = _init_l_Std_BitVec_instOrOpBitVec___closed__1(); -lean_mark_persistent(l_Std_BitVec_instOrOpBitVec___closed__1); -l_Std_BitVec_instXorBitVec___closed__1 = _init_l_Std_BitVec_instXorBitVec___closed__1(); -lean_mark_persistent(l_Std_BitVec_instXorBitVec___closed__1); -l_Std_BitVec_instHShiftRightBitVecNat___closed__1 = _init_l_Std_BitVec_instHShiftRightBitVecNat___closed__1(); -lean_mark_persistent(l_Std_BitVec_instHShiftRightBitVecNat___closed__1); +l_BitVec_nil___closed__1 = _init_l_BitVec_nil___closed__1(); +lean_mark_persistent(l_BitVec_nil___closed__1); +l_BitVec_nil = _init_l_BitVec_nil(); +lean_mark_persistent(l_BitVec_nil); +l_BitVec_ofInt___closed__1 = _init_l_BitVec_ofInt___closed__1(); +lean_mark_persistent(l_BitVec_ofInt___closed__1); +l_BitVec_term_____x23_______closed__1 = _init_l_BitVec_term_____x23_______closed__1(); +lean_mark_persistent(l_BitVec_term_____x23_______closed__1); +l_BitVec_term_____x23_______closed__2 = _init_l_BitVec_term_____x23_______closed__2(); +lean_mark_persistent(l_BitVec_term_____x23_______closed__2); +l_BitVec_term_____x23_______closed__3 = _init_l_BitVec_term_____x23_______closed__3(); +lean_mark_persistent(l_BitVec_term_____x23_______closed__3); +l_BitVec_term_____x23_______closed__4 = _init_l_BitVec_term_____x23_______closed__4(); +lean_mark_persistent(l_BitVec_term_____x23_______closed__4); +l_BitVec_term_____x23_______closed__5 = _init_l_BitVec_term_____x23_______closed__5(); +lean_mark_persistent(l_BitVec_term_____x23_______closed__5); +l_BitVec_term_____x23_______closed__6 = _init_l_BitVec_term_____x23_______closed__6(); +lean_mark_persistent(l_BitVec_term_____x23_______closed__6); +l_BitVec_term_____x23_______closed__7 = _init_l_BitVec_term_____x23_______closed__7(); +lean_mark_persistent(l_BitVec_term_____x23_______closed__7); +l_BitVec_term_____x23_______closed__8 = _init_l_BitVec_term_____x23_______closed__8(); +lean_mark_persistent(l_BitVec_term_____x23_______closed__8); +l_BitVec_term_____x23_______closed__9 = _init_l_BitVec_term_____x23_______closed__9(); +lean_mark_persistent(l_BitVec_term_____x23_______closed__9); +l_BitVec_term_____x23_______closed__10 = _init_l_BitVec_term_____x23_______closed__10(); +lean_mark_persistent(l_BitVec_term_____x23_______closed__10); +l_BitVec_term_____x23_______closed__11 = _init_l_BitVec_term_____x23_______closed__11(); +lean_mark_persistent(l_BitVec_term_____x23_______closed__11); +l_BitVec_term_____x23_______closed__12 = _init_l_BitVec_term_____x23_______closed__12(); +lean_mark_persistent(l_BitVec_term_____x23_______closed__12); +l_BitVec_term_____x23_______closed__13 = _init_l_BitVec_term_____x23_______closed__13(); +lean_mark_persistent(l_BitVec_term_____x23_______closed__13); +l_BitVec_term_____x23_______closed__14 = _init_l_BitVec_term_____x23_______closed__14(); +lean_mark_persistent(l_BitVec_term_____x23_______closed__14); +l_BitVec_term_____x23_______closed__15 = _init_l_BitVec_term_____x23_______closed__15(); +lean_mark_persistent(l_BitVec_term_____x23_______closed__15); +l_BitVec_term_____x23_______closed__16 = _init_l_BitVec_term_____x23_______closed__16(); +lean_mark_persistent(l_BitVec_term_____x23_______closed__16); +l_BitVec_term_____x23_______closed__17 = _init_l_BitVec_term_____x23_______closed__17(); +lean_mark_persistent(l_BitVec_term_____x23_______closed__17); +l_BitVec_term_____x23____ = _init_l_BitVec_term_____x23____(); +lean_mark_persistent(l_BitVec_term_____x23____); +l_BitVec___aux__Init__Data__BitVec__Basic______macroRules__BitVec__term_____x23______1___closed__1 = _init_l_BitVec___aux__Init__Data__BitVec__Basic______macroRules__BitVec__term_____x23______1___closed__1(); +lean_mark_persistent(l_BitVec___aux__Init__Data__BitVec__Basic______macroRules__BitVec__term_____x23______1___closed__1); +l_BitVec___aux__Init__Data__BitVec__Basic______macroRules__BitVec__term_____x23______1___closed__2 = _init_l_BitVec___aux__Init__Data__BitVec__Basic______macroRules__BitVec__term_____x23______1___closed__2(); +lean_mark_persistent(l_BitVec___aux__Init__Data__BitVec__Basic______macroRules__BitVec__term_____x23______1___closed__2); +l_BitVec___aux__Init__Data__BitVec__Basic______macroRules__BitVec__term_____x23______1___closed__3 = _init_l_BitVec___aux__Init__Data__BitVec__Basic______macroRules__BitVec__term_____x23______1___closed__3(); +lean_mark_persistent(l_BitVec___aux__Init__Data__BitVec__Basic______macroRules__BitVec__term_____x23______1___closed__3); +l_BitVec___aux__Init__Data__BitVec__Basic______macroRules__BitVec__term_____x23______1___closed__4 = _init_l_BitVec___aux__Init__Data__BitVec__Basic______macroRules__BitVec__term_____x23______1___closed__4(); +lean_mark_persistent(l_BitVec___aux__Init__Data__BitVec__Basic______macroRules__BitVec__term_____x23______1___closed__4); +l_BitVec___aux__Init__Data__BitVec__Basic______macroRules__BitVec__term_____x23______1___closed__5 = _init_l_BitVec___aux__Init__Data__BitVec__Basic______macroRules__BitVec__term_____x23______1___closed__5(); +lean_mark_persistent(l_BitVec___aux__Init__Data__BitVec__Basic______macroRules__BitVec__term_____x23______1___closed__5); +l_BitVec___aux__Init__Data__BitVec__Basic______macroRules__BitVec__term_____x23______1___closed__6 = _init_l_BitVec___aux__Init__Data__BitVec__Basic______macroRules__BitVec__term_____x23______1___closed__6(); +lean_mark_persistent(l_BitVec___aux__Init__Data__BitVec__Basic______macroRules__BitVec__term_____x23______1___closed__6); +l_BitVec___aux__Init__Data__BitVec__Basic______macroRules__BitVec__term_____x23______1___closed__7 = _init_l_BitVec___aux__Init__Data__BitVec__Basic______macroRules__BitVec__term_____x23______1___closed__7(); +lean_mark_persistent(l_BitVec___aux__Init__Data__BitVec__Basic______macroRules__BitVec__term_____x23______1___closed__7); +l_BitVec___aux__Init__Data__BitVec__Basic______macroRules__BitVec__term_____x23______1___closed__8 = _init_l_BitVec___aux__Init__Data__BitVec__Basic______macroRules__BitVec__term_____x23______1___closed__8(); +lean_mark_persistent(l_BitVec___aux__Init__Data__BitVec__Basic______macroRules__BitVec__term_____x23______1___closed__8); +l_BitVec___aux__Init__Data__BitVec__Basic______macroRules__BitVec__term_____x23______1___closed__9 = _init_l_BitVec___aux__Init__Data__BitVec__Basic______macroRules__BitVec__term_____x23______1___closed__9(); +lean_mark_persistent(l_BitVec___aux__Init__Data__BitVec__Basic______macroRules__BitVec__term_____x23______1___closed__9); +l_BitVec___aux__Init__Data__BitVec__Basic______macroRules__BitVec__term_____x23______1___closed__10 = _init_l_BitVec___aux__Init__Data__BitVec__Basic______macroRules__BitVec__term_____x23______1___closed__10(); +lean_mark_persistent(l_BitVec___aux__Init__Data__BitVec__Basic______macroRules__BitVec__term_____x23______1___closed__10); +l_BitVec___aux__Init__Data__BitVec__Basic______macroRules__BitVec__term_____x23______1___closed__11 = _init_l_BitVec___aux__Init__Data__BitVec__Basic______macroRules__BitVec__term_____x23______1___closed__11(); +lean_mark_persistent(l_BitVec___aux__Init__Data__BitVec__Basic______macroRules__BitVec__term_____x23______1___closed__11); +l_BitVec___aux__Init__Data__BitVec__Basic______macroRules__BitVec__term_____x23______1___closed__12 = _init_l_BitVec___aux__Init__Data__BitVec__Basic______macroRules__BitVec__term_____x23______1___closed__12(); +lean_mark_persistent(l_BitVec___aux__Init__Data__BitVec__Basic______macroRules__BitVec__term_____x23______1___closed__12); +l_BitVec___aux__Init__Data__BitVec__Basic______macroRules__BitVec__term_____x23______1___closed__13 = _init_l_BitVec___aux__Init__Data__BitVec__Basic______macroRules__BitVec__term_____x23______1___closed__13(); +lean_mark_persistent(l_BitVec___aux__Init__Data__BitVec__Basic______macroRules__BitVec__term_____x23______1___closed__13); +l_BitVec___aux__Init__Data__BitVec__Basic______macroRules__BitVec__term_____x23______1___closed__14 = _init_l_BitVec___aux__Init__Data__BitVec__Basic______macroRules__BitVec__term_____x23______1___closed__14(); +lean_mark_persistent(l_BitVec___aux__Init__Data__BitVec__Basic______macroRules__BitVec__term_____x23______1___closed__14); +l_BitVec___aux__Init__Data__BitVec__Basic______macroRules__BitVec__term_____x23______1___closed__15 = _init_l_BitVec___aux__Init__Data__BitVec__Basic______macroRules__BitVec__term_____x23______1___closed__15(); +lean_mark_persistent(l_BitVec___aux__Init__Data__BitVec__Basic______macroRules__BitVec__term_____x23______1___closed__15); +l_BitVec_term_____x23_x27_______closed__1 = _init_l_BitVec_term_____x23_x27_______closed__1(); +lean_mark_persistent(l_BitVec_term_____x23_x27_______closed__1); +l_BitVec_term_____x23_x27_______closed__2 = _init_l_BitVec_term_____x23_x27_______closed__2(); +lean_mark_persistent(l_BitVec_term_____x23_x27_______closed__2); +l_BitVec_term_____x23_x27_______closed__3 = _init_l_BitVec_term_____x23_x27_______closed__3(); +lean_mark_persistent(l_BitVec_term_____x23_x27_______closed__3); +l_BitVec_term_____x23_x27_______closed__4 = _init_l_BitVec_term_____x23_x27_______closed__4(); +lean_mark_persistent(l_BitVec_term_____x23_x27_______closed__4); +l_BitVec_term_____x23_x27_______closed__5 = _init_l_BitVec_term_____x23_x27_______closed__5(); +lean_mark_persistent(l_BitVec_term_____x23_x27_______closed__5); +l_BitVec_term_____x23_x27_______closed__6 = _init_l_BitVec_term_____x23_x27_______closed__6(); +lean_mark_persistent(l_BitVec_term_____x23_x27_______closed__6); +l_BitVec_term_____x23_x27_______closed__7 = _init_l_BitVec_term_____x23_x27_______closed__7(); +lean_mark_persistent(l_BitVec_term_____x23_x27_______closed__7); +l_BitVec_term_____x23_x27_______closed__8 = _init_l_BitVec_term_____x23_x27_______closed__8(); +lean_mark_persistent(l_BitVec_term_____x23_x27_______closed__8); +l_BitVec_term_____x23_x27____ = _init_l_BitVec_term_____x23_x27____(); +lean_mark_persistent(l_BitVec_term_____x23_x27____); +l_BitVec___aux__Init__Data__BitVec__Basic______macroRules__BitVec__term_____x23_x27______1___closed__1 = _init_l_BitVec___aux__Init__Data__BitVec__Basic______macroRules__BitVec__term_____x23_x27______1___closed__1(); +lean_mark_persistent(l_BitVec___aux__Init__Data__BitVec__Basic______macroRules__BitVec__term_____x23_x27______1___closed__1); +l_BitVec___aux__Init__Data__BitVec__Basic______macroRules__BitVec__term_____x23_x27______1___closed__2 = _init_l_BitVec___aux__Init__Data__BitVec__Basic______macroRules__BitVec__term_____x23_x27______1___closed__2(); +lean_mark_persistent(l_BitVec___aux__Init__Data__BitVec__Basic______macroRules__BitVec__term_____x23_x27______1___closed__2); +l_BitVec___aux__Init__Data__BitVec__Basic______macroRules__BitVec__term_____x23_x27______1___closed__3 = _init_l_BitVec___aux__Init__Data__BitVec__Basic______macroRules__BitVec__term_____x23_x27______1___closed__3(); +lean_mark_persistent(l_BitVec___aux__Init__Data__BitVec__Basic______macroRules__BitVec__term_____x23_x27______1___closed__3); +l_BitVec___aux__Init__Data__BitVec__Basic______macroRules__BitVec__term_____x23_x27______1___closed__4 = _init_l_BitVec___aux__Init__Data__BitVec__Basic______macroRules__BitVec__term_____x23_x27______1___closed__4(); +lean_mark_persistent(l_BitVec___aux__Init__Data__BitVec__Basic______macroRules__BitVec__term_____x23_x27______1___closed__4); +l_BitVec___aux__Init__Data__BitVec__Basic______macroRules__BitVec__term_____x23_x27______1___closed__5 = _init_l_BitVec___aux__Init__Data__BitVec__Basic______macroRules__BitVec__term_____x23_x27______1___closed__5(); +lean_mark_persistent(l_BitVec___aux__Init__Data__BitVec__Basic______macroRules__BitVec__term_____x23_x27______1___closed__5); +l_BitVec___aux__Init__Data__BitVec__Basic______macroRules__BitVec__term_____x23_x27______1___closed__6 = _init_l_BitVec___aux__Init__Data__BitVec__Basic______macroRules__BitVec__term_____x23_x27______1___closed__6(); +lean_mark_persistent(l_BitVec___aux__Init__Data__BitVec__Basic______macroRules__BitVec__term_____x23_x27______1___closed__6); +l_BitVec___aux__Init__Data__BitVec__Basic______macroRules__BitVec__term_____x23_x27______1___closed__7 = _init_l_BitVec___aux__Init__Data__BitVec__Basic______macroRules__BitVec__term_____x23_x27______1___closed__7(); +lean_mark_persistent(l_BitVec___aux__Init__Data__BitVec__Basic______macroRules__BitVec__term_____x23_x27______1___closed__7); +l_BitVec___aux__Init__Data__BitVec__Basic______macroRules__BitVec__term_____x23_x27______1___closed__8 = _init_l_BitVec___aux__Init__Data__BitVec__Basic______macroRules__BitVec__term_____x23_x27______1___closed__8(); +lean_mark_persistent(l_BitVec___aux__Init__Data__BitVec__Basic______macroRules__BitVec__term_____x23_x27______1___closed__8); +l_BitVec_toHex___boxed__const__1 = _init_l_BitVec_toHex___boxed__const__1(); +lean_mark_persistent(l_BitVec_toHex___boxed__const__1); +l_BitVec_instReprBitVec___closed__1 = _init_l_BitVec_instReprBitVec___closed__1(); +lean_mark_persistent(l_BitVec_instReprBitVec___closed__1); +l_BitVec_instReprBitVec___closed__2 = _init_l_BitVec_instReprBitVec___closed__2(); +lean_mark_persistent(l_BitVec_instReprBitVec___closed__2); +l_BitVec_instReprBitVec___closed__3 = _init_l_BitVec_instReprBitVec___closed__3(); +lean_mark_persistent(l_BitVec_instReprBitVec___closed__3); +l_BitVec_instDivBitVec___closed__1 = _init_l_BitVec_instDivBitVec___closed__1(); +lean_mark_persistent(l_BitVec_instDivBitVec___closed__1); +l_BitVec_instModBitVec___closed__1 = _init_l_BitVec_instModBitVec___closed__1(); +lean_mark_persistent(l_BitVec_instModBitVec___closed__1); +l_BitVec_ofBool___closed__1 = _init_l_BitVec_ofBool___closed__1(); +lean_mark_persistent(l_BitVec_ofBool___closed__1); +l_BitVec_ofBool___closed__2 = _init_l_BitVec_ofBool___closed__2(); +lean_mark_persistent(l_BitVec_ofBool___closed__2); +l_BitVec_instAndOpBitVec___closed__1 = _init_l_BitVec_instAndOpBitVec___closed__1(); +lean_mark_persistent(l_BitVec_instAndOpBitVec___closed__1); +l_BitVec_instOrOpBitVec___closed__1 = _init_l_BitVec_instOrOpBitVec___closed__1(); +lean_mark_persistent(l_BitVec_instOrOpBitVec___closed__1); +l_BitVec_instXorBitVec___closed__1 = _init_l_BitVec_instXorBitVec___closed__1(); +lean_mark_persistent(l_BitVec_instXorBitVec___closed__1); +l_BitVec_instHShiftRightBitVecNat___closed__1 = _init_l_BitVec_instHShiftRightBitVecNat___closed__1(); +lean_mark_persistent(l_BitVec_instHShiftRightBitVecNat___closed__1); return lean_io_result_mk_ok(lean_box(0)); } #ifdef __cplusplus diff --git a/stage0/stdlib/Init/Data/BitVec/Bitblast.c b/stage0/stdlib/Init/Data/BitVec/Bitblast.c index e6e71f2748..27748d1359 100644 --- a/stage0/stdlib/Init/Data/BitVec/Bitblast.c +++ b/stage0/stdlib/Init/Data/BitVec/Bitblast.c @@ -13,59 +13,26 @@ #ifdef __cplusplus extern "C" { #endif -LEAN_EXPORT uint8_t l_Std_BitVec_carry(lean_object*, lean_object*, lean_object*, uint8_t); -LEAN_EXPORT lean_object* l_Std_BitVec_carry___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Std_BitVec_atLeastTwo___boxed(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_BitVec_carry___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT uint8_t l_BitVec_carry___rarg(lean_object*, lean_object*, lean_object*, uint8_t); lean_object* l_Bool_toNat(uint8_t); -LEAN_EXPORT lean_object* l_Std_BitVec_adc___lambda__1(lean_object*, lean_object*, lean_object*, uint8_t); -LEAN_EXPORT lean_object* l_Std_BitVec_adc___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT uint8_t l_Std_BitVec_atLeastTwo(uint8_t, uint8_t, uint8_t); -LEAN_EXPORT lean_object* l_Std_BitVec_adcb___boxed(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Std_BitVec_adc(lean_object*, lean_object*, lean_object*, uint8_t); +LEAN_EXPORT lean_object* l_BitVec_carry___boxed(lean_object*); +LEAN_EXPORT lean_object* l_BitVec_adcb___boxed(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_BitVec_adc___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_BitVec_carry(lean_object*); +LEAN_EXPORT lean_object* l_Bool_atLeastTwo___boxed(lean_object*, lean_object*, lean_object*); +lean_object* l_BitVec_iunfoldr(lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Nat_testBit(lean_object*, lean_object*); lean_object* lean_nat_pow(lean_object*, lean_object*); lean_object* lean_nat_mod(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Std_BitVec_adcb(uint8_t, uint8_t, uint8_t); -LEAN_EXPORT lean_object* l_Std_BitVec_adc___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_BitVec_adc___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT uint8_t l_Bool_atLeastTwo(uint8_t, uint8_t, uint8_t); +LEAN_EXPORT lean_object* l_BitVec_adc___lambda__1(lean_object*, lean_object*, lean_object*, uint8_t); +LEAN_EXPORT lean_object* l_BitVec_adcb(uint8_t, uint8_t, uint8_t); uint8_t lean_nat_dec_le(lean_object*, lean_object*); -lean_object* l_Std_BitVec_iunfoldr(lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_BitVec_adc(lean_object*, lean_object*, lean_object*, uint8_t); lean_object* lean_nat_add(lean_object*, lean_object*); -LEAN_EXPORT uint8_t l_Std_BitVec_carry(lean_object* x_1, lean_object* x_2, lean_object* x_3, uint8_t x_4) { -_start: -{ -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; -x_5 = lean_unsigned_to_nat(2u); -x_6 = lean_nat_pow(x_5, x_1); -x_7 = lean_nat_mod(x_2, x_6); -x_8 = lean_nat_mod(x_3, x_6); -x_9 = lean_nat_add(x_7, x_8); -lean_dec(x_8); -lean_dec(x_7); -x_10 = l_Bool_toNat(x_4); -x_11 = lean_nat_add(x_9, x_10); -lean_dec(x_10); -lean_dec(x_9); -x_12 = lean_nat_dec_le(x_6, x_11); -lean_dec(x_11); -lean_dec(x_6); -return x_12; -} -} -LEAN_EXPORT lean_object* l_Std_BitVec_carry___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { -_start: -{ -uint8_t x_5; uint8_t x_6; lean_object* x_7; -x_5 = lean_unbox(x_4); -lean_dec(x_4); -x_6 = l_Std_BitVec_carry(x_1, x_2, x_3, x_5); -lean_dec(x_3); -lean_dec(x_2); -lean_dec(x_1); -x_7 = lean_box(x_6); -return x_7; -} -} -LEAN_EXPORT uint8_t l_Std_BitVec_atLeastTwo(uint8_t x_1, uint8_t x_2, uint8_t x_3) { +LEAN_EXPORT uint8_t l_Bool_atLeastTwo(uint8_t x_1, uint8_t x_2, uint8_t x_3) { _start: { if (x_1 == 0) @@ -96,7 +63,7 @@ return x_5; } } } -LEAN_EXPORT lean_object* l_Std_BitVec_atLeastTwo___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_Bool_atLeastTwo___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { uint8_t x_4; uint8_t x_5; uint8_t x_6; uint8_t x_7; lean_object* x_8; @@ -106,12 +73,64 @@ x_5 = lean_unbox(x_2); lean_dec(x_2); x_6 = lean_unbox(x_3); lean_dec(x_3); -x_7 = l_Std_BitVec_atLeastTwo(x_4, x_5, x_6); +x_7 = l_Bool_atLeastTwo(x_4, x_5, x_6); x_8 = lean_box(x_7); return x_8; } } -LEAN_EXPORT lean_object* l_Std_BitVec_adcb(uint8_t x_1, uint8_t x_2, uint8_t x_3) { +LEAN_EXPORT uint8_t l_BitVec_carry___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, uint8_t x_4) { +_start: +{ +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; +x_5 = lean_unsigned_to_nat(2u); +x_6 = lean_nat_pow(x_5, x_1); +x_7 = lean_nat_mod(x_2, x_6); +x_8 = lean_nat_mod(x_3, x_6); +x_9 = lean_nat_add(x_7, x_8); +lean_dec(x_8); +lean_dec(x_7); +x_10 = l_Bool_toNat(x_4); +x_11 = lean_nat_add(x_9, x_10); +lean_dec(x_10); +lean_dec(x_9); +x_12 = lean_nat_dec_le(x_6, x_11); +lean_dec(x_11); +lean_dec(x_6); +return x_12; +} +} +LEAN_EXPORT lean_object* l_BitVec_carry(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = lean_alloc_closure((void*)(l_BitVec_carry___rarg___boxed), 4, 0); +return x_2; +} +} +LEAN_EXPORT lean_object* l_BitVec_carry___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +_start: +{ +uint8_t x_5; uint8_t x_6; lean_object* x_7; +x_5 = lean_unbox(x_4); +lean_dec(x_4); +x_6 = l_BitVec_carry___rarg(x_1, x_2, x_3, x_5); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +x_7 = lean_box(x_6); +return x_7; +} +} +LEAN_EXPORT lean_object* l_BitVec_carry___boxed(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = l_BitVec_carry(x_1); +lean_dec(x_1); +return x_2; +} +} +LEAN_EXPORT lean_object* l_BitVec_adcb(uint8_t x_1, uint8_t x_2, uint8_t x_3) { _start: { uint8_t x_4; uint8_t x_22; @@ -265,7 +284,7 @@ return x_38; } } } -LEAN_EXPORT lean_object* l_Std_BitVec_adcb___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_BitVec_adcb___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { uint8_t x_4; uint8_t x_5; uint8_t x_6; lean_object* x_7; @@ -275,52 +294,52 @@ x_5 = lean_unbox(x_2); lean_dec(x_2); x_6 = lean_unbox(x_3); lean_dec(x_3); -x_7 = l_Std_BitVec_adcb(x_4, x_5, x_6); +x_7 = l_BitVec_adcb(x_4, x_5, x_6); return x_7; } } -LEAN_EXPORT lean_object* l_Std_BitVec_adc___lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, uint8_t x_4) { +LEAN_EXPORT lean_object* l_BitVec_adc___lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, uint8_t x_4) { _start: { uint8_t x_5; uint8_t x_6; lean_object* x_7; x_5 = l_Nat_testBit(x_1, x_3); x_6 = l_Nat_testBit(x_2, x_3); -x_7 = l_Std_BitVec_adcb(x_5, x_6, x_4); +x_7 = l_BitVec_adcb(x_5, x_6, x_4); return x_7; } } -LEAN_EXPORT lean_object* l_Std_BitVec_adc(lean_object* x_1, lean_object* x_2, lean_object* x_3, uint8_t x_4) { +LEAN_EXPORT lean_object* l_BitVec_adc(lean_object* x_1, lean_object* x_2, lean_object* x_3, uint8_t x_4) { _start: { lean_object* x_5; lean_object* x_6; lean_object* x_7; -x_5 = lean_alloc_closure((void*)(l_Std_BitVec_adc___lambda__1___boxed), 4, 2); +x_5 = lean_alloc_closure((void*)(l_BitVec_adc___lambda__1___boxed), 4, 2); lean_closure_set(x_5, 0, x_2); lean_closure_set(x_5, 1, x_3); x_6 = lean_box(x_4); -x_7 = l_Std_BitVec_iunfoldr(x_1, lean_box(0), x_5, x_6); +x_7 = l_BitVec_iunfoldr(x_1, lean_box(0), x_5, x_6); return x_7; } } -LEAN_EXPORT lean_object* l_Std_BitVec_adc___lambda__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +LEAN_EXPORT lean_object* l_BitVec_adc___lambda__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { uint8_t x_5; lean_object* x_6; x_5 = lean_unbox(x_4); lean_dec(x_4); -x_6 = l_Std_BitVec_adc___lambda__1(x_1, x_2, x_3, x_5); +x_6 = l_BitVec_adc___lambda__1(x_1, x_2, x_3, x_5); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); return x_6; } } -LEAN_EXPORT lean_object* l_Std_BitVec_adc___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +LEAN_EXPORT lean_object* l_BitVec_adc___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { uint8_t x_5; lean_object* x_6; x_5 = lean_unbox(x_4); lean_dec(x_4); -x_6 = l_Std_BitVec_adc(x_1, x_2, x_3, x_5); +x_6 = l_BitVec_adc(x_1, x_2, x_3, x_5); lean_dec(x_1); return x_6; } diff --git a/stage0/stdlib/Init/Data/BitVec/Folds.c b/stage0/stdlib/Init/Data/BitVec/Folds.c index 544f72d1d4..33aaa477eb 100644 --- a/stage0/stdlib/Init/Data/BitVec/Folds.c +++ b/stage0/stdlib/Init/Data/BitVec/Folds.c @@ -13,14 +13,14 @@ #ifdef __cplusplus extern "C" { #endif +LEAN_EXPORT lean_object* l_BitVec_iunfoldr___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Fin_hIterateFrom___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Std_BitVec_ofNat(lean_object*, lean_object*); -static lean_object* l_Std_BitVec_iunfoldr___closed__1; -LEAN_EXPORT lean_object* l_Std_BitVec_iunfoldr___lambda__1(lean_object*, lean_object*, lean_object*); -lean_object* l_Std_BitVec_cons(lean_object*, uint8_t, lean_object*); -LEAN_EXPORT lean_object* l_Std_BitVec_iunfoldr(lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Std_BitVec_iunfoldr___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Std_BitVec_iunfoldr___lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_BitVec_ofNat(lean_object*, lean_object*); +static lean_object* l_BitVec_iunfoldr___closed__1; +LEAN_EXPORT lean_object* l_BitVec_iunfoldr(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_BitVec_cons(lean_object*, uint8_t, lean_object*); +LEAN_EXPORT lean_object* l_BitVec_iunfoldr___lambda__1(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_BitVec_iunfoldr___lambda__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; @@ -38,7 +38,7 @@ lean_inc(x_8); lean_dec(x_3); x_9 = lean_unbox(x_7); lean_dec(x_7); -x_10 = l_Std_BitVec_cons(x_2, x_9, x_8); +x_10 = l_BitVec_cons(x_2, x_9, x_8); lean_dec(x_8); lean_dec(x_2); lean_ctor_set(x_5, 1, x_10); @@ -57,7 +57,7 @@ lean_inc(x_13); lean_dec(x_3); x_14 = lean_unbox(x_12); lean_dec(x_12); -x_15 = l_Std_BitVec_cons(x_2, x_14, x_13); +x_15 = l_BitVec_cons(x_2, x_14, x_13); lean_dec(x_13); lean_dec(x_2); x_16 = lean_alloc_ctor(0, 2, 0); @@ -67,35 +67,35 @@ return x_16; } } } -static lean_object* _init_l_Std_BitVec_iunfoldr___closed__1() { +static lean_object* _init_l_BitVec_iunfoldr___closed__1() { _start: { lean_object* x_1; lean_object* x_2; x_1 = lean_unsigned_to_nat(0u); -x_2 = l_Std_BitVec_ofNat(x_1, x_1); +x_2 = l_BitVec_ofNat(x_1, x_1); return x_2; } } -LEAN_EXPORT lean_object* l_Std_BitVec_iunfoldr(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +LEAN_EXPORT lean_object* l_BitVec_iunfoldr(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; lean_object* x_7; lean_object* x_8; lean_object* x_9; -x_5 = l_Std_BitVec_iunfoldr___closed__1; +x_5 = l_BitVec_iunfoldr___closed__1; x_6 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_6, 0, x_4); lean_ctor_set(x_6, 1, x_5); -x_7 = lean_alloc_closure((void*)(l_Std_BitVec_iunfoldr___lambda__1), 3, 1); +x_7 = lean_alloc_closure((void*)(l_BitVec_iunfoldr___lambda__1), 3, 1); lean_closure_set(x_7, 0, x_3); x_8 = lean_unsigned_to_nat(0u); x_9 = l_Fin_hIterateFrom___rarg(x_1, x_7, x_8, lean_box(0), x_6); return x_9; } } -LEAN_EXPORT lean_object* l_Std_BitVec_iunfoldr___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +LEAN_EXPORT lean_object* l_BitVec_iunfoldr___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_BitVec_iunfoldr(x_1, x_2, x_3, x_4); +x_5 = l_BitVec_iunfoldr(x_1, x_2, x_3, x_4); lean_dec(x_1); return x_5; } @@ -117,8 +117,8 @@ lean_dec_ref(res); res = initialize_Init_Data_Fin_Iterate(builtin, lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -l_Std_BitVec_iunfoldr___closed__1 = _init_l_Std_BitVec_iunfoldr___closed__1(); -lean_mark_persistent(l_Std_BitVec_iunfoldr___closed__1); +l_BitVec_iunfoldr___closed__1 = _init_l_BitVec_iunfoldr___closed__1(); +lean_mark_persistent(l_BitVec_iunfoldr___closed__1); return lean_io_result_mk_ok(lean_box(0)); } #ifdef __cplusplus diff --git a/stage0/stdlib/Init/Data/String/Extra.c b/stage0/stdlib/Init/Data/String/Extra.c index bd545923f0..6b7ea353f2 100644 --- a/stage0/stdlib/Init/Data/String/Extra.c +++ b/stage0/stdlib/Init/Data/String/Extra.c @@ -1,6 +1,6 @@ // Lean compiler output // Module: Init.Data.String.Extra -// Imports: Init.Control.Except Init.Data.ByteArray Init.SimpLemmas Init.Util Init.WFTactics +// Imports: Init.Data.ByteArray #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -116,7 +116,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_String_toNat_x21___closed__1; x_2 = l_String_toNat_x21___closed__2; -x_3 = lean_unsigned_to_nat(22u); +x_3 = lean_unsigned_to_nat(18u); x_4 = lean_unsigned_to_nat(4u); x_5 = l_String_toNat_x21___closed__3; x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); @@ -670,31 +670,15 @@ x_2 = lean_alloc_closure((void*)(l_String_Iterator_foldUntil___rarg), 3, 0); return x_2; } } -lean_object* initialize_Init_Control_Except(uint8_t builtin, lean_object*); lean_object* initialize_Init_Data_ByteArray(uint8_t builtin, lean_object*); -lean_object* initialize_Init_SimpLemmas(uint8_t builtin, lean_object*); -lean_object* initialize_Init_Util(uint8_t builtin, lean_object*); -lean_object* initialize_Init_WFTactics(uint8_t builtin, lean_object*); static bool _G_initialized = false; LEAN_EXPORT lean_object* initialize_Init_Data_String_Extra(uint8_t builtin, lean_object* w) { lean_object * res; if (_G_initialized) return lean_io_result_mk_ok(lean_box(0)); _G_initialized = true; -res = initialize_Init_Control_Except(builtin, lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); res = initialize_Init_Data_ByteArray(builtin, lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_SimpLemmas(builtin, lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -res = initialize_Init_Util(builtin, lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -res = initialize_Init_WFTactics(builtin, lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); l_String_toNat_x21___closed__1 = _init_l_String_toNat_x21___closed__1(); lean_mark_persistent(l_String_toNat_x21___closed__1); l_String_toNat_x21___closed__2 = _init_l_String_toNat_x21___closed__2(); diff --git a/stage0/stdlib/Init/Notation.c b/stage0/stdlib/Init/Notation.c index 7d98286b03..e8201c591d 100644 --- a/stage0/stdlib/Init/Notation.c +++ b/stage0/stdlib/Init/Notation.c @@ -52,6 +52,7 @@ static lean_object* l___aux__Init__Notation______macroRules__term___u2218____1__ LEAN_EXPORT lean_object* l___aux__Init__Notation______unexpand__BEq__beq__1___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___aux__Init__Notation______macroRules__term___u2209____1___closed__2; static lean_object* l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__5; +static lean_object* l_Lean_guardMsgsSpec___closed__3; static lean_object* l_stx___x3c_x7c_x3e_____closed__1; static lean_object* l_Lean_Parser_Syntax_addPrio___closed__6; static lean_object* l_term___x26_x26_____closed__5; @@ -62,6 +63,7 @@ static lean_object* l___aux__Init__Notation______macroRules__term___x3d____1___c LEAN_EXPORT lean_object* l___aux__Init__Notation______unexpand__Or__2___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___aux__Init__Notation______macroRules__term___x3c_x3c_x3c____1___closed__2; static lean_object* l_termDepIfThenElse___closed__20; +static lean_object* l_Lean_guardMsgsCmd___closed__20; lean_object* lean_mk_empty_array_with_capacity(lean_object*); LEAN_EXPORT lean_object* l_term___x3a_x3a__; LEAN_EXPORT lean_object* l_prioMid; @@ -82,6 +84,7 @@ static lean_object* l___aux__Init__Notation______macroRules__term___x3c_x24_x3e_ static lean_object* l_term___x5e_x5e_x5e_____closed__7; static lean_object* l___aux__Init__Notation______macroRules__term___x3c_x2a____1___closed__6; static lean_object* l___aux__Init__Notation______macroRules__term___x3e_x3e_x3d____1___closed__3; +static lean_object* l_Lean_guardMsgsSpecElt___closed__19; static lean_object* l___aux__Init__Notation______macroRules__term___x3e_x3e_x3d____1___closed__7; static lean_object* l_boolIfThenElse___closed__3; static lean_object* l_term___x2a_____closed__1; @@ -100,12 +103,14 @@ static lean_object* l___aux__Init__Notation______macroRules__term___x3e_x3e____1 static lean_object* l_Lean_binderIdent___closed__4; static lean_object* l_Lean_modCast___closed__1; static lean_object* l_term___x24_______closed__1; +static lean_object* l_Lean_guardMsgsCmd___closed__11; static lean_object* l_termIfThenElse___closed__4; static lean_object* l_Lean_modCast___closed__5; static lean_object* l_Lean_runMeta___closed__3; static lean_object* l___aux__Init__Notation______macroRules__term_x7b___x3a___x2f_x2f___x7d__1___closed__7; static lean_object* l___aux__Init__Notation______macroRules__term___x3d_x3d____1___closed__6; static lean_object* l_term_x7e_x7e_x7e_____closed__7; +static lean_object* l_Lean_command__code__action___closed__4; LEAN_EXPORT lean_object* l___aux__Init__Notation______unexpand__LE__le__2___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_term___u2208_____closed__1; LEAN_EXPORT lean_object* l___aux__Init__Notation______macroRules__stx_x21____1(lean_object*, lean_object*, lean_object*); @@ -115,6 +120,7 @@ static lean_object* l_term___x5e_x5e_x5e_____closed__3; static lean_object* l_term___u2264_____closed__1; static lean_object* l_termIfLet___closed__8; static lean_object* l_term___x3c_x3d_____closed__4; +static lean_object* l_Lean_guardMsgsCmd___closed__13; LEAN_EXPORT lean_object* l_Lean_Parser_Category_command; static lean_object* l_term___x26_x26_x26_____closed__2; static lean_object* l_termDepIfThenElse___closed__21; @@ -133,6 +139,7 @@ LEAN_EXPORT lean_object* l___aux__Init__Notation______unexpand__List__cons__1___ static lean_object* l_prioDefault___closed__4; static lean_object* l_prioHigh___closed__2; static lean_object* l___aux__Init__Notation______macroRules__term___x2a____1___closed__2; +static lean_object* l_Lean_guardMsgsSpecElt___closed__18; static lean_object* l_term___x2f_____closed__4; LEAN_EXPORT lean_object* l___aux__Init__Notation______unexpand__HAppend__hAppend__1(lean_object*, lean_object*, lean_object*); static lean_object* l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__12; @@ -149,8 +156,11 @@ LEAN_EXPORT lean_object* l___aux__Init__Notation______unexpand__Membership__mem_ LEAN_EXPORT lean_object* l_term___x3c_x24_x3e__; static lean_object* l___aux__Init__Notation______macroRules__term_x2d____1___closed__3; static lean_object* l___aux__Init__Notation______macroRules__term___x3c_x24_x3e____1___closed__7; +static lean_object* l_Lean_guardMsgsSpec___closed__9; static lean_object* l___aux__Init__Notation______macroRules__term___x3c_x3d____2___closed__3; static lean_object* l_term___x3e_____closed__5; +static lean_object* l_Lean_guardMsgsSpecElt___closed__3; +LEAN_EXPORT lean_object* l_Lean_guardMsgsSpec; static lean_object* l___aux__Init__Notation______macroRules__term_x2d____1___closed__7; LEAN_EXPORT lean_object* l___aux__Init__Notation______unexpand__or__1___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_runCmd___closed__5; @@ -171,6 +181,8 @@ static lean_object* l_term___x3e_x3e_____closed__5; static lean_object* l_termDepIfThenElse___closed__16; static lean_object* l___aux__Init__Notation______macroRules__term___x3d____1___closed__4; static lean_object* l_term___u2265_____closed__4; +static lean_object* l_Lean_guardMsgsSpec___closed__5; +static lean_object* l_Lean_guardMsgsCmd___closed__12; lean_object* lean_array_push(lean_object*, lean_object*); static lean_object* l_term___x5e_x5e_x5e_____closed__4; static lean_object* l___aux__Init__Notation______macroRules__term___x3d_x3d____1___closed__2; @@ -178,6 +190,7 @@ static lean_object* l_Lean_rawStx_quot___closed__9; static lean_object* l_Lean_byElab___closed__2; LEAN_EXPORT lean_object* l___aux__Init__Notation______macroRules__term_x21____1(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_Category_rawStx; +static lean_object* l_Lean_guardMsgsSpecElt___closed__5; LEAN_EXPORT lean_object* l___aux__Init__Notation______macroRules__term___u2264____2(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___aux__Init__Notation______unexpand__Seq__seq__1___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___aux__Init__Notation______macroRules__term___x3c_x2a_x3e____1___closed__1; @@ -188,6 +201,7 @@ LEAN_EXPORT lean_object* l_stx___x2b; static lean_object* l_Lean_Attr_coe___closed__5; static lean_object* l_term___u2218_____closed__5; static lean_object* l_Lean_rawStx_quot___closed__3; +static lean_object* l_Lean_guardMsgsSpecElt___closed__13; static lean_object* l___aux__Init__Notation______macroRules__stx___x3c_x7c_x3e____1___closed__1; static lean_object* l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__19; LEAN_EXPORT lean_object* l___aux__Init__Notation______macroRules__term___xd7____1(lean_object*, lean_object*, lean_object*); @@ -211,6 +225,7 @@ static lean_object* l_term___x2b_____closed__2; static lean_object* l_Lean_Parser_Tactic_caseArg___closed__4; LEAN_EXPORT lean_object* l___aux__Init__Notation______unexpand__Membership__mem__1___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_termIfLet___closed__18; +static lean_object* l_Lean_guardMsgsSpecElt___closed__25; lean_object* l_Lean_replaceRef(lean_object*, lean_object*); static lean_object* l___aux__Init__Notation______macroRules__stx___x3c_x7c_x3e____1___closed__6; static lean_object* l___aux__Init__Notation______macroRules__term___x7c_x7c____1___closed__7; @@ -244,12 +259,14 @@ static lean_object* l___aux__Init__Notation______macroRules__term___x3c_x7c_x3e_ static lean_object* l___aux__Init__Notation______macroRules__prioDefault__1___closed__1; static lean_object* l_precMin___closed__2; LEAN_EXPORT lean_object* l_Lean_rawStx_quot; +static lean_object* l_Lean_guardMsgsCmd___closed__22; static lean_object* l_Lean_Parser_Syntax_addPrec___closed__1; static lean_object* l_Lean_rawStx_quot___closed__5; static lean_object* l_stx___x2b___closed__1; static lean_object* l_Lean_Parser_Syntax_addPrec___closed__5; static lean_object* l_term___x3c_x2a_____closed__1; LEAN_EXPORT lean_object* l___aux__Init__Notation______unexpand__LT__lt__1___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_guardMsgsCmd___closed__10; static lean_object* l_termDepIfThenElse___closed__11; static lean_object* l_stx___x2c_x2a_x2c_x3f___closed__4; static lean_object* l_term___x3d_____closed__2; @@ -275,6 +292,7 @@ static lean_object* l_stx___x2a___closed__2; static lean_object* l_term___x3c_x2a_____closed__6; LEAN_EXPORT lean_object* l_term___x3e_x3e_x3e__; static lean_object* l_term_x7e_x7e_x7e_____closed__1; +static lean_object* l_Lean_guardMsgsCmd___closed__5; static lean_object* l___aux__Init__Notation______macroRules__term___x3c_x2a_x3e____1___closed__23; LEAN_EXPORT lean_object* l___aux__Init__Notation______unexpand__HDiv__hDiv__1___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_term___x5e_x5e_x5e_____closed__6; @@ -315,6 +333,7 @@ static lean_object* l___aux__Init__Notation______macroRules__prioLow__1___closed static lean_object* l___aux__Init__Notation______macroRules__term___x3c____1___closed__6; static lean_object* l_prio_x28___x29___closed__4; static lean_object* l___aux__Init__Notation______macroRules__stx___x2c_x2b__1___closed__3; +static lean_object* l_Lean_guardMsgsSpec___closed__2; static lean_object* l_termDepIfThenElse___closed__34; static lean_object* l___aux__Init__Notation______macroRules__term___x2a_x3e____1___closed__2; static lean_object* l_Lean_Parser_Tactic_caseArg___closed__3; @@ -325,7 +344,9 @@ static lean_object* l_term___x3c_x2a_x3e_____closed__4; static lean_object* l___aux__Init__Notation______macroRules__term___x2a_x3e____1___closed__1; static lean_object* l___aux__Init__Notation______macroRules__term___x2a_x3e____1___closed__5; static lean_object* l_term___x5e_x5e_x5e_____closed__2; +static lean_object* l_Lean_command__code__action___closed__6; static lean_object* l_Lean_runMeta___closed__1; +static lean_object* l_Lean_guardMsgsCmd___closed__14; LEAN_EXPORT lean_object* l_Lean_Parser_Category_term; LEAN_EXPORT lean_object* l___aux__Init__Notation______macroRules__stx___x2c_x2b__1(lean_object*, lean_object*, lean_object*); static lean_object* l_term___x3c_x2a_____closed__4; @@ -333,7 +354,9 @@ LEAN_EXPORT lean_object* l___aux__Init__Notation______unexpand__HShiftLeft__hShi LEAN_EXPORT lean_object* l_term___x5e_x5e_x5e__; static lean_object* l_term___x3d_____closed__3; static lean_object* l_prec_x28___x29___closed__10; +LEAN_EXPORT lean_object* l_Lean_guardMsgsSpecElt; static lean_object* l_termDepIfThenElse___closed__23; +static lean_object* l_Lean_guardMsgsCmd___closed__23; static lean_object* l_term___x7c_x7c_____closed__1; static lean_object* l_stx___x2b___closed__2; static lean_object* l___aux__Init__Notation______macroRules__term___x2d____1___closed__1; @@ -392,6 +415,7 @@ static lean_object* l___aux__Init__Notation______macroRules__termWithout__expect LEAN_EXPORT lean_object* l___aux__Init__Notation______unexpand__SeqRight__seqRight__1___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___aux__Init__Notation______unexpand__GE__ge__1___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___aux__Init__Notation______macroRules__precMax__1___closed__3; +static lean_object* l_Lean_guardMsgsSpecElt___closed__11; static lean_object* l_stx_x21_____closed__2; static lean_object* l___aux__Init__Notation______macroRules__term___x25____1___closed__4; static lean_object* l_Lean_Parser_Syntax_subPrec___closed__5; @@ -409,6 +433,7 @@ static lean_object* l___aux__Init__Notation______macroRules__termIfLet__1___clos static lean_object* l_Lean_byElab___closed__5; static lean_object* l_term___x3c_x3c_x3c_____closed__1; static lean_object* l_termDepIfThenElse___closed__18; +static lean_object* l_Lean_guardMsgsCmd___closed__18; static lean_object* l_termMax__prec___closed__1; static lean_object* l___aux__Init__Notation______macroRules__term___x2b_x2b____1___closed__5; LEAN_EXPORT lean_object* l_term___x3c_x2a__; @@ -427,6 +452,7 @@ static lean_object* l_Lean_Parser_Syntax_addPrec___closed__8; static lean_object* l___aux__Init__Notation______macroRules__term___x3c_x2a_x3e____1___closed__4; static lean_object* l_term___u2223_____closed__4; static lean_object* l___aux__Init__Notation______macroRules__term___x3c____1___closed__3; +static lean_object* l_Lean_guardMsgsSpec___closed__4; static lean_object* l_stx___x3f___closed__4; LEAN_EXPORT lean_object* l_Lean_Parser_Category_level; LEAN_EXPORT lean_object* l___aux__Init__Notation______macroRules__term___x3d_x3d____1(lean_object*, lean_object*, lean_object*); @@ -456,9 +482,11 @@ LEAN_EXPORT lean_object* l_Lean_Parser_Category_stx; static lean_object* l___aux__Init__Notation______macroRules__boolIfThenElse__1___closed__1; static lean_object* l_term___x5e_____closed__7; LEAN_EXPORT lean_object* l___aux__Init__Notation______macroRules__term___x3c_x3d____1(lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_command__code__action___closed__1; static lean_object* l_Lean_runCmd___closed__4; static lean_object* l_prec_x28___x29___closed__8; static lean_object* l___aux__Init__Notation______macroRules__term___xd7____1___closed__7; +static lean_object* l_Lean_guardMsgsSpecElt___closed__10; static lean_object* l___aux__Init__Notation______macroRules__term___x3c_x2a_x3e____1___closed__15; static lean_object* l___aux__Init__Notation______macroRules__term___x5e_x5e_x5e____1___closed__4; LEAN_EXPORT lean_object* l___aux__Init__Notation______unexpand__Functor__map__1___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -484,6 +512,7 @@ static lean_object* l___aux__Init__Notation______macroRules__termIfLet__1___clos LEAN_EXPORT lean_object* l___aux__Init__Notation______macroRules__term___x3d____2(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_term_x7b___x3a___x2f_x2f___x7d; static lean_object* l___aux__Init__Notation______macroRules__precArg__1___closed__1; +static lean_object* l_Lean_guardMsgsSpecElt___closed__7; static lean_object* l___aux__Init__Notation______macroRules__term___x2a____1___closed__6; static lean_object* l___aux__Init__Notation______macroRules__term___x7c_x7c_x7c____1___closed__1; static lean_object* l___aux__Init__Notation______macroRules__term___x3e_x3e____1___closed__6; @@ -515,6 +544,7 @@ static lean_object* l_term___u2223_____closed__7; static lean_object* l_term___x3c_x2a_____closed__3; static lean_object* l_stx___x2c_x2b_x2c_x3f___closed__5; static lean_object* l_Lean_Parser_Syntax_subPrio___closed__1; +static lean_object* l_Lean_guardMsgsCmd___closed__16; LEAN_EXPORT lean_object* l_Lean_instCoeSyntaxTSyntaxConsSyntaxNodeKindMkStr1Nil(lean_object*); static lean_object* l_term___x7c_x7c_____closed__4; static lean_object* l_termIfLet___closed__7; @@ -527,9 +557,11 @@ static lean_object* l_term___x26_x26_x26_____closed__7; lean_object* l_Lean_Syntax_node6(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___aux__Init__Notation______unexpand__Prod__1(lean_object*, lean_object*, lean_object*); static lean_object* l_termIfThenElse___closed__9; +static lean_object* l_Lean_guardMsgsSpecElt___closed__9; static lean_object* l___aux__Init__Notation______macroRules__term___x3e_x3d____1___closed__3; static lean_object* l___aux__Init__Notation______macroRules__term_x2d____2___closed__1; static lean_object* l_Lean_runElab___closed__2; +static lean_object* l_Lean_guardMsgsSpecElt___closed__20; static lean_object* l___aux__Init__Notation______macroRules__termIfLet__1___closed__3; static lean_object* l___aux__Init__Notation______macroRules__term___x26_x26____1___closed__7; static lean_object* l_term_x7e_x7e_x7e_____closed__3; @@ -553,11 +585,13 @@ static lean_object* l_precArg___closed__4; static lean_object* l___aux__Init__Notation______macroRules__term___x2f_x5c____1___closed__7; static lean_object* l_stx___x2c_x2a___closed__3; static lean_object* l___aux__Init__Notation______macroRules__term___x3d_x3d____2___closed__3; +static lean_object* l_Lean_guardMsgsSpecElt___closed__14; static lean_object* l_termIfThenElse___closed__6; LEAN_EXPORT lean_object* l___aux__Init__Notation______unexpand__HSub__hSub__1___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_term___x7c_x3e__; static lean_object* l___aux__Init__Notation______macroRules__stx___x2a__1___closed__1; static lean_object* l_term___x3c_x7c_x3e_____closed__1; +LEAN_EXPORT lean_object* l_Lean_guardMsgsCmd; static lean_object* l_boolIfThenElse___closed__13; LEAN_EXPORT lean_object* l___aux__Init__Notation______macroRules__term___x2b____2(lean_object*, lean_object*, lean_object*); static lean_object* l_term___x3e_____closed__6; @@ -579,6 +613,7 @@ static lean_object* l___aux__Init__Notation______macroRules__term___x2d____1___c static lean_object* l___aux__Init__Notation______macroRules__term___u2208____1___closed__2; LEAN_EXPORT lean_object* l_Lean_Parser_Syntax_subPrio; static lean_object* l_term___x3c_____closed__2; +static lean_object* l_Lean_guardMsgsCmd___closed__19; static lean_object* l___aux__Init__Notation______macroRules__term___x26_x26_x26____1___closed__2; static lean_object* l_stx_x21_____closed__6; LEAN_EXPORT lean_object* l___aux__Init__Notation______macroRules__stx___x2c_x2a_x2c_x3f__1(lean_object*, lean_object*, lean_object*); @@ -596,6 +631,7 @@ static lean_object* l_term___x3a_x3a_____closed__3; static lean_object* l___aux__Init__Notation______macroRules__term___x2a____1___closed__3; static lean_object* l_term_x2d_____closed__5; static lean_object* l_term___x3c_x24_x3e_____closed__2; +static lean_object* l_Lean_guardMsgsSpecElt___closed__12; LEAN_EXPORT lean_object* l_prio_x28___x29; static lean_object* l___aux__Init__Notation______macroRules__boolIfThenElse__1___closed__2; static lean_object* l___aux__Init__Notation______macroRules__term___x3a_x3a____1___closed__2; @@ -623,10 +659,13 @@ static lean_object* l_term___u2209_____closed__3; LEAN_EXPORT lean_object* l_term___x2d__; static lean_object* l_term___x2f_____closed__1; static lean_object* l___aux__Init__Notation______macroRules__term___x5e_x5e_x5e____1___closed__7; +static lean_object* l_Lean_guardMsgsSpecElt___closed__8; static lean_object* l_term___x7c_x7c_x7c_____closed__2; static lean_object* l___aux__Init__Notation______macroRules__term___x3c_x2a_x3e____1___closed__9; +static lean_object* l_Lean_guardMsgsSpecElt___closed__24; LEAN_EXPORT lean_object* l___aux__Init__Notation______macroRules__term___x3e_x3e____1(lean_object*, lean_object*, lean_object*); static lean_object* l_termDepIfThenElse___closed__13; +static lean_object* l_Lean_guardMsgsSpec___closed__1; LEAN_EXPORT lean_object* l___aux__Init__Notation______macroRules__termMax__prec__1(lean_object*, lean_object*, lean_object*); static lean_object* l_stx___x3c_x7c_x3e_____closed__6; static lean_object* l_boolIfThenElse___closed__7; @@ -687,6 +726,7 @@ static lean_object* l_precMin1___closed__1; static lean_object* l___aux__Init__Notation______macroRules__term___x3e_x3d____1___closed__2; static lean_object* l_term___x25_____closed__2; static lean_object* l_termMax__prec___closed__4; +static lean_object* l_Lean_guardMsgsCmd___closed__21; static lean_object* l___aux__Init__Notation______macroRules__term___x3c_x2a____1___closed__4; static lean_object* l_termDepIfThenElse___closed__9; static lean_object* l_term_x2d_____closed__4; @@ -717,12 +757,15 @@ LEAN_EXPORT lean_object* l_Lean_includeStr; LEAN_EXPORT lean_object* l___aux__Init__Notation______macroRules__term___x3c_x2a____1(lean_object*, lean_object*, lean_object*); static lean_object* l_prioLow___closed__4; static lean_object* l___aux__Init__Notation______macroRules__term___x3c_x7c_x3e____1___closed__1; +LEAN_EXPORT lean_object* l_Lean_command__code__action; +static lean_object* l_Lean_guardMsgsCmd___closed__3; LEAN_EXPORT lean_object* l_term___x2a_x3e__; static lean_object* l_termDepIfThenElse___closed__24; static lean_object* l_term___x3c_____closed__3; LEAN_EXPORT lean_object* l___aux__Init__Notation______unexpand__or__1(lean_object*, lean_object*, lean_object*); static lean_object* l_term___x5e_____closed__5; LEAN_EXPORT lean_object* l___aux__Init__Notation______unexpand__Or__2___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_guardMsgsSpecElt___closed__1; LEAN_EXPORT lean_object* l_term_x2d__; static lean_object* l_termIfLet___closed__10; static lean_object* l_boolIfThenElse___closed__12; @@ -763,6 +806,7 @@ LEAN_EXPORT lean_object* l_precMax; LEAN_EXPORT lean_object* l___aux__Init__Notation______unexpand__HOr__hOr__1(lean_object*, lean_object*, lean_object*); static lean_object* l_stx___x3c_x7c_x3e_____closed__3; static lean_object* l_term_x7b___x3a___x2f_x2f___x7d___closed__16; +static lean_object* l_Lean_guardMsgsSpecElt___closed__17; LEAN_EXPORT lean_object* l___aux__Init__Notation______unexpand__LE__le__1___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___aux__Init__Notation______macroRules__termIfLet__1___closed__7; static lean_object* l_term___x3e_x3e_x3e_____closed__2; @@ -788,9 +832,11 @@ static lean_object* l_term_x7b___x3a___x2f_x2f___x7d___closed__3; static lean_object* l___aux__Init__Notation______macroRules__term___x2b____1___closed__6; static lean_object* l_term___x3d_____closed__6; static lean_object* l_term___x2a_x3e_____closed__5; +static lean_object* l_Lean_guardMsgsSpecElt___closed__21; static lean_object* l___aux__Init__Notation______macroRules__boolIfThenElse__1___closed__4; static lean_object* l_term___x2b_x2b_____closed__3; static lean_object* l_prioDefault___closed__5; +static lean_object* l_Lean_guardMsgsSpec___closed__6; static lean_object* l_term_x7b___x3a___x2f_x2f___x7d___closed__11; LEAN_EXPORT lean_object* l_Lean_runCmd; static lean_object* l___aux__Init__Notation______macroRules__stx___x2b__1___closed__1; @@ -864,6 +910,7 @@ static lean_object* l___aux__Init__Notation______macroRules__termIfLet__1___clos static lean_object* l_term___x24_______closed__8; static lean_object* l___aux__Init__Notation______macroRules__term___x3c_x3d____1___closed__5; static lean_object* l_termMax__prec___closed__3; +static lean_object* l_Lean_guardMsgsCmd___closed__17; static lean_object* l___aux__Init__Notation______macroRules__term_x7e_x7e_x7e____1___closed__5; LEAN_EXPORT lean_object* l___aux__Init__Notation______unexpand__List__cons__1(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___aux__Init__Notation______macroRules__term___x3e____1(lean_object*, lean_object*, lean_object*); @@ -873,6 +920,7 @@ LEAN_EXPORT lean_object* l___aux__Init__Notation______macroRules__term___u2228__ LEAN_EXPORT lean_object* l___aux__Init__Notation______unexpand__Complement__complement__1___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___aux__Init__Notation______macroRules__termIfThenElse__1___closed__1; static lean_object* l_term___x7c_x3e_____closed__6; +static lean_object* l_Lean_guardMsgsSpec___closed__7; static lean_object* l_term___x3c_x7c_____closed__7; static lean_object* l___aux__Init__Notation______macroRules__termWithout__expected__type____1___closed__3; static lean_object* l_term___u2264_____closed__3; @@ -908,11 +956,14 @@ static lean_object* l___aux__Init__Notation______macroRules__term___u2208____1__ static lean_object* l_term___x26_x26_____closed__7; static lean_object* l_Lean_Parser_Syntax_subPrec___closed__4; static lean_object* l_termIfLet___closed__16; +static lean_object* l_Lean_guardMsgsSpecElt___closed__27; static lean_object* l_term___x7c_x7c_x7c_____closed__4; static lean_object* l_term___x3c_x3c_x3c_____closed__3; static lean_object* l_term___x24_______closed__13; static lean_object* l_term___x2a_x3e_____closed__1; +static lean_object* l_Lean_guardMsgsCmd___closed__4; static lean_object* l_prec_x28___x29___closed__2; +static lean_object* l_Lean_guardMsgsSpecElt___closed__4; static lean_object* l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__2; static lean_object* l_term___x3e_x3e_x3d_____closed__4; static lean_object* l___aux__Init__Notation______macroRules__term___x5e_x5e_x5e____1___closed__2; @@ -926,6 +977,7 @@ LEAN_EXPORT lean_object* l_Lean_instCoeOutTSyntaxSyntax(lean_object*); static lean_object* l___aux__Init__Notation______macroRules__term_xac____1___closed__2; static lean_object* l_termIfLet___closed__2; static lean_object* l___aux__Init__Notation______macroRules__term___x2b____1___closed__4; +static lean_object* l_Lean_guardMsgsCmd___closed__9; static lean_object* l_term_x7b___x3a___x2f_x2f___x7d___closed__14; static lean_object* l___aux__Init__Notation______macroRules__term___x2f____1___closed__1; static lean_object* l_Lean_binderIdent___closed__7; @@ -982,6 +1034,7 @@ static lean_object* l_Lean_includeStr___closed__4; static lean_object* l___aux__Init__Notation______macroRules__term___x3d____1___closed__5; static lean_object* l___aux__Init__Notation______macroRules__term___x5e_x5e_x5e____1___closed__5; static lean_object* l___aux__Init__Notation______unexpand__Function__comp__1___closed__1; +static lean_object* l_Lean_guardMsgsSpecElt___closed__15; static lean_object* l_stx_x21_____closed__5; LEAN_EXPORT lean_object* l___aux__Init__Notation______macroRules__term___x2f_x5c____1(lean_object*, lean_object*, lean_object*); static lean_object* l___aux__Init__Notation______macroRules__term_xac____1___closed__4; @@ -1028,6 +1081,7 @@ static lean_object* l___aux__Init__Notation______macroRules__term___x3c_x2a____1 static lean_object* l_termDepIfThenElse___closed__5; LEAN_EXPORT lean_object* l_termMax__prec; static lean_object* l___aux__Init__Notation______macroRules__term___x26_x26____1___closed__6; +static lean_object* l_Lean_guardMsgsCmd___closed__7; static lean_object* l___aux__Init__Notation______macroRules__term___x3e_x3d____1___closed__4; static lean_object* l___aux__Init__Notation______macroRules__term___x3e_x3e____1___closed__3; static lean_object* l___aux__Init__Notation______macroRules__term___x5e_x5e_x5e____1___closed__6; @@ -1041,6 +1095,7 @@ static lean_object* l_Lean_modCast___closed__2; static lean_object* l___aux__Init__Notation______macroRules__stx___x2c_x2a__1___closed__9; static lean_object* l___aux__Init__Notation______macroRules__term___x3c_x24_x3e____1___closed__6; static lean_object* l_Lean_Parser_Syntax_subPrec___closed__2; +static lean_object* l_Lean_guardMsgsCmd___closed__1; static lean_object* l___aux__Init__Notation______macroRules__term___x2b____1___closed__5; LEAN_EXPORT lean_object* l___aux__Init__Notation______unexpand__HXor__hXor__1(lean_object*, lean_object*, lean_object*); static lean_object* l_stx___x3f___closed__2; @@ -1067,6 +1122,7 @@ static lean_object* l_term_x2d_____closed__3; LEAN_EXPORT lean_object* l___aux__Init__Notation______unexpand__HOr__hOr__1___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___aux__Init__Notation______unexpand__Seq__seq__1(lean_object*, lean_object*, lean_object*); static lean_object* l___aux__Init__Notation______macroRules__term___x3c_x3c_x3c____1___closed__5; +static lean_object* l_Lean_guardMsgsCmd___closed__24; static lean_object* l_term___x3c_x3d_____closed__1; static lean_object* l_termIfLet___closed__4; static lean_object* l_term___x3a_x3a_____closed__1; @@ -1094,6 +1150,7 @@ static lean_object* l___aux__Init__Notation______macroRules__term_x21____1___clo static lean_object* l___aux__Init__Notation______macroRules__precLead__1___closed__1; static lean_object* l___aux__Init__Notation______macroRules__term___x2f_x5c____1___closed__6; static lean_object* l_Lean_rawStx_quot___closed__11; +static lean_object* l_Lean_guardMsgsCmd___closed__6; static lean_object* l___aux__Init__Notation______macroRules__term_x21____1___closed__2; static lean_object* l_Lean_rawStx_quot___closed__2; static lean_object* l_term___x3e_x3e_____closed__7; @@ -1115,12 +1172,15 @@ static lean_object* l_Lean_byElab___closed__6; static lean_object* l_term___x3e_x3e_x3e_____closed__1; static lean_object* l_term___x5e_x5e_x5e_____closed__1; static lean_object* l_stx___x2a___closed__4; +static lean_object* l_Lean_command__code__action___closed__2; static lean_object* l___aux__Init__Notation______macroRules__term___x2f____1___closed__6; static lean_object* l_term___u2227_____closed__4; +static lean_object* l_Lean_guardMsgsSpecElt___closed__26; static lean_object* l___aux__Init__Notation______macroRules__stx___x2c_x2a__1___closed__3; LEAN_EXPORT lean_object* l___aux__Init__Notation______unexpand__and__1___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_byElab___closed__4; static lean_object* l___aux__Init__Notation______macroRules__term_x7e_x7e_x7e____1___closed__2; +static lean_object* l_Lean_guardMsgsSpecElt___closed__16; LEAN_EXPORT lean_object* l_term___x2a__; static lean_object* l_Lean_Parser_Tactic_caseArg___closed__5; static lean_object* l___aux__Init__Notation______macroRules__term___x3c_x3d____1___closed__4; @@ -1165,6 +1225,7 @@ static lean_object* l_term___u2228_____closed__6; static lean_object* l___aux__Init__Notation______macroRules__term___x3c____1___closed__4; static lean_object* l___aux__Init__Notation______macroRules__termWithout__expected__type____1___closed__1; static lean_object* l_term___x2d_____closed__2; +static lean_object* l_Lean_guardMsgsSpecElt___closed__2; static lean_object* l___aux__Init__Notation______macroRules__term___x5e____1___closed__3; static lean_object* l_stx___x2c_x2b___closed__1; static lean_object* l___aux__Init__Notation______macroRules__term___x3c_x2a____1___closed__1; @@ -1194,10 +1255,12 @@ static lean_object* l_term___x3e_x3d_____closed__4; static lean_object* l___aux__Init__Notation______macroRules__term___x3c_x24_x3e____1___closed__2; static lean_object* l___aux__Init__Notation______macroRules__term_x2d____2___closed__3; static lean_object* l___aux__Init__Notation______macroRules__term___x3c_x2a_x3e____1___closed__12; +static lean_object* l_Lean_guardMsgsSpecElt___closed__23; LEAN_EXPORT lean_object* l___aux__Init__Notation______macroRules__term___u2265____1(lean_object*, lean_object*, lean_object*); static lean_object* l___aux__Init__Notation______macroRules__term___x3e_x3e_x3d____1___closed__5; LEAN_EXPORT lean_object* l___aux__Init__Notation______unexpand__Dvd__dvd__1___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___aux__Init__Notation______macroRules__term___x3e_x3e_x3e____1(lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_command__code__action___closed__3; static lean_object* l_term___x3c_x7c_x3e_____closed__2; static lean_object* l_precMin1___closed__3; static lean_object* l_boolIfThenElse___closed__2; @@ -1215,6 +1278,7 @@ static lean_object* l_termDepIfThenElse___closed__15; static lean_object* l_term___x2d_____closed__4; static lean_object* l___aux__Init__Notation______macroRules__term___x3e_x3e_x3e____1___closed__1; static lean_object* l___aux__Init__Notation______macroRules__term___x3c_x2a_x3e____1___closed__11; +static lean_object* l_Lean_command__code__action___closed__5; static lean_object* l_term___x3e_x3e_____closed__4; static lean_object* l_stx___x2c_x2b_x2c_x3f___closed__1; static lean_object* l_term___x7c_x3e_____closed__1; @@ -1234,6 +1298,7 @@ static lean_object* l___aux__Init__Notation______macroRules__termDepIfThenElse__ LEAN_EXPORT lean_object* l___aux__Init__Notation______unexpand__HMul__hMul__1___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_term_x7e_x7e_x7e_____closed__6; static lean_object* l_Lean_Attr_coe___closed__2; +static lean_object* l_Lean_guardMsgsSpecElt___closed__6; static lean_object* l___aux__Init__Notation______macroRules__term___x25____1___closed__5; static lean_object* l_term___x2b_x2b_____closed__2; static lean_object* l___aux__Init__Notation______macroRules__term___x3c____1___closed__7; @@ -1281,6 +1346,7 @@ static lean_object* l_term___x3e_x3e_x3d_____closed__5; static lean_object* l_term___x3c_x7c_x3e_____closed__5; static lean_object* l___aux__Init__Notation______macroRules__term___u2209____1___closed__3; static lean_object* l_Lean_deprecated___closed__2; +static lean_object* l_Lean_guardMsgsCmd___closed__8; static lean_object* l_termIfLet___closed__13; static lean_object* l_term___x24_______closed__2; static lean_object* l_term___x2b_____closed__1; @@ -1297,6 +1363,7 @@ static lean_object* l_termIfLet___closed__1; static lean_object* l___aux__Init__Notation______macroRules__term___x5e____2___closed__1; static lean_object* l_Lean_modCast___closed__6; static lean_object* l___aux__Init__Notation______macroRules__term___x5e____1___closed__2; +static lean_object* l_Lean_guardMsgsSpecElt___closed__22; static lean_object* l_termDepIfThenElse___closed__7; static lean_object* l_Lean_deprecated___closed__5; static lean_object* l_Lean_runCmd___closed__1; @@ -1345,6 +1412,7 @@ static lean_object* l___aux__Init__Notation______macroRules__term___x3e_x3d____1 static lean_object* l_term___x2b_x2b_____closed__4; LEAN_EXPORT lean_object* l_Lean_byElab; static lean_object* l_stx___x2b___closed__3; +static lean_object* l_Lean_guardMsgsSpec___closed__8; static lean_object* l___aux__Init__Notation______macroRules__term___x3c_x2a____1___closed__3; LEAN_EXPORT lean_object* l___aux__Init__Notation______unexpand__SeqRight__seqRight__1(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_withAnnotateTerm___closed__3; @@ -1371,6 +1439,7 @@ static lean_object* l_term_x7b___x3a___x2f_x2f___x7d___closed__6; static lean_object* l_term___u2223_____closed__1; LEAN_EXPORT lean_object* l___aux__Init__Notation______unexpand__HDiv__hDiv__1(lean_object*, lean_object*, lean_object*); static lean_object* l_term___u2208_____closed__4; +static lean_object* l_Lean_guardMsgsCmd___closed__15; static lean_object* l_stx___x2c_x2a___closed__4; static lean_object* l_term___x2b_____closed__5; lean_object* l_String_toSubstring_x27(lean_object*); @@ -1396,6 +1465,7 @@ static lean_object* l___aux__Init__Notation______macroRules__term___u2223____1__ LEAN_EXPORT lean_object* l___aux__Init__Notation______unexpand__HMod__hMod__1(lean_object*, lean_object*, lean_object*); static lean_object* l___aux__Init__Notation______macroRules__term___x2a____1___closed__4; static lean_object* l_Lean_rawStx_quot___closed__1; +static lean_object* l_Lean_guardMsgsCmd___closed__2; static lean_object* l_term___x26_x26_x26_____closed__1; static lean_object* l_term___u2227_____closed__3; static lean_object* l_term___u2264_____closed__2; @@ -26605,6 +26675,84 @@ x_1 = l_Lean_Attr_coe___closed__5; return x_1; } } +static lean_object* _init_l_Lean_command__code__action___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("command_code_action", 19); +return x_1; +} +} +static lean_object* _init_l_Lean_command__code__action___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Syntax_addPrec___closed__1; +x_2 = l_Lean_command__code__action___closed__1; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_command__code__action___closed__3() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; +x_1 = l_Lean_command__code__action___closed__1; +x_2 = 0; +x_3 = lean_alloc_ctor(6, 1, 1); +lean_ctor_set(x_3, 0, x_1); +lean_ctor_set_uint8(x_3, sizeof(void*)*1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_command__code__action___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___aux__Init__Notation______macroRules__stx___x2a__1___closed__3; +x_2 = l_Lean_deprecated___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_Lean_command__code__action___closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Syntax_addPrec___closed__7; +x_2 = l_Lean_command__code__action___closed__3; +x_3 = l_Lean_command__code__action___closed__4; +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_Lean_command__code__action___closed__6() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_command__code__action___closed__2; +x_2 = lean_unsigned_to_nat(1022u); +x_3 = l_Lean_command__code__action___closed__5; +x_4 = lean_alloc_ctor(3, 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_Lean_command__code__action() { +_start: +{ +lean_object* x_1; +x_1 = l_Lean_command__code__action___closed__6; +return x_1; +} +} static lean_object* _init_l_Lean_includeStr___closed__1() { _start: { @@ -26893,6 +27041,700 @@ x_1 = l_Lean_runMeta___closed__6; return x_1; } } +static lean_object* _init_l_Lean_guardMsgsSpecElt___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("guardMsgsSpecElt", 16); +return x_1; +} +} +static lean_object* _init_l_Lean_guardMsgsSpecElt___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Syntax_addPrec___closed__1; +x_2 = l_Lean_guardMsgsSpecElt___closed__1; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_guardMsgsSpecElt___closed__3() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("drop", 4); +return x_1; +} +} +static lean_object* _init_l_Lean_guardMsgsSpecElt___closed__4() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; +x_1 = l_Lean_guardMsgsSpecElt___closed__3; +x_2 = 0; +x_3 = lean_alloc_ctor(6, 1, 1); +lean_ctor_set(x_3, 0, x_1); +lean_ctor_set_uint8(x_3, sizeof(void*)*1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_guardMsgsSpecElt___closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___aux__Init__Notation______macroRules__stx___x3f__1___closed__3; +x_2 = l_Lean_guardMsgsSpecElt___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_Lean_guardMsgsSpecElt___closed__6() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("token", 5); +return x_1; +} +} +static lean_object* _init_l_Lean_guardMsgsSpecElt___closed__7() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("info", 4); +return x_1; +} +} +static lean_object* _init_l_Lean_guardMsgsSpecElt___closed__8() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_guardMsgsSpecElt___closed__6; +x_2 = l_Lean_guardMsgsSpecElt___closed__7; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_guardMsgsSpecElt___closed__9() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; +x_1 = l_Lean_guardMsgsSpecElt___closed__7; +x_2 = 0; +x_3 = lean_alloc_ctor(6, 1, 1); +lean_ctor_set(x_3, 0, x_1); +lean_ctor_set_uint8(x_3, sizeof(void*)*1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_guardMsgsSpecElt___closed__10() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_guardMsgsSpecElt___closed__7; +x_2 = l_Lean_guardMsgsSpecElt___closed__8; +x_3 = l_Lean_guardMsgsSpecElt___closed__9; +x_4 = lean_alloc_ctor(9, 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_Lean_guardMsgsSpecElt___closed__11() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("warning", 7); +return x_1; +} +} +static lean_object* _init_l_Lean_guardMsgsSpecElt___closed__12() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_guardMsgsSpecElt___closed__6; +x_2 = l_Lean_guardMsgsSpecElt___closed__11; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_guardMsgsSpecElt___closed__13() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; +x_1 = l_Lean_guardMsgsSpecElt___closed__11; +x_2 = 0; +x_3 = lean_alloc_ctor(6, 1, 1); +lean_ctor_set(x_3, 0, x_1); +lean_ctor_set_uint8(x_3, sizeof(void*)*1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_guardMsgsSpecElt___closed__14() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_guardMsgsSpecElt___closed__11; +x_2 = l_Lean_guardMsgsSpecElt___closed__12; +x_3 = l_Lean_guardMsgsSpecElt___closed__13; +x_4 = lean_alloc_ctor(9, 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_Lean_guardMsgsSpecElt___closed__15() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("error", 5); +return x_1; +} +} +static lean_object* _init_l_Lean_guardMsgsSpecElt___closed__16() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_guardMsgsSpecElt___closed__6; +x_2 = l_Lean_guardMsgsSpecElt___closed__15; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_guardMsgsSpecElt___closed__17() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; +x_1 = l_Lean_guardMsgsSpecElt___closed__15; +x_2 = 0; +x_3 = lean_alloc_ctor(6, 1, 1); +lean_ctor_set(x_3, 0, x_1); +lean_ctor_set_uint8(x_3, sizeof(void*)*1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_guardMsgsSpecElt___closed__18() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_guardMsgsSpecElt___closed__15; +x_2 = l_Lean_guardMsgsSpecElt___closed__16; +x_3 = l_Lean_guardMsgsSpecElt___closed__17; +x_4 = lean_alloc_ctor(9, 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_Lean_guardMsgsSpecElt___closed__19() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("all", 3); +return x_1; +} +} +static lean_object* _init_l_Lean_guardMsgsSpecElt___closed__20() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_guardMsgsSpecElt___closed__6; +x_2 = l_Lean_guardMsgsSpecElt___closed__19; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_guardMsgsSpecElt___closed__21() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; +x_1 = l_Lean_guardMsgsSpecElt___closed__19; +x_2 = 0; +x_3 = lean_alloc_ctor(6, 1, 1); +lean_ctor_set(x_3, 0, x_1); +lean_ctor_set_uint8(x_3, sizeof(void*)*1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_guardMsgsSpecElt___closed__22() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_guardMsgsSpecElt___closed__19; +x_2 = l_Lean_guardMsgsSpecElt___closed__20; +x_3 = l_Lean_guardMsgsSpecElt___closed__21; +x_4 = lean_alloc_ctor(9, 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_Lean_guardMsgsSpecElt___closed__23() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l___aux__Init__Notation______macroRules__stx___x3c_x7c_x3e____1___closed__5; +x_2 = l_Lean_guardMsgsSpecElt___closed__18; +x_3 = l_Lean_guardMsgsSpecElt___closed__22; +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_Lean_guardMsgsSpecElt___closed__24() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l___aux__Init__Notation______macroRules__stx___x3c_x7c_x3e____1___closed__5; +x_2 = l_Lean_guardMsgsSpecElt___closed__14; +x_3 = l_Lean_guardMsgsSpecElt___closed__23; +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_Lean_guardMsgsSpecElt___closed__25() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l___aux__Init__Notation______macroRules__stx___x3c_x7c_x3e____1___closed__5; +x_2 = l_Lean_guardMsgsSpecElt___closed__10; +x_3 = l_Lean_guardMsgsSpecElt___closed__24; +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_Lean_guardMsgsSpecElt___closed__26() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Syntax_addPrec___closed__7; +x_2 = l_Lean_guardMsgsSpecElt___closed__5; +x_3 = l_Lean_guardMsgsSpecElt___closed__25; +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_Lean_guardMsgsSpecElt___closed__27() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_guardMsgsSpecElt___closed__1; +x_2 = l_Lean_guardMsgsSpecElt___closed__2; +x_3 = l_Lean_guardMsgsSpecElt___closed__26; +x_4 = lean_alloc_ctor(9, 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_Lean_guardMsgsSpecElt() { +_start: +{ +lean_object* x_1; +x_1 = l_Lean_guardMsgsSpecElt___closed__27; +return x_1; +} +} +static lean_object* _init_l_Lean_guardMsgsSpec___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("guardMsgsSpec", 13); +return x_1; +} +} +static lean_object* _init_l_Lean_guardMsgsSpec___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Syntax_addPrec___closed__1; +x_2 = l_Lean_guardMsgsSpec___closed__1; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_guardMsgsSpec___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_prec_x28___x29___closed__3; +x_2 = lean_alloc_ctor(5, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_guardMsgsSpec___closed__4() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes(", ", 2); +return x_1; +} +} +static lean_object* _init_l_Lean_guardMsgsSpec___closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_guardMsgsSpec___closed__4; +x_2 = lean_alloc_ctor(5, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_guardMsgsSpec___closed__6() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; +x_1 = l_Lean_guardMsgsSpecElt; +x_2 = l___aux__Init__Notation______macroRules__stx___x3c_x7c_x3e____1___closed__6; +x_3 = l_Lean_guardMsgsSpec___closed__5; +x_4 = 0; +x_5 = lean_alloc_ctor(10, 3, 1); +lean_ctor_set(x_5, 0, x_1); +lean_ctor_set(x_5, 1, x_2); +lean_ctor_set(x_5, 2, x_3); +lean_ctor_set_uint8(x_5, sizeof(void*)*3, x_4); +return x_5; +} +} +static lean_object* _init_l_Lean_guardMsgsSpec___closed__7() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Syntax_addPrec___closed__7; +x_2 = l_Lean_guardMsgsSpec___closed__3; +x_3 = l_Lean_guardMsgsSpec___closed__6; +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_Lean_guardMsgsSpec___closed__8() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Syntax_addPrec___closed__7; +x_2 = l_Lean_guardMsgsSpec___closed__7; +x_3 = l_prec_x28___x29___closed__8; +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_Lean_guardMsgsSpec___closed__9() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_guardMsgsSpec___closed__1; +x_2 = l_Lean_guardMsgsSpec___closed__2; +x_3 = l_Lean_guardMsgsSpec___closed__8; +x_4 = lean_alloc_ctor(9, 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_Lean_guardMsgsSpec() { +_start: +{ +lean_object* x_1; +x_1 = l_Lean_guardMsgsSpec___closed__9; +return x_1; +} +} +static lean_object* _init_l_Lean_guardMsgsCmd___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("guardMsgsCmd", 12); +return x_1; +} +} +static lean_object* _init_l_Lean_guardMsgsCmd___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Syntax_addPrec___closed__1; +x_2 = l_Lean_guardMsgsCmd___closed__1; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_guardMsgsCmd___closed__3() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("docComment", 10); +return x_1; +} +} +static lean_object* _init_l_Lean_guardMsgsCmd___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_guardMsgsCmd___closed__3; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_guardMsgsCmd___closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_guardMsgsCmd___closed__4; +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_guardMsgsCmd___closed__6() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___aux__Init__Notation______macroRules__stx___x3f__1___closed__3; +x_2 = l_Lean_guardMsgsCmd___closed__5; +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_Lean_guardMsgsCmd___closed__7() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("#guard_msgs", 11); +return x_1; +} +} +static lean_object* _init_l_Lean_guardMsgsCmd___closed__8() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_guardMsgsCmd___closed__7; +x_2 = lean_alloc_ctor(5, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_guardMsgsCmd___closed__9() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Syntax_addPrec___closed__7; +x_2 = l_Lean_guardMsgsCmd___closed__6; +x_3 = l_Lean_guardMsgsCmd___closed__8; +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_Lean_guardMsgsCmd___closed__10() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Syntax_addPrec___closed__7; +x_2 = l_Lean_Parser_Tactic_caseArg___closed__6; +x_3 = l_Lean_guardMsgsSpec; +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_Lean_guardMsgsCmd___closed__11() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___aux__Init__Notation______macroRules__stx___x3f__1___closed__3; +x_2 = l_Lean_guardMsgsCmd___closed__10; +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_Lean_guardMsgsCmd___closed__12() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Syntax_addPrec___closed__7; +x_2 = l_Lean_guardMsgsCmd___closed__9; +x_3 = l_Lean_guardMsgsCmd___closed__11; +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_Lean_guardMsgsCmd___closed__13() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes(" in", 3); +return x_1; +} +} +static lean_object* _init_l_Lean_guardMsgsCmd___closed__14() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_guardMsgsCmd___closed__13; +x_2 = lean_alloc_ctor(5, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_guardMsgsCmd___closed__15() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Syntax_addPrec___closed__7; +x_2 = l_Lean_guardMsgsCmd___closed__12; +x_3 = l_Lean_guardMsgsCmd___closed__14; +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_Lean_guardMsgsCmd___closed__16() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("ppLine", 6); +return x_1; +} +} +static lean_object* _init_l_Lean_guardMsgsCmd___closed__17() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_guardMsgsCmd___closed__16; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_guardMsgsCmd___closed__18() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_guardMsgsCmd___closed__17; +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_guardMsgsCmd___closed__19() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Syntax_addPrec___closed__7; +x_2 = l_Lean_guardMsgsCmd___closed__15; +x_3 = l_Lean_guardMsgsCmd___closed__18; +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_Lean_guardMsgsCmd___closed__20() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("command", 7); +return x_1; +} +} +static lean_object* _init_l_Lean_guardMsgsCmd___closed__21() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_guardMsgsCmd___closed__20; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_guardMsgsCmd___closed__22() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_guardMsgsCmd___closed__21; +x_2 = lean_unsigned_to_nat(0u); +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_Lean_guardMsgsCmd___closed__23() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Syntax_addPrec___closed__7; +x_2 = l_Lean_guardMsgsCmd___closed__19; +x_3 = l_Lean_guardMsgsCmd___closed__22; +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_Lean_guardMsgsCmd___closed__24() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_guardMsgsCmd___closed__2; +x_2 = lean_unsigned_to_nat(1022u); +x_3 = l_Lean_guardMsgsCmd___closed__23; +x_4 = lean_alloc_ctor(3, 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_Lean_guardMsgsCmd() { +_start: +{ +lean_object* x_1; +x_1 = l_Lean_guardMsgsCmd___closed__24; +return x_1; +} +} lean_object* initialize_Init_Prelude(uint8_t builtin, lean_object*); lean_object* initialize_Init_Coe(uint8_t builtin, lean_object*); static bool _G_initialized = false; @@ -29184,6 +30026,20 @@ l_Lean_Attr_coe___closed__5 = _init_l_Lean_Attr_coe___closed__5(); lean_mark_persistent(l_Lean_Attr_coe___closed__5); l_Lean_Attr_coe = _init_l_Lean_Attr_coe(); lean_mark_persistent(l_Lean_Attr_coe); +l_Lean_command__code__action___closed__1 = _init_l_Lean_command__code__action___closed__1(); +lean_mark_persistent(l_Lean_command__code__action___closed__1); +l_Lean_command__code__action___closed__2 = _init_l_Lean_command__code__action___closed__2(); +lean_mark_persistent(l_Lean_command__code__action___closed__2); +l_Lean_command__code__action___closed__3 = _init_l_Lean_command__code__action___closed__3(); +lean_mark_persistent(l_Lean_command__code__action___closed__3); +l_Lean_command__code__action___closed__4 = _init_l_Lean_command__code__action___closed__4(); +lean_mark_persistent(l_Lean_command__code__action___closed__4); +l_Lean_command__code__action___closed__5 = _init_l_Lean_command__code__action___closed__5(); +lean_mark_persistent(l_Lean_command__code__action___closed__5); +l_Lean_command__code__action___closed__6 = _init_l_Lean_command__code__action___closed__6(); +lean_mark_persistent(l_Lean_command__code__action___closed__6); +l_Lean_command__code__action = _init_l_Lean_command__code__action(); +lean_mark_persistent(l_Lean_command__code__action); l_Lean_includeStr___closed__1 = _init_l_Lean_includeStr___closed__1(); lean_mark_persistent(l_Lean_includeStr___closed__1); l_Lean_includeStr___closed__2 = _init_l_Lean_includeStr___closed__2(); @@ -29240,6 +30096,132 @@ l_Lean_runMeta___closed__6 = _init_l_Lean_runMeta___closed__6(); lean_mark_persistent(l_Lean_runMeta___closed__6); l_Lean_runMeta = _init_l_Lean_runMeta(); lean_mark_persistent(l_Lean_runMeta); +l_Lean_guardMsgsSpecElt___closed__1 = _init_l_Lean_guardMsgsSpecElt___closed__1(); +lean_mark_persistent(l_Lean_guardMsgsSpecElt___closed__1); +l_Lean_guardMsgsSpecElt___closed__2 = _init_l_Lean_guardMsgsSpecElt___closed__2(); +lean_mark_persistent(l_Lean_guardMsgsSpecElt___closed__2); +l_Lean_guardMsgsSpecElt___closed__3 = _init_l_Lean_guardMsgsSpecElt___closed__3(); +lean_mark_persistent(l_Lean_guardMsgsSpecElt___closed__3); +l_Lean_guardMsgsSpecElt___closed__4 = _init_l_Lean_guardMsgsSpecElt___closed__4(); +lean_mark_persistent(l_Lean_guardMsgsSpecElt___closed__4); +l_Lean_guardMsgsSpecElt___closed__5 = _init_l_Lean_guardMsgsSpecElt___closed__5(); +lean_mark_persistent(l_Lean_guardMsgsSpecElt___closed__5); +l_Lean_guardMsgsSpecElt___closed__6 = _init_l_Lean_guardMsgsSpecElt___closed__6(); +lean_mark_persistent(l_Lean_guardMsgsSpecElt___closed__6); +l_Lean_guardMsgsSpecElt___closed__7 = _init_l_Lean_guardMsgsSpecElt___closed__7(); +lean_mark_persistent(l_Lean_guardMsgsSpecElt___closed__7); +l_Lean_guardMsgsSpecElt___closed__8 = _init_l_Lean_guardMsgsSpecElt___closed__8(); +lean_mark_persistent(l_Lean_guardMsgsSpecElt___closed__8); +l_Lean_guardMsgsSpecElt___closed__9 = _init_l_Lean_guardMsgsSpecElt___closed__9(); +lean_mark_persistent(l_Lean_guardMsgsSpecElt___closed__9); +l_Lean_guardMsgsSpecElt___closed__10 = _init_l_Lean_guardMsgsSpecElt___closed__10(); +lean_mark_persistent(l_Lean_guardMsgsSpecElt___closed__10); +l_Lean_guardMsgsSpecElt___closed__11 = _init_l_Lean_guardMsgsSpecElt___closed__11(); +lean_mark_persistent(l_Lean_guardMsgsSpecElt___closed__11); +l_Lean_guardMsgsSpecElt___closed__12 = _init_l_Lean_guardMsgsSpecElt___closed__12(); +lean_mark_persistent(l_Lean_guardMsgsSpecElt___closed__12); +l_Lean_guardMsgsSpecElt___closed__13 = _init_l_Lean_guardMsgsSpecElt___closed__13(); +lean_mark_persistent(l_Lean_guardMsgsSpecElt___closed__13); +l_Lean_guardMsgsSpecElt___closed__14 = _init_l_Lean_guardMsgsSpecElt___closed__14(); +lean_mark_persistent(l_Lean_guardMsgsSpecElt___closed__14); +l_Lean_guardMsgsSpecElt___closed__15 = _init_l_Lean_guardMsgsSpecElt___closed__15(); +lean_mark_persistent(l_Lean_guardMsgsSpecElt___closed__15); +l_Lean_guardMsgsSpecElt___closed__16 = _init_l_Lean_guardMsgsSpecElt___closed__16(); +lean_mark_persistent(l_Lean_guardMsgsSpecElt___closed__16); +l_Lean_guardMsgsSpecElt___closed__17 = _init_l_Lean_guardMsgsSpecElt___closed__17(); +lean_mark_persistent(l_Lean_guardMsgsSpecElt___closed__17); +l_Lean_guardMsgsSpecElt___closed__18 = _init_l_Lean_guardMsgsSpecElt___closed__18(); +lean_mark_persistent(l_Lean_guardMsgsSpecElt___closed__18); +l_Lean_guardMsgsSpecElt___closed__19 = _init_l_Lean_guardMsgsSpecElt___closed__19(); +lean_mark_persistent(l_Lean_guardMsgsSpecElt___closed__19); +l_Lean_guardMsgsSpecElt___closed__20 = _init_l_Lean_guardMsgsSpecElt___closed__20(); +lean_mark_persistent(l_Lean_guardMsgsSpecElt___closed__20); +l_Lean_guardMsgsSpecElt___closed__21 = _init_l_Lean_guardMsgsSpecElt___closed__21(); +lean_mark_persistent(l_Lean_guardMsgsSpecElt___closed__21); +l_Lean_guardMsgsSpecElt___closed__22 = _init_l_Lean_guardMsgsSpecElt___closed__22(); +lean_mark_persistent(l_Lean_guardMsgsSpecElt___closed__22); +l_Lean_guardMsgsSpecElt___closed__23 = _init_l_Lean_guardMsgsSpecElt___closed__23(); +lean_mark_persistent(l_Lean_guardMsgsSpecElt___closed__23); +l_Lean_guardMsgsSpecElt___closed__24 = _init_l_Lean_guardMsgsSpecElt___closed__24(); +lean_mark_persistent(l_Lean_guardMsgsSpecElt___closed__24); +l_Lean_guardMsgsSpecElt___closed__25 = _init_l_Lean_guardMsgsSpecElt___closed__25(); +lean_mark_persistent(l_Lean_guardMsgsSpecElt___closed__25); +l_Lean_guardMsgsSpecElt___closed__26 = _init_l_Lean_guardMsgsSpecElt___closed__26(); +lean_mark_persistent(l_Lean_guardMsgsSpecElt___closed__26); +l_Lean_guardMsgsSpecElt___closed__27 = _init_l_Lean_guardMsgsSpecElt___closed__27(); +lean_mark_persistent(l_Lean_guardMsgsSpecElt___closed__27); +l_Lean_guardMsgsSpecElt = _init_l_Lean_guardMsgsSpecElt(); +lean_mark_persistent(l_Lean_guardMsgsSpecElt); +l_Lean_guardMsgsSpec___closed__1 = _init_l_Lean_guardMsgsSpec___closed__1(); +lean_mark_persistent(l_Lean_guardMsgsSpec___closed__1); +l_Lean_guardMsgsSpec___closed__2 = _init_l_Lean_guardMsgsSpec___closed__2(); +lean_mark_persistent(l_Lean_guardMsgsSpec___closed__2); +l_Lean_guardMsgsSpec___closed__3 = _init_l_Lean_guardMsgsSpec___closed__3(); +lean_mark_persistent(l_Lean_guardMsgsSpec___closed__3); +l_Lean_guardMsgsSpec___closed__4 = _init_l_Lean_guardMsgsSpec___closed__4(); +lean_mark_persistent(l_Lean_guardMsgsSpec___closed__4); +l_Lean_guardMsgsSpec___closed__5 = _init_l_Lean_guardMsgsSpec___closed__5(); +lean_mark_persistent(l_Lean_guardMsgsSpec___closed__5); +l_Lean_guardMsgsSpec___closed__6 = _init_l_Lean_guardMsgsSpec___closed__6(); +lean_mark_persistent(l_Lean_guardMsgsSpec___closed__6); +l_Lean_guardMsgsSpec___closed__7 = _init_l_Lean_guardMsgsSpec___closed__7(); +lean_mark_persistent(l_Lean_guardMsgsSpec___closed__7); +l_Lean_guardMsgsSpec___closed__8 = _init_l_Lean_guardMsgsSpec___closed__8(); +lean_mark_persistent(l_Lean_guardMsgsSpec___closed__8); +l_Lean_guardMsgsSpec___closed__9 = _init_l_Lean_guardMsgsSpec___closed__9(); +lean_mark_persistent(l_Lean_guardMsgsSpec___closed__9); +l_Lean_guardMsgsSpec = _init_l_Lean_guardMsgsSpec(); +lean_mark_persistent(l_Lean_guardMsgsSpec); +l_Lean_guardMsgsCmd___closed__1 = _init_l_Lean_guardMsgsCmd___closed__1(); +lean_mark_persistent(l_Lean_guardMsgsCmd___closed__1); +l_Lean_guardMsgsCmd___closed__2 = _init_l_Lean_guardMsgsCmd___closed__2(); +lean_mark_persistent(l_Lean_guardMsgsCmd___closed__2); +l_Lean_guardMsgsCmd___closed__3 = _init_l_Lean_guardMsgsCmd___closed__3(); +lean_mark_persistent(l_Lean_guardMsgsCmd___closed__3); +l_Lean_guardMsgsCmd___closed__4 = _init_l_Lean_guardMsgsCmd___closed__4(); +lean_mark_persistent(l_Lean_guardMsgsCmd___closed__4); +l_Lean_guardMsgsCmd___closed__5 = _init_l_Lean_guardMsgsCmd___closed__5(); +lean_mark_persistent(l_Lean_guardMsgsCmd___closed__5); +l_Lean_guardMsgsCmd___closed__6 = _init_l_Lean_guardMsgsCmd___closed__6(); +lean_mark_persistent(l_Lean_guardMsgsCmd___closed__6); +l_Lean_guardMsgsCmd___closed__7 = _init_l_Lean_guardMsgsCmd___closed__7(); +lean_mark_persistent(l_Lean_guardMsgsCmd___closed__7); +l_Lean_guardMsgsCmd___closed__8 = _init_l_Lean_guardMsgsCmd___closed__8(); +lean_mark_persistent(l_Lean_guardMsgsCmd___closed__8); +l_Lean_guardMsgsCmd___closed__9 = _init_l_Lean_guardMsgsCmd___closed__9(); +lean_mark_persistent(l_Lean_guardMsgsCmd___closed__9); +l_Lean_guardMsgsCmd___closed__10 = _init_l_Lean_guardMsgsCmd___closed__10(); +lean_mark_persistent(l_Lean_guardMsgsCmd___closed__10); +l_Lean_guardMsgsCmd___closed__11 = _init_l_Lean_guardMsgsCmd___closed__11(); +lean_mark_persistent(l_Lean_guardMsgsCmd___closed__11); +l_Lean_guardMsgsCmd___closed__12 = _init_l_Lean_guardMsgsCmd___closed__12(); +lean_mark_persistent(l_Lean_guardMsgsCmd___closed__12); +l_Lean_guardMsgsCmd___closed__13 = _init_l_Lean_guardMsgsCmd___closed__13(); +lean_mark_persistent(l_Lean_guardMsgsCmd___closed__13); +l_Lean_guardMsgsCmd___closed__14 = _init_l_Lean_guardMsgsCmd___closed__14(); +lean_mark_persistent(l_Lean_guardMsgsCmd___closed__14); +l_Lean_guardMsgsCmd___closed__15 = _init_l_Lean_guardMsgsCmd___closed__15(); +lean_mark_persistent(l_Lean_guardMsgsCmd___closed__15); +l_Lean_guardMsgsCmd___closed__16 = _init_l_Lean_guardMsgsCmd___closed__16(); +lean_mark_persistent(l_Lean_guardMsgsCmd___closed__16); +l_Lean_guardMsgsCmd___closed__17 = _init_l_Lean_guardMsgsCmd___closed__17(); +lean_mark_persistent(l_Lean_guardMsgsCmd___closed__17); +l_Lean_guardMsgsCmd___closed__18 = _init_l_Lean_guardMsgsCmd___closed__18(); +lean_mark_persistent(l_Lean_guardMsgsCmd___closed__18); +l_Lean_guardMsgsCmd___closed__19 = _init_l_Lean_guardMsgsCmd___closed__19(); +lean_mark_persistent(l_Lean_guardMsgsCmd___closed__19); +l_Lean_guardMsgsCmd___closed__20 = _init_l_Lean_guardMsgsCmd___closed__20(); +lean_mark_persistent(l_Lean_guardMsgsCmd___closed__20); +l_Lean_guardMsgsCmd___closed__21 = _init_l_Lean_guardMsgsCmd___closed__21(); +lean_mark_persistent(l_Lean_guardMsgsCmd___closed__21); +l_Lean_guardMsgsCmd___closed__22 = _init_l_Lean_guardMsgsCmd___closed__22(); +lean_mark_persistent(l_Lean_guardMsgsCmd___closed__22); +l_Lean_guardMsgsCmd___closed__23 = _init_l_Lean_guardMsgsCmd___closed__23(); +lean_mark_persistent(l_Lean_guardMsgsCmd___closed__23); +l_Lean_guardMsgsCmd___closed__24 = _init_l_Lean_guardMsgsCmd___closed__24(); +lean_mark_persistent(l_Lean_guardMsgsCmd___closed__24); +l_Lean_guardMsgsCmd = _init_l_Lean_guardMsgsCmd(); +lean_mark_persistent(l_Lean_guardMsgsCmd); return lean_io_result_mk_ok(lean_box(0)); } #ifdef __cplusplus diff --git a/stage0/stdlib/Init/Tactics.c b/stage0/stdlib/Init/Tactics.c index f3e79f0603..d3b4acb91c 100644 --- a/stage0/stdlib/Init/Tactics.c +++ b/stage0/stdlib/Init/Tactics.c @@ -93,6 +93,7 @@ LEAN_EXPORT lean_object* l_Lean_Parser_Attr_simp; static lean_object* l_Lean_Parser_Tactic_paren___closed__10; static lean_object* l_Lean_Parser_Tactic_tacticSimpa_x3f_____closed__2; static lean_object* l_Lean_Parser_Tactic_tacticStop_____closed__3; +static lean_object* l_Lean_Parser_Syntax_exact_x3f___closed__4; static lean_object* l_term_____x5b___x5d___closed__2; static lean_object* l_Lean_Parser_Tactic_rotateLeft___closed__10; static lean_object* l_Lean_Parser_Tactic_tacticHaveI_____closed__1; @@ -108,6 +109,7 @@ static lean_object* l_Lean_Parser_Tactic_failIfSuccess___closed__6; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic___aux__Init__Tactics______macroRules__Lean__Parser__Tactic__tacticExfalso__1(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic_simpAll___closed__11; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic___aux__Init__Tactics______macroRules__Lean__Parser__Tactic__tacticAssumption__mod__cast__1(lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Parser_Tactic_apply_x3f___closed__5; static lean_object* l_Lean_Parser_Tactic_dbgTrace___closed__4; static lean_object* l_Lean_Parser_Tactic_simpStar___closed__3; static lean_object* l_Lean_Parser_Tactic_tacticExists___x2c_x2c___closed__1; @@ -162,6 +164,7 @@ static lean_object* l_Lean_Parser_Tactic___aux__Init__Tactics______macroRules__L static lean_object* l_Lean_Parser_Tactic_tacDepIfThenElse___closed__19; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_simpArg; static lean_object* l_Lean_Parser_Tactic_tacticNext___x3d_x3e_____closed__3; +static lean_object* l_Lean_Parser_Tactic_exact_x3f___closed__2; static lean_object* l_Lean_Parser_Tactic_intro___closed__12; static lean_object* l_Lean_Parser_Tactic_revert___closed__4; static lean_object* l___aux__Init__Tactics______macroRules__tacticGet__elem__tactic__trivial__2___closed__14; @@ -205,6 +208,7 @@ static lean_object* l_Lean_Parser_Tactic_withAnnotateState___closed__7; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_anyGoals; static lean_object* l_Lean_Parser_Tactic_dsimpArgs___closed__5; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic___aux__Init__Tactics______macroRules__Lean__Parser__Tactic__tacticSorry__1(lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Parser_Tactic_apply_x3f___closed__6; static lean_object* l_Lean_Parser_Tactic_generalizeArg___closed__8; static lean_object* l_Lean_Parser_Tactic_tacticHave_____closed__5; static lean_object* l_Lean_Parser_Tactic_save___closed__1; @@ -233,6 +237,8 @@ static lean_object* l_Lean_Parser_Tactic_normCast0___closed__1; static lean_object* l_Lean_Parser_Tactic_tacticRwa_______closed__1; static lean_object* l_Lean_Parser_Tactic_tacIfThenElse___closed__7; static lean_object* l_Lean_Parser_Tactic_tacticHave_x27___x3a_x3d_____closed__1; +static lean_object* l_Lean_Parser_Syntax_exact_x3f___closed__3; +static lean_object* l_Lean_Parser_Tactic_exact_x3f___closed__4; static lean_object* l_Lean_Parser_Tactic_inductionAlt___closed__6; static lean_object* l_Lean_Parser_Tactic_tacticNomatch___x2c_x2c___closed__1; static lean_object* l_Lean_Parser_Tactic_simpErase___closed__2; @@ -267,8 +273,10 @@ static lean_object* l_Lean_Parser_Tactic___aux__Init__Tactics______macroRules__L static lean_object* l_Lean_Parser_Tactic_intros___closed__4; static lean_object* l_Lean_Parser_Tactic_tacticRfl___closed__1; static lean_object* l_Lean_Parser_Tactic_applyAssumption___closed__4; +static lean_object* l_Lean_Parser_Syntax_exact_x3f___closed__2; static lean_object* l___aux__Init__Tactics______macroRules__tacticGet__elem__tactic__trivial__2___closed__9; static lean_object* l_Lean_Parser_Tactic_discharger___closed__12; +static lean_object* l_Lean_Parser_Tactic_exact_x3f___closed__1; static lean_object* l_Lean_Parser_Tactic_simpAllTrace___closed__4; static lean_object* l_Lean_Parser_Tactic_tacticNorm__cast_____closed__3; static lean_object* l_Lean_Parser_Tactic_eqRefl___closed__4; @@ -334,6 +342,7 @@ static lean_object* l_Lean_Parser_Tactic_intros___closed__16; static lean_object* l_Lean_Parser_Tactic_tacticRepeat_____closed__2; static lean_object* l_Lean_Parser_Tactic___aux__Init__Tactics______macroRules__Lean__Parser__Tactic__tacticSorry__1___closed__6; static lean_object* l_Lean_Parser_Tactic_simpa___closed__1; +static lean_object* l_Lean_Parser_Tactic_exact_x3f___closed__6; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_case; static lean_object* l_Lean_Parser_Tactic___aux__Init__Tactics______macroRules__Lean__Parser__Tactic__rwSeq__1___closed__3; LEAN_EXPORT lean_object* l_tacticGet__elem__tactic; @@ -458,6 +467,7 @@ static lean_object* l_Lean_Parser_Tactic_case___closed__8; static lean_object* l_Lean_Parser_Tactic___aux__Init__Tactics______macroRules__Lean__Parser__Tactic__tacticTry____1___closed__3; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_discharger; static lean_object* l_Lean_Parser_Tactic_rewriteSeq___closed__9; +static lean_object* l_Lean_Parser_Tactic_apply_x3f___closed__9; static lean_object* l_Lean_Parser_Tactic___aux__Init__Tactics______macroRules__Lean__Parser__Tactic__tacticBv__omega__1___closed__1; static lean_object* l_Lean_Parser_Tactic_tacticLet_____closed__6; static lean_object* l_Lean_Parser_Tactic_tacticSimpa_x3f_x21_____closed__1; @@ -510,6 +520,7 @@ LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_sleep; static lean_object* l_Lean_Parser_Tactic_tacticAssumption__mod__cast___closed__3; static lean_object* l_Lean_Parser_Tactic_first___closed__11; static lean_object* l_Lean_Parser_Tactic_case___closed__13; +static lean_object* l_Lean_Parser_Syntax_exact_x3f___closed__1; static lean_object* l_Lean_Parser_Tactic_traceMessage___closed__6; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_dsimpTraceArgsRest; static lean_object* l_Lean_Parser_Tactic_tacticHave_____closed__4; @@ -517,6 +528,7 @@ static lean_object* l_Lean_Parser_Tactic_simpLemma___closed__4; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_simpTraceArgsRest; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic___aux__Init__Tactics______macroRules__Lean__Parser__Tactic__tacticShow____1(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_apply; +LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_exact_x3f; static lean_object* l_Lean_Parser_Tactic_simp___closed__19; static lean_object* l_Lean_Parser_Tactic_tacticNofun___closed__2; static lean_object* l_Lean_Parser_Tactic_focus___closed__3; @@ -558,6 +570,7 @@ static lean_object* l_Lean_Parser_Tactic___aux__Init__Tactics______macroRules__L static lean_object* l_Lean_Parser_Tactic_tacticRepeat_____closed__3; static lean_object* l_Lean_Parser_Tactic_traceMessage___closed__9; static lean_object* l_Lean_Parser_Tactic___aux__Init__Tactics______macroRules__Lean__Parser__Tactic__tacticTrivial__6___closed__6; +static lean_object* l_Lean_Parser_Syntax_exact_x3f___closed__5; static lean_object* l_Lean_Parser_Tactic_tacticHave_x27___x3a_x3d_____closed__8; static lean_object* l_Lean_Parser_Tactic_letrec___closed__6; static lean_object* l_Lean_Parser_Tactic_simpLemma___closed__2; @@ -739,6 +752,7 @@ LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_changeWith; static lean_object* l_Lean_Parser_Tactic_tactic___x3c_x3b_x3e_____closed__3; static lean_object* l_Lean_Parser_Tactic_clear___closed__3; static lean_object* l_Lean_Parser_Attr_norm__cast___closed__3; +static lean_object* l_Lean_Parser_Tactic_exact_x3f___closed__9; static lean_object* l_Lean_Parser_Attr_norm__cast___closed__1; static lean_object* l_Lean_Parser_Tactic_refine___closed__6; static lean_object* l_Lean_Parser_Tactic_intro___closed__17; @@ -836,6 +850,7 @@ static lean_object* l_Lean_Parser_Tactic_withAnnotateState___closed__21; static lean_object* l_Lean_Parser_Tactic_tacticInfer__instance___closed__5; LEAN_EXPORT lean_object* l___aux__Init__Tactics______macroRules__tacticGet__elem__tactic__1(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic_tacticExists___x2c_x2c___closed__2; +static lean_object* l_Lean_Parser_Tactic_apply_x3f___closed__2; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_substVars; static lean_object* l_Lean_Parser_Tactic_config___closed__4; static lean_object* l_Lean_Parser_Tactic_simpaArgsRest___closed__11; @@ -887,6 +902,7 @@ static lean_object* l_Lean_Parser_Tactic_traceMessage___closed__1; static lean_object* l_Lean_Parser_Tactic_withReducible___closed__5; static lean_object* l_Lean_Parser_Tactic_tacticSimpa_x3f_____closed__1; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_dbgTrace; +static lean_object* l_Lean_Parser_Tactic_exact_x3f___closed__7; static lean_object* l_Lean_Parser_Tactic_tacDepIfThenElse___closed__25; static lean_object* l_Lean_Parser_Tactic_tacticSuffices_____closed__2; static lean_object* l_Lean_Parser_Tactic_simpStar___closed__1; @@ -976,6 +992,7 @@ static lean_object* l_Lean_Parser_Tactic_tacticSimp_x3f_x21_____closed__5; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_simpPre; static lean_object* l_Lean_Parser_Tactic_first___closed__21; static lean_object* l_Lean_Parser_Tactic_unfold___closed__6; +static lean_object* l_Lean_Parser_Tactic_apply_x3f___closed__1; static lean_object* l_Lean_Parser_Tactic_normCastAddElim___closed__1; static lean_object* l_Lean_Parser_Tactic_rotateRight___closed__4; static lean_object* l_Lean_Parser_Tactic_traceState___closed__5; @@ -994,6 +1011,7 @@ static lean_object* l_Lean_Parser_Tactic___aux__Init__Tactics______macroRules__L static lean_object* l_Lean_Parser_Tactic_simpArgs___closed__2; static lean_object* l_Lean_Parser_Tactic_simpTrace___closed__8; static lean_object* l_Lean_Parser_Tactic_tacticDsimp_x3f_x21_____closed__1; +static lean_object* l_Lean_Parser_Tactic_apply_x3f___closed__4; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_generalize; static lean_object* l_Lean_Parser_Tactic_simp___closed__7; static lean_object* l_Lean_Parser_Tactic_inductionAltLHS___closed__2; @@ -1054,8 +1072,10 @@ static lean_object* l_Lean_Parser_Tactic___aux__Init__Tactics______macroRules__L static lean_object* l_Lean_Parser_Tactic_simp___closed__6; static lean_object* l_Lean_Parser_Tactic_case_x27___closed__4; static lean_object* l_Lean_Parser_Tactic_tacticExfalso___closed__5; +LEAN_EXPORT lean_object* l_Lean_Parser_Syntax_exact_x3f; static lean_object* l_Lean_Parser_Tactic_tacticRwa_______closed__5; static lean_object* l_Lean_Parser_Tactic_change___closed__4; +static lean_object* l_Lean_Parser_Tactic_apply_x3f___closed__8; static lean_object* l_Lean_Parser_Tactic_exact___closed__4; static lean_object* l_Lean_Parser_Tactic_withAnnotateState___closed__8; static lean_object* l_Lean_Parser_Tactic_focus___closed__2; @@ -1159,11 +1179,13 @@ static lean_object* l___aux__Init__Tactics______macroRules__tacticGet__elem__tac static lean_object* l_Lean_Parser_Tactic_tacticSimpa_x21_____closed__2; static lean_object* l_Lean_Parser_Tactic_tacticStop_____closed__5; static lean_object* l_Lean_Parser_Tactic_normCast0___closed__5; +static lean_object* l_Lean_Parser_Tactic_exact_x3f___closed__3; static lean_object* l_Lean_Parser_Tactic_traceState___closed__1; static lean_object* l_Lean_Parser_Tactic___aux__Init__Tactics______macroRules__Lean__Parser__Tactic__tacticRwa______1___closed__1; static lean_object* l_Lean_Parser_Tactic_tacticLet_____closed__3; static lean_object* l_Lean_Parser_Tactic_cases___closed__6; static lean_object* l_Lean_Parser_Tactic_tacticNofun___closed__4; +static lean_object* l_Lean_Parser_Tactic_apply_x3f___closed__3; static lean_object* l_Lean_Parser_Tactic_tacticHaveI_____closed__4; static lean_object* l_Lean_Parser_Tactic_tacDepIfThenElse___closed__21; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_injections; @@ -1273,6 +1295,7 @@ static lean_object* l_Lean_Parser_Tactic_unfold___closed__3; static lean_object* l_Lean_Parser_Tactic_fail___closed__1; static lean_object* l___aux__Init__Tactics______macroRules__tacticGet__elem__tactic__trivial__2___closed__15; static lean_object* l_term_____x5b___x5d_x27_____closed__4; +static lean_object* l_Lean_Parser_Tactic_exact_x3f___closed__8; static lean_object* l_Lean_Parser_Tactic___aux__Init__Tactics______macroRules__Lean__Parser__Tactic__tacticTrivial__4___closed__2; static lean_object* l___aux__Init__Tactics______macroRules__tacticGet__elem__tactic__trivial__2___closed__8; static lean_object* l_Lean_Parser_Tactic_allGoals___closed__2; @@ -1320,6 +1343,7 @@ extern lean_object* l_Lean_Parser_Tactic_caseArg; LEAN_EXPORT lean_object* l_term_____x5b___x5d_x27__; static lean_object* l_Lean_Parser_Tactic_casesTarget___closed__4; static lean_object* l___aux__Init__Tactics______macroRules__tacticGet__elem__tactic__trivial__2___closed__5; +static lean_object* l_Lean_Parser_Tactic_exact_x3f___closed__5; static lean_object* l_Lean_Parser_Tactic_split___closed__6; static lean_object* l_Lean_Parser_Tactic_rotateLeft___closed__6; static lean_object* l_Lean_Parser_Tactic_dbgTrace___closed__5; @@ -1467,8 +1491,10 @@ static lean_object* l_Lean_Parser_Tactic___aux__Init__Tactics______macroRules__L static lean_object* l_Lean_Parser_Tactic_tacticHave_x27___x3a_x3d_____closed__2; static lean_object* l_Lean_Parser_Tactic_subst___closed__2; static lean_object* l_Lean_Parser_Tactic_unfold___closed__1; +LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_apply_x3f; static lean_object* l_Lean_Parser_Tactic_tacticNext___x3d_x3e_____closed__7; static lean_object* l___aux__Init__Tactics______macroRules__term_____x5b___x5d__1___closed__5; +static lean_object* l_Lean_Parser_Tactic_apply_x3f___closed__7; static lean_object* l_Lean_Parser_Tactic_tacticAssumption__mod__cast___closed__5; static lean_object* l_Lean_Parser_Tactic_SolveByElim_arg___closed__5; static lean_object* l_Lean_Parser_Tactic_delta___closed__5; @@ -21254,6 +21280,254 @@ x_1 = l_Lean_Parser_Tactic_applyRules___closed__9; return x_1; } } +static lean_object* _init_l_Lean_Parser_Tactic_exact_x3f___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("exact\?", 6); +return x_1; +} +} +static lean_object* _init_l_Lean_Parser_Tactic_exact_x3f___closed__2() { +_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_Parser_Tactic_withAnnotateState___closed__1; +x_2 = l_Lean_Parser_Tactic_withAnnotateState___closed__2; +x_3 = l_Lean_Parser_Tactic_withAnnotateState___closed__3; +x_4 = l_Lean_Parser_Tactic_exact_x3f___closed__1; +x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); +return x_5; +} +} +static lean_object* _init_l_Lean_Parser_Tactic_exact_x3f___closed__3() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Tactic_exact_x3f___closed__1; +x_2 = 0; +x_3 = lean_alloc_ctor(6, 1, 1); +lean_ctor_set(x_3, 0, x_1); +lean_ctor_set_uint8(x_3, sizeof(void*)*1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Parser_Tactic_exact_x3f___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Tactic_withAnnotateState___closed__7; +x_2 = l_Lean_Parser_Tactic_intro___closed__14; +x_3 = l_Lean_Parser_Tactic_intros___closed__8; +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_Lean_Parser_Tactic_exact_x3f___closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; +x_1 = l_Lean_Parser_Tactic_exact_x3f___closed__4; +x_2 = l_Lean_Parser_Tactic_rwRuleSeq___closed__7; +x_3 = l_Lean_Parser_Tactic_rwRuleSeq___closed__6; +x_4 = 0; +x_5 = lean_alloc_ctor(11, 3, 1); +lean_ctor_set(x_5, 0, x_1); +lean_ctor_set(x_5, 1, x_2); +lean_ctor_set(x_5, 2, x_3); +lean_ctor_set_uint8(x_5, sizeof(void*)*3, x_4); +return x_5; +} +} +static lean_object* _init_l_Lean_Parser_Tactic_exact_x3f___closed__6() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Tactic_withAnnotateState___closed__7; +x_2 = l_Lean_Parser_Tactic_simpaArgsRest___closed__9; +x_3 = l_Lean_Parser_Tactic_exact_x3f___closed__5; +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_Lean_Parser_Tactic_exact_x3f___closed__7() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Tactic_rotateLeft___closed__6; +x_2 = l_Lean_Parser_Tactic_exact_x3f___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_Lean_Parser_Tactic_exact_x3f___closed__8() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Tactic_withAnnotateState___closed__7; +x_2 = l_Lean_Parser_Tactic_exact_x3f___closed__3; +x_3 = l_Lean_Parser_Tactic_exact_x3f___closed__7; +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_Lean_Parser_Tactic_exact_x3f___closed__9() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Tactic_exact_x3f___closed__2; +x_2 = lean_unsigned_to_nat(1022u); +x_3 = l_Lean_Parser_Tactic_exact_x3f___closed__8; +x_4 = lean_alloc_ctor(3, 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_Lean_Parser_Tactic_exact_x3f() { +_start: +{ +lean_object* x_1; +x_1 = l_Lean_Parser_Tactic_exact_x3f___closed__9; +return x_1; +} +} +static lean_object* _init_l_Lean_Parser_Tactic_apply_x3f___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("apply\?", 6); +return x_1; +} +} +static lean_object* _init_l_Lean_Parser_Tactic_apply_x3f___closed__2() { +_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_Parser_Tactic_withAnnotateState___closed__1; +x_2 = l_Lean_Parser_Tactic_withAnnotateState___closed__2; +x_3 = l_Lean_Parser_Tactic_withAnnotateState___closed__3; +x_4 = l_Lean_Parser_Tactic_apply_x3f___closed__1; +x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); +return x_5; +} +} +static lean_object* _init_l_Lean_Parser_Tactic_apply_x3f___closed__3() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Tactic_apply_x3f___closed__1; +x_2 = 0; +x_3 = lean_alloc_ctor(6, 1, 1); +lean_ctor_set(x_3, 0, x_1); +lean_ctor_set_uint8(x_3, sizeof(void*)*1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Parser_Tactic_apply_x3f___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Tactic_withAnnotateState___closed__7; +x_2 = l_Lean_Parser_Tactic_intro___closed__14; +x_3 = l_Lean_Parser_Tactic_rename___closed__5; +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_Lean_Parser_Tactic_apply_x3f___closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; +x_1 = l_Lean_Parser_Tactic_apply_x3f___closed__4; +x_2 = l_Lean_Parser_Tactic_rwRuleSeq___closed__7; +x_3 = l_Lean_Parser_Tactic_rwRuleSeq___closed__6; +x_4 = 0; +x_5 = lean_alloc_ctor(11, 3, 1); +lean_ctor_set(x_5, 0, x_1); +lean_ctor_set(x_5, 1, x_2); +lean_ctor_set(x_5, 2, x_3); +lean_ctor_set_uint8(x_5, sizeof(void*)*3, x_4); +return x_5; +} +} +static lean_object* _init_l_Lean_Parser_Tactic_apply_x3f___closed__6() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Tactic_withAnnotateState___closed__7; +x_2 = l_Lean_Parser_Tactic_simpaArgsRest___closed__9; +x_3 = l_Lean_Parser_Tactic_apply_x3f___closed__5; +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_Lean_Parser_Tactic_apply_x3f___closed__7() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Tactic_rotateLeft___closed__6; +x_2 = l_Lean_Parser_Tactic_apply_x3f___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_Lean_Parser_Tactic_apply_x3f___closed__8() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Tactic_withAnnotateState___closed__7; +x_2 = l_Lean_Parser_Tactic_apply_x3f___closed__3; +x_3 = l_Lean_Parser_Tactic_apply_x3f___closed__7; +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_Lean_Parser_Tactic_apply_x3f___closed__9() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Tactic_apply_x3f___closed__2; +x_2 = lean_unsigned_to_nat(1022u); +x_3 = l_Lean_Parser_Tactic_apply_x3f___closed__8; +x_4 = lean_alloc_ctor(3, 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_Lean_Parser_Tactic_apply_x3f() { +_start: +{ +lean_object* x_1; +x_1 = l_Lean_Parser_Tactic_apply_x3f___closed__9; +return x_1; +} +} static lean_object* _init_l_Lean_Parser_Attr_simp___closed__1() { _start: { @@ -22915,6 +23189,66 @@ return x_28; } } } +static lean_object* _init_l_Lean_Parser_Syntax_exact_x3f___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("Syntax", 6); +return x_1; +} +} +static lean_object* _init_l_Lean_Parser_Syntax_exact_x3f___closed__2() { +_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_Parser_Tactic_withAnnotateState___closed__1; +x_2 = l_Lean_Parser_Tactic_withAnnotateState___closed__2; +x_3 = l_Lean_Parser_Syntax_exact_x3f___closed__1; +x_4 = l_Lean_Parser_Tactic_exact_x3f___closed__1; +x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); +return x_5; +} +} +static lean_object* _init_l_Lean_Parser_Syntax_exact_x3f___closed__3() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("exact\?%", 7); +return x_1; +} +} +static lean_object* _init_l_Lean_Parser_Syntax_exact_x3f___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Parser_Syntax_exact_x3f___closed__3; +x_2 = lean_alloc_ctor(5, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Parser_Syntax_exact_x3f___closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Syntax_exact_x3f___closed__2; +x_2 = lean_unsigned_to_nat(1024u); +x_3 = l_Lean_Parser_Syntax_exact_x3f___closed__4; +x_4 = lean_alloc_ctor(3, 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_Lean_Parser_Syntax_exact_x3f() { +_start: +{ +lean_object* x_1; +x_1 = l_Lean_Parser_Syntax_exact_x3f___closed__5; +return x_1; +} +} lean_object* initialize_Init_Notation(uint8_t builtin, lean_object*); static bool _G_initialized = false; LEAN_EXPORT lean_object* initialize_Init_Tactics(uint8_t builtin, lean_object* w) { @@ -25812,6 +26146,46 @@ l_Lean_Parser_Tactic_applyRules___closed__9 = _init_l_Lean_Parser_Tactic_applyRu lean_mark_persistent(l_Lean_Parser_Tactic_applyRules___closed__9); l_Lean_Parser_Tactic_applyRules = _init_l_Lean_Parser_Tactic_applyRules(); lean_mark_persistent(l_Lean_Parser_Tactic_applyRules); +l_Lean_Parser_Tactic_exact_x3f___closed__1 = _init_l_Lean_Parser_Tactic_exact_x3f___closed__1(); +lean_mark_persistent(l_Lean_Parser_Tactic_exact_x3f___closed__1); +l_Lean_Parser_Tactic_exact_x3f___closed__2 = _init_l_Lean_Parser_Tactic_exact_x3f___closed__2(); +lean_mark_persistent(l_Lean_Parser_Tactic_exact_x3f___closed__2); +l_Lean_Parser_Tactic_exact_x3f___closed__3 = _init_l_Lean_Parser_Tactic_exact_x3f___closed__3(); +lean_mark_persistent(l_Lean_Parser_Tactic_exact_x3f___closed__3); +l_Lean_Parser_Tactic_exact_x3f___closed__4 = _init_l_Lean_Parser_Tactic_exact_x3f___closed__4(); +lean_mark_persistent(l_Lean_Parser_Tactic_exact_x3f___closed__4); +l_Lean_Parser_Tactic_exact_x3f___closed__5 = _init_l_Lean_Parser_Tactic_exact_x3f___closed__5(); +lean_mark_persistent(l_Lean_Parser_Tactic_exact_x3f___closed__5); +l_Lean_Parser_Tactic_exact_x3f___closed__6 = _init_l_Lean_Parser_Tactic_exact_x3f___closed__6(); +lean_mark_persistent(l_Lean_Parser_Tactic_exact_x3f___closed__6); +l_Lean_Parser_Tactic_exact_x3f___closed__7 = _init_l_Lean_Parser_Tactic_exact_x3f___closed__7(); +lean_mark_persistent(l_Lean_Parser_Tactic_exact_x3f___closed__7); +l_Lean_Parser_Tactic_exact_x3f___closed__8 = _init_l_Lean_Parser_Tactic_exact_x3f___closed__8(); +lean_mark_persistent(l_Lean_Parser_Tactic_exact_x3f___closed__8); +l_Lean_Parser_Tactic_exact_x3f___closed__9 = _init_l_Lean_Parser_Tactic_exact_x3f___closed__9(); +lean_mark_persistent(l_Lean_Parser_Tactic_exact_x3f___closed__9); +l_Lean_Parser_Tactic_exact_x3f = _init_l_Lean_Parser_Tactic_exact_x3f(); +lean_mark_persistent(l_Lean_Parser_Tactic_exact_x3f); +l_Lean_Parser_Tactic_apply_x3f___closed__1 = _init_l_Lean_Parser_Tactic_apply_x3f___closed__1(); +lean_mark_persistent(l_Lean_Parser_Tactic_apply_x3f___closed__1); +l_Lean_Parser_Tactic_apply_x3f___closed__2 = _init_l_Lean_Parser_Tactic_apply_x3f___closed__2(); +lean_mark_persistent(l_Lean_Parser_Tactic_apply_x3f___closed__2); +l_Lean_Parser_Tactic_apply_x3f___closed__3 = _init_l_Lean_Parser_Tactic_apply_x3f___closed__3(); +lean_mark_persistent(l_Lean_Parser_Tactic_apply_x3f___closed__3); +l_Lean_Parser_Tactic_apply_x3f___closed__4 = _init_l_Lean_Parser_Tactic_apply_x3f___closed__4(); +lean_mark_persistent(l_Lean_Parser_Tactic_apply_x3f___closed__4); +l_Lean_Parser_Tactic_apply_x3f___closed__5 = _init_l_Lean_Parser_Tactic_apply_x3f___closed__5(); +lean_mark_persistent(l_Lean_Parser_Tactic_apply_x3f___closed__5); +l_Lean_Parser_Tactic_apply_x3f___closed__6 = _init_l_Lean_Parser_Tactic_apply_x3f___closed__6(); +lean_mark_persistent(l_Lean_Parser_Tactic_apply_x3f___closed__6); +l_Lean_Parser_Tactic_apply_x3f___closed__7 = _init_l_Lean_Parser_Tactic_apply_x3f___closed__7(); +lean_mark_persistent(l_Lean_Parser_Tactic_apply_x3f___closed__7); +l_Lean_Parser_Tactic_apply_x3f___closed__8 = _init_l_Lean_Parser_Tactic_apply_x3f___closed__8(); +lean_mark_persistent(l_Lean_Parser_Tactic_apply_x3f___closed__8); +l_Lean_Parser_Tactic_apply_x3f___closed__9 = _init_l_Lean_Parser_Tactic_apply_x3f___closed__9(); +lean_mark_persistent(l_Lean_Parser_Tactic_apply_x3f___closed__9); +l_Lean_Parser_Tactic_apply_x3f = _init_l_Lean_Parser_Tactic_apply_x3f(); +lean_mark_persistent(l_Lean_Parser_Tactic_apply_x3f); l_Lean_Parser_Attr_simp___closed__1 = _init_l_Lean_Parser_Attr_simp___closed__1(); lean_mark_persistent(l_Lean_Parser_Attr_simp___closed__1); l_Lean_Parser_Attr_simp___closed__2 = _init_l_Lean_Parser_Attr_simp___closed__2(); @@ -26028,6 +26402,18 @@ l_term_____x5b___x5d_x27_____closed__7 = _init_l_term_____x5b___x5d_x27_____clos lean_mark_persistent(l_term_____x5b___x5d_x27_____closed__7); l_term_____x5b___x5d_x27__ = _init_l_term_____x5b___x5d_x27__(); lean_mark_persistent(l_term_____x5b___x5d_x27__); +l_Lean_Parser_Syntax_exact_x3f___closed__1 = _init_l_Lean_Parser_Syntax_exact_x3f___closed__1(); +lean_mark_persistent(l_Lean_Parser_Syntax_exact_x3f___closed__1); +l_Lean_Parser_Syntax_exact_x3f___closed__2 = _init_l_Lean_Parser_Syntax_exact_x3f___closed__2(); +lean_mark_persistent(l_Lean_Parser_Syntax_exact_x3f___closed__2); +l_Lean_Parser_Syntax_exact_x3f___closed__3 = _init_l_Lean_Parser_Syntax_exact_x3f___closed__3(); +lean_mark_persistent(l_Lean_Parser_Syntax_exact_x3f___closed__3); +l_Lean_Parser_Syntax_exact_x3f___closed__4 = _init_l_Lean_Parser_Syntax_exact_x3f___closed__4(); +lean_mark_persistent(l_Lean_Parser_Syntax_exact_x3f___closed__4); +l_Lean_Parser_Syntax_exact_x3f___closed__5 = _init_l_Lean_Parser_Syntax_exact_x3f___closed__5(); +lean_mark_persistent(l_Lean_Parser_Syntax_exact_x3f___closed__5); +l_Lean_Parser_Syntax_exact_x3f = _init_l_Lean_Parser_Syntax_exact_x3f(); +lean_mark_persistent(l_Lean_Parser_Syntax_exact_x3f); return lean_io_result_mk_ok(lean_box(0)); } #ifdef __cplusplus diff --git a/stage0/stdlib/Lean/Class.c b/stage0/stdlib/Lean/Class.c index e98ffe32d3..63a859db5a 100644 --- a/stage0/stdlib/Lean/Class.c +++ b/stage0/stdlib/Lean/Class.c @@ -2712,7 +2712,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(1708u); +x_3 = lean_unsigned_to_nat(1727u); 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); @@ -2733,7 +2733,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(1697u); +x_3 = lean_unsigned_to_nat(1716u); 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/LCNF/FVarUtil.c b/stage0/stdlib/Lean/Compiler/LCNF/FVarUtil.c index af6f6537d3..45e219ca6e 100644 --- a/stage0/stdlib/Lean/Compiler/LCNF/FVarUtil.c +++ b/stage0/stdlib/Lean/Compiler/LCNF/FVarUtil.c @@ -438,7 +438,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(1644u); +x_3 = lean_unsigned_to_nat(1663u); 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); @@ -517,7 +517,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(1633u); +x_3 = lean_unsigned_to_nat(1652u); 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); @@ -633,7 +633,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(1728u); +x_3 = lean_unsigned_to_nat(1747u); 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); @@ -771,7 +771,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(1708u); +x_3 = lean_unsigned_to_nat(1727u); 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/Data/Lsp/Diagnostics.c b/stage0/stdlib/Lean/Data/Lsp/Diagnostics.c index 8705fd2c3d..d5fe15c478 100644 --- a/stage0/stdlib/Lean/Data/Lsp/Diagnostics.c +++ b/stage0/stdlib/Lean/Data/Lsp/Diagnostics.c @@ -24,7 +24,6 @@ static lean_object* l_Lean_Lsp_instInhabitedDiagnosticCode___closed__1; LEAN_EXPORT lean_object* l_Lean_Json_getObjValAs_x3f___at___private_Lean_Data_Lsp_Diagnostics_0__Lean_Lsp_fromJsonDiagnosticWith____x40_Lean_Data_Lsp_Diagnostics___hyg_1195____spec__7(lean_object*, lean_object*); static lean_object* l___private_Lean_Data_Lsp_Diagnostics_0__Lean_Lsp_fromJsonDiagnosticRelatedInformation____x40_Lean_Data_Lsp_Diagnostics___hyg_659____closed__7; lean_object* lean_mk_empty_array_with_capacity(lean_object*); -LEAN_EXPORT uint8_t l___private_Init_Data_Option_Basic_0__Option_beqOption____x40_Init_Data_Option_Basic___hyg_158____at___private_Lean_Data_Lsp_Diagnostics_0__Lean_Lsp_beqPublishDiagnosticsParams____x40_Lean_Data_Lsp_Diagnostics___hyg_1637____spec__1(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Json_opt___at___private_Lean_Data_Lsp_Diagnostics_0__Lean_Lsp_toJsonPublishDiagnosticsParams____x40_Lean_Data_Lsp_Diagnostics___hyg_1730____spec__1___boxed(lean_object*, lean_object*); static lean_object* l_Lean_Json_getObjValAs_x3f___at___private_Lean_Data_Lsp_Diagnostics_0__Lean_Lsp_fromJsonDiagnosticWith____x40_Lean_Data_Lsp_Diagnostics___hyg_1195____spec__1___closed__9; LEAN_EXPORT lean_object* l_Lean_Json_getObjValAs_x3f___at___private_Lean_Data_Lsp_Diagnostics_0__Lean_Lsp_fromJsonDiagnosticWith____x40_Lean_Data_Lsp_Diagnostics___hyg_1195____spec__3(lean_object*, lean_object*); @@ -74,7 +73,6 @@ LEAN_EXPORT lean_object* l_Array_isEqvAux___at___private_Lean_Data_Lsp_Diagnosti LEAN_EXPORT lean_object* l_Lean_Lsp_instFromJsonDiagnosticTag___boxed(lean_object*); lean_object* l_Lean_Json_getObjValAs_x3f___at_Lean_JsonRpc_instFromJsonMessage___spec__3(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Lsp_instInhabitedPublishDiagnosticsParams; -LEAN_EXPORT uint8_t l___private_Lean_Data_Lsp_Diagnostics_0__Lean_Lsp_beqDiagnosticWith____x40_Lean_Data_Lsp_Diagnostics___hyg_884____at___private_Lean_Data_Lsp_Diagnostics_0__Lean_Lsp_beqPublishDiagnosticsParams____x40_Lean_Data_Lsp_Diagnostics___hyg_1637____spec__2(lean_object*, lean_object*); lean_object* l_Lean_Json_getObjValAs_x3f___at___private_Lean_Data_Lsp_Basic_0__Lean_Lsp_fromJsonLocationLink____x40_Lean_Data_Lsp_Basic___hyg_1335____spec__1(lean_object*, lean_object*); static lean_object* l___private_Lean_Data_Lsp_Diagnostics_0__Lean_Lsp_fromJsonDiagnosticWith____x40_Lean_Data_Lsp_Diagnostics___hyg_1195____rarg___closed__22; static lean_object* l___private_Lean_Data_Lsp_Diagnostics_0__Lean_Lsp_fromJsonDiagnosticWith____x40_Lean_Data_Lsp_Diagnostics___hyg_1195____rarg___closed__11; @@ -95,6 +93,7 @@ lean_object* l_Lean_Json_opt___at___private_Lean_Data_Lsp_Basic_0__Lean_Lsp_toJs static lean_object* l___private_Lean_Data_Lsp_Diagnostics_0__Lean_Lsp_fromJsonDiagnosticRelatedInformation____x40_Lean_Data_Lsp_Diagnostics___hyg_659____closed__12; lean_object* l_Lean_Json_getObjValAs_x3f___at___private_Lean_Data_Lsp_Basic_0__Lean_Lsp_fromJsonLocation____x40_Lean_Data_Lsp_Basic___hyg_1132____spec__1(lean_object*, lean_object*); static lean_object* l___private_Lean_Data_Lsp_Diagnostics_0__Lean_Lsp_fromJsonDiagnosticRelatedInformation____x40_Lean_Data_Lsp_Diagnostics___hyg_659____closed__14; +LEAN_EXPORT lean_object* l_Array_isEqvAux___at___private_Lean_Data_Lsp_Diagnostics_0__Lean_Lsp_beqPublishDiagnosticsParams____x40_Lean_Data_Lsp_Diagnostics___hyg_1637____spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Lsp_instToJsonDiagnosticSeverity___closed__5; static lean_object* l_Lean_Lsp_instFromJsonDiagnosticCode___closed__1; static lean_object* l___private_Lean_Data_Lsp_Diagnostics_0__Lean_Lsp_fromJsonDiagnosticWith____x40_Lean_Data_Lsp_Diagnostics___hyg_1195____rarg___closed__15; @@ -165,6 +164,7 @@ lean_object* l_Lean_Json_getObjValD(lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Data_Lsp_Diagnostics_0__Lean_Lsp_fromJsonDiagnosticWith____x40_Lean_Data_Lsp_Diagnostics___hyg_1195____rarg___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Lsp_DiagnosticSeverity_toCtorIdx___boxed(lean_object*); LEAN_EXPORT lean_object* l_Lean_Lsp_instBEqDiagnosticTag; +LEAN_EXPORT lean_object* l___private_Lean_Data_Lsp_Diagnostics_0__Lean_Lsp_beqDiagnosticWith____x40_Lean_Data_Lsp_Diagnostics___hyg_884____at___private_Lean_Data_Lsp_Diagnostics_0__Lean_Lsp_beqPublishDiagnosticsParams____x40_Lean_Data_Lsp_Diagnostics___hyg_1637____spec__1___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Lsp_instToJsonDiagnosticWith(lean_object*); static lean_object* l_Lean_Lsp_instInhabitedPublishDiagnosticsParams___closed__1; static lean_object* l_Lean_Lsp_instToJsonPublishDiagnosticsParams___closed__1; @@ -173,7 +173,6 @@ static lean_object* l___private_Lean_Data_Lsp_Diagnostics_0__Lean_Lsp_fromJsonPu static lean_object* l___private_Lean_Data_Lsp_Diagnostics_0__Lean_Lsp_fromJsonPublishDiagnosticsParams____x40_Lean_Data_Lsp_Diagnostics___hyg_1783____closed__1; LEAN_EXPORT lean_object* l_Lean_Lsp_DiagnosticSeverity_noConfusion___rarg___lambda__1___boxed(lean_object*); LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Data_Lsp_Diagnostics_0__Lean_Lsp_toJsonDiagnosticWith____x40_Lean_Data_Lsp_Diagnostics___hyg_1088____spec__4___boxed(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Init_Data_Option_Basic_0__Option_beqOption____x40_Init_Data_Option_Basic___hyg_158____at___private_Lean_Data_Lsp_Diagnostics_0__Lean_Lsp_beqPublishDiagnosticsParams____x40_Lean_Data_Lsp_Diagnostics___hyg_1637____spec__1___boxed(lean_object*, lean_object*); static lean_object* l___private_Lean_Data_Lsp_Diagnostics_0__Lean_Lsp_fromJsonPublishDiagnosticsParams____x40_Lean_Data_Lsp_Diagnostics___hyg_1783____closed__8; LEAN_EXPORT uint8_t l___private_Lean_Data_Lsp_Diagnostics_0__Lean_Lsp_beqDiagnosticSeverity____x40_Lean_Data_Lsp_Diagnostics___hyg_18_(uint8_t, uint8_t); LEAN_EXPORT lean_object* l___private_Init_Data_Option_Basic_0__Option_beqOption____x40_Init_Data_Option_Basic___hyg_158____at___private_Lean_Data_Lsp_Diagnostics_0__Lean_Lsp_beqDiagnosticWith____x40_Lean_Data_Lsp_Diagnostics___hyg_884____spec__6___boxed(lean_object*, lean_object*); @@ -192,7 +191,6 @@ LEAN_EXPORT lean_object* l___private_Lean_Data_Lsp_Diagnostics_0__Lean_Lsp_fromJ static lean_object* l_Lean_Lsp_instInhabitedDiagnosticRelatedInformation___closed__5; static lean_object* l_Lean_Lsp_instBEqDiagnosticSeverity___closed__1; static lean_object* l___private_Lean_Data_Lsp_Diagnostics_0__Lean_Lsp_fromJsonDiagnosticWith____x40_Lean_Data_Lsp_Diagnostics___hyg_1195____rarg___closed__25; -LEAN_EXPORT lean_object* l_Array_isEqvAux___at___private_Lean_Data_Lsp_Diagnostics_0__Lean_Lsp_beqPublishDiagnosticsParams____x40_Lean_Data_Lsp_Diagnostics___hyg_1637____spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Lsp_instToJsonDiagnosticWith___rarg(lean_object*); LEAN_EXPORT lean_object* l_Lean_Lsp_instBEqPublishDiagnosticsParams; lean_object* l_Lean_Json_getObjValAs_x3f___at___private_Lean_Data_Lsp_Basic_0__Lean_Lsp_fromJsonLocation____x40_Lean_Data_Lsp_Basic___hyg_1132____spec__2(lean_object*, lean_object*); @@ -207,7 +205,6 @@ LEAN_EXPORT uint8_t l___private_Lean_Data_Lsp_Diagnostics_0__Lean_Lsp_beqPublish static lean_object* l___private_Lean_Data_Lsp_Diagnostics_0__Lean_Lsp_fromJsonDiagnosticWith____x40_Lean_Data_Lsp_Diagnostics___hyg_1195____rarg___closed__34; static lean_object* l_Lean_Json_getObjValAs_x3f___at___private_Lean_Data_Lsp_Diagnostics_0__Lean_Lsp_fromJsonDiagnosticWith____x40_Lean_Data_Lsp_Diagnostics___hyg_1195____spec__1___closed__3; LEAN_EXPORT uint8_t l___private_Lean_Data_Lsp_Diagnostics_0__Lean_Lsp_beqDiagnosticCode____x40_Lean_Data_Lsp_Diagnostics___hyg_197_(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Lean_Data_Lsp_Diagnostics_0__Lean_Lsp_beqDiagnosticWith____x40_Lean_Data_Lsp_Diagnostics___hyg_884____at___private_Lean_Data_Lsp_Diagnostics_0__Lean_Lsp_beqPublishDiagnosticsParams____x40_Lean_Data_Lsp_Diagnostics___hyg_1637____spec__2___boxed(lean_object*, lean_object*); LEAN_EXPORT uint8_t l___private_Init_Data_Option_Basic_0__Option_beqOption____x40_Init_Data_Option_Basic___hyg_158____at___private_Lean_Data_Lsp_Diagnostics_0__Lean_Lsp_beqDiagnosticWith____x40_Lean_Data_Lsp_Diagnostics___hyg_884____spec__8(lean_object*, lean_object*); uint8_t l___private_Lean_Data_Lsp_Basic_0__Lean_Lsp_beqLocation____x40_Lean_Data_Lsp_Basic___hyg_1009_(lean_object*, lean_object*); static lean_object* l_Lean_Lsp_instToJsonDiagnosticSeverity___closed__4; @@ -229,7 +226,6 @@ static lean_object* l___private_Lean_Data_Lsp_Diagnostics_0__Lean_Lsp_fromJsonPu LEAN_EXPORT lean_object* l_Lean_Lsp_DiagnosticWith_tags_x3f___default; static lean_object* l___private_Lean_Data_Lsp_Diagnostics_0__Lean_Lsp_fromJsonDiagnosticWith____x40_Lean_Data_Lsp_Diagnostics___hyg_1195____rarg___closed__17; static lean_object* l___private_Lean_Data_Lsp_Diagnostics_0__Lean_Lsp_fromJsonPublishDiagnosticsParams____x40_Lean_Data_Lsp_Diagnostics___hyg_1783____closed__12; -LEAN_EXPORT uint8_t l_Array_isEqvAux___at___private_Lean_Data_Lsp_Diagnostics_0__Lean_Lsp_beqPublishDiagnosticsParams____x40_Lean_Data_Lsp_Diagnostics___hyg_1637____spec__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Lsp_instInhabitedDiagnosticRelatedInformation___closed__3; static lean_object* l_Lean_Lsp_instFromJsonDiagnosticSeverity___closed__5; LEAN_EXPORT lean_object* l___private_Lean_Data_Lsp_Diagnostics_0__Lean_Lsp_fromJsonDiagnosticWith____x40_Lean_Data_Lsp_Diagnostics___hyg_1195____at___private_Lean_Data_Lsp_Diagnostics_0__Lean_Lsp_fromJsonPublishDiagnosticsParams____x40_Lean_Data_Lsp_Diagnostics___hyg_1783____spec__3___boxed(lean_object*); @@ -265,6 +261,7 @@ static lean_object* l___private_Lean_Data_Lsp_Diagnostics_0__Lean_Lsp_fromJsonPu LEAN_EXPORT uint8_t l___private_Init_Data_Option_Basic_0__Option_beqOption____x40_Init_Data_Option_Basic___hyg_158____at___private_Lean_Data_Lsp_Diagnostics_0__Lean_Lsp_beqDiagnosticWith____x40_Lean_Data_Lsp_Diagnostics___hyg_884____spec__4(lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Data_Lsp_Diagnostics_0__Lean_Lsp_toJsonPublishDiagnosticsParams____x40_Lean_Data_Lsp_Diagnostics___hyg_1730_(lean_object*); static lean_object* l___private_Lean_Data_Lsp_Diagnostics_0__Lean_Lsp_fromJsonDiagnosticWith____x40_Lean_Data_Lsp_Diagnostics___hyg_1195____rarg___closed__30; +LEAN_EXPORT uint8_t l___private_Lean_Data_Lsp_Diagnostics_0__Lean_Lsp_beqDiagnosticWith____x40_Lean_Data_Lsp_Diagnostics___hyg_884____at___private_Lean_Data_Lsp_Diagnostics_0__Lean_Lsp_beqPublishDiagnosticsParams____x40_Lean_Data_Lsp_Diagnostics___hyg_1637____spec__1(lean_object*, lean_object*); static lean_object* l_Lean_Lsp_instInhabitedDiagnosticRelatedInformation___closed__1; static lean_object* l_Lean_Lsp_instFromJsonDiagnosticSeverity___closed__6; LEAN_EXPORT lean_object* l_Lean_Lsp_DiagnosticSeverity_toCtorIdx(uint8_t); @@ -306,6 +303,7 @@ static lean_object* l___private_Lean_Data_Lsp_Diagnostics_0__Lean_Lsp_fromJsonDi LEAN_EXPORT lean_object* l___private_Lean_Data_Lsp_Diagnostics_0__Lean_Lsp_toJsonDiagnosticWith____x40_Lean_Data_Lsp_Diagnostics___hyg_1088_(lean_object*); uint8_t lean_usize_dec_lt(size_t, size_t); static lean_object* l___private_Lean_Data_Lsp_Diagnostics_0__Lean_Lsp_fromJsonDiagnosticWith____x40_Lean_Data_Lsp_Diagnostics___hyg_1195____rarg___closed__16; +uint8_t l___private_Init_Data_Option_Basic_0__Option_beqOption____x40_Init_Data_Option_Basic___hyg_158____at___private_Init_Omega_Constraint_0__Lean_Omega_beqConstraint____x40_Init_Omega_Constraint___hyg_65____spec__1(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Lsp_DiagnosticTag_noConfusion(lean_object*); lean_object* lean_nat_add(lean_object*, lean_object*); static lean_object* l_Lean_Lsp_instFromJsonPublishDiagnosticsParams___closed__1; @@ -317,6 +315,7 @@ lean_object* l_Lean_Json_pretty(lean_object*, lean_object*); static lean_object* l___private_Lean_Data_Lsp_Diagnostics_0__Lean_Lsp_fromJsonDiagnosticWith____x40_Lean_Data_Lsp_Diagnostics___hyg_1195____rarg___closed__43; static lean_object* l_Lean_Lsp_instToJsonDiagnosticSeverity___closed__6; LEAN_EXPORT lean_object* l_Array_isEqvAux___at___private_Lean_Data_Lsp_Diagnostics_0__Lean_Lsp_beqDiagnosticWith____x40_Lean_Data_Lsp_Diagnostics___hyg_884____spec__7___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT uint8_t l_Array_isEqvAux___at___private_Lean_Data_Lsp_Diagnostics_0__Lean_Lsp_beqPublishDiagnosticsParams____x40_Lean_Data_Lsp_Diagnostics___hyg_1637____spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_array_uset(lean_object*, size_t, lean_object*); LEAN_EXPORT lean_object* l_Lean_Json_getObjValAs_x3f___at___private_Lean_Data_Lsp_Diagnostics_0__Lean_Lsp_fromJsonDiagnosticRelatedInformation____x40_Lean_Data_Lsp_Diagnostics___hyg_659____spec__1(lean_object*, lean_object*); static lean_object* l___private_Lean_Data_Lsp_Diagnostics_0__Lean_Lsp_fromJsonDiagnosticWith____x40_Lean_Data_Lsp_Diagnostics___hyg_1195____rarg___closed__35; @@ -4746,44 +4745,7 @@ x_1 = l_Lean_Lsp_instInhabitedPublishDiagnosticsParams___closed__2; return x_1; } } -LEAN_EXPORT uint8_t l___private_Init_Data_Option_Basic_0__Option_beqOption____x40_Init_Data_Option_Basic___hyg_158____at___private_Lean_Data_Lsp_Diagnostics_0__Lean_Lsp_beqPublishDiagnosticsParams____x40_Lean_Data_Lsp_Diagnostics___hyg_1637____spec__1(lean_object* x_1, lean_object* x_2) { -_start: -{ -if (lean_obj_tag(x_1) == 0) -{ -if (lean_obj_tag(x_2) == 0) -{ -uint8_t x_3; -x_3 = 1; -return x_3; -} -else -{ -uint8_t x_4; -x_4 = 0; -return x_4; -} -} -else -{ -if (lean_obj_tag(x_2) == 0) -{ -uint8_t x_5; -x_5 = 0; -return x_5; -} -else -{ -lean_object* x_6; lean_object* x_7; uint8_t x_8; -x_6 = lean_ctor_get(x_1, 0); -x_7 = lean_ctor_get(x_2, 0); -x_8 = lean_int_dec_eq(x_6, x_7); -return x_8; -} -} -} -} -LEAN_EXPORT uint8_t l___private_Lean_Data_Lsp_Diagnostics_0__Lean_Lsp_beqDiagnosticWith____x40_Lean_Data_Lsp_Diagnostics___hyg_884____at___private_Lean_Data_Lsp_Diagnostics_0__Lean_Lsp_beqPublishDiagnosticsParams____x40_Lean_Data_Lsp_Diagnostics___hyg_1637____spec__2(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT uint8_t l___private_Lean_Data_Lsp_Diagnostics_0__Lean_Lsp_beqDiagnosticWith____x40_Lean_Data_Lsp_Diagnostics___hyg_884____at___private_Lean_Data_Lsp_Diagnostics_0__Lean_Lsp_beqPublishDiagnosticsParams____x40_Lean_Data_Lsp_Diagnostics___hyg_1637____spec__1(lean_object* x_1, lean_object* x_2) { _start: { 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; uint8_t x_21; @@ -5003,7 +4965,7 @@ return x_37; } } } -LEAN_EXPORT uint8_t l_Array_isEqvAux___at___private_Lean_Data_Lsp_Diagnostics_0__Lean_Lsp_beqPublishDiagnosticsParams____x40_Lean_Data_Lsp_Diagnostics___hyg_1637____spec__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_EXPORT uint8_t l_Array_isEqvAux___at___private_Lean_Data_Lsp_Diagnostics_0__Lean_Lsp_beqPublishDiagnosticsParams____x40_Lean_Data_Lsp_Diagnostics___hyg_1637____spec__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) { _start: { lean_object* x_7; uint8_t x_8; @@ -5022,7 +4984,7 @@ else lean_object* x_10; lean_object* x_11; uint8_t x_12; x_10 = lean_array_fget(x_4, x_6); x_11 = lean_array_fget(x_5, x_6); -x_12 = l___private_Lean_Data_Lsp_Diagnostics_0__Lean_Lsp_beqDiagnosticWith____x40_Lean_Data_Lsp_Diagnostics___hyg_884____at___private_Lean_Data_Lsp_Diagnostics_0__Lean_Lsp_beqPublishDiagnosticsParams____x40_Lean_Data_Lsp_Diagnostics___hyg_1637____spec__2(x_10, x_11); +x_12 = l___private_Lean_Data_Lsp_Diagnostics_0__Lean_Lsp_beqDiagnosticWith____x40_Lean_Data_Lsp_Diagnostics___hyg_884____at___private_Lean_Data_Lsp_Diagnostics_0__Lean_Lsp_beqPublishDiagnosticsParams____x40_Lean_Data_Lsp_Diagnostics___hyg_1637____spec__1(x_10, x_11); if (x_12 == 0) { uint8_t x_13; @@ -5077,7 +5039,7 @@ return x_10; else { uint8_t x_11; -x_11 = l___private_Init_Data_Option_Basic_0__Option_beqOption____x40_Init_Data_Option_Basic___hyg_158____at___private_Lean_Data_Lsp_Diagnostics_0__Lean_Lsp_beqPublishDiagnosticsParams____x40_Lean_Data_Lsp_Diagnostics___hyg_1637____spec__1(x_4, x_7); +x_11 = l___private_Init_Data_Option_Basic_0__Option_beqOption____x40_Init_Data_Option_Basic___hyg_158____at___private_Init_Omega_Constraint_0__Lean_Omega_beqConstraint____x40_Init_Omega_Constraint___hyg_65____spec__1(x_4, x_7); lean_dec(x_7); lean_dec(x_4); if (x_11 == 0) @@ -5108,7 +5070,7 @@ else { lean_object* x_17; uint8_t x_18; x_17 = lean_unsigned_to_nat(0u); -x_18 = l_Array_isEqvAux___at___private_Lean_Data_Lsp_Diagnostics_0__Lean_Lsp_beqPublishDiagnosticsParams____x40_Lean_Data_Lsp_Diagnostics___hyg_1637____spec__3(x_5, x_8, lean_box(0), x_5, x_8, x_17); +x_18 = l_Array_isEqvAux___at___private_Lean_Data_Lsp_Diagnostics_0__Lean_Lsp_beqPublishDiagnosticsParams____x40_Lean_Data_Lsp_Diagnostics___hyg_1637____spec__2(x_5, x_8, lean_box(0), x_5, x_8, x_17); lean_dec(x_8); lean_dec(x_5); return x_18; @@ -5117,31 +5079,20 @@ return x_18; } } } -LEAN_EXPORT lean_object* l___private_Init_Data_Option_Basic_0__Option_beqOption____x40_Init_Data_Option_Basic___hyg_158____at___private_Lean_Data_Lsp_Diagnostics_0__Lean_Lsp_beqPublishDiagnosticsParams____x40_Lean_Data_Lsp_Diagnostics___hyg_1637____spec__1___boxed(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l___private_Lean_Data_Lsp_Diagnostics_0__Lean_Lsp_beqDiagnosticWith____x40_Lean_Data_Lsp_Diagnostics___hyg_884____at___private_Lean_Data_Lsp_Diagnostics_0__Lean_Lsp_beqPublishDiagnosticsParams____x40_Lean_Data_Lsp_Diagnostics___hyg_1637____spec__1___boxed(lean_object* x_1, lean_object* x_2) { _start: { uint8_t x_3; lean_object* x_4; -x_3 = l___private_Init_Data_Option_Basic_0__Option_beqOption____x40_Init_Data_Option_Basic___hyg_158____at___private_Lean_Data_Lsp_Diagnostics_0__Lean_Lsp_beqPublishDiagnosticsParams____x40_Lean_Data_Lsp_Diagnostics___hyg_1637____spec__1(x_1, x_2); -lean_dec(x_2); -lean_dec(x_1); +x_3 = l___private_Lean_Data_Lsp_Diagnostics_0__Lean_Lsp_beqDiagnosticWith____x40_Lean_Data_Lsp_Diagnostics___hyg_884____at___private_Lean_Data_Lsp_Diagnostics_0__Lean_Lsp_beqPublishDiagnosticsParams____x40_Lean_Data_Lsp_Diagnostics___hyg_1637____spec__1(x_1, x_2); x_4 = lean_box(x_3); return x_4; } } -LEAN_EXPORT lean_object* l___private_Lean_Data_Lsp_Diagnostics_0__Lean_Lsp_beqDiagnosticWith____x40_Lean_Data_Lsp_Diagnostics___hyg_884____at___private_Lean_Data_Lsp_Diagnostics_0__Lean_Lsp_beqPublishDiagnosticsParams____x40_Lean_Data_Lsp_Diagnostics___hyg_1637____spec__2___boxed(lean_object* x_1, lean_object* x_2) { -_start: -{ -uint8_t x_3; lean_object* x_4; -x_3 = l___private_Lean_Data_Lsp_Diagnostics_0__Lean_Lsp_beqDiagnosticWith____x40_Lean_Data_Lsp_Diagnostics___hyg_884____at___private_Lean_Data_Lsp_Diagnostics_0__Lean_Lsp_beqPublishDiagnosticsParams____x40_Lean_Data_Lsp_Diagnostics___hyg_1637____spec__2(x_1, x_2); -x_4 = lean_box(x_3); -return x_4; -} -} -LEAN_EXPORT lean_object* l_Array_isEqvAux___at___private_Lean_Data_Lsp_Diagnostics_0__Lean_Lsp_beqPublishDiagnosticsParams____x40_Lean_Data_Lsp_Diagnostics___hyg_1637____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_EXPORT lean_object* l_Array_isEqvAux___at___private_Lean_Data_Lsp_Diagnostics_0__Lean_Lsp_beqPublishDiagnosticsParams____x40_Lean_Data_Lsp_Diagnostics___hyg_1637____spec__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) { _start: { uint8_t x_7; lean_object* x_8; -x_7 = l_Array_isEqvAux___at___private_Lean_Data_Lsp_Diagnostics_0__Lean_Lsp_beqPublishDiagnosticsParams____x40_Lean_Data_Lsp_Diagnostics___hyg_1637____spec__3(x_1, x_2, x_3, x_4, x_5, x_6); +x_7 = l_Array_isEqvAux___at___private_Lean_Data_Lsp_Diagnostics_0__Lean_Lsp_beqPublishDiagnosticsParams____x40_Lean_Data_Lsp_Diagnostics___hyg_1637____spec__2(x_1, x_2, x_3, x_4, x_5, x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_2); diff --git a/stage0/stdlib/Lean/Data/Lsp/Utf16.c b/stage0/stdlib/Lean/Data/Lsp/Utf16.c index 6888549d07..4497616ac9 100644 --- a/stage0/stdlib/Lean/Data/Lsp/Utf16.c +++ b/stage0/stdlib/Lean/Data/Lsp/Utf16.c @@ -13,6 +13,7 @@ #ifdef __cplusplus extern "C" { #endif +LEAN_EXPORT lean_object* l_Lean_FileMap_utf8RangeToLspRange(lean_object*, lean_object*); uint32_t lean_string_utf8_get(lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Data_Lsp_Utf16_0__Lean_FileMap_lineStartPos(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_String_utf16PosToCodepointPos___boxed(lean_object*, lean_object*); @@ -32,6 +33,7 @@ lean_object* lean_string_utf8_byte_size(lean_object*); LEAN_EXPORT lean_object* l_Lean_FileMap_lspPosToUtf8Pos(lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Data_Lsp_Utf16_0__Lean_FileMap_lineStartPos___boxed(lean_object*, lean_object*); lean_object* lean_string_utf8_next(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_FileMap_utf8RangeToLspRange___boxed(lean_object*, lean_object*); uint8_t lean_uint32_dec_le(uint32_t, uint32_t); LEAN_EXPORT lean_object* l___private_Lean_Data_Lsp_Utf16_0__String_codepointPosToUtf16PosFromAux___boxed(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Data_Lsp_Utf16_0__String_utf16PosToCodepointPosFromAux(lean_object*, lean_object*, lean_object*, lean_object*); @@ -467,6 +469,30 @@ lean_dec(x_1); return x_3; } } +LEAN_EXPORT lean_object* l_Lean_FileMap_utf8RangeToLspRange(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; +x_3 = lean_ctor_get(x_2, 0); +x_4 = l_Lean_FileMap_utf8PosToLspPos(x_1, x_3); +x_5 = lean_ctor_get(x_2, 1); +x_6 = l_Lean_FileMap_utf8PosToLspPos(x_1, x_5); +x_7 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_7, 0, x_4); +lean_ctor_set(x_7, 1, x_6); +return x_7; +} +} +LEAN_EXPORT lean_object* l_Lean_FileMap_utf8RangeToLspRange___boxed(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; +x_3 = l_Lean_FileMap_utf8RangeToLspRange(x_1, x_2); +lean_dec(x_2); +lean_dec(x_1); +return x_3; +} +} LEAN_EXPORT lean_object* l_Lean_DeclarationRange_toLspRange(lean_object* x_1) { _start: { diff --git a/stage0/stdlib/Lean/Elab.c b/stage0/stdlib/Lean/Elab.c index e198a9015b..214fd6ef99 100644 --- a/stage0/stdlib/Lean/Elab.c +++ b/stage0/stdlib/Lean/Elab.c @@ -1,6 +1,6 @@ // Lean compiler output // Module: Lean.Elab -// Imports: Lean.Elab.Import Lean.Elab.Exception Lean.Elab.Config Lean.Elab.Command Lean.Elab.Term Lean.Elab.App Lean.Elab.Binders Lean.Elab.BinderPredicates Lean.Elab.LetRec Lean.Elab.Frontend Lean.Elab.BuiltinNotation Lean.Elab.Declaration Lean.Elab.Tactic Lean.Elab.Match Lean.Elab.Quotation Lean.Elab.Syntax Lean.Elab.Do Lean.Elab.StructInst Lean.Elab.Inductive Lean.Elab.Structure Lean.Elab.Print Lean.Elab.MutualDef Lean.Elab.AuxDef Lean.Elab.PreDefinition Lean.Elab.Deriving Lean.Elab.DeclarationRange Lean.Elab.Extra Lean.Elab.GenInjective Lean.Elab.BuiltinTerm Lean.Elab.Arg Lean.Elab.PatternVar Lean.Elab.ElabRules Lean.Elab.Macro Lean.Elab.Notation Lean.Elab.Mixfix Lean.Elab.MacroRules Lean.Elab.BuiltinCommand Lean.Elab.RecAppSyntax Lean.Elab.Eval Lean.Elab.Calc Lean.Elab.InheritDoc Lean.Elab.ParseImportsFast +// Imports: Lean.Elab.Import Lean.Elab.Exception Lean.Elab.Config Lean.Elab.Command Lean.Elab.Term Lean.Elab.App Lean.Elab.Binders Lean.Elab.BinderPredicates Lean.Elab.LetRec Lean.Elab.Frontend Lean.Elab.BuiltinNotation Lean.Elab.Declaration Lean.Elab.Tactic Lean.Elab.Match Lean.Elab.Quotation Lean.Elab.Syntax Lean.Elab.Do Lean.Elab.StructInst Lean.Elab.Inductive Lean.Elab.Structure Lean.Elab.Print Lean.Elab.MutualDef Lean.Elab.AuxDef Lean.Elab.PreDefinition Lean.Elab.Deriving Lean.Elab.DeclarationRange Lean.Elab.Extra Lean.Elab.GenInjective Lean.Elab.BuiltinTerm Lean.Elab.Arg Lean.Elab.PatternVar Lean.Elab.ElabRules Lean.Elab.Macro Lean.Elab.Notation Lean.Elab.Mixfix Lean.Elab.MacroRules Lean.Elab.BuiltinCommand Lean.Elab.RecAppSyntax Lean.Elab.Eval Lean.Elab.Calc Lean.Elab.InheritDoc Lean.Elab.ParseImportsFast Lean.Elab.GuardMsgs #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -55,6 +55,7 @@ lean_object* initialize_Lean_Elab_Eval(uint8_t builtin, lean_object*); lean_object* initialize_Lean_Elab_Calc(uint8_t builtin, lean_object*); lean_object* initialize_Lean_Elab_InheritDoc(uint8_t builtin, lean_object*); lean_object* initialize_Lean_Elab_ParseImportsFast(uint8_t builtin, lean_object*); +lean_object* initialize_Lean_Elab_GuardMsgs(uint8_t builtin, lean_object*); static bool _G_initialized = false; LEAN_EXPORT lean_object* initialize_Lean_Elab(uint8_t builtin, lean_object* w) { lean_object * res; @@ -186,6 +187,9 @@ lean_dec_ref(res); res = initialize_Lean_Elab_ParseImportsFast(builtin, lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +res = initialize_Lean_Elab_GuardMsgs(builtin, lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); return lean_io_result_mk_ok(lean_box(0)); } #ifdef __cplusplus diff --git a/stage0/stdlib/Lean/Elab/App.c b/stage0/stdlib/Lean/Elab/App.c index f93d06dafb..8417e309a2 100644 --- a/stage0/stdlib/Lean/Elab/App.c +++ b/stage0/stdlib/Lean/Elab/App.c @@ -223,6 +223,7 @@ lean_object* l_Lean_Syntax_getPos_x3f(lean_object*, uint8_t); lean_object* lean_array_fget(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_throwUnsupportedSyntax___at___private_Lean_Elab_App_0__Lean_Elab_Term_elabAppFn___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Term_elabAppArgs_elabAsElim_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*, lean_object*); +lean_object* l_Lean_Meta_forallTelescope___at_Lean_Meta_mapForallTelescope_x27___spec__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_App_0__Lean_Elab_Term_resolveLValAux___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_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_PersistentArray_forIn___at___private_Lean_Elab_App_0__Lean_Elab_Term_resolveLValAux___spec__3___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_Term_elabAppArgs___lambda__5___closed__7; @@ -687,7 +688,6 @@ static lean_object* l_List_foldlM___at_Lean_Elab_Term_ElabElim_revertArgs___spec LEAN_EXPORT lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_isNextOutParamOfLocalInstanceAndResult___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_Term_elabExplicit_declRange___closed__1; static lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_6707____lambda__2___closed__4; -lean_object* l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_getArg(lean_object*, lean_object*); lean_object* l___private_Init_Util_0__mkPanicMessageWithDecl(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_shouldPropagateExpectedTypeFor___closed__1; @@ -25404,7 +25404,7 @@ x_7 = lean_ctor_get(x_1, 1); lean_inc(x_7); x_8 = lean_alloc_closure((void*)(l_Lean_Elab_Term_elabAppArgs_getElabAsElimExtraArgsPos___lambda__1___boxed), 8, 1); lean_closure_set(x_8, 0, x_1); -x_9 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_7, x_8, x_2, x_3, x_4, x_5, x_6); +x_9 = l_Lean_Meta_forallTelescope___at_Lean_Meta_mapForallTelescope_x27___spec__1___rarg(x_7, x_8, x_2, x_3, x_4, x_5, x_6); return x_9; } } diff --git a/stage0/stdlib/Lean/Elab/ComputedFields.c b/stage0/stdlib/Lean/Elab/ComputedFields.c index e9ea933471..f6b2d61e9a 100644 --- a/stage0/stdlib/Lean/Elab/ComputedFields.c +++ b/stage0/stdlib/Lean/Elab/ComputedFields.c @@ -65,6 +65,7 @@ lean_object* l_Lean_Syntax_getPos_x3f(lean_object*, uint8_t); LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_ComputedFields_setComputedFields___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_array_fget(lean_object*, lean_object*); static lean_object* l_Lean_mkCasesOn___at_Lean_Elab_ComputedFields_overrideCasesOn___spec__5___closed__13; +lean_object* l_Lean_Meta_forallTelescope___at_Lean_Meta_mapForallTelescope_x27___spec__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_casesOnSuffix; lean_object* l_Lean_Syntax_getTailPos_x3f(lean_object*, uint8_t); LEAN_EXPORT lean_object* l_Lean_Elab_ComputedFields_overrideCasesOn___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -202,7 +203,6 @@ uint8_t l_Lean_isExtern(lean_object*, lean_object*); static lean_object* l_Lean_setImplementedBy___at_Lean_Elab_ComputedFields_overrideCasesOn___spec__12___closed__1; static lean_object* l_Lean_getConstInfoDefn___at_Lean_Elab_ComputedFields_overrideCasesOn___spec__1___closed__2; uint8_t l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(lean_object*, lean_object*); -lean_object* l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Init_Util_0__mkPanicMessageWithDecl(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecls___at_Lean_Elab_ComputedFields_mkComputedFieldOverrides___spec__4___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_mkCasesOn___at_Lean_Elab_ComputedFields_overrideCasesOn___spec__5___closed__17; @@ -227,6 +227,7 @@ lean_object* l_Lean_MessageData_ofExpr(lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecls_loop___at_Lean_Elab_ComputedFields_mkComputedFieldOverrides___spec__5___rarg___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_Lean_Meta_getConfig(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Meta_Basic_0__Lean_Meta_forallTelescopeReducingAuxAux___rarg(uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +uint8_t l_Lean_LocalDecl_isImplementationDetail(lean_object*); lean_object* l_Lean_Meta_whnfEasyCases___at_Lean_Meta_whnfCore_go___spec__3(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_Elab_ComputedFields_overrideCasesOn___spec__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_mkCasesOn___at_Lean_Elab_ComputedFields_overrideCasesOn___spec__5___closed__3; @@ -1003,7 +1004,20 @@ x_18 = lean_ctor_get_uint8(x_3, 4); if (x_18 == 0) { uint8_t x_19; +x_19 = !lean_is_exclusive(x_12); +if (x_19 == 0) +{ +lean_object* x_20; lean_object* x_21; lean_object* x_22; uint8_t x_23; +x_20 = lean_ctor_get(x_12, 1); +x_21 = lean_ctor_get(x_12, 0); +lean_dec(x_21); +x_22 = lean_ctor_get(x_13, 4); +lean_inc(x_22); +x_23 = l_Lean_LocalDecl_isImplementationDetail(x_13); lean_dec(x_13); +if (x_23 == 0) +{ +lean_dec(x_22); lean_dec(x_11); lean_dec(x_7); lean_dec(x_6); @@ -1011,46 +1025,74 @@ lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_1); -x_19 = !lean_is_exclusive(x_12); -if (x_19 == 0) -{ -lean_object* x_20; -x_20 = lean_ctor_get(x_12, 0); -lean_dec(x_20); lean_ctor_set(x_12, 0, x_2); return x_12; } else { -lean_object* x_21; lean_object* x_22; -x_21 = lean_ctor_get(x_12, 1); -lean_inc(x_21); -lean_dec(x_12); -x_22 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_22, 0, x_2); -lean_ctor_set(x_22, 1, x_21); -return x_22; -} -} -else -{ -lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; +lean_object* x_24; lean_object* x_25; +lean_free_object(x_12); lean_dec(x_2); -x_23 = lean_ctor_get(x_12, 1); -lean_inc(x_23); +x_24 = lean_box(0); +x_25 = l_Lean_Meta_whnfEasyCases___at_Lean_Elab_ComputedFields_getComputedFieldValue___spec__2___lambda__2(x_1, x_22, x_3, x_11, x_24, x_4, x_5, x_6, x_7, x_20); +return x_25; +} +} +else +{ +lean_object* x_26; lean_object* x_27; uint8_t x_28; +x_26 = lean_ctor_get(x_12, 1); +lean_inc(x_26); lean_dec(x_12); -x_24 = lean_ctor_get(x_13, 4); -lean_inc(x_24); +x_27 = lean_ctor_get(x_13, 4); +lean_inc(x_27); +x_28 = l_Lean_LocalDecl_isImplementationDetail(x_13); lean_dec(x_13); -x_25 = lean_box(0); -x_26 = l_Lean_Meta_whnfEasyCases___at_Lean_Elab_ComputedFields_getComputedFieldValue___spec__2___lambda__2(x_1, x_24, x_3, x_11, x_25, x_4, x_5, x_6, x_7, x_23); -return x_26; +if (x_28 == 0) +{ +lean_object* x_29; +lean_dec(x_27); +lean_dec(x_11); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_1); +x_29 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_29, 0, x_2); +lean_ctor_set(x_29, 1, x_26); +return x_29; +} +else +{ +lean_object* x_30; lean_object* x_31; +lean_dec(x_2); +x_30 = lean_box(0); +x_31 = l_Lean_Meta_whnfEasyCases___at_Lean_Elab_ComputedFields_getComputedFieldValue___spec__2___lambda__2(x_1, x_27, x_3, x_11, x_30, x_4, x_5, x_6, x_7, x_26); +return x_31; } } } else { -uint8_t x_27; +lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; +lean_dec(x_2); +x_32 = lean_ctor_get(x_12, 1); +lean_inc(x_32); +lean_dec(x_12); +x_33 = lean_ctor_get(x_13, 4); +lean_inc(x_33); +lean_dec(x_13); +x_34 = lean_box(0); +x_35 = l_Lean_Meta_whnfEasyCases___at_Lean_Elab_ComputedFields_getComputedFieldValue___spec__2___lambda__2(x_1, x_33, x_3, x_11, x_34, x_4, x_5, x_6, x_7, x_32); +return x_35; +} +} +} +else +{ +uint8_t x_36; lean_dec(x_11); lean_dec(x_7); lean_dec(x_6); @@ -1059,1137 +1101,1137 @@ lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_27 = !lean_is_exclusive(x_12); -if (x_27 == 0) +x_36 = !lean_is_exclusive(x_12); +if (x_36 == 0) { return x_12; } else { -lean_object* x_28; lean_object* x_29; lean_object* x_30; -x_28 = lean_ctor_get(x_12, 0); -x_29 = lean_ctor_get(x_12, 1); -lean_inc(x_29); -lean_inc(x_28); +lean_object* x_37; lean_object* x_38; lean_object* x_39; +x_37 = lean_ctor_get(x_12, 0); +x_38 = lean_ctor_get(x_12, 1); +lean_inc(x_38); +lean_inc(x_37); lean_dec(x_12); -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; +x_39 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_39, 0, x_37); +lean_ctor_set(x_39, 1, x_38); +return x_39; } } } case 2: { -lean_object* x_31; lean_object* x_32; lean_object* x_33; -x_31 = lean_ctor_get(x_2, 0); -lean_inc(x_31); -x_32 = l_Lean_getExprMVarAssignment_x3f___at___private_Lean_Meta_Basic_0__Lean_Meta_isClassQuick_x3f___spec__1(x_31, x_4, x_5, x_6, x_7, x_8); -x_33 = lean_ctor_get(x_32, 0); -lean_inc(x_33); -if (lean_obj_tag(x_33) == 0) +lean_object* x_40; lean_object* x_41; lean_object* x_42; +x_40 = lean_ctor_get(x_2, 0); +lean_inc(x_40); +x_41 = l_Lean_getExprMVarAssignment_x3f___at___private_Lean_Meta_Basic_0__Lean_Meta_isClassQuick_x3f___spec__1(x_40, x_4, x_5, x_6, x_7, x_8); +x_42 = lean_ctor_get(x_41, 0); +lean_inc(x_42); +if (lean_obj_tag(x_42) == 0) { -uint8_t x_34; +uint8_t x_43; lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_1); -x_34 = !lean_is_exclusive(x_32); -if (x_34 == 0) +x_43 = !lean_is_exclusive(x_41); +if (x_43 == 0) { -lean_object* x_35; -x_35 = lean_ctor_get(x_32, 0); -lean_dec(x_35); -lean_ctor_set(x_32, 0, x_2); -return x_32; +lean_object* x_44; +x_44 = lean_ctor_get(x_41, 0); +lean_dec(x_44); +lean_ctor_set(x_41, 0, x_2); +return x_41; } else { -lean_object* x_36; lean_object* x_37; -x_36 = lean_ctor_get(x_32, 1); -lean_inc(x_36); -lean_dec(x_32); -x_37 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_37, 0, x_2); -lean_ctor_set(x_37, 1, x_36); -return x_37; +lean_object* x_45; lean_object* x_46; +x_45 = lean_ctor_get(x_41, 1); +lean_inc(x_45); +lean_dec(x_41); +x_46 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_46, 0, x_2); +lean_ctor_set(x_46, 1, x_45); +return x_46; } } else { -lean_object* x_38; lean_object* x_39; +lean_object* x_47; lean_object* x_48; lean_dec(x_2); -x_38 = lean_ctor_get(x_32, 1); -lean_inc(x_38); -lean_dec(x_32); -x_39 = lean_ctor_get(x_33, 0); -lean_inc(x_39); -lean_dec(x_33); -x_2 = x_39; -x_8 = x_38; +x_47 = lean_ctor_get(x_41, 1); +lean_inc(x_47); +lean_dec(x_41); +x_48 = lean_ctor_get(x_42, 0); +lean_inc(x_48); +lean_dec(x_42); +x_2 = x_48; +x_8 = x_47; goto _start; } } case 4: { -lean_object* x_41; lean_object* x_42; +lean_object* x_50; lean_object* x_51; lean_dec(x_3); -x_41 = l_Lean_Meta_whnfEasyCases___at_Lean_Elab_ComputedFields_getComputedFieldValue___spec__2___closed__5; +x_50 = l_Lean_Meta_whnfEasyCases___at_Lean_Elab_ComputedFields_getComputedFieldValue___spec__2___closed__5; lean_inc(x_7); lean_inc(x_6); lean_inc(x_5); lean_inc(x_4); -x_42 = l_Lean_Meta_whnfEasyCases___at_Lean_Meta_whnfCore_go___spec__3(x_41, x_2, x_41, x_4, x_5, x_6, x_7, x_8); -if (lean_obj_tag(x_42) == 0) +x_51 = l_Lean_Meta_whnfEasyCases___at_Lean_Meta_whnfCore_go___spec__3(x_50, x_2, x_50, x_4, x_5, x_6, x_7, x_8); +if (lean_obj_tag(x_51) == 0) { -uint8_t x_43; -x_43 = !lean_is_exclusive(x_42); -if (x_43 == 0) +uint8_t x_52; +x_52 = !lean_is_exclusive(x_51); +if (x_52 == 0) { -lean_object* x_44; lean_object* x_45; uint8_t x_46; -x_44 = lean_ctor_get(x_42, 0); -x_45 = lean_ctor_get(x_42, 1); -lean_inc(x_44); -lean_inc(x_1); -x_46 = l_Lean_Expr_occurs(x_1, x_44); -if (x_46 == 0) -{ -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_1); -return x_42; -} -else -{ -lean_object* x_47; -lean_free_object(x_42); -lean_inc(x_7); -lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_4); -lean_inc(x_44); -x_47 = l_Lean_Meta_unfoldDefinition_x3f(x_44, x_4, x_5, x_6, x_7, x_45); -if (lean_obj_tag(x_47) == 0) -{ -lean_object* x_48; -x_48 = lean_ctor_get(x_47, 0); -lean_inc(x_48); -if (lean_obj_tag(x_48) == 0) -{ -uint8_t x_49; -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_1); -x_49 = !lean_is_exclusive(x_47); -if (x_49 == 0) -{ -lean_object* x_50; -x_50 = lean_ctor_get(x_47, 0); -lean_dec(x_50); -lean_ctor_set(x_47, 0, x_44); -return x_47; -} -else -{ -lean_object* x_51; lean_object* x_52; -x_51 = lean_ctor_get(x_47, 1); -lean_inc(x_51); -lean_dec(x_47); -x_52 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_52, 0, x_44); -lean_ctor_set(x_52, 1, x_51); -return x_52; -} -} -else -{ -lean_object* x_53; lean_object* x_54; lean_object* x_55; -lean_dec(x_44); -x_53 = lean_ctor_get(x_47, 1); +lean_object* x_53; lean_object* x_54; uint8_t x_55; +x_53 = lean_ctor_get(x_51, 0); +x_54 = lean_ctor_get(x_51, 1); lean_inc(x_53); -lean_dec(x_47); -x_54 = lean_ctor_get(x_48, 0); -lean_inc(x_54); -lean_dec(x_48); -x_55 = l_Lean_Meta_whnfHeadPred___at_Lean_Elab_ComputedFields_getComputedFieldValue___spec__1(x_1, x_54, x_4, x_5, x_6, x_7, x_53); -return x_55; -} -} -else -{ -uint8_t x_56; -lean_dec(x_44); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_1); -x_56 = !lean_is_exclusive(x_47); -if (x_56 == 0) -{ -return x_47; -} -else -{ -lean_object* x_57; lean_object* x_58; lean_object* x_59; -x_57 = lean_ctor_get(x_47, 0); -x_58 = lean_ctor_get(x_47, 1); -lean_inc(x_58); -lean_inc(x_57); -lean_dec(x_47); -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 -{ -lean_object* x_60; lean_object* x_61; uint8_t x_62; -x_60 = lean_ctor_get(x_42, 0); -x_61 = lean_ctor_get(x_42, 1); -lean_inc(x_61); -lean_inc(x_60); -lean_dec(x_42); -lean_inc(x_60); lean_inc(x_1); -x_62 = l_Lean_Expr_occurs(x_1, x_60); -if (x_62 == 0) +x_55 = l_Lean_Expr_occurs(x_1, x_53); +if (x_55 == 0) { -lean_object* x_63; lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_1); -x_63 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_63, 0, x_60); -lean_ctor_set(x_63, 1, x_61); -return x_63; +return x_51; } else { -lean_object* x_64; +lean_object* x_56; +lean_free_object(x_51); lean_inc(x_7); lean_inc(x_6); lean_inc(x_5); lean_inc(x_4); -lean_inc(x_60); -x_64 = l_Lean_Meta_unfoldDefinition_x3f(x_60, x_4, x_5, x_6, x_7, x_61); -if (lean_obj_tag(x_64) == 0) +lean_inc(x_53); +x_56 = l_Lean_Meta_unfoldDefinition_x3f(x_53, x_4, x_5, x_6, x_7, x_54); +if (lean_obj_tag(x_56) == 0) { -lean_object* x_65; -x_65 = lean_ctor_get(x_64, 0); -lean_inc(x_65); -if (lean_obj_tag(x_65) == 0) +lean_object* x_57; +x_57 = lean_ctor_get(x_56, 0); +lean_inc(x_57); +if (lean_obj_tag(x_57) == 0) +{ +uint8_t x_58; +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_1); +x_58 = !lean_is_exclusive(x_56); +if (x_58 == 0) +{ +lean_object* x_59; +x_59 = lean_ctor_get(x_56, 0); +lean_dec(x_59); +lean_ctor_set(x_56, 0, x_53); +return x_56; +} +else +{ +lean_object* x_60; lean_object* x_61; +x_60 = lean_ctor_get(x_56, 1); +lean_inc(x_60); +lean_dec(x_56); +x_61 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_61, 0, x_53); +lean_ctor_set(x_61, 1, x_60); +return x_61; +} +} +else +{ +lean_object* x_62; lean_object* x_63; lean_object* x_64; +lean_dec(x_53); +x_62 = lean_ctor_get(x_56, 1); +lean_inc(x_62); +lean_dec(x_56); +x_63 = lean_ctor_get(x_57, 0); +lean_inc(x_63); +lean_dec(x_57); +x_64 = l_Lean_Meta_whnfHeadPred___at_Lean_Elab_ComputedFields_getComputedFieldValue___spec__1(x_1, x_63, x_4, x_5, x_6, x_7, x_62); +return x_64; +} +} +else +{ +uint8_t x_65; +lean_dec(x_53); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_1); +x_65 = !lean_is_exclusive(x_56); +if (x_65 == 0) +{ +return x_56; +} +else { lean_object* x_66; lean_object* x_67; lean_object* x_68; -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_1); -x_66 = lean_ctor_get(x_64, 1); +x_66 = lean_ctor_get(x_56, 0); +x_67 = lean_ctor_get(x_56, 1); +lean_inc(x_67); lean_inc(x_66); -if (lean_is_exclusive(x_64)) { - lean_ctor_release(x_64, 0); - lean_ctor_release(x_64, 1); - x_67 = x_64; -} else { - lean_dec_ref(x_64); - x_67 = lean_box(0); -} -if (lean_is_scalar(x_67)) { - x_68 = lean_alloc_ctor(0, 2, 0); -} else { - x_68 = x_67; -} -lean_ctor_set(x_68, 0, x_60); -lean_ctor_set(x_68, 1, x_66); +lean_dec(x_56); +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; } +} +} +} else { -lean_object* x_69; lean_object* x_70; lean_object* x_71; -lean_dec(x_60); -x_69 = lean_ctor_get(x_64, 1); -lean_inc(x_69); -lean_dec(x_64); -x_70 = lean_ctor_get(x_65, 0); +lean_object* x_69; lean_object* x_70; uint8_t x_71; +x_69 = lean_ctor_get(x_51, 0); +x_70 = lean_ctor_get(x_51, 1); lean_inc(x_70); -lean_dec(x_65); -x_71 = l_Lean_Meta_whnfHeadPred___at_Lean_Elab_ComputedFields_getComputedFieldValue___spec__1(x_1, x_70, x_4, x_5, x_6, x_7, x_69); -return x_71; -} -} -else +lean_inc(x_69); +lean_dec(x_51); +lean_inc(x_69); +lean_inc(x_1); +x_71 = l_Lean_Expr_occurs(x_1, x_69); +if (x_71 == 0) { -lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; -lean_dec(x_60); +lean_object* x_72; lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_1); -x_72 = lean_ctor_get(x_64, 0); -lean_inc(x_72); -x_73 = lean_ctor_get(x_64, 1); -lean_inc(x_73); -if (lean_is_exclusive(x_64)) { - lean_ctor_release(x_64, 0); - lean_ctor_release(x_64, 1); - x_74 = x_64; -} else { - lean_dec_ref(x_64); - x_74 = lean_box(0); -} -if (lean_is_scalar(x_74)) { - x_75 = lean_alloc_ctor(1, 2, 0); -} else { - x_75 = x_74; -} -lean_ctor_set(x_75, 0, x_72); -lean_ctor_set(x_75, 1, x_73); -return x_75; -} -} -} +x_72 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_72, 0, x_69); +lean_ctor_set(x_72, 1, x_70); +return x_72; } else { -uint8_t x_76; +lean_object* x_73; +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_69); +x_73 = l_Lean_Meta_unfoldDefinition_x3f(x_69, x_4, x_5, x_6, x_7, x_70); +if (lean_obj_tag(x_73) == 0) +{ +lean_object* x_74; +x_74 = lean_ctor_get(x_73, 0); +lean_inc(x_74); +if (lean_obj_tag(x_74) == 0) +{ +lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_1); -x_76 = !lean_is_exclusive(x_42); -if (x_76 == 0) -{ -return x_42; +x_75 = lean_ctor_get(x_73, 1); +lean_inc(x_75); +if (lean_is_exclusive(x_73)) { + lean_ctor_release(x_73, 0); + lean_ctor_release(x_73, 1); + x_76 = x_73; +} else { + lean_dec_ref(x_73); + x_76 = lean_box(0); +} +if (lean_is_scalar(x_76)) { + x_77 = lean_alloc_ctor(0, 2, 0); +} else { + x_77 = x_76; +} +lean_ctor_set(x_77, 0, x_69); +lean_ctor_set(x_77, 1, x_75); +return x_77; } else { -lean_object* x_77; lean_object* x_78; lean_object* x_79; -x_77 = lean_ctor_get(x_42, 0); -x_78 = lean_ctor_get(x_42, 1); +lean_object* x_78; lean_object* x_79; lean_object* x_80; +lean_dec(x_69); +x_78 = lean_ctor_get(x_73, 1); lean_inc(x_78); -lean_inc(x_77); -lean_dec(x_42); -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_dec(x_73); +x_79 = lean_ctor_get(x_74, 0); +lean_inc(x_79); +lean_dec(x_74); +x_80 = l_Lean_Meta_whnfHeadPred___at_Lean_Elab_ComputedFields_getComputedFieldValue___spec__1(x_1, x_79, x_4, x_5, x_6, x_7, x_78); +return x_80; +} +} +else +{ +lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; +lean_dec(x_69); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_1); +x_81 = lean_ctor_get(x_73, 0); +lean_inc(x_81); +x_82 = lean_ctor_get(x_73, 1); +lean_inc(x_82); +if (lean_is_exclusive(x_73)) { + lean_ctor_release(x_73, 0); + lean_ctor_release(x_73, 1); + x_83 = x_73; +} else { + lean_dec_ref(x_73); + x_83 = lean_box(0); +} +if (lean_is_scalar(x_83)) { + x_84 = lean_alloc_ctor(1, 2, 0); +} else { + x_84 = x_83; +} +lean_ctor_set(x_84, 0, x_81); +lean_ctor_set(x_84, 1, x_82); +return x_84; +} +} +} +} +else +{ +uint8_t x_85; +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_1); +x_85 = !lean_is_exclusive(x_51); +if (x_85 == 0) +{ +return x_51; +} +else +{ +lean_object* x_86; lean_object* x_87; lean_object* x_88; +x_86 = lean_ctor_get(x_51, 0); +x_87 = lean_ctor_get(x_51, 1); +lean_inc(x_87); +lean_inc(x_86); +lean_dec(x_51); +x_88 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_88, 0, x_86); +lean_ctor_set(x_88, 1, x_87); +return x_88; } } } case 5: { -lean_object* x_80; lean_object* x_81; +lean_object* x_89; lean_object* x_90; lean_dec(x_3); -x_80 = l_Lean_Meta_whnfEasyCases___at_Lean_Elab_ComputedFields_getComputedFieldValue___spec__2___closed__5; +x_89 = l_Lean_Meta_whnfEasyCases___at_Lean_Elab_ComputedFields_getComputedFieldValue___spec__2___closed__5; lean_inc(x_7); lean_inc(x_6); lean_inc(x_5); lean_inc(x_4); -x_81 = l_Lean_Meta_whnfEasyCases___at_Lean_Meta_whnfCore_go___spec__3(x_80, x_2, x_80, x_4, x_5, x_6, x_7, x_8); -if (lean_obj_tag(x_81) == 0) +x_90 = l_Lean_Meta_whnfEasyCases___at_Lean_Meta_whnfCore_go___spec__3(x_89, x_2, x_89, x_4, x_5, x_6, x_7, x_8); +if (lean_obj_tag(x_90) == 0) { -uint8_t x_82; -x_82 = !lean_is_exclusive(x_81); -if (x_82 == 0) +uint8_t x_91; +x_91 = !lean_is_exclusive(x_90); +if (x_91 == 0) { -lean_object* x_83; lean_object* x_84; uint8_t x_85; -x_83 = lean_ctor_get(x_81, 0); -x_84 = lean_ctor_get(x_81, 1); -lean_inc(x_83); -lean_inc(x_1); -x_85 = l_Lean_Expr_occurs(x_1, x_83); -if (x_85 == 0) -{ -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_1); -return x_81; -} -else -{ -lean_object* x_86; -lean_free_object(x_81); -lean_inc(x_7); -lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_4); -lean_inc(x_83); -x_86 = l_Lean_Meta_unfoldDefinition_x3f(x_83, x_4, x_5, x_6, x_7, x_84); -if (lean_obj_tag(x_86) == 0) -{ -lean_object* x_87; -x_87 = lean_ctor_get(x_86, 0); -lean_inc(x_87); -if (lean_obj_tag(x_87) == 0) -{ -uint8_t x_88; -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_1); -x_88 = !lean_is_exclusive(x_86); -if (x_88 == 0) -{ -lean_object* x_89; -x_89 = lean_ctor_get(x_86, 0); -lean_dec(x_89); -lean_ctor_set(x_86, 0, x_83); -return x_86; -} -else -{ -lean_object* x_90; lean_object* x_91; -x_90 = lean_ctor_get(x_86, 1); -lean_inc(x_90); -lean_dec(x_86); -x_91 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_91, 0, x_83); -lean_ctor_set(x_91, 1, x_90); -return x_91; -} -} -else -{ -lean_object* x_92; lean_object* x_93; lean_object* x_94; -lean_dec(x_83); -x_92 = lean_ctor_get(x_86, 1); +lean_object* x_92; lean_object* x_93; uint8_t x_94; +x_92 = lean_ctor_get(x_90, 0); +x_93 = lean_ctor_get(x_90, 1); lean_inc(x_92); -lean_dec(x_86); -x_93 = lean_ctor_get(x_87, 0); -lean_inc(x_93); -lean_dec(x_87); -x_94 = l_Lean_Meta_whnfHeadPred___at_Lean_Elab_ComputedFields_getComputedFieldValue___spec__1(x_1, x_93, x_4, x_5, x_6, x_7, x_92); -return x_94; -} -} -else -{ -uint8_t x_95; -lean_dec(x_83); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_1); -x_95 = !lean_is_exclusive(x_86); -if (x_95 == 0) -{ -return x_86; -} -else -{ -lean_object* x_96; lean_object* x_97; lean_object* x_98; -x_96 = lean_ctor_get(x_86, 0); -x_97 = lean_ctor_get(x_86, 1); -lean_inc(x_97); -lean_inc(x_96); -lean_dec(x_86); -x_98 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_98, 0, x_96); -lean_ctor_set(x_98, 1, x_97); -return x_98; -} -} -} -} -else -{ -lean_object* x_99; lean_object* x_100; uint8_t x_101; -x_99 = lean_ctor_get(x_81, 0); -x_100 = lean_ctor_get(x_81, 1); -lean_inc(x_100); -lean_inc(x_99); -lean_dec(x_81); -lean_inc(x_99); lean_inc(x_1); -x_101 = l_Lean_Expr_occurs(x_1, x_99); -if (x_101 == 0) +x_94 = l_Lean_Expr_occurs(x_1, x_92); +if (x_94 == 0) { -lean_object* x_102; lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_1); -x_102 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_102, 0, x_99); -lean_ctor_set(x_102, 1, x_100); -return x_102; +return x_90; } else { -lean_object* x_103; +lean_object* x_95; +lean_free_object(x_90); lean_inc(x_7); lean_inc(x_6); lean_inc(x_5); lean_inc(x_4); -lean_inc(x_99); -x_103 = l_Lean_Meta_unfoldDefinition_x3f(x_99, x_4, x_5, x_6, x_7, x_100); -if (lean_obj_tag(x_103) == 0) +lean_inc(x_92); +x_95 = l_Lean_Meta_unfoldDefinition_x3f(x_92, x_4, x_5, x_6, x_7, x_93); +if (lean_obj_tag(x_95) == 0) { -lean_object* x_104; -x_104 = lean_ctor_get(x_103, 0); -lean_inc(x_104); -if (lean_obj_tag(x_104) == 0) +lean_object* x_96; +x_96 = lean_ctor_get(x_95, 0); +lean_inc(x_96); +if (lean_obj_tag(x_96) == 0) +{ +uint8_t x_97; +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_1); +x_97 = !lean_is_exclusive(x_95); +if (x_97 == 0) +{ +lean_object* x_98; +x_98 = lean_ctor_get(x_95, 0); +lean_dec(x_98); +lean_ctor_set(x_95, 0, x_92); +return x_95; +} +else +{ +lean_object* x_99; lean_object* x_100; +x_99 = lean_ctor_get(x_95, 1); +lean_inc(x_99); +lean_dec(x_95); +x_100 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_100, 0, x_92); +lean_ctor_set(x_100, 1, x_99); +return x_100; +} +} +else +{ +lean_object* x_101; lean_object* x_102; lean_object* x_103; +lean_dec(x_92); +x_101 = lean_ctor_get(x_95, 1); +lean_inc(x_101); +lean_dec(x_95); +x_102 = lean_ctor_get(x_96, 0); +lean_inc(x_102); +lean_dec(x_96); +x_103 = l_Lean_Meta_whnfHeadPred___at_Lean_Elab_ComputedFields_getComputedFieldValue___spec__1(x_1, x_102, x_4, x_5, x_6, x_7, x_101); +return x_103; +} +} +else +{ +uint8_t x_104; +lean_dec(x_92); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_1); +x_104 = !lean_is_exclusive(x_95); +if (x_104 == 0) +{ +return x_95; +} +else { lean_object* x_105; lean_object* x_106; lean_object* x_107; -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_1); -x_105 = lean_ctor_get(x_103, 1); +x_105 = lean_ctor_get(x_95, 0); +x_106 = lean_ctor_get(x_95, 1); +lean_inc(x_106); lean_inc(x_105); -if (lean_is_exclusive(x_103)) { - lean_ctor_release(x_103, 0); - lean_ctor_release(x_103, 1); - x_106 = x_103; -} else { - lean_dec_ref(x_103); - x_106 = lean_box(0); -} -if (lean_is_scalar(x_106)) { - x_107 = lean_alloc_ctor(0, 2, 0); -} else { - x_107 = x_106; -} -lean_ctor_set(x_107, 0, x_99); -lean_ctor_set(x_107, 1, x_105); +lean_dec(x_95); +x_107 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_107, 0, x_105); +lean_ctor_set(x_107, 1, x_106); return x_107; } +} +} +} else { -lean_object* x_108; lean_object* x_109; lean_object* x_110; -lean_dec(x_99); -x_108 = lean_ctor_get(x_103, 1); -lean_inc(x_108); -lean_dec(x_103); -x_109 = lean_ctor_get(x_104, 0); +lean_object* x_108; lean_object* x_109; uint8_t x_110; +x_108 = lean_ctor_get(x_90, 0); +x_109 = lean_ctor_get(x_90, 1); lean_inc(x_109); -lean_dec(x_104); -x_110 = l_Lean_Meta_whnfHeadPred___at_Lean_Elab_ComputedFields_getComputedFieldValue___spec__1(x_1, x_109, x_4, x_5, x_6, x_7, x_108); -return x_110; -} -} -else +lean_inc(x_108); +lean_dec(x_90); +lean_inc(x_108); +lean_inc(x_1); +x_110 = l_Lean_Expr_occurs(x_1, x_108); +if (x_110 == 0) { -lean_object* x_111; lean_object* x_112; lean_object* x_113; lean_object* x_114; -lean_dec(x_99); +lean_object* x_111; lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_1); -x_111 = lean_ctor_get(x_103, 0); -lean_inc(x_111); -x_112 = lean_ctor_get(x_103, 1); -lean_inc(x_112); -if (lean_is_exclusive(x_103)) { - lean_ctor_release(x_103, 0); - lean_ctor_release(x_103, 1); - x_113 = x_103; -} else { - lean_dec_ref(x_103); - x_113 = lean_box(0); -} -if (lean_is_scalar(x_113)) { - x_114 = lean_alloc_ctor(1, 2, 0); -} else { - x_114 = x_113; -} -lean_ctor_set(x_114, 0, x_111); -lean_ctor_set(x_114, 1, x_112); -return x_114; -} -} -} +x_111 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_111, 0, x_108); +lean_ctor_set(x_111, 1, x_109); +return x_111; } else { -uint8_t x_115; +lean_object* x_112; +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_108); +x_112 = l_Lean_Meta_unfoldDefinition_x3f(x_108, x_4, x_5, x_6, x_7, x_109); +if (lean_obj_tag(x_112) == 0) +{ +lean_object* x_113; +x_113 = lean_ctor_get(x_112, 0); +lean_inc(x_113); +if (lean_obj_tag(x_113) == 0) +{ +lean_object* x_114; lean_object* x_115; lean_object* x_116; lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_1); -x_115 = !lean_is_exclusive(x_81); -if (x_115 == 0) -{ -return x_81; +x_114 = lean_ctor_get(x_112, 1); +lean_inc(x_114); +if (lean_is_exclusive(x_112)) { + lean_ctor_release(x_112, 0); + lean_ctor_release(x_112, 1); + x_115 = x_112; +} else { + lean_dec_ref(x_112); + x_115 = lean_box(0); +} +if (lean_is_scalar(x_115)) { + x_116 = lean_alloc_ctor(0, 2, 0); +} else { + x_116 = x_115; +} +lean_ctor_set(x_116, 0, x_108); +lean_ctor_set(x_116, 1, x_114); +return x_116; } else { -lean_object* x_116; lean_object* x_117; lean_object* x_118; -x_116 = lean_ctor_get(x_81, 0); -x_117 = lean_ctor_get(x_81, 1); +lean_object* x_117; lean_object* x_118; lean_object* x_119; +lean_dec(x_108); +x_117 = lean_ctor_get(x_112, 1); lean_inc(x_117); -lean_inc(x_116); -lean_dec(x_81); -x_118 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_118, 0, x_116); -lean_ctor_set(x_118, 1, x_117); -return x_118; +lean_dec(x_112); +x_118 = lean_ctor_get(x_113, 0); +lean_inc(x_118); +lean_dec(x_113); +x_119 = l_Lean_Meta_whnfHeadPred___at_Lean_Elab_ComputedFields_getComputedFieldValue___spec__1(x_1, x_118, x_4, x_5, x_6, x_7, x_117); +return x_119; +} +} +else +{ +lean_object* x_120; lean_object* x_121; lean_object* x_122; lean_object* x_123; +lean_dec(x_108); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_1); +x_120 = lean_ctor_get(x_112, 0); +lean_inc(x_120); +x_121 = lean_ctor_get(x_112, 1); +lean_inc(x_121); +if (lean_is_exclusive(x_112)) { + lean_ctor_release(x_112, 0); + lean_ctor_release(x_112, 1); + x_122 = x_112; +} else { + lean_dec_ref(x_112); + x_122 = lean_box(0); +} +if (lean_is_scalar(x_122)) { + x_123 = lean_alloc_ctor(1, 2, 0); +} else { + x_123 = x_122; +} +lean_ctor_set(x_123, 0, x_120); +lean_ctor_set(x_123, 1, x_121); +return x_123; +} +} +} +} +else +{ +uint8_t x_124; +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_1); +x_124 = !lean_is_exclusive(x_90); +if (x_124 == 0) +{ +return x_90; +} +else +{ +lean_object* x_125; lean_object* x_126; lean_object* x_127; +x_125 = lean_ctor_get(x_90, 0); +x_126 = lean_ctor_get(x_90, 1); +lean_inc(x_126); +lean_inc(x_125); +lean_dec(x_90); +x_127 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_127, 0, x_125); +lean_ctor_set(x_127, 1, x_126); +return x_127; } } } case 8: { -lean_object* x_119; lean_object* x_120; +lean_object* x_128; lean_object* x_129; lean_dec(x_3); -x_119 = l_Lean_Meta_whnfEasyCases___at_Lean_Elab_ComputedFields_getComputedFieldValue___spec__2___closed__5; +x_128 = l_Lean_Meta_whnfEasyCases___at_Lean_Elab_ComputedFields_getComputedFieldValue___spec__2___closed__5; lean_inc(x_7); lean_inc(x_6); lean_inc(x_5); lean_inc(x_4); -x_120 = l_Lean_Meta_whnfEasyCases___at_Lean_Meta_whnfCore_go___spec__3(x_119, x_2, x_119, x_4, x_5, x_6, x_7, x_8); -if (lean_obj_tag(x_120) == 0) +x_129 = l_Lean_Meta_whnfEasyCases___at_Lean_Meta_whnfCore_go___spec__3(x_128, x_2, x_128, x_4, x_5, x_6, x_7, x_8); +if (lean_obj_tag(x_129) == 0) { -uint8_t x_121; -x_121 = !lean_is_exclusive(x_120); -if (x_121 == 0) +uint8_t x_130; +x_130 = !lean_is_exclusive(x_129); +if (x_130 == 0) { -lean_object* x_122; lean_object* x_123; uint8_t x_124; -x_122 = lean_ctor_get(x_120, 0); -x_123 = lean_ctor_get(x_120, 1); -lean_inc(x_122); -lean_inc(x_1); -x_124 = l_Lean_Expr_occurs(x_1, x_122); -if (x_124 == 0) -{ -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_1); -return x_120; -} -else -{ -lean_object* x_125; -lean_free_object(x_120); -lean_inc(x_7); -lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_4); -lean_inc(x_122); -x_125 = l_Lean_Meta_unfoldDefinition_x3f(x_122, x_4, x_5, x_6, x_7, x_123); -if (lean_obj_tag(x_125) == 0) -{ -lean_object* x_126; -x_126 = lean_ctor_get(x_125, 0); -lean_inc(x_126); -if (lean_obj_tag(x_126) == 0) -{ -uint8_t x_127; -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_1); -x_127 = !lean_is_exclusive(x_125); -if (x_127 == 0) -{ -lean_object* x_128; -x_128 = lean_ctor_get(x_125, 0); -lean_dec(x_128); -lean_ctor_set(x_125, 0, x_122); -return x_125; -} -else -{ -lean_object* x_129; lean_object* x_130; -x_129 = lean_ctor_get(x_125, 1); -lean_inc(x_129); -lean_dec(x_125); -x_130 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_130, 0, x_122); -lean_ctor_set(x_130, 1, x_129); -return x_130; -} -} -else -{ -lean_object* x_131; lean_object* x_132; lean_object* x_133; -lean_dec(x_122); -x_131 = lean_ctor_get(x_125, 1); +lean_object* x_131; lean_object* x_132; uint8_t x_133; +x_131 = lean_ctor_get(x_129, 0); +x_132 = lean_ctor_get(x_129, 1); lean_inc(x_131); -lean_dec(x_125); -x_132 = lean_ctor_get(x_126, 0); -lean_inc(x_132); -lean_dec(x_126); -x_133 = l_Lean_Meta_whnfHeadPred___at_Lean_Elab_ComputedFields_getComputedFieldValue___spec__1(x_1, x_132, x_4, x_5, x_6, x_7, x_131); -return x_133; -} -} -else -{ -uint8_t x_134; -lean_dec(x_122); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_1); -x_134 = !lean_is_exclusive(x_125); -if (x_134 == 0) -{ -return x_125; -} -else -{ -lean_object* x_135; lean_object* x_136; lean_object* x_137; -x_135 = lean_ctor_get(x_125, 0); -x_136 = lean_ctor_get(x_125, 1); -lean_inc(x_136); -lean_inc(x_135); -lean_dec(x_125); -x_137 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_137, 0, x_135); -lean_ctor_set(x_137, 1, x_136); -return x_137; -} -} -} -} -else -{ -lean_object* x_138; lean_object* x_139; uint8_t x_140; -x_138 = lean_ctor_get(x_120, 0); -x_139 = lean_ctor_get(x_120, 1); -lean_inc(x_139); -lean_inc(x_138); -lean_dec(x_120); -lean_inc(x_138); lean_inc(x_1); -x_140 = l_Lean_Expr_occurs(x_1, x_138); -if (x_140 == 0) +x_133 = l_Lean_Expr_occurs(x_1, x_131); +if (x_133 == 0) { -lean_object* x_141; lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_1); -x_141 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_141, 0, x_138); -lean_ctor_set(x_141, 1, x_139); -return x_141; +return x_129; } else { -lean_object* x_142; +lean_object* x_134; +lean_free_object(x_129); lean_inc(x_7); lean_inc(x_6); lean_inc(x_5); lean_inc(x_4); -lean_inc(x_138); -x_142 = l_Lean_Meta_unfoldDefinition_x3f(x_138, x_4, x_5, x_6, x_7, x_139); -if (lean_obj_tag(x_142) == 0) +lean_inc(x_131); +x_134 = l_Lean_Meta_unfoldDefinition_x3f(x_131, x_4, x_5, x_6, x_7, x_132); +if (lean_obj_tag(x_134) == 0) { -lean_object* x_143; -x_143 = lean_ctor_get(x_142, 0); -lean_inc(x_143); -if (lean_obj_tag(x_143) == 0) +lean_object* x_135; +x_135 = lean_ctor_get(x_134, 0); +lean_inc(x_135); +if (lean_obj_tag(x_135) == 0) +{ +uint8_t x_136; +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_1); +x_136 = !lean_is_exclusive(x_134); +if (x_136 == 0) +{ +lean_object* x_137; +x_137 = lean_ctor_get(x_134, 0); +lean_dec(x_137); +lean_ctor_set(x_134, 0, x_131); +return x_134; +} +else +{ +lean_object* x_138; lean_object* x_139; +x_138 = lean_ctor_get(x_134, 1); +lean_inc(x_138); +lean_dec(x_134); +x_139 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_139, 0, x_131); +lean_ctor_set(x_139, 1, x_138); +return x_139; +} +} +else +{ +lean_object* x_140; lean_object* x_141; lean_object* x_142; +lean_dec(x_131); +x_140 = lean_ctor_get(x_134, 1); +lean_inc(x_140); +lean_dec(x_134); +x_141 = lean_ctor_get(x_135, 0); +lean_inc(x_141); +lean_dec(x_135); +x_142 = l_Lean_Meta_whnfHeadPred___at_Lean_Elab_ComputedFields_getComputedFieldValue___spec__1(x_1, x_141, x_4, x_5, x_6, x_7, x_140); +return x_142; +} +} +else +{ +uint8_t x_143; +lean_dec(x_131); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_1); +x_143 = !lean_is_exclusive(x_134); +if (x_143 == 0) +{ +return x_134; +} +else { lean_object* x_144; lean_object* x_145; lean_object* x_146; -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_1); -x_144 = lean_ctor_get(x_142, 1); +x_144 = lean_ctor_get(x_134, 0); +x_145 = lean_ctor_get(x_134, 1); +lean_inc(x_145); lean_inc(x_144); -if (lean_is_exclusive(x_142)) { - lean_ctor_release(x_142, 0); - lean_ctor_release(x_142, 1); - x_145 = x_142; -} else { - lean_dec_ref(x_142); - x_145 = lean_box(0); -} -if (lean_is_scalar(x_145)) { - x_146 = lean_alloc_ctor(0, 2, 0); -} else { - x_146 = x_145; -} -lean_ctor_set(x_146, 0, x_138); -lean_ctor_set(x_146, 1, x_144); +lean_dec(x_134); +x_146 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_146, 0, x_144); +lean_ctor_set(x_146, 1, x_145); return x_146; } +} +} +} else { -lean_object* x_147; lean_object* x_148; lean_object* x_149; -lean_dec(x_138); -x_147 = lean_ctor_get(x_142, 1); -lean_inc(x_147); -lean_dec(x_142); -x_148 = lean_ctor_get(x_143, 0); +lean_object* x_147; lean_object* x_148; uint8_t x_149; +x_147 = lean_ctor_get(x_129, 0); +x_148 = lean_ctor_get(x_129, 1); lean_inc(x_148); -lean_dec(x_143); -x_149 = l_Lean_Meta_whnfHeadPred___at_Lean_Elab_ComputedFields_getComputedFieldValue___spec__1(x_1, x_148, x_4, x_5, x_6, x_7, x_147); -return x_149; -} -} -else +lean_inc(x_147); +lean_dec(x_129); +lean_inc(x_147); +lean_inc(x_1); +x_149 = l_Lean_Expr_occurs(x_1, x_147); +if (x_149 == 0) { -lean_object* x_150; lean_object* x_151; lean_object* x_152; lean_object* x_153; -lean_dec(x_138); +lean_object* x_150; lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_1); -x_150 = lean_ctor_get(x_142, 0); -lean_inc(x_150); -x_151 = lean_ctor_get(x_142, 1); -lean_inc(x_151); -if (lean_is_exclusive(x_142)) { - lean_ctor_release(x_142, 0); - lean_ctor_release(x_142, 1); - x_152 = x_142; -} else { - lean_dec_ref(x_142); - x_152 = lean_box(0); -} -if (lean_is_scalar(x_152)) { - x_153 = lean_alloc_ctor(1, 2, 0); -} else { - x_153 = x_152; -} -lean_ctor_set(x_153, 0, x_150); -lean_ctor_set(x_153, 1, x_151); -return x_153; -} -} -} +x_150 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_150, 0, x_147); +lean_ctor_set(x_150, 1, x_148); +return x_150; } else { -uint8_t x_154; +lean_object* x_151; +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_147); +x_151 = l_Lean_Meta_unfoldDefinition_x3f(x_147, x_4, x_5, x_6, x_7, x_148); +if (lean_obj_tag(x_151) == 0) +{ +lean_object* x_152; +x_152 = lean_ctor_get(x_151, 0); +lean_inc(x_152); +if (lean_obj_tag(x_152) == 0) +{ +lean_object* x_153; lean_object* x_154; lean_object* x_155; lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_1); -x_154 = !lean_is_exclusive(x_120); -if (x_154 == 0) -{ -return x_120; +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_151); + x_154 = lean_box(0); +} +if (lean_is_scalar(x_154)) { + x_155 = lean_alloc_ctor(0, 2, 0); +} else { + x_155 = x_154; +} +lean_ctor_set(x_155, 0, x_147); +lean_ctor_set(x_155, 1, x_153); +return x_155; } else { -lean_object* x_155; lean_object* x_156; lean_object* x_157; -x_155 = lean_ctor_get(x_120, 0); -x_156 = lean_ctor_get(x_120, 1); +lean_object* x_156; lean_object* x_157; lean_object* x_158; +lean_dec(x_147); +x_156 = lean_ctor_get(x_151, 1); lean_inc(x_156); -lean_inc(x_155); -lean_dec(x_120); -x_157 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_157, 0, x_155); -lean_ctor_set(x_157, 1, x_156); -return x_157; +lean_dec(x_151); +x_157 = lean_ctor_get(x_152, 0); +lean_inc(x_157); +lean_dec(x_152); +x_158 = l_Lean_Meta_whnfHeadPred___at_Lean_Elab_ComputedFields_getComputedFieldValue___spec__1(x_1, x_157, x_4, x_5, x_6, x_7, x_156); +return x_158; +} +} +else +{ +lean_object* x_159; lean_object* x_160; lean_object* x_161; lean_object* x_162; +lean_dec(x_147); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_1); +x_159 = lean_ctor_get(x_151, 0); +lean_inc(x_159); +x_160 = lean_ctor_get(x_151, 1); +lean_inc(x_160); +if (lean_is_exclusive(x_151)) { + lean_ctor_release(x_151, 0); + lean_ctor_release(x_151, 1); + x_161 = x_151; +} else { + lean_dec_ref(x_151); + x_161 = lean_box(0); +} +if (lean_is_scalar(x_161)) { + x_162 = lean_alloc_ctor(1, 2, 0); +} else { + x_162 = x_161; +} +lean_ctor_set(x_162, 0, x_159); +lean_ctor_set(x_162, 1, x_160); +return x_162; +} +} +} +} +else +{ +uint8_t x_163; +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_1); +x_163 = !lean_is_exclusive(x_129); +if (x_163 == 0) +{ +return x_129; +} +else +{ +lean_object* x_164; lean_object* x_165; lean_object* x_166; +x_164 = lean_ctor_get(x_129, 0); +x_165 = lean_ctor_get(x_129, 1); +lean_inc(x_165); +lean_inc(x_164); +lean_dec(x_129); +x_166 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_166, 0, x_164); +lean_ctor_set(x_166, 1, x_165); +return x_166; } } } case 10: { -lean_object* x_158; -x_158 = lean_ctor_get(x_2, 1); -lean_inc(x_158); +lean_object* x_167; +x_167 = lean_ctor_get(x_2, 1); +lean_inc(x_167); lean_dec(x_2); -x_2 = x_158; +x_2 = x_167; goto _start; } case 11: { -lean_object* x_160; lean_object* x_161; +lean_object* x_169; lean_object* x_170; lean_dec(x_3); -x_160 = l_Lean_Meta_whnfEasyCases___at_Lean_Elab_ComputedFields_getComputedFieldValue___spec__2___closed__5; +x_169 = l_Lean_Meta_whnfEasyCases___at_Lean_Elab_ComputedFields_getComputedFieldValue___spec__2___closed__5; lean_inc(x_7); lean_inc(x_6); lean_inc(x_5); lean_inc(x_4); -x_161 = l_Lean_Meta_whnfEasyCases___at_Lean_Meta_whnfCore_go___spec__3(x_160, x_2, x_160, x_4, x_5, x_6, x_7, x_8); -if (lean_obj_tag(x_161) == 0) +x_170 = l_Lean_Meta_whnfEasyCases___at_Lean_Meta_whnfCore_go___spec__3(x_169, x_2, x_169, x_4, x_5, x_6, x_7, x_8); +if (lean_obj_tag(x_170) == 0) { -uint8_t x_162; -x_162 = !lean_is_exclusive(x_161); -if (x_162 == 0) +uint8_t x_171; +x_171 = !lean_is_exclusive(x_170); +if (x_171 == 0) { -lean_object* x_163; lean_object* x_164; uint8_t x_165; -x_163 = lean_ctor_get(x_161, 0); -x_164 = lean_ctor_get(x_161, 1); -lean_inc(x_163); -lean_inc(x_1); -x_165 = l_Lean_Expr_occurs(x_1, x_163); -if (x_165 == 0) -{ -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_1); -return x_161; -} -else -{ -lean_object* x_166; -lean_free_object(x_161); -lean_inc(x_7); -lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_4); -lean_inc(x_163); -x_166 = l_Lean_Meta_unfoldDefinition_x3f(x_163, x_4, x_5, x_6, x_7, x_164); -if (lean_obj_tag(x_166) == 0) -{ -lean_object* x_167; -x_167 = lean_ctor_get(x_166, 0); -lean_inc(x_167); -if (lean_obj_tag(x_167) == 0) -{ -uint8_t x_168; -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_1); -x_168 = !lean_is_exclusive(x_166); -if (x_168 == 0) -{ -lean_object* x_169; -x_169 = lean_ctor_get(x_166, 0); -lean_dec(x_169); -lean_ctor_set(x_166, 0, x_163); -return x_166; -} -else -{ -lean_object* x_170; lean_object* x_171; -x_170 = lean_ctor_get(x_166, 1); -lean_inc(x_170); -lean_dec(x_166); -x_171 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_171, 0, x_163); -lean_ctor_set(x_171, 1, x_170); -return x_171; -} -} -else -{ -lean_object* x_172; lean_object* x_173; lean_object* x_174; -lean_dec(x_163); -x_172 = lean_ctor_get(x_166, 1); +lean_object* x_172; lean_object* x_173; uint8_t x_174; +x_172 = lean_ctor_get(x_170, 0); +x_173 = lean_ctor_get(x_170, 1); lean_inc(x_172); -lean_dec(x_166); -x_173 = lean_ctor_get(x_167, 0); -lean_inc(x_173); -lean_dec(x_167); -x_174 = l_Lean_Meta_whnfHeadPred___at_Lean_Elab_ComputedFields_getComputedFieldValue___spec__1(x_1, x_173, x_4, x_5, x_6, x_7, x_172); -return x_174; -} -} -else -{ -uint8_t x_175; -lean_dec(x_163); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_1); -x_175 = !lean_is_exclusive(x_166); -if (x_175 == 0) -{ -return x_166; -} -else -{ -lean_object* x_176; lean_object* x_177; lean_object* x_178; -x_176 = lean_ctor_get(x_166, 0); -x_177 = lean_ctor_get(x_166, 1); -lean_inc(x_177); -lean_inc(x_176); -lean_dec(x_166); -x_178 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_178, 0, x_176); -lean_ctor_set(x_178, 1, x_177); -return x_178; -} -} -} -} -else -{ -lean_object* x_179; lean_object* x_180; uint8_t x_181; -x_179 = lean_ctor_get(x_161, 0); -x_180 = lean_ctor_get(x_161, 1); -lean_inc(x_180); -lean_inc(x_179); -lean_dec(x_161); -lean_inc(x_179); lean_inc(x_1); -x_181 = l_Lean_Expr_occurs(x_1, x_179); -if (x_181 == 0) +x_174 = l_Lean_Expr_occurs(x_1, x_172); +if (x_174 == 0) { -lean_object* x_182; lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_1); -x_182 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_182, 0, x_179); -lean_ctor_set(x_182, 1, x_180); -return x_182; +return x_170; } else { -lean_object* x_183; +lean_object* x_175; +lean_free_object(x_170); lean_inc(x_7); lean_inc(x_6); lean_inc(x_5); lean_inc(x_4); -lean_inc(x_179); -x_183 = l_Lean_Meta_unfoldDefinition_x3f(x_179, x_4, x_5, x_6, x_7, x_180); -if (lean_obj_tag(x_183) == 0) +lean_inc(x_172); +x_175 = l_Lean_Meta_unfoldDefinition_x3f(x_172, x_4, x_5, x_6, x_7, x_173); +if (lean_obj_tag(x_175) == 0) { -lean_object* x_184; -x_184 = lean_ctor_get(x_183, 0); -lean_inc(x_184); -if (lean_obj_tag(x_184) == 0) +lean_object* x_176; +x_176 = lean_ctor_get(x_175, 0); +lean_inc(x_176); +if (lean_obj_tag(x_176) == 0) +{ +uint8_t x_177; +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_1); +x_177 = !lean_is_exclusive(x_175); +if (x_177 == 0) +{ +lean_object* x_178; +x_178 = lean_ctor_get(x_175, 0); +lean_dec(x_178); +lean_ctor_set(x_175, 0, x_172); +return x_175; +} +else +{ +lean_object* x_179; lean_object* x_180; +x_179 = lean_ctor_get(x_175, 1); +lean_inc(x_179); +lean_dec(x_175); +x_180 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_180, 0, x_172); +lean_ctor_set(x_180, 1, x_179); +return x_180; +} +} +else +{ +lean_object* x_181; lean_object* x_182; lean_object* x_183; +lean_dec(x_172); +x_181 = lean_ctor_get(x_175, 1); +lean_inc(x_181); +lean_dec(x_175); +x_182 = lean_ctor_get(x_176, 0); +lean_inc(x_182); +lean_dec(x_176); +x_183 = l_Lean_Meta_whnfHeadPred___at_Lean_Elab_ComputedFields_getComputedFieldValue___spec__1(x_1, x_182, x_4, x_5, x_6, x_7, x_181); +return x_183; +} +} +else +{ +uint8_t x_184; +lean_dec(x_172); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_1); +x_184 = !lean_is_exclusive(x_175); +if (x_184 == 0) +{ +return x_175; +} +else { lean_object* x_185; lean_object* x_186; lean_object* x_187; -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_1); -x_185 = lean_ctor_get(x_183, 1); +x_185 = lean_ctor_get(x_175, 0); +x_186 = lean_ctor_get(x_175, 1); +lean_inc(x_186); lean_inc(x_185); -if (lean_is_exclusive(x_183)) { - lean_ctor_release(x_183, 0); - lean_ctor_release(x_183, 1); - x_186 = x_183; -} else { - lean_dec_ref(x_183); - x_186 = lean_box(0); -} -if (lean_is_scalar(x_186)) { - x_187 = lean_alloc_ctor(0, 2, 0); -} else { - x_187 = x_186; -} -lean_ctor_set(x_187, 0, x_179); -lean_ctor_set(x_187, 1, x_185); +lean_dec(x_175); +x_187 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_187, 0, x_185); +lean_ctor_set(x_187, 1, x_186); return x_187; } +} +} +} else { -lean_object* x_188; lean_object* x_189; lean_object* x_190; -lean_dec(x_179); -x_188 = lean_ctor_get(x_183, 1); -lean_inc(x_188); -lean_dec(x_183); -x_189 = lean_ctor_get(x_184, 0); +lean_object* x_188; lean_object* x_189; uint8_t x_190; +x_188 = lean_ctor_get(x_170, 0); +x_189 = lean_ctor_get(x_170, 1); lean_inc(x_189); -lean_dec(x_184); -x_190 = l_Lean_Meta_whnfHeadPred___at_Lean_Elab_ComputedFields_getComputedFieldValue___spec__1(x_1, x_189, x_4, x_5, x_6, x_7, x_188); -return x_190; -} -} -else +lean_inc(x_188); +lean_dec(x_170); +lean_inc(x_188); +lean_inc(x_1); +x_190 = l_Lean_Expr_occurs(x_1, x_188); +if (x_190 == 0) { -lean_object* x_191; lean_object* x_192; lean_object* x_193; lean_object* x_194; -lean_dec(x_179); +lean_object* x_191; lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_1); -x_191 = lean_ctor_get(x_183, 0); -lean_inc(x_191); -x_192 = lean_ctor_get(x_183, 1); -lean_inc(x_192); -if (lean_is_exclusive(x_183)) { - lean_ctor_release(x_183, 0); - lean_ctor_release(x_183, 1); - x_193 = x_183; -} else { - lean_dec_ref(x_183); - x_193 = lean_box(0); -} -if (lean_is_scalar(x_193)) { - x_194 = lean_alloc_ctor(1, 2, 0); -} else { - x_194 = x_193; -} -lean_ctor_set(x_194, 0, x_191); -lean_ctor_set(x_194, 1, x_192); -return x_194; -} -} -} +x_191 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_191, 0, x_188); +lean_ctor_set(x_191, 1, x_189); +return x_191; } else { -uint8_t x_195; +lean_object* x_192; +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_188); +x_192 = l_Lean_Meta_unfoldDefinition_x3f(x_188, x_4, x_5, x_6, x_7, x_189); +if (lean_obj_tag(x_192) == 0) +{ +lean_object* x_193; +x_193 = lean_ctor_get(x_192, 0); +lean_inc(x_193); +if (lean_obj_tag(x_193) == 0) +{ +lean_object* x_194; lean_object* x_195; lean_object* x_196; lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_1); -x_195 = !lean_is_exclusive(x_161); -if (x_195 == 0) -{ -return x_161; +x_194 = lean_ctor_get(x_192, 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; +} else { + lean_dec_ref(x_192); + x_195 = lean_box(0); +} +if (lean_is_scalar(x_195)) { + x_196 = lean_alloc_ctor(0, 2, 0); +} else { + x_196 = x_195; +} +lean_ctor_set(x_196, 0, x_188); +lean_ctor_set(x_196, 1, x_194); +return x_196; } else { -lean_object* x_196; lean_object* x_197; lean_object* x_198; -x_196 = lean_ctor_get(x_161, 0); -x_197 = lean_ctor_get(x_161, 1); +lean_object* x_197; lean_object* x_198; lean_object* x_199; +lean_dec(x_188); +x_197 = lean_ctor_get(x_192, 1); lean_inc(x_197); -lean_inc(x_196); -lean_dec(x_161); -x_198 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_198, 0, x_196); -lean_ctor_set(x_198, 1, x_197); -return x_198; +lean_dec(x_192); +x_198 = lean_ctor_get(x_193, 0); +lean_inc(x_198); +lean_dec(x_193); +x_199 = l_Lean_Meta_whnfHeadPred___at_Lean_Elab_ComputedFields_getComputedFieldValue___spec__1(x_1, x_198, x_4, x_5, x_6, x_7, x_197); +return x_199; +} +} +else +{ +lean_object* x_200; lean_object* x_201; lean_object* x_202; lean_object* x_203; +lean_dec(x_188); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_1); +x_200 = lean_ctor_get(x_192, 0); +lean_inc(x_200); +x_201 = lean_ctor_get(x_192, 1); +lean_inc(x_201); +if (lean_is_exclusive(x_192)) { + lean_ctor_release(x_192, 0); + lean_ctor_release(x_192, 1); + x_202 = x_192; +} else { + lean_dec_ref(x_192); + x_202 = lean_box(0); +} +if (lean_is_scalar(x_202)) { + x_203 = lean_alloc_ctor(1, 2, 0); +} else { + x_203 = x_202; +} +lean_ctor_set(x_203, 0, x_200); +lean_ctor_set(x_203, 1, x_201); +return x_203; +} +} +} +} +else +{ +uint8_t x_204; +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_1); +x_204 = !lean_is_exclusive(x_170); +if (x_204 == 0) +{ +return x_170; +} +else +{ +lean_object* x_205; lean_object* x_206; lean_object* x_207; +x_205 = lean_ctor_get(x_170, 0); +x_206 = lean_ctor_get(x_170, 1); +lean_inc(x_206); +lean_inc(x_205); +lean_dec(x_170); +x_207 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_207, 0, x_205); +lean_ctor_set(x_207, 1, x_206); +return x_207; } } } default: { -lean_object* x_199; +lean_object* x_208; lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_1); -x_199 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_199, 0, x_2); -lean_ctor_set(x_199, 1, x_8); -return x_199; +x_208 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_208, 0, x_2); +lean_ctor_set(x_208, 1, x_8); +return x_208; } } } @@ -9857,7 +9899,7 @@ lean_closure_set(x_14, 0, x_9); lean_closure_set(x_14, 1, x_12); lean_closure_set(x_14, 2, x_1); lean_closure_set(x_14, 3, x_2); -x_15 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_13, x_14, x_4, x_5, x_6, x_7, x_8); +x_15 = l_Lean_Meta_forallTelescope___at_Lean_Meta_mapForallTelescope_x27___spec__1___rarg(x_13, x_14, x_4, x_5, x_6, x_7, x_8); return x_15; } } diff --git a/stage0/stdlib/Lean/Elab/GuardMsgs.c b/stage0/stdlib/Lean/Elab/GuardMsgs.c new file mode 100644 index 0000000000..bc8e2c61b7 --- /dev/null +++ b/stage0/stdlib/Lean/Elab/GuardMsgs.c @@ -0,0 +1,3869 @@ +// Lean compiler output +// Module: Lean.Elab.GuardMsgs +// Imports: Init Lean.Server.CodeActions.Attr +#include +#if defined(__clang__) +#pragma clang diagnostic ignored "-Wunused-parameter" +#pragma clang diagnostic ignored "-Wunused-label" +#elif defined(__GNUC__) && !defined(__CLANG__) +#pragma GCC diagnostic ignored "-Wunused-parameter" +#pragma GCC diagnostic ignored "-Wunused-label" +#pragma GCC diagnostic ignored "-Wunused-but-set-variable" +#endif +#ifdef __cplusplus +extern "C" { +#endif +lean_object* lean_string_utf8_extract(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* lean_mk_empty_array_with_capacity(lean_object*); +static lean_object* l_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___closed__8; +LEAN_EXPORT lean_object* l_Lean_throwErrorAt___at_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs___spec__5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___closed__5; +lean_object* l_Lean_logAt___at_Lean_Elab_Command_elabCommand___spec__4(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*); +static lean_object* l___private_Lean_Elab_GuardMsgs_0__Lean_Elab_Tactic_GuardMsgs_messageToStringWithoutPos___lambda__3___closed__3; +LEAN_EXPORT uint8_t l_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___elambda__1(lean_object*); +LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs(lean_object*); +static lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___spec__6___closed__3; +LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___spec__6___lambda__4(lean_object*, lean_object*); +static lean_object* l___private_Lean_Elab_GuardMsgs_0__Lean_Elab_Tactic_GuardMsgs_messageToStringWithoutPos___closed__2; +lean_object* l_Lean_MessageData_toString(lean_object*, lean_object*); +lean_object* l_Lean_indentD(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_GuardMsgs_SpecResult_toCtorIdx___boxed(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_GuardMsgs_SpecResult_noConfusion___rarg___lambda__1___boxed(lean_object*); +lean_object* l_Lean_Elab_Command_elabCommandTopLevel(lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_throwError___at_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___spec__2(lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_List_mapM_loop___at_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs___spec__3(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_Array_forInUnsafe_loop___at_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___spec__6___lambda__1___boxed(lean_object*, lean_object*); +static lean_object* l___regBuiltin_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs_declRange___closed__7; +LEAN_EXPORT lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs___spec__1___boxed(lean_object*, lean_object*); +lean_object* l_Lean_Syntax_getArgs(lean_object*); +lean_object* l_Lean_replaceRef(lean_object*, lean_object*); +lean_object* l_String_trim(lean_object*); +lean_object* lean_array_fget(lean_object*, lean_object*); +static lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs___spec__1___rarg___closed__2; +LEAN_EXPORT lean_object* l_Lean_throwError___at_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs___spec__6(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_addBuiltinDeclarationRanges(lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs___closed__5; +static lean_object* l___private_Lean_Elab_GuardMsgs_0__Lean_Elab_Tactic_GuardMsgs_messageToStringWithoutPos___lambda__3___closed__4; +static lean_object* l_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs___lambda__1___closed__2; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___lambda__2___boxed(lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Elab_GuardMsgs_0__Lean_Elab_Tactic_GuardMsgs_messageToStringWithoutPos___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___spec__6___lambda__8___closed__11; +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*); +lean_object* l_Lean_stringToMessageData(lean_object*); +LEAN_EXPORT lean_object* l_Array_sequenceMap_loop___at_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___spec__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +uint8_t lean_string_dec_eq(lean_object*, lean_object*); +static lean_object* l___regBuiltin_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs_declRange___closed__2; +static lean_object* l_Lean_Elab_Tactic_GuardMsgs_SpecResult_noConfusion___rarg___closed__1; +lean_object* lean_string_utf8_byte_size(lean_object*); +LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___spec__6___lambda__7(lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs___lambda__1___closed__3; +LEAN_EXPORT lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs___spec__1(lean_object*, lean_object*); +size_t lean_usize_of_nat(lean_object*); +uint8_t l_String_isEmpty(lean_object*); +static lean_object* l_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs___lambda__1___closed__6; +static lean_object* l___private_Lean_Elab_GuardMsgs_0__Lean_Elab_Tactic_GuardMsgs_messageToStringWithoutPos___lambda__4___closed__1; +LEAN_EXPORT lean_object* l___private_Lean_Elab_GuardMsgs_0__Lean_Elab_Tactic_GuardMsgs_messageToStringWithoutPos___lambda__2(lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___closed__6; +lean_object* l_Array_reverse___rarg(lean_object*); +LEAN_EXPORT lean_object* l_Array_sequenceMap___at_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___spec__3(lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs___closed__1; +static lean_object* l___regBuiltin_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs___closed__3; +lean_object* lean_st_ref_take(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___spec__6___lambda__3(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_GuardMsgs_SpecResult_noConfusion___rarg___lambda__1(lean_object*); +extern lean_object* l_Lean_Elab_Command_commandElabAttribute; +static lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___spec__6___lambda__8___closed__7; +static lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___spec__6___lambda__8___closed__10; +static lean_object* l_Lean_getDocStringText___at_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs___spec__4___closed__1; +lean_object* l_Lean_MessageData_ofSyntax(lean_object*); +static lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___spec__6___lambda__8___closed__9; +static lean_object* l_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___closed__2; +lean_object* l_Lean_MessageLog_toList(lean_object*); +lean_object* l_Lean_Elab_Command_getRef(lean_object*, lean_object*, lean_object*); +static lean_object* l___regBuiltin_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs_declRange___closed__3; +lean_object* l_Lean_PersistentArray_append___rarg(lean_object*, lean_object*); +lean_object* l_Lean_Elab_getBetterRef(lean_object*, lean_object*); +static lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___spec__6___closed__2; +static lean_object* l_Lean_getDocStringText___at_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs___spec__4___closed__2; +static lean_object* l_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___closed__9; +lean_object* lean_st_ref_get(lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs___lambda__1___closed__7; +static lean_object* l_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___closed__4; +lean_object* l_Lean_Syntax_getOptional_x3f(lean_object*); +static lean_object* l_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs___lambda__1___closed__1; +static lean_object* l_Lean_Elab_Tactic_GuardMsgs_instImpl____x40_Lean_Elab_GuardMsgs___hyg_1100____closed__2; +LEAN_EXPORT lean_object* l___private_Lean_Elab_GuardMsgs_0__Lean_Elab_Tactic_GuardMsgs_messageToStringWithoutPos___lambda__2___boxed(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___spec__6___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___spec__6___lambda__8___closed__4; +LEAN_EXPORT uint8_t l_Array_forInUnsafe_loop___at_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___spec__6___lambda__1(lean_object*, lean_object*); +static lean_object* l___regBuiltin_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs_declRange___closed__6; +LEAN_EXPORT lean_object* l_Lean_throwError___at_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_getDocStringText___at_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs___spec__4(lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT uint8_t l_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___lambda__2(lean_object*); +static lean_object* l_Lean_Elab_Tactic_GuardMsgs_instImpl____x40_Lean_Elab_GuardMsgs___hyg_1100____closed__3; +LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___spec__6___lambda__6(lean_object*, lean_object*); +extern lean_object* l_Lean_MessageLog_empty; +lean_object* l_Lean_addMessageContextPartial___at_Lean_Elab_Command_instAddMessageContextCommandElabM___spec__1(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Syntax_getArg(lean_object*, lean_object*); +uint8_t l_Lean_Syntax_matchesNull(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___spec__6___lambda__5(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_throwErrorAt___at_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___spec__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs___spec__1___rarg(lean_object*); +static lean_object* l___regBuiltin_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs___closed__1; +static lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___spec__6___closed__1; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_GuardMsgs_SpecResult_noConfusion___rarg___boxed(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_throwErrorAt___at_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs(lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Tactic_GuardMsgs_instImpl____x40_Lean_Elab_GuardMsgs___hyg_1100____closed__4; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_GuardMsgs_SpecResult_noConfusion___rarg(uint8_t, uint8_t, lean_object*); +LEAN_EXPORT lean_object* l_List_forIn_loop___at_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_getDocStringText___at_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs___spec__4___closed__3; +LEAN_EXPORT lean_object* l_List_mapM_loop___at_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs_declRange(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec(lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_List_forIn_loop___at_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Elab_GuardMsgs_0__Lean_Elab_Tactic_GuardMsgs_messageToStringWithoutPos___lambda__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___private_Lean_Elab_GuardMsgs_0__Lean_Elab_Tactic_GuardMsgs_messageToStringWithoutPos___lambda__2___closed__2; +LEAN_EXPORT lean_object* l___private_Lean_Elab_GuardMsgs_0__Lean_Elab_Tactic_GuardMsgs_messageToStringWithoutPos(lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs___closed__3; +LEAN_EXPORT lean_object* l_Array_sequenceMap_loop___at_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_String_replace(lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___closed__3; +LEAN_EXPORT lean_object* l___private_Lean_Elab_GuardMsgs_0__Lean_Elab_Tactic_GuardMsgs_messageToStringWithoutPos___lambda__4(lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_sequenceMap___at_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___spec__3___boxed(lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs___closed__4; +uint8_t lean_nat_dec_eq(lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Tactic_GuardMsgs_instImpl____x40_Lean_Elab_GuardMsgs___hyg_1100____closed__1; +uint8_t lean_nat_dec_lt(lean_object*, lean_object*); +uint8_t lean_uint32_dec_eq(uint32_t, uint32_t); +lean_object* l_Lean_Name_mkStr2(lean_object*, lean_object*); +static lean_object* l___regBuiltin_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs___closed__2; +uint32_t l_String_back(lean_object*); +static lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___spec__6___lambda__8___closed__6; +static lean_object* l___regBuiltin_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs_declRange___closed__4; +uint8_t l_String_isPrefixOf(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___lambda__1(lean_object*); +uint8_t l_Lean_Syntax_isNone(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___elambda__1___boxed(lean_object*); +lean_object* lean_nat_sub(lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs___closed__6; +LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___spec__6___lambda__8___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___spec__6___lambda__8___closed__8; +LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___spec__6(lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___spec__6___lambda__2(lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs___lambda__1___closed__5; +lean_object* l_Lean_throwError___at_Lean_Elab_Command_expandDeclId___spec__18(lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Elab_GuardMsgs_0__Lean_Elab_Tactic_GuardMsgs_messageToStringWithoutPos___lambda__1(lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs___closed__2; +lean_object* l_List_reverse___rarg(lean_object*); +lean_object* l_String_intercalate(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___spec__6___lambda__8(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs___spec__1___rarg___closed__1; +static lean_object* l_Lean_Elab_Tactic_GuardMsgs_instImpl____x40_Lean_Elab_GuardMsgs___hyg_1100____closed__5; +static lean_object* l___private_Lean_Elab_GuardMsgs_0__Lean_Elab_Tactic_GuardMsgs_messageToStringWithoutPos___lambda__2___closed__1; +size_t lean_usize_add(size_t, size_t); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_GuardMsgs_SpecResult_noConfusion(lean_object*); +static lean_object* l_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___closed__7; +lean_object* lean_array_uget(lean_object*, size_t); +static lean_object* l_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___closed__1; +static lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___spec__6___lambda__8___closed__5; +static lean_object* l_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs___lambda__1___closed__4; +lean_object* lean_io_error_to_string(lean_object*); +lean_object* lean_st_ref_set(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_GuardMsgs_SpecResult_toCtorIdx(uint8_t); +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*); +LEAN_EXPORT lean_object* l_Lean_throwError___at_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs___spec__6___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___spec__6___lambda__8___closed__2; +LEAN_EXPORT lean_object* l___private_Lean_Elab_GuardMsgs_0__Lean_Elab_Tactic_GuardMsgs_messageToStringWithoutPos___lambda__3(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* lean_string_append(lean_object*, lean_object*); +lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Syntax_SepArray_getElems___spec__1(lean_object*, size_t, size_t, lean_object*); +lean_object* lean_array_get_size(lean_object*); +uint8_t l___private_Lean_Message_0__Lean_beqMessageSeverity____x40_Lean_Message___hyg_103_(uint8_t, uint8_t); +uint8_t lean_nat_dec_le(lean_object*, lean_object*); +extern lean_object* l_Lean_Elab_unsupportedSyntaxExceptionId; +static lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___spec__6___lambda__8___closed__3; +uint8_t lean_usize_dec_lt(size_t, size_t); +LEAN_EXPORT lean_object* l___private_Lean_Elab_GuardMsgs_0__Lean_Elab_Tactic_GuardMsgs_messageToStringWithoutPos___lambda__1___boxed(lean_object*, lean_object*, lean_object*); +lean_object* lean_nat_add(lean_object*, lean_object*); +static lean_object* l___regBuiltin_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs_declRange___closed__1; +lean_object* l_Lean_Elab_pushInfoLeaf___at_Lean_Elab_Command_expandDeclId___spec__11(lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___private_Lean_Elab_GuardMsgs_0__Lean_Elab_Tactic_GuardMsgs_messageToStringWithoutPos___closed__1; +static lean_object* l___private_Lean_Elab_GuardMsgs_0__Lean_Elab_Tactic_GuardMsgs_messageToStringWithoutPos___lambda__3___closed__2; +static lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___spec__6___lambda__8___closed__1; +static lean_object* l___regBuiltin_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs___closed__4; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_GuardMsgs_instImpl____x40_Lean_Elab_GuardMsgs___hyg_1100_; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_GuardMsgs_instTypeNameGuardMsgFailure; +static lean_object* l___regBuiltin_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs_declRange___closed__5; +LEAN_EXPORT lean_object* l_Lean_throwErrorAt___at_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___spec__5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___private_Lean_Elab_GuardMsgs_0__Lean_Elab_Tactic_GuardMsgs_messageToStringWithoutPos___lambda__3___closed__1; +LEAN_EXPORT lean_object* l___private_Lean_Elab_GuardMsgs_0__Lean_Elab_Tactic_GuardMsgs_messageToStringWithoutPos___lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +lean_object* x_4; +x_4 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_4, 0, x_1); +lean_ctor_set(x_4, 1, x_3); +return x_4; +} +} +static lean_object* _init_l___private_Lean_Elab_GuardMsgs_0__Lean_Elab_Tactic_GuardMsgs_messageToStringWithoutPos___lambda__2___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l___private_Lean_Elab_GuardMsgs_0__Lean_Elab_Tactic_GuardMsgs_messageToStringWithoutPos___lambda__1___boxed), 3, 0); +return x_1; +} +} +static lean_object* _init_l___private_Lean_Elab_GuardMsgs_0__Lean_Elab_Tactic_GuardMsgs_messageToStringWithoutPos___lambda__2___closed__2() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("\n", 1); +return x_1; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Elab_GuardMsgs_0__Lean_Elab_Tactic_GuardMsgs_messageToStringWithoutPos___lambda__2(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +lean_object* x_4; uint8_t x_5; +x_4 = l___private_Lean_Elab_GuardMsgs_0__Lean_Elab_Tactic_GuardMsgs_messageToStringWithoutPos___lambda__2___closed__1; +x_5 = l_String_isEmpty(x_1); +if (x_5 == 0) +{ +uint32_t x_6; uint32_t x_7; uint8_t x_8; +x_6 = l_String_back(x_1); +x_7 = 10; +x_8 = lean_uint32_dec_eq(x_6, x_7); +if (x_8 == 0) +{ +lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; +x_9 = l___private_Lean_Elab_GuardMsgs_0__Lean_Elab_Tactic_GuardMsgs_messageToStringWithoutPos___lambda__2___closed__2; +x_10 = lean_string_append(x_1, x_9); +x_11 = lean_box(0); +x_12 = lean_apply_3(x_4, x_10, x_11, x_3); +return x_12; +} +else +{ +lean_object* x_13; lean_object* x_14; +x_13 = lean_box(0); +x_14 = lean_apply_3(x_4, x_1, x_13, x_3); +return x_14; +} +} +else +{ +lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; +x_15 = l___private_Lean_Elab_GuardMsgs_0__Lean_Elab_Tactic_GuardMsgs_messageToStringWithoutPos___lambda__2___closed__2; +x_16 = lean_string_append(x_1, x_15); +x_17 = lean_box(0); +x_18 = lean_apply_3(x_4, x_16, x_17, x_3); +return x_18; +} +} +} +static lean_object* _init_l___private_Lean_Elab_GuardMsgs_0__Lean_Elab_Tactic_GuardMsgs_messageToStringWithoutPos___lambda__3___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l___private_Lean_Elab_GuardMsgs_0__Lean_Elab_Tactic_GuardMsgs_messageToStringWithoutPos___lambda__2___boxed), 3, 0); +return x_1; +} +} +static lean_object* _init_l___private_Lean_Elab_GuardMsgs_0__Lean_Elab_Tactic_GuardMsgs_messageToStringWithoutPos___lambda__3___closed__2() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("info:", 5); +return x_1; +} +} +static lean_object* _init_l___private_Lean_Elab_GuardMsgs_0__Lean_Elab_Tactic_GuardMsgs_messageToStringWithoutPos___lambda__3___closed__3() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("warning:", 8); +return x_1; +} +} +static lean_object* _init_l___private_Lean_Elab_GuardMsgs_0__Lean_Elab_Tactic_GuardMsgs_messageToStringWithoutPos___lambda__3___closed__4() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("error:", 6); +return x_1; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Elab_GuardMsgs_0__Lean_Elab_Tactic_GuardMsgs_messageToStringWithoutPos___lambda__3(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +_start: +{ +lean_object* x_5; uint8_t x_6; +x_5 = l___private_Lean_Elab_GuardMsgs_0__Lean_Elab_Tactic_GuardMsgs_messageToStringWithoutPos___lambda__3___closed__1; +x_6 = lean_ctor_get_uint8(x_1, sizeof(void*)*5 + 1); +switch (x_6) { +case 0: +{ +lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; +x_7 = l___private_Lean_Elab_GuardMsgs_0__Lean_Elab_Tactic_GuardMsgs_messageToStringWithoutPos___lambda__3___closed__2; +x_8 = lean_string_append(x_7, x_2); +x_9 = lean_box(0); +x_10 = lean_apply_3(x_5, x_8, x_9, x_4); +return x_10; +} +case 1: +{ +lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; +x_11 = l___private_Lean_Elab_GuardMsgs_0__Lean_Elab_Tactic_GuardMsgs_messageToStringWithoutPos___lambda__3___closed__3; +x_12 = lean_string_append(x_11, x_2); +x_13 = lean_box(0); +x_14 = lean_apply_3(x_5, x_12, x_13, x_4); +return x_14; +} +default: +{ +lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; +x_15 = l___private_Lean_Elab_GuardMsgs_0__Lean_Elab_Tactic_GuardMsgs_messageToStringWithoutPos___lambda__3___closed__4; +x_16 = lean_string_append(x_15, x_2); +x_17 = lean_box(0); +x_18 = lean_apply_3(x_5, x_16, x_17, x_4); +return x_18; +} +} +} +} +static lean_object* _init_l___private_Lean_Elab_GuardMsgs_0__Lean_Elab_Tactic_GuardMsgs_messageToStringWithoutPos___lambda__4___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes(" ", 1); +return x_1; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Elab_GuardMsgs_0__Lean_Elab_Tactic_GuardMsgs_messageToStringWithoutPos___lambda__4(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +_start: +{ +lean_object* x_5; uint8_t x_6; +lean_dec(x_3); +x_5 = l___private_Lean_Elab_GuardMsgs_0__Lean_Elab_Tactic_GuardMsgs_messageToStringWithoutPos___lambda__2___closed__2; +x_6 = l_String_isPrefixOf(x_5, x_2); +if (x_6 == 0) +{ +lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; +x_7 = l___private_Lean_Elab_GuardMsgs_0__Lean_Elab_Tactic_GuardMsgs_messageToStringWithoutPos___lambda__4___closed__1; +x_8 = lean_string_append(x_7, x_2); +lean_dec(x_2); +x_9 = lean_box(0); +x_10 = l___private_Lean_Elab_GuardMsgs_0__Lean_Elab_Tactic_GuardMsgs_messageToStringWithoutPos___lambda__3(x_1, x_8, x_9, x_4); +lean_dec(x_8); +return x_10; +} +else +{ +lean_object* x_11; lean_object* x_12; +x_11 = lean_box(0); +x_12 = l___private_Lean_Elab_GuardMsgs_0__Lean_Elab_Tactic_GuardMsgs_messageToStringWithoutPos___lambda__3(x_1, x_2, x_11, x_4); +lean_dec(x_2); +return x_12; +} +} +} +static lean_object* _init_l___private_Lean_Elab_GuardMsgs_0__Lean_Elab_Tactic_GuardMsgs_messageToStringWithoutPos___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("", 0); +return x_1; +} +} +static lean_object* _init_l___private_Lean_Elab_GuardMsgs_0__Lean_Elab_Tactic_GuardMsgs_messageToStringWithoutPos___closed__2() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes(":\n", 2); +return x_1; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Elab_GuardMsgs_0__Lean_Elab_Tactic_GuardMsgs_messageToStringWithoutPos(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; lean_object* x_4; +x_3 = lean_ctor_get(x_1, 4); +lean_inc(x_3); +x_4 = l_Lean_MessageData_toString(x_3, x_2); +if (lean_obj_tag(x_4) == 0) +{ +lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; uint8_t x_9; +x_5 = lean_ctor_get(x_4, 0); +lean_inc(x_5); +x_6 = lean_ctor_get(x_4, 1); +lean_inc(x_6); +lean_dec(x_4); +x_7 = lean_ctor_get(x_1, 3); +lean_inc(x_7); +x_8 = l___private_Lean_Elab_GuardMsgs_0__Lean_Elab_Tactic_GuardMsgs_messageToStringWithoutPos___closed__1; +x_9 = lean_string_dec_eq(x_7, x_8); +if (x_9 == 0) +{ +lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; +x_10 = l___private_Lean_Elab_GuardMsgs_0__Lean_Elab_Tactic_GuardMsgs_messageToStringWithoutPos___closed__2; +x_11 = lean_string_append(x_7, x_10); +x_12 = lean_string_append(x_11, x_5); +lean_dec(x_5); +x_13 = lean_box(0); +x_14 = l___private_Lean_Elab_GuardMsgs_0__Lean_Elab_Tactic_GuardMsgs_messageToStringWithoutPos___lambda__4(x_1, x_12, x_13, x_6); +lean_dec(x_1); +return x_14; +} +else +{ +lean_object* x_15; lean_object* x_16; +lean_dec(x_7); +x_15 = lean_box(0); +x_16 = l___private_Lean_Elab_GuardMsgs_0__Lean_Elab_Tactic_GuardMsgs_messageToStringWithoutPos___lambda__4(x_1, x_5, x_15, x_6); +lean_dec(x_1); +return x_16; +} +} +else +{ +uint8_t x_17; +lean_dec(x_1); +x_17 = !lean_is_exclusive(x_4); +if (x_17 == 0) +{ +return x_4; +} +else +{ +lean_object* x_18; lean_object* x_19; lean_object* x_20; +x_18 = lean_ctor_get(x_4, 0); +x_19 = lean_ctor_get(x_4, 1); +lean_inc(x_19); +lean_inc(x_18); +lean_dec(x_4); +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___private_Lean_Elab_GuardMsgs_0__Lean_Elab_Tactic_GuardMsgs_messageToStringWithoutPos___lambda__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +lean_object* x_4; +x_4 = l___private_Lean_Elab_GuardMsgs_0__Lean_Elab_Tactic_GuardMsgs_messageToStringWithoutPos___lambda__1(x_1, x_2, x_3); +lean_dec(x_2); +return x_4; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Elab_GuardMsgs_0__Lean_Elab_Tactic_GuardMsgs_messageToStringWithoutPos___lambda__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +lean_object* x_4; +x_4 = l___private_Lean_Elab_GuardMsgs_0__Lean_Elab_Tactic_GuardMsgs_messageToStringWithoutPos___lambda__2(x_1, x_2, x_3); +lean_dec(x_2); +return x_4; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Elab_GuardMsgs_0__Lean_Elab_Tactic_GuardMsgs_messageToStringWithoutPos___lambda__3___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___private_Lean_Elab_GuardMsgs_0__Lean_Elab_Tactic_GuardMsgs_messageToStringWithoutPos___lambda__3(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___private_Lean_Elab_GuardMsgs_0__Lean_Elab_Tactic_GuardMsgs_messageToStringWithoutPos___lambda__4___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___private_Lean_Elab_GuardMsgs_0__Lean_Elab_Tactic_GuardMsgs_messageToStringWithoutPos___lambda__4(x_1, x_2, x_3, x_4); +lean_dec(x_1); +return x_5; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_GuardMsgs_SpecResult_toCtorIdx(uint8_t x_1) { +_start: +{ +switch (x_1) { +case 0: +{ +lean_object* x_2; +x_2 = lean_unsigned_to_nat(0u); +return x_2; +} +case 1: +{ +lean_object* x_3; +x_3 = lean_unsigned_to_nat(1u); +return x_3; +} +default: +{ +lean_object* x_4; +x_4 = lean_unsigned_to_nat(2u); +return x_4; +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_GuardMsgs_SpecResult_toCtorIdx___boxed(lean_object* x_1) { +_start: +{ +uint8_t x_2; lean_object* x_3; +x_2 = lean_unbox(x_1); +lean_dec(x_1); +x_3 = l_Lean_Elab_Tactic_GuardMsgs_SpecResult_toCtorIdx(x_2); +return x_3; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_GuardMsgs_SpecResult_noConfusion___rarg___lambda__1(lean_object* x_1) { +_start: +{ +lean_inc(x_1); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_GuardMsgs_SpecResult_noConfusion___rarg___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_GuardMsgs_SpecResult_noConfusion___rarg___lambda__1___boxed), 1, 0); +return x_1; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_GuardMsgs_SpecResult_noConfusion___rarg(uint8_t x_1, uint8_t x_2, lean_object* x_3) { +_start: +{ +lean_object* x_4; +x_4 = l_Lean_Elab_Tactic_GuardMsgs_SpecResult_noConfusion___rarg___closed__1; +return x_4; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_GuardMsgs_SpecResult_noConfusion(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_GuardMsgs_SpecResult_noConfusion___rarg___boxed), 3, 0); +return x_2; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_GuardMsgs_SpecResult_noConfusion___rarg___lambda__1___boxed(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = l_Lean_Elab_Tactic_GuardMsgs_SpecResult_noConfusion___rarg___lambda__1(x_1); +lean_dec(x_1); +return x_2; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_GuardMsgs_SpecResult_noConfusion___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +uint8_t x_4; uint8_t x_5; lean_object* x_6; +x_4 = lean_unbox(x_1); +lean_dec(x_1); +x_5 = lean_unbox(x_2); +lean_dec(x_2); +x_6 = l_Lean_Elab_Tactic_GuardMsgs_SpecResult_noConfusion___rarg(x_4, x_5, x_3); +return x_6; +} +} +LEAN_EXPORT uint8_t l_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___elambda__1(lean_object* x_1) { +_start: +{ +uint8_t x_2; +x_2 = 0; +return x_2; +} +} +LEAN_EXPORT lean_object* l_Lean_throwError___at_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___spec__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; 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; +x_5 = l_Lean_Elab_Command_getRef(x_2, x_3, 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, 4); +lean_inc(x_8); +lean_inc(x_8); +x_9 = l_Lean_Elab_getBetterRef(x_6, x_8); +lean_dec(x_6); +x_10 = l_Lean_addMessageContextPartial___at_Lean_Elab_Command_instAddMessageContextCommandElabM___spec__1(x_1, x_2, x_3, 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_Lean_Elab_addMacroStack___at_Lean_Elab_Command_instAddErrorMessageContextCommandElabM___spec__1(x_11, x_8, x_2, x_3, x_12); +lean_dec(x_2); +x_14 = !lean_is_exclusive(x_13); +if (x_14 == 0) +{ +lean_object* x_15; lean_object* x_16; +x_15 = lean_ctor_get(x_13, 0); +x_16 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_16, 0, x_9); +lean_ctor_set(x_16, 1, x_15); +lean_ctor_set_tag(x_13, 1); +lean_ctor_set(x_13, 0, x_16); +return x_13; +} +else +{ +lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; +x_17 = lean_ctor_get(x_13, 0); +x_18 = lean_ctor_get(x_13, 1); +lean_inc(x_18); +lean_inc(x_17); +lean_dec(x_13); +x_19 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_19, 0, x_9); +lean_ctor_set(x_19, 1, x_17); +x_20 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_20, 0, x_19); +lean_ctor_set(x_20, 1, x_18); +return x_20; +} +} +} +LEAN_EXPORT lean_object* l_Lean_throwErrorAt___at_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +_start: +{ +lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; uint8_t x_10; +x_6 = l_Lean_Elab_Command_getRef(x_3, x_4, x_5); +x_7 = lean_ctor_get(x_6, 0); +lean_inc(x_7); +x_8 = lean_ctor_get(x_6, 1); +lean_inc(x_8); +lean_dec(x_6); +x_9 = l_Lean_replaceRef(x_1, x_7); +lean_dec(x_7); +lean_dec(x_1); +x_10 = !lean_is_exclusive(x_3); +if (x_10 == 0) +{ +lean_object* x_11; lean_object* x_12; +x_11 = lean_ctor_get(x_3, 6); +lean_dec(x_11); +lean_ctor_set(x_3, 6, x_9); +x_12 = l_Lean_throwError___at_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___spec__2(x_2, x_3, x_4, x_8); +lean_dec(x_4); +return x_12; +} +else +{ +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; +x_13 = lean_ctor_get(x_3, 0); +x_14 = lean_ctor_get(x_3, 1); +x_15 = lean_ctor_get(x_3, 2); +x_16 = lean_ctor_get(x_3, 3); +x_17 = lean_ctor_get(x_3, 4); +x_18 = lean_ctor_get(x_3, 5); +x_19 = lean_ctor_get(x_3, 7); +lean_inc(x_19); +lean_inc(x_18); +lean_inc(x_17); +lean_inc(x_16); +lean_inc(x_15); +lean_inc(x_14); +lean_inc(x_13); +lean_dec(x_3); +x_20 = lean_alloc_ctor(0, 8, 0); +lean_ctor_set(x_20, 0, x_13); +lean_ctor_set(x_20, 1, x_14); +lean_ctor_set(x_20, 2, x_15); +lean_ctor_set(x_20, 3, x_16); +lean_ctor_set(x_20, 4, x_17); +lean_ctor_set(x_20, 5, x_18); +lean_ctor_set(x_20, 6, x_9); +lean_ctor_set(x_20, 7, x_19); +x_21 = l_Lean_throwError___at_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___spec__2(x_2, x_20, x_4, x_8); +lean_dec(x_4); +return x_21; +} +} +} +LEAN_EXPORT lean_object* l_Array_sequenceMap_loop___at_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___spec__4(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +_start: +{ +lean_object* x_6; uint8_t x_7; +x_6 = lean_array_get_size(x_1); +x_7 = lean_nat_dec_lt(x_4, x_6); +lean_dec(x_6); +if (x_7 == 0) +{ +lean_object* x_8; +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_8 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_8, 0, x_5); +return x_8; +} +else +{ +lean_object* x_9; uint8_t x_10; +x_9 = lean_unsigned_to_nat(0u); +x_10 = lean_nat_dec_eq(x_3, x_9); +if (x_10 == 0) +{ +lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; +x_11 = lean_unsigned_to_nat(1u); +x_12 = lean_nat_sub(x_3, x_11); +lean_dec(x_3); +x_13 = lean_array_fget(x_1, x_4); +lean_inc(x_2); +x_14 = lean_apply_1(x_2, x_13); +if (lean_obj_tag(x_14) == 0) +{ +lean_object* x_15; +lean_dec(x_12); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_2); +x_15 = lean_box(0); +return x_15; +} +else +{ +lean_object* x_16; lean_object* x_17; lean_object* x_18; +x_16 = lean_ctor_get(x_14, 0); +lean_inc(x_16); +lean_dec(x_14); +x_17 = lean_nat_add(x_4, x_11); +lean_dec(x_4); +x_18 = lean_array_push(x_5, x_16); +x_3 = x_12; +x_4 = x_17; +x_5 = x_18; +goto _start; +} +} +else +{ +lean_object* x_20; +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_20 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_20, 0, x_5); +return x_20; +} +} +} +} +LEAN_EXPORT lean_object* l_Array_sequenceMap___at_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___spec__3(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; +x_3 = lean_array_get_size(x_1); +x_4 = lean_mk_empty_array_with_capacity(x_3); +x_5 = lean_unsigned_to_nat(0u); +x_6 = l_Array_sequenceMap_loop___at_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___spec__4(x_1, x_2, x_3, x_5, x_4); +return x_6; +} +} +LEAN_EXPORT lean_object* l_Lean_throwErrorAt___at_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___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_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; uint8_t x_10; +x_6 = l_Lean_Elab_Command_getRef(x_3, x_4, x_5); +x_7 = lean_ctor_get(x_6, 0); +lean_inc(x_7); +x_8 = lean_ctor_get(x_6, 1); +lean_inc(x_8); +lean_dec(x_6); +x_9 = l_Lean_replaceRef(x_1, x_7); +lean_dec(x_7); +x_10 = !lean_is_exclusive(x_3); +if (x_10 == 0) +{ +lean_object* x_11; lean_object* x_12; +x_11 = lean_ctor_get(x_3, 6); +lean_dec(x_11); +lean_ctor_set(x_3, 6, x_9); +x_12 = l_Lean_throwError___at_Lean_Elab_Command_expandDeclId___spec__18(x_2, x_3, x_4, x_8); +return x_12; +} +else +{ +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; +x_13 = lean_ctor_get(x_3, 0); +x_14 = lean_ctor_get(x_3, 1); +x_15 = lean_ctor_get(x_3, 2); +x_16 = lean_ctor_get(x_3, 3); +x_17 = lean_ctor_get(x_3, 4); +x_18 = lean_ctor_get(x_3, 5); +x_19 = lean_ctor_get(x_3, 7); +lean_inc(x_19); +lean_inc(x_18); +lean_inc(x_17); +lean_inc(x_16); +lean_inc(x_15); +lean_inc(x_14); +lean_inc(x_13); +lean_dec(x_3); +x_20 = lean_alloc_ctor(0, 8, 0); +lean_ctor_set(x_20, 0, x_13); +lean_ctor_set(x_20, 1, x_14); +lean_ctor_set(x_20, 2, x_15); +lean_ctor_set(x_20, 3, x_16); +lean_ctor_set(x_20, 4, x_17); +lean_ctor_set(x_20, 5, x_18); +lean_ctor_set(x_20, 6, x_9); +lean_ctor_set(x_20, 7, x_19); +x_21 = l_Lean_throwError___at_Lean_Elab_Command_expandDeclId___spec__18(x_2, x_20, x_4, x_8); +return x_21; +} +} +} +LEAN_EXPORT uint8_t l_Array_forInUnsafe_loop___at_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___spec__6___lambda__1(lean_object* x_1, lean_object* x_2) { +_start: +{ +if (lean_obj_tag(x_1) == 0) +{ +uint8_t x_3; +x_3 = 0; +return x_3; +} +else +{ +uint8_t x_4; +x_4 = 1; +return x_4; +} +} +} +LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___spec__6___lambda__2(lean_object* x_1, lean_object* x_2) { +_start: +{ +uint8_t x_3; uint8_t x_4; uint8_t x_5; +x_3 = lean_ctor_get_uint8(x_2, sizeof(void*)*5 + 1); +x_4 = 2; +x_5 = l___private_Lean_Message_0__Lean_beqMessageSeverity____x40_Lean_Message___hyg_103_(x_3, x_4); +if (x_5 == 0) +{ +lean_object* x_6; +x_6 = lean_apply_1(x_1, x_2); +return x_6; +} +else +{ +uint8_t x_7; lean_object* x_8; +lean_dec(x_2); +lean_dec(x_1); +x_7 = 0; +x_8 = lean_box(x_7); +return x_8; +} +} +} +LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___spec__6___lambda__3(lean_object* x_1, lean_object* x_2) { +_start: +{ +uint8_t x_3; uint8_t x_4; uint8_t x_5; +x_3 = lean_ctor_get_uint8(x_2, sizeof(void*)*5 + 1); +x_4 = 2; +x_5 = l___private_Lean_Message_0__Lean_beqMessageSeverity____x40_Lean_Message___hyg_103_(x_3, x_4); +if (x_5 == 0) +{ +lean_object* x_6; +x_6 = lean_apply_1(x_1, x_2); +return x_6; +} +else +{ +uint8_t x_7; lean_object* x_8; +lean_dec(x_2); +lean_dec(x_1); +x_7 = 1; +x_8 = lean_box(x_7); +return x_8; +} +} +} +LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___spec__6___lambda__4(lean_object* x_1, lean_object* x_2) { +_start: +{ +uint8_t x_3; uint8_t x_4; uint8_t x_5; +x_3 = lean_ctor_get_uint8(x_2, sizeof(void*)*5 + 1); +x_4 = 1; +x_5 = l___private_Lean_Message_0__Lean_beqMessageSeverity____x40_Lean_Message___hyg_103_(x_3, x_4); +if (x_5 == 0) +{ +lean_object* x_6; +x_6 = lean_apply_1(x_1, x_2); +return x_6; +} +else +{ +uint8_t x_7; lean_object* x_8; +lean_dec(x_2); +lean_dec(x_1); +x_7 = 0; +x_8 = lean_box(x_7); +return x_8; +} +} +} +LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___spec__6___lambda__5(lean_object* x_1, lean_object* x_2) { +_start: +{ +uint8_t x_3; uint8_t x_4; uint8_t x_5; +x_3 = lean_ctor_get_uint8(x_2, sizeof(void*)*5 + 1); +x_4 = 1; +x_5 = l___private_Lean_Message_0__Lean_beqMessageSeverity____x40_Lean_Message___hyg_103_(x_3, x_4); +if (x_5 == 0) +{ +lean_object* x_6; +x_6 = lean_apply_1(x_1, x_2); +return x_6; +} +else +{ +uint8_t x_7; lean_object* x_8; +lean_dec(x_2); +lean_dec(x_1); +x_7 = 1; +x_8 = lean_box(x_7); +return x_8; +} +} +} +LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___spec__6___lambda__6(lean_object* x_1, lean_object* x_2) { +_start: +{ +uint8_t x_3; uint8_t x_4; uint8_t x_5; +x_3 = lean_ctor_get_uint8(x_2, sizeof(void*)*5 + 1); +x_4 = 0; +x_5 = l___private_Lean_Message_0__Lean_beqMessageSeverity____x40_Lean_Message___hyg_103_(x_3, x_4); +if (x_5 == 0) +{ +lean_object* x_6; +x_6 = lean_apply_1(x_1, x_2); +return x_6; +} +else +{ +uint8_t x_7; lean_object* x_8; +lean_dec(x_2); +lean_dec(x_1); +x_7 = 0; +x_8 = lean_box(x_7); +return x_8; +} +} +} +LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___spec__6___lambda__7(lean_object* x_1, lean_object* x_2) { +_start: +{ +uint8_t x_3; uint8_t x_4; uint8_t x_5; +x_3 = lean_ctor_get_uint8(x_2, sizeof(void*)*5 + 1); +x_4 = 0; +x_5 = l___private_Lean_Message_0__Lean_beqMessageSeverity____x40_Lean_Message___hyg_103_(x_3, x_4); +if (x_5 == 0) +{ +lean_object* x_6; +x_6 = lean_apply_1(x_1, x_2); +return x_6; +} +else +{ +uint8_t x_7; lean_object* x_8; +lean_dec(x_2); +lean_dec(x_1); +x_7 = 1; +x_8 = lean_box(x_7); +return x_8; +} +} +} +static lean_object* _init_l_Array_forInUnsafe_loop___at_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___spec__6___lambda__8___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("token", 5); +return x_1; +} +} +static lean_object* _init_l_Array_forInUnsafe_loop___at_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___spec__6___lambda__8___closed__2() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("info", 4); +return x_1; +} +} +static lean_object* _init_l_Array_forInUnsafe_loop___at_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___spec__6___lambda__8___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Array_forInUnsafe_loop___at_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___spec__6___lambda__8___closed__1; +x_2 = l_Array_forInUnsafe_loop___at_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___spec__6___lambda__8___closed__2; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Array_forInUnsafe_loop___at_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___spec__6___lambda__8___closed__4() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("warning", 7); +return x_1; +} +} +static lean_object* _init_l_Array_forInUnsafe_loop___at_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___spec__6___lambda__8___closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Array_forInUnsafe_loop___at_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___spec__6___lambda__8___closed__1; +x_2 = l_Array_forInUnsafe_loop___at_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___spec__6___lambda__8___closed__4; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Array_forInUnsafe_loop___at_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___spec__6___lambda__8___closed__6() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("error", 5); +return x_1; +} +} +static lean_object* _init_l_Array_forInUnsafe_loop___at_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___spec__6___lambda__8___closed__7() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Array_forInUnsafe_loop___at_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___spec__6___lambda__8___closed__1; +x_2 = l_Array_forInUnsafe_loop___at_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___spec__6___lambda__8___closed__6; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Array_forInUnsafe_loop___at_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___spec__6___lambda__8___closed__8() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("all", 3); +return x_1; +} +} +static lean_object* _init_l_Array_forInUnsafe_loop___at_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___spec__6___lambda__8___closed__9() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Array_forInUnsafe_loop___at_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___spec__6___lambda__8___closed__1; +x_2 = l_Array_forInUnsafe_loop___at_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___spec__6___lambda__8___closed__8; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Array_forInUnsafe_loop___at_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___spec__6___lambda__8___closed__10() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("Invalid #guard_msgs specification element", 41); +return x_1; +} +} +static lean_object* _init_l_Array_forInUnsafe_loop___at_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___spec__6___lambda__8___closed__11() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Array_forInUnsafe_loop___at_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___spec__6___lambda__8___closed__10; +x_2 = l_Lean_stringToMessageData(x_1); +return x_2; +} +} +LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___spec__6___lambda__8(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_object* x_10; uint8_t x_11; +x_8 = lean_unsigned_to_nat(1u); +x_9 = l_Lean_Syntax_getArg(x_1, x_8); +x_10 = l_Array_forInUnsafe_loop___at_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___spec__6___lambda__8___closed__3; +lean_inc(x_9); +x_11 = l_Lean_Syntax_isOfKind(x_9, x_10); +if (x_11 == 0) +{ +lean_object* x_12; uint8_t x_13; +x_12 = l_Array_forInUnsafe_loop___at_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___spec__6___lambda__8___closed__5; +lean_inc(x_9); +x_13 = l_Lean_Syntax_isOfKind(x_9, x_12); +if (x_13 == 0) +{ +lean_object* x_14; uint8_t x_15; +x_14 = l_Array_forInUnsafe_loop___at_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___spec__6___lambda__8___closed__7; +lean_inc(x_9); +x_15 = l_Lean_Syntax_isOfKind(x_9, x_14); +if (x_15 == 0) +{ +lean_object* x_16; uint8_t x_17; +lean_dec(x_2); +x_16 = l_Array_forInUnsafe_loop___at_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___spec__6___lambda__8___closed__9; +x_17 = l_Lean_Syntax_isOfKind(x_9, x_16); +if (x_17 == 0) +{ +lean_object* x_18; lean_object* x_19; uint8_t x_20; +lean_dec(x_4); +x_18 = l_Array_forInUnsafe_loop___at_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___spec__6___lambda__8___closed__11; +x_19 = l_Lean_throwErrorAt___at_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___spec__5(x_1, x_18, x_5, x_6, x_7); +x_20 = !lean_is_exclusive(x_19); +if (x_20 == 0) +{ +return x_19; +} +else +{ +lean_object* x_21; lean_object* x_22; lean_object* x_23; +x_21 = lean_ctor_get(x_19, 0); +x_22 = lean_ctor_get(x_19, 1); +lean_inc(x_22); +lean_inc(x_21); +lean_dec(x_19); +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; lean_object* x_26; +lean_dec(x_5); +x_24 = lean_alloc_closure((void*)(l_Array_forInUnsafe_loop___at_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___spec__6___lambda__1___boxed), 2, 1); +lean_closure_set(x_24, 0, x_4); +x_25 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_25, 0, x_24); +x_26 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_26, 0, x_25); +lean_ctor_set(x_26, 1, x_7); +return x_26; +} +} +else +{ +lean_dec(x_9); +lean_dec(x_5); +if (lean_obj_tag(x_4) == 0) +{ +lean_object* x_27; lean_object* x_28; lean_object* x_29; +x_27 = lean_alloc_closure((void*)(l_Array_forInUnsafe_loop___at_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___spec__6___lambda__2), 2, 1); +lean_closure_set(x_27, 0, x_2); +x_28 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_28, 0, x_27); +x_29 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_29, 0, x_28); +lean_ctor_set(x_29, 1, x_7); +return x_29; +} +else +{ +lean_object* x_30; lean_object* x_31; lean_object* x_32; +lean_dec(x_4); +x_30 = lean_alloc_closure((void*)(l_Array_forInUnsafe_loop___at_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___spec__6___lambda__3), 2, 1); +lean_closure_set(x_30, 0, x_2); +x_31 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_31, 0, x_30); +x_32 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_32, 0, x_31); +lean_ctor_set(x_32, 1, x_7); +return x_32; +} +} +} +else +{ +lean_dec(x_9); +lean_dec(x_5); +if (lean_obj_tag(x_4) == 0) +{ +lean_object* x_33; lean_object* x_34; lean_object* x_35; +x_33 = lean_alloc_closure((void*)(l_Array_forInUnsafe_loop___at_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___spec__6___lambda__4), 2, 1); +lean_closure_set(x_33, 0, x_2); +x_34 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_34, 0, x_33); +x_35 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_35, 0, x_34); +lean_ctor_set(x_35, 1, x_7); +return x_35; +} +else +{ +lean_object* x_36; lean_object* x_37; lean_object* x_38; +lean_dec(x_4); +x_36 = lean_alloc_closure((void*)(l_Array_forInUnsafe_loop___at_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___spec__6___lambda__5), 2, 1); +lean_closure_set(x_36, 0, x_2); +x_37 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_37, 0, x_36); +x_38 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_38, 0, x_37); +lean_ctor_set(x_38, 1, x_7); +return x_38; +} +} +} +else +{ +lean_dec(x_9); +lean_dec(x_5); +if (lean_obj_tag(x_4) == 0) +{ +lean_object* x_39; lean_object* x_40; lean_object* x_41; +x_39 = lean_alloc_closure((void*)(l_Array_forInUnsafe_loop___at_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___spec__6___lambda__6), 2, 1); +lean_closure_set(x_39, 0, x_2); +x_40 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_40, 0, x_39); +x_41 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_41, 0, x_40); +lean_ctor_set(x_41, 1, x_7); +return x_41; +} +else +{ +lean_object* x_42; lean_object* x_43; lean_object* x_44; +lean_dec(x_4); +x_42 = lean_alloc_closure((void*)(l_Array_forInUnsafe_loop___at_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___spec__6___lambda__7), 2, 1); +lean_closure_set(x_42, 0, x_2); +x_43 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_43, 0, x_42); +x_44 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_44, 0, x_43); +lean_ctor_set(x_44, 1, x_7); +return x_44; +} +} +} +} +static lean_object* _init_l_Array_forInUnsafe_loop___at_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___spec__6___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("Lean", 4); +return x_1; +} +} +static lean_object* _init_l_Array_forInUnsafe_loop___at_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___spec__6___closed__2() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("guardMsgsSpecElt", 16); +return x_1; +} +} +static lean_object* _init_l_Array_forInUnsafe_loop___at_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___spec__6___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Array_forInUnsafe_loop___at_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___spec__6___closed__1; +x_2 = l_Array_forInUnsafe_loop___at_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___spec__6___closed__2; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; +} +} +LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___spec__6(lean_object* x_1, size_t x_2, size_t x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +_start: +{ +uint8_t x_8; +x_8 = lean_usize_dec_lt(x_3, x_2); +if (x_8 == 0) +{ +lean_object* x_9; +lean_dec(x_5); +x_9 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_9, 0, x_4); +lean_ctor_set(x_9, 1, x_7); +return x_9; +} +else +{ +lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_18; uint8_t x_19; +x_10 = lean_array_uget(x_1, x_3); +x_18 = l_Array_forInUnsafe_loop___at_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___spec__6___closed__3; +lean_inc(x_10); +x_19 = l_Lean_Syntax_isOfKind(x_10, x_18); +if (x_19 == 0) +{ +lean_object* x_20; lean_object* x_21; uint8_t x_22; +lean_dec(x_4); +x_20 = l_Array_forInUnsafe_loop___at_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___spec__6___lambda__8___closed__11; +x_21 = l_Lean_throwErrorAt___at_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___spec__5(x_10, x_20, x_5, x_6, x_7); +lean_dec(x_10); +x_22 = !lean_is_exclusive(x_21); +if (x_22 == 0) +{ +return x_21; +} +else +{ +lean_object* x_23; lean_object* x_24; lean_object* x_25; +x_23 = lean_ctor_get(x_21, 0); +x_24 = lean_ctor_get(x_21, 1); +lean_inc(x_24); +lean_inc(x_23); +lean_dec(x_21); +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 +{ +lean_object* x_26; lean_object* x_27; uint8_t x_28; +x_26 = lean_unsigned_to_nat(0u); +x_27 = l_Lean_Syntax_getArg(x_10, x_26); +x_28 = l_Lean_Syntax_isNone(x_27); +if (x_28 == 0) +{ +lean_object* x_29; uint8_t x_30; +x_29 = lean_unsigned_to_nat(1u); +lean_inc(x_27); +x_30 = l_Lean_Syntax_matchesNull(x_27, x_29); +if (x_30 == 0) +{ +lean_object* x_31; lean_object* x_32; uint8_t x_33; +lean_dec(x_27); +lean_dec(x_4); +x_31 = l_Array_forInUnsafe_loop___at_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___spec__6___lambda__8___closed__11; +x_32 = l_Lean_throwErrorAt___at_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___spec__5(x_10, x_31, x_5, x_6, x_7); +lean_dec(x_10); +x_33 = !lean_is_exclusive(x_32); +if (x_33 == 0) +{ +return x_32; +} +else +{ +lean_object* x_34; lean_object* x_35; lean_object* x_36; +x_34 = lean_ctor_get(x_32, 0); +x_35 = lean_ctor_get(x_32, 1); +lean_inc(x_35); +lean_inc(x_34); +lean_dec(x_32); +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; lean_object* x_39; lean_object* x_40; +x_37 = l_Lean_Syntax_getArg(x_27, x_26); +lean_dec(x_27); +x_38 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_38, 0, x_37); +x_39 = lean_box(0); +lean_inc(x_5); +x_40 = l_Array_forInUnsafe_loop___at_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___spec__6___lambda__8(x_10, x_4, x_39, x_38, x_5, x_6, x_7); +lean_dec(x_10); +if (lean_obj_tag(x_40) == 0) +{ +lean_object* x_41; lean_object* x_42; +x_41 = lean_ctor_get(x_40, 0); +lean_inc(x_41); +x_42 = lean_ctor_get(x_40, 1); +lean_inc(x_42); +lean_dec(x_40); +x_11 = x_41; +x_12 = x_42; +goto block_17; +} +else +{ +uint8_t x_43; +lean_dec(x_5); +x_43 = !lean_is_exclusive(x_40); +if (x_43 == 0) +{ +return x_40; +} +else +{ +lean_object* x_44; lean_object* x_45; lean_object* x_46; +x_44 = lean_ctor_get(x_40, 0); +x_45 = lean_ctor_get(x_40, 1); +lean_inc(x_45); +lean_inc(x_44); +lean_dec(x_40); +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; +} +} +} +} +else +{ +lean_object* x_47; lean_object* x_48; lean_object* x_49; +lean_dec(x_27); +x_47 = lean_box(0); +x_48 = lean_box(0); +lean_inc(x_5); +x_49 = l_Array_forInUnsafe_loop___at_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___spec__6___lambda__8(x_10, x_4, x_48, x_47, x_5, x_6, x_7); +lean_dec(x_10); +if (lean_obj_tag(x_49) == 0) +{ +lean_object* x_50; lean_object* x_51; +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_11 = x_50; +x_12 = x_51; +goto block_17; +} +else +{ +uint8_t x_52; +lean_dec(x_5); +x_52 = !lean_is_exclusive(x_49); +if (x_52 == 0) +{ +return x_49; +} +else +{ +lean_object* x_53; lean_object* x_54; lean_object* x_55; +x_53 = lean_ctor_get(x_49, 0); +x_54 = lean_ctor_get(x_49, 1); +lean_inc(x_54); +lean_inc(x_53); +lean_dec(x_49); +x_55 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_55, 0, x_53); +lean_ctor_set(x_55, 1, x_54); +return x_55; +} +} +} +} +block_17: +{ +lean_object* x_13; size_t x_14; size_t x_15; +x_13 = lean_ctor_get(x_11, 0); +lean_inc(x_13); +lean_dec(x_11); +x_14 = 1; +x_15 = lean_usize_add(x_3, x_14); +x_3 = x_15; +x_4 = x_13; +x_7 = x_12; +goto _start; +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___lambda__1(lean_object* x_1) { +_start: +{ +lean_object* x_2; uint8_t x_3; +x_2 = l_Array_forInUnsafe_loop___at_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___spec__6___closed__3; +lean_inc(x_1); +x_3 = l_Lean_Syntax_isOfKind(x_1, x_2); +if (x_3 == 0) +{ +lean_object* x_4; +lean_dec(x_1); +x_4 = lean_box(0); +return x_4; +} +else +{ +lean_object* x_5; +x_5 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_5, 0, x_1); +return x_5; +} +} +} +LEAN_EXPORT uint8_t l_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___lambda__2(lean_object* x_1) { +_start: +{ +uint8_t x_2; +x_2 = 2; +return x_2; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___elambda__1___boxed), 1, 0); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___closed__2() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("guardMsgsSpec", 13); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Array_forInUnsafe_loop___at_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___spec__6___closed__1; +x_2 = l_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___closed__2; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___closed__4() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("Invalid #guard_msgs specification", 33); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___closed__4; +x_2 = l_Lean_stringToMessageData(x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___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_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___closed__7() { +_start: +{ +uint8_t x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = 1; +x_2 = l_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___closed__6; +x_3 = lean_box(x_1); +x_4 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_4, 0, x_3); +lean_ctor_set(x_4, 1, x_2); +return x_4; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___closed__8() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___lambda__1), 1, 0); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___closed__9() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___lambda__2___boxed), 1, 0); +return x_1; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +_start: +{ +if (lean_obj_tag(x_1) == 0) +{ +lean_object* x_5; lean_object* x_6; +lean_dec(x_3); +lean_dec(x_2); +x_5 = l_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___closed__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); +return x_6; +} +else +{ +lean_object* x_7; lean_object* x_8; uint8_t x_9; +x_7 = lean_ctor_get(x_1, 0); +lean_inc(x_7); +lean_dec(x_1); +x_8 = l_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___closed__3; +lean_inc(x_7); +x_9 = l_Lean_Syntax_isOfKind(x_7, x_8); +if (x_9 == 0) +{ +lean_object* x_10; lean_object* x_11; +x_10 = l_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___closed__5; +x_11 = l_Lean_throwErrorAt___at_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___spec__1(x_7, x_10, x_2, x_3, x_4); +return x_11; +} +else +{ +lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; uint8_t x_17; lean_object* x_18; +x_12 = lean_unsigned_to_nat(1u); +x_13 = l_Lean_Syntax_getArg(x_7, x_12); +x_14 = l_Lean_Syntax_getArgs(x_13); +lean_dec(x_13); +x_15 = lean_array_get_size(x_14); +x_16 = lean_unsigned_to_nat(0u); +x_17 = lean_nat_dec_lt(x_16, x_15); +if (x_17 == 0) +{ +lean_object* x_39; +lean_dec(x_15); +lean_dec(x_14); +x_39 = l_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___closed__6; +x_18 = x_39; +goto block_38; +} +else +{ +uint8_t x_40; +x_40 = lean_nat_dec_le(x_15, x_15); +if (x_40 == 0) +{ +lean_object* x_41; +lean_dec(x_15); +lean_dec(x_14); +x_41 = l_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___closed__6; +x_18 = x_41; +goto block_38; +} +else +{ +size_t x_42; size_t x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; +x_42 = 0; +x_43 = lean_usize_of_nat(x_15); +lean_dec(x_15); +x_44 = l_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___closed__7; +x_45 = l_Array_foldlMUnsafe_fold___at_Lean_Syntax_SepArray_getElems___spec__1(x_14, x_42, x_43, x_44); +lean_dec(x_14); +x_46 = lean_ctor_get(x_45, 1); +lean_inc(x_46); +lean_dec(x_45); +x_18 = x_46; +goto block_38; +} +} +block_38: +{ +lean_object* x_19; lean_object* x_20; +x_19 = l_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___closed__8; +x_20 = l_Array_sequenceMap___at_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___spec__3(x_18, x_19); +lean_dec(x_18); +if (lean_obj_tag(x_20) == 0) +{ +lean_object* x_21; lean_object* x_22; +x_21 = l_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___closed__5; +x_22 = l_Lean_throwErrorAt___at_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___spec__1(x_7, x_21, x_2, x_3, x_4); +return x_22; +} +else +{ +lean_object* x_23; lean_object* x_24; lean_object* x_25; size_t x_26; size_t x_27; lean_object* x_28; lean_object* x_29; +lean_dec(x_7); +x_23 = lean_ctor_get(x_20, 0); +lean_inc(x_23); +lean_dec(x_20); +x_24 = l_Array_reverse___rarg(x_23); +x_25 = lean_array_get_size(x_24); +x_26 = lean_usize_of_nat(x_25); +lean_dec(x_25); +x_27 = 0; +x_28 = l_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___closed__9; +x_29 = l_Array_forInUnsafe_loop___at_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___spec__6(x_24, x_26, x_27, x_28, x_2, x_3, x_4); +lean_dec(x_3); +lean_dec(x_24); +if (lean_obj_tag(x_29) == 0) +{ +uint8_t x_30; +x_30 = !lean_is_exclusive(x_29); +if (x_30 == 0) +{ +return x_29; +} +else +{ +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); +return x_33; +} +} +else +{ +uint8_t x_34; +x_34 = !lean_is_exclusive(x_29); +if (x_34 == 0) +{ +return x_29; +} +else +{ +lean_object* x_35; lean_object* x_36; lean_object* x_37; +x_35 = lean_ctor_get(x_29, 0); +x_36 = lean_ctor_get(x_29, 1); +lean_inc(x_36); +lean_inc(x_35); +lean_dec(x_29); +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; +} +} +} +} +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___elambda__1___boxed(lean_object* x_1) { +_start: +{ +uint8_t x_2; lean_object* x_3; +x_2 = l_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___elambda__1(x_1); +lean_dec(x_1); +x_3 = lean_box(x_2); +return x_3; +} +} +LEAN_EXPORT lean_object* l_Lean_throwError___at_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___spec__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_Lean_throwError___at_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___spec__2(x_1, x_2, x_3, x_4); +lean_dec(x_3); +return x_5; +} +} +LEAN_EXPORT lean_object* l_Array_sequenceMap_loop___at_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___spec__4___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +_start: +{ +lean_object* x_6; +x_6 = l_Array_sequenceMap_loop___at_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___spec__4(x_1, x_2, x_3, x_4, x_5); +lean_dec(x_1); +return x_6; +} +} +LEAN_EXPORT lean_object* l_Array_sequenceMap___at_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___spec__3___boxed(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; +x_3 = l_Array_sequenceMap___at_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___spec__3(x_1, x_2); +lean_dec(x_1); +return x_3; +} +} +LEAN_EXPORT lean_object* l_Lean_throwErrorAt___at_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___spec__5___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +_start: +{ +lean_object* x_6; +x_6 = l_Lean_throwErrorAt___at_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___spec__5(x_1, x_2, x_3, x_4, x_5); +lean_dec(x_4); +lean_dec(x_1); +return x_6; +} +} +LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___spec__6___lambda__1___boxed(lean_object* x_1, lean_object* x_2) { +_start: +{ +uint8_t x_3; lean_object* x_4; +x_3 = l_Array_forInUnsafe_loop___at_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___spec__6___lambda__1(x_1, x_2); +lean_dec(x_2); +lean_dec(x_1); +x_4 = lean_box(x_3); +return x_4; +} +} +LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___spec__6___lambda__8___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_forInUnsafe_loop___at_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___spec__6___lambda__8(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +lean_dec(x_6); +lean_dec(x_3); +lean_dec(x_1); +return x_8; +} +} +LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___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) { +_start: +{ +size_t x_8; size_t x_9; lean_object* x_10; +x_8 = lean_unbox_usize(x_2); +lean_dec(x_2); +x_9 = lean_unbox_usize(x_3); +lean_dec(x_3); +x_10 = l_Array_forInUnsafe_loop___at_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___spec__6(x_1, x_8, x_9, x_4, x_5, x_6, x_7); +lean_dec(x_6); +lean_dec(x_1); +return x_10; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___lambda__2___boxed(lean_object* x_1) { +_start: +{ +uint8_t x_2; lean_object* x_3; +x_2 = l_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___lambda__2(x_1); +lean_dec(x_1); +x_3 = lean_box(x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_GuardMsgs_instImpl____x40_Lean_Elab_GuardMsgs___hyg_1100____closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("Elab", 4); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_GuardMsgs_instImpl____x40_Lean_Elab_GuardMsgs___hyg_1100____closed__2() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("Tactic", 6); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_GuardMsgs_instImpl____x40_Lean_Elab_GuardMsgs___hyg_1100____closed__3() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("GuardMsgs", 9); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_GuardMsgs_instImpl____x40_Lean_Elab_GuardMsgs___hyg_1100____closed__4() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("GuardMsgFailure", 15); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_GuardMsgs_instImpl____x40_Lean_Elab_GuardMsgs___hyg_1100____closed__5() { +_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_Array_forInUnsafe_loop___at_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___spec__6___closed__1; +x_2 = l_Lean_Elab_Tactic_GuardMsgs_instImpl____x40_Lean_Elab_GuardMsgs___hyg_1100____closed__1; +x_3 = l_Lean_Elab_Tactic_GuardMsgs_instImpl____x40_Lean_Elab_GuardMsgs___hyg_1100____closed__2; +x_4 = l_Lean_Elab_Tactic_GuardMsgs_instImpl____x40_Lean_Elab_GuardMsgs___hyg_1100____closed__3; +x_5 = l_Lean_Elab_Tactic_GuardMsgs_instImpl____x40_Lean_Elab_GuardMsgs___hyg_1100____closed__4; +x_6 = l_Lean_Name_mkStr5(x_1, x_2, x_3, x_4, x_5); +return x_6; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_GuardMsgs_instImpl____x40_Lean_Elab_GuardMsgs___hyg_1100_() { +_start: +{ +lean_object* x_1; +x_1 = l_Lean_Elab_Tactic_GuardMsgs_instImpl____x40_Lean_Elab_GuardMsgs___hyg_1100____closed__5; +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_GuardMsgs_instTypeNameGuardMsgFailure() { +_start: +{ +lean_object* x_1; +x_1 = l_Lean_Elab_Tactic_GuardMsgs_instImpl____x40_Lean_Elab_GuardMsgs___hyg_1100_; +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs___spec__1___rarg___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = l_Lean_Elab_unsupportedSyntaxExceptionId; +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs___spec__1___rarg___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs___spec__1___rarg___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; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs___spec__1___rarg(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; +x_2 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs___spec__1___rarg___closed__2; +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; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs___spec__1(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; +x_3 = lean_alloc_closure((void*)(l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs___spec__1___rarg), 1, 0); +return x_3; +} +} +LEAN_EXPORT lean_object* l_List_forIn_loop___at_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs___spec__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) { +_start: +{ +if (lean_obj_tag(x_2) == 0) +{ +lean_object* x_7; +lean_dec(x_1); +x_7 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_7, 0, x_3); +lean_ctor_set(x_7, 1, x_6); +return x_7; +} +else +{ +lean_object* x_8; lean_object* x_9; uint8_t x_10; +x_8 = lean_ctor_get(x_2, 0); +lean_inc(x_8); +x_9 = lean_ctor_get(x_2, 1); +lean_inc(x_9); +lean_dec(x_2); +x_10 = !lean_is_exclusive(x_3); +if (x_10 == 0) +{ +lean_object* x_11; lean_object* x_12; lean_object* x_13; uint8_t x_14; +x_11 = lean_ctor_get(x_3, 0); +x_12 = lean_ctor_get(x_3, 1); +lean_inc(x_1); +lean_inc(x_8); +x_13 = lean_apply_1(x_1, x_8); +x_14 = lean_unbox(x_13); +lean_dec(x_13); +switch (x_14) { +case 0: +{ +lean_object* x_15; +x_15 = l_Lean_PersistentArray_push___rarg(x_11, x_8); +lean_ctor_set(x_3, 0, x_15); +x_2 = x_9; +goto _start; +} +case 1: +{ +lean_dec(x_8); +x_2 = x_9; +goto _start; +} +default: +{ +lean_object* x_18; +x_18 = l_Lean_PersistentArray_push___rarg(x_12, x_8); +lean_ctor_set(x_3, 1, x_18); +x_2 = x_9; +goto _start; +} +} +} +else +{ +lean_object* x_20; lean_object* x_21; lean_object* x_22; uint8_t x_23; +x_20 = lean_ctor_get(x_3, 0); +x_21 = lean_ctor_get(x_3, 1); +lean_inc(x_21); +lean_inc(x_20); +lean_dec(x_3); +lean_inc(x_1); +lean_inc(x_8); +x_22 = lean_apply_1(x_1, x_8); +x_23 = lean_unbox(x_22); +lean_dec(x_22); +switch (x_23) { +case 0: +{ +lean_object* x_24; lean_object* x_25; +x_24 = l_Lean_PersistentArray_push___rarg(x_20, x_8); +x_25 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_25, 0, x_24); +lean_ctor_set(x_25, 1, x_21); +x_2 = x_9; +x_3 = x_25; +goto _start; +} +case 1: +{ +lean_object* x_27; +lean_dec(x_8); +x_27 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_27, 0, x_20); +lean_ctor_set(x_27, 1, x_21); +x_2 = x_9; +x_3 = x_27; +goto _start; +} +default: +{ +lean_object* x_29; lean_object* x_30; +x_29 = l_Lean_PersistentArray_push___rarg(x_21, x_8); +x_30 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_30, 0, x_20); +lean_ctor_set(x_30, 1, x_29); +x_2 = x_9; +x_3 = x_30; +goto _start; +} +} +} +} +} +} +LEAN_EXPORT lean_object* l_List_mapM_loop___at_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs___spec__3(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +_start: +{ +if (lean_obj_tag(x_1) == 0) +{ +lean_object* x_6; lean_object* x_7; +x_6 = l_List_reverse___rarg(x_2); +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 +{ +uint8_t x_8; +x_8 = !lean_is_exclusive(x_1); +if (x_8 == 0) +{ +lean_object* x_9; lean_object* x_10; lean_object* x_11; +x_9 = lean_ctor_get(x_1, 0); +x_10 = lean_ctor_get(x_1, 1); +x_11 = l___private_Lean_Elab_GuardMsgs_0__Lean_Elab_Tactic_GuardMsgs_messageToStringWithoutPos(x_9, x_5); +if (lean_obj_tag(x_11) == 0) +{ +lean_object* x_12; lean_object* x_13; +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_ctor_set(x_1, 1, x_2); +lean_ctor_set(x_1, 0, x_12); +{ +lean_object* _tmp_0 = x_10; +lean_object* _tmp_1 = x_1; +lean_object* _tmp_4 = x_13; +x_1 = _tmp_0; +x_2 = _tmp_1; +x_5 = _tmp_4; +} +goto _start; +} +else +{ +uint8_t x_15; +lean_free_object(x_1); +lean_dec(x_10); +lean_dec(x_2); +x_15 = !lean_is_exclusive(x_11); +if (x_15 == 0) +{ +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_16 = lean_ctor_get(x_11, 0); +x_17 = lean_ctor_get(x_3, 6); +x_18 = lean_io_error_to_string(x_16); +x_19 = lean_alloc_ctor(3, 1, 0); +lean_ctor_set(x_19, 0, x_18); +x_20 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_20, 0, x_19); +lean_inc(x_17); +x_21 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_21, 0, x_17); +lean_ctor_set(x_21, 1, x_20); +lean_ctor_set(x_11, 0, x_21); +return x_11; +} +else +{ +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; +x_22 = lean_ctor_get(x_11, 0); +x_23 = lean_ctor_get(x_11, 1); +lean_inc(x_23); +lean_inc(x_22); +lean_dec(x_11); +x_24 = lean_ctor_get(x_3, 6); +x_25 = lean_io_error_to_string(x_22); +x_26 = lean_alloc_ctor(3, 1, 0); +lean_ctor_set(x_26, 0, x_25); +x_27 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_27, 0, x_26); +lean_inc(x_24); +x_28 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_28, 0, x_24); +lean_ctor_set(x_28, 1, x_27); +x_29 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_29, 0, x_28); +lean_ctor_set(x_29, 1, x_23); +return x_29; +} +} +} +else +{ +lean_object* x_30; lean_object* x_31; lean_object* x_32; +x_30 = lean_ctor_get(x_1, 0); +x_31 = lean_ctor_get(x_1, 1); +lean_inc(x_31); +lean_inc(x_30); +lean_dec(x_1); +x_32 = l___private_Lean_Elab_GuardMsgs_0__Lean_Elab_Tactic_GuardMsgs_messageToStringWithoutPos(x_30, x_5); +if (lean_obj_tag(x_32) == 0) +{ +lean_object* x_33; lean_object* x_34; lean_object* x_35; +x_33 = lean_ctor_get(x_32, 0); +lean_inc(x_33); +x_34 = lean_ctor_get(x_32, 1); +lean_inc(x_34); +lean_dec(x_32); +x_35 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_35, 0, x_33); +lean_ctor_set(x_35, 1, x_2); +x_1 = x_31; +x_2 = x_35; +x_5 = x_34; +goto _start; +} +else +{ +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_dec(x_31); +lean_dec(x_2); +x_37 = lean_ctor_get(x_32, 0); +lean_inc(x_37); +x_38 = lean_ctor_get(x_32, 1); +lean_inc(x_38); +if (lean_is_exclusive(x_32)) { + lean_ctor_release(x_32, 0); + lean_ctor_release(x_32, 1); + x_39 = x_32; +} else { + lean_dec_ref(x_32); + x_39 = lean_box(0); +} +x_40 = lean_ctor_get(x_3, 6); +x_41 = lean_io_error_to_string(x_37); +x_42 = lean_alloc_ctor(3, 1, 0); +lean_ctor_set(x_42, 0, x_41); +x_43 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_43, 0, x_42); +lean_inc(x_40); +x_44 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_44, 0, x_40); +lean_ctor_set(x_44, 1, x_43); +if (lean_is_scalar(x_39)) { + x_45 = lean_alloc_ctor(1, 2, 0); +} else { + x_45 = x_39; +} +lean_ctor_set(x_45, 0, x_44); +lean_ctor_set(x_45, 1, x_38); +return x_45; +} +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_throwError___at_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs___spec__6(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; 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; +x_5 = l_Lean_Elab_Command_getRef(x_2, x_3, 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, 4); +lean_inc(x_8); +lean_inc(x_8); +x_9 = l_Lean_Elab_getBetterRef(x_6, x_8); +lean_dec(x_6); +x_10 = l_Lean_addMessageContextPartial___at_Lean_Elab_Command_instAddMessageContextCommandElabM___spec__1(x_1, x_2, x_3, 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_Lean_Elab_addMacroStack___at_Lean_Elab_Command_instAddErrorMessageContextCommandElabM___spec__1(x_11, x_8, x_2, x_3, x_12); +lean_dec(x_2); +x_14 = !lean_is_exclusive(x_13); +if (x_14 == 0) +{ +lean_object* x_15; lean_object* x_16; +x_15 = lean_ctor_get(x_13, 0); +x_16 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_16, 0, x_9); +lean_ctor_set(x_16, 1, x_15); +lean_ctor_set_tag(x_13, 1); +lean_ctor_set(x_13, 0, x_16); +return x_13; +} +else +{ +lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; +x_17 = lean_ctor_get(x_13, 0); +x_18 = lean_ctor_get(x_13, 1); +lean_inc(x_18); +lean_inc(x_17); +lean_dec(x_13); +x_19 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_19, 0, x_9); +lean_ctor_set(x_19, 1, x_17); +x_20 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_20, 0, x_19); +lean_ctor_set(x_20, 1, x_18); +return x_20; +} +} +} +LEAN_EXPORT lean_object* l_Lean_throwErrorAt___at_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs___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_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; uint8_t x_10; +x_6 = l_Lean_Elab_Command_getRef(x_3, x_4, x_5); +x_7 = lean_ctor_get(x_6, 0); +lean_inc(x_7); +x_8 = lean_ctor_get(x_6, 1); +lean_inc(x_8); +lean_dec(x_6); +x_9 = l_Lean_replaceRef(x_1, x_7); +lean_dec(x_7); +lean_dec(x_1); +x_10 = !lean_is_exclusive(x_3); +if (x_10 == 0) +{ +lean_object* x_11; lean_object* x_12; +x_11 = lean_ctor_get(x_3, 6); +lean_dec(x_11); +lean_ctor_set(x_3, 6, x_9); +x_12 = l_Lean_throwError___at_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs___spec__6(x_2, x_3, x_4, x_8); +lean_dec(x_4); +return x_12; +} +else +{ +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; +x_13 = lean_ctor_get(x_3, 0); +x_14 = lean_ctor_get(x_3, 1); +x_15 = lean_ctor_get(x_3, 2); +x_16 = lean_ctor_get(x_3, 3); +x_17 = lean_ctor_get(x_3, 4); +x_18 = lean_ctor_get(x_3, 5); +x_19 = lean_ctor_get(x_3, 7); +lean_inc(x_19); +lean_inc(x_18); +lean_inc(x_17); +lean_inc(x_16); +lean_inc(x_15); +lean_inc(x_14); +lean_inc(x_13); +lean_dec(x_3); +x_20 = lean_alloc_ctor(0, 8, 0); +lean_ctor_set(x_20, 0, x_13); +lean_ctor_set(x_20, 1, x_14); +lean_ctor_set(x_20, 2, x_15); +lean_ctor_set(x_20, 3, x_16); +lean_ctor_set(x_20, 4, x_17); +lean_ctor_set(x_20, 5, x_18); +lean_ctor_set(x_20, 6, x_9); +lean_ctor_set(x_20, 7, x_19); +x_21 = l_Lean_throwError___at_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs___spec__6(x_2, x_20, x_4, x_8); +lean_dec(x_4); +return x_21; +} +} +} +static lean_object* _init_l_Lean_getDocStringText___at_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs___spec__4___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("unexpected doc string", 21); +return x_1; +} +} +static lean_object* _init_l_Lean_getDocStringText___at_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs___spec__4___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_getDocStringText___at_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs___spec__4___closed__1; +x_2 = l_Lean_stringToMessageData(x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_getDocStringText___at_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs___spec__4___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___private_Lean_Elab_GuardMsgs_0__Lean_Elab_Tactic_GuardMsgs_messageToStringWithoutPos___closed__1; +x_2 = l_Lean_stringToMessageData(x_1); +return x_2; +} +} +LEAN_EXPORT lean_object* l_Lean_getDocStringText___at_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs___spec__4(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; +x_5 = lean_unsigned_to_nat(1u); +x_6 = l_Lean_Syntax_getArg(x_1, x_5); +if (lean_obj_tag(x_6) == 2) +{ +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_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +x_7 = lean_ctor_get(x_6, 1); +lean_inc(x_7); +lean_dec(x_6); +x_8 = lean_string_utf8_byte_size(x_7); +x_9 = lean_unsigned_to_nat(2u); +x_10 = lean_nat_sub(x_8, x_9); +lean_dec(x_8); +x_11 = lean_unsigned_to_nat(0u); +x_12 = lean_string_utf8_extract(x_7, x_11, x_10); +lean_dec(x_10); +lean_dec(x_7); +x_13 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_13, 0, x_12); +lean_ctor_set(x_13, 1, x_4); +return x_13; +} +else +{ +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; +x_14 = l_Lean_MessageData_ofSyntax(x_6); +x_15 = l_Lean_indentD(x_14); +x_16 = l_Lean_getDocStringText___at_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs___spec__4___closed__2; +x_17 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_17, 0, x_16); +lean_ctor_set(x_17, 1, x_15); +x_18 = l_Lean_getDocStringText___at_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs___spec__4___closed__3; +x_19 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_19, 0, x_17); +lean_ctor_set(x_19, 1, x_18); +x_20 = l_Lean_throwErrorAt___at_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs___spec__5(x_1, x_19, x_2, x_3, x_4); +return x_20; +} +} +} +static lean_object* _init_l_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs___lambda__1___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = lean_unsigned_to_nat(32u); +x_2 = lean_mk_empty_array_with_capacity(x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs___lambda__1___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs___lambda__1___closed__1; +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_Elab_Tactic_GuardMsgs_elabGuardMsgs___lambda__1___closed__3() { +_start: +{ +size_t x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_1 = 5; +x_2 = l_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs___lambda__1___closed__2; +x_3 = l_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs___lambda__1___closed__1; +x_4 = lean_unsigned_to_nat(0u); +x_5 = lean_alloc_ctor(0, 4, sizeof(size_t)*1); +lean_ctor_set(x_5, 0, x_2); +lean_ctor_set(x_5, 1, x_3); +lean_ctor_set(x_5, 2, x_4); +lean_ctor_set(x_5, 3, x_4); +lean_ctor_set_usize(x_5, 4, x_1); +return x_5; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs___lambda__1___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_MessageLog_empty; +x_2 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_2, 0, x_1); +lean_ctor_set(x_2, 1, x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs___lambda__1___closed__5() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("---\n", 4); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs___lambda__1___closed__6() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("❌ Docstring on `#guard_msgs` does not match generated message:\n\n", 66); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs___lambda__1___closed__7() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs___lambda__1___closed__6; +x_2 = l_Lean_stringToMessageData(x_1); +return x_2; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs___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; 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_269; +x_7 = lean_unsigned_to_nat(1u); +x_8 = l_Lean_Syntax_getArg(x_1, x_7); +x_9 = lean_unsigned_to_nat(2u); +x_10 = l_Lean_Syntax_getArg(x_1, x_9); +x_11 = lean_unsigned_to_nat(4u); +x_12 = l_Lean_Syntax_getArg(x_1, x_11); +x_269 = l_Lean_Syntax_getOptional_x3f(x_10); +lean_dec(x_10); +if (lean_obj_tag(x_269) == 0) +{ +lean_object* x_270; +x_270 = lean_box(0); +x_13 = x_270; +goto block_268; +} +else +{ +uint8_t x_271; +x_271 = !lean_is_exclusive(x_269); +if (x_271 == 0) +{ +x_13 = x_269; +goto block_268; +} +else +{ +lean_object* x_272; lean_object* x_273; +x_272 = lean_ctor_get(x_269, 0); +lean_inc(x_272); +lean_dec(x_269); +x_273 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_273, 0, x_272); +x_13 = x_273; +goto block_268; +} +} +block_268: +{ +lean_object* x_14; lean_object* x_15; +if (lean_obj_tag(x_3) == 0) +{ +lean_object* x_249; +x_249 = lean_box(0); +x_14 = x_249; +x_15 = x_6; +goto block_248; +} +else +{ +uint8_t x_250; +x_250 = !lean_is_exclusive(x_3); +if (x_250 == 0) +{ +lean_object* x_251; lean_object* x_252; +x_251 = lean_ctor_get(x_3, 0); +lean_inc(x_5); +lean_inc(x_4); +x_252 = l_Lean_getDocStringText___at_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs___spec__4(x_251, x_4, x_5, x_6); +if (lean_obj_tag(x_252) == 0) +{ +lean_object* x_253; lean_object* x_254; +x_253 = lean_ctor_get(x_252, 0); +lean_inc(x_253); +x_254 = lean_ctor_get(x_252, 1); +lean_inc(x_254); +lean_dec(x_252); +lean_ctor_set(x_3, 0, x_253); +x_14 = x_3; +x_15 = x_254; +goto block_248; +} +else +{ +uint8_t x_255; +lean_free_object(x_3); +lean_dec(x_13); +lean_dec(x_12); +lean_dec(x_8); +lean_dec(x_5); +lean_dec(x_4); +x_255 = !lean_is_exclusive(x_252); +if (x_255 == 0) +{ +return x_252; +} +else +{ +lean_object* x_256; lean_object* x_257; lean_object* x_258; +x_256 = lean_ctor_get(x_252, 0); +x_257 = lean_ctor_get(x_252, 1); +lean_inc(x_257); +lean_inc(x_256); +lean_dec(x_252); +x_258 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_258, 0, x_256); +lean_ctor_set(x_258, 1, x_257); +return x_258; +} +} +} +else +{ +lean_object* x_259; lean_object* x_260; +x_259 = lean_ctor_get(x_3, 0); +lean_inc(x_259); +lean_dec(x_3); +lean_inc(x_5); +lean_inc(x_4); +x_260 = l_Lean_getDocStringText___at_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs___spec__4(x_259, x_4, x_5, x_6); +if (lean_obj_tag(x_260) == 0) +{ +lean_object* x_261; lean_object* x_262; lean_object* x_263; +x_261 = lean_ctor_get(x_260, 0); +lean_inc(x_261); +x_262 = lean_ctor_get(x_260, 1); +lean_inc(x_262); +lean_dec(x_260); +x_263 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_263, 0, x_261); +x_14 = x_263; +x_15 = x_262; +goto block_248; +} +else +{ +lean_object* x_264; lean_object* x_265; lean_object* x_266; lean_object* x_267; +lean_dec(x_13); +lean_dec(x_12); +lean_dec(x_8); +lean_dec(x_5); +lean_dec(x_4); +x_264 = lean_ctor_get(x_260, 0); +lean_inc(x_264); +x_265 = lean_ctor_get(x_260, 1); +lean_inc(x_265); +if (lean_is_exclusive(x_260)) { + lean_ctor_release(x_260, 0); + lean_ctor_release(x_260, 1); + x_266 = x_260; +} else { + lean_dec_ref(x_260); + 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; +} +} +} +block_248: +{ +lean_object* x_16; lean_object* x_17; +lean_inc(x_5); +lean_inc(x_4); +x_16 = l_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec(x_13, x_4, x_5, x_15); +if (lean_obj_tag(x_14) == 0) +{ +lean_object* x_246; +x_246 = l___private_Lean_Elab_GuardMsgs_0__Lean_Elab_Tactic_GuardMsgs_messageToStringWithoutPos___closed__1; +x_17 = x_246; +goto block_245; +} +else +{ +lean_object* x_247; +x_247 = lean_ctor_get(x_14, 0); +lean_inc(x_247); +lean_dec(x_14); +x_17 = x_247; +goto block_245; +} +block_245: +{ +if (lean_obj_tag(x_16) == 0) +{ +lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; uint8_t x_24; +x_18 = lean_ctor_get(x_16, 0); +lean_inc(x_18); +x_19 = lean_ctor_get(x_16, 1); +lean_inc(x_19); +lean_dec(x_16); +x_20 = l_String_trim(x_17); +lean_dec(x_17); +x_21 = lean_st_ref_take(x_5, x_19); +x_22 = lean_ctor_get(x_21, 0); +lean_inc(x_22); +x_23 = lean_ctor_get(x_21, 1); +lean_inc(x_23); +lean_dec(x_21); +x_24 = !lean_is_exclusive(x_22); +if (x_24 == 0) +{ +lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; +x_25 = lean_ctor_get(x_22, 1); +x_26 = l_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs___lambda__1___closed__3; +lean_ctor_set(x_22, 1, x_26); +x_27 = lean_st_ref_set(x_5, x_22, x_23); +x_28 = lean_ctor_get(x_27, 1); +lean_inc(x_28); +lean_dec(x_27); +lean_inc(x_5); +lean_inc(x_4); +x_29 = l_Lean_Elab_Command_elabCommandTopLevel(x_12, x_4, x_5, x_28); +if (lean_obj_tag(x_29) == 0) +{ +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; +x_30 = lean_ctor_get(x_29, 1); +lean_inc(x_30); +lean_dec(x_29); +x_31 = lean_st_ref_get(x_5, x_30); +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 = lean_ctor_get(x_32, 1); +lean_inc(x_34); +lean_dec(x_32); +lean_inc(x_34); +x_35 = l_Lean_MessageLog_toList(x_34); +x_36 = l_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs___lambda__1___closed__4; +x_37 = l_List_forIn_loop___at_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs___spec__2(x_18, x_35, x_36, x_4, x_5, x_33); +x_38 = lean_ctor_get(x_37, 0); +lean_inc(x_38); +x_39 = lean_ctor_get(x_37, 1); +lean_inc(x_39); +lean_dec(x_37); +x_40 = lean_ctor_get(x_38, 0); +lean_inc(x_40); +x_41 = lean_ctor_get(x_38, 1); +lean_inc(x_41); +lean_dec(x_38); +x_42 = l_Lean_MessageLog_toList(x_40); +x_43 = lean_box(0); +x_44 = l_List_mapM_loop___at_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs___spec__3(x_42, x_43, x_4, x_5, x_39); +if (lean_obj_tag(x_44) == 0) +{ +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; uint8_t x_54; +x_45 = lean_ctor_get(x_44, 0); +lean_inc(x_45); +x_46 = lean_ctor_get(x_44, 1); +lean_inc(x_46); +lean_dec(x_44); +x_47 = l_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs___lambda__1___closed__5; +x_48 = l_String_intercalate(x_47, x_45); +x_49 = l_String_trim(x_48); +lean_dec(x_48); +x_50 = l___private_Lean_Elab_GuardMsgs_0__Lean_Elab_Tactic_GuardMsgs_messageToStringWithoutPos___lambda__2___closed__2; +x_51 = l___private_Lean_Elab_GuardMsgs_0__Lean_Elab_Tactic_GuardMsgs_messageToStringWithoutPos___lambda__4___closed__1; +x_52 = l_String_replace(x_20, x_50, x_51); +lean_dec(x_20); +x_53 = l_String_replace(x_49, x_50, x_51); +x_54 = lean_string_dec_eq(x_52, x_53); +lean_dec(x_53); +lean_dec(x_52); +if (x_54 == 0) +{ +lean_object* x_55; lean_object* x_56; lean_object* x_57; uint8_t x_58; +lean_dec(x_41); +x_55 = lean_st_ref_take(x_5, x_46); +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 = !lean_is_exclusive(x_56); +if (x_58 == 0) +{ +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; uint8_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; lean_object* x_77; lean_object* x_78; +x_59 = lean_ctor_get(x_56, 1); +lean_dec(x_59); +x_60 = l_Lean_PersistentArray_append___rarg(x_25, x_34); +lean_ctor_set(x_56, 1, x_60); +x_61 = lean_st_ref_set(x_5, x_56, x_57); +x_62 = lean_ctor_get(x_61, 1); +lean_inc(x_62); +lean_dec(x_61); +x_63 = l_Lean_stringToMessageData(x_49); +x_64 = l_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs___lambda__1___closed__7; +x_65 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_65, 0, x_64); +lean_ctor_set(x_65, 1, x_63); +x_66 = l_Lean_getDocStringText___at_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs___spec__4___closed__3; +x_67 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_67, 0, x_65); +lean_ctor_set(x_67, 1, x_66); +x_68 = 2; +x_69 = l_Lean_logAt___at_Lean_Elab_Command_elabCommand___spec__4(x_8, x_67, x_68, x_4, x_5, x_62); +lean_dec(x_8); +x_70 = lean_ctor_get(x_69, 1); +lean_inc(x_70); +lean_dec(x_69); +x_71 = l_Lean_Elab_Command_getRef(x_4, x_5, x_70); +x_72 = lean_ctor_get(x_71, 0); +lean_inc(x_72); +x_73 = lean_ctor_get(x_71, 1); +lean_inc(x_73); +lean_dec(x_71); +x_74 = l_Lean_Elab_Tactic_GuardMsgs_instTypeNameGuardMsgFailure; +x_75 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_75, 0, x_74); +lean_ctor_set(x_75, 1, x_49); +x_76 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_76, 0, x_72); +lean_ctor_set(x_76, 1, x_75); +x_77 = lean_alloc_ctor(8, 1, 0); +lean_ctor_set(x_77, 0, x_76); +x_78 = l_Lean_Elab_pushInfoLeaf___at_Lean_Elab_Command_expandDeclId___spec__11(x_77, x_4, x_5, x_73); +lean_dec(x_5); +lean_dec(x_4); +return x_78; +} +else +{ +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; uint8_t 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; +x_79 = lean_ctor_get(x_56, 0); +x_80 = lean_ctor_get(x_56, 2); +x_81 = lean_ctor_get(x_56, 3); +x_82 = lean_ctor_get(x_56, 4); +x_83 = lean_ctor_get(x_56, 5); +x_84 = lean_ctor_get(x_56, 6); +x_85 = lean_ctor_get(x_56, 7); +x_86 = lean_ctor_get(x_56, 8); +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_inc(x_79); +lean_dec(x_56); +x_87 = l_Lean_PersistentArray_append___rarg(x_25, x_34); +x_88 = lean_alloc_ctor(0, 9, 0); +lean_ctor_set(x_88, 0, x_79); +lean_ctor_set(x_88, 1, x_87); +lean_ctor_set(x_88, 2, x_80); +lean_ctor_set(x_88, 3, x_81); +lean_ctor_set(x_88, 4, x_82); +lean_ctor_set(x_88, 5, x_83); +lean_ctor_set(x_88, 6, x_84); +lean_ctor_set(x_88, 7, x_85); +lean_ctor_set(x_88, 8, x_86); +x_89 = lean_st_ref_set(x_5, x_88, x_57); +x_90 = lean_ctor_get(x_89, 1); +lean_inc(x_90); +lean_dec(x_89); +x_91 = l_Lean_stringToMessageData(x_49); +x_92 = l_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs___lambda__1___closed__7; +x_93 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_93, 0, x_92); +lean_ctor_set(x_93, 1, x_91); +x_94 = l_Lean_getDocStringText___at_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs___spec__4___closed__3; +x_95 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_95, 0, x_93); +lean_ctor_set(x_95, 1, x_94); +x_96 = 2; +x_97 = l_Lean_logAt___at_Lean_Elab_Command_elabCommand___spec__4(x_8, x_95, x_96, x_4, x_5, x_90); +lean_dec(x_8); +x_98 = lean_ctor_get(x_97, 1); +lean_inc(x_98); +lean_dec(x_97); +x_99 = l_Lean_Elab_Command_getRef(x_4, x_5, x_98); +x_100 = lean_ctor_get(x_99, 0); +lean_inc(x_100); +x_101 = lean_ctor_get(x_99, 1); +lean_inc(x_101); +lean_dec(x_99); +x_102 = l_Lean_Elab_Tactic_GuardMsgs_instTypeNameGuardMsgFailure; +x_103 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_103, 0, x_102); +lean_ctor_set(x_103, 1, x_49); +x_104 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_104, 0, x_100); +lean_ctor_set(x_104, 1, x_103); +x_105 = lean_alloc_ctor(8, 1, 0); +lean_ctor_set(x_105, 0, x_104); +x_106 = l_Lean_Elab_pushInfoLeaf___at_Lean_Elab_Command_expandDeclId___spec__11(x_105, x_4, x_5, x_101); +lean_dec(x_5); +lean_dec(x_4); +return x_106; +} +} +else +{ +lean_object* x_107; lean_object* x_108; lean_object* x_109; uint8_t x_110; +lean_dec(x_49); +lean_dec(x_34); +lean_dec(x_8); +lean_dec(x_4); +x_107 = lean_st_ref_take(x_5, x_46); +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); +x_110 = !lean_is_exclusive(x_108); +if (x_110 == 0) +{ +lean_object* x_111; lean_object* x_112; lean_object* x_113; uint8_t x_114; +x_111 = lean_ctor_get(x_108, 1); +lean_dec(x_111); +x_112 = l_Lean_PersistentArray_append___rarg(x_25, x_41); +lean_ctor_set(x_108, 1, x_112); +x_113 = lean_st_ref_set(x_5, x_108, x_109); +lean_dec(x_5); +x_114 = !lean_is_exclusive(x_113); +if (x_114 == 0) +{ +lean_object* x_115; lean_object* x_116; +x_115 = lean_ctor_get(x_113, 0); +lean_dec(x_115); +x_116 = lean_box(0); +lean_ctor_set(x_113, 0, x_116); +return x_113; +} +else +{ +lean_object* x_117; lean_object* x_118; lean_object* x_119; +x_117 = lean_ctor_get(x_113, 1); +lean_inc(x_117); +lean_dec(x_113); +x_118 = lean_box(0); +x_119 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_119, 0, x_118); +lean_ctor_set(x_119, 1, x_117); +return x_119; +} +} +else +{ +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; +x_120 = lean_ctor_get(x_108, 0); +x_121 = lean_ctor_get(x_108, 2); +x_122 = lean_ctor_get(x_108, 3); +x_123 = lean_ctor_get(x_108, 4); +x_124 = lean_ctor_get(x_108, 5); +x_125 = lean_ctor_get(x_108, 6); +x_126 = lean_ctor_get(x_108, 7); +x_127 = lean_ctor_get(x_108, 8); +lean_inc(x_127); +lean_inc(x_126); +lean_inc(x_125); +lean_inc(x_124); +lean_inc(x_123); +lean_inc(x_122); +lean_inc(x_121); +lean_inc(x_120); +lean_dec(x_108); +x_128 = l_Lean_PersistentArray_append___rarg(x_25, x_41); +x_129 = lean_alloc_ctor(0, 9, 0); +lean_ctor_set(x_129, 0, x_120); +lean_ctor_set(x_129, 1, x_128); +lean_ctor_set(x_129, 2, x_121); +lean_ctor_set(x_129, 3, x_122); +lean_ctor_set(x_129, 4, x_123); +lean_ctor_set(x_129, 5, x_124); +lean_ctor_set(x_129, 6, x_125); +lean_ctor_set(x_129, 7, x_126); +lean_ctor_set(x_129, 8, x_127); +x_130 = lean_st_ref_set(x_5, x_129, x_109); +lean_dec(x_5); +x_131 = lean_ctor_get(x_130, 1); +lean_inc(x_131); +if (lean_is_exclusive(x_130)) { + lean_ctor_release(x_130, 0); + lean_ctor_release(x_130, 1); + x_132 = x_130; +} else { + lean_dec_ref(x_130); + x_132 = lean_box(0); +} +x_133 = lean_box(0); +if (lean_is_scalar(x_132)) { + x_134 = lean_alloc_ctor(0, 2, 0); +} else { + x_134 = x_132; +} +lean_ctor_set(x_134, 0, x_133); +lean_ctor_set(x_134, 1, x_131); +return x_134; +} +} +} +else +{ +uint8_t x_135; +lean_dec(x_41); +lean_dec(x_34); +lean_dec(x_25); +lean_dec(x_20); +lean_dec(x_8); +lean_dec(x_5); +lean_dec(x_4); +x_135 = !lean_is_exclusive(x_44); +if (x_135 == 0) +{ +return x_44; +} +else +{ +lean_object* x_136; lean_object* x_137; lean_object* x_138; +x_136 = lean_ctor_get(x_44, 0); +x_137 = lean_ctor_get(x_44, 1); +lean_inc(x_137); +lean_inc(x_136); +lean_dec(x_44); +x_138 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_138, 0, x_136); +lean_ctor_set(x_138, 1, x_137); +return x_138; +} +} +} +else +{ +uint8_t x_139; +lean_dec(x_25); +lean_dec(x_20); +lean_dec(x_18); +lean_dec(x_8); +lean_dec(x_5); +lean_dec(x_4); +x_139 = !lean_is_exclusive(x_29); +if (x_139 == 0) +{ +return x_29; +} +else +{ +lean_object* x_140; lean_object* x_141; lean_object* x_142; +x_140 = lean_ctor_get(x_29, 0); +x_141 = lean_ctor_get(x_29, 1); +lean_inc(x_141); +lean_inc(x_140); +lean_dec(x_29); +x_142 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_142, 0, x_140); +lean_ctor_set(x_142, 1, x_141); +return x_142; +} +} +} +else +{ +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_143 = lean_ctor_get(x_22, 0); +x_144 = lean_ctor_get(x_22, 1); +x_145 = lean_ctor_get(x_22, 2); +x_146 = lean_ctor_get(x_22, 3); +x_147 = lean_ctor_get(x_22, 4); +x_148 = lean_ctor_get(x_22, 5); +x_149 = lean_ctor_get(x_22, 6); +x_150 = lean_ctor_get(x_22, 7); +x_151 = lean_ctor_get(x_22, 8); +lean_inc(x_151); +lean_inc(x_150); +lean_inc(x_149); +lean_inc(x_148); +lean_inc(x_147); +lean_inc(x_146); +lean_inc(x_145); +lean_inc(x_144); +lean_inc(x_143); +lean_dec(x_22); +x_152 = l_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs___lambda__1___closed__3; +x_153 = lean_alloc_ctor(0, 9, 0); +lean_ctor_set(x_153, 0, x_143); +lean_ctor_set(x_153, 1, x_152); +lean_ctor_set(x_153, 2, x_145); +lean_ctor_set(x_153, 3, x_146); +lean_ctor_set(x_153, 4, x_147); +lean_ctor_set(x_153, 5, x_148); +lean_ctor_set(x_153, 6, x_149); +lean_ctor_set(x_153, 7, x_150); +lean_ctor_set(x_153, 8, x_151); +x_154 = lean_st_ref_set(x_5, x_153, x_23); +x_155 = lean_ctor_get(x_154, 1); +lean_inc(x_155); +lean_dec(x_154); +lean_inc(x_5); +lean_inc(x_4); +x_156 = l_Lean_Elab_Command_elabCommandTopLevel(x_12, x_4, x_5, x_155); +if (lean_obj_tag(x_156) == 0) +{ +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; +x_157 = lean_ctor_get(x_156, 1); +lean_inc(x_157); +lean_dec(x_156); +x_158 = lean_st_ref_get(x_5, x_157); +x_159 = lean_ctor_get(x_158, 0); +lean_inc(x_159); +x_160 = lean_ctor_get(x_158, 1); +lean_inc(x_160); +lean_dec(x_158); +x_161 = lean_ctor_get(x_159, 1); +lean_inc(x_161); +lean_dec(x_159); +lean_inc(x_161); +x_162 = l_Lean_MessageLog_toList(x_161); +x_163 = l_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs___lambda__1___closed__4; +x_164 = l_List_forIn_loop___at_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs___spec__2(x_18, x_162, x_163, x_4, x_5, x_160); +x_165 = lean_ctor_get(x_164, 0); +lean_inc(x_165); +x_166 = lean_ctor_get(x_164, 1); +lean_inc(x_166); +lean_dec(x_164); +x_167 = lean_ctor_get(x_165, 0); +lean_inc(x_167); +x_168 = lean_ctor_get(x_165, 1); +lean_inc(x_168); +lean_dec(x_165); +x_169 = l_Lean_MessageLog_toList(x_167); +x_170 = lean_box(0); +x_171 = l_List_mapM_loop___at_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs___spec__3(x_169, x_170, x_4, x_5, x_166); +if (lean_obj_tag(x_171) == 0) +{ +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; uint8_t x_181; +x_172 = lean_ctor_get(x_171, 0); +lean_inc(x_172); +x_173 = lean_ctor_get(x_171, 1); +lean_inc(x_173); +lean_dec(x_171); +x_174 = l_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs___lambda__1___closed__5; +x_175 = l_String_intercalate(x_174, x_172); +x_176 = l_String_trim(x_175); +lean_dec(x_175); +x_177 = l___private_Lean_Elab_GuardMsgs_0__Lean_Elab_Tactic_GuardMsgs_messageToStringWithoutPos___lambda__2___closed__2; +x_178 = l___private_Lean_Elab_GuardMsgs_0__Lean_Elab_Tactic_GuardMsgs_messageToStringWithoutPos___lambda__4___closed__1; +x_179 = l_String_replace(x_20, x_177, x_178); +lean_dec(x_20); +x_180 = l_String_replace(x_176, x_177, x_178); +x_181 = lean_string_dec_eq(x_179, x_180); +lean_dec(x_180); +lean_dec(x_179); +if (x_181 == 0) +{ +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; uint8_t 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_dec(x_168); +x_182 = lean_st_ref_take(x_5, x_173); +x_183 = lean_ctor_get(x_182, 0); +lean_inc(x_183); +x_184 = lean_ctor_get(x_182, 1); +lean_inc(x_184); +lean_dec(x_182); +x_185 = lean_ctor_get(x_183, 0); +lean_inc(x_185); +x_186 = lean_ctor_get(x_183, 2); +lean_inc(x_186); +x_187 = lean_ctor_get(x_183, 3); +lean_inc(x_187); +x_188 = lean_ctor_get(x_183, 4); +lean_inc(x_188); +x_189 = lean_ctor_get(x_183, 5); +lean_inc(x_189); +x_190 = lean_ctor_get(x_183, 6); +lean_inc(x_190); +x_191 = lean_ctor_get(x_183, 7); +lean_inc(x_191); +x_192 = lean_ctor_get(x_183, 8); +lean_inc(x_192); +if (lean_is_exclusive(x_183)) { + lean_ctor_release(x_183, 0); + lean_ctor_release(x_183, 1); + lean_ctor_release(x_183, 2); + lean_ctor_release(x_183, 3); + lean_ctor_release(x_183, 4); + lean_ctor_release(x_183, 5); + lean_ctor_release(x_183, 6); + lean_ctor_release(x_183, 7); + lean_ctor_release(x_183, 8); + x_193 = x_183; +} else { + lean_dec_ref(x_183); + x_193 = lean_box(0); +} +x_194 = l_Lean_PersistentArray_append___rarg(x_144, x_161); +if (lean_is_scalar(x_193)) { + x_195 = lean_alloc_ctor(0, 9, 0); +} else { + x_195 = x_193; +} +lean_ctor_set(x_195, 0, x_185); +lean_ctor_set(x_195, 1, x_194); +lean_ctor_set(x_195, 2, x_186); +lean_ctor_set(x_195, 3, x_187); +lean_ctor_set(x_195, 4, x_188); +lean_ctor_set(x_195, 5, x_189); +lean_ctor_set(x_195, 6, x_190); +lean_ctor_set(x_195, 7, x_191); +lean_ctor_set(x_195, 8, x_192); +x_196 = lean_st_ref_set(x_5, x_195, x_184); +x_197 = lean_ctor_get(x_196, 1); +lean_inc(x_197); +lean_dec(x_196); +x_198 = l_Lean_stringToMessageData(x_176); +x_199 = l_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs___lambda__1___closed__7; +x_200 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_200, 0, x_199); +lean_ctor_set(x_200, 1, x_198); +x_201 = l_Lean_getDocStringText___at_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs___spec__4___closed__3; +x_202 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_202, 0, x_200); +lean_ctor_set(x_202, 1, x_201); +x_203 = 2; +x_204 = l_Lean_logAt___at_Lean_Elab_Command_elabCommand___spec__4(x_8, x_202, x_203, x_4, x_5, x_197); +lean_dec(x_8); +x_205 = lean_ctor_get(x_204, 1); +lean_inc(x_205); +lean_dec(x_204); +x_206 = l_Lean_Elab_Command_getRef(x_4, x_5, x_205); +x_207 = lean_ctor_get(x_206, 0); +lean_inc(x_207); +x_208 = lean_ctor_get(x_206, 1); +lean_inc(x_208); +lean_dec(x_206); +x_209 = l_Lean_Elab_Tactic_GuardMsgs_instTypeNameGuardMsgFailure; +x_210 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_210, 0, x_209); +lean_ctor_set(x_210, 1, x_176); +x_211 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_211, 0, x_207); +lean_ctor_set(x_211, 1, x_210); +x_212 = lean_alloc_ctor(8, 1, 0); +lean_ctor_set(x_212, 0, x_211); +x_213 = l_Lean_Elab_pushInfoLeaf___at_Lean_Elab_Command_expandDeclId___spec__11(x_212, x_4, x_5, x_208); +lean_dec(x_5); +lean_dec(x_4); +return x_213; +} +else +{ +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_dec(x_176); +lean_dec(x_161); +lean_dec(x_8); +lean_dec(x_4); +x_214 = lean_st_ref_take(x_5, x_173); +x_215 = lean_ctor_get(x_214, 0); +lean_inc(x_215); +x_216 = lean_ctor_get(x_214, 1); +lean_inc(x_216); +lean_dec(x_214); +x_217 = lean_ctor_get(x_215, 0); +lean_inc(x_217); +x_218 = lean_ctor_get(x_215, 2); +lean_inc(x_218); +x_219 = lean_ctor_get(x_215, 3); +lean_inc(x_219); +x_220 = lean_ctor_get(x_215, 4); +lean_inc(x_220); +x_221 = lean_ctor_get(x_215, 5); +lean_inc(x_221); +x_222 = lean_ctor_get(x_215, 6); +lean_inc(x_222); +x_223 = lean_ctor_get(x_215, 7); +lean_inc(x_223); +x_224 = lean_ctor_get(x_215, 8); +lean_inc(x_224); +if (lean_is_exclusive(x_215)) { + lean_ctor_release(x_215, 0); + lean_ctor_release(x_215, 1); + lean_ctor_release(x_215, 2); + lean_ctor_release(x_215, 3); + lean_ctor_release(x_215, 4); + lean_ctor_release(x_215, 5); + lean_ctor_release(x_215, 6); + lean_ctor_release(x_215, 7); + lean_ctor_release(x_215, 8); + x_225 = x_215; +} else { + lean_dec_ref(x_215); + x_225 = lean_box(0); +} +x_226 = l_Lean_PersistentArray_append___rarg(x_144, x_168); +if (lean_is_scalar(x_225)) { + x_227 = lean_alloc_ctor(0, 9, 0); +} else { + x_227 = x_225; +} +lean_ctor_set(x_227, 0, x_217); +lean_ctor_set(x_227, 1, x_226); +lean_ctor_set(x_227, 2, x_218); +lean_ctor_set(x_227, 3, x_219); +lean_ctor_set(x_227, 4, x_220); +lean_ctor_set(x_227, 5, x_221); +lean_ctor_set(x_227, 6, x_222); +lean_ctor_set(x_227, 7, x_223); +lean_ctor_set(x_227, 8, x_224); +x_228 = lean_st_ref_set(x_5, x_227, x_216); +lean_dec(x_5); +x_229 = lean_ctor_get(x_228, 1); +lean_inc(x_229); +if (lean_is_exclusive(x_228)) { + lean_ctor_release(x_228, 0); + lean_ctor_release(x_228, 1); + x_230 = x_228; +} else { + lean_dec_ref(x_228); + x_230 = lean_box(0); +} +x_231 = lean_box(0); +if (lean_is_scalar(x_230)) { + x_232 = lean_alloc_ctor(0, 2, 0); +} else { + x_232 = x_230; +} +lean_ctor_set(x_232, 0, x_231); +lean_ctor_set(x_232, 1, x_229); +return x_232; +} +} +else +{ +lean_object* x_233; lean_object* x_234; lean_object* x_235; lean_object* x_236; +lean_dec(x_168); +lean_dec(x_161); +lean_dec(x_144); +lean_dec(x_20); +lean_dec(x_8); +lean_dec(x_5); +lean_dec(x_4); +x_233 = lean_ctor_get(x_171, 0); +lean_inc(x_233); +x_234 = lean_ctor_get(x_171, 1); +lean_inc(x_234); +if (lean_is_exclusive(x_171)) { + lean_ctor_release(x_171, 0); + lean_ctor_release(x_171, 1); + x_235 = x_171; +} else { + lean_dec_ref(x_171); + x_235 = lean_box(0); +} +if (lean_is_scalar(x_235)) { + x_236 = lean_alloc_ctor(1, 2, 0); +} else { + x_236 = x_235; +} +lean_ctor_set(x_236, 0, x_233); +lean_ctor_set(x_236, 1, x_234); +return x_236; +} +} +else +{ +lean_object* x_237; lean_object* x_238; lean_object* x_239; lean_object* x_240; +lean_dec(x_144); +lean_dec(x_20); +lean_dec(x_18); +lean_dec(x_8); +lean_dec(x_5); +lean_dec(x_4); +x_237 = lean_ctor_get(x_156, 0); +lean_inc(x_237); +x_238 = lean_ctor_get(x_156, 1); +lean_inc(x_238); +if (lean_is_exclusive(x_156)) { + lean_ctor_release(x_156, 0); + lean_ctor_release(x_156, 1); + x_239 = x_156; +} else { + lean_dec_ref(x_156); + x_239 = lean_box(0); +} +if (lean_is_scalar(x_239)) { + x_240 = lean_alloc_ctor(1, 2, 0); +} else { + x_240 = x_239; +} +lean_ctor_set(x_240, 0, x_237); +lean_ctor_set(x_240, 1, x_238); +return x_240; +} +} +} +else +{ +uint8_t x_241; +lean_dec(x_17); +lean_dec(x_12); +lean_dec(x_8); +lean_dec(x_5); +lean_dec(x_4); +x_241 = !lean_is_exclusive(x_16); +if (x_241 == 0) +{ +return x_16; +} +else +{ +lean_object* x_242; lean_object* x_243; lean_object* x_244; +x_242 = lean_ctor_get(x_16, 0); +x_243 = lean_ctor_get(x_16, 1); +lean_inc(x_243); +lean_inc(x_242); +lean_dec(x_16); +x_244 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_244, 0, x_242); +lean_ctor_set(x_244, 1, x_243); +return x_244; +} +} +} +} +} +} +} +static lean_object* _init_l_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("guardMsgsCmd", 12); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Array_forInUnsafe_loop___at_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___spec__6___closed__1; +x_2 = l_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs___closed__1; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs___closed__3() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("Parser", 6); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs___closed__4() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("Command", 7); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs___closed__5() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("docComment", 10); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs___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_Array_forInUnsafe_loop___at_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___spec__6___closed__1; +x_2 = l_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs___closed__3; +x_3 = l_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs___closed__4; +x_4 = l_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs___closed__5; +x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); +return x_5; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +_start: +{ +lean_object* x_5; uint8_t x_6; +x_5 = l_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs___closed__2; +lean_inc(x_1); +x_6 = l_Lean_Syntax_isOfKind(x_1, x_5); +if (x_6 == 0) +{ +lean_object* x_7; +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +x_7 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs___spec__1___rarg(x_4); +return x_7; +} +else +{ +lean_object* x_8; lean_object* x_9; uint8_t x_10; +x_8 = lean_unsigned_to_nat(0u); +x_9 = l_Lean_Syntax_getArg(x_1, x_8); +x_10 = l_Lean_Syntax_isNone(x_9); +if (x_10 == 0) +{ +lean_object* x_11; uint8_t x_12; +x_11 = lean_unsigned_to_nat(1u); +lean_inc(x_9); +x_12 = l_Lean_Syntax_matchesNull(x_9, x_11); +if (x_12 == 0) +{ +lean_object* x_13; +lean_dec(x_9); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +x_13 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs___spec__1___rarg(x_4); +return x_13; +} +else +{ +lean_object* x_14; lean_object* x_15; uint8_t x_16; +x_14 = l_Lean_Syntax_getArg(x_9, x_8); +lean_dec(x_9); +x_15 = l_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs___closed__6; +lean_inc(x_14); +x_16 = l_Lean_Syntax_isOfKind(x_14, x_15); +if (x_16 == 0) +{ +lean_object* x_17; +lean_dec(x_14); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +x_17 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs___spec__1___rarg(x_4); +return x_17; +} +else +{ +lean_object* x_18; lean_object* x_19; lean_object* x_20; +x_18 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_18, 0, x_14); +x_19 = lean_box(0); +x_20 = l_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs___lambda__1(x_1, x_19, x_18, x_2, x_3, x_4); +lean_dec(x_1); +return x_20; +} +} +} +else +{ +lean_object* x_21; lean_object* x_22; lean_object* x_23; +lean_dec(x_9); +x_21 = lean_box(0); +x_22 = lean_box(0); +x_23 = l_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs___lambda__1(x_1, x_22, x_21, x_2, x_3, x_4); +lean_dec(x_1); +return x_23; +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs___spec__1___boxed(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; +x_3 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs___spec__1(x_1, x_2); +lean_dec(x_2); +lean_dec(x_1); +return x_3; +} +} +LEAN_EXPORT lean_object* l_List_forIn_loop___at_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs___spec__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) { +_start: +{ +lean_object* x_7; +x_7 = l_List_forIn_loop___at_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs___spec__2(x_1, x_2, x_3, x_4, x_5, x_6); +lean_dec(x_5); +lean_dec(x_4); +return x_7; +} +} +LEAN_EXPORT lean_object* l_List_mapM_loop___at_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs___spec__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +_start: +{ +lean_object* x_6; +x_6 = l_List_mapM_loop___at_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs___spec__3(x_1, x_2, x_3, x_4, x_5); +lean_dec(x_4); +lean_dec(x_3); +return x_6; +} +} +LEAN_EXPORT lean_object* l_Lean_throwError___at_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs___spec__6___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_throwError___at_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs___spec__6(x_1, x_2, x_3, x_4); +lean_dec(x_3); +return x_5; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs___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_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs___lambda__1(x_1, x_2, x_3, x_4, x_5, x_6); +lean_dec(x_2); +lean_dec(x_1); +return x_7; +} +} +static lean_object* _init_l___regBuiltin_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("elabGuardMsgs", 13); +return x_1; +} +} +static lean_object* _init_l___regBuiltin_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs___closed__2() { +_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_Array_forInUnsafe_loop___at_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___spec__6___closed__1; +x_2 = l_Lean_Elab_Tactic_GuardMsgs_instImpl____x40_Lean_Elab_GuardMsgs___hyg_1100____closed__1; +x_3 = l_Lean_Elab_Tactic_GuardMsgs_instImpl____x40_Lean_Elab_GuardMsgs___hyg_1100____closed__2; +x_4 = l_Lean_Elab_Tactic_GuardMsgs_instImpl____x40_Lean_Elab_GuardMsgs___hyg_1100____closed__3; +x_5 = l___regBuiltin_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs___closed__1; +x_6 = l_Lean_Name_mkStr5(x_1, x_2, x_3, x_4, x_5); +return x_6; +} +} +static lean_object* _init_l___regBuiltin_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs___closed__3() { +_start: +{ +lean_object* x_1; +x_1 = l_Lean_Elab_Command_commandElabAttribute; +return x_1; +} +} +static lean_object* _init_l___regBuiltin_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs___closed__4() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs), 4, 0); +return x_1; +} +} +LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; +x_2 = l___regBuiltin_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs___closed__3; +x_3 = l_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs___closed__2; +x_4 = l___regBuiltin_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs___closed__2; +x_5 = l___regBuiltin_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs___closed__4; +x_6 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_5, x_1); +return x_6; +} +} +static lean_object* _init_l___regBuiltin_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs_declRange___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_unsigned_to_nat(75u); +x_2 = lean_unsigned_to_nat(42u); +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_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs_declRange___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_unsigned_to_nat(99u); +x_2 = lean_unsigned_to_nat(31u); +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_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs_declRange___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_1 = l___regBuiltin_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs_declRange___closed__1; +x_2 = lean_unsigned_to_nat(42u); +x_3 = l___regBuiltin_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs_declRange___closed__2; +x_4 = lean_unsigned_to_nat(31u); +x_5 = lean_alloc_ctor(0, 4, 0); +lean_ctor_set(x_5, 0, x_1); +lean_ctor_set(x_5, 1, x_2); +lean_ctor_set(x_5, 2, x_3); +lean_ctor_set(x_5, 3, x_4); +return x_5; +} +} +static lean_object* _init_l___regBuiltin_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs_declRange___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_unsigned_to_nat(75u); +x_2 = lean_unsigned_to_nat(46u); +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_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs_declRange___closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_unsigned_to_nat(75u); +x_2 = lean_unsigned_to_nat(59u); +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_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs_declRange___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___regBuiltin_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs_declRange___closed__4; +x_2 = lean_unsigned_to_nat(46u); +x_3 = l___regBuiltin_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs_declRange___closed__5; +x_4 = lean_unsigned_to_nat(59u); +x_5 = lean_alloc_ctor(0, 4, 0); +lean_ctor_set(x_5, 0, x_1); +lean_ctor_set(x_5, 1, x_2); +lean_ctor_set(x_5, 2, x_3); +lean_ctor_set(x_5, 3, x_4); +return x_5; +} +} +static lean_object* _init_l___regBuiltin_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs_declRange___closed__7() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___regBuiltin_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs_declRange___closed__3; +x_2 = l___regBuiltin_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs_declRange___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); +return x_3; +} +} +LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs_declRange(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_2 = l___regBuiltin_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs___closed__2; +x_3 = l___regBuiltin_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs_declRange___closed__7; +x_4 = l_Lean_addBuiltinDeclarationRanges(x_2, x_3, x_1); +return x_4; +} +} +lean_object* initialize_Init(uint8_t builtin, lean_object*); +lean_object* initialize_Lean_Server_CodeActions_Attr(uint8_t builtin, lean_object*); +static bool _G_initialized = false; +LEAN_EXPORT lean_object* initialize_Lean_Elab_GuardMsgs(uint8_t builtin, lean_object* w) { +lean_object * res; +if (_G_initialized) return lean_io_result_mk_ok(lean_box(0)); +_G_initialized = true; +res = initialize_Init(builtin, lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +res = initialize_Lean_Server_CodeActions_Attr(builtin, lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +l___private_Lean_Elab_GuardMsgs_0__Lean_Elab_Tactic_GuardMsgs_messageToStringWithoutPos___lambda__2___closed__1 = _init_l___private_Lean_Elab_GuardMsgs_0__Lean_Elab_Tactic_GuardMsgs_messageToStringWithoutPos___lambda__2___closed__1(); +lean_mark_persistent(l___private_Lean_Elab_GuardMsgs_0__Lean_Elab_Tactic_GuardMsgs_messageToStringWithoutPos___lambda__2___closed__1); +l___private_Lean_Elab_GuardMsgs_0__Lean_Elab_Tactic_GuardMsgs_messageToStringWithoutPos___lambda__2___closed__2 = _init_l___private_Lean_Elab_GuardMsgs_0__Lean_Elab_Tactic_GuardMsgs_messageToStringWithoutPos___lambda__2___closed__2(); +lean_mark_persistent(l___private_Lean_Elab_GuardMsgs_0__Lean_Elab_Tactic_GuardMsgs_messageToStringWithoutPos___lambda__2___closed__2); +l___private_Lean_Elab_GuardMsgs_0__Lean_Elab_Tactic_GuardMsgs_messageToStringWithoutPos___lambda__3___closed__1 = _init_l___private_Lean_Elab_GuardMsgs_0__Lean_Elab_Tactic_GuardMsgs_messageToStringWithoutPos___lambda__3___closed__1(); +lean_mark_persistent(l___private_Lean_Elab_GuardMsgs_0__Lean_Elab_Tactic_GuardMsgs_messageToStringWithoutPos___lambda__3___closed__1); +l___private_Lean_Elab_GuardMsgs_0__Lean_Elab_Tactic_GuardMsgs_messageToStringWithoutPos___lambda__3___closed__2 = _init_l___private_Lean_Elab_GuardMsgs_0__Lean_Elab_Tactic_GuardMsgs_messageToStringWithoutPos___lambda__3___closed__2(); +lean_mark_persistent(l___private_Lean_Elab_GuardMsgs_0__Lean_Elab_Tactic_GuardMsgs_messageToStringWithoutPos___lambda__3___closed__2); +l___private_Lean_Elab_GuardMsgs_0__Lean_Elab_Tactic_GuardMsgs_messageToStringWithoutPos___lambda__3___closed__3 = _init_l___private_Lean_Elab_GuardMsgs_0__Lean_Elab_Tactic_GuardMsgs_messageToStringWithoutPos___lambda__3___closed__3(); +lean_mark_persistent(l___private_Lean_Elab_GuardMsgs_0__Lean_Elab_Tactic_GuardMsgs_messageToStringWithoutPos___lambda__3___closed__3); +l___private_Lean_Elab_GuardMsgs_0__Lean_Elab_Tactic_GuardMsgs_messageToStringWithoutPos___lambda__3___closed__4 = _init_l___private_Lean_Elab_GuardMsgs_0__Lean_Elab_Tactic_GuardMsgs_messageToStringWithoutPos___lambda__3___closed__4(); +lean_mark_persistent(l___private_Lean_Elab_GuardMsgs_0__Lean_Elab_Tactic_GuardMsgs_messageToStringWithoutPos___lambda__3___closed__4); +l___private_Lean_Elab_GuardMsgs_0__Lean_Elab_Tactic_GuardMsgs_messageToStringWithoutPos___lambda__4___closed__1 = _init_l___private_Lean_Elab_GuardMsgs_0__Lean_Elab_Tactic_GuardMsgs_messageToStringWithoutPos___lambda__4___closed__1(); +lean_mark_persistent(l___private_Lean_Elab_GuardMsgs_0__Lean_Elab_Tactic_GuardMsgs_messageToStringWithoutPos___lambda__4___closed__1); +l___private_Lean_Elab_GuardMsgs_0__Lean_Elab_Tactic_GuardMsgs_messageToStringWithoutPos___closed__1 = _init_l___private_Lean_Elab_GuardMsgs_0__Lean_Elab_Tactic_GuardMsgs_messageToStringWithoutPos___closed__1(); +lean_mark_persistent(l___private_Lean_Elab_GuardMsgs_0__Lean_Elab_Tactic_GuardMsgs_messageToStringWithoutPos___closed__1); +l___private_Lean_Elab_GuardMsgs_0__Lean_Elab_Tactic_GuardMsgs_messageToStringWithoutPos___closed__2 = _init_l___private_Lean_Elab_GuardMsgs_0__Lean_Elab_Tactic_GuardMsgs_messageToStringWithoutPos___closed__2(); +lean_mark_persistent(l___private_Lean_Elab_GuardMsgs_0__Lean_Elab_Tactic_GuardMsgs_messageToStringWithoutPos___closed__2); +l_Lean_Elab_Tactic_GuardMsgs_SpecResult_noConfusion___rarg___closed__1 = _init_l_Lean_Elab_Tactic_GuardMsgs_SpecResult_noConfusion___rarg___closed__1(); +lean_mark_persistent(l_Lean_Elab_Tactic_GuardMsgs_SpecResult_noConfusion___rarg___closed__1); +l_Array_forInUnsafe_loop___at_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___spec__6___lambda__8___closed__1 = _init_l_Array_forInUnsafe_loop___at_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___spec__6___lambda__8___closed__1(); +lean_mark_persistent(l_Array_forInUnsafe_loop___at_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___spec__6___lambda__8___closed__1); +l_Array_forInUnsafe_loop___at_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___spec__6___lambda__8___closed__2 = _init_l_Array_forInUnsafe_loop___at_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___spec__6___lambda__8___closed__2(); +lean_mark_persistent(l_Array_forInUnsafe_loop___at_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___spec__6___lambda__8___closed__2); +l_Array_forInUnsafe_loop___at_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___spec__6___lambda__8___closed__3 = _init_l_Array_forInUnsafe_loop___at_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___spec__6___lambda__8___closed__3(); +lean_mark_persistent(l_Array_forInUnsafe_loop___at_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___spec__6___lambda__8___closed__3); +l_Array_forInUnsafe_loop___at_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___spec__6___lambda__8___closed__4 = _init_l_Array_forInUnsafe_loop___at_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___spec__6___lambda__8___closed__4(); +lean_mark_persistent(l_Array_forInUnsafe_loop___at_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___spec__6___lambda__8___closed__4); +l_Array_forInUnsafe_loop___at_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___spec__6___lambda__8___closed__5 = _init_l_Array_forInUnsafe_loop___at_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___spec__6___lambda__8___closed__5(); +lean_mark_persistent(l_Array_forInUnsafe_loop___at_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___spec__6___lambda__8___closed__5); +l_Array_forInUnsafe_loop___at_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___spec__6___lambda__8___closed__6 = _init_l_Array_forInUnsafe_loop___at_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___spec__6___lambda__8___closed__6(); +lean_mark_persistent(l_Array_forInUnsafe_loop___at_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___spec__6___lambda__8___closed__6); +l_Array_forInUnsafe_loop___at_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___spec__6___lambda__8___closed__7 = _init_l_Array_forInUnsafe_loop___at_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___spec__6___lambda__8___closed__7(); +lean_mark_persistent(l_Array_forInUnsafe_loop___at_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___spec__6___lambda__8___closed__7); +l_Array_forInUnsafe_loop___at_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___spec__6___lambda__8___closed__8 = _init_l_Array_forInUnsafe_loop___at_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___spec__6___lambda__8___closed__8(); +lean_mark_persistent(l_Array_forInUnsafe_loop___at_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___spec__6___lambda__8___closed__8); +l_Array_forInUnsafe_loop___at_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___spec__6___lambda__8___closed__9 = _init_l_Array_forInUnsafe_loop___at_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___spec__6___lambda__8___closed__9(); +lean_mark_persistent(l_Array_forInUnsafe_loop___at_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___spec__6___lambda__8___closed__9); +l_Array_forInUnsafe_loop___at_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___spec__6___lambda__8___closed__10 = _init_l_Array_forInUnsafe_loop___at_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___spec__6___lambda__8___closed__10(); +lean_mark_persistent(l_Array_forInUnsafe_loop___at_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___spec__6___lambda__8___closed__10); +l_Array_forInUnsafe_loop___at_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___spec__6___lambda__8___closed__11 = _init_l_Array_forInUnsafe_loop___at_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___spec__6___lambda__8___closed__11(); +lean_mark_persistent(l_Array_forInUnsafe_loop___at_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___spec__6___lambda__8___closed__11); +l_Array_forInUnsafe_loop___at_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___spec__6___closed__1 = _init_l_Array_forInUnsafe_loop___at_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___spec__6___closed__1(); +lean_mark_persistent(l_Array_forInUnsafe_loop___at_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___spec__6___closed__1); +l_Array_forInUnsafe_loop___at_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___spec__6___closed__2 = _init_l_Array_forInUnsafe_loop___at_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___spec__6___closed__2(); +lean_mark_persistent(l_Array_forInUnsafe_loop___at_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___spec__6___closed__2); +l_Array_forInUnsafe_loop___at_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___spec__6___closed__3 = _init_l_Array_forInUnsafe_loop___at_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___spec__6___closed__3(); +lean_mark_persistent(l_Array_forInUnsafe_loop___at_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___spec__6___closed__3); +l_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___closed__1 = _init_l_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___closed__1(); +lean_mark_persistent(l_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___closed__1); +l_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___closed__2 = _init_l_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___closed__2(); +lean_mark_persistent(l_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___closed__2); +l_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___closed__3 = _init_l_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___closed__3(); +lean_mark_persistent(l_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___closed__3); +l_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___closed__4 = _init_l_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___closed__4(); +lean_mark_persistent(l_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___closed__4); +l_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___closed__5 = _init_l_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___closed__5(); +lean_mark_persistent(l_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___closed__5); +l_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___closed__6 = _init_l_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___closed__6(); +lean_mark_persistent(l_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___closed__6); +l_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___closed__7 = _init_l_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___closed__7(); +lean_mark_persistent(l_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___closed__7); +l_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___closed__8 = _init_l_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___closed__8(); +lean_mark_persistent(l_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___closed__8); +l_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___closed__9 = _init_l_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___closed__9(); +lean_mark_persistent(l_Lean_Elab_Tactic_GuardMsgs_parseGuardMsgsSpec___closed__9); +l_Lean_Elab_Tactic_GuardMsgs_instImpl____x40_Lean_Elab_GuardMsgs___hyg_1100____closed__1 = _init_l_Lean_Elab_Tactic_GuardMsgs_instImpl____x40_Lean_Elab_GuardMsgs___hyg_1100____closed__1(); +lean_mark_persistent(l_Lean_Elab_Tactic_GuardMsgs_instImpl____x40_Lean_Elab_GuardMsgs___hyg_1100____closed__1); +l_Lean_Elab_Tactic_GuardMsgs_instImpl____x40_Lean_Elab_GuardMsgs___hyg_1100____closed__2 = _init_l_Lean_Elab_Tactic_GuardMsgs_instImpl____x40_Lean_Elab_GuardMsgs___hyg_1100____closed__2(); +lean_mark_persistent(l_Lean_Elab_Tactic_GuardMsgs_instImpl____x40_Lean_Elab_GuardMsgs___hyg_1100____closed__2); +l_Lean_Elab_Tactic_GuardMsgs_instImpl____x40_Lean_Elab_GuardMsgs___hyg_1100____closed__3 = _init_l_Lean_Elab_Tactic_GuardMsgs_instImpl____x40_Lean_Elab_GuardMsgs___hyg_1100____closed__3(); +lean_mark_persistent(l_Lean_Elab_Tactic_GuardMsgs_instImpl____x40_Lean_Elab_GuardMsgs___hyg_1100____closed__3); +l_Lean_Elab_Tactic_GuardMsgs_instImpl____x40_Lean_Elab_GuardMsgs___hyg_1100____closed__4 = _init_l_Lean_Elab_Tactic_GuardMsgs_instImpl____x40_Lean_Elab_GuardMsgs___hyg_1100____closed__4(); +lean_mark_persistent(l_Lean_Elab_Tactic_GuardMsgs_instImpl____x40_Lean_Elab_GuardMsgs___hyg_1100____closed__4); +l_Lean_Elab_Tactic_GuardMsgs_instImpl____x40_Lean_Elab_GuardMsgs___hyg_1100____closed__5 = _init_l_Lean_Elab_Tactic_GuardMsgs_instImpl____x40_Lean_Elab_GuardMsgs___hyg_1100____closed__5(); +lean_mark_persistent(l_Lean_Elab_Tactic_GuardMsgs_instImpl____x40_Lean_Elab_GuardMsgs___hyg_1100____closed__5); +l_Lean_Elab_Tactic_GuardMsgs_instImpl____x40_Lean_Elab_GuardMsgs___hyg_1100_ = _init_l_Lean_Elab_Tactic_GuardMsgs_instImpl____x40_Lean_Elab_GuardMsgs___hyg_1100_(); +lean_mark_persistent(l_Lean_Elab_Tactic_GuardMsgs_instImpl____x40_Lean_Elab_GuardMsgs___hyg_1100_); +l_Lean_Elab_Tactic_GuardMsgs_instTypeNameGuardMsgFailure = _init_l_Lean_Elab_Tactic_GuardMsgs_instTypeNameGuardMsgFailure(); +lean_mark_persistent(l_Lean_Elab_Tactic_GuardMsgs_instTypeNameGuardMsgFailure); +l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs___spec__1___rarg___closed__1 = _init_l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs___spec__1___rarg___closed__1(); +lean_mark_persistent(l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs___spec__1___rarg___closed__1); +l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs___spec__1___rarg___closed__2 = _init_l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs___spec__1___rarg___closed__2(); +lean_mark_persistent(l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs___spec__1___rarg___closed__2); +l_Lean_getDocStringText___at_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs___spec__4___closed__1 = _init_l_Lean_getDocStringText___at_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs___spec__4___closed__1(); +lean_mark_persistent(l_Lean_getDocStringText___at_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs___spec__4___closed__1); +l_Lean_getDocStringText___at_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs___spec__4___closed__2 = _init_l_Lean_getDocStringText___at_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs___spec__4___closed__2(); +lean_mark_persistent(l_Lean_getDocStringText___at_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs___spec__4___closed__2); +l_Lean_getDocStringText___at_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs___spec__4___closed__3 = _init_l_Lean_getDocStringText___at_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs___spec__4___closed__3(); +lean_mark_persistent(l_Lean_getDocStringText___at_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs___spec__4___closed__3); +l_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs___lambda__1___closed__1 = _init_l_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs___lambda__1___closed__1(); +lean_mark_persistent(l_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs___lambda__1___closed__1); +l_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs___lambda__1___closed__2 = _init_l_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs___lambda__1___closed__2(); +lean_mark_persistent(l_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs___lambda__1___closed__2); +l_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs___lambda__1___closed__3 = _init_l_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs___lambda__1___closed__3(); +lean_mark_persistent(l_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs___lambda__1___closed__3); +l_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs___lambda__1___closed__4 = _init_l_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs___lambda__1___closed__4(); +lean_mark_persistent(l_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs___lambda__1___closed__4); +l_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs___lambda__1___closed__5 = _init_l_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs___lambda__1___closed__5(); +lean_mark_persistent(l_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs___lambda__1___closed__5); +l_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs___lambda__1___closed__6 = _init_l_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs___lambda__1___closed__6(); +lean_mark_persistent(l_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs___lambda__1___closed__6); +l_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs___lambda__1___closed__7 = _init_l_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs___lambda__1___closed__7(); +lean_mark_persistent(l_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs___lambda__1___closed__7); +l_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs___closed__1 = _init_l_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs___closed__1(); +lean_mark_persistent(l_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs___closed__1); +l_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs___closed__2 = _init_l_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs___closed__2(); +lean_mark_persistent(l_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs___closed__2); +l_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs___closed__3 = _init_l_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs___closed__3(); +lean_mark_persistent(l_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs___closed__3); +l_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs___closed__4 = _init_l_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs___closed__4(); +lean_mark_persistent(l_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs___closed__4); +l_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs___closed__5 = _init_l_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs___closed__5(); +lean_mark_persistent(l_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs___closed__5); +l_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs___closed__6 = _init_l_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs___closed__6(); +lean_mark_persistent(l_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs___closed__6); +l___regBuiltin_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs___closed__1 = _init_l___regBuiltin_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs___closed__1); +l___regBuiltin_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs___closed__2 = _init_l___regBuiltin_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs___closed__2(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs___closed__2); +l___regBuiltin_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs___closed__3 = _init_l___regBuiltin_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs___closed__3(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs___closed__3); +l___regBuiltin_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs___closed__4 = _init_l___regBuiltin_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs___closed__4(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs___closed__4); +if (builtin) {res = l___regBuiltin_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +}l___regBuiltin_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs_declRange___closed__1 = _init_l___regBuiltin_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs_declRange___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs_declRange___closed__1); +l___regBuiltin_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs_declRange___closed__2 = _init_l___regBuiltin_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs_declRange___closed__2(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs_declRange___closed__2); +l___regBuiltin_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs_declRange___closed__3 = _init_l___regBuiltin_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs_declRange___closed__3(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs_declRange___closed__3); +l___regBuiltin_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs_declRange___closed__4 = _init_l___regBuiltin_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs_declRange___closed__4(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs_declRange___closed__4); +l___regBuiltin_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs_declRange___closed__5 = _init_l___regBuiltin_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs_declRange___closed__5(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs_declRange___closed__5); +l___regBuiltin_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs_declRange___closed__6 = _init_l___regBuiltin_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs_declRange___closed__6(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs_declRange___closed__6); +l___regBuiltin_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs_declRange___closed__7 = _init_l___regBuiltin_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs_declRange___closed__7(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs_declRange___closed__7); +if (builtin) {res = l___regBuiltin_Lean_Elab_Tactic_GuardMsgs_elabGuardMsgs_declRange(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +}return lean_io_result_mk_ok(lean_box(0)); +} +#ifdef __cplusplus +} +#endif diff --git a/stage0/stdlib/Lean/Elab/Match.c b/stage0/stdlib/Lean/Elab/Match.c index 72bd81ea44..9f6215504d 100644 --- a/stage0/stdlib/Lean/Elab/Match.c +++ b/stage0/stdlib/Lean/Elab/Match.c @@ -17,7 +17,6 @@ LEAN_EXPORT lean_object* l_Lean_Meta_transform___at___private_Lean_Elab_Match_0_ static lean_object* l___private_Lean_Elab_Match_0__Lean_Elab_Term_elabMatchTypeAndDiscrs_elabDiscrs___lambda__1___closed__1; lean_object* l_Lean_Meta_mkEqHEq(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Match_0__Lean_Elab_Term_elabMatchAltViews_loop___spec__6(lean_object*, size_t, size_t, lean_object*); -static lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18547____closed__2; LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Elab_Term_precheckMatch___spec__7(lean_object*, size_t, size_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_Term_reportMatcherResultErrors___lambda__1___closed__1; lean_object* l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -32,7 +31,6 @@ static lean_object* l_Lean_Elab_Term_elabNoFun___closed__5; lean_object* l_Lean_Elab_Term_getPatternVarNames(lean_object*); LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Match_0__Lean_Elab_Term_ToDepElimPattern_toPattern___spec__3(size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_throwError___at___private_Lean_Elab_Match_0__Lean_Elab_Term_elabMatchAux___spec__3(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_Match___hyg_18547____closed__13; LEAN_EXPORT lean_object* l___private_Lean_Elab_Match_0__Lean_Elab_Term_isMatchUnit_x3f___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_getResetInfoTrees___at_Lean_Elab_Term_ToDepElimPattern_savePatternInfo_go___spec__4(uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_List_forIn_loop___at___private_Lean_Elab_Match_0__Lean_Elab_Term_elabMatchAux___spec__9___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -73,6 +71,7 @@ LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Match LEAN_EXPORT lean_object* l_Lean_Elab_Term_elabNoFun___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___private_Lean_Elab_Match_0__Lean_Elab_Term_expandSimpleMatch___closed__3; LEAN_EXPORT lean_object* l_Lean_Meta_withLCtx___at___private_Lean_Elab_Match_0__Lean_Elab_Term_withToClear___spec__25___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_Term_initFn____x40_Lean_Elab_Match___hyg_14795____closed__2; LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_Term_ToDepElimPattern_main___spec__5(size_t, 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_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Term_mkFreshBinderName___at___private_Lean_Elab_Match_0__Lean_Elab_Term_mkUserNameFor___spec__1___rarg___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Term_elabInaccessible___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -123,11 +122,10 @@ LEAN_EXPORT lean_object* l_Lean_throwErrorAt___at_Lean_Elab_Term_elabMatch_elabM LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Term_ToDepElimPattern_normalize___spec__1(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_EXPORT lean_object* l_Lean_Meta_withLocalInstances___at___private_Lean_Elab_Match_0__Lean_Elab_Term_elabMatchAltView___spec__3(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*); -static lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18547____closed__14; +LEAN_EXPORT lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18602_(lean_object*); lean_object* l_Lean_Meta_isExprDefEq(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); 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_Term_mkFreshBinderName___at___private_Lean_Elab_Match_0__Lean_Elab_Term_mkUserNameFor___spec__1___rarg___closed__1; -static lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18547____closed__4; lean_object* l_Lean_MessageData_joinSep(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_List_forIn_loop___at_Lean_Elab_Term_reportMatcherResultErrors___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_Meta_transform_visit_visitLet___at___private_Lean_Elab_Match_0__Lean_Elab_Term_elabMatchTypeAndDiscrs_elabDiscrs___spec__6___lambda__1___boxed(lean_object**); @@ -168,6 +166,7 @@ LEAN_EXPORT lean_object* l___private_Lean_Elab_Match_0__Lean_Elab_Term_getMatchG lean_object* l_Lean_mkHashSetImp___rarg(lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_transform_visit_visitLet___at___private_Lean_Elab_Match_0__Lean_Elab_Term_elabMatchTypeAndDiscrs_elabDiscrs___spec__6(lean_object*, lean_object*, uint8_t, 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_EXPORT lean_object* l_Lean_Elab_Term_precheckMatch(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +uint8_t l_Array_contains___at_Lean_findField_x3f___spec__1(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Match_0__Lean_Elab_Term_elabMatchTypeAndDiscrs_elabDiscrsWitMatchType___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_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_transform_visit_visitLet___at___private_Lean_Elab_Match_0__Lean_Elab_Term_elabMatchTypeAndDiscrs_elabDiscrs___spec__6___lambda__1(lean_object*, lean_object*, lean_object*, uint8_t, 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*); static lean_object* l_Lean_Elab_Term_ToDepElimPattern_main___rarg___lambda__2___closed__3; @@ -184,6 +183,7 @@ lean_object* l_Lean_Elab_Term_expandMatchAlts_x3f(lean_object*, lean_object*, le lean_object* l_Lean_Syntax_getArgs(lean_object*); lean_object* l_ST_Prim_Ref_get___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_Match_mkMatcher(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18602____closed__4; lean_object* l_Lean_Expr_mdata___override(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_getPatternsVars(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_List_forIn_loop___at___private_Lean_Elab_Match_0__Lean_Elab_Term_elabMatchAux___spec__9___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -198,6 +198,7 @@ static lean_object* l___regBuiltin_Lean_Elab_Term_elabNoMatch_declRange___closed lean_object* l_Lean_Elab_Term_getMVarDecl(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_Term_precheckMatch___spec__8(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*); static lean_object* l___regBuiltin_Lean_Elab_Term_elabMatch_declRange___closed__5; +static lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18602____closed__13; 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*); lean_object* l_Lean_Expr_proj___override(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_bvar___override(lean_object*); @@ -210,7 +211,6 @@ LEAN_EXPORT lean_object* l___private_Lean_Elab_Match_0__Lean_Elab_Term_elabMatch extern lean_object* l_Lean_ForEachExprWhere_initCache; LEAN_EXPORT lean_object* l_Lean_Elab_Term_ToDepElimPattern_normalize_addVar(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_Array_anyMUnsafe_any___at___private_Lean_Elab_Match_0__Lean_Elab_Term_generalize___spec__4(lean_object*, lean_object*, size_t, size_t); -static lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18547____closed__5; lean_object* lean_array_fset(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_Range_forIn_loop___at___private_Lean_Elab_Match_0__Lean_Elab_Term_elabPatterns___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*); lean_object* l_Lean_RBNode_insert___at_Lean_MVarIdSet_insert___spec__1(lean_object*, lean_object*, lean_object*); @@ -227,6 +227,7 @@ lean_object* l_Lean_Expr_fvarId_x21(lean_object*); static lean_object* l_Lean_Meta_transform_visit___at___private_Lean_Elab_Match_0__Lean_Elab_Term_elabMatchTypeAndDiscrs_elabDiscrs___spec__2___lambda__1___closed__1; static lean_object* l_Lean_Elab_Term_ToDepElimPattern_main___rarg___closed__1; LEAN_EXPORT lean_object* l_List_forIn_loop___at___private_Lean_Elab_Match_0__Lean_Elab_Term_elabMatchAux___spec__9(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_normLitValue(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Match_0__Lean_Elab_Term_tryPostponeIfDiscrTypeIsMVar(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Term_ToDepElimPattern_TopSort_State_result___default; lean_object* lean_environment_find(lean_object*, lean_object*); @@ -242,6 +243,7 @@ lean_object* l_Lean_Meta_withLocalDecl___at_Lean_Elab_Term_withAuxDecl___spec__1 LEAN_EXPORT lean_object* l___private_Lean_Elab_Match_0__Lean_Elab_Term_elabMatchAltView___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_EXPORT uint8_t l_Array_anyMUnsafe_any___at_Lean_Elab_Term_ToDepElimPattern_isExplicitPatternVar___spec__1(lean_object*, lean_object*, size_t, size_t); lean_object* l_Lean_Expr_arrayLit_x3f(lean_object*); +static lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18602____closed__10; LEAN_EXPORT lean_object* l_Lean_Elab_Term_precheckMatch___lambda__3___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_addBuiltinDeclarationRanges(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_liftMacroM___at___private_Lean_Elab_Match_0__Lean_Elab_Term_elabMatchAux___spec__1___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*); @@ -260,7 +262,6 @@ LEAN_EXPORT lean_object* l___private_Lean_Elab_Match_0__Lean_Elab_Term_withPatte static lean_object* l___private_Lean_Elab_Match_0__Lean_Elab_Term_elabMatchAux___lambda__2___closed__2; LEAN_EXPORT lean_object* l_Lean_Elab_Term_ToDepElimPattern_savePatternInfo_go___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_isAppOf(lean_object*, lean_object*); -uint8_t l_Array_contains___at___private_Lean_Meta_Match_Value_0__Lean_Meta_isUIntTypeName___spec__1(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Term_ToDepElimPattern_TopSort_State_visitedFVars___default; LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_Term_precheckMatch___spec__6(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_EXPORT lean_object* l___private_Lean_Elab_Match_0__Lean_Elab_Term_ToDepElimPattern_withMVar___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -310,6 +311,7 @@ LEAN_EXPORT lean_object* l___private_Lean_Elab_Match_0__Lean_Elab_Term_elabMatch LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at_Lean_Elab_Term_ToDepElimPattern_savePatternInfo_go___spec__1(lean_object*); static lean_object* l___private_Lean_Elab_Match_0__Lean_Elab_Term_isMatchUnit_x3f___closed__7; lean_object* l_Lean_Option_register___at_Lean_Elab_initFn____x40_Lean_Elab_AutoBound___hyg_7____spec__1(lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_14795_(lean_object*); static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Match_0__Lean_Elab_Term_elabMatchTypeAndDiscrs_elabDiscrsWitMatchType___spec__1___closed__15; LEAN_EXPORT lean_object* l___private_Lean_Elab_Match_0__Lean_Elab_Term_elabMatchAltView___lambda__3(lean_object*, size_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_EXPORT lean_object* l_Lean_Elab_Term_ToDepElimPattern_savePatternInfo_go___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -369,18 +371,15 @@ LEAN_EXPORT lean_object* l_Lean_instantiateMVars___at___private_Lean_Elab_Match_ lean_object* l_runST___rarg(lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Term_reportMatcherResultErrors___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_Lean_Elab_Term_elabNoFun___closed__11; -static lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_14740____closed__5; static lean_object* l___private_Lean_Elab_Match_0__Lean_Elab_Term_getMatchGeneralizing_x3f___closed__6; static lean_object* l___regBuiltin_Lean_Elab_Term_elabNoFun_declRange___closed__3; LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Match_0__Lean_Elab_Term_generalize___spec__5___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_Term_elabNoFun___closed__4; LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Term_ToDepElimPattern_normalize___spec__2(size_t, size_t, 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_Term_initFn____x40_Lean_Elab_Match___hyg_18547____closed__11; LEAN_EXPORT lean_object* l___private_Lean_Elab_Match_0__Lean_Elab_Term_findDiscrRefinementPath_goIndex(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_Match_0__Lean_Elab_Term_withToClear___spec__8___boxed(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Match_0__Lean_Elab_Term_elabMatchTypeAndDiscrs_elabDiscrs___lambda__3___closed__2; lean_object* l_Lean_throwError___at_Lean_Meta_Match_toPattern___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18547____closed__6; static lean_object* l___private_Lean_Elab_Match_0__Lean_Elab_Term_generalize___lambda__1___closed__1; lean_object* l_Lean_log___at_Lean_Elab_Term_exceptionToSorry___spec__2(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_ForEachExprWhere_checked___at___private_Lean_Elab_Match_0__Lean_Elab_Term_ToDepElimPattern_mkPatternRefMap_go___spec__12(lean_object*); @@ -409,7 +408,6 @@ uint8_t lean_nat_dec_eq(lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Match_0__Lean_Elab_Term_elabMatchAltViews_collectDeps___closed__2; LEAN_EXPORT lean_object* l_Lean_Meta_forallTelescopeReducing___at_Lean_Elab_Term_elabNoFun___spec__2___rarg___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_Lean_Elab_expandMacroImpl_x3f(lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18547____closed__8; LEAN_EXPORT lean_object* l_Lean_Meta_transform_visit_visitPost___at___private_Lean_Elab_Match_0__Lean_Elab_Term_elabMatchTypeAndDiscrs_elabDiscrs___spec__3(lean_object*, lean_object*, uint8_t, 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_AssocList_foldlM___at___private_Lean_Elab_Match_0__Lean_Elab_Term_ToDepElimPattern_mkPatternRefMap_go___spec__7(lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Match_0__Lean_Elab_Term_ToDepElimPattern_mkPatternRefMap_go___closed__1; @@ -460,9 +458,9 @@ LEAN_EXPORT lean_object* l___private_Lean_Elab_Match_0__Lean_Elab_Term_generaliz 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*); uint8_t l_Array_contains___at_Lean_Elab_Term_collectUnassignedMVars_go___spec__1(lean_object*, lean_object*); static lean_object* l_Lean_Elab_Term_precheckMatch___lambda__1___closed__1; +static lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18602____closed__11; lean_object* l_Lean_registerTraceClass(lean_object*, uint8_t, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_transform_visit_visitForall___at___private_Lean_Elab_Match_0__Lean_Elab_Term_elabMatchTypeAndDiscrs_elabDiscrs___spec__5___lambda__1___boxed(lean_object**); -static lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18547____closed__3; lean_object* l_Lean_Meta_kabstract(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Term_isAtomicDiscr___closed__4; LEAN_EXPORT lean_object* l___private_Lean_Elab_Match_0__Lean_Elab_Term_ToDepElimPattern_mkPatternRefMap_go___lambda__1(lean_object*, lean_object*, lean_object*); @@ -496,7 +494,6 @@ LEAN_EXPORT uint8_t l___private_Lean_Elab_Match_0__Lean_Elab_Term_isPatternVar_i LEAN_EXPORT lean_object* l_Lean_Elab_Term_withoutErrToSorry___at___private_Lean_Elab_Match_0__Lean_Elab_Term_withPatternElabConfig___spec__1(lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Match_0__Lean_Elab_Term_elabMatchAltView___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_EXPORT lean_object* l_Lean_Meta_withLetDecl___at___private_Lean_Elab_Match_0__Lean_Elab_Term_elabMatchTypeAndDiscrs_elabDiscrs___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*); -static lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_14740____closed__4; LEAN_EXPORT lean_object* l___private_Lean_Elab_Match_0__Lean_Elab_Term_elabPatterns___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT uint8_t l_Lean_PersistentArray_anyMAux___at___private_Lean_Elab_Match_0__Lean_Elab_Term_withToClear___spec__14(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_addTrace___at___private_Lean_Elab_Match_0__Lean_Elab_Term_elabMatchAltView___spec__5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -518,6 +515,7 @@ LEAN_EXPORT lean_object* l_Array_foldrMUnsafe_fold___at___private_Lean_Elab_Matc static lean_object* l_Lean_Elab_Term_ToDepElimPattern_main___rarg___lambda__2___closed__2; lean_object* lean_st_ref_get(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_transform_visit___at___private_Lean_Elab_Match_0__Lean_Elab_Term_elabMatchTypeAndDiscrs_elabDiscrs___spec__2___lambda__1(lean_object*, lean_object*, uint8_t, 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*); +static lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18602____closed__12; LEAN_EXPORT lean_object* l_Array_foldrMUnsafe_fold___at___private_Lean_Elab_Match_0__Lean_Elab_Term_generalize___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_EXPORT lean_object* l_ReaderT_bind___at___private_Lean_Elab_Match_0__Lean_Elab_Term_elabMatchTypeAndDiscrs_elabDiscrs___spec__14(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Term_withDepElimPatterns___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -565,6 +563,7 @@ uint8_t l_List_elem___at_Lean_Meta_Occurrences_contains___spec__1(lean_object*, static lean_object* l___private_Lean_Elab_Match_0__Lean_Elab_Term_elabMatchAltView___lambda__4___closed__2; lean_object* l_Lean_Syntax_mkSep(lean_object*, lean_object*); static lean_object* l_Lean_Elab_Term_elabNoFun___closed__3; +static lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18602____closed__14; lean_object* l_instInhabited___rarg(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_anyMUnsafe_any___at_Lean_Elab_Term_elabMatch_elabMatchDefault___spec__6___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_isPatternWithRef___boxed(lean_object*); @@ -609,6 +608,7 @@ lean_object* l_Lean_FVarId_getType(lean_object*, lean_object*, lean_object*, lea lean_object* l_Lean_Elab_Term_tryPostponeIfMVar(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Match_0__Lean_Elab_Term_waitExpectedType(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Term_mkFreshBinderName___at___private_Lean_Elab_Match_0__Lean_Elab_Term_mkUserNameFor___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18602____closed__7; LEAN_EXPORT lean_object* l_Lean_PersistentArray_anyMAux___at___private_Lean_Elab_Match_0__Lean_Elab_Term_withToClear___spec__14___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at_Lean_Elab_Term_ToDepElimPattern_savePatternInfo_go___spec__1___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* l_List_lengthTRAux___rarg(lean_object*, lean_object*); @@ -638,9 +638,11 @@ LEAN_EXPORT lean_object* l_Lean_Expr_ReplaceImpl_replaceUnsafeM_visit___at___pri static lean_object* l___regBuiltin_Lean_Elab_Term_elabNoMatch_declRange___closed__4; LEAN_EXPORT lean_object* l___private_Lean_Elab_Match_0__Lean_Elab_Term_elabPatterns(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_Match_0__Lean_Elab_Term_elabMatchAux(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_Term_initFn____x40_Lean_Elab_Match___hyg_18602____closed__1; lean_object* l_Lean_mkPatternWithRef(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Term_ToDepElimPattern_main_unpack_go___rarg(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_Match_0__Lean_Elab_Term_tryPostponeIfDiscrTypeIsMVar___boxed(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_Match___hyg_14795____closed__4; LEAN_EXPORT lean_object* l_Lean_Elab_Term_ToDepElimPattern_State_patternVars___default; lean_object* l_Lean_Syntax_node2(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_throwError___at___private_Lean_Elab_Match_0__Lean_Elab_Term_ToDepElimPattern_throwInvalidPattern___spec__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -653,7 +655,6 @@ lean_object* l_Lean_Syntax_getArg(lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Match_0__Lean_Elab_Term_withPatternElabConfig___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_PersistentArray_anyM___at___private_Lean_Elab_Match_0__Lean_Elab_Term_withToClear___spec__18___boxed(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_Match_0__Lean_Elab_Term_expandSimpleMatch___closed__5; -LEAN_EXPORT lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18547_(lean_object*); lean_object* l___private_Init_Util_0__mkPanicMessageWithDecl(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_Term_precheckMatch___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*); static lean_object* l___regBuiltin_Lean_Elab_Term_elabInaccessible_declRange___closed__5; @@ -662,14 +663,13 @@ LEAN_EXPORT lean_object* l_Lean_ForEachExprWhere_visit_go___at___private_Lean_El LEAN_EXPORT lean_object* l_Lean_Elab_Term_withoutErrToSorry___at___private_Lean_Elab_Match_0__Lean_Elab_Term_withPatternElabConfig___spec__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Syntax_matchesNull(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Match_0__Lean_Elab_Term_elabMatchAux___spec__6(size_t, size_t, lean_object*); -uint8_t l_Lean_Meta_isMatchValue(lean_object*); +lean_object* l_Lean_Meta_isMatchValue(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Term_ToDepElimPattern_Context_userName___default; LEAN_EXPORT uint8_t l_Array_anyMUnsafe_any___at___private_Lean_Elab_Match_0__Lean_Elab_Term_withToClear___spec__15(lean_object*, lean_object*, size_t, size_t); LEAN_EXPORT lean_object* l_Lean_Meta_withLetDecl___at_Lean_Elab_Term_ToDepElimPattern_savePatternInfo_go___spec__2(lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at_Lean_Elab_Term_ToDepElimPattern_savePatternInfo_go___spec__1___rarg(lean_object*, uint8_t, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_panic___at___private_Lean_Meta_WHNF_0__Lean_Meta_cached_x3f___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Syntax_isIdent(lean_object*); -static lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18547____closed__12; LEAN_EXPORT lean_object* l_Lean_throwErrorAt___at___private_Lean_Elab_Match_0__Lean_Elab_Term_elabMatchAux___spec__2(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___private_Lean_Elab_Match_0__Lean_Elab_Term_elabMatchTypeAndDiscrs_elabDiscrs___spec__9(lean_object*, lean_object*); lean_object* l_Lean_LocalDecl_fvarId(lean_object*); @@ -677,7 +677,6 @@ LEAN_EXPORT lean_object* l_Lean_HashMap_insert___at___private_Lean_Elab_Match_0_ LEAN_EXPORT lean_object* l_Lean_Elab_liftMacroM___at_Lean_Elab_Term_elabMatch_elabMatchDefault___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Match_0__Lean_Elab_Term_mkUserNameFor___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_Term_ToDepElimPattern_main___spec__5___closed__5; -static lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_14740____closed__2; extern lean_object* l_Lean_Elab_abortTermExceptionId; LEAN_EXPORT lean_object* l_Array_foldrMUnsafe_fold___at___private_Lean_Elab_Match_0__Lean_Elab_Term_elabMatchAltViews_updateMatchType___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* l_Lean_HashMap_insert___at_Lean_instantiateExprMVars___spec__3(lean_object*, lean_object*, lean_object*); @@ -726,7 +725,6 @@ LEAN_EXPORT lean_object* l___private_Lean_Elab_Match_0__Lean_Elab_Term_isPattern extern lean_object* l_Lean_inheritedTraceOptions; LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Elab_Term_ToDepElimPattern_main___spec__8___boxed(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Match_0__Lean_Elab_Term_getMatchGeneralizing_x3f___lambda__2(lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_14740____closed__1; lean_object* l_Lean_MessageData_ofExpr(lean_object*); LEAN_EXPORT uint8_t l___private_Init_Data_Option_Basic_0__Option_beqOption____x40_Init_Data_Option_Basic___hyg_158____at___private_Lean_Elab_Match_0__Lean_Elab_Term_elabMatchAux___spec__13(lean_object*, lean_object*); static lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Term_elabNoFun___spec__1___lambda__1___closed__1; @@ -743,6 +741,7 @@ LEAN_EXPORT lean_object* l___private_Lean_Elab_Match_0__Lean_Elab_Term_ToDepElim static lean_object* l___private_Lean_Elab_Match_0__Lean_Elab_Term_expandSimpleMatch___closed__11; static lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Term_elabNoMatch___spec__3___closed__2; LEAN_EXPORT lean_object* l_Lean_Elab_Term_ToDepElimPattern_normalize___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_Term_initFn____x40_Lean_Elab_Match___hyg_18602____closed__6; static lean_object* l_Lean_Elab_Term_precheckMatch___lambda__1___closed__2; LEAN_EXPORT lean_object* l_Lean_throwMaxRecDepthAt___at___private_Lean_Elab_Match_0__Lean_Elab_Term_elabMatchTypeAndDiscrs_elabDiscrs___spec__16(lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Match_0__Lean_Elab_Term_ToDepElimPattern_throwInvalidPattern___rarg___closed__1; @@ -750,7 +749,6 @@ LEAN_EXPORT lean_object* l_Std_Range_forIn_loop___at___private_Lean_Elab_Match_0 LEAN_EXPORT lean_object* l___private_Lean_Elab_Match_0__Lean_Elab_Term_elabMatchAltViews_throwEx___rarg(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___private_Lean_Elab_Match_0__Lean_Elab_Term_withToClear___spec__4(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Match_0__Lean_Elab_Term_withPatternVars_loop(lean_object*); -static lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_14740____closed__3; static lean_object* l_Lean_Elab_Term_elabNoFun___closed__9; lean_object* l_Lean_Elab_Term_Quotation_precheck(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_LocalDecl_userName(lean_object*); @@ -779,12 +777,14 @@ LEAN_EXPORT lean_object* l_Lean_Elab_Term_ToDepElimPattern_normalize___lambda__1 lean_object* l_Lean_Elab_Term_addTermInfo_x27(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_object*); lean_object* l_Lean_HashSetImp_insert___at_Lean_CollectFVars_visit___spec__3(lean_object*, lean_object*); LEAN_EXPORT uint8_t l_Array_anyMUnsafe_any___at___private_Lean_Elab_Match_0__Lean_Elab_Term_withToClear___spec__16(lean_object*, lean_object*, size_t, size_t); +static lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_14795____closed__1; LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Term_ToDepElimPattern_main_unpack_go___spec__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_Lean_Elab_Term_ToDepElimPattern_normalize_addVar___closed__2; lean_object* l_Lean_Core_transform___at_Lean_Core_betaReduce___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_liftMacroM___at___private_Lean_Elab_Match_0__Lean_Elab_Term_elabMatchAux___spec__1___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Term_ToDepElimPattern_savePatternInfo_go(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Term_ToDepElimPattern_main___rarg___lambda__2(size_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*); +static lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_14795____closed__5; static lean_object* l___private_Lean_Elab_Match_0__Lean_Elab_Term_expandSimpleMatch___closed__14; LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Match_0__Lean_Elab_Term_generalize___spec__1___boxed(lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Match_0__Lean_Elab_Term_getMatchGeneralizing_x3f___lambda__1___closed__1; @@ -808,10 +808,10 @@ LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_elabMatch(lean_object*); lean_object* l_Lean_Expr_replaceFVars(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Term_ToDepElimPattern_main___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*, lean_object*); static lean_object* l___private_Lean_Elab_Match_0__Lean_Elab_Term_expandNonAtomicDiscrs_x3f_loop___closed__1; +static lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18602____closed__2; LEAN_EXPORT lean_object* l_Lean_instantiateMVars___at_Lean_Elab_Term_ToDepElimPattern_normalize_processInaccessible___spec__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_Lean_Elab_getResetInfoTrees___at_Lean_Elab_Term_ToDepElimPattern_savePatternInfo_go___spec__4___rarg___closed__3; lean_object* l_Lean_Expr_ReplaceImpl_Cache_new(lean_object*); -static lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18547____closed__9; LEAN_EXPORT lean_object* l_Array_anyMUnsafe_any___at___private_Lean_Elab_Match_0__Lean_Elab_Term_expandNonAtomicDiscrs_x3f___spec__1(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___private_Lean_Elab_Match_0__Lean_Elab_Term_ToDepElimPattern_whnfPreservingPatternRef(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_List_mapM_loop___at___private_Lean_Elab_Match_0__Lean_Elab_Term_ToDepElimPattern_toPattern___spec__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -843,7 +843,6 @@ static lean_object* l_Lean_Elab_Term_ToDepElimPattern_normalize_addVar___closed_ LEAN_EXPORT uint8_t l_Lean_PersistentArray_anyMAux___at___private_Lean_Elab_Match_0__Lean_Elab_Term_withToClear___spec__6(lean_object*, lean_object*); uint8_t lean_nat_dec_lt(lean_object*, lean_object*); lean_object* lean_environment_main_module(lean_object*); -static lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18547____closed__1; LEAN_EXPORT lean_object* l___private_Init_Data_Option_Basic_0__Option_beqOption____x40_Init_Data_Option_Basic___hyg_158____at___private_Lean_Elab_Match_0__Lean_Elab_Term_elabMatchAux___spec__13___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Match_0__Lean_Elab_Term_withToClear___spec__23(lean_object*, lean_object*, size_t, size_t, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_MetavarContext_0__Lean_DependsOn_dep_visit___at___private_Lean_Elab_Match_0__Lean_Elab_Term_withToClear___spec__10(lean_object*, lean_object*, lean_object*); @@ -893,6 +892,7 @@ lean_object* l_Lean_patternWithRef_x3f(lean_object*); static lean_object* l_Std_Range_forIn_loop___at___private_Lean_Elab_Match_0__Lean_Elab_Term_elabPatterns___spec__2___closed__1; LEAN_EXPORT lean_object* l_Array_anyMUnsafe_any___at___private_Lean_Elab_Match_0__Lean_Elab_Term_elabMatchAltViews_loop___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_EXPORT lean_object* l___private_Lean_Elab_Match_0__Lean_Elab_Term_elabMatchAltViews_loop___lambda__2(lean_object*, lean_object*, size_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*, lean_object*); +static lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_14795____closed__3; lean_object* l_Lean_Syntax_node1(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_throwMaxRecDepthAt___at_Lean_Elab_Term_elabMatch_elabMatchDefault___spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Match_0__Lean_Elab_Term_ToDepElimPattern_packMatchTypePatterns___spec__1___closed__4; @@ -909,6 +909,7 @@ LEAN_EXPORT lean_object* l_Lean_Elab_Term_ToDepElimPattern_savePatternInfo_go___ lean_object* lean_array_set(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Match_0__Lean_Elab_Term_withPatternVars_loop___rarg___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_throwError___at_Lean_Elab_Term_ToDepElimPattern_normalize___spec__3(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_Term_initFn____x40_Lean_Elab_Match___hyg_18602____closed__8; lean_object* l_Lean_Meta_forallBoundedTelescope___at_Lean_Elab_Term_addAutoBoundImplicits_x27___spec__2___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_localDeclDependsOn___at_Lean_Elab_Term_addAutoBoundImplicits_go___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_Meta_transform_visit_visitLet___at___private_Lean_Elab_Match_0__Lean_Elab_Term_elabMatchTypeAndDiscrs_elabDiscrs___spec__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_object*); @@ -1000,6 +1001,7 @@ static lean_object* l_Lean_Elab_Term_ToDepElimPattern_main___rarg___closed__4; LEAN_EXPORT lean_object* l_Array_anyMUnsafe_any___at___private_Lean_Elab_Match_0__Lean_Elab_Term_elabMatchAltViews_loop___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*); static lean_object* l_List_forIn_loop___at___private_Lean_Elab_Match_0__Lean_Elab_Term_elabMatchAux___spec__9___lambda__1___closed__1; LEAN_EXPORT lean_object* l_Lean_Elab_Term_mkMatcher(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_Match___hyg_18602____closed__5; size_t lean_usize_add(size_t, size_t); lean_object* l_Lean_Meta_erasePatternRefAnnotations___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_anyMUnsafe_any___at___private_Lean_Elab_Match_0__Lean_Elab_Term_withToClear___spec__21(lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -1030,7 +1032,6 @@ LEAN_EXPORT lean_object* l___private_Lean_Elab_Match_0__Lean_Elab_Term_mkUserNam LEAN_EXPORT lean_object* l_Lean_AssocList_find_x3f___at___private_Lean_Elab_Match_0__Lean_Elab_Term_ToDepElimPattern_applyRefMap___spec__2(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Match_0__Lean_Elab_Term_elabMatchAltViews_collectDeps___spec__1(lean_object*, 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_Lean_Meta_withLocalDecl___at___private_Lean_Elab_Match_0__Lean_Elab_Term_elabMatchTypeAndDiscrs_elabDiscrs___spec__7___rarg___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_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18547____closed__7; static lean_object* l___private_Lean_Elab_Match_0__Lean_Elab_Term_elabMatchAltViews_loop___lambda__2___closed__2; LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Match_0__Lean_Elab_Term_elabMatchAltViews_loop___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_EXPORT lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Match_0__Lean_Elab_Term_eraseIndices___spec__1(size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -1046,7 +1047,6 @@ static lean_object* l_Lean_Elab_Term_instInhabitedDiscr___closed__1; LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Match_0__Lean_Elab_Term_elabMatchCore___spec__1(size_t, size_t, lean_object*); static lean_object* l_Lean_withInPattern___at_Lean_Elab_Term_ToDepElimPattern_main___spec__3___closed__2; lean_object* l_Lean_Name_mkStr4(lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_14740_(lean_object*); LEAN_EXPORT lean_object* l_Lean_Expr_withAppAux___at___private_Lean_Elab_Match_0__Lean_Elab_Term_elabMatchTypeAndDiscrs_elabDiscrs___spec__13(lean_object*, lean_object*, uint8_t, 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*); lean_object* l_Lean_Elab_Term_tryPostponeIfNoneOrMVar(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_List_redLength___rarg(lean_object*); @@ -1058,7 +1058,6 @@ lean_object* l___private_Lean_Expr_0__Lean_Expr_getAppArgsAux(lean_object*, lean LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Match_0__Lean_Elab_Term_generalize___spec__8(size_t, lean_object*, lean_object*, size_t, 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_Lean_Elab_Term_ToDepElimPattern_TopSort_State_visitedMVars___default; LEAN_EXPORT lean_object* l_Lean_Elab_Term_ToDepElimPattern_main(lean_object*); -static lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18547____closed__10; lean_object* l_Lean_Meta_sortFVarIds(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_MVarId_setTag(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_mkFreshTypeMVar(uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -1071,6 +1070,7 @@ LEAN_EXPORT lean_object* l_Lean_Elab_Term_isAtomicDiscr(lean_object*, lean_objec lean_object* l_Lean_mkAtomFrom(lean_object*, lean_object*, uint8_t); LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Match_0__Lean_Elab_Term_elabMatchAltViews_loop___spec__6___boxed(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___regBuiltin_Lean_Elab_Term_elabMatch___closed__2; +static lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18602____closed__3; LEAN_EXPORT lean_object* l_Lean_Elab_Term_precheckMatch___lambda__1(lean_object*); LEAN_EXPORT lean_object* l_panic___at___private_Lean_Elab_Match_0__Lean_Elab_Term_ToDepElimPattern_mkPatternRefMap_go___spec__2(lean_object*); lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Syntax_SepArray_getElems___spec__1(lean_object*, size_t, size_t, lean_object*); @@ -1176,6 +1176,7 @@ static lean_object* l_Lean_Elab_Term_mkFreshBinderName___at___private_Lean_Elab_ lean_object* l_Nat_repr(lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Match_0__Lean_Elab_Term_elabMatchTypeAndDiscrs_elabDiscrs___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_EXPORT lean_object* l_Lean_AssocList_contains___at___private_Lean_Elab_Match_0__Lean_Elab_Term_ToDepElimPattern_mkPatternRefMap_go___spec__4___boxed(lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18602____closed__9; lean_object* l_Lean_Elab_Term_elabType(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___private_Lean_Elab_Match_0__Lean_Elab_Term_generalize___spec__2(lean_object*, size_t, size_t, lean_object*); static lean_object* l___private_Lean_Elab_Match_0__Lean_Elab_Term_elabMatchAux___lambda__5___closed__2; @@ -23004,345 +23005,289 @@ lean_object* x_14; x_14 = l_Lean_Meta_Match_isNamedPattern_x3f(x_1); if (lean_obj_tag(x_14) == 0) { -uint8_t x_15; -x_15 = l_Lean_Meta_isMatchValue(x_1); -if (x_15 == 0) -{ -uint8_t x_16; -x_16 = l_Lean_Expr_isFVar(x_1); -if (x_16 == 0) -{ -lean_object* x_17; uint8_t x_18; -x_17 = l_Lean_Expr_getAppFn(x_1); -x_18 = l_Lean_Expr_isMVar(x_17); -if (x_18 == 0) -{ -lean_object* x_19; +lean_object* x_15; lean_inc(x_9); lean_inc(x_8); lean_inc(x_7); lean_inc(x_6); lean_inc(x_1); -x_19 = l___private_Lean_Elab_Match_0__Lean_Elab_Term_ToDepElimPattern_whnfPreservingPatternRef(x_1, x_6, x_7, x_8, x_9, x_10); -if (lean_obj_tag(x_19) == 0) +x_15 = l_Lean_Meta_isMatchValue(x_1, x_6, x_7, x_8, x_9, x_10); +if (lean_obj_tag(x_15) == 0) { -lean_object* x_20; lean_object* x_21; uint8_t 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); -lean_dec(x_19); -x_22 = lean_expr_eqv(x_20, x_1); -if (x_22 == 0) +lean_object* x_16; uint8_t x_17; +x_16 = lean_ctor_get(x_15, 0); +lean_inc(x_16); +x_17 = lean_unbox(x_16); +lean_dec(x_16); +if (x_17 == 0) { -lean_dec(x_17); +lean_object* x_18; uint8_t x_19; +x_18 = lean_ctor_get(x_15, 1); +lean_inc(x_18); +lean_dec(x_15); +x_19 = l_Lean_Expr_isFVar(x_1); +if (x_19 == 0) +{ +lean_object* x_20; uint8_t x_21; +x_20 = l_Lean_Expr_getAppFn(x_1); +x_21 = l_Lean_Expr_isMVar(x_20); +if (x_21 == 0) +{ +lean_object* x_22; +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_1); +x_22 = l___private_Lean_Elab_Match_0__Lean_Elab_Term_ToDepElimPattern_whnfPreservingPatternRef(x_1, x_6, x_7, x_8, x_9, x_18); +if (lean_obj_tag(x_22) == 0) +{ +lean_object* x_23; lean_object* x_24; uint8_t x_25; +x_23 = lean_ctor_get(x_22, 0); +lean_inc(x_23); +x_24 = lean_ctor_get(x_22, 1); +lean_inc(x_24); +lean_dec(x_22); +x_25 = lean_expr_eqv(x_23, x_1); +if (x_25 == 0) +{ +lean_dec(x_20); lean_dec(x_1); -x_1 = x_20; -x_10 = x_21; +x_1 = x_23; +x_10 = x_24; goto _start; } else { -lean_dec(x_20); -if (lean_obj_tag(x_17) == 4) +lean_dec(x_23); +if (lean_obj_tag(x_20) == 4) { -lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; -x_24 = lean_ctor_get(x_17, 0); -lean_inc(x_24); -x_25 = lean_st_ref_get(x_9, x_21); -x_26 = lean_ctor_get(x_25, 0); -lean_inc(x_26); -x_27 = lean_ctor_get(x_25, 1); +lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; +x_27 = lean_ctor_get(x_20, 0); lean_inc(x_27); -lean_dec(x_25); -x_28 = lean_ctor_get(x_26, 0); -lean_inc(x_28); -lean_dec(x_26); -x_29 = lean_environment_find(x_28, x_24); -if (lean_obj_tag(x_29) == 0) -{ -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_dec(x_17); -x_30 = l_Lean_instantiateMVars___at_Lean_Elab_Term_ToDepElimPattern_normalize_processInaccessible___spec__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_27); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -x_31 = lean_ctor_get(x_30, 0); +x_28 = lean_st_ref_get(x_9, x_24); +x_29 = lean_ctor_get(x_28, 0); +lean_inc(x_29); +x_30 = lean_ctor_get(x_28, 1); +lean_inc(x_30); +lean_dec(x_28); +x_31 = lean_ctor_get(x_29, 0); lean_inc(x_31); -x_32 = lean_ctor_get(x_30, 1); -lean_inc(x_32); -lean_dec(x_30); -x_33 = l_Lean_Elab_Term_ToDepElimPattern_normalize_addVar___closed__1; -x_34 = l_Lean_Elab_Term_ToDepElimPattern_normalize_processVar___closed__1; -x_35 = l_Lean_Core_transform___at_Lean_Core_betaReduce___spec__1(x_31, x_33, x_34, x_8, x_9, x_32); -if (lean_obj_tag(x_35) == 0) -{ -uint8_t x_36; -x_36 = !lean_is_exclusive(x_35); -if (x_36 == 0) -{ -lean_object* x_37; lean_object* x_38; -x_37 = lean_ctor_get(x_35, 0); -x_38 = l_Lean_mkInaccessible(x_37); -lean_ctor_set(x_35, 0, x_38); -return x_35; -} -else -{ -lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; -x_39 = lean_ctor_get(x_35, 0); -x_40 = lean_ctor_get(x_35, 1); -lean_inc(x_40); -lean_inc(x_39); -lean_dec(x_35); -x_41 = l_Lean_mkInaccessible(x_39); -x_42 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_42, 0, x_41); -lean_ctor_set(x_42, 1, x_40); -return x_42; -} -} -else -{ -uint8_t x_43; -x_43 = !lean_is_exclusive(x_35); -if (x_43 == 0) -{ -return x_35; -} -else -{ -lean_object* x_44; lean_object* x_45; lean_object* x_46; -x_44 = lean_ctor_get(x_35, 0); -x_45 = lean_ctor_get(x_35, 1); -lean_inc(x_45); -lean_inc(x_44); -lean_dec(x_35); -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; -} -} -} -else -{ -lean_object* x_47; -x_47 = lean_ctor_get(x_29, 0); -lean_inc(x_47); lean_dec(x_29); -if (lean_obj_tag(x_47) == 6) +x_32 = lean_environment_find(x_31, x_27); +if (lean_obj_tag(x_32) == 0) { -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; uint8_t x_60; -x_48 = lean_ctor_get(x_47, 0); +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_20); +x_33 = l_Lean_instantiateMVars___at_Lean_Elab_Term_ToDepElimPattern_normalize_processInaccessible___spec__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_30); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_34 = lean_ctor_get(x_33, 0); +lean_inc(x_34); +x_35 = lean_ctor_get(x_33, 1); +lean_inc(x_35); +lean_dec(x_33); +x_36 = l_Lean_Elab_Term_ToDepElimPattern_normalize_addVar___closed__1; +x_37 = l_Lean_Elab_Term_ToDepElimPattern_normalize_processVar___closed__1; +x_38 = l_Lean_Core_transform___at_Lean_Core_betaReduce___spec__1(x_34, x_36, x_37, x_8, x_9, x_35); +if (lean_obj_tag(x_38) == 0) +{ +uint8_t x_39; +x_39 = !lean_is_exclusive(x_38); +if (x_39 == 0) +{ +lean_object* x_40; lean_object* x_41; +x_40 = lean_ctor_get(x_38, 0); +x_41 = l_Lean_mkInaccessible(x_40); +lean_ctor_set(x_38, 0, x_41); +return x_38; +} +else +{ +lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; +x_42 = lean_ctor_get(x_38, 0); +x_43 = lean_ctor_get(x_38, 1); +lean_inc(x_43); +lean_inc(x_42); +lean_dec(x_38); +x_44 = l_Lean_mkInaccessible(x_42); +x_45 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_45, 0, x_44); +lean_ctor_set(x_45, 1, x_43); +return x_45; +} +} +else +{ +uint8_t x_46; +x_46 = !lean_is_exclusive(x_38); +if (x_46 == 0) +{ +return x_38; +} +else +{ +lean_object* x_47; lean_object* x_48; lean_object* x_49; +x_47 = lean_ctor_get(x_38, 0); +x_48 = lean_ctor_get(x_38, 1); lean_inc(x_48); -lean_dec(x_47); -x_49 = lean_unsigned_to_nat(0u); -x_50 = l___private_Lean_Expr_0__Lean_Expr_getAppNumArgsAux(x_1, x_49); -x_51 = l_Lean_Meta_transform_visit___at___private_Lean_Elab_Match_0__Lean_Elab_Term_elabMatchTypeAndDiscrs_elabDiscrs___spec__2___lambda__1___closed__1; +lean_inc(x_47); +lean_dec(x_38); +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 +{ +lean_object* x_50; +x_50 = lean_ctor_get(x_32, 0); lean_inc(x_50); -x_52 = lean_mk_array(x_50, x_51); -x_53 = lean_unsigned_to_nat(1u); -x_54 = lean_nat_sub(x_50, x_53); +lean_dec(x_32); +if (lean_obj_tag(x_50) == 6) +{ +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; uint8_t x_63; +x_51 = lean_ctor_get(x_50, 0); +lean_inc(x_51); lean_dec(x_50); +x_52 = lean_unsigned_to_nat(0u); +x_53 = l___private_Lean_Expr_0__Lean_Expr_getAppNumArgsAux(x_1, x_52); +x_54 = l_Lean_Meta_transform_visit___at___private_Lean_Elab_Match_0__Lean_Elab_Term_elabMatchTypeAndDiscrs_elabDiscrs___spec__2___lambda__1___closed__1; +lean_inc(x_53); +x_55 = lean_mk_array(x_53, x_54); +x_56 = lean_unsigned_to_nat(1u); +x_57 = lean_nat_sub(x_53, x_56); +lean_dec(x_53); lean_inc(x_1); -x_55 = l___private_Lean_Expr_0__Lean_Expr_getAppArgsAux(x_1, x_52, x_54); -x_56 = lean_array_get_size(x_55); -x_57 = lean_ctor_get(x_48, 3); -lean_inc(x_57); -x_58 = lean_ctor_get(x_48, 4); -lean_inc(x_58); -x_59 = lean_nat_add(x_57, x_58); -lean_dec(x_58); -lean_dec(x_57); -x_60 = lean_nat_dec_eq(x_56, x_59); -lean_dec(x_59); -lean_dec(x_56); -if (x_60 == 0) -{ -lean_object* x_61; uint8_t x_62; -lean_dec(x_55); -lean_dec(x_48); -lean_dec(x_17); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -x_61 = l___private_Lean_Elab_Match_0__Lean_Elab_Term_ToDepElimPattern_throwInvalidPattern___rarg(x_1, x_6, x_7, x_8, x_9, x_27); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -x_62 = !lean_is_exclusive(x_61); -if (x_62 == 0) -{ -return x_61; -} -else -{ -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); +x_58 = l___private_Lean_Expr_0__Lean_Expr_getAppArgsAux(x_1, x_55, x_57); +x_59 = lean_array_get_size(x_58); +x_60 = lean_ctor_get(x_51, 3); +lean_inc(x_60); +x_61 = lean_ctor_get(x_51, 4); +lean_inc(x_61); +x_62 = lean_nat_add(x_60, x_61); lean_dec(x_61); -x_65 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_65, 0, x_63); -lean_ctor_set(x_65, 1, x_64); -return x_65; +lean_dec(x_60); +x_63 = lean_nat_dec_eq(x_59, x_62); +lean_dec(x_62); +lean_dec(x_59); +if (x_63 == 0) +{ +lean_object* x_64; uint8_t x_65; +lean_dec(x_58); +lean_dec(x_51); +lean_dec(x_20); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_64 = l___private_Lean_Elab_Match_0__Lean_Elab_Term_ToDepElimPattern_throwInvalidPattern___rarg(x_1, x_6, x_7, x_8, x_9, x_30); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +x_65 = !lean_is_exclusive(x_64); +if (x_65 == 0) +{ +return x_64; +} +else +{ +lean_object* x_66; lean_object* x_67; lean_object* x_68; +x_66 = lean_ctor_get(x_64, 0); +x_67 = lean_ctor_get(x_64, 1); +lean_inc(x_67); +lean_inc(x_66); +lean_dec(x_64); +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; } } else { -lean_object* x_66; lean_object* x_67; +lean_object* x_69; lean_object* x_70; lean_dec(x_1); -x_66 = lean_box(0); -x_67 = l_Lean_Elab_Term_ToDepElimPattern_normalize___lambda__1(x_48, x_55, x_17, x_66, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_27); -lean_dec(x_55); -return x_67; +x_69 = lean_box(0); +x_70 = l_Lean_Elab_Term_ToDepElimPattern_normalize___lambda__1(x_51, x_58, x_20, x_69, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_30); +lean_dec(x_58); +return x_70; } } else { -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_dec(x_47); -lean_dec(x_17); -x_68 = l_Lean_instantiateMVars___at_Lean_Elab_Term_ToDepElimPattern_normalize_processInaccessible___spec__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_27); +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_dec(x_50); +lean_dec(x_20); +x_71 = l_Lean_instantiateMVars___at_Lean_Elab_Term_ToDepElimPattern_normalize_processInaccessible___spec__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_30); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); -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_Elab_Term_ToDepElimPattern_normalize_addVar___closed__1; -x_72 = l_Lean_Elab_Term_ToDepElimPattern_normalize_processVar___closed__1; -x_73 = l_Lean_Core_transform___at_Lean_Core_betaReduce___spec__1(x_69, x_71, x_72, x_8, x_9, x_70); -if (lean_obj_tag(x_73) == 0) +x_72 = lean_ctor_get(x_71, 0); +lean_inc(x_72); +x_73 = lean_ctor_get(x_71, 1); +lean_inc(x_73); +lean_dec(x_71); +x_74 = l_Lean_Elab_Term_ToDepElimPattern_normalize_addVar___closed__1; +x_75 = l_Lean_Elab_Term_ToDepElimPattern_normalize_processVar___closed__1; +x_76 = l_Lean_Core_transform___at_Lean_Core_betaReduce___spec__1(x_72, x_74, x_75, x_8, x_9, x_73); +if (lean_obj_tag(x_76) == 0) { -uint8_t x_74; -x_74 = !lean_is_exclusive(x_73); -if (x_74 == 0) +uint8_t x_77; +x_77 = !lean_is_exclusive(x_76); +if (x_77 == 0) { -lean_object* x_75; lean_object* x_76; -x_75 = lean_ctor_get(x_73, 0); -x_76 = l_Lean_mkInaccessible(x_75); -lean_ctor_set(x_73, 0, x_76); -return x_73; +lean_object* x_78; lean_object* x_79; +x_78 = lean_ctor_get(x_76, 0); +x_79 = l_Lean_mkInaccessible(x_78); +lean_ctor_set(x_76, 0, x_79); +return x_76; } else { -lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; -x_77 = lean_ctor_get(x_73, 0); -x_78 = lean_ctor_get(x_73, 1); -lean_inc(x_78); -lean_inc(x_77); -lean_dec(x_73); -x_79 = l_Lean_mkInaccessible(x_77); -x_80 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_80, 0, x_79); -lean_ctor_set(x_80, 1, x_78); -return x_80; +lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; +x_80 = lean_ctor_get(x_76, 0); +x_81 = lean_ctor_get(x_76, 1); +lean_inc(x_81); +lean_inc(x_80); +lean_dec(x_76); +x_82 = l_Lean_mkInaccessible(x_80); +x_83 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_83, 0, x_82); +lean_ctor_set(x_83, 1, x_81); +return x_83; } } else { -uint8_t x_81; -x_81 = !lean_is_exclusive(x_73); -if (x_81 == 0) +uint8_t x_84; +x_84 = !lean_is_exclusive(x_76); +if (x_84 == 0) { -return x_73; +return x_76; } else { -lean_object* x_82; lean_object* x_83; lean_object* x_84; -x_82 = lean_ctor_get(x_73, 0); -x_83 = lean_ctor_get(x_73, 1); -lean_inc(x_83); -lean_inc(x_82); -lean_dec(x_73); -x_84 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_84, 0, x_82); -lean_ctor_set(x_84, 1, x_83); -return x_84; -} -} -} -} -} -else -{ -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_dec(x_17); -x_85 = l_Lean_instantiateMVars___at_Lean_Elab_Term_ToDepElimPattern_normalize_processInaccessible___spec__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_21); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -x_86 = lean_ctor_get(x_85, 0); +lean_object* x_85; lean_object* x_86; lean_object* x_87; +x_85 = lean_ctor_get(x_76, 0); +x_86 = lean_ctor_get(x_76, 1); lean_inc(x_86); -x_87 = lean_ctor_get(x_85, 1); -lean_inc(x_87); -lean_dec(x_85); -x_88 = l_Lean_Elab_Term_ToDepElimPattern_normalize_addVar___closed__1; -x_89 = l_Lean_Elab_Term_ToDepElimPattern_normalize_processVar___closed__1; -x_90 = l_Lean_Core_transform___at_Lean_Core_betaReduce___spec__1(x_86, x_88, x_89, x_8, x_9, x_87); -if (lean_obj_tag(x_90) == 0) -{ -uint8_t x_91; -x_91 = !lean_is_exclusive(x_90); -if (x_91 == 0) -{ -lean_object* x_92; lean_object* x_93; -x_92 = lean_ctor_get(x_90, 0); -x_93 = l_Lean_mkInaccessible(x_92); -lean_ctor_set(x_90, 0, x_93); -return x_90; -} -else -{ -lean_object* x_94; lean_object* x_95; lean_object* x_96; lean_object* x_97; -x_94 = lean_ctor_get(x_90, 0); -x_95 = lean_ctor_get(x_90, 1); -lean_inc(x_95); -lean_inc(x_94); -lean_dec(x_90); -x_96 = l_Lean_mkInaccessible(x_94); -x_97 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_97, 0, x_96); -lean_ctor_set(x_97, 1, x_95); -return x_97; -} -} -else -{ -uint8_t x_98; -x_98 = !lean_is_exclusive(x_90); -if (x_98 == 0) -{ -return x_90; -} -else -{ -lean_object* x_99; lean_object* x_100; lean_object* x_101; -x_99 = lean_ctor_get(x_90, 0); -x_100 = lean_ctor_get(x_90, 1); -lean_inc(x_100); -lean_inc(x_99); -lean_dec(x_90); -x_101 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_101, 0, x_99); -lean_ctor_set(x_101, 1, x_100); -return x_101; +lean_inc(x_85); +lean_dec(x_76); +x_87 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_87, 0, x_85); +lean_ctor_set(x_87, 1, x_86); +return x_87; } } } @@ -23350,148 +23295,174 @@ return x_101; } else { -uint8_t x_102; -lean_dec(x_17); -lean_dec(x_9); -lean_dec(x_8); +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_dec(x_20); +x_88 = l_Lean_instantiateMVars___at_Lean_Elab_Term_ToDepElimPattern_normalize_processInaccessible___spec__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_24); 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); -x_102 = !lean_is_exclusive(x_19); -if (x_102 == 0) +x_89 = lean_ctor_get(x_88, 0); +lean_inc(x_89); +x_90 = lean_ctor_get(x_88, 1); +lean_inc(x_90); +lean_dec(x_88); +x_91 = l_Lean_Elab_Term_ToDepElimPattern_normalize_addVar___closed__1; +x_92 = l_Lean_Elab_Term_ToDepElimPattern_normalize_processVar___closed__1; +x_93 = l_Lean_Core_transform___at_Lean_Core_betaReduce___spec__1(x_89, x_91, x_92, x_8, x_9, x_90); +if (lean_obj_tag(x_93) == 0) { -return x_19; +uint8_t x_94; +x_94 = !lean_is_exclusive(x_93); +if (x_94 == 0) +{ +lean_object* x_95; lean_object* x_96; +x_95 = lean_ctor_get(x_93, 0); +x_96 = l_Lean_mkInaccessible(x_95); +lean_ctor_set(x_93, 0, x_96); +return x_93; } else { -lean_object* x_103; lean_object* x_104; lean_object* x_105; -x_103 = lean_ctor_get(x_19, 0); -x_104 = lean_ctor_get(x_19, 1); -lean_inc(x_104); +lean_object* x_97; lean_object* x_98; lean_object* x_99; lean_object* x_100; +x_97 = lean_ctor_get(x_93, 0); +x_98 = lean_ctor_get(x_93, 1); +lean_inc(x_98); +lean_inc(x_97); +lean_dec(x_93); +x_99 = l_Lean_mkInaccessible(x_97); +x_100 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_100, 0, x_99); +lean_ctor_set(x_100, 1, x_98); +return x_100; +} +} +else +{ +uint8_t x_101; +x_101 = !lean_is_exclusive(x_93); +if (x_101 == 0) +{ +return x_93; +} +else +{ +lean_object* x_102; lean_object* x_103; lean_object* x_104; +x_102 = lean_ctor_get(x_93, 0); +x_103 = lean_ctor_get(x_93, 1); lean_inc(x_103); -lean_dec(x_19); -x_105 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_105, 0, x_103); -lean_ctor_set(x_105, 1, x_104); -return x_105; +lean_inc(x_102); +lean_dec(x_93); +x_104 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_104, 0, x_102); +lean_ctor_set(x_104, 1, x_103); +return x_104; +} +} } } } else { -lean_object* x_106; lean_object* x_107; lean_object* x_108; uint8_t x_109; -lean_inc(x_1); -x_106 = l_Lean_instantiateMVars___at_Lean_Elab_Term_ToDepElimPattern_normalize_processInaccessible___spec__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -x_107 = lean_ctor_get(x_106, 0); -lean_inc(x_107); -x_108 = lean_ctor_get(x_106, 1); -lean_inc(x_108); -lean_dec(x_106); -x_109 = lean_expr_eqv(x_107, x_1); -if (x_109 == 0) -{ -lean_object* x_110; lean_object* x_111; lean_object* x_112; -lean_dec(x_1); -x_110 = l_Lean_Expr_mvarId_x21(x_17); -x_111 = lean_alloc_closure((void*)(l_Lean_Elab_Term_ToDepElimPattern_normalize), 10, 1); -lean_closure_set(x_111, 0, x_107); -x_112 = l___private_Lean_Elab_Match_0__Lean_Elab_Term_ToDepElimPattern_withMVar___rarg(x_110, x_111, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_108); -return x_112; -} -else -{ -uint8_t x_113; -lean_dec(x_107); -lean_dec(x_17); -x_113 = l_Lean_Expr_isMVar(x_1); -if (x_113 == 0) -{ -lean_object* x_114; -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -x_114 = l___private_Lean_Elab_Match_0__Lean_Elab_Term_ToDepElimPattern_throwInvalidPattern___rarg(x_1, x_6, x_7, x_8, x_9, x_108); +uint8_t x_105; +lean_dec(x_20); lean_dec(x_9); lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); -return x_114; +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +x_105 = !lean_is_exclusive(x_22); +if (x_105 == 0) +{ +return x_22; } else { -lean_object* x_115; lean_object* x_116; lean_object* x_117; +lean_object* x_106; lean_object* x_107; lean_object* x_108; +x_106 = lean_ctor_get(x_22, 0); +x_107 = lean_ctor_get(x_22, 1); +lean_inc(x_107); +lean_inc(x_106); +lean_dec(x_22); +x_108 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_108, 0, x_106); +lean_ctor_set(x_108, 1, x_107); +return x_108; +} +} +} +else +{ +lean_object* x_109; lean_object* x_110; lean_object* x_111; uint8_t x_112; lean_inc(x_1); -x_115 = l_Lean_Expr_mvarId_x21(x_1); -x_116 = lean_alloc_closure((void*)(l_Lean_Elab_Term_ToDepElimPattern_normalize_processVar), 10, 1); -lean_closure_set(x_116, 0, x_1); -x_117 = l___private_Lean_Elab_Match_0__Lean_Elab_Term_ToDepElimPattern_withMVar___rarg(x_115, x_116, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_108); +x_109 = l_Lean_instantiateMVars___at_Lean_Elab_Term_ToDepElimPattern_normalize_processInaccessible___spec__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_18); +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); +x_112 = lean_expr_eqv(x_110, x_1); +if (x_112 == 0) +{ +lean_object* x_113; lean_object* x_114; lean_object* x_115; +lean_dec(x_1); +x_113 = l_Lean_Expr_mvarId_x21(x_20); +x_114 = lean_alloc_closure((void*)(l_Lean_Elab_Term_ToDepElimPattern_normalize), 10, 1); +lean_closure_set(x_114, 0, x_110); +x_115 = l___private_Lean_Elab_Match_0__Lean_Elab_Term_ToDepElimPattern_withMVar___rarg(x_113, x_114, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_111); +return x_115; +} +else +{ +uint8_t x_116; +lean_dec(x_110); +lean_dec(x_20); +x_116 = l_Lean_Expr_isMVar(x_1); +if (x_116 == 0) +{ +lean_object* x_117; +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_117 = l___private_Lean_Elab_Match_0__Lean_Elab_Term_ToDepElimPattern_throwInvalidPattern___rarg(x_1, x_6, x_7, x_8, x_9, x_111); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); return x_117; } -} -} -} else { -lean_object* x_118; lean_object* x_119; uint8_t x_120; +lean_object* x_118; lean_object* x_119; lean_object* x_120; lean_inc(x_1); -x_118 = l_Lean_Elab_Term_ToDepElimPattern_isExplicitPatternVar(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -x_119 = lean_ctor_get(x_118, 0); -lean_inc(x_119); -x_120 = lean_unbox(x_119); -lean_dec(x_119); -if (x_120 == 0) +x_118 = l_Lean_Expr_mvarId_x21(x_1); +x_119 = lean_alloc_closure((void*)(l_Lean_Elab_Term_ToDepElimPattern_normalize_processVar), 10, 1); +lean_closure_set(x_119, 0, x_1); +x_120 = l___private_Lean_Elab_Match_0__Lean_Elab_Term_ToDepElimPattern_withMVar___rarg(x_118, x_119, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_111); +return x_120; +} +} +} +} +else { -uint8_t x_121; -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); -lean_dec(x_2); -x_121 = !lean_is_exclusive(x_118); -if (x_121 == 0) -{ -lean_object* x_122; lean_object* x_123; -x_122 = lean_ctor_get(x_118, 0); +lean_object* x_121; lean_object* x_122; uint8_t x_123; +lean_inc(x_1); +x_121 = l_Lean_Elab_Term_ToDepElimPattern_isExplicitPatternVar(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_18); +x_122 = lean_ctor_get(x_121, 0); +lean_inc(x_122); +x_123 = lean_unbox(x_122); lean_dec(x_122); -x_123 = l_Lean_mkInaccessible(x_1); -lean_ctor_set(x_118, 0, x_123); -return x_118; -} -else +if (x_123 == 0) { -lean_object* x_124; lean_object* x_125; lean_object* x_126; -x_124 = lean_ctor_get(x_118, 1); -lean_inc(x_124); -lean_dec(x_118); -x_125 = l_Lean_mkInaccessible(x_1); -x_126 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_126, 0, x_125); -lean_ctor_set(x_126, 1, x_124); -return x_126; -} -} -else -{ -lean_object* x_127; lean_object* x_128; -x_127 = lean_ctor_get(x_118, 1); -lean_inc(x_127); -lean_dec(x_118); -x_128 = l_Lean_Elab_Term_ToDepElimPattern_normalize_processVar(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_127); -return x_128; -} -} -} -else -{ -lean_object* x_129; +uint8_t x_124; lean_dec(x_9); lean_dec(x_8); lean_dec(x_7); @@ -23500,85 +23471,43 @@ lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); +x_124 = !lean_is_exclusive(x_121); +if (x_124 == 0) +{ +lean_object* x_125; lean_object* x_126; +x_125 = lean_ctor_get(x_121, 0); +lean_dec(x_125); +x_126 = l_Lean_mkInaccessible(x_1); +lean_ctor_set(x_121, 0, x_126); +return x_121; +} +else +{ +lean_object* x_127; lean_object* x_128; lean_object* x_129; +x_127 = lean_ctor_get(x_121, 1); +lean_inc(x_127); +lean_dec(x_121); +x_128 = l_Lean_mkInaccessible(x_1); x_129 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_129, 0, x_1); -lean_ctor_set(x_129, 1, x_10); +lean_ctor_set(x_129, 0, x_128); +lean_ctor_set(x_129, 1, x_127); return x_129; } } else { -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_153; uint8_t x_154; -lean_dec(x_1); -x_130 = lean_ctor_get(x_14, 0); +lean_object* x_130; lean_object* x_131; +x_130 = lean_ctor_get(x_121, 1); lean_inc(x_130); -lean_dec(x_14); -x_131 = lean_unsigned_to_nat(0u); -x_132 = l___private_Lean_Expr_0__Lean_Expr_getAppNumArgsAux(x_130, x_131); -x_133 = lean_unsigned_to_nat(1u); -x_134 = lean_nat_sub(x_132, x_133); -x_135 = lean_nat_sub(x_134, x_133); -lean_dec(x_134); -x_136 = l_Lean_Expr_getRevArg_x21(x_130, x_135); -x_137 = lean_unsigned_to_nat(2u); -x_138 = lean_nat_sub(x_132, x_137); -x_139 = lean_nat_sub(x_138, x_133); -lean_dec(x_138); -x_140 = l_Lean_Expr_getRevArg_x21(x_130, x_139); -x_141 = lean_unsigned_to_nat(3u); -x_142 = lean_nat_sub(x_132, x_141); -x_143 = lean_nat_sub(x_142, x_133); -lean_dec(x_142); -x_144 = l_Lean_Expr_getRevArg_x21(x_130, x_143); -x_153 = l_Lean_Expr_consumeMData(x_136); -x_154 = l_Lean_Expr_isFVar(x_153); -lean_dec(x_153); -if (x_154 == 0) -{ -lean_object* x_155; -lean_dec(x_144); -lean_dec(x_140); -lean_dec(x_136); -lean_dec(x_132); -lean_dec(x_130); -x_155 = lean_box(0); -x_145 = x_155; -goto block_152; +lean_dec(x_121); +x_131 = l_Lean_Elab_Term_ToDepElimPattern_normalize_processVar(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_130); +return x_131; +} +} } else { -lean_object* x_156; uint8_t x_157; -x_156 = l_Lean_Expr_consumeMData(x_144); -x_157 = l_Lean_Expr_isFVar(x_156); -lean_dec(x_156); -if (x_157 == 0) -{ -lean_object* x_158; -lean_dec(x_144); -lean_dec(x_140); -lean_dec(x_136); -lean_dec(x_132); -lean_dec(x_130); -x_158 = lean_box(0); -x_145 = x_158; -goto block_152; -} -else -{ -lean_object* x_159; lean_object* x_160; -x_159 = lean_box(0); -x_160 = l_Lean_Elab_Term_ToDepElimPattern_normalize___lambda__2(x_136, x_140, x_144, x_130, x_132, x_159, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -lean_dec(x_132); -lean_dec(x_130); -return x_160; -} -} -block_152: -{ -lean_object* x_146; lean_object* x_147; uint8_t x_148; -lean_dec(x_145); -x_146 = l_Lean_Elab_Term_ToDepElimPattern_normalize___closed__2; -x_147 = l_Lean_throwError___at_Lean_Elab_Term_ToDepElimPattern_normalize___spec__3(x_146, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +uint8_t x_132; lean_dec(x_9); lean_dec(x_8); lean_dec(x_7); @@ -23587,159 +23516,294 @@ lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); -x_148 = !lean_is_exclusive(x_147); -if (x_148 == 0) +x_132 = !lean_is_exclusive(x_15); +if (x_132 == 0) { -return x_147; +lean_object* x_133; +x_133 = lean_ctor_get(x_15, 0); +lean_dec(x_133); +lean_ctor_set(x_15, 0, x_1); +return x_15; } else { -lean_object* x_149; lean_object* x_150; lean_object* x_151; -x_149 = lean_ctor_get(x_147, 0); -x_150 = lean_ctor_get(x_147, 1); -lean_inc(x_150); -lean_inc(x_149); -lean_dec(x_147); -x_151 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_151, 0, x_149); -lean_ctor_set(x_151, 1, x_150); -return x_151; -} +lean_object* x_134; lean_object* x_135; +x_134 = lean_ctor_get(x_15, 1); +lean_inc(x_134); +lean_dec(x_15); +x_135 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_135, 0, x_1); +lean_ctor_set(x_135, 1, x_134); +return x_135; } } } else { -lean_object* x_161; lean_object* x_162; lean_object* x_163; lean_object* x_164; lean_object* x_165; -lean_dec(x_1); -x_161 = lean_ctor_get(x_13, 0); -lean_inc(x_161); -lean_dec(x_13); -x_162 = lean_ctor_get(x_161, 0); -lean_inc(x_162); -x_163 = lean_ctor_get(x_161, 1); -lean_inc(x_163); -lean_dec(x_161); -x_164 = lean_box(0); -lean_inc(x_9); -lean_inc(x_8); -lean_inc(x_7); -lean_inc(x_6); -x_165 = l_List_mapM_loop___at_Lean_Elab_Term_ToDepElimPattern_normalize___spec__4(x_163, x_164, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -if (lean_obj_tag(x_165) == 0) -{ -lean_object* x_166; lean_object* x_167; lean_object* x_168; -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); -x_168 = l_Lean_Meta_mkArrayLit(x_162, x_166, x_6, x_7, x_8, x_9, x_167); -return x_168; -} -else -{ -uint8_t x_169; -lean_dec(x_162); +uint8_t x_136; lean_dec(x_9); lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); -x_169 = !lean_is_exclusive(x_165); -if (x_169 == 0) -{ -return x_165; -} -else -{ -lean_object* x_170; lean_object* x_171; lean_object* x_172; -x_170 = lean_ctor_get(x_165, 0); -x_171 = lean_ctor_get(x_165, 1); -lean_inc(x_171); -lean_inc(x_170); -lean_dec(x_165); -x_172 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_172, 0, x_170); -lean_ctor_set(x_172, 1, x_171); -return x_172; -} -} -} -} -else -{ -lean_object* x_173; lean_object* x_174; lean_object* x_175; lean_object* x_176; +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); lean_dec(x_1); -x_173 = lean_ctor_get(x_12, 0); -lean_inc(x_173); -lean_dec(x_12); -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); -x_176 = l_Lean_Elab_Term_ToDepElimPattern_normalize(x_175, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -if (lean_obj_tag(x_176) == 0) +x_136 = !lean_is_exclusive(x_15); +if (x_136 == 0) { -uint8_t x_177; -x_177 = !lean_is_exclusive(x_176); -if (x_177 == 0) -{ -lean_object* x_178; lean_object* x_179; -x_178 = lean_ctor_get(x_176, 0); -x_179 = l_Lean_mkPatternWithRef(x_178, x_174); -lean_ctor_set(x_176, 0, x_179); -return x_176; +return x_15; } else { -lean_object* x_180; lean_object* x_181; lean_object* x_182; lean_object* x_183; -x_180 = lean_ctor_get(x_176, 0); -x_181 = lean_ctor_get(x_176, 1); +lean_object* x_137; lean_object* x_138; lean_object* x_139; +x_137 = lean_ctor_get(x_15, 0); +x_138 = lean_ctor_get(x_15, 1); +lean_inc(x_138); +lean_inc(x_137); +lean_dec(x_15); +x_139 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_139, 0, x_137); +lean_ctor_set(x_139, 1, x_138); +return x_139; +} +} +} +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; 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_163; uint8_t x_164; +lean_dec(x_1); +x_140 = lean_ctor_get(x_14, 0); +lean_inc(x_140); +lean_dec(x_14); +x_141 = lean_unsigned_to_nat(0u); +x_142 = l___private_Lean_Expr_0__Lean_Expr_getAppNumArgsAux(x_140, x_141); +x_143 = lean_unsigned_to_nat(1u); +x_144 = lean_nat_sub(x_142, x_143); +x_145 = lean_nat_sub(x_144, x_143); +lean_dec(x_144); +x_146 = l_Lean_Expr_getRevArg_x21(x_140, x_145); +x_147 = lean_unsigned_to_nat(2u); +x_148 = lean_nat_sub(x_142, x_147); +x_149 = lean_nat_sub(x_148, x_143); +lean_dec(x_148); +x_150 = l_Lean_Expr_getRevArg_x21(x_140, x_149); +x_151 = lean_unsigned_to_nat(3u); +x_152 = lean_nat_sub(x_142, x_151); +x_153 = lean_nat_sub(x_152, x_143); +lean_dec(x_152); +x_154 = l_Lean_Expr_getRevArg_x21(x_140, x_153); +x_163 = l_Lean_Expr_consumeMData(x_146); +x_164 = l_Lean_Expr_isFVar(x_163); +lean_dec(x_163); +if (x_164 == 0) +{ +lean_object* x_165; +lean_dec(x_154); +lean_dec(x_150); +lean_dec(x_146); +lean_dec(x_142); +lean_dec(x_140); +x_165 = lean_box(0); +x_155 = x_165; +goto block_162; +} +else +{ +lean_object* x_166; uint8_t x_167; +x_166 = l_Lean_Expr_consumeMData(x_154); +x_167 = l_Lean_Expr_isFVar(x_166); +lean_dec(x_166); +if (x_167 == 0) +{ +lean_object* x_168; +lean_dec(x_154); +lean_dec(x_150); +lean_dec(x_146); +lean_dec(x_142); +lean_dec(x_140); +x_168 = lean_box(0); +x_155 = x_168; +goto block_162; +} +else +{ +lean_object* x_169; lean_object* x_170; +x_169 = lean_box(0); +x_170 = l_Lean_Elab_Term_ToDepElimPattern_normalize___lambda__2(x_146, x_150, x_154, x_140, x_142, x_169, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_142); +lean_dec(x_140); +return x_170; +} +} +block_162: +{ +lean_object* x_156; lean_object* x_157; uint8_t x_158; +lean_dec(x_155); +x_156 = l_Lean_Elab_Term_ToDepElimPattern_normalize___closed__2; +x_157 = l_Lean_throwError___at_Lean_Elab_Term_ToDepElimPattern_normalize___spec__3(x_156, 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_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_158 = !lean_is_exclusive(x_157); +if (x_158 == 0) +{ +return x_157; +} +else +{ +lean_object* x_159; lean_object* x_160; lean_object* x_161; +x_159 = lean_ctor_get(x_157, 0); +x_160 = lean_ctor_get(x_157, 1); +lean_inc(x_160); +lean_inc(x_159); +lean_dec(x_157); +x_161 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_161, 0, x_159); +lean_ctor_set(x_161, 1, x_160); +return x_161; +} +} +} +} +else +{ +lean_object* x_171; lean_object* x_172; lean_object* x_173; lean_object* x_174; lean_object* x_175; +lean_dec(x_1); +x_171 = lean_ctor_get(x_13, 0); +lean_inc(x_171); +lean_dec(x_13); +x_172 = lean_ctor_get(x_171, 0); +lean_inc(x_172); +x_173 = lean_ctor_get(x_171, 1); +lean_inc(x_173); +lean_dec(x_171); +x_174 = lean_box(0); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_6); +x_175 = l_List_mapM_loop___at_Lean_Elab_Term_ToDepElimPattern_normalize___spec__4(x_173, x_174, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +if (lean_obj_tag(x_175) == 0) +{ +lean_object* x_176; lean_object* x_177; lean_object* x_178; +x_176 = lean_ctor_get(x_175, 0); +lean_inc(x_176); +x_177 = lean_ctor_get(x_175, 1); +lean_inc(x_177); +lean_dec(x_175); +x_178 = l_Lean_Meta_mkArrayLit(x_172, x_176, x_6, x_7, x_8, x_9, x_177); +return x_178; +} +else +{ +uint8_t x_179; +lean_dec(x_172); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +x_179 = !lean_is_exclusive(x_175); +if (x_179 == 0) +{ +return x_175; +} +else +{ +lean_object* x_180; lean_object* x_181; lean_object* x_182; +x_180 = lean_ctor_get(x_175, 0); +x_181 = lean_ctor_get(x_175, 1); lean_inc(x_181); lean_inc(x_180); -lean_dec(x_176); -x_182 = l_Lean_mkPatternWithRef(x_180, x_174); -x_183 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_183, 0, x_182); -lean_ctor_set(x_183, 1, x_181); -return x_183; +lean_dec(x_175); +x_182 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_182, 0, x_180); +lean_ctor_set(x_182, 1, x_181); +return x_182; +} +} } } else { -uint8_t x_184; -lean_dec(x_174); -x_184 = !lean_is_exclusive(x_176); -if (x_184 == 0) -{ -return x_176; -} -else -{ -lean_object* x_185; lean_object* x_186; lean_object* x_187; -x_185 = lean_ctor_get(x_176, 0); -x_186 = lean_ctor_get(x_176, 1); -lean_inc(x_186); +lean_object* x_183; lean_object* x_184; lean_object* x_185; lean_object* x_186; +lean_dec(x_1); +x_183 = lean_ctor_get(x_12, 0); +lean_inc(x_183); +lean_dec(x_12); +x_184 = lean_ctor_get(x_183, 0); +lean_inc(x_184); +x_185 = lean_ctor_get(x_183, 1); lean_inc(x_185); -lean_dec(x_176); -x_187 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_187, 0, x_185); -lean_ctor_set(x_187, 1, x_186); -return x_187; -} -} -} -} -else +lean_dec(x_183); +x_186 = l_Lean_Elab_Term_ToDepElimPattern_normalize(x_185, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +if (lean_obj_tag(x_186) == 0) +{ +uint8_t x_187; +x_187 = !lean_is_exclusive(x_186); +if (x_187 == 0) { lean_object* x_188; lean_object* x_189; +x_188 = lean_ctor_get(x_186, 0); +x_189 = l_Lean_mkPatternWithRef(x_188, x_184); +lean_ctor_set(x_186, 0, x_189); +return x_186; +} +else +{ +lean_object* x_190; lean_object* x_191; lean_object* x_192; lean_object* x_193; +x_190 = lean_ctor_get(x_186, 0); +x_191 = lean_ctor_get(x_186, 1); +lean_inc(x_191); +lean_inc(x_190); +lean_dec(x_186); +x_192 = l_Lean_mkPatternWithRef(x_190, x_184); +x_193 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_193, 0, x_192); +lean_ctor_set(x_193, 1, x_191); +return x_193; +} +} +else +{ +uint8_t x_194; +lean_dec(x_184); +x_194 = !lean_is_exclusive(x_186); +if (x_194 == 0) +{ +return x_186; +} +else +{ +lean_object* x_195; lean_object* x_196; lean_object* x_197; +x_195 = lean_ctor_get(x_186, 0); +x_196 = lean_ctor_get(x_186, 1); +lean_inc(x_196); +lean_inc(x_195); +lean_dec(x_186); +x_197 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_197, 0, x_195); +lean_ctor_set(x_197, 1, x_196); +return x_197; +} +} +} +} +else +{ +lean_object* x_198; lean_object* x_199; lean_dec(x_1); -x_188 = lean_ctor_get(x_11, 0); -lean_inc(x_188); +x_198 = lean_ctor_get(x_11, 0); +lean_inc(x_198); lean_dec(x_11); -x_189 = l_Lean_Elab_Term_ToDepElimPattern_normalize_processInaccessible(x_188, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -return x_189; +x_199 = l_Lean_Elab_Term_ToDepElimPattern_normalize_processInaccessible(x_198, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +return x_199; } } } @@ -24360,504 +24424,779 @@ lean_object* x_9; x_9 = l_Lean_Meta_Match_isNamedPattern_x3f(x_1); if (lean_obj_tag(x_9) == 0) { -uint8_t x_10; -x_10 = l_Lean_Meta_isMatchValue(x_1); -if (x_10 == 0) +lean_object* x_10; +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +lean_inc(x_2); +lean_inc(x_1); +x_10 = l_Lean_Meta_isMatchValue(x_1, x_2, x_3, x_4, x_5, x_6); +if (lean_obj_tag(x_10) == 0) { -uint8_t x_11; -x_11 = l_Lean_Expr_isFVar(x_1); -if (x_11 == 0) +lean_object* x_11; uint8_t x_12; +x_11 = lean_ctor_get(x_10, 0); +lean_inc(x_11); +x_12 = lean_unbox(x_11); +lean_dec(x_11); +if (x_12 == 0) { -lean_object* x_12; -x_12 = l_Lean_Expr_getAppFn(x_1); -if (lean_obj_tag(x_12) == 4) +uint8_t x_13; +x_13 = !lean_is_exclusive(x_10); +if (x_13 == 0) { -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; -x_13 = lean_ctor_get(x_12, 0); -lean_inc(x_13); -x_14 = lean_ctor_get(x_12, 1); -lean_inc(x_14); -lean_dec(x_12); -x_15 = lean_st_ref_get(x_5, x_6); -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_object* x_14; lean_object* x_15; uint8_t x_16; +x_14 = lean_ctor_get(x_10, 1); +x_15 = lean_ctor_get(x_10, 0); lean_dec(x_15); -x_18 = lean_ctor_get(x_16, 0); +x_16 = l_Lean_Expr_isFVar(x_1); +if (x_16 == 0) +{ +lean_object* x_17; +lean_free_object(x_10); +x_17 = l_Lean_Expr_getAppFn(x_1); +if (lean_obj_tag(x_17) == 4) +{ +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_17, 0); lean_inc(x_18); -lean_dec(x_16); -x_19 = lean_environment_find(x_18, x_13); -if (lean_obj_tag(x_19) == 0) -{ -lean_object* x_20; lean_object* x_21; -lean_dec(x_14); -lean_dec(x_1); -x_20 = l___private_Lean_Elab_Match_0__Lean_Elab_Term_ToDepElimPattern_toPattern___closed__2; -x_21 = l_panic___at___private_Lean_Elab_Match_0__Lean_Elab_Term_ToDepElimPattern_toPattern___spec__1(x_20, x_2, x_3, x_4, x_5, x_17); -return x_21; -} -else -{ -lean_object* x_22; -x_22 = lean_ctor_get(x_19, 0); +x_19 = lean_ctor_get(x_17, 1); +lean_inc(x_19); +lean_dec(x_17); +x_20 = lean_st_ref_get(x_5, x_14); +x_21 = lean_ctor_get(x_20, 0); +lean_inc(x_21); +x_22 = lean_ctor_get(x_20, 1); lean_inc(x_22); -lean_dec(x_19); -if (lean_obj_tag(x_22) == 6) -{ -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; size_t x_34; size_t 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; size_t x_42; lean_object* x_43; -x_23 = lean_ctor_get(x_22, 0); +lean_dec(x_20); +x_23 = lean_ctor_get(x_21, 0); lean_inc(x_23); -lean_dec(x_22); -x_24 = lean_unsigned_to_nat(0u); -x_25 = l___private_Lean_Expr_0__Lean_Expr_getAppNumArgsAux(x_1, x_24); -x_26 = l_Lean_Meta_transform_visit___at___private_Lean_Elab_Match_0__Lean_Elab_Term_elabMatchTypeAndDiscrs_elabDiscrs___spec__2___lambda__1___closed__1; -lean_inc(x_25); -x_27 = lean_mk_array(x_25, x_26); -x_28 = lean_unsigned_to_nat(1u); -x_29 = lean_nat_sub(x_25, x_28); -lean_dec(x_25); -x_30 = l___private_Lean_Expr_0__Lean_Expr_getAppArgsAux(x_1, x_27, x_29); -x_31 = lean_ctor_get(x_23, 3); -lean_inc(x_31); -x_32 = l_Array_extract___rarg(x_30, x_24, x_31); -x_33 = lean_array_get_size(x_32); -x_34 = lean_usize_of_nat(x_33); -lean_dec(x_33); -x_35 = 0; -x_36 = l_Array_mapMUnsafe_map___at___private_Lean_Elab_Match_0__Lean_Elab_Term_ToDepElimPattern_toPattern___spec__2(x_34, x_35, x_32, x_2, x_3, x_4, x_5, x_17); -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 = lean_array_get_size(x_30); -x_40 = l_Array_extract___rarg(x_30, x_31, x_39); -lean_dec(x_39); +lean_dec(x_21); +x_24 = lean_environment_find(x_23, x_18); +if (lean_obj_tag(x_24) == 0) +{ +lean_object* x_25; lean_object* x_26; +lean_dec(x_19); +lean_dec(x_1); +x_25 = l___private_Lean_Elab_Match_0__Lean_Elab_Term_ToDepElimPattern_toPattern___closed__2; +x_26 = l_panic___at___private_Lean_Elab_Match_0__Lean_Elab_Term_ToDepElimPattern_toPattern___spec__1(x_25, x_2, x_3, x_4, x_5, x_22); +return x_26; +} +else +{ +lean_object* x_27; +x_27 = lean_ctor_get(x_24, 0); +lean_inc(x_27); +lean_dec(x_24); +if (lean_obj_tag(x_27) == 6) +{ +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; size_t x_39; size_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; size_t x_47; lean_object* x_48; +x_28 = lean_ctor_get(x_27, 0); +lean_inc(x_28); +lean_dec(x_27); +x_29 = lean_unsigned_to_nat(0u); +x_30 = l___private_Lean_Expr_0__Lean_Expr_getAppNumArgsAux(x_1, x_29); +x_31 = l_Lean_Meta_transform_visit___at___private_Lean_Elab_Match_0__Lean_Elab_Term_elabMatchTypeAndDiscrs_elabDiscrs___spec__2___lambda__1___closed__1; +lean_inc(x_30); +x_32 = lean_mk_array(x_30, x_31); +x_33 = lean_unsigned_to_nat(1u); +x_34 = lean_nat_sub(x_30, x_33); lean_dec(x_30); -x_41 = lean_array_get_size(x_40); -x_42 = lean_usize_of_nat(x_41); +x_35 = l___private_Lean_Expr_0__Lean_Expr_getAppArgsAux(x_1, x_32, x_34); +x_36 = lean_ctor_get(x_28, 3); +lean_inc(x_36); +x_37 = l_Array_extract___rarg(x_35, x_29, x_36); +x_38 = lean_array_get_size(x_37); +x_39 = lean_usize_of_nat(x_38); +lean_dec(x_38); +x_40 = 0; +x_41 = l_Array_mapMUnsafe_map___at___private_Lean_Elab_Match_0__Lean_Elab_Term_ToDepElimPattern_toPattern___spec__2(x_39, x_40, x_37, x_2, x_3, x_4, x_5, x_22); +x_42 = lean_ctor_get(x_41, 0); +lean_inc(x_42); +x_43 = lean_ctor_get(x_41, 1); +lean_inc(x_43); lean_dec(x_41); -x_43 = l_Array_mapMUnsafe_map___at___private_Lean_Elab_Match_0__Lean_Elab_Term_ToDepElimPattern_toPattern___spec__3(x_42, x_35, x_40, x_2, x_3, x_4, x_5, x_38); -if (lean_obj_tag(x_43) == 0) -{ -uint8_t x_44; -x_44 = !lean_is_exclusive(x_43); -if (x_44 == 0) -{ -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_45 = lean_ctor_get(x_43, 0); -x_46 = lean_ctor_get(x_23, 0); -lean_inc(x_46); -lean_dec(x_23); -x_47 = lean_ctor_get(x_46, 0); -lean_inc(x_47); +x_44 = lean_array_get_size(x_35); +x_45 = l_Array_extract___rarg(x_35, x_36, x_44); +lean_dec(x_44); +lean_dec(x_35); +x_46 = lean_array_get_size(x_45); +x_47 = lean_usize_of_nat(x_46); lean_dec(x_46); -x_48 = lean_array_to_list(lean_box(0), x_37); -x_49 = lean_array_to_list(lean_box(0), x_45); -x_50 = lean_alloc_ctor(2, 4, 0); -lean_ctor_set(x_50, 0, x_47); -lean_ctor_set(x_50, 1, x_14); -lean_ctor_set(x_50, 2, x_48); -lean_ctor_set(x_50, 3, x_49); -lean_ctor_set(x_43, 0, x_50); -return x_43; -} -else +x_48 = l_Array_mapMUnsafe_map___at___private_Lean_Elab_Match_0__Lean_Elab_Term_ToDepElimPattern_toPattern___spec__3(x_47, x_40, x_45, x_2, x_3, x_4, x_5, x_43); +if (lean_obj_tag(x_48) == 0) { -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; -x_51 = lean_ctor_get(x_43, 0); -x_52 = lean_ctor_get(x_43, 1); -lean_inc(x_52); +uint8_t x_49; +x_49 = !lean_is_exclusive(x_48); +if (x_49 == 0) +{ +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_50 = lean_ctor_get(x_48, 0); +x_51 = lean_ctor_get(x_28, 0); lean_inc(x_51); -lean_dec(x_43); -x_53 = lean_ctor_get(x_23, 0); -lean_inc(x_53); -lean_dec(x_23); -x_54 = lean_ctor_get(x_53, 0); -lean_inc(x_54); -lean_dec(x_53); -x_55 = lean_array_to_list(lean_box(0), x_37); -x_56 = lean_array_to_list(lean_box(0), x_51); -x_57 = lean_alloc_ctor(2, 4, 0); -lean_ctor_set(x_57, 0, x_54); -lean_ctor_set(x_57, 1, x_14); -lean_ctor_set(x_57, 2, x_55); -lean_ctor_set(x_57, 3, x_56); -x_58 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_58, 0, x_57); -lean_ctor_set(x_58, 1, x_52); -return x_58; +lean_dec(x_28); +x_52 = lean_ctor_get(x_51, 0); +lean_inc(x_52); +lean_dec(x_51); +x_53 = lean_array_to_list(lean_box(0), x_42); +x_54 = lean_array_to_list(lean_box(0), x_50); +x_55 = lean_alloc_ctor(2, 4, 0); +lean_ctor_set(x_55, 0, x_52); +lean_ctor_set(x_55, 1, x_19); +lean_ctor_set(x_55, 2, x_53); +lean_ctor_set(x_55, 3, x_54); +lean_ctor_set(x_48, 0, x_55); +return x_48; +} +else +{ +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; +x_56 = lean_ctor_get(x_48, 0); +x_57 = lean_ctor_get(x_48, 1); +lean_inc(x_57); +lean_inc(x_56); +lean_dec(x_48); +x_58 = lean_ctor_get(x_28, 0); +lean_inc(x_58); +lean_dec(x_28); +x_59 = lean_ctor_get(x_58, 0); +lean_inc(x_59); +lean_dec(x_58); +x_60 = lean_array_to_list(lean_box(0), x_42); +x_61 = lean_array_to_list(lean_box(0), x_56); +x_62 = lean_alloc_ctor(2, 4, 0); +lean_ctor_set(x_62, 0, x_59); +lean_ctor_set(x_62, 1, x_19); +lean_ctor_set(x_62, 2, x_60); +lean_ctor_set(x_62, 3, x_61); +x_63 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_63, 0, x_62); +lean_ctor_set(x_63, 1, x_57); +return x_63; } } else { -uint8_t x_59; -lean_dec(x_37); -lean_dec(x_23); -lean_dec(x_14); -x_59 = !lean_is_exclusive(x_43); -if (x_59 == 0) +uint8_t x_64; +lean_dec(x_42); +lean_dec(x_28); +lean_dec(x_19); +x_64 = !lean_is_exclusive(x_48); +if (x_64 == 0) { -return x_43; +return x_48; } else { -lean_object* x_60; lean_object* x_61; lean_object* x_62; -x_60 = lean_ctor_get(x_43, 0); -x_61 = lean_ctor_get(x_43, 1); -lean_inc(x_61); -lean_inc(x_60); -lean_dec(x_43); -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; +lean_object* x_65; lean_object* x_66; lean_object* x_67; +x_65 = lean_ctor_get(x_48, 0); +x_66 = lean_ctor_get(x_48, 1); +lean_inc(x_66); +lean_inc(x_65); +lean_dec(x_48); +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; } } } else { -lean_object* x_63; lean_object* x_64; -lean_dec(x_22); -lean_dec(x_14); +lean_object* x_68; lean_object* x_69; +lean_dec(x_27); +lean_dec(x_19); lean_dec(x_1); -x_63 = l___private_Lean_Elab_Match_0__Lean_Elab_Term_ToDepElimPattern_toPattern___closed__2; -x_64 = l_panic___at___private_Lean_Elab_Match_0__Lean_Elab_Term_ToDepElimPattern_toPattern___spec__1(x_63, x_2, x_3, x_4, x_5, x_17); -return x_64; -} -} -} -else -{ -lean_object* x_65; lean_object* x_66; -lean_dec(x_12); -lean_dec(x_1); -x_65 = l___private_Lean_Elab_Match_0__Lean_Elab_Term_ToDepElimPattern_toPattern___closed__2; -x_66 = l_panic___at___private_Lean_Elab_Match_0__Lean_Elab_Term_ToDepElimPattern_toPattern___spec__1(x_65, x_2, x_3, x_4, x_5, x_6); -return x_66; -} -} -else -{ -lean_object* x_67; lean_object* x_68; lean_object* x_69; -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -x_67 = l_Lean_Expr_fvarId_x21(x_1); -x_68 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_68, 0, x_67); -x_69 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_69, 0, x_68); -lean_ctor_set(x_69, 1, x_6); +x_68 = l___private_Lean_Elab_Match_0__Lean_Elab_Term_ToDepElimPattern_toPattern___closed__2; +x_69 = l_panic___at___private_Lean_Elab_Match_0__Lean_Elab_Term_ToDepElimPattern_toPattern___spec__1(x_68, x_2, x_3, x_4, x_5, x_22); return x_69; } } +} else { lean_object* x_70; lean_object* x_71; -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -x_70 = lean_alloc_ctor(3, 1, 0); -lean_ctor_set(x_70, 0, x_1); -x_71 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_71, 0, x_70); -lean_ctor_set(x_71, 1, x_6); +lean_dec(x_17); +lean_dec(x_1); +x_70 = l___private_Lean_Elab_Match_0__Lean_Elab_Term_ToDepElimPattern_toPattern___closed__2; +x_71 = l_panic___at___private_Lean_Elab_Match_0__Lean_Elab_Term_ToDepElimPattern_toPattern___spec__1(x_70, x_2, x_3, x_4, x_5, x_14); return x_71; } } else { -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_dec(x_1); -x_72 = lean_ctor_get(x_9, 0); -lean_inc(x_72); -lean_dec(x_9); -x_73 = lean_unsigned_to_nat(0u); -x_74 = l___private_Lean_Expr_0__Lean_Expr_getAppNumArgsAux(x_72, x_73); -x_75 = lean_unsigned_to_nat(2u); -x_76 = lean_nat_sub(x_74, x_75); -x_77 = lean_unsigned_to_nat(1u); -x_78 = lean_nat_sub(x_76, x_77); +lean_object* x_72; lean_object* x_73; +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_72 = l_Lean_Expr_fvarId_x21(x_1); +x_73 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_73, 0, x_72); +lean_ctor_set(x_10, 0, x_73); +return x_10; +} +} +else +{ +lean_object* x_74; uint8_t x_75; +x_74 = lean_ctor_get(x_10, 1); +lean_inc(x_74); +lean_dec(x_10); +x_75 = l_Lean_Expr_isFVar(x_1); +if (x_75 == 0) +{ +lean_object* x_76; +x_76 = l_Lean_Expr_getAppFn(x_1); +if (lean_obj_tag(x_76) == 4) +{ +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_77 = lean_ctor_get(x_76, 0); +lean_inc(x_77); +x_78 = lean_ctor_get(x_76, 1); +lean_inc(x_78); lean_dec(x_76); -x_79 = l_Lean_Expr_getRevArg_x21(x_72, x_78); +x_79 = lean_st_ref_get(x_5, x_74); +x_80 = lean_ctor_get(x_79, 0); +lean_inc(x_80); +x_81 = lean_ctor_get(x_79, 1); +lean_inc(x_81); +lean_dec(x_79); +x_82 = lean_ctor_get(x_80, 0); +lean_inc(x_82); +lean_dec(x_80); +x_83 = lean_environment_find(x_82, x_77); +if (lean_obj_tag(x_83) == 0) +{ +lean_object* x_84; lean_object* x_85; +lean_dec(x_78); +lean_dec(x_1); +x_84 = l___private_Lean_Elab_Match_0__Lean_Elab_Term_ToDepElimPattern_toPattern___closed__2; +x_85 = l_panic___at___private_Lean_Elab_Match_0__Lean_Elab_Term_ToDepElimPattern_toPattern___spec__1(x_84, x_2, x_3, x_4, x_5, x_81); +return x_85; +} +else +{ +lean_object* x_86; +x_86 = lean_ctor_get(x_83, 0); +lean_inc(x_86); +lean_dec(x_83); +if (lean_obj_tag(x_86) == 6) +{ +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; size_t x_98; size_t 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; size_t x_106; lean_object* x_107; +x_87 = lean_ctor_get(x_86, 0); +lean_inc(x_87); +lean_dec(x_86); +x_88 = lean_unsigned_to_nat(0u); +x_89 = l___private_Lean_Expr_0__Lean_Expr_getAppNumArgsAux(x_1, x_88); +x_90 = l_Lean_Meta_transform_visit___at___private_Lean_Elab_Match_0__Lean_Elab_Term_elabMatchTypeAndDiscrs_elabDiscrs___spec__2___lambda__1___closed__1; +lean_inc(x_89); +x_91 = lean_mk_array(x_89, x_90); +x_92 = lean_unsigned_to_nat(1u); +x_93 = lean_nat_sub(x_89, x_92); +lean_dec(x_89); +x_94 = l___private_Lean_Expr_0__Lean_Expr_getAppArgsAux(x_1, x_91, x_93); +x_95 = lean_ctor_get(x_87, 3); +lean_inc(x_95); +x_96 = l_Array_extract___rarg(x_94, x_88, x_95); +x_97 = lean_array_get_size(x_96); +x_98 = lean_usize_of_nat(x_97); +lean_dec(x_97); +x_99 = 0; +x_100 = l_Array_mapMUnsafe_map___at___private_Lean_Elab_Match_0__Lean_Elab_Term_ToDepElimPattern_toPattern___spec__2(x_98, x_99, x_96, x_2, x_3, x_4, x_5, x_81); +x_101 = lean_ctor_get(x_100, 0); +lean_inc(x_101); +x_102 = lean_ctor_get(x_100, 1); +lean_inc(x_102); +lean_dec(x_100); +x_103 = lean_array_get_size(x_94); +x_104 = l_Array_extract___rarg(x_94, x_95, x_103); +lean_dec(x_103); +lean_dec(x_94); +x_105 = lean_array_get_size(x_104); +x_106 = lean_usize_of_nat(x_105); +lean_dec(x_105); +x_107 = l_Array_mapMUnsafe_map___at___private_Lean_Elab_Match_0__Lean_Elab_Term_ToDepElimPattern_toPattern___spec__3(x_106, x_99, x_104, x_2, x_3, x_4, x_5, x_102); +if (lean_obj_tag(x_107) == 0) +{ +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; +x_108 = lean_ctor_get(x_107, 0); +lean_inc(x_108); +x_109 = lean_ctor_get(x_107, 1); +lean_inc(x_109); +if (lean_is_exclusive(x_107)) { + lean_ctor_release(x_107, 0); + lean_ctor_release(x_107, 1); + x_110 = x_107; +} else { + lean_dec_ref(x_107); + x_110 = lean_box(0); +} +x_111 = lean_ctor_get(x_87, 0); +lean_inc(x_111); +lean_dec(x_87); +x_112 = lean_ctor_get(x_111, 0); +lean_inc(x_112); +lean_dec(x_111); +x_113 = lean_array_to_list(lean_box(0), x_101); +x_114 = lean_array_to_list(lean_box(0), x_108); +x_115 = lean_alloc_ctor(2, 4, 0); +lean_ctor_set(x_115, 0, x_112); +lean_ctor_set(x_115, 1, x_78); +lean_ctor_set(x_115, 2, x_113); +lean_ctor_set(x_115, 3, x_114); +if (lean_is_scalar(x_110)) { + x_116 = lean_alloc_ctor(0, 2, 0); +} else { + x_116 = x_110; +} +lean_ctor_set(x_116, 0, x_115); +lean_ctor_set(x_116, 1, x_109); +return x_116; +} +else +{ +lean_object* x_117; lean_object* x_118; lean_object* x_119; lean_object* x_120; +lean_dec(x_101); +lean_dec(x_87); +lean_dec(x_78); +x_117 = lean_ctor_get(x_107, 0); +lean_inc(x_117); +x_118 = lean_ctor_get(x_107, 1); +lean_inc(x_118); +if (lean_is_exclusive(x_107)) { + lean_ctor_release(x_107, 0); + lean_ctor_release(x_107, 1); + x_119 = x_107; +} else { + lean_dec_ref(x_107); + x_119 = lean_box(0); +} +if (lean_is_scalar(x_119)) { + x_120 = lean_alloc_ctor(1, 2, 0); +} else { + x_120 = x_119; +} +lean_ctor_set(x_120, 0, x_117); +lean_ctor_set(x_120, 1, x_118); +return x_120; +} +} +else +{ +lean_object* x_121; lean_object* x_122; +lean_dec(x_86); +lean_dec(x_78); +lean_dec(x_1); +x_121 = l___private_Lean_Elab_Match_0__Lean_Elab_Term_ToDepElimPattern_toPattern___closed__2; +x_122 = l_panic___at___private_Lean_Elab_Match_0__Lean_Elab_Term_ToDepElimPattern_toPattern___spec__1(x_121, x_2, x_3, x_4, x_5, x_81); +return x_122; +} +} +} +else +{ +lean_object* x_123; lean_object* x_124; +lean_dec(x_76); +lean_dec(x_1); +x_123 = l___private_Lean_Elab_Match_0__Lean_Elab_Term_ToDepElimPattern_toPattern___closed__2; +x_124 = l_panic___at___private_Lean_Elab_Match_0__Lean_Elab_Term_ToDepElimPattern_toPattern___spec__1(x_123, x_2, x_3, x_4, x_5, x_74); +return x_124; +} +} +else +{ +lean_object* x_125; lean_object* x_126; lean_object* x_127; +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_125 = l_Lean_Expr_fvarId_x21(x_1); +x_126 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_126, 0, x_125); +x_127 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_127, 0, x_126); +lean_ctor_set(x_127, 1, x_74); +return x_127; +} +} +} +else +{ +lean_object* x_128; lean_object* x_129; +x_128 = lean_ctor_get(x_10, 1); +lean_inc(x_128); +lean_dec(x_10); +x_129 = l_Lean_Meta_normLitValue(x_1, x_2, x_3, x_4, x_5, x_128); +if (lean_obj_tag(x_129) == 0) +{ +uint8_t x_130; +x_130 = !lean_is_exclusive(x_129); +if (x_130 == 0) +{ +lean_object* x_131; lean_object* x_132; +x_131 = lean_ctor_get(x_129, 0); +x_132 = lean_alloc_ctor(3, 1, 0); +lean_ctor_set(x_132, 0, x_131); +lean_ctor_set(x_129, 0, x_132); +return x_129; +} +else +{ +lean_object* x_133; lean_object* x_134; lean_object* x_135; lean_object* x_136; +x_133 = lean_ctor_get(x_129, 0); +x_134 = lean_ctor_get(x_129, 1); +lean_inc(x_134); +lean_inc(x_133); +lean_dec(x_129); +x_135 = lean_alloc_ctor(3, 1, 0); +lean_ctor_set(x_135, 0, x_133); +x_136 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_136, 0, x_135); +lean_ctor_set(x_136, 1, x_134); +return x_136; +} +} +else +{ +uint8_t x_137; +x_137 = !lean_is_exclusive(x_129); +if (x_137 == 0) +{ +return x_129; +} +else +{ +lean_object* x_138; lean_object* x_139; lean_object* x_140; +x_138 = lean_ctor_get(x_129, 0); +x_139 = lean_ctor_get(x_129, 1); +lean_inc(x_139); +lean_inc(x_138); +lean_dec(x_129); +x_140 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_140, 0, x_138); +lean_ctor_set(x_140, 1, x_139); +return x_140; +} +} +} +} +else +{ +uint8_t x_141; +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +x_141 = !lean_is_exclusive(x_10); +if (x_141 == 0) +{ +return x_10; +} +else +{ +lean_object* x_142; lean_object* x_143; lean_object* x_144; +x_142 = lean_ctor_get(x_10, 0); +x_143 = lean_ctor_get(x_10, 1); +lean_inc(x_143); +lean_inc(x_142); +lean_dec(x_10); +x_144 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_144, 0, x_142); +lean_ctor_set(x_144, 1, x_143); +return x_144; +} +} +} +else +{ +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_1); +x_145 = lean_ctor_get(x_9, 0); +lean_inc(x_145); +lean_dec(x_9); +x_146 = lean_unsigned_to_nat(0u); +x_147 = l___private_Lean_Expr_0__Lean_Expr_getAppNumArgsAux(x_145, x_146); +x_148 = lean_unsigned_to_nat(2u); +x_149 = lean_nat_sub(x_147, x_148); +x_150 = lean_unsigned_to_nat(1u); +x_151 = lean_nat_sub(x_149, x_150); +lean_dec(x_149); +x_152 = l_Lean_Expr_getRevArg_x21(x_145, x_151); lean_inc(x_5); lean_inc(x_4); lean_inc(x_3); lean_inc(x_2); -x_80 = l___private_Lean_Elab_Match_0__Lean_Elab_Term_ToDepElimPattern_toPattern(x_79, x_2, x_3, x_4, x_5, x_6); -if (lean_obj_tag(x_80) == 0) +x_153 = l___private_Lean_Elab_Match_0__Lean_Elab_Term_ToDepElimPattern_toPattern(x_152, x_2, x_3, x_4, x_5, x_6); +if (lean_obj_tag(x_153) == 0) { -uint8_t x_81; -x_81 = !lean_is_exclusive(x_80); -if (x_81 == 0) +uint8_t x_154; +x_154 = !lean_is_exclusive(x_153); +if (x_154 == 0) { -lean_object* x_82; lean_object* x_83; lean_object* x_84; lean_object* x_85; lean_object* x_86; -x_82 = lean_ctor_get(x_80, 0); -x_83 = lean_ctor_get(x_80, 1); -x_84 = lean_nat_sub(x_74, x_77); -x_85 = lean_nat_sub(x_84, x_77); -lean_dec(x_84); -x_86 = l_Lean_Expr_getRevArg_x21(x_72, x_85); -if (lean_obj_tag(x_86) == 1) +lean_object* x_155; lean_object* x_156; lean_object* x_157; lean_object* x_158; lean_object* x_159; +x_155 = lean_ctor_get(x_153, 0); +x_156 = lean_ctor_get(x_153, 1); +x_157 = lean_nat_sub(x_147, x_150); +x_158 = lean_nat_sub(x_157, x_150); +lean_dec(x_157); +x_159 = l_Lean_Expr_getRevArg_x21(x_145, x_158); +if (lean_obj_tag(x_159) == 1) { -lean_object* x_87; lean_object* x_88; lean_object* x_89; lean_object* x_90; lean_object* x_91; -x_87 = lean_ctor_get(x_86, 0); -lean_inc(x_87); -lean_dec(x_86); -x_88 = lean_unsigned_to_nat(3u); -x_89 = lean_nat_sub(x_74, x_88); -lean_dec(x_74); -x_90 = lean_nat_sub(x_89, x_77); -lean_dec(x_89); -x_91 = l_Lean_Expr_getRevArg_x21(x_72, x_90); -lean_dec(x_72); -if (lean_obj_tag(x_91) == 1) +lean_object* x_160; lean_object* x_161; lean_object* x_162; lean_object* x_163; lean_object* x_164; +x_160 = lean_ctor_get(x_159, 0); +lean_inc(x_160); +lean_dec(x_159); +x_161 = lean_unsigned_to_nat(3u); +x_162 = lean_nat_sub(x_147, x_161); +lean_dec(x_147); +x_163 = lean_nat_sub(x_162, x_150); +lean_dec(x_162); +x_164 = l_Lean_Expr_getRevArg_x21(x_145, x_163); +lean_dec(x_145); +if (lean_obj_tag(x_164) == 1) { -lean_object* x_92; lean_object* x_93; +lean_object* x_165; lean_object* x_166; lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); -x_92 = lean_ctor_get(x_91, 0); -lean_inc(x_92); -lean_dec(x_91); -x_93 = lean_alloc_ctor(5, 3, 0); -lean_ctor_set(x_93, 0, x_87); -lean_ctor_set(x_93, 1, x_82); -lean_ctor_set(x_93, 2, x_92); -lean_ctor_set(x_80, 0, x_93); -return x_80; +x_165 = lean_ctor_get(x_164, 0); +lean_inc(x_165); +lean_dec(x_164); +x_166 = lean_alloc_ctor(5, 3, 0); +lean_ctor_set(x_166, 0, x_160); +lean_ctor_set(x_166, 1, x_155); +lean_ctor_set(x_166, 2, x_165); +lean_ctor_set(x_153, 0, x_166); +return x_153; } else { -lean_object* x_94; lean_object* x_95; -lean_dec(x_91); -lean_dec(x_87); -lean_free_object(x_80); -lean_dec(x_82); -x_94 = l_Lean_Elab_Term_ToDepElimPattern_normalize___closed__2; -x_95 = l_Lean_throwError___at_Lean_Meta_Match_toPattern___spec__1(x_94, x_2, x_3, x_4, x_5, x_83); +lean_object* x_167; lean_object* x_168; +lean_dec(x_164); +lean_dec(x_160); +lean_free_object(x_153); +lean_dec(x_155); +x_167 = l_Lean_Elab_Term_ToDepElimPattern_normalize___closed__2; +x_168 = l_Lean_throwError___at_Lean_Meta_Match_toPattern___spec__1(x_167, x_2, x_3, x_4, x_5, x_156); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); -return x_95; +return x_168; } } else { -lean_object* x_96; lean_object* x_97; -lean_dec(x_86); -lean_free_object(x_80); -lean_dec(x_82); -lean_dec(x_74); -lean_dec(x_72); -x_96 = l_Lean_Elab_Term_ToDepElimPattern_normalize___closed__2; -x_97 = l_Lean_throwError___at_Lean_Meta_Match_toPattern___spec__1(x_96, x_2, x_3, x_4, x_5, x_83); +lean_object* x_169; lean_object* x_170; +lean_dec(x_159); +lean_free_object(x_153); +lean_dec(x_155); +lean_dec(x_147); +lean_dec(x_145); +x_169 = l_Lean_Elab_Term_ToDepElimPattern_normalize___closed__2; +x_170 = l_Lean_throwError___at_Lean_Meta_Match_toPattern___spec__1(x_169, x_2, x_3, x_4, x_5, x_156); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); -return x_97; +return x_170; } } else { -lean_object* x_98; lean_object* x_99; lean_object* x_100; lean_object* x_101; lean_object* x_102; -x_98 = lean_ctor_get(x_80, 0); -x_99 = lean_ctor_get(x_80, 1); -lean_inc(x_99); -lean_inc(x_98); -lean_dec(x_80); -x_100 = lean_nat_sub(x_74, x_77); -x_101 = lean_nat_sub(x_100, x_77); -lean_dec(x_100); -x_102 = l_Lean_Expr_getRevArg_x21(x_72, x_101); -if (lean_obj_tag(x_102) == 1) +lean_object* x_171; lean_object* x_172; lean_object* x_173; lean_object* x_174; lean_object* x_175; +x_171 = lean_ctor_get(x_153, 0); +x_172 = lean_ctor_get(x_153, 1); +lean_inc(x_172); +lean_inc(x_171); +lean_dec(x_153); +x_173 = lean_nat_sub(x_147, x_150); +x_174 = lean_nat_sub(x_173, x_150); +lean_dec(x_173); +x_175 = l_Lean_Expr_getRevArg_x21(x_145, x_174); +if (lean_obj_tag(x_175) == 1) { -lean_object* x_103; lean_object* x_104; lean_object* x_105; lean_object* x_106; lean_object* x_107; -x_103 = lean_ctor_get(x_102, 0); -lean_inc(x_103); -lean_dec(x_102); -x_104 = lean_unsigned_to_nat(3u); -x_105 = lean_nat_sub(x_74, x_104); -lean_dec(x_74); -x_106 = lean_nat_sub(x_105, x_77); -lean_dec(x_105); -x_107 = l_Lean_Expr_getRevArg_x21(x_72, x_106); -lean_dec(x_72); -if (lean_obj_tag(x_107) == 1) +lean_object* x_176; lean_object* x_177; lean_object* x_178; lean_object* x_179; lean_object* x_180; +x_176 = lean_ctor_get(x_175, 0); +lean_inc(x_176); +lean_dec(x_175); +x_177 = lean_unsigned_to_nat(3u); +x_178 = lean_nat_sub(x_147, x_177); +lean_dec(x_147); +x_179 = lean_nat_sub(x_178, x_150); +lean_dec(x_178); +x_180 = l_Lean_Expr_getRevArg_x21(x_145, x_179); +lean_dec(x_145); +if (lean_obj_tag(x_180) == 1) { -lean_object* x_108; lean_object* x_109; lean_object* x_110; +lean_object* x_181; lean_object* x_182; lean_object* x_183; lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); -x_108 = lean_ctor_get(x_107, 0); -lean_inc(x_108); -lean_dec(x_107); -x_109 = lean_alloc_ctor(5, 3, 0); -lean_ctor_set(x_109, 0, x_103); -lean_ctor_set(x_109, 1, x_98); -lean_ctor_set(x_109, 2, x_108); -x_110 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_110, 0, x_109); -lean_ctor_set(x_110, 1, x_99); -return x_110; +x_181 = lean_ctor_get(x_180, 0); +lean_inc(x_181); +lean_dec(x_180); +x_182 = lean_alloc_ctor(5, 3, 0); +lean_ctor_set(x_182, 0, x_176); +lean_ctor_set(x_182, 1, x_171); +lean_ctor_set(x_182, 2, x_181); +x_183 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_183, 0, x_182); +lean_ctor_set(x_183, 1, x_172); +return x_183; } else { -lean_object* x_111; lean_object* x_112; -lean_dec(x_107); -lean_dec(x_103); -lean_dec(x_98); -x_111 = l_Lean_Elab_Term_ToDepElimPattern_normalize___closed__2; -x_112 = l_Lean_throwError___at_Lean_Meta_Match_toPattern___spec__1(x_111, x_2, x_3, x_4, x_5, x_99); +lean_object* x_184; lean_object* x_185; +lean_dec(x_180); +lean_dec(x_176); +lean_dec(x_171); +x_184 = l_Lean_Elab_Term_ToDepElimPattern_normalize___closed__2; +x_185 = l_Lean_throwError___at_Lean_Meta_Match_toPattern___spec__1(x_184, x_2, x_3, x_4, x_5, x_172); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); -return x_112; +return x_185; } } else { -lean_object* x_113; lean_object* x_114; -lean_dec(x_102); -lean_dec(x_98); -lean_dec(x_74); -lean_dec(x_72); -x_113 = l_Lean_Elab_Term_ToDepElimPattern_normalize___closed__2; -x_114 = l_Lean_throwError___at_Lean_Meta_Match_toPattern___spec__1(x_113, x_2, x_3, x_4, x_5, x_99); +lean_object* x_186; lean_object* x_187; +lean_dec(x_175); +lean_dec(x_171); +lean_dec(x_147); +lean_dec(x_145); +x_186 = l_Lean_Elab_Term_ToDepElimPattern_normalize___closed__2; +x_187 = l_Lean_throwError___at_Lean_Meta_Match_toPattern___spec__1(x_186, x_2, x_3, x_4, x_5, x_172); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); -return x_114; +return x_187; } } } else { -uint8_t x_115; -lean_dec(x_74); -lean_dec(x_72); +uint8_t x_188; +lean_dec(x_147); +lean_dec(x_145); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); -x_115 = !lean_is_exclusive(x_80); -if (x_115 == 0) +x_188 = !lean_is_exclusive(x_153); +if (x_188 == 0) { -return x_80; +return x_153; } else { -lean_object* x_116; lean_object* x_117; lean_object* x_118; -x_116 = lean_ctor_get(x_80, 0); -x_117 = lean_ctor_get(x_80, 1); -lean_inc(x_117); -lean_inc(x_116); -lean_dec(x_80); -x_118 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_118, 0, x_116); -lean_ctor_set(x_118, 1, x_117); -return x_118; +lean_object* x_189; lean_object* x_190; lean_object* x_191; +x_189 = lean_ctor_get(x_153, 0); +x_190 = lean_ctor_get(x_153, 1); +lean_inc(x_190); +lean_inc(x_189); +lean_dec(x_153); +x_191 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_191, 0, x_189); +lean_ctor_set(x_191, 1, x_190); +return x_191; } } } } else { -lean_object* x_119; lean_object* x_120; lean_object* x_121; lean_object* x_122; lean_object* x_123; +lean_object* x_192; lean_object* x_193; lean_object* x_194; lean_object* x_195; lean_object* x_196; lean_dec(x_1); -x_119 = lean_ctor_get(x_8, 0); -lean_inc(x_119); +x_192 = lean_ctor_get(x_8, 0); +lean_inc(x_192); lean_dec(x_8); -x_120 = lean_ctor_get(x_119, 0); -lean_inc(x_120); -x_121 = lean_ctor_get(x_119, 1); -lean_inc(x_121); -lean_dec(x_119); -x_122 = lean_box(0); -x_123 = l_List_mapM_loop___at___private_Lean_Elab_Match_0__Lean_Elab_Term_ToDepElimPattern_toPattern___spec__4(x_121, x_122, x_2, x_3, x_4, x_5, x_6); -if (lean_obj_tag(x_123) == 0) +x_193 = lean_ctor_get(x_192, 0); +lean_inc(x_193); +x_194 = lean_ctor_get(x_192, 1); +lean_inc(x_194); +lean_dec(x_192); +x_195 = lean_box(0); +x_196 = l_List_mapM_loop___at___private_Lean_Elab_Match_0__Lean_Elab_Term_ToDepElimPattern_toPattern___spec__4(x_194, x_195, x_2, x_3, x_4, x_5, x_6); +if (lean_obj_tag(x_196) == 0) { -uint8_t x_124; -x_124 = !lean_is_exclusive(x_123); -if (x_124 == 0) +uint8_t x_197; +x_197 = !lean_is_exclusive(x_196); +if (x_197 == 0) { -lean_object* x_125; lean_object* x_126; -x_125 = lean_ctor_get(x_123, 0); -x_126 = lean_alloc_ctor(4, 2, 0); -lean_ctor_set(x_126, 0, x_120); -lean_ctor_set(x_126, 1, x_125); -lean_ctor_set(x_123, 0, x_126); -return x_123; +lean_object* x_198; lean_object* x_199; +x_198 = lean_ctor_get(x_196, 0); +x_199 = lean_alloc_ctor(4, 2, 0); +lean_ctor_set(x_199, 0, x_193); +lean_ctor_set(x_199, 1, x_198); +lean_ctor_set(x_196, 0, x_199); +return x_196; } else { -lean_object* x_127; lean_object* x_128; lean_object* x_129; lean_object* x_130; -x_127 = lean_ctor_get(x_123, 0); -x_128 = lean_ctor_get(x_123, 1); -lean_inc(x_128); -lean_inc(x_127); -lean_dec(x_123); -x_129 = lean_alloc_ctor(4, 2, 0); -lean_ctor_set(x_129, 0, x_120); -lean_ctor_set(x_129, 1, x_127); -x_130 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_130, 0, x_129); -lean_ctor_set(x_130, 1, x_128); -return x_130; +lean_object* x_200; lean_object* x_201; lean_object* x_202; lean_object* x_203; +x_200 = lean_ctor_get(x_196, 0); +x_201 = lean_ctor_get(x_196, 1); +lean_inc(x_201); +lean_inc(x_200); +lean_dec(x_196); +x_202 = lean_alloc_ctor(4, 2, 0); +lean_ctor_set(x_202, 0, x_193); +lean_ctor_set(x_202, 1, x_200); +x_203 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_203, 0, x_202); +lean_ctor_set(x_203, 1, x_201); +return x_203; } } else { -uint8_t x_131; -lean_dec(x_120); -x_131 = !lean_is_exclusive(x_123); -if (x_131 == 0) +uint8_t x_204; +lean_dec(x_193); +x_204 = !lean_is_exclusive(x_196); +if (x_204 == 0) { -return x_123; +return x_196; } else { -lean_object* x_132; lean_object* x_133; lean_object* x_134; -x_132 = lean_ctor_get(x_123, 0); -x_133 = lean_ctor_get(x_123, 1); -lean_inc(x_133); -lean_inc(x_132); -lean_dec(x_123); -x_134 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_134, 0, x_132); -lean_ctor_set(x_134, 1, x_133); -return x_134; +lean_object* x_205; lean_object* x_206; lean_object* x_207; +x_205 = lean_ctor_get(x_196, 0); +x_206 = lean_ctor_get(x_196, 1); +lean_inc(x_206); +lean_inc(x_205); +lean_dec(x_196); +x_207 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_207, 0, x_205); +lean_ctor_set(x_207, 1, x_206); +return x_207; } } } } else { -lean_object* x_135; lean_object* x_136; lean_object* x_137; +lean_object* x_208; lean_object* x_209; lean_object* x_210; lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_135 = lean_ctor_get(x_7, 0); -lean_inc(x_135); +x_208 = lean_ctor_get(x_7, 0); +lean_inc(x_208); lean_dec(x_7); -x_136 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_136, 0, x_135); -x_137 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_137, 0, x_136); -lean_ctor_set(x_137, 1, x_6); -return x_137; +x_209 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_209, 0, x_208); +x_210 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_210, 0, x_209); +lean_ctor_set(x_210, 1, x_6); +return x_210; } } } @@ -36167,7 +36506,7 @@ lean_inc(x_21); lean_dec(x_19); x_22 = l_Lean_LocalDecl_userName(x_20); lean_dec(x_20); -x_23 = l_Array_contains___at___private_Lean_Meta_Match_Value_0__Lean_Meta_isUIntTypeName___spec__1(x_6, x_22); +x_23 = l_Array_contains___at_Lean_findField_x3f___spec__1(x_6, x_22); if (x_23 == 0) { lean_object* x_24; lean_object* x_25; uint8_t x_26; @@ -36316,7 +36655,7 @@ lean_inc(x_21); lean_dec(x_19); x_22 = l_Lean_LocalDecl_userName(x_20); lean_dec(x_20); -x_23 = l_Array_contains___at___private_Lean_Meta_Match_Value_0__Lean_Meta_isUIntTypeName___spec__1(x_6, x_22); +x_23 = l_Array_contains___at_Lean_findField_x3f___spec__1(x_6, x_22); if (x_23 == 0) { lean_object* x_24; lean_object* x_25; uint8_t x_26; @@ -40601,7 +40940,7 @@ lean_dec(x_2); return x_9; } } -static lean_object* _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_14740____closed__1() { +static lean_object* _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_14795____closed__1() { _start: { lean_object* x_1; @@ -40609,17 +40948,17 @@ x_1 = lean_mk_string_from_bytes("ignoreUnusedAlts", 16); return x_1; } } -static lean_object* _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_14740____closed__2() { +static lean_object* _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_14795____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Match_0__Lean_Elab_Term_elabMatchTypeAndDiscrs_elabDiscrsWitMatchType___spec__1___closed__6; -x_2 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_14740____closed__1; +x_2 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_14795____closed__1; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_14740____closed__3() { +static lean_object* _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_14795____closed__3() { _start: { lean_object* x_1; @@ -40627,13 +40966,13 @@ x_1 = lean_mk_string_from_bytes("if true, do not generate error if an alternativ return x_1; } } -static lean_object* _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_14740____closed__4() { +static lean_object* _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_14795____closed__4() { _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_Array_forInUnsafe_loop___at___private_Lean_Elab_Match_0__Lean_Elab_Term_elabMatchTypeAndDiscrs_elabDiscrsWitMatchType___spec__1___closed__14; -x_3 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_14740____closed__3; +x_3 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_14795____closed__3; x_4 = lean_box(x_1); x_5 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_5, 0, x_4); @@ -40642,7 +40981,7 @@ lean_ctor_set(x_5, 2, x_3); return x_5; } } -static lean_object* _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_14740____closed__5() { +static lean_object* _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_14795____closed__5() { _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; @@ -40650,18 +40989,18 @@ x_1 = l___private_Lean_Elab_Match_0__Lean_Elab_Term_expandSimpleMatch___closed__ x_2 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Match_0__Lean_Elab_Term_elabMatchTypeAndDiscrs_elabDiscrsWitMatchType___spec__1___closed__5; x_3 = l___private_Lean_Elab_Match_0__Lean_Elab_Term_expandSimpleMatch___closed__3; x_4 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Match_0__Lean_Elab_Term_elabMatchTypeAndDiscrs_elabDiscrsWitMatchType___spec__1___closed__6; -x_5 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_14740____closed__1; +x_5 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_14795____closed__1; x_6 = l_Lean_Name_mkStr5(x_1, x_2, x_3, x_4, x_5); return x_6; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_14740_(lean_object* x_1) { +LEAN_EXPORT lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_14795_(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_2 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_14740____closed__2; -x_3 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_14740____closed__4; -x_4 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_14740____closed__5; +x_2 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_14795____closed__2; +x_3 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_14795____closed__4; +x_4 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_14795____closed__5; x_5 = l_Lean_Option_register___at_Lean_Elab_initFn____x40_Lean_Elab_AutoBound___hyg_7____spec__1(x_2, x_3, x_4, x_1); return x_5; } @@ -47988,7 +48327,7 @@ x_4 = l_Lean_addBuiltinDeclarationRanges(x_2, x_3, x_1); return x_4; } } -static lean_object* _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18547____closed__1() { +static lean_object* _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18602____closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -47998,27 +48337,27 @@ x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18547____closed__2() { +static lean_object* _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18602____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18547____closed__1; +x_1 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18602____closed__1; x_2 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Match_0__Lean_Elab_Term_elabMatchTypeAndDiscrs_elabDiscrsWitMatchType___spec__1___closed__5; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18547____closed__3() { +static lean_object* _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18602____closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18547____closed__2; +x_1 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18602____closed__2; x_2 = l___private_Lean_Elab_Match_0__Lean_Elab_Term_expandSimpleMatch___closed__3; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18547____closed__4() { +static lean_object* _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18602____closed__4() { _start: { lean_object* x_1; @@ -48026,17 +48365,17 @@ x_1 = lean_mk_string_from_bytes("initFn", 6); return x_1; } } -static lean_object* _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18547____closed__5() { +static lean_object* _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18602____closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18547____closed__3; -x_2 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18547____closed__4; +x_1 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18602____closed__3; +x_2 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18602____closed__4; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18547____closed__6() { +static lean_object* _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18602____closed__6() { _start: { lean_object* x_1; @@ -48044,37 +48383,37 @@ x_1 = lean_mk_string_from_bytes("_@", 2); return x_1; } } -static lean_object* _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18547____closed__7() { +static lean_object* _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18602____closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18547____closed__5; -x_2 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18547____closed__6; +x_1 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18602____closed__5; +x_2 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18602____closed__6; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18547____closed__8() { +static lean_object* _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18602____closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18547____closed__7; +x_1 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18602____closed__7; x_2 = l___private_Lean_Elab_Match_0__Lean_Elab_Term_expandSimpleMatch___closed__1; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18547____closed__9() { +static lean_object* _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18602____closed__9() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18547____closed__8; +x_1 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18602____closed__8; x_2 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Match_0__Lean_Elab_Term_elabMatchTypeAndDiscrs_elabDiscrsWitMatchType___spec__1___closed__5; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18547____closed__10() { +static lean_object* _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18602____closed__10() { _start: { lean_object* x_1; @@ -48082,17 +48421,17 @@ x_1 = lean_mk_string_from_bytes("Match", 5); return x_1; } } -static lean_object* _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18547____closed__11() { +static lean_object* _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18602____closed__11() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18547____closed__9; -x_2 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18547____closed__10; +x_1 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18602____closed__9; +x_2 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18602____closed__10; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18547____closed__12() { +static lean_object* _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18602____closed__12() { _start: { lean_object* x_1; @@ -48100,33 +48439,33 @@ x_1 = lean_mk_string_from_bytes("_hyg", 4); return x_1; } } -static lean_object* _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18547____closed__13() { +static lean_object* _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18602____closed__13() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18547____closed__11; -x_2 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18547____closed__12; +x_1 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18602____closed__11; +x_2 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18602____closed__12; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18547____closed__14() { +static lean_object* _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18602____closed__14() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18547____closed__13; -x_2 = lean_unsigned_to_nat(18547u); +x_1 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18602____closed__13; +x_2 = lean_unsigned_to_nat(18602u); x_3 = l_Lean_Name_num___override(x_1, x_2); return x_3; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18547_(lean_object* x_1) { +LEAN_EXPORT lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18602_(lean_object* x_1) { _start: { lean_object* x_2; uint8_t x_3; lean_object* x_4; lean_object* x_5; x_2 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Match_0__Lean_Elab_Term_elabMatchTypeAndDiscrs_elabDiscrsWitMatchType___spec__1___closed__7; x_3 = 0; -x_4 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18547____closed__14; +x_4 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18602____closed__14; x_5 = l_Lean_registerTraceClass(x_2, x_3, x_4, x_1); return x_5; } @@ -50521,17 +50860,17 @@ l___private_Lean_Elab_Match_0__Lean_Elab_Term_elabMatchAltViews_loop___closed__1 lean_mark_persistent(l___private_Lean_Elab_Match_0__Lean_Elab_Term_elabMatchAltViews_loop___closed__1); l___private_Lean_Elab_Match_0__Lean_Elab_Term_elabMatchAltViews_loop___closed__2 = _init_l___private_Lean_Elab_Match_0__Lean_Elab_Term_elabMatchAltViews_loop___closed__2(); lean_mark_persistent(l___private_Lean_Elab_Match_0__Lean_Elab_Term_elabMatchAltViews_loop___closed__2); -l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_14740____closed__1 = _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_14740____closed__1(); -lean_mark_persistent(l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_14740____closed__1); -l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_14740____closed__2 = _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_14740____closed__2(); -lean_mark_persistent(l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_14740____closed__2); -l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_14740____closed__3 = _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_14740____closed__3(); -lean_mark_persistent(l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_14740____closed__3); -l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_14740____closed__4 = _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_14740____closed__4(); -lean_mark_persistent(l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_14740____closed__4); -l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_14740____closed__5 = _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_14740____closed__5(); -lean_mark_persistent(l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_14740____closed__5); -if (builtin) {res = l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_14740_(lean_io_mk_world()); +l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_14795____closed__1 = _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_14795____closed__1(); +lean_mark_persistent(l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_14795____closed__1); +l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_14795____closed__2 = _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_14795____closed__2(); +lean_mark_persistent(l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_14795____closed__2); +l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_14795____closed__3 = _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_14795____closed__3(); +lean_mark_persistent(l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_14795____closed__3); +l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_14795____closed__4 = _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_14795____closed__4(); +lean_mark_persistent(l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_14795____closed__4); +l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_14795____closed__5 = _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_14795____closed__5(); +lean_mark_persistent(l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_14795____closed__5); +if (builtin) {res = l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_14795_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; l_Lean_Elab_Term_match_ignoreUnusedAlts = lean_io_result_get_value(res); lean_mark_persistent(l_Lean_Elab_Term_match_ignoreUnusedAlts); @@ -50644,35 +50983,35 @@ lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_elabMatch_declRange___closed_ if (builtin) {res = l___regBuiltin_Lean_Elab_Term_elabMatch_declRange(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18547____closed__1 = _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18547____closed__1(); -lean_mark_persistent(l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18547____closed__1); -l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18547____closed__2 = _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18547____closed__2(); -lean_mark_persistent(l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18547____closed__2); -l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18547____closed__3 = _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18547____closed__3(); -lean_mark_persistent(l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18547____closed__3); -l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18547____closed__4 = _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18547____closed__4(); -lean_mark_persistent(l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18547____closed__4); -l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18547____closed__5 = _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18547____closed__5(); -lean_mark_persistent(l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18547____closed__5); -l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18547____closed__6 = _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18547____closed__6(); -lean_mark_persistent(l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18547____closed__6); -l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18547____closed__7 = _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18547____closed__7(); -lean_mark_persistent(l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18547____closed__7); -l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18547____closed__8 = _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18547____closed__8(); -lean_mark_persistent(l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18547____closed__8); -l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18547____closed__9 = _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18547____closed__9(); -lean_mark_persistent(l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18547____closed__9); -l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18547____closed__10 = _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18547____closed__10(); -lean_mark_persistent(l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18547____closed__10); -l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18547____closed__11 = _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18547____closed__11(); -lean_mark_persistent(l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18547____closed__11); -l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18547____closed__12 = _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18547____closed__12(); -lean_mark_persistent(l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18547____closed__12); -l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18547____closed__13 = _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18547____closed__13(); -lean_mark_persistent(l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18547____closed__13); -l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18547____closed__14 = _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18547____closed__14(); -lean_mark_persistent(l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18547____closed__14); -if (builtin) {res = l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18547_(lean_io_mk_world()); +}l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18602____closed__1 = _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18602____closed__1(); +lean_mark_persistent(l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18602____closed__1); +l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18602____closed__2 = _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18602____closed__2(); +lean_mark_persistent(l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18602____closed__2); +l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18602____closed__3 = _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18602____closed__3(); +lean_mark_persistent(l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18602____closed__3); +l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18602____closed__4 = _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18602____closed__4(); +lean_mark_persistent(l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18602____closed__4); +l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18602____closed__5 = _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18602____closed__5(); +lean_mark_persistent(l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18602____closed__5); +l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18602____closed__6 = _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18602____closed__6(); +lean_mark_persistent(l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18602____closed__6); +l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18602____closed__7 = _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18602____closed__7(); +lean_mark_persistent(l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18602____closed__7); +l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18602____closed__8 = _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18602____closed__8(); +lean_mark_persistent(l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18602____closed__8); +l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18602____closed__9 = _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18602____closed__9(); +lean_mark_persistent(l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18602____closed__9); +l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18602____closed__10 = _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18602____closed__10(); +lean_mark_persistent(l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18602____closed__10); +l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18602____closed__11 = _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18602____closed__11(); +lean_mark_persistent(l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18602____closed__11); +l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18602____closed__12 = _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18602____closed__12(); +lean_mark_persistent(l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18602____closed__12); +l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18602____closed__13 = _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18602____closed__13(); +lean_mark_persistent(l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18602____closed__13); +l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18602____closed__14 = _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18602____closed__14(); +lean_mark_persistent(l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18602____closed__14); +if (builtin) {res = l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18602_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); }l_Array_mapMUnsafe_map___at_Lean_Elab_Term_elabNoMatch___spec__3___closed__1 = _init_l_Array_mapMUnsafe_map___at_Lean_Elab_Term_elabNoMatch___spec__3___closed__1(); diff --git a/stage0/stdlib/Lean/Elab/MutualDef.c b/stage0/stdlib/Lean/Elab/MutualDef.c index e1e45b4b42..b02feb8f68 100644 --- a/stage0/stdlib/Lean/Elab/MutualDef.c +++ b/stage0/stdlib/Lean/Elab/MutualDef.c @@ -159,6 +159,7 @@ LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_Command_elabMut lean_object* l_Lean_mkHashSetImp___rarg(lean_object*); static lean_object* l_Lean_Elab_elabAttr___at_Lean_Elab_Command_elabMutualDef___spec__4___closed__4; lean_object* l_Lean_instBEqLocalInstance___boxed(lean_object*, lean_object*); +uint8_t l_Array_contains___at_Lean_findField_x3f___spec__1(lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_MutualClosure_mkInitialUsedFVarsMap___rarg___lambda__3(lean_object*, lean_object*, lean_object*, size_t, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_MutualClosure_mkInitialUsedFVarsMap___spec__5___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_MutualClosure_mkInitialUsedFVarsMap___spec__6(lean_object*); uint8_t l_Lean_HashSetImp_contains___at_Lean_CollectLevelParams_visitLevel___spec__1(lean_object*, lean_object*); @@ -228,7 +229,6 @@ LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Term_MutualClosur static lean_object* l_Lean_ensureNonAmbiguous___at_Lean_Elab_Term_elabMutualDef_processDeriving___spec__6___closed__5; LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_expandWhereStructInst___spec__5___lambda__3(lean_object*, lean_object*, lean_object*, lean_object*, size_t, 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__5___lambda__2___closed__1; -uint8_t l_Array_contains___at___private_Lean_Meta_Match_Value_0__Lean_Meta_isUIntTypeName___spec__1(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Term_elabMutualDef___spec__5(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_EXPORT lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders___spec__6___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*); extern lean_object* l_Lean_Elab_WF_TerminationHints_none; @@ -27401,7 +27401,7 @@ if (x_6 == 0) lean_object* x_7; lean_object* x_8; uint8_t x_9; x_7 = lean_array_uget(x_3, x_4); x_8 = lean_ctor_get(x_2, 2); -x_9 = l_Array_contains___at___private_Lean_Meta_Match_Value_0__Lean_Meta_isUIntTypeName___spec__1(x_8, x_7); +x_9 = l_Array_contains___at_Lean_findField_x3f___spec__1(x_8, x_7); if (x_9 == 0) { uint8_t x_10; diff --git a/stage0/stdlib/Lean/Elab/PreDefinition/Eqns.c b/stage0/stdlib/Lean/Elab/PreDefinition/Eqns.c index 9c06111bc2..c0fc28ebc1 100644 --- a/stage0/stdlib/Lean/Elab/PreDefinition/Eqns.c +++ b/stage0/stdlib/Lean/Elab/PreDefinition/Eqns.c @@ -113,6 +113,7 @@ lean_object* l_Lean_Expr_proj___override(lean_object*, lean_object*, lean_object lean_object* l_Lean_Expr_bvar___override(lean_object*); lean_object* lean_array_fget(lean_object*, lean_object*); extern lean_object* l_Lean_ForEachExprWhere_initCache; +lean_object* l_Lean_Meta_forallTelescope___at_Lean_Meta_mapForallTelescope_x27___spec__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Loop_forIn_loop___at___private_Lean_Elab_PreDefinition_Eqns_0__Lean_Elab_Eqns_saveEqn___spec__32___at___private_Lean_Elab_PreDefinition_Eqns_0__Lean_Elab_Eqns_saveEqn___spec__33(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*); LEAN_EXPORT lean_object* l_Lean_ForEachExprWhere_visit_go___at_Lean_Elab_Eqns_simpEqnType_collect___spec__3___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -332,7 +333,6 @@ LEAN_EXPORT lean_object* l_Lean_ForEachExprWhere_visit_go___at_Lean_Elab_Eqns_si lean_object* l_Lean_Meta_simpIfTarget(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Eqns_removeUnusedEqnHypotheses_go___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_PreDefinition_Eqns_0__Lean_Elab_Eqns_saveEqn_collectDeps___spec__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_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Eqns_expandRHS_x3f(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_anyMUnsafe_any___at_Lean_Elab_Eqns_mkUnfoldProof___spec__2___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Init_Util_0__mkPanicMessageWithDecl(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -3118,7 +3118,7 @@ _start: lean_object* x_8; lean_object* x_9; x_8 = lean_alloc_closure((void*)(l___private_Lean_Elab_PreDefinition_Eqns_0__Lean_Elab_Eqns_lhsDependsOn___lambda__1___boxed), 8, 1); lean_closure_set(x_8, 0, x_2); -x_9 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_1, x_8, x_3, x_4, x_5, x_6, x_7); +x_9 = l_Lean_Meta_forallTelescope___at_Lean_Meta_mapForallTelescope_x27___spec__1___rarg(x_1, x_8, x_3, x_4, x_5, x_6, x_7); return x_9; } } diff --git a/stage0/stdlib/Lean/Elab/PreDefinition/Structural/BRecOn.c b/stage0/stdlib/Lean/Elab/PreDefinition/Structural/BRecOn.c index 4c26de9ee7..a40740eecc 100644 --- a/stage0/stdlib/Lean/Elab/PreDefinition/Structural/BRecOn.c +++ b/stage0/stdlib/Lean/Elab/PreDefinition/Structural/BRecOn.c @@ -1,6 +1,6 @@ // Lean compiler output // Module: Lean.Elab.PreDefinition.Structural.BRecOn -// Imports: Lean.Util.HasConstCache Lean.Meta.Match.Match Lean.Elab.RecAppSyntax Lean.Elab.PreDefinition.Basic Lean.Elab.PreDefinition.Structural.Basic +// Imports: Lean.Util.HasConstCache Lean.Meta.Match.MatcherApp.Transform Lean.Elab.RecAppSyntax Lean.Elab.PreDefinition.Basic Lean.Elab.PreDefinition.Structural.Basic #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -2800,7 +2800,7 @@ static lean_object* _init_l_List_forIn_loop___at___private_Lean_Elab_PreDefiniti _start: { lean_object* x_1; -x_1 = lean_mk_string_from_bytes("Lean.Meta.Match.MatcherInfo", 27); +x_1 = lean_mk_string_from_bytes("Lean.Meta.Match.MatcherApp.Basic", 32); return x_1; } } @@ -2826,7 +2826,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_List_forIn_loop___at___private_Lean_Elab_PreDefinition_Structural_BRecOn_0__Lean_Elab_Structural_replaceRecApps_loop___spec__14___closed__1; x_2 = l_List_forIn_loop___at___private_Lean_Elab_PreDefinition_Structural_BRecOn_0__Lean_Elab_Structural_replaceRecApps_loop___spec__14___closed__2; -x_3 = lean_unsigned_to_nat(183u); +x_3 = lean_unsigned_to_nat(63u); x_4 = lean_unsigned_to_nat(53u); x_5 = l_List_forIn_loop___at___private_Lean_Elab_PreDefinition_Structural_BRecOn_0__Lean_Elab_Structural_replaceRecApps_loop___spec__14___closed__3; x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); @@ -14378,7 +14378,7 @@ return x_18; } } lean_object* initialize_Lean_Util_HasConstCache(uint8_t builtin, lean_object*); -lean_object* initialize_Lean_Meta_Match_Match(uint8_t builtin, lean_object*); +lean_object* initialize_Lean_Meta_Match_MatcherApp_Transform(uint8_t builtin, lean_object*); lean_object* initialize_Lean_Elab_RecAppSyntax(uint8_t builtin, lean_object*); lean_object* initialize_Lean_Elab_PreDefinition_Basic(uint8_t builtin, lean_object*); lean_object* initialize_Lean_Elab_PreDefinition_Structural_Basic(uint8_t builtin, lean_object*); @@ -14390,7 +14390,7 @@ _G_initialized = true; res = initialize_Lean_Util_HasConstCache(builtin, lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Lean_Meta_Match_Match(builtin, lean_io_mk_world()); +res = initialize_Lean_Meta_Match_MatcherApp_Transform(builtin, lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); res = initialize_Lean_Elab_RecAppSyntax(builtin, lean_io_mk_world()); diff --git a/stage0/stdlib/Lean/Elab/PreDefinition/Structural/IndPred.c b/stage0/stdlib/Lean/Elab/PreDefinition/Structural/IndPred.c index 9c51018b52..077227a954 100644 --- a/stage0/stdlib/Lean/Elab/PreDefinition/Structural/IndPred.c +++ b/stage0/stdlib/Lean/Elab/PreDefinition/Structural/IndPred.c @@ -447,7 +447,7 @@ static lean_object* _init_l_List_forIn_loop___at___private_Lean_Elab_PreDefiniti _start: { lean_object* x_1; -x_1 = lean_mk_string_from_bytes("Lean.Meta.Match.MatcherInfo", 27); +x_1 = lean_mk_string_from_bytes("Lean.Meta.Match.MatcherApp.Basic", 32); return x_1; } } @@ -473,7 +473,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_List_forIn_loop___at___private_Lean_Elab_PreDefinition_Structural_IndPred_0__Lean_Elab_Structural_replaceIndPredRecApps_loop_addBelow___spec__6___closed__1; x_2 = l_List_forIn_loop___at___private_Lean_Elab_PreDefinition_Structural_IndPred_0__Lean_Elab_Structural_replaceIndPredRecApps_loop_addBelow___spec__6___closed__2; -x_3 = lean_unsigned_to_nat(183u); +x_3 = lean_unsigned_to_nat(63u); x_4 = lean_unsigned_to_nat(53u); x_5 = l_List_forIn_loop___at___private_Lean_Elab_PreDefinition_Structural_IndPred_0__Lean_Elab_Structural_replaceIndPredRecApps_loop_addBelow___spec__6___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/Elab/PreDefinition/Structural/SmartUnfolding.c b/stage0/stdlib/Lean/Elab/PreDefinition/Structural/SmartUnfolding.c index 70097ecbd0..1e2ddb6155 100644 --- a/stage0/stdlib/Lean/Elab/PreDefinition/Structural/SmartUnfolding.c +++ b/stage0/stdlib/Lean/Elab/PreDefinition/Structural/SmartUnfolding.c @@ -1,6 +1,6 @@ // Lean compiler output // Module: Lean.Elab.PreDefinition.Structural.SmartUnfolding -// Imports: Lean.Elab.PreDefinition.Basic Lean.Elab.PreDefinition.Structural.Basic +// Imports: Lean.Elab.PreDefinition.Basic Lean.Elab.PreDefinition.Structural.Basic Lean.Meta.Match.MatcherApp.Basic #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -35,6 +35,7 @@ LEAN_EXPORT lean_object* l_Lean_Elab_Structural_addSmartUnfoldingDefAux_visit___ static lean_object* l_Lean_Elab_Structural_addSmartUnfoldingDefAux___closed__1; lean_object* l_Lean_Expr_proj___override(lean_object*, lean_object*, lean_object*); lean_object* lean_array_fget(lean_object*, lean_object*); +lean_object* l_Lean_Meta_forallTelescope___at_Lean_Meta_mapForallTelescope_x27___spec__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_Match_MatcherInfo_arity(lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_matchMatcherApp_x3f___at_Lean_Elab_Structural_addSmartUnfoldingDefAux_visit___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* l_Lean_Meta_getMatcherInfo_x3f___at_Lean_Meta_reduceMatcher_x3f___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -75,7 +76,6 @@ lean_object* l_Lean_Name_str___override(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_matchMatcherApp_x3f___at_Lean_Elab_Structural_addSmartUnfoldingDefAux_visit___spec__1___lambda__2(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_matchMatcherApp_x3f___at_Lean_Elab_Structural_addSmartUnfoldingDefAux_visit___spec__1___lambda__2___closed__1; LEAN_EXPORT lean_object* l_Lean_Meta_matchMatcherApp_x3f___at_Lean_Elab_Structural_addSmartUnfoldingDefAux_visit___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Init_Util_0__mkPanicMessageWithDecl(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_matchMatcherApp_x3f___at_Lean_Elab_Structural_addSmartUnfoldingDefAux_visit___spec__1___lambda__3(uint8_t, 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_Meta_instMonadMetaM; @@ -159,7 +159,7 @@ static lean_object* _init_l_List_forIn_loop___at_Lean_Elab_Structural_addSmartUn _start: { lean_object* x_1; -x_1 = lean_mk_string_from_bytes("Lean.Meta.Match.MatcherInfo", 27); +x_1 = lean_mk_string_from_bytes("Lean.Meta.Match.MatcherApp.Basic", 32); return x_1; } } @@ -185,7 +185,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_List_forIn_loop___at_Lean_Elab_Structural_addSmartUnfoldingDefAux_visit___spec__3___closed__1; x_2 = l_List_forIn_loop___at_Lean_Elab_Structural_addSmartUnfoldingDefAux_visit___spec__3___closed__2; -x_3 = lean_unsigned_to_nat(183u); +x_3 = lean_unsigned_to_nat(63u); x_4 = lean_unsigned_to_nat(53u); x_5 = l_List_forIn_loop___at_Lean_Elab_Structural_addSmartUnfoldingDefAux_visit___spec__3___closed__3; x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); @@ -2948,7 +2948,7 @@ lean_object* x_82; lean_object* x_83; x_82 = lean_alloc_closure((void*)(l_Lean_Elab_Structural_addSmartUnfoldingDefAux_visit___lambda__2), 9, 2); lean_closure_set(x_82, 0, x_1); lean_closure_set(x_82, 1, x_2); -x_83 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_3, x_82, x_4, x_5, x_6, x_7, x_8); +x_83 = l_Lean_Meta_forallTelescope___at_Lean_Meta_mapForallTelescope_x27___spec__1___rarg(x_3, x_82, x_4, x_5, x_6, x_7, x_8); return x_83; } case 8: @@ -3650,6 +3650,7 @@ return x_27; } lean_object* initialize_Lean_Elab_PreDefinition_Basic(uint8_t builtin, lean_object*); lean_object* initialize_Lean_Elab_PreDefinition_Structural_Basic(uint8_t builtin, lean_object*); +lean_object* initialize_Lean_Meta_Match_MatcherApp_Basic(uint8_t builtin, lean_object*); static bool _G_initialized = false; LEAN_EXPORT lean_object* initialize_Lean_Elab_PreDefinition_Structural_SmartUnfolding(uint8_t builtin, lean_object* w) { lean_object * res; @@ -3661,6 +3662,9 @@ lean_dec_ref(res); res = initialize_Lean_Elab_PreDefinition_Structural_Basic(builtin, lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +res = initialize_Lean_Meta_Match_MatcherApp_Basic(builtin, lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); l_panic___at_Lean_Elab_Structural_addSmartUnfoldingDefAux_visit___spec__2___closed__1 = _init_l_panic___at_Lean_Elab_Structural_addSmartUnfoldingDefAux_visit___spec__2___closed__1(); lean_mark_persistent(l_panic___at_Lean_Elab_Structural_addSmartUnfoldingDefAux_visit___spec__2___closed__1); l_List_forIn_loop___at_Lean_Elab_Structural_addSmartUnfoldingDefAux_visit___spec__3___closed__1 = _init_l_List_forIn_loop___at_Lean_Elab_Structural_addSmartUnfoldingDefAux_visit___spec__3___closed__1(); diff --git a/stage0/stdlib/Lean/Elab/PreDefinition/WF/Eqns.c b/stage0/stdlib/Lean/Elab/PreDefinition/WF/Eqns.c index 462f470f6b..c17bedcd2f 100644 --- a/stage0/stdlib/Lean/Elab/PreDefinition/WF/Eqns.c +++ b/stage0/stdlib/Lean/Elab/PreDefinition/WF/Eqns.c @@ -1097,7 +1097,7 @@ static lean_object* _init_l_List_forIn_loop___at_Lean_Elab_WF_simpMatchWF_x3f_pr _start: { lean_object* x_1; -x_1 = lean_mk_string_from_bytes("Lean.Meta.Match.MatcherInfo", 27); +x_1 = lean_mk_string_from_bytes("Lean.Meta.Match.MatcherApp.Basic", 32); return x_1; } } @@ -1115,7 +1115,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_List_forIn_loop___at_Lean_Elab_WF_simpMatchWF_x3f_pre___spec__3___closed__1; x_2 = l_List_forIn_loop___at_Lean_Elab_WF_simpMatchWF_x3f_pre___spec__3___closed__2; -x_3 = lean_unsigned_to_nat(183u); +x_3 = lean_unsigned_to_nat(63u); x_4 = lean_unsigned_to_nat(53u); x_5 = l___private_Lean_Elab_PreDefinition_WF_Eqns_0__Lean_Elab_WF_rwFixEq___lambda__1___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/Elab/PreDefinition/WF/Fix.c b/stage0/stdlib/Lean/Elab/PreDefinition/WF/Fix.c index 9bb36b70f2..4545039c0b 100644 --- a/stage0/stdlib/Lean/Elab/PreDefinition/WF/Fix.c +++ b/stage0/stdlib/Lean/Elab/PreDefinition/WF/Fix.c @@ -1558,7 +1558,7 @@ static lean_object* _init_l_List_forIn_loop___at___private_Lean_Elab_PreDefiniti _start: { lean_object* x_1; -x_1 = lean_mk_string_from_bytes("Lean.Meta.Match.MatcherInfo", 27); +x_1 = lean_mk_string_from_bytes("Lean.Meta.Match.MatcherApp.Basic", 32); return x_1; } } @@ -1584,7 +1584,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_List_forIn_loop___at___private_Lean_Elab_PreDefinition_WF_Fix_0__Lean_Elab_WF_replaceRecApps_loop___spec__14___closed__1; x_2 = l_List_forIn_loop___at___private_Lean_Elab_PreDefinition_WF_Fix_0__Lean_Elab_WF_replaceRecApps_loop___spec__14___closed__2; -x_3 = lean_unsigned_to_nat(183u); +x_3 = lean_unsigned_to_nat(63u); x_4 = lean_unsigned_to_nat(53u); x_5 = l_List_forIn_loop___at___private_Lean_Elab_PreDefinition_WF_Fix_0__Lean_Elab_WF_replaceRecApps_loop___spec__14___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/Elab/PreDefinition/WF/GuessLex.c b/stage0/stdlib/Lean/Elab/PreDefinition/WF/GuessLex.c index 083d045dea..7491558911 100644 --- a/stage0/stdlib/Lean/Elab/PreDefinition/WF/GuessLex.c +++ b/stage0/stdlib/Lean/Elab/PreDefinition/WF/GuessLex.c @@ -1,6 +1,6 @@ // Lean compiler output // Module: Lean.Elab.PreDefinition.WF.GuessLex -// Imports: Lean.Util.HasConstCache Lean.Meta.Match.Match Lean.Meta.Tactic.Cleanup Lean.Meta.Tactic.Refl Lean.Elab.Quotation Lean.Elab.RecAppSyntax Lean.Elab.PreDefinition.Basic Lean.Elab.PreDefinition.Structural.Basic Lean.Elab.PreDefinition.WF.TerminationHint Lean.Elab.PreDefinition.WF.PackMutual Lean.Data.Array +// Imports: Lean.Util.HasConstCache Lean.Meta.Match.MatcherApp.Transform Lean.Meta.Tactic.Cleanup Lean.Meta.Tactic.Refl Lean.Elab.Quotation Lean.Elab.RecAppSyntax Lean.Elab.PreDefinition.Basic Lean.Elab.PreDefinition.Structural.Basic Lean.Elab.PreDefinition.WF.TerminationHint Lean.Elab.PreDefinition.WF.PackMutual Lean.Data.Array #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -129,6 +129,7 @@ LEAN_EXPORT lean_object* l_Lean_Elab_WF_GuessLex_collectRecCalls___lambda__4(lea static lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_WF_GuessLex_explainMutualFailure___spec__5___closed__8; static lean_object* l_List_forIn_loop___at_Lean_Elab_WF_GuessLex_withRecApps_loop___spec__14___rarg___closed__2; static lean_object* l_Lean_Elab_WF_GuessLex_withRecApps___rarg___closed__4; +uint8_t l_Array_contains___at_Lean_findField_x3f___spec__1(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_Range_forIn_x27_loop___at_Lean_Elab_WF_GuessLex_filterSubsumed___spec__6___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_Std_Range_forIn_x27_loop___at_Lean_Elab_WF_GuessLex_naryVarNames___spec__1___closed__1; LEAN_EXPORT lean_object* l_Std_Range_forIn_x27_loop___at_Lean_Elab_WF_GuessLex_solve_go___spec__2___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*, lean_object*, lean_object*); @@ -193,7 +194,6 @@ static lean_object* l_Lean_Elab_WF_GuessLex_evalRecCall___closed__2; LEAN_EXPORT lean_object* l_List_forIn_loop___at_Lean_Elab_WF_GuessLex_evalRecCall___spec__3___lambda__6(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_WF_GuessLex_generateCombinations_x3f_goUniform___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at_Lean_Elab_WF_GuessLex_withRecApps_loop___spec__31___rarg___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -uint8_t l_Array_contains___at___private_Lean_Meta_Match_Value_0__Lean_Meta_isUIntTypeName___spec__1(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_WF_guessLex___spec__11___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_getConstInfo___at_Lean_Elab_WF_GuessLex_withRecApps_loop___spec__3___rarg___closed__3; static lean_object* l_List_forIn_loop___at_Lean_Elab_WF_GuessLex_evalRecCall___spec__3___lambda__8___closed__1; @@ -1151,7 +1151,7 @@ if (x_9 == 0) lean_object* x_10; lean_object* x_11; uint8_t x_12; x_10 = lean_ctor_get(x_8, 0); x_11 = lean_ctor_get(x_8, 1); -x_12 = l_Array_contains___at___private_Lean_Meta_Match_Value_0__Lean_Meta_isUIntTypeName___spec__1(x_1, x_2); +x_12 = l_Array_contains___at_Lean_findField_x3f___spec__1(x_1, x_2); if (x_12 == 0) { uint8_t x_13; @@ -1194,7 +1194,7 @@ x_21 = lean_ctor_get(x_8, 1); lean_inc(x_21); lean_inc(x_20); lean_dec(x_8); -x_22 = l_Array_contains___at___private_Lean_Meta_Match_Value_0__Lean_Meta_isUIntTypeName___spec__1(x_1, x_2); +x_22 = l_Array_contains___at_Lean_findField_x3f___spec__1(x_1, x_2); if (x_22 == 0) { uint8_t x_23; @@ -2465,7 +2465,7 @@ static lean_object* _init_l_List_forIn_loop___at_Lean_Elab_WF_GuessLex_withRecAp _start: { lean_object* x_1; -x_1 = lean_mk_string_from_bytes("Lean.Meta.Match.MatcherInfo", 27); +x_1 = lean_mk_string_from_bytes("Lean.Meta.Match.MatcherApp.Basic", 32); return x_1; } } @@ -2491,7 +2491,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_List_forIn_loop___at_Lean_Elab_WF_GuessLex_withRecApps_loop___spec__14___rarg___closed__1; x_2 = l_List_forIn_loop___at_Lean_Elab_WF_GuessLex_withRecApps_loop___spec__14___rarg___closed__2; -x_3 = lean_unsigned_to_nat(183u); +x_3 = lean_unsigned_to_nat(63u); x_4 = lean_unsigned_to_nat(53u); x_5 = l_List_forIn_loop___at_Lean_Elab_WF_GuessLex_withRecApps_loop___spec__14___rarg___closed__3; x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); @@ -27144,7 +27144,7 @@ return x_18; } } lean_object* initialize_Lean_Util_HasConstCache(uint8_t builtin, lean_object*); -lean_object* initialize_Lean_Meta_Match_Match(uint8_t builtin, lean_object*); +lean_object* initialize_Lean_Meta_Match_MatcherApp_Transform(uint8_t builtin, lean_object*); lean_object* initialize_Lean_Meta_Tactic_Cleanup(uint8_t builtin, lean_object*); lean_object* initialize_Lean_Meta_Tactic_Refl(uint8_t builtin, lean_object*); lean_object* initialize_Lean_Elab_Quotation(uint8_t builtin, lean_object*); @@ -27162,7 +27162,7 @@ _G_initialized = true; res = initialize_Lean_Util_HasConstCache(builtin, lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Lean_Meta_Match_Match(builtin, lean_io_mk_world()); +res = initialize_Lean_Meta_Match_MatcherApp_Transform(builtin, lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); res = initialize_Lean_Meta_Tactic_Cleanup(builtin, lean_io_mk_world()); diff --git a/stage0/stdlib/Lean/Elab/PreDefinition/WF/Rel.c b/stage0/stdlib/Lean/Elab/PreDefinition/WF/Rel.c index efcdf9c3b8..3e7a0de0dc 100644 --- a/stage0/stdlib/Lean/Elab/PreDefinition/WF/Rel.c +++ b/stage0/stdlib/Lean/Elab/PreDefinition/WF/Rel.c @@ -13,10 +13,12 @@ #ifdef __cplusplus extern "C" { #endif -LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_WF_elabWFRel___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*); +LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_WF_elabWFRel___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*, lean_object*, lean_object*); lean_object* l_Lean_Expr_const___override(lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_PreDefinition_WF_Rel_0__Lean_Elab_WF_unpackUnary_go___lambda__1___closed__1; lean_object* l___private_Init_Util_0__outOfBounds___rarg(lean_object*); +static lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_WF_elabWFRel___spec__5___closed__2; +static lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_WF_elabWFRel___spec__5___closed__3; lean_object* lean_mk_empty_array_with_capacity(lean_object*); static lean_object* l___private_Lean_Elab_PreDefinition_WF_Rel_0__Lean_Elab_WF_unpackUnary_go___closed__7; static lean_object* l___private_Lean_Elab_PreDefinition_WF_Rel_0__Lean_Elab_WF_unpackUnary_go___lambda__1___closed__3; @@ -89,7 +91,7 @@ LEAN_EXPORT lean_object* l_Lean_throwError___at_Lean_Elab_WF_elabWFRel___spec__6 LEAN_EXPORT lean_object* l_Lean_throwError___at_Lean_Elab_WF_elabWFRel___spec__3___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Init_Util_0__mkPanicMessageWithDecl(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_lambdaTelescope___at___private_Lean_Elab_PreDefinition_WF_Rel_0__Lean_Elab_WF_unpackUnary___spec__3___rarg(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_WF_elabWFRel___spec__5(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_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_WF_elabWFRel___spec__5(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* l_Lean_LocalDecl_fvarId(lean_object*); lean_object* l___private_Lean_Elab_SyntheticMVars_0__Lean_Elab_Term_withSynthesizeImp___rarg(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_throwError___at_Lean_Elab_WF_elabWFRel___spec__2___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -99,15 +101,17 @@ LEAN_EXPORT lean_object* l_Lean_PersistentArray_forInAux___at___private_Lean_Ela lean_object* l_Lean_MVarId_assign___at_Lean_Elab_Term_exprToSyntax___spec__1(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___private_Lean_Elab_PreDefinition_WF_Rel_0__Lean_Elab_WF_unpackUnary___spec__2___closed__1; static lean_object* l___private_Lean_Elab_PreDefinition_WF_Rel_0__Lean_Elab_WF_unpackUnary_go___closed__3; +static lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_WF_elabWFRel___spec__5___closed__6; lean_object* l_Lean_LocalDecl_userName(lean_object*); static lean_object* l___private_Lean_Elab_PreDefinition_WF_Rel_0__Lean_Elab_WF_unpackMutual_go___closed__2; static lean_object* l_Lean_Elab_WF_elabWFRel___rarg___closed__1; LEAN_EXPORT lean_object* l_Lean_Elab_WF_elabWFRel___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*); -LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_WF_elabWFRel___spec__5___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_forInUnsafe_loop___at_Lean_Elab_WF_elabWFRel___spec__5___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_Lean_Expr_app___override(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_throwError___at_Lean_Elab_WF_elabWFRel___spec__3___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_isTracingEnabledFor___at_Lean_Elab_Term_traceAtCmdPos___spec__1(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*); +static lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_WF_elabWFRel___spec__5___closed__1; static lean_object* l_Lean_Elab_WF_elabWFRel___rarg___lambda__1___closed__2; uint8_t lean_nat_dec_lt(lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_PreDefinition_WF_Rel_0__Lean_Elab_WF_unpackUnary___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -131,6 +135,7 @@ lean_object* l_Lean_Meta_Cases_cases(lean_object*, lean_object*, lean_object*, l lean_object* l_Lean_MVarId_apply(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_PreDefinition_WF_Rel_0__Lean_Elab_WF_unpackUnary_go___closed__11; lean_object* l_Array_back___rarg(lean_object*, lean_object*); +static lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_WF_elabWFRel___spec__5___closed__5; LEAN_EXPORT lean_object* l___private_Lean_Elab_PreDefinition_WF_Rel_0__Lean_Elab_WF_unpackMutual_go(lean_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_forInAux___at___private_Lean_Elab_PreDefinition_WF_Rel_0__Lean_Elab_WF_unpackUnary___spec__5___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_Meta_lambdaTelescope___at___private_Lean_Elab_PreDefinition_WF_Rel_0__Lean_Elab_WF_unpackUnary___spec__3(lean_object*); @@ -143,10 +148,12 @@ lean_object* lean_st_ref_set(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_WF_elabWFRel___rarg___closed__2; lean_object* l_Lean_Meta_mkFreshTypeMVar(uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_WF_elabWFRel___rarg___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_string_append(lean_object*, lean_object*); lean_object* l_Lean_Meta_mkFreshExprSyntheticOpaqueMVar(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_WF_elabWFRel___rarg___lambda__1___closed__1; lean_object* l_Lean_MVarId_rename(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_array_get_size(lean_object*); +static lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_WF_elabWFRel___spec__5___closed__4; lean_object* lean_infer_type(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_MVarId_assign___at_Lean_Elab_WF_elabWFRel___spec__4(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___private_Lean_Elab_PreDefinition_WF_Rel_0__Lean_Elab_WF_unpackUnary___spec__3___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -3209,93 +3216,95 @@ return x_62; } } } -LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_WF_elabWFRel___spec__5___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_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_WF_elabWFRel___spec__5___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_10; +lean_object* x_11; lean_inc(x_1); -x_10 = l_Lean_MVarId_getType(x_1, x_5, x_6, x_7, x_8, x_9); -if (lean_obj_tag(x_10) == 0) +x_11 = l_Lean_MVarId_getType(x_1, x_6, x_7, x_8, x_9, x_10); +if (lean_obj_tag(x_11) == 0) { -lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; uint8_t x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; uint8_t x_20; lean_object* x_21; -x_11 = lean_ctor_get(x_10, 0); -lean_inc(x_11); -x_12 = lean_ctor_get(x_10, 1); +lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; uint8_t x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; uint8_t x_21; lean_object* x_22; +x_12 = lean_ctor_get(x_11, 0); lean_inc(x_12); -lean_dec(x_10); -x_13 = lean_ctor_get(x_2, 2); +x_13 = lean_ctor_get(x_11, 1); lean_inc(x_13); +lean_dec(x_11); +x_14 = lean_ctor_get(x_2, 2); +lean_inc(x_14); lean_dec(x_2); -x_14 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_14, 0, x_11); -x_15 = lean_box(0); -x_16 = 1; -x_17 = lean_box(x_16); -x_18 = lean_box(x_16); -x_19 = lean_alloc_closure((void*)(l_Lean_Elab_Term_elabTermEnsuringType___boxed), 12, 5); -lean_closure_set(x_19, 0, x_13); -lean_closure_set(x_19, 1, x_14); -lean_closure_set(x_19, 2, x_17); -lean_closure_set(x_19, 3, x_18); -lean_closure_set(x_19, 4, x_15); -x_20 = 0; +x_15 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_15, 0, x_12); +x_16 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_16, 0, x_3); +x_17 = 1; +x_18 = lean_box(x_17); +x_19 = lean_box(x_17); +x_20 = lean_alloc_closure((void*)(l_Lean_Elab_Term_elabTermEnsuringType___boxed), 12, 5); +lean_closure_set(x_20, 0, x_14); +lean_closure_set(x_20, 1, x_15); +lean_closure_set(x_20, 2, x_18); +lean_closure_set(x_20, 3, x_19); +lean_closure_set(x_20, 4, x_16); +x_21 = 0; +lean_inc(x_9); lean_inc(x_8); lean_inc(x_7); lean_inc(x_6); lean_inc(x_5); lean_inc(x_4); -lean_inc(x_3); -x_21 = l___private_Lean_Elab_SyntheticMVars_0__Lean_Elab_Term_withSynthesizeImp___rarg(x_19, x_20, x_16, x_3, x_4, x_5, x_6, x_7, x_8, x_12); -if (lean_obj_tag(x_21) == 0) +x_22 = l___private_Lean_Elab_SyntheticMVars_0__Lean_Elab_Term_withSynthesizeImp___rarg(x_20, x_21, x_17, x_4, x_5, x_6, x_7, x_8, x_9, x_13); +if (lean_obj_tag(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_object* x_23; lean_object* x_24; lean_object* x_25; +x_23 = lean_ctor_get(x_22, 0); lean_inc(x_23); -lean_dec(x_21); -x_24 = l_Lean_MVarId_assign___at_Lean_Elab_WF_elabWFRel___spec__4(x_1, x_22, x_3, x_4, x_5, x_6, x_7, x_8, x_23); +x_24 = lean_ctor_get(x_22, 1); +lean_inc(x_24); +lean_dec(x_22); +x_25 = l_Lean_MVarId_assign___at_Lean_Elab_WF_elabWFRel___spec__4(x_1, x_23, x_4, x_5, x_6, x_7, x_8, x_9, x_24); +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); -return x_24; +return x_25; } else { -uint8_t x_25; +uint8_t x_26; +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); lean_dec(x_1); -x_25 = !lean_is_exclusive(x_21); -if (x_25 == 0) +x_26 = !lean_is_exclusive(x_22); +if (x_26 == 0) { -return x_21; +return x_22; } else { -lean_object* x_26; lean_object* x_27; lean_object* x_28; -x_26 = lean_ctor_get(x_21, 0); -x_27 = lean_ctor_get(x_21, 1); +lean_object* x_27; lean_object* x_28; lean_object* x_29; +x_27 = lean_ctor_get(x_22, 0); +x_28 = lean_ctor_get(x_22, 1); +lean_inc(x_28); lean_inc(x_27); -lean_inc(x_26); -lean_dec(x_21); -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; +lean_dec(x_22); +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; } } } else { -uint8_t x_29; +uint8_t x_30; +lean_dec(x_9); lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); @@ -3304,795 +3313,1133 @@ lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_29 = !lean_is_exclusive(x_10); -if (x_29 == 0) +x_30 = !lean_is_exclusive(x_11); +if (x_30 == 0) { -return x_10; +return x_11; } else { -lean_object* x_30; lean_object* x_31; lean_object* x_32; -x_30 = lean_ctor_get(x_10, 0); -x_31 = lean_ctor_get(x_10, 1); +lean_object* x_31; lean_object* x_32; lean_object* x_33; +x_31 = lean_ctor_get(x_11, 0); +x_32 = lean_ctor_get(x_11, 1); +lean_inc(x_32); lean_inc(x_31); -lean_inc(x_30); -lean_dec(x_10); -x_32 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_32, 0, x_30); -lean_ctor_set(x_32, 1, x_31); -return x_32; +lean_dec(x_11); +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_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_WF_elabWFRel___spec__5(lean_object* x_1, lean_object* x_2, size_t x_3, size_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) { +static lean_object* _init_l_Array_forInUnsafe_loop___at_Lean_Elab_WF_elabWFRel___spec__5___closed__1() { _start: { -uint8_t x_13; -x_13 = lean_usize_dec_lt(x_4, x_3); -if (x_13 == 0) +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("The termination argument depends on the function's varying parameters. Try using ", 81); +return x_1; +} +} +static lean_object* _init_l_Array_forInUnsafe_loop___at_Lean_Elab_WF_elabWFRel___spec__5___closed__2() { +_start: { -lean_object* x_14; +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("`sizeOf` explicitly:\nThe termination argument", 45); +return x_1; +} +} +static lean_object* _init_l_Array_forInUnsafe_loop___at_Lean_Elab_WF_elabWFRel___spec__5___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Array_forInUnsafe_loop___at_Lean_Elab_WF_elabWFRel___spec__5___closed__1; +x_2 = l_Array_forInUnsafe_loop___at_Lean_Elab_WF_elabWFRel___spec__5___closed__2; +x_3 = lean_string_append(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Array_forInUnsafe_loop___at_Lean_Elab_WF_elabWFRel___spec__5___closed__4() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("The termination argument types differ for the different functions, or depend on the ", 84); +return x_1; +} +} +static lean_object* _init_l_Array_forInUnsafe_loop___at_Lean_Elab_WF_elabWFRel___spec__5___closed__5() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("function's varying parameters. Try using `sizeOf` explicitly:\nThe termination argument", 86); +return x_1; +} +} +static lean_object* _init_l_Array_forInUnsafe_loop___at_Lean_Elab_WF_elabWFRel___spec__5___closed__6() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Array_forInUnsafe_loop___at_Lean_Elab_WF_elabWFRel___spec__5___closed__4; +x_2 = l_Array_forInUnsafe_loop___at_Lean_Elab_WF_elabWFRel___spec__5___closed__5; +x_3 = lean_string_append(x_1, x_2); +return x_3; +} +} +LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_WF_elabWFRel___spec__5(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, 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; +x_15 = lean_usize_dec_lt(x_6, x_5); +if (x_15 == 0) +{ +lean_object* x_16; +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_1); -x_14 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_14, 0, x_5); -lean_ctor_set(x_14, 1, x_12); -return x_14; +lean_dec(x_2); +x_16 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_16, 0, x_7); +lean_ctor_set(x_16, 1, x_14); +return x_16; } else { -lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; uint8_t x_19; -x_15 = lean_array_uget(x_2, x_4); -x_16 = lean_ctor_get(x_5, 1); -lean_inc(x_16); -x_17 = lean_ctor_get(x_15, 0); -lean_inc(x_17); -x_18 = lean_ctor_get(x_15, 1); -lean_inc(x_18); -lean_dec(x_15); -x_19 = !lean_is_exclusive(x_5); -if (x_19 == 0) -{ -lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; uint8_t x_25; -x_20 = lean_ctor_get(x_5, 0); -x_21 = lean_ctor_get(x_5, 1); -lean_dec(x_21); -x_22 = lean_ctor_get(x_16, 0); -lean_inc(x_22); -x_23 = lean_ctor_get(x_16, 1); -lean_inc(x_23); -x_24 = lean_ctor_get(x_16, 2); -lean_inc(x_24); -x_25 = lean_nat_dec_lt(x_23, x_24); -if (x_25 == 0) -{ -lean_object* x_26; -lean_dec(x_24); -lean_dec(x_23); -lean_dec(x_22); -lean_dec(x_18); +lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_27; lean_object* x_28; lean_object* x_29; uint8_t x_30; +x_17 = lean_array_uget(x_4, x_6); +x_27 = lean_ctor_get(x_7, 1); +lean_inc(x_27); +x_28 = lean_ctor_get(x_17, 0); +lean_inc(x_28); +x_29 = lean_ctor_get(x_17, 1); +lean_inc(x_29); lean_dec(x_17); -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_1); -x_26 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_26, 0, x_5); -lean_ctor_set(x_26, 1, x_12); -return x_26; -} -else +x_30 = !lean_is_exclusive(x_7); +if (x_30 == 0) { -uint8_t x_27; -x_27 = !lean_is_exclusive(x_16); -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_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; uint8_t x_37; -x_28 = lean_ctor_get(x_16, 2); -lean_dec(x_28); -x_29 = lean_ctor_get(x_16, 1); -lean_dec(x_29); -x_30 = lean_ctor_get(x_16, 0); -lean_dec(x_30); -x_31 = lean_array_fget(x_22, x_23); -x_32 = lean_unsigned_to_nat(1u); -x_33 = lean_nat_add(x_23, x_32); -lean_dec(x_23); -lean_ctor_set(x_16, 1, x_33); -x_34 = lean_ctor_get(x_20, 0); +lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; uint8_t x_36; +x_31 = lean_ctor_get(x_7, 0); +x_32 = lean_ctor_get(x_7, 1); +lean_dec(x_32); +x_33 = lean_ctor_get(x_27, 0); +lean_inc(x_33); +x_34 = lean_ctor_get(x_27, 1); lean_inc(x_34); -x_35 = lean_ctor_get(x_20, 1); +x_35 = lean_ctor_get(x_27, 2); lean_inc(x_35); -x_36 = lean_ctor_get(x_20, 2); -lean_inc(x_36); -x_37 = lean_nat_dec_lt(x_35, x_36); -if (x_37 == 0) +x_36 = lean_nat_dec_lt(x_34, x_35); +if (x_36 == 0) { -lean_object* x_38; -lean_dec(x_36); +lean_object* x_37; lean_dec(x_35); lean_dec(x_34); -lean_dec(x_31); -lean_dec(x_18); -lean_dec(x_17); -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_1); -x_38 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_38, 0, x_5); -lean_ctor_set(x_38, 1, x_12); -return x_38; +lean_dec(x_33); +lean_dec(x_29); +lean_dec(x_28); +x_37 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_37, 0, x_7); +x_18 = x_37; +x_19 = x_14; +goto block_26; } else { -uint8_t x_39; -x_39 = !lean_is_exclusive(x_20); -if (x_39 == 0) +uint8_t x_38; +x_38 = !lean_is_exclusive(x_27); +if (x_38 == 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; -x_40 = lean_ctor_get(x_20, 2); +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; +x_39 = lean_ctor_get(x_27, 2); +lean_dec(x_39); +x_40 = lean_ctor_get(x_27, 1); lean_dec(x_40); -x_41 = lean_ctor_get(x_20, 1); +x_41 = lean_ctor_get(x_27, 0); lean_dec(x_41); -x_42 = lean_ctor_get(x_20, 0); -lean_dec(x_42); -x_43 = lean_array_fget(x_34, x_35); -x_44 = lean_nat_add(x_35, x_32); -lean_dec(x_35); -lean_ctor_set(x_20, 1, x_44); -lean_inc(x_11); -lean_inc(x_10); -lean_inc(x_9); -lean_inc(x_8); -lean_inc(x_7); -lean_inc(x_6); -lean_inc(x_43); -lean_inc(x_1); -x_45 = l___private_Lean_Elab_PreDefinition_WF_Rel_0__Lean_Elab_WF_unpackUnary(x_31, x_1, x_18, x_17, x_43, x_6, x_7, x_8, x_9, x_10, x_11, x_12); -if (lean_obj_tag(x_45) == 0) -{ -lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; -x_46 = lean_ctor_get(x_45, 0); +x_42 = lean_array_fget(x_33, x_34); +x_43 = lean_unsigned_to_nat(1u); +x_44 = lean_nat_add(x_34, x_43); +lean_dec(x_34); +lean_ctor_set(x_27, 1, x_44); +x_45 = lean_ctor_get(x_31, 0); +lean_inc(x_45); +x_46 = lean_ctor_get(x_31, 1); lean_inc(x_46); -x_47 = lean_ctor_get(x_45, 1); +x_47 = lean_ctor_get(x_31, 2); lean_inc(x_47); +x_48 = lean_nat_dec_lt(x_46, x_47); +if (x_48 == 0) +{ +lean_object* x_49; +lean_dec(x_47); +lean_dec(x_46); lean_dec(x_45); -lean_inc(x_46); -x_48 = lean_alloc_closure((void*)(l_Array_forInUnsafe_loop___at_Lean_Elab_WF_elabWFRel___spec__5___lambda__1), 9, 2); -lean_closure_set(x_48, 0, x_46); -lean_closure_set(x_48, 1, x_43); +lean_dec(x_42); +lean_dec(x_29); +lean_dec(x_28); +x_49 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_49, 0, x_7); +x_18 = x_49; +x_19 = x_14; +goto block_26; +} +else +{ +uint8_t x_50; +x_50 = !lean_is_exclusive(x_31); +if (x_50 == 0) +{ +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_51 = lean_ctor_get(x_31, 2); +lean_dec(x_51); +x_52 = lean_ctor_get(x_31, 1); +lean_dec(x_52); +x_53 = lean_ctor_get(x_31, 0); +lean_dec(x_53); +x_54 = lean_array_fget(x_45, x_46); +x_55 = lean_nat_add(x_46, x_43); +lean_dec(x_46); +lean_ctor_set(x_31, 1, x_55); +lean_inc(x_13); +lean_inc(x_12); lean_inc(x_11); lean_inc(x_10); lean_inc(x_9); lean_inc(x_8); -lean_inc(x_7); -lean_inc(x_6); -x_49 = l_Lean_MVarId_withContext___at_Lean_Elab_Term_logUnassignedUsingErrorInfos___spec__4___rarg(x_46, x_48, x_6, x_7, x_8, x_9, x_10, x_11, x_47); -if (lean_obj_tag(x_49) == 0) +lean_inc(x_54); +lean_inc(x_2); +x_56 = l___private_Lean_Elab_PreDefinition_WF_Rel_0__Lean_Elab_WF_unpackUnary(x_42, x_2, x_29, x_28, x_54, x_8, x_9, x_10, x_11, x_12, x_13, x_14); +if (lean_obj_tag(x_56) == 0) { -lean_object* x_50; size_t x_51; size_t x_52; -x_50 = lean_ctor_get(x_49, 1); -lean_inc(x_50); -lean_dec(x_49); -x_51 = 1; -x_52 = lean_usize_add(x_4, x_51); -x_4 = x_52; -x_12 = x_50; -goto _start; -} -else +lean_object* x_57; lean_object* x_58; uint8_t x_59; +x_57 = lean_ctor_get(x_56, 0); +lean_inc(x_57); +x_58 = lean_ctor_get(x_56, 1); +lean_inc(x_58); +lean_dec(x_56); +x_59 = lean_nat_dec_lt(x_43, x_3); +if (x_59 == 0) { -uint8_t x_54; -lean_dec(x_20); -lean_dec(x_16); -lean_free_object(x_5); -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_1); -x_54 = !lean_is_exclusive(x_49); -if (x_54 == 0) -{ -return x_49; -} -else -{ -lean_object* x_55; lean_object* x_56; lean_object* x_57; -x_55 = lean_ctor_get(x_49, 0); -x_56 = lean_ctor_get(x_49, 1); -lean_inc(x_56); -lean_inc(x_55); -lean_dec(x_49); -x_57 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_57, 0, x_55); -lean_ctor_set(x_57, 1, x_56); -return x_57; -} -} -} -else -{ -uint8_t x_58; -lean_dec(x_20); -lean_dec(x_43); -lean_dec(x_16); -lean_free_object(x_5); -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_1); -x_58 = !lean_is_exclusive(x_45); -if (x_58 == 0) -{ -return x_45; -} -else -{ -lean_object* x_59; lean_object* x_60; lean_object* x_61; -x_59 = lean_ctor_get(x_45, 0); -x_60 = lean_ctor_get(x_45, 1); -lean_inc(x_60); -lean_inc(x_59); -lean_dec(x_45); -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; -} -} -} -else -{ -lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; -lean_dec(x_20); -x_62 = lean_array_fget(x_34, x_35); -x_63 = lean_nat_add(x_35, x_32); -lean_dec(x_35); -x_64 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_64, 0, x_34); -lean_ctor_set(x_64, 1, x_63); -lean_ctor_set(x_64, 2, x_36); +lean_object* x_60; lean_object* x_61; lean_object* x_62; +x_60 = l_Array_forInUnsafe_loop___at_Lean_Elab_WF_elabWFRel___spec__5___closed__3; +lean_inc(x_57); +x_61 = lean_alloc_closure((void*)(l_Array_forInUnsafe_loop___at_Lean_Elab_WF_elabWFRel___spec__5___lambda__1), 10, 3); +lean_closure_set(x_61, 0, x_57); +lean_closure_set(x_61, 1, x_54); +lean_closure_set(x_61, 2, x_60); +lean_inc(x_13); +lean_inc(x_12); lean_inc(x_11); lean_inc(x_10); lean_inc(x_9); lean_inc(x_8); -lean_inc(x_7); -lean_inc(x_6); -lean_inc(x_62); -lean_inc(x_1); -x_65 = l___private_Lean_Elab_PreDefinition_WF_Rel_0__Lean_Elab_WF_unpackUnary(x_31, x_1, x_18, x_17, x_62, x_6, x_7, x_8, x_9, x_10, x_11, x_12); -if (lean_obj_tag(x_65) == 0) +x_62 = l_Lean_MVarId_withContext___at_Lean_Elab_Term_logUnassignedUsingErrorInfos___spec__4___rarg(x_57, x_61, x_8, x_9, x_10, x_11, x_12, x_13, x_58); +if (lean_obj_tag(x_62) == 0) { -lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; -x_66 = lean_ctor_get(x_65, 0); -lean_inc(x_66); -x_67 = lean_ctor_get(x_65, 1); +lean_object* x_63; lean_object* x_64; +x_63 = lean_ctor_get(x_62, 1); +lean_inc(x_63); +lean_dec(x_62); +x_64 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_64, 0, x_7); +x_18 = x_64; +x_19 = x_63; +goto block_26; +} +else +{ +uint8_t x_65; +lean_dec(x_31); +lean_dec(x_27); +lean_free_object(x_7); +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_2); +x_65 = !lean_is_exclusive(x_62); +if (x_65 == 0) +{ +return x_62; +} +else +{ +lean_object* x_66; lean_object* x_67; lean_object* x_68; +x_66 = lean_ctor_get(x_62, 0); +x_67 = lean_ctor_get(x_62, 1); lean_inc(x_67); -lean_dec(x_65); lean_inc(x_66); -x_68 = lean_alloc_closure((void*)(l_Array_forInUnsafe_loop___at_Lean_Elab_WF_elabWFRel___spec__5___lambda__1), 9, 2); -lean_closure_set(x_68, 0, x_66); -lean_closure_set(x_68, 1, x_62); +lean_dec(x_62); +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; +} +} +} +else +{ +lean_object* x_69; lean_object* x_70; lean_object* x_71; +x_69 = l_Array_forInUnsafe_loop___at_Lean_Elab_WF_elabWFRel___spec__5___closed__6; +lean_inc(x_57); +x_70 = lean_alloc_closure((void*)(l_Array_forInUnsafe_loop___at_Lean_Elab_WF_elabWFRel___spec__5___lambda__1), 10, 3); +lean_closure_set(x_70, 0, x_57); +lean_closure_set(x_70, 1, x_54); +lean_closure_set(x_70, 2, x_69); +lean_inc(x_13); +lean_inc(x_12); lean_inc(x_11); lean_inc(x_10); lean_inc(x_9); lean_inc(x_8); -lean_inc(x_7); -lean_inc(x_6); -x_69 = l_Lean_MVarId_withContext___at_Lean_Elab_Term_logUnassignedUsingErrorInfos___spec__4___rarg(x_66, x_68, x_6, x_7, x_8, x_9, x_10, x_11, x_67); -if (lean_obj_tag(x_69) == 0) +x_71 = l_Lean_MVarId_withContext___at_Lean_Elab_Term_logUnassignedUsingErrorInfos___spec__4___rarg(x_57, x_70, x_8, x_9, x_10, x_11, x_12, x_13, x_58); +if (lean_obj_tag(x_71) == 0) { -lean_object* x_70; size_t x_71; size_t x_72; -x_70 = lean_ctor_get(x_69, 1); -lean_inc(x_70); -lean_dec(x_69); -lean_ctor_set(x_5, 0, x_64); -x_71 = 1; -x_72 = lean_usize_add(x_4, x_71); -x_4 = x_72; -x_12 = x_70; -goto _start; +lean_object* x_72; lean_object* x_73; +x_72 = lean_ctor_get(x_71, 1); +lean_inc(x_72); +lean_dec(x_71); +x_73 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_73, 0, x_7); +x_18 = x_73; +x_19 = x_72; +goto block_26; } else { -lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; -lean_dec(x_64); -lean_dec(x_16); -lean_free_object(x_5); +uint8_t x_74; +lean_dec(x_31); +lean_dec(x_27); +lean_free_object(x_7); +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_1); -x_74 = lean_ctor_get(x_69, 0); -lean_inc(x_74); -x_75 = lean_ctor_get(x_69, 1); +lean_dec(x_2); +x_74 = !lean_is_exclusive(x_71); +if (x_74 == 0) +{ +return x_71; +} +else +{ +lean_object* x_75; lean_object* x_76; lean_object* x_77; +x_75 = lean_ctor_get(x_71, 0); +x_76 = lean_ctor_get(x_71, 1); +lean_inc(x_76); lean_inc(x_75); -if (lean_is_exclusive(x_69)) { - lean_ctor_release(x_69, 0); - lean_ctor_release(x_69, 1); - x_76 = x_69; -} else { - lean_dec_ref(x_69); - x_76 = lean_box(0); -} -if (lean_is_scalar(x_76)) { - x_77 = lean_alloc_ctor(1, 2, 0); -} else { - x_77 = x_76; -} -lean_ctor_set(x_77, 0, x_74); -lean_ctor_set(x_77, 1, x_75); +lean_dec(x_71); +x_77 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_77, 0, x_75); +lean_ctor_set(x_77, 1, x_76); return x_77; } } +} +} else { -lean_object* x_78; lean_object* x_79; lean_object* x_80; lean_object* x_81; -lean_dec(x_64); -lean_dec(x_62); -lean_dec(x_16); -lean_free_object(x_5); +uint8_t x_78; +lean_dec(x_31); +lean_dec(x_54); +lean_dec(x_27); +lean_free_object(x_7); +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_1); -x_78 = lean_ctor_get(x_65, 0); -lean_inc(x_78); -x_79 = lean_ctor_get(x_65, 1); +lean_dec(x_2); +x_78 = !lean_is_exclusive(x_56); +if (x_78 == 0) +{ +return x_56; +} +else +{ +lean_object* x_79; lean_object* x_80; lean_object* x_81; +x_79 = lean_ctor_get(x_56, 0); +x_80 = lean_ctor_get(x_56, 1); +lean_inc(x_80); lean_inc(x_79); -if (lean_is_exclusive(x_65)) { - lean_ctor_release(x_65, 0); - lean_ctor_release(x_65, 1); - x_80 = x_65; -} else { - lean_dec_ref(x_65); - x_80 = lean_box(0); -} -if (lean_is_scalar(x_80)) { - x_81 = lean_alloc_ctor(1, 2, 0); -} else { - x_81 = x_80; -} -lean_ctor_set(x_81, 0, x_78); -lean_ctor_set(x_81, 1, x_79); +lean_dec(x_56); +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 { -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; uint8_t x_89; -lean_dec(x_16); -x_82 = lean_array_fget(x_22, x_23); -x_83 = lean_unsigned_to_nat(1u); -x_84 = lean_nat_add(x_23, x_83); -lean_dec(x_23); -x_85 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_85, 0, x_22); -lean_ctor_set(x_85, 1, x_84); -lean_ctor_set(x_85, 2, x_24); -x_86 = lean_ctor_get(x_20, 0); +lean_object* x_82; lean_object* x_83; lean_object* x_84; lean_object* x_85; +lean_dec(x_31); +x_82 = lean_array_fget(x_45, x_46); +x_83 = lean_nat_add(x_46, x_43); +lean_dec(x_46); +x_84 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_84, 0, x_45); +lean_ctor_set(x_84, 1, x_83); +lean_ctor_set(x_84, 2, x_47); +lean_inc(x_13); +lean_inc(x_12); +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_82); +lean_inc(x_2); +x_85 = l___private_Lean_Elab_PreDefinition_WF_Rel_0__Lean_Elab_WF_unpackUnary(x_42, x_2, x_29, x_28, x_82, x_8, x_9, x_10, x_11, x_12, x_13, x_14); +if (lean_obj_tag(x_85) == 0) +{ +lean_object* x_86; lean_object* x_87; uint8_t x_88; +x_86 = lean_ctor_get(x_85, 0); lean_inc(x_86); -x_87 = lean_ctor_get(x_20, 1); +x_87 = lean_ctor_get(x_85, 1); lean_inc(x_87); -x_88 = lean_ctor_get(x_20, 2); -lean_inc(x_88); -x_89 = lean_nat_dec_lt(x_87, x_88); -if (x_89 == 0) +lean_dec(x_85); +x_88 = lean_nat_dec_lt(x_43, x_3); +if (x_88 == 0) { -lean_object* x_90; -lean_dec(x_88); -lean_dec(x_87); -lean_dec(x_86); -lean_dec(x_82); -lean_dec(x_18); -lean_dec(x_17); -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_1); -lean_ctor_set(x_5, 1, x_85); -x_90 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_90, 0, x_5); -lean_ctor_set(x_90, 1, x_12); -return x_90; -} -else -{ -lean_object* x_91; lean_object* x_92; lean_object* x_93; lean_object* x_94; lean_object* x_95; -if (lean_is_exclusive(x_20)) { - lean_ctor_release(x_20, 0); - lean_ctor_release(x_20, 1); - lean_ctor_release(x_20, 2); - x_91 = x_20; -} else { - lean_dec_ref(x_20); - x_91 = lean_box(0); -} -x_92 = lean_array_fget(x_86, x_87); -x_93 = lean_nat_add(x_87, x_83); -lean_dec(x_87); -if (lean_is_scalar(x_91)) { - x_94 = lean_alloc_ctor(0, 3, 0); -} else { - x_94 = x_91; -} -lean_ctor_set(x_94, 0, x_86); -lean_ctor_set(x_94, 1, x_93); -lean_ctor_set(x_94, 2, x_88); +lean_object* x_89; lean_object* x_90; lean_object* x_91; +x_89 = l_Array_forInUnsafe_loop___at_Lean_Elab_WF_elabWFRel___spec__5___closed__3; +lean_inc(x_86); +x_90 = lean_alloc_closure((void*)(l_Array_forInUnsafe_loop___at_Lean_Elab_WF_elabWFRel___spec__5___lambda__1), 10, 3); +lean_closure_set(x_90, 0, x_86); +lean_closure_set(x_90, 1, x_82); +lean_closure_set(x_90, 2, x_89); +lean_inc(x_13); +lean_inc(x_12); lean_inc(x_11); lean_inc(x_10); lean_inc(x_9); lean_inc(x_8); -lean_inc(x_7); -lean_inc(x_6); +x_91 = l_Lean_MVarId_withContext___at_Lean_Elab_Term_logUnassignedUsingErrorInfos___spec__4___rarg(x_86, x_90, x_8, x_9, x_10, x_11, x_12, x_13, x_87); +if (lean_obj_tag(x_91) == 0) +{ +lean_object* x_92; lean_object* x_93; +x_92 = lean_ctor_get(x_91, 1); lean_inc(x_92); -lean_inc(x_1); -x_95 = l___private_Lean_Elab_PreDefinition_WF_Rel_0__Lean_Elab_WF_unpackUnary(x_82, x_1, x_18, x_17, x_92, x_6, x_7, x_8, x_9, x_10, x_11, x_12); -if (lean_obj_tag(x_95) == 0) +lean_dec(x_91); +lean_ctor_set(x_7, 0, x_84); +x_93 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_93, 0, x_7); +x_18 = x_93; +x_19 = x_92; +goto block_26; +} +else { -lean_object* x_96; lean_object* x_97; lean_object* x_98; lean_object* x_99; -x_96 = lean_ctor_get(x_95, 0); -lean_inc(x_96); -x_97 = lean_ctor_get(x_95, 1); -lean_inc(x_97); -lean_dec(x_95); -lean_inc(x_96); -x_98 = lean_alloc_closure((void*)(l_Array_forInUnsafe_loop___at_Lean_Elab_WF_elabWFRel___spec__5___lambda__1), 9, 2); -lean_closure_set(x_98, 0, x_96); -lean_closure_set(x_98, 1, x_92); +lean_object* x_94; lean_object* x_95; lean_object* x_96; lean_object* x_97; +lean_dec(x_84); +lean_dec(x_27); +lean_free_object(x_7); +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_2); +x_94 = lean_ctor_get(x_91, 0); +lean_inc(x_94); +x_95 = lean_ctor_get(x_91, 1); +lean_inc(x_95); +if (lean_is_exclusive(x_91)) { + lean_ctor_release(x_91, 0); + lean_ctor_release(x_91, 1); + x_96 = x_91; +} else { + lean_dec_ref(x_91); + x_96 = lean_box(0); +} +if (lean_is_scalar(x_96)) { + x_97 = lean_alloc_ctor(1, 2, 0); +} else { + x_97 = x_96; +} +lean_ctor_set(x_97, 0, x_94); +lean_ctor_set(x_97, 1, x_95); +return x_97; +} +} +else +{ +lean_object* x_98; lean_object* x_99; lean_object* x_100; +x_98 = l_Array_forInUnsafe_loop___at_Lean_Elab_WF_elabWFRel___spec__5___closed__6; +lean_inc(x_86); +x_99 = lean_alloc_closure((void*)(l_Array_forInUnsafe_loop___at_Lean_Elab_WF_elabWFRel___spec__5___lambda__1), 10, 3); +lean_closure_set(x_99, 0, x_86); +lean_closure_set(x_99, 1, x_82); +lean_closure_set(x_99, 2, x_98); +lean_inc(x_13); +lean_inc(x_12); lean_inc(x_11); lean_inc(x_10); lean_inc(x_9); lean_inc(x_8); -lean_inc(x_7); -lean_inc(x_6); -x_99 = l_Lean_MVarId_withContext___at_Lean_Elab_Term_logUnassignedUsingErrorInfos___spec__4___rarg(x_96, x_98, x_6, x_7, x_8, x_9, x_10, x_11, x_97); -if (lean_obj_tag(x_99) == 0) +x_100 = l_Lean_MVarId_withContext___at_Lean_Elab_Term_logUnassignedUsingErrorInfos___spec__4___rarg(x_86, x_99, x_8, x_9, x_10, x_11, x_12, x_13, x_87); +if (lean_obj_tag(x_100) == 0) { -lean_object* x_100; size_t x_101; size_t x_102; -x_100 = lean_ctor_get(x_99, 1); -lean_inc(x_100); -lean_dec(x_99); -lean_ctor_set(x_5, 1, x_85); -lean_ctor_set(x_5, 0, x_94); -x_101 = 1; -x_102 = lean_usize_add(x_4, x_101); -x_4 = x_102; -x_12 = x_100; -goto _start; +lean_object* x_101; lean_object* x_102; +x_101 = lean_ctor_get(x_100, 1); +lean_inc(x_101); +lean_dec(x_100); +lean_ctor_set(x_7, 0, x_84); +x_102 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_102, 0, x_7); +x_18 = x_102; +x_19 = x_101; +goto block_26; } else { -lean_object* x_104; lean_object* x_105; lean_object* x_106; lean_object* x_107; -lean_dec(x_94); -lean_dec(x_85); -lean_free_object(x_5); +lean_object* x_103; lean_object* x_104; lean_object* x_105; lean_object* x_106; +lean_dec(x_84); +lean_dec(x_27); +lean_free_object(x_7); +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_1); -x_104 = lean_ctor_get(x_99, 0); +lean_dec(x_2); +x_103 = lean_ctor_get(x_100, 0); +lean_inc(x_103); +x_104 = lean_ctor_get(x_100, 1); 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; +if (lean_is_exclusive(x_100)) { + lean_ctor_release(x_100, 0); + lean_ctor_release(x_100, 1); + x_105 = x_100; } else { - lean_dec_ref(x_99); - x_106 = lean_box(0); + lean_dec_ref(x_100); + x_105 = lean_box(0); } -if (lean_is_scalar(x_106)) { - x_107 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_105)) { + x_106 = lean_alloc_ctor(1, 2, 0); } else { - x_107 = x_106; + x_106 = x_105; +} +lean_ctor_set(x_106, 0, x_103); +lean_ctor_set(x_106, 1, x_104); +return x_106; } -lean_ctor_set(x_107, 0, x_104); -lean_ctor_set(x_107, 1, x_105); -return x_107; } } else { -lean_object* x_108; lean_object* x_109; lean_object* x_110; lean_object* x_111; -lean_dec(x_94); -lean_dec(x_92); -lean_dec(x_85); -lean_free_object(x_5); +lean_object* x_107; lean_object* x_108; lean_object* x_109; lean_object* x_110; +lean_dec(x_84); +lean_dec(x_82); +lean_dec(x_27); +lean_free_object(x_7); +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_1); -x_108 = lean_ctor_get(x_95, 0); +lean_dec(x_2); +x_107 = lean_ctor_get(x_85, 0); +lean_inc(x_107); +x_108 = lean_ctor_get(x_85, 1); lean_inc(x_108); -x_109 = lean_ctor_get(x_95, 1); -lean_inc(x_109); -if (lean_is_exclusive(x_95)) { - lean_ctor_release(x_95, 0); - lean_ctor_release(x_95, 1); - x_110 = x_95; +if (lean_is_exclusive(x_85)) { + lean_ctor_release(x_85, 0); + lean_ctor_release(x_85, 1); + x_109 = x_85; } else { - lean_dec_ref(x_95); - x_110 = lean_box(0); + lean_dec_ref(x_85); + x_109 = lean_box(0); } -if (lean_is_scalar(x_110)) { - x_111 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_109)) { + x_110 = lean_alloc_ctor(1, 2, 0); } else { - x_111 = x_110; -} -lean_ctor_set(x_111, 0, x_108); -lean_ctor_set(x_111, 1, x_109); -return x_111; + x_110 = x_109; } +lean_ctor_set(x_110, 0, x_107); +lean_ctor_set(x_110, 1, x_108); +return x_110; } } } } else { -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_5, 0); -lean_inc(x_112); -lean_dec(x_5); -x_113 = lean_ctor_get(x_16, 0); -lean_inc(x_113); -x_114 = lean_ctor_get(x_16, 1); -lean_inc(x_114); -x_115 = lean_ctor_get(x_16, 2); +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; uint8_t x_118; +lean_dec(x_27); +x_111 = lean_array_fget(x_33, x_34); +x_112 = lean_unsigned_to_nat(1u); +x_113 = lean_nat_add(x_34, x_112); +lean_dec(x_34); +x_114 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_114, 0, x_33); +lean_ctor_set(x_114, 1, x_113); +lean_ctor_set(x_114, 2, x_35); +x_115 = lean_ctor_get(x_31, 0); lean_inc(x_115); -x_116 = lean_nat_dec_lt(x_114, x_115); -if (x_116 == 0) +x_116 = lean_ctor_get(x_31, 1); +lean_inc(x_116); +x_117 = lean_ctor_get(x_31, 2); +lean_inc(x_117); +x_118 = lean_nat_dec_lt(x_116, x_117); +if (x_118 == 0) { -lean_object* x_117; lean_object* x_118; +lean_object* x_119; +lean_dec(x_117); +lean_dec(x_116); lean_dec(x_115); -lean_dec(x_114); -lean_dec(x_113); -lean_dec(x_18); -lean_dec(x_17); -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_1); -x_117 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_117, 0, x_112); -lean_ctor_set(x_117, 1, x_16); -x_118 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_118, 0, x_117); -lean_ctor_set(x_118, 1, x_12); -return x_118; +lean_dec(x_111); +lean_dec(x_29); +lean_dec(x_28); +lean_ctor_set(x_7, 1, x_114); +x_119 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_119, 0, x_7); +x_18 = x_119; +x_19 = x_14; +goto block_26; } else { -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; uint8_t x_127; -if (lean_is_exclusive(x_16)) { - lean_ctor_release(x_16, 0); - lean_ctor_release(x_16, 1); - lean_ctor_release(x_16, 2); - x_119 = x_16; +lean_object* x_120; lean_object* x_121; lean_object* x_122; lean_object* x_123; lean_object* x_124; +if (lean_is_exclusive(x_31)) { + lean_ctor_release(x_31, 0); + lean_ctor_release(x_31, 1); + lean_ctor_release(x_31, 2); + x_120 = x_31; } else { - lean_dec_ref(x_16); - x_119 = lean_box(0); + lean_dec_ref(x_31); + x_120 = lean_box(0); } -x_120 = lean_array_fget(x_113, x_114); -x_121 = lean_unsigned_to_nat(1u); -x_122 = lean_nat_add(x_114, x_121); -lean_dec(x_114); -if (lean_is_scalar(x_119)) { +x_121 = lean_array_fget(x_115, x_116); +x_122 = lean_nat_add(x_116, x_112); +lean_dec(x_116); +if (lean_is_scalar(x_120)) { x_123 = lean_alloc_ctor(0, 3, 0); } else { - x_123 = x_119; + x_123 = x_120; } -lean_ctor_set(x_123, 0, x_113); +lean_ctor_set(x_123, 0, x_115); lean_ctor_set(x_123, 1, x_122); -lean_ctor_set(x_123, 2, x_115); -x_124 = lean_ctor_get(x_112, 0); -lean_inc(x_124); -x_125 = lean_ctor_get(x_112, 1); +lean_ctor_set(x_123, 2, x_117); +lean_inc(x_13); +lean_inc(x_12); +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_121); +lean_inc(x_2); +x_124 = l___private_Lean_Elab_PreDefinition_WF_Rel_0__Lean_Elab_WF_unpackUnary(x_111, x_2, x_29, x_28, x_121, x_8, x_9, x_10, x_11, x_12, x_13, x_14); +if (lean_obj_tag(x_124) == 0) +{ +lean_object* x_125; lean_object* x_126; uint8_t x_127; +x_125 = lean_ctor_get(x_124, 0); lean_inc(x_125); -x_126 = lean_ctor_get(x_112, 2); +x_126 = lean_ctor_get(x_124, 1); lean_inc(x_126); -x_127 = lean_nat_dec_lt(x_125, x_126); +lean_dec(x_124); +x_127 = lean_nat_dec_lt(x_112, x_3); if (x_127 == 0) { -lean_object* x_128; lean_object* x_129; -lean_dec(x_126); -lean_dec(x_125); -lean_dec(x_124); -lean_dec(x_120); -lean_dec(x_18); -lean_dec(x_17); -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_1); -x_128 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_128, 0, x_112); -lean_ctor_set(x_128, 1, x_123); -x_129 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_129, 0, x_128); -lean_ctor_set(x_129, 1, x_12); -return x_129; -} -else -{ -lean_object* x_130; lean_object* x_131; lean_object* x_132; lean_object* x_133; lean_object* x_134; -if (lean_is_exclusive(x_112)) { - lean_ctor_release(x_112, 0); - lean_ctor_release(x_112, 1); - lean_ctor_release(x_112, 2); - x_130 = x_112; -} else { - lean_dec_ref(x_112); - x_130 = lean_box(0); -} -x_131 = lean_array_fget(x_124, x_125); -x_132 = lean_nat_add(x_125, x_121); -lean_dec(x_125); -if (lean_is_scalar(x_130)) { - x_133 = lean_alloc_ctor(0, 3, 0); -} else { - x_133 = x_130; -} -lean_ctor_set(x_133, 0, x_124); -lean_ctor_set(x_133, 1, x_132); -lean_ctor_set(x_133, 2, x_126); +lean_object* x_128; lean_object* x_129; lean_object* x_130; +x_128 = l_Array_forInUnsafe_loop___at_Lean_Elab_WF_elabWFRel___spec__5___closed__3; +lean_inc(x_125); +x_129 = lean_alloc_closure((void*)(l_Array_forInUnsafe_loop___at_Lean_Elab_WF_elabWFRel___spec__5___lambda__1), 10, 3); +lean_closure_set(x_129, 0, x_125); +lean_closure_set(x_129, 1, x_121); +lean_closure_set(x_129, 2, x_128); +lean_inc(x_13); +lean_inc(x_12); lean_inc(x_11); lean_inc(x_10); lean_inc(x_9); lean_inc(x_8); -lean_inc(x_7); -lean_inc(x_6); +x_130 = l_Lean_MVarId_withContext___at_Lean_Elab_Term_logUnassignedUsingErrorInfos___spec__4___rarg(x_125, x_129, x_8, x_9, x_10, x_11, x_12, x_13, x_126); +if (lean_obj_tag(x_130) == 0) +{ +lean_object* x_131; lean_object* x_132; +x_131 = lean_ctor_get(x_130, 1); lean_inc(x_131); -lean_inc(x_1); -x_134 = l___private_Lean_Elab_PreDefinition_WF_Rel_0__Lean_Elab_WF_unpackUnary(x_120, x_1, x_18, x_17, x_131, x_6, x_7, x_8, x_9, x_10, x_11, x_12); -if (lean_obj_tag(x_134) == 0) +lean_dec(x_130); +lean_ctor_set(x_7, 1, x_114); +lean_ctor_set(x_7, 0, x_123); +x_132 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_132, 0, x_7); +x_18 = x_132; +x_19 = x_131; +goto block_26; +} +else { -lean_object* x_135; lean_object* x_136; lean_object* x_137; lean_object* x_138; -x_135 = lean_ctor_get(x_134, 0); -lean_inc(x_135); -x_136 = lean_ctor_get(x_134, 1); -lean_inc(x_136); -lean_dec(x_134); -lean_inc(x_135); -x_137 = lean_alloc_closure((void*)(l_Array_forInUnsafe_loop___at_Lean_Elab_WF_elabWFRel___spec__5___lambda__1), 9, 2); -lean_closure_set(x_137, 0, x_135); -lean_closure_set(x_137, 1, x_131); +lean_object* x_133; lean_object* x_134; lean_object* x_135; lean_object* x_136; +lean_dec(x_123); +lean_dec(x_114); +lean_free_object(x_7); +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_2); +x_133 = lean_ctor_get(x_130, 0); +lean_inc(x_133); +x_134 = lean_ctor_get(x_130, 1); +lean_inc(x_134); +if (lean_is_exclusive(x_130)) { + lean_ctor_release(x_130, 0); + lean_ctor_release(x_130, 1); + x_135 = x_130; +} else { + lean_dec_ref(x_130); + 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_137; lean_object* x_138; lean_object* x_139; +x_137 = l_Array_forInUnsafe_loop___at_Lean_Elab_WF_elabWFRel___spec__5___closed__6; +lean_inc(x_125); +x_138 = lean_alloc_closure((void*)(l_Array_forInUnsafe_loop___at_Lean_Elab_WF_elabWFRel___spec__5___lambda__1), 10, 3); +lean_closure_set(x_138, 0, x_125); +lean_closure_set(x_138, 1, x_121); +lean_closure_set(x_138, 2, x_137); +lean_inc(x_13); +lean_inc(x_12); lean_inc(x_11); lean_inc(x_10); lean_inc(x_9); lean_inc(x_8); -lean_inc(x_7); -lean_inc(x_6); -x_138 = l_Lean_MVarId_withContext___at_Lean_Elab_Term_logUnassignedUsingErrorInfos___spec__4___rarg(x_135, x_137, x_6, x_7, x_8, x_9, x_10, x_11, x_136); -if (lean_obj_tag(x_138) == 0) +x_139 = l_Lean_MVarId_withContext___at_Lean_Elab_Term_logUnassignedUsingErrorInfos___spec__4___rarg(x_125, x_138, x_8, x_9, x_10, x_11, x_12, x_13, x_126); +if (lean_obj_tag(x_139) == 0) { -lean_object* x_139; lean_object* x_140; size_t x_141; size_t x_142; -x_139 = lean_ctor_get(x_138, 1); -lean_inc(x_139); -lean_dec(x_138); -x_140 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_140, 0, x_133); -lean_ctor_set(x_140, 1, x_123); -x_141 = 1; -x_142 = lean_usize_add(x_4, x_141); -x_4 = x_142; -x_5 = x_140; -x_12 = x_139; +lean_object* x_140; lean_object* x_141; +x_140 = lean_ctor_get(x_139, 1); +lean_inc(x_140); +lean_dec(x_139); +lean_ctor_set(x_7, 1, x_114); +lean_ctor_set(x_7, 0, x_123); +x_141 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_141, 0, x_7); +x_18 = x_141; +x_19 = x_140; +goto block_26; +} +else +{ +lean_object* x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; +lean_dec(x_123); +lean_dec(x_114); +lean_free_object(x_7); +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_2); +x_142 = lean_ctor_get(x_139, 0); +lean_inc(x_142); +x_143 = lean_ctor_get(x_139, 1); +lean_inc(x_143); +if (lean_is_exclusive(x_139)) { + lean_ctor_release(x_139, 0); + lean_ctor_release(x_139, 1); + x_144 = x_139; +} else { + lean_dec_ref(x_139); + x_144 = lean_box(0); +} +if (lean_is_scalar(x_144)) { + x_145 = lean_alloc_ctor(1, 2, 0); +} else { + x_145 = x_144; +} +lean_ctor_set(x_145, 0, x_142); +lean_ctor_set(x_145, 1, x_143); +return x_145; +} +} +} +else +{ +lean_object* x_146; lean_object* x_147; lean_object* x_148; lean_object* x_149; +lean_dec(x_123); +lean_dec(x_121); +lean_dec(x_114); +lean_free_object(x_7); +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_2); +x_146 = lean_ctor_get(x_124, 0); +lean_inc(x_146); +x_147 = lean_ctor_get(x_124, 1); +lean_inc(x_147); +if (lean_is_exclusive(x_124)) { + lean_ctor_release(x_124, 0); + lean_ctor_release(x_124, 1); + x_148 = x_124; +} else { + lean_dec_ref(x_124); + x_148 = lean_box(0); +} +if (lean_is_scalar(x_148)) { + x_149 = lean_alloc_ctor(1, 2, 0); +} else { + x_149 = x_148; +} +lean_ctor_set(x_149, 0, x_146); +lean_ctor_set(x_149, 1, x_147); +return x_149; +} +} +} +} +} +else +{ +lean_object* x_150; lean_object* x_151; lean_object* x_152; lean_object* x_153; uint8_t x_154; +x_150 = lean_ctor_get(x_7, 0); +lean_inc(x_150); +lean_dec(x_7); +x_151 = lean_ctor_get(x_27, 0); +lean_inc(x_151); +x_152 = lean_ctor_get(x_27, 1); +lean_inc(x_152); +x_153 = lean_ctor_get(x_27, 2); +lean_inc(x_153); +x_154 = lean_nat_dec_lt(x_152, x_153); +if (x_154 == 0) +{ +lean_object* x_155; lean_object* x_156; +lean_dec(x_153); +lean_dec(x_152); +lean_dec(x_151); +lean_dec(x_29); +lean_dec(x_28); +x_155 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_155, 0, x_150); +lean_ctor_set(x_155, 1, x_27); +x_156 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_156, 0, x_155); +x_18 = x_156; +x_19 = x_14; +goto block_26; +} +else +{ +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; uint8_t x_165; +if (lean_is_exclusive(x_27)) { + lean_ctor_release(x_27, 0); + lean_ctor_release(x_27, 1); + lean_ctor_release(x_27, 2); + x_157 = x_27; +} else { + lean_dec_ref(x_27); + x_157 = lean_box(0); +} +x_158 = lean_array_fget(x_151, x_152); +x_159 = lean_unsigned_to_nat(1u); +x_160 = lean_nat_add(x_152, x_159); +lean_dec(x_152); +if (lean_is_scalar(x_157)) { + x_161 = lean_alloc_ctor(0, 3, 0); +} else { + x_161 = x_157; +} +lean_ctor_set(x_161, 0, x_151); +lean_ctor_set(x_161, 1, x_160); +lean_ctor_set(x_161, 2, x_153); +x_162 = lean_ctor_get(x_150, 0); +lean_inc(x_162); +x_163 = lean_ctor_get(x_150, 1); +lean_inc(x_163); +x_164 = lean_ctor_get(x_150, 2); +lean_inc(x_164); +x_165 = lean_nat_dec_lt(x_163, x_164); +if (x_165 == 0) +{ +lean_object* x_166; lean_object* x_167; +lean_dec(x_164); +lean_dec(x_163); +lean_dec(x_162); +lean_dec(x_158); +lean_dec(x_29); +lean_dec(x_28); +x_166 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_166, 0, x_150); +lean_ctor_set(x_166, 1, x_161); +x_167 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_167, 0, x_166); +x_18 = x_167; +x_19 = x_14; +goto block_26; +} +else +{ +lean_object* x_168; lean_object* x_169; lean_object* x_170; lean_object* x_171; lean_object* x_172; +if (lean_is_exclusive(x_150)) { + lean_ctor_release(x_150, 0); + lean_ctor_release(x_150, 1); + lean_ctor_release(x_150, 2); + x_168 = x_150; +} else { + lean_dec_ref(x_150); + x_168 = lean_box(0); +} +x_169 = lean_array_fget(x_162, x_163); +x_170 = lean_nat_add(x_163, x_159); +lean_dec(x_163); +if (lean_is_scalar(x_168)) { + x_171 = lean_alloc_ctor(0, 3, 0); +} else { + x_171 = x_168; +} +lean_ctor_set(x_171, 0, x_162); +lean_ctor_set(x_171, 1, x_170); +lean_ctor_set(x_171, 2, x_164); +lean_inc(x_13); +lean_inc(x_12); +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_169); +lean_inc(x_2); +x_172 = l___private_Lean_Elab_PreDefinition_WF_Rel_0__Lean_Elab_WF_unpackUnary(x_158, x_2, x_29, x_28, x_169, x_8, x_9, x_10, x_11, x_12, x_13, x_14); +if (lean_obj_tag(x_172) == 0) +{ +lean_object* x_173; lean_object* x_174; uint8_t x_175; +x_173 = lean_ctor_get(x_172, 0); +lean_inc(x_173); +x_174 = lean_ctor_get(x_172, 1); +lean_inc(x_174); +lean_dec(x_172); +x_175 = lean_nat_dec_lt(x_159, x_3); +if (x_175 == 0) +{ +lean_object* x_176; lean_object* x_177; lean_object* x_178; +x_176 = l_Array_forInUnsafe_loop___at_Lean_Elab_WF_elabWFRel___spec__5___closed__3; +lean_inc(x_173); +x_177 = lean_alloc_closure((void*)(l_Array_forInUnsafe_loop___at_Lean_Elab_WF_elabWFRel___spec__5___lambda__1), 10, 3); +lean_closure_set(x_177, 0, x_173); +lean_closure_set(x_177, 1, x_169); +lean_closure_set(x_177, 2, x_176); +lean_inc(x_13); +lean_inc(x_12); +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +x_178 = l_Lean_MVarId_withContext___at_Lean_Elab_Term_logUnassignedUsingErrorInfos___spec__4___rarg(x_173, x_177, x_8, x_9, x_10, x_11, x_12, x_13, x_174); +if (lean_obj_tag(x_178) == 0) +{ +lean_object* x_179; lean_object* x_180; lean_object* x_181; +x_179 = lean_ctor_get(x_178, 1); +lean_inc(x_179); +lean_dec(x_178); +x_180 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_180, 0, x_171); +lean_ctor_set(x_180, 1, x_161); +x_181 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_181, 0, x_180); +x_18 = x_181; +x_19 = x_179; +goto block_26; +} +else +{ +lean_object* x_182; lean_object* x_183; lean_object* x_184; lean_object* x_185; +lean_dec(x_171); +lean_dec(x_161); +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_2); +x_182 = lean_ctor_get(x_178, 0); +lean_inc(x_182); +x_183 = lean_ctor_get(x_178, 1); +lean_inc(x_183); +if (lean_is_exclusive(x_178)) { + lean_ctor_release(x_178, 0); + lean_ctor_release(x_178, 1); + x_184 = x_178; +} else { + lean_dec_ref(x_178); + x_184 = lean_box(0); +} +if (lean_is_scalar(x_184)) { + x_185 = lean_alloc_ctor(1, 2, 0); +} else { + x_185 = x_184; +} +lean_ctor_set(x_185, 0, x_182); +lean_ctor_set(x_185, 1, x_183); +return x_185; +} +} +else +{ +lean_object* x_186; lean_object* x_187; lean_object* x_188; +x_186 = l_Array_forInUnsafe_loop___at_Lean_Elab_WF_elabWFRel___spec__5___closed__6; +lean_inc(x_173); +x_187 = lean_alloc_closure((void*)(l_Array_forInUnsafe_loop___at_Lean_Elab_WF_elabWFRel___spec__5___lambda__1), 10, 3); +lean_closure_set(x_187, 0, x_173); +lean_closure_set(x_187, 1, x_169); +lean_closure_set(x_187, 2, x_186); +lean_inc(x_13); +lean_inc(x_12); +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +x_188 = l_Lean_MVarId_withContext___at_Lean_Elab_Term_logUnassignedUsingErrorInfos___spec__4___rarg(x_173, x_187, x_8, x_9, x_10, x_11, x_12, x_13, x_174); +if (lean_obj_tag(x_188) == 0) +{ +lean_object* x_189; lean_object* x_190; lean_object* x_191; +x_189 = lean_ctor_get(x_188, 1); +lean_inc(x_189); +lean_dec(x_188); +x_190 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_190, 0, x_171); +lean_ctor_set(x_190, 1, x_161); +x_191 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_191, 0, x_190); +x_18 = x_191; +x_19 = x_189; +goto block_26; +} +else +{ +lean_object* x_192; lean_object* x_193; lean_object* x_194; lean_object* x_195; +lean_dec(x_171); +lean_dec(x_161); +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_2); +x_192 = lean_ctor_get(x_188, 0); +lean_inc(x_192); +x_193 = lean_ctor_get(x_188, 1); +lean_inc(x_193); +if (lean_is_exclusive(x_188)) { + lean_ctor_release(x_188, 0); + lean_ctor_release(x_188, 1); + x_194 = x_188; +} else { + lean_dec_ref(x_188); + x_194 = lean_box(0); +} +if (lean_is_scalar(x_194)) { + x_195 = lean_alloc_ctor(1, 2, 0); +} else { + x_195 = x_194; +} +lean_ctor_set(x_195, 0, x_192); +lean_ctor_set(x_195, 1, x_193); +return x_195; +} +} +} +else +{ +lean_object* x_196; lean_object* x_197; lean_object* x_198; lean_object* x_199; +lean_dec(x_171); +lean_dec(x_169); +lean_dec(x_161); +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_2); +x_196 = lean_ctor_get(x_172, 0); +lean_inc(x_196); +x_197 = lean_ctor_get(x_172, 1); +lean_inc(x_197); +if (lean_is_exclusive(x_172)) { + lean_ctor_release(x_172, 0); + lean_ctor_release(x_172, 1); + x_198 = x_172; +} else { + lean_dec_ref(x_172); + x_198 = lean_box(0); +} +if (lean_is_scalar(x_198)) { + x_199 = lean_alloc_ctor(1, 2, 0); +} else { + x_199 = x_198; +} +lean_ctor_set(x_199, 0, x_196); +lean_ctor_set(x_199, 1, x_197); +return x_199; +} +} +} +} +block_26: +{ +if (lean_obj_tag(x_18) == 0) +{ +lean_object* x_20; lean_object* x_21; +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_2); +x_20 = lean_ctor_get(x_18, 0); +lean_inc(x_20); +lean_dec(x_18); +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 +{ +lean_object* x_22; size_t x_23; size_t x_24; +x_22 = lean_ctor_get(x_18, 0); +lean_inc(x_22); +lean_dec(x_18); +x_23 = 1; +x_24 = lean_usize_add(x_6, x_23); +x_6 = x_24; +x_7 = x_22; +x_14 = x_19; goto _start; } -else -{ -lean_object* x_144; lean_object* x_145; lean_object* x_146; lean_object* x_147; -lean_dec(x_133); -lean_dec(x_123); -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_1); -x_144 = lean_ctor_get(x_138, 0); -lean_inc(x_144); -x_145 = lean_ctor_get(x_138, 1); -lean_inc(x_145); -if (lean_is_exclusive(x_138)) { - lean_ctor_release(x_138, 0); - lean_ctor_release(x_138, 1); - x_146 = x_138; -} else { - lean_dec_ref(x_138); - x_146 = lean_box(0); -} -if (lean_is_scalar(x_146)) { - x_147 = lean_alloc_ctor(1, 2, 0); -} else { - x_147 = x_146; -} -lean_ctor_set(x_147, 0, x_144); -lean_ctor_set(x_147, 1, x_145); -return x_147; -} -} -else -{ -lean_object* x_148; lean_object* x_149; lean_object* x_150; lean_object* x_151; -lean_dec(x_133); -lean_dec(x_131); -lean_dec(x_123); -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_1); -x_148 = lean_ctor_get(x_134, 0); -lean_inc(x_148); -x_149 = lean_ctor_get(x_134, 1); -lean_inc(x_149); -if (lean_is_exclusive(x_134)) { - lean_ctor_release(x_134, 0); - lean_ctor_release(x_134, 1); - x_150 = x_134; -} else { - lean_dec_ref(x_134); - x_150 = lean_box(0); -} -if (lean_is_scalar(x_150)) { - x_151 = lean_alloc_ctor(1, 2, 0); -} else { - x_151 = x_150; -} -lean_ctor_set(x_151, 0, x_148); -lean_ctor_set(x_151, 1, x_149); -return x_151; -} -} -} } } } @@ -4371,6 +4718,8 @@ x_49 = lean_array_get_size(x_3); x_50 = lean_unsigned_to_nat(0u); x_51 = l_Array_toSubarray___rarg(x_3, x_50, x_49); x_52 = lean_array_get_size(x_2); +lean_inc(x_52); +lean_inc(x_2); x_53 = l_Array_toSubarray___rarg(x_2, x_50, x_52); x_54 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_54, 0, x_51); @@ -4385,8 +4734,10 @@ lean_inc(x_9); lean_inc(x_8); lean_inc(x_7); lean_inc(x_6); -x_58 = l_Array_forInUnsafe_loop___at_Lean_Elab_WF_elabWFRel___spec__5(x_4, x_47, x_56, x_57, x_54, x_6, x_7, x_8, x_9, x_10, x_11, x_48); +x_58 = l_Array_forInUnsafe_loop___at_Lean_Elab_WF_elabWFRel___spec__5(x_2, x_4, x_52, x_47, x_56, x_57, x_54, x_6, x_7, x_8, x_9, x_10, x_11, x_48); lean_dec(x_47); +lean_dec(x_52); +lean_dec(x_2); if (lean_obj_tag(x_58) == 0) { lean_object* x_59; lean_object* x_60; lean_object* x_61; @@ -4922,17 +5273,19 @@ lean_dec(x_3); return x_10; } } -LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_WF_elabWFRel___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, lean_object* x_12) { +LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_WF_elabWFRel___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, lean_object* x_12, lean_object* x_13, lean_object* x_14) { _start: { -size_t x_13; size_t x_14; lean_object* x_15; -x_13 = lean_unbox_usize(x_3); -lean_dec(x_3); -x_14 = lean_unbox_usize(x_4); +size_t x_15; size_t x_16; lean_object* x_17; +x_15 = lean_unbox_usize(x_5); +lean_dec(x_5); +x_16 = lean_unbox_usize(x_6); +lean_dec(x_6); +x_17 = l_Array_forInUnsafe_loop___at_Lean_Elab_WF_elabWFRel___spec__5(x_1, x_2, x_3, x_4, x_15, x_16, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14); lean_dec(x_4); -x_15 = l_Array_forInUnsafe_loop___at_Lean_Elab_WF_elabWFRel___spec__5(x_1, x_2, x_13, x_14, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); -lean_dec(x_2); -return x_15; +lean_dec(x_3); +lean_dec(x_1); +return x_17; } } LEAN_EXPORT lean_object* l_Lean_throwError___at_Lean_Elab_WF_elabWFRel___spec__6___rarg___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) { @@ -5032,6 +5385,18 @@ l_Std_Range_forIn_x27_loop___at___private_Lean_Elab_PreDefinition_WF_Rel_0__Lean lean_mark_persistent(l_Std_Range_forIn_x27_loop___at___private_Lean_Elab_PreDefinition_WF_Rel_0__Lean_Elab_WF_unpackUnary___spec__2___closed__1); l_Std_Range_forIn_x27_loop___at___private_Lean_Elab_PreDefinition_WF_Rel_0__Lean_Elab_WF_unpackUnary___spec__2___closed__2 = _init_l_Std_Range_forIn_x27_loop___at___private_Lean_Elab_PreDefinition_WF_Rel_0__Lean_Elab_WF_unpackUnary___spec__2___closed__2(); lean_mark_persistent(l_Std_Range_forIn_x27_loop___at___private_Lean_Elab_PreDefinition_WF_Rel_0__Lean_Elab_WF_unpackUnary___spec__2___closed__2); +l_Array_forInUnsafe_loop___at_Lean_Elab_WF_elabWFRel___spec__5___closed__1 = _init_l_Array_forInUnsafe_loop___at_Lean_Elab_WF_elabWFRel___spec__5___closed__1(); +lean_mark_persistent(l_Array_forInUnsafe_loop___at_Lean_Elab_WF_elabWFRel___spec__5___closed__1); +l_Array_forInUnsafe_loop___at_Lean_Elab_WF_elabWFRel___spec__5___closed__2 = _init_l_Array_forInUnsafe_loop___at_Lean_Elab_WF_elabWFRel___spec__5___closed__2(); +lean_mark_persistent(l_Array_forInUnsafe_loop___at_Lean_Elab_WF_elabWFRel___spec__5___closed__2); +l_Array_forInUnsafe_loop___at_Lean_Elab_WF_elabWFRel___spec__5___closed__3 = _init_l_Array_forInUnsafe_loop___at_Lean_Elab_WF_elabWFRel___spec__5___closed__3(); +lean_mark_persistent(l_Array_forInUnsafe_loop___at_Lean_Elab_WF_elabWFRel___spec__5___closed__3); +l_Array_forInUnsafe_loop___at_Lean_Elab_WF_elabWFRel___spec__5___closed__4 = _init_l_Array_forInUnsafe_loop___at_Lean_Elab_WF_elabWFRel___spec__5___closed__4(); +lean_mark_persistent(l_Array_forInUnsafe_loop___at_Lean_Elab_WF_elabWFRel___spec__5___closed__4); +l_Array_forInUnsafe_loop___at_Lean_Elab_WF_elabWFRel___spec__5___closed__5 = _init_l_Array_forInUnsafe_loop___at_Lean_Elab_WF_elabWFRel___spec__5___closed__5(); +lean_mark_persistent(l_Array_forInUnsafe_loop___at_Lean_Elab_WF_elabWFRel___spec__5___closed__5); +l_Array_forInUnsafe_loop___at_Lean_Elab_WF_elabWFRel___spec__5___closed__6 = _init_l_Array_forInUnsafe_loop___at_Lean_Elab_WF_elabWFRel___spec__5___closed__6(); +lean_mark_persistent(l_Array_forInUnsafe_loop___at_Lean_Elab_WF_elabWFRel___spec__5___closed__6); l_Lean_Elab_WF_elabWFRel___rarg___lambda__1___closed__1 = _init_l_Lean_Elab_WF_elabWFRel___rarg___lambda__1___closed__1(); lean_mark_persistent(l_Lean_Elab_WF_elabWFRel___rarg___lambda__1___closed__1); l_Lean_Elab_WF_elabWFRel___rarg___lambda__1___closed__2 = _init_l_Lean_Elab_WF_elabWFRel___rarg___lambda__1___closed__2(); diff --git a/stage0/stdlib/Lean/Elab/StructInst.c b/stage0/stdlib/Lean/Elab/StructInst.c index 3a578ef004..e7a2143abc 100644 --- a/stage0/stdlib/Lean/Elab/StructInst.c +++ b/stage0/stdlib/Lean/Elab/StructInst.c @@ -167,6 +167,7 @@ LEAN_EXPORT lean_object* l_Lean_throwError___at___private_Lean_Elab_StructInst_0 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*); lean_object* l_Lean_Expr_proj___override(lean_object*, lean_object*, lean_object*); lean_object* lean_array_fget(lean_object*, lean_object*); +lean_object* l_Lean_Meta_forallTelescope___at_Lean_Meta_mapForallTelescope_x27___spec__1___rarg(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_Lean_Elab_Term_StructInst_expandStructInstFieldAbbrev___lambda__1___closed__6; LEAN_EXPORT lean_object* l___private_Lean_Elab_StructInst_0__Lean_Elab_Term_StructInst_toFieldLHS___boxed(lean_object*, lean_object*, lean_object*); @@ -474,7 +475,6 @@ static lean_object* l_Lean_Elab_Term_StructInst_expandStructInstExpectedType___c LEAN_EXPORT lean_object* l_Lean_Elab_Term_StructInst_instToStringFieldStruct; LEAN_EXPORT lean_object* l___private_Lean_Elab_StructInst_0__Lean_Elab_Term_StructInst_groupFields___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_mkHashMap___at___private_Lean_Elab_StructInst_0__Lean_Elab_Term_StructInst_mkFieldMap___spec__12___boxed(lean_object*); -lean_object* l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_getArg(lean_object*, lean_object*); static lean_object* l_Lean_Elab_Term_StructInst_DefaultFields_mkDefaultValueAux_x3f___closed__2; static lean_object* l_Lean_Elab_Term_StructInst_expandStructInstFieldAbbrev___lambda__1___closed__5; @@ -2270,7 +2270,7 @@ static lean_object* _init_l___private_Lean_Elab_StructInst_0__Lean_Elab_Term_Str _start: { lean_object* x_1; -x_1 = lean_mk_string_from_bytes("src", 3); +x_1 = lean_mk_string_from_bytes("__src", 5); return x_1; } } @@ -3282,7 +3282,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_Array_mapMUnsafe_map___at___private_Lean_Elab_StructInst_0__Lean_Elab_Term_StructInst_getStructSource___spec__2___closed__1; x_2 = l_Array_mapMUnsafe_map___at___private_Lean_Elab_StructInst_0__Lean_Elab_Term_StructInst_getStructSource___spec__2___closed__2; -x_3 = lean_unsigned_to_nat(112u); +x_3 = lean_unsigned_to_nat(130u); x_4 = lean_unsigned_to_nat(43u); x_5 = l_Array_mapMUnsafe_map___at___private_Lean_Elab_StructInst_0__Lean_Elab_Term_StructInst_getStructSource___spec__2___closed__3; x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); @@ -7840,7 +7840,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_Array_mapMUnsafe_map___at___private_Lean_Elab_StructInst_0__Lean_Elab_Term_StructInst_getStructSource___spec__2___closed__1; x_2 = l_Lean_Elab_Term_StructInst_FieldVal_toSyntax___closed__1; -x_3 = lean_unsigned_to_nat(317u); +x_3 = lean_unsigned_to_nat(335u); x_4 = lean_unsigned_to_nat(25u); x_5 = l_Array_mapMUnsafe_map___at___private_Lean_Elab_StructInst_0__Lean_Elab_Term_StructInst_getStructSource___spec__2___closed__3; x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); @@ -7915,7 +7915,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_Array_mapMUnsafe_map___at___private_Lean_Elab_StructInst_0__Lean_Elab_Term_StructInst_getStructSource___spec__2___closed__1; x_2 = l_Lean_Elab_Term_StructInst_Field_toSyntax___closed__1; -x_3 = lean_unsigned_to_nat(325u); +x_3 = lean_unsigned_to_nat(343u); x_4 = lean_unsigned_to_nat(11u); x_5 = l_Array_mapMUnsafe_map___at___private_Lean_Elab_StructInst_0__Lean_Elab_Term_StructInst_getStructSource___spec__2___closed__3; x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); @@ -10703,7 +10703,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_Array_mapMUnsafe_map___at___private_Lean_Elab_StructInst_0__Lean_Elab_Term_StructInst_getStructSource___spec__2___closed__1; x_2 = l_List_mapTR_loop___at___private_Lean_Elab_StructInst_0__Lean_Elab_Term_StructInst_expandParentFields___spec__2___closed__1; -x_3 = lean_unsigned_to_nat(425u); +x_3 = lean_unsigned_to_nat(443u); x_4 = lean_unsigned_to_nat(28u); x_5 = l_Array_mapMUnsafe_map___at___private_Lean_Elab_StructInst_0__Lean_Elab_Term_StructInst_getStructSource___spec__2___closed__3; x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); @@ -11873,7 +11873,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_Array_mapMUnsafe_map___at___private_Lean_Elab_StructInst_0__Lean_Elab_Term_StructInst_getStructSource___spec__2___closed__1; x_2 = l_List_foldlM___at___private_Lean_Elab_StructInst_0__Lean_Elab_Term_StructInst_mkFieldMap___spec__13___closed__1; -x_3 = lean_unsigned_to_nat(443u); +x_3 = lean_unsigned_to_nat(461u); x_4 = lean_unsigned_to_nat(11u); x_5 = l_Array_mapMUnsafe_map___at___private_Lean_Elab_StructInst_0__Lean_Elab_Term_StructInst_getStructSource___spec__2___closed__3; x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); @@ -21356,7 +21356,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_Array_mapMUnsafe_map___at___private_Lean_Elab_StructInst_0__Lean_Elab_Term_StructInst_getStructSource___spec__2___closed__1; x_2 = l_Lean_Elab_Term_StructInst_DefaultFields_getFieldName___closed__1; -x_3 = lean_unsigned_to_nat(750u); +x_3 = lean_unsigned_to_nat(768u); x_4 = lean_unsigned_to_nat(9u); x_5 = l_Array_mapMUnsafe_map___at___private_Lean_Elab_StructInst_0__Lean_Elab_Term_StructInst_getStructSource___spec__2___closed__3; x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); @@ -23169,7 +23169,7 @@ case 7: lean_object* x_79; lean_object* x_80; x_79 = lean_alloc_closure((void*)(l_Lean_Elab_Term_StructInst_DefaultFields_reduce___lambda__2), 8, 1); lean_closure_set(x_79, 0, x_1); -x_80 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_2, x_79, x_3, x_4, x_5, x_6, x_7); +x_80 = l_Lean_Meta_forallTelescope___at_Lean_Meta_mapForallTelescope_x27___spec__1___rarg(x_2, x_79, x_3, x_4, x_5, x_6, x_7); return x_80; } case 8: @@ -24418,7 +24418,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_Array_mapMUnsafe_map___at___private_Lean_Elab_StructInst_0__Lean_Elab_Term_StructInst_getStructSource___spec__2___closed__1; x_2 = l_List_forIn_loop___at_Lean_Elab_Term_StructInst_DefaultFields_step___spec__3___closed__1; -x_3 = lean_unsigned_to_nat(864u); +x_3 = lean_unsigned_to_nat(882u); x_4 = lean_unsigned_to_nat(25u); x_5 = l_Array_mapMUnsafe_map___at___private_Lean_Elab_StructInst_0__Lean_Elab_Term_StructInst_getStructSource___spec__2___closed__3; x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); @@ -28756,7 +28756,7 @@ static lean_object* _init_l___regBuiltin_Lean_Elab_Term_StructInst_elabStructIns _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(930u); +x_1 = lean_unsigned_to_nat(948u); x_2 = lean_unsigned_to_nat(32u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -28768,7 +28768,7 @@ static lean_object* _init_l___regBuiltin_Lean_Elab_Term_StructInst_elabStructIns _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(940u); +x_1 = lean_unsigned_to_nat(958u); x_2 = lean_unsigned_to_nat(52u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -28796,7 +28796,7 @@ static lean_object* _init_l___regBuiltin_Lean_Elab_Term_StructInst_elabStructIns _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(930u); +x_1 = lean_unsigned_to_nat(948u); x_2 = lean_unsigned_to_nat(36u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -28808,7 +28808,7 @@ static lean_object* _init_l___regBuiltin_Lean_Elab_Term_StructInst_elabStructIns _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(930u); +x_1 = lean_unsigned_to_nat(948u); x_2 = lean_unsigned_to_nat(50u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); diff --git a/stage0/stdlib/Lean/Elab/Structure.c b/stage0/stdlib/Lean/Elab/Structure.c index 437a5c3270..af56e86e2c 100644 --- a/stage0/stdlib/Lean/Elab/Structure.c +++ b/stage0/stdlib/Lean/Elab/Structure.c @@ -163,6 +163,7 @@ static lean_object* l_Lean_Elab_elabAttr___at___private_Lean_Elab_Structure_0__L lean_object* l_Lean_mkHashSetImp___rarg(lean_object*); static lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_reprStructFieldInfo____x40_Lean_Elab_Structure___hyg_537____closed__18; lean_object* l_Lean_instBEqLocalInstance___boxed(lean_object*, lean_object*); +uint8_t l_Array_contains___at_Lean_findField_x3f___spec__1(lean_object*, lean_object*); static lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_addDefaults___spec__2___closed__1; LEAN_EXPORT lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_mkCoercionToCopiedParent___lambda__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_mkFreshId___at_Lean_Meta_mkFreshExprMVarAt___spec__2___rarg(lean_object*, lean_object*); @@ -222,7 +223,6 @@ lean_object* l_Lean_mkIdentFrom(lean_object*, lean_object*, uint8_t); LEAN_EXPORT lean_object* l_Lean_throwError___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_withFields_go___spec__3(lean_object*); LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_copyNewFieldsFrom_mkCompositeField___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_EXPORT lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_updateFieldInfoVal___spec__1(lean_object*, lean_object*, size_t, size_t, lean_object*); -uint8_t l_Array_contains___at___private_Lean_Meta_Match_Value_0__Lean_Meta_isUIntTypeName___spec__1(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_liftMacroM___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandCtor___spec__5___lambda__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__5___lambda__3___closed__5; static lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_getResultUniverse___closed__2; @@ -13970,7 +13970,7 @@ x_4 = l___private_Lean_Elab_Structure_0__Lean_Elab_Command_containsFieldName(x_1 if (x_4 == 0) { uint8_t x_5; -x_5 = l_Array_contains___at___private_Lean_Meta_Match_Value_0__Lean_Meta_isUIntTypeName___spec__1(x_2, x_3); +x_5 = l_Array_contains___at_Lean_findField_x3f___spec__1(x_2, x_3); if (x_5 == 0) { uint8_t x_6; @@ -24380,7 +24380,7 @@ else { lean_object* x_16; lean_object* x_17; lean_object* x_18; uint8_t x_26; x_16 = lean_array_uget(x_5, x_7); -x_26 = l_Array_contains___at___private_Lean_Meta_Match_Value_0__Lean_Meta_isUIntTypeName___spec__1(x_2, x_16); +x_26 = l_Array_contains___at_Lean_findField_x3f___spec__1(x_2, x_16); if (x_26 == 0) { lean_object* x_27; diff --git a/stage0/stdlib/Lean/Elab/Tactic.c b/stage0/stdlib/Lean/Elab/Tactic.c index 7e62507d56..4d01b75ff7 100644 --- a/stage0/stdlib/Lean/Elab/Tactic.c +++ b/stage0/stdlib/Lean/Elab/Tactic.c @@ -1,6 +1,6 @@ // Lean compiler output // Module: Lean.Elab.Tactic -// Imports: Lean.Elab.Term Lean.Elab.Tactic.Basic Lean.Elab.Tactic.ElabTerm Lean.Elab.Tactic.Induction Lean.Elab.Tactic.Generalize Lean.Elab.Tactic.Injection Lean.Elab.Tactic.Match Lean.Elab.Tactic.Rewrite Lean.Elab.Tactic.Location Lean.Elab.Tactic.SimpTrace Lean.Elab.Tactic.Simp Lean.Elab.Tactic.Simproc Lean.Elab.Tactic.BuiltinTactic Lean.Elab.Tactic.Split Lean.Elab.Tactic.Conv Lean.Elab.Tactic.Delta Lean.Elab.Tactic.Meta Lean.Elab.Tactic.Unfold Lean.Elab.Tactic.Cache Lean.Elab.Tactic.Calc Lean.Elab.Tactic.Congr Lean.Elab.Tactic.Guard Lean.Elab.Tactic.RCases Lean.Elab.Tactic.Repeat Lean.Elab.Tactic.Ext Lean.Elab.Tactic.Change Lean.Elab.Tactic.FalseOrByContra Lean.Elab.Tactic.Omega Lean.Elab.Tactic.Simpa Lean.Elab.Tactic.NormCast Lean.Elab.Tactic.Symm Lean.Elab.Tactic.SolveByElim +// Imports: Lean.Elab.Term Lean.Elab.Tactic.Basic Lean.Elab.Tactic.ElabTerm Lean.Elab.Tactic.Induction Lean.Elab.Tactic.Generalize Lean.Elab.Tactic.Injection Lean.Elab.Tactic.Match Lean.Elab.Tactic.Rewrite Lean.Elab.Tactic.Location Lean.Elab.Tactic.SimpTrace Lean.Elab.Tactic.Simp Lean.Elab.Tactic.Simproc Lean.Elab.Tactic.BuiltinTactic Lean.Elab.Tactic.Split Lean.Elab.Tactic.Conv Lean.Elab.Tactic.Delta Lean.Elab.Tactic.Meta Lean.Elab.Tactic.Unfold Lean.Elab.Tactic.Cache Lean.Elab.Tactic.Calc Lean.Elab.Tactic.Congr Lean.Elab.Tactic.Guard Lean.Elab.Tactic.RCases Lean.Elab.Tactic.Repeat Lean.Elab.Tactic.Ext Lean.Elab.Tactic.Change Lean.Elab.Tactic.FalseOrByContra Lean.Elab.Tactic.Omega Lean.Elab.Tactic.Simpa Lean.Elab.Tactic.NormCast Lean.Elab.Tactic.Symm Lean.Elab.Tactic.SolveByElim Lean.Elab.Tactic.LibrarySearch #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -45,6 +45,7 @@ lean_object* initialize_Lean_Elab_Tactic_Simpa(uint8_t builtin, lean_object*); lean_object* initialize_Lean_Elab_Tactic_NormCast(uint8_t builtin, lean_object*); lean_object* initialize_Lean_Elab_Tactic_Symm(uint8_t builtin, lean_object*); lean_object* initialize_Lean_Elab_Tactic_SolveByElim(uint8_t builtin, lean_object*); +lean_object* initialize_Lean_Elab_Tactic_LibrarySearch(uint8_t builtin, lean_object*); static bool _G_initialized = false; LEAN_EXPORT lean_object* initialize_Lean_Elab_Tactic(uint8_t builtin, lean_object* w) { lean_object * res; @@ -146,6 +147,9 @@ lean_dec_ref(res); res = initialize_Lean_Elab_Tactic_SolveByElim(builtin, lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +res = initialize_Lean_Elab_Tactic_LibrarySearch(builtin, lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); return lean_io_result_mk_ok(lean_box(0)); } #ifdef __cplusplus diff --git a/stage0/stdlib/Lean/Elab/Tactic/Conv/Delta.c b/stage0/stdlib/Lean/Elab/Tactic/Conv/Delta.c index 98ecb6f7e9..2e58e08495 100644 --- a/stage0/stdlib/Lean/Elab/Tactic/Conv/Delta.c +++ b/stage0/stdlib/Lean/Elab/Tactic/Conv/Delta.c @@ -28,6 +28,7 @@ static lean_object* l___regBuiltin_Lean_Elab_Tactic_Conv_evalDelta___closed__4; static lean_object* l___regBuiltin_Lean_Elab_Tactic_Conv_evalDelta___closed__8; size_t lean_usize_of_nat(lean_object*); static lean_object* l___regBuiltin_Lean_Elab_Tactic_Conv_evalDelta___closed__2; +lean_object* l_Array_contains___at_Lean_findField_x3f___spec__1___boxed(lean_object*, lean_object*); static lean_object* l___regBuiltin_Lean_Elab_Tactic_Conv_evalDelta___closed__11; lean_object* l_Lean_Elab_Tactic_Conv_changeLhs(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_Conv_getLhs(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -47,7 +48,6 @@ lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_evalDelta___spec__19(s LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Conv_evalDelta(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_Conv_evalDelta_declRange___closed__2; static lean_object* l___regBuiltin_Lean_Elab_Tactic_Conv_evalDelta_declRange___closed__5; -lean_object* l_Array_contains___at___private_Lean_Meta_Match_Value_0__Lean_Meta_isUIntTypeName___spec__1___boxed(lean_object*, lean_object*); static lean_object* l___regBuiltin_Lean_Elab_Tactic_Conv_evalDelta_declRange___closed__3; lean_object* lean_array_get_size(lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Conv_evalDelta___lambda__1(size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -97,7 +97,7 @@ lean_inc(x_20); x_21 = lean_ctor_get(x_19, 1); lean_inc(x_21); lean_dec(x_19); -x_22 = lean_alloc_closure((void*)(l_Array_contains___at___private_Lean_Meta_Match_Value_0__Lean_Meta_isUIntTypeName___spec__1___boxed), 2, 1); +x_22 = lean_alloc_closure((void*)(l_Array_contains___at_Lean_findField_x3f___spec__1___boxed), 2, 1); lean_closure_set(x_22, 0, x_14); lean_inc(x_11); lean_inc(x_10); diff --git a/stage0/stdlib/Lean/Elab/Tactic/Ext.c b/stage0/stdlib/Lean/Elab/Tactic/Ext.c index 5e45945386..b67a210f7f 100644 --- a/stage0/stdlib/Lean/Elab/Tactic/Ext.c +++ b/stage0/stdlib/Lean/Elab/Tactic/Ext.c @@ -150,6 +150,7 @@ LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Ext_ExtTheorems_eraseCore(lean_objec lean_object* l_Lean_Elab_Command_elabCommand(lean_object*, 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_Elab_Tactic_Ext_ExtTheorems_erase___spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Meta_forallTelescope___at_Lean_Meta_mapForallTelescope_x27___spec__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Meta_DiscrTree_insertCore___at_Lean_Elab_Tactic_Ext_initFn____x40_Lean_Elab_Tactic_Ext___hyg_321____spec__1___closed__2; lean_object* lean_array_fset(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_findAux___at_Lean_Elab_Tactic_Ext_initFn____x40_Lean_Elab_Tactic_Ext___hyg_321____spec__3___boxed(lean_object*, lean_object*, lean_object*); @@ -408,7 +409,6 @@ static lean_object* l_Lean_Elab_Tactic_Ext_initFn____x40_Lean_Elab_Tactic_Ext___ LEAN_EXPORT lean_object* l_Lean_throwErrorAt___at_Lean_Elab_Tactic_Ext_elabExtType___spec__4(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_Ext_evalApplyExtTheorem___closed__1; lean_object* l_Lean_addMessageContextPartial___at_Lean_Elab_Command_instAddMessageContextCommandElabM___spec__1(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_getArg(lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Ext_initFn____x40_Lean_Elab_Tactic_Ext___hyg_614____lambda__6___closed__5; lean_object* l___private_Init_Util_0__mkPanicMessageWithDecl(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -9155,7 +9155,7 @@ lean_closure_set(x_17, 0, x_11); lean_closure_set(x_17, 1, x_16); lean_closure_set(x_17, 2, x_1); lean_closure_set(x_17, 3, x_3); -x_18 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_14, x_17, x_5, x_6, x_7, x_8, x_15); +x_18 = l_Lean_Meta_forallTelescope___at_Lean_Meta_mapForallTelescope_x27___spec__1___rarg(x_14, x_17, x_5, x_6, x_7, x_8, x_15); return x_18; } else diff --git a/stage0/stdlib/Lean/Elab/Tactic/LibrarySearch.c b/stage0/stdlib/Lean/Elab/Tactic/LibrarySearch.c new file mode 100644 index 0000000000..f0a70c3f37 --- /dev/null +++ b/stage0/stdlib/Lean/Elab/Tactic/LibrarySearch.c @@ -0,0 +1,3349 @@ +// Lean compiler output +// Module: Lean.Elab.Tactic.LibrarySearch +// Imports: Lean.Meta.Tactic.LibrarySearch Lean.Meta.Tactic.TryThis Lean.Elab.Tactic.ElabTerm +#include +#if defined(__clang__) +#pragma clang diagnostic ignored "-Wunused-parameter" +#pragma clang diagnostic ignored "-Wunused-label" +#elif defined(__GNUC__) && !defined(__CLANG__) +#pragma GCC diagnostic ignored "-Wunused-parameter" +#pragma GCC diagnostic ignored "-Wunused-label" +#pragma GCC diagnostic ignored "-Wunused-but-set-variable" +#endif +#ifdef __cplusplus +extern "C" { +#endif +static lean_object* l___regBuiltin_Lean_Elab_LibrarySearch_evalExact_declRange___closed__7; +LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_LibrarySearch_elabExact_x3fTerm___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_Meta_mkSorry(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_LibrarySearch_evalApply_declRange(lean_object*); +LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_LibrarySearch_exact_x3f___spec__4___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___regBuiltin_Lean_Elab_LibrarySearch_evalExact_declRange___closed__3; +LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_LibrarySearch_evalExact(lean_object*); +LEAN_EXPORT lean_object* l_List_mapTR_loop___at_Lean_Elab_LibrarySearch_exact_x3f___spec__1(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_LibrarySearch_evalApply(lean_object*, lean_object*, 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*); +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_LibrarySearch_evalExact___spec__1(lean_object*, size_t, size_t, lean_object*); +static lean_object* l_Lean_Elab_LibrarySearch_evalExact___closed__1; +lean_object* l___private_Lean_Meta_Basic_0__Lean_Meta_withMCtxImp___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_getFVarIds___spec__1(size_t, size_t, 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_LibrarySearch_elabExact_x3fTerm___closed__2; +static lean_object* l___regBuiltin_Lean_Elab_LibrarySearch_evalExact___closed__5; +uint8_t l_List_all___rarg(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_LibrarySearch_elabExact_x3fTerm(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Meta_LibrarySearch_solveByElim(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Meta_LibrarySearch_librarySearch(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_sequenceMap___at___aux__Init__NotationExtra______macroRules__term_x25_x5b___x7c___x5d__1___spec__1(lean_object*, lean_object*); +static lean_object* l_Lean_Elab_LibrarySearch_elabExact_x3fTerm___lambda__4___closed__2; +LEAN_EXPORT lean_object* l_Lean_Elab_LibrarySearch_exact_x3f___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_EXPORT lean_object* l_Lean_Elab_LibrarySearch_exact_x3f___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_Meta_Tactic_TryThis_addTermSuggestion(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_LibrarySearch_evalApply_declRange___closed__5; +extern lean_object* l_Lean_Elab_Tactic_tacticElabAttribute; +static lean_object* l___regBuiltin_Lean_Elab_LibrarySearch_elabExact_x3fTerm___closed__1; +lean_object* lean_array_push(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_LibrarySearch_exact_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* l_Lean_Syntax_getArgs(lean_object*); +static lean_object* l___regBuiltin_Lean_Elab_LibrarySearch_evalApply_declRange___closed__3; +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*); +lean_object* lean_array_fget(lean_object*, lean_object*); +lean_object* l_Lean_Elab_Tactic_getMainGoal(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_LibrarySearch_exact_x3f___lambda__5___closed__1; +static lean_object* l_Lean_Elab_LibrarySearch_elabExact_x3fTerm___closed__1; +lean_object* l_Lean_addBuiltinDeclarationRanges(lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_LibrarySearch_exact_x3f___lambda__6___closed__1; +uint8_t l_Lean_Syntax_isOfKind(lean_object*, lean_object*); +static lean_object* l___regBuiltin_Lean_Elab_LibrarySearch_elabExact_x3fTerm___closed__2; +lean_object* l_Lean_stringToMessageData(lean_object*); +lean_object* l_Lean_Expr_mvar___override(lean_object*); +static lean_object* l_Lean_Elab_LibrarySearch_evalApply___closed__3; +LEAN_EXPORT lean_object* l_Array_sequenceMap___at_Lean_Elab_LibrarySearch_evalExact___spec__2___boxed(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_LibrarySearch_exact_x3f___boxed__const__1; +static lean_object* l_Lean_Elab_LibrarySearch_exact_x3f___closed__1; +static lean_object* l___regBuiltin_Lean_Elab_LibrarySearch_elabExact_x3fTerm_declRange___closed__6; +LEAN_EXPORT lean_object* l_Lean_Elab_LibrarySearch_elabExact_x3fTerm___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_withMCtx___at_Lean_Elab_LibrarySearch_elabExact_x3fTerm___spec__2___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_LibrarySearch_exact_x3f___lambda__5___closed__4; +uint8_t l_Lean_Expr_hasMVar(lean_object*); +static lean_object* l___regBuiltin_Lean_Elab_LibrarySearch_elabExact_x3fTerm___closed__4; +LEAN_EXPORT uint8_t l_Lean_Elab_LibrarySearch_exact_x3f___lambda__2(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_LibrarySearch_evalExact___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___regBuiltin_Lean_Elab_LibrarySearch_evalApply_declRange___closed__1; +size_t lean_usize_of_nat(lean_object*); +static lean_object* l_Lean_Elab_LibrarySearch_evalApply___closed__1; +lean_object* l_Lean_log___at_Lean_Elab_Term_exceptionToSorry___spec__2(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_sequenceMap_loop___at_Lean_Elab_LibrarySearch_evalExact___spec__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_LibrarySearch_elabExact_x3fTerm___lambda__3(lean_object*, lean_object*, lean_object*, 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*); +LEAN_EXPORT lean_object* l_Lean_Elab_LibrarySearch_elabExact_x3fTerm___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* lean_st_ref_take(lean_object*, lean_object*); +static lean_object* l_Lean_Elab_LibrarySearch_exact_x3f___lambda__5___closed__3; +static lean_object* l_Lean_Elab_LibrarySearch_evalExact___closed__3; +LEAN_EXPORT lean_object* l_Lean_Elab_LibrarySearch_elabExact_x3fTerm___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_LibrarySearch_evalApply___closed__1; +static lean_object* l___regBuiltin_Lean_Elab_LibrarySearch_evalExact___closed__4; +LEAN_EXPORT lean_object* l_Lean_Elab_LibrarySearch_exact_x3f___lambda__1(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___regBuiltin_Lean_Elab_LibrarySearch_evalApply_declRange___closed__2; +static lean_object* l___regBuiltin_Lean_Elab_LibrarySearch_evalApply_declRange___closed__7; +static lean_object* l_Lean_Elab_LibrarySearch_exact_x3f___lambda__5___closed__2; +LEAN_EXPORT lean_object* l_Lean_Meta_withMCtx___at_Lean_Elab_LibrarySearch_exact_x3f___spec__3___rarg(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_LibrarySearch_elabExact_x3fTerm___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_MVarId_withContext___at___private_Lean_Meta_SynthInstance_0__Lean_Meta_synthPendingImp___spec__2___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_sequenceMap_loop___at_Lean_Elab_LibrarySearch_evalExact___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___regBuiltin_Lean_Elab_LibrarySearch_evalApply___closed__3; +lean_object* lean_st_ref_get(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_instantiateMVars___at_Lean_Elab_LibrarySearch_exact_x3f___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* l_Lean_log___at_Lean_Elab_Tactic_closeUsingOrAdmit___spec__3(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___regBuiltin_Lean_Elab_LibrarySearch_evalExact_declRange___closed__2; +static lean_object* l_Lean_Elab_LibrarySearch_evalExact___lambda__1___closed__1; +lean_object* lean_array_to_list(lean_object*, lean_object*); +static lean_object* l_Lean_Elab_LibrarySearch_evalExact___closed__6; +extern lean_object* l_Lean_Elab_Term_termElabAttribute; +lean_object* l_Lean_MVarId_withContext___at_Lean_Elab_Tactic_withMainContext___spec__1___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_LibrarySearch_evalExact___closed__4; +lean_object* l_Lean_Meta_Tactic_TryThis_addExactSuggestion(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_reportOutOfHeartbeats(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___regBuiltin_Lean_Elab_LibrarySearch_elabExact_x3fTerm_declRange___closed__3; +static lean_object* l___regBuiltin_Lean_Elab_LibrarySearch_evalExact_declRange___closed__4; +LEAN_EXPORT lean_object* l_Lean_Elab_LibrarySearch_exact_x3f___lambda__2___boxed(lean_object*, lean_object*); +static lean_object* l___regBuiltin_Lean_Elab_LibrarySearch_evalExact___closed__6; +lean_object* l_Lean_instantiateMVars___at_Lean_Elab_Tactic_getMainTarget___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_Lean_Elab_LibrarySearch_evalApply___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_Elab_LibrarySearch_exact_x3f___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___regBuiltin_Lean_Elab_LibrarySearch_evalApply___closed__2; +LEAN_EXPORT lean_object* l_Lean_Elab_LibrarySearch_evalExact___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* l_Lean_Name_str___override(lean_object*, lean_object*); +static lean_object* l___regBuiltin_Lean_Elab_LibrarySearch_evalExact___closed__2; +static lean_object* l___regBuiltin_Lean_Elab_LibrarySearch_evalApply_declRange___closed__6; +static lean_object* l_Lean_Elab_LibrarySearch_evalExact___closed__5; +static lean_object* l_Lean_Elab_LibrarySearch_exact_x3f___lambda__5___closed__5; +LEAN_EXPORT lean_object* l_Lean_Elab_LibrarySearch_exact_x3f___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_EXPORT lean_object* l_Array_sequenceMap___at_Lean_Elab_LibrarySearch_evalExact___spec__2(lean_object*, lean_object*); +lean_object* l_Lean_Syntax_getArg(lean_object*, lean_object*); +static lean_object* l_Lean_Elab_LibrarySearch_elabExact_x3fTerm___lambda__4___closed__1; +uint8_t l_Lean_Syntax_matchesNull(lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_Basic_0__Lean_Meta_mkFreshExprMVarImpl(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_LibrarySearch_evalExact_declRange(lean_object*); +static lean_object* l___regBuiltin_Lean_Elab_LibrarySearch_evalExact_declRange___closed__5; +static lean_object* l___regBuiltin_Lean_Elab_LibrarySearch_evalExact_declRange___closed__1; +LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_LibrarySearch_elabExact_x3fTerm___spec__3(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___regBuiltin_Lean_Elab_LibrarySearch_evalApply_declRange___closed__4; +lean_object* l_Lean_instantiateMVars___at___private_Lean_Meta_Basic_0__Lean_Meta_isClassApp_x3f___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_instantiateMVars___at_Lean_Elab_LibrarySearch_exact_x3f___spec__2(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_LibrarySearch_exact_x3f___lambda__6___closed__2; +LEAN_EXPORT lean_object* l_Lean_Elab_LibrarySearch_evalExact(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_LibrarySearch_evalExact___closed__1; +static lean_object* l_Lean_Elab_LibrarySearch_elabExact_x3fTerm___lambda__4___closed__3; +LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_LibrarySearch_elabExact_x3fTerm(lean_object*); +static lean_object* l_Lean_Elab_LibrarySearch_evalExact___lambda__1___closed__3; +LEAN_EXPORT lean_object* l_Lean_Elab_LibrarySearch_elabExact_x3fTerm___lambda__1(uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_LibrarySearch_elabExact_x3fTerm___spec__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_Elab_LibrarySearch_exact_x3f___lambda__5(lean_object*, lean_object*, lean_object*, size_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 lean_nat_dec_eq(lean_object*, lean_object*); +uint8_t lean_nat_dec_lt(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_LibrarySearch_evalExact___lambda__2(lean_object*); +LEAN_EXPORT lean_object* l_Lean_instantiateMVars___at_Lean_Elab_LibrarySearch_elabExact_x3fTerm___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_LibrarySearch_evalExact___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_Elab_LibrarySearch_evalExact___closed__8; +LEAN_EXPORT lean_object* l_Lean_Meta_withMCtx___at_Lean_Elab_LibrarySearch_elabExact_x3fTerm___spec__2(lean_object*); +static lean_object* l_Lean_Elab_LibrarySearch_evalExact___closed__2; +lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Term_elabLetMVar___spec__1___rarg(lean_object*); +lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_evalExact___spec__1___rarg(lean_object*); +uint8_t l_Lean_Syntax_isNone(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_LibrarySearch_exact_x3f___lambda__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_LibrarySearch_elabExact_x3fTerm___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_nat_sub(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_LibrarySearch_elabExact_x3fTerm___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* l_List_reverse___rarg(lean_object*); +static lean_object* l_Lean_Elab_LibrarySearch_evalApply___closed__2; +LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_LibrarySearch_exact_x3f___spec__4(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_EXPORT lean_object* l_Lean_Meta_withMCtx___at_Lean_Elab_LibrarySearch_exact_x3f___spec__3(lean_object*); +uint8_t l_Lean_Expr_occurs(lean_object*, lean_object*); +lean_object* l_Lean_instantiateMVarsCore(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_LibrarySearch_exact_x3f(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +size_t lean_usize_add(size_t, size_t); +static lean_object* l_Lean_Elab_LibrarySearch_elabExact_x3fTerm___lambda__5___closed__1; +static lean_object* l___regBuiltin_Lean_Elab_LibrarySearch_evalExact_declRange___closed__6; +static lean_object* l___regBuiltin_Lean_Elab_LibrarySearch_elabExact_x3fTerm_declRange___closed__7; +static lean_object* l_Lean_Elab_LibrarySearch_evalExact___closed__7; +lean_object* lean_array_uget(lean_object*, size_t); +lean_object* l_Lean_Expr_fvar___override(lean_object*); +lean_object* l_Lean_throwError___at_Lean_Elab_Tactic_evalTactic___spec__2(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_LibrarySearch_elabExact_x3fTerm___closed__3; +LEAN_EXPORT lean_object* l_Lean_Elab_LibrarySearch_elabExact_x3fTerm___lambda__3___boxed(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_LibrarySearch_elabExact_x3fTerm_declRange___closed__2; +lean_object* lean_st_ref_set(lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_LibrarySearch_elabExact_x3fTerm___lambda__5___closed__2; +static lean_object* l___regBuiltin_Lean_Elab_LibrarySearch_evalExact___closed__3; +lean_object* l_Lean_Name_mkStr4(lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_LibrarySearch_exact_x3f___spec__4___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___regBuiltin_Lean_Elab_LibrarySearch_elabExact_x3fTerm_declRange(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_LibrarySearch_exact_x3f___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_object*); +lean_object* l_Lean_Expr_headBeta(lean_object*); +lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Syntax_SepArray_getElems___spec__1(lean_object*, size_t, size_t, lean_object*); +lean_object* lean_array_get_size(lean_object*); +LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_LibrarySearch_evalApply(lean_object*); +uint8_t lean_nat_dec_le(lean_object*, lean_object*); +uint8_t lean_usize_dec_lt(size_t, size_t); +lean_object* l_Lean_Elab_admitGoal(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_instantiateMVars___at_Lean_Elab_LibrarySearch_elabExact_x3fTerm___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_MVarId_intros(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* lean_nat_add(lean_object*, lean_object*); +static lean_object* l_Lean_Elab_LibrarySearch_evalExact___lambda__1___closed__2; +LEAN_EXPORT lean_object* l_Lean_Elab_LibrarySearch_exact_x3f___lambda__6(size_t, size_t, 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* l_Lean_Expr_mvarId_x21(lean_object*); +static lean_object* l___regBuiltin_Lean_Elab_LibrarySearch_elabExact_x3fTerm_declRange___closed__4; +static lean_object* l___regBuiltin_Lean_Elab_LibrarySearch_elabExact_x3fTerm_declRange___closed__5; +lean_object* lean_array_uset(lean_object*, size_t, lean_object*); +lean_object* l_Lean_MVarId_withContext___at_Lean_Elab_Tactic_run___spec__1___rarg(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_LibrarySearch_evalApply___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_Array_forInUnsafe_loop___at_Lean_Elab_LibrarySearch_elabExact_x3fTerm___spec__3___lambda__1___closed__1; +static lean_object* l___regBuiltin_Lean_Elab_LibrarySearch_elabExact_x3fTerm_declRange___closed__1; +LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_LibrarySearch_exact_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_object*, lean_object*, lean_object*); +uint8_t l_Array_isEmpty___rarg(lean_object*); +LEAN_EXPORT lean_object* l_List_mapTR_loop___at_Lean_Elab_LibrarySearch_exact_x3f___spec__1(lean_object* x_1, lean_object* x_2) { +_start: +{ +if (lean_obj_tag(x_1) == 0) +{ +lean_object* x_3; +x_3 = l_List_reverse___rarg(x_2); +return x_3; +} +else +{ +uint8_t x_4; +x_4 = !lean_is_exclusive(x_1); +if (x_4 == 0) +{ +lean_object* x_5; lean_object* x_6; lean_object* x_7; +x_5 = lean_ctor_get(x_1, 0); +x_6 = lean_ctor_get(x_1, 1); +x_7 = l_Lean_Expr_fvar___override(x_5); +lean_ctor_set(x_1, 1, x_2); +lean_ctor_set(x_1, 0, x_7); +{ +lean_object* _tmp_0 = x_6; +lean_object* _tmp_1 = x_1; +x_1 = _tmp_0; +x_2 = _tmp_1; +} +goto _start; +} +else +{ +lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; +x_9 = lean_ctor_get(x_1, 0); +x_10 = lean_ctor_get(x_1, 1); +lean_inc(x_10); +lean_inc(x_9); +lean_dec(x_1); +x_11 = l_Lean_Expr_fvar___override(x_9); +x_12 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_12, 0, x_11); +lean_ctor_set(x_12, 1, x_2); +x_1 = x_10; +x_2 = x_12; +goto _start; +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_instantiateMVars___at_Lean_Elab_LibrarySearch_exact_x3f___spec__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) { +_start: +{ +uint8_t x_11; +x_11 = l_Lean_Expr_hasMVar(x_1); +if (x_11 == 0) +{ +lean_object* x_12; +x_12 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_12, 0, x_1); +lean_ctor_set(x_12, 1, x_10); +return x_12; +} +else +{ +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; uint8_t x_23; +x_13 = lean_st_ref_get(x_7, x_10); +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_ctor_get(x_14, 0); +lean_inc(x_16); +lean_dec(x_14); +x_17 = l_Lean_instantiateMVarsCore(x_16, x_1); +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 = lean_st_ref_take(x_7, x_15); +x_21 = lean_ctor_get(x_20, 0); +lean_inc(x_21); +x_22 = lean_ctor_get(x_20, 1); +lean_inc(x_22); +lean_dec(x_20); +x_23 = !lean_is_exclusive(x_21); +if (x_23 == 0) +{ +lean_object* x_24; lean_object* x_25; uint8_t x_26; +x_24 = lean_ctor_get(x_21, 0); +lean_dec(x_24); +lean_ctor_set(x_21, 0, x_19); +x_25 = lean_st_ref_set(x_7, x_21, x_22); +x_26 = !lean_is_exclusive(x_25); +if (x_26 == 0) +{ +lean_object* x_27; +x_27 = lean_ctor_get(x_25, 0); +lean_dec(x_27); +lean_ctor_set(x_25, 0, x_18); +return x_25; +} +else +{ +lean_object* x_28; lean_object* x_29; +x_28 = lean_ctor_get(x_25, 1); +lean_inc(x_28); +lean_dec(x_25); +x_29 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_29, 0, x_18); +lean_ctor_set(x_29, 1, x_28); +return x_29; +} +} +else +{ +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; +x_30 = lean_ctor_get(x_21, 1); +x_31 = lean_ctor_get(x_21, 2); +x_32 = lean_ctor_get(x_21, 3); +lean_inc(x_32); +lean_inc(x_31); +lean_inc(x_30); +lean_dec(x_21); +x_33 = lean_alloc_ctor(0, 4, 0); +lean_ctor_set(x_33, 0, x_19); +lean_ctor_set(x_33, 1, x_30); +lean_ctor_set(x_33, 2, x_31); +lean_ctor_set(x_33, 3, x_32); +x_34 = lean_st_ref_set(x_7, x_33, x_22); +x_35 = lean_ctor_get(x_34, 1); +lean_inc(x_35); +if (lean_is_exclusive(x_34)) { + lean_ctor_release(x_34, 0); + lean_ctor_release(x_34, 1); + x_36 = x_34; +} else { + lean_dec_ref(x_34); + x_36 = lean_box(0); +} +if (lean_is_scalar(x_36)) { + x_37 = lean_alloc_ctor(0, 2, 0); +} else { + x_37 = x_36; +} +lean_ctor_set(x_37, 0, x_18); +lean_ctor_set(x_37, 1, x_35); +return x_37; +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_withMCtx___at_Lean_Elab_LibrarySearch_exact_x3f___spec__3___rarg(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) { +_start: +{ +lean_object* x_12; lean_object* x_13; +x_12 = lean_apply_4(x_2, x_3, x_4, x_5, x_6); +x_13 = l___private_Lean_Meta_Basic_0__Lean_Meta_withMCtxImp___rarg(x_1, x_12, x_7, x_8, x_9, x_10, x_11); +if (lean_obj_tag(x_13) == 0) +{ +uint8_t x_14; +x_14 = !lean_is_exclusive(x_13); +if (x_14 == 0) +{ +return x_13; +} +else +{ +lean_object* x_15; lean_object* x_16; lean_object* x_17; +x_15 = lean_ctor_get(x_13, 0); +x_16 = lean_ctor_get(x_13, 1); +lean_inc(x_16); +lean_inc(x_15); +lean_dec(x_13); +x_17 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_17, 0, x_15); +lean_ctor_set(x_17, 1, x_16); +return x_17; +} +} +else +{ +uint8_t x_18; +x_18 = !lean_is_exclusive(x_13); +if (x_18 == 0) +{ +return x_13; +} +else +{ +lean_object* x_19; lean_object* x_20; lean_object* x_21; +x_19 = lean_ctor_get(x_13, 0); +x_20 = lean_ctor_get(x_13, 1); +lean_inc(x_20); +lean_inc(x_19); +lean_dec(x_13); +x_21 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_21, 0, x_19); +lean_ctor_set(x_21, 1, x_20); +return x_21; +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_withMCtx___at_Lean_Elab_LibrarySearch_exact_x3f___spec__3(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = lean_alloc_closure((void*)(l_Lean_Meta_withMCtx___at_Lean_Elab_LibrarySearch_exact_x3f___spec__3___rarg), 11, 0); +return x_2; +} +} +LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_LibrarySearch_exact_x3f___spec__4___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, lean_object* x_11) { +_start: +{ +lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; uint8_t x_17; lean_object* x_18; +x_12 = l_Lean_instantiateMVars___at_Lean_Elab_LibrarySearch_exact_x3f___spec__2(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +x_13 = lean_ctor_get(x_12, 0); +lean_inc(x_13); +x_14 = lean_ctor_get(x_12, 1); +lean_inc(x_14); +lean_dec(x_12); +x_15 = l_Lean_Expr_headBeta(x_13); +x_16 = lean_box(0); +x_17 = 1; +x_18 = l_Lean_Meta_Tactic_TryThis_addExactSuggestion(x_2, x_15, x_16, x_17, x_16, x_7, x_8, x_9, x_10, x_14); +return x_18; +} +} +LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_LibrarySearch_exact_x3f___spec__4(lean_object* x_1, lean_object* x_2, lean_object* x_3, size_t x_4, size_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) { +_start: +{ +uint8_t x_16; +x_16 = lean_usize_dec_lt(x_5, x_4); +if (x_16 == 0) +{ +lean_object* x_17; +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_2); +lean_dec(x_1); +x_17 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_17, 0, x_6); +lean_ctor_set(x_17, 1, x_15); +return x_17; +} +else +{ +lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; +lean_dec(x_6); +x_18 = lean_array_uget(x_3, x_5); +x_19 = lean_ctor_get(x_18, 1); +lean_inc(x_19); +lean_dec(x_18); +lean_inc(x_2); +x_20 = l_Lean_Expr_mvar___override(x_2); +lean_inc(x_1); +x_21 = lean_alloc_closure((void*)(l_Array_forInUnsafe_loop___at_Lean_Elab_LibrarySearch_exact_x3f___spec__4___lambda__1___boxed), 11, 2); +lean_closure_set(x_21, 0, x_20); +lean_closure_set(x_21, 1, x_1); +lean_inc(x_14); +lean_inc(x_13); +lean_inc(x_12); +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +x_22 = l_Lean_Meta_withMCtx___at_Lean_Elab_LibrarySearch_exact_x3f___spec__3___rarg(x_19, x_21, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15); +if (lean_obj_tag(x_22) == 0) +{ +lean_object* x_23; size_t x_24; size_t x_25; lean_object* x_26; +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_5, x_24); +x_26 = lean_box(0); +x_5 = x_25; +x_6 = x_26; +x_15 = x_23; +goto _start; +} +else +{ +uint8_t x_28; +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_2); +lean_dec(x_1); +x_28 = !lean_is_exclusive(x_22); +if (x_28 == 0) +{ +return x_22; +} +else +{ +lean_object* x_29; lean_object* x_30; lean_object* x_31; +x_29 = lean_ctor_get(x_22, 0); +x_30 = lean_ctor_get(x_22, 1); +lean_inc(x_30); +lean_inc(x_29); +lean_dec(x_22); +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_EXPORT lean_object* l_Lean_Elab_LibrarySearch_exact_x3f___lambda__1(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) { +_start: +{ +lean_object* x_9; lean_object* x_10; +x_9 = lean_unsigned_to_nat(6u); +x_10 = l_Lean_Meta_LibrarySearch_solveByElim(x_1, x_2, x_3, x_9, x_4, x_5, x_6, x_7, x_8); +return x_10; +} +} +LEAN_EXPORT uint8_t l_Lean_Elab_LibrarySearch_exact_x3f___lambda__2(lean_object* x_1, lean_object* x_2) { +_start: +{ +uint8_t x_3; +x_3 = l_Lean_Expr_occurs(x_2, x_1); +return x_3; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_LibrarySearch_exact_x3f___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) { +_start: +{ +lean_object* x_8; lean_object* x_9; lean_object* x_10; +lean_inc(x_2); +x_8 = l_Lean_Expr_mvar___override(x_2); +x_9 = lean_alloc_closure((void*)(l_Lean_instantiateMVars___at___private_Lean_Meta_Basic_0__Lean_Meta_isClassApp_x3f___spec__1___boxed), 6, 1); +lean_closure_set(x_9, 0, x_8); +x_10 = l_Lean_MVarId_withContext___at___private_Lean_Meta_SynthInstance_0__Lean_Meta_synthPendingImp___spec__2___rarg(x_2, x_9, x_3, x_4, x_5, x_6, x_7); +if (lean_obj_tag(x_10) == 0) +{ +uint8_t x_11; +x_11 = !lean_is_exclusive(x_10); +if (x_11 == 0) +{ +lean_object* x_12; lean_object* x_13; uint8_t x_14; lean_object* x_15; +x_12 = lean_ctor_get(x_10, 0); +x_13 = lean_alloc_closure((void*)(l_Lean_Elab_LibrarySearch_exact_x3f___lambda__2___boxed), 2, 1); +lean_closure_set(x_13, 0, x_12); +x_14 = l_List_all___rarg(x_1, x_13); +x_15 = lean_box(x_14); +lean_ctor_set(x_10, 0, x_15); +return x_10; +} +else +{ +lean_object* x_16; lean_object* x_17; lean_object* x_18; uint8_t x_19; lean_object* x_20; lean_object* x_21; +x_16 = lean_ctor_get(x_10, 0); +x_17 = lean_ctor_get(x_10, 1); +lean_inc(x_17); +lean_inc(x_16); +lean_dec(x_10); +x_18 = lean_alloc_closure((void*)(l_Lean_Elab_LibrarySearch_exact_x3f___lambda__2___boxed), 2, 1); +lean_closure_set(x_18, 0, x_16); +x_19 = l_List_all___rarg(x_1, x_18); +x_20 = lean_box(x_19); +x_21 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_21, 0, x_20); +lean_ctor_set(x_21, 1, x_17); +return x_21; +} +} +else +{ +uint8_t x_22; +lean_dec(x_1); +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; +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_LibrarySearch_exact_x3f___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) { +_start: +{ +lean_object* x_12; +x_12 = l_Lean_Elab_admitGoal(x_1, x_7, x_8, x_9, x_10, x_11); +return x_12; +} +} +static lean_object* _init_l_Lean_Elab_LibrarySearch_exact_x3f___lambda__5___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("library_search", 14); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_LibrarySearch_exact_x3f___lambda__5___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Elab_LibrarySearch_exact_x3f___lambda__5___closed__1; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Elab_LibrarySearch_exact_x3f___lambda__5___closed__3() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("apply\? didn't find any relevant lemmas", 38); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_LibrarySearch_exact_x3f___lambda__5___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Elab_LibrarySearch_exact_x3f___lambda__5___closed__3; +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_Elab_LibrarySearch_exact_x3f___lambda__5___closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Elab_LibrarySearch_exact_x3f___lambda__5___closed__4; +x_2 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_LibrarySearch_exact_x3f___lambda__5(lean_object* x_1, lean_object* x_2, lean_object* x_3, size_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; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; size_t x_21; lean_object* x_22; lean_object* x_23; +x_16 = l_Lean_Elab_LibrarySearch_exact_x3f___lambda__5___closed__2; +x_17 = lean_unsigned_to_nat(90u); +x_18 = l_Lean_reportOutOfHeartbeats(x_16, x_1, x_17, x_13, x_14, x_15); +x_19 = lean_ctor_get(x_18, 1); +lean_inc(x_19); +lean_dec(x_18); +x_20 = lean_array_get_size(x_2); +x_21 = lean_usize_of_nat(x_20); +lean_dec(x_20); +x_22 = lean_box(0); +lean_inc(x_14); +lean_inc(x_13); +lean_inc(x_12); +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +x_23 = l_Array_forInUnsafe_loop___at_Lean_Elab_LibrarySearch_exact_x3f___spec__4(x_1, x_3, x_2, x_21, x_4, x_22, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_19); +if (lean_obj_tag(x_23) == 0) +{ +lean_object* x_24; uint8_t x_25; +x_24 = lean_ctor_get(x_23, 1); +lean_inc(x_24); +lean_dec(x_23); +x_25 = l_Array_isEmpty___rarg(x_2); +if (x_25 == 0) +{ +lean_object* x_26; +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +x_26 = l_Lean_Elab_admitGoal(x_5, x_11, x_12, x_13, x_14, x_24); +return x_26; +} +else +{ +lean_object* x_27; uint8_t x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; +x_27 = l_Lean_Elab_LibrarySearch_exact_x3f___lambda__5___closed__5; +x_28 = 2; +lean_inc(x_14); +lean_inc(x_13); +lean_inc(x_12); +lean_inc(x_11); +x_29 = l_Lean_log___at_Lean_Elab_Tactic_closeUsingOrAdmit___spec__3(x_27, x_28, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_24); +x_30 = lean_ctor_get(x_29, 1); +lean_inc(x_30); +lean_dec(x_29); +x_31 = l_Lean_Elab_admitGoal(x_5, x_11, x_12, x_13, x_14, x_30); +return x_31; +} +} +else +{ +uint8_t x_32; +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_5); +x_32 = !lean_is_exclusive(x_23); +if (x_32 == 0) +{ +return x_23; +} +else +{ +lean_object* x_33; lean_object* x_34; lean_object* x_35; +x_33 = lean_ctor_get(x_23, 0); +x_34 = lean_ctor_get(x_23, 1); +lean_inc(x_34); +lean_inc(x_33); +lean_dec(x_23); +x_35 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_35, 0, x_33); +lean_ctor_set(x_35, 1, x_34); +return x_35; +} +} +} +} +static lean_object* _init_l_Lean_Elab_LibrarySearch_exact_x3f___lambda__6___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("`exact\?` could not close the goal. Try `apply\?` to see partial suggestions.", 75); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_LibrarySearch_exact_x3f___lambda__6___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Elab_LibrarySearch_exact_x3f___lambda__6___closed__1; +x_2 = l_Lean_stringToMessageData(x_1); +return x_2; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_LibrarySearch_exact_x3f___lambda__6(size_t x_1, size_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, uint8_t 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: +{ +lean_object* 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_10); +lean_inc(x_9); +lean_inc(x_8); +x_17 = l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_getFVarIds___spec__1(x_1, x_2, x_3, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16); +if (lean_obj_tag(x_17) == 0) +{ +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_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 = lean_array_to_list(lean_box(0), x_18); +x_21 = lean_box(0); +x_22 = l_List_mapTR_loop___at_Lean_Elab_LibrarySearch_exact_x3f___spec__1(x_20, x_21); +lean_inc(x_22); +x_23 = lean_alloc_closure((void*)(l_Lean_Elab_LibrarySearch_exact_x3f___lambda__1___boxed), 8, 1); +lean_closure_set(x_23, 0, x_22); +x_24 = lean_alloc_closure((void*)(l_Lean_Elab_LibrarySearch_exact_x3f___lambda__3), 7, 1); +lean_closure_set(x_24, 0, x_22); +x_25 = lean_unsigned_to_nat(10u); +lean_inc(x_15); +lean_inc(x_14); +lean_inc(x_13); +lean_inc(x_12); +lean_inc(x_4); +x_26 = l_Lean_Meta_LibrarySearch_librarySearch(x_4, x_23, x_24, x_25, x_12, x_13, x_14, x_15, x_19); +if (lean_obj_tag(x_26) == 0) +{ +lean_object* x_27; +x_27 = lean_ctor_get(x_26, 0); +lean_inc(x_27); +if (lean_obj_tag(x_27) == 0) +{ +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; uint8_t x_35; lean_object* x_36; +lean_dec(x_4); +x_28 = lean_ctor_get(x_26, 1); +lean_inc(x_28); +lean_dec(x_26); +x_29 = l_Lean_Expr_mvar___override(x_5); +x_30 = l_Lean_instantiateMVars___at_Lean_Elab_Tactic_getMainTarget___spec__1(x_29, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_28); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +x_31 = lean_ctor_get(x_30, 0); +lean_inc(x_31); +x_32 = lean_ctor_get(x_30, 1); +lean_inc(x_32); +lean_dec(x_30); +x_33 = l_Lean_Expr_headBeta(x_31); +x_34 = lean_box(0); +x_35 = 0; +x_36 = l_Lean_Meta_Tactic_TryThis_addExactSuggestion(x_6, x_33, x_34, x_35, x_34, x_12, x_13, x_14, x_15, x_32); +return x_36; +} +else +{ +if (x_7 == 0) +{ +lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; +x_37 = lean_ctor_get(x_26, 1); +lean_inc(x_37); +lean_dec(x_26); +x_38 = lean_ctor_get(x_27, 0); +lean_inc(x_38); +lean_dec(x_27); +x_39 = lean_box(0); +x_40 = l_Lean_Elab_LibrarySearch_exact_x3f___lambda__5(x_6, x_38, x_5, x_2, x_4, x_39, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_37); +lean_dec(x_38); +return x_40; +} +else +{ +lean_object* x_41; lean_object* x_42; lean_object* x_43; uint8_t x_44; +lean_dec(x_27); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +x_41 = lean_ctor_get(x_26, 1); +lean_inc(x_41); +lean_dec(x_26); +x_42 = l_Lean_Elab_LibrarySearch_exact_x3f___lambda__6___closed__2; +x_43 = l_Lean_throwError___at_Lean_Elab_Tactic_evalTactic___spec__2(x_42, x_8, 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); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +x_44 = !lean_is_exclusive(x_43); +if (x_44 == 0) +{ +return x_43; +} +else +{ +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(1, 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_48; +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_6); +lean_dec(x_5); +lean_dec(x_4); +x_48 = !lean_is_exclusive(x_26); +if (x_48 == 0) +{ +return x_26; +} +else +{ +lean_object* x_49; lean_object* x_50; lean_object* x_51; +x_49 = lean_ctor_get(x_26, 0); +x_50 = lean_ctor_get(x_26, 1); +lean_inc(x_50); +lean_inc(x_49); +lean_dec(x_26); +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 +{ +uint8_t x_52; +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_6); +lean_dec(x_5); +lean_dec(x_4); +x_52 = !lean_is_exclusive(x_17); +if (x_52 == 0) +{ +return x_17; +} +else +{ +lean_object* x_53; lean_object* x_54; lean_object* x_55; +x_53 = lean_ctor_get(x_17, 0); +x_54 = lean_ctor_get(x_17, 1); +lean_inc(x_54); +lean_inc(x_53); +lean_dec(x_17); +x_55 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_55, 0, x_53); +lean_ctor_set(x_55, 1, x_54); +return x_55; +} +} +} +} +static lean_object* _init_l_Lean_Elab_LibrarySearch_exact_x3f___closed__1() { +_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_Elab_LibrarySearch_exact_x3f___boxed__const__1() { +_start: +{ +size_t x_1; lean_object* x_2; +x_1 = 0; +x_2 = lean_box_usize(x_1); +return x_2; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_LibrarySearch_exact_x3f(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) { +_start: +{ +lean_object* x_13; +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +x_13 = l_Lean_Elab_Tactic_getMainGoal(x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +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); +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +x_16 = l_Lean_Elab_Tactic_getMainGoal(x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_15); +if (lean_obj_tag(x_16) == 0) +{ +lean_object* x_17; lean_object* x_18; lean_object* x_19; +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); +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +x_19 = l_Lean_MVarId_intros(x_17, x_8, x_9, x_10, x_11, x_18); +if (lean_obj_tag(x_19) == 0) +{ +lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; +x_20 = lean_ctor_get(x_19, 0); +lean_inc(x_20); +x_21 = lean_ctor_get(x_19, 1); +lean_inc(x_21); +lean_dec(x_19); +x_22 = lean_ctor_get(x_20, 1); +lean_inc(x_22); +lean_dec(x_20); +if (lean_obj_tag(x_2) == 0) +{ +lean_object* x_32; +x_32 = l_Lean_Elab_LibrarySearch_exact_x3f___closed__1; +x_23 = x_32; +goto block_31; +} +else +{ +lean_object* x_33; +x_33 = lean_ctor_get(x_2, 0); +lean_inc(x_33); +lean_dec(x_2); +x_23 = x_33; +goto block_31; +} +block_31: +{ +lean_object* x_24; size_t x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; +x_24 = lean_array_get_size(x_23); +x_25 = lean_usize_of_nat(x_24); +lean_dec(x_24); +x_26 = lean_box_usize(x_25); +x_27 = l_Lean_Elab_LibrarySearch_exact_x3f___boxed__const__1; +x_28 = lean_box(x_3); +lean_inc(x_22); +x_29 = lean_alloc_closure((void*)(l_Lean_Elab_LibrarySearch_exact_x3f___lambda__6___boxed), 16, 7); +lean_closure_set(x_29, 0, x_26); +lean_closure_set(x_29, 1, x_27); +lean_closure_set(x_29, 2, x_23); +lean_closure_set(x_29, 3, x_22); +lean_closure_set(x_29, 4, x_14); +lean_closure_set(x_29, 5, x_1); +lean_closure_set(x_29, 6, x_28); +x_30 = l_Lean_MVarId_withContext___at_Lean_Elab_Tactic_withMainContext___spec__1___rarg(x_22, x_29, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_21); +return x_30; +} +} +else +{ +uint8_t x_34; +lean_dec(x_14); +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_2); +lean_dec(x_1); +x_34 = !lean_is_exclusive(x_19); +if (x_34 == 0) +{ +return x_19; +} +else +{ +lean_object* x_35; lean_object* x_36; lean_object* x_37; +x_35 = lean_ctor_get(x_19, 0); +x_36 = lean_ctor_get(x_19, 1); +lean_inc(x_36); +lean_inc(x_35); +lean_dec(x_19); +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_14); +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_2); +lean_dec(x_1); +x_38 = !lean_is_exclusive(x_16); +if (x_38 == 0) +{ +return x_16; +} +else +{ +lean_object* x_39; lean_object* x_40; lean_object* x_41; +x_39 = lean_ctor_get(x_16, 0); +x_40 = lean_ctor_get(x_16, 1); +lean_inc(x_40); +lean_inc(x_39); +lean_dec(x_16); +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; +} +} +} +else +{ +uint8_t x_42; +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_2); +lean_dec(x_1); +x_42 = !lean_is_exclusive(x_13); +if (x_42 == 0) +{ +return x_13; +} +else +{ +lean_object* x_43; lean_object* x_44; lean_object* x_45; +x_43 = lean_ctor_get(x_13, 0); +x_44 = lean_ctor_get(x_13, 1); +lean_inc(x_44); +lean_inc(x_43); +lean_dec(x_13); +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_EXPORT lean_object* l_Lean_instantiateMVars___at_Lean_Elab_LibrarySearch_exact_x3f___spec__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) { +_start: +{ +lean_object* x_11; +x_11 = l_Lean_instantiateMVars___at_Lean_Elab_LibrarySearch_exact_x3f___spec__2(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_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +return x_11; +} +} +LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_LibrarySearch_exact_x3f___spec__4___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, lean_object* x_11) { +_start: +{ +lean_object* x_12; +x_12 = l_Array_forInUnsafe_loop___at_Lean_Elab_LibrarySearch_exact_x3f___spec__4___lambda__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +return x_12; +} +} +LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_LibrarySearch_exact_x3f___spec__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: +{ +size_t x_16; size_t x_17; lean_object* x_18; +x_16 = lean_unbox_usize(x_4); +lean_dec(x_4); +x_17 = lean_unbox_usize(x_5); +lean_dec(x_5); +x_18 = l_Array_forInUnsafe_loop___at_Lean_Elab_LibrarySearch_exact_x3f___spec__4(x_1, x_2, x_3, x_16, x_17, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15); +lean_dec(x_3); +return x_18; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_LibrarySearch_exact_x3f___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) { +_start: +{ +uint8_t x_9; lean_object* x_10; +x_9 = lean_unbox(x_2); +lean_dec(x_2); +x_10 = l_Lean_Elab_LibrarySearch_exact_x3f___lambda__1(x_1, x_9, x_3, x_4, x_5, x_6, x_7, x_8); +return x_10; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_LibrarySearch_exact_x3f___lambda__2___boxed(lean_object* x_1, lean_object* x_2) { +_start: +{ +uint8_t x_3; lean_object* x_4; +x_3 = l_Lean_Elab_LibrarySearch_exact_x3f___lambda__2(x_1, x_2); +x_4 = lean_box(x_3); +return x_4; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_LibrarySearch_exact_x3f___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) { +_start: +{ +lean_object* x_12; +x_12 = l_Lean_Elab_LibrarySearch_exact_x3f___lambda__4(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +return x_12; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_LibrarySearch_exact_x3f___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) { +_start: +{ +size_t x_16; lean_object* x_17; +x_16 = lean_unbox_usize(x_4); +lean_dec(x_4); +x_17 = l_Lean_Elab_LibrarySearch_exact_x3f___lambda__5(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_6); +lean_dec(x_2); +return x_17; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_LibrarySearch_exact_x3f___lambda__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, 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: +{ +size_t x_17; size_t x_18; uint8_t x_19; lean_object* x_20; +x_17 = lean_unbox_usize(x_1); +lean_dec(x_1); +x_18 = lean_unbox_usize(x_2); +lean_dec(x_2); +x_19 = lean_unbox(x_7); +lean_dec(x_7); +x_20 = l_Lean_Elab_LibrarySearch_exact_x3f___lambda__6(x_17, x_18, x_3, x_4, x_5, x_6, x_19, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16); +return x_20; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_LibrarySearch_exact_x3f___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: +{ +uint8_t x_13; lean_object* x_14; +x_13 = lean_unbox(x_3); +lean_dec(x_3); +x_14 = l_Lean_Elab_LibrarySearch_exact_x3f(x_1, x_2, x_13, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +return x_14; +} +} +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_LibrarySearch_evalExact___spec__1(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_lt(x_3, x_2); +if (x_5 == 0) +{ +return x_4; +} +else +{ +lean_object* x_6; lean_object* x_7; lean_object* x_8; size_t x_9; size_t x_10; lean_object* x_11; +x_6 = lean_array_uget(x_4, x_3); +x_7 = lean_unsigned_to_nat(0u); +x_8 = lean_array_uset(x_4, x_3, x_7); +x_9 = 1; +x_10 = lean_usize_add(x_3, x_9); +x_11 = lean_array_uset(x_8, x_3, x_6); +x_3 = x_10; +x_4 = x_11; +goto _start; +} +} +} +LEAN_EXPORT lean_object* l_Array_sequenceMap_loop___at_Lean_Elab_LibrarySearch_evalExact___spec__3(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +_start: +{ +lean_object* x_6; uint8_t x_7; +x_6 = lean_array_get_size(x_1); +x_7 = lean_nat_dec_lt(x_4, x_6); +lean_dec(x_6); +if (x_7 == 0) +{ +lean_object* x_8; +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_8 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_8, 0, x_5); +return x_8; +} +else +{ +lean_object* x_9; uint8_t x_10; +x_9 = lean_unsigned_to_nat(0u); +x_10 = lean_nat_dec_eq(x_3, x_9); +if (x_10 == 0) +{ +lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; +x_11 = lean_unsigned_to_nat(1u); +x_12 = lean_nat_sub(x_3, x_11); +lean_dec(x_3); +x_13 = lean_array_fget(x_1, x_4); +lean_inc(x_2); +x_14 = lean_apply_1(x_2, x_13); +if (lean_obj_tag(x_14) == 0) +{ +lean_object* x_15; +lean_dec(x_12); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_2); +x_15 = lean_box(0); +return x_15; +} +else +{ +lean_object* x_16; lean_object* x_17; lean_object* x_18; +x_16 = lean_ctor_get(x_14, 0); +lean_inc(x_16); +lean_dec(x_14); +x_17 = lean_nat_add(x_4, x_11); +lean_dec(x_4); +x_18 = lean_array_push(x_5, x_16); +x_3 = x_12; +x_4 = x_17; +x_5 = x_18; +goto _start; +} +} +else +{ +lean_object* x_20; +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_20 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_20, 0, x_5); +return x_20; +} +} +} +} +LEAN_EXPORT lean_object* l_Array_sequenceMap___at_Lean_Elab_LibrarySearch_evalExact___spec__2(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; +x_3 = lean_array_get_size(x_1); +x_4 = lean_mk_empty_array_with_capacity(x_3); +x_5 = lean_unsigned_to_nat(0u); +x_6 = l_Array_sequenceMap_loop___at_Lean_Elab_LibrarySearch_evalExact___spec__3(x_1, x_2, x_3, x_5, x_4); +return x_6; +} +} +static lean_object* _init_l_Lean_Elab_LibrarySearch_evalExact___lambda__1___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("term", 4); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_LibrarySearch_evalExact___lambda__1___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Elab_LibrarySearch_evalExact___lambda__1___closed__1; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Elab_LibrarySearch_evalExact___lambda__1___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Elab_LibrarySearch_evalExact___lambda__1___closed__2; +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; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_LibrarySearch_evalExact___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, lean_object* x_11) { +_start: +{ +if (lean_obj_tag(x_2) == 0) +{ +lean_object* x_12; lean_object* x_13; uint8_t x_14; lean_object* x_15; +x_12 = lean_ctor_get(x_9, 5); +lean_inc(x_12); +x_13 = lean_box(0); +x_14 = 1; +x_15 = l_Lean_Elab_LibrarySearch_exact_x3f(x_12, x_13, x_14, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +return x_15; +} +else +{ +lean_object* x_16; uint8_t x_17; +x_16 = lean_ctor_get(x_9, 5); +lean_inc(x_16); +x_17 = !lean_is_exclusive(x_2); +if (x_17 == 0) +{ +lean_object* x_18; lean_object* x_19; size_t x_20; size_t x_21; lean_object* x_22; lean_object* x_23; uint8_t x_24; lean_object* x_25; +x_18 = lean_ctor_get(x_2, 0); +x_19 = lean_array_get_size(x_18); +x_20 = lean_usize_of_nat(x_19); +lean_dec(x_19); +x_21 = 0; +x_22 = l_Lean_Elab_LibrarySearch_evalExact___lambda__1___closed__3; +x_23 = l_Array_mapMUnsafe_map___at_Lean_Elab_LibrarySearch_evalExact___spec__1(x_22, x_20, x_21, x_18); +lean_ctor_set(x_2, 0, x_23); +x_24 = 1; +x_25 = l_Lean_Elab_LibrarySearch_exact_x3f(x_16, x_2, x_24, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +return x_25; +} +else +{ +lean_object* x_26; lean_object* x_27; size_t x_28; size_t x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; uint8_t x_33; lean_object* x_34; +x_26 = lean_ctor_get(x_2, 0); +lean_inc(x_26); +lean_dec(x_2); +x_27 = lean_array_get_size(x_26); +x_28 = lean_usize_of_nat(x_27); +lean_dec(x_27); +x_29 = 0; +x_30 = l_Lean_Elab_LibrarySearch_evalExact___lambda__1___closed__3; +x_31 = l_Array_mapMUnsafe_map___at_Lean_Elab_LibrarySearch_evalExact___spec__1(x_30, x_28, x_29, x_26); +x_32 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_32, 0, x_31); +x_33 = 1; +x_34 = l_Lean_Elab_LibrarySearch_exact_x3f(x_16, x_32, x_33, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +return x_34; +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_LibrarySearch_evalExact___lambda__2(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Elab_LibrarySearch_evalExact___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("Lean", 4); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_LibrarySearch_evalExact___closed__2() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("Parser", 6); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_LibrarySearch_evalExact___closed__3() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("Tactic", 6); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_LibrarySearch_evalExact___closed__4() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("exact\?", 6); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_LibrarySearch_evalExact___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_Lean_Elab_LibrarySearch_evalExact___closed__1; +x_2 = l_Lean_Elab_LibrarySearch_evalExact___closed__2; +x_3 = l_Lean_Elab_LibrarySearch_evalExact___closed__3; +x_4 = l_Lean_Elab_LibrarySearch_evalExact___closed__4; +x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); +return x_5; +} +} +static lean_object* _init_l_Lean_Elab_LibrarySearch_evalExact___closed__6() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Elab_LibrarySearch_evalExact___lambda__1___boxed), 11, 0); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_LibrarySearch_evalExact___closed__7() { +_start: +{ +uint8_t x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = 1; +x_2 = l_Lean_Elab_LibrarySearch_exact_x3f___closed__1; +x_3 = lean_box(x_1); +x_4 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_4, 0, x_3); +lean_ctor_set(x_4, 1, x_2); +return x_4; +} +} +static lean_object* _init_l_Lean_Elab_LibrarySearch_evalExact___closed__8() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Elab_LibrarySearch_evalExact___lambda__2), 1, 0); +return x_1; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_LibrarySearch_evalExact(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; uint8_t x_12; +x_11 = l_Lean_Elab_LibrarySearch_evalExact___closed__5; +lean_inc(x_1); +x_12 = l_Lean_Syntax_isOfKind(x_1, x_11); +if (x_12 == 0) +{ +lean_object* x_13; +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); +lean_dec(x_2); +lean_dec(x_1); +x_13 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_evalExact___spec__1___rarg(x_10); +return x_13; +} +else +{ +lean_object* x_14; lean_object* x_15; lean_object* x_16; uint8_t x_17; +x_14 = lean_unsigned_to_nat(1u); +x_15 = l_Lean_Syntax_getArg(x_1, x_14); +lean_dec(x_1); +x_16 = l_Lean_Elab_LibrarySearch_evalExact___closed__6; +x_17 = l_Lean_Syntax_isNone(x_15); +if (x_17 == 0) +{ +lean_object* x_18; uint8_t x_19; +x_18 = lean_unsigned_to_nat(2u); +lean_inc(x_15); +x_19 = l_Lean_Syntax_matchesNull(x_15, x_18); +if (x_19 == 0) +{ +lean_object* x_20; +lean_dec(x_15); +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); +lean_dec(x_2); +x_20 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_evalExact___spec__1___rarg(x_10); +return x_20; +} +else +{ +lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; uint8_t x_25; lean_object* x_26; +x_21 = l_Lean_Syntax_getArg(x_15, x_14); +lean_dec(x_15); +x_22 = l_Lean_Syntax_getArgs(x_21); +lean_dec(x_21); +x_23 = lean_array_get_size(x_22); +x_24 = lean_unsigned_to_nat(0u); +x_25 = lean_nat_dec_lt(x_24, x_23); +if (x_25 == 0) +{ +lean_object* x_38; +lean_dec(x_23); +lean_dec(x_22); +x_38 = l_Lean_Elab_LibrarySearch_exact_x3f___closed__1; +x_26 = x_38; +goto block_37; +} +else +{ +uint8_t x_39; +x_39 = lean_nat_dec_le(x_23, x_23); +if (x_39 == 0) +{ +lean_object* x_40; +lean_dec(x_23); +lean_dec(x_22); +x_40 = l_Lean_Elab_LibrarySearch_exact_x3f___closed__1; +x_26 = x_40; +goto block_37; +} +else +{ +size_t x_41; size_t x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; +x_41 = 0; +x_42 = lean_usize_of_nat(x_23); +lean_dec(x_23); +x_43 = l_Lean_Elab_LibrarySearch_evalExact___closed__7; +x_44 = l_Array_foldlMUnsafe_fold___at_Lean_Syntax_SepArray_getElems___spec__1(x_22, x_41, x_42, x_43); +lean_dec(x_22); +x_45 = lean_ctor_get(x_44, 1); +lean_inc(x_45); +lean_dec(x_44); +x_26 = x_45; +goto block_37; +} +} +block_37: +{ +lean_object* x_27; lean_object* x_28; +x_27 = l_Lean_Elab_LibrarySearch_evalExact___closed__8; +x_28 = l_Array_sequenceMap___at_Lean_Elab_LibrarySearch_evalExact___spec__2(x_26, x_27); +lean_dec(x_26); +if (lean_obj_tag(x_28) == 0) +{ +lean_object* x_29; +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); +lean_dec(x_2); +x_29 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_evalExact___spec__1___rarg(x_10); +return x_29; +} +else +{ +uint8_t x_30; +x_30 = !lean_is_exclusive(x_28); +if (x_30 == 0) +{ +lean_object* x_31; lean_object* x_32; +x_31 = lean_box(0); +x_32 = lean_apply_11(x_16, x_31, x_28, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +return x_32; +} +else +{ +lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; +x_33 = lean_ctor_get(x_28, 0); +lean_inc(x_33); +lean_dec(x_28); +x_34 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_34, 0, x_33); +x_35 = lean_box(0); +x_36 = lean_apply_11(x_16, x_35, x_34, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +return x_36; +} +} +} +} +} +else +{ +lean_object* x_46; lean_object* x_47; lean_object* x_48; +lean_dec(x_15); +x_46 = lean_box(0); +x_47 = lean_box(0); +x_48 = lean_apply_11(x_16, x_47, x_46, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +return x_48; +} +} +} +} +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_LibrarySearch_evalExact___spec__1___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_mapMUnsafe_map___at_Lean_Elab_LibrarySearch_evalExact___spec__1(x_1, x_5, x_6, x_4); +lean_dec(x_1); +return x_7; +} +} +LEAN_EXPORT lean_object* l_Array_sequenceMap_loop___at_Lean_Elab_LibrarySearch_evalExact___spec__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +_start: +{ +lean_object* x_6; +x_6 = l_Array_sequenceMap_loop___at_Lean_Elab_LibrarySearch_evalExact___spec__3(x_1, x_2, x_3, x_4, x_5); +lean_dec(x_1); +return x_6; +} +} +LEAN_EXPORT lean_object* l_Array_sequenceMap___at_Lean_Elab_LibrarySearch_evalExact___spec__2___boxed(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; +x_3 = l_Array_sequenceMap___at_Lean_Elab_LibrarySearch_evalExact___spec__2(x_1, x_2); +lean_dec(x_1); +return x_3; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_LibrarySearch_evalExact___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, lean_object* x_11) { +_start: +{ +lean_object* x_12; +x_12 = l_Lean_Elab_LibrarySearch_evalExact___lambda__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_1); +return x_12; +} +} +static lean_object* _init_l___regBuiltin_Lean_Elab_LibrarySearch_evalExact___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("Elab", 4); +return x_1; +} +} +static lean_object* _init_l___regBuiltin_Lean_Elab_LibrarySearch_evalExact___closed__2() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("LibrarySearch", 13); +return x_1; +} +} +static lean_object* _init_l___regBuiltin_Lean_Elab_LibrarySearch_evalExact___closed__3() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("evalExact", 9); +return x_1; +} +} +static lean_object* _init_l___regBuiltin_Lean_Elab_LibrarySearch_evalExact___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_Elab_LibrarySearch_evalExact___closed__1; +x_2 = l___regBuiltin_Lean_Elab_LibrarySearch_evalExact___closed__1; +x_3 = l___regBuiltin_Lean_Elab_LibrarySearch_evalExact___closed__2; +x_4 = l___regBuiltin_Lean_Elab_LibrarySearch_evalExact___closed__3; +x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); +return x_5; +} +} +static lean_object* _init_l___regBuiltin_Lean_Elab_LibrarySearch_evalExact___closed__5() { +_start: +{ +lean_object* x_1; +x_1 = l_Lean_Elab_Tactic_tacticElabAttribute; +return x_1; +} +} +static lean_object* _init_l___regBuiltin_Lean_Elab_LibrarySearch_evalExact___closed__6() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Elab_LibrarySearch_evalExact), 10, 0); +return x_1; +} +} +LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_LibrarySearch_evalExact(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; +x_2 = l___regBuiltin_Lean_Elab_LibrarySearch_evalExact___closed__5; +x_3 = l_Lean_Elab_LibrarySearch_evalExact___closed__5; +x_4 = l___regBuiltin_Lean_Elab_LibrarySearch_evalExact___closed__4; +x_5 = l___regBuiltin_Lean_Elab_LibrarySearch_evalExact___closed__6; +x_6 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_5, x_1); +return x_6; +} +} +static lean_object* _init_l___regBuiltin_Lean_Elab_LibrarySearch_evalExact_declRange___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_unsigned_to_nat(51u); +x_2 = lean_unsigned_to_nat(0u); +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_Lean_Elab_LibrarySearch_evalExact_declRange___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_unsigned_to_nat(54u); +x_2 = lean_unsigned_to_nat(33u); +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_Lean_Elab_LibrarySearch_evalExact_declRange___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_1 = l___regBuiltin_Lean_Elab_LibrarySearch_evalExact_declRange___closed__1; +x_2 = lean_unsigned_to_nat(0u); +x_3 = l___regBuiltin_Lean_Elab_LibrarySearch_evalExact_declRange___closed__2; +x_4 = lean_unsigned_to_nat(33u); +x_5 = lean_alloc_ctor(0, 4, 0); +lean_ctor_set(x_5, 0, x_1); +lean_ctor_set(x_5, 1, x_2); +lean_ctor_set(x_5, 2, x_3); +lean_ctor_set(x_5, 3, x_4); +return x_5; +} +} +static lean_object* _init_l___regBuiltin_Lean_Elab_LibrarySearch_evalExact_declRange___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_unsigned_to_nat(51u); +x_2 = lean_unsigned_to_nat(4u); +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_Lean_Elab_LibrarySearch_evalExact_declRange___closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_unsigned_to_nat(51u); +x_2 = lean_unsigned_to_nat(13u); +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_Lean_Elab_LibrarySearch_evalExact_declRange___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___regBuiltin_Lean_Elab_LibrarySearch_evalExact_declRange___closed__4; +x_2 = lean_unsigned_to_nat(4u); +x_3 = l___regBuiltin_Lean_Elab_LibrarySearch_evalExact_declRange___closed__5; +x_4 = lean_unsigned_to_nat(13u); +x_5 = lean_alloc_ctor(0, 4, 0); +lean_ctor_set(x_5, 0, x_1); +lean_ctor_set(x_5, 1, x_2); +lean_ctor_set(x_5, 2, x_3); +lean_ctor_set(x_5, 3, x_4); +return x_5; +} +} +static lean_object* _init_l___regBuiltin_Lean_Elab_LibrarySearch_evalExact_declRange___closed__7() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___regBuiltin_Lean_Elab_LibrarySearch_evalExact_declRange___closed__3; +x_2 = l___regBuiltin_Lean_Elab_LibrarySearch_evalExact_declRange___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); +return x_3; +} +} +LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_LibrarySearch_evalExact_declRange(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_2 = l___regBuiltin_Lean_Elab_LibrarySearch_evalExact___closed__4; +x_3 = l___regBuiltin_Lean_Elab_LibrarySearch_evalExact_declRange___closed__7; +x_4 = l_Lean_addBuiltinDeclarationRanges(x_2, x_3, x_1); +return x_4; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_LibrarySearch_evalApply___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, lean_object* x_11) { +_start: +{ +lean_object* x_12; uint8_t x_13; lean_object* x_14; +x_12 = lean_ctor_get(x_9, 5); +lean_inc(x_12); +x_13 = 0; +x_14 = l_Lean_Elab_LibrarySearch_exact_x3f(x_12, x_2, x_13, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +return x_14; +} +} +static lean_object* _init_l_Lean_Elab_LibrarySearch_evalApply___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("apply\?", 6); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_LibrarySearch_evalApply___closed__2() { +_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_Elab_LibrarySearch_evalExact___closed__1; +x_2 = l_Lean_Elab_LibrarySearch_evalExact___closed__2; +x_3 = l_Lean_Elab_LibrarySearch_evalExact___closed__3; +x_4 = l_Lean_Elab_LibrarySearch_evalApply___closed__1; +x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); +return x_5; +} +} +static lean_object* _init_l_Lean_Elab_LibrarySearch_evalApply___closed__3() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Elab_LibrarySearch_evalApply___lambda__1___boxed), 11, 0); +return x_1; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_LibrarySearch_evalApply(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; uint8_t x_12; +x_11 = l_Lean_Elab_LibrarySearch_evalApply___closed__2; +lean_inc(x_1); +x_12 = l_Lean_Syntax_isOfKind(x_1, x_11); +if (x_12 == 0) +{ +lean_object* x_13; +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); +lean_dec(x_2); +lean_dec(x_1); +x_13 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_evalExact___spec__1___rarg(x_10); +return x_13; +} +else +{ +lean_object* x_14; lean_object* x_15; lean_object* x_16; uint8_t x_17; +x_14 = lean_unsigned_to_nat(1u); +x_15 = l_Lean_Syntax_getArg(x_1, x_14); +lean_dec(x_1); +x_16 = l_Lean_Elab_LibrarySearch_evalApply___closed__3; +x_17 = l_Lean_Syntax_isNone(x_15); +if (x_17 == 0) +{ +lean_object* x_18; uint8_t x_19; +x_18 = lean_unsigned_to_nat(2u); +lean_inc(x_15); +x_19 = l_Lean_Syntax_matchesNull(x_15, x_18); +if (x_19 == 0) +{ +lean_object* x_20; +lean_dec(x_15); +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); +lean_dec(x_2); +x_20 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_evalExact___spec__1___rarg(x_10); +return x_20; +} +else +{ +lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; uint8_t x_25; lean_object* x_26; +x_21 = l_Lean_Syntax_getArg(x_15, x_14); +lean_dec(x_15); +x_22 = l_Lean_Syntax_getArgs(x_21); +lean_dec(x_21); +x_23 = lean_array_get_size(x_22); +x_24 = lean_unsigned_to_nat(0u); +x_25 = lean_nat_dec_lt(x_24, x_23); +if (x_25 == 0) +{ +lean_object* x_38; +lean_dec(x_23); +lean_dec(x_22); +x_38 = l_Lean_Elab_LibrarySearch_exact_x3f___closed__1; +x_26 = x_38; +goto block_37; +} +else +{ +uint8_t x_39; +x_39 = lean_nat_dec_le(x_23, x_23); +if (x_39 == 0) +{ +lean_object* x_40; +lean_dec(x_23); +lean_dec(x_22); +x_40 = l_Lean_Elab_LibrarySearch_exact_x3f___closed__1; +x_26 = x_40; +goto block_37; +} +else +{ +size_t x_41; size_t x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; +x_41 = 0; +x_42 = lean_usize_of_nat(x_23); +lean_dec(x_23); +x_43 = l_Lean_Elab_LibrarySearch_evalExact___closed__7; +x_44 = l_Array_foldlMUnsafe_fold___at_Lean_Syntax_SepArray_getElems___spec__1(x_22, x_41, x_42, x_43); +lean_dec(x_22); +x_45 = lean_ctor_get(x_44, 1); +lean_inc(x_45); +lean_dec(x_44); +x_26 = x_45; +goto block_37; +} +} +block_37: +{ +lean_object* x_27; lean_object* x_28; +x_27 = l_Lean_Elab_LibrarySearch_evalExact___closed__8; +x_28 = l_Array_sequenceMap___at___aux__Init__NotationExtra______macroRules__term_x25_x5b___x7c___x5d__1___spec__1(x_26, x_27); +lean_dec(x_26); +if (lean_obj_tag(x_28) == 0) +{ +lean_object* x_29; +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); +lean_dec(x_2); +x_29 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_evalExact___spec__1___rarg(x_10); +return x_29; +} +else +{ +uint8_t x_30; +x_30 = !lean_is_exclusive(x_28); +if (x_30 == 0) +{ +lean_object* x_31; lean_object* x_32; +x_31 = lean_box(0); +x_32 = lean_apply_11(x_16, x_31, x_28, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +return x_32; +} +else +{ +lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; +x_33 = lean_ctor_get(x_28, 0); +lean_inc(x_33); +lean_dec(x_28); +x_34 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_34, 0, x_33); +x_35 = lean_box(0); +x_36 = lean_apply_11(x_16, x_35, x_34, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +return x_36; +} +} +} +} +} +else +{ +lean_object* x_46; lean_object* x_47; lean_object* x_48; +lean_dec(x_15); +x_46 = lean_box(0); +x_47 = lean_box(0); +x_48 = lean_apply_11(x_16, x_47, x_46, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +return x_48; +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_LibrarySearch_evalApply___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, lean_object* x_11) { +_start: +{ +lean_object* x_12; +x_12 = l_Lean_Elab_LibrarySearch_evalApply___lambda__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_1); +return x_12; +} +} +static lean_object* _init_l___regBuiltin_Lean_Elab_LibrarySearch_evalApply___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("evalApply", 9); +return x_1; +} +} +static lean_object* _init_l___regBuiltin_Lean_Elab_LibrarySearch_evalApply___closed__2() { +_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_Elab_LibrarySearch_evalExact___closed__1; +x_2 = l___regBuiltin_Lean_Elab_LibrarySearch_evalExact___closed__1; +x_3 = l___regBuiltin_Lean_Elab_LibrarySearch_evalExact___closed__2; +x_4 = l___regBuiltin_Lean_Elab_LibrarySearch_evalApply___closed__1; +x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); +return x_5; +} +} +static lean_object* _init_l___regBuiltin_Lean_Elab_LibrarySearch_evalApply___closed__3() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Elab_LibrarySearch_evalApply), 10, 0); +return x_1; +} +} +LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_LibrarySearch_evalApply(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; +x_2 = l___regBuiltin_Lean_Elab_LibrarySearch_evalExact___closed__5; +x_3 = l_Lean_Elab_LibrarySearch_evalApply___closed__2; +x_4 = l___regBuiltin_Lean_Elab_LibrarySearch_evalApply___closed__2; +x_5 = l___regBuiltin_Lean_Elab_LibrarySearch_evalApply___closed__3; +x_6 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_5, x_1); +return x_6; +} +} +static lean_object* _init_l___regBuiltin_Lean_Elab_LibrarySearch_evalApply_declRange___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_unsigned_to_nat(58u); +x_2 = lean_unsigned_to_nat(0u); +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_Lean_Elab_LibrarySearch_evalApply_declRange___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_unsigned_to_nat(61u); +x_2 = lean_unsigned_to_nat(34u); +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_Lean_Elab_LibrarySearch_evalApply_declRange___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_1 = l___regBuiltin_Lean_Elab_LibrarySearch_evalApply_declRange___closed__1; +x_2 = lean_unsigned_to_nat(0u); +x_3 = l___regBuiltin_Lean_Elab_LibrarySearch_evalApply_declRange___closed__2; +x_4 = lean_unsigned_to_nat(34u); +x_5 = lean_alloc_ctor(0, 4, 0); +lean_ctor_set(x_5, 0, x_1); +lean_ctor_set(x_5, 1, x_2); +lean_ctor_set(x_5, 2, x_3); +lean_ctor_set(x_5, 3, x_4); +return x_5; +} +} +static lean_object* _init_l___regBuiltin_Lean_Elab_LibrarySearch_evalApply_declRange___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_unsigned_to_nat(58u); +x_2 = lean_unsigned_to_nat(4u); +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_Lean_Elab_LibrarySearch_evalApply_declRange___closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_unsigned_to_nat(58u); +x_2 = lean_unsigned_to_nat(13u); +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_Lean_Elab_LibrarySearch_evalApply_declRange___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___regBuiltin_Lean_Elab_LibrarySearch_evalApply_declRange___closed__4; +x_2 = lean_unsigned_to_nat(4u); +x_3 = l___regBuiltin_Lean_Elab_LibrarySearch_evalApply_declRange___closed__5; +x_4 = lean_unsigned_to_nat(13u); +x_5 = lean_alloc_ctor(0, 4, 0); +lean_ctor_set(x_5, 0, x_1); +lean_ctor_set(x_5, 1, x_2); +lean_ctor_set(x_5, 2, x_3); +lean_ctor_set(x_5, 3, x_4); +return x_5; +} +} +static lean_object* _init_l___regBuiltin_Lean_Elab_LibrarySearch_evalApply_declRange___closed__7() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___regBuiltin_Lean_Elab_LibrarySearch_evalApply_declRange___closed__3; +x_2 = l___regBuiltin_Lean_Elab_LibrarySearch_evalApply_declRange___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); +return x_3; +} +} +LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_LibrarySearch_evalApply_declRange(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_2 = l___regBuiltin_Lean_Elab_LibrarySearch_evalApply___closed__2; +x_3 = l___regBuiltin_Lean_Elab_LibrarySearch_evalApply_declRange___closed__7; +x_4 = l_Lean_addBuiltinDeclarationRanges(x_2, x_3, x_1); +return x_4; +} +} +LEAN_EXPORT lean_object* l_Lean_instantiateMVars___at_Lean_Elab_LibrarySearch_elabExact_x3fTerm___spec__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) { +_start: +{ +uint8_t x_9; +x_9 = l_Lean_Expr_hasMVar(x_1); +if (x_9 == 0) +{ +lean_object* x_10; +x_10 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_10, 0, x_1); +lean_ctor_set(x_10, 1, x_8); +return x_10; +} +else +{ +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; uint8_t x_21; +x_11 = lean_st_ref_get(x_5, x_8); +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); +x_14 = lean_ctor_get(x_12, 0); +lean_inc(x_14); +lean_dec(x_12); +x_15 = l_Lean_instantiateMVarsCore(x_14, x_1); +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); +x_18 = lean_st_ref_take(x_5, x_13); +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 = !lean_is_exclusive(x_19); +if (x_21 == 0) +{ +lean_object* x_22; lean_object* x_23; uint8_t x_24; +x_22 = lean_ctor_get(x_19, 0); +lean_dec(x_22); +lean_ctor_set(x_19, 0, x_17); +x_23 = lean_st_ref_set(x_5, x_19, x_20); +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_16); +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_16); +lean_ctor_set(x_27, 1, x_26); +return x_27; +} +} +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_object* x_35; +x_28 = lean_ctor_get(x_19, 1); +x_29 = lean_ctor_get(x_19, 2); +x_30 = lean_ctor_get(x_19, 3); +lean_inc(x_30); +lean_inc(x_29); +lean_inc(x_28); +lean_dec(x_19); +x_31 = lean_alloc_ctor(0, 4, 0); +lean_ctor_set(x_31, 0, x_17); +lean_ctor_set(x_31, 1, x_28); +lean_ctor_set(x_31, 2, x_29); +lean_ctor_set(x_31, 3, x_30); +x_32 = lean_st_ref_set(x_5, x_31, x_20); +x_33 = lean_ctor_get(x_32, 1); +lean_inc(x_33); +if (lean_is_exclusive(x_32)) { + lean_ctor_release(x_32, 0); + lean_ctor_release(x_32, 1); + x_34 = x_32; +} else { + lean_dec_ref(x_32); + x_34 = lean_box(0); +} +if (lean_is_scalar(x_34)) { + x_35 = lean_alloc_ctor(0, 2, 0); +} else { + x_35 = x_34; +} +lean_ctor_set(x_35, 0, x_16); +lean_ctor_set(x_35, 1, x_33); +return x_35; +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_withMCtx___at_Lean_Elab_LibrarySearch_elabExact_x3fTerm___spec__2___rarg(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 = lean_apply_2(x_2, x_3, x_4); +x_11 = l___private_Lean_Meta_Basic_0__Lean_Meta_withMCtxImp___rarg(x_1, x_10, x_5, x_6, x_7, x_8, x_9); +if (lean_obj_tag(x_11) == 0) +{ +uint8_t x_12; +x_12 = !lean_is_exclusive(x_11); +if (x_12 == 0) +{ +return x_11; +} +else +{ +lean_object* x_13; lean_object* x_14; lean_object* x_15; +x_13 = lean_ctor_get(x_11, 0); +x_14 = lean_ctor_get(x_11, 1); +lean_inc(x_14); +lean_inc(x_13); +lean_dec(x_11); +x_15 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_15, 0, x_13); +lean_ctor_set(x_15, 1, x_14); +return x_15; +} +} +else +{ +uint8_t x_16; +x_16 = !lean_is_exclusive(x_11); +if (x_16 == 0) +{ +return x_11; +} +else +{ +lean_object* x_17; lean_object* x_18; lean_object* x_19; +x_17 = lean_ctor_get(x_11, 0); +x_18 = lean_ctor_get(x_11, 1); +lean_inc(x_18); +lean_inc(x_17); +lean_dec(x_11); +x_19 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_19, 0, x_17); +lean_ctor_set(x_19, 1, x_18); +return x_19; +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_withMCtx___at_Lean_Elab_LibrarySearch_elabExact_x3fTerm___spec__2(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = lean_alloc_closure((void*)(l_Lean_Meta_withMCtx___at_Lean_Elab_LibrarySearch_elabExact_x3fTerm___spec__2___rarg), 9, 0); +return x_2; +} +} +static lean_object* _init_l_Array_forInUnsafe_loop___at_Lean_Elab_LibrarySearch_elabExact_x3fTerm___spec__3___lambda__1___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("Try this: ", 10); +return x_1; +} +} +LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_LibrarySearch_elabExact_x3fTerm___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, 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; lean_object* x_16; +x_10 = l_Lean_instantiateMVars___at_Lean_Elab_LibrarySearch_elabExact_x3fTerm___spec__1(x_1, x_3, x_4, 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_Lean_Expr_headBeta(x_11); +x_14 = lean_box(0); +x_15 = l_Array_forInUnsafe_loop___at_Lean_Elab_LibrarySearch_elabExact_x3fTerm___spec__3___lambda__1___closed__1; +x_16 = l_Lean_Meta_Tactic_TryThis_addTermSuggestion(x_2, x_13, x_14, x_15, x_14, x_5, x_6, x_7, x_8, x_12); +return x_16; +} +} +LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_LibrarySearch_elabExact_x3fTerm___spec__3(lean_object* x_1, lean_object* x_2, lean_object* x_3, size_t x_4, size_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) { +_start: +{ +uint8_t x_14; +x_14 = lean_usize_dec_lt(x_5, x_4); +if (x_14 == 0) +{ +lean_object* x_15; +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_2); +lean_dec(x_1); +x_15 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_15, 0, x_6); +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_object* x_19; +lean_dec(x_6); +x_16 = lean_array_uget(x_3, x_5); +x_17 = lean_ctor_get(x_16, 1); +lean_inc(x_17); +lean_dec(x_16); +lean_inc(x_1); +lean_inc(x_2); +x_18 = lean_alloc_closure((void*)(l_Array_forInUnsafe_loop___at_Lean_Elab_LibrarySearch_elabExact_x3fTerm___spec__3___lambda__1___boxed), 9, 2); +lean_closure_set(x_18, 0, x_2); +lean_closure_set(x_18, 1, x_1); +lean_inc(x_12); +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +x_19 = l_Lean_Meta_withMCtx___at_Lean_Elab_LibrarySearch_elabExact_x3fTerm___spec__2___rarg(x_17, x_18, x_7, x_8, x_9, x_10, x_11, x_12, x_13); +if (lean_obj_tag(x_19) == 0) +{ +lean_object* x_20; size_t x_21; size_t x_22; lean_object* x_23; +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_5, x_21); +x_23 = lean_box(0); +x_5 = x_22; +x_6 = x_23; +x_13 = x_20; +goto _start; +} +else +{ +uint8_t x_25; +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_2); +lean_dec(x_1); +x_25 = !lean_is_exclusive(x_19); +if (x_25 == 0) +{ +return x_19; +} +else +{ +lean_object* x_26; lean_object* x_27; lean_object* x_28; +x_26 = lean_ctor_get(x_19, 0); +x_27 = lean_ctor_get(x_19, 1); +lean_inc(x_27); +lean_inc(x_26); +lean_dec(x_19); +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; +} +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_LibrarySearch_elabExact_x3fTerm___lambda__1(uint8_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) { +_start: +{ +lean_object* x_8; lean_object* x_9; lean_object* x_10; +x_8 = lean_box(0); +x_9 = lean_unsigned_to_nat(6u); +x_10 = l_Lean_Meta_LibrarySearch_solveByElim(x_8, x_1, x_2, x_9, x_3, x_4, x_5, x_6, x_7); +return x_10; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_LibrarySearch_elabExact_x3fTerm___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) { +_start: +{ +uint8_t x_7; lean_object* x_8; lean_object* x_9; +x_7 = 1; +x_8 = lean_box(x_7); +x_9 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_9, 0, x_8); +lean_ctor_set(x_9, 1, x_6); +return x_9; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_LibrarySearch_elabExact_x3fTerm___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: +{ +uint8_t x_10; lean_object* x_11; +x_10 = 1; +x_11 = l_Lean_Meta_mkSorry(x_1, x_10, x_5, x_6, x_7, x_8, x_9); +return x_11; +} +} +static lean_object* _init_l_Lean_Elab_LibrarySearch_elabExact_x3fTerm___lambda__4___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("exact\?# didn't find any relevant lemmas", 39); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_LibrarySearch_elabExact_x3fTerm___lambda__4___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Elab_LibrarySearch_elabExact_x3fTerm___lambda__4___closed__1; +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_Elab_LibrarySearch_elabExact_x3fTerm___lambda__4___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Elab_LibrarySearch_elabExact_x3fTerm___lambda__4___closed__2; +x_2 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_LibrarySearch_elabExact_x3fTerm___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) { +_start: +{ +lean_object* x_14; lean_object* x_15; +x_14 = lean_unsigned_to_nat(10u); +lean_inc(x_12); +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +x_15 = l_Lean_Meta_LibrarySearch_librarySearch(x_1, x_2, x_3, x_14, x_9, x_10, x_11, x_12, x_13); +if (lean_obj_tag(x_15) == 0) +{ +lean_object* x_16; +x_16 = lean_ctor_get(x_15, 0); +lean_inc(x_16); +if (lean_obj_tag(x_16) == 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; lean_object* x_24; +lean_dec(x_6); +x_17 = lean_ctor_get(x_15, 1); +lean_inc(x_17); +lean_dec(x_15); +lean_inc(x_4); +x_18 = l_Lean_instantiateMVars___at_Lean_Elab_Term_MVarErrorInfo_logError___spec__1(x_4, x_7, x_8, x_9, x_10, x_11, x_12, x_17); +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_Expr_headBeta(x_19); +x_22 = lean_box(0); +x_23 = l_Array_forInUnsafe_loop___at_Lean_Elab_LibrarySearch_elabExact_x3fTerm___spec__3___lambda__1___closed__1; +lean_inc(x_12); +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +x_24 = l_Lean_Meta_Tactic_TryThis_addTermSuggestion(x_5, x_21, x_22, x_23, x_22, x_9, x_10, x_11, x_12, x_20); +if (lean_obj_tag(x_24) == 0) +{ +lean_object* x_25; lean_object* x_26; +x_25 = lean_ctor_get(x_24, 1); +lean_inc(x_25); +lean_dec(x_24); +x_26 = l_Lean_instantiateMVars___at_Lean_Elab_Term_MVarErrorInfo_logError___spec__1(x_4, x_7, x_8, x_9, x_10, x_11, x_12, x_25); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +return x_26; +} +else +{ +uint8_t x_27; +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_4); +x_27 = !lean_is_exclusive(x_24); +if (x_27 == 0) +{ +return x_24; +} +else +{ +lean_object* x_28; lean_object* x_29; lean_object* x_30; +x_28 = lean_ctor_get(x_24, 0); +x_29 = lean_ctor_get(x_24, 1); +lean_inc(x_29); +lean_inc(x_28); +lean_dec(x_24); +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; +} +} +} +else +{ +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; size_t x_38; size_t x_39; lean_object* x_40; lean_object* x_41; +x_31 = lean_ctor_get(x_15, 1); +lean_inc(x_31); +lean_dec(x_15); +x_32 = lean_ctor_get(x_16, 0); +lean_inc(x_32); +lean_dec(x_16); +x_33 = l_Lean_Elab_LibrarySearch_exact_x3f___lambda__5___closed__2; +x_34 = lean_unsigned_to_nat(90u); +x_35 = l_Lean_reportOutOfHeartbeats(x_33, x_5, x_34, x_11, x_12, x_31); +x_36 = lean_ctor_get(x_35, 1); +lean_inc(x_36); +lean_dec(x_35); +x_37 = lean_array_get_size(x_32); +x_38 = lean_usize_of_nat(x_37); +lean_dec(x_37); +x_39 = 0; +x_40 = lean_box(0); +lean_inc(x_12); +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +x_41 = l_Array_forInUnsafe_loop___at_Lean_Elab_LibrarySearch_elabExact_x3fTerm___spec__3(x_5, x_4, x_32, x_38, x_39, x_40, x_7, x_8, x_9, x_10, x_11, x_12, x_36); +if (lean_obj_tag(x_41) == 0) +{ +lean_object* x_42; uint8_t x_43; +x_42 = lean_ctor_get(x_41, 1); +lean_inc(x_42); +lean_dec(x_41); +x_43 = l_Array_isEmpty___rarg(x_32); +lean_dec(x_32); +if (x_43 == 0) +{ +uint8_t x_44; lean_object* x_45; +lean_dec(x_8); +lean_dec(x_7); +x_44 = 1; +x_45 = l_Lean_Meta_mkSorry(x_6, x_44, x_9, x_10, x_11, x_12, x_42); +return x_45; +} +else +{ +lean_object* x_46; uint8_t x_47; lean_object* x_48; lean_object* x_49; uint8_t x_50; lean_object* x_51; +x_46 = l_Lean_Elab_LibrarySearch_elabExact_x3fTerm___lambda__4___closed__3; +x_47 = 2; +x_48 = l_Lean_log___at_Lean_Elab_Term_exceptionToSorry___spec__2(x_46, x_47, x_7, x_8, x_9, x_10, x_11, x_12, x_42); +lean_dec(x_8); +lean_dec(x_7); +x_49 = lean_ctor_get(x_48, 1); +lean_inc(x_49); +lean_dec(x_48); +x_50 = 1; +x_51 = l_Lean_Meta_mkSorry(x_6, x_50, x_9, x_10, x_11, x_12, x_49); +return x_51; +} +} +else +{ +uint8_t x_52; +lean_dec(x_32); +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); +x_52 = !lean_is_exclusive(x_41); +if (x_52 == 0) +{ +return x_41; +} +else +{ +lean_object* x_53; lean_object* x_54; lean_object* x_55; +x_53 = lean_ctor_get(x_41, 0); +x_54 = lean_ctor_get(x_41, 1); +lean_inc(x_54); +lean_inc(x_53); +lean_dec(x_41); +x_55 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_55, 0, x_53); +lean_ctor_set(x_55, 1, x_54); +return x_55; +} +} +} +} +else +{ +uint8_t x_56; +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); +x_56 = !lean_is_exclusive(x_15); +if (x_56 == 0) +{ +return x_15; +} +else +{ +lean_object* x_57; lean_object* x_58; lean_object* x_59; +x_57 = lean_ctor_get(x_15, 0); +x_58 = lean_ctor_get(x_15, 1); +lean_inc(x_58); +lean_inc(x_57); +lean_dec(x_15); +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; +} +} +} +} +static lean_object* _init_l_Lean_Elab_LibrarySearch_elabExact_x3fTerm___lambda__5___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Elab_LibrarySearch_elabExact_x3fTerm___lambda__1___boxed), 7, 0); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_LibrarySearch_elabExact_x3fTerm___lambda__5___closed__2() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Elab_LibrarySearch_elabExact_x3fTerm___lambda__2___boxed), 6, 0); +return x_1; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_LibrarySearch_elabExact_x3fTerm___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) { +_start: +{ +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_inc(x_2); +x_10 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_10, 0, x_2); +x_11 = 0; +x_12 = lean_box(0); +lean_inc(x_5); +x_13 = l___private_Lean_Meta_Basic_0__Lean_Meta_mkFreshExprMVarImpl(x_10, x_11, x_12, x_5, x_6, x_7, x_8, x_9); +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); +x_16 = l_Lean_Expr_mvarId_x21(x_14); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +x_17 = l_Lean_MVarId_intros(x_16, x_5, x_6, x_7, x_8, x_15); +if (lean_obj_tag(x_17) == 0) +{ +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_17, 0); +lean_inc(x_18); +x_19 = lean_ctor_get(x_17, 1); +lean_inc(x_19); +lean_dec(x_17); +x_20 = lean_ctor_get(x_18, 1); +lean_inc(x_20); +lean_dec(x_18); +x_21 = l_Lean_Elab_LibrarySearch_elabExact_x3fTerm___lambda__5___closed__1; +x_22 = l_Lean_Elab_LibrarySearch_elabExact_x3fTerm___lambda__5___closed__2; +lean_inc(x_20); +x_23 = lean_alloc_closure((void*)(l_Lean_Elab_LibrarySearch_elabExact_x3fTerm___lambda__4), 13, 6); +lean_closure_set(x_23, 0, x_20); +lean_closure_set(x_23, 1, x_21); +lean_closure_set(x_23, 2, x_22); +lean_closure_set(x_23, 3, x_14); +lean_closure_set(x_23, 4, x_1); +lean_closure_set(x_23, 5, x_2); +x_24 = l_Lean_MVarId_withContext___at_Lean_Elab_Tactic_run___spec__1___rarg(x_20, x_23, x_3, x_4, x_5, x_6, x_7, x_8, x_19); +return x_24; +} +else +{ +uint8_t x_25; +lean_dec(x_14); +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); +x_25 = !lean_is_exclusive(x_17); +if (x_25 == 0) +{ +return x_17; +} +else +{ +lean_object* x_26; lean_object* x_27; lean_object* x_28; +x_26 = lean_ctor_get(x_17, 0); +x_27 = lean_ctor_get(x_17, 1); +lean_inc(x_27); +lean_inc(x_26); +lean_dec(x_17); +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_Elab_LibrarySearch_elabExact_x3fTerm___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("Syntax", 6); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_LibrarySearch_elabExact_x3fTerm___closed__2() { +_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_Elab_LibrarySearch_evalExact___closed__1; +x_2 = l_Lean_Elab_LibrarySearch_evalExact___closed__2; +x_3 = l_Lean_Elab_LibrarySearch_elabExact_x3fTerm___closed__1; +x_4 = l_Lean_Elab_LibrarySearch_evalExact___closed__4; +x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); +return x_5; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_LibrarySearch_elabExact_x3fTerm(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; uint8_t x_11; +x_10 = l_Lean_Elab_LibrarySearch_elabExact_x3fTerm___closed__2; +lean_inc(x_1); +x_11 = l_Lean_Syntax_isOfKind(x_1, x_10); +if (x_11 == 0) +{ +lean_object* x_12; +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); +x_12 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Term_elabLetMVar___spec__1___rarg(x_9); +return x_12; +} +else +{ +lean_object* x_13; lean_object* x_14; +x_13 = lean_alloc_closure((void*)(l_Lean_Elab_LibrarySearch_elabExact_x3fTerm___lambda__5), 9, 1); +lean_closure_set(x_13, 0, x_1); +x_14 = l_Lean_Elab_Term_withExpectedType(x_2, x_13, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +return x_14; +} +} +} +LEAN_EXPORT lean_object* l_Lean_instantiateMVars___at_Lean_Elab_LibrarySearch_elabExact_x3fTerm___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) { +_start: +{ +lean_object* x_9; +x_9 = l_Lean_instantiateMVars___at_Lean_Elab_LibrarySearch_elabExact_x3fTerm___spec__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, 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); +return x_9; +} +} +LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_LibrarySearch_elabExact_x3fTerm___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, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +_start: +{ +lean_object* x_10; +x_10 = l_Array_forInUnsafe_loop___at_Lean_Elab_LibrarySearch_elabExact_x3fTerm___spec__3___lambda__1(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); +return x_10; +} +} +LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_LibrarySearch_elabExact_x3fTerm___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, lean_object* x_11, lean_object* x_12, lean_object* x_13) { +_start: +{ +size_t x_14; size_t x_15; lean_object* x_16; +x_14 = lean_unbox_usize(x_4); +lean_dec(x_4); +x_15 = lean_unbox_usize(x_5); +lean_dec(x_5); +x_16 = l_Array_forInUnsafe_loop___at_Lean_Elab_LibrarySearch_elabExact_x3fTerm___spec__3(x_1, x_2, x_3, x_14, x_15, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); +lean_dec(x_3); +return x_16; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_LibrarySearch_elabExact_x3fTerm___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) { +_start: +{ +uint8_t x_8; lean_object* x_9; +x_8 = lean_unbox(x_1); +lean_dec(x_1); +x_9 = l_Lean_Elab_LibrarySearch_elabExact_x3fTerm___lambda__1(x_8, x_2, x_3, x_4, x_5, x_6, x_7); +return x_9; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_LibrarySearch_elabExact_x3fTerm___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) { +_start: +{ +lean_object* x_7; +x_7 = l_Lean_Elab_LibrarySearch_elabExact_x3fTerm___lambda__2(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); +lean_dec(x_1); +return x_7; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_LibrarySearch_elabExact_x3fTerm___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_Lean_Elab_LibrarySearch_elabExact_x3fTerm___lambda__3(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___regBuiltin_Lean_Elab_LibrarySearch_elabExact_x3fTerm___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("elabExact\?Term", 14); +return x_1; +} +} +static lean_object* _init_l___regBuiltin_Lean_Elab_LibrarySearch_elabExact_x3fTerm___closed__2() { +_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_Elab_LibrarySearch_evalExact___closed__1; +x_2 = l___regBuiltin_Lean_Elab_LibrarySearch_evalExact___closed__1; +x_3 = l___regBuiltin_Lean_Elab_LibrarySearch_evalExact___closed__2; +x_4 = l___regBuiltin_Lean_Elab_LibrarySearch_elabExact_x3fTerm___closed__1; +x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); +return x_5; +} +} +static lean_object* _init_l___regBuiltin_Lean_Elab_LibrarySearch_elabExact_x3fTerm___closed__3() { +_start: +{ +lean_object* x_1; +x_1 = l_Lean_Elab_Term_termElabAttribute; +return x_1; +} +} +static lean_object* _init_l___regBuiltin_Lean_Elab_LibrarySearch_elabExact_x3fTerm___closed__4() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Elab_LibrarySearch_elabExact_x3fTerm), 9, 0); +return x_1; +} +} +LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_LibrarySearch_elabExact_x3fTerm(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; +x_2 = l___regBuiltin_Lean_Elab_LibrarySearch_elabExact_x3fTerm___closed__3; +x_3 = l_Lean_Elab_LibrarySearch_elabExact_x3fTerm___closed__2; +x_4 = l___regBuiltin_Lean_Elab_LibrarySearch_elabExact_x3fTerm___closed__2; +x_5 = l___regBuiltin_Lean_Elab_LibrarySearch_elabExact_x3fTerm___closed__4; +x_6 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_5, x_1); +return x_6; +} +} +static lean_object* _init_l___regBuiltin_Lean_Elab_LibrarySearch_elabExact_x3fTerm_declRange___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_unsigned_to_nat(64u); +x_2 = lean_unsigned_to_nat(0u); +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_Lean_Elab_LibrarySearch_elabExact_x3fTerm_declRange___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_unsigned_to_nat(80u); +x_2 = lean_unsigned_to_nat(29u); +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_Lean_Elab_LibrarySearch_elabExact_x3fTerm_declRange___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_1 = l___regBuiltin_Lean_Elab_LibrarySearch_elabExact_x3fTerm_declRange___closed__1; +x_2 = lean_unsigned_to_nat(0u); +x_3 = l___regBuiltin_Lean_Elab_LibrarySearch_elabExact_x3fTerm_declRange___closed__2; +x_4 = lean_unsigned_to_nat(29u); +x_5 = lean_alloc_ctor(0, 4, 0); +lean_ctor_set(x_5, 0, x_1); +lean_ctor_set(x_5, 1, x_2); +lean_ctor_set(x_5, 2, x_3); +lean_ctor_set(x_5, 3, x_4); +return x_5; +} +} +static lean_object* _init_l___regBuiltin_Lean_Elab_LibrarySearch_elabExact_x3fTerm_declRange___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_unsigned_to_nat(64u); +x_2 = lean_unsigned_to_nat(4u); +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_Lean_Elab_LibrarySearch_elabExact_x3fTerm_declRange___closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_unsigned_to_nat(64u); +x_2 = lean_unsigned_to_nat(18u); +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_Lean_Elab_LibrarySearch_elabExact_x3fTerm_declRange___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___regBuiltin_Lean_Elab_LibrarySearch_elabExact_x3fTerm_declRange___closed__4; +x_2 = lean_unsigned_to_nat(4u); +x_3 = l___regBuiltin_Lean_Elab_LibrarySearch_elabExact_x3fTerm_declRange___closed__5; +x_4 = lean_unsigned_to_nat(18u); +x_5 = lean_alloc_ctor(0, 4, 0); +lean_ctor_set(x_5, 0, x_1); +lean_ctor_set(x_5, 1, x_2); +lean_ctor_set(x_5, 2, x_3); +lean_ctor_set(x_5, 3, x_4); +return x_5; +} +} +static lean_object* _init_l___regBuiltin_Lean_Elab_LibrarySearch_elabExact_x3fTerm_declRange___closed__7() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___regBuiltin_Lean_Elab_LibrarySearch_elabExact_x3fTerm_declRange___closed__3; +x_2 = l___regBuiltin_Lean_Elab_LibrarySearch_elabExact_x3fTerm_declRange___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); +return x_3; +} +} +LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_LibrarySearch_elabExact_x3fTerm_declRange(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_2 = l___regBuiltin_Lean_Elab_LibrarySearch_elabExact_x3fTerm___closed__2; +x_3 = l___regBuiltin_Lean_Elab_LibrarySearch_elabExact_x3fTerm_declRange___closed__7; +x_4 = l_Lean_addBuiltinDeclarationRanges(x_2, x_3, x_1); +return x_4; +} +} +lean_object* initialize_Lean_Meta_Tactic_LibrarySearch(uint8_t builtin, lean_object*); +lean_object* initialize_Lean_Meta_Tactic_TryThis(uint8_t builtin, lean_object*); +lean_object* initialize_Lean_Elab_Tactic_ElabTerm(uint8_t builtin, lean_object*); +static bool _G_initialized = false; +LEAN_EXPORT lean_object* initialize_Lean_Elab_Tactic_LibrarySearch(uint8_t builtin, lean_object* w) { +lean_object * res; +if (_G_initialized) return lean_io_result_mk_ok(lean_box(0)); +_G_initialized = true; +res = initialize_Lean_Meta_Tactic_LibrarySearch(builtin, lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +res = initialize_Lean_Meta_Tactic_TryThis(builtin, lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +res = initialize_Lean_Elab_Tactic_ElabTerm(builtin, lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +l_Lean_Elab_LibrarySearch_exact_x3f___lambda__5___closed__1 = _init_l_Lean_Elab_LibrarySearch_exact_x3f___lambda__5___closed__1(); +lean_mark_persistent(l_Lean_Elab_LibrarySearch_exact_x3f___lambda__5___closed__1); +l_Lean_Elab_LibrarySearch_exact_x3f___lambda__5___closed__2 = _init_l_Lean_Elab_LibrarySearch_exact_x3f___lambda__5___closed__2(); +lean_mark_persistent(l_Lean_Elab_LibrarySearch_exact_x3f___lambda__5___closed__2); +l_Lean_Elab_LibrarySearch_exact_x3f___lambda__5___closed__3 = _init_l_Lean_Elab_LibrarySearch_exact_x3f___lambda__5___closed__3(); +lean_mark_persistent(l_Lean_Elab_LibrarySearch_exact_x3f___lambda__5___closed__3); +l_Lean_Elab_LibrarySearch_exact_x3f___lambda__5___closed__4 = _init_l_Lean_Elab_LibrarySearch_exact_x3f___lambda__5___closed__4(); +lean_mark_persistent(l_Lean_Elab_LibrarySearch_exact_x3f___lambda__5___closed__4); +l_Lean_Elab_LibrarySearch_exact_x3f___lambda__5___closed__5 = _init_l_Lean_Elab_LibrarySearch_exact_x3f___lambda__5___closed__5(); +lean_mark_persistent(l_Lean_Elab_LibrarySearch_exact_x3f___lambda__5___closed__5); +l_Lean_Elab_LibrarySearch_exact_x3f___lambda__6___closed__1 = _init_l_Lean_Elab_LibrarySearch_exact_x3f___lambda__6___closed__1(); +lean_mark_persistent(l_Lean_Elab_LibrarySearch_exact_x3f___lambda__6___closed__1); +l_Lean_Elab_LibrarySearch_exact_x3f___lambda__6___closed__2 = _init_l_Lean_Elab_LibrarySearch_exact_x3f___lambda__6___closed__2(); +lean_mark_persistent(l_Lean_Elab_LibrarySearch_exact_x3f___lambda__6___closed__2); +l_Lean_Elab_LibrarySearch_exact_x3f___closed__1 = _init_l_Lean_Elab_LibrarySearch_exact_x3f___closed__1(); +lean_mark_persistent(l_Lean_Elab_LibrarySearch_exact_x3f___closed__1); +l_Lean_Elab_LibrarySearch_exact_x3f___boxed__const__1 = _init_l_Lean_Elab_LibrarySearch_exact_x3f___boxed__const__1(); +lean_mark_persistent(l_Lean_Elab_LibrarySearch_exact_x3f___boxed__const__1); +l_Lean_Elab_LibrarySearch_evalExact___lambda__1___closed__1 = _init_l_Lean_Elab_LibrarySearch_evalExact___lambda__1___closed__1(); +lean_mark_persistent(l_Lean_Elab_LibrarySearch_evalExact___lambda__1___closed__1); +l_Lean_Elab_LibrarySearch_evalExact___lambda__1___closed__2 = _init_l_Lean_Elab_LibrarySearch_evalExact___lambda__1___closed__2(); +lean_mark_persistent(l_Lean_Elab_LibrarySearch_evalExact___lambda__1___closed__2); +l_Lean_Elab_LibrarySearch_evalExact___lambda__1___closed__3 = _init_l_Lean_Elab_LibrarySearch_evalExact___lambda__1___closed__3(); +lean_mark_persistent(l_Lean_Elab_LibrarySearch_evalExact___lambda__1___closed__3); +l_Lean_Elab_LibrarySearch_evalExact___closed__1 = _init_l_Lean_Elab_LibrarySearch_evalExact___closed__1(); +lean_mark_persistent(l_Lean_Elab_LibrarySearch_evalExact___closed__1); +l_Lean_Elab_LibrarySearch_evalExact___closed__2 = _init_l_Lean_Elab_LibrarySearch_evalExact___closed__2(); +lean_mark_persistent(l_Lean_Elab_LibrarySearch_evalExact___closed__2); +l_Lean_Elab_LibrarySearch_evalExact___closed__3 = _init_l_Lean_Elab_LibrarySearch_evalExact___closed__3(); +lean_mark_persistent(l_Lean_Elab_LibrarySearch_evalExact___closed__3); +l_Lean_Elab_LibrarySearch_evalExact___closed__4 = _init_l_Lean_Elab_LibrarySearch_evalExact___closed__4(); +lean_mark_persistent(l_Lean_Elab_LibrarySearch_evalExact___closed__4); +l_Lean_Elab_LibrarySearch_evalExact___closed__5 = _init_l_Lean_Elab_LibrarySearch_evalExact___closed__5(); +lean_mark_persistent(l_Lean_Elab_LibrarySearch_evalExact___closed__5); +l_Lean_Elab_LibrarySearch_evalExact___closed__6 = _init_l_Lean_Elab_LibrarySearch_evalExact___closed__6(); +lean_mark_persistent(l_Lean_Elab_LibrarySearch_evalExact___closed__6); +l_Lean_Elab_LibrarySearch_evalExact___closed__7 = _init_l_Lean_Elab_LibrarySearch_evalExact___closed__7(); +lean_mark_persistent(l_Lean_Elab_LibrarySearch_evalExact___closed__7); +l_Lean_Elab_LibrarySearch_evalExact___closed__8 = _init_l_Lean_Elab_LibrarySearch_evalExact___closed__8(); +lean_mark_persistent(l_Lean_Elab_LibrarySearch_evalExact___closed__8); +l___regBuiltin_Lean_Elab_LibrarySearch_evalExact___closed__1 = _init_l___regBuiltin_Lean_Elab_LibrarySearch_evalExact___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_LibrarySearch_evalExact___closed__1); +l___regBuiltin_Lean_Elab_LibrarySearch_evalExact___closed__2 = _init_l___regBuiltin_Lean_Elab_LibrarySearch_evalExact___closed__2(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_LibrarySearch_evalExact___closed__2); +l___regBuiltin_Lean_Elab_LibrarySearch_evalExact___closed__3 = _init_l___regBuiltin_Lean_Elab_LibrarySearch_evalExact___closed__3(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_LibrarySearch_evalExact___closed__3); +l___regBuiltin_Lean_Elab_LibrarySearch_evalExact___closed__4 = _init_l___regBuiltin_Lean_Elab_LibrarySearch_evalExact___closed__4(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_LibrarySearch_evalExact___closed__4); +l___regBuiltin_Lean_Elab_LibrarySearch_evalExact___closed__5 = _init_l___regBuiltin_Lean_Elab_LibrarySearch_evalExact___closed__5(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_LibrarySearch_evalExact___closed__5); +l___regBuiltin_Lean_Elab_LibrarySearch_evalExact___closed__6 = _init_l___regBuiltin_Lean_Elab_LibrarySearch_evalExact___closed__6(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_LibrarySearch_evalExact___closed__6); +if (builtin) {res = l___regBuiltin_Lean_Elab_LibrarySearch_evalExact(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +}l___regBuiltin_Lean_Elab_LibrarySearch_evalExact_declRange___closed__1 = _init_l___regBuiltin_Lean_Elab_LibrarySearch_evalExact_declRange___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_LibrarySearch_evalExact_declRange___closed__1); +l___regBuiltin_Lean_Elab_LibrarySearch_evalExact_declRange___closed__2 = _init_l___regBuiltin_Lean_Elab_LibrarySearch_evalExact_declRange___closed__2(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_LibrarySearch_evalExact_declRange___closed__2); +l___regBuiltin_Lean_Elab_LibrarySearch_evalExact_declRange___closed__3 = _init_l___regBuiltin_Lean_Elab_LibrarySearch_evalExact_declRange___closed__3(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_LibrarySearch_evalExact_declRange___closed__3); +l___regBuiltin_Lean_Elab_LibrarySearch_evalExact_declRange___closed__4 = _init_l___regBuiltin_Lean_Elab_LibrarySearch_evalExact_declRange___closed__4(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_LibrarySearch_evalExact_declRange___closed__4); +l___regBuiltin_Lean_Elab_LibrarySearch_evalExact_declRange___closed__5 = _init_l___regBuiltin_Lean_Elab_LibrarySearch_evalExact_declRange___closed__5(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_LibrarySearch_evalExact_declRange___closed__5); +l___regBuiltin_Lean_Elab_LibrarySearch_evalExact_declRange___closed__6 = _init_l___regBuiltin_Lean_Elab_LibrarySearch_evalExact_declRange___closed__6(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_LibrarySearch_evalExact_declRange___closed__6); +l___regBuiltin_Lean_Elab_LibrarySearch_evalExact_declRange___closed__7 = _init_l___regBuiltin_Lean_Elab_LibrarySearch_evalExact_declRange___closed__7(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_LibrarySearch_evalExact_declRange___closed__7); +if (builtin) {res = l___regBuiltin_Lean_Elab_LibrarySearch_evalExact_declRange(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +}l_Lean_Elab_LibrarySearch_evalApply___closed__1 = _init_l_Lean_Elab_LibrarySearch_evalApply___closed__1(); +lean_mark_persistent(l_Lean_Elab_LibrarySearch_evalApply___closed__1); +l_Lean_Elab_LibrarySearch_evalApply___closed__2 = _init_l_Lean_Elab_LibrarySearch_evalApply___closed__2(); +lean_mark_persistent(l_Lean_Elab_LibrarySearch_evalApply___closed__2); +l_Lean_Elab_LibrarySearch_evalApply___closed__3 = _init_l_Lean_Elab_LibrarySearch_evalApply___closed__3(); +lean_mark_persistent(l_Lean_Elab_LibrarySearch_evalApply___closed__3); +l___regBuiltin_Lean_Elab_LibrarySearch_evalApply___closed__1 = _init_l___regBuiltin_Lean_Elab_LibrarySearch_evalApply___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_LibrarySearch_evalApply___closed__1); +l___regBuiltin_Lean_Elab_LibrarySearch_evalApply___closed__2 = _init_l___regBuiltin_Lean_Elab_LibrarySearch_evalApply___closed__2(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_LibrarySearch_evalApply___closed__2); +l___regBuiltin_Lean_Elab_LibrarySearch_evalApply___closed__3 = _init_l___regBuiltin_Lean_Elab_LibrarySearch_evalApply___closed__3(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_LibrarySearch_evalApply___closed__3); +if (builtin) {res = l___regBuiltin_Lean_Elab_LibrarySearch_evalApply(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +}l___regBuiltin_Lean_Elab_LibrarySearch_evalApply_declRange___closed__1 = _init_l___regBuiltin_Lean_Elab_LibrarySearch_evalApply_declRange___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_LibrarySearch_evalApply_declRange___closed__1); +l___regBuiltin_Lean_Elab_LibrarySearch_evalApply_declRange___closed__2 = _init_l___regBuiltin_Lean_Elab_LibrarySearch_evalApply_declRange___closed__2(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_LibrarySearch_evalApply_declRange___closed__2); +l___regBuiltin_Lean_Elab_LibrarySearch_evalApply_declRange___closed__3 = _init_l___regBuiltin_Lean_Elab_LibrarySearch_evalApply_declRange___closed__3(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_LibrarySearch_evalApply_declRange___closed__3); +l___regBuiltin_Lean_Elab_LibrarySearch_evalApply_declRange___closed__4 = _init_l___regBuiltin_Lean_Elab_LibrarySearch_evalApply_declRange___closed__4(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_LibrarySearch_evalApply_declRange___closed__4); +l___regBuiltin_Lean_Elab_LibrarySearch_evalApply_declRange___closed__5 = _init_l___regBuiltin_Lean_Elab_LibrarySearch_evalApply_declRange___closed__5(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_LibrarySearch_evalApply_declRange___closed__5); +l___regBuiltin_Lean_Elab_LibrarySearch_evalApply_declRange___closed__6 = _init_l___regBuiltin_Lean_Elab_LibrarySearch_evalApply_declRange___closed__6(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_LibrarySearch_evalApply_declRange___closed__6); +l___regBuiltin_Lean_Elab_LibrarySearch_evalApply_declRange___closed__7 = _init_l___regBuiltin_Lean_Elab_LibrarySearch_evalApply_declRange___closed__7(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_LibrarySearch_evalApply_declRange___closed__7); +if (builtin) {res = l___regBuiltin_Lean_Elab_LibrarySearch_evalApply_declRange(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +}l_Array_forInUnsafe_loop___at_Lean_Elab_LibrarySearch_elabExact_x3fTerm___spec__3___lambda__1___closed__1 = _init_l_Array_forInUnsafe_loop___at_Lean_Elab_LibrarySearch_elabExact_x3fTerm___spec__3___lambda__1___closed__1(); +lean_mark_persistent(l_Array_forInUnsafe_loop___at_Lean_Elab_LibrarySearch_elabExact_x3fTerm___spec__3___lambda__1___closed__1); +l_Lean_Elab_LibrarySearch_elabExact_x3fTerm___lambda__4___closed__1 = _init_l_Lean_Elab_LibrarySearch_elabExact_x3fTerm___lambda__4___closed__1(); +lean_mark_persistent(l_Lean_Elab_LibrarySearch_elabExact_x3fTerm___lambda__4___closed__1); +l_Lean_Elab_LibrarySearch_elabExact_x3fTerm___lambda__4___closed__2 = _init_l_Lean_Elab_LibrarySearch_elabExact_x3fTerm___lambda__4___closed__2(); +lean_mark_persistent(l_Lean_Elab_LibrarySearch_elabExact_x3fTerm___lambda__4___closed__2); +l_Lean_Elab_LibrarySearch_elabExact_x3fTerm___lambda__4___closed__3 = _init_l_Lean_Elab_LibrarySearch_elabExact_x3fTerm___lambda__4___closed__3(); +lean_mark_persistent(l_Lean_Elab_LibrarySearch_elabExact_x3fTerm___lambda__4___closed__3); +l_Lean_Elab_LibrarySearch_elabExact_x3fTerm___lambda__5___closed__1 = _init_l_Lean_Elab_LibrarySearch_elabExact_x3fTerm___lambda__5___closed__1(); +lean_mark_persistent(l_Lean_Elab_LibrarySearch_elabExact_x3fTerm___lambda__5___closed__1); +l_Lean_Elab_LibrarySearch_elabExact_x3fTerm___lambda__5___closed__2 = _init_l_Lean_Elab_LibrarySearch_elabExact_x3fTerm___lambda__5___closed__2(); +lean_mark_persistent(l_Lean_Elab_LibrarySearch_elabExact_x3fTerm___lambda__5___closed__2); +l_Lean_Elab_LibrarySearch_elabExact_x3fTerm___closed__1 = _init_l_Lean_Elab_LibrarySearch_elabExact_x3fTerm___closed__1(); +lean_mark_persistent(l_Lean_Elab_LibrarySearch_elabExact_x3fTerm___closed__1); +l_Lean_Elab_LibrarySearch_elabExact_x3fTerm___closed__2 = _init_l_Lean_Elab_LibrarySearch_elabExact_x3fTerm___closed__2(); +lean_mark_persistent(l_Lean_Elab_LibrarySearch_elabExact_x3fTerm___closed__2); +l___regBuiltin_Lean_Elab_LibrarySearch_elabExact_x3fTerm___closed__1 = _init_l___regBuiltin_Lean_Elab_LibrarySearch_elabExact_x3fTerm___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_LibrarySearch_elabExact_x3fTerm___closed__1); +l___regBuiltin_Lean_Elab_LibrarySearch_elabExact_x3fTerm___closed__2 = _init_l___regBuiltin_Lean_Elab_LibrarySearch_elabExact_x3fTerm___closed__2(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_LibrarySearch_elabExact_x3fTerm___closed__2); +l___regBuiltin_Lean_Elab_LibrarySearch_elabExact_x3fTerm___closed__3 = _init_l___regBuiltin_Lean_Elab_LibrarySearch_elabExact_x3fTerm___closed__3(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_LibrarySearch_elabExact_x3fTerm___closed__3); +l___regBuiltin_Lean_Elab_LibrarySearch_elabExact_x3fTerm___closed__4 = _init_l___regBuiltin_Lean_Elab_LibrarySearch_elabExact_x3fTerm___closed__4(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_LibrarySearch_elabExact_x3fTerm___closed__4); +if (builtin) {res = l___regBuiltin_Lean_Elab_LibrarySearch_elabExact_x3fTerm(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +}l___regBuiltin_Lean_Elab_LibrarySearch_elabExact_x3fTerm_declRange___closed__1 = _init_l___regBuiltin_Lean_Elab_LibrarySearch_elabExact_x3fTerm_declRange___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_LibrarySearch_elabExact_x3fTerm_declRange___closed__1); +l___regBuiltin_Lean_Elab_LibrarySearch_elabExact_x3fTerm_declRange___closed__2 = _init_l___regBuiltin_Lean_Elab_LibrarySearch_elabExact_x3fTerm_declRange___closed__2(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_LibrarySearch_elabExact_x3fTerm_declRange___closed__2); +l___regBuiltin_Lean_Elab_LibrarySearch_elabExact_x3fTerm_declRange___closed__3 = _init_l___regBuiltin_Lean_Elab_LibrarySearch_elabExact_x3fTerm_declRange___closed__3(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_LibrarySearch_elabExact_x3fTerm_declRange___closed__3); +l___regBuiltin_Lean_Elab_LibrarySearch_elabExact_x3fTerm_declRange___closed__4 = _init_l___regBuiltin_Lean_Elab_LibrarySearch_elabExact_x3fTerm_declRange___closed__4(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_LibrarySearch_elabExact_x3fTerm_declRange___closed__4); +l___regBuiltin_Lean_Elab_LibrarySearch_elabExact_x3fTerm_declRange___closed__5 = _init_l___regBuiltin_Lean_Elab_LibrarySearch_elabExact_x3fTerm_declRange___closed__5(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_LibrarySearch_elabExact_x3fTerm_declRange___closed__5); +l___regBuiltin_Lean_Elab_LibrarySearch_elabExact_x3fTerm_declRange___closed__6 = _init_l___regBuiltin_Lean_Elab_LibrarySearch_elabExact_x3fTerm_declRange___closed__6(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_LibrarySearch_elabExact_x3fTerm_declRange___closed__6); +l___regBuiltin_Lean_Elab_LibrarySearch_elabExact_x3fTerm_declRange___closed__7 = _init_l___regBuiltin_Lean_Elab_LibrarySearch_elabExact_x3fTerm_declRange___closed__7(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_LibrarySearch_elabExact_x3fTerm_declRange___closed__7); +if (builtin) {res = l___regBuiltin_Lean_Elab_LibrarySearch_elabExact_x3fTerm_declRange(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +}return lean_io_result_mk_ok(lean_box(0)); +} +#ifdef __cplusplus +} +#endif diff --git a/stage0/stdlib/Lean/Elab/Tactic/NormCast.c b/stage0/stdlib/Lean/Elab/Tactic/NormCast.c index e5ee5a5da5..f11049dac8 100644 --- a/stage0/stdlib/Lean/Elab/Tactic/NormCast.c +++ b/stage0/stdlib/Lean/Elab/Tactic/NormCast.c @@ -1,6 +1,6 @@ // Lean compiler output // Module: Lean.Elab.Tactic.NormCast -// Imports: Init Lean.Meta.Tactic.NormCast Lean.Elab.Tactic.Conv.Simp Lean.Elab.ElabRules +// Imports: Lean.Meta.Tactic.NormCast Lean.Elab.Tactic.Conv.Simp Lean.Elab.ElabRules #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -13155,7 +13155,7 @@ static lean_object* _init_l___regBuiltin_Lean_Elab_Tactic_NormCast_elabModCast_d _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(206u); +x_1 = lean_unsigned_to_nat(207u); x_2 = lean_unsigned_to_nat(29u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -13167,7 +13167,7 @@ static lean_object* _init_l___regBuiltin_Lean_Elab_Tactic_NormCast_elabModCast_d _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(221u); +x_1 = lean_unsigned_to_nat(222u); x_2 = lean_unsigned_to_nat(31u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -13195,7 +13195,7 @@ static lean_object* _init_l___regBuiltin_Lean_Elab_Tactic_NormCast_elabModCast_d _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(206u); +x_1 = lean_unsigned_to_nat(207u); x_2 = lean_unsigned_to_nat(33u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -13207,7 +13207,7 @@ static lean_object* _init_l___regBuiltin_Lean_Elab_Tactic_NormCast_elabModCast_d _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(206u); +x_1 = lean_unsigned_to_nat(207u); x_2 = lean_unsigned_to_nat(44u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -14586,7 +14586,7 @@ static lean_object* _init_l___regBuiltin_Lean_Elab_Tactic_NormCast_evalNormCast0 _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(238u); +x_1 = lean_unsigned_to_nat(239u); x_2 = lean_unsigned_to_nat(0u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -14598,7 +14598,7 @@ static lean_object* _init_l___regBuiltin_Lean_Elab_Tactic_NormCast_evalNormCast0 _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(250u); +x_1 = lean_unsigned_to_nat(251u); x_2 = lean_unsigned_to_nat(31u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -14626,7 +14626,7 @@ static lean_object* _init_l___regBuiltin_Lean_Elab_Tactic_NormCast_evalNormCast0 _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(238u); +x_1 = lean_unsigned_to_nat(239u); x_2 = lean_unsigned_to_nat(4u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -14638,7 +14638,7 @@ static lean_object* _init_l___regBuiltin_Lean_Elab_Tactic_NormCast_evalNormCast0 _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(238u); +x_1 = lean_unsigned_to_nat(239u); x_2 = lean_unsigned_to_nat(17u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -14892,7 +14892,7 @@ static lean_object* _init_l___regBuiltin_Lean_Elab_Tactic_NormCast_evalConvNormC _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(253u); +x_1 = lean_unsigned_to_nat(254u); x_2 = lean_unsigned_to_nat(0u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -14904,7 +14904,7 @@ static lean_object* _init_l___regBuiltin_Lean_Elab_Tactic_NormCast_evalConvNormC _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(255u); +x_1 = lean_unsigned_to_nat(256u); x_2 = lean_unsigned_to_nat(41u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -14932,7 +14932,7 @@ static lean_object* _init_l___regBuiltin_Lean_Elab_Tactic_NormCast_evalConvNormC _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(253u); +x_1 = lean_unsigned_to_nat(254u); x_2 = lean_unsigned_to_nat(4u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -14944,7 +14944,7 @@ static lean_object* _init_l___regBuiltin_Lean_Elab_Tactic_NormCast_evalConvNormC _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(253u); +x_1 = lean_unsigned_to_nat(254u); x_2 = lean_unsigned_to_nat(20u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -15370,7 +15370,7 @@ static lean_object* _init_l___regBuiltin_Lean_Elab_Tactic_NormCast_evalPushCast_ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(258u); +x_1 = lean_unsigned_to_nat(259u); x_2 = lean_unsigned_to_nat(0u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -15382,7 +15382,7 @@ static lean_object* _init_l___regBuiltin_Lean_Elab_Tactic_NormCast_evalPushCast_ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(263u); +x_1 = lean_unsigned_to_nat(264u); x_2 = lean_unsigned_to_nat(78u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -15410,7 +15410,7 @@ static lean_object* _init_l___regBuiltin_Lean_Elab_Tactic_NormCast_evalPushCast_ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(258u); +x_1 = lean_unsigned_to_nat(259u); x_2 = lean_unsigned_to_nat(4u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -15422,7 +15422,7 @@ static lean_object* _init_l___regBuiltin_Lean_Elab_Tactic_NormCast_evalPushCast_ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(258u); +x_1 = lean_unsigned_to_nat(259u); x_2 = lean_unsigned_to_nat(16u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -16736,7 +16736,7 @@ static lean_object* _init_l___regBuiltin_Lean_Elab_Tactic_NormCast_elabAddElim_d _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(266u); +x_1 = lean_unsigned_to_nat(267u); x_2 = lean_unsigned_to_nat(54u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -16748,7 +16748,7 @@ static lean_object* _init_l___regBuiltin_Lean_Elab_Tactic_NormCast_elabAddElim_d _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(271u); +x_1 = lean_unsigned_to_nat(272u); x_2 = lean_unsigned_to_nat(31u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -16776,7 +16776,7 @@ static lean_object* _init_l___regBuiltin_Lean_Elab_Tactic_NormCast_elabAddElim_d _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(266u); +x_1 = lean_unsigned_to_nat(267u); x_2 = lean_unsigned_to_nat(58u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -16788,7 +16788,7 @@ static lean_object* _init_l___regBuiltin_Lean_Elab_Tactic_NormCast_elabAddElim_d _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(266u); +x_1 = lean_unsigned_to_nat(267u); x_2 = lean_unsigned_to_nat(69u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -16834,7 +16834,6 @@ x_4 = l_Lean_addBuiltinDeclarationRanges(x_2, x_3, x_1); return x_4; } } -lean_object* initialize_Init(uint8_t builtin, lean_object*); lean_object* initialize_Lean_Meta_Tactic_NormCast(uint8_t builtin, lean_object*); lean_object* initialize_Lean_Elab_Tactic_Conv_Simp(uint8_t builtin, lean_object*); lean_object* initialize_Lean_Elab_ElabRules(uint8_t builtin, lean_object*); @@ -16843,9 +16842,6 @@ LEAN_EXPORT lean_object* initialize_Lean_Elab_Tactic_NormCast(uint8_t builtin, l lean_object * res; if (_G_initialized) return lean_io_result_mk_ok(lean_box(0)); _G_initialized = true; -res = initialize_Init(builtin, lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); res = initialize_Lean_Meta_Tactic_NormCast(builtin, lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); diff --git a/stage0/stdlib/Lean/Elab/Tactic/Omega.c b/stage0/stdlib/Lean/Elab/Tactic/Omega.c index 2a8200d250..3abb6d024f 100644 --- a/stage0/stdlib/Lean/Elab/Tactic/Omega.c +++ b/stage0/stdlib/Lean/Elab/Tactic/Omega.c @@ -1,6 +1,6 @@ // Lean compiler output // Module: Lean.Elab.Tactic.Omega -// Imports: Init Lean.Elab.Tactic.Omega.Frontend +// Imports: Lean.Elab.Tactic.Omega.Frontend #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -13,16 +13,12 @@ #ifdef __cplusplus extern "C" { #endif -lean_object* initialize_Init(uint8_t builtin, lean_object*); lean_object* initialize_Lean_Elab_Tactic_Omega_Frontend(uint8_t builtin, lean_object*); static bool _G_initialized = false; LEAN_EXPORT lean_object* initialize_Lean_Elab_Tactic_Omega(uint8_t builtin, lean_object* w) { lean_object * res; if (_G_initialized) return lean_io_result_mk_ok(lean_box(0)); _G_initialized = true; -res = initialize_Init(builtin, lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); res = initialize_Lean_Elab_Tactic_Omega_Frontend(builtin, lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); diff --git a/stage0/stdlib/Lean/Elab/Tactic/Omega/Core.c b/stage0/stdlib/Lean/Elab/Tactic/Omega/Core.c index 5aa3523623..019e5fac23 100644 --- a/stage0/stdlib/Lean/Elab/Tactic/Omega/Core.c +++ b/stage0/stdlib/Lean/Elab/Tactic/Omega/Core.c @@ -1,6 +1,6 @@ // Lean compiler output // Module: Lean.Elab.Tactic.Omega.Core -// Imports: Init Lean.Elab.Tactic.Omega.OmegaM Lean.Elab.Tactic.Omega.MinNatAbs +// Imports: Init.Omega.Constraint Lean.Elab.Tactic.Omega.OmegaM Lean.Elab.Tactic.Omega.MinNatAbs #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -110,6 +110,7 @@ LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_Problem_explanation_x3f___defa static lean_object* l_Lean_Elab_Tactic_Omega_Justification_bmodProof___closed__12; static lean_object* l_Lean_Elab_Tactic_Omega_instToExprConstraint___lambda__1___closed__3; lean_object* lean_array_fget(lean_object*, lean_object*); +static lean_object* l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_Omega_instToExprLinearCombo___spec__1___closed__10; static lean_object* l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__7; lean_object* lean_array_fset(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_List_foldl___at_Lean_Elab_Tactic_Omega_Problem_insertConstraint___spec__13(lean_object*, lean_object*, lean_object*); @@ -157,6 +158,7 @@ LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_Problem_dealWithHardEquality__ static lean_object* l___auto____x40_Lean_Elab_Tactic_Omega_Core___hyg_1659____closed__12; static lean_object* l_List_mapTR_loop___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___spec__3___closed__8; LEAN_EXPORT lean_object* l_Std_Range_forIn_loop___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinData___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +uint8_t lean_int_dec_le(lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Omega_Justification_toString___closed__14; static lean_object* l_Lean_Elab_Tactic_Omega_instToExprConstraint___lambda__1___closed__6; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1(lean_object*); @@ -164,6 +166,7 @@ static lean_object* l_Std_Range_forIn_loop___at_Lean_Elab_Tactic_Omega_Problem_f static lean_object* l_Lean_Elab_Tactic_Omega_Justification_toString___closed__7; static lean_object* l_Lean_Elab_Tactic_Omega_Problem_runOmega___closed__6; lean_object* lean_string_push(lean_object*, uint32_t); +lean_object* l_Lean_Level_ofNat(lean_object*); static lean_object* l_Lean_Elab_Tactic_Omega_Problem_runOmega___closed__7; static lean_object* l_Lean_Elab_Tactic_Omega_Problem_instToStringFourierMotzkinData___closed__3; LEAN_EXPORT lean_object* l_Lean_HashMap_insert___at_Lean_Elab_Tactic_Omega_Problem_insertConstraint___spec__1(lean_object*, lean_object*, lean_object*); @@ -174,7 +177,6 @@ LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_Fact_instToStringFact(lean_obj static lean_object* l_Lean_Elab_Tactic_Omega_Justification_tidyProof___closed__7; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_Problem_addInequality___lambda__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_Omega_instToExprLinearCombo___lambda__1___closed__3; -static lean_object* l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__17; static lean_object* l_Lean_Elab_Tactic_Omega_initFn____x40_Lean_Elab_Tactic_Omega_Core___hyg_5____closed__12; lean_object* l_Lean_mkApp6(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Name_mkStr3(lean_object*, lean_object*, lean_object*); @@ -199,11 +201,13 @@ static lean_object* l_Lean_Elab_Tactic_Omega_Problem_instToStringProblem___close LEAN_EXPORT lean_object* l_Lean_AssocList_foldlM___at_Lean_Elab_Tactic_Omega_Problem_instToStringProblem___spec__2___boxed(lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Omega_Problem_elimination___closed__1; uint8_t l_instDecidableNot___rarg(uint8_t); +static lean_object* l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_Omega_instToExprLinearCombo___spec__1___closed__13; LEAN_EXPORT lean_object* l_List_forIn_loop___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkin___spec__2(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_Omega_instToExprLinearCombo___spec__1___closed__1; LEAN_EXPORT lean_object* l_Lean_AssocList_contains___at_Lean_Elab_Tactic_Omega_Problem_insertConstraint___spec__3___boxed(lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Omega_Problem_proveFalse___closed__9; static lean_object* l_Lean_Elab_Tactic_Omega_Justification_toString___closed__17; +static lean_object* l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_Omega_instToExprLinearCombo___spec__1___closed__12; static lean_object* l_Lean_Elab_Tactic_Omega_Justification_bmodProof___closed__4; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_Problem_FourierMotzkinData_size___boxed(lean_object*); static lean_object* l_Lean_Elab_Tactic_Omega_Justification_tidyProof___closed__4; @@ -300,6 +304,7 @@ LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_Justification_instToStringJust lean_object* l_List_maxNatAbs(lean_object*); static lean_object* l_Lean_Elab_Tactic_Omega_Justification_toString___closed__1; static lean_object* l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__9; +static lean_object* l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_Omega_instToExprLinearCombo___spec__1___closed__11; lean_object* l___private_Lean_Meta_Basic_0__Lean_Meta_mkFreshExprMVarImpl(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Omega_Core_0__Lean_Elab_Tactic_Omega_Justification_bullet(lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_Problem_insertConstraint___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); @@ -353,6 +358,7 @@ LEAN_EXPORT uint8_t l_List_elem___at_Lean_Elab_Tactic_Omega_Problem_insertConstr LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___spec__2___boxed(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Omega_initFn____x40_Lean_Elab_Tactic_Omega_Core___hyg_5____closed__17; LEAN_EXPORT lean_object* l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_Omega_instToExprLinearCombo___spec__1___boxed(lean_object*, lean_object*, lean_object*); +static lean_object* l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_Omega_instToExprLinearCombo___spec__1___closed__9; static lean_object* l_Lean_Elab_Tactic_Omega_Justification_bmodProof___closed__15; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_Justification_tidy_x3f(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Omega_Problem_explanation_x3f___default___closed__1; @@ -364,7 +370,6 @@ lean_object* l_String_replace(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___closed__2; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_Problem_equalities___default; static lean_object* l_Lean_Elab_Tactic_Omega_Problem_addEquality___closed__3; -static lean_object* l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__18; static lean_object* l_Lean_Elab_Tactic_Omega_Justification_bmodProof___closed__7; static lean_object* l___private_Lean_Elab_Tactic_Omega_Core_0__Lean_Elab_Tactic_Omega_Justification_bullet___closed__1; static lean_object* l_Lean_Elab_Tactic_Omega_Justification_bmodProof___closed__19; @@ -413,6 +418,7 @@ lean_object* l_Lean_Omega_Constraint_scale(lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Omega_initFn____x40_Lean_Elab_Tactic_Omega_Core___hyg_5____closed__18; static lean_object* l_Lean_Elab_Tactic_Omega_Justification_proof___rarg___closed__4; lean_object* l_Lean_addMessageContextFull___at_Lean_Meta_instAddMessageContextMetaM___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Int_toNat(lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_Problem_FourierMotzkinData_upperBounds___default; lean_object* l_Lean_Omega_tidy(lean_object*); static lean_object* l_Lean_Elab_Tactic_Omega_Problem_addEquality__proof___closed__2; @@ -458,6 +464,7 @@ static lean_object* l_Lean_Elab_Tactic_Omega_Problem_explanation_x3f___default__ LEAN_EXPORT lean_object* l_Lean_HashMapImp_moveEntries___at_Lean_Elab_Tactic_Omega_Problem_insertConstraint___spec__5(lean_object*, lean_object*, lean_object*); lean_object* lean_array_uget(lean_object*, size_t); static lean_object* l_Lean_Elab_Tactic_Omega_Justification_bmodProof___closed__3; +lean_object* l_Lean_instToExprInt_mkNat(lean_object*); LEAN_EXPORT lean_object* l_List_mapTR_loop___at_Lean_Elab_Tactic_Omega_Problem_instToStringProblem___spec__4(lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Omega_Justification_bmodProof___closed__24; static lean_object* l_Lean_Elab_Tactic_Omega_Problem_elimination___closed__2; @@ -772,7 +779,7 @@ static lean_object* _init_l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Le _start: { lean_object* x_1; -x_1 = lean_mk_string_from_bytes("Int", 3); +x_1 = lean_mk_string_from_bytes("Neg", 3); return x_1; } } @@ -780,7 +787,7 @@ static lean_object* _init_l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Le _start: { lean_object* x_1; -x_1 = lean_mk_string_from_bytes("ofNat", 5); +x_1 = lean_mk_string_from_bytes("neg", 3); return x_1; } } @@ -797,37 +804,86 @@ return x_3; static lean_object* _init_l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_Omega_instToExprLinearCombo___spec__1___closed__5() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_Omega_instToExprLinearCombo___spec__1___closed__4; -x_3 = l_Lean_Expr_const___override(x_2, x_1); -return x_3; +lean_object* x_1; lean_object* x_2; +x_1 = lean_unsigned_to_nat(0u); +x_2 = l_Lean_Level_ofNat(x_1); +return x_2; } } static lean_object* _init_l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_Omega_instToExprLinearCombo___spec__1___closed__6() { _start: { -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("negSucc", 7); -return x_1; +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_Omega_instToExprLinearCombo___spec__1___closed__5; +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___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_Omega_instToExprLinearCombo___spec__1___closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_Omega_instToExprLinearCombo___spec__1___closed__2; +x_1 = l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_Omega_instToExprLinearCombo___spec__1___closed__4; x_2 = l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_Omega_instToExprLinearCombo___spec__1___closed__6; -x_3 = l_Lean_Name_mkStr2(x_1, x_2); +x_3 = l_Lean_Expr_const___override(x_1, x_2); return x_3; } } static lean_object* _init_l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_Omega_instToExprLinearCombo___spec__1___closed__8() { _start: { +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("Int", 3); +return x_1; +} +} +static lean_object* _init_l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_Omega_instToExprLinearCombo___spec__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_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_Omega_instToExprLinearCombo___spec__1___closed__7; +x_2 = l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_Omega_instToExprLinearCombo___spec__1___closed__8; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_Omega_instToExprLinearCombo___spec__1___closed__10() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_Omega_instToExprLinearCombo___spec__1___closed__9; +x_3 = l_Lean_Expr_const___override(x_2, x_1); +return x_3; +} +} +static lean_object* _init_l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_Omega_instToExprLinearCombo___spec__1___closed__11() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("instNegInt", 10); +return x_1; +} +} +static lean_object* _init_l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_Omega_instToExprLinearCombo___spec__1___closed__12() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_Omega_instToExprLinearCombo___spec__1___closed__8; +x_2 = l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_Omega_instToExprLinearCombo___spec__1___closed__11; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_Omega_instToExprLinearCombo___spec__1___closed__13() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_Omega_instToExprLinearCombo___spec__1___closed__12; x_3 = l_Lean_Expr_const___override(x_2, x_1); return x_3; } @@ -843,35 +899,34 @@ return x_1; } else { -lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; uint8_t x_8; +lean_object* x_4; lean_object* x_5; lean_object* x_6; uint8_t x_7; lean_object* x_8; x_4 = lean_ctor_get(x_3, 0); x_5 = lean_ctor_get(x_3, 1); +x_6 = l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_Omega_instToExprLinearCombo___spec__1___closed__1; +x_7 = lean_int_dec_le(x_6, x_4); lean_inc(x_2); -x_6 = l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_Omega_instToExprLinearCombo___spec__1(x_1, x_2, x_5); -x_7 = l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_Omega_instToExprLinearCombo___spec__1___closed__1; -x_8 = lean_int_dec_lt(x_4, x_7); -if (x_8 == 0) +x_8 = l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_Omega_instToExprLinearCombo___spec__1(x_1, x_2, x_5); +if (x_7 == 0) { -lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; -x_9 = lean_nat_abs(x_4); -x_10 = l_Lean_mkNatLit(x_9); -x_11 = l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_Omega_instToExprLinearCombo___spec__1___closed__5; -x_12 = l_Lean_Expr_app___override(x_11, x_10); -x_13 = l_Lean_mkAppB(x_2, x_12, x_6); -return x_13; +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; +x_9 = lean_int_neg(x_4); +x_10 = l_Int_toNat(x_9); +lean_dec(x_9); +x_11 = l_Lean_instToExprInt_mkNat(x_10); +x_12 = l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_Omega_instToExprLinearCombo___spec__1___closed__7; +x_13 = l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_Omega_instToExprLinearCombo___spec__1___closed__10; +x_14 = l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_Omega_instToExprLinearCombo___spec__1___closed__13; +x_15 = l_Lean_mkApp3(x_12, x_13, x_14, x_11); +x_16 = l_Lean_mkAppB(x_2, x_15, x_8); +return x_16; } else { -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; -x_14 = lean_nat_abs(x_4); -x_15 = lean_unsigned_to_nat(1u); -x_16 = lean_nat_sub(x_14, x_15); -lean_dec(x_14); -x_17 = l_Lean_mkNatLit(x_16); -x_18 = l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_Omega_instToExprLinearCombo___spec__1___closed__8; -x_19 = l_Lean_Expr_app___override(x_18, x_17); -x_20 = l_Lean_mkAppB(x_2, x_19, x_6); -return x_20; +lean_object* x_17; lean_object* x_18; lean_object* x_19; +x_17 = l_Int_toNat(x_4); +x_18 = l_Lean_instToExprInt_mkNat(x_17); +x_19 = l_Lean_mkAppB(x_2, x_18, x_8); +return x_19; } } } @@ -917,32 +972,12 @@ return x_3; static lean_object* _init_l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__5() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_Omega_instToExprLinearCombo___spec__1___closed__2; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___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_Omega_instToExprLinearCombo___lambda__1___closed__5; -x_3 = l_Lean_Expr_const___override(x_2, x_1); -return x_3; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__7() { -_start: -{ lean_object* x_1; x_1 = lean_mk_string_from_bytes("List", 4); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__8() { +static lean_object* _init_l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__6() { _start: { lean_object* x_1; @@ -950,17 +985,17 @@ x_1 = lean_mk_string_from_bytes("nil", 3); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__9() { +static lean_object* _init_l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__7; -x_2 = l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__8; +x_1 = l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__5; +x_2 = l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__6; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__10() { +static lean_object* _init_l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -972,27 +1007,27 @@ lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__11() { +static lean_object* _init_l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__9() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__9; -x_2 = l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__10; +x_1 = l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__7; +x_2 = l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__8; x_3 = l_Lean_Expr_const___override(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__12() { +static lean_object* _init_l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__10() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__11; -x_2 = l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__6; +x_1 = l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__9; +x_2 = l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_Omega_instToExprLinearCombo___spec__1___closed__10; x_3 = l_Lean_Expr_app___override(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__13() { +static lean_object* _init_l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__11() { _start: { lean_object* x_1; @@ -1000,13 +1035,33 @@ x_1 = lean_mk_string_from_bytes("cons", 4); return x_1; } } +static lean_object* _init_l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__12() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__5; +x_2 = l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__11; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__13() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__12; +x_2 = l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__8; +x_3 = l_Lean_Expr_const___override(x_1, x_2); +return x_3; +} +} static lean_object* _init_l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__14() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__7; -x_2 = l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__13; -x_3 = l_Lean_Name_mkStr2(x_1, x_2); +x_1 = l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__13; +x_2 = l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_Omega_instToExprLinearCombo___spec__1___closed__10; +x_3 = l_Lean_Expr_app___override(x_1, x_2); return x_3; } } @@ -1014,9 +1069,11 @@ static lean_object* _init_l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambd _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__14; -x_2 = l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__10; -x_3 = l_Lean_Expr_const___override(x_1, x_2); +x_1 = lean_box(0); +x_2 = l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_Omega_instToExprLinearCombo___spec__1___closed__5; +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; } } @@ -1024,69 +1081,48 @@ static lean_object* _init_l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambd _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__15; -x_2 = l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__6; -x_3 = l_Lean_Expr_app___override(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__17() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_Omega_instToExprLinearCombo___spec__1___closed__4; -x_3 = l_Lean_Expr_const___override(x_2, x_1); -return x_3; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__18() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_Omega_instToExprLinearCombo___spec__1___closed__7; -x_3 = l_Lean_Expr_const___override(x_2, x_1); +x_1 = l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_Omega_instToExprLinearCombo___spec__1___closed__4; +x_2 = l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__15; +x_3 = l_Lean_Expr_const___override(x_1, x_2); return x_3; } } LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1(lean_object* x_1) { _start: { -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_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; x_2 = lean_ctor_get(x_1, 0); -x_3 = lean_ctor_get(x_1, 1); -x_4 = l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__12; -x_5 = l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__16; -x_6 = l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_Omega_instToExprLinearCombo___spec__1(x_4, x_5, x_3); -x_7 = l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_Omega_instToExprLinearCombo___spec__1___closed__1; -x_8 = lean_int_dec_lt(x_2, x_7); -if (x_8 == 0) +x_3 = l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_Omega_instToExprLinearCombo___spec__1___closed__1; +x_4 = lean_int_dec_le(x_3, x_2); +x_5 = lean_ctor_get(x_1, 1); +x_6 = l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__10; +x_7 = l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__14; +x_8 = l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_Omega_instToExprLinearCombo___spec__1(x_6, x_7, x_5); +if (x_4 == 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_15; -x_9 = lean_nat_abs(x_2); -x_10 = l_Lean_mkNatLit(x_9); -x_11 = l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__17; -x_12 = l_Lean_Expr_app___override(x_11, x_10); -x_13 = l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__4; -x_14 = l_Lean_Expr_app___override(x_13, x_12); -x_15 = l_Lean_Expr_app___override(x_14, x_6); -return x_15; +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_9 = lean_int_neg(x_2); +x_10 = l_Int_toNat(x_9); +lean_dec(x_9); +x_11 = l_Lean_instToExprInt_mkNat(x_10); +x_12 = l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__16; +x_13 = l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_Omega_instToExprLinearCombo___spec__1___closed__10; +x_14 = l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_Omega_instToExprLinearCombo___spec__1___closed__13; +x_15 = l_Lean_mkApp3(x_12, x_13, x_14, x_11); +x_16 = l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__4; +x_17 = l_Lean_Expr_app___override(x_16, x_15); +x_18 = l_Lean_Expr_app___override(x_17, x_8); +return x_18; } else { -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; -x_16 = lean_nat_abs(x_2); -x_17 = lean_unsigned_to_nat(1u); -x_18 = lean_nat_sub(x_16, x_17); -lean_dec(x_16); -x_19 = l_Lean_mkNatLit(x_18); -x_20 = l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__18; -x_21 = l_Lean_Expr_app___override(x_20, x_19); -x_22 = l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__4; -x_23 = l_Lean_Expr_app___override(x_22, x_21); -x_24 = l_Lean_Expr_app___override(x_23, x_6); -return x_24; +lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; +x_19 = l_Int_toNat(x_2); +x_20 = l_Lean_instToExprInt_mkNat(x_19); +x_21 = l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__4; +x_22 = l_Lean_Expr_app___override(x_21, x_20); +x_23 = l_Lean_Expr_app___override(x_22, x_8); +return x_23; } } } @@ -1219,7 +1255,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Elab_Tactic_Omega_instToExprConstraint___lambda__1___closed__6; -x_2 = l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__10; +x_2 = l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__8; x_3 = l_Lean_Expr_const___override(x_1, x_2); return x_3; } @@ -1229,7 +1265,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Elab_Tactic_Omega_instToExprConstraint___lambda__1___closed__7; -x_2 = l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__6; +x_2 = l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_Omega_instToExprLinearCombo___spec__1___closed__10; x_3 = l_Lean_Expr_app___override(x_1, x_2); return x_3; } @@ -1257,7 +1293,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Elab_Tactic_Omega_instToExprConstraint___lambda__1___closed__10; -x_2 = l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__10; +x_2 = l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__8; x_3 = l_Lean_Expr_const___override(x_1, x_2); return x_3; } @@ -1270,48 +1306,46 @@ x_2 = lean_ctor_get(x_1, 0); x_3 = lean_ctor_get(x_1, 1); if (lean_obj_tag(x_2) == 0) { -lean_object* x_31; -x_31 = l_Lean_Elab_Tactic_Omega_instToExprConstraint___lambda__1___closed__8; -x_4 = x_31; -goto block_30; +lean_object* x_29; +x_29 = l_Lean_Elab_Tactic_Omega_instToExprConstraint___lambda__1___closed__8; +x_4 = x_29; +goto block_28; } else { -lean_object* x_32; lean_object* x_33; uint8_t x_34; -x_32 = lean_ctor_get(x_2, 0); -x_33 = l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_Omega_instToExprLinearCombo___spec__1___closed__1; -x_34 = lean_int_dec_lt(x_32, x_33); -if (x_34 == 0) +lean_object* x_30; lean_object* x_31; uint8_t x_32; +x_30 = lean_ctor_get(x_2, 0); +x_31 = l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_Omega_instToExprLinearCombo___spec__1___closed__1; +x_32 = lean_int_dec_le(x_31, x_30); +if (x_32 == 0) { -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_nat_abs(x_32); -x_36 = l_Lean_mkNatLit(x_35); -x_37 = l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__17; -x_38 = l_Lean_Expr_app___override(x_37, x_36); -x_39 = l_Lean_Elab_Tactic_Omega_instToExprConstraint___lambda__1___closed__11; -x_40 = l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__6; -x_41 = l_Lean_mkAppB(x_39, x_40, x_38); +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; +x_33 = lean_int_neg(x_30); +x_34 = l_Int_toNat(x_33); +lean_dec(x_33); +x_35 = l_Lean_instToExprInt_mkNat(x_34); +x_36 = l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__16; +x_37 = l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_Omega_instToExprLinearCombo___spec__1___closed__10; +x_38 = l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_Omega_instToExprLinearCombo___spec__1___closed__13; +x_39 = l_Lean_mkApp3(x_36, x_37, x_38, x_35); +x_40 = l_Lean_Elab_Tactic_Omega_instToExprConstraint___lambda__1___closed__11; +x_41 = l_Lean_mkAppB(x_40, x_37, x_39); x_4 = x_41; -goto block_30; +goto block_28; } else { -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; -x_42 = lean_nat_abs(x_32); -x_43 = lean_unsigned_to_nat(1u); -x_44 = lean_nat_sub(x_42, x_43); -lean_dec(x_42); -x_45 = l_Lean_mkNatLit(x_44); -x_46 = l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__18; -x_47 = l_Lean_Expr_app___override(x_46, x_45); -x_48 = l_Lean_Elab_Tactic_Omega_instToExprConstraint___lambda__1___closed__11; -x_49 = l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__6; -x_50 = l_Lean_mkAppB(x_48, x_49, x_47); -x_4 = x_50; -goto block_30; +lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; +x_42 = l_Int_toNat(x_30); +x_43 = l_Lean_instToExprInt_mkNat(x_42); +x_44 = l_Lean_Elab_Tactic_Omega_instToExprConstraint___lambda__1___closed__11; +x_45 = l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_Omega_instToExprLinearCombo___spec__1___closed__10; +x_46 = l_Lean_mkAppB(x_44, x_45, x_43); +x_4 = x_46; +goto block_28; } } -block_30: +block_28: { lean_object* x_5; lean_object* x_6; x_5 = l_Lean_Elab_Tactic_Omega_instToExprConstraint___lambda__1___closed__3; @@ -1328,35 +1362,33 @@ else lean_object* x_9; lean_object* x_10; uint8_t x_11; x_9 = lean_ctor_get(x_3, 0); x_10 = l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_Omega_instToExprLinearCombo___spec__1___closed__1; -x_11 = lean_int_dec_lt(x_9, x_10); +x_11 = lean_int_dec_le(x_10, x_9); if (x_11 == 0) { -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; -x_12 = lean_nat_abs(x_9); -x_13 = l_Lean_mkNatLit(x_12); -x_14 = l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__17; -x_15 = l_Lean_Expr_app___override(x_14, x_13); -x_16 = l_Lean_Elab_Tactic_Omega_instToExprConstraint___lambda__1___closed__11; -x_17 = l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__6; -x_18 = l_Lean_mkAppB(x_16, x_17, x_15); -x_19 = l_Lean_Expr_app___override(x_6, x_18); -return x_19; +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; +x_12 = lean_int_neg(x_9); +x_13 = l_Int_toNat(x_12); +lean_dec(x_12); +x_14 = l_Lean_instToExprInt_mkNat(x_13); +x_15 = l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__16; +x_16 = l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_Omega_instToExprLinearCombo___spec__1___closed__10; +x_17 = l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_Omega_instToExprLinearCombo___spec__1___closed__13; +x_18 = l_Lean_mkApp3(x_15, x_16, x_17, x_14); +x_19 = l_Lean_Elab_Tactic_Omega_instToExprConstraint___lambda__1___closed__11; +x_20 = l_Lean_mkAppB(x_19, x_16, x_18); +x_21 = l_Lean_Expr_app___override(x_6, x_20); +return x_21; } else { -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; -x_20 = lean_nat_abs(x_9); -x_21 = lean_unsigned_to_nat(1u); -x_22 = lean_nat_sub(x_20, x_21); -lean_dec(x_20); -x_23 = l_Lean_mkNatLit(x_22); -x_24 = l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__18; -x_25 = l_Lean_Expr_app___override(x_24, x_23); -x_26 = l_Lean_Elab_Tactic_Omega_instToExprConstraint___lambda__1___closed__11; -x_27 = l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__6; -x_28 = l_Lean_mkAppB(x_26, x_27, x_25); -x_29 = l_Lean_Expr_app___override(x_6, x_28); -return x_29; +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_22 = l_Int_toNat(x_9); +x_23 = l_Lean_instToExprInt_mkNat(x_22); +x_24 = l_Lean_Elab_Tactic_Omega_instToExprConstraint___lambda__1___closed__11; +x_25 = l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_Omega_instToExprLinearCombo___spec__1___closed__10; +x_26 = l_Lean_mkAppB(x_24, x_25, x_23); +x_27 = l_Lean_Expr_app___override(x_6, x_26); +return x_27; } } } @@ -3780,7 +3812,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Elab_Tactic_Omega_instToExprConstraint___lambda__1___closed__6; -x_2 = l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__10; +x_2 = l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__8; x_3 = l_Lean_Expr_const___override(x_1, x_2); return x_3; } @@ -3790,7 +3822,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Elab_Tactic_Omega_Justification_tidyProof___closed__5; -x_2 = l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__6; +x_2 = l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_Omega_instToExprLinearCombo___spec__1___closed__10; x_3 = l_Lean_Expr_app___override(x_1, x_2); return x_3; } @@ -3800,7 +3832,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Elab_Tactic_Omega_instToExprConstraint___lambda__1___closed__10; -x_2 = l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__10; +x_2 = l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__8; x_3 = l_Lean_Expr_const___override(x_1, x_2); return x_3; } @@ -3811,53 +3843,51 @@ _start: lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; x_5 = lean_ctor_get(x_1, 0); x_6 = lean_ctor_get(x_1, 1); -x_7 = l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__12; -x_8 = l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__16; +x_7 = l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__10; +x_8 = l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__14; x_9 = l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_Omega_instToExprLinearCombo___spec__1(x_7, x_8, x_2); if (lean_obj_tag(x_5) == 0) { -lean_object* x_43; -x_43 = l_Lean_Elab_Tactic_Omega_Justification_tidyProof___closed__6; -x_10 = x_43; -goto block_42; +lean_object* x_41; +x_41 = l_Lean_Elab_Tactic_Omega_Justification_tidyProof___closed__6; +x_10 = x_41; +goto block_40; } else { -lean_object* x_44; lean_object* x_45; uint8_t x_46; -x_44 = lean_ctor_get(x_5, 0); -x_45 = l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_Omega_instToExprLinearCombo___spec__1___closed__1; -x_46 = lean_int_dec_lt(x_44, x_45); -if (x_46 == 0) +lean_object* x_42; lean_object* x_43; uint8_t x_44; +x_42 = lean_ctor_get(x_5, 0); +x_43 = l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_Omega_instToExprLinearCombo___spec__1___closed__1; +x_44 = lean_int_dec_le(x_43, x_42); +if (x_44 == 0) { -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_nat_abs(x_44); -x_48 = l_Lean_mkNatLit(x_47); -x_49 = l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__17; -x_50 = l_Lean_Expr_app___override(x_49, x_48); -x_51 = l_Lean_Elab_Tactic_Omega_Justification_tidyProof___closed__7; -x_52 = l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__6; -x_53 = l_Lean_mkAppB(x_51, x_52, x_50); +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; +x_45 = lean_int_neg(x_42); +x_46 = l_Int_toNat(x_45); +lean_dec(x_45); +x_47 = l_Lean_instToExprInt_mkNat(x_46); +x_48 = l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__16; +x_49 = l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_Omega_instToExprLinearCombo___spec__1___closed__10; +x_50 = l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_Omega_instToExprLinearCombo___spec__1___closed__13; +x_51 = l_Lean_mkApp3(x_48, x_49, x_50, x_47); +x_52 = l_Lean_Elab_Tactic_Omega_Justification_tidyProof___closed__7; +x_53 = l_Lean_mkAppB(x_52, x_49, x_51); x_10 = x_53; -goto block_42; +goto block_40; } else { -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; -x_54 = lean_nat_abs(x_44); -x_55 = lean_unsigned_to_nat(1u); -x_56 = lean_nat_sub(x_54, x_55); -lean_dec(x_54); -x_57 = l_Lean_mkNatLit(x_56); -x_58 = l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__18; -x_59 = l_Lean_Expr_app___override(x_58, x_57); -x_60 = l_Lean_Elab_Tactic_Omega_Justification_tidyProof___closed__7; -x_61 = l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__6; -x_62 = l_Lean_mkAppB(x_60, x_61, x_59); -x_10 = x_62; -goto block_42; +lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; +x_54 = l_Int_toNat(x_42); +x_55 = l_Lean_instToExprInt_mkNat(x_54); +x_56 = l_Lean_Elab_Tactic_Omega_Justification_tidyProof___closed__7; +x_57 = l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_Omega_instToExprLinearCombo___spec__1___closed__10; +x_58 = l_Lean_mkAppB(x_56, x_57, x_55); +x_10 = x_58; +goto block_40; } } -block_42: +block_40: { lean_object* x_11; lean_object* x_12; x_11 = l_Lean_Elab_Tactic_Omega_Justification_tidyProof___closed__4; @@ -3876,39 +3906,37 @@ else lean_object* x_17; lean_object* x_18; uint8_t x_19; x_17 = lean_ctor_get(x_6, 0); x_18 = l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_Omega_instToExprLinearCombo___spec__1___closed__1; -x_19 = lean_int_dec_lt(x_17, x_18); +x_19 = lean_int_dec_le(x_18, x_17); if (x_19 == 0) { -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; -x_20 = lean_nat_abs(x_17); -x_21 = l_Lean_mkNatLit(x_20); -x_22 = l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__17; -x_23 = l_Lean_Expr_app___override(x_22, x_21); -x_24 = l_Lean_Elab_Tactic_Omega_Justification_tidyProof___closed__7; -x_25 = l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__6; -x_26 = l_Lean_mkAppB(x_24, x_25, x_23); -x_27 = l_Lean_Expr_app___override(x_12, x_26); -x_28 = l_Lean_Elab_Tactic_Omega_Justification_tidyProof___closed__3; -x_29 = l_Lean_mkApp4(x_28, x_27, x_9, x_3, x_4); -return x_29; +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; +x_20 = lean_int_neg(x_17); +x_21 = l_Int_toNat(x_20); +lean_dec(x_20); +x_22 = l_Lean_instToExprInt_mkNat(x_21); +x_23 = l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__16; +x_24 = l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_Omega_instToExprLinearCombo___spec__1___closed__10; +x_25 = l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_Omega_instToExprLinearCombo___spec__1___closed__13; +x_26 = l_Lean_mkApp3(x_23, x_24, x_25, x_22); +x_27 = l_Lean_Elab_Tactic_Omega_Justification_tidyProof___closed__7; +x_28 = l_Lean_mkAppB(x_27, x_24, x_26); +x_29 = l_Lean_Expr_app___override(x_12, x_28); +x_30 = l_Lean_Elab_Tactic_Omega_Justification_tidyProof___closed__3; +x_31 = l_Lean_mkApp4(x_30, x_29, x_9, x_3, x_4); +return x_31; } else { -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; -x_30 = lean_nat_abs(x_17); -x_31 = lean_unsigned_to_nat(1u); -x_32 = lean_nat_sub(x_30, x_31); -lean_dec(x_30); -x_33 = l_Lean_mkNatLit(x_32); -x_34 = l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__18; -x_35 = l_Lean_Expr_app___override(x_34, x_33); -x_36 = l_Lean_Elab_Tactic_Omega_Justification_tidyProof___closed__7; -x_37 = l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__6; -x_38 = l_Lean_mkAppB(x_36, x_37, x_35); -x_39 = l_Lean_Expr_app___override(x_12, x_38); -x_40 = l_Lean_Elab_Tactic_Omega_Justification_tidyProof___closed__3; -x_41 = l_Lean_mkApp4(x_40, x_39, x_9, x_3, x_4); -return x_41; +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; +x_32 = l_Int_toNat(x_17); +x_33 = l_Lean_instToExprInt_mkNat(x_32); +x_34 = l_Lean_Elab_Tactic_Omega_Justification_tidyProof___closed__7; +x_35 = l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_Omega_instToExprLinearCombo___spec__1___closed__10; +x_36 = l_Lean_mkAppB(x_34, x_35, x_33); +x_37 = l_Lean_Expr_app___override(x_12, x_36); +x_38 = l_Lean_Elab_Tactic_Omega_Justification_tidyProof___closed__3; +x_39 = l_Lean_mkApp4(x_38, x_37, x_9, x_3, x_4); +return x_39; } } } @@ -3957,104 +3985,100 @@ return x_3; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_Justification_combineProof(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; 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_69; +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_65; x_7 = lean_ctor_get(x_1, 0); x_8 = lean_ctor_get(x_1, 1); x_9 = lean_ctor_get(x_2, 0); x_10 = lean_ctor_get(x_2, 1); -x_11 = l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__12; -x_12 = l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__16; +x_11 = l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__10; +x_12 = l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__14; x_13 = l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_Omega_instToExprLinearCombo___spec__1(x_11, x_12, x_3); if (lean_obj_tag(x_7) == 0) { -lean_object* x_96; -x_96 = l_Lean_Elab_Tactic_Omega_Justification_tidyProof___closed__6; -x_69 = x_96; -goto block_95; +lean_object* x_90; +x_90 = l_Lean_Elab_Tactic_Omega_Justification_tidyProof___closed__6; +x_65 = x_90; +goto block_89; } else { -lean_object* x_97; lean_object* x_98; uint8_t x_99; -x_97 = lean_ctor_get(x_7, 0); -x_98 = l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_Omega_instToExprLinearCombo___spec__1___closed__1; -x_99 = lean_int_dec_lt(x_97, x_98); -if (x_99 == 0) +lean_object* x_91; lean_object* x_92; uint8_t x_93; +x_91 = lean_ctor_get(x_7, 0); +x_92 = l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_Omega_instToExprLinearCombo___spec__1___closed__1; +x_93 = lean_int_dec_le(x_92, x_91); +if (x_93 == 0) { -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; -x_100 = lean_nat_abs(x_97); -x_101 = l_Lean_mkNatLit(x_100); -x_102 = l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__17; -x_103 = l_Lean_Expr_app___override(x_102, x_101); -x_104 = l_Lean_Elab_Tactic_Omega_Justification_tidyProof___closed__7; -x_105 = l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__6; -x_106 = l_Lean_mkAppB(x_104, x_105, x_103); -x_69 = x_106; -goto block_95; +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; +x_94 = lean_int_neg(x_91); +x_95 = l_Int_toNat(x_94); +lean_dec(x_94); +x_96 = l_Lean_instToExprInt_mkNat(x_95); +x_97 = l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__16; +x_98 = l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_Omega_instToExprLinearCombo___spec__1___closed__10; +x_99 = l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_Omega_instToExprLinearCombo___spec__1___closed__13; +x_100 = l_Lean_mkApp3(x_97, x_98, x_99, x_96); +x_101 = l_Lean_Elab_Tactic_Omega_Justification_tidyProof___closed__7; +x_102 = l_Lean_mkAppB(x_101, x_98, x_100); +x_65 = x_102; +goto block_89; } 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; lean_object* x_115; -x_107 = lean_nat_abs(x_97); -x_108 = lean_unsigned_to_nat(1u); -x_109 = lean_nat_sub(x_107, x_108); -lean_dec(x_107); -x_110 = l_Lean_mkNatLit(x_109); -x_111 = l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__18; -x_112 = l_Lean_Expr_app___override(x_111, x_110); -x_113 = l_Lean_Elab_Tactic_Omega_Justification_tidyProof___closed__7; -x_114 = l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__6; -x_115 = l_Lean_mkAppB(x_113, x_114, x_112); -x_69 = x_115; -goto block_95; +lean_object* x_103; lean_object* x_104; lean_object* x_105; lean_object* x_106; lean_object* x_107; +x_103 = l_Int_toNat(x_91); +x_104 = l_Lean_instToExprInt_mkNat(x_103); +x_105 = l_Lean_Elab_Tactic_Omega_Justification_tidyProof___closed__7; +x_106 = l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_Omega_instToExprLinearCombo___spec__1___closed__10; +x_107 = l_Lean_mkAppB(x_105, x_106, x_104); +x_65 = x_107; +goto block_89; } } -block_68: +block_64: { lean_object* x_15; if (lean_obj_tag(x_9) == 0) { -lean_object* x_48; -x_48 = l_Lean_Elab_Tactic_Omega_Justification_tidyProof___closed__6; -x_15 = x_48; -goto block_47; +lean_object* x_46; +x_46 = l_Lean_Elab_Tactic_Omega_Justification_tidyProof___closed__6; +x_15 = x_46; +goto block_45; } else { -lean_object* x_49; lean_object* x_50; uint8_t x_51; -x_49 = lean_ctor_get(x_9, 0); -x_50 = l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_Omega_instToExprLinearCombo___spec__1___closed__1; -x_51 = lean_int_dec_lt(x_49, x_50); -if (x_51 == 0) +lean_object* x_47; lean_object* x_48; uint8_t x_49; +x_47 = lean_ctor_get(x_9, 0); +x_48 = l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_Omega_instToExprLinearCombo___spec__1___closed__1; +x_49 = lean_int_dec_le(x_48, x_47); +if (x_49 == 0) { -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_nat_abs(x_49); -x_53 = l_Lean_mkNatLit(x_52); -x_54 = l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__17; -x_55 = l_Lean_Expr_app___override(x_54, x_53); -x_56 = l_Lean_Elab_Tactic_Omega_Justification_tidyProof___closed__7; -x_57 = l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__6; -x_58 = l_Lean_mkAppB(x_56, x_57, x_55); +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; +x_50 = lean_int_neg(x_47); +x_51 = l_Int_toNat(x_50); +lean_dec(x_50); +x_52 = l_Lean_instToExprInt_mkNat(x_51); +x_53 = l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__16; +x_54 = l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_Omega_instToExprLinearCombo___spec__1___closed__10; +x_55 = l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_Omega_instToExprLinearCombo___spec__1___closed__13; +x_56 = l_Lean_mkApp3(x_53, x_54, x_55, x_52); +x_57 = l_Lean_Elab_Tactic_Omega_Justification_tidyProof___closed__7; +x_58 = l_Lean_mkAppB(x_57, x_54, x_56); x_15 = x_58; -goto block_47; +goto block_45; } 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; lean_object* x_67; -x_59 = lean_nat_abs(x_49); -x_60 = lean_unsigned_to_nat(1u); -x_61 = lean_nat_sub(x_59, x_60); -lean_dec(x_59); -x_62 = l_Lean_mkNatLit(x_61); -x_63 = l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__18; -x_64 = l_Lean_Expr_app___override(x_63, x_62); -x_65 = l_Lean_Elab_Tactic_Omega_Justification_tidyProof___closed__7; -x_66 = l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__6; -x_67 = l_Lean_mkAppB(x_65, x_66, x_64); -x_15 = x_67; -goto block_47; +lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; +x_59 = l_Int_toNat(x_47); +x_60 = l_Lean_instToExprInt_mkNat(x_59); +x_61 = l_Lean_Elab_Tactic_Omega_Justification_tidyProof___closed__7; +x_62 = l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_Omega_instToExprLinearCombo___spec__1___closed__10; +x_63 = l_Lean_mkAppB(x_61, x_62, x_60); +x_15 = x_63; +goto block_45; } } -block_47: +block_45: { lean_object* x_16; lean_object* x_17; x_16 = l_Lean_Elab_Tactic_Omega_Justification_tidyProof___closed__4; @@ -4073,92 +4097,88 @@ else lean_object* x_22; lean_object* x_23; uint8_t x_24; x_22 = lean_ctor_get(x_10, 0); x_23 = l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_Omega_instToExprLinearCombo___spec__1___closed__1; -x_24 = lean_int_dec_lt(x_22, x_23); +x_24 = lean_int_dec_le(x_23, x_22); if (x_24 == 0) { -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; -x_25 = lean_nat_abs(x_22); -x_26 = l_Lean_mkNatLit(x_25); -x_27 = l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__17; -x_28 = l_Lean_Expr_app___override(x_27, x_26); -x_29 = l_Lean_Elab_Tactic_Omega_Justification_tidyProof___closed__7; -x_30 = l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__6; -x_31 = l_Lean_mkAppB(x_29, x_30, x_28); -x_32 = l_Lean_Expr_app___override(x_17, x_31); -x_33 = l_Lean_Elab_Tactic_Omega_Justification_combineProof___closed__3; -x_34 = l_Lean_mkApp6(x_33, x_14, x_32, x_13, x_4, x_5, x_6); -return x_34; +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; +x_25 = lean_int_neg(x_22); +x_26 = l_Int_toNat(x_25); +lean_dec(x_25); +x_27 = l_Lean_instToExprInt_mkNat(x_26); +x_28 = l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__16; +x_29 = l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_Omega_instToExprLinearCombo___spec__1___closed__10; +x_30 = l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_Omega_instToExprLinearCombo___spec__1___closed__13; +x_31 = l_Lean_mkApp3(x_28, x_29, x_30, x_27); +x_32 = l_Lean_Elab_Tactic_Omega_Justification_tidyProof___closed__7; +x_33 = l_Lean_mkAppB(x_32, x_29, x_31); +x_34 = l_Lean_Expr_app___override(x_17, x_33); +x_35 = l_Lean_Elab_Tactic_Omega_Justification_combineProof___closed__3; +x_36 = l_Lean_mkApp6(x_35, x_14, x_34, x_13, x_4, x_5, x_6); +return x_36; } 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_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; -x_35 = lean_nat_abs(x_22); -x_36 = lean_unsigned_to_nat(1u); -x_37 = lean_nat_sub(x_35, x_36); -lean_dec(x_35); -x_38 = l_Lean_mkNatLit(x_37); -x_39 = l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__18; -x_40 = l_Lean_Expr_app___override(x_39, x_38); -x_41 = l_Lean_Elab_Tactic_Omega_Justification_tidyProof___closed__7; -x_42 = l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__6; -x_43 = l_Lean_mkAppB(x_41, x_42, x_40); -x_44 = l_Lean_Expr_app___override(x_17, x_43); -x_45 = l_Lean_Elab_Tactic_Omega_Justification_combineProof___closed__3; -x_46 = l_Lean_mkApp6(x_45, x_14, x_44, x_13, x_4, x_5, x_6); -return x_46; +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; +x_37 = l_Int_toNat(x_22); +x_38 = l_Lean_instToExprInt_mkNat(x_37); +x_39 = l_Lean_Elab_Tactic_Omega_Justification_tidyProof___closed__7; +x_40 = l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_Omega_instToExprLinearCombo___spec__1___closed__10; +x_41 = l_Lean_mkAppB(x_39, x_40, x_38); +x_42 = l_Lean_Expr_app___override(x_17, x_41); +x_43 = l_Lean_Elab_Tactic_Omega_Justification_combineProof___closed__3; +x_44 = l_Lean_mkApp6(x_43, x_14, x_42, x_13, x_4, x_5, x_6); +return x_44; } } } } -block_95: +block_89: { -lean_object* x_70; lean_object* x_71; -x_70 = l_Lean_Elab_Tactic_Omega_Justification_tidyProof___closed__4; -x_71 = l_Lean_Expr_app___override(x_70, x_69); +lean_object* x_66; lean_object* x_67; +x_66 = l_Lean_Elab_Tactic_Omega_Justification_tidyProof___closed__4; +x_67 = l_Lean_Expr_app___override(x_66, x_65); if (lean_obj_tag(x_8) == 0) { -lean_object* x_72; lean_object* x_73; -x_72 = l_Lean_Elab_Tactic_Omega_Justification_tidyProof___closed__6; -x_73 = l_Lean_Expr_app___override(x_71, x_72); -x_14 = x_73; -goto block_68; +lean_object* x_68; lean_object* x_69; +x_68 = l_Lean_Elab_Tactic_Omega_Justification_tidyProof___closed__6; +x_69 = l_Lean_Expr_app___override(x_67, x_68); +x_14 = x_69; +goto block_64; } else { -lean_object* x_74; lean_object* x_75; uint8_t x_76; -x_74 = lean_ctor_get(x_8, 0); -x_75 = l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_Omega_instToExprLinearCombo___spec__1___closed__1; -x_76 = lean_int_dec_lt(x_74, x_75); -if (x_76 == 0) +lean_object* x_70; lean_object* x_71; uint8_t x_72; +x_70 = lean_ctor_get(x_8, 0); +x_71 = l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_Omega_instToExprLinearCombo___spec__1___closed__1; +x_72 = lean_int_dec_le(x_71, x_70); +if (x_72 == 0) { -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; -x_77 = lean_nat_abs(x_74); -x_78 = l_Lean_mkNatLit(x_77); -x_79 = l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__17; -x_80 = l_Lean_Expr_app___override(x_79, x_78); -x_81 = l_Lean_Elab_Tactic_Omega_Justification_tidyProof___closed__7; -x_82 = l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__6; -x_83 = l_Lean_mkAppB(x_81, x_82, x_80); -x_84 = l_Lean_Expr_app___override(x_71, x_83); -x_14 = x_84; -goto block_68; +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; +x_73 = lean_int_neg(x_70); +x_74 = l_Int_toNat(x_73); +lean_dec(x_73); +x_75 = l_Lean_instToExprInt_mkNat(x_74); +x_76 = l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__16; +x_77 = l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_Omega_instToExprLinearCombo___spec__1___closed__10; +x_78 = l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_Omega_instToExprLinearCombo___spec__1___closed__13; +x_79 = l_Lean_mkApp3(x_76, x_77, x_78, x_75); +x_80 = l_Lean_Elab_Tactic_Omega_Justification_tidyProof___closed__7; +x_81 = l_Lean_mkAppB(x_80, x_77, x_79); +x_82 = l_Lean_Expr_app___override(x_67, x_81); +x_14 = x_82; +goto block_64; } else { -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; -x_85 = lean_nat_abs(x_74); -x_86 = lean_unsigned_to_nat(1u); -x_87 = lean_nat_sub(x_85, x_86); -lean_dec(x_85); -x_88 = l_Lean_mkNatLit(x_87); -x_89 = l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__18; -x_90 = l_Lean_Expr_app___override(x_89, x_88); -x_91 = l_Lean_Elab_Tactic_Omega_Justification_tidyProof___closed__7; -x_92 = l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__6; -x_93 = l_Lean_mkAppB(x_91, x_92, x_90); -x_94 = l_Lean_Expr_app___override(x_71, x_93); -x_14 = x_94; -goto block_68; +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_83 = l_Int_toNat(x_70); +x_84 = l_Lean_instToExprInt_mkNat(x_83); +x_85 = l_Lean_Elab_Tactic_Omega_Justification_tidyProof___closed__7; +x_86 = l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_Omega_instToExprLinearCombo___spec__1___closed__10; +x_87 = l_Lean_mkAppB(x_85, x_86, x_84); +x_88 = l_Lean_Expr_app___override(x_67, x_87); +x_14 = x_88; +goto block_64; } } } @@ -4207,326 +4227,284 @@ return x_3; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_Justification_comboProof(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; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_124; +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; uint8_t x_19; lean_object* x_20; lean_object* x_21; lean_object* x_100; x_10 = lean_ctor_get(x_1, 0); x_11 = lean_ctor_get(x_1, 1); x_12 = lean_ctor_get(x_2, 0); x_13 = lean_ctor_get(x_2, 1); -x_14 = l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__12; -x_15 = l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__16; -x_16 = l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_Omega_instToExprLinearCombo___spec__1(x_14, x_15, x_4); -x_17 = l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_Omega_instToExprLinearCombo___spec__1(x_14, x_15, x_6); +x_14 = l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_Omega_instToExprLinearCombo___spec__1___closed__1; +x_15 = lean_int_dec_le(x_14, x_3); +x_16 = l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__10; +x_17 = l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__14; +x_18 = l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_Omega_instToExprLinearCombo___spec__1(x_16, x_17, x_4); +x_19 = lean_int_dec_le(x_14, x_5); +x_20 = l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_Omega_instToExprLinearCombo___spec__1(x_16, x_17, x_6); if (lean_obj_tag(x_10) == 0) { -lean_object* x_151; -x_151 = l_Lean_Elab_Tactic_Omega_Justification_tidyProof___closed__6; -x_124 = x_151; -goto block_150; +lean_object* x_124; +x_124 = l_Lean_Elab_Tactic_Omega_Justification_tidyProof___closed__6; +x_100 = x_124; +goto block_123; } else { -lean_object* x_152; lean_object* x_153; uint8_t x_154; -x_152 = lean_ctor_get(x_10, 0); -x_153 = l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_Omega_instToExprLinearCombo___spec__1___closed__1; -x_154 = lean_int_dec_lt(x_152, x_153); -if (x_154 == 0) +lean_object* x_125; uint8_t x_126; +x_125 = lean_ctor_get(x_10, 0); +x_126 = lean_int_dec_le(x_14, x_125); +if (x_126 == 0) { -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; -x_155 = lean_nat_abs(x_152); -x_156 = l_Lean_mkNatLit(x_155); -x_157 = l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__17; -x_158 = l_Lean_Expr_app___override(x_157, x_156); -x_159 = l_Lean_Elab_Tactic_Omega_Justification_tidyProof___closed__7; -x_160 = l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__6; -x_161 = l_Lean_mkAppB(x_159, x_160, x_158); -x_124 = x_161; -goto block_150; +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; +x_127 = lean_int_neg(x_125); +x_128 = l_Int_toNat(x_127); +lean_dec(x_127); +x_129 = l_Lean_instToExprInt_mkNat(x_128); +x_130 = l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__16; +x_131 = l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_Omega_instToExprLinearCombo___spec__1___closed__10; +x_132 = l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_Omega_instToExprLinearCombo___spec__1___closed__13; +x_133 = l_Lean_mkApp3(x_130, x_131, x_132, x_129); +x_134 = l_Lean_Elab_Tactic_Omega_Justification_tidyProof___closed__7; +x_135 = l_Lean_mkAppB(x_134, x_131, x_133); +x_100 = x_135; +goto block_123; } else { -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; -x_162 = lean_nat_abs(x_152); -x_163 = lean_unsigned_to_nat(1u); -x_164 = lean_nat_sub(x_162, x_163); -lean_dec(x_162); -x_165 = l_Lean_mkNatLit(x_164); -x_166 = l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__18; -x_167 = l_Lean_Expr_app___override(x_166, x_165); -x_168 = l_Lean_Elab_Tactic_Omega_Justification_tidyProof___closed__7; -x_169 = l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__6; -x_170 = l_Lean_mkAppB(x_168, x_169, x_167); -x_124 = x_170; -goto block_150; +lean_object* x_136; lean_object* x_137; lean_object* x_138; lean_object* x_139; lean_object* x_140; +x_136 = l_Int_toNat(x_125); +x_137 = l_Lean_instToExprInt_mkNat(x_136); +x_138 = l_Lean_Elab_Tactic_Omega_Justification_tidyProof___closed__7; +x_139 = l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_Omega_instToExprLinearCombo___spec__1___closed__10; +x_140 = l_Lean_mkAppB(x_138, x_139, x_137); +x_100 = x_140; +goto block_123; } } -block_123: +block_99: { -lean_object* x_19; lean_object* x_20; lean_object* x_40; lean_object* x_41; lean_object* x_61; +lean_object* x_22; lean_object* x_41; lean_object* x_58; if (lean_obj_tag(x_12) == 0) { -lean_object* x_103; -x_103 = l_Lean_Elab_Tactic_Omega_Justification_tidyProof___closed__6; -x_61 = x_103; -goto block_102; +lean_object* x_82; +x_82 = l_Lean_Elab_Tactic_Omega_Justification_tidyProof___closed__6; +x_58 = x_82; +goto block_81; } else { -lean_object* x_104; lean_object* x_105; uint8_t x_106; -x_104 = lean_ctor_get(x_12, 0); -x_105 = l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_Omega_instToExprLinearCombo___spec__1___closed__1; -x_106 = lean_int_dec_lt(x_104, x_105); -if (x_106 == 0) +lean_object* x_83; uint8_t x_84; +x_83 = lean_ctor_get(x_12, 0); +x_84 = lean_int_dec_le(x_14, x_83); +if (x_84 == 0) { -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; -x_107 = lean_nat_abs(x_104); -x_108 = l_Lean_mkNatLit(x_107); -x_109 = l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__17; -x_110 = l_Lean_Expr_app___override(x_109, x_108); -x_111 = l_Lean_Elab_Tactic_Omega_Justification_tidyProof___closed__7; -x_112 = l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__6; -x_113 = l_Lean_mkAppB(x_111, x_112, x_110); -x_61 = x_113; -goto block_102; +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; +x_85 = lean_int_neg(x_83); +x_86 = l_Int_toNat(x_85); +lean_dec(x_85); +x_87 = l_Lean_instToExprInt_mkNat(x_86); +x_88 = l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__16; +x_89 = l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_Omega_instToExprLinearCombo___spec__1___closed__10; +x_90 = l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_Omega_instToExprLinearCombo___spec__1___closed__13; +x_91 = l_Lean_mkApp3(x_88, x_89, x_90, x_87); +x_92 = l_Lean_Elab_Tactic_Omega_Justification_tidyProof___closed__7; +x_93 = l_Lean_mkAppB(x_92, x_89, x_91); +x_58 = x_93; +goto block_81; } else { -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; -x_114 = lean_nat_abs(x_104); -x_115 = lean_unsigned_to_nat(1u); -x_116 = lean_nat_sub(x_114, x_115); -lean_dec(x_114); -x_117 = l_Lean_mkNatLit(x_116); -x_118 = l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__18; -x_119 = l_Lean_Expr_app___override(x_118, x_117); -x_120 = l_Lean_Elab_Tactic_Omega_Justification_tidyProof___closed__7; -x_121 = l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__6; -x_122 = l_Lean_mkAppB(x_120, x_121, x_119); -x_61 = x_122; -goto block_102; +lean_object* x_94; lean_object* x_95; lean_object* x_96; lean_object* x_97; lean_object* x_98; +x_94 = l_Int_toNat(x_83); +x_95 = l_Lean_instToExprInt_mkNat(x_94); +x_96 = l_Lean_Elab_Tactic_Omega_Justification_tidyProof___closed__7; +x_97 = l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_Omega_instToExprLinearCombo___spec__1___closed__10; +x_98 = l_Lean_mkAppB(x_96, x_97, x_95); +x_58 = x_98; +goto block_81; } } -block_39: +block_40: { -lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; uint8_t x_25; -x_21 = l_Lean_mkNatLit(x_20); -x_22 = l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__17; -x_23 = l_Lean_Expr_app___override(x_22, x_21); -x_24 = l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_Omega_instToExprLinearCombo___spec__1___closed__1; -x_25 = lean_int_dec_lt(x_5, x_24); -if (x_25 == 0) +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; +x_23 = lean_int_neg(x_3); +x_24 = l_Int_toNat(x_23); +lean_dec(x_23); +x_25 = l_Lean_instToExprInt_mkNat(x_24); +x_26 = l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__16; +x_27 = l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_Omega_instToExprLinearCombo___spec__1___closed__10; +x_28 = l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_Omega_instToExprLinearCombo___spec__1___closed__13; +x_29 = l_Lean_mkApp3(x_26, x_27, x_28, x_25); +if (x_19 == 0) { -lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; -x_26 = lean_nat_abs(x_5); -x_27 = l_Lean_mkNatLit(x_26); -x_28 = l_Lean_Expr_app___override(x_22, x_27); -x_29 = l_Lean_Elab_Tactic_Omega_Justification_comboProof___closed__3; -x_30 = l_Lean_mkApp9(x_29, x_18, x_19, x_23, x_16, x_28, x_17, x_7, x_8, x_9); -return x_30; +lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; +x_30 = lean_int_neg(x_5); +x_31 = l_Int_toNat(x_30); +lean_dec(x_30); +x_32 = l_Lean_instToExprInt_mkNat(x_31); +x_33 = l_Lean_mkApp3(x_26, x_27, x_28, x_32); +x_34 = l_Lean_Elab_Tactic_Omega_Justification_comboProof___closed__3; +x_35 = l_Lean_mkApp9(x_34, x_21, x_22, x_29, x_18, x_33, x_20, x_7, x_8, x_9); +return x_35; } else { -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; -x_31 = lean_nat_abs(x_5); -x_32 = lean_unsigned_to_nat(1u); -x_33 = lean_nat_sub(x_31, x_32); -lean_dec(x_31); -x_34 = l_Lean_mkNatLit(x_33); -x_35 = l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__18; -x_36 = l_Lean_Expr_app___override(x_35, x_34); -x_37 = l_Lean_Elab_Tactic_Omega_Justification_comboProof___closed__3; -x_38 = l_Lean_mkApp9(x_37, x_18, x_19, x_23, x_16, x_36, x_17, x_7, x_8, x_9); -return x_38; +lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; +x_36 = l_Int_toNat(x_5); +x_37 = l_Lean_instToExprInt_mkNat(x_36); +x_38 = l_Lean_Elab_Tactic_Omega_Justification_comboProof___closed__3; +x_39 = l_Lean_mkApp9(x_38, x_21, x_22, x_29, x_18, x_37, x_20, x_7, x_8, x_9); +return x_39; } } -block_60: +block_57: { -lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; uint8_t x_46; -x_42 = l_Lean_mkNatLit(x_41); -x_43 = l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__18; -x_44 = l_Lean_Expr_app___override(x_43, x_42); -x_45 = l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_Omega_instToExprLinearCombo___spec__1___closed__1; -x_46 = lean_int_dec_lt(x_5, x_45); -if (x_46 == 0) +lean_object* x_42; lean_object* x_43; +x_42 = l_Int_toNat(x_3); +x_43 = l_Lean_instToExprInt_mkNat(x_42); +if (x_19 == 0) { -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_47 = lean_nat_abs(x_5); -x_48 = l_Lean_mkNatLit(x_47); -x_49 = l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__17; -x_50 = l_Lean_Expr_app___override(x_49, x_48); +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; +x_44 = lean_int_neg(x_5); +x_45 = l_Int_toNat(x_44); +lean_dec(x_44); +x_46 = l_Lean_instToExprInt_mkNat(x_45); +x_47 = l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__16; +x_48 = l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_Omega_instToExprLinearCombo___spec__1___closed__10; +x_49 = l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_Omega_instToExprLinearCombo___spec__1___closed__13; +x_50 = l_Lean_mkApp3(x_47, x_48, x_49, x_46); x_51 = l_Lean_Elab_Tactic_Omega_Justification_comboProof___closed__3; -x_52 = l_Lean_mkApp9(x_51, x_18, x_40, x_44, x_16, x_50, x_17, x_7, x_8, x_9); +x_52 = l_Lean_mkApp9(x_51, x_21, x_41, x_43, x_18, x_50, x_20, x_7, x_8, x_9); return x_52; } else { -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; -x_53 = lean_nat_abs(x_5); -x_54 = lean_unsigned_to_nat(1u); -x_55 = lean_nat_sub(x_53, x_54); -lean_dec(x_53); -x_56 = l_Lean_mkNatLit(x_55); -x_57 = l_Lean_Expr_app___override(x_43, x_56); -x_58 = l_Lean_Elab_Tactic_Omega_Justification_comboProof___closed__3; -x_59 = l_Lean_mkApp9(x_58, x_18, x_40, x_44, x_16, x_57, x_17, x_7, x_8, x_9); -return x_59; +lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; +x_53 = l_Int_toNat(x_5); +x_54 = l_Lean_instToExprInt_mkNat(x_53); +x_55 = l_Lean_Elab_Tactic_Omega_Justification_comboProof___closed__3; +x_56 = l_Lean_mkApp9(x_55, x_21, x_41, x_43, x_18, x_54, x_20, x_7, x_8, x_9); +return x_56; } } -block_102: +block_81: { -lean_object* x_62; lean_object* x_63; -x_62 = l_Lean_Elab_Tactic_Omega_Justification_tidyProof___closed__4; -x_63 = l_Lean_Expr_app___override(x_62, x_61); +lean_object* x_59; lean_object* x_60; +x_59 = l_Lean_Elab_Tactic_Omega_Justification_tidyProof___closed__4; +x_60 = l_Lean_Expr_app___override(x_59, x_58); if (lean_obj_tag(x_13) == 0) { -lean_object* x_64; lean_object* x_65; lean_object* x_66; uint8_t x_67; -x_64 = l_Lean_Elab_Tactic_Omega_Justification_tidyProof___closed__6; -x_65 = l_Lean_Expr_app___override(x_63, x_64); -x_66 = l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_Omega_instToExprLinearCombo___spec__1___closed__1; -x_67 = lean_int_dec_lt(x_3, x_66); -if (x_67 == 0) +lean_object* x_61; lean_object* x_62; +x_61 = l_Lean_Elab_Tactic_Omega_Justification_tidyProof___closed__6; +x_62 = l_Lean_Expr_app___override(x_60, x_61); +if (x_15 == 0) { -lean_object* x_68; -x_68 = lean_nat_abs(x_3); -x_19 = x_65; -x_20 = x_68; -goto block_39; +x_22 = x_62; +goto block_40; } else { -lean_object* x_69; lean_object* x_70; lean_object* x_71; -x_69 = lean_nat_abs(x_3); -x_70 = lean_unsigned_to_nat(1u); -x_71 = lean_nat_sub(x_69, x_70); -lean_dec(x_69); -x_40 = x_65; -x_41 = x_71; -goto block_60; +x_41 = x_62; +goto block_57; } } else { -lean_object* x_72; lean_object* x_73; uint8_t x_74; -x_72 = lean_ctor_get(x_13, 0); -x_73 = l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_Omega_instToExprLinearCombo___spec__1___closed__1; -x_74 = lean_int_dec_lt(x_72, x_73); -if (x_74 == 0) +lean_object* x_63; uint8_t x_64; +x_63 = lean_ctor_get(x_13, 0); +x_64 = lean_int_dec_le(x_14, x_63); +if (x_64 == 0) { -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; uint8_t x_83; -x_75 = lean_nat_abs(x_72); -x_76 = l_Lean_mkNatLit(x_75); -x_77 = l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__17; -x_78 = l_Lean_Expr_app___override(x_77, x_76); -x_79 = l_Lean_Elab_Tactic_Omega_Justification_tidyProof___closed__7; -x_80 = l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__6; -x_81 = l_Lean_mkAppB(x_79, x_80, x_78); -x_82 = l_Lean_Expr_app___override(x_63, x_81); -x_83 = lean_int_dec_lt(x_3, x_73); -if (x_83 == 0) +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; +x_65 = lean_int_neg(x_63); +x_66 = l_Int_toNat(x_65); +lean_dec(x_65); +x_67 = l_Lean_instToExprInt_mkNat(x_66); +x_68 = l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__16; +x_69 = l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_Omega_instToExprLinearCombo___spec__1___closed__10; +x_70 = l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_Omega_instToExprLinearCombo___spec__1___closed__13; +x_71 = l_Lean_mkApp3(x_68, x_69, x_70, x_67); +x_72 = l_Lean_Elab_Tactic_Omega_Justification_tidyProof___closed__7; +x_73 = l_Lean_mkAppB(x_72, x_69, x_71); +x_74 = l_Lean_Expr_app___override(x_60, x_73); +if (x_15 == 0) { -lean_object* x_84; -x_84 = lean_nat_abs(x_3); -x_19 = x_82; -x_20 = x_84; -goto block_39; +x_22 = x_74; +goto block_40; } else { -lean_object* x_85; lean_object* x_86; lean_object* x_87; -x_85 = lean_nat_abs(x_3); -x_86 = lean_unsigned_to_nat(1u); -x_87 = lean_nat_sub(x_85, x_86); -lean_dec(x_85); -x_40 = x_82; -x_41 = x_87; -goto block_60; +x_41 = x_74; +goto block_57; } } else { -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; uint8_t x_98; -x_88 = lean_nat_abs(x_72); -x_89 = lean_unsigned_to_nat(1u); -x_90 = lean_nat_sub(x_88, x_89); -lean_dec(x_88); -x_91 = l_Lean_mkNatLit(x_90); -x_92 = l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__18; -x_93 = l_Lean_Expr_app___override(x_92, x_91); -x_94 = l_Lean_Elab_Tactic_Omega_Justification_tidyProof___closed__7; -x_95 = l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__6; -x_96 = l_Lean_mkAppB(x_94, x_95, x_93); -x_97 = l_Lean_Expr_app___override(x_63, x_96); -x_98 = lean_int_dec_lt(x_3, x_73); -if (x_98 == 0) +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_75 = l_Int_toNat(x_63); +x_76 = l_Lean_instToExprInt_mkNat(x_75); +x_77 = l_Lean_Elab_Tactic_Omega_Justification_tidyProof___closed__7; +x_78 = l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_Omega_instToExprLinearCombo___spec__1___closed__10; +x_79 = l_Lean_mkAppB(x_77, x_78, x_76); +x_80 = l_Lean_Expr_app___override(x_60, x_79); +if (x_15 == 0) { -lean_object* x_99; -x_99 = lean_nat_abs(x_3); -x_19 = x_97; -x_20 = x_99; -goto block_39; +x_22 = x_80; +goto block_40; } else { -lean_object* x_100; lean_object* x_101; -x_100 = lean_nat_abs(x_3); -x_101 = lean_nat_sub(x_100, x_89); -lean_dec(x_100); -x_40 = x_97; -x_41 = x_101; -goto block_60; +x_41 = x_80; +goto block_57; } } } } } -block_150: +block_123: { -lean_object* x_125; lean_object* x_126; -x_125 = l_Lean_Elab_Tactic_Omega_Justification_tidyProof___closed__4; -x_126 = l_Lean_Expr_app___override(x_125, x_124); +lean_object* x_101; lean_object* x_102; +x_101 = l_Lean_Elab_Tactic_Omega_Justification_tidyProof___closed__4; +x_102 = l_Lean_Expr_app___override(x_101, x_100); if (lean_obj_tag(x_11) == 0) { -lean_object* x_127; lean_object* x_128; -x_127 = l_Lean_Elab_Tactic_Omega_Justification_tidyProof___closed__6; -x_128 = l_Lean_Expr_app___override(x_126, x_127); -x_18 = x_128; -goto block_123; +lean_object* x_103; lean_object* x_104; +x_103 = l_Lean_Elab_Tactic_Omega_Justification_tidyProof___closed__6; +x_104 = l_Lean_Expr_app___override(x_102, x_103); +x_21 = x_104; +goto block_99; } else { -lean_object* x_129; lean_object* x_130; uint8_t x_131; -x_129 = lean_ctor_get(x_11, 0); -x_130 = l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_Omega_instToExprLinearCombo___spec__1___closed__1; -x_131 = lean_int_dec_lt(x_129, x_130); -if (x_131 == 0) +lean_object* x_105; uint8_t x_106; +x_105 = lean_ctor_get(x_11, 0); +x_106 = lean_int_dec_le(x_14, x_105); +if (x_106 == 0) { -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; -x_132 = lean_nat_abs(x_129); -x_133 = l_Lean_mkNatLit(x_132); -x_134 = l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__17; -x_135 = l_Lean_Expr_app___override(x_134, x_133); -x_136 = l_Lean_Elab_Tactic_Omega_Justification_tidyProof___closed__7; -x_137 = l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__6; -x_138 = l_Lean_mkAppB(x_136, x_137, x_135); -x_139 = l_Lean_Expr_app___override(x_126, x_138); -x_18 = x_139; -goto block_123; +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; +x_107 = lean_int_neg(x_105); +x_108 = l_Int_toNat(x_107); +lean_dec(x_107); +x_109 = l_Lean_instToExprInt_mkNat(x_108); +x_110 = l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__16; +x_111 = l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_Omega_instToExprLinearCombo___spec__1___closed__10; +x_112 = l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_Omega_instToExprLinearCombo___spec__1___closed__13; +x_113 = l_Lean_mkApp3(x_110, x_111, x_112, x_109); +x_114 = l_Lean_Elab_Tactic_Omega_Justification_tidyProof___closed__7; +x_115 = l_Lean_mkAppB(x_114, x_111, x_113); +x_116 = l_Lean_Expr_app___override(x_102, x_115); +x_21 = x_116; +goto block_99; } 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; lean_object* x_147; lean_object* x_148; lean_object* x_149; -x_140 = lean_nat_abs(x_129); -x_141 = lean_unsigned_to_nat(1u); -x_142 = lean_nat_sub(x_140, x_141); -lean_dec(x_140); -x_143 = l_Lean_mkNatLit(x_142); -x_144 = l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__18; -x_145 = l_Lean_Expr_app___override(x_144, x_143); -x_146 = l_Lean_Elab_Tactic_Omega_Justification_tidyProof___closed__7; -x_147 = l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__6; -x_148 = l_Lean_mkAppB(x_146, x_147, x_145); -x_149 = l_Lean_Expr_app___override(x_126, x_148); -x_18 = x_149; -goto block_123; +lean_object* x_117; lean_object* x_118; lean_object* x_119; lean_object* x_120; lean_object* x_121; lean_object* x_122; +x_117 = l_Int_toNat(x_105); +x_118 = l_Lean_instToExprInt_mkNat(x_117); +x_119 = l_Lean_Elab_Tactic_Omega_Justification_tidyProof___closed__7; +x_120 = l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_Omega_instToExprLinearCombo___spec__1___closed__10; +x_121 = l_Lean_mkAppB(x_119, x_120, x_118); +x_122 = l_Lean_Expr_app___override(x_102, x_121); +x_21 = x_122; +goto block_99; } } } @@ -4551,7 +4529,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__5; +x_2 = l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_Omega_instToExprLinearCombo___spec__1___closed__9; x_3 = l_Lean_Expr_const___override(x_2, x_1); return x_3; } @@ -4560,7 +4538,7 @@ static lean_object* _init_l_Lean_Elab_Tactic_Omega_Justification_bmodProof___clo _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__11; +x_1 = l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__9; x_2 = l_Lean_Elab_Tactic_Omega_Justification_bmodProof___closed__1; x_3 = l_Lean_Expr_app___override(x_1, x_2); return x_3; @@ -4570,7 +4548,7 @@ static lean_object* _init_l_Lean_Elab_Tactic_Omega_Justification_bmodProof___clo _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__15; +x_1 = l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__13; x_2 = l_Lean_Elab_Tactic_Omega_Justification_bmodProof___closed__1; x_3 = l_Lean_Expr_app___override(x_1, x_2); return x_3; @@ -4809,233 +4787,119 @@ return x_3; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_Justification_bmodProof(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) { _start: { -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; uint8_t x_25; +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; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; x_12 = l_Lean_mkNatLit(x_1); -x_13 = l_Lean_mkNatLit(x_3); -x_14 = l_Lean_Elab_Tactic_Omega_Justification_bmodProof___closed__2; -x_15 = l_Lean_Elab_Tactic_Omega_Justification_bmodProof___closed__3; -x_16 = l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_Omega_instToExprLinearCombo___spec__1(x_14, x_15, x_4); -x_17 = l_Lean_Elab_Tactic_Omega_Justification_bmodProof___closed__18; -lean_inc(x_16); -x_18 = l_Lean_Expr_app___override(x_17, x_16); -x_19 = l_Lean_Elab_Tactic_Omega_Justification_bmodProof___closed__8; -x_20 = l_Lean_Elab_Tactic_Omega_Justification_bmodProof___closed__11; -x_21 = l_Lean_Elab_Tactic_Omega_Justification_bmodProof___closed__14; -lean_inc(x_13); -x_22 = l_Lean_mkApp4(x_19, x_20, x_21, x_18, x_13); +x_13 = l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_Omega_instToExprLinearCombo___spec__1___closed__1; +x_14 = lean_int_dec_le(x_13, x_2); +x_15 = l_Lean_mkNatLit(x_3); +x_16 = l_Lean_Elab_Tactic_Omega_Justification_bmodProof___closed__2; +x_17 = l_Lean_Elab_Tactic_Omega_Justification_bmodProof___closed__3; +x_18 = l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_Omega_instToExprLinearCombo___spec__1(x_16, x_17, x_4); +x_19 = l_Lean_Elab_Tactic_Omega_Justification_bmodProof___closed__18; +lean_inc(x_18); +x_20 = l_Lean_Expr_app___override(x_19, x_18); +x_21 = l_Lean_Elab_Tactic_Omega_Justification_bmodProof___closed__8; +x_22 = l_Lean_Elab_Tactic_Omega_Justification_bmodProof___closed__11; +x_23 = l_Lean_Elab_Tactic_Omega_Justification_bmodProof___closed__14; +lean_inc(x_15); +x_24 = l_Lean_mkApp4(x_21, x_22, x_23, x_20, x_15); lean_inc(x_10); lean_inc(x_9); lean_inc(x_8); lean_inc(x_7); -x_23 = l_Lean_Meta_mkDecideProof(x_22, x_7, x_8, x_9, x_10, x_11); -x_24 = l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_Omega_instToExprLinearCombo___spec__1___closed__1; -x_25 = lean_int_dec_lt(x_2, x_24); -if (x_25 == 0) +x_25 = l_Lean_Meta_mkDecideProof(x_24, x_7, x_8, x_9, x_10, x_11); +if (x_14 == 0) { -if (lean_obj_tag(x_23) == 0) +if (lean_obj_tag(x_25) == 0) { -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; -x_26 = lean_ctor_get(x_23, 0); +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; +x_26 = lean_ctor_get(x_25, 0); lean_inc(x_26); -x_27 = lean_ctor_get(x_23, 1); +x_27 = lean_ctor_get(x_25, 1); lean_inc(x_27); -lean_dec(x_23); -x_28 = lean_nat_abs(x_2); -x_29 = l_Lean_mkNatLit(x_28); -x_30 = l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__17; -x_31 = l_Lean_Expr_app___override(x_30, x_29); -x_32 = l_Lean_Elab_Tactic_Omega_Justification_bmodProof___closed__21; -lean_inc(x_13); +lean_dec(x_25); +x_28 = lean_int_neg(x_2); +x_29 = l_Int_toNat(x_28); +lean_dec(x_28); +x_30 = l_Lean_instToExprInt_mkNat(x_29); +x_31 = l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__16; +x_32 = l_Lean_Elab_Tactic_Omega_Justification_bmodProof___closed__1; +x_33 = l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_Omega_instToExprLinearCombo___spec__1___closed__13; +x_34 = l_Lean_mkApp3(x_31, x_32, x_33, x_30); +x_35 = l_Lean_Elab_Tactic_Omega_Justification_bmodProof___closed__21; +lean_inc(x_15); lean_inc(x_5); -x_33 = l_Lean_mkAppB(x_32, x_5, x_13); -x_34 = l_Lean_Elab_Tactic_Omega_Justification_bmodProof___closed__24; +x_36 = l_Lean_mkAppB(x_35, x_5, x_15); +x_37 = l_Lean_Elab_Tactic_Omega_Justification_bmodProof___closed__24; lean_inc(x_5); -lean_inc(x_16); +lean_inc(x_18); lean_inc(x_12); -x_35 = l_Lean_mkApp3(x_34, x_12, x_16, x_5); -x_36 = l_Lean_Elab_Tactic_Omega_mkEqReflWithExpectedType(x_33, x_35, x_7, x_8, x_9, x_10, x_27); -if (lean_obj_tag(x_36) == 0) +x_38 = l_Lean_mkApp3(x_37, x_12, x_18, x_5); +x_39 = l_Lean_Elab_Tactic_Omega_mkEqReflWithExpectedType(x_36, x_38, x_7, x_8, x_9, x_10, x_27); +if (lean_obj_tag(x_39) == 0) { -uint8_t x_37; -x_37 = !lean_is_exclusive(x_36); -if (x_37 == 0) +uint8_t x_40; +x_40 = !lean_is_exclusive(x_39); +if (x_40 == 0) { -lean_object* x_38; lean_object* x_39; lean_object* x_40; -x_38 = lean_ctor_get(x_36, 0); -x_39 = l_Lean_Elab_Tactic_Omega_Justification_bmodProof___closed__27; -x_40 = l_Lean_mkApp8(x_39, x_12, x_31, x_13, x_16, x_5, x_26, x_38, x_6); -lean_ctor_set(x_36, 0, x_40); -return x_36; +lean_object* x_41; lean_object* x_42; lean_object* x_43; +x_41 = lean_ctor_get(x_39, 0); +x_42 = l_Lean_Elab_Tactic_Omega_Justification_bmodProof___closed__27; +x_43 = l_Lean_mkApp8(x_42, x_12, x_34, x_15, x_18, x_5, x_26, x_41, x_6); +lean_ctor_set(x_39, 0, x_43); +return x_39; } else { -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 = lean_ctor_get(x_36, 1); -lean_inc(x_42); -lean_inc(x_41); -lean_dec(x_36); -x_43 = l_Lean_Elab_Tactic_Omega_Justification_bmodProof___closed__27; -x_44 = l_Lean_mkApp8(x_43, x_12, x_31, x_13, x_16, x_5, x_26, x_41, x_6); -x_45 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_45, 0, x_44); -lean_ctor_set(x_45, 1, x_42); -return x_45; +lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; +x_44 = lean_ctor_get(x_39, 0); +x_45 = lean_ctor_get(x_39, 1); +lean_inc(x_45); +lean_inc(x_44); +lean_dec(x_39); +x_46 = l_Lean_Elab_Tactic_Omega_Justification_bmodProof___closed__27; +x_47 = l_Lean_mkApp8(x_46, x_12, x_34, x_15, x_18, x_5, x_26, x_44, x_6); +x_48 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_48, 0, x_47); +lean_ctor_set(x_48, 1, x_45); +return x_48; } } else { -uint8_t x_46; -lean_dec(x_31); +uint8_t x_49; +lean_dec(x_34); lean_dec(x_26); -lean_dec(x_16); -lean_dec(x_13); +lean_dec(x_18); +lean_dec(x_15); lean_dec(x_12); lean_dec(x_6); lean_dec(x_5); -x_46 = !lean_is_exclusive(x_36); -if (x_46 == 0) +x_49 = !lean_is_exclusive(x_39); +if (x_49 == 0) { -return x_36; +return x_39; } else { -lean_object* x_47; lean_object* x_48; lean_object* x_49; -x_47 = lean_ctor_get(x_36, 0); -x_48 = lean_ctor_get(x_36, 1); -lean_inc(x_48); -lean_inc(x_47); -lean_dec(x_36); -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 -{ -uint8_t x_50; -lean_dec(x_16); -lean_dec(x_13); -lean_dec(x_12); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -x_50 = !lean_is_exclusive(x_23); -if (x_50 == 0) -{ -return x_23; -} -else -{ -lean_object* x_51; lean_object* x_52; lean_object* x_53; -x_51 = lean_ctor_get(x_23, 0); -x_52 = lean_ctor_get(x_23, 1); -lean_inc(x_52); +lean_object* x_50; lean_object* x_51; lean_object* x_52; +x_50 = lean_ctor_get(x_39, 0); +x_51 = lean_ctor_get(x_39, 1); lean_inc(x_51); -lean_dec(x_23); -x_53 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_53, 0, x_51); -lean_ctor_set(x_53, 1, x_52); -return x_53; +lean_inc(x_50); +lean_dec(x_39); +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 { -if (lean_obj_tag(x_23) == 0) -{ -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; -x_54 = lean_ctor_get(x_23, 0); -lean_inc(x_54); -x_55 = lean_ctor_get(x_23, 1); -lean_inc(x_55); -lean_dec(x_23); -x_56 = lean_nat_abs(x_2); -x_57 = lean_unsigned_to_nat(1u); -x_58 = lean_nat_sub(x_56, x_57); -lean_dec(x_56); -x_59 = l_Lean_mkNatLit(x_58); -x_60 = l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__18; -x_61 = l_Lean_Expr_app___override(x_60, x_59); -x_62 = l_Lean_Elab_Tactic_Omega_Justification_bmodProof___closed__21; -lean_inc(x_13); -lean_inc(x_5); -x_63 = l_Lean_mkAppB(x_62, x_5, x_13); -x_64 = l_Lean_Elab_Tactic_Omega_Justification_bmodProof___closed__24; -lean_inc(x_5); -lean_inc(x_16); -lean_inc(x_12); -x_65 = l_Lean_mkApp3(x_64, x_12, x_16, x_5); -x_66 = l_Lean_Elab_Tactic_Omega_mkEqReflWithExpectedType(x_63, x_65, x_7, x_8, x_9, x_10, x_55); -if (lean_obj_tag(x_66) == 0) -{ -uint8_t x_67; -x_67 = !lean_is_exclusive(x_66); -if (x_67 == 0) -{ -lean_object* x_68; lean_object* x_69; lean_object* x_70; -x_68 = lean_ctor_get(x_66, 0); -x_69 = l_Lean_Elab_Tactic_Omega_Justification_bmodProof___closed__27; -x_70 = l_Lean_mkApp8(x_69, x_12, x_61, x_13, x_16, x_5, x_54, x_68, x_6); -lean_ctor_set(x_66, 0, x_70); -return x_66; -} -else -{ -lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; -x_71 = lean_ctor_get(x_66, 0); -x_72 = lean_ctor_get(x_66, 1); -lean_inc(x_72); -lean_inc(x_71); -lean_dec(x_66); -x_73 = l_Lean_Elab_Tactic_Omega_Justification_bmodProof___closed__27; -x_74 = l_Lean_mkApp8(x_73, x_12, x_61, x_13, x_16, x_5, x_54, x_71, x_6); -x_75 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_75, 0, x_74); -lean_ctor_set(x_75, 1, x_72); -return x_75; -} -} -else -{ -uint8_t x_76; -lean_dec(x_61); -lean_dec(x_54); -lean_dec(x_16); -lean_dec(x_13); -lean_dec(x_12); -lean_dec(x_6); -lean_dec(x_5); -x_76 = !lean_is_exclusive(x_66); -if (x_76 == 0) -{ -return x_66; -} -else -{ -lean_object* x_77; lean_object* x_78; lean_object* x_79; -x_77 = lean_ctor_get(x_66, 0); -x_78 = lean_ctor_get(x_66, 1); -lean_inc(x_78); -lean_inc(x_77); -lean_dec(x_66); -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; -} -} -} -else -{ -uint8_t x_80; -lean_dec(x_16); -lean_dec(x_13); +uint8_t x_53; +lean_dec(x_18); +lean_dec(x_15); lean_dec(x_12); lean_dec(x_10); lean_dec(x_9); @@ -5043,23 +4907,136 @@ lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); -x_80 = !lean_is_exclusive(x_23); -if (x_80 == 0) +x_53 = !lean_is_exclusive(x_25); +if (x_53 == 0) { -return x_23; +return x_25; } else { -lean_object* x_81; lean_object* x_82; lean_object* x_83; -x_81 = lean_ctor_get(x_23, 0); -x_82 = lean_ctor_get(x_23, 1); -lean_inc(x_82); +lean_object* x_54; lean_object* x_55; lean_object* x_56; +x_54 = lean_ctor_get(x_25, 0); +x_55 = lean_ctor_get(x_25, 1); +lean_inc(x_55); +lean_inc(x_54); +lean_dec(x_25); +x_56 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_56, 0, x_54); +lean_ctor_set(x_56, 1, x_55); +return x_56; +} +} +} +else +{ +if (lean_obj_tag(x_25) == 0) +{ +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; +x_57 = lean_ctor_get(x_25, 0); +lean_inc(x_57); +x_58 = lean_ctor_get(x_25, 1); +lean_inc(x_58); +lean_dec(x_25); +x_59 = l_Int_toNat(x_2); +x_60 = l_Lean_instToExprInt_mkNat(x_59); +x_61 = l_Lean_Elab_Tactic_Omega_Justification_bmodProof___closed__21; +lean_inc(x_15); +lean_inc(x_5); +x_62 = l_Lean_mkAppB(x_61, x_5, x_15); +x_63 = l_Lean_Elab_Tactic_Omega_Justification_bmodProof___closed__24; +lean_inc(x_5); +lean_inc(x_18); +lean_inc(x_12); +x_64 = l_Lean_mkApp3(x_63, x_12, x_18, x_5); +x_65 = l_Lean_Elab_Tactic_Omega_mkEqReflWithExpectedType(x_62, x_64, x_7, x_8, x_9, x_10, x_58); +if (lean_obj_tag(x_65) == 0) +{ +uint8_t x_66; +x_66 = !lean_is_exclusive(x_65); +if (x_66 == 0) +{ +lean_object* x_67; lean_object* x_68; lean_object* x_69; +x_67 = lean_ctor_get(x_65, 0); +x_68 = l_Lean_Elab_Tactic_Omega_Justification_bmodProof___closed__27; +x_69 = l_Lean_mkApp8(x_68, x_12, x_60, x_15, x_18, x_5, x_57, x_67, x_6); +lean_ctor_set(x_65, 0, x_69); +return x_65; +} +else +{ +lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; +x_70 = lean_ctor_get(x_65, 0); +x_71 = lean_ctor_get(x_65, 1); +lean_inc(x_71); +lean_inc(x_70); +lean_dec(x_65); +x_72 = l_Lean_Elab_Tactic_Omega_Justification_bmodProof___closed__27; +x_73 = l_Lean_mkApp8(x_72, x_12, x_60, x_15, x_18, x_5, x_57, x_70, x_6); +x_74 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_74, 0, x_73); +lean_ctor_set(x_74, 1, x_71); +return x_74; +} +} +else +{ +uint8_t x_75; +lean_dec(x_60); +lean_dec(x_57); +lean_dec(x_18); +lean_dec(x_15); +lean_dec(x_12); +lean_dec(x_6); +lean_dec(x_5); +x_75 = !lean_is_exclusive(x_65); +if (x_75 == 0) +{ +return x_65; +} +else +{ +lean_object* x_76; lean_object* x_77; lean_object* x_78; +x_76 = lean_ctor_get(x_65, 0); +x_77 = lean_ctor_get(x_65, 1); +lean_inc(x_77); +lean_inc(x_76); +lean_dec(x_65); +x_78 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_78, 0, x_76); +lean_ctor_set(x_78, 1, x_77); +return x_78; +} +} +} +else +{ +uint8_t x_79; +lean_dec(x_18); +lean_dec(x_15); +lean_dec(x_12); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +x_79 = !lean_is_exclusive(x_25); +if (x_79 == 0) +{ +return x_25; +} +else +{ +lean_object* x_80; lean_object* x_81; lean_object* x_82; +x_80 = lean_ctor_get(x_25, 0); +x_81 = lean_ctor_get(x_25, 1); lean_inc(x_81); -lean_dec(x_23); -x_83 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_83, 0, x_81); -lean_ctor_set(x_83, 1, x_82); -return x_83; +lean_inc(x_80); +lean_dec(x_25); +x_82 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_82, 0, x_80); +lean_ctor_set(x_82, 1, x_81); +return x_82; } } } @@ -7236,45 +7213,43 @@ x_22 = lean_ctor_get(x_1, 0); x_23 = lean_ctor_get(x_1, 1); if (lean_obj_tag(x_22) == 0) { -lean_object* x_77; -x_77 = l_Lean_Elab_Tactic_Omega_Problem_proveFalse___closed__11; -x_50 = x_77; -goto block_76; +lean_object* x_75; +x_75 = l_Lean_Elab_Tactic_Omega_Problem_proveFalse___closed__11; +x_50 = x_75; +goto block_74; } else { -lean_object* x_78; lean_object* x_79; uint8_t x_80; -x_78 = lean_ctor_get(x_22, 0); -x_79 = l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_Omega_instToExprLinearCombo___spec__1___closed__1; -x_80 = lean_int_dec_lt(x_78, x_79); -if (x_80 == 0) +lean_object* x_76; lean_object* x_77; uint8_t x_78; +x_76 = lean_ctor_get(x_22, 0); +x_77 = l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_Omega_instToExprLinearCombo___spec__1___closed__1; +x_78 = lean_int_dec_le(x_77, x_76); +if (x_78 == 0) { -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_81 = lean_nat_abs(x_78); -x_82 = l_Lean_mkNatLit(x_81); -x_83 = l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__17; -x_84 = l_Lean_Expr_app___override(x_83, x_82); -x_85 = l_Lean_Elab_Tactic_Omega_Justification_tidyProof___closed__7; -x_86 = l_Lean_Elab_Tactic_Omega_Justification_bmodProof___closed__1; -x_87 = l_Lean_mkAppB(x_85, x_86, x_84); +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_79 = lean_int_neg(x_76); +x_80 = l_Int_toNat(x_79); +lean_dec(x_79); +x_81 = l_Lean_instToExprInt_mkNat(x_80); +x_82 = l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__16; +x_83 = l_Lean_Elab_Tactic_Omega_Justification_bmodProof___closed__1; +x_84 = l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_Omega_instToExprLinearCombo___spec__1___closed__13; +x_85 = l_Lean_mkApp3(x_82, x_83, x_84, x_81); +x_86 = l_Lean_Elab_Tactic_Omega_Justification_tidyProof___closed__7; +x_87 = l_Lean_mkAppB(x_86, x_83, x_85); x_50 = x_87; -goto block_76; +goto block_74; } else { -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; -x_88 = lean_nat_abs(x_78); -x_89 = lean_unsigned_to_nat(1u); -x_90 = lean_nat_sub(x_88, x_89); -lean_dec(x_88); -x_91 = l_Lean_mkNatLit(x_90); -x_92 = l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__18; -x_93 = l_Lean_Expr_app___override(x_92, x_91); -x_94 = l_Lean_Elab_Tactic_Omega_Justification_tidyProof___closed__7; -x_95 = l_Lean_Elab_Tactic_Omega_Justification_bmodProof___closed__1; -x_96 = l_Lean_mkAppB(x_94, x_95, x_93); -x_50 = x_96; -goto block_76; +lean_object* x_88; lean_object* x_89; lean_object* x_90; lean_object* x_91; lean_object* x_92; +x_88 = l_Int_toNat(x_76); +x_89 = l_Lean_instToExprInt_mkNat(x_88); +x_90 = l_Lean_Elab_Tactic_Omega_Justification_tidyProof___closed__7; +x_91 = l_Lean_Elab_Tactic_Omega_Justification_bmodProof___closed__1; +x_92 = l_Lean_mkAppB(x_90, x_91, x_89); +x_50 = x_92; +goto block_74; } } block_49: @@ -7385,7 +7360,7 @@ return x_48; } } } -block_76: +block_74: { lean_object* x_51; lean_object* x_52; x_51 = l_Lean_Elab_Tactic_Omega_Justification_tidyProof___closed__4; @@ -7403,36 +7378,34 @@ else lean_object* x_55; lean_object* x_56; uint8_t x_57; x_55 = lean_ctor_get(x_23, 0); x_56 = l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_Omega_instToExprLinearCombo___spec__1___closed__1; -x_57 = lean_int_dec_lt(x_55, x_56); +x_57 = lean_int_dec_le(x_56, x_55); if (x_57 == 0) { -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; -x_58 = lean_nat_abs(x_55); -x_59 = l_Lean_mkNatLit(x_58); -x_60 = l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__17; -x_61 = l_Lean_Expr_app___override(x_60, x_59); -x_62 = l_Lean_Elab_Tactic_Omega_Justification_tidyProof___closed__7; -x_63 = l_Lean_Elab_Tactic_Omega_Justification_bmodProof___closed__1; -x_64 = l_Lean_mkAppB(x_62, x_63, x_61); -x_65 = l_Lean_Expr_app___override(x_52, x_64); -x_24 = x_65; +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; +x_58 = lean_int_neg(x_55); +x_59 = l_Int_toNat(x_58); +lean_dec(x_58); +x_60 = l_Lean_instToExprInt_mkNat(x_59); +x_61 = l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__16; +x_62 = l_Lean_Elab_Tactic_Omega_Justification_bmodProof___closed__1; +x_63 = l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_Omega_instToExprLinearCombo___spec__1___closed__13; +x_64 = l_Lean_mkApp3(x_61, x_62, x_63, x_60); +x_65 = l_Lean_Elab_Tactic_Omega_Justification_tidyProof___closed__7; +x_66 = l_Lean_mkAppB(x_65, x_62, x_64); +x_67 = l_Lean_Expr_app___override(x_52, x_66); +x_24 = x_67; goto block_49; } 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; lean_object* x_73; lean_object* x_74; lean_object* x_75; -x_66 = lean_nat_abs(x_55); -x_67 = lean_unsigned_to_nat(1u); -x_68 = lean_nat_sub(x_66, x_67); -lean_dec(x_66); -x_69 = l_Lean_mkNatLit(x_68); -x_70 = l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__18; -x_71 = l_Lean_Expr_app___override(x_70, x_69); -x_72 = l_Lean_Elab_Tactic_Omega_Justification_tidyProof___closed__7; -x_73 = l_Lean_Elab_Tactic_Omega_Justification_bmodProof___closed__1; -x_74 = l_Lean_mkAppB(x_72, x_73, x_71); -x_75 = l_Lean_Expr_app___override(x_52, x_74); -x_24 = x_75; +lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; +x_68 = l_Int_toNat(x_55); +x_69 = l_Lean_instToExprInt_mkNat(x_68); +x_70 = l_Lean_Elab_Tactic_Omega_Justification_tidyProof___closed__7; +x_71 = l_Lean_Elab_Tactic_Omega_Justification_bmodProof___closed__1; +x_72 = l_Lean_mkAppB(x_70, x_71, x_69); +x_73 = l_Lean_Expr_app___override(x_52, x_72); +x_24 = x_73; goto block_49; } } @@ -7440,35 +7413,35 @@ goto block_49; } else { +uint8_t x_93; +lean_dec(x_14); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +x_93 = !lean_is_exclusive(x_16); +if (x_93 == 0) +{ +return x_16; +} +else +{ +lean_object* x_94; lean_object* x_95; lean_object* x_96; +x_94 = lean_ctor_get(x_16, 0); +x_95 = lean_ctor_get(x_16, 1); +lean_inc(x_95); +lean_inc(x_94); +lean_dec(x_16); +x_96 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_96, 0, x_94); +lean_ctor_set(x_96, 1, x_95); +return x_96; +} +} +} +else +{ uint8_t x_97; -lean_dec(x_14); -lean_dec(x_11); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -x_97 = !lean_is_exclusive(x_16); -if (x_97 == 0) -{ -return x_16; -} -else -{ -lean_object* x_98; lean_object* x_99; lean_object* x_100; -x_98 = lean_ctor_get(x_16, 0); -x_99 = lean_ctor_get(x_16, 1); -lean_inc(x_99); -lean_inc(x_98); -lean_dec(x_16); -x_100 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_100, 0, x_98); -lean_ctor_set(x_100, 1, x_99); -return x_100; -} -} -} -else -{ -uint8_t x_101; lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); @@ -7477,23 +7450,23 @@ lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_3); -x_101 = !lean_is_exclusive(x_13); -if (x_101 == 0) +x_97 = !lean_is_exclusive(x_13); +if (x_97 == 0) { return x_13; } else { -lean_object* x_102; lean_object* x_103; lean_object* x_104; -x_102 = lean_ctor_get(x_13, 0); -x_103 = lean_ctor_get(x_13, 1); -lean_inc(x_103); -lean_inc(x_102); +lean_object* x_98; lean_object* x_99; lean_object* x_100; +x_98 = lean_ctor_get(x_13, 0); +x_99 = lean_ctor_get(x_13, 1); +lean_inc(x_99); +lean_inc(x_98); lean_dec(x_13); -x_104 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_104, 0, x_102); -lean_ctor_set(x_104, 1, x_103); -return x_104; +x_100 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_100, 0, x_98); +lean_ctor_set(x_100, 1, x_99); +return x_100; } } } @@ -10135,8 +10108,8 @@ lean_inc(x_29); lean_dec(x_27); lean_inc(x_26); x_30 = l_Lean_mkNatLit(x_26); -x_31 = l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__12; -x_32 = l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__16; +x_31 = l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__10; +x_32 = l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__14; x_33 = l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_Omega_instToExprLinearCombo___spec__1(x_31, x_32, x_2); lean_dec(x_2); x_34 = l_Lean_Elab_Tactic_Omega_Problem_dealWithHardEquality___closed__1; @@ -10611,114 +10584,112 @@ uint8_t x_16; x_16 = !lean_is_exclusive(x_15); if (x_16 == 0) { -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_17; lean_object* x_18; uint8_t x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; x_17 = lean_ctor_get(x_15, 0); -x_18 = l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__12; -x_19 = l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__16; -x_20 = l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_Omega_instToExprLinearCombo___spec__1(x_18, x_19, x_2); -x_21 = l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_Omega_instToExprLinearCombo___spec__1___closed__1; -x_22 = lean_int_dec_lt(x_1, x_21); -if (x_22 == 0) +x_18 = l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_Omega_instToExprLinearCombo___spec__1___closed__1; +x_19 = lean_int_dec_le(x_18, x_1); +x_20 = l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__10; +x_21 = l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__14; +x_22 = l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_Omega_instToExprLinearCombo___spec__1(x_20, x_21, x_2); +if (x_19 == 0) { -lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; -x_23 = lean_nat_abs(x_1); -x_24 = l_Lean_mkNatLit(x_23); -x_25 = l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__17; -x_26 = l_Lean_Expr_app___override(x_25, x_24); -x_27 = l_Lean_Elab_Tactic_Omega_Problem_addInequality__proof___closed__3; -x_28 = l_Lean_mkApp4(x_27, x_26, x_20, x_13, x_17); -lean_ctor_set(x_15, 0, x_28); +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; +x_23 = lean_int_neg(x_1); +x_24 = l_Int_toNat(x_23); +lean_dec(x_23); +x_25 = l_Lean_instToExprInt_mkNat(x_24); +x_26 = l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__16; +x_27 = l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_Omega_instToExprLinearCombo___spec__1___closed__10; +x_28 = l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_Omega_instToExprLinearCombo___spec__1___closed__13; +x_29 = l_Lean_mkApp3(x_26, x_27, x_28, x_25); +x_30 = l_Lean_Elab_Tactic_Omega_Problem_addInequality__proof___closed__3; +x_31 = l_Lean_mkApp4(x_30, x_29, x_22, x_13, x_17); +lean_ctor_set(x_15, 0, x_31); return x_15; } else { -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; -x_29 = lean_nat_abs(x_1); -x_30 = lean_unsigned_to_nat(1u); -x_31 = lean_nat_sub(x_29, x_30); -lean_dec(x_29); -x_32 = l_Lean_mkNatLit(x_31); -x_33 = l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__18; -x_34 = l_Lean_Expr_app___override(x_33, x_32); -x_35 = l_Lean_Elab_Tactic_Omega_Problem_addInequality__proof___closed__3; -x_36 = l_Lean_mkApp4(x_35, x_34, x_20, x_13, x_17); -lean_ctor_set(x_15, 0, x_36); +lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; +x_32 = l_Int_toNat(x_1); +x_33 = l_Lean_instToExprInt_mkNat(x_32); +x_34 = l_Lean_Elab_Tactic_Omega_Problem_addInequality__proof___closed__3; +x_35 = l_Lean_mkApp4(x_34, x_33, x_22, x_13, x_17); +lean_ctor_set(x_15, 0, x_35); return x_15; } } else { -lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; uint8_t x_43; -x_37 = lean_ctor_get(x_15, 0); -x_38 = lean_ctor_get(x_15, 1); -lean_inc(x_38); +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; +x_36 = lean_ctor_get(x_15, 0); +x_37 = lean_ctor_get(x_15, 1); lean_inc(x_37); +lean_inc(x_36); lean_dec(x_15); -x_39 = l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__12; -x_40 = l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__16; -x_41 = l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_Omega_instToExprLinearCombo___spec__1(x_39, x_40, x_2); -x_42 = l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_Omega_instToExprLinearCombo___spec__1___closed__1; -x_43 = lean_int_dec_lt(x_1, x_42); -if (x_43 == 0) +x_38 = l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_Omega_instToExprLinearCombo___spec__1___closed__1; +x_39 = lean_int_dec_le(x_38, x_1); +x_40 = l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__10; +x_41 = l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__14; +x_42 = l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_Omega_instToExprLinearCombo___spec__1(x_40, x_41, x_2); +if (x_39 == 0) { -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; -x_44 = lean_nat_abs(x_1); -x_45 = l_Lean_mkNatLit(x_44); -x_46 = l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__17; -x_47 = l_Lean_Expr_app___override(x_46, x_45); -x_48 = l_Lean_Elab_Tactic_Omega_Problem_addInequality__proof___closed__3; -x_49 = l_Lean_mkApp4(x_48, x_47, x_41, x_13, x_37); -x_50 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_50, 0, x_49); -lean_ctor_set(x_50, 1, x_38); -return x_50; +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; +x_43 = lean_int_neg(x_1); +x_44 = l_Int_toNat(x_43); +lean_dec(x_43); +x_45 = l_Lean_instToExprInt_mkNat(x_44); +x_46 = l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__16; +x_47 = l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_Omega_instToExprLinearCombo___spec__1___closed__10; +x_48 = l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_Omega_instToExprLinearCombo___spec__1___closed__13; +x_49 = l_Lean_mkApp3(x_46, x_47, x_48, x_45); +x_50 = l_Lean_Elab_Tactic_Omega_Problem_addInequality__proof___closed__3; +x_51 = l_Lean_mkApp4(x_50, x_49, x_42, x_13, x_36); +x_52 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_52, 0, x_51); +lean_ctor_set(x_52, 1, x_37); +return x_52; } else { -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; -x_51 = lean_nat_abs(x_1); -x_52 = lean_unsigned_to_nat(1u); -x_53 = lean_nat_sub(x_51, x_52); -lean_dec(x_51); -x_54 = l_Lean_mkNatLit(x_53); -x_55 = l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__18; -x_56 = l_Lean_Expr_app___override(x_55, x_54); -x_57 = l_Lean_Elab_Tactic_Omega_Problem_addInequality__proof___closed__3; -x_58 = l_Lean_mkApp4(x_57, x_56, x_41, x_13, x_37); -x_59 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_59, 0, x_58); -lean_ctor_set(x_59, 1, x_38); -return x_59; +lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; +x_53 = l_Int_toNat(x_1); +x_54 = l_Lean_instToExprInt_mkNat(x_53); +x_55 = l_Lean_Elab_Tactic_Omega_Problem_addInequality__proof___closed__3; +x_56 = l_Lean_mkApp4(x_55, x_54, x_42, x_13, x_36); +x_57 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_57, 0, x_56); +lean_ctor_set(x_57, 1, x_37); +return x_57; } } } else { -uint8_t x_60; +uint8_t x_58; lean_dec(x_13); -x_60 = !lean_is_exclusive(x_15); -if (x_60 == 0) +x_58 = !lean_is_exclusive(x_15); +if (x_58 == 0) { return x_15; } else { -lean_object* x_61; lean_object* x_62; lean_object* x_63; -x_61 = lean_ctor_get(x_15, 0); -x_62 = lean_ctor_get(x_15, 1); -lean_inc(x_62); -lean_inc(x_61); +lean_object* x_59; lean_object* x_60; lean_object* x_61; +x_59 = lean_ctor_get(x_15, 0); +x_60 = lean_ctor_get(x_15, 1); +lean_inc(x_60); +lean_inc(x_59); lean_dec(x_15); -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; +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; } } } else { -uint8_t x_64; +uint8_t x_62; lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); @@ -10727,23 +10698,23 @@ lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); -x_64 = !lean_is_exclusive(x_12); -if (x_64 == 0) +x_62 = !lean_is_exclusive(x_12); +if (x_62 == 0) { return x_12; } else { -lean_object* x_65; lean_object* x_66; lean_object* x_67; -x_65 = lean_ctor_get(x_12, 0); -x_66 = lean_ctor_get(x_12, 1); -lean_inc(x_66); -lean_inc(x_65); +lean_object* x_63; lean_object* x_64; lean_object* x_65; +x_63 = lean_ctor_get(x_12, 0); +x_64 = lean_ctor_get(x_12, 1); +lean_inc(x_64); +lean_inc(x_63); lean_dec(x_12); -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; +x_65 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_65, 0, x_63); +lean_ctor_set(x_65, 1, x_64); +return x_65; } } } @@ -10812,114 +10783,112 @@ uint8_t x_16; x_16 = !lean_is_exclusive(x_15); if (x_16 == 0) { -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_17; lean_object* x_18; uint8_t x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; x_17 = lean_ctor_get(x_15, 0); -x_18 = l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__12; -x_19 = l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__16; -x_20 = l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_Omega_instToExprLinearCombo___spec__1(x_18, x_19, x_2); -x_21 = l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_Omega_instToExprLinearCombo___spec__1___closed__1; -x_22 = lean_int_dec_lt(x_1, x_21); -if (x_22 == 0) +x_18 = l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_Omega_instToExprLinearCombo___spec__1___closed__1; +x_19 = lean_int_dec_le(x_18, x_1); +x_20 = l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__10; +x_21 = l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__14; +x_22 = l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_Omega_instToExprLinearCombo___spec__1(x_20, x_21, x_2); +if (x_19 == 0) { -lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; -x_23 = lean_nat_abs(x_1); -x_24 = l_Lean_mkNatLit(x_23); -x_25 = l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__17; -x_26 = l_Lean_Expr_app___override(x_25, x_24); -x_27 = l_Lean_Elab_Tactic_Omega_Problem_addEquality__proof___closed__3; -x_28 = l_Lean_mkApp4(x_27, x_26, x_20, x_13, x_17); -lean_ctor_set(x_15, 0, x_28); +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; +x_23 = lean_int_neg(x_1); +x_24 = l_Int_toNat(x_23); +lean_dec(x_23); +x_25 = l_Lean_instToExprInt_mkNat(x_24); +x_26 = l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__16; +x_27 = l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_Omega_instToExprLinearCombo___spec__1___closed__10; +x_28 = l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_Omega_instToExprLinearCombo___spec__1___closed__13; +x_29 = l_Lean_mkApp3(x_26, x_27, x_28, x_25); +x_30 = l_Lean_Elab_Tactic_Omega_Problem_addEquality__proof___closed__3; +x_31 = l_Lean_mkApp4(x_30, x_29, x_22, x_13, x_17); +lean_ctor_set(x_15, 0, x_31); return x_15; } else { -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; -x_29 = lean_nat_abs(x_1); -x_30 = lean_unsigned_to_nat(1u); -x_31 = lean_nat_sub(x_29, x_30); -lean_dec(x_29); -x_32 = l_Lean_mkNatLit(x_31); -x_33 = l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__18; -x_34 = l_Lean_Expr_app___override(x_33, x_32); -x_35 = l_Lean_Elab_Tactic_Omega_Problem_addEquality__proof___closed__3; -x_36 = l_Lean_mkApp4(x_35, x_34, x_20, x_13, x_17); -lean_ctor_set(x_15, 0, x_36); +lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; +x_32 = l_Int_toNat(x_1); +x_33 = l_Lean_instToExprInt_mkNat(x_32); +x_34 = l_Lean_Elab_Tactic_Omega_Problem_addEquality__proof___closed__3; +x_35 = l_Lean_mkApp4(x_34, x_33, x_22, x_13, x_17); +lean_ctor_set(x_15, 0, x_35); return x_15; } } else { -lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; uint8_t x_43; -x_37 = lean_ctor_get(x_15, 0); -x_38 = lean_ctor_get(x_15, 1); -lean_inc(x_38); +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; +x_36 = lean_ctor_get(x_15, 0); +x_37 = lean_ctor_get(x_15, 1); lean_inc(x_37); +lean_inc(x_36); lean_dec(x_15); -x_39 = l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__12; -x_40 = l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__16; -x_41 = l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_Omega_instToExprLinearCombo___spec__1(x_39, x_40, x_2); -x_42 = l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_Omega_instToExprLinearCombo___spec__1___closed__1; -x_43 = lean_int_dec_lt(x_1, x_42); -if (x_43 == 0) +x_38 = l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_Omega_instToExprLinearCombo___spec__1___closed__1; +x_39 = lean_int_dec_le(x_38, x_1); +x_40 = l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__10; +x_41 = l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__14; +x_42 = l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_Omega_instToExprLinearCombo___spec__1(x_40, x_41, x_2); +if (x_39 == 0) { -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; -x_44 = lean_nat_abs(x_1); -x_45 = l_Lean_mkNatLit(x_44); -x_46 = l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__17; -x_47 = l_Lean_Expr_app___override(x_46, x_45); -x_48 = l_Lean_Elab_Tactic_Omega_Problem_addEquality__proof___closed__3; -x_49 = l_Lean_mkApp4(x_48, x_47, x_41, x_13, x_37); -x_50 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_50, 0, x_49); -lean_ctor_set(x_50, 1, x_38); -return x_50; +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; +x_43 = lean_int_neg(x_1); +x_44 = l_Int_toNat(x_43); +lean_dec(x_43); +x_45 = l_Lean_instToExprInt_mkNat(x_44); +x_46 = l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__16; +x_47 = l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_Omega_instToExprLinearCombo___spec__1___closed__10; +x_48 = l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_Omega_instToExprLinearCombo___spec__1___closed__13; +x_49 = l_Lean_mkApp3(x_46, x_47, x_48, x_45); +x_50 = l_Lean_Elab_Tactic_Omega_Problem_addEquality__proof___closed__3; +x_51 = l_Lean_mkApp4(x_50, x_49, x_42, x_13, x_36); +x_52 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_52, 0, x_51); +lean_ctor_set(x_52, 1, x_37); +return x_52; } else { -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; -x_51 = lean_nat_abs(x_1); -x_52 = lean_unsigned_to_nat(1u); -x_53 = lean_nat_sub(x_51, x_52); -lean_dec(x_51); -x_54 = l_Lean_mkNatLit(x_53); -x_55 = l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__18; -x_56 = l_Lean_Expr_app___override(x_55, x_54); -x_57 = l_Lean_Elab_Tactic_Omega_Problem_addEquality__proof___closed__3; -x_58 = l_Lean_mkApp4(x_57, x_56, x_41, x_13, x_37); -x_59 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_59, 0, x_58); -lean_ctor_set(x_59, 1, x_38); -return x_59; +lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; +x_53 = l_Int_toNat(x_1); +x_54 = l_Lean_instToExprInt_mkNat(x_53); +x_55 = l_Lean_Elab_Tactic_Omega_Problem_addEquality__proof___closed__3; +x_56 = l_Lean_mkApp4(x_55, x_54, x_42, x_13, x_36); +x_57 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_57, 0, x_56); +lean_ctor_set(x_57, 1, x_37); +return x_57; } } } else { -uint8_t x_60; +uint8_t x_58; lean_dec(x_13); -x_60 = !lean_is_exclusive(x_15); -if (x_60 == 0) +x_58 = !lean_is_exclusive(x_15); +if (x_58 == 0) { return x_15; } else { -lean_object* x_61; lean_object* x_62; lean_object* x_63; -x_61 = lean_ctor_get(x_15, 0); -x_62 = lean_ctor_get(x_15, 1); -lean_inc(x_62); -lean_inc(x_61); +lean_object* x_59; lean_object* x_60; lean_object* x_61; +x_59 = lean_ctor_get(x_15, 0); +x_60 = lean_ctor_get(x_15, 1); +lean_inc(x_60); +lean_inc(x_59); lean_dec(x_15); -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; +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; } } } else { -uint8_t x_64; +uint8_t x_62; lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); @@ -10928,23 +10897,23 @@ lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); -x_64 = !lean_is_exclusive(x_12); -if (x_64 == 0) +x_62 = !lean_is_exclusive(x_12); +if (x_62 == 0) { return x_12; } else { -lean_object* x_65; lean_object* x_66; lean_object* x_67; -x_65 = lean_ctor_get(x_12, 0); -x_66 = lean_ctor_get(x_12, 1); -lean_inc(x_66); -lean_inc(x_65); +lean_object* x_63; lean_object* x_64; lean_object* x_65; +x_63 = lean_ctor_get(x_12, 0); +x_64 = lean_ctor_get(x_12, 1); +lean_inc(x_64); +lean_inc(x_63); lean_dec(x_12); -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; +x_65 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_65, 0, x_63); +lean_ctor_set(x_65, 1, x_64); +return x_65; } } } @@ -16137,7 +16106,7 @@ return x_37; } } } -lean_object* initialize_Init(uint8_t builtin, lean_object*); +lean_object* initialize_Init_Omega_Constraint(uint8_t builtin, lean_object*); lean_object* initialize_Lean_Elab_Tactic_Omega_OmegaM(uint8_t builtin, lean_object*); lean_object* initialize_Lean_Elab_Tactic_Omega_MinNatAbs(uint8_t builtin, lean_object*); static bool _G_initialized = false; @@ -16145,7 +16114,7 @@ LEAN_EXPORT lean_object* initialize_Lean_Elab_Tactic_Omega_Core(uint8_t builtin, lean_object * res; if (_G_initialized) return lean_io_result_mk_ok(lean_box(0)); _G_initialized = true; -res = initialize_Init(builtin, lean_io_mk_world()); +res = initialize_Init_Omega_Constraint(builtin, lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); res = initialize_Lean_Elab_Tactic_Omega_OmegaM(builtin, lean_io_mk_world()); @@ -16219,6 +16188,16 @@ l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_Omega_instT lean_mark_persistent(l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_Omega_instToExprLinearCombo___spec__1___closed__7); l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_Omega_instToExprLinearCombo___spec__1___closed__8 = _init_l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_Omega_instToExprLinearCombo___spec__1___closed__8(); lean_mark_persistent(l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_Omega_instToExprLinearCombo___spec__1___closed__8); +l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_Omega_instToExprLinearCombo___spec__1___closed__9 = _init_l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_Omega_instToExprLinearCombo___spec__1___closed__9(); +lean_mark_persistent(l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_Omega_instToExprLinearCombo___spec__1___closed__9); +l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_Omega_instToExprLinearCombo___spec__1___closed__10 = _init_l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_Omega_instToExprLinearCombo___spec__1___closed__10(); +lean_mark_persistent(l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_Omega_instToExprLinearCombo___spec__1___closed__10); +l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_Omega_instToExprLinearCombo___spec__1___closed__11 = _init_l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_Omega_instToExprLinearCombo___spec__1___closed__11(); +lean_mark_persistent(l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_Omega_instToExprLinearCombo___spec__1___closed__11); +l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_Omega_instToExprLinearCombo___spec__1___closed__12 = _init_l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_Omega_instToExprLinearCombo___spec__1___closed__12(); +lean_mark_persistent(l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_Omega_instToExprLinearCombo___spec__1___closed__12); +l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_Omega_instToExprLinearCombo___spec__1___closed__13 = _init_l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_Omega_instToExprLinearCombo___spec__1___closed__13(); +lean_mark_persistent(l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_Omega_instToExprLinearCombo___spec__1___closed__13); l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__1 = _init_l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__1(); lean_mark_persistent(l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__1); l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__2 = _init_l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__2(); @@ -16251,10 +16230,6 @@ l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__15 = _init_ lean_mark_persistent(l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__15); l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__16 = _init_l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__16(); lean_mark_persistent(l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__16); -l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__17 = _init_l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__17(); -lean_mark_persistent(l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__17); -l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__18 = _init_l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__18(); -lean_mark_persistent(l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__18); l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___closed__1 = _init_l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___closed__1(); lean_mark_persistent(l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___closed__1); l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___closed__2 = _init_l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___closed__2(); diff --git a/stage0/stdlib/Lean/Elab/Tactic/Omega/Frontend.c b/stage0/stdlib/Lean/Elab/Tactic/Omega/Frontend.c index 96f2241862..d1e85ec2e9 100644 --- a/stage0/stdlib/Lean/Elab/Tactic/Omega/Frontend.c +++ b/stage0/stdlib/Lean/Elab/Tactic/Omega/Frontend.c @@ -1,6 +1,6 @@ // Lean compiler output // Module: Lean.Elab.Tactic.Omega.Frontend -// Imports: Init Lean.Elab.Tactic.Omega.Core Lean.Elab.Tactic.FalseOrByContra Lean.Meta.Tactic.Cases Lean.Elab.Tactic.Config +// Imports: Lean.Elab.Tactic.Omega.Core Lean.Elab.Tactic.FalseOrByContra Lean.Meta.Tactic.Cases Lean.Elab.Tactic.Config #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -29,7 +29,6 @@ static lean_object* l_Lean_Elab_Tactic_Omega_evalOmega___closed__1; lean_object* l_ReaderT_bind___at_Lean_Elab_Tactic_Omega_withoutModifyingState___spec__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_isTracingEnabledFor___at_Lean_Elab_Tactic_Omega_lookup___spec__2___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_Omega_MetaProblem_addIntEquality___closed__4; -static lean_object* l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__12; lean_object* l_Lean_mkNatLit(lean_object*); static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__35; static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl_rewrite___closed__5; @@ -47,10 +46,10 @@ static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___c static lean_object* l_Lean_Elab_Tactic_Omega_mkCoordinateEvalAtomsEq___closed__7; static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__5___closed__6; lean_object* l_Lean_Elab_CommandContextInfo_save___at_Lean_Elab_Term_withoutModifyingElabMetaStateWithInfo___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_Tactic_Omega_mkInt___closed__5; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_asLinearCombo___lambda__1(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_Omega_elabOmegaConfig___spec__6(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_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_problem___default; +static lean_object* l_Lean_Elab_Tactic_Omega_succ_x3f___closed__5; static lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__56; static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl___closed__1; static lean_object* l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__13; @@ -73,7 +72,6 @@ static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleFinVal___cl static lean_object* l_Lean_Elab_Tactic_Omega_cases_u2082___closed__3; LEAN_EXPORT lean_object* l_List_foldlM___at_Lean_Elab_Tactic_Omega_MetaProblem_addIntInequality___spec__1(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_problem___default___closed__2; -static lean_object* l_Lean_Elab_Tactic_Omega_mkInt___closed__3; static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleFinVal___closed__13; static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__31; static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__33; @@ -88,15 +86,16 @@ static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___clo static lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__49; lean_object* l_Lean_Meta_mkEqSymm(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_HashSet_insert___at_Lean_Elab_Tactic_Omega_asLinearComboImpl___spec__1(lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__30; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_addIntInequality___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* l_Lean_Elab_Term_synthesizeSyntheticMVars(uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_mkAppB(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__22; +static lean_object* l_Lean_Elab_Tactic_Omega_succ_x3f___closed__4; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_omegaTactic___lambda__3(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_splitDisjunction___closed__10; LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_Tactic_Omega_omegaTactic___spec__5___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_Omega_asLinearComboImpl___lambda__8___closed__1; -static lean_object* l_Lean_Elab_Tactic_Omega_initFn____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_14658____closed__2; static lean_object* l_Lean_Elab_Tactic_Omega_evalOmega___closed__4; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_problem___default___lambda__1___boxed(lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_omegaTactic___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -110,6 +109,7 @@ extern lean_object* l_Lean_Elab_Tactic_tacticElabAttribute; lean_object* l_Lean_Elab_Tactic_Omega_withoutModifyingState___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_MessageData_ofList(lean_object*); static lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__53; +static lean_object* l_Lean_Elab_Tactic_Omega_initFn____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_14846____closed__4; static lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_problem___default___closed__5; lean_object* lean_array_push(lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__28; @@ -136,6 +136,7 @@ static lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___c static lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_problem___default___closed__1; LEAN_EXPORT lean_object* l_Lean_Elab_withSaveInfoContext___at_Lean_Elab_Tactic_Omega_elabOmegaConfig___spec__1___lambda__1___boxed(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__54; +static lean_object* l_Lean_Elab_Tactic_Omega_initFn____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_14846____closed__1; static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__8; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_evalOmega(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_MetaProblem_addFact___lambda__1___closed__5; @@ -155,7 +156,7 @@ static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__4___clo LEAN_EXPORT lean_object* l_List_foldlM___at_Lean_Elab_Tactic_Omega_asLinearComboImpl___spec__2(lean_object*, lean_object*); static lean_object* l___regBuiltin_Lean_Elab_Tactic_Omega_evalOmega_declRange___closed__2; static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__6___closed__5; -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl___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_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl___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*); static lean_object* l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__20; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__6(lean_object*, 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_MetaProblem_addFact___lambda__1___closed__53; @@ -165,23 +166,25 @@ lean_object* l_ReaderT_instMonadReaderT___rarg(lean_object*); lean_object* l_Lean_Expr_fvarId_x21(lean_object*); static lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__26; static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__12; -static lean_object* l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__1; static lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__45; static lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__21; static lean_object* l_Lean_Elab_Tactic_Omega_splitDisjunction___lambda__5___closed__2; +static lean_object* l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__27; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_splitDisjunction___lambda__5___boxed(lean_object**); static lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_addIntInequality___closed__1; static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl_rewrite___lambda__2___closed__1; +static lean_object* l_Lean_Elab_Tactic_Omega_initFn____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_14846____closed__3; static lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__56; 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*); static lean_object* l_Lean_Elab_Tactic_Omega_splitDisjunction___closed__8; static lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__36; static lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__68; +static lean_object* l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__29; lean_object* l_Lean_addBuiltinDeclarationRanges(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__16; static lean_object* l_Lean_Elab_Tactic_Omega_omegaTactic___lambda__2___closed__3; -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_mkInt_mkNat(lean_object*); +static lean_object* l_Lean_Elab_Tactic_Omega_initFn____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_14846____closed__5; static lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__51; static lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__62; static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__1; @@ -190,7 +193,6 @@ static lean_object* l_Lean_Elab_Tactic_Omega_mkCoordinateEvalAtomsEq___closed__1 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*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_problem___default___lambda__1(lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_mkInt(lean_object*); static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__5___closed__4; lean_object* l_Lean_HashSetImp_insert___at_Lean_CollectLevelParams_visitExpr___spec__3(lean_object*, lean_object*); lean_object* l_Lean_stringToMessageData(lean_object*); @@ -206,7 +208,7 @@ LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_omegaTactic___lambda__1___boxe static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__37; static lean_object* l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__5; uint8_t lean_string_dec_eq(lean_object*, lean_object*); -static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__55; +static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__45; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_addIntEquality___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_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__33; lean_object* l_Lean_throwError___at_Lean_Meta_setInlineAttribute___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -252,12 +254,11 @@ LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_omegaImpl(lean_object*, lean_o static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__29; 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*); static lean_object* l___regBuiltin_Lean_Elab_Tactic_Omega_evalOmega_declRange___closed__4; +static lean_object* l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__25; static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__42; static lean_object* l_Lean_Elab_Tactic_Omega_cases_u2082___closed__6; lean_object* l_List_appendTR___rarg(lean_object*, lean_object*); -static lean_object* l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__2; static lean_object* l_Lean_Elab_Tactic_Omega_splitDisjunction___closed__14; -static lean_object* l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__6; static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__10; size_t lean_usize_of_nat(lean_object*); static lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__19; @@ -281,7 +282,9 @@ static lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___c static lean_object* l_Lean_Elab_Tactic_Omega_mkCoordinateEvalAtomsEq___closed__8; LEAN_EXPORT lean_object* l_Lean_PersistentArray_forIn___at_Lean_Elab_Tactic_Omega_omegaTactic___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__17; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_succ_x3f(lean_object*); static lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__49; +static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__46; lean_object* lean_st_ref_take(lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Omega_evalUnsafe____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_6____closed__3; static lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__31; @@ -316,6 +319,7 @@ static lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_addIntInequality___lamb static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__12; LEAN_EXPORT lean_object* l___private_Lean_Elab_InfoTree_Main_0__Lean_Elab_withSavedPartialInfoContext___at_Lean_Elab_Tactic_Omega_elabOmegaConfig___spec__2___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_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_Omega_elabOmegaConfig___spec__10(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_Lean_Elab_Tactic_Omega_initFn____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_14846____closed__2; static lean_object* l_panic___at_Lean_Elab_Tactic_Omega_asLinearComboImpl_rewrite___spec__1___closed__3; lean_object* l_Lean_Omega_LinearCombo_add(lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_InfoTree_Main_0__Lean_Elab_withSavedPartialInfoContext___at_Lean_Elab_Tactic_Omega_elabOmegaConfig___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -330,10 +334,8 @@ static lean_object* l_Lean_Elab_Tactic_Omega_omegaTactic___lambda__2___closed__2 LEAN_EXPORT lean_object* l_Lean_getLocalHyps___at_Lean_Elab_Tactic_Omega_omegaTactic___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__13; LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_Tactic_Omega_omegaTactic___spec__5(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_Elab_Tactic_Omega_mkInt___closed__1; LEAN_EXPORT uint8_t l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__1(lean_object*); lean_object* l_Lean_PersistentArray_append___rarg(lean_object*, lean_object*); -static lean_object* l_Lean_Elab_Tactic_Omega_initFn____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_14658____closed__4; lean_object* l_Lean_Elab_Tactic_Omega_groundNat_x3f(lean_object*); lean_object* l_Lean_MVarId_withContext___at___private_Lean_Meta_SynthInstance_0__Lean_Meta_synthPendingImp___spec__2___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_PersistentArray_mapMAux___at_Lean_Elab_Tactic_Omega_elabOmegaConfig___spec__9(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -341,6 +343,7 @@ LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_omegaImpl___lambda__1(lean_obj static lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__18; static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__4___closed__7; uint8_t l_List_elem___at_Lean_CollectLevelParams_visitExpr___spec__2(lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__26; static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__25; static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__24; static lean_object* l_Lean_Elab_Tactic_Omega_mkCoordinateEvalAtomsEq___closed__10; @@ -388,8 +391,6 @@ static lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___c extern lean_object* l_Lean_levelZero; static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl_rewrite___lambda__2___closed__3; static lean_object* l_Lean_Elab_Tactic_Omega_elabOmegaConfig___closed__5; -static lean_object* l_Lean_Elab_Tactic_Omega_mkInt___closed__7; -static lean_object* l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__7; static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__47; static lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__40; static lean_object* l_Lean_Elab_Tactic_Omega_omegaImpl___lambda__3___closed__1; @@ -415,8 +416,6 @@ static lean_object* l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__6; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_trivial; lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_MVarId_elabFalseOrByContra___spec__1___rarg(lean_object*); LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Tactic_Omega_evalOmega_declRange(lean_object*); -static lean_object* l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__8; -static lean_object* l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__11; static lean_object* l_Lean_Elab_Tactic_Omega_omegaTactic___lambda__3___closed__1; static lean_object* l_Lean_Elab_Tactic_Omega_omegaImpl___lambda__6___closed__2; lean_object* l_Lean_Name_str___override(lean_object*, lean_object*); @@ -432,18 +431,15 @@ LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_omegaTactic___lambda__2(lean_o lean_object* l_Lean_mkOptionalNode(lean_object*); lean_object* l_Lean_Elab_Tactic_Omega_Problem_addEquality(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl_rewrite___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_Lean_Elab_Tactic_Omega_mkInt___closed__6; LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_Omega_elabOmegaConfig___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_object*); LEAN_EXPORT lean_object* l_Lean_AssocList_contains___at_Lean_Elab_Tactic_Omega_asLinearCombo___spec__5___boxed(lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__29; -static lean_object* l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__10; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_getArg(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___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* l___private_Init_Util_0__mkPanicMessageWithDecl(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Syntax_matchesNull(lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__9; -static lean_object* l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__9; static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__35; static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__25; static lean_object* l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__11; @@ -455,7 +451,6 @@ static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___clo lean_object* l_Lean_Elab_Tactic_Omega_atomsCoeffs___rarg(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__50; static lean_object* l_Lean_Elab_Tactic_Omega_elabOmegaConfig___closed__9; -static lean_object* l_Lean_Elab_Tactic_Omega_mkInt___closed__2; static lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__8; static lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__51; static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__44; @@ -469,6 +464,7 @@ LEAN_EXPORT lean_object* l_Lean_MVarId_withContext___at_Lean_Elab_Tactic_Omega_s static lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_trivial___closed__1; static lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__25; static lean_object* l_Lean_Elab_Tactic_Omega_mkCoordinateEvalAtomsEq___closed__4; +static lean_object* l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__28; static lean_object* l_Lean_Elab_Tactic_Omega_splitDisjunction___closed__1; lean_object* l_Lean_MVarId_assert(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_cases_u2082___closed__1; @@ -483,7 +479,6 @@ static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___c static lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__47; LEAN_EXPORT lean_object* l_Lean_throwError___at_Lean_Elab_Tactic_Omega_cases_u2082___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleFinVal___closed__6; -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_initFn____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_14658_(lean_object*); static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__38; size_t lean_hashmap_mk_idx(lean_object*, uint64_t); static lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__73; @@ -497,7 +492,6 @@ static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__4___clo static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl_rewrite___closed__8; static lean_object* l_Lean_Elab_Tactic_Omega_splitDisjunction___lambda__5___closed__4; static lean_object* l_Lean_Elab_Tactic_Omega_splitDisjunction___closed__2; -static lean_object* l_Lean_Elab_Tactic_Omega_mkInt___closed__8; static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__5___closed__5; LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_Omega_MetaProblem_addIntEquality___spec__2(lean_object*, lean_object*, size_t, size_t, lean_object*); static lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__27; @@ -505,6 +499,7 @@ lean_object* l_Lean_MessageData_ofExpr(lean_object*); static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__53; uint8_t l_Lean_LocalDecl_isImplementationDetail(lean_object*); static lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__37; +static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__43; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_asLinearCombo___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_Omega_splitDisjunction___lambda__7___closed__1; static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleFinVal___closed__9; @@ -513,6 +508,7 @@ lean_object* l_Lean_Elab_Tactic_Omega_lookup(lean_object*, lean_object*, lean_ob static lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__55; static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl_rewrite___lambda__2___closed__4; static lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__22; +static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__47; LEAN_EXPORT lean_object* l_Lean_HashMapImp_expand___at_Lean_Elab_Tactic_Omega_asLinearCombo___spec__6(lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleFinVal___closed__8; LEAN_EXPORT lean_object* l_Lean_AssocList_find_x3f___at_Lean_Elab_Tactic_Omega_asLinearCombo___spec__2(lean_object*, lean_object*); @@ -539,9 +535,7 @@ LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_Omega_M static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__27; static lean_object* l_Lean_Elab_Tactic_Omega_elabOmegaConfig___closed__4; static lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__3; -static lean_object* l_Lean_Elab_Tactic_Omega_initFn____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_14658____closed__5; static lean_object* l_Lean_Elab_Tactic_Omega_omegaImpl___lambda__4___closed__1; -static lean_object* l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__4; static lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__70; lean_object* lean_nat_abs(lean_object*); uint8_t l_Lean_Elab_Tactic_Omega_Problem_isEmpty(lean_object*); @@ -558,7 +552,7 @@ lean_object* l_Lean_Expr_app___override(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_splitDisjunction___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*); static lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__41; static lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__72; -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl___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_Elab_Tactic_Omega_asLinearComboImpl___lambda__3___boxed(lean_object**); static lean_object* l_Lean_Elab_Tactic_Omega_splitDisjunction___lambda__5___closed__1; uint8_t lean_nat_dec_eq(lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__6___closed__1; @@ -566,7 +560,7 @@ lean_object* l_Lean_mkApp3(lean_object*, lean_object*, lean_object*, lean_object static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__39; lean_object* l_Lean_Elab_getResetInfoTrees___at_Lean_Elab_Term_withDeclName___spec__3___rarg(lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_Omega_Problem_addInequality(lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__3; +static lean_object* l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__23; uint8_t lean_nat_dec_lt(lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__19; lean_object* lean_nat_mod(lean_object*, lean_object*); @@ -575,7 +569,6 @@ static lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___c static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__5; static lean_object* l_Lean_Elab_Tactic_Omega_elabOmegaConfig___closed__7; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_mkRawNatLit(lean_object*); lean_object* l_Lean_PersistentHashMap_insert___at_Lean_MVarId_assign___spec__1(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_mkListLit(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__7___closed__1; @@ -594,6 +587,7 @@ LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_asLinearCombo___lambda__3(lean static lean_object* l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__22; LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_Omega_asLinearComboImpl___spec__3(lean_object*, size_t, size_t, lean_object*); static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__52; +static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__44; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_asLinearCombo___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_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__4; static lean_object* l_panic___at_Lean_Elab_Tactic_Omega_asLinearComboImpl_rewrite___spec__1___closed__4; @@ -606,10 +600,12 @@ static lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___c lean_object* l_Lean_addMessageContextFull___at_Lean_Meta_instAddMessageContextMetaM___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Int_toNat(lean_object*); static lean_object* l___regBuiltin_Lean_Elab_Tactic_Omega_evalOmega___closed__5; +static lean_object* l_Lean_Elab_Tactic_Omega_succ_x3f___closed__3; static lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_problem___default___lambda__1___closed__1; uint8_t l_Lean_Syntax_isNone(lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_withSaveInfoContext___at_Lean_Elab_Tactic_Omega_elabOmegaConfig___spec__1(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*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_initFn____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_14846_(lean_object*); LEAN_EXPORT lean_object* l_Lean_throwError___at_Lean_Elab_Tactic_Omega_splitDisjunction___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t lean_int_dec_lt(lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Omega_mkCoordinateEvalAtomsEq___closed__9; @@ -640,6 +636,7 @@ lean_object* l_Array_ofSubarray___rarg(lean_object*); static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__38; static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__2; static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__15; +static lean_object* l_Lean_Elab_Tactic_Omega_succ_x3f___closed__2; static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__29; static lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__46; static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__7___closed__4; @@ -675,7 +672,6 @@ static lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__5; static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__14; static lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__32; static lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__37; -static lean_object* l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__5; static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__19; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_omegaImpl___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*); static lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__44; @@ -687,13 +683,13 @@ LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_omegaTactic(lean_object*, lean static lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__27; lean_object* lean_array_uget(lean_object*, size_t); lean_object* l_Lean_Expr_fvar___override(lean_object*); +lean_object* l_Lean_instToExprInt_mkNat(lean_object*); lean_object* l_List_mapTR_loop___at_Lean_Elab_Tactic_Omega_Problem_instToStringProblem___spec__4(lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__7; static lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__2; static lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__30; static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__21; static lean_object* l_Lean_Elab_Tactic_Omega_omegaImpl___lambda__6___closed__3; -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_mkInt___boxed(lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_splitDisjunction___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_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__47; lean_object* l_Lean_Elab_Tactic_Omega_atomsCoeffs___boxed(lean_object*); @@ -708,7 +704,6 @@ lean_object* l_Lean_addTrace___at_Lean_Meta_processPostponed_loop___spec__2(lean static lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__8; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_splitDisjunction___lambda__7(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_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__17; -static lean_object* l_Lean_Elab_Tactic_Omega_initFn____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_14658____closed__3; static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__48; static lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__52; lean_object* l_Lean_Name_mkStr4(lean_object*, lean_object*, lean_object*, lean_object*); @@ -743,11 +738,13 @@ static lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__44; static lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__60; 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*); +static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__42; static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__23; uint8_t lean_usize_dec_lt(size_t, size_t); static lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__48; lean_object* l_Lean_Meta_intro1Core(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__69; +static lean_object* l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__24; static lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__3; static lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__23; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_splitDisjunction___lambda__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -786,7 +783,6 @@ LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_addIntInequality__ LEAN_EXPORT lean_object* l_Lean_MVarId_withContext___at_Lean_Elab_Tactic_Omega_splitDisjunction___spec__2___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_Omega_asLinearComboImpl___lambda__5___closed__1; static lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__63; -static lean_object* l_Lean_Elab_Tactic_Omega_initFn____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_14658____closed__1; lean_object* l_Nat_repr(lean_object*); lean_object* l_Lean_MVarId_falseOrByContra(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_FVarId_getValue_x3f(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -794,11 +790,11 @@ static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___c lean_object* l_Lean_Meta_whnfR(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_splitDisjunction___lambda__6(lean_object*, lean_object*, lean_object*, lean_object*, lean_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_HashMapImp_find_x3f___at_Lean_Elab_Tactic_Omega_asLinearCombo___spec__1(lean_object*, lean_object*); -static lean_object* l_Lean_Elab_Tactic_Omega_mkInt___closed__4; lean_object* l___private_Lean_Data_HashMap_0__Lean_numBucketsForCapacity(lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_splitDisjunction___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*); static lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_problem___default___closed__3; LEAN_EXPORT uint8_t l_Lean_AssocList_contains___at_Lean_Elab_Tactic_Omega_asLinearCombo___spec__5(lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Tactic_Omega_succ_x3f___closed__1; static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__43; static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__49; static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__13; @@ -3554,241 +3550,218 @@ lean_dec(x_1); return x_9; } } -static lean_object* _init_l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__1() { +static lean_object* _init_l_Lean_Elab_Tactic_Omega_succ_x3f___closed__1() { _start: { lean_object* x_1; -x_1 = lean_mk_string_from_bytes("OfNat", 5); +x_1 = lean_mk_string_from_bytes("Nat", 3); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__2() { +static lean_object* _init_l_Lean_Elab_Tactic_Omega_succ_x3f___closed__2() { _start: { lean_object* x_1; -x_1 = lean_mk_string_from_bytes("ofNat", 5); +x_1 = lean_mk_string_from_bytes("HAdd", 4); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__3() { +static lean_object* _init_l_Lean_Elab_Tactic_Omega_succ_x3f___closed__3() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__1; -x_2 = l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__2; -x_3 = l_Lean_Name_mkStr2(x_1, x_2); -return x_3; +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("hAdd", 4); +return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__4() { +static lean_object* _init_l_Lean_Elab_Tactic_Omega_succ_x3f___closed__4() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = lean_unsigned_to_nat(0u); -x_2 = l_Lean_Level_ofNat(x_1); +x_1 = lean_unsigned_to_nat(1u); +x_2 = l_Lean_mkNatLit(x_1); return x_2; } } -static lean_object* _init_l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__5() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__4; -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_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__6() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__3; -x_2 = l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__5; -x_3 = l_Lean_Expr_const___override(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__7() { +static lean_object* _init_l_Lean_Elab_Tactic_Omega_succ_x3f___closed__5() { _start: { lean_object* x_1; -x_1 = lean_mk_string_from_bytes("Int", 3); +x_1 = lean_mk_string_from_bytes("succ", 4); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__8() { +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_succ_x3f(lean_object* x_1) { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__7; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__9() { -_start: +lean_object* x_2; lean_object* x_3; +x_2 = l_Lean_Expr_getAppFnArgs(x_1); +x_3 = lean_ctor_get(x_2, 0); +lean_inc(x_3); +if (lean_obj_tag(x_3) == 1) { -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__8; -x_3 = l_Lean_Expr_const___override(x_2, x_1); -return x_3; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__10() { -_start: +lean_object* x_4; +x_4 = lean_ctor_get(x_3, 0); +lean_inc(x_4); +if (lean_obj_tag(x_4) == 1) { -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("instOfNat", 9); -return x_1; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__11() { -_start: +lean_object* x_5; +x_5 = lean_ctor_get(x_4, 0); +lean_inc(x_5); +if (lean_obj_tag(x_5) == 0) { -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__10; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__12() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__11; -x_3 = l_Lean_Expr_const___override(x_2, x_1); -return x_3; -} -} -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_mkInt_mkNat(lean_object* x_1) { -_start: -{ -lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; -x_2 = l_Lean_mkRawNatLit(x_1); -x_3 = l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__12; -lean_inc(x_2); -x_4 = l_Lean_Expr_app___override(x_3, x_2); -x_5 = l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__6; -x_6 = l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__9; -x_7 = l_Lean_mkApp3(x_5, x_6, x_2, x_4); -return x_7; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Omega_mkInt___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_Lean_Elab_Tactic_Omega_mkInt___closed__2() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("Neg", 3); -return x_1; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Omega_mkInt___closed__3() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("neg", 3); -return x_1; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Omega_mkInt___closed__4() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Tactic_Omega_mkInt___closed__2; -x_2 = l_Lean_Elab_Tactic_Omega_mkInt___closed__3; -x_3 = l_Lean_Name_mkStr2(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Omega_mkInt___closed__5() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Tactic_Omega_mkInt___closed__4; -x_2 = l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__5; -x_3 = l_Lean_Expr_const___override(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Omega_mkInt___closed__6() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("instNegInt", 10); -return x_1; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Omega_mkInt___closed__7() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__7; -x_2 = l_Lean_Elab_Tactic_Omega_mkInt___closed__6; -x_3 = l_Lean_Name_mkStr2(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Omega_mkInt___closed__8() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l_Lean_Elab_Tactic_Omega_mkInt___closed__7; -x_3 = l_Lean_Expr_const___override(x_2, x_1); -return x_3; -} -} -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_mkInt(lean_object* x_1) { -_start: -{ -lean_object* x_2; uint8_t x_3; -x_2 = l_Lean_Elab_Tactic_Omega_mkInt___closed__1; -x_3 = lean_int_dec_le(x_2, x_1); -if (x_3 == 0) -{ -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; -x_4 = lean_int_neg(x_1); -x_5 = l_Int_toNat(x_4); +lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; uint8_t x_10; +x_6 = lean_ctor_get(x_2, 1); +lean_inc(x_6); +lean_dec(x_2); +x_7 = lean_ctor_get(x_3, 1); +lean_inc(x_7); +lean_dec(x_3); +x_8 = lean_ctor_get(x_4, 1); +lean_inc(x_8); lean_dec(x_4); -x_6 = l_Lean_Elab_Tactic_Omega_mkInt_mkNat(x_5); -x_7 = l_Lean_Elab_Tactic_Omega_mkInt___closed__5; -x_8 = l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__9; -x_9 = l_Lean_Elab_Tactic_Omega_mkInt___closed__8; -x_10 = l_Lean_mkApp3(x_7, x_8, x_6, x_9); -return x_10; +x_9 = l_Lean_Elab_Tactic_Omega_succ_x3f___closed__1; +x_10 = lean_string_dec_eq(x_8, x_9); +if (x_10 == 0) +{ +lean_object* x_11; uint8_t x_12; +x_11 = l_Lean_Elab_Tactic_Omega_succ_x3f___closed__2; +x_12 = lean_string_dec_eq(x_8, x_11); +lean_dec(x_8); +if (x_12 == 0) +{ +lean_object* x_13; +lean_dec(x_7); +lean_dec(x_6); +x_13 = lean_box(0); +return x_13; } else { -lean_object* x_11; lean_object* x_12; -x_11 = l_Int_toNat(x_1); -x_12 = l_Lean_Elab_Tactic_Omega_mkInt_mkNat(x_11); -return x_12; -} -} -} -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_mkInt___boxed(lean_object* x_1) { -_start: +lean_object* x_14; uint8_t x_15; +x_14 = l_Lean_Elab_Tactic_Omega_succ_x3f___closed__3; +x_15 = lean_string_dec_eq(x_7, x_14); +lean_dec(x_7); +if (x_15 == 0) { -lean_object* x_2; -x_2 = l_Lean_Elab_Tactic_Omega_mkInt(x_1); -lean_dec(x_1); -return x_2; +lean_object* x_16; +lean_dec(x_6); +x_16 = lean_box(0); +return x_16; +} +else +{ +lean_object* x_17; lean_object* x_18; uint8_t x_19; +x_17 = lean_array_get_size(x_6); +x_18 = lean_unsigned_to_nat(6u); +x_19 = lean_nat_dec_eq(x_17, x_18); +lean_dec(x_17); +if (x_19 == 0) +{ +lean_object* x_20; +lean_dec(x_6); +x_20 = lean_box(0); +return x_20; +} +else +{ +lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; uint8_t x_26; +x_21 = lean_unsigned_to_nat(4u); +x_22 = lean_array_fget(x_6, x_21); +x_23 = lean_unsigned_to_nat(5u); +x_24 = lean_array_fget(x_6, x_23); +lean_dec(x_6); +x_25 = l_Lean_Elab_Tactic_Omega_succ_x3f___closed__4; +x_26 = lean_expr_eqv(x_24, x_25); +lean_dec(x_24); +if (x_26 == 0) +{ +lean_object* x_27; +lean_dec(x_22); +x_27 = lean_box(0); +return x_27; +} +else +{ +lean_object* x_28; +x_28 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_28, 0, x_22); +return x_28; +} +} +} +} +} +else +{ +lean_object* x_29; uint8_t x_30; +lean_dec(x_8); +x_29 = l_Lean_Elab_Tactic_Omega_succ_x3f___closed__5; +x_30 = lean_string_dec_eq(x_7, x_29); +lean_dec(x_7); +if (x_30 == 0) +{ +lean_object* x_31; +lean_dec(x_6); +x_31 = lean_box(0); +return x_31; +} +else +{ +lean_object* x_32; lean_object* x_33; uint8_t x_34; +x_32 = lean_array_get_size(x_6); +x_33 = lean_unsigned_to_nat(1u); +x_34 = lean_nat_dec_eq(x_32, x_33); +lean_dec(x_32); +if (x_34 == 0) +{ +lean_object* x_35; +lean_dec(x_6); +x_35 = lean_box(0); +return x_35; +} +else +{ +lean_object* x_36; lean_object* x_37; lean_object* x_38; +x_36 = lean_unsigned_to_nat(0u); +x_37 = lean_array_fget(x_6, x_36); +lean_dec(x_6); +x_38 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_38, 0, x_37); +return x_38; +} +} +} +} +else +{ +lean_object* x_39; +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_39 = lean_box(0); +return x_39; +} +} +else +{ +lean_object* x_40; +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_40 = lean_box(0); +return x_40; +} +} +else +{ +lean_object* x_41; +lean_dec(x_3); +lean_dec(x_2); +x_41 = lean_box(0); +return x_41; +} } } static lean_object* _init_l_Lean_Elab_Tactic_Omega_MetaProblem_problem___default___lambda__1___closed__1() { @@ -3978,16 +3951,17 @@ return x_3; static lean_object* _init_l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__8() { _start: { -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("List", 4); -return x_1; +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_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__9() { _start: { lean_object* x_1; -x_1 = lean_mk_string_from_bytes("nil", 3); +x_1 = lean_mk_string_from_bytes("Int", 3); return x_1; } } @@ -3995,9 +3969,9 @@ static lean_object* _init_l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__10() _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__8; +x_1 = lean_box(0); x_2 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__9; -x_3 = l_Lean_Name_mkStr2(x_1, x_2); +x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } @@ -4006,6 +3980,42 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); +x_2 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__10; +x_3 = l_Lean_Expr_const___override(x_2, x_1); +return x_3; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__12() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("List", 4); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__13() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("nil", 3); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__14() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__12; +x_2 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__13; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__15() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); x_2 = l_Lean_levelZero; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); @@ -4013,50 +4023,12 @@ lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__12() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__10; -x_2 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__11; -x_3 = l_Lean_Expr_const___override(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__13() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__12; -x_2 = l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__9; -x_3 = l_Lean_Expr_app___override(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__14() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("cons", 4); -return x_1; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__15() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__8; -x_2 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__14; -x_3 = l_Lean_Name_mkStr2(x_1, x_2); -return x_3; -} -} static lean_object* _init_l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__16() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__15; -x_2 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__11; +x_1 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__14; +x_2 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__15; x_3 = l_Lean_Expr_const___override(x_1, x_2); return x_3; } @@ -4066,7 +4038,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__16; -x_2 = l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__9; +x_2 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__11; x_3 = l_Lean_Expr_app___override(x_1, x_2); return x_3; } @@ -4074,47 +4046,122 @@ return x_3; static lean_object* _init_l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__18() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__7; -x_2 = l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__2; -x_3 = l_Lean_Name_mkStr2(x_1, x_2); -return x_3; +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("cons", 4); +return x_1; } } static lean_object* _init_l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__19() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); +x_1 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__12; x_2 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__18; -x_3 = l_Lean_Expr_const___override(x_2, x_1); +x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } static lean_object* _init_l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__20() { _start: { -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("negSucc", 7); -return x_1; +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__19; +x_2 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__15; +x_3 = l_Lean_Expr_const___override(x_1, x_2); +return x_3; } } static lean_object* _init_l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__21() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__7; -x_2 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__20; -x_3 = l_Lean_Name_mkStr2(x_1, x_2); +x_1 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__20; +x_2 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__11; +x_3 = l_Lean_Expr_app___override(x_1, x_2); return x_3; } } static lean_object* _init_l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__22() { _start: { +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("Neg", 3); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__23() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("neg", 3); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__24() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__22; +x_2 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__23; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__25() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = lean_unsigned_to_nat(0u); +x_2 = l_Lean_Level_ofNat(x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__26() { +_start: +{ lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__21; +x_2 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__25; +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_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__27() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__24; +x_2 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__26; +x_3 = l_Lean_Expr_const___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__28() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("instNegInt", 10); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__29() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__9; +x_2 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__28; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__30() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__29; x_3 = l_Lean_Expr_const___override(x_2, x_1); return x_3; } @@ -4130,78 +4177,77 @@ lean_inc(x_6); x_11 = l_Lean_Elab_Tactic_Omega_atomsCoeffs___rarg(x_4, x_5, x_6, x_7, x_8, x_9, x_10); if (lean_obj_tag(x_11) == 0) { -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; uint8_t x_20; +lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; uint8_t x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; 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); x_14 = lean_ctor_get(x_2, 0); -x_15 = lean_ctor_get(x_2, 1); -x_16 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__13; -x_17 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__17; -x_18 = l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_Omega_instToExprLinearCombo___spec__1(x_16, x_17, x_15); -x_19 = l_Lean_Elab_Tactic_Omega_mkInt___closed__1; -x_20 = lean_int_dec_lt(x_14, x_19); -if (x_20 == 0) +x_15 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__8; +x_16 = lean_int_dec_le(x_15, x_14); +x_17 = lean_ctor_get(x_2, 1); +x_18 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__17; +x_19 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__21; +x_20 = l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_Omega_instToExprLinearCombo___spec__1(x_18, x_19, x_17); +if (x_16 == 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_object* x_28; lean_object* x_29; lean_object* x_30; -x_21 = lean_nat_abs(x_14); -x_22 = l_Lean_mkNatLit(x_21); -x_23 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__19; -x_24 = l_Lean_Expr_app___override(x_23, x_22); -x_25 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__7; -x_26 = l_Lean_Expr_app___override(x_25, x_24); -x_27 = l_Lean_Expr_app___override(x_26, x_18); -x_28 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__4; -x_29 = l_Lean_mkAppB(x_28, x_27, x_12); -x_30 = l_Lean_Elab_Tactic_Omega_mkEqReflWithExpectedType(x_1, x_29, x_6, x_7, x_8, x_9, x_13); -return x_30; +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; +x_21 = lean_int_neg(x_14); +x_22 = l_Int_toNat(x_21); +lean_dec(x_21); +x_23 = l_Lean_instToExprInt_mkNat(x_22); +x_24 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__27; +x_25 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__11; +x_26 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__30; +x_27 = l_Lean_mkApp3(x_24, x_25, x_26, x_23); +x_28 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__7; +x_29 = l_Lean_Expr_app___override(x_28, x_27); +x_30 = l_Lean_Expr_app___override(x_29, x_20); +x_31 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__4; +x_32 = l_Lean_mkAppB(x_31, x_30, x_12); +x_33 = l_Lean_Elab_Tactic_Omega_mkEqReflWithExpectedType(x_1, x_32, x_6, x_7, x_8, x_9, x_13); +return x_33; } else { -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; -x_31 = lean_nat_abs(x_14); -x_32 = lean_unsigned_to_nat(1u); -x_33 = lean_nat_sub(x_31, x_32); -lean_dec(x_31); -x_34 = l_Lean_mkNatLit(x_33); -x_35 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__22; -x_36 = l_Lean_Expr_app___override(x_35, x_34); -x_37 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__7; -x_38 = l_Lean_Expr_app___override(x_37, x_36); -x_39 = l_Lean_Expr_app___override(x_38, x_18); -x_40 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__4; -x_41 = l_Lean_mkAppB(x_40, x_39, x_12); -x_42 = l_Lean_Elab_Tactic_Omega_mkEqReflWithExpectedType(x_1, x_41, x_6, x_7, x_8, x_9, x_13); -return x_42; +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; +x_34 = l_Int_toNat(x_14); +x_35 = l_Lean_instToExprInt_mkNat(x_34); +x_36 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__7; +x_37 = l_Lean_Expr_app___override(x_36, x_35); +x_38 = l_Lean_Expr_app___override(x_37, x_20); +x_39 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__4; +x_40 = l_Lean_mkAppB(x_39, x_38, x_12); +x_41 = l_Lean_Elab_Tactic_Omega_mkEqReflWithExpectedType(x_1, x_40, x_6, x_7, x_8, x_9, x_13); +return x_41; } } else { -uint8_t x_43; +uint8_t x_42; lean_dec(x_9); lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_1); -x_43 = !lean_is_exclusive(x_11); -if (x_43 == 0) +x_42 = !lean_is_exclusive(x_11); +if (x_42 == 0) { return x_11; } else { -lean_object* x_44; lean_object* x_45; lean_object* x_46; -x_44 = lean_ctor_get(x_11, 0); -x_45 = lean_ctor_get(x_11, 1); -lean_inc(x_45); +lean_object* x_43; lean_object* x_44; lean_object* x_45; +x_43 = lean_ctor_get(x_11, 0); +x_44 = lean_ctor_get(x_11, 1); lean_inc(x_44); +lean_inc(x_43); lean_dec(x_11); -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; +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; } } } @@ -4291,7 +4337,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__8; +x_2 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__10; x_3 = l_Lean_Expr_const___override(x_2, x_1); return x_3; } @@ -4873,7 +4919,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_Elab_Tactic_Omega_asLinearComboImpl_rewrite___lambda__2___closed__3; x_2 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_rewrite___lambda__2___closed__4; -x_3 = lean_unsigned_to_nat(246u); +x_3 = lean_unsigned_to_nat(243u); x_4 = lean_unsigned_to_nat(14u); x_5 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_rewrite___lambda__2___closed__5; x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); @@ -6112,7 +6158,7 @@ LEAN_EXPORT uint8_t l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__1(lean_ _start: { lean_object* x_2; uint8_t x_3; -x_2 = l_Lean_Elab_Tactic_Omega_mkInt___closed__1; +x_2 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__8; x_3 = lean_int_dec_eq(x_1, x_2); return x_3; } @@ -6159,7 +6205,7 @@ _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_Elab_Tactic_Omega_evalUnsafe____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_6____closed__1; x_2 = l_Lean_Elab_Tactic_Omega_evalUnsafe____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_6____closed__3; -x_3 = l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__7; +x_3 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__9; x_4 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__3___closed__3; x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); return x_5; @@ -6174,265 +6220,264 @@ x_2 = lean_mk_empty_array_with_capacity(x_1); return x_2; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl___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_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl___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) { _start: { -lean_object* x_17; +lean_object* x_18; +lean_inc(x_16); lean_inc(x_15); lean_inc(x_14); lean_inc(x_13); -lean_inc(x_12); -x_17 = l_Lean_Elab_Tactic_Omega_atomsCoeffs___rarg(x_10, x_11, x_12, x_13, x_14, x_15, x_16); -if (lean_obj_tag(x_17) == 0) +x_18 = l_Lean_Elab_Tactic_Omega_atomsCoeffs___rarg(x_11, x_12, x_13, x_14, x_15, x_16, x_17); +if (lean_obj_tag(x_18) == 0) { -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_69; lean_object* x_70; lean_object* x_111; uint8_t x_112; -x_18 = lean_ctor_get(x_17, 0); -lean_inc(x_18); -x_19 = lean_ctor_get(x_17, 1); +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; uint8_t x_29; lean_object* x_30; lean_object* x_31; lean_object* x_78; +x_19 = lean_ctor_get(x_18, 0); lean_inc(x_19); -lean_dec(x_17); -x_20 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__3___closed__2; +x_20 = lean_ctor_get(x_18, 1); +lean_inc(x_20); +lean_dec(x_18); +x_21 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__3___closed__2; lean_inc(x_1); -x_21 = l_Lean_Expr_const___override(x_20, x_1); -x_22 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__6; +x_22 = l_Lean_Expr_const___override(x_21, x_1); +x_23 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__6; lean_inc(x_1); -x_23 = l_Lean_Expr_const___override(x_22, x_1); -x_24 = lean_ctor_get(x_2, 0); -x_25 = lean_ctor_get(x_3, 0); +x_24 = l_Lean_Expr_const___override(x_23, x_1); +x_25 = lean_ctor_get(x_2, 0); +x_26 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__8; +x_27 = lean_int_dec_le(x_26, x_25); +x_28 = lean_ctor_get(x_3, 0); +x_29 = lean_int_dec_le(x_26, x_28); +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_10); -lean_inc(x_9); -x_26 = lean_apply_8(x_4, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_19); -x_111 = l_Lean_Elab_Tactic_Omega_mkInt___closed__1; -x_112 = lean_int_dec_lt(x_24, x_111); -if (x_112 == 0) +x_30 = lean_apply_8(x_4, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_20); +if (x_27 == 0) { -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; uint8_t x_120; -x_113 = lean_nat_abs(x_24); -x_114 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__18; +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; +x_117 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__25; lean_inc(x_1); -x_115 = l_Lean_Expr_const___override(x_114, x_1); -x_116 = l_Lean_mkNatLit(x_113); -x_117 = l_Lean_Expr_app___override(x_115, x_116); -lean_inc(x_23); -x_118 = l_Lean_Expr_app___override(x_23, x_117); -x_119 = l_Lean_Expr_app___override(x_118, x_7); -x_120 = lean_int_dec_lt(x_25, x_111); -if (x_120 == 0) -{ -lean_object* x_121; -x_121 = lean_nat_abs(x_25); -x_27 = x_119; -x_28 = x_121; -goto block_68; -} -else -{ -lean_object* x_122; lean_object* x_123; lean_object* x_124; -x_122 = lean_nat_abs(x_25); -x_123 = lean_unsigned_to_nat(1u); -x_124 = lean_nat_sub(x_122, x_123); -lean_dec(x_122); -x_69 = x_119; -x_70 = x_124; -goto block_110; -} -} -else -{ -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; uint8_t x_134; -x_125 = lean_nat_abs(x_24); -x_126 = lean_unsigned_to_nat(1u); -x_127 = lean_nat_sub(x_125, x_126); -lean_dec(x_125); -x_128 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__21; +x_118 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_118, 0, x_117); +lean_ctor_set(x_118, 1, x_1); +x_119 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__24; +x_120 = l_Lean_Expr_const___override(x_119, x_118); +x_121 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__29; lean_inc(x_1); -x_129 = l_Lean_Expr_const___override(x_128, x_1); -x_130 = l_Lean_mkNatLit(x_127); -x_131 = l_Lean_Expr_app___override(x_129, x_130); -lean_inc(x_23); -x_132 = l_Lean_Expr_app___override(x_23, x_131); -x_133 = l_Lean_Expr_app___override(x_132, x_7); -x_134 = lean_int_dec_lt(x_25, x_111); -if (x_134 == 0) +x_122 = l_Lean_Expr_const___override(x_121, x_1); +x_123 = lean_int_neg(x_25); +x_124 = l_Int_toNat(x_123); +lean_dec(x_123); +x_125 = l_Lean_instToExprInt_mkNat(x_124); +lean_inc(x_5); +x_126 = l_Lean_mkApp3(x_120, x_5, x_122, x_125); +lean_inc(x_24); +x_127 = l_Lean_Expr_app___override(x_24, x_126); +x_128 = l_Lean_Expr_app___override(x_127, x_8); +if (x_29 == 0) { -lean_object* x_135; -x_135 = lean_nat_abs(x_25); -x_27 = x_133; -x_28 = x_135; -goto block_68; +x_31 = x_128; +goto block_77; } else { -lean_object* x_136; lean_object* x_137; -x_136 = lean_nat_abs(x_25); -x_137 = lean_nat_sub(x_136, x_126); -lean_dec(x_136); -x_69 = x_133; -x_70 = x_137; -goto block_110; +lean_dec(x_5); +lean_dec(x_1); +x_78 = x_128; +goto block_116; } } -block_68: +else { -if (lean_obj_tag(x_26) == 0) +lean_object* x_129; lean_object* x_130; lean_object* x_131; lean_object* x_132; +x_129 = l_Int_toNat(x_25); +x_130 = l_Lean_instToExprInt_mkNat(x_129); +lean_inc(x_24); +x_131 = l_Lean_Expr_app___override(x_24, x_130); +x_132 = l_Lean_Expr_app___override(x_131, x_8); +if (x_29 == 0) { -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; -x_29 = lean_ctor_get(x_26, 0); -lean_inc(x_29); -x_30 = lean_ctor_get(x_26, 1); -lean_inc(x_30); -lean_dec(x_26); -x_31 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__18; -x_32 = l_Lean_Expr_const___override(x_31, x_1); -x_33 = l_Lean_mkNatLit(x_28); -x_34 = l_Lean_Expr_app___override(x_32, x_33); -x_35 = l_Lean_Expr_app___override(x_23, x_34); -x_36 = l_Lean_Expr_app___override(x_35, x_5); -x_37 = l_Lean_mkApp4(x_21, x_27, x_36, x_18, x_8); +x_31 = x_132; +goto block_77; +} +else +{ +lean_dec(x_5); +lean_dec(x_1); +x_78 = x_132; +goto block_116; +} +} +block_77: +{ +if (lean_obj_tag(x_30) == 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_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; +x_32 = lean_ctor_get(x_30, 0); +lean_inc(x_32); +x_33 = lean_ctor_get(x_30, 1); +lean_inc(x_33); +lean_dec(x_30); +x_34 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__25; +lean_inc(x_1); +x_35 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_35, 0, x_34); +lean_ctor_set(x_35, 1, x_1); +x_36 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__24; +x_37 = l_Lean_Expr_const___override(x_36, x_35); +x_38 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__29; +x_39 = l_Lean_Expr_const___override(x_38, x_1); +x_40 = lean_int_neg(x_28); +x_41 = l_Int_toNat(x_40); +lean_dec(x_40); +x_42 = l_Lean_instToExprInt_mkNat(x_41); +x_43 = l_Lean_mkApp3(x_37, x_5, x_39, x_42); +x_44 = l_Lean_Expr_app___override(x_24, x_43); +x_45 = l_Lean_Expr_app___override(x_44, x_6); +x_46 = l_Lean_mkApp4(x_22, x_31, x_45, x_19, x_9); +lean_inc(x_16); lean_inc(x_15); lean_inc(x_14); lean_inc(x_13); -lean_inc(x_12); -x_38 = lean_apply_8(x_6, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_30); -if (lean_obj_tag(x_38) == 0) +x_47 = lean_apply_8(x_7, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_33); +if (lean_obj_tag(x_47) == 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); -lean_dec(x_38); -x_41 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__3___closed__5; -x_42 = lean_array_push(x_41, x_29); -x_43 = lean_array_push(x_42, x_39); -x_44 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__3___closed__4; -lean_inc(x_15); -lean_inc(x_14); -lean_inc(x_13); -lean_inc(x_12); -x_45 = l_Lean_Meta_mkAppM(x_44, x_43, x_12, x_13, x_14, x_15, x_40); -if (lean_obj_tag(x_45) == 0) -{ -lean_object* x_46; lean_object* x_47; lean_object* x_48; -x_46 = lean_ctor_get(x_45, 0); -lean_inc(x_46); -x_47 = lean_ctor_get(x_45, 1); -lean_inc(x_47); -lean_dec(x_45); -lean_inc(x_15); -lean_inc(x_14); -lean_inc(x_13); -lean_inc(x_12); -x_48 = l_Lean_Meta_mkEqSymm(x_37, x_12, x_13, x_14, x_15, x_47); -if (lean_obj_tag(x_48) == 0) -{ -lean_object* x_49; lean_object* x_50; lean_object* x_51; -x_49 = lean_ctor_get(x_48, 0); +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; +x_48 = lean_ctor_get(x_47, 0); +lean_inc(x_48); +x_49 = lean_ctor_get(x_47, 1); lean_inc(x_49); -x_50 = lean_ctor_get(x_48, 1); -lean_inc(x_50); -lean_dec(x_48); -x_51 = l_Lean_Meta_mkEqTrans(x_46, x_49, x_12, x_13, x_14, x_15, x_50); -return x_51; -} -else +lean_dec(x_47); +x_50 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__3___closed__5; +x_51 = lean_array_push(x_50, x_32); +x_52 = lean_array_push(x_51, x_48); +x_53 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__3___closed__4; +lean_inc(x_16); +lean_inc(x_15); +lean_inc(x_14); +lean_inc(x_13); +x_54 = l_Lean_Meta_mkAppM(x_53, x_52, x_13, x_14, x_15, x_16, x_49); +if (lean_obj_tag(x_54) == 0) { -uint8_t x_52; -lean_dec(x_46); -lean_dec(x_15); -lean_dec(x_14); -lean_dec(x_13); -lean_dec(x_12); -x_52 = !lean_is_exclusive(x_48); -if (x_52 == 0) +lean_object* x_55; lean_object* x_56; lean_object* x_57; +x_55 = lean_ctor_get(x_54, 0); +lean_inc(x_55); +x_56 = lean_ctor_get(x_54, 1); +lean_inc(x_56); +lean_dec(x_54); +lean_inc(x_16); +lean_inc(x_15); +lean_inc(x_14); +lean_inc(x_13); +x_57 = l_Lean_Meta_mkEqSymm(x_46, x_13, x_14, x_15, x_16, x_56); +if (lean_obj_tag(x_57) == 0) { -return x_48; -} -else -{ -lean_object* x_53; lean_object* x_54; lean_object* x_55; -x_53 = lean_ctor_get(x_48, 0); -x_54 = lean_ctor_get(x_48, 1); -lean_inc(x_54); -lean_inc(x_53); -lean_dec(x_48); -x_55 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_55, 0, x_53); -lean_ctor_set(x_55, 1, x_54); -return x_55; -} -} -} -else -{ -uint8_t x_56; -lean_dec(x_37); -lean_dec(x_15); -lean_dec(x_14); -lean_dec(x_13); -lean_dec(x_12); -x_56 = !lean_is_exclusive(x_45); -if (x_56 == 0) -{ -return x_45; -} -else -{ -lean_object* x_57; lean_object* x_58; lean_object* x_59; -x_57 = lean_ctor_get(x_45, 0); -x_58 = lean_ctor_get(x_45, 1); +lean_object* x_58; lean_object* x_59; lean_object* x_60; +x_58 = lean_ctor_get(x_57, 0); lean_inc(x_58); -lean_inc(x_57); -lean_dec(x_45); -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; -} -} +x_59 = lean_ctor_get(x_57, 1); +lean_inc(x_59); +lean_dec(x_57); +x_60 = l_Lean_Meta_mkEqTrans(x_55, x_58, x_13, x_14, x_15, x_16, x_59); +return x_60; } else { -uint8_t x_60; -lean_dec(x_37); -lean_dec(x_29); +uint8_t x_61; +lean_dec(x_55); +lean_dec(x_16); lean_dec(x_15); lean_dec(x_14); lean_dec(x_13); -lean_dec(x_12); -x_60 = !lean_is_exclusive(x_38); -if (x_60 == 0) +x_61 = !lean_is_exclusive(x_57); +if (x_61 == 0) { -return x_38; +return x_57; } else { -lean_object* x_61; lean_object* x_62; lean_object* x_63; -x_61 = lean_ctor_get(x_38, 0); -x_62 = lean_ctor_get(x_38, 1); +lean_object* x_62; lean_object* x_63; lean_object* x_64; +x_62 = lean_ctor_get(x_57, 0); +x_63 = lean_ctor_get(x_57, 1); +lean_inc(x_63); lean_inc(x_62); -lean_inc(x_61); -lean_dec(x_38); -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; +lean_dec(x_57); +x_64 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_64, 0, x_62); +lean_ctor_set(x_64, 1, x_63); +return x_64; } } } else { -uint8_t x_64; -lean_dec(x_28); -lean_dec(x_27); -lean_dec(x_23); -lean_dec(x_21); -lean_dec(x_18); +uint8_t x_65; +lean_dec(x_46); +lean_dec(x_16); +lean_dec(x_15); +lean_dec(x_14); +lean_dec(x_13); +x_65 = !lean_is_exclusive(x_54); +if (x_65 == 0) +{ +return x_54; +} +else +{ +lean_object* x_66; lean_object* x_67; lean_object* x_68; +x_66 = lean_ctor_get(x_54, 0); +x_67 = lean_ctor_get(x_54, 1); +lean_inc(x_67); +lean_inc(x_66); +lean_dec(x_54); +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; +} +} +} +else +{ +uint8_t x_69; +lean_dec(x_46); +lean_dec(x_32); +lean_dec(x_16); +lean_dec(x_15); +lean_dec(x_14); +lean_dec(x_13); +x_69 = !lean_is_exclusive(x_47); +if (x_69 == 0) +{ +return x_47; +} +else +{ +lean_object* x_70; lean_object* x_71; lean_object* x_72; +x_70 = lean_ctor_get(x_47, 0); +x_71 = lean_ctor_get(x_47, 1); +lean_inc(x_71); +lean_inc(x_70); +lean_dec(x_47); +x_72 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_72, 0, x_70); +lean_ctor_set(x_72, 1, x_71); +return x_72; +} +} +} +else +{ +uint8_t x_73; +lean_dec(x_31); +lean_dec(x_24); +lean_dec(x_22); +lean_dec(x_19); +lean_dec(x_16); lean_dec(x_15); lean_dec(x_14); lean_dec(x_13); @@ -6440,186 +6485,184 @@ 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_1); -x_64 = !lean_is_exclusive(x_26); -if (x_64 == 0) +x_73 = !lean_is_exclusive(x_30); +if (x_73 == 0) { -return x_26; +return x_30; } else { -lean_object* x_65; lean_object* x_66; lean_object* x_67; -x_65 = lean_ctor_get(x_26, 0); -x_66 = lean_ctor_get(x_26, 1); -lean_inc(x_66); -lean_inc(x_65); -lean_dec(x_26); -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_74; lean_object* x_75; lean_object* x_76; +x_74 = lean_ctor_get(x_30, 0); +x_75 = lean_ctor_get(x_30, 1); +lean_inc(x_75); +lean_inc(x_74); +lean_dec(x_30); +x_76 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_76, 0, x_74); +lean_ctor_set(x_76, 1, x_75); +return x_76; } } } -block_110: +block_116: { -if (lean_obj_tag(x_26) == 0) +if (lean_obj_tag(x_30) == 0) { -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; -x_71 = lean_ctor_get(x_26, 0); -lean_inc(x_71); -x_72 = lean_ctor_get(x_26, 1); -lean_inc(x_72); -lean_dec(x_26); -x_73 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__21; -x_74 = l_Lean_Expr_const___override(x_73, x_1); -x_75 = l_Lean_mkNatLit(x_70); -x_76 = l_Lean_Expr_app___override(x_74, x_75); -x_77 = l_Lean_Expr_app___override(x_23, x_76); -x_78 = l_Lean_Expr_app___override(x_77, x_5); -x_79 = l_Lean_mkApp4(x_21, x_69, x_78, x_18, x_8); +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; +x_79 = lean_ctor_get(x_30, 0); +lean_inc(x_79); +x_80 = lean_ctor_get(x_30, 1); +lean_inc(x_80); +lean_dec(x_30); +x_81 = l_Int_toNat(x_28); +x_82 = l_Lean_instToExprInt_mkNat(x_81); +x_83 = l_Lean_Expr_app___override(x_24, x_82); +x_84 = l_Lean_Expr_app___override(x_83, x_6); +x_85 = l_Lean_mkApp4(x_22, x_78, x_84, x_19, x_9); +lean_inc(x_16); lean_inc(x_15); lean_inc(x_14); lean_inc(x_13); -lean_inc(x_12); -x_80 = lean_apply_8(x_6, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_72); -if (lean_obj_tag(x_80) == 0) +x_86 = lean_apply_8(x_7, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_80); +if (lean_obj_tag(x_86) == 0) { -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_81 = lean_ctor_get(x_80, 0); -lean_inc(x_81); -x_82 = lean_ctor_get(x_80, 1); -lean_inc(x_82); -lean_dec(x_80); -x_83 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__3___closed__5; -x_84 = lean_array_push(x_83, x_71); -x_85 = lean_array_push(x_84, x_81); -x_86 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__3___closed__4; -lean_inc(x_15); -lean_inc(x_14); -lean_inc(x_13); -lean_inc(x_12); -x_87 = l_Lean_Meta_mkAppM(x_86, x_85, x_12, x_13, x_14, x_15, x_82); -if (lean_obj_tag(x_87) == 0) -{ -lean_object* x_88; lean_object* x_89; lean_object* x_90; -x_88 = lean_ctor_get(x_87, 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; +x_87 = lean_ctor_get(x_86, 0); +lean_inc(x_87); +x_88 = lean_ctor_get(x_86, 1); lean_inc(x_88); -x_89 = lean_ctor_get(x_87, 1); -lean_inc(x_89); -lean_dec(x_87); +lean_dec(x_86); +x_89 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__3___closed__5; +x_90 = lean_array_push(x_89, x_79); +x_91 = lean_array_push(x_90, x_87); +x_92 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__3___closed__4; +lean_inc(x_16); lean_inc(x_15); lean_inc(x_14); lean_inc(x_13); -lean_inc(x_12); -x_90 = l_Lean_Meta_mkEqSymm(x_79, x_12, x_13, x_14, x_15, x_89); -if (lean_obj_tag(x_90) == 0) +x_93 = l_Lean_Meta_mkAppM(x_92, x_91, x_13, x_14, x_15, x_16, x_88); +if (lean_obj_tag(x_93) == 0) +{ +lean_object* x_94; lean_object* x_95; lean_object* x_96; +x_94 = lean_ctor_get(x_93, 0); +lean_inc(x_94); +x_95 = lean_ctor_get(x_93, 1); +lean_inc(x_95); +lean_dec(x_93); +lean_inc(x_16); +lean_inc(x_15); +lean_inc(x_14); +lean_inc(x_13); +x_96 = l_Lean_Meta_mkEqSymm(x_85, x_13, x_14, x_15, x_16, x_95); +if (lean_obj_tag(x_96) == 0) +{ +lean_object* x_97; lean_object* x_98; lean_object* x_99; +x_97 = lean_ctor_get(x_96, 0); +lean_inc(x_97); +x_98 = lean_ctor_get(x_96, 1); +lean_inc(x_98); +lean_dec(x_96); +x_99 = l_Lean_Meta_mkEqTrans(x_94, x_97, x_13, x_14, x_15, x_16, x_98); +return x_99; +} +else +{ +uint8_t x_100; +lean_dec(x_94); +lean_dec(x_16); +lean_dec(x_15); +lean_dec(x_14); +lean_dec(x_13); +x_100 = !lean_is_exclusive(x_96); +if (x_100 == 0) +{ +return x_96; +} +else +{ +lean_object* x_101; lean_object* x_102; lean_object* x_103; +x_101 = lean_ctor_get(x_96, 0); +x_102 = lean_ctor_get(x_96, 1); +lean_inc(x_102); +lean_inc(x_101); +lean_dec(x_96); +x_103 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_103, 0, x_101); +lean_ctor_set(x_103, 1, x_102); +return x_103; +} +} +} +else +{ +uint8_t x_104; +lean_dec(x_85); +lean_dec(x_16); +lean_dec(x_15); +lean_dec(x_14); +lean_dec(x_13); +x_104 = !lean_is_exclusive(x_93); +if (x_104 == 0) { -lean_object* x_91; lean_object* x_92; lean_object* x_93; -x_91 = lean_ctor_get(x_90, 0); -lean_inc(x_91); -x_92 = lean_ctor_get(x_90, 1); -lean_inc(x_92); -lean_dec(x_90); -x_93 = l_Lean_Meta_mkEqTrans(x_88, x_91, x_12, x_13, x_14, x_15, x_92); return x_93; } else { -uint8_t x_94; -lean_dec(x_88); -lean_dec(x_15); -lean_dec(x_14); -lean_dec(x_13); -lean_dec(x_12); -x_94 = !lean_is_exclusive(x_90); -if (x_94 == 0) -{ -return x_90; -} -else -{ -lean_object* x_95; lean_object* x_96; lean_object* x_97; -x_95 = lean_ctor_get(x_90, 0); -x_96 = lean_ctor_get(x_90, 1); -lean_inc(x_96); -lean_inc(x_95); -lean_dec(x_90); -x_97 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_97, 0, x_95); -lean_ctor_set(x_97, 1, x_96); -return x_97; +lean_object* x_105; lean_object* x_106; lean_object* x_107; +x_105 = lean_ctor_get(x_93, 0); +x_106 = lean_ctor_get(x_93, 1); +lean_inc(x_106); +lean_inc(x_105); +lean_dec(x_93); +x_107 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_107, 0, x_105); +lean_ctor_set(x_107, 1, x_106); +return x_107; } } } else { -uint8_t x_98; +uint8_t x_108; +lean_dec(x_85); lean_dec(x_79); +lean_dec(x_16); lean_dec(x_15); lean_dec(x_14); lean_dec(x_13); -lean_dec(x_12); -x_98 = !lean_is_exclusive(x_87); -if (x_98 == 0) +x_108 = !lean_is_exclusive(x_86); +if (x_108 == 0) { -return x_87; +return x_86; } else { -lean_object* x_99; lean_object* x_100; lean_object* x_101; -x_99 = lean_ctor_get(x_87, 0); -x_100 = lean_ctor_get(x_87, 1); -lean_inc(x_100); -lean_inc(x_99); -lean_dec(x_87); -x_101 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_101, 0, x_99); -lean_ctor_set(x_101, 1, x_100); -return x_101; +lean_object* x_109; lean_object* x_110; lean_object* x_111; +x_109 = lean_ctor_get(x_86, 0); +x_110 = lean_ctor_get(x_86, 1); +lean_inc(x_110); +lean_inc(x_109); +lean_dec(x_86); +x_111 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_111, 0, x_109); +lean_ctor_set(x_111, 1, x_110); +return x_111; } } } else { -uint8_t x_102; -lean_dec(x_79); -lean_dec(x_71); -lean_dec(x_15); -lean_dec(x_14); -lean_dec(x_13); -lean_dec(x_12); -x_102 = !lean_is_exclusive(x_80); -if (x_102 == 0) -{ -return x_80; -} -else -{ -lean_object* x_103; lean_object* x_104; lean_object* x_105; -x_103 = lean_ctor_get(x_80, 0); -x_104 = lean_ctor_get(x_80, 1); -lean_inc(x_104); -lean_inc(x_103); -lean_dec(x_80); -x_105 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_105, 0, x_103); -lean_ctor_set(x_105, 1, x_104); -return x_105; -} -} -} -else -{ -uint8_t x_106; -lean_dec(x_70); -lean_dec(x_69); -lean_dec(x_23); -lean_dec(x_21); -lean_dec(x_18); +uint8_t x_112; +lean_dec(x_78); +lean_dec(x_24); +lean_dec(x_22); +lean_dec(x_19); +lean_dec(x_16); lean_dec(x_15); lean_dec(x_14); lean_dec(x_13); @@ -6627,34 +6670,33 @@ 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_1); -x_106 = !lean_is_exclusive(x_26); -if (x_106 == 0) +x_112 = !lean_is_exclusive(x_30); +if (x_112 == 0) { -return x_26; +return x_30; } else { -lean_object* x_107; lean_object* x_108; lean_object* x_109; -x_107 = lean_ctor_get(x_26, 0); -x_108 = lean_ctor_get(x_26, 1); -lean_inc(x_108); -lean_inc(x_107); -lean_dec(x_26); -x_109 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_109, 0, x_107); -lean_ctor_set(x_109, 1, x_108); -return x_109; +lean_object* x_113; lean_object* x_114; lean_object* x_115; +x_113 = lean_ctor_get(x_30, 0); +x_114 = lean_ctor_get(x_30, 1); +lean_inc(x_114); +lean_inc(x_113); +lean_dec(x_30); +x_115 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_115, 0, x_113); +lean_ctor_set(x_115, 1, x_114); +return x_115; } } } } else { -uint8_t x_138; +uint8_t x_133; +lean_dec(x_16); lean_dec(x_15); lean_dec(x_14); lean_dec(x_13); @@ -6668,23 +6710,23 @@ lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_1); -x_138 = !lean_is_exclusive(x_17); -if (x_138 == 0) +x_133 = !lean_is_exclusive(x_18); +if (x_133 == 0) { -return x_17; +return x_18; } else { -lean_object* x_139; lean_object* x_140; lean_object* x_141; -x_139 = lean_ctor_get(x_17, 0); -x_140 = lean_ctor_get(x_17, 1); -lean_inc(x_140); -lean_inc(x_139); -lean_dec(x_17); -x_141 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_141, 0, x_139); -lean_ctor_set(x_141, 1, x_140); -return x_141; +lean_object* x_134; lean_object* x_135; lean_object* x_136; +x_134 = lean_ctor_get(x_18, 0); +x_135 = lean_ctor_get(x_18, 1); +lean_inc(x_135); +lean_inc(x_134); +lean_dec(x_18); +x_136 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_136, 0, x_134); +lean_ctor_set(x_136, 1, x_135); +return x_136; } } } @@ -6792,7 +6834,7 @@ if (lean_is_exclusive(x_11)) { x_16 = l_Lean_Elab_Tactic_Omega_asLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); if (lean_obj_tag(x_16) == 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; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_75; uint8_t x_76; +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_76; uint8_t x_77; x_17 = lean_ctor_get(x_16, 0); lean_inc(x_17); x_18 = lean_ctor_get(x_17, 1); @@ -6831,18 +6873,18 @@ if (lean_is_exclusive(x_18)) { } x_26 = lean_ctor_get(x_12, 1); lean_inc(x_26); -x_75 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__4___closed__7; +x_76 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__4___closed__7; lean_inc(x_26); -x_76 = l_List_decidableBAll___rarg(x_75, x_26); -if (x_76 == 0) +x_77 = l_List_decidableBAll___rarg(x_76, x_26); +if (x_77 == 0) { -lean_object* x_77; uint8_t x_78; -x_77 = lean_ctor_get(x_21, 1); -lean_inc(x_77); -x_78 = l_List_decidableBAll___rarg(x_75, x_77); -if (x_78 == 0) +lean_object* x_78; uint8_t x_79; +x_78 = lean_ctor_get(x_21, 1); +lean_inc(x_78); +x_79 = l_List_decidableBAll___rarg(x_76, x_78); +if (x_79 == 0) { -lean_object* x_79; lean_object* x_80; +lean_object* x_80; lean_object* x_81; lean_dec(x_26); lean_dec(x_25); lean_dec(x_24); @@ -6854,34 +6896,34 @@ lean_dec(x_15); lean_dec(x_14); lean_dec(x_13); lean_dec(x_12); -x_79 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__4___closed__8; -x_80 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_80, 0, x_79); -lean_ctor_set(x_80, 1, x_19); -return x_80; -} -else -{ -lean_object* x_81; -x_81 = lean_box(0); -x_27 = x_81; -goto block_74; -} +x_80 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__4___closed__8; +x_81 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_81, 0, x_80); +lean_ctor_set(x_81, 1, x_19); +return x_81; } else { lean_object* x_82; x_82 = lean_box(0); x_27 = x_82; -goto block_74; +goto block_75; } -block_74: +} +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_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_83; +x_83 = lean_box(0); +x_27 = x_83; +goto block_75; +} +block_75: +{ +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; uint8_t x_49; lean_dec(x_27); x_28 = lean_box(0); -x_29 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__13; -x_30 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__17; +x_29 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__17; +x_30 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__21; x_31 = l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_Omega_instToExprLinearCombo___spec__1(x_29, x_30, x_26); lean_dec(x_26); x_32 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__4___closed__6; @@ -6901,177 +6943,179 @@ x_40 = lean_alloc_closure((void*)(l_StateRefT_x27_lift___rarg___boxed), 2, 1); lean_closure_set(x_40, 0, x_39); x_41 = lean_alloc_closure((void*)(l_StateRefT_x27_lift___rarg___boxed), 2, 1); lean_closure_set(x_41, 0, x_40); +x_42 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__11; lean_inc(x_21); lean_inc(x_12); -x_42 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__3___boxed), 16, 7); -lean_closure_set(x_42, 0, x_28); -lean_closure_set(x_42, 1, x_12); -lean_closure_set(x_42, 2, x_21); -lean_closure_set(x_42, 3, x_13); -lean_closure_set(x_42, 4, x_35); -lean_closure_set(x_42, 5, x_23); -lean_closure_set(x_42, 6, x_31); -x_43 = lean_alloc_closure((void*)(l_ReaderT_bind___at_Lean_Elab_Tactic_Omega_withoutModifyingState___spec__1___rarg), 10, 2); -lean_closure_set(x_43, 0, x_41); -lean_closure_set(x_43, 1, x_42); -x_44 = l_Lean_Omega_LinearCombo_mul(x_12, x_21); -x_45 = lean_ctor_get(x_24, 1); -lean_inc(x_45); +x_43 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__3___boxed), 17, 8); +lean_closure_set(x_43, 0, x_28); +lean_closure_set(x_43, 1, x_12); +lean_closure_set(x_43, 2, x_21); +lean_closure_set(x_43, 3, x_13); +lean_closure_set(x_43, 4, x_42); +lean_closure_set(x_43, 5, x_35); +lean_closure_set(x_43, 6, x_23); +lean_closure_set(x_43, 7, x_31); +x_44 = lean_alloc_closure((void*)(l_ReaderT_bind___at_Lean_Elab_Tactic_Omega_withoutModifyingState___spec__1___rarg), 10, 2); +lean_closure_set(x_44, 0, x_41); +lean_closure_set(x_44, 1, x_43); +x_45 = l_Lean_Omega_LinearCombo_mul(x_12, x_21); +x_46 = lean_ctor_get(x_24, 1); +lean_inc(x_46); lean_dec(x_24); -x_46 = lean_array_get_size(x_45); -x_47 = lean_unsigned_to_nat(0u); -x_48 = lean_nat_dec_lt(x_47, x_46); -if (x_48 == 0) +x_47 = lean_array_get_size(x_46); +x_48 = lean_unsigned_to_nat(0u); +x_49 = lean_nat_dec_lt(x_48, x_47); +if (x_49 == 0) { -lean_object* x_49; lean_object* x_50; lean_object* x_51; uint8_t x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; +lean_object* x_50; lean_object* x_51; lean_object* x_52; uint8_t x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; +lean_dec(x_47); lean_dec(x_46); -lean_dec(x_45); if (lean_is_scalar(x_25)) { - x_49 = lean_alloc_ctor(0, 2, 0); -} else { - x_49 = x_25; -} -lean_ctor_set(x_49, 0, x_43); -lean_ctor_set(x_49, 1, x_14); -if (lean_is_scalar(x_22)) { x_50 = lean_alloc_ctor(0, 2, 0); } else { - x_50 = x_22; + x_50 = x_25; } lean_ctor_set(x_50, 0, x_44); -lean_ctor_set(x_50, 1, x_49); -x_51 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_51, 0, x_50); -x_52 = 1; -x_53 = lean_box(x_52); -if (lean_is_scalar(x_15)) { - x_54 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_50, 1, x_14); +if (lean_is_scalar(x_22)) { + x_51 = lean_alloc_ctor(0, 2, 0); } else { - x_54 = x_15; + x_51 = x_22; } -lean_ctor_set(x_54, 0, x_51); -lean_ctor_set(x_54, 1, x_53); -if (lean_is_scalar(x_20)) { +lean_ctor_set(x_51, 0, x_45); +lean_ctor_set(x_51, 1, x_50); +x_52 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_52, 0, x_51); +x_53 = 1; +x_54 = lean_box(x_53); +if (lean_is_scalar(x_15)) { x_55 = lean_alloc_ctor(0, 2, 0); } else { - x_55 = x_20; + x_55 = x_15; } -lean_ctor_set(x_55, 0, x_54); -lean_ctor_set(x_55, 1, x_19); -return x_55; +lean_ctor_set(x_55, 0, x_52); +lean_ctor_set(x_55, 1, x_54); +if (lean_is_scalar(x_20)) { + x_56 = lean_alloc_ctor(0, 2, 0); +} else { + x_56 = x_20; +} +lean_ctor_set(x_56, 0, x_55); +lean_ctor_set(x_56, 1, x_19); +return x_56; } else { -uint8_t x_56; -x_56 = lean_nat_dec_le(x_46, x_46); -if (x_56 == 0) +uint8_t x_57; +x_57 = lean_nat_dec_le(x_47, x_47); +if (x_57 == 0) { -lean_object* x_57; lean_object* x_58; lean_object* x_59; uint8_t x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; +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; +lean_dec(x_47); lean_dec(x_46); -lean_dec(x_45); if (lean_is_scalar(x_25)) { - x_57 = lean_alloc_ctor(0, 2, 0); -} else { - x_57 = x_25; -} -lean_ctor_set(x_57, 0, x_43); -lean_ctor_set(x_57, 1, x_14); -if (lean_is_scalar(x_22)) { x_58 = lean_alloc_ctor(0, 2, 0); } else { - x_58 = x_22; + x_58 = x_25; } lean_ctor_set(x_58, 0, x_44); -lean_ctor_set(x_58, 1, x_57); -x_59 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_59, 0, x_58); -x_60 = 1; -x_61 = lean_box(x_60); -if (lean_is_scalar(x_15)) { - x_62 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_58, 1, x_14); +if (lean_is_scalar(x_22)) { + x_59 = lean_alloc_ctor(0, 2, 0); } else { - x_62 = x_15; + x_59 = x_22; } -lean_ctor_set(x_62, 0, x_59); -lean_ctor_set(x_62, 1, x_61); -if (lean_is_scalar(x_20)) { +lean_ctor_set(x_59, 0, x_45); +lean_ctor_set(x_59, 1, x_58); +x_60 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_60, 0, x_59); +x_61 = 1; +x_62 = lean_box(x_61); +if (lean_is_scalar(x_15)) { x_63 = lean_alloc_ctor(0, 2, 0); } else { - x_63 = x_20; + x_63 = x_15; } -lean_ctor_set(x_63, 0, x_62); -lean_ctor_set(x_63, 1, x_19); -return x_63; +lean_ctor_set(x_63, 0, x_60); +lean_ctor_set(x_63, 1, x_62); +if (lean_is_scalar(x_20)) { + x_64 = lean_alloc_ctor(0, 2, 0); +} else { + x_64 = x_20; +} +lean_ctor_set(x_64, 0, x_63); +lean_ctor_set(x_64, 1, x_19); +return x_64; } else { -size_t x_64; size_t 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_object* x_73; -x_64 = 0; -x_65 = lean_usize_of_nat(x_46); +size_t x_65; size_t x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; uint8_t x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; +x_65 = 0; +x_66 = lean_usize_of_nat(x_47); +lean_dec(x_47); +x_67 = l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_Omega_asLinearComboImpl___spec__3(x_46, x_65, x_66, x_14); lean_dec(x_46); -x_66 = l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_Omega_asLinearComboImpl___spec__3(x_45, x_64, x_65, x_14); -lean_dec(x_45); if (lean_is_scalar(x_25)) { - x_67 = lean_alloc_ctor(0, 2, 0); -} else { - x_67 = x_25; -} -lean_ctor_set(x_67, 0, x_43); -lean_ctor_set(x_67, 1, x_66); -if (lean_is_scalar(x_22)) { x_68 = lean_alloc_ctor(0, 2, 0); } else { - x_68 = x_22; + x_68 = x_25; } lean_ctor_set(x_68, 0, x_44); lean_ctor_set(x_68, 1, x_67); -x_69 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_69, 0, x_68); -x_70 = 1; -x_71 = lean_box(x_70); -if (lean_is_scalar(x_15)) { - x_72 = lean_alloc_ctor(0, 2, 0); +if (lean_is_scalar(x_22)) { + x_69 = lean_alloc_ctor(0, 2, 0); } else { - x_72 = x_15; + x_69 = x_22; } -lean_ctor_set(x_72, 0, x_69); -lean_ctor_set(x_72, 1, x_71); -if (lean_is_scalar(x_20)) { +lean_ctor_set(x_69, 0, x_45); +lean_ctor_set(x_69, 1, x_68); +x_70 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_70, 0, x_69); +x_71 = 1; +x_72 = lean_box(x_71); +if (lean_is_scalar(x_15)) { x_73 = lean_alloc_ctor(0, 2, 0); } else { - x_73 = x_20; + x_73 = x_15; } -lean_ctor_set(x_73, 0, x_72); -lean_ctor_set(x_73, 1, x_19); -return x_73; +lean_ctor_set(x_73, 0, x_70); +lean_ctor_set(x_73, 1, x_72); +if (lean_is_scalar(x_20)) { + x_74 = lean_alloc_ctor(0, 2, 0); +} else { + x_74 = x_20; +} +lean_ctor_set(x_74, 0, x_73); +lean_ctor_set(x_74, 1, x_19); +return x_74; } } } } else { -uint8_t x_83; +uint8_t x_84; lean_dec(x_15); lean_dec(x_14); lean_dec(x_13); lean_dec(x_12); -x_83 = !lean_is_exclusive(x_16); -if (x_83 == 0) +x_84 = !lean_is_exclusive(x_16); +if (x_84 == 0) { return x_16; } else { -lean_object* x_84; lean_object* x_85; lean_object* x_86; -x_84 = lean_ctor_get(x_16, 0); -x_85 = lean_ctor_get(x_16, 1); +lean_object* x_85; lean_object* x_86; lean_object* x_87; +x_85 = lean_ctor_get(x_16, 0); +x_86 = lean_ctor_get(x_16, 1); +lean_inc(x_86); lean_inc(x_85); -lean_inc(x_84); lean_dec(x_16); -x_86 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_86, 0, x_84); -lean_ctor_set(x_86, 1, x_85); -return x_86; +x_87 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_87, 0, x_85); +lean_ctor_set(x_87, 1, x_86); +return x_87; } } } @@ -7120,7 +7164,7 @@ _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_Elab_Tactic_Omega_evalUnsafe____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_6____closed__1; x_2 = l_Lean_Elab_Tactic_Omega_evalUnsafe____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_6____closed__3; -x_3 = l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__7; +x_3 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__9; x_4 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__5___closed__4; x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); return x_5; @@ -7138,59 +7182,50 @@ return x_2; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl___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) { _start: { -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; uint8_t x_19; +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; x_12 = lean_ctor_get(x_1, 0); -x_13 = lean_ctor_get(x_1, 1); -x_14 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__13; -x_15 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__17; -x_16 = l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_Omega_instToExprLinearCombo___spec__1(x_14, x_15, x_13); +x_13 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__8; +x_14 = lean_int_dec_le(x_13, x_12); +x_15 = lean_ctor_get(x_1, 1); +x_16 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__17; +x_17 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__21; +x_18 = l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_Omega_instToExprLinearCombo___spec__1(x_16, x_17, x_15); lean_inc(x_10); lean_inc(x_9); lean_inc(x_8); lean_inc(x_7); -x_17 = lean_apply_8(x_2, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); -x_18 = l_Lean_Elab_Tactic_Omega_mkInt___closed__1; -x_19 = lean_int_dec_lt(x_12, x_18); -if (x_19 == 0) +x_19 = lean_apply_8(x_2, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +if (x_14 == 0) { -if (lean_obj_tag(x_17) == 0) +if (lean_obj_tag(x_19) == 0) { -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; -x_20 = lean_ctor_get(x_17, 0); +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; +x_20 = lean_ctor_get(x_19, 0); lean_inc(x_20); -x_21 = lean_ctor_get(x_17, 1); +x_21 = lean_ctor_get(x_19, 1); lean_inc(x_21); -lean_dec(x_17); -x_22 = lean_nat_abs(x_12); -x_23 = l_Lean_mkNatLit(x_22); -x_24 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__19; -x_25 = l_Lean_Expr_app___override(x_24, x_23); -x_26 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__7; -x_27 = l_Lean_Expr_app___override(x_26, x_25); -x_28 = l_Lean_Expr_app___override(x_27, x_16); -x_29 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__5___closed__3; -x_30 = l_Lean_mkAppB(x_29, x_28, x_3); -x_31 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__5___closed__6; -x_32 = lean_array_push(x_31, x_20); -x_33 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__5___closed__5; +lean_dec(x_19); +x_22 = lean_int_neg(x_12); +x_23 = l_Int_toNat(x_22); +lean_dec(x_22); +x_24 = l_Lean_instToExprInt_mkNat(x_23); +x_25 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__27; +x_26 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__11; +x_27 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__30; +x_28 = l_Lean_mkApp3(x_25, x_26, x_27, x_24); +x_29 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__7; +x_30 = l_Lean_Expr_app___override(x_29, x_28); +x_31 = l_Lean_Expr_app___override(x_30, x_18); +x_32 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__5___closed__3; +x_33 = l_Lean_mkAppB(x_32, x_31, x_3); +x_34 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__5___closed__6; +x_35 = lean_array_push(x_34, x_20); +x_36 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__5___closed__5; lean_inc(x_10); lean_inc(x_9); lean_inc(x_8); lean_inc(x_7); -x_34 = l_Lean_Meta_mkAppM(x_33, x_32, x_7, x_8, x_9, x_10, x_21); -if (lean_obj_tag(x_34) == 0) -{ -lean_object* x_35; lean_object* x_36; lean_object* x_37; -x_35 = lean_ctor_get(x_34, 0); -lean_inc(x_35); -x_36 = lean_ctor_get(x_34, 1); -lean_inc(x_36); -lean_dec(x_34); -lean_inc(x_10); -lean_inc(x_9); -lean_inc(x_8); -lean_inc(x_7); -x_37 = l_Lean_Meta_mkEqSymm(x_30, x_7, x_8, x_9, x_10, x_36); +x_37 = l_Lean_Meta_mkAppM(x_36, x_35, x_7, x_8, x_9, x_10, x_21); if (lean_obj_tag(x_37) == 0) { lean_object* x_38; lean_object* x_39; lean_object* x_40; @@ -7199,230 +7234,238 @@ lean_inc(x_38); x_39 = lean_ctor_get(x_37, 1); lean_inc(x_39); lean_dec(x_37); -x_40 = l_Lean_Meta_mkEqTrans(x_35, x_38, x_7, x_8, x_9, x_10, x_39); -return x_40; +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +x_40 = l_Lean_Meta_mkEqSymm(x_33, x_7, x_8, x_9, x_10, x_39); +if (lean_obj_tag(x_40) == 0) +{ +lean_object* x_41; lean_object* x_42; lean_object* x_43; +x_41 = lean_ctor_get(x_40, 0); +lean_inc(x_41); +x_42 = lean_ctor_get(x_40, 1); +lean_inc(x_42); +lean_dec(x_40); +x_43 = l_Lean_Meta_mkEqTrans(x_38, x_41, x_7, x_8, x_9, x_10, x_42); +return x_43; } else { -uint8_t x_41; -lean_dec(x_35); +uint8_t x_44; +lean_dec(x_38); lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); lean_dec(x_7); -x_41 = !lean_is_exclusive(x_37); -if (x_41 == 0) +x_44 = !lean_is_exclusive(x_40); +if (x_44 == 0) +{ +return x_40; +} +else +{ +lean_object* x_45; lean_object* x_46; lean_object* x_47; +x_45 = lean_ctor_get(x_40, 0); +x_46 = lean_ctor_get(x_40, 1); +lean_inc(x_46); +lean_inc(x_45); +lean_dec(x_40); +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 +{ +uint8_t x_48; +lean_dec(x_33); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +x_48 = !lean_is_exclusive(x_37); +if (x_48 == 0) { return x_37; } else { -lean_object* x_42; lean_object* x_43; lean_object* x_44; -x_42 = lean_ctor_get(x_37, 0); -x_43 = lean_ctor_get(x_37, 1); -lean_inc(x_43); -lean_inc(x_42); -lean_dec(x_37); -x_44 = lean_alloc_ctor(1, 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_45; -lean_dec(x_30); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -x_45 = !lean_is_exclusive(x_34); -if (x_45 == 0) -{ -return x_34; -} -else -{ -lean_object* x_46; lean_object* x_47; lean_object* x_48; -x_46 = lean_ctor_get(x_34, 0); -x_47 = lean_ctor_get(x_34, 1); -lean_inc(x_47); -lean_inc(x_46); -lean_dec(x_34); -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 -{ -uint8_t x_49; -lean_dec(x_16); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_3); -x_49 = !lean_is_exclusive(x_17); -if (x_49 == 0) -{ -return x_17; -} -else -{ -lean_object* x_50; lean_object* x_51; lean_object* x_52; -x_50 = lean_ctor_get(x_17, 0); -x_51 = lean_ctor_get(x_17, 1); -lean_inc(x_51); +lean_object* x_49; lean_object* x_50; lean_object* x_51; +x_49 = lean_ctor_get(x_37, 0); +x_50 = lean_ctor_get(x_37, 1); lean_inc(x_50); -lean_dec(x_17); -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; +lean_inc(x_49); +lean_dec(x_37); +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 { -if (lean_obj_tag(x_17) == 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; 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; -x_53 = lean_ctor_get(x_17, 0); -lean_inc(x_53); -x_54 = lean_ctor_get(x_17, 1); -lean_inc(x_54); -lean_dec(x_17); -x_55 = lean_nat_abs(x_12); -x_56 = lean_unsigned_to_nat(1u); -x_57 = lean_nat_sub(x_55, x_56); -lean_dec(x_55); -x_58 = l_Lean_mkNatLit(x_57); -x_59 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__22; -x_60 = l_Lean_Expr_app___override(x_59, x_58); -x_61 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__7; -x_62 = l_Lean_Expr_app___override(x_61, x_60); -x_63 = l_Lean_Expr_app___override(x_62, x_16); -x_64 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__5___closed__3; -x_65 = l_Lean_mkAppB(x_64, x_63, x_3); -x_66 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__5___closed__6; -x_67 = lean_array_push(x_66, x_53); -x_68 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__5___closed__5; -lean_inc(x_10); -lean_inc(x_9); -lean_inc(x_8); -lean_inc(x_7); -x_69 = l_Lean_Meta_mkAppM(x_68, x_67, x_7, x_8, x_9, x_10, x_54); -if (lean_obj_tag(x_69) == 0) -{ -lean_object* x_70; lean_object* x_71; lean_object* x_72; -x_70 = lean_ctor_get(x_69, 0); -lean_inc(x_70); -x_71 = lean_ctor_get(x_69, 1); -lean_inc(x_71); -lean_dec(x_69); -lean_inc(x_10); -lean_inc(x_9); -lean_inc(x_8); -lean_inc(x_7); -x_72 = l_Lean_Meta_mkEqSymm(x_65, x_7, x_8, x_9, x_10, x_71); -if (lean_obj_tag(x_72) == 0) -{ -lean_object* x_73; lean_object* x_74; lean_object* x_75; -x_73 = lean_ctor_get(x_72, 0); -lean_inc(x_73); -x_74 = lean_ctor_get(x_72, 1); -lean_inc(x_74); -lean_dec(x_72); -x_75 = l_Lean_Meta_mkEqTrans(x_70, x_73, x_7, x_8, x_9, x_10, x_74); -return x_75; -} -else -{ -uint8_t x_76; -lean_dec(x_70); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -x_76 = !lean_is_exclusive(x_72); -if (x_76 == 0) -{ -return x_72; -} -else -{ -lean_object* x_77; lean_object* x_78; lean_object* x_79; -x_77 = lean_ctor_get(x_72, 0); -x_78 = lean_ctor_get(x_72, 1); -lean_inc(x_78); -lean_inc(x_77); -lean_dec(x_72); -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; -} -} -} -else -{ -uint8_t x_80; -lean_dec(x_65); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -x_80 = !lean_is_exclusive(x_69); -if (x_80 == 0) -{ -return x_69; -} -else -{ -lean_object* x_81; lean_object* x_82; lean_object* x_83; -x_81 = lean_ctor_get(x_69, 0); -x_82 = lean_ctor_get(x_69, 1); -lean_inc(x_82); -lean_inc(x_81); -lean_dec(x_69); -x_83 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_83, 0, x_81); -lean_ctor_set(x_83, 1, x_82); -return x_83; -} -} -} -else -{ -uint8_t x_84; -lean_dec(x_16); +uint8_t x_52; +lean_dec(x_18); lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); lean_dec(x_7); lean_dec(x_3); -x_84 = !lean_is_exclusive(x_17); -if (x_84 == 0) +x_52 = !lean_is_exclusive(x_19); +if (x_52 == 0) { -return x_17; +return x_19; } else { -lean_object* x_85; lean_object* x_86; lean_object* x_87; -x_85 = lean_ctor_get(x_17, 0); -x_86 = lean_ctor_get(x_17, 1); -lean_inc(x_86); +lean_object* x_53; lean_object* x_54; lean_object* x_55; +x_53 = lean_ctor_get(x_19, 0); +x_54 = lean_ctor_get(x_19, 1); +lean_inc(x_54); +lean_inc(x_53); +lean_dec(x_19); +x_55 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_55, 0, x_53); +lean_ctor_set(x_55, 1, x_54); +return x_55; +} +} +} +else +{ +if (lean_obj_tag(x_19) == 0) +{ +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; +x_56 = lean_ctor_get(x_19, 0); +lean_inc(x_56); +x_57 = lean_ctor_get(x_19, 1); +lean_inc(x_57); +lean_dec(x_19); +x_58 = l_Int_toNat(x_12); +x_59 = l_Lean_instToExprInt_mkNat(x_58); +x_60 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__7; +x_61 = l_Lean_Expr_app___override(x_60, x_59); +x_62 = l_Lean_Expr_app___override(x_61, x_18); +x_63 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__5___closed__3; +x_64 = l_Lean_mkAppB(x_63, x_62, x_3); +x_65 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__5___closed__6; +x_66 = lean_array_push(x_65, x_56); +x_67 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__5___closed__5; +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +x_68 = l_Lean_Meta_mkAppM(x_67, x_66, x_7, x_8, x_9, x_10, x_57); +if (lean_obj_tag(x_68) == 0) +{ +lean_object* x_69; lean_object* x_70; lean_object* x_71; +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); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +x_71 = l_Lean_Meta_mkEqSymm(x_64, x_7, x_8, x_9, x_10, x_70); +if (lean_obj_tag(x_71) == 0) +{ +lean_object* x_72; lean_object* x_73; lean_object* x_74; +x_72 = lean_ctor_get(x_71, 0); +lean_inc(x_72); +x_73 = lean_ctor_get(x_71, 1); +lean_inc(x_73); +lean_dec(x_71); +x_74 = l_Lean_Meta_mkEqTrans(x_69, x_72, x_7, x_8, x_9, x_10, x_73); +return x_74; +} +else +{ +uint8_t x_75; +lean_dec(x_69); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +x_75 = !lean_is_exclusive(x_71); +if (x_75 == 0) +{ +return x_71; +} +else +{ +lean_object* x_76; lean_object* x_77; lean_object* x_78; +x_76 = lean_ctor_get(x_71, 0); +x_77 = lean_ctor_get(x_71, 1); +lean_inc(x_77); +lean_inc(x_76); +lean_dec(x_71); +x_78 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_78, 0, x_76); +lean_ctor_set(x_78, 1, x_77); +return x_78; +} +} +} +else +{ +uint8_t x_79; +lean_dec(x_64); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +x_79 = !lean_is_exclusive(x_68); +if (x_79 == 0) +{ +return x_68; +} +else +{ +lean_object* x_80; lean_object* x_81; lean_object* x_82; +x_80 = lean_ctor_get(x_68, 0); +x_81 = lean_ctor_get(x_68, 1); +lean_inc(x_81); +lean_inc(x_80); +lean_dec(x_68); +x_82 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_82, 0, x_80); +lean_ctor_set(x_82, 1, x_81); +return x_82; +} +} +} +else +{ +uint8_t x_83; +lean_dec(x_18); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_3); +x_83 = !lean_is_exclusive(x_19); +if (x_83 == 0) +{ +return x_19; +} +else +{ +lean_object* x_84; lean_object* x_85; lean_object* x_86; +x_84 = lean_ctor_get(x_19, 0); +x_85 = lean_ctor_get(x_19, 1); lean_inc(x_85); -lean_dec(x_17); -x_87 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_87, 0, x_85); -lean_ctor_set(x_87, 1, x_86); -return x_87; +lean_inc(x_84); +lean_dec(x_19); +x_86 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_86, 0, x_84); +lean_ctor_set(x_86, 1, x_85); +return x_86; } } } @@ -7472,7 +7515,7 @@ _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_Elab_Tactic_Omega_evalUnsafe____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_6____closed__1; x_2 = l_Lean_Elab_Tactic_Omega_evalUnsafe____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_6____closed__3; -x_3 = l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__7; +x_3 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__9; x_4 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__6___closed__4; x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); return x_5; @@ -7481,15 +7524,18 @@ return x_5; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__6(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: { -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_66; lean_object* x_67; lean_object* x_109; uint8_t x_110; +lean_object* x_14; lean_object* x_15; uint8_t x_16; 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; lean_object* x_26; lean_object* x_72; x_14 = lean_ctor_get(x_1, 0); -x_15 = lean_ctor_get(x_1, 1); -x_16 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__13; -x_17 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__17; -x_18 = l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_Omega_instToExprLinearCombo___spec__1(x_16, x_17, x_15); -x_19 = lean_ctor_get(x_2, 0); -x_20 = lean_ctor_get(x_2, 1); -x_21 = l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_Omega_instToExprLinearCombo___spec__1(x_16, x_17, x_20); +x_15 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__8; +x_16 = lean_int_dec_le(x_15, x_14); +x_17 = lean_ctor_get(x_1, 1); +x_18 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__17; +x_19 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__21; +x_20 = l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_Omega_instToExprLinearCombo___spec__1(x_18, x_19, x_17); +x_21 = lean_ctor_get(x_2, 0); +x_22 = lean_int_dec_le(x_15, x_21); +x_23 = lean_ctor_get(x_2, 1); +x_24 = l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_Omega_instToExprLinearCombo___spec__1(x_18, x_19, x_23); lean_inc(x_12); lean_inc(x_11); lean_inc(x_10); @@ -7497,228 +7543,210 @@ lean_inc(x_9); lean_inc(x_8); lean_inc(x_7); lean_inc(x_6); -x_22 = lean_apply_8(x_3, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); -x_109 = l_Lean_Elab_Tactic_Omega_mkInt___closed__1; -x_110 = lean_int_dec_lt(x_14, x_109); -if (x_110 == 0) +x_25 = lean_apply_8(x_3, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); +if (x_16 == 0) { -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; uint8_t x_118; -x_111 = lean_nat_abs(x_14); -x_112 = l_Lean_mkNatLit(x_111); -x_113 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__19; -x_114 = l_Lean_Expr_app___override(x_113, x_112); -x_115 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__7; -x_116 = l_Lean_Expr_app___override(x_115, x_114); -x_117 = l_Lean_Expr_app___override(x_116, x_18); -x_118 = lean_int_dec_lt(x_19, x_109); -if (x_118 == 0) +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; +x_113 = lean_int_neg(x_14); +x_114 = l_Int_toNat(x_113); +lean_dec(x_113); +x_115 = l_Lean_instToExprInt_mkNat(x_114); +x_116 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__27; +x_117 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__11; +x_118 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__30; +x_119 = l_Lean_mkApp3(x_116, x_117, x_118, x_115); +x_120 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__7; +x_121 = l_Lean_Expr_app___override(x_120, x_119); +x_122 = l_Lean_Expr_app___override(x_121, x_20); +if (x_22 == 0) { -lean_object* x_119; -x_119 = lean_nat_abs(x_19); -x_23 = x_117; -x_24 = x_119; -goto block_65; +x_26 = x_122; +goto block_71; } else { -lean_object* x_120; lean_object* x_121; lean_object* x_122; -x_120 = lean_nat_abs(x_19); -x_121 = lean_unsigned_to_nat(1u); -x_122 = lean_nat_sub(x_120, x_121); -lean_dec(x_120); -x_66 = x_117; -x_67 = x_122; -goto block_108; +x_72 = x_122; +goto block_112; } } else { -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; uint8_t x_132; -x_123 = lean_nat_abs(x_14); -x_124 = lean_unsigned_to_nat(1u); -x_125 = lean_nat_sub(x_123, x_124); -lean_dec(x_123); -x_126 = l_Lean_mkNatLit(x_125); -x_127 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__22; -x_128 = l_Lean_Expr_app___override(x_127, x_126); -x_129 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__7; -x_130 = l_Lean_Expr_app___override(x_129, x_128); -x_131 = l_Lean_Expr_app___override(x_130, x_18); -x_132 = lean_int_dec_lt(x_19, x_109); -if (x_132 == 0) +lean_object* x_123; lean_object* x_124; lean_object* x_125; lean_object* x_126; lean_object* x_127; +x_123 = l_Int_toNat(x_14); +x_124 = l_Lean_instToExprInt_mkNat(x_123); +x_125 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__7; +x_126 = l_Lean_Expr_app___override(x_125, x_124); +x_127 = l_Lean_Expr_app___override(x_126, x_20); +if (x_22 == 0) { -lean_object* x_133; -x_133 = lean_nat_abs(x_19); -x_23 = x_131; -x_24 = x_133; -goto block_65; +x_26 = x_127; +goto block_71; } else { -lean_object* x_134; lean_object* x_135; -x_134 = lean_nat_abs(x_19); -x_135 = lean_nat_sub(x_134, x_124); -lean_dec(x_134); -x_66 = x_131; -x_67 = x_135; -goto block_108; +x_72 = x_127; +goto block_112; } } -block_65: +block_71: { -if (lean_obj_tag(x_22) == 0) +if (lean_obj_tag(x_25) == 0) { -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; -x_25 = lean_ctor_get(x_22, 0); -lean_inc(x_25); -x_26 = lean_ctor_get(x_22, 1); -lean_inc(x_26); -lean_dec(x_22); -x_27 = l_Lean_mkNatLit(x_24); -x_28 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__19; -x_29 = l_Lean_Expr_app___override(x_28, x_27); -x_30 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__7; -x_31 = l_Lean_Expr_app___override(x_30, x_29); -x_32 = l_Lean_Expr_app___override(x_31, x_21); -x_33 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__6___closed__3; -x_34 = l_Lean_mkApp3(x_33, x_23, x_32, x_5); +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; +x_27 = lean_ctor_get(x_25, 0); +lean_inc(x_27); +x_28 = lean_ctor_get(x_25, 1); +lean_inc(x_28); +lean_dec(x_25); +x_29 = lean_int_neg(x_21); +x_30 = l_Int_toNat(x_29); +lean_dec(x_29); +x_31 = l_Lean_instToExprInt_mkNat(x_30); +x_32 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__27; +x_33 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__11; +x_34 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__30; +x_35 = l_Lean_mkApp3(x_32, x_33, x_34, x_31); +x_36 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__7; +x_37 = l_Lean_Expr_app___override(x_36, x_35); +x_38 = l_Lean_Expr_app___override(x_37, x_24); +x_39 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__6___closed__3; +x_40 = l_Lean_mkApp3(x_39, x_26, x_38, x_5); lean_inc(x_12); lean_inc(x_11); lean_inc(x_10); lean_inc(x_9); -x_35 = lean_apply_8(x_4, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_26); -if (lean_obj_tag(x_35) == 0) +x_41 = lean_apply_8(x_4, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_28); +if (lean_obj_tag(x_41) == 0) { -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; -x_36 = lean_ctor_get(x_35, 0); -lean_inc(x_36); -x_37 = lean_ctor_get(x_35, 1); -lean_inc(x_37); -lean_dec(x_35); -x_38 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__3___closed__5; -x_39 = lean_array_push(x_38, x_25); -x_40 = lean_array_push(x_39, x_36); -x_41 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__6___closed__5; -lean_inc(x_12); -lean_inc(x_11); -lean_inc(x_10); -lean_inc(x_9); -x_42 = l_Lean_Meta_mkAppM(x_41, x_40, x_9, x_10, x_11, x_12, x_37); -if (lean_obj_tag(x_42) == 0) -{ -lean_object* x_43; lean_object* x_44; lean_object* x_45; -x_43 = lean_ctor_get(x_42, 0); +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; +x_42 = lean_ctor_get(x_41, 0); +lean_inc(x_42); +x_43 = lean_ctor_get(x_41, 1); lean_inc(x_43); -x_44 = lean_ctor_get(x_42, 1); -lean_inc(x_44); -lean_dec(x_42); +lean_dec(x_41); +x_44 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__3___closed__5; +x_45 = lean_array_push(x_44, x_27); +x_46 = lean_array_push(x_45, x_42); +x_47 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__6___closed__5; lean_inc(x_12); lean_inc(x_11); lean_inc(x_10); lean_inc(x_9); -x_45 = l_Lean_Meta_mkEqSymm(x_34, x_9, x_10, x_11, x_12, x_44); -if (lean_obj_tag(x_45) == 0) +x_48 = l_Lean_Meta_mkAppM(x_47, x_46, x_9, x_10, x_11, x_12, x_43); +if (lean_obj_tag(x_48) == 0) +{ +lean_object* x_49; lean_object* x_50; lean_object* x_51; +x_49 = lean_ctor_get(x_48, 0); +lean_inc(x_49); +x_50 = lean_ctor_get(x_48, 1); +lean_inc(x_50); +lean_dec(x_48); +lean_inc(x_12); +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +x_51 = l_Lean_Meta_mkEqSymm(x_40, x_9, x_10, x_11, x_12, x_50); +if (lean_obj_tag(x_51) == 0) +{ +lean_object* x_52; lean_object* x_53; lean_object* x_54; +x_52 = lean_ctor_get(x_51, 0); +lean_inc(x_52); +x_53 = lean_ctor_get(x_51, 1); +lean_inc(x_53); +lean_dec(x_51); +x_54 = l_Lean_Meta_mkEqTrans(x_49, x_52, x_9, x_10, x_11, x_12, x_53); +return x_54; +} +else +{ +uint8_t x_55; +lean_dec(x_49); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +x_55 = !lean_is_exclusive(x_51); +if (x_55 == 0) +{ +return x_51; +} +else +{ +lean_object* x_56; lean_object* x_57; lean_object* x_58; +x_56 = lean_ctor_get(x_51, 0); +x_57 = lean_ctor_get(x_51, 1); +lean_inc(x_57); +lean_inc(x_56); +lean_dec(x_51); +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; +} +} +} +else +{ +uint8_t x_59; +lean_dec(x_40); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +x_59 = !lean_is_exclusive(x_48); +if (x_59 == 0) { -lean_object* x_46; lean_object* x_47; lean_object* x_48; -x_46 = lean_ctor_get(x_45, 0); -lean_inc(x_46); -x_47 = lean_ctor_get(x_45, 1); -lean_inc(x_47); -lean_dec(x_45); -x_48 = l_Lean_Meta_mkEqTrans(x_43, x_46, x_9, x_10, x_11, x_12, x_47); return x_48; } else { -uint8_t x_49; -lean_dec(x_43); +lean_object* x_60; lean_object* x_61; lean_object* x_62; +x_60 = lean_ctor_get(x_48, 0); +x_61 = lean_ctor_get(x_48, 1); +lean_inc(x_61); +lean_inc(x_60); +lean_dec(x_48); +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 +{ +uint8_t x_63; +lean_dec(x_40); +lean_dec(x_27); lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); -x_49 = !lean_is_exclusive(x_45); -if (x_49 == 0) +x_63 = !lean_is_exclusive(x_41); +if (x_63 == 0) { -return x_45; +return x_41; } else { -lean_object* x_50; lean_object* x_51; lean_object* x_52; -x_50 = lean_ctor_get(x_45, 0); -x_51 = lean_ctor_get(x_45, 1); -lean_inc(x_51); -lean_inc(x_50); -lean_dec(x_45); -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; +lean_object* x_64; lean_object* x_65; lean_object* x_66; +x_64 = lean_ctor_get(x_41, 0); +x_65 = lean_ctor_get(x_41, 1); +lean_inc(x_65); +lean_inc(x_64); +lean_dec(x_41); +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; } } } else { -uint8_t x_53; -lean_dec(x_34); -lean_dec(x_12); -lean_dec(x_11); -lean_dec(x_10); -lean_dec(x_9); -x_53 = !lean_is_exclusive(x_42); -if (x_53 == 0) -{ -return x_42; -} -else -{ -lean_object* x_54; lean_object* x_55; lean_object* x_56; -x_54 = lean_ctor_get(x_42, 0); -x_55 = lean_ctor_get(x_42, 1); -lean_inc(x_55); -lean_inc(x_54); -lean_dec(x_42); -x_56 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_56, 0, x_54); -lean_ctor_set(x_56, 1, x_55); -return x_56; -} -} -} -else -{ -uint8_t x_57; -lean_dec(x_34); -lean_dec(x_25); -lean_dec(x_12); -lean_dec(x_11); -lean_dec(x_10); -lean_dec(x_9); -x_57 = !lean_is_exclusive(x_35); -if (x_57 == 0) -{ -return x_35; -} -else -{ -lean_object* x_58; lean_object* x_59; lean_object* x_60; -x_58 = lean_ctor_get(x_35, 0); -x_59 = lean_ctor_get(x_35, 1); -lean_inc(x_59); -lean_inc(x_58); -lean_dec(x_35); -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; -} -} -} -else -{ -uint8_t x_61; +uint8_t x_67; +lean_dec(x_26); lean_dec(x_24); -lean_dec(x_23); -lean_dec(x_21); lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); @@ -7728,139 +7756,110 @@ lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); -x_61 = !lean_is_exclusive(x_22); -if (x_61 == 0) +x_67 = !lean_is_exclusive(x_25); +if (x_67 == 0) { -return x_22; +return x_25; } else { -lean_object* x_62; lean_object* x_63; lean_object* x_64; -x_62 = lean_ctor_get(x_22, 0); -x_63 = lean_ctor_get(x_22, 1); -lean_inc(x_63); -lean_inc(x_62); -lean_dec(x_22); -x_64 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_64, 0, x_62); -lean_ctor_set(x_64, 1, x_63); -return x_64; -} -} -} -block_108: -{ -if (lean_obj_tag(x_22) == 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; lean_object* x_76; lean_object* x_77; lean_object* x_78; -x_68 = lean_ctor_get(x_22, 0); -lean_inc(x_68); -x_69 = lean_ctor_get(x_22, 1); +lean_object* x_68; lean_object* x_69; lean_object* x_70; +x_68 = lean_ctor_get(x_25, 0); +x_69 = lean_ctor_get(x_25, 1); lean_inc(x_69); -lean_dec(x_22); -x_70 = l_Lean_mkNatLit(x_67); -x_71 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__22; -x_72 = l_Lean_Expr_app___override(x_71, x_70); -x_73 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__7; -x_74 = l_Lean_Expr_app___override(x_73, x_72); -x_75 = l_Lean_Expr_app___override(x_74, x_21); -x_76 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__6___closed__3; -x_77 = l_Lean_mkApp3(x_76, x_66, x_75, x_5); +lean_inc(x_68); +lean_dec(x_25); +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; +} +} +} +block_112: +{ +if (lean_obj_tag(x_25) == 0) +{ +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; +x_73 = lean_ctor_get(x_25, 0); +lean_inc(x_73); +x_74 = lean_ctor_get(x_25, 1); +lean_inc(x_74); +lean_dec(x_25); +x_75 = l_Int_toNat(x_21); +x_76 = l_Lean_instToExprInt_mkNat(x_75); +x_77 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__7; +x_78 = l_Lean_Expr_app___override(x_77, x_76); +x_79 = l_Lean_Expr_app___override(x_78, x_24); +x_80 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__6___closed__3; +x_81 = l_Lean_mkApp3(x_80, x_72, x_79, x_5); lean_inc(x_12); lean_inc(x_11); lean_inc(x_10); lean_inc(x_9); -x_78 = lean_apply_8(x_4, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_69); -if (lean_obj_tag(x_78) == 0) +x_82 = lean_apply_8(x_4, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_74); +if (lean_obj_tag(x_82) == 0) { -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; -x_79 = lean_ctor_get(x_78, 0); -lean_inc(x_79); -x_80 = lean_ctor_get(x_78, 1); -lean_inc(x_80); -lean_dec(x_78); -x_81 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__3___closed__5; -x_82 = lean_array_push(x_81, x_68); -x_83 = lean_array_push(x_82, x_79); -x_84 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__6___closed__5; +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; +x_83 = lean_ctor_get(x_82, 0); +lean_inc(x_83); +x_84 = lean_ctor_get(x_82, 1); +lean_inc(x_84); +lean_dec(x_82); +x_85 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__3___closed__5; +x_86 = lean_array_push(x_85, x_73); +x_87 = lean_array_push(x_86, x_83); +x_88 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__6___closed__5; lean_inc(x_12); lean_inc(x_11); lean_inc(x_10); lean_inc(x_9); -x_85 = l_Lean_Meta_mkAppM(x_84, x_83, x_9, x_10, x_11, x_12, x_80); -if (lean_obj_tag(x_85) == 0) +x_89 = l_Lean_Meta_mkAppM(x_88, x_87, x_9, x_10, x_11, x_12, x_84); +if (lean_obj_tag(x_89) == 0) { -lean_object* x_86; lean_object* x_87; lean_object* x_88; -x_86 = lean_ctor_get(x_85, 0); -lean_inc(x_86); -x_87 = lean_ctor_get(x_85, 1); -lean_inc(x_87); -lean_dec(x_85); -lean_inc(x_12); -lean_inc(x_11); -lean_inc(x_10); -lean_inc(x_9); -x_88 = l_Lean_Meta_mkEqSymm(x_77, x_9, x_10, x_11, x_12, x_87); -if (lean_obj_tag(x_88) == 0) -{ -lean_object* x_89; lean_object* x_90; lean_object* x_91; -x_89 = lean_ctor_get(x_88, 0); -lean_inc(x_89); -x_90 = lean_ctor_get(x_88, 1); +lean_object* x_90; lean_object* x_91; lean_object* x_92; +x_90 = lean_ctor_get(x_89, 0); lean_inc(x_90); -lean_dec(x_88); -x_91 = l_Lean_Meta_mkEqTrans(x_86, x_89, x_9, x_10, x_11, x_12, x_90); -return x_91; -} -else -{ -uint8_t x_92; -lean_dec(x_86); -lean_dec(x_12); -lean_dec(x_11); -lean_dec(x_10); -lean_dec(x_9); -x_92 = !lean_is_exclusive(x_88); -if (x_92 == 0) -{ -return x_88; -} -else +x_91 = lean_ctor_get(x_89, 1); +lean_inc(x_91); +lean_dec(x_89); +lean_inc(x_12); +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +x_92 = l_Lean_Meta_mkEqSymm(x_81, x_9, x_10, x_11, x_12, x_91); +if (lean_obj_tag(x_92) == 0) { lean_object* x_93; lean_object* x_94; lean_object* x_95; -x_93 = lean_ctor_get(x_88, 0); -x_94 = lean_ctor_get(x_88, 1); -lean_inc(x_94); +x_93 = lean_ctor_get(x_92, 0); lean_inc(x_93); -lean_dec(x_88); -x_95 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_95, 0, x_93); -lean_ctor_set(x_95, 1, x_94); +x_94 = lean_ctor_get(x_92, 1); +lean_inc(x_94); +lean_dec(x_92); +x_95 = l_Lean_Meta_mkEqTrans(x_90, x_93, x_9, x_10, x_11, x_12, x_94); return x_95; } -} -} else { uint8_t x_96; -lean_dec(x_77); +lean_dec(x_90); lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); -x_96 = !lean_is_exclusive(x_85); +x_96 = !lean_is_exclusive(x_92); if (x_96 == 0) { -return x_85; +return x_92; } else { lean_object* x_97; lean_object* x_98; lean_object* x_99; -x_97 = lean_ctor_get(x_85, 0); -x_98 = lean_ctor_get(x_85, 1); +x_97 = lean_ctor_get(x_92, 0); +x_98 = lean_ctor_get(x_92, 1); lean_inc(x_98); lean_inc(x_97); -lean_dec(x_85); +lean_dec(x_92); x_99 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_99, 0, x_97); lean_ctor_set(x_99, 1, x_98); @@ -7871,25 +7870,24 @@ return x_99; else { uint8_t x_100; -lean_dec(x_77); -lean_dec(x_68); +lean_dec(x_81); lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); -x_100 = !lean_is_exclusive(x_78); +x_100 = !lean_is_exclusive(x_89); if (x_100 == 0) { -return x_78; +return x_89; } else { lean_object* x_101; lean_object* x_102; lean_object* x_103; -x_101 = lean_ctor_get(x_78, 0); -x_102 = lean_ctor_get(x_78, 1); +x_101 = lean_ctor_get(x_89, 0); +x_102 = lean_ctor_get(x_89, 1); lean_inc(x_102); lean_inc(x_101); -lean_dec(x_78); +lean_dec(x_89); x_103 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_103, 0, x_101); lean_ctor_set(x_103, 1, x_102); @@ -7900,9 +7898,37 @@ return x_103; else { uint8_t x_104; -lean_dec(x_67); -lean_dec(x_66); -lean_dec(x_21); +lean_dec(x_81); +lean_dec(x_73); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +x_104 = !lean_is_exclusive(x_82); +if (x_104 == 0) +{ +return x_82; +} +else +{ +lean_object* x_105; lean_object* x_106; lean_object* x_107; +x_105 = lean_ctor_get(x_82, 0); +x_106 = lean_ctor_get(x_82, 1); +lean_inc(x_106); +lean_inc(x_105); +lean_dec(x_82); +x_107 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_107, 0, x_105); +lean_ctor_set(x_107, 1, x_106); +return x_107; +} +} +} +else +{ +uint8_t x_108; +lean_dec(x_72); +lean_dec(x_24); lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); @@ -7912,23 +7938,23 @@ lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); -x_104 = !lean_is_exclusive(x_22); -if (x_104 == 0) +x_108 = !lean_is_exclusive(x_25); +if (x_108 == 0) { -return x_22; +return x_25; } else { -lean_object* x_105; lean_object* x_106; lean_object* x_107; -x_105 = lean_ctor_get(x_22, 0); -x_106 = lean_ctor_get(x_22, 1); -lean_inc(x_106); -lean_inc(x_105); -lean_dec(x_22); -x_107 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_107, 0, x_105); -lean_ctor_set(x_107, 1, x_106); -return x_107; +lean_object* x_109; lean_object* x_110; lean_object* x_111; +x_109 = lean_ctor_get(x_25, 0); +x_110 = lean_ctor_get(x_25, 1); +lean_inc(x_110); +lean_inc(x_109); +lean_dec(x_25); +x_111 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_111, 0, x_109); +lean_ctor_set(x_111, 1, x_110); +return x_111; } } } @@ -7978,7 +8004,7 @@ _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_Elab_Tactic_Omega_evalUnsafe____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_6____closed__1; x_2 = l_Lean_Elab_Tactic_Omega_evalUnsafe____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_6____closed__3; -x_3 = l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__7; +x_3 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__9; x_4 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__7___closed__4; x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); return x_5; @@ -7987,15 +8013,18 @@ return x_5; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__7(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: { -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_66; lean_object* x_67; lean_object* x_109; uint8_t x_110; +lean_object* x_14; lean_object* x_15; uint8_t x_16; 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; lean_object* x_26; lean_object* x_72; x_14 = lean_ctor_get(x_1, 0); -x_15 = lean_ctor_get(x_1, 1); -x_16 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__13; -x_17 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__17; -x_18 = l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_Omega_instToExprLinearCombo___spec__1(x_16, x_17, x_15); -x_19 = lean_ctor_get(x_2, 0); -x_20 = lean_ctor_get(x_2, 1); -x_21 = l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_Omega_instToExprLinearCombo___spec__1(x_16, x_17, x_20); +x_15 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__8; +x_16 = lean_int_dec_le(x_15, x_14); +x_17 = lean_ctor_get(x_1, 1); +x_18 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__17; +x_19 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__21; +x_20 = l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_Omega_instToExprLinearCombo___spec__1(x_18, x_19, x_17); +x_21 = lean_ctor_get(x_2, 0); +x_22 = lean_int_dec_le(x_15, x_21); +x_23 = lean_ctor_get(x_2, 1); +x_24 = l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_Omega_instToExprLinearCombo___spec__1(x_18, x_19, x_23); lean_inc(x_12); lean_inc(x_11); lean_inc(x_10); @@ -8003,228 +8032,210 @@ lean_inc(x_9); lean_inc(x_8); lean_inc(x_7); lean_inc(x_6); -x_22 = lean_apply_8(x_3, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); -x_109 = l_Lean_Elab_Tactic_Omega_mkInt___closed__1; -x_110 = lean_int_dec_lt(x_14, x_109); -if (x_110 == 0) +x_25 = lean_apply_8(x_3, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); +if (x_16 == 0) { -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; uint8_t x_118; -x_111 = lean_nat_abs(x_14); -x_112 = l_Lean_mkNatLit(x_111); -x_113 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__19; -x_114 = l_Lean_Expr_app___override(x_113, x_112); -x_115 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__7; -x_116 = l_Lean_Expr_app___override(x_115, x_114); -x_117 = l_Lean_Expr_app___override(x_116, x_18); -x_118 = lean_int_dec_lt(x_19, x_109); -if (x_118 == 0) +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; +x_113 = lean_int_neg(x_14); +x_114 = l_Int_toNat(x_113); +lean_dec(x_113); +x_115 = l_Lean_instToExprInt_mkNat(x_114); +x_116 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__27; +x_117 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__11; +x_118 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__30; +x_119 = l_Lean_mkApp3(x_116, x_117, x_118, x_115); +x_120 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__7; +x_121 = l_Lean_Expr_app___override(x_120, x_119); +x_122 = l_Lean_Expr_app___override(x_121, x_20); +if (x_22 == 0) { -lean_object* x_119; -x_119 = lean_nat_abs(x_19); -x_23 = x_117; -x_24 = x_119; -goto block_65; +x_26 = x_122; +goto block_71; } else { -lean_object* x_120; lean_object* x_121; lean_object* x_122; -x_120 = lean_nat_abs(x_19); -x_121 = lean_unsigned_to_nat(1u); -x_122 = lean_nat_sub(x_120, x_121); -lean_dec(x_120); -x_66 = x_117; -x_67 = x_122; -goto block_108; +x_72 = x_122; +goto block_112; } } else { -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; uint8_t x_132; -x_123 = lean_nat_abs(x_14); -x_124 = lean_unsigned_to_nat(1u); -x_125 = lean_nat_sub(x_123, x_124); -lean_dec(x_123); -x_126 = l_Lean_mkNatLit(x_125); -x_127 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__22; -x_128 = l_Lean_Expr_app___override(x_127, x_126); -x_129 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__7; -x_130 = l_Lean_Expr_app___override(x_129, x_128); -x_131 = l_Lean_Expr_app___override(x_130, x_18); -x_132 = lean_int_dec_lt(x_19, x_109); -if (x_132 == 0) +lean_object* x_123; lean_object* x_124; lean_object* x_125; lean_object* x_126; lean_object* x_127; +x_123 = l_Int_toNat(x_14); +x_124 = l_Lean_instToExprInt_mkNat(x_123); +x_125 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__7; +x_126 = l_Lean_Expr_app___override(x_125, x_124); +x_127 = l_Lean_Expr_app___override(x_126, x_20); +if (x_22 == 0) { -lean_object* x_133; -x_133 = lean_nat_abs(x_19); -x_23 = x_131; -x_24 = x_133; -goto block_65; +x_26 = x_127; +goto block_71; } else { -lean_object* x_134; lean_object* x_135; -x_134 = lean_nat_abs(x_19); -x_135 = lean_nat_sub(x_134, x_124); -lean_dec(x_134); -x_66 = x_131; -x_67 = x_135; -goto block_108; +x_72 = x_127; +goto block_112; } } -block_65: +block_71: { -if (lean_obj_tag(x_22) == 0) +if (lean_obj_tag(x_25) == 0) { -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; -x_25 = lean_ctor_get(x_22, 0); -lean_inc(x_25); -x_26 = lean_ctor_get(x_22, 1); -lean_inc(x_26); -lean_dec(x_22); -x_27 = l_Lean_mkNatLit(x_24); -x_28 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__19; -x_29 = l_Lean_Expr_app___override(x_28, x_27); -x_30 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__7; -x_31 = l_Lean_Expr_app___override(x_30, x_29); -x_32 = l_Lean_Expr_app___override(x_31, x_21); -x_33 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__7___closed__3; -x_34 = l_Lean_mkApp3(x_33, x_23, x_32, x_5); +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; +x_27 = lean_ctor_get(x_25, 0); +lean_inc(x_27); +x_28 = lean_ctor_get(x_25, 1); +lean_inc(x_28); +lean_dec(x_25); +x_29 = lean_int_neg(x_21); +x_30 = l_Int_toNat(x_29); +lean_dec(x_29); +x_31 = l_Lean_instToExprInt_mkNat(x_30); +x_32 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__27; +x_33 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__11; +x_34 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__30; +x_35 = l_Lean_mkApp3(x_32, x_33, x_34, x_31); +x_36 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__7; +x_37 = l_Lean_Expr_app___override(x_36, x_35); +x_38 = l_Lean_Expr_app___override(x_37, x_24); +x_39 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__7___closed__3; +x_40 = l_Lean_mkApp3(x_39, x_26, x_38, x_5); lean_inc(x_12); lean_inc(x_11); lean_inc(x_10); lean_inc(x_9); -x_35 = lean_apply_8(x_4, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_26); -if (lean_obj_tag(x_35) == 0) +x_41 = lean_apply_8(x_4, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_28); +if (lean_obj_tag(x_41) == 0) { -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; -x_36 = lean_ctor_get(x_35, 0); -lean_inc(x_36); -x_37 = lean_ctor_get(x_35, 1); -lean_inc(x_37); -lean_dec(x_35); -x_38 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__3___closed__5; -x_39 = lean_array_push(x_38, x_25); -x_40 = lean_array_push(x_39, x_36); -x_41 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__7___closed__5; -lean_inc(x_12); -lean_inc(x_11); -lean_inc(x_10); -lean_inc(x_9); -x_42 = l_Lean_Meta_mkAppM(x_41, x_40, x_9, x_10, x_11, x_12, x_37); -if (lean_obj_tag(x_42) == 0) -{ -lean_object* x_43; lean_object* x_44; lean_object* x_45; -x_43 = lean_ctor_get(x_42, 0); +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; +x_42 = lean_ctor_get(x_41, 0); +lean_inc(x_42); +x_43 = lean_ctor_get(x_41, 1); lean_inc(x_43); -x_44 = lean_ctor_get(x_42, 1); -lean_inc(x_44); -lean_dec(x_42); +lean_dec(x_41); +x_44 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__3___closed__5; +x_45 = lean_array_push(x_44, x_27); +x_46 = lean_array_push(x_45, x_42); +x_47 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__7___closed__5; lean_inc(x_12); lean_inc(x_11); lean_inc(x_10); lean_inc(x_9); -x_45 = l_Lean_Meta_mkEqSymm(x_34, x_9, x_10, x_11, x_12, x_44); -if (lean_obj_tag(x_45) == 0) +x_48 = l_Lean_Meta_mkAppM(x_47, x_46, x_9, x_10, x_11, x_12, x_43); +if (lean_obj_tag(x_48) == 0) +{ +lean_object* x_49; lean_object* x_50; lean_object* x_51; +x_49 = lean_ctor_get(x_48, 0); +lean_inc(x_49); +x_50 = lean_ctor_get(x_48, 1); +lean_inc(x_50); +lean_dec(x_48); +lean_inc(x_12); +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +x_51 = l_Lean_Meta_mkEqSymm(x_40, x_9, x_10, x_11, x_12, x_50); +if (lean_obj_tag(x_51) == 0) +{ +lean_object* x_52; lean_object* x_53; lean_object* x_54; +x_52 = lean_ctor_get(x_51, 0); +lean_inc(x_52); +x_53 = lean_ctor_get(x_51, 1); +lean_inc(x_53); +lean_dec(x_51); +x_54 = l_Lean_Meta_mkEqTrans(x_49, x_52, x_9, x_10, x_11, x_12, x_53); +return x_54; +} +else +{ +uint8_t x_55; +lean_dec(x_49); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +x_55 = !lean_is_exclusive(x_51); +if (x_55 == 0) +{ +return x_51; +} +else +{ +lean_object* x_56; lean_object* x_57; lean_object* x_58; +x_56 = lean_ctor_get(x_51, 0); +x_57 = lean_ctor_get(x_51, 1); +lean_inc(x_57); +lean_inc(x_56); +lean_dec(x_51); +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; +} +} +} +else +{ +uint8_t x_59; +lean_dec(x_40); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +x_59 = !lean_is_exclusive(x_48); +if (x_59 == 0) { -lean_object* x_46; lean_object* x_47; lean_object* x_48; -x_46 = lean_ctor_get(x_45, 0); -lean_inc(x_46); -x_47 = lean_ctor_get(x_45, 1); -lean_inc(x_47); -lean_dec(x_45); -x_48 = l_Lean_Meta_mkEqTrans(x_43, x_46, x_9, x_10, x_11, x_12, x_47); return x_48; } else { -uint8_t x_49; -lean_dec(x_43); +lean_object* x_60; lean_object* x_61; lean_object* x_62; +x_60 = lean_ctor_get(x_48, 0); +x_61 = lean_ctor_get(x_48, 1); +lean_inc(x_61); +lean_inc(x_60); +lean_dec(x_48); +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 +{ +uint8_t x_63; +lean_dec(x_40); +lean_dec(x_27); lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); -x_49 = !lean_is_exclusive(x_45); -if (x_49 == 0) +x_63 = !lean_is_exclusive(x_41); +if (x_63 == 0) { -return x_45; +return x_41; } else { -lean_object* x_50; lean_object* x_51; lean_object* x_52; -x_50 = lean_ctor_get(x_45, 0); -x_51 = lean_ctor_get(x_45, 1); -lean_inc(x_51); -lean_inc(x_50); -lean_dec(x_45); -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; +lean_object* x_64; lean_object* x_65; lean_object* x_66; +x_64 = lean_ctor_get(x_41, 0); +x_65 = lean_ctor_get(x_41, 1); +lean_inc(x_65); +lean_inc(x_64); +lean_dec(x_41); +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; } } } else { -uint8_t x_53; -lean_dec(x_34); -lean_dec(x_12); -lean_dec(x_11); -lean_dec(x_10); -lean_dec(x_9); -x_53 = !lean_is_exclusive(x_42); -if (x_53 == 0) -{ -return x_42; -} -else -{ -lean_object* x_54; lean_object* x_55; lean_object* x_56; -x_54 = lean_ctor_get(x_42, 0); -x_55 = lean_ctor_get(x_42, 1); -lean_inc(x_55); -lean_inc(x_54); -lean_dec(x_42); -x_56 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_56, 0, x_54); -lean_ctor_set(x_56, 1, x_55); -return x_56; -} -} -} -else -{ -uint8_t x_57; -lean_dec(x_34); -lean_dec(x_25); -lean_dec(x_12); -lean_dec(x_11); -lean_dec(x_10); -lean_dec(x_9); -x_57 = !lean_is_exclusive(x_35); -if (x_57 == 0) -{ -return x_35; -} -else -{ -lean_object* x_58; lean_object* x_59; lean_object* x_60; -x_58 = lean_ctor_get(x_35, 0); -x_59 = lean_ctor_get(x_35, 1); -lean_inc(x_59); -lean_inc(x_58); -lean_dec(x_35); -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; -} -} -} -else -{ -uint8_t x_61; +uint8_t x_67; +lean_dec(x_26); lean_dec(x_24); -lean_dec(x_23); -lean_dec(x_21); lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); @@ -8234,139 +8245,110 @@ lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); -x_61 = !lean_is_exclusive(x_22); -if (x_61 == 0) +x_67 = !lean_is_exclusive(x_25); +if (x_67 == 0) { -return x_22; +return x_25; } else { -lean_object* x_62; lean_object* x_63; lean_object* x_64; -x_62 = lean_ctor_get(x_22, 0); -x_63 = lean_ctor_get(x_22, 1); -lean_inc(x_63); -lean_inc(x_62); -lean_dec(x_22); -x_64 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_64, 0, x_62); -lean_ctor_set(x_64, 1, x_63); -return x_64; -} -} -} -block_108: -{ -if (lean_obj_tag(x_22) == 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; lean_object* x_76; lean_object* x_77; lean_object* x_78; -x_68 = lean_ctor_get(x_22, 0); -lean_inc(x_68); -x_69 = lean_ctor_get(x_22, 1); +lean_object* x_68; lean_object* x_69; lean_object* x_70; +x_68 = lean_ctor_get(x_25, 0); +x_69 = lean_ctor_get(x_25, 1); lean_inc(x_69); -lean_dec(x_22); -x_70 = l_Lean_mkNatLit(x_67); -x_71 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__22; -x_72 = l_Lean_Expr_app___override(x_71, x_70); -x_73 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__7; -x_74 = l_Lean_Expr_app___override(x_73, x_72); -x_75 = l_Lean_Expr_app___override(x_74, x_21); -x_76 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__7___closed__3; -x_77 = l_Lean_mkApp3(x_76, x_66, x_75, x_5); +lean_inc(x_68); +lean_dec(x_25); +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; +} +} +} +block_112: +{ +if (lean_obj_tag(x_25) == 0) +{ +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; +x_73 = lean_ctor_get(x_25, 0); +lean_inc(x_73); +x_74 = lean_ctor_get(x_25, 1); +lean_inc(x_74); +lean_dec(x_25); +x_75 = l_Int_toNat(x_21); +x_76 = l_Lean_instToExprInt_mkNat(x_75); +x_77 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__7; +x_78 = l_Lean_Expr_app___override(x_77, x_76); +x_79 = l_Lean_Expr_app___override(x_78, x_24); +x_80 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__7___closed__3; +x_81 = l_Lean_mkApp3(x_80, x_72, x_79, x_5); lean_inc(x_12); lean_inc(x_11); lean_inc(x_10); lean_inc(x_9); -x_78 = lean_apply_8(x_4, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_69); -if (lean_obj_tag(x_78) == 0) +x_82 = lean_apply_8(x_4, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_74); +if (lean_obj_tag(x_82) == 0) { -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; -x_79 = lean_ctor_get(x_78, 0); -lean_inc(x_79); -x_80 = lean_ctor_get(x_78, 1); -lean_inc(x_80); -lean_dec(x_78); -x_81 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__3___closed__5; -x_82 = lean_array_push(x_81, x_68); -x_83 = lean_array_push(x_82, x_79); -x_84 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__7___closed__5; +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; +x_83 = lean_ctor_get(x_82, 0); +lean_inc(x_83); +x_84 = lean_ctor_get(x_82, 1); +lean_inc(x_84); +lean_dec(x_82); +x_85 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__3___closed__5; +x_86 = lean_array_push(x_85, x_73); +x_87 = lean_array_push(x_86, x_83); +x_88 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__7___closed__5; lean_inc(x_12); lean_inc(x_11); lean_inc(x_10); lean_inc(x_9); -x_85 = l_Lean_Meta_mkAppM(x_84, x_83, x_9, x_10, x_11, x_12, x_80); -if (lean_obj_tag(x_85) == 0) +x_89 = l_Lean_Meta_mkAppM(x_88, x_87, x_9, x_10, x_11, x_12, x_84); +if (lean_obj_tag(x_89) == 0) { -lean_object* x_86; lean_object* x_87; lean_object* x_88; -x_86 = lean_ctor_get(x_85, 0); -lean_inc(x_86); -x_87 = lean_ctor_get(x_85, 1); -lean_inc(x_87); -lean_dec(x_85); -lean_inc(x_12); -lean_inc(x_11); -lean_inc(x_10); -lean_inc(x_9); -x_88 = l_Lean_Meta_mkEqSymm(x_77, x_9, x_10, x_11, x_12, x_87); -if (lean_obj_tag(x_88) == 0) -{ -lean_object* x_89; lean_object* x_90; lean_object* x_91; -x_89 = lean_ctor_get(x_88, 0); -lean_inc(x_89); -x_90 = lean_ctor_get(x_88, 1); +lean_object* x_90; lean_object* x_91; lean_object* x_92; +x_90 = lean_ctor_get(x_89, 0); lean_inc(x_90); -lean_dec(x_88); -x_91 = l_Lean_Meta_mkEqTrans(x_86, x_89, x_9, x_10, x_11, x_12, x_90); -return x_91; -} -else -{ -uint8_t x_92; -lean_dec(x_86); -lean_dec(x_12); -lean_dec(x_11); -lean_dec(x_10); -lean_dec(x_9); -x_92 = !lean_is_exclusive(x_88); -if (x_92 == 0) -{ -return x_88; -} -else +x_91 = lean_ctor_get(x_89, 1); +lean_inc(x_91); +lean_dec(x_89); +lean_inc(x_12); +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +x_92 = l_Lean_Meta_mkEqSymm(x_81, x_9, x_10, x_11, x_12, x_91); +if (lean_obj_tag(x_92) == 0) { lean_object* x_93; lean_object* x_94; lean_object* x_95; -x_93 = lean_ctor_get(x_88, 0); -x_94 = lean_ctor_get(x_88, 1); -lean_inc(x_94); +x_93 = lean_ctor_get(x_92, 0); lean_inc(x_93); -lean_dec(x_88); -x_95 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_95, 0, x_93); -lean_ctor_set(x_95, 1, x_94); +x_94 = lean_ctor_get(x_92, 1); +lean_inc(x_94); +lean_dec(x_92); +x_95 = l_Lean_Meta_mkEqTrans(x_90, x_93, x_9, x_10, x_11, x_12, x_94); return x_95; } -} -} else { uint8_t x_96; -lean_dec(x_77); +lean_dec(x_90); lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); -x_96 = !lean_is_exclusive(x_85); +x_96 = !lean_is_exclusive(x_92); if (x_96 == 0) { -return x_85; +return x_92; } else { lean_object* x_97; lean_object* x_98; lean_object* x_99; -x_97 = lean_ctor_get(x_85, 0); -x_98 = lean_ctor_get(x_85, 1); +x_97 = lean_ctor_get(x_92, 0); +x_98 = lean_ctor_get(x_92, 1); lean_inc(x_98); lean_inc(x_97); -lean_dec(x_85); +lean_dec(x_92); x_99 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_99, 0, x_97); lean_ctor_set(x_99, 1, x_98); @@ -8377,25 +8359,24 @@ return x_99; else { uint8_t x_100; -lean_dec(x_77); -lean_dec(x_68); +lean_dec(x_81); lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); -x_100 = !lean_is_exclusive(x_78); +x_100 = !lean_is_exclusive(x_89); if (x_100 == 0) { -return x_78; +return x_89; } else { lean_object* x_101; lean_object* x_102; lean_object* x_103; -x_101 = lean_ctor_get(x_78, 0); -x_102 = lean_ctor_get(x_78, 1); +x_101 = lean_ctor_get(x_89, 0); +x_102 = lean_ctor_get(x_89, 1); lean_inc(x_102); lean_inc(x_101); -lean_dec(x_78); +lean_dec(x_89); x_103 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_103, 0, x_101); lean_ctor_set(x_103, 1, x_102); @@ -8406,9 +8387,37 @@ return x_103; else { uint8_t x_104; -lean_dec(x_67); -lean_dec(x_66); -lean_dec(x_21); +lean_dec(x_81); +lean_dec(x_73); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +x_104 = !lean_is_exclusive(x_82); +if (x_104 == 0) +{ +return x_82; +} +else +{ +lean_object* x_105; lean_object* x_106; lean_object* x_107; +x_105 = lean_ctor_get(x_82, 0); +x_106 = lean_ctor_get(x_82, 1); +lean_inc(x_106); +lean_inc(x_105); +lean_dec(x_82); +x_107 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_107, 0, x_105); +lean_ctor_set(x_107, 1, x_106); +return x_107; +} +} +} +else +{ +uint8_t x_108; +lean_dec(x_72); +lean_dec(x_24); lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); @@ -8418,23 +8427,23 @@ lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); -x_104 = !lean_is_exclusive(x_22); -if (x_104 == 0) +x_108 = !lean_is_exclusive(x_25); +if (x_108 == 0) { -return x_22; +return x_25; } else { -lean_object* x_105; lean_object* x_106; lean_object* x_107; -x_105 = lean_ctor_get(x_22, 0); -x_106 = lean_ctor_get(x_22, 1); -lean_inc(x_106); -lean_inc(x_105); -lean_dec(x_22); -x_107 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_107, 0, x_105); -lean_ctor_set(x_107, 1, x_106); -return x_107; +lean_object* x_109; lean_object* x_110; lean_object* x_111; +x_109 = lean_ctor_get(x_25, 0); +x_110 = lean_ctor_get(x_25, 1); +lean_inc(x_110); +lean_inc(x_109); +lean_dec(x_25); +x_111 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_111, 0, x_109); +lean_ctor_set(x_111, 1, x_110); +return x_111; } } } @@ -8444,7 +8453,7 @@ static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8 _start: { lean_object* x_1; -x_1 = lean_mk_string_from_bytes("HAdd", 4); +x_1 = lean_mk_string_from_bytes("HSub", 4); return x_1; } } @@ -8452,7 +8461,7 @@ static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8 _start: { lean_object* x_1; -x_1 = lean_mk_string_from_bytes("HSub", 4); +x_1 = lean_mk_string_from_bytes("HMul", 4); return x_1; } } @@ -8460,7 +8469,7 @@ static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8 _start: { lean_object* x_1; -x_1 = lean_mk_string_from_bytes("HMul", 4); +x_1 = lean_mk_string_from_bytes("HMod", 4); return x_1; } } @@ -8468,7 +8477,7 @@ static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8 _start: { lean_object* x_1; -x_1 = lean_mk_string_from_bytes("HMod", 4); +x_1 = lean_mk_string_from_bytes("HDiv", 4); return x_1; } } @@ -8476,7 +8485,7 @@ static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8 _start: { lean_object* x_1; -x_1 = lean_mk_string_from_bytes("HDiv", 4); +x_1 = lean_mk_string_from_bytes("Min", 3); return x_1; } } @@ -8484,7 +8493,7 @@ static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8 _start: { lean_object* x_1; -x_1 = lean_mk_string_from_bytes("Min", 3); +x_1 = lean_mk_string_from_bytes("Max", 3); return x_1; } } @@ -8492,7 +8501,7 @@ static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8 _start: { lean_object* x_1; -x_1 = lean_mk_string_from_bytes("Max", 3); +x_1 = lean_mk_string_from_bytes("HPow", 4); return x_1; } } @@ -8500,7 +8509,7 @@ static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8 _start: { lean_object* x_1; -x_1 = lean_mk_string_from_bytes("Nat", 3); +x_1 = lean_mk_string_from_bytes("Prod", 4); return x_1; } } @@ -8508,7 +8517,7 @@ static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8 _start: { lean_object* x_1; -x_1 = lean_mk_string_from_bytes("Prod", 4); +x_1 = lean_mk_string_from_bytes("fst", 3); return x_1; } } @@ -8516,7 +8525,7 @@ static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8 _start: { lean_object* x_1; -x_1 = lean_mk_string_from_bytes("fst", 3); +x_1 = lean_mk_string_from_bytes("snd", 3); return x_1; } } @@ -8524,31 +8533,23 @@ static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8 _start: { lean_object* x_1; -x_1 = lean_mk_string_from_bytes("snd", 3); +x_1 = lean_mk_string_from_bytes("snd_mk", 6); return x_1; } } static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__12() { _start: { -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("snd_mk", 6); -return x_1; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__13() { -_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_Elab_Tactic_Omega_evalUnsafe____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_6____closed__1; x_2 = l_Lean_Elab_Tactic_Omega_evalUnsafe____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_6____closed__3; -x_3 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__9; -x_4 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__12; +x_3 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__8; +x_4 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__11; x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); return x_5; } } -static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__14() { +static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__13() { _start: { lean_object* x_1; @@ -8556,19 +8557,19 @@ x_1 = lean_mk_string_from_bytes("fst_mk", 6); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__15() { +static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__14() { _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_Elab_Tactic_Omega_evalUnsafe____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_6____closed__1; x_2 = l_Lean_Elab_Tactic_Omega_evalUnsafe____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_6____closed__3; -x_3 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__9; -x_4 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__14; +x_3 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__8; +x_4 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__13; x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); return x_5; } } -static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__16() { +static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__15() { _start: { lean_object* x_1; @@ -8576,15 +8577,51 @@ x_1 = lean_mk_string_from_bytes("cast", 4); return x_1; } } +static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__16() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("hPow", 4); +return x_1; +} +} static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__17() { _start: { lean_object* x_1; +x_1 = lean_mk_string_from_bytes("pow_succ", 8); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__18() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__9; +x_2 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__17; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__19() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__18; +x_3 = l_Lean_Expr_const___override(x_2, x_1); +return x_3; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__20() { +_start: +{ +lean_object* x_1; x_1 = lean_mk_string_from_bytes("max", 3); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__18() { +static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__21() { _start: { lean_object* x_1; @@ -8592,27 +8629,27 @@ x_1 = lean_mk_string_from_bytes("max_def", 7); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__19() { +static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__22() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__7; -x_2 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__18; +x_1 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__9; +x_2 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__21; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__20() { +static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__23() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__19; +x_2 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__22; x_3 = l_Lean_Expr_const___override(x_2, x_1); return x_3; } } -static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__21() { +static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__24() { _start: { lean_object* x_1; @@ -8620,7 +8657,7 @@ x_1 = lean_mk_string_from_bytes("min", 3); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__22() { +static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__25() { _start: { lean_object* x_1; @@ -8628,39 +8665,11 @@ x_1 = lean_mk_string_from_bytes("min_def", 7); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__23() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__7; -x_2 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__22; -x_3 = l_Lean_Name_mkStr2(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__24() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__23; -x_3 = l_Lean_Expr_const___override(x_2, x_1); -return x_3; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__25() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("hDiv", 4); -return x_1; -} -} static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__26() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__5; +x_1 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__9; x_2 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__25; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; @@ -8669,74 +8678,78 @@ return x_3; static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__27() { _start: { -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("ediv_zero", 9); -return x_1; +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__26; +x_3 = l_Lean_Expr_const___override(x_2, x_1); +return x_3; } } static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__28() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__7; -x_2 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__27; -x_3 = l_Lean_Name_mkStr2(x_1, x_2); -return x_3; +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("hDiv", 4); +return x_1; } } static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__29() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); +x_1 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__4; x_2 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__28; -x_3 = l_Lean_Expr_const___override(x_2, x_1); +x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__30() { _start: { -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("ediv_neg", 8); -return x_1; +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__25; +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_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__31() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__7; +x_1 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__24; x_2 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__30; -x_3 = l_Lean_Name_mkStr2(x_1, x_2); +x_3 = l_Lean_Expr_const___override(x_1, x_2); return x_3; } } static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__32() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__31; -x_3 = l_Lean_Expr_const___override(x_2, x_1); -return x_3; +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("ediv_zero", 9); +return x_1; } } static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__33() { _start: { -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("hMod", 4); -return x_1; +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__9; +x_2 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__32; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; } } static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__34() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__4; +x_1 = lean_box(0); x_2 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__33; -x_3 = l_Lean_Name_mkStr2(x_1, x_2); +x_3 = l_Lean_Expr_const___override(x_2, x_1); return x_3; } } @@ -8744,7 +8757,7 @@ static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8 _start: { lean_object* x_1; -x_1 = lean_mk_string_from_bytes("emod_def", 8); +x_1 = lean_mk_string_from_bytes("ediv_neg", 8); return x_1; } } @@ -8752,7 +8765,7 @@ static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8 _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__7; +x_1 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__9; x_2 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__35; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; @@ -8771,12 +8784,78 @@ return x_3; static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__38() { _start: { +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__36; +x_3 = l_Lean_Expr_const___override(x_2, x_1); +return x_3; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__39() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("hMod", 4); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__40() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__3; +x_2 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__39; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__41() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("emod_def", 8); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__42() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__9; +x_2 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__41; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__43() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__42; +x_3 = l_Lean_Expr_const___override(x_2, x_1); +return x_3; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__44() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__42; +x_3 = l_Lean_Expr_const___override(x_2, x_1); +return x_3; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__45() { +_start: +{ lean_object* x_1; x_1 = lean_mk_string_from_bytes("hMul", 4); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__39() { +static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__46() { _start: { lean_object* x_1; @@ -8784,7 +8863,7 @@ x_1 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Omega_atomsCoeffs___boxed), return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__40() { +static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__47() { _start: { lean_object* x_1; @@ -8792,14 +8871,6 @@ x_1 = lean_mk_string_from_bytes("hSub", 4); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__41() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("hAdd", 4); -return x_1; -} -} LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8(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: { @@ -8840,354 +8911,332 @@ lean_dec(x_14); x_19 = lean_ctor_get(x_15, 1); lean_inc(x_19); lean_dec(x_15); -x_20 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__1; +x_20 = l_Lean_Elab_Tactic_Omega_succ_x3f___closed__2; x_21 = lean_string_dec_eq(x_19, x_20); if (x_21 == 0) { lean_object* x_22; uint8_t x_23; -x_22 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__2; +x_22 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__1; x_23 = lean_string_dec_eq(x_19, x_22); if (x_23 == 0) { lean_object* x_24; uint8_t x_25; -x_24 = l_Lean_Elab_Tactic_Omega_mkInt___closed__2; +x_24 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__22; x_25 = lean_string_dec_eq(x_19, x_24); if (x_25 == 0) { lean_object* x_26; uint8_t x_27; -x_26 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__3; +x_26 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__2; x_27 = lean_string_dec_eq(x_19, x_26); if (x_27 == 0) { lean_object* x_28; uint8_t x_29; -x_28 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__4; +x_28 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__3; x_29 = lean_string_dec_eq(x_19, x_28); if (x_29 == 0) { lean_object* x_30; uint8_t x_31; -x_30 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__5; +x_30 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__4; x_31 = lean_string_dec_eq(x_19, x_30); if (x_31 == 0) { lean_object* x_32; uint8_t x_33; -x_32 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__6; +x_32 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__5; x_33 = lean_string_dec_eq(x_19, x_32); if (x_33 == 0) { lean_object* x_34; uint8_t x_35; -x_34 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__7; +x_34 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__6; x_35 = lean_string_dec_eq(x_19, x_34); if (x_35 == 0) { lean_object* x_36; uint8_t x_37; -x_36 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__8; +x_36 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__7; x_37 = lean_string_dec_eq(x_19, x_36); if (x_37 == 0) { lean_object* x_38; uint8_t x_39; -x_38 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__9; +x_38 = l_Lean_Elab_Tactic_Omega_succ_x3f___closed__1; x_39 = lean_string_dec_eq(x_19, x_38); -lean_dec(x_19); if (x_39 == 0) { -lean_object* x_40; +lean_object* x_40; uint8_t x_41; +x_40 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__8; +x_41 = lean_string_dec_eq(x_19, x_40); +lean_dec(x_19); +if (x_41 == 0) +{ +lean_object* x_42; lean_dec(x_18); lean_dec(x_17); -x_40 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -return x_40; +x_42 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +return x_42; } else { -lean_object* x_41; uint8_t x_42; -x_41 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__10; -x_42 = lean_string_dec_eq(x_18, x_41); -if (x_42 == 0) -{ lean_object* x_43; uint8_t x_44; -x_43 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__11; +x_43 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__9; x_44 = lean_string_dec_eq(x_18, x_43); -lean_dec(x_18); if (x_44 == 0) { -lean_object* x_45; +lean_object* x_45; uint8_t x_46; +x_45 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__10; +x_46 = lean_string_dec_eq(x_18, x_45); +lean_dec(x_18); +if (x_46 == 0) +{ +lean_object* x_47; lean_dec(x_17); -x_45 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -return x_45; +x_47 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +return x_47; } else { -lean_object* x_46; lean_object* x_47; uint8_t x_48; -x_46 = lean_array_get_size(x_17); -x_47 = lean_unsigned_to_nat(3u); -x_48 = lean_nat_dec_eq(x_46, x_47); -lean_dec(x_46); -if (x_48 == 0) +lean_object* x_48; lean_object* x_49; uint8_t x_50; +x_48 = lean_array_get_size(x_17); +x_49 = lean_unsigned_to_nat(3u); +x_50 = lean_nat_dec_eq(x_48, x_49); +lean_dec(x_48); +if (x_50 == 0) { -lean_object* x_49; +lean_object* x_51; lean_dec(x_17); -x_49 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -return x_49; +x_51 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +return x_51; } 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; -x_50 = lean_unsigned_to_nat(0u); -x_51 = lean_array_fget(x_17, x_50); -x_52 = lean_unsigned_to_nat(1u); +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_52 = lean_unsigned_to_nat(0u); x_53 = lean_array_fget(x_17, x_52); -x_54 = lean_unsigned_to_nat(2u); +x_54 = lean_unsigned_to_nat(1u); x_55 = lean_array_fget(x_17, x_54); +x_56 = lean_unsigned_to_nat(2u); +x_57 = lean_array_fget(x_17, x_56); lean_dec(x_17); -if (lean_obj_tag(x_55) == 5) -{ -lean_object* x_56; -x_56 = lean_ctor_get(x_55, 0); -lean_inc(x_56); -if (lean_obj_tag(x_56) == 5) -{ -lean_object* x_57; -x_57 = lean_ctor_get(x_56, 0); -lean_inc(x_57); if (lean_obj_tag(x_57) == 5) { lean_object* x_58; x_58 = lean_ctor_get(x_57, 0); lean_inc(x_58); -lean_dec(x_57); if (lean_obj_tag(x_58) == 5) { lean_object* x_59; x_59 = lean_ctor_get(x_58, 0); lean_inc(x_59); -lean_dec(x_58); -if (lean_obj_tag(x_59) == 4) +if (lean_obj_tag(x_59) == 5) { lean_object* x_60; x_60 = lean_ctor_get(x_59, 0); lean_inc(x_60); -if (lean_obj_tag(x_60) == 1) +lean_dec(x_59); +if (lean_obj_tag(x_60) == 5) { lean_object* x_61; x_61 = lean_ctor_get(x_60, 0); lean_inc(x_61); -if (lean_obj_tag(x_61) == 1) +lean_dec(x_60); +if (lean_obj_tag(x_61) == 4) { lean_object* x_62; x_62 = lean_ctor_get(x_61, 0); lean_inc(x_62); -if (lean_obj_tag(x_62) == 0) +if (lean_obj_tag(x_62) == 1) { -lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; uint8_t x_68; -x_63 = lean_ctor_get(x_55, 1); +lean_object* x_63; +x_63 = lean_ctor_get(x_62, 0); lean_inc(x_63); -lean_dec(x_55); -x_64 = lean_ctor_get(x_56, 1); +if (lean_obj_tag(x_63) == 1) +{ +lean_object* x_64; +x_64 = lean_ctor_get(x_63, 0); lean_inc(x_64); -lean_dec(x_56); -x_65 = lean_ctor_get(x_59, 1); +if (lean_obj_tag(x_64) == 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; +x_65 = lean_ctor_get(x_57, 1); lean_inc(x_65); -lean_dec(x_59); -x_66 = lean_ctor_get(x_60, 1); +lean_dec(x_57); +x_66 = lean_ctor_get(x_58, 1); lean_inc(x_66); -lean_dec(x_60); +lean_dec(x_58); x_67 = lean_ctor_get(x_61, 1); lean_inc(x_67); lean_dec(x_61); -x_68 = lean_string_dec_eq(x_67, x_38); +x_68 = lean_ctor_get(x_62, 1); +lean_inc(x_68); +lean_dec(x_62); +x_69 = lean_ctor_get(x_63, 1); +lean_inc(x_69); +lean_dec(x_63); +x_70 = lean_string_dec_eq(x_69, x_40); +lean_dec(x_69); +if (x_70 == 0) +{ +lean_object* x_71; +lean_dec(x_68); lean_dec(x_67); -if (x_68 == 0) -{ -lean_object* x_69; lean_dec(x_66); lean_dec(x_65); -lean_dec(x_64); -lean_dec(x_63); +lean_dec(x_55); lean_dec(x_53); -lean_dec(x_51); -x_69 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -return x_69; +x_71 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +return x_71; } else { -lean_object* x_70; uint8_t x_71; -x_70 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__5; -x_71 = lean_string_dec_eq(x_66, x_70); -lean_dec(x_66); -if (x_71 == 0) -{ -lean_object* x_72; -lean_dec(x_65); -lean_dec(x_64); -lean_dec(x_63); -lean_dec(x_53); -lean_dec(x_51); -x_72 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -return x_72; -} -else -{ -if (lean_obj_tag(x_65) == 0) -{ -lean_object* x_73; -lean_dec(x_64); -lean_dec(x_63); -lean_dec(x_53); -lean_dec(x_51); -x_73 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -return x_73; -} -else +lean_object* x_72; uint8_t x_73; +x_72 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__5; +x_73 = lean_string_dec_eq(x_68, x_72); +lean_dec(x_68); +if (x_73 == 0) { lean_object* x_74; -x_74 = lean_ctor_get(x_65, 1); -lean_inc(x_74); -if (lean_obj_tag(x_74) == 0) +lean_dec(x_67); +lean_dec(x_66); +lean_dec(x_65); +lean_dec(x_55); +lean_dec(x_53); +x_74 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +return x_74; +} +else +{ +if (lean_obj_tag(x_67) == 0) { lean_object* x_75; +lean_dec(x_66); lean_dec(x_65); -lean_dec(x_64); -lean_dec(x_63); +lean_dec(x_55); lean_dec(x_53); -lean_dec(x_51); x_75 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); return x_75; } else { lean_object* x_76; -x_76 = lean_ctor_get(x_74, 1); +x_76 = lean_ctor_get(x_67, 1); lean_inc(x_76); if (lean_obj_tag(x_76) == 0) { -uint8_t x_77; -x_77 = !lean_is_exclusive(x_65); -if (x_77 == 0) -{ -lean_object* x_78; uint8_t x_79; -x_78 = lean_ctor_get(x_65, 1); -lean_dec(x_78); -x_79 = !lean_is_exclusive(x_74); -if (x_79 == 0) -{ -lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; lean_object* x_85; -x_80 = lean_ctor_get(x_74, 1); -lean_dec(x_80); -x_81 = lean_box(0); -lean_ctor_set(x_74, 1, x_81); -x_82 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__13; -x_83 = l_Lean_Expr_const___override(x_82, x_65); -x_84 = l_Lean_mkApp4(x_83, x_51, x_64, x_53, x_63); -x_85 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_rewrite(x_1, x_84, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -return x_85; -} -else -{ -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; -x_86 = lean_ctor_get(x_74, 0); -lean_inc(x_86); -lean_dec(x_74); -x_87 = lean_box(0); -x_88 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_88, 0, x_86); -lean_ctor_set(x_88, 1, x_87); -lean_ctor_set(x_65, 1, x_88); -x_89 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__13; -x_90 = l_Lean_Expr_const___override(x_89, x_65); -x_91 = l_Lean_mkApp4(x_90, x_51, x_64, x_53, x_63); -x_92 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_rewrite(x_1, x_91, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -return x_92; -} -} -else -{ -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; -x_93 = lean_ctor_get(x_65, 0); -lean_inc(x_93); +lean_object* x_77; +lean_dec(x_67); +lean_dec(x_66); lean_dec(x_65); -x_94 = lean_ctor_get(x_74, 0); -lean_inc(x_94); -if (lean_is_exclusive(x_74)) { - lean_ctor_release(x_74, 0); - lean_ctor_release(x_74, 1); - x_95 = x_74; -} else { - lean_dec_ref(x_74); - x_95 = lean_box(0); -} -x_96 = lean_box(0); -if (lean_is_scalar(x_95)) { - x_97 = lean_alloc_ctor(1, 2, 0); -} else { - x_97 = x_95; -} -lean_ctor_set(x_97, 0, x_94); -lean_ctor_set(x_97, 1, x_96); -x_98 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_98, 0, x_93); -lean_ctor_set(x_98, 1, x_97); -x_99 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__13; -x_100 = l_Lean_Expr_const___override(x_99, x_98); -x_101 = l_Lean_mkApp4(x_100, x_51, x_64, x_53, x_63); -x_102 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_rewrite(x_1, x_101, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -return x_102; -} -} -else -{ -lean_object* x_103; -lean_dec(x_76); -lean_dec(x_74); -lean_dec(x_65); -lean_dec(x_64); -lean_dec(x_63); -lean_dec(x_53); -lean_dec(x_51); -x_103 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -return x_103; -} -} -} -} -} -} -else -{ -lean_object* x_104; -lean_dec(x_62); -lean_dec(x_61); -lean_dec(x_60); -lean_dec(x_59); -lean_dec(x_56); lean_dec(x_55); lean_dec(x_53); -lean_dec(x_51); -x_104 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_77 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +return x_77; +} +else +{ +lean_object* x_78; +x_78 = lean_ctor_get(x_76, 1); +lean_inc(x_78); +if (lean_obj_tag(x_78) == 0) +{ +uint8_t x_79; +x_79 = !lean_is_exclusive(x_67); +if (x_79 == 0) +{ +lean_object* x_80; uint8_t x_81; +x_80 = lean_ctor_get(x_67, 1); +lean_dec(x_80); +x_81 = !lean_is_exclusive(x_76); +if (x_81 == 0) +{ +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_82 = lean_ctor_get(x_76, 1); +lean_dec(x_82); +x_83 = lean_box(0); +lean_ctor_set(x_76, 1, x_83); +x_84 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__12; +x_85 = l_Lean_Expr_const___override(x_84, x_67); +x_86 = l_Lean_mkApp4(x_85, x_53, x_66, x_55, x_65); +x_87 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_rewrite(x_1, x_86, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +return x_87; +} +else +{ +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; +x_88 = lean_ctor_get(x_76, 0); +lean_inc(x_88); +lean_dec(x_76); +x_89 = lean_box(0); +x_90 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_90, 0, x_88); +lean_ctor_set(x_90, 1, x_89); +lean_ctor_set(x_67, 1, x_90); +x_91 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__12; +x_92 = l_Lean_Expr_const___override(x_91, x_67); +x_93 = l_Lean_mkApp4(x_92, x_53, x_66, x_55, x_65); +x_94 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_rewrite(x_1, x_93, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +return x_94; +} +} +else +{ +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; +x_95 = lean_ctor_get(x_67, 0); +lean_inc(x_95); +lean_dec(x_67); +x_96 = lean_ctor_get(x_76, 0); +lean_inc(x_96); +if (lean_is_exclusive(x_76)) { + lean_ctor_release(x_76, 0); + lean_ctor_release(x_76, 1); + x_97 = x_76; +} else { + lean_dec_ref(x_76); + x_97 = lean_box(0); +} +x_98 = lean_box(0); +if (lean_is_scalar(x_97)) { + x_99 = lean_alloc_ctor(1, 2, 0); +} else { + x_99 = x_97; +} +lean_ctor_set(x_99, 0, x_96); +lean_ctor_set(x_99, 1, x_98); +x_100 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_100, 0, x_95); +lean_ctor_set(x_100, 1, x_99); +x_101 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__12; +x_102 = l_Lean_Expr_const___override(x_101, x_100); +x_103 = l_Lean_mkApp4(x_102, x_53, x_66, x_55, x_65); +x_104 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_rewrite(x_1, x_103, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); return x_104; } } else { lean_object* x_105; -lean_dec(x_61); -lean_dec(x_60); -lean_dec(x_59); -lean_dec(x_56); +lean_dec(x_78); +lean_dec(x_76); +lean_dec(x_67); +lean_dec(x_66); +lean_dec(x_65); lean_dec(x_55); lean_dec(x_53); -lean_dec(x_51); x_105 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); return x_105; } } +} +} +} +} else { lean_object* x_106; -lean_dec(x_60); -lean_dec(x_59); -lean_dec(x_56); +lean_dec(x_64); +lean_dec(x_63); +lean_dec(x_62); +lean_dec(x_61); +lean_dec(x_58); +lean_dec(x_57); lean_dec(x_55); lean_dec(x_53); -lean_dec(x_51); x_106 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); return x_106; } @@ -9195,11 +9244,13 @@ return x_106; else { lean_object* x_107; -lean_dec(x_59); -lean_dec(x_56); +lean_dec(x_63); +lean_dec(x_62); +lean_dec(x_61); +lean_dec(x_58); +lean_dec(x_57); lean_dec(x_55); lean_dec(x_53); -lean_dec(x_51); x_107 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); return x_107; } @@ -9207,11 +9258,12 @@ return x_107; else { lean_object* x_108; +lean_dec(x_62); +lean_dec(x_61); lean_dec(x_58); -lean_dec(x_56); +lean_dec(x_57); lean_dec(x_55); lean_dec(x_53); -lean_dec(x_51); x_108 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); return x_108; } @@ -9219,11 +9271,11 @@ return x_108; else { lean_object* x_109; +lean_dec(x_61); +lean_dec(x_58); lean_dec(x_57); -lean_dec(x_56); lean_dec(x_55); lean_dec(x_53); -lean_dec(x_51); x_109 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); return x_109; } @@ -9231,10 +9283,11 @@ return x_109; else { lean_object* x_110; -lean_dec(x_56); +lean_dec(x_60); +lean_dec(x_58); +lean_dec(x_57); lean_dec(x_55); lean_dec(x_53); -lean_dec(x_51); x_110 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); return x_110; } @@ -9242,290 +9295,286 @@ return x_110; else { lean_object* x_111; +lean_dec(x_59); +lean_dec(x_58); +lean_dec(x_57); lean_dec(x_55); lean_dec(x_53); -lean_dec(x_51); x_111 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); return x_111; } } +else +{ +lean_object* x_112; +lean_dec(x_58); +lean_dec(x_57); +lean_dec(x_55); +lean_dec(x_53); +x_112 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +return x_112; } } else { -lean_object* x_112; lean_object* x_113; uint8_t x_114; +lean_object* x_113; +lean_dec(x_57); +lean_dec(x_55); +lean_dec(x_53); +x_113 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +return x_113; +} +} +} +} +else +{ +lean_object* x_114; lean_object* x_115; uint8_t x_116; lean_dec(x_18); -x_112 = lean_array_get_size(x_17); -x_113 = lean_unsigned_to_nat(3u); -x_114 = lean_nat_dec_eq(x_112, x_113); -lean_dec(x_112); -if (x_114 == 0) +x_114 = lean_array_get_size(x_17); +x_115 = lean_unsigned_to_nat(3u); +x_116 = lean_nat_dec_eq(x_114, x_115); +lean_dec(x_114); +if (x_116 == 0) { -lean_object* x_115; +lean_object* x_117; lean_dec(x_17); -x_115 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -return x_115; +x_117 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +return x_117; } else { -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_116 = lean_unsigned_to_nat(0u); -x_117 = lean_array_fget(x_17, x_116); -x_118 = lean_unsigned_to_nat(1u); +lean_object* x_118; lean_object* x_119; lean_object* x_120; lean_object* x_121; lean_object* x_122; lean_object* x_123; +x_118 = lean_unsigned_to_nat(0u); x_119 = lean_array_fget(x_17, x_118); -x_120 = lean_unsigned_to_nat(2u); +x_120 = lean_unsigned_to_nat(1u); x_121 = lean_array_fget(x_17, x_120); +x_122 = lean_unsigned_to_nat(2u); +x_123 = lean_array_fget(x_17, x_122); lean_dec(x_17); -if (lean_obj_tag(x_121) == 5) -{ -lean_object* x_122; -x_122 = lean_ctor_get(x_121, 0); -lean_inc(x_122); -if (lean_obj_tag(x_122) == 5) -{ -lean_object* x_123; -x_123 = lean_ctor_get(x_122, 0); -lean_inc(x_123); if (lean_obj_tag(x_123) == 5) { lean_object* x_124; x_124 = lean_ctor_get(x_123, 0); lean_inc(x_124); -lean_dec(x_123); if (lean_obj_tag(x_124) == 5) { lean_object* x_125; x_125 = lean_ctor_get(x_124, 0); lean_inc(x_125); -lean_dec(x_124); -if (lean_obj_tag(x_125) == 4) +if (lean_obj_tag(x_125) == 5) { lean_object* x_126; x_126 = lean_ctor_get(x_125, 0); lean_inc(x_126); -if (lean_obj_tag(x_126) == 1) +lean_dec(x_125); +if (lean_obj_tag(x_126) == 5) { lean_object* x_127; x_127 = lean_ctor_get(x_126, 0); lean_inc(x_127); -if (lean_obj_tag(x_127) == 1) +lean_dec(x_126); +if (lean_obj_tag(x_127) == 4) { lean_object* x_128; x_128 = lean_ctor_get(x_127, 0); lean_inc(x_128); -if (lean_obj_tag(x_128) == 0) +if (lean_obj_tag(x_128) == 1) { -lean_object* x_129; lean_object* x_130; lean_object* x_131; lean_object* x_132; lean_object* x_133; uint8_t x_134; -x_129 = lean_ctor_get(x_121, 1); +lean_object* x_129; +x_129 = lean_ctor_get(x_128, 0); lean_inc(x_129); -lean_dec(x_121); -x_130 = lean_ctor_get(x_122, 1); +if (lean_obj_tag(x_129) == 1) +{ +lean_object* x_130; +x_130 = lean_ctor_get(x_129, 0); lean_inc(x_130); -lean_dec(x_122); -x_131 = lean_ctor_get(x_125, 1); +if (lean_obj_tag(x_130) == 0) +{ +lean_object* x_131; lean_object* x_132; lean_object* x_133; lean_object* x_134; lean_object* x_135; uint8_t x_136; +x_131 = lean_ctor_get(x_123, 1); lean_inc(x_131); -lean_dec(x_125); -x_132 = lean_ctor_get(x_126, 1); +lean_dec(x_123); +x_132 = lean_ctor_get(x_124, 1); lean_inc(x_132); -lean_dec(x_126); +lean_dec(x_124); x_133 = lean_ctor_get(x_127, 1); lean_inc(x_133); lean_dec(x_127); -x_134 = lean_string_dec_eq(x_133, x_38); +x_134 = lean_ctor_get(x_128, 1); +lean_inc(x_134); +lean_dec(x_128); +x_135 = lean_ctor_get(x_129, 1); +lean_inc(x_135); +lean_dec(x_129); +x_136 = lean_string_dec_eq(x_135, x_40); +lean_dec(x_135); +if (x_136 == 0) +{ +lean_object* x_137; +lean_dec(x_134); lean_dec(x_133); -if (x_134 == 0) -{ -lean_object* x_135; lean_dec(x_132); lean_dec(x_131); -lean_dec(x_130); -lean_dec(x_129); +lean_dec(x_121); lean_dec(x_119); -lean_dec(x_117); -x_135 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -return x_135; +x_137 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +return x_137; } else { -lean_object* x_136; uint8_t x_137; -x_136 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__5; -x_137 = lean_string_dec_eq(x_132, x_136); -lean_dec(x_132); -if (x_137 == 0) -{ -lean_object* x_138; -lean_dec(x_131); -lean_dec(x_130); -lean_dec(x_129); -lean_dec(x_119); -lean_dec(x_117); -x_138 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -return x_138; -} -else -{ -if (lean_obj_tag(x_131) == 0) -{ -lean_object* x_139; -lean_dec(x_130); -lean_dec(x_129); -lean_dec(x_119); -lean_dec(x_117); -x_139 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -return x_139; -} -else +lean_object* x_138; uint8_t x_139; +x_138 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__5; +x_139 = lean_string_dec_eq(x_134, x_138); +lean_dec(x_134); +if (x_139 == 0) { lean_object* x_140; -x_140 = lean_ctor_get(x_131, 1); -lean_inc(x_140); -if (lean_obj_tag(x_140) == 0) +lean_dec(x_133); +lean_dec(x_132); +lean_dec(x_131); +lean_dec(x_121); +lean_dec(x_119); +x_140 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +return x_140; +} +else +{ +if (lean_obj_tag(x_133) == 0) { lean_object* x_141; +lean_dec(x_132); lean_dec(x_131); -lean_dec(x_130); -lean_dec(x_129); +lean_dec(x_121); lean_dec(x_119); -lean_dec(x_117); x_141 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); return x_141; } else { lean_object* x_142; -x_142 = lean_ctor_get(x_140, 1); +x_142 = lean_ctor_get(x_133, 1); lean_inc(x_142); if (lean_obj_tag(x_142) == 0) { -uint8_t x_143; -x_143 = !lean_is_exclusive(x_131); -if (x_143 == 0) -{ -lean_object* x_144; uint8_t x_145; -x_144 = lean_ctor_get(x_131, 1); -lean_dec(x_144); -x_145 = !lean_is_exclusive(x_140); -if (x_145 == 0) -{ -lean_object* x_146; lean_object* x_147; lean_object* x_148; lean_object* x_149; lean_object* x_150; lean_object* x_151; -x_146 = lean_ctor_get(x_140, 1); -lean_dec(x_146); -x_147 = lean_box(0); -lean_ctor_set(x_140, 1, x_147); -x_148 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__15; -x_149 = l_Lean_Expr_const___override(x_148, x_131); -x_150 = l_Lean_mkApp4(x_149, x_117, x_130, x_119, x_129); -x_151 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_rewrite(x_1, x_150, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -return x_151; -} -else -{ -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; -x_152 = lean_ctor_get(x_140, 0); -lean_inc(x_152); -lean_dec(x_140); -x_153 = lean_box(0); -x_154 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_154, 0, x_152); -lean_ctor_set(x_154, 1, x_153); -lean_ctor_set(x_131, 1, x_154); -x_155 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__15; -x_156 = l_Lean_Expr_const___override(x_155, x_131); -x_157 = l_Lean_mkApp4(x_156, x_117, x_130, x_119, x_129); -x_158 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_rewrite(x_1, x_157, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -return x_158; -} -} -else -{ -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; -x_159 = lean_ctor_get(x_131, 0); -lean_inc(x_159); +lean_object* x_143; +lean_dec(x_133); +lean_dec(x_132); lean_dec(x_131); -x_160 = lean_ctor_get(x_140, 0); -lean_inc(x_160); -if (lean_is_exclusive(x_140)) { - lean_ctor_release(x_140, 0); - lean_ctor_release(x_140, 1); - x_161 = x_140; -} else { - lean_dec_ref(x_140); - x_161 = lean_box(0); -} -x_162 = lean_box(0); -if (lean_is_scalar(x_161)) { - x_163 = lean_alloc_ctor(1, 2, 0); -} else { - x_163 = x_161; -} -lean_ctor_set(x_163, 0, x_160); -lean_ctor_set(x_163, 1, x_162); -x_164 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_164, 0, x_159); -lean_ctor_set(x_164, 1, x_163); -x_165 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__15; -x_166 = l_Lean_Expr_const___override(x_165, x_164); -x_167 = l_Lean_mkApp4(x_166, x_117, x_130, x_119, x_129); -x_168 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_rewrite(x_1, x_167, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -return x_168; -} -} -else -{ -lean_object* x_169; -lean_dec(x_142); -lean_dec(x_140); -lean_dec(x_131); -lean_dec(x_130); -lean_dec(x_129); -lean_dec(x_119); -lean_dec(x_117); -x_169 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -return x_169; -} -} -} -} -} -} -else -{ -lean_object* x_170; -lean_dec(x_128); -lean_dec(x_127); -lean_dec(x_126); -lean_dec(x_125); -lean_dec(x_122); lean_dec(x_121); lean_dec(x_119); -lean_dec(x_117); -x_170 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_143 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +return x_143; +} +else +{ +lean_object* x_144; +x_144 = lean_ctor_get(x_142, 1); +lean_inc(x_144); +if (lean_obj_tag(x_144) == 0) +{ +uint8_t x_145; +x_145 = !lean_is_exclusive(x_133); +if (x_145 == 0) +{ +lean_object* x_146; uint8_t x_147; +x_146 = lean_ctor_get(x_133, 1); +lean_dec(x_146); +x_147 = !lean_is_exclusive(x_142); +if (x_147 == 0) +{ +lean_object* x_148; lean_object* x_149; lean_object* x_150; lean_object* x_151; lean_object* x_152; lean_object* x_153; +x_148 = lean_ctor_get(x_142, 1); +lean_dec(x_148); +x_149 = lean_box(0); +lean_ctor_set(x_142, 1, x_149); +x_150 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__14; +x_151 = l_Lean_Expr_const___override(x_150, x_133); +x_152 = l_Lean_mkApp4(x_151, x_119, x_132, x_121, x_131); +x_153 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_rewrite(x_1, x_152, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +return x_153; +} +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; +x_154 = lean_ctor_get(x_142, 0); +lean_inc(x_154); +lean_dec(x_142); +x_155 = lean_box(0); +x_156 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_156, 0, x_154); +lean_ctor_set(x_156, 1, x_155); +lean_ctor_set(x_133, 1, x_156); +x_157 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__14; +x_158 = l_Lean_Expr_const___override(x_157, x_133); +x_159 = l_Lean_mkApp4(x_158, x_119, x_132, x_121, x_131); +x_160 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_rewrite(x_1, x_159, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +return x_160; +} +} +else +{ +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; +x_161 = lean_ctor_get(x_133, 0); +lean_inc(x_161); +lean_dec(x_133); +x_162 = lean_ctor_get(x_142, 0); +lean_inc(x_162); +if (lean_is_exclusive(x_142)) { + lean_ctor_release(x_142, 0); + lean_ctor_release(x_142, 1); + x_163 = x_142; +} else { + lean_dec_ref(x_142); + x_163 = lean_box(0); +} +x_164 = lean_box(0); +if (lean_is_scalar(x_163)) { + x_165 = lean_alloc_ctor(1, 2, 0); +} else { + x_165 = x_163; +} +lean_ctor_set(x_165, 0, x_162); +lean_ctor_set(x_165, 1, x_164); +x_166 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_166, 0, x_161); +lean_ctor_set(x_166, 1, x_165); +x_167 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__14; +x_168 = l_Lean_Expr_const___override(x_167, x_166); +x_169 = l_Lean_mkApp4(x_168, x_119, x_132, x_121, x_131); +x_170 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_rewrite(x_1, x_169, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); return x_170; } } else { lean_object* x_171; -lean_dec(x_127); -lean_dec(x_126); -lean_dec(x_125); -lean_dec(x_122); +lean_dec(x_144); +lean_dec(x_142); +lean_dec(x_133); +lean_dec(x_132); +lean_dec(x_131); lean_dec(x_121); lean_dec(x_119); -lean_dec(x_117); x_171 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); return x_171; } } +} +} +} +} else { lean_object* x_172; -lean_dec(x_126); -lean_dec(x_125); -lean_dec(x_122); +lean_dec(x_130); +lean_dec(x_129); +lean_dec(x_128); +lean_dec(x_127); +lean_dec(x_124); +lean_dec(x_123); lean_dec(x_121); lean_dec(x_119); -lean_dec(x_117); x_172 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); return x_172; } @@ -9533,11 +9582,13 @@ return x_172; else { lean_object* x_173; -lean_dec(x_125); -lean_dec(x_122); +lean_dec(x_129); +lean_dec(x_128); +lean_dec(x_127); +lean_dec(x_124); +lean_dec(x_123); lean_dec(x_121); lean_dec(x_119); -lean_dec(x_117); x_173 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); return x_173; } @@ -9545,11 +9596,12 @@ return x_173; else { lean_object* x_174; +lean_dec(x_128); +lean_dec(x_127); lean_dec(x_124); -lean_dec(x_122); +lean_dec(x_123); lean_dec(x_121); lean_dec(x_119); -lean_dec(x_117); x_174 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); return x_174; } @@ -9557,11 +9609,11 @@ return x_174; else { lean_object* x_175; +lean_dec(x_127); +lean_dec(x_124); lean_dec(x_123); -lean_dec(x_122); lean_dec(x_121); lean_dec(x_119); -lean_dec(x_117); x_175 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); return x_175; } @@ -9569,10 +9621,11 @@ return x_175; else { lean_object* x_176; -lean_dec(x_122); +lean_dec(x_126); +lean_dec(x_124); +lean_dec(x_123); lean_dec(x_121); lean_dec(x_119); -lean_dec(x_117); x_176 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); return x_176; } @@ -9580,167 +9633,179 @@ return x_176; else { lean_object* x_177; +lean_dec(x_125); +lean_dec(x_124); +lean_dec(x_123); lean_dec(x_121); lean_dec(x_119); -lean_dec(x_117); x_177 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); return x_177; } } +else +{ +lean_object* x_178; +lean_dec(x_124); +lean_dec(x_123); +lean_dec(x_121); +lean_dec(x_119); +x_178 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +return x_178; +} +} +else +{ +lean_object* x_179; +lean_dec(x_123); +lean_dec(x_121); +lean_dec(x_119); +x_179 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +return x_179; +} +} } } } else { -lean_object* x_178; uint8_t x_179; +lean_object* x_180; uint8_t x_181; lean_dec(x_19); -x_178 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__16; -x_179 = lean_string_dec_eq(x_18, x_178); +x_180 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__15; +x_181 = lean_string_dec_eq(x_18, x_180); lean_dec(x_18); -if (x_179 == 0) +if (x_181 == 0) { -lean_object* x_180; +lean_object* x_182; lean_dec(x_17); -x_180 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -return x_180; +x_182 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +return x_182; } else { -lean_object* x_181; lean_object* x_182; uint8_t x_183; -x_181 = lean_array_get_size(x_17); -x_182 = lean_unsigned_to_nat(3u); -x_183 = lean_nat_dec_eq(x_181, x_182); -lean_dec(x_181); -if (x_183 == 0) +lean_object* x_183; lean_object* x_184; uint8_t x_185; +x_183 = lean_array_get_size(x_17); +x_184 = lean_unsigned_to_nat(3u); +x_185 = lean_nat_dec_eq(x_183, x_184); +lean_dec(x_183); +if (x_185 == 0) { -lean_object* x_184; +lean_object* x_186; lean_dec(x_17); -x_184 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -return x_184; +x_186 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +return x_186; } else { -lean_object* x_185; lean_object* x_186; -x_185 = lean_unsigned_to_nat(0u); -x_186 = lean_array_fget(x_17, x_185); -if (lean_obj_tag(x_186) == 4) +lean_object* x_187; lean_object* x_188; +x_187 = lean_unsigned_to_nat(0u); +x_188 = lean_array_fget(x_17, x_187); +if (lean_obj_tag(x_188) == 4) { -lean_object* x_187; -x_187 = lean_ctor_get(x_186, 0); -lean_inc(x_187); -if (lean_obj_tag(x_187) == 1) -{ -lean_object* x_188; -x_188 = lean_ctor_get(x_187, 0); -lean_inc(x_188); -if (lean_obj_tag(x_188) == 0) -{ -lean_object* x_189; lean_object* x_190; lean_object* x_191; uint8_t x_192; -x_189 = lean_ctor_get(x_186, 1); +lean_object* x_189; +x_189 = lean_ctor_get(x_188, 0); lean_inc(x_189); -lean_dec(x_186); -x_190 = lean_ctor_get(x_187, 1); +if (lean_obj_tag(x_189) == 1) +{ +lean_object* x_190; +x_190 = lean_ctor_get(x_189, 0); lean_inc(x_190); -lean_dec(x_187); -x_191 = l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__7; -x_192 = lean_string_dec_eq(x_190, x_191); -lean_dec(x_190); -if (x_192 == 0) +if (lean_obj_tag(x_190) == 0) { -lean_object* x_193; -lean_dec(x_189); -lean_dec(x_17); -x_193 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -return x_193; -} -else -{ -if (lean_obj_tag(x_189) == 0) -{ -lean_object* x_194; lean_object* x_195; lean_object* x_196; lean_object* x_197; lean_object* x_198; -x_194 = lean_unsigned_to_nat(1u); -x_195 = lean_array_fget(x_17, x_194); -x_196 = lean_unsigned_to_nat(2u); -x_197 = lean_array_fget(x_17, x_196); -lean_dec(x_17); -x_198 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast(x_1, x_195, x_197, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -return x_198; -} -else -{ -lean_object* x_199; -lean_dec(x_189); -lean_dec(x_17); -x_199 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -return x_199; -} -} -} -else -{ -lean_object* x_200; +lean_object* x_191; lean_object* x_192; lean_object* x_193; uint8_t x_194; +x_191 = lean_ctor_get(x_188, 1); +lean_inc(x_191); lean_dec(x_188); -lean_dec(x_187); -lean_dec(x_186); +x_192 = lean_ctor_get(x_189, 1); +lean_inc(x_192); +lean_dec(x_189); +x_193 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__9; +x_194 = lean_string_dec_eq(x_192, x_193); +lean_dec(x_192); +if (x_194 == 0) +{ +lean_object* x_195; +lean_dec(x_191); lean_dec(x_17); -x_200 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -return x_200; +x_195 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +return x_195; } +else +{ +if (lean_obj_tag(x_191) == 0) +{ +lean_object* x_196; lean_object* x_197; lean_object* x_198; lean_object* x_199; lean_object* x_200; +x_196 = lean_unsigned_to_nat(1u); +x_197 = lean_array_fget(x_17, x_196); +x_198 = lean_unsigned_to_nat(2u); +x_199 = lean_array_fget(x_17, x_198); +lean_dec(x_17); +x_200 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast(x_1, x_197, x_199, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +return x_200; } else { lean_object* x_201; -lean_dec(x_187); -lean_dec(x_186); +lean_dec(x_191); lean_dec(x_17); x_201 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); return x_201; } } +} else { lean_object* x_202; -lean_dec(x_186); +lean_dec(x_190); +lean_dec(x_189); +lean_dec(x_188); lean_dec(x_17); x_202 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); return x_202; } } +else +{ +lean_object* x_203; +lean_dec(x_189); +lean_dec(x_188); +lean_dec(x_17); +x_203 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +return x_203; +} +} +else +{ +lean_object* x_204; +lean_dec(x_188); +lean_dec(x_17); +x_204 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +return x_204; +} +} } } } else { -lean_object* x_203; uint8_t x_204; +lean_object* x_205; uint8_t x_206; lean_dec(x_19); -x_203 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__17; -x_204 = lean_string_dec_eq(x_18, x_203); +x_205 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__16; +x_206 = lean_string_dec_eq(x_18, x_205); lean_dec(x_18); -if (x_204 == 0) +if (x_206 == 0) { -lean_object* x_205; +lean_object* x_207; lean_dec(x_17); -x_205 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -return x_205; +x_207 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +return x_207; } else { -lean_object* x_206; lean_object* x_207; uint8_t x_208; -x_206 = lean_array_get_size(x_17); -x_207 = lean_unsigned_to_nat(4u); -x_208 = lean_nat_dec_eq(x_206, x_207); -lean_dec(x_206); -if (x_208 == 0) -{ -lean_object* x_209; -lean_dec(x_17); -x_209 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -return x_209; -} -else -{ -uint8_t x_210; -x_210 = lean_ctor_get_uint8(x_5, 3); +lean_object* x_208; lean_object* x_209; uint8_t x_210; +x_208 = lean_array_get_size(x_17); +x_209 = lean_unsigned_to_nat(6u); +x_210 = lean_nat_dec_eq(x_208, x_209); +lean_dec(x_208); if (x_210 == 0) { lean_object* x_211; @@ -9750,16 +9815,45 @@ return x_211; } else { -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; -x_212 = lean_unsigned_to_nat(2u); +lean_object* x_212; lean_object* x_213; lean_object* x_214; lean_object* x_215; lean_object* x_216; +x_212 = lean_unsigned_to_nat(4u); x_213 = lean_array_fget(x_17, x_212); -x_214 = lean_unsigned_to_nat(3u); +x_214 = lean_unsigned_to_nat(5u); x_215 = lean_array_fget(x_17, x_214); lean_dec(x_17); -x_216 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__20; -x_217 = l_Lean_mkAppB(x_216, x_213, x_215); -x_218 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_rewrite(x_1, x_217, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -return x_218; +x_216 = l_Lean_Elab_Tactic_Omega_succ_x3f(x_215); +if (lean_obj_tag(x_216) == 0) +{ +lean_object* x_217; +lean_dec(x_213); +x_217 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +return x_217; +} +else +{ +lean_object* x_218; lean_object* x_219; +x_218 = lean_ctor_get(x_216, 0); +lean_inc(x_218); +lean_dec(x_216); +lean_inc(x_213); +x_219 = l_Lean_Elab_Tactic_Omega_groundInt_x3f(x_213); +if (lean_obj_tag(x_219) == 0) +{ +lean_object* x_220; +lean_dec(x_218); +lean_dec(x_213); +x_220 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +return x_220; +} +else +{ +lean_object* x_221; lean_object* x_222; lean_object* x_223; +lean_dec(x_219); +x_221 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__19; +x_222 = l_Lean_mkAppB(x_221, x_213, x_218); +x_223 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_rewrite(x_1, x_222, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +return x_223; +} } } } @@ -9767,55 +9861,55 @@ return x_218; } else { -lean_object* x_219; uint8_t x_220; +lean_object* x_224; uint8_t x_225; lean_dec(x_19); -x_219 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__21; -x_220 = lean_string_dec_eq(x_18, x_219); +x_224 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__20; +x_225 = lean_string_dec_eq(x_18, x_224); lean_dec(x_18); -if (x_220 == 0) +if (x_225 == 0) { -lean_object* x_221; +lean_object* x_226; lean_dec(x_17); -x_221 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -return x_221; +x_226 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +return x_226; } else { -lean_object* x_222; lean_object* x_223; uint8_t x_224; -x_222 = lean_array_get_size(x_17); -x_223 = lean_unsigned_to_nat(4u); -x_224 = lean_nat_dec_eq(x_222, x_223); -lean_dec(x_222); -if (x_224 == 0) +lean_object* x_227; lean_object* x_228; uint8_t x_229; +x_227 = lean_array_get_size(x_17); +x_228 = lean_unsigned_to_nat(4u); +x_229 = lean_nat_dec_eq(x_227, x_228); +lean_dec(x_227); +if (x_229 == 0) { -lean_object* x_225; +lean_object* x_230; lean_dec(x_17); -x_225 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -return x_225; +x_230 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +return x_230; } else { -uint8_t x_226; -x_226 = lean_ctor_get_uint8(x_5, 3); -if (x_226 == 0) +uint8_t x_231; +x_231 = lean_ctor_get_uint8(x_5, 3); +if (x_231 == 0) { -lean_object* x_227; +lean_object* x_232; lean_dec(x_17); -x_227 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -return x_227; +x_232 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +return x_232; } else { -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; -x_228 = lean_unsigned_to_nat(2u); -x_229 = lean_array_fget(x_17, x_228); -x_230 = lean_unsigned_to_nat(3u); -x_231 = lean_array_fget(x_17, x_230); +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; +x_233 = lean_unsigned_to_nat(2u); +x_234 = lean_array_fget(x_17, x_233); +x_235 = lean_unsigned_to_nat(3u); +x_236 = lean_array_fget(x_17, x_235); lean_dec(x_17); -x_232 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__24; -x_233 = l_Lean_mkAppB(x_232, x_229, x_231); -x_234 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_rewrite(x_1, x_233, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -return x_234; +x_237 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__23; +x_238 = l_Lean_mkAppB(x_237, x_234, x_236); +x_239 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_rewrite(x_1, x_238, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +return x_239; } } } @@ -9823,166 +9917,159 @@ return x_234; } else { -lean_object* x_235; uint8_t x_236; +lean_object* x_240; uint8_t x_241; lean_dec(x_19); -x_235 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__25; -x_236 = lean_string_dec_eq(x_18, x_235); +x_240 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__24; +x_241 = lean_string_dec_eq(x_18, x_240); lean_dec(x_18); -if (x_236 == 0) +if (x_241 == 0) { -lean_object* x_237; +lean_object* x_242; lean_dec(x_17); -x_237 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -return x_237; +x_242 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +return x_242; } else { -lean_object* x_238; lean_object* x_239; uint8_t x_240; -x_238 = lean_array_get_size(x_17); -x_239 = lean_unsigned_to_nat(6u); -x_240 = lean_nat_dec_eq(x_238, x_239); -lean_dec(x_238); -if (x_240 == 0) -{ -lean_object* x_241; -lean_dec(x_17); -x_241 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -return x_241; -} -else -{ -lean_object* x_242; lean_object* x_243; lean_object* x_244; lean_object* x_245; lean_object* x_246; -x_242 = lean_unsigned_to_nat(4u); -x_243 = lean_array_fget(x_17, x_242); -x_244 = lean_unsigned_to_nat(5u); -x_245 = lean_array_fget(x_17, x_244); -lean_dec(x_17); -x_246 = l_Lean_Elab_Tactic_Omega_groundInt_x3f(x_245); -if (lean_obj_tag(x_246) == 0) -{ -lean_object* x_247; +lean_object* x_243; lean_object* x_244; uint8_t x_245; +x_243 = lean_array_get_size(x_17); +x_244 = lean_unsigned_to_nat(4u); +x_245 = lean_nat_dec_eq(x_243, x_244); lean_dec(x_243); -x_247 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -return x_247; +if (x_245 == 0) +{ +lean_object* x_246; +lean_dec(x_17); +x_246 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +return x_246; } else { -lean_object* x_248; lean_object* x_249; uint8_t x_250; -x_248 = lean_ctor_get(x_246, 0); -lean_inc(x_248); -lean_dec(x_246); -x_249 = l_Lean_Elab_Tactic_Omega_mkInt___closed__1; -x_250 = lean_int_dec_lt(x_248, x_249); -if (x_250 == 0) +uint8_t x_247; +x_247 = lean_ctor_get_uint8(x_5, 3); +if (x_247 == 0) { -lean_object* x_251; lean_object* x_252; uint8_t x_253; -x_251 = lean_nat_abs(x_248); -x_252 = lean_unsigned_to_nat(0u); -x_253 = lean_nat_dec_eq(x_251, x_252); -lean_dec(x_251); -if (x_253 == 0) +lean_object* x_248; +lean_dec(x_17); +x_248 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +return x_248; +} +else { -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_dec(x_1); -x_254 = l_Lean_Elab_Tactic_Omega_mkInt(x_248); -lean_dec(x_248); -x_255 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__3___closed__5; -x_256 = lean_array_push(x_255, x_243); -x_257 = lean_array_push(x_256, x_254); -x_258 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__26; -lean_inc(x_9); -lean_inc(x_8); -lean_inc(x_7); -lean_inc(x_6); -x_259 = l_Lean_Meta_mkAppM(x_258, x_257, x_6, x_7, x_8, x_9, x_10); -if (lean_obj_tag(x_259) == 0) +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; +x_249 = lean_unsigned_to_nat(2u); +x_250 = lean_array_fget(x_17, x_249); +x_251 = lean_unsigned_to_nat(3u); +x_252 = lean_array_fget(x_17, x_251); +lean_dec(x_17); +x_253 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__27; +x_254 = l_Lean_mkAppB(x_253, x_250, x_252); +x_255 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_rewrite(x_1, x_254, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +return x_255; +} +} +} +} +} +else { -lean_object* x_260; lean_object* x_261; lean_object* x_262; -x_260 = lean_ctor_get(x_259, 0); -lean_inc(x_260); -x_261 = lean_ctor_get(x_259, 1); -lean_inc(x_261); +lean_object* x_256; uint8_t x_257; +lean_dec(x_19); +x_256 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__28; +x_257 = lean_string_dec_eq(x_18, x_256); +lean_dec(x_18); +if (x_257 == 0) +{ +lean_object* x_258; +lean_dec(x_17); +x_258 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +return x_258; +} +else +{ +lean_object* x_259; lean_object* x_260; uint8_t x_261; +x_259 = lean_array_get_size(x_17); +x_260 = lean_unsigned_to_nat(6u); +x_261 = lean_nat_dec_eq(x_259, x_260); lean_dec(x_259); -x_262 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_260, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_261); +if (x_261 == 0) +{ +lean_object* x_262; +lean_dec(x_17); +x_262 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); return x_262; } else { -uint8_t x_263; -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_263 = !lean_is_exclusive(x_259); -if (x_263 == 0) +lean_object* x_263; lean_object* x_264; lean_object* x_265; lean_object* x_266; lean_object* x_267; +x_263 = lean_unsigned_to_nat(4u); +x_264 = lean_array_fget(x_17, x_263); +x_265 = lean_unsigned_to_nat(5u); +x_266 = lean_array_fget(x_17, x_265); +lean_dec(x_17); +x_267 = l_Lean_Elab_Tactic_Omega_groundInt_x3f(x_266); +if (lean_obj_tag(x_267) == 0) { -return x_259; +lean_object* x_268; +lean_dec(x_264); +x_268 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +return x_268; } else { -lean_object* x_264; lean_object* x_265; lean_object* x_266; -x_264 = lean_ctor_get(x_259, 0); -x_265 = lean_ctor_get(x_259, 1); -lean_inc(x_265); -lean_inc(x_264); -lean_dec(x_259); -x_266 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_266, 0, x_264); -lean_ctor_set(x_266, 1, x_265); -return x_266; -} -} -} -else +lean_object* x_269; lean_object* x_270; uint8_t x_271; +x_269 = lean_ctor_get(x_267, 0); +lean_inc(x_269); +lean_dec(x_267); +x_270 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__8; +x_271 = lean_int_dec_lt(x_269, x_270); +if (x_271 == 0) { -lean_object* x_267; lean_object* x_268; lean_object* x_269; -lean_dec(x_248); -x_267 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__29; -x_268 = l_Lean_Expr_app___override(x_267, x_243); -x_269 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_rewrite(x_1, x_268, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -return x_269; -} -} -else +lean_object* x_272; lean_object* x_273; uint8_t x_274; +x_272 = lean_nat_abs(x_269); +x_273 = lean_unsigned_to_nat(0u); +x_274 = lean_nat_dec_eq(x_272, x_273); +lean_dec(x_272); +if (x_274 == 0) { -lean_object* x_270; lean_object* x_271; lean_object* x_272; lean_object* x_273; lean_object* x_274; lean_object* x_275; +uint8_t x_275; lean_object* x_276; lean_object* x_277; lean_dec(x_1); -x_270 = l_Lean_Elab_Tactic_Omega_mkInt(x_248); -x_271 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__3___closed__5; -lean_inc(x_243); -x_272 = lean_array_push(x_271, x_243); -x_273 = lean_array_push(x_272, x_270); -x_274 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__26; +x_275 = lean_int_dec_le(x_270, x_269); +x_276 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__3___closed__5; +x_277 = lean_array_push(x_276, x_264); +if (x_275 == 0) +{ +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; +x_278 = lean_int_neg(x_269); +lean_dec(x_269); +x_279 = l_Int_toNat(x_278); +lean_dec(x_278); +x_280 = l_Lean_instToExprInt_mkNat(x_279); +x_281 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__31; +x_282 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__11; +x_283 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__30; +x_284 = l_Lean_mkApp3(x_281, x_282, x_283, x_280); +x_285 = lean_array_push(x_277, x_284); +x_286 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__29; lean_inc(x_9); lean_inc(x_8); lean_inc(x_7); lean_inc(x_6); -x_275 = l_Lean_Meta_mkAppM(x_274, x_273, x_6, x_7, x_8, x_9, x_10); -if (lean_obj_tag(x_275) == 0) +x_287 = l_Lean_Meta_mkAppM(x_286, x_285, x_6, x_7, x_8, x_9, x_10); +if (lean_obj_tag(x_287) == 0) { -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_276 = lean_ctor_get(x_275, 0); -lean_inc(x_276); -x_277 = lean_ctor_get(x_275, 1); -lean_inc(x_277); -lean_dec(x_275); -x_278 = lean_int_neg(x_248); -lean_dec(x_248); -x_279 = l_Lean_Elab_Tactic_Omega_mkInt(x_278); -lean_dec(x_278); -x_280 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__32; -x_281 = l_Lean_mkAppB(x_280, x_243, x_279); -x_282 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_rewrite(x_276, x_281, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_277); -return x_282; +lean_object* x_288; lean_object* x_289; lean_object* x_290; +x_288 = lean_ctor_get(x_287, 0); +lean_inc(x_288); +x_289 = lean_ctor_get(x_287, 1); +lean_inc(x_289); +lean_dec(x_287); +x_290 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_288, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_289); +return x_290; } else { -uint8_t x_283; -lean_dec(x_248); -lean_dec(x_243); +uint8_t x_291; lean_dec(x_9); lean_dec(x_8); lean_dec(x_7); @@ -9990,213 +10077,158 @@ lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); -x_283 = !lean_is_exclusive(x_275); -if (x_283 == 0) +x_291 = !lean_is_exclusive(x_287); +if (x_291 == 0) { -return x_275; +return x_287; } else { -lean_object* x_284; lean_object* x_285; lean_object* x_286; -x_284 = lean_ctor_get(x_275, 0); -x_285 = lean_ctor_get(x_275, 1); -lean_inc(x_285); -lean_inc(x_284); -lean_dec(x_275); -x_286 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_286, 0, x_284); -lean_ctor_set(x_286, 1, x_285); -return x_286; -} -} -} -} -} +lean_object* x_292; lean_object* x_293; lean_object* x_294; +x_292 = lean_ctor_get(x_287, 0); +x_293 = lean_ctor_get(x_287, 1); +lean_inc(x_293); +lean_inc(x_292); +lean_dec(x_287); +x_294 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_294, 0, x_292); +lean_ctor_set(x_294, 1, x_293); +return x_294; } } } else { -lean_object* x_287; uint8_t x_288; -lean_dec(x_19); -x_287 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__33; -x_288 = lean_string_dec_eq(x_18, x_287); -lean_dec(x_18); -if (x_288 == 0) +lean_object* x_295; lean_object* x_296; lean_object* x_297; lean_object* x_298; lean_object* x_299; +x_295 = l_Int_toNat(x_269); +lean_dec(x_269); +x_296 = l_Lean_instToExprInt_mkNat(x_295); +x_297 = lean_array_push(x_277, x_296); +x_298 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__29; +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_6); +x_299 = l_Lean_Meta_mkAppM(x_298, x_297, x_6, x_7, x_8, x_9, x_10); +if (lean_obj_tag(x_299) == 0) { -lean_object* x_289; -lean_dec(x_17); -x_289 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -return x_289; +lean_object* x_300; lean_object* x_301; lean_object* x_302; +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); +x_302 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_300, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_301); +return x_302; } else { -lean_object* x_290; lean_object* x_291; uint8_t x_292; -x_290 = lean_array_get_size(x_17); -x_291 = lean_unsigned_to_nat(6u); -x_292 = lean_nat_dec_eq(x_290, x_291); -lean_dec(x_290); -if (x_292 == 0) +uint8_t x_303; +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_303 = !lean_is_exclusive(x_299); +if (x_303 == 0) { -lean_object* x_293; -lean_dec(x_17); -x_293 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -return x_293; -} -else -{ -lean_object* x_294; lean_object* x_295; lean_object* x_296; lean_object* x_297; lean_object* x_298; -x_294 = lean_unsigned_to_nat(4u); -x_295 = lean_array_fget(x_17, x_294); -x_296 = lean_unsigned_to_nat(5u); -x_297 = lean_array_fget(x_17, x_296); -lean_dec(x_17); -x_298 = l_Lean_Elab_Tactic_Omega_groundNat_x3f(x_297); -if (lean_obj_tag(x_298) == 0) -{ -lean_object* x_299; -lean_dec(x_295); -x_299 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); return x_299; } else { -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_304; lean_object* x_305; lean_object* x_306; +x_304 = lean_ctor_get(x_299, 0); +x_305 = lean_ctor_get(x_299, 1); +lean_inc(x_305); +lean_inc(x_304); +lean_dec(x_299); +x_306 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_306, 0, x_304); +lean_ctor_set(x_306, 1, x_305); +return x_306; +} +} +} +} +else +{ +lean_object* x_307; lean_object* x_308; lean_object* x_309; +lean_dec(x_269); +x_307 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__34; +x_308 = l_Lean_Expr_app___override(x_307, x_264); +x_309 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_rewrite(x_1, x_308, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +return x_309; +} +} +else +{ +uint8_t x_310; lean_object* x_311; lean_object* x_312; lean_dec(x_1); -x_300 = lean_ctor_get(x_298, 0); -lean_inc(x_300); -lean_dec(x_298); -x_301 = lean_nat_to_int(x_300); -x_302 = l_Lean_Elab_Tactic_Omega_mkInt(x_301); -lean_dec(x_301); -x_303 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__3___closed__5; -lean_inc(x_295); -x_304 = lean_array_push(x_303, x_295); -lean_inc(x_302); -x_305 = lean_array_push(x_304, x_302); -x_306 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__34; -lean_inc(x_9); -lean_inc(x_8); -lean_inc(x_7); -lean_inc(x_6); -x_307 = l_Lean_Meta_mkAppM(x_306, x_305, x_6, x_7, x_8, x_9, x_10); -if (lean_obj_tag(x_307) == 0) +x_310 = lean_int_dec_le(x_270, x_269); +x_311 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__3___closed__5; +lean_inc(x_264); +x_312 = lean_array_push(x_311, x_264); +if (x_310 == 0) { -lean_object* x_308; lean_object* x_309; lean_object* x_310; lean_object* x_311; lean_object* x_312; -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); -x_310 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__37; -x_311 = l_Lean_mkAppB(x_310, x_295, x_302); -x_312 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_rewrite(x_308, x_311, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_309); -return x_312; -} -else -{ -uint8_t x_313; -lean_dec(x_302); -lean_dec(x_295); -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_313 = !lean_is_exclusive(x_307); -if (x_313 == 0) -{ -return x_307; -} -else -{ -lean_object* x_314; lean_object* x_315; lean_object* x_316; -x_314 = lean_ctor_get(x_307, 0); -x_315 = lean_ctor_get(x_307, 1); +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; +x_313 = lean_int_neg(x_269); +lean_dec(x_269); +x_314 = l_Int_toNat(x_313); +x_315 = l_Lean_instToExprInt_mkNat(x_314); +x_316 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__31; +x_317 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__11; +x_318 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__30; lean_inc(x_315); -lean_inc(x_314); -lean_dec(x_307); -x_316 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_316, 0, x_314); -lean_ctor_set(x_316, 1, x_315); -return x_316; -} -} -} -} -} -} -} -else -{ -lean_object* x_317; uint8_t x_318; -lean_dec(x_19); -x_317 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__38; -x_318 = lean_string_dec_eq(x_18, x_317); -lean_dec(x_18); -if (x_318 == 0) -{ -lean_object* x_319; -lean_dec(x_17); -x_319 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -return x_319; -} -else -{ -lean_object* x_320; lean_object* x_321; uint8_t x_322; -x_320 = lean_array_get_size(x_17); -x_321 = lean_unsigned_to_nat(6u); -x_322 = lean_nat_dec_eq(x_320, x_321); -lean_dec(x_320); -if (x_322 == 0) -{ -lean_object* x_323; -lean_dec(x_17); -x_323 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -return x_323; -} -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; lean_object* x_331; -x_324 = lean_unsigned_to_nat(4u); -x_325 = lean_array_fget(x_17, x_324); -x_326 = lean_unsigned_to_nat(5u); -x_327 = lean_array_fget(x_17, x_326); -lean_dec(x_17); -x_328 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Omega_asLinearCombo), 9, 1); -lean_closure_set(x_328, 0, x_325); -x_329 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__4), 10, 1); -lean_closure_set(x_329, 0, x_327); -x_330 = lean_alloc_closure((void*)(l_ReaderT_bind___at_Lean_Elab_Tactic_Omega_withoutModifyingState___spec__1___rarg), 10, 2); -lean_closure_set(x_330, 0, x_328); -lean_closure_set(x_330, 1, x_329); +x_319 = l_Lean_mkApp3(x_316, x_317, x_318, x_315); +x_320 = lean_array_push(x_312, x_319); +x_321 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__29; lean_inc(x_9); lean_inc(x_8); lean_inc(x_7); lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_4); -lean_inc(x_3); -x_331 = l_Lean_Elab_Tactic_Omega_commitWhen___rarg(x_330, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -if (lean_obj_tag(x_331) == 0) +x_322 = l_Lean_Meta_mkAppM(x_321, x_320, x_6, x_7, x_8, x_9, x_10); +if (lean_obj_tag(x_322) == 0) { -lean_object* x_332; -x_332 = lean_ctor_get(x_331, 0); -lean_inc(x_332); -if (lean_obj_tag(x_332) == 0) +lean_object* x_323; lean_object* x_324; uint8_t x_325; +x_323 = lean_ctor_get(x_322, 0); +lean_inc(x_323); +x_324 = lean_ctor_get(x_322, 1); +lean_inc(x_324); +lean_dec(x_322); +x_325 = lean_int_dec_le(x_270, x_313); +if (x_325 == 0) { -lean_object* x_333; lean_object* x_334; -x_333 = lean_ctor_get(x_331, 1); -lean_inc(x_333); -lean_dec(x_331); -x_334 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_333); -return x_334; +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_dec(x_315); +x_326 = lean_int_neg(x_313); +lean_dec(x_313); +x_327 = l_Int_toNat(x_326); +lean_dec(x_326); +x_328 = l_Lean_instToExprInt_mkNat(x_327); +x_329 = l_Lean_mkApp3(x_316, x_317, x_318, x_328); +x_330 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__37; +x_331 = l_Lean_mkAppB(x_330, x_264, x_329); +x_332 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_rewrite(x_323, x_331, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_324); +return x_332; } else { -uint8_t x_335; +lean_object* x_333; lean_object* x_334; lean_object* x_335; +lean_dec(x_313); +x_333 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__37; +x_334 = l_Lean_mkAppB(x_333, x_264, x_315); +x_335 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_rewrite(x_323, x_334, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_324); +return x_335; +} +} +else +{ +uint8_t x_336; +lean_dec(x_315); +lean_dec(x_313); +lean_dec(x_264); lean_dec(x_9); lean_dec(x_8); lean_dec(x_7); @@ -10204,38 +10236,83 @@ lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); -lean_dec(x_1); -x_335 = !lean_is_exclusive(x_331); -if (x_335 == 0) +x_336 = !lean_is_exclusive(x_322); +if (x_336 == 0) { -lean_object* x_336; lean_object* x_337; -x_336 = lean_ctor_get(x_331, 0); -lean_dec(x_336); -x_337 = lean_ctor_get(x_332, 0); -lean_inc(x_337); -lean_dec(x_332); -lean_ctor_set(x_331, 0, x_337); -return x_331; +return x_322; } else { -lean_object* x_338; lean_object* x_339; lean_object* x_340; -x_338 = lean_ctor_get(x_331, 1); +lean_object* x_337; lean_object* x_338; lean_object* x_339; +x_337 = lean_ctor_get(x_322, 0); +x_338 = lean_ctor_get(x_322, 1); lean_inc(x_338); -lean_dec(x_331); -x_339 = lean_ctor_get(x_332, 0); -lean_inc(x_339); -lean_dec(x_332); -x_340 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_340, 0, x_339); -lean_ctor_set(x_340, 1, x_338); -return x_340; +lean_inc(x_337); +lean_dec(x_322); +x_339 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_339, 0, x_337); +lean_ctor_set(x_339, 1, x_338); +return x_339; } } } else { -uint8_t x_341; +lean_object* x_340; lean_object* x_341; lean_object* x_342; lean_object* x_343; lean_object* x_344; +x_340 = l_Int_toNat(x_269); +x_341 = l_Lean_instToExprInt_mkNat(x_340); +x_342 = lean_array_push(x_312, x_341); +x_343 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__29; +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_6); +x_344 = l_Lean_Meta_mkAppM(x_343, x_342, x_6, x_7, x_8, x_9, x_10); +if (lean_obj_tag(x_344) == 0) +{ +lean_object* x_345; lean_object* x_346; lean_object* x_347; uint8_t x_348; +x_345 = lean_ctor_get(x_344, 0); +lean_inc(x_345); +x_346 = lean_ctor_get(x_344, 1); +lean_inc(x_346); +lean_dec(x_344); +x_347 = lean_int_neg(x_269); +lean_dec(x_269); +x_348 = lean_int_dec_le(x_270, x_347); +if (x_348 == 0) +{ +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; +x_349 = lean_int_neg(x_347); +lean_dec(x_347); +x_350 = l_Int_toNat(x_349); +lean_dec(x_349); +x_351 = l_Lean_instToExprInt_mkNat(x_350); +x_352 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__27; +x_353 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__11; +x_354 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__30; +x_355 = l_Lean_mkApp3(x_352, x_353, x_354, x_351); +x_356 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__38; +x_357 = l_Lean_mkAppB(x_356, x_264, x_355); +x_358 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_rewrite(x_345, x_357, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_346); +return x_358; +} +else +{ +lean_object* x_359; lean_object* x_360; lean_object* x_361; lean_object* x_362; lean_object* x_363; +x_359 = l_Int_toNat(x_347); +lean_dec(x_347); +x_360 = l_Lean_instToExprInt_mkNat(x_359); +x_361 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__38; +x_362 = l_Lean_mkAppB(x_361, x_264, x_360); +x_363 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_rewrite(x_345, x_362, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_346); +return x_363; +} +} +else +{ +uint8_t x_364; +lean_dec(x_269); +lean_dec(x_264); lean_dec(x_9); lean_dec(x_8); lean_dec(x_7); @@ -10243,25 +10320,27 @@ lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); -lean_dec(x_1); -x_341 = !lean_is_exclusive(x_331); -if (x_341 == 0) +x_364 = !lean_is_exclusive(x_344); +if (x_364 == 0) { -return x_331; -} -else -{ -lean_object* x_342; lean_object* x_343; lean_object* x_344; -x_342 = lean_ctor_get(x_331, 0); -x_343 = lean_ctor_get(x_331, 1); -lean_inc(x_343); -lean_inc(x_342); -lean_dec(x_331); -x_344 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_344, 0, x_342); -lean_ctor_set(x_344, 1, x_343); return x_344; } +else +{ +lean_object* x_365; lean_object* x_366; lean_object* x_367; +x_365 = lean_ctor_get(x_344, 0); +x_366 = lean_ctor_get(x_344, 1); +lean_inc(x_366); +lean_inc(x_365); +lean_dec(x_344); +x_367 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_367, 0, x_365); +lean_ctor_set(x_367, 1, x_366); +return x_367; +} +} +} +} } } } @@ -10269,222 +10348,185 @@ return x_344; } else { -lean_object* x_345; uint8_t x_346; +lean_object* x_368; uint8_t x_369; lean_dec(x_19); -x_345 = l_Lean_Elab_Tactic_Omega_mkInt___closed__3; -x_346 = lean_string_dec_eq(x_18, x_345); +x_368 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__39; +x_369 = lean_string_dec_eq(x_18, x_368); lean_dec(x_18); -if (x_346 == 0) +if (x_369 == 0) { -lean_object* x_347; +lean_object* x_370; lean_dec(x_17); -x_347 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -return x_347; +x_370 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +return x_370; } else { -lean_object* x_348; lean_object* x_349; uint8_t x_350; -x_348 = lean_array_get_size(x_17); -x_349 = lean_unsigned_to_nat(3u); -x_350 = lean_nat_dec_eq(x_348, x_349); -lean_dec(x_348); -if (x_350 == 0) +lean_object* x_371; lean_object* x_372; uint8_t x_373; +x_371 = lean_array_get_size(x_17); +x_372 = lean_unsigned_to_nat(6u); +x_373 = lean_nat_dec_eq(x_371, x_372); +lean_dec(x_371); +if (x_373 == 0) { -lean_object* x_351; +lean_object* x_374; lean_dec(x_17); -x_351 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -return x_351; +x_374 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +return x_374; } else { -lean_object* x_352; lean_object* x_353; lean_object* x_354; +lean_object* x_375; lean_object* x_376; lean_object* x_377; lean_object* x_378; lean_object* x_379; +x_375 = lean_unsigned_to_nat(4u); +x_376 = lean_array_fget(x_17, x_375); +x_377 = lean_unsigned_to_nat(5u); +x_378 = lean_array_fget(x_17, x_377); +lean_dec(x_17); +x_379 = l_Lean_Elab_Tactic_Omega_groundNat_x3f(x_378); +if (lean_obj_tag(x_379) == 0) +{ +lean_object* x_380; +lean_dec(x_376); +x_380 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +return x_380; +} +else +{ +lean_object* x_381; lean_object* x_382; lean_object* x_383; uint8_t x_384; lean_object* x_385; lean_object* x_386; lean_dec(x_1); -x_352 = lean_unsigned_to_nat(2u); -x_353 = lean_array_fget(x_17, x_352); -lean_dec(x_17); -x_354 = l_Lean_Elab_Tactic_Omega_asLinearCombo(x_353, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -if (lean_obj_tag(x_354) == 0) -{ -lean_object* x_355; lean_object* x_356; uint8_t x_357; -x_355 = lean_ctor_get(x_354, 0); -lean_inc(x_355); -x_356 = lean_ctor_get(x_355, 1); -lean_inc(x_356); -x_357 = !lean_is_exclusive(x_354); -if (x_357 == 0) -{ -lean_object* x_358; uint8_t x_359; -x_358 = lean_ctor_get(x_354, 0); -lean_dec(x_358); -x_359 = !lean_is_exclusive(x_355); -if (x_359 == 0) -{ -lean_object* x_360; lean_object* x_361; uint8_t x_362; -x_360 = lean_ctor_get(x_355, 0); -x_361 = lean_ctor_get(x_355, 1); -lean_dec(x_361); -x_362 = !lean_is_exclusive(x_356); -if (x_362 == 0) -{ -lean_object* x_363; lean_object* x_364; lean_object* x_365; lean_object* x_366; lean_object* x_367; -x_363 = lean_ctor_get(x_356, 0); -lean_inc(x_360); -x_364 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__5___boxed), 11, 2); -lean_closure_set(x_364, 0, x_360); -lean_closure_set(x_364, 1, x_363); -x_365 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__39; -x_366 = lean_alloc_closure((void*)(l_ReaderT_bind___at_Lean_Elab_Tactic_Omega_withoutModifyingState___spec__1___rarg), 10, 2); -lean_closure_set(x_366, 0, x_365); -lean_closure_set(x_366, 1, x_364); -x_367 = l_Lean_Omega_LinearCombo_neg(x_360); -lean_ctor_set(x_356, 0, x_366); -lean_ctor_set(x_355, 0, x_367); -return x_354; -} -else -{ -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; -x_368 = lean_ctor_get(x_356, 0); -x_369 = lean_ctor_get(x_356, 1); -lean_inc(x_369); -lean_inc(x_368); -lean_dec(x_356); -lean_inc(x_360); -x_370 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__5___boxed), 11, 2); -lean_closure_set(x_370, 0, x_360); -lean_closure_set(x_370, 1, x_368); -x_371 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__39; -x_372 = lean_alloc_closure((void*)(l_ReaderT_bind___at_Lean_Elab_Tactic_Omega_withoutModifyingState___spec__1___rarg), 10, 2); -lean_closure_set(x_372, 0, x_371); -lean_closure_set(x_372, 1, x_370); -x_373 = l_Lean_Omega_LinearCombo_neg(x_360); -x_374 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_374, 0, x_372); -lean_ctor_set(x_374, 1, x_369); -lean_ctor_set(x_355, 1, x_374); -lean_ctor_set(x_355, 0, x_373); -return x_354; -} -} -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; lean_object* x_382; lean_object* x_383; lean_object* x_384; -x_375 = lean_ctor_get(x_355, 0); -lean_inc(x_375); -lean_dec(x_355); -x_376 = lean_ctor_get(x_356, 0); +x_381 = lean_ctor_get(x_379, 0); +lean_inc(x_381); +lean_dec(x_379); +x_382 = lean_nat_to_int(x_381); +x_383 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__8; +x_384 = lean_int_dec_le(x_383, x_382); +x_385 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__3___closed__5; lean_inc(x_376); -x_377 = lean_ctor_get(x_356, 1); -lean_inc(x_377); -if (lean_is_exclusive(x_356)) { - lean_ctor_release(x_356, 0); - lean_ctor_release(x_356, 1); - x_378 = x_356; -} else { - lean_dec_ref(x_356); - x_378 = lean_box(0); -} -lean_inc(x_375); -x_379 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__5___boxed), 11, 2); -lean_closure_set(x_379, 0, x_375); -lean_closure_set(x_379, 1, x_376); -x_380 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__39; -x_381 = lean_alloc_closure((void*)(l_ReaderT_bind___at_Lean_Elab_Tactic_Omega_withoutModifyingState___spec__1___rarg), 10, 2); -lean_closure_set(x_381, 0, x_380); -lean_closure_set(x_381, 1, x_379); -x_382 = l_Lean_Omega_LinearCombo_neg(x_375); -if (lean_is_scalar(x_378)) { - x_383 = lean_alloc_ctor(0, 2, 0); -} else { - x_383 = x_378; -} -lean_ctor_set(x_383, 0, x_381); -lean_ctor_set(x_383, 1, x_377); -x_384 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_384, 0, x_382); -lean_ctor_set(x_384, 1, x_383); -lean_ctor_set(x_354, 0, x_384); -return x_354; -} -} -else +x_386 = lean_array_push(x_385, x_376); +if (x_384 == 0) { -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; -x_385 = lean_ctor_get(x_354, 1); -lean_inc(x_385); -lean_dec(x_354); -x_386 = lean_ctor_get(x_355, 0); -lean_inc(x_386); -if (lean_is_exclusive(x_355)) { - lean_ctor_release(x_355, 0); - lean_ctor_release(x_355, 1); - x_387 = x_355; -} else { - lean_dec_ref(x_355); - x_387 = lean_box(0); -} -x_388 = lean_ctor_get(x_356, 0); -lean_inc(x_388); -x_389 = lean_ctor_get(x_356, 1); -lean_inc(x_389); -if (lean_is_exclusive(x_356)) { - lean_ctor_release(x_356, 0); - lean_ctor_release(x_356, 1); - x_390 = x_356; -} else { - lean_dec_ref(x_356); - x_390 = lean_box(0); -} -lean_inc(x_386); -x_391 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__5___boxed), 11, 2); -lean_closure_set(x_391, 0, x_386); -lean_closure_set(x_391, 1, x_388); -x_392 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__39; -x_393 = lean_alloc_closure((void*)(l_ReaderT_bind___at_Lean_Elab_Tactic_Omega_withoutModifyingState___spec__1___rarg), 10, 2); -lean_closure_set(x_393, 0, x_392); -lean_closure_set(x_393, 1, x_391); -x_394 = l_Lean_Omega_LinearCombo_neg(x_386); -if (lean_is_scalar(x_390)) { - x_395 = lean_alloc_ctor(0, 2, 0); -} else { - x_395 = x_390; -} -lean_ctor_set(x_395, 0, x_393); -lean_ctor_set(x_395, 1, x_389); -if (lean_is_scalar(x_387)) { - x_396 = lean_alloc_ctor(0, 2, 0); -} else { - x_396 = x_387; -} -lean_ctor_set(x_396, 0, x_394); -lean_ctor_set(x_396, 1, x_395); -x_397 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_397, 0, x_396); -lean_ctor_set(x_397, 1, x_385); -return x_397; -} -} -else +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; +x_387 = lean_int_neg(x_382); +lean_dec(x_382); +x_388 = l_Int_toNat(x_387); +lean_dec(x_387); +x_389 = l_Lean_instToExprInt_mkNat(x_388); +x_390 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__31; +x_391 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__11; +x_392 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__30; +x_393 = l_Lean_mkApp3(x_390, x_391, x_392, x_389); +lean_inc(x_393); +x_394 = lean_array_push(x_386, x_393); +x_395 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__40; +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_6); +x_396 = l_Lean_Meta_mkAppM(x_395, x_394, x_6, x_7, x_8, x_9, x_10); +if (lean_obj_tag(x_396) == 0) { -uint8_t x_398; -x_398 = !lean_is_exclusive(x_354); -if (x_398 == 0) -{ -return x_354; -} -else -{ -lean_object* x_399; lean_object* x_400; lean_object* x_401; -x_399 = lean_ctor_get(x_354, 0); -x_400 = lean_ctor_get(x_354, 1); -lean_inc(x_400); -lean_inc(x_399); -lean_dec(x_354); -x_401 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_401, 0, x_399); -lean_ctor_set(x_401, 1, x_400); +lean_object* x_397; lean_object* x_398; lean_object* x_399; lean_object* x_400; lean_object* x_401; +x_397 = lean_ctor_get(x_396, 0); +lean_inc(x_397); +x_398 = lean_ctor_get(x_396, 1); +lean_inc(x_398); +lean_dec(x_396); +x_399 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__43; +x_400 = l_Lean_mkAppB(x_399, x_376, x_393); +x_401 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_rewrite(x_397, x_400, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_398); return x_401; } +else +{ +uint8_t x_402; +lean_dec(x_393); +lean_dec(x_376); +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_402 = !lean_is_exclusive(x_396); +if (x_402 == 0) +{ +return x_396; +} +else +{ +lean_object* x_403; lean_object* x_404; lean_object* x_405; +x_403 = lean_ctor_get(x_396, 0); +x_404 = lean_ctor_get(x_396, 1); +lean_inc(x_404); +lean_inc(x_403); +lean_dec(x_396); +x_405 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_405, 0, x_403); +lean_ctor_set(x_405, 1, x_404); +return x_405; +} +} +} +else +{ +lean_object* x_406; lean_object* x_407; lean_object* x_408; lean_object* x_409; lean_object* x_410; +x_406 = l_Int_toNat(x_382); +lean_dec(x_382); +x_407 = l_Lean_instToExprInt_mkNat(x_406); +lean_inc(x_407); +x_408 = lean_array_push(x_386, x_407); +x_409 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__40; +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_6); +x_410 = l_Lean_Meta_mkAppM(x_409, x_408, x_6, x_7, x_8, x_9, x_10); +if (lean_obj_tag(x_410) == 0) +{ +lean_object* x_411; lean_object* x_412; lean_object* x_413; lean_object* x_414; lean_object* x_415; +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); +x_413 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__44; +x_414 = l_Lean_mkAppB(x_413, x_376, x_407); +x_415 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_rewrite(x_411, x_414, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_412); +return x_415; +} +else +{ +uint8_t x_416; +lean_dec(x_407); +lean_dec(x_376); +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_416 = !lean_is_exclusive(x_410); +if (x_416 == 0) +{ +return x_410; +} +else +{ +lean_object* x_417; lean_object* x_418; lean_object* x_419; +x_417 = lean_ctor_get(x_410, 0); +x_418 = lean_ctor_get(x_410, 1); +lean_inc(x_418); +lean_inc(x_417); +lean_dec(x_410); +x_419 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_419, 0, x_417); +lean_ctor_set(x_419, 1, x_418); +return x_419; +} +} +} } } } @@ -10492,40 +10534,401 @@ return x_401; } else { -lean_object* x_402; uint8_t x_403; +lean_object* x_420; uint8_t x_421; lean_dec(x_19); -x_402 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__40; -x_403 = lean_string_dec_eq(x_18, x_402); +x_420 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__45; +x_421 = lean_string_dec_eq(x_18, x_420); lean_dec(x_18); -if (x_403 == 0) +if (x_421 == 0) { -lean_object* x_404; +lean_object* x_422; lean_dec(x_17); -x_404 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -return x_404; +x_422 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +return x_422; } else { -lean_object* x_405; lean_object* x_406; uint8_t x_407; -x_405 = lean_array_get_size(x_17); -x_406 = lean_unsigned_to_nat(6u); -x_407 = lean_nat_dec_eq(x_405, x_406); -lean_dec(x_405); -if (x_407 == 0) +lean_object* x_423; lean_object* x_424; uint8_t x_425; +x_423 = lean_array_get_size(x_17); +x_424 = lean_unsigned_to_nat(6u); +x_425 = lean_nat_dec_eq(x_423, x_424); +lean_dec(x_423); +if (x_425 == 0) { -lean_object* x_408; +lean_object* x_426; lean_dec(x_17); -x_408 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -return x_408; +x_426 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +return x_426; } else { -lean_object* x_409; lean_object* x_410; lean_object* x_411; lean_object* x_412; lean_object* x_413; +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; +x_427 = lean_unsigned_to_nat(4u); +x_428 = lean_array_fget(x_17, x_427); +x_429 = lean_unsigned_to_nat(5u); +x_430 = lean_array_fget(x_17, x_429); +lean_dec(x_17); +x_431 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Omega_asLinearCombo), 9, 1); +lean_closure_set(x_431, 0, x_428); +x_432 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__4), 10, 1); +lean_closure_set(x_432, 0, x_430); +x_433 = lean_alloc_closure((void*)(l_ReaderT_bind___at_Lean_Elab_Tactic_Omega_withoutModifyingState___spec__1___rarg), 10, 2); +lean_closure_set(x_433, 0, x_431); +lean_closure_set(x_433, 1, x_432); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +x_434 = l_Lean_Elab_Tactic_Omega_commitWhen___rarg(x_433, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +if (lean_obj_tag(x_434) == 0) +{ +lean_object* x_435; +x_435 = lean_ctor_get(x_434, 0); +lean_inc(x_435); +if (lean_obj_tag(x_435) == 0) +{ +lean_object* x_436; lean_object* x_437; +x_436 = lean_ctor_get(x_434, 1); +lean_inc(x_436); +lean_dec(x_434); +x_437 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_436); +return x_437; +} +else +{ +uint8_t x_438; +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); lean_dec(x_1); -x_409 = lean_unsigned_to_nat(4u); -x_410 = lean_array_fget(x_17, x_409); -x_411 = lean_unsigned_to_nat(5u); -x_412 = lean_array_fget(x_17, x_411); +x_438 = !lean_is_exclusive(x_434); +if (x_438 == 0) +{ +lean_object* x_439; lean_object* x_440; +x_439 = lean_ctor_get(x_434, 0); +lean_dec(x_439); +x_440 = lean_ctor_get(x_435, 0); +lean_inc(x_440); +lean_dec(x_435); +lean_ctor_set(x_434, 0, x_440); +return x_434; +} +else +{ +lean_object* x_441; lean_object* x_442; lean_object* x_443; +x_441 = lean_ctor_get(x_434, 1); +lean_inc(x_441); +lean_dec(x_434); +x_442 = lean_ctor_get(x_435, 0); +lean_inc(x_442); +lean_dec(x_435); +x_443 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_443, 0, x_442); +lean_ctor_set(x_443, 1, x_441); +return x_443; +} +} +} +else +{ +uint8_t x_444; +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); +lean_dec(x_1); +x_444 = !lean_is_exclusive(x_434); +if (x_444 == 0) +{ +return x_434; +} +else +{ +lean_object* x_445; lean_object* x_446; lean_object* x_447; +x_445 = lean_ctor_get(x_434, 0); +x_446 = lean_ctor_get(x_434, 1); +lean_inc(x_446); +lean_inc(x_445); +lean_dec(x_434); +x_447 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_447, 0, x_445); +lean_ctor_set(x_447, 1, x_446); +return x_447; +} +} +} +} +} +} +else +{ +lean_object* x_448; uint8_t x_449; +lean_dec(x_19); +x_448 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__23; +x_449 = lean_string_dec_eq(x_18, x_448); +lean_dec(x_18); +if (x_449 == 0) +{ +lean_object* x_450; +lean_dec(x_17); +x_450 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +return x_450; +} +else +{ +lean_object* x_451; lean_object* x_452; uint8_t x_453; +x_451 = lean_array_get_size(x_17); +x_452 = lean_unsigned_to_nat(3u); +x_453 = lean_nat_dec_eq(x_451, x_452); +lean_dec(x_451); +if (x_453 == 0) +{ +lean_object* x_454; +lean_dec(x_17); +x_454 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +return x_454; +} +else +{ +lean_object* x_455; lean_object* x_456; lean_object* x_457; +lean_dec(x_1); +x_455 = lean_unsigned_to_nat(2u); +x_456 = lean_array_fget(x_17, x_455); +lean_dec(x_17); +x_457 = l_Lean_Elab_Tactic_Omega_asLinearCombo(x_456, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +if (lean_obj_tag(x_457) == 0) +{ +lean_object* x_458; lean_object* x_459; uint8_t x_460; +x_458 = lean_ctor_get(x_457, 0); +lean_inc(x_458); +x_459 = lean_ctor_get(x_458, 1); +lean_inc(x_459); +x_460 = !lean_is_exclusive(x_457); +if (x_460 == 0) +{ +lean_object* x_461; uint8_t x_462; +x_461 = lean_ctor_get(x_457, 0); +lean_dec(x_461); +x_462 = !lean_is_exclusive(x_458); +if (x_462 == 0) +{ +lean_object* x_463; lean_object* x_464; uint8_t x_465; +x_463 = lean_ctor_get(x_458, 0); +x_464 = lean_ctor_get(x_458, 1); +lean_dec(x_464); +x_465 = !lean_is_exclusive(x_459); +if (x_465 == 0) +{ +lean_object* x_466; lean_object* x_467; lean_object* x_468; lean_object* x_469; lean_object* x_470; +x_466 = lean_ctor_get(x_459, 0); +lean_inc(x_463); +x_467 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__5___boxed), 11, 2); +lean_closure_set(x_467, 0, x_463); +lean_closure_set(x_467, 1, x_466); +x_468 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__46; +x_469 = lean_alloc_closure((void*)(l_ReaderT_bind___at_Lean_Elab_Tactic_Omega_withoutModifyingState___spec__1___rarg), 10, 2); +lean_closure_set(x_469, 0, x_468); +lean_closure_set(x_469, 1, x_467); +x_470 = l_Lean_Omega_LinearCombo_neg(x_463); +lean_ctor_set(x_459, 0, x_469); +lean_ctor_set(x_458, 0, x_470); +return x_457; +} +else +{ +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; +x_471 = lean_ctor_get(x_459, 0); +x_472 = lean_ctor_get(x_459, 1); +lean_inc(x_472); +lean_inc(x_471); +lean_dec(x_459); +lean_inc(x_463); +x_473 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__5___boxed), 11, 2); +lean_closure_set(x_473, 0, x_463); +lean_closure_set(x_473, 1, x_471); +x_474 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__46; +x_475 = lean_alloc_closure((void*)(l_ReaderT_bind___at_Lean_Elab_Tactic_Omega_withoutModifyingState___spec__1___rarg), 10, 2); +lean_closure_set(x_475, 0, x_474); +lean_closure_set(x_475, 1, x_473); +x_476 = l_Lean_Omega_LinearCombo_neg(x_463); +x_477 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_477, 0, x_475); +lean_ctor_set(x_477, 1, x_472); +lean_ctor_set(x_458, 1, x_477); +lean_ctor_set(x_458, 0, x_476); +return x_457; +} +} +else +{ +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; +x_478 = lean_ctor_get(x_458, 0); +lean_inc(x_478); +lean_dec(x_458); +x_479 = lean_ctor_get(x_459, 0); +lean_inc(x_479); +x_480 = lean_ctor_get(x_459, 1); +lean_inc(x_480); +if (lean_is_exclusive(x_459)) { + lean_ctor_release(x_459, 0); + lean_ctor_release(x_459, 1); + x_481 = x_459; +} else { + lean_dec_ref(x_459); + x_481 = lean_box(0); +} +lean_inc(x_478); +x_482 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__5___boxed), 11, 2); +lean_closure_set(x_482, 0, x_478); +lean_closure_set(x_482, 1, x_479); +x_483 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__46; +x_484 = lean_alloc_closure((void*)(l_ReaderT_bind___at_Lean_Elab_Tactic_Omega_withoutModifyingState___spec__1___rarg), 10, 2); +lean_closure_set(x_484, 0, x_483); +lean_closure_set(x_484, 1, x_482); +x_485 = l_Lean_Omega_LinearCombo_neg(x_478); +if (lean_is_scalar(x_481)) { + x_486 = lean_alloc_ctor(0, 2, 0); +} else { + x_486 = x_481; +} +lean_ctor_set(x_486, 0, x_484); +lean_ctor_set(x_486, 1, x_480); +x_487 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_487, 0, x_485); +lean_ctor_set(x_487, 1, x_486); +lean_ctor_set(x_457, 0, x_487); +return x_457; +} +} +else +{ +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; +x_488 = lean_ctor_get(x_457, 1); +lean_inc(x_488); +lean_dec(x_457); +x_489 = lean_ctor_get(x_458, 0); +lean_inc(x_489); +if (lean_is_exclusive(x_458)) { + lean_ctor_release(x_458, 0); + lean_ctor_release(x_458, 1); + x_490 = x_458; +} else { + lean_dec_ref(x_458); + x_490 = lean_box(0); +} +x_491 = lean_ctor_get(x_459, 0); +lean_inc(x_491); +x_492 = lean_ctor_get(x_459, 1); +lean_inc(x_492); +if (lean_is_exclusive(x_459)) { + lean_ctor_release(x_459, 0); + lean_ctor_release(x_459, 1); + x_493 = x_459; +} else { + lean_dec_ref(x_459); + x_493 = lean_box(0); +} +lean_inc(x_489); +x_494 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__5___boxed), 11, 2); +lean_closure_set(x_494, 0, x_489); +lean_closure_set(x_494, 1, x_491); +x_495 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__46; +x_496 = lean_alloc_closure((void*)(l_ReaderT_bind___at_Lean_Elab_Tactic_Omega_withoutModifyingState___spec__1___rarg), 10, 2); +lean_closure_set(x_496, 0, x_495); +lean_closure_set(x_496, 1, x_494); +x_497 = l_Lean_Omega_LinearCombo_neg(x_489); +if (lean_is_scalar(x_493)) { + x_498 = lean_alloc_ctor(0, 2, 0); +} else { + x_498 = x_493; +} +lean_ctor_set(x_498, 0, x_496); +lean_ctor_set(x_498, 1, x_492); +if (lean_is_scalar(x_490)) { + x_499 = lean_alloc_ctor(0, 2, 0); +} else { + x_499 = x_490; +} +lean_ctor_set(x_499, 0, x_497); +lean_ctor_set(x_499, 1, x_498); +x_500 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_500, 0, x_499); +lean_ctor_set(x_500, 1, x_488); +return x_500; +} +} +else +{ +uint8_t x_501; +x_501 = !lean_is_exclusive(x_457); +if (x_501 == 0) +{ +return x_457; +} +else +{ +lean_object* x_502; lean_object* x_503; lean_object* x_504; +x_502 = lean_ctor_get(x_457, 0); +x_503 = lean_ctor_get(x_457, 1); +lean_inc(x_503); +lean_inc(x_502); +lean_dec(x_457); +x_504 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_504, 0, x_502); +lean_ctor_set(x_504, 1, x_503); +return x_504; +} +} +} +} +} +} +else +{ +lean_object* x_505; uint8_t x_506; +lean_dec(x_19); +x_505 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__47; +x_506 = lean_string_dec_eq(x_18, x_505); +lean_dec(x_18); +if (x_506 == 0) +{ +lean_object* x_507; +lean_dec(x_17); +x_507 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +return x_507; +} +else +{ +lean_object* x_508; lean_object* x_509; uint8_t x_510; +x_508 = lean_array_get_size(x_17); +x_509 = lean_unsigned_to_nat(6u); +x_510 = lean_nat_dec_eq(x_508, x_509); +lean_dec(x_508); +if (x_510 == 0) +{ +lean_object* x_511; +lean_dec(x_17); +x_511 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +return x_511; +} +else +{ +lean_object* x_512; lean_object* x_513; lean_object* x_514; lean_object* x_515; lean_object* x_516; +lean_dec(x_1); +x_512 = lean_unsigned_to_nat(4u); +x_513 = lean_array_fget(x_17, x_512); +x_514 = lean_unsigned_to_nat(5u); +x_515 = lean_array_fget(x_17, x_514); lean_dec(x_17); lean_inc(x_9); lean_inc(x_8); @@ -10534,503 +10937,503 @@ lean_inc(x_6); lean_inc(x_5); lean_inc(x_4); lean_inc(x_3); -x_413 = l_Lean_Elab_Tactic_Omega_asLinearCombo(x_410, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -if (lean_obj_tag(x_413) == 0) +x_516 = l_Lean_Elab_Tactic_Omega_asLinearCombo(x_513, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +if (lean_obj_tag(x_516) == 0) { -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; -x_414 = lean_ctor_get(x_413, 0); -lean_inc(x_414); -x_415 = lean_ctor_get(x_414, 1); -lean_inc(x_415); -x_416 = lean_ctor_get(x_413, 1); -lean_inc(x_416); -lean_dec(x_413); -x_417 = lean_ctor_get(x_414, 0); -lean_inc(x_417); -lean_dec(x_414); -x_418 = lean_ctor_get(x_415, 0); -lean_inc(x_418); -x_419 = lean_ctor_get(x_415, 1); -lean_inc(x_419); -lean_dec(x_415); -x_420 = l_Lean_Elab_Tactic_Omega_asLinearCombo(x_412, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_416); -if (lean_obj_tag(x_420) == 0) +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; +x_517 = lean_ctor_get(x_516, 0); +lean_inc(x_517); +x_518 = lean_ctor_get(x_517, 1); +lean_inc(x_518); +x_519 = lean_ctor_get(x_516, 1); +lean_inc(x_519); +lean_dec(x_516); +x_520 = lean_ctor_get(x_517, 0); +lean_inc(x_520); +lean_dec(x_517); +x_521 = lean_ctor_get(x_518, 0); +lean_inc(x_521); +x_522 = lean_ctor_get(x_518, 1); +lean_inc(x_522); +lean_dec(x_518); +x_523 = l_Lean_Elab_Tactic_Omega_asLinearCombo(x_515, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_519); +if (lean_obj_tag(x_523) == 0) { -lean_object* x_421; lean_object* x_422; uint8_t x_423; -x_421 = lean_ctor_get(x_420, 0); -lean_inc(x_421); -x_422 = lean_ctor_get(x_421, 1); -lean_inc(x_422); -x_423 = !lean_is_exclusive(x_420); -if (x_423 == 0) +lean_object* x_524; lean_object* x_525; uint8_t x_526; +x_524 = lean_ctor_get(x_523, 0); +lean_inc(x_524); +x_525 = lean_ctor_get(x_524, 1); +lean_inc(x_525); +x_526 = !lean_is_exclusive(x_523); +if (x_526 == 0) { -lean_object* x_424; uint8_t x_425; -x_424 = lean_ctor_get(x_420, 0); -lean_dec(x_424); -x_425 = !lean_is_exclusive(x_421); -if (x_425 == 0) +lean_object* x_527; uint8_t x_528; +x_527 = lean_ctor_get(x_523, 0); +lean_dec(x_527); +x_528 = !lean_is_exclusive(x_524); +if (x_528 == 0) { -lean_object* x_426; lean_object* x_427; uint8_t x_428; -x_426 = lean_ctor_get(x_421, 0); -x_427 = lean_ctor_get(x_421, 1); -lean_dec(x_427); -x_428 = !lean_is_exclusive(x_422); -if (x_428 == 0) +lean_object* x_529; lean_object* x_530; uint8_t x_531; +x_529 = lean_ctor_get(x_524, 0); +x_530 = lean_ctor_get(x_524, 1); +lean_dec(x_530); +x_531 = !lean_is_exclusive(x_525); +if (x_531 == 0) { -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; uint8_t x_438; -x_429 = lean_ctor_get(x_422, 0); -x_430 = lean_ctor_get(x_422, 1); -lean_inc(x_426); -lean_inc(x_417); -x_431 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__6___boxed), 13, 4); -lean_closure_set(x_431, 0, x_417); -lean_closure_set(x_431, 1, x_426); -lean_closure_set(x_431, 2, x_418); -lean_closure_set(x_431, 3, x_429); -x_432 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__39; -x_433 = lean_alloc_closure((void*)(l_ReaderT_bind___at_Lean_Elab_Tactic_Omega_withoutModifyingState___spec__1___rarg), 10, 2); -lean_closure_set(x_433, 0, x_432); -lean_closure_set(x_433, 1, x_431); -x_434 = l_Lean_Omega_LinearCombo_sub(x_417, x_426); -x_435 = lean_ctor_get(x_430, 1); -lean_inc(x_435); -lean_dec(x_430); -x_436 = lean_array_get_size(x_435); -x_437 = lean_unsigned_to_nat(0u); -x_438 = lean_nat_dec_lt(x_437, x_436); -if (x_438 == 0) +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; uint8_t x_541; +x_532 = lean_ctor_get(x_525, 0); +x_533 = lean_ctor_get(x_525, 1); +lean_inc(x_529); +lean_inc(x_520); +x_534 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__6___boxed), 13, 4); +lean_closure_set(x_534, 0, x_520); +lean_closure_set(x_534, 1, x_529); +lean_closure_set(x_534, 2, x_521); +lean_closure_set(x_534, 3, x_532); +x_535 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__46; +x_536 = lean_alloc_closure((void*)(l_ReaderT_bind___at_Lean_Elab_Tactic_Omega_withoutModifyingState___spec__1___rarg), 10, 2); +lean_closure_set(x_536, 0, x_535); +lean_closure_set(x_536, 1, x_534); +x_537 = l_Lean_Omega_LinearCombo_sub(x_520, x_529); +x_538 = lean_ctor_get(x_533, 1); +lean_inc(x_538); +lean_dec(x_533); +x_539 = lean_array_get_size(x_538); +x_540 = lean_unsigned_to_nat(0u); +x_541 = lean_nat_dec_lt(x_540, x_539); +if (x_541 == 0) { -lean_dec(x_436); -lean_dec(x_435); -lean_ctor_set(x_422, 1, x_419); -lean_ctor_set(x_422, 0, x_433); -lean_ctor_set(x_421, 0, x_434); -return x_420; -} -else -{ -uint8_t x_439; -x_439 = lean_nat_dec_le(x_436, x_436); -if (x_439 == 0) -{ -lean_dec(x_436); -lean_dec(x_435); -lean_ctor_set(x_422, 1, x_419); -lean_ctor_set(x_422, 0, x_433); -lean_ctor_set(x_421, 0, x_434); -return x_420; -} -else -{ -size_t x_440; size_t x_441; lean_object* x_442; -x_440 = 0; -x_441 = lean_usize_of_nat(x_436); -lean_dec(x_436); -x_442 = l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_Omega_asLinearComboImpl___spec__3(x_435, x_440, x_441, x_419); -lean_dec(x_435); -lean_ctor_set(x_422, 1, x_442); -lean_ctor_set(x_422, 0, x_433); -lean_ctor_set(x_421, 0, x_434); -return x_420; -} -} -} -else -{ -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; uint8_t x_452; -x_443 = lean_ctor_get(x_422, 0); -x_444 = lean_ctor_get(x_422, 1); -lean_inc(x_444); -lean_inc(x_443); -lean_dec(x_422); -lean_inc(x_426); -lean_inc(x_417); -x_445 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__6___boxed), 13, 4); -lean_closure_set(x_445, 0, x_417); -lean_closure_set(x_445, 1, x_426); -lean_closure_set(x_445, 2, x_418); -lean_closure_set(x_445, 3, x_443); -x_446 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__39; -x_447 = lean_alloc_closure((void*)(l_ReaderT_bind___at_Lean_Elab_Tactic_Omega_withoutModifyingState___spec__1___rarg), 10, 2); -lean_closure_set(x_447, 0, x_446); -lean_closure_set(x_447, 1, x_445); -x_448 = l_Lean_Omega_LinearCombo_sub(x_417, x_426); -x_449 = lean_ctor_get(x_444, 1); -lean_inc(x_449); -lean_dec(x_444); -x_450 = lean_array_get_size(x_449); -x_451 = lean_unsigned_to_nat(0u); -x_452 = lean_nat_dec_lt(x_451, x_450); -if (x_452 == 0) -{ -lean_object* x_453; -lean_dec(x_450); -lean_dec(x_449); -x_453 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_453, 0, x_447); -lean_ctor_set(x_453, 1, x_419); -lean_ctor_set(x_421, 1, x_453); -lean_ctor_set(x_421, 0, x_448); -return x_420; -} -else -{ -uint8_t x_454; -x_454 = lean_nat_dec_le(x_450, x_450); -if (x_454 == 0) -{ -lean_object* x_455; -lean_dec(x_450); -lean_dec(x_449); -x_455 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_455, 0, x_447); -lean_ctor_set(x_455, 1, x_419); -lean_ctor_set(x_421, 1, x_455); -lean_ctor_set(x_421, 0, x_448); -return x_420; -} -else -{ -size_t x_456; size_t x_457; lean_object* x_458; lean_object* x_459; -x_456 = 0; -x_457 = lean_usize_of_nat(x_450); -lean_dec(x_450); -x_458 = l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_Omega_asLinearComboImpl___spec__3(x_449, x_456, x_457, x_419); -lean_dec(x_449); -x_459 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_459, 0, x_447); -lean_ctor_set(x_459, 1, x_458); -lean_ctor_set(x_421, 1, x_459); -lean_ctor_set(x_421, 0, x_448); -return x_420; -} -} -} -} -else -{ -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; uint8_t x_471; -x_460 = lean_ctor_get(x_421, 0); -lean_inc(x_460); -lean_dec(x_421); -x_461 = lean_ctor_get(x_422, 0); -lean_inc(x_461); -x_462 = lean_ctor_get(x_422, 1); -lean_inc(x_462); -if (lean_is_exclusive(x_422)) { - lean_ctor_release(x_422, 0); - lean_ctor_release(x_422, 1); - x_463 = x_422; -} else { - lean_dec_ref(x_422); - x_463 = lean_box(0); -} -lean_inc(x_460); -lean_inc(x_417); -x_464 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__6___boxed), 13, 4); -lean_closure_set(x_464, 0, x_417); -lean_closure_set(x_464, 1, x_460); -lean_closure_set(x_464, 2, x_418); -lean_closure_set(x_464, 3, x_461); -x_465 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__39; -x_466 = lean_alloc_closure((void*)(l_ReaderT_bind___at_Lean_Elab_Tactic_Omega_withoutModifyingState___spec__1___rarg), 10, 2); -lean_closure_set(x_466, 0, x_465); -lean_closure_set(x_466, 1, x_464); -x_467 = l_Lean_Omega_LinearCombo_sub(x_417, x_460); -x_468 = lean_ctor_get(x_462, 1); -lean_inc(x_468); -lean_dec(x_462); -x_469 = lean_array_get_size(x_468); -x_470 = lean_unsigned_to_nat(0u); -x_471 = lean_nat_dec_lt(x_470, x_469); -if (x_471 == 0) -{ -lean_object* x_472; lean_object* x_473; -lean_dec(x_469); -lean_dec(x_468); -if (lean_is_scalar(x_463)) { - x_472 = lean_alloc_ctor(0, 2, 0); -} else { - x_472 = x_463; -} -lean_ctor_set(x_472, 0, x_466); -lean_ctor_set(x_472, 1, x_419); -x_473 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_473, 0, x_467); -lean_ctor_set(x_473, 1, x_472); -lean_ctor_set(x_420, 0, x_473); -return x_420; -} -else -{ -uint8_t x_474; -x_474 = lean_nat_dec_le(x_469, x_469); -if (x_474 == 0) -{ -lean_object* x_475; lean_object* x_476; -lean_dec(x_469); -lean_dec(x_468); -if (lean_is_scalar(x_463)) { - x_475 = lean_alloc_ctor(0, 2, 0); -} else { - x_475 = x_463; -} -lean_ctor_set(x_475, 0, x_466); -lean_ctor_set(x_475, 1, x_419); -x_476 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_476, 0, x_467); -lean_ctor_set(x_476, 1, x_475); -lean_ctor_set(x_420, 0, x_476); -return x_420; -} -else -{ -size_t x_477; size_t x_478; lean_object* x_479; lean_object* x_480; lean_object* x_481; -x_477 = 0; -x_478 = lean_usize_of_nat(x_469); -lean_dec(x_469); -x_479 = l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_Omega_asLinearComboImpl___spec__3(x_468, x_477, x_478, x_419); -lean_dec(x_468); -if (lean_is_scalar(x_463)) { - x_480 = lean_alloc_ctor(0, 2, 0); -} else { - x_480 = x_463; -} -lean_ctor_set(x_480, 0, x_466); -lean_ctor_set(x_480, 1, x_479); -x_481 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_481, 0, x_467); -lean_ctor_set(x_481, 1, x_480); -lean_ctor_set(x_420, 0, x_481); -return x_420; -} -} -} -} -else -{ -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; uint8_t x_495; -x_482 = lean_ctor_get(x_420, 1); -lean_inc(x_482); -lean_dec(x_420); -x_483 = lean_ctor_get(x_421, 0); -lean_inc(x_483); -if (lean_is_exclusive(x_421)) { - lean_ctor_release(x_421, 0); - lean_ctor_release(x_421, 1); - x_484 = x_421; -} else { - lean_dec_ref(x_421); - x_484 = lean_box(0); -} -x_485 = lean_ctor_get(x_422, 0); -lean_inc(x_485); -x_486 = lean_ctor_get(x_422, 1); -lean_inc(x_486); -if (lean_is_exclusive(x_422)) { - lean_ctor_release(x_422, 0); - lean_ctor_release(x_422, 1); - x_487 = x_422; -} else { - lean_dec_ref(x_422); - x_487 = lean_box(0); -} -lean_inc(x_483); -lean_inc(x_417); -x_488 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__6___boxed), 13, 4); -lean_closure_set(x_488, 0, x_417); -lean_closure_set(x_488, 1, x_483); -lean_closure_set(x_488, 2, x_418); -lean_closure_set(x_488, 3, x_485); -x_489 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__39; -x_490 = lean_alloc_closure((void*)(l_ReaderT_bind___at_Lean_Elab_Tactic_Omega_withoutModifyingState___spec__1___rarg), 10, 2); -lean_closure_set(x_490, 0, x_489); -lean_closure_set(x_490, 1, x_488); -x_491 = l_Lean_Omega_LinearCombo_sub(x_417, x_483); -x_492 = lean_ctor_get(x_486, 1); -lean_inc(x_492); -lean_dec(x_486); -x_493 = lean_array_get_size(x_492); -x_494 = lean_unsigned_to_nat(0u); -x_495 = lean_nat_dec_lt(x_494, x_493); -if (x_495 == 0) -{ -lean_object* x_496; lean_object* x_497; lean_object* x_498; -lean_dec(x_493); -lean_dec(x_492); -if (lean_is_scalar(x_487)) { - x_496 = lean_alloc_ctor(0, 2, 0); -} else { - x_496 = x_487; -} -lean_ctor_set(x_496, 0, x_490); -lean_ctor_set(x_496, 1, x_419); -if (lean_is_scalar(x_484)) { - x_497 = lean_alloc_ctor(0, 2, 0); -} else { - x_497 = x_484; -} -lean_ctor_set(x_497, 0, x_491); -lean_ctor_set(x_497, 1, x_496); -x_498 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_498, 0, x_497); -lean_ctor_set(x_498, 1, x_482); -return x_498; -} -else -{ -uint8_t x_499; -x_499 = lean_nat_dec_le(x_493, x_493); -if (x_499 == 0) -{ -lean_object* x_500; lean_object* x_501; lean_object* x_502; -lean_dec(x_493); -lean_dec(x_492); -if (lean_is_scalar(x_487)) { - x_500 = lean_alloc_ctor(0, 2, 0); -} else { - x_500 = x_487; -} -lean_ctor_set(x_500, 0, x_490); -lean_ctor_set(x_500, 1, x_419); -if (lean_is_scalar(x_484)) { - x_501 = lean_alloc_ctor(0, 2, 0); -} else { - x_501 = x_484; -} -lean_ctor_set(x_501, 0, x_491); -lean_ctor_set(x_501, 1, x_500); -x_502 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_502, 0, x_501); -lean_ctor_set(x_502, 1, x_482); -return x_502; -} -else -{ -size_t x_503; size_t x_504; lean_object* x_505; lean_object* x_506; lean_object* x_507; lean_object* x_508; -x_503 = 0; -x_504 = lean_usize_of_nat(x_493); -lean_dec(x_493); -x_505 = l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_Omega_asLinearComboImpl___spec__3(x_492, x_503, x_504, x_419); -lean_dec(x_492); -if (lean_is_scalar(x_487)) { - x_506 = lean_alloc_ctor(0, 2, 0); -} else { - x_506 = x_487; -} -lean_ctor_set(x_506, 0, x_490); -lean_ctor_set(x_506, 1, x_505); -if (lean_is_scalar(x_484)) { - x_507 = lean_alloc_ctor(0, 2, 0); -} else { - x_507 = x_484; -} -lean_ctor_set(x_507, 0, x_491); -lean_ctor_set(x_507, 1, x_506); -x_508 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_508, 0, x_507); -lean_ctor_set(x_508, 1, x_482); -return x_508; -} -} -} -} -else -{ -uint8_t x_509; -lean_dec(x_419); -lean_dec(x_418); -lean_dec(x_417); -x_509 = !lean_is_exclusive(x_420); -if (x_509 == 0) -{ -return x_420; -} -else -{ -lean_object* x_510; lean_object* x_511; lean_object* x_512; -x_510 = lean_ctor_get(x_420, 0); -x_511 = lean_ctor_get(x_420, 1); -lean_inc(x_511); -lean_inc(x_510); -lean_dec(x_420); -x_512 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_512, 0, x_510); -lean_ctor_set(x_512, 1, x_511); -return x_512; -} -} -} -else -{ -uint8_t x_513; -lean_dec(x_412); -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_513 = !lean_is_exclusive(x_413); -if (x_513 == 0) -{ -return x_413; -} -else -{ -lean_object* x_514; lean_object* x_515; lean_object* x_516; -x_514 = lean_ctor_get(x_413, 0); -x_515 = lean_ctor_get(x_413, 1); -lean_inc(x_515); -lean_inc(x_514); -lean_dec(x_413); -x_516 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_516, 0, x_514); -lean_ctor_set(x_516, 1, x_515); -return x_516; -} -} -} -} -} -} -else -{ -lean_object* x_517; uint8_t x_518; -lean_dec(x_19); -x_517 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__41; -x_518 = lean_string_dec_eq(x_18, x_517); -lean_dec(x_18); -if (x_518 == 0) -{ -lean_object* x_519; -lean_dec(x_17); -x_519 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -return x_519; -} -else -{ -lean_object* x_520; lean_object* x_521; uint8_t x_522; -x_520 = lean_array_get_size(x_17); -x_521 = lean_unsigned_to_nat(6u); -x_522 = lean_nat_dec_eq(x_520, x_521); -lean_dec(x_520); -if (x_522 == 0) -{ -lean_object* x_523; -lean_dec(x_17); -x_523 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_539); +lean_dec(x_538); +lean_ctor_set(x_525, 1, x_522); +lean_ctor_set(x_525, 0, x_536); +lean_ctor_set(x_524, 0, x_537); return x_523; } else { -lean_object* x_524; lean_object* x_525; lean_object* x_526; lean_object* x_527; lean_object* x_528; +uint8_t x_542; +x_542 = lean_nat_dec_le(x_539, x_539); +if (x_542 == 0) +{ +lean_dec(x_539); +lean_dec(x_538); +lean_ctor_set(x_525, 1, x_522); +lean_ctor_set(x_525, 0, x_536); +lean_ctor_set(x_524, 0, x_537); +return x_523; +} +else +{ +size_t x_543; size_t x_544; lean_object* x_545; +x_543 = 0; +x_544 = lean_usize_of_nat(x_539); +lean_dec(x_539); +x_545 = l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_Omega_asLinearComboImpl___spec__3(x_538, x_543, x_544, x_522); +lean_dec(x_538); +lean_ctor_set(x_525, 1, x_545); +lean_ctor_set(x_525, 0, x_536); +lean_ctor_set(x_524, 0, x_537); +return x_523; +} +} +} +else +{ +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; uint8_t x_555; +x_546 = lean_ctor_get(x_525, 0); +x_547 = lean_ctor_get(x_525, 1); +lean_inc(x_547); +lean_inc(x_546); +lean_dec(x_525); +lean_inc(x_529); +lean_inc(x_520); +x_548 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__6___boxed), 13, 4); +lean_closure_set(x_548, 0, x_520); +lean_closure_set(x_548, 1, x_529); +lean_closure_set(x_548, 2, x_521); +lean_closure_set(x_548, 3, x_546); +x_549 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__46; +x_550 = lean_alloc_closure((void*)(l_ReaderT_bind___at_Lean_Elab_Tactic_Omega_withoutModifyingState___spec__1___rarg), 10, 2); +lean_closure_set(x_550, 0, x_549); +lean_closure_set(x_550, 1, x_548); +x_551 = l_Lean_Omega_LinearCombo_sub(x_520, x_529); +x_552 = lean_ctor_get(x_547, 1); +lean_inc(x_552); +lean_dec(x_547); +x_553 = lean_array_get_size(x_552); +x_554 = lean_unsigned_to_nat(0u); +x_555 = lean_nat_dec_lt(x_554, x_553); +if (x_555 == 0) +{ +lean_object* x_556; +lean_dec(x_553); +lean_dec(x_552); +x_556 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_556, 0, x_550); +lean_ctor_set(x_556, 1, x_522); +lean_ctor_set(x_524, 1, x_556); +lean_ctor_set(x_524, 0, x_551); +return x_523; +} +else +{ +uint8_t x_557; +x_557 = lean_nat_dec_le(x_553, x_553); +if (x_557 == 0) +{ +lean_object* x_558; +lean_dec(x_553); +lean_dec(x_552); +x_558 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_558, 0, x_550); +lean_ctor_set(x_558, 1, x_522); +lean_ctor_set(x_524, 1, x_558); +lean_ctor_set(x_524, 0, x_551); +return x_523; +} +else +{ +size_t x_559; size_t x_560; lean_object* x_561; lean_object* x_562; +x_559 = 0; +x_560 = lean_usize_of_nat(x_553); +lean_dec(x_553); +x_561 = l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_Omega_asLinearComboImpl___spec__3(x_552, x_559, x_560, x_522); +lean_dec(x_552); +x_562 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_562, 0, x_550); +lean_ctor_set(x_562, 1, x_561); +lean_ctor_set(x_524, 1, x_562); +lean_ctor_set(x_524, 0, x_551); +return x_523; +} +} +} +} +else +{ +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; uint8_t x_574; +x_563 = lean_ctor_get(x_524, 0); +lean_inc(x_563); +lean_dec(x_524); +x_564 = lean_ctor_get(x_525, 0); +lean_inc(x_564); +x_565 = lean_ctor_get(x_525, 1); +lean_inc(x_565); +if (lean_is_exclusive(x_525)) { + lean_ctor_release(x_525, 0); + lean_ctor_release(x_525, 1); + x_566 = x_525; +} else { + lean_dec_ref(x_525); + x_566 = lean_box(0); +} +lean_inc(x_563); +lean_inc(x_520); +x_567 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__6___boxed), 13, 4); +lean_closure_set(x_567, 0, x_520); +lean_closure_set(x_567, 1, x_563); +lean_closure_set(x_567, 2, x_521); +lean_closure_set(x_567, 3, x_564); +x_568 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__46; +x_569 = lean_alloc_closure((void*)(l_ReaderT_bind___at_Lean_Elab_Tactic_Omega_withoutModifyingState___spec__1___rarg), 10, 2); +lean_closure_set(x_569, 0, x_568); +lean_closure_set(x_569, 1, x_567); +x_570 = l_Lean_Omega_LinearCombo_sub(x_520, x_563); +x_571 = lean_ctor_get(x_565, 1); +lean_inc(x_571); +lean_dec(x_565); +x_572 = lean_array_get_size(x_571); +x_573 = lean_unsigned_to_nat(0u); +x_574 = lean_nat_dec_lt(x_573, x_572); +if (x_574 == 0) +{ +lean_object* x_575; lean_object* x_576; +lean_dec(x_572); +lean_dec(x_571); +if (lean_is_scalar(x_566)) { + x_575 = lean_alloc_ctor(0, 2, 0); +} else { + x_575 = x_566; +} +lean_ctor_set(x_575, 0, x_569); +lean_ctor_set(x_575, 1, x_522); +x_576 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_576, 0, x_570); +lean_ctor_set(x_576, 1, x_575); +lean_ctor_set(x_523, 0, x_576); +return x_523; +} +else +{ +uint8_t x_577; +x_577 = lean_nat_dec_le(x_572, x_572); +if (x_577 == 0) +{ +lean_object* x_578; lean_object* x_579; +lean_dec(x_572); +lean_dec(x_571); +if (lean_is_scalar(x_566)) { + x_578 = lean_alloc_ctor(0, 2, 0); +} else { + x_578 = x_566; +} +lean_ctor_set(x_578, 0, x_569); +lean_ctor_set(x_578, 1, x_522); +x_579 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_579, 0, x_570); +lean_ctor_set(x_579, 1, x_578); +lean_ctor_set(x_523, 0, x_579); +return x_523; +} +else +{ +size_t x_580; size_t x_581; lean_object* x_582; lean_object* x_583; lean_object* x_584; +x_580 = 0; +x_581 = lean_usize_of_nat(x_572); +lean_dec(x_572); +x_582 = l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_Omega_asLinearComboImpl___spec__3(x_571, x_580, x_581, x_522); +lean_dec(x_571); +if (lean_is_scalar(x_566)) { + x_583 = lean_alloc_ctor(0, 2, 0); +} else { + x_583 = x_566; +} +lean_ctor_set(x_583, 0, x_569); +lean_ctor_set(x_583, 1, x_582); +x_584 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_584, 0, x_570); +lean_ctor_set(x_584, 1, x_583); +lean_ctor_set(x_523, 0, x_584); +return x_523; +} +} +} +} +else +{ +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; uint8_t x_598; +x_585 = lean_ctor_get(x_523, 1); +lean_inc(x_585); +lean_dec(x_523); +x_586 = lean_ctor_get(x_524, 0); +lean_inc(x_586); +if (lean_is_exclusive(x_524)) { + lean_ctor_release(x_524, 0); + lean_ctor_release(x_524, 1); + x_587 = x_524; +} else { + lean_dec_ref(x_524); + x_587 = lean_box(0); +} +x_588 = lean_ctor_get(x_525, 0); +lean_inc(x_588); +x_589 = lean_ctor_get(x_525, 1); +lean_inc(x_589); +if (lean_is_exclusive(x_525)) { + lean_ctor_release(x_525, 0); + lean_ctor_release(x_525, 1); + x_590 = x_525; +} else { + lean_dec_ref(x_525); + x_590 = lean_box(0); +} +lean_inc(x_586); +lean_inc(x_520); +x_591 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__6___boxed), 13, 4); +lean_closure_set(x_591, 0, x_520); +lean_closure_set(x_591, 1, x_586); +lean_closure_set(x_591, 2, x_521); +lean_closure_set(x_591, 3, x_588); +x_592 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__46; +x_593 = lean_alloc_closure((void*)(l_ReaderT_bind___at_Lean_Elab_Tactic_Omega_withoutModifyingState___spec__1___rarg), 10, 2); +lean_closure_set(x_593, 0, x_592); +lean_closure_set(x_593, 1, x_591); +x_594 = l_Lean_Omega_LinearCombo_sub(x_520, x_586); +x_595 = lean_ctor_get(x_589, 1); +lean_inc(x_595); +lean_dec(x_589); +x_596 = lean_array_get_size(x_595); +x_597 = lean_unsigned_to_nat(0u); +x_598 = lean_nat_dec_lt(x_597, x_596); +if (x_598 == 0) +{ +lean_object* x_599; lean_object* x_600; lean_object* x_601; +lean_dec(x_596); +lean_dec(x_595); +if (lean_is_scalar(x_590)) { + x_599 = lean_alloc_ctor(0, 2, 0); +} else { + x_599 = x_590; +} +lean_ctor_set(x_599, 0, x_593); +lean_ctor_set(x_599, 1, x_522); +if (lean_is_scalar(x_587)) { + x_600 = lean_alloc_ctor(0, 2, 0); +} else { + x_600 = x_587; +} +lean_ctor_set(x_600, 0, x_594); +lean_ctor_set(x_600, 1, x_599); +x_601 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_601, 0, x_600); +lean_ctor_set(x_601, 1, x_585); +return x_601; +} +else +{ +uint8_t x_602; +x_602 = lean_nat_dec_le(x_596, x_596); +if (x_602 == 0) +{ +lean_object* x_603; lean_object* x_604; lean_object* x_605; +lean_dec(x_596); +lean_dec(x_595); +if (lean_is_scalar(x_590)) { + x_603 = lean_alloc_ctor(0, 2, 0); +} else { + x_603 = x_590; +} +lean_ctor_set(x_603, 0, x_593); +lean_ctor_set(x_603, 1, x_522); +if (lean_is_scalar(x_587)) { + x_604 = lean_alloc_ctor(0, 2, 0); +} else { + x_604 = x_587; +} +lean_ctor_set(x_604, 0, x_594); +lean_ctor_set(x_604, 1, x_603); +x_605 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_605, 0, x_604); +lean_ctor_set(x_605, 1, x_585); +return x_605; +} +else +{ +size_t x_606; size_t x_607; lean_object* x_608; lean_object* x_609; lean_object* x_610; lean_object* x_611; +x_606 = 0; +x_607 = lean_usize_of_nat(x_596); +lean_dec(x_596); +x_608 = l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_Omega_asLinearComboImpl___spec__3(x_595, x_606, x_607, x_522); +lean_dec(x_595); +if (lean_is_scalar(x_590)) { + x_609 = lean_alloc_ctor(0, 2, 0); +} else { + x_609 = x_590; +} +lean_ctor_set(x_609, 0, x_593); +lean_ctor_set(x_609, 1, x_608); +if (lean_is_scalar(x_587)) { + x_610 = lean_alloc_ctor(0, 2, 0); +} else { + x_610 = x_587; +} +lean_ctor_set(x_610, 0, x_594); +lean_ctor_set(x_610, 1, x_609); +x_611 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_611, 0, x_610); +lean_ctor_set(x_611, 1, x_585); +return x_611; +} +} +} +} +else +{ +uint8_t x_612; +lean_dec(x_522); +lean_dec(x_521); +lean_dec(x_520); +x_612 = !lean_is_exclusive(x_523); +if (x_612 == 0) +{ +return x_523; +} +else +{ +lean_object* x_613; lean_object* x_614; lean_object* x_615; +x_613 = lean_ctor_get(x_523, 0); +x_614 = lean_ctor_get(x_523, 1); +lean_inc(x_614); +lean_inc(x_613); +lean_dec(x_523); +x_615 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_615, 0, x_613); +lean_ctor_set(x_615, 1, x_614); +return x_615; +} +} +} +else +{ +uint8_t x_616; +lean_dec(x_515); +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_616 = !lean_is_exclusive(x_516); +if (x_616 == 0) +{ +return x_516; +} +else +{ +lean_object* x_617; lean_object* x_618; lean_object* x_619; +x_617 = lean_ctor_get(x_516, 0); +x_618 = lean_ctor_get(x_516, 1); +lean_inc(x_618); +lean_inc(x_617); +lean_dec(x_516); +x_619 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_619, 0, x_617); +lean_ctor_set(x_619, 1, x_618); +return x_619; +} +} +} +} +} +} +else +{ +lean_object* x_620; uint8_t x_621; +lean_dec(x_19); +x_620 = l_Lean_Elab_Tactic_Omega_succ_x3f___closed__3; +x_621 = lean_string_dec_eq(x_18, x_620); +lean_dec(x_18); +if (x_621 == 0) +{ +lean_object* x_622; +lean_dec(x_17); +x_622 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +return x_622; +} +else +{ +lean_object* x_623; lean_object* x_624; uint8_t x_625; +x_623 = lean_array_get_size(x_17); +x_624 = lean_unsigned_to_nat(6u); +x_625 = lean_nat_dec_eq(x_623, x_624); +lean_dec(x_623); +if (x_625 == 0) +{ +lean_object* x_626; +lean_dec(x_17); +x_626 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +return x_626; +} +else +{ +lean_object* x_627; lean_object* x_628; lean_object* x_629; lean_object* x_630; lean_object* x_631; lean_dec(x_1); -x_524 = lean_unsigned_to_nat(4u); -x_525 = lean_array_fget(x_17, x_524); -x_526 = lean_unsigned_to_nat(5u); -x_527 = lean_array_fget(x_17, x_526); +x_627 = lean_unsigned_to_nat(4u); +x_628 = lean_array_fget(x_17, x_627); +x_629 = lean_unsigned_to_nat(5u); +x_630 = lean_array_fget(x_17, x_629); lean_dec(x_17); lean_inc(x_9); lean_inc(x_8); @@ -11039,437 +11442,437 @@ lean_inc(x_6); lean_inc(x_5); lean_inc(x_4); lean_inc(x_3); -x_528 = l_Lean_Elab_Tactic_Omega_asLinearCombo(x_525, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -if (lean_obj_tag(x_528) == 0) +x_631 = l_Lean_Elab_Tactic_Omega_asLinearCombo(x_628, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +if (lean_obj_tag(x_631) == 0) { -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; -x_529 = lean_ctor_get(x_528, 0); -lean_inc(x_529); -x_530 = lean_ctor_get(x_529, 1); -lean_inc(x_530); -x_531 = lean_ctor_get(x_528, 1); -lean_inc(x_531); -lean_dec(x_528); -x_532 = lean_ctor_get(x_529, 0); -lean_inc(x_532); -lean_dec(x_529); -x_533 = lean_ctor_get(x_530, 0); -lean_inc(x_533); -x_534 = lean_ctor_get(x_530, 1); -lean_inc(x_534); -lean_dec(x_530); -x_535 = l_Lean_Elab_Tactic_Omega_asLinearCombo(x_527, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_531); -if (lean_obj_tag(x_535) == 0) +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; +x_632 = lean_ctor_get(x_631, 0); +lean_inc(x_632); +x_633 = lean_ctor_get(x_632, 1); +lean_inc(x_633); +x_634 = lean_ctor_get(x_631, 1); +lean_inc(x_634); +lean_dec(x_631); +x_635 = lean_ctor_get(x_632, 0); +lean_inc(x_635); +lean_dec(x_632); +x_636 = lean_ctor_get(x_633, 0); +lean_inc(x_636); +x_637 = lean_ctor_get(x_633, 1); +lean_inc(x_637); +lean_dec(x_633); +x_638 = l_Lean_Elab_Tactic_Omega_asLinearCombo(x_630, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_634); +if (lean_obj_tag(x_638) == 0) { -lean_object* x_536; lean_object* x_537; uint8_t x_538; -x_536 = lean_ctor_get(x_535, 0); -lean_inc(x_536); -x_537 = lean_ctor_get(x_536, 1); -lean_inc(x_537); -x_538 = !lean_is_exclusive(x_535); -if (x_538 == 0) +lean_object* x_639; lean_object* x_640; uint8_t x_641; +x_639 = lean_ctor_get(x_638, 0); +lean_inc(x_639); +x_640 = lean_ctor_get(x_639, 1); +lean_inc(x_640); +x_641 = !lean_is_exclusive(x_638); +if (x_641 == 0) { -lean_object* x_539; uint8_t x_540; -x_539 = lean_ctor_get(x_535, 0); -lean_dec(x_539); -x_540 = !lean_is_exclusive(x_536); -if (x_540 == 0) +lean_object* x_642; uint8_t x_643; +x_642 = lean_ctor_get(x_638, 0); +lean_dec(x_642); +x_643 = !lean_is_exclusive(x_639); +if (x_643 == 0) { -lean_object* x_541; lean_object* x_542; uint8_t x_543; -x_541 = lean_ctor_get(x_536, 0); -x_542 = lean_ctor_get(x_536, 1); -lean_dec(x_542); -x_543 = !lean_is_exclusive(x_537); -if (x_543 == 0) +lean_object* x_644; lean_object* x_645; uint8_t x_646; +x_644 = lean_ctor_get(x_639, 0); +x_645 = lean_ctor_get(x_639, 1); +lean_dec(x_645); +x_646 = !lean_is_exclusive(x_640); +if (x_646 == 0) { -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; uint8_t x_553; -x_544 = lean_ctor_get(x_537, 0); -x_545 = lean_ctor_get(x_537, 1); -lean_inc(x_541); -lean_inc(x_532); -x_546 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__7___boxed), 13, 4); -lean_closure_set(x_546, 0, x_532); -lean_closure_set(x_546, 1, x_541); -lean_closure_set(x_546, 2, x_533); -lean_closure_set(x_546, 3, x_544); -x_547 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__39; -x_548 = lean_alloc_closure((void*)(l_ReaderT_bind___at_Lean_Elab_Tactic_Omega_withoutModifyingState___spec__1___rarg), 10, 2); -lean_closure_set(x_548, 0, x_547); -lean_closure_set(x_548, 1, x_546); -x_549 = l_Lean_Omega_LinearCombo_add(x_532, x_541); -x_550 = lean_ctor_get(x_545, 1); -lean_inc(x_550); -lean_dec(x_545); -x_551 = lean_array_get_size(x_550); -x_552 = lean_unsigned_to_nat(0u); -x_553 = lean_nat_dec_lt(x_552, x_551); -if (x_553 == 0) +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; uint8_t x_656; +x_647 = lean_ctor_get(x_640, 0); +x_648 = lean_ctor_get(x_640, 1); +lean_inc(x_644); +lean_inc(x_635); +x_649 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__7___boxed), 13, 4); +lean_closure_set(x_649, 0, x_635); +lean_closure_set(x_649, 1, x_644); +lean_closure_set(x_649, 2, x_636); +lean_closure_set(x_649, 3, x_647); +x_650 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__46; +x_651 = lean_alloc_closure((void*)(l_ReaderT_bind___at_Lean_Elab_Tactic_Omega_withoutModifyingState___spec__1___rarg), 10, 2); +lean_closure_set(x_651, 0, x_650); +lean_closure_set(x_651, 1, x_649); +x_652 = l_Lean_Omega_LinearCombo_add(x_635, x_644); +x_653 = lean_ctor_get(x_648, 1); +lean_inc(x_653); +lean_dec(x_648); +x_654 = lean_array_get_size(x_653); +x_655 = lean_unsigned_to_nat(0u); +x_656 = lean_nat_dec_lt(x_655, x_654); +if (x_656 == 0) { -lean_dec(x_551); -lean_dec(x_550); -lean_ctor_set(x_537, 1, x_534); -lean_ctor_set(x_537, 0, x_548); -lean_ctor_set(x_536, 0, x_549); -return x_535; +lean_dec(x_654); +lean_dec(x_653); +lean_ctor_set(x_640, 1, x_637); +lean_ctor_set(x_640, 0, x_651); +lean_ctor_set(x_639, 0, x_652); +return x_638; } else { -uint8_t x_554; -x_554 = lean_nat_dec_le(x_551, x_551); -if (x_554 == 0) +uint8_t x_657; +x_657 = lean_nat_dec_le(x_654, x_654); +if (x_657 == 0) { -lean_dec(x_551); -lean_dec(x_550); -lean_ctor_set(x_537, 1, x_534); -lean_ctor_set(x_537, 0, x_548); -lean_ctor_set(x_536, 0, x_549); -return x_535; +lean_dec(x_654); +lean_dec(x_653); +lean_ctor_set(x_640, 1, x_637); +lean_ctor_set(x_640, 0, x_651); +lean_ctor_set(x_639, 0, x_652); +return x_638; } else { -size_t x_555; size_t x_556; lean_object* x_557; -x_555 = 0; -x_556 = lean_usize_of_nat(x_551); -lean_dec(x_551); -x_557 = l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_Omega_asLinearComboImpl___spec__3(x_550, x_555, x_556, x_534); -lean_dec(x_550); -lean_ctor_set(x_537, 1, x_557); -lean_ctor_set(x_537, 0, x_548); -lean_ctor_set(x_536, 0, x_549); -return x_535; +size_t x_658; size_t x_659; lean_object* x_660; +x_658 = 0; +x_659 = lean_usize_of_nat(x_654); +lean_dec(x_654); +x_660 = l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_Omega_asLinearComboImpl___spec__3(x_653, x_658, x_659, x_637); +lean_dec(x_653); +lean_ctor_set(x_640, 1, x_660); +lean_ctor_set(x_640, 0, x_651); +lean_ctor_set(x_639, 0, x_652); +return x_638; } } } else { -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; uint8_t x_567; -x_558 = lean_ctor_get(x_537, 0); -x_559 = lean_ctor_get(x_537, 1); -lean_inc(x_559); -lean_inc(x_558); -lean_dec(x_537); -lean_inc(x_541); -lean_inc(x_532); -x_560 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__7___boxed), 13, 4); -lean_closure_set(x_560, 0, x_532); -lean_closure_set(x_560, 1, x_541); -lean_closure_set(x_560, 2, x_533); -lean_closure_set(x_560, 3, x_558); -x_561 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__39; -x_562 = lean_alloc_closure((void*)(l_ReaderT_bind___at_Lean_Elab_Tactic_Omega_withoutModifyingState___spec__1___rarg), 10, 2); -lean_closure_set(x_562, 0, x_561); -lean_closure_set(x_562, 1, x_560); -x_563 = l_Lean_Omega_LinearCombo_add(x_532, x_541); -x_564 = lean_ctor_get(x_559, 1); -lean_inc(x_564); -lean_dec(x_559); -x_565 = lean_array_get_size(x_564); -x_566 = lean_unsigned_to_nat(0u); -x_567 = lean_nat_dec_lt(x_566, x_565); -if (x_567 == 0) +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; uint8_t x_670; +x_661 = lean_ctor_get(x_640, 0); +x_662 = lean_ctor_get(x_640, 1); +lean_inc(x_662); +lean_inc(x_661); +lean_dec(x_640); +lean_inc(x_644); +lean_inc(x_635); +x_663 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__7___boxed), 13, 4); +lean_closure_set(x_663, 0, x_635); +lean_closure_set(x_663, 1, x_644); +lean_closure_set(x_663, 2, x_636); +lean_closure_set(x_663, 3, x_661); +x_664 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__46; +x_665 = lean_alloc_closure((void*)(l_ReaderT_bind___at_Lean_Elab_Tactic_Omega_withoutModifyingState___spec__1___rarg), 10, 2); +lean_closure_set(x_665, 0, x_664); +lean_closure_set(x_665, 1, x_663); +x_666 = l_Lean_Omega_LinearCombo_add(x_635, x_644); +x_667 = lean_ctor_get(x_662, 1); +lean_inc(x_667); +lean_dec(x_662); +x_668 = lean_array_get_size(x_667); +x_669 = lean_unsigned_to_nat(0u); +x_670 = lean_nat_dec_lt(x_669, x_668); +if (x_670 == 0) { -lean_object* x_568; -lean_dec(x_565); -lean_dec(x_564); -x_568 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_568, 0, x_562); -lean_ctor_set(x_568, 1, x_534); -lean_ctor_set(x_536, 1, x_568); -lean_ctor_set(x_536, 0, x_563); -return x_535; +lean_object* x_671; +lean_dec(x_668); +lean_dec(x_667); +x_671 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_671, 0, x_665); +lean_ctor_set(x_671, 1, x_637); +lean_ctor_set(x_639, 1, x_671); +lean_ctor_set(x_639, 0, x_666); +return x_638; } else { -uint8_t x_569; -x_569 = lean_nat_dec_le(x_565, x_565); -if (x_569 == 0) +uint8_t x_672; +x_672 = lean_nat_dec_le(x_668, x_668); +if (x_672 == 0) { -lean_object* x_570; -lean_dec(x_565); -lean_dec(x_564); -x_570 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_570, 0, x_562); -lean_ctor_set(x_570, 1, x_534); -lean_ctor_set(x_536, 1, x_570); -lean_ctor_set(x_536, 0, x_563); -return x_535; +lean_object* x_673; +lean_dec(x_668); +lean_dec(x_667); +x_673 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_673, 0, x_665); +lean_ctor_set(x_673, 1, x_637); +lean_ctor_set(x_639, 1, x_673); +lean_ctor_set(x_639, 0, x_666); +return x_638; } else { -size_t x_571; size_t x_572; lean_object* x_573; lean_object* x_574; -x_571 = 0; -x_572 = lean_usize_of_nat(x_565); -lean_dec(x_565); -x_573 = l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_Omega_asLinearComboImpl___spec__3(x_564, x_571, x_572, x_534); -lean_dec(x_564); -x_574 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_574, 0, x_562); -lean_ctor_set(x_574, 1, x_573); -lean_ctor_set(x_536, 1, x_574); -lean_ctor_set(x_536, 0, x_563); -return x_535; +size_t x_674; size_t x_675; lean_object* x_676; lean_object* x_677; +x_674 = 0; +x_675 = lean_usize_of_nat(x_668); +lean_dec(x_668); +x_676 = l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_Omega_asLinearComboImpl___spec__3(x_667, x_674, x_675, x_637); +lean_dec(x_667); +x_677 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_677, 0, x_665); +lean_ctor_set(x_677, 1, x_676); +lean_ctor_set(x_639, 1, x_677); +lean_ctor_set(x_639, 0, x_666); +return x_638; } } } } else { -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; uint8_t x_586; -x_575 = lean_ctor_get(x_536, 0); -lean_inc(x_575); -lean_dec(x_536); -x_576 = lean_ctor_get(x_537, 0); -lean_inc(x_576); -x_577 = lean_ctor_get(x_537, 1); -lean_inc(x_577); -if (lean_is_exclusive(x_537)) { - lean_ctor_release(x_537, 0); - lean_ctor_release(x_537, 1); - x_578 = x_537; +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; uint8_t x_689; +x_678 = lean_ctor_get(x_639, 0); +lean_inc(x_678); +lean_dec(x_639); +x_679 = lean_ctor_get(x_640, 0); +lean_inc(x_679); +x_680 = lean_ctor_get(x_640, 1); +lean_inc(x_680); +if (lean_is_exclusive(x_640)) { + lean_ctor_release(x_640, 0); + lean_ctor_release(x_640, 1); + x_681 = x_640; } else { - lean_dec_ref(x_537); - x_578 = lean_box(0); + lean_dec_ref(x_640); + x_681 = lean_box(0); } -lean_inc(x_575); -lean_inc(x_532); -x_579 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__7___boxed), 13, 4); -lean_closure_set(x_579, 0, x_532); -lean_closure_set(x_579, 1, x_575); -lean_closure_set(x_579, 2, x_533); -lean_closure_set(x_579, 3, x_576); -x_580 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__39; -x_581 = lean_alloc_closure((void*)(l_ReaderT_bind___at_Lean_Elab_Tactic_Omega_withoutModifyingState___spec__1___rarg), 10, 2); -lean_closure_set(x_581, 0, x_580); -lean_closure_set(x_581, 1, x_579); -x_582 = l_Lean_Omega_LinearCombo_add(x_532, x_575); -x_583 = lean_ctor_get(x_577, 1); -lean_inc(x_583); -lean_dec(x_577); -x_584 = lean_array_get_size(x_583); -x_585 = lean_unsigned_to_nat(0u); -x_586 = lean_nat_dec_lt(x_585, x_584); -if (x_586 == 0) +lean_inc(x_678); +lean_inc(x_635); +x_682 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__7___boxed), 13, 4); +lean_closure_set(x_682, 0, x_635); +lean_closure_set(x_682, 1, x_678); +lean_closure_set(x_682, 2, x_636); +lean_closure_set(x_682, 3, x_679); +x_683 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__46; +x_684 = lean_alloc_closure((void*)(l_ReaderT_bind___at_Lean_Elab_Tactic_Omega_withoutModifyingState___spec__1___rarg), 10, 2); +lean_closure_set(x_684, 0, x_683); +lean_closure_set(x_684, 1, x_682); +x_685 = l_Lean_Omega_LinearCombo_add(x_635, x_678); +x_686 = lean_ctor_get(x_680, 1); +lean_inc(x_686); +lean_dec(x_680); +x_687 = lean_array_get_size(x_686); +x_688 = lean_unsigned_to_nat(0u); +x_689 = lean_nat_dec_lt(x_688, x_687); +if (x_689 == 0) { -lean_object* x_587; lean_object* x_588; -lean_dec(x_584); -lean_dec(x_583); -if (lean_is_scalar(x_578)) { - x_587 = lean_alloc_ctor(0, 2, 0); +lean_object* x_690; lean_object* x_691; +lean_dec(x_687); +lean_dec(x_686); +if (lean_is_scalar(x_681)) { + x_690 = lean_alloc_ctor(0, 2, 0); } else { - x_587 = x_578; + x_690 = x_681; } -lean_ctor_set(x_587, 0, x_581); -lean_ctor_set(x_587, 1, x_534); -x_588 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_588, 0, x_582); -lean_ctor_set(x_588, 1, x_587); -lean_ctor_set(x_535, 0, x_588); -return x_535; +lean_ctor_set(x_690, 0, x_684); +lean_ctor_set(x_690, 1, x_637); +x_691 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_691, 0, x_685); +lean_ctor_set(x_691, 1, x_690); +lean_ctor_set(x_638, 0, x_691); +return x_638; } else { -uint8_t x_589; -x_589 = lean_nat_dec_le(x_584, x_584); -if (x_589 == 0) +uint8_t x_692; +x_692 = lean_nat_dec_le(x_687, x_687); +if (x_692 == 0) { -lean_object* x_590; lean_object* x_591; -lean_dec(x_584); -lean_dec(x_583); -if (lean_is_scalar(x_578)) { - x_590 = lean_alloc_ctor(0, 2, 0); +lean_object* x_693; lean_object* x_694; +lean_dec(x_687); +lean_dec(x_686); +if (lean_is_scalar(x_681)) { + x_693 = lean_alloc_ctor(0, 2, 0); } else { - x_590 = x_578; + x_693 = x_681; } -lean_ctor_set(x_590, 0, x_581); -lean_ctor_set(x_590, 1, x_534); -x_591 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_591, 0, x_582); -lean_ctor_set(x_591, 1, x_590); -lean_ctor_set(x_535, 0, x_591); -return x_535; +lean_ctor_set(x_693, 0, x_684); +lean_ctor_set(x_693, 1, x_637); +x_694 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_694, 0, x_685); +lean_ctor_set(x_694, 1, x_693); +lean_ctor_set(x_638, 0, x_694); +return x_638; } else { -size_t x_592; size_t x_593; lean_object* x_594; lean_object* x_595; lean_object* x_596; -x_592 = 0; -x_593 = lean_usize_of_nat(x_584); -lean_dec(x_584); -x_594 = l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_Omega_asLinearComboImpl___spec__3(x_583, x_592, x_593, x_534); -lean_dec(x_583); -if (lean_is_scalar(x_578)) { - x_595 = lean_alloc_ctor(0, 2, 0); +size_t x_695; size_t x_696; lean_object* x_697; lean_object* x_698; lean_object* x_699; +x_695 = 0; +x_696 = lean_usize_of_nat(x_687); +lean_dec(x_687); +x_697 = l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_Omega_asLinearComboImpl___spec__3(x_686, x_695, x_696, x_637); +lean_dec(x_686); +if (lean_is_scalar(x_681)) { + x_698 = lean_alloc_ctor(0, 2, 0); } else { - x_595 = x_578; + x_698 = x_681; } -lean_ctor_set(x_595, 0, x_581); -lean_ctor_set(x_595, 1, x_594); -x_596 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_596, 0, x_582); -lean_ctor_set(x_596, 1, x_595); -lean_ctor_set(x_535, 0, x_596); -return x_535; +lean_ctor_set(x_698, 0, x_684); +lean_ctor_set(x_698, 1, x_697); +x_699 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_699, 0, x_685); +lean_ctor_set(x_699, 1, x_698); +lean_ctor_set(x_638, 0, x_699); +return x_638; } } } } else { -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; uint8_t x_610; -x_597 = lean_ctor_get(x_535, 1); -lean_inc(x_597); -lean_dec(x_535); -x_598 = lean_ctor_get(x_536, 0); -lean_inc(x_598); -if (lean_is_exclusive(x_536)) { - lean_ctor_release(x_536, 0); - lean_ctor_release(x_536, 1); - x_599 = x_536; +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; uint8_t x_713; +x_700 = lean_ctor_get(x_638, 1); +lean_inc(x_700); +lean_dec(x_638); +x_701 = lean_ctor_get(x_639, 0); +lean_inc(x_701); +if (lean_is_exclusive(x_639)) { + lean_ctor_release(x_639, 0); + lean_ctor_release(x_639, 1); + x_702 = x_639; } else { - lean_dec_ref(x_536); - x_599 = lean_box(0); + lean_dec_ref(x_639); + x_702 = lean_box(0); } -x_600 = lean_ctor_get(x_537, 0); -lean_inc(x_600); -x_601 = lean_ctor_get(x_537, 1); -lean_inc(x_601); -if (lean_is_exclusive(x_537)) { - lean_ctor_release(x_537, 0); - lean_ctor_release(x_537, 1); - x_602 = x_537; +x_703 = lean_ctor_get(x_640, 0); +lean_inc(x_703); +x_704 = lean_ctor_get(x_640, 1); +lean_inc(x_704); +if (lean_is_exclusive(x_640)) { + lean_ctor_release(x_640, 0); + lean_ctor_release(x_640, 1); + x_705 = x_640; } else { - lean_dec_ref(x_537); - x_602 = lean_box(0); + lean_dec_ref(x_640); + x_705 = lean_box(0); } -lean_inc(x_598); -lean_inc(x_532); -x_603 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__7___boxed), 13, 4); -lean_closure_set(x_603, 0, x_532); -lean_closure_set(x_603, 1, x_598); -lean_closure_set(x_603, 2, x_533); -lean_closure_set(x_603, 3, x_600); -x_604 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__39; -x_605 = lean_alloc_closure((void*)(l_ReaderT_bind___at_Lean_Elab_Tactic_Omega_withoutModifyingState___spec__1___rarg), 10, 2); -lean_closure_set(x_605, 0, x_604); -lean_closure_set(x_605, 1, x_603); -x_606 = l_Lean_Omega_LinearCombo_add(x_532, x_598); -x_607 = lean_ctor_get(x_601, 1); -lean_inc(x_607); -lean_dec(x_601); -x_608 = lean_array_get_size(x_607); -x_609 = lean_unsigned_to_nat(0u); -x_610 = lean_nat_dec_lt(x_609, x_608); -if (x_610 == 0) +lean_inc(x_701); +lean_inc(x_635); +x_706 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__7___boxed), 13, 4); +lean_closure_set(x_706, 0, x_635); +lean_closure_set(x_706, 1, x_701); +lean_closure_set(x_706, 2, x_636); +lean_closure_set(x_706, 3, x_703); +x_707 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__46; +x_708 = lean_alloc_closure((void*)(l_ReaderT_bind___at_Lean_Elab_Tactic_Omega_withoutModifyingState___spec__1___rarg), 10, 2); +lean_closure_set(x_708, 0, x_707); +lean_closure_set(x_708, 1, x_706); +x_709 = l_Lean_Omega_LinearCombo_add(x_635, x_701); +x_710 = lean_ctor_get(x_704, 1); +lean_inc(x_710); +lean_dec(x_704); +x_711 = lean_array_get_size(x_710); +x_712 = lean_unsigned_to_nat(0u); +x_713 = lean_nat_dec_lt(x_712, x_711); +if (x_713 == 0) { -lean_object* x_611; lean_object* x_612; lean_object* x_613; -lean_dec(x_608); -lean_dec(x_607); -if (lean_is_scalar(x_602)) { - x_611 = lean_alloc_ctor(0, 2, 0); +lean_object* x_714; lean_object* x_715; lean_object* x_716; +lean_dec(x_711); +lean_dec(x_710); +if (lean_is_scalar(x_705)) { + x_714 = lean_alloc_ctor(0, 2, 0); } else { - x_611 = x_602; + x_714 = x_705; } -lean_ctor_set(x_611, 0, x_605); -lean_ctor_set(x_611, 1, x_534); -if (lean_is_scalar(x_599)) { - x_612 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_714, 0, x_708); +lean_ctor_set(x_714, 1, x_637); +if (lean_is_scalar(x_702)) { + x_715 = lean_alloc_ctor(0, 2, 0); } else { - x_612 = x_599; + x_715 = x_702; } -lean_ctor_set(x_612, 0, x_606); -lean_ctor_set(x_612, 1, x_611); -x_613 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_613, 0, x_612); -lean_ctor_set(x_613, 1, x_597); -return x_613; +lean_ctor_set(x_715, 0, x_709); +lean_ctor_set(x_715, 1, x_714); +x_716 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_716, 0, x_715); +lean_ctor_set(x_716, 1, x_700); +return x_716; } else { -uint8_t x_614; -x_614 = lean_nat_dec_le(x_608, x_608); -if (x_614 == 0) +uint8_t x_717; +x_717 = lean_nat_dec_le(x_711, x_711); +if (x_717 == 0) { -lean_object* x_615; lean_object* x_616; lean_object* x_617; -lean_dec(x_608); -lean_dec(x_607); -if (lean_is_scalar(x_602)) { - x_615 = lean_alloc_ctor(0, 2, 0); +lean_object* x_718; lean_object* x_719; lean_object* x_720; +lean_dec(x_711); +lean_dec(x_710); +if (lean_is_scalar(x_705)) { + x_718 = lean_alloc_ctor(0, 2, 0); } else { - x_615 = x_602; + x_718 = x_705; } -lean_ctor_set(x_615, 0, x_605); -lean_ctor_set(x_615, 1, x_534); -if (lean_is_scalar(x_599)) { - x_616 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_718, 0, x_708); +lean_ctor_set(x_718, 1, x_637); +if (lean_is_scalar(x_702)) { + x_719 = lean_alloc_ctor(0, 2, 0); } else { - x_616 = x_599; + x_719 = x_702; } -lean_ctor_set(x_616, 0, x_606); -lean_ctor_set(x_616, 1, x_615); -x_617 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_617, 0, x_616); -lean_ctor_set(x_617, 1, x_597); -return x_617; +lean_ctor_set(x_719, 0, x_709); +lean_ctor_set(x_719, 1, x_718); +x_720 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_720, 0, x_719); +lean_ctor_set(x_720, 1, x_700); +return x_720; } else { -size_t x_618; size_t x_619; lean_object* x_620; lean_object* x_621; lean_object* x_622; lean_object* x_623; -x_618 = 0; -x_619 = lean_usize_of_nat(x_608); -lean_dec(x_608); -x_620 = l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_Omega_asLinearComboImpl___spec__3(x_607, x_618, x_619, x_534); -lean_dec(x_607); -if (lean_is_scalar(x_602)) { - x_621 = lean_alloc_ctor(0, 2, 0); +size_t x_721; size_t x_722; lean_object* x_723; lean_object* x_724; lean_object* x_725; lean_object* x_726; +x_721 = 0; +x_722 = lean_usize_of_nat(x_711); +lean_dec(x_711); +x_723 = l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_Omega_asLinearComboImpl___spec__3(x_710, x_721, x_722, x_637); +lean_dec(x_710); +if (lean_is_scalar(x_705)) { + x_724 = lean_alloc_ctor(0, 2, 0); } else { - x_621 = x_602; + x_724 = x_705; } -lean_ctor_set(x_621, 0, x_605); -lean_ctor_set(x_621, 1, x_620); -if (lean_is_scalar(x_599)) { - x_622 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_724, 0, x_708); +lean_ctor_set(x_724, 1, x_723); +if (lean_is_scalar(x_702)) { + x_725 = lean_alloc_ctor(0, 2, 0); } else { - x_622 = x_599; + x_725 = x_702; } -lean_ctor_set(x_622, 0, x_606); -lean_ctor_set(x_622, 1, x_621); -x_623 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_623, 0, x_622); -lean_ctor_set(x_623, 1, x_597); -return x_623; +lean_ctor_set(x_725, 0, x_709); +lean_ctor_set(x_725, 1, x_724); +x_726 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_726, 0, x_725); +lean_ctor_set(x_726, 1, x_700); +return x_726; } } } } else { -uint8_t x_624; -lean_dec(x_534); -lean_dec(x_533); -lean_dec(x_532); -x_624 = !lean_is_exclusive(x_535); -if (x_624 == 0) +uint8_t x_727; +lean_dec(x_637); +lean_dec(x_636); +lean_dec(x_635); +x_727 = !lean_is_exclusive(x_638); +if (x_727 == 0) { -return x_535; +return x_638; } else { -lean_object* x_625; lean_object* x_626; lean_object* x_627; -x_625 = lean_ctor_get(x_535, 0); -x_626 = lean_ctor_get(x_535, 1); -lean_inc(x_626); -lean_inc(x_625); -lean_dec(x_535); -x_627 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_627, 0, x_625); -lean_ctor_set(x_627, 1, x_626); -return x_627; +lean_object* x_728; lean_object* x_729; lean_object* x_730; +x_728 = lean_ctor_get(x_638, 0); +x_729 = lean_ctor_get(x_638, 1); +lean_inc(x_729); +lean_inc(x_728); +lean_dec(x_638); +x_730 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_730, 0, x_728); +lean_ctor_set(x_730, 1, x_729); +return x_730; } } } else { -uint8_t x_628; -lean_dec(x_527); +uint8_t x_731; +lean_dec(x_630); lean_dec(x_9); lean_dec(x_8); lean_dec(x_7); @@ -11477,24 +11880,24 @@ lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); -x_628 = !lean_is_exclusive(x_528); -if (x_628 == 0) +x_731 = !lean_is_exclusive(x_631); +if (x_731 == 0) { -return x_528; -} -else -{ -lean_object* x_629; lean_object* x_630; lean_object* x_631; -x_629 = lean_ctor_get(x_528, 0); -x_630 = lean_ctor_get(x_528, 1); -lean_inc(x_630); -lean_inc(x_629); -lean_dec(x_528); -x_631 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_631, 0, x_629); -lean_ctor_set(x_631, 1, x_630); return x_631; } +else +{ +lean_object* x_732; lean_object* x_733; lean_object* x_734; +x_732 = lean_ctor_get(x_631, 0); +x_733 = lean_ctor_get(x_631, 1); +lean_inc(x_733); +lean_inc(x_732); +lean_dec(x_631); +x_734 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_734, 0, x_732); +lean_ctor_set(x_734, 1, x_733); +return x_734; +} } } } @@ -11502,84 +11905,84 @@ return x_631; } else { -lean_object* x_632; +lean_object* x_735; lean_dec(x_16); lean_dec(x_15); lean_dec(x_14); lean_dec(x_13); -x_632 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -return x_632; +x_735 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +return x_735; } } else { -lean_object* x_633; +lean_object* x_736; lean_dec(x_15); lean_dec(x_14); lean_dec(x_13); -x_633 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -return x_633; +x_736 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +return x_736; } } else { -lean_object* x_634; +lean_object* x_737; lean_dec(x_14); lean_dec(x_13); -x_634 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -return x_634; +x_737 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +return x_737; } } else { -lean_object* x_635; lean_object* x_636; +lean_object* x_738; lean_object* x_739; lean_inc(x_1); -x_635 = l_Lean_Expr_fvarId_x21(x_1); +x_738 = l_Lean_Expr_fvarId_x21(x_1); lean_inc(x_6); -x_636 = l_Lean_FVarId_getValue_x3f(x_635, x_6, x_7, x_8, x_9, x_10); -if (lean_obj_tag(x_636) == 0) +x_739 = l_Lean_FVarId_getValue_x3f(x_738, x_6, x_7, x_8, x_9, x_10); +if (lean_obj_tag(x_739) == 0) { -lean_object* x_637; -x_637 = lean_ctor_get(x_636, 0); -lean_inc(x_637); -if (lean_obj_tag(x_637) == 0) +lean_object* x_740; +x_740 = lean_ctor_get(x_739, 0); +lean_inc(x_740); +if (lean_obj_tag(x_740) == 0) { -lean_object* x_638; lean_object* x_639; -x_638 = lean_ctor_get(x_636, 1); -lean_inc(x_638); -lean_dec(x_636); -x_639 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_638); -return x_639; +lean_object* x_741; lean_object* x_742; +x_741 = lean_ctor_get(x_739, 1); +lean_inc(x_741); +lean_dec(x_739); +x_742 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_741); +return x_742; } else { -lean_object* x_640; lean_object* x_641; lean_object* x_642; -x_640 = lean_ctor_get(x_636, 1); -lean_inc(x_640); -lean_dec(x_636); -x_641 = lean_ctor_get(x_637, 0); -lean_inc(x_641); -lean_dec(x_637); +lean_object* x_743; lean_object* x_744; lean_object* x_745; +x_743 = lean_ctor_get(x_739, 1); +lean_inc(x_743); +lean_dec(x_739); +x_744 = lean_ctor_get(x_740, 0); +lean_inc(x_744); +lean_dec(x_740); lean_inc(x_9); lean_inc(x_8); lean_inc(x_7); lean_inc(x_6); lean_inc(x_1); -x_642 = l_Lean_Elab_Tactic_Omega_mkEqReflWithExpectedType(x_1, x_641, x_6, x_7, x_8, x_9, x_640); -if (lean_obj_tag(x_642) == 0) +x_745 = l_Lean_Elab_Tactic_Omega_mkEqReflWithExpectedType(x_1, x_744, x_6, x_7, x_8, x_9, x_743); +if (lean_obj_tag(x_745) == 0) { -lean_object* x_643; lean_object* x_644; lean_object* x_645; -x_643 = lean_ctor_get(x_642, 0); -lean_inc(x_643); -x_644 = lean_ctor_get(x_642, 1); -lean_inc(x_644); -lean_dec(x_642); -x_645 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_rewrite(x_1, x_643, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_644); -return x_645; +lean_object* x_746; lean_object* x_747; lean_object* x_748; +x_746 = lean_ctor_get(x_745, 0); +lean_inc(x_746); +x_747 = lean_ctor_get(x_745, 1); +lean_inc(x_747); +lean_dec(x_745); +x_748 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_rewrite(x_1, x_746, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_747); +return x_748; } else { -uint8_t x_646; +uint8_t x_749; lean_dec(x_9); lean_dec(x_8); lean_dec(x_7); @@ -11588,30 +11991,30 @@ lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_1); -x_646 = !lean_is_exclusive(x_642); -if (x_646 == 0) +x_749 = !lean_is_exclusive(x_745); +if (x_749 == 0) { -return x_642; +return x_745; } else { -lean_object* x_647; lean_object* x_648; lean_object* x_649; -x_647 = lean_ctor_get(x_642, 0); -x_648 = lean_ctor_get(x_642, 1); -lean_inc(x_648); -lean_inc(x_647); -lean_dec(x_642); -x_649 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_649, 0, x_647); -lean_ctor_set(x_649, 1, x_648); -return x_649; +lean_object* x_750; lean_object* x_751; lean_object* x_752; +x_750 = lean_ctor_get(x_745, 0); +x_751 = lean_ctor_get(x_745, 1); +lean_inc(x_751); +lean_inc(x_750); +lean_dec(x_745); +x_752 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_752, 0, x_750); +lean_ctor_set(x_752, 1, x_751); +return x_752; } } } } else { -uint8_t x_650; +uint8_t x_753; lean_dec(x_9); lean_dec(x_8); lean_dec(x_7); @@ -11620,30 +12023,30 @@ lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_1); -x_650 = !lean_is_exclusive(x_636); -if (x_650 == 0) +x_753 = !lean_is_exclusive(x_739); +if (x_753 == 0) { -return x_636; +return x_739; } else { -lean_object* x_651; lean_object* x_652; lean_object* x_653; -x_651 = lean_ctor_get(x_636, 0); -x_652 = lean_ctor_get(x_636, 1); -lean_inc(x_652); -lean_inc(x_651); -lean_dec(x_636); -x_653 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_653, 0, x_651); -lean_ctor_set(x_653, 1, x_652); -return x_653; +lean_object* x_754; lean_object* x_755; lean_object* x_756; +x_754 = lean_ctor_get(x_739, 0); +x_755 = lean_ctor_get(x_739, 1); +lean_inc(x_755); +lean_inc(x_754); +lean_dec(x_739); +x_756 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_756, 0, x_754); +lean_ctor_set(x_756, 1, x_755); +return x_756; } } } } else { -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_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_dec(x_9); lean_dec(x_8); lean_dec(x_7); @@ -11651,28 +12054,28 @@ lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); -x_654 = lean_ctor_get(x_11, 0); -lean_inc(x_654); +x_757 = lean_ctor_get(x_11, 0); +lean_inc(x_757); lean_dec(x_11); -x_655 = lean_box(0); -x_656 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_656, 0, x_654); -lean_ctor_set(x_656, 1, x_655); -lean_inc(x_656); -x_657 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Omega_mkEvalRflProof___boxed), 10, 2); -lean_closure_set(x_657, 0, x_1); -lean_closure_set(x_657, 1, x_656); -x_658 = l_Lean_Elab_Tactic_Omega_MetaProblem_problem___default___closed__2; -x_659 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_659, 0, x_657); -lean_ctor_set(x_659, 1, x_658); -x_660 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_660, 0, x_656); -lean_ctor_set(x_660, 1, x_659); -x_661 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_661, 0, x_660); -lean_ctor_set(x_661, 1, x_10); -return x_661; +x_758 = lean_box(0); +x_759 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_759, 0, x_757); +lean_ctor_set(x_759, 1, x_758); +lean_inc(x_759); +x_760 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Omega_mkEvalRflProof___boxed), 10, 2); +lean_closure_set(x_760, 0, x_1); +lean_closure_set(x_760, 1, x_759); +x_761 = l_Lean_Elab_Tactic_Omega_MetaProblem_problem___default___closed__2; +x_762 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_762, 0, x_760); +lean_ctor_set(x_762, 1, x_761); +x_763 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_763, 0, x_759); +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_10); +return x_764; } } } @@ -11744,7 +12147,7 @@ static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCa _start: { lean_object* x_1; -x_1 = lean_mk_string_from_bytes("HPow", 4); +x_1 = lean_mk_string_from_bytes("OfNat", 5); return x_1; } } @@ -11802,7 +12205,7 @@ _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_Elab_Tactic_Omega_evalUnsafe____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_6____closed__1; x_2 = l_Lean_Elab_Tactic_Omega_evalUnsafe____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_6____closed__3; -x_3 = l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__7; +x_3 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__9; x_4 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__7; x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); return x_5; @@ -11840,7 +12243,7 @@ _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_Elab_Tactic_Omega_evalUnsafe____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_6____closed__1; x_2 = l_Lean_Elab_Tactic_Omega_evalUnsafe____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_6____closed__3; -x_3 = l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__7; +x_3 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__9; x_4 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__11; x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); return x_5; @@ -11878,7 +12281,7 @@ _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_Elab_Tactic_Omega_evalUnsafe____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_6____closed__1; x_2 = l_Lean_Elab_Tactic_Omega_evalUnsafe____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_6____closed__3; -x_3 = l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__7; +x_3 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__9; x_4 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__15; x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); return x_5; @@ -11908,7 +12311,7 @@ _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_Elab_Tactic_Omega_evalUnsafe____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_6____closed__1; x_2 = l_Lean_Elab_Tactic_Omega_evalUnsafe____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_6____closed__3; -x_3 = l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__7; +x_3 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__9; x_4 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__18; x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); return x_5; @@ -11938,7 +12341,7 @@ _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_Elab_Tactic_Omega_evalUnsafe____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_6____closed__1; x_2 = l_Lean_Elab_Tactic_Omega_evalUnsafe____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_6____closed__3; -x_3 = l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__7; +x_3 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__9; x_4 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__21; x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); return x_5; @@ -11968,7 +12371,7 @@ _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_Elab_Tactic_Omega_evalUnsafe____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_6____closed__1; x_2 = l_Lean_Elab_Tactic_Omega_evalUnsafe____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_6____closed__3; -x_3 = l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__7; +x_3 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__9; x_4 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__24; x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); return x_5; @@ -11988,7 +12391,7 @@ _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_Elab_Tactic_Omega_evalUnsafe____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_6____closed__1; x_2 = l_Lean_Elab_Tactic_Omega_evalUnsafe____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_6____closed__3; -x_3 = l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__7; +x_3 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__9; x_4 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__26; x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); return x_5; @@ -11998,41 +12401,33 @@ static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCa _start: { lean_object* x_1; -x_1 = lean_mk_string_from_bytes("hPow", 4); +x_1 = lean_mk_string_from_bytes("ofNat_pow", 9); return x_1; } } static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__29() { _start: { -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("ofNat_pow", 9); -return x_1; +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_1 = l_Lean_Elab_Tactic_Omega_evalUnsafe____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_6____closed__1; +x_2 = l_Lean_Elab_Tactic_Omega_evalUnsafe____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_6____closed__3; +x_3 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__9; +x_4 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__28; +x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); +return x_5; } } static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__30() { _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_Elab_Tactic_Omega_evalUnsafe____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_6____closed__1; -x_2 = l_Lean_Elab_Tactic_Omega_evalUnsafe____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_6____closed__3; -x_3 = l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__7; -x_4 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__29; -x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); -return x_5; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__31() { -_start: -{ lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__30; +x_2 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__29; x_3 = l_Lean_Expr_const___override(x_2, x_1); return x_3; } } -static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__32() { +static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__31() { _start: { lean_object* x_1; @@ -12040,29 +12435,29 @@ x_1 = lean_mk_string_from_bytes("ofNat_sub_sub", 13); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__33() { +static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___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_Lean_Elab_Tactic_Omega_evalUnsafe____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_6____closed__1; x_2 = l_Lean_Elab_Tactic_Omega_evalUnsafe____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_6____closed__3; -x_3 = l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__7; -x_4 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__32; +x_3 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__9; +x_4 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__31; x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); return x_5; } } -static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__34() { +static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__33() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__33; +x_2 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__32; x_3 = l_Lean_Expr_const___override(x_2, x_1); return x_3; } } -static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__35() { +static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__34() { _start: { lean_object* x_1; @@ -12070,24 +12465,32 @@ x_1 = lean_mk_string_from_bytes("ofNat_emod", 10); return x_1; } } +static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__35() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__9; +x_2 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__34; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; +} +} static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__36() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__7; +x_1 = lean_box(0); x_2 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__35; -x_3 = l_Lean_Name_mkStr2(x_1, x_2); +x_3 = l_Lean_Expr_const___override(x_2, x_1); return x_3; } } static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__37() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__36; -x_3 = l_Lean_Expr_const___override(x_2, x_1); -return x_3; +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("ofNat", 5); +return x_1; } } static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__38() { @@ -12104,7 +12507,7 @@ _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_Elab_Tactic_Omega_evalUnsafe____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_6____closed__1; x_2 = l_Lean_Elab_Tactic_Omega_evalUnsafe____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_6____closed__3; -x_3 = l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__7; +x_3 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__9; x_4 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__38; x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); return x_5; @@ -12132,7 +12535,7 @@ static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCa _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__7; +x_1 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__9; x_2 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__41; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; @@ -12160,7 +12563,7 @@ static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCa _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__7; +x_1 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__9; x_2 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__44; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; @@ -12188,7 +12591,7 @@ static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCa _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__7; +x_1 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__9; x_2 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__47; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; @@ -12208,25 +12611,27 @@ static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCa _start: { lean_object* x_1; -x_1 = lean_mk_string_from_bytes("succ", 4); +x_1 = lean_mk_string_from_bytes("ofNat_succ", 10); return x_1; } } static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__51() { _start: { -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("ofNat_succ", 10); -return x_1; +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__9; +x_2 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__50; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; } } static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__52() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__7; +x_1 = lean_box(0); x_2 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__51; -x_3 = l_Lean_Name_mkStr2(x_1, x_2); +x_3 = l_Lean_Expr_const___override(x_2, x_1); return x_3; } } @@ -12234,9 +12639,9 @@ static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCa _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__52; -x_3 = l_Lean_Expr_const___override(x_2, x_1); +x_1 = l_Lean_Elab_Tactic_Omega_succ_x3f___closed__1; +x_2 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__15; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } @@ -12244,18 +12649,8 @@ static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCa _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__8; -x_2 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__16; -x_3 = l_Lean_Name_mkStr2(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__55() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__54; -x_2 = l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__5; +x_1 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__53; +x_2 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__30; x_3 = l_Lean_Expr_const___override(x_1, x_2); return x_3; } @@ -12295,8 +12690,8 @@ lean_dec(x_13); x_18 = lean_ctor_get(x_14, 0); lean_inc(x_18); lean_dec(x_14); -x_19 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__55; -x_20 = l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__9; +x_19 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__54; +x_20 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__11; x_21 = l_Lean_mkApp3(x_19, x_20, x_2, x_18); lean_inc(x_10); lean_inc(x_9); @@ -12407,57 +12802,57 @@ lean_dec(x_35); x_40 = lean_ctor_get(x_36, 1); lean_inc(x_40); lean_dec(x_36); -x_41 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__8; +x_41 = l_Lean_Elab_Tactic_Omega_succ_x3f___closed__1; x_42 = lean_string_dec_eq(x_40, x_41); if (x_42 == 0) { lean_object* x_43; uint8_t x_44; -x_43 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__1; +x_43 = l_Lean_Elab_Tactic_Omega_succ_x3f___closed__2; x_44 = lean_string_dec_eq(x_40, x_43); if (x_44 == 0) { lean_object* x_45; uint8_t x_46; -x_45 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__3; +x_45 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__2; x_46 = lean_string_dec_eq(x_40, x_45); if (x_46 == 0) { lean_object* x_47; uint8_t x_48; -x_47 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__5; +x_47 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__4; x_48 = lean_string_dec_eq(x_40, x_47); if (x_48 == 0) { lean_object* x_49; uint8_t x_50; -x_49 = l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__1; +x_49 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__1; x_50 = lean_string_dec_eq(x_40, x_49); if (x_50 == 0) { lean_object* x_51; uint8_t x_52; -x_51 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__4; +x_51 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__3; x_52 = lean_string_dec_eq(x_40, x_51); if (x_52 == 0) { lean_object* x_53; uint8_t x_54; -x_53 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__2; +x_53 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__1; x_54 = lean_string_dec_eq(x_40, x_53); if (x_54 == 0) { lean_object* x_55; uint8_t x_56; -x_55 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__1; +x_55 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__7; x_56 = lean_string_dec_eq(x_40, x_55); if (x_56 == 0) { lean_object* x_57; uint8_t x_58; -x_57 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__9; +x_57 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__8; x_58 = lean_string_dec_eq(x_40, x_57); if (x_58 == 0) { lean_object* x_59; uint8_t x_60; -x_59 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__6; +x_59 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__5; x_60 = lean_string_dec_eq(x_40, x_59); if (x_60 == 0) { lean_object* x_61; uint8_t x_62; -x_61 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__7; +x_61 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__6; x_62 = lean_string_dec_eq(x_40, x_61); if (x_62 == 0) { @@ -12472,7 +12867,7 @@ x_66 = lean_string_dec_eq(x_40, x_65); if (x_66 == 0) { lean_object* x_67; uint8_t x_68; -x_67 = l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__7; +x_67 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__9; x_68 = lean_string_dec_eq(x_40, x_67); if (x_68 == 0) { @@ -12682,7 +13077,7 @@ else lean_object* x_126; uint8_t x_127; lean_dec(x_40); lean_dec(x_2); -x_126 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__17; +x_126 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__20; x_127 = lean_string_dec_eq(x_39, x_126); lean_dec(x_39); if (x_127 == 0) @@ -12727,7 +13122,7 @@ else lean_object* x_140; uint8_t x_141; lean_dec(x_40); lean_dec(x_2); -x_140 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__21; +x_140 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__24; x_141 = lean_string_dec_eq(x_39, x_140); lean_dec(x_39); if (x_141 == 0) @@ -12772,12 +13167,12 @@ else lean_object* x_154; uint8_t x_155; lean_dec(x_40); lean_dec(x_2); -x_154 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__10; +x_154 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__9; x_155 = lean_string_dec_eq(x_39, x_154); if (x_155 == 0) { lean_object* x_156; uint8_t x_157; -x_156 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__11; +x_156 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__10; x_157 = lean_string_dec_eq(x_39, x_156); lean_dec(x_39); if (x_157 == 0) @@ -13411,7 +13806,7 @@ else lean_object* x_270; uint8_t x_271; lean_dec(x_40); lean_dec(x_2); -x_270 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__28; +x_270 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__16; x_271 = lean_string_dec_eq(x_39, x_270); lean_dec(x_39); if (x_271 == 0) @@ -13455,27 +13850,12 @@ return x_282; } else { -lean_object* x_283; +lean_object* x_283; lean_object* x_284; lean_object* x_285; lean_dec(x_281); -lean_inc(x_280); -x_283 = l_Lean_Elab_Tactic_Omega_groundNat_x3f(x_280); -if (lean_obj_tag(x_283) == 0) -{ -lean_object* x_284; -lean_dec(x_280); -lean_dec(x_278); -x_284 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); -return x_284; -} -else -{ -lean_object* x_285; lean_object* x_286; lean_object* x_287; -lean_dec(x_283); -x_285 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__31; -x_286 = l_Lean_mkAppB(x_285, x_278, x_280); -x_287 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_rewrite(x_1, x_286, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); -return x_287; -} +x_283 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__30; +x_284 = l_Lean_mkAppB(x_283, x_278, x_280); +x_285 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_rewrite(x_1, x_284, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +return x_285; } } } @@ -13483,48 +13863,60 @@ return x_287; } else { -lean_object* x_288; uint8_t x_289; +lean_object* x_286; uint8_t x_287; lean_dec(x_40); lean_dec(x_2); -x_288 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__40; -x_289 = lean_string_dec_eq(x_39, x_288); +x_286 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__47; +x_287 = lean_string_dec_eq(x_39, x_286); lean_dec(x_39); -if (x_289 == 0) +if (x_287 == 0) { -lean_object* x_290; +lean_object* x_288; lean_dec(x_38); -x_290 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); -return x_290; +x_288 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +return x_288; } else { -lean_object* x_291; lean_object* x_292; uint8_t x_293; -x_291 = lean_array_get_size(x_38); -x_292 = lean_unsigned_to_nat(6u); -x_293 = lean_nat_dec_eq(x_291, x_292); -lean_dec(x_291); -if (x_293 == 0) +lean_object* x_289; lean_object* x_290; uint8_t x_291; +x_289 = lean_array_get_size(x_38); +x_290 = lean_unsigned_to_nat(6u); +x_291 = lean_nat_dec_eq(x_289, x_290); +lean_dec(x_289); +if (x_291 == 0) { -lean_object* x_294; +lean_object* x_292; lean_dec(x_38); -x_294 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); -return x_294; +x_292 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +return x_292; } else { -lean_object* x_295; lean_object* x_296; -x_295 = lean_unsigned_to_nat(4u); -x_296 = lean_array_fget(x_38, x_295); +lean_object* x_293; lean_object* x_294; +x_293 = lean_unsigned_to_nat(4u); +x_294 = lean_array_fget(x_38, x_293); +if (lean_obj_tag(x_294) == 5) +{ +lean_object* x_295; +x_295 = lean_ctor_get(x_294, 0); +lean_inc(x_295); +if (lean_obj_tag(x_295) == 5) +{ +lean_object* x_296; +x_296 = lean_ctor_get(x_295, 0); +lean_inc(x_296); if (lean_obj_tag(x_296) == 5) { lean_object* x_297; x_297 = lean_ctor_get(x_296, 0); lean_inc(x_297); +lean_dec(x_296); if (lean_obj_tag(x_297) == 5) { lean_object* x_298; x_298 = lean_ctor_get(x_297, 0); lean_inc(x_298); +lean_dec(x_297); if (lean_obj_tag(x_298) == 5) { lean_object* x_299; @@ -13537,96 +13929,107 @@ lean_object* x_300; x_300 = lean_ctor_get(x_299, 0); lean_inc(x_300); lean_dec(x_299); -if (lean_obj_tag(x_300) == 5) +if (lean_obj_tag(x_300) == 4) { lean_object* x_301; x_301 = lean_ctor_get(x_300, 0); lean_inc(x_301); lean_dec(x_300); -if (lean_obj_tag(x_301) == 5) +if (lean_obj_tag(x_301) == 1) { lean_object* x_302; x_302 = lean_ctor_get(x_301, 0); lean_inc(x_302); -lean_dec(x_301); -if (lean_obj_tag(x_302) == 4) +if (lean_obj_tag(x_302) == 1) { lean_object* x_303; x_303 = lean_ctor_get(x_302, 0); lean_inc(x_303); -lean_dec(x_302); -if (lean_obj_tag(x_303) == 1) +if (lean_obj_tag(x_303) == 0) { -lean_object* x_304; -x_304 = lean_ctor_get(x_303, 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_294, 1); lean_inc(x_304); -if (lean_obj_tag(x_304) == 1) -{ -lean_object* x_305; -x_305 = lean_ctor_get(x_304, 0); +lean_dec(x_294); +x_305 = lean_ctor_get(x_295, 1); lean_inc(x_305); -if (lean_obj_tag(x_305) == 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_296, 1); +lean_dec(x_295); +x_306 = lean_ctor_get(x_301, 1); lean_inc(x_306); -lean_dec(x_296); -x_307 = lean_ctor_get(x_297, 1); +lean_dec(x_301); +x_307 = lean_ctor_get(x_302, 1); lean_inc(x_307); -lean_dec(x_297); -x_308 = lean_ctor_get(x_303, 1); -lean_inc(x_308); -lean_dec(x_303); -x_309 = lean_ctor_get(x_304, 1); -lean_inc(x_309); +lean_dec(x_302); +x_308 = lean_string_dec_eq(x_307, x_53); +lean_dec(x_307); +if (x_308 == 0) +{ +lean_object* x_309; +lean_dec(x_306); +lean_dec(x_305); lean_dec(x_304); -x_310 = lean_string_dec_eq(x_309, x_53); -lean_dec(x_309); +lean_dec(x_38); +x_309 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +return x_309; +} +else +{ +uint8_t x_310; +x_310 = lean_string_dec_eq(x_306, x_286); +lean_dec(x_306); if (x_310 == 0) { lean_object* x_311; -lean_dec(x_308); -lean_dec(x_307); -lean_dec(x_306); +lean_dec(x_305); +lean_dec(x_304); lean_dec(x_38); x_311 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); return x_311; } else { -uint8_t x_312; -x_312 = lean_string_dec_eq(x_308, x_288); -lean_dec(x_308); -if (x_312 == 0) -{ -lean_object* x_313; -lean_dec(x_307); -lean_dec(x_306); +lean_object* x_312; lean_object* x_313; lean_object* x_314; lean_object* x_315; lean_object* x_316; +x_312 = lean_unsigned_to_nat(5u); +x_313 = lean_array_fget(x_38, x_312); lean_dec(x_38); -x_313 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); -return x_313; +x_314 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__33; +x_315 = l_Lean_mkApp3(x_314, x_305, x_304, x_313); +x_316 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_rewrite(x_1, x_315, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +return x_316; +} +} } else { -lean_object* x_314; lean_object* x_315; lean_object* x_316; lean_object* x_317; lean_object* x_318; -x_314 = lean_unsigned_to_nat(5u); -x_315 = lean_array_fget(x_38, x_314); +lean_object* x_317; +lean_dec(x_303); +lean_dec(x_302); +lean_dec(x_301); +lean_dec(x_295); +lean_dec(x_294); lean_dec(x_38); -x_316 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__34; -x_317 = l_Lean_mkApp3(x_316, x_307, x_306, x_315); -x_318 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_rewrite(x_1, x_317, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); -return x_318; +x_317 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +return x_317; } } +else +{ +lean_object* x_318; +lean_dec(x_302); +lean_dec(x_301); +lean_dec(x_295); +lean_dec(x_294); +lean_dec(x_38); +x_318 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +return x_318; +} } else { lean_object* x_319; -lean_dec(x_305); -lean_dec(x_304); -lean_dec(x_303); -lean_dec(x_297); -lean_dec(x_296); +lean_dec(x_301); +lean_dec(x_295); +lean_dec(x_294); lean_dec(x_38); x_319 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); return x_319; @@ -13635,10 +14038,9 @@ return x_319; else { lean_object* x_320; -lean_dec(x_304); -lean_dec(x_303); -lean_dec(x_297); -lean_dec(x_296); +lean_dec(x_300); +lean_dec(x_295); +lean_dec(x_294); lean_dec(x_38); x_320 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); return x_320; @@ -13647,9 +14049,9 @@ return x_320; else { lean_object* x_321; -lean_dec(x_303); -lean_dec(x_297); -lean_dec(x_296); +lean_dec(x_299); +lean_dec(x_295); +lean_dec(x_294); lean_dec(x_38); x_321 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); return x_321; @@ -13658,9 +14060,9 @@ return x_321; else { lean_object* x_322; -lean_dec(x_302); -lean_dec(x_297); -lean_dec(x_296); +lean_dec(x_298); +lean_dec(x_295); +lean_dec(x_294); lean_dec(x_38); x_322 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); return x_322; @@ -13669,9 +14071,9 @@ return x_322; else { lean_object* x_323; -lean_dec(x_301); lean_dec(x_297); -lean_dec(x_296); +lean_dec(x_295); +lean_dec(x_294); lean_dec(x_38); x_323 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); return x_323; @@ -13680,9 +14082,9 @@ return x_323; else { lean_object* x_324; -lean_dec(x_300); -lean_dec(x_297); lean_dec(x_296); +lean_dec(x_295); +lean_dec(x_294); lean_dec(x_38); x_324 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); return x_324; @@ -13691,9 +14093,8 @@ return x_324; else { lean_object* x_325; -lean_dec(x_299); -lean_dec(x_297); -lean_dec(x_296); +lean_dec(x_295); +lean_dec(x_294); lean_dec(x_38); x_325 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); return x_325; @@ -13702,333 +14103,312 @@ return x_325; else { lean_object* x_326; -lean_dec(x_298); -lean_dec(x_297); -lean_dec(x_296); +lean_dec(x_294); lean_dec(x_38); x_326 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); return x_326; } } -else -{ -lean_object* x_327; -lean_dec(x_297); -lean_dec(x_296); -lean_dec(x_38); -x_327 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); -return x_327; -} -} -else -{ -lean_object* x_328; -lean_dec(x_296); -lean_dec(x_38); -x_328 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); -return x_328; -} -} } } } else { -lean_object* x_329; uint8_t x_330; +lean_object* x_327; uint8_t x_328; lean_dec(x_40); lean_dec(x_2); -x_329 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__33; -x_330 = lean_string_dec_eq(x_39, x_329); +x_327 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__39; +x_328 = lean_string_dec_eq(x_39, x_327); lean_dec(x_39); -if (x_330 == 0) +if (x_328 == 0) { -lean_object* x_331; +lean_object* x_329; lean_dec(x_38); -x_331 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); -return x_331; +x_329 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +return x_329; } else { -lean_object* x_332; lean_object* x_333; uint8_t x_334; -x_332 = lean_array_get_size(x_38); -x_333 = lean_unsigned_to_nat(6u); -x_334 = lean_nat_dec_eq(x_332, x_333); -lean_dec(x_332); -if (x_334 == 0) +lean_object* x_330; lean_object* x_331; uint8_t x_332; +x_330 = lean_array_get_size(x_38); +x_331 = lean_unsigned_to_nat(6u); +x_332 = lean_nat_dec_eq(x_330, x_331); +lean_dec(x_330); +if (x_332 == 0) { -lean_object* x_335; +lean_object* x_333; lean_dec(x_38); -x_335 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); -return x_335; +x_333 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +return x_333; } else { -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; -x_336 = lean_unsigned_to_nat(4u); +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; +x_334 = lean_unsigned_to_nat(4u); +x_335 = lean_array_fget(x_38, x_334); +x_336 = lean_unsigned_to_nat(5u); x_337 = lean_array_fget(x_38, x_336); -x_338 = lean_unsigned_to_nat(5u); -x_339 = lean_array_fget(x_38, x_338); lean_dec(x_38); -x_340 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__37; -x_341 = l_Lean_mkAppB(x_340, x_337, x_339); -x_342 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_rewrite(x_1, x_341, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); -return x_342; +x_338 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__36; +x_339 = l_Lean_mkAppB(x_338, x_335, x_337); +x_340 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_rewrite(x_1, x_339, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +return x_340; } } } } else { -lean_object* x_343; uint8_t x_344; +lean_object* x_341; uint8_t x_342; lean_dec(x_40); lean_dec(x_2); -x_343 = l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__2; -x_344 = lean_string_dec_eq(x_39, x_343); +x_341 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__37; +x_342 = lean_string_dec_eq(x_39, x_341); lean_dec(x_39); -if (x_344 == 0) +if (x_342 == 0) { -lean_object* x_345; +lean_object* x_343; lean_dec(x_38); -x_345 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); -return x_345; +x_343 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +return x_343; } else { -lean_object* x_346; lean_object* x_347; uint8_t x_348; -x_346 = lean_array_get_size(x_38); -x_347 = lean_unsigned_to_nat(3u); -x_348 = lean_nat_dec_eq(x_346, x_347); -lean_dec(x_346); -if (x_348 == 0) +lean_object* x_344; lean_object* x_345; uint8_t x_346; +x_344 = lean_array_get_size(x_38); +x_345 = lean_unsigned_to_nat(3u); +x_346 = lean_nat_dec_eq(x_344, x_345); +lean_dec(x_344); +if (x_346 == 0) { -lean_object* x_349; +lean_object* x_347; lean_dec(x_38); -x_349 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); -return x_349; +x_347 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +return x_347; } else { -lean_object* x_350; lean_object* x_351; lean_object* x_352; lean_object* x_353; lean_object* x_354; -x_350 = lean_unsigned_to_nat(1u); -x_351 = lean_array_fget(x_38, x_350); +lean_object* x_348; lean_object* x_349; lean_object* x_350; lean_object* x_351; lean_object* x_352; +x_348 = lean_unsigned_to_nat(1u); +x_349 = lean_array_fget(x_38, x_348); lean_dec(x_38); -x_352 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__40; -x_353 = l_Lean_Expr_app___override(x_352, x_351); -x_354 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_rewrite(x_1, x_353, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); -return x_354; +x_350 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__40; +x_351 = l_Lean_Expr_app___override(x_350, x_349); +x_352 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_rewrite(x_1, x_351, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +return x_352; } } } } else { -lean_object* x_355; uint8_t x_356; +lean_object* x_353; uint8_t x_354; lean_dec(x_40); lean_dec(x_2); -x_355 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__25; -x_356 = lean_string_dec_eq(x_39, x_355); +x_353 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__28; +x_354 = lean_string_dec_eq(x_39, x_353); lean_dec(x_39); -if (x_356 == 0) +if (x_354 == 0) { -lean_object* x_357; +lean_object* x_355; lean_dec(x_38); -x_357 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); -return x_357; +x_355 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +return x_355; } else { -lean_object* x_358; lean_object* x_359; uint8_t x_360; -x_358 = lean_array_get_size(x_38); -x_359 = lean_unsigned_to_nat(6u); -x_360 = lean_nat_dec_eq(x_358, x_359); -lean_dec(x_358); -if (x_360 == 0) +lean_object* x_356; lean_object* x_357; uint8_t x_358; +x_356 = lean_array_get_size(x_38); +x_357 = lean_unsigned_to_nat(6u); +x_358 = lean_nat_dec_eq(x_356, x_357); +lean_dec(x_356); +if (x_358 == 0) { -lean_object* x_361; +lean_object* x_359; lean_dec(x_38); -x_361 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); -return x_361; +x_359 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +return x_359; } 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; -x_362 = lean_unsigned_to_nat(4u); +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; +x_360 = lean_unsigned_to_nat(4u); +x_361 = lean_array_fget(x_38, x_360); +x_362 = lean_unsigned_to_nat(5u); x_363 = lean_array_fget(x_38, x_362); -x_364 = lean_unsigned_to_nat(5u); -x_365 = lean_array_fget(x_38, x_364); lean_dec(x_38); -x_366 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__43; -x_367 = l_Lean_mkAppB(x_366, x_363, x_365); -x_368 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_rewrite(x_1, x_367, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); -return x_368; +x_364 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__43; +x_365 = l_Lean_mkAppB(x_364, x_361, x_363); +x_366 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_rewrite(x_1, x_365, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +return x_366; } } } } else { -lean_object* x_369; uint8_t x_370; +lean_object* x_367; uint8_t x_368; lean_dec(x_40); lean_dec(x_2); -x_369 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__38; -x_370 = lean_string_dec_eq(x_39, x_369); +x_367 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__45; +x_368 = lean_string_dec_eq(x_39, x_367); lean_dec(x_39); -if (x_370 == 0) +if (x_368 == 0) { -lean_object* x_371; +lean_object* x_369; lean_dec(x_38); -x_371 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); -return x_371; +x_369 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +return x_369; } else { -lean_object* x_372; lean_object* x_373; uint8_t x_374; -x_372 = lean_array_get_size(x_38); -x_373 = lean_unsigned_to_nat(6u); -x_374 = lean_nat_dec_eq(x_372, x_373); -lean_dec(x_372); -if (x_374 == 0) +lean_object* x_370; lean_object* x_371; uint8_t x_372; +x_370 = lean_array_get_size(x_38); +x_371 = lean_unsigned_to_nat(6u); +x_372 = lean_nat_dec_eq(x_370, x_371); +lean_dec(x_370); +if (x_372 == 0) { -lean_object* x_375; +lean_object* x_373; lean_dec(x_38); -x_375 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); -return x_375; +x_373 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +return x_373; } 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; -x_376 = lean_unsigned_to_nat(4u); +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; +x_374 = lean_unsigned_to_nat(4u); +x_375 = lean_array_fget(x_38, x_374); +x_376 = lean_unsigned_to_nat(5u); x_377 = lean_array_fget(x_38, x_376); -x_378 = lean_unsigned_to_nat(5u); -x_379 = lean_array_fget(x_38, x_378); lean_dec(x_38); -x_380 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__46; -x_381 = l_Lean_mkAppB(x_380, x_377, x_379); -x_382 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_rewrite(x_1, x_381, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); -return x_382; +x_378 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__46; +x_379 = l_Lean_mkAppB(x_378, x_375, x_377); +x_380 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_rewrite(x_1, x_379, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +return x_380; } } } } else { -lean_object* x_383; uint8_t x_384; +lean_object* x_381; uint8_t x_382; lean_dec(x_40); lean_dec(x_2); -x_383 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__41; -x_384 = lean_string_dec_eq(x_39, x_383); +x_381 = l_Lean_Elab_Tactic_Omega_succ_x3f___closed__3; +x_382 = lean_string_dec_eq(x_39, x_381); lean_dec(x_39); -if (x_384 == 0) +if (x_382 == 0) { -lean_object* x_385; +lean_object* x_383; lean_dec(x_38); -x_385 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); -return x_385; +x_383 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +return x_383; } else { -lean_object* x_386; lean_object* x_387; uint8_t x_388; -x_386 = lean_array_get_size(x_38); -x_387 = lean_unsigned_to_nat(6u); -x_388 = lean_nat_dec_eq(x_386, x_387); -lean_dec(x_386); -if (x_388 == 0) +lean_object* x_384; lean_object* x_385; uint8_t x_386; +x_384 = lean_array_get_size(x_38); +x_385 = lean_unsigned_to_nat(6u); +x_386 = lean_nat_dec_eq(x_384, x_385); +lean_dec(x_384); +if (x_386 == 0) { -lean_object* x_389; +lean_object* x_387; lean_dec(x_38); -x_389 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); -return x_389; +x_387 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +return x_387; } else { -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; -x_390 = lean_unsigned_to_nat(4u); +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; +x_388 = lean_unsigned_to_nat(4u); +x_389 = lean_array_fget(x_38, x_388); +x_390 = lean_unsigned_to_nat(5u); x_391 = lean_array_fget(x_38, x_390); -x_392 = lean_unsigned_to_nat(5u); -x_393 = lean_array_fget(x_38, x_392); lean_dec(x_38); -x_394 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__49; -x_395 = l_Lean_mkAppB(x_394, x_391, x_393); -x_396 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_rewrite(x_1, x_395, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); -return x_396; +x_392 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__49; +x_393 = l_Lean_mkAppB(x_392, x_389, x_391); +x_394 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_rewrite(x_1, x_393, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +return x_394; } } } } else { -lean_object* x_397; uint8_t x_398; +lean_object* x_395; uint8_t x_396; lean_dec(x_40); lean_dec(x_2); -x_397 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__50; -x_398 = lean_string_dec_eq(x_39, x_397); +x_395 = l_Lean_Elab_Tactic_Omega_succ_x3f___closed__5; +x_396 = lean_string_dec_eq(x_39, x_395); lean_dec(x_39); -if (x_398 == 0) +if (x_396 == 0) { -lean_object* x_399; +lean_object* x_397; lean_dec(x_38); -x_399 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); -return x_399; +x_397 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +return x_397; } else { -lean_object* x_400; lean_object* x_401; uint8_t x_402; -x_400 = lean_array_get_size(x_38); -x_401 = lean_unsigned_to_nat(1u); -x_402 = lean_nat_dec_eq(x_400, x_401); -lean_dec(x_400); -if (x_402 == 0) +lean_object* x_398; lean_object* x_399; uint8_t x_400; +x_398 = lean_array_get_size(x_38); +x_399 = lean_unsigned_to_nat(1u); +x_400 = lean_nat_dec_eq(x_398, x_399); +lean_dec(x_398); +if (x_400 == 0) { -lean_object* x_403; +lean_object* x_401; lean_dec(x_38); -x_403 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); -return x_403; +x_401 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +return x_401; } else { -lean_object* x_404; lean_object* x_405; lean_object* x_406; lean_object* x_407; lean_object* x_408; -x_404 = lean_unsigned_to_nat(0u); -x_405 = lean_array_fget(x_38, x_404); +lean_object* x_402; lean_object* x_403; lean_object* x_404; lean_object* x_405; lean_object* x_406; +x_402 = lean_unsigned_to_nat(0u); +x_403 = lean_array_fget(x_38, x_402); lean_dec(x_38); -x_406 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__53; -x_407 = l_Lean_Expr_app___override(x_406, x_405); -x_408 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_rewrite(x_1, x_407, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); -return x_408; +x_404 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__52; +x_405 = l_Lean_Expr_app___override(x_404, x_403); +x_406 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_rewrite(x_1, x_405, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +return x_406; } } } } else { -lean_object* x_409; +lean_object* x_407; lean_dec(x_37); lean_dec(x_36); lean_dec(x_35); lean_dec(x_34); lean_dec(x_2); -x_409 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); -return x_409; +x_407 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +return x_407; } } else { -lean_object* x_410; +lean_object* x_408; lean_dec(x_36); lean_dec(x_35); lean_dec(x_34); lean_dec(x_2); -x_410 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); -return x_410; +x_408 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +return x_408; } } else { -lean_object* x_411; +lean_object* x_409; lean_dec(x_35); lean_dec(x_34); lean_dec(x_2); -x_411 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); -return x_411; +x_409 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +return x_409; } } } @@ -14211,8 +14591,8 @@ lean_inc(x_19); lean_dec(x_15); x_20 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleFinVal___closed__14; x_21 = l_Lean_mkAppB(x_20, x_3, x_19); -x_22 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__55; -x_23 = l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__9; +x_22 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__54; +x_23 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__11; x_24 = l_Lean_mkApp3(x_22, x_23, x_2, x_21); lean_inc(x_11); lean_inc(x_10); @@ -14327,23 +14707,23 @@ lean_dec(x_39); x_44 = lean_ctor_get(x_40, 1); lean_inc(x_44); lean_dec(x_40); -x_45 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__1; +x_45 = l_Lean_Elab_Tactic_Omega_succ_x3f___closed__2; x_46 = lean_string_dec_eq(x_44, x_45); if (x_46 == 0) { lean_object* x_47; uint8_t x_48; -x_47 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__3; +x_47 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__2; x_48 = lean_string_dec_eq(x_44, x_47); if (x_48 == 0) { lean_object* x_49; uint8_t x_50; -x_49 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__2; +x_49 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__1; x_50 = lean_string_dec_eq(x_44, x_49); if (x_50 == 0) { lean_object* x_51; uint8_t x_52; lean_dec(x_3); -x_51 = l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__1; +x_51 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__1; x_52 = lean_string_dec_eq(x_44, x_51); lean_dec(x_44); if (x_52 == 0) @@ -14358,7 +14738,7 @@ return x_53; else { lean_object* x_54; uint8_t x_55; -x_54 = l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__2; +x_54 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__37; x_55 = lean_string_dec_eq(x_43, x_54); lean_dec(x_43); if (x_55 == 0) @@ -14588,7 +14968,7 @@ else { lean_object* x_107; uint8_t x_108; lean_dec(x_44); -x_107 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__40; +x_107 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__47; x_108 = lean_string_dec_eq(x_43, x_107); lean_dec(x_43); if (x_108 == 0) @@ -14649,7 +15029,7 @@ else lean_object* x_122; uint8_t x_123; lean_dec(x_44); lean_dec(x_38); -x_122 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__38; +x_122 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__45; x_123 = lean_string_dec_eq(x_43, x_122); lean_dec(x_43); if (x_123 == 0) @@ -14696,7 +15076,7 @@ else lean_object* x_136; uint8_t x_137; lean_dec(x_44); lean_dec(x_38); -x_136 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__41; +x_136 = l_Lean_Elab_Tactic_Omega_succ_x3f___closed__3; x_137 = lean_string_dec_eq(x_43, x_136); lean_dec(x_43); if (x_137 == 0) @@ -14884,14 +15264,31 @@ lean_dec(x_2); return x_8; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl___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_Elab_Tactic_Omega_asLinearComboImpl___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]; _start: { -lean_object* x_17; -x_17 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___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); +lean_object* x_18; +x_18 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___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); lean_dec(x_3); lean_dec(x_2); -return x_17; +return x_18; } } LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl___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) { @@ -15389,7 +15786,7 @@ x_33 = l_List_mapTR_loop___at_Lean_Omega_LinearCombo_instToStringLinearCombo___s x_34 = l_Lean_Elab_Tactic_Omega_MetaProblem_problem___default___lambda__1___closed__1; x_35 = l_List_foldl___at_String_join___spec__1(x_34, x_33); lean_dec(x_33); -x_36 = l_Lean_Elab_Tactic_Omega_mkInt___closed__1; +x_36 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__8; x_37 = lean_int_dec_lt(x_28, x_36); if (x_37 == 0) { @@ -15927,7 +16324,7 @@ x_33 = l_List_mapTR_loop___at_Lean_Omega_LinearCombo_instToStringLinearCombo___s x_34 = l_Lean_Elab_Tactic_Omega_MetaProblem_problem___default___lambda__1___closed__1; x_35 = l_List_foldl___at_String_join___spec__1(x_34, x_33); lean_dec(x_33); -x_36 = l_Lean_Elab_Tactic_Omega_mkInt___closed__1; +x_36 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__8; x_37 = lean_int_dec_lt(x_28, x_36); if (x_37 == 0) { @@ -16271,7 +16668,7 @@ static lean_object* _init_l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed_ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__7; +x_1 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__9; x_2 = l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__21; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; @@ -16291,7 +16688,7 @@ static lean_object* _init_l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed_ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__8; +x_1 = l_Lean_Elab_Tactic_Omega_succ_x3f___closed__1; x_2 = l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__21; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; @@ -16373,7 +16770,7 @@ static lean_object* _init_l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed_ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__7; +x_1 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__9; x_2 = l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__32; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; @@ -16393,7 +16790,7 @@ static lean_object* _init_l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed_ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__8; +x_1 = l_Lean_Elab_Tactic_Omega_succ_x3f___closed__1; x_2 = l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__32; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; @@ -16431,7 +16828,7 @@ _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_Elab_Tactic_Omega_evalUnsafe____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_6____closed__1; x_2 = l_Lean_Elab_Tactic_Omega_evalUnsafe____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_6____closed__3; -x_3 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__9; +x_3 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__8; x_4 = l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__38; x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); return x_5; @@ -16457,7 +16854,7 @@ static lean_object* _init_l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed_ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__8; +x_1 = l_Lean_Elab_Tactic_Omega_succ_x3f___closed__1; x_2 = l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__41; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; @@ -16479,7 +16876,7 @@ _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_Elab_Tactic_Omega_evalUnsafe____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_6____closed__1; x_2 = l_Lean_Elab_Tactic_Omega_evalUnsafe____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_6____closed__3; -x_3 = l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__7; +x_3 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__9; x_4 = l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__41; x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); return x_5; @@ -16537,7 +16934,7 @@ static lean_object* _init_l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed_ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__8; +x_1 = l_Lean_Elab_Tactic_Omega_succ_x3f___closed__1; x_2 = l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__49; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; @@ -16559,7 +16956,7 @@ _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_Elab_Tactic_Omega_evalUnsafe____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_6____closed__1; x_2 = l_Lean_Elab_Tactic_Omega_evalUnsafe____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_6____closed__3; -x_3 = l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__7; +x_3 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__9; x_4 = l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__49; x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); return x_5; @@ -16894,12 +17291,12 @@ lean_dec(x_84); x_88 = lean_ctor_get(x_85, 1); lean_inc(x_88); lean_dec(x_85); -x_89 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__8; +x_89 = l_Lean_Elab_Tactic_Omega_succ_x3f___closed__1; x_90 = lean_string_dec_eq(x_88, x_89); if (x_90 == 0) { lean_object* x_91; uint8_t x_92; -x_91 = l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__7; +x_91 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__9; x_92 = lean_string_dec_eq(x_88, x_91); lean_dec(x_88); if (x_92 == 0) @@ -17147,7 +17544,7 @@ x_140 = lean_string_dec_eq(x_136, x_139); if (x_140 == 0) { lean_object* x_141; uint8_t x_142; -x_141 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__9; +x_141 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__8; x_142 = lean_string_dec_eq(x_136, x_141); if (x_142 == 0) { @@ -17224,12 +17621,12 @@ lean_dec(x_154); x_158 = lean_ctor_get(x_155, 1); lean_inc(x_158); lean_dec(x_155); -x_159 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__8; +x_159 = l_Lean_Elab_Tactic_Omega_succ_x3f___closed__1; x_160 = lean_string_dec_eq(x_158, x_159); if (x_160 == 0) { lean_object* x_161; uint8_t x_162; -x_161 = l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__7; +x_161 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__9; x_162 = lean_string_dec_eq(x_158, x_161); lean_dec(x_158); if (x_162 == 0) @@ -17483,12 +17880,12 @@ lean_dec(x_209); x_213 = lean_ctor_get(x_210, 1); lean_inc(x_213); lean_dec(x_210); -x_214 = l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__7; +x_214 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__9; x_215 = lean_string_dec_eq(x_213, x_214); if (x_215 == 0) { lean_object* x_216; uint8_t x_217; -x_216 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__8; +x_216 = l_Lean_Elab_Tactic_Omega_succ_x3f___closed__1; x_217 = lean_string_dec_eq(x_213, x_216); lean_dec(x_213); if (x_217 == 0) @@ -17771,12 +18168,12 @@ lean_dec(x_266); x_270 = lean_ctor_get(x_267, 1); lean_inc(x_270); lean_dec(x_267); -x_271 = l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__7; +x_271 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__9; x_272 = lean_string_dec_eq(x_270, x_271); if (x_272 == 0) { lean_object* x_273; uint8_t x_274; -x_273 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__8; +x_273 = l_Lean_Elab_Tactic_Omega_succ_x3f___closed__1; x_274 = lean_string_dec_eq(x_270, x_273); lean_dec(x_270); if (x_274 == 0) @@ -18315,12 +18712,12 @@ lean_dec(x_400); x_404 = lean_ctor_get(x_401, 1); lean_inc(x_404); lean_dec(x_401); -x_405 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__8; +x_405 = l_Lean_Elab_Tactic_Omega_succ_x3f___closed__1; x_406 = lean_string_dec_eq(x_404, x_405); if (x_406 == 0) { lean_object* x_407; uint8_t x_408; -x_407 = l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__7; +x_407 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__9; x_408 = lean_string_dec_eq(x_404, x_407); lean_dec(x_404); if (x_408 == 0) @@ -18596,7 +18993,7 @@ x_470 = lean_string_dec_eq(x_466, x_469); if (x_470 == 0) { lean_object* x_471; uint8_t x_472; -x_471 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__9; +x_471 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__8; x_472 = lean_string_dec_eq(x_466, x_471); if (x_472 == 0) { @@ -18679,12 +19076,12 @@ lean_dec(x_487); x_491 = lean_ctor_get(x_488, 1); lean_inc(x_491); lean_dec(x_488); -x_492 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__8; +x_492 = l_Lean_Elab_Tactic_Omega_succ_x3f___closed__1; x_493 = lean_string_dec_eq(x_491, x_492); if (x_493 == 0) { lean_object* x_494; uint8_t x_495; -x_494 = l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__7; +x_494 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__9; x_495 = lean_string_dec_eq(x_491, x_494); lean_dec(x_491); if (x_495 == 0) @@ -18958,12 +19355,12 @@ lean_dec(x_551); x_555 = lean_ctor_get(x_552, 1); lean_inc(x_555); lean_dec(x_552); -x_556 = l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__7; +x_556 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__9; x_557 = lean_string_dec_eq(x_555, x_556); if (x_557 == 0) { lean_object* x_558; uint8_t x_559; -x_558 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__8; +x_558 = l_Lean_Elab_Tactic_Omega_succ_x3f___closed__1; x_559 = lean_string_dec_eq(x_555, x_558); lean_dec(x_555); if (x_559 == 0) @@ -19278,12 +19675,12 @@ lean_dec(x_624); x_628 = lean_ctor_get(x_625, 1); lean_inc(x_628); lean_dec(x_625); -x_629 = l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__7; +x_629 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__9; x_630 = lean_string_dec_eq(x_628, x_629); if (x_630 == 0) { lean_object* x_631; uint8_t x_632; -x_631 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__8; +x_631 = l_Lean_Elab_Tactic_Omega_succ_x3f___closed__1; x_632 = lean_string_dec_eq(x_628, x_631); lean_dec(x_628); if (x_632 == 0) @@ -20110,7 +20507,7 @@ _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_Elab_Tactic_Omega_evalUnsafe____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_6____closed__1; x_2 = l_Lean_Elab_Tactic_Omega_evalUnsafe____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_6____closed__3; -x_3 = l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__7; +x_3 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__9; x_4 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__17; x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); return x_5; @@ -20138,7 +20535,7 @@ static lean_object* _init_l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda_ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__7; +x_1 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__9; x_2 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__20; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; @@ -20210,7 +20607,7 @@ static lean_object* _init_l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda_ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__7; +x_1 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__9; x_2 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__28; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; @@ -20238,7 +20635,7 @@ static lean_object* _init_l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda_ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__8; +x_1 = l_Lean_Elab_Tactic_Omega_succ_x3f___closed__1; x_2 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__31; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; @@ -20268,7 +20665,7 @@ _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_Elab_Tactic_Omega_evalUnsafe____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_6____closed__1; x_2 = l_Lean_Elab_Tactic_Omega_evalUnsafe____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_6____closed__3; -x_3 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__9; +x_3 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__8; x_4 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__34; x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); return x_5; @@ -20296,7 +20693,7 @@ _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_Elab_Tactic_Omega_evalUnsafe____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_6____closed__1; x_2 = l_Lean_Elab_Tactic_Omega_evalUnsafe____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_6____closed__3; -x_3 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__8; +x_3 = l_Lean_Elab_Tactic_Omega_succ_x3f___closed__1; x_4 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__37; x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); return x_5; @@ -20318,7 +20715,7 @@ _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_Elab_Tactic_Omega_evalUnsafe____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_6____closed__1; x_2 = l_Lean_Elab_Tactic_Omega_evalUnsafe____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_6____closed__3; -x_3 = l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__7; +x_3 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__9; x_4 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__37; x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); return x_5; @@ -20384,7 +20781,7 @@ _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_Elab_Tactic_Omega_evalUnsafe____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_6____closed__1; x_2 = l_Lean_Elab_Tactic_Omega_evalUnsafe____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_6____closed__3; -x_3 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__8; +x_3 = l_Lean_Elab_Tactic_Omega_succ_x3f___closed__1; x_4 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__46; x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); return x_5; @@ -20406,7 +20803,7 @@ _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_Elab_Tactic_Omega_evalUnsafe____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_6____closed__1; x_2 = l_Lean_Elab_Tactic_Omega_evalUnsafe____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_6____closed__3; -x_3 = l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__7; +x_3 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__9; x_4 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__46; x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); return x_5; @@ -20464,7 +20861,7 @@ _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_Elab_Tactic_Omega_evalUnsafe____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_6____closed__1; x_2 = l_Lean_Elab_Tactic_Omega_evalUnsafe____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_6____closed__3; -x_3 = l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__7; +x_3 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__9; x_4 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__54; x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); return x_5; @@ -20492,7 +20889,7 @@ static lean_object* _init_l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda_ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__7; +x_1 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__9; x_2 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__57; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; @@ -20550,7 +20947,7 @@ _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_Elab_Tactic_Omega_evalUnsafe____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_6____closed__1; x_2 = l_Lean_Elab_Tactic_Omega_evalUnsafe____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_6____closed__3; -x_3 = l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__7; +x_3 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__9; x_4 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__63; x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); return x_5; @@ -20578,7 +20975,7 @@ static lean_object* _init_l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda_ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__7; +x_1 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__9; x_2 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__66; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; @@ -21457,12 +21854,12 @@ lean_dec(x_187); x_191 = lean_ctor_get(x_188, 1); lean_inc(x_191); lean_dec(x_188); -x_192 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__8; +x_192 = l_Lean_Elab_Tactic_Omega_succ_x3f___closed__1; x_193 = lean_string_dec_eq(x_191, x_192); if (x_193 == 0) { lean_object* x_194; uint8_t x_195; -x_194 = l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__7; +x_194 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__9; x_195 = lean_string_dec_eq(x_191, x_194); lean_dec(x_191); if (x_195 == 0) @@ -21684,12 +22081,12 @@ lean_dec(x_222); x_226 = lean_ctor_get(x_223, 1); lean_inc(x_226); lean_dec(x_223); -x_227 = l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__7; +x_227 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__9; x_228 = lean_string_dec_eq(x_226, x_227); if (x_228 == 0) { lean_object* x_229; uint8_t x_230; -x_229 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__8; +x_229 = l_Lean_Elab_Tactic_Omega_succ_x3f___closed__1; x_230 = lean_string_dec_eq(x_226, x_229); lean_dec(x_226); if (x_230 == 0) @@ -21778,7 +22175,7 @@ lean_object* x_248; lean_object* x_249; uint8_t x_250; x_248 = lean_ctor_get(x_244, 0); lean_inc(x_248); lean_dec(x_244); -x_249 = l_Lean_Elab_Tactic_Omega_mkInt___closed__1; +x_249 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__8; x_250 = lean_int_dec_lt(x_248, x_249); if (x_250 == 0) { @@ -22888,12 +23285,12 @@ lean_dec(x_464); x_468 = lean_ctor_get(x_465, 1); lean_inc(x_468); lean_dec(x_465); -x_469 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__8; +x_469 = l_Lean_Elab_Tactic_Omega_succ_x3f___closed__1; x_470 = lean_string_dec_eq(x_468, x_469); if (x_470 == 0) { lean_object* x_471; uint8_t x_472; -x_471 = l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__7; +x_471 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__9; x_472 = lean_string_dec_eq(x_468, x_471); lean_dec(x_468); if (x_472 == 0) @@ -23120,12 +23517,12 @@ lean_dec(x_506); x_510 = lean_ctor_get(x_507, 1); lean_inc(x_510); lean_dec(x_507); -x_511 = l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__7; +x_511 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__9; x_512 = lean_string_dec_eq(x_510, x_511); if (x_512 == 0) { lean_object* x_513; uint8_t x_514; -x_513 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__8; +x_513 = l_Lean_Elab_Tactic_Omega_succ_x3f___closed__1; x_514 = lean_string_dec_eq(x_510, x_513); lean_dec(x_510); if (x_514 == 0) @@ -23214,7 +23611,7 @@ lean_object* x_534; lean_object* x_535; uint8_t x_536; x_534 = lean_ctor_get(x_530, 0); lean_inc(x_534); lean_dec(x_530); -x_535 = l_Lean_Elab_Tactic_Omega_mkInt___closed__1; +x_535 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__8; x_536 = lean_int_dec_lt(x_534, x_535); if (x_536 == 0) { @@ -23601,7 +23998,7 @@ x_601 = lean_string_dec_eq(x_593, x_600); if (x_601 == 0) { lean_object* x_602; uint8_t x_603; -x_602 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__9; +x_602 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__8; x_603 = lean_string_dec_eq(x_593, x_602); if (x_603 == 0) { @@ -23707,12 +24104,12 @@ lean_dec(x_618); x_622 = lean_ctor_get(x_619, 1); lean_inc(x_622); lean_dec(x_619); -x_623 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__8; +x_623 = l_Lean_Elab_Tactic_Omega_succ_x3f___closed__1; x_624 = lean_string_dec_eq(x_622, x_623); if (x_624 == 0) { lean_object* x_625; uint8_t x_626; -x_625 = l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__7; +x_625 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__9; x_626 = lean_string_dec_eq(x_622, x_625); lean_dec(x_622); if (x_626 == 0) @@ -24043,12 +24440,12 @@ lean_dec(x_672); x_676 = lean_ctor_get(x_673, 1); lean_inc(x_676); lean_dec(x_673); -x_677 = l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__7; +x_677 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__9; x_678 = lean_string_dec_eq(x_676, x_677); if (x_678 == 0) { lean_object* x_679; uint8_t x_680; -x_679 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__8; +x_679 = l_Lean_Elab_Tactic_Omega_succ_x3f___closed__1; x_680 = lean_string_dec_eq(x_676, x_679); lean_dec(x_676); if (x_680 == 0) @@ -24456,12 +24853,12 @@ lean_dec(x_731); x_735 = lean_ctor_get(x_732, 1); lean_inc(x_735); lean_dec(x_732); -x_736 = l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__7; +x_736 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__9; x_737 = lean_string_dec_eq(x_735, x_736); if (x_737 == 0) { lean_object* x_738; uint8_t x_739; -x_738 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__8; +x_738 = l_Lean_Elab_Tactic_Omega_succ_x3f___closed__1; x_739 = lean_string_dec_eq(x_735, x_738); lean_dec(x_735); if (x_739 == 0) @@ -24869,12 +25266,12 @@ lean_dec(x_790); x_794 = lean_ctor_get(x_791, 1); lean_inc(x_794); lean_dec(x_791); -x_795 = l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__7; +x_795 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__9; x_796 = lean_string_dec_eq(x_794, x_795); if (x_796 == 0) { lean_object* x_797; uint8_t x_798; -x_797 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__8; +x_797 = l_Lean_Elab_Tactic_Omega_succ_x3f___closed__1; x_798 = lean_string_dec_eq(x_794, x_797); lean_dec(x_794); if (x_798 == 0) @@ -25282,12 +25679,12 @@ lean_dec(x_849); x_853 = lean_ctor_get(x_850, 1); lean_inc(x_853); lean_dec(x_850); -x_854 = l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__7; +x_854 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__9; x_855 = lean_string_dec_eq(x_853, x_854); if (x_855 == 0) { lean_object* x_856; uint8_t x_857; -x_856 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__8; +x_856 = l_Lean_Elab_Tactic_Omega_succ_x3f___closed__1; x_857 = lean_string_dec_eq(x_853, x_856); lean_dec(x_853); if (x_857 == 0) @@ -25376,7 +25773,7 @@ lean_object* x_875; lean_object* x_876; uint8_t x_877; x_875 = lean_ctor_get(x_871, 0); lean_inc(x_875); lean_dec(x_871); -x_876 = l_Lean_Elab_Tactic_Omega_mkInt___closed__1; +x_876 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__8; x_877 = lean_int_dec_lt(x_875, x_876); if (x_877 == 0) { @@ -25750,7 +26147,7 @@ x_932 = lean_string_dec_eq(x_924, x_931); if (x_932 == 0) { lean_object* x_933; uint8_t x_934; -x_933 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__9; +x_933 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__8; x_934 = lean_string_dec_eq(x_924, x_933); if (x_934 == 0) { @@ -25859,12 +26256,12 @@ lean_dec(x_952); x_956 = lean_ctor_get(x_953, 1); lean_inc(x_956); lean_dec(x_953); -x_957 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__8; +x_957 = l_Lean_Elab_Tactic_Omega_succ_x3f___closed__1; x_958 = lean_string_dec_eq(x_956, x_957); if (x_958 == 0) { lean_object* x_959; uint8_t x_960; -x_959 = l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__7; +x_959 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__9; x_960 = lean_string_dec_eq(x_956, x_959); lean_dec(x_956); if (x_960 == 0) @@ -26203,12 +26600,12 @@ lean_dec(x_1015); x_1019 = lean_ctor_get(x_1016, 1); lean_inc(x_1019); lean_dec(x_1016); -x_1020 = l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__7; +x_1020 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__9; x_1021 = lean_string_dec_eq(x_1019, x_1020); if (x_1021 == 0) { lean_object* x_1022; uint8_t x_1023; -x_1022 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__8; +x_1022 = l_Lean_Elab_Tactic_Omega_succ_x3f___closed__1; x_1023 = lean_string_dec_eq(x_1019, x_1022); lean_dec(x_1019); if (x_1023 == 0) @@ -26626,12 +27023,12 @@ lean_dec(x_1087); x_1091 = lean_ctor_get(x_1088, 1); lean_inc(x_1091); lean_dec(x_1088); -x_1092 = l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__7; +x_1092 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__9; x_1093 = lean_string_dec_eq(x_1091, x_1092); if (x_1093 == 0) { lean_object* x_1094; uint8_t x_1095; -x_1094 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__8; +x_1094 = l_Lean_Elab_Tactic_Omega_succ_x3f___closed__1; x_1095 = lean_string_dec_eq(x_1091, x_1094); lean_dec(x_1091); if (x_1095 == 0) @@ -27049,12 +27446,12 @@ lean_dec(x_1159); x_1163 = lean_ctor_get(x_1160, 1); lean_inc(x_1163); lean_dec(x_1160); -x_1164 = l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__7; +x_1164 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__9; x_1165 = lean_string_dec_eq(x_1163, x_1164); if (x_1165 == 0) { lean_object* x_1166; uint8_t x_1167; -x_1166 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__8; +x_1166 = l_Lean_Elab_Tactic_Omega_succ_x3f___closed__1; x_1167 = lean_string_dec_eq(x_1163, x_1166); lean_dec(x_1163); if (x_1167 == 0) @@ -27472,12 +27869,12 @@ lean_dec(x_1231); x_1235 = lean_ctor_get(x_1232, 1); lean_inc(x_1235); lean_dec(x_1232); -x_1236 = l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__7; +x_1236 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__9; x_1237 = lean_string_dec_eq(x_1235, x_1236); if (x_1237 == 0) { lean_object* x_1238; uint8_t x_1239; -x_1238 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__8; +x_1238 = l_Lean_Elab_Tactic_Omega_succ_x3f___closed__1; x_1239 = lean_string_dec_eq(x_1235, x_1238); lean_dec(x_1235); if (x_1239 == 0) @@ -27566,7 +27963,7 @@ lean_object* x_1259; lean_object* x_1260; uint8_t x_1261; x_1259 = lean_ctor_get(x_1255, 0); lean_inc(x_1259); lean_dec(x_1255); -x_1260 = l_Lean_Elab_Tactic_Omega_mkInt___closed__1; +x_1260 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__8; x_1261 = lean_int_dec_lt(x_1259, x_1260); if (x_1261 == 0) { @@ -33653,7 +34050,7 @@ static lean_object* _init_l___regBuiltin_Lean_Elab_Tactic_Omega_evalOmega_declRa _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(607u); +x_1 = lean_unsigned_to_nat(605u); x_2 = lean_unsigned_to_nat(0u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -33665,7 +34062,7 @@ static lean_object* _init_l___regBuiltin_Lean_Elab_Tactic_Omega_evalOmega_declRa _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(611u); +x_1 = lean_unsigned_to_nat(609u); x_2 = lean_unsigned_to_nat(31u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -33693,7 +34090,7 @@ static lean_object* _init_l___regBuiltin_Lean_Elab_Tactic_Omega_evalOmega_declRa _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(607u); +x_1 = lean_unsigned_to_nat(605u); x_2 = lean_unsigned_to_nat(4u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -33705,7 +34102,7 @@ static lean_object* _init_l___regBuiltin_Lean_Elab_Tactic_Omega_evalOmega_declRa _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(607u); +x_1 = lean_unsigned_to_nat(605u); x_2 = lean_unsigned_to_nat(13u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -33751,7 +34148,7 @@ x_4 = l_Lean_addBuiltinDeclarationRanges(x_2, x_3, x_1); return x_4; } } -static lean_object* _init_l_Lean_Elab_Tactic_Omega_initFn____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_14658____closed__1() { +static lean_object* _init_l_Lean_Elab_Tactic_Omega_initFn____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_14846____closed__1() { _start: { lean_object* x_1; @@ -33759,17 +34156,17 @@ x_1 = lean_mk_string_from_bytes("bv_toNat", 8); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_Omega_initFn____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_14658____closed__2() { +static lean_object* _init_l_Lean_Elab_Tactic_Omega_initFn____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_14846____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Elab_Tactic_Omega_initFn____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_14658____closed__1; +x_2 = l_Lean_Elab_Tactic_Omega_initFn____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_14846____closed__1; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Tactic_Omega_initFn____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_14658____closed__3() { +static lean_object* _init_l_Lean_Elab_Tactic_Omega_initFn____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_14846____closed__3() { _start: { lean_object* x_1; @@ -33777,7 +34174,7 @@ x_1 = lean_mk_string_from_bytes("bvOmegaSimpExtension", 20); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_Omega_initFn____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_14658____closed__4() { +static lean_object* _init_l_Lean_Elab_Tactic_Omega_initFn____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_14846____closed__4() { _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; @@ -33785,12 +34182,12 @@ x_1 = l_Lean_Elab_Tactic_Omega_evalUnsafe____x40_Lean_Elab_Tactic_Omega_Frontend x_2 = l___regBuiltin_Lean_Elab_Tactic_Omega_evalOmega___closed__1; x_3 = l_Lean_Elab_Tactic_Omega_evalOmega___closed__2; x_4 = l_Lean_Elab_Tactic_Omega_evalUnsafe____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_6____closed__3; -x_5 = l_Lean_Elab_Tactic_Omega_initFn____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_14658____closed__3; +x_5 = l_Lean_Elab_Tactic_Omega_initFn____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_14846____closed__3; x_6 = l_Lean_Name_mkStr5(x_1, x_2, x_3, x_4, x_5); return x_6; } } -static lean_object* _init_l_Lean_Elab_Tactic_Omega_initFn____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_14658____closed__5() { +static lean_object* _init_l_Lean_Elab_Tactic_Omega_initFn____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_14846____closed__5() { _start: { lean_object* x_1; @@ -33798,18 +34195,17 @@ x_1 = lean_mk_string_from_bytes("simp lemmas converting `BitVec` goals to `Nat` return x_1; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_initFn____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_14658_(lean_object* x_1) { +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_initFn____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_14846_(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_2 = l_Lean_Elab_Tactic_Omega_initFn____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_14658____closed__2; -x_3 = l_Lean_Elab_Tactic_Omega_initFn____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_14658____closed__5; -x_4 = l_Lean_Elab_Tactic_Omega_initFn____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_14658____closed__4; +x_2 = l_Lean_Elab_Tactic_Omega_initFn____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_14846____closed__2; +x_3 = l_Lean_Elab_Tactic_Omega_initFn____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_14846____closed__5; +x_4 = l_Lean_Elab_Tactic_Omega_initFn____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_14846____closed__4; x_5 = l_Lean_Meta_registerSimpAttr(x_2, x_3, x_4, x_1); return x_5; } } -lean_object* initialize_Init(uint8_t builtin, lean_object*); lean_object* initialize_Lean_Elab_Tactic_Omega_Core(uint8_t builtin, lean_object*); lean_object* initialize_Lean_Elab_Tactic_FalseOrByContra(uint8_t builtin, lean_object*); lean_object* initialize_Lean_Meta_Tactic_Cases(uint8_t builtin, lean_object*); @@ -33819,9 +34215,6 @@ LEAN_EXPORT lean_object* initialize_Lean_Elab_Tactic_Omega_Frontend(uint8_t buil lean_object * res; if (_G_initialized) return lean_io_result_mk_ok(lean_box(0)); _G_initialized = true; -res = initialize_Init(builtin, lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); res = initialize_Lean_Elab_Tactic_Omega_Core(builtin, lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); @@ -33868,46 +34261,16 @@ l_Lean_Elab_Tactic_Omega_elabOmegaConfig___closed__10 = _init_l_Lean_Elab_Tactic lean_mark_persistent(l_Lean_Elab_Tactic_Omega_elabOmegaConfig___closed__10); l_Lean_Elab_Tactic_Omega_elabOmegaConfig___closed__11 = _init_l_Lean_Elab_Tactic_Omega_elabOmegaConfig___closed__11(); lean_mark_persistent(l_Lean_Elab_Tactic_Omega_elabOmegaConfig___closed__11); -l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__1 = _init_l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__1(); -lean_mark_persistent(l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__1); -l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__2 = _init_l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__2(); -lean_mark_persistent(l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__2); -l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__3 = _init_l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__3(); -lean_mark_persistent(l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__3); -l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__4 = _init_l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__4(); -lean_mark_persistent(l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__4); -l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__5 = _init_l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__5(); -lean_mark_persistent(l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__5); -l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__6 = _init_l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__6(); -lean_mark_persistent(l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__6); -l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__7 = _init_l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__7(); -lean_mark_persistent(l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__7); -l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__8 = _init_l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__8(); -lean_mark_persistent(l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__8); -l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__9 = _init_l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__9(); -lean_mark_persistent(l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__9); -l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__10 = _init_l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__10(); -lean_mark_persistent(l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__10); -l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__11 = _init_l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__11(); -lean_mark_persistent(l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__11); -l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__12 = _init_l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__12(); -lean_mark_persistent(l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__12); -l_Lean_Elab_Tactic_Omega_mkInt___closed__1 = _init_l_Lean_Elab_Tactic_Omega_mkInt___closed__1(); -lean_mark_persistent(l_Lean_Elab_Tactic_Omega_mkInt___closed__1); -l_Lean_Elab_Tactic_Omega_mkInt___closed__2 = _init_l_Lean_Elab_Tactic_Omega_mkInt___closed__2(); -lean_mark_persistent(l_Lean_Elab_Tactic_Omega_mkInt___closed__2); -l_Lean_Elab_Tactic_Omega_mkInt___closed__3 = _init_l_Lean_Elab_Tactic_Omega_mkInt___closed__3(); -lean_mark_persistent(l_Lean_Elab_Tactic_Omega_mkInt___closed__3); -l_Lean_Elab_Tactic_Omega_mkInt___closed__4 = _init_l_Lean_Elab_Tactic_Omega_mkInt___closed__4(); -lean_mark_persistent(l_Lean_Elab_Tactic_Omega_mkInt___closed__4); -l_Lean_Elab_Tactic_Omega_mkInt___closed__5 = _init_l_Lean_Elab_Tactic_Omega_mkInt___closed__5(); -lean_mark_persistent(l_Lean_Elab_Tactic_Omega_mkInt___closed__5); -l_Lean_Elab_Tactic_Omega_mkInt___closed__6 = _init_l_Lean_Elab_Tactic_Omega_mkInt___closed__6(); -lean_mark_persistent(l_Lean_Elab_Tactic_Omega_mkInt___closed__6); -l_Lean_Elab_Tactic_Omega_mkInt___closed__7 = _init_l_Lean_Elab_Tactic_Omega_mkInt___closed__7(); -lean_mark_persistent(l_Lean_Elab_Tactic_Omega_mkInt___closed__7); -l_Lean_Elab_Tactic_Omega_mkInt___closed__8 = _init_l_Lean_Elab_Tactic_Omega_mkInt___closed__8(); -lean_mark_persistent(l_Lean_Elab_Tactic_Omega_mkInt___closed__8); +l_Lean_Elab_Tactic_Omega_succ_x3f___closed__1 = _init_l_Lean_Elab_Tactic_Omega_succ_x3f___closed__1(); +lean_mark_persistent(l_Lean_Elab_Tactic_Omega_succ_x3f___closed__1); +l_Lean_Elab_Tactic_Omega_succ_x3f___closed__2 = _init_l_Lean_Elab_Tactic_Omega_succ_x3f___closed__2(); +lean_mark_persistent(l_Lean_Elab_Tactic_Omega_succ_x3f___closed__2); +l_Lean_Elab_Tactic_Omega_succ_x3f___closed__3 = _init_l_Lean_Elab_Tactic_Omega_succ_x3f___closed__3(); +lean_mark_persistent(l_Lean_Elab_Tactic_Omega_succ_x3f___closed__3); +l_Lean_Elab_Tactic_Omega_succ_x3f___closed__4 = _init_l_Lean_Elab_Tactic_Omega_succ_x3f___closed__4(); +lean_mark_persistent(l_Lean_Elab_Tactic_Omega_succ_x3f___closed__4); +l_Lean_Elab_Tactic_Omega_succ_x3f___closed__5 = _init_l_Lean_Elab_Tactic_Omega_succ_x3f___closed__5(); +lean_mark_persistent(l_Lean_Elab_Tactic_Omega_succ_x3f___closed__5); l_Lean_Elab_Tactic_Omega_MetaProblem_problem___default___lambda__1___closed__1 = _init_l_Lean_Elab_Tactic_Omega_MetaProblem_problem___default___lambda__1___closed__1(); lean_mark_persistent(l_Lean_Elab_Tactic_Omega_MetaProblem_problem___default___lambda__1___closed__1); l_Lean_Elab_Tactic_Omega_MetaProblem_problem___default___closed__1 = _init_l_Lean_Elab_Tactic_Omega_MetaProblem_problem___default___closed__1(); @@ -33972,6 +34335,22 @@ l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__21 = _init_l_Lean_Elab_Tactic_ lean_mark_persistent(l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__21); l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__22 = _init_l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__22(); lean_mark_persistent(l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__22); +l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__23 = _init_l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__23(); +lean_mark_persistent(l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__23); +l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__24 = _init_l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__24(); +lean_mark_persistent(l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__24); +l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__25 = _init_l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__25(); +lean_mark_persistent(l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__25); +l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__26 = _init_l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__26(); +lean_mark_persistent(l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__26); +l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__27 = _init_l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__27(); +lean_mark_persistent(l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__27); +l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__28 = _init_l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__28(); +lean_mark_persistent(l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__28); +l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__29 = _init_l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__29(); +lean_mark_persistent(l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__29); +l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__30 = _init_l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__30(); +lean_mark_persistent(l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__30); l_Lean_Elab_Tactic_Omega_mkCoordinateEvalAtomsEq___closed__1 = _init_l_Lean_Elab_Tactic_Omega_mkCoordinateEvalAtomsEq___closed__1(); lean_mark_persistent(l_Lean_Elab_Tactic_Omega_mkCoordinateEvalAtomsEq___closed__1); l_Lean_Elab_Tactic_Omega_mkCoordinateEvalAtomsEq___closed__2 = _init_l_Lean_Elab_Tactic_Omega_mkCoordinateEvalAtomsEq___closed__2(); @@ -34182,6 +34561,18 @@ l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__40 = _init_l_Le lean_mark_persistent(l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__40); l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__41 = _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__41(); lean_mark_persistent(l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__41); +l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__42 = _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__42(); +lean_mark_persistent(l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__42); +l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__43 = _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__43(); +lean_mark_persistent(l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__43); +l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__44 = _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__44(); +lean_mark_persistent(l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__44); +l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__45 = _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__45(); +lean_mark_persistent(l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__45); +l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__46 = _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__46(); +lean_mark_persistent(l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__46); +l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__47 = _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__47(); +lean_mark_persistent(l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__47); l_Lean_Elab_Tactic_Omega_asLinearComboImpl___closed__1 = _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___closed__1(); lean_mark_persistent(l_Lean_Elab_Tactic_Omega_asLinearComboImpl___closed__1); l_Lean_Elab_Tactic_Omega_asLinearComboImpl___closed__2 = _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___closed__2(); @@ -34294,8 +34685,6 @@ l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__53 = _init_l_ lean_mark_persistent(l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__53); l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__54 = _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__54(); lean_mark_persistent(l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__54); -l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__55 = _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__55(); -lean_mark_persistent(l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__55); l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleFinVal___closed__1 = _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleFinVal___closed__1(); lean_mark_persistent(l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleFinVal___closed__1); l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleFinVal___closed__2 = _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleFinVal___closed__2(); @@ -34744,17 +35133,17 @@ lean_mark_persistent(l___regBuiltin_Lean_Elab_Tactic_Omega_evalOmega_declRange__ if (builtin) {res = l___regBuiltin_Lean_Elab_Tactic_Omega_evalOmega_declRange(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}l_Lean_Elab_Tactic_Omega_initFn____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_14658____closed__1 = _init_l_Lean_Elab_Tactic_Omega_initFn____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_14658____closed__1(); -lean_mark_persistent(l_Lean_Elab_Tactic_Omega_initFn____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_14658____closed__1); -l_Lean_Elab_Tactic_Omega_initFn____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_14658____closed__2 = _init_l_Lean_Elab_Tactic_Omega_initFn____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_14658____closed__2(); -lean_mark_persistent(l_Lean_Elab_Tactic_Omega_initFn____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_14658____closed__2); -l_Lean_Elab_Tactic_Omega_initFn____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_14658____closed__3 = _init_l_Lean_Elab_Tactic_Omega_initFn____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_14658____closed__3(); -lean_mark_persistent(l_Lean_Elab_Tactic_Omega_initFn____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_14658____closed__3); -l_Lean_Elab_Tactic_Omega_initFn____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_14658____closed__4 = _init_l_Lean_Elab_Tactic_Omega_initFn____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_14658____closed__4(); -lean_mark_persistent(l_Lean_Elab_Tactic_Omega_initFn____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_14658____closed__4); -l_Lean_Elab_Tactic_Omega_initFn____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_14658____closed__5 = _init_l_Lean_Elab_Tactic_Omega_initFn____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_14658____closed__5(); -lean_mark_persistent(l_Lean_Elab_Tactic_Omega_initFn____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_14658____closed__5); -if (builtin) {res = l_Lean_Elab_Tactic_Omega_initFn____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_14658_(lean_io_mk_world()); +}l_Lean_Elab_Tactic_Omega_initFn____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_14846____closed__1 = _init_l_Lean_Elab_Tactic_Omega_initFn____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_14846____closed__1(); +lean_mark_persistent(l_Lean_Elab_Tactic_Omega_initFn____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_14846____closed__1); +l_Lean_Elab_Tactic_Omega_initFn____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_14846____closed__2 = _init_l_Lean_Elab_Tactic_Omega_initFn____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_14846____closed__2(); +lean_mark_persistent(l_Lean_Elab_Tactic_Omega_initFn____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_14846____closed__2); +l_Lean_Elab_Tactic_Omega_initFn____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_14846____closed__3 = _init_l_Lean_Elab_Tactic_Omega_initFn____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_14846____closed__3(); +lean_mark_persistent(l_Lean_Elab_Tactic_Omega_initFn____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_14846____closed__3); +l_Lean_Elab_Tactic_Omega_initFn____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_14846____closed__4 = _init_l_Lean_Elab_Tactic_Omega_initFn____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_14846____closed__4(); +lean_mark_persistent(l_Lean_Elab_Tactic_Omega_initFn____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_14846____closed__4); +l_Lean_Elab_Tactic_Omega_initFn____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_14846____closed__5 = _init_l_Lean_Elab_Tactic_Omega_initFn____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_14846____closed__5(); +lean_mark_persistent(l_Lean_Elab_Tactic_Omega_initFn____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_14846____closed__5); +if (builtin) {res = l_Lean_Elab_Tactic_Omega_initFn____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_14846_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; l_Lean_Elab_Tactic_Omega_bvOmegaSimpExtension = lean_io_result_get_value(res); lean_mark_persistent(l_Lean_Elab_Tactic_Omega_bvOmegaSimpExtension); diff --git a/stage0/stdlib/Lean/Elab/Tactic/Omega/MinNatAbs.c b/stage0/stdlib/Lean/Elab/Tactic/Omega/MinNatAbs.c index 570807f20c..9403959429 100644 --- a/stage0/stdlib/Lean/Elab/Tactic/Omega/MinNatAbs.c +++ b/stage0/stdlib/Lean/Elab/Tactic/Omega/MinNatAbs.c @@ -1,6 +1,6 @@ // Lean compiler output // Module: Lean.Elab.Tactic.Omega.MinNatAbs -// Imports: Init +// Imports: Init.BinderPredicates Init.Data.List Init.Data.Option #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -346,13 +346,21 @@ lean_dec(x_1); return x_2; } } -lean_object* initialize_Init(uint8_t builtin, lean_object*); +lean_object* initialize_Init_BinderPredicates(uint8_t builtin, lean_object*); +lean_object* initialize_Init_Data_List(uint8_t builtin, lean_object*); +lean_object* initialize_Init_Data_Option(uint8_t builtin, lean_object*); static bool _G_initialized = false; LEAN_EXPORT lean_object* initialize_Lean_Elab_Tactic_Omega_MinNatAbs(uint8_t builtin, lean_object* w) { lean_object * res; if (_G_initialized) return lean_io_result_mk_ok(lean_box(0)); _G_initialized = true; -res = initialize_Init(builtin, lean_io_mk_world()); +res = initialize_Init_BinderPredicates(builtin, lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +res = initialize_Init_Data_List(builtin, lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +res = initialize_Init_Data_Option(builtin, lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); return lean_io_result_mk_ok(lean_box(0)); diff --git a/stage0/stdlib/Lean/Elab/Tactic/Omega/OmegaM.c b/stage0/stdlib/Lean/Elab/Tactic/Omega/OmegaM.c index a1441679c1..12d3dd2f2e 100644 --- a/stage0/stdlib/Lean/Elab/Tactic/Omega/OmegaM.c +++ b/stage0/stdlib/Lean/Elab/Tactic/Omega/OmegaM.c @@ -1,6 +1,6 @@ // Lean compiler output // Module: Lean.Elab.Tactic.Omega.OmegaM -// Imports: Init Lean.Meta.AppBuilder +// Imports: Init.Omega.LinearCombo Init.Omega.Int Init.Omega.Logic Init.Data.BitVec Lean.Meta.AppBuilder #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -25,6 +25,7 @@ lean_object* l_Lean_mkNatLit(lean_object*); static lean_object* l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__27; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_atomsList___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Omega_lookup___lambda__3___closed__2; +static lean_object* l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__110; static lean_object* l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__79; lean_object* lean_mk_empty_array_with_capacity(lean_object*); static lean_object* l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__81; @@ -37,6 +38,7 @@ static lean_object* l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__8; static lean_object* l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__73; static lean_object* l_Lean_Elab_Tactic_Omega_atomsCoeffs___rarg___closed__2; static lean_object* l_Lean_Elab_Tactic_Omega_lookup___lambda__3___closed__3; +static lean_object* l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__99; lean_object* l_Lean_mkAppB(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Omega_atomsCoeffs___rarg___closed__5; static lean_object* l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__87; @@ -56,6 +58,7 @@ lean_object* lean_array_push(lean_object*, lean_object*); lean_object* l_Lean_mkHashSetImp___rarg(lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_OmegaM_run___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_natCast_x3f(lean_object*); +static lean_object* l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__109; uint8_t lean_usize_dec_eq(size_t, size_t); LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_Omega_lookup___spec__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__85; @@ -72,6 +75,7 @@ static lean_object* l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__35; static lean_object* l_Lean_Elab_Tactic_Omega_atomsList___rarg___closed__1; lean_object* l_Int_ediv___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_groundInt_x3f_op(lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__108; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_commitWhen___rarg___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_Lean_Elab_Tactic_Omega_analyzeAtom___closed__10; static lean_object* l_Lean_Elab_Tactic_Omega_groundNat_x3f___closed__8; @@ -88,6 +92,7 @@ uint8_t lean_string_dec_eq(lean_object*, lean_object*); lean_object* l_Nat_sub___boxed(lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Omega_lookup___lambda__2___closed__4; lean_object* l_Int_sub___boxed(lean_object*, lean_object*); +uint8_t lean_int_dec_le(lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__26; static lean_object* l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__34; lean_object* l_Lean_Level_ofNat(lean_object*); @@ -112,6 +117,7 @@ static lean_object* l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__49; static lean_object* l_Lean_Elab_Tactic_Omega_groundNat_x3f___closed__12; uint8_t lean_expr_eqv(lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Omega_lookup___lambda__2___closed__3; +static lean_object* l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__100; lean_object* lean_nat_to_int(lean_object*); static lean_object* l_Lean_Elab_Tactic_Omega_atomsCoeffs___rarg___closed__6; static lean_object* l_Lean_Elab_Tactic_Omega_groundNat_x3f___closed__3; @@ -128,6 +134,7 @@ static lean_object* l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__46; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_cfg___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_isTracingEnabledFor___at_Lean_Elab_Tactic_Omega_lookup___spec__2___closed__1; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_groundNat_x3f(lean_object*); +static lean_object* l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__101; LEAN_EXPORT lean_object* l_Std_Range_forIn_x27_loop___at_Lean_Elab_Tactic_Omega_lookup___spec__1___boxed(lean_object**); lean_object* lean_st_ref_get(lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__29; @@ -150,14 +157,17 @@ static lean_object* l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__41; static lean_object* l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__97; static lean_object* l_Lean_Elab_Tactic_Omega_atomsList___rarg___closed__2; static lean_object* l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__67; +static lean_object* l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__103; static lean_object* l_Lean_Elab_Tactic_Omega_atomsCoeffs___rarg___closed__3; static lean_object* l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__7; LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_Omega_lookup___spec__5(lean_object*, size_t, size_t, lean_object*); +static lean_object* l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__106; static lean_object* l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__23; lean_object* l_Lean_Name_str___override(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_lookup___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_EXPORT lean_object* l_Lean_HashSet_toList___at_Lean_Elab_Tactic_Omega_lookup___spec__3(lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_mkEqReflWithExpectedType(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__107; static lean_object* l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__21; lean_object* l_Nat_mul___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_List_foldlM___at_Lean_Elab_Tactic_Omega_lookup___spec__4(lean_object*, lean_object*); @@ -174,6 +184,7 @@ extern lean_object* l_Lean_inheritedTraceOptions; lean_object* l_Lean_MessageData_ofExpr(lean_object*); static lean_object* l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__38; static lean_object* l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__60; +static lean_object* l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__104; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_commitWhen___rarg___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_Lean_Elab_Tactic_Omega_analyzeAtom___closed__31; static lean_object* l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__90; @@ -214,6 +225,7 @@ LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_groundInt_x3f(lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_commitWhen___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, 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*); static lean_object* l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__56; +lean_object* l_Int_toNat(lean_object*); static lean_object* l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__92; static lean_object* l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__44; static lean_object* l_Lean_Elab_Tactic_Omega_groundNat_x3f___closed__10; @@ -242,12 +254,13 @@ size_t lean_usize_add(size_t, size_t); static lean_object* l_Lean_Elab_Tactic_Omega_groundNat_x3f___closed__4; lean_object* lean_array_uget(lean_object*, size_t); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_atoms___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_instToExprInt_mkNat(lean_object*); static lean_object* l_Lean_Elab_Tactic_Omega_lookup___lambda__2___closed__1; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_atomsCoeffs___boxed(lean_object*); lean_object* lean_st_ref_set(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__82; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_atomsList(lean_object*); -static lean_object* l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__50; +static uint8_t l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__50; lean_object* l_Lean_Name_mkStr4(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_getAppFnArgs(lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_OmegaM_run(lean_object*); @@ -256,6 +269,7 @@ static lean_object* l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__13; static lean_object* l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__61; lean_object* lean_array_get_size(lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_cfg___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* lean_int_neg(lean_object*); lean_object* lean_infer_type(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__5; uint8_t lean_nat_dec_le(lean_object*, lean_object*); @@ -265,6 +279,7 @@ LEAN_EXPORT lean_object* l_Lean_addTrace___at_Lean_Elab_Tactic_Omega_lookup___sp LEAN_EXPORT lean_object* l_Lean_mkHashMap___at_Lean_Elab_Tactic_Omega_OmegaM_run___spec__1(lean_object*); lean_object* l_Lean_mkApp5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__16; +static lean_object* l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__102; lean_object* l_Lean_Expr_nat_x3f(lean_object*); static lean_object* l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__66; static lean_object* l_Lean_Elab_Tactic_Omega_lookup___lambda__3___closed__4; @@ -274,6 +289,7 @@ static lean_object* l_Lean_Elab_Tactic_Omega_groundInt_x3f___closed__3; static lean_object* l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__64; lean_object* l_Lean_HashSetImp_insert___at_Lean_CollectMVars_visit___spec__3(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_withoutModifyingState___rarg___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_Omega_analyzeAtom___closed__105; LEAN_EXPORT lean_object* l_ReaderT_bind___at_Lean_Elab_Tactic_Omega_withoutModifyingState___spec__1(lean_object*, lean_object*); static lean_object* _init_l_Lean_Elab_Tactic_Omega_State_atoms___default___closed__1() { _start: @@ -2869,80 +2885,181 @@ return x_3; static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__49() { _start: { -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("ofNat", 5); -return x_1; +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_Lean_Elab_Tactic_Omega_analyzeAtom___closed__50() { +static uint8_t _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__50() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Tactic_Omega_atomsList___rarg___closed__1; -x_2 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__49; -x_3 = l_Lean_Name_mkStr2(x_1, x_2); -return x_3; +lean_object* x_1; uint8_t x_2; +x_1 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__49; +x_2 = lean_int_dec_le(x_1, x_1); +return x_2; } } static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__51() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__50; -x_3 = l_Lean_Expr_const___override(x_2, x_1); -return x_3; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__52() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__51; -x_2 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__36; -x_3 = l_Lean_Expr_app___override(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__53() { -_start: -{ lean_object* x_1; x_1 = lean_mk_string_from_bytes("emod_lt_of_pos", 14); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__54() { +static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__52() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Elab_Tactic_Omega_atomsList___rarg___closed__1; -x_2 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__53; +x_2 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__51; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } +static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__53() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__52; +x_3 = l_Lean_Expr_const___override(x_2, x_1); +return x_3; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__54() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("Neg", 3); +return x_1; +} +} static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__55() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__54; -x_3 = l_Lean_Expr_const___override(x_2, x_1); -return x_3; +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("neg", 3); +return x_1; } } static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__56() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__54; +x_2 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__55; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__57() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__56; +x_2 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__29; +x_3 = l_Lean_Expr_const___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__58() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); x_2 = l_Lean_Elab_Tactic_Omega_atomsList___rarg___closed__2; x_3 = l_Lean_Expr_const___override(x_2, x_1); return x_3; } } -static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__57() { +static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__59() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("instNegInt", 10); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__60() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Elab_Tactic_Omega_atomsList___rarg___closed__1; +x_2 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__59; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__61() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__60; +x_3 = l_Lean_Expr_const___override(x_2, x_1); +return x_3; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__62() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__49; +x_2 = lean_int_neg(x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__63() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__62; +x_2 = l_Int_toNat(x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__64() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__63; +x_2 = l_Lean_instToExprInt_mkNat(x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__65() { +_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_Elab_Tactic_Omega_analyzeAtom___closed__57; +x_2 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__58; +x_3 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__61; +x_4 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__64; +x_5 = l_Lean_mkApp3(x_1, x_2, x_3, x_4); +return x_5; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__66() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__49; +x_2 = l_Int_toNat(x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__67() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__66; +x_2 = l_Lean_instToExprInt_mkNat(x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__68() { _start: { lean_object* x_1; @@ -2950,37 +3067,27 @@ x_1 = lean_mk_string_from_bytes("instLTInt", 9); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__58() { +static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__69() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Elab_Tactic_Omega_atomsList___rarg___closed__1; -x_2 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__57; +x_2 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__68; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__59() { +static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__70() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__58; +x_2 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__69; x_3 = l_Lean_Expr_const___override(x_2, x_1); return x_3; } } -static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__60() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__51; -x_2 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__36; -x_3 = l_Lean_Expr_app___override(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__61() { +static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__71() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; @@ -2992,17 +3099,29 @@ x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); return x_5; } } -static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__62() { +static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__72() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__61; +x_2 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__71; x_3 = l_Lean_Expr_const___override(x_2, x_1); return x_3; } } -static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__63() { +static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__73() { +_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_Elab_Tactic_Omega_analyzeAtom___closed__57; +x_2 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__58; +x_3 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__61; +x_4 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__64; +x_5 = l_Lean_mkApp3(x_1, x_2, x_3, x_4); +return x_5; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__74() { _start: { lean_object* x_1; @@ -3010,17 +3129,17 @@ x_1 = lean_mk_string_from_bytes("Ne", 2); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__64() { +static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__75() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__63; +x_2 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__74; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__65() { +static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__76() { _start: { lean_object* x_1; lean_object* x_2; @@ -3029,29 +3148,29 @@ x_2 = l_Lean_Level_ofNat(x_1); return x_2; } } -static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__66() { +static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__77() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__65; +x_2 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__76; 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_Lean_Elab_Tactic_Omega_analyzeAtom___closed__67() { +static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__78() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__64; -x_2 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__66; +x_1 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__75; +x_2 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__77; x_3 = l_Lean_Expr_const___override(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__68() { +static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__79() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -3061,7 +3180,7 @@ x_3 = l_Lean_Expr_const___override(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__69() { +static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__80() { _start: { lean_object* x_1; @@ -3069,111 +3188,11 @@ x_1 = lean_mk_string_from_bytes("mul_ediv_self_le", 16); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__70() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Tactic_Omega_atomsList___rarg___closed__1; -x_2 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__69; -x_3 = l_Lean_Name_mkStr2(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__71() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__70; -x_3 = l_Lean_Expr_const___override(x_2, x_1); -return x_3; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__72() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("lt_mul_ediv_self_add", 20); -return x_1; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__73() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Tactic_Omega_atomsList___rarg___closed__1; -x_2 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__72; -x_3 = l_Lean_Name_mkStr2(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__74() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__73; -x_3 = l_Lean_Expr_const___override(x_2, x_1); -return x_3; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__75() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("ofNat_nonneg", 12); -return x_1; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__76() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Tactic_Omega_atomsList___rarg___closed__1; -x_2 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__75; -x_3 = l_Lean_Name_mkStr2(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__77() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__76; -x_3 = l_Lean_Expr_const___override(x_2, x_1); -return x_3; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__78() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("Fin", 3); -return x_1; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__79() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("val", 3); -return x_1; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__80() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("isLt", 4); -return x_1; -} -} static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__81() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__78; +x_1 = l_Lean_Elab_Tactic_Omega_atomsList___rarg___closed__1; x_2 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__80; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; @@ -3193,25 +3212,27 @@ static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__83() { _start: { lean_object* x_1; -x_1 = lean_mk_string_from_bytes("natAbs", 6); +x_1 = lean_mk_string_from_bytes("lt_mul_ediv_self_add", 20); return x_1; } } static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__84() { _start: { -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("le_natAbs", 9); -return x_1; +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Elab_Tactic_Omega_atomsList___rarg___closed__1; +x_2 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__83; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; } } static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__85() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Tactic_Omega_atomsList___rarg___closed__1; +x_1 = lean_box(0); x_2 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__84; -x_3 = l_Lean_Name_mkStr2(x_1, x_2); +x_3 = l_Lean_Expr_const___override(x_2, x_1); return x_3; } } @@ -3219,55 +3240,57 @@ static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__86() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__85; -x_3 = l_Lean_Expr_const___override(x_2, x_1); +x_1 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__56; +x_2 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__6; +x_3 = l_Lean_Expr_const___override(x_1, x_2); return x_3; } } static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__87() { _start: { -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("neg_le_natAbs", 13); -return x_1; +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_1 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__86; +x_2 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__58; +x_3 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__61; +x_4 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__64; +x_5 = l_Lean_mkApp3(x_1, x_2, x_3, x_4); +return x_5; } } static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__88() { _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_Elab_Tactic_Omega_atomsCoeffs___rarg___closed__1; -x_2 = l_Lean_Elab_Tactic_Omega_atomsCoeffs___rarg___closed__2; -x_3 = l_Lean_Elab_Tactic_Omega_atomsList___rarg___closed__1; -x_4 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__87; -x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); -return x_5; +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("ofNat_nonneg", 12); +return x_1; } } static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__89() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); +x_1 = l_Lean_Elab_Tactic_Omega_atomsList___rarg___closed__1; x_2 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__88; -x_3 = l_Lean_Expr_const___override(x_2, x_1); +x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__90() { _start: { -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("Std", 3); -return x_1; +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__89; +x_3 = l_Lean_Expr_const___override(x_2, x_1); +return x_3; } } static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__91() { _start: { lean_object* x_1; -x_1 = lean_mk_string_from_bytes("BitVec", 6); +x_1 = lean_mk_string_from_bytes("Fin", 3); return x_1; } } @@ -3275,7 +3298,7 @@ static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__92() { _start: { lean_object* x_1; -x_1 = lean_mk_string_from_bytes("toNat", 5); +x_1 = lean_mk_string_from_bytes("BitVec", 6); return x_1; } } @@ -3283,57 +3306,166 @@ static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__93() { _start: { lean_object* x_1; -x_1 = lean_mk_string_from_bytes("toNat_lt", 8); +x_1 = lean_mk_string_from_bytes("toNat", 5); return x_1; } } static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__94() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__90; -x_2 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__91; -x_3 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__93; -x_4 = l_Lean_Name_mkStr3(x_1, x_2, x_3); -return x_4; +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("toNat_lt", 8); +return x_1; } } static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__95() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); +x_1 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__92; x_2 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__94; -x_3 = l_Lean_Expr_const___override(x_2, x_1); +x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__96() { _start: { +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__95; +x_3 = l_Lean_Expr_const___override(x_2, x_1); +return x_3; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__97() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("val", 3); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__98() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("isLt", 4); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__99() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__91; +x_2 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__98; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__100() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__99; +x_3 = l_Lean_Expr_const___override(x_2, x_1); +return x_3; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__101() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("natAbs", 6); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__102() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("le_natAbs", 9); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__103() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Elab_Tactic_Omega_atomsList___rarg___closed__1; +x_2 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__102; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__104() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__103; +x_3 = l_Lean_Expr_const___override(x_2, x_1); +return x_3; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__105() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("neg_le_natAbs", 13); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__106() { +_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_Elab_Tactic_Omega_atomsCoeffs___rarg___closed__1; +x_2 = l_Lean_Elab_Tactic_Omega_atomsCoeffs___rarg___closed__2; +x_3 = l_Lean_Elab_Tactic_Omega_atomsList___rarg___closed__1; +x_4 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__105; +x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); +return x_5; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__107() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__106; +x_3 = l_Lean_Expr_const___override(x_2, x_1); +return x_3; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__108() { +_start: +{ lean_object* x_1; x_1 = lean_mk_string_from_bytes("ofNat_sub_dichotomy", 19); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__97() { +static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__109() { _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_Elab_Tactic_Omega_atomsCoeffs___rarg___closed__1; x_2 = l_Lean_Elab_Tactic_Omega_atomsCoeffs___rarg___closed__2; x_3 = l_Lean_Elab_Tactic_Omega_atomsList___rarg___closed__1; -x_4 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__96; +x_4 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__108; x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); return x_5; } } -static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__98() { +static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__110() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__97; +x_2 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__109; x_3 = l_Lean_Expr_const___override(x_2, x_1); return x_3; } @@ -3950,92 +4082,134 @@ uint8_t x_178; x_178 = !lean_is_exclusive(x_177); if (x_178 == 0) { -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_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; x_179 = lean_ctor_get(x_177, 0); x_180 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__39; x_181 = l_Lean_mkApp3(x_180, x_165, x_166, x_179); x_182 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__42; x_183 = l_Lean_mkAppB(x_182, x_146, x_181); -x_184 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__48; -x_185 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__52; +x_184 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__53; lean_inc(x_183); lean_inc(x_113); -x_186 = l_Lean_mkApp3(x_184, x_113, x_185, x_183); -x_187 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__45; -lean_inc(x_113); lean_inc(x_111); -x_188 = l_Lean_mkApp3(x_187, x_111, x_113, x_186); -x_189 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__55; -x_190 = l_Lean_mkApp3(x_189, x_111, x_113, x_183); -x_191 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__1; -x_192 = l_Lean_HashSetImp_insert___at_Lean_CollectMVars_visit___spec__3(x_191, x_188); -x_193 = l_Lean_HashSetImp_insert___at_Lean_CollectMVars_visit___spec__3(x_192, x_190); -lean_ctor_set(x_177, 0, x_193); +x_185 = l_Lean_mkApp3(x_184, x_111, x_113, x_183); +x_186 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__50; +if (x_186 == 0) +{ +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; +x_187 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__48; +x_188 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__65; +lean_inc(x_113); +x_189 = l_Lean_mkApp3(x_187, x_113, x_188, x_183); +x_190 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__45; +x_191 = l_Lean_mkApp3(x_190, x_111, x_113, x_189); +x_192 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__1; +x_193 = l_Lean_HashSetImp_insert___at_Lean_CollectMVars_visit___spec__3(x_192, x_191); +x_194 = l_Lean_HashSetImp_insert___at_Lean_CollectMVars_visit___spec__3(x_193, x_185); +lean_ctor_set(x_177, 0, x_194); return x_177; } else { -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; -x_194 = lean_ctor_get(x_177, 0); -x_195 = lean_ctor_get(x_177, 1); -lean_inc(x_195); -lean_inc(x_194); -lean_dec(x_177); -x_196 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__39; -x_197 = l_Lean_mkApp3(x_196, x_165, x_166, x_194); -x_198 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__42; -x_199 = l_Lean_mkAppB(x_198, x_146, x_197); -x_200 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__48; -x_201 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__52; -lean_inc(x_199); +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; +x_195 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__48; +x_196 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__67; lean_inc(x_113); -x_202 = l_Lean_mkApp3(x_200, x_113, x_201, x_199); -x_203 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__45; -lean_inc(x_113); -lean_inc(x_111); -x_204 = l_Lean_mkApp3(x_203, x_111, x_113, x_202); -x_205 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__55; -x_206 = l_Lean_mkApp3(x_205, x_111, x_113, x_199); -x_207 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__1; -x_208 = l_Lean_HashSetImp_insert___at_Lean_CollectMVars_visit___spec__3(x_207, x_204); -x_209 = l_Lean_HashSetImp_insert___at_Lean_CollectMVars_visit___spec__3(x_208, x_206); -x_210 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_210, 0, x_209); -lean_ctor_set(x_210, 1, x_195); -return x_210; +x_197 = l_Lean_mkApp3(x_195, x_113, x_196, x_183); +x_198 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__45; +x_199 = l_Lean_mkApp3(x_198, x_111, x_113, x_197); +x_200 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__1; +x_201 = l_Lean_HashSetImp_insert___at_Lean_CollectMVars_visit___spec__3(x_200, x_199); +x_202 = l_Lean_HashSetImp_insert___at_Lean_CollectMVars_visit___spec__3(x_201, x_185); +lean_ctor_set(x_177, 0, x_202); +return x_177; } } else { -uint8_t x_211; +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; uint8_t x_211; +x_203 = lean_ctor_get(x_177, 0); +x_204 = lean_ctor_get(x_177, 1); +lean_inc(x_204); +lean_inc(x_203); +lean_dec(x_177); +x_205 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__39; +x_206 = l_Lean_mkApp3(x_205, x_165, x_166, x_203); +x_207 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__42; +x_208 = l_Lean_mkAppB(x_207, x_146, x_206); +x_209 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__53; +lean_inc(x_208); +lean_inc(x_113); +lean_inc(x_111); +x_210 = l_Lean_mkApp3(x_209, x_111, x_113, x_208); +x_211 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__50; +if (x_211 == 0) +{ +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; +x_212 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__48; +x_213 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__65; +lean_inc(x_113); +x_214 = l_Lean_mkApp3(x_212, x_113, x_213, x_208); +x_215 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__45; +x_216 = l_Lean_mkApp3(x_215, x_111, x_113, x_214); +x_217 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__1; +x_218 = l_Lean_HashSetImp_insert___at_Lean_CollectMVars_visit___spec__3(x_217, x_216); +x_219 = l_Lean_HashSetImp_insert___at_Lean_CollectMVars_visit___spec__3(x_218, x_210); +x_220 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_220, 0, x_219); +lean_ctor_set(x_220, 1, x_204); +return x_220; +} +else +{ +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; +x_221 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__48; +x_222 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__67; +lean_inc(x_113); +x_223 = l_Lean_mkApp3(x_221, x_113, x_222, x_208); +x_224 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__45; +x_225 = l_Lean_mkApp3(x_224, x_111, x_113, x_223); +x_226 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__1; +x_227 = l_Lean_HashSetImp_insert___at_Lean_CollectMVars_visit___spec__3(x_226, x_225); +x_228 = l_Lean_HashSetImp_insert___at_Lean_CollectMVars_visit___spec__3(x_227, x_210); +x_229 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_229, 0, x_228); +lean_ctor_set(x_229, 1, x_204); +return x_229; +} +} +} +else +{ +uint8_t x_230; lean_dec(x_166); lean_dec(x_165); lean_dec(x_146); lean_dec(x_113); lean_dec(x_111); -x_211 = !lean_is_exclusive(x_177); -if (x_211 == 0) +x_230 = !lean_is_exclusive(x_177); +if (x_230 == 0) { return x_177; } else { -lean_object* x_212; lean_object* x_213; lean_object* x_214; -x_212 = lean_ctor_get(x_177, 0); -x_213 = lean_ctor_get(x_177, 1); -lean_inc(x_213); -lean_inc(x_212); +lean_object* x_231; lean_object* x_232; lean_object* x_233; +x_231 = lean_ctor_get(x_177, 0); +x_232 = lean_ctor_get(x_177, 1); +lean_inc(x_232); +lean_inc(x_231); lean_dec(x_177); -x_214 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_214, 0, x_212); -lean_ctor_set(x_214, 1, x_213); -return x_214; +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 { -lean_object* x_215; lean_object* x_216; +lean_object* x_234; lean_object* x_235; lean_dec(x_166); lean_dec(x_165); lean_dec(x_146); @@ -4045,11 +4219,11 @@ lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); -x_215 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__1; -x_216 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_216, 0, x_215); -lean_ctor_set(x_216, 1, x_9); -return x_216; +x_234 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__1; +x_235 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_235, 0, x_234); +lean_ctor_set(x_235, 1, x_9); +return x_235; } } } @@ -4058,7 +4232,7 @@ return x_216; } else { -lean_object* x_217; lean_object* x_218; +lean_object* x_236; lean_object* x_237; lean_dec(x_150); lean_dec(x_149); lean_dec(x_148); @@ -4070,16 +4244,16 @@ lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); -x_217 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__1; -x_218 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_218, 0, x_217); -lean_ctor_set(x_218, 1, x_9); -return x_218; +x_236 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__1; +x_237 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_237, 0, x_236); +lean_ctor_set(x_237, 1, x_9); +return x_237; } } else { -lean_object* x_219; lean_object* x_220; +lean_object* x_238; lean_object* x_239; lean_dec(x_149); lean_dec(x_148); lean_dec(x_147); @@ -4090,16 +4264,16 @@ lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); -x_219 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__1; -x_220 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_220, 0, x_219); -lean_ctor_set(x_220, 1, x_9); -return x_220; +x_238 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__1; +x_239 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_239, 0, x_238); +lean_ctor_set(x_239, 1, x_9); +return x_239; } } else { -lean_object* x_221; lean_object* x_222; +lean_object* x_240; lean_object* x_241; lean_dec(x_148); lean_dec(x_147); lean_dec(x_146); @@ -4109,150 +4283,18 @@ lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); -x_221 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__1; -x_222 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_222, 0, x_221); -lean_ctor_set(x_222, 1, x_9); -return x_222; +x_240 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__1; +x_241 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_241, 0, x_240); +lean_ctor_set(x_241, 1, x_9); +return x_241; } } else { -lean_object* x_223; lean_object* x_224; -lean_dec(x_139); -lean_dec(x_118); -lean_dec(x_113); -lean_dec(x_111); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -x_223 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__1; -x_224 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_224, 0, x_223); -lean_ctor_set(x_224, 1, x_9); -return x_224; -} -} -} -else -{ -lean_object* x_225; lean_object* x_226; -lean_dec(x_138); -lean_dec(x_137); -lean_dec(x_136); -lean_dec(x_118); -lean_dec(x_113); -lean_dec(x_111); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -x_225 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__1; -x_226 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_226, 0, x_225); -lean_ctor_set(x_226, 1, x_9); -return x_226; -} -} -else -{ -lean_object* x_227; lean_object* x_228; -lean_dec(x_137); -lean_dec(x_136); -lean_dec(x_118); -lean_dec(x_113); -lean_dec(x_111); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -x_227 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__1; -x_228 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_228, 0, x_227); -lean_ctor_set(x_228, 1, x_9); -return x_228; -} -} -else -{ -lean_object* x_229; lean_object* x_230; -lean_dec(x_136); -lean_dec(x_118); -lean_dec(x_113); -lean_dec(x_111); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -x_229 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__1; -x_230 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_230, 0, x_229); -lean_ctor_set(x_230, 1, x_9); -return x_230; -} -} -} -} -} -else -{ -lean_object* x_231; uint8_t x_232; -lean_dec(x_120); -x_231 = l_Lean_Elab_Tactic_Omega_groundNat_x3f___closed__6; -x_232 = lean_string_dec_eq(x_119, x_231); -lean_dec(x_119); -if (x_232 == 0) -{ -lean_object* x_233; lean_object* x_234; -lean_dec(x_118); -lean_dec(x_113); -lean_dec(x_111); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -x_233 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__1; -x_234 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_234, 0, x_233); -lean_ctor_set(x_234, 1, x_9); -return x_234; -} -else -{ -lean_object* x_235; uint8_t x_236; -x_235 = lean_array_get_size(x_118); -x_236 = lean_nat_dec_eq(x_235, x_106); -lean_dec(x_235); -if (x_236 == 0) -{ -lean_object* x_237; lean_object* x_238; -lean_dec(x_118); -lean_dec(x_113); -lean_dec(x_111); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -x_237 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__1; -x_238 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_238, 0, x_237); -lean_ctor_set(x_238, 1, x_9); -return x_238; -} -else -{ -lean_object* x_239; lean_object* x_240; lean_object* x_241; -x_239 = lean_array_fget(x_118, x_110); -x_240 = lean_array_fget(x_118, x_112); -lean_dec(x_118); -lean_inc(x_239); -x_241 = l_Lean_Elab_Tactic_Omega_natCast_x3f(x_239); -if (lean_obj_tag(x_241) == 0) -{ lean_object* x_242; lean_object* x_243; -lean_dec(x_240); -lean_dec(x_239); +lean_dec(x_139); +lean_dec(x_118); lean_dec(x_113); lean_dec(x_111); lean_dec(x_8); @@ -4265,123 +4307,275 @@ lean_ctor_set(x_243, 0, x_242); lean_ctor_set(x_243, 1, x_9); return x_243; } -else -{ -lean_object* x_244; lean_object* x_245; uint8_t x_246; -x_244 = lean_ctor_get(x_241, 0); -lean_inc(x_244); -lean_dec(x_241); -x_245 = lean_unsigned_to_nat(0u); -x_246 = lean_nat_dec_eq(x_244, x_245); -lean_dec(x_244); -if (x_246 == 0) -{ -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_247 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__30; -x_248 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__56; -x_249 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__59; -x_250 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__60; -lean_inc(x_239); -x_251 = l_Lean_mkApp4(x_247, x_248, x_249, x_250, x_239); -x_252 = l_Lean_Meta_mkDecideProof(x_251, x_5, x_6, x_7, x_8, x_9); -if (lean_obj_tag(x_252) == 0) -{ -uint8_t x_253; -x_253 = !lean_is_exclusive(x_252); -if (x_253 == 0) -{ -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; -x_254 = lean_ctor_get(x_252, 0); -x_255 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__62; -x_256 = l_Lean_mkApp3(x_255, x_239, x_240, x_254); -x_257 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__48; -lean_inc(x_256); -lean_inc(x_113); -x_258 = l_Lean_mkApp3(x_257, x_113, x_250, x_256); -x_259 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__45; -lean_inc(x_113); -lean_inc(x_111); -x_260 = l_Lean_mkApp3(x_259, x_111, x_113, x_258); -x_261 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__55; -x_262 = l_Lean_mkApp3(x_261, x_111, x_113, x_256); -x_263 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__1; -x_264 = l_Lean_HashSetImp_insert___at_Lean_CollectMVars_visit___spec__3(x_263, x_260); -x_265 = l_Lean_HashSetImp_insert___at_Lean_CollectMVars_visit___spec__3(x_264, x_262); -lean_ctor_set(x_252, 0, x_265); -return x_252; -} -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; 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; -x_266 = lean_ctor_get(x_252, 0); -x_267 = lean_ctor_get(x_252, 1); -lean_inc(x_267); -lean_inc(x_266); -lean_dec(x_252); -x_268 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__62; -x_269 = l_Lean_mkApp3(x_268, x_239, x_240, x_266); -x_270 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__48; -lean_inc(x_269); -lean_inc(x_113); -x_271 = l_Lean_mkApp3(x_270, x_113, x_250, x_269); -x_272 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__45; -lean_inc(x_113); -lean_inc(x_111); -x_273 = l_Lean_mkApp3(x_272, x_111, x_113, x_271); -x_274 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__55; -x_275 = l_Lean_mkApp3(x_274, x_111, x_113, x_269); -x_276 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__1; -x_277 = l_Lean_HashSetImp_insert___at_Lean_CollectMVars_visit___spec__3(x_276, x_273); -x_278 = l_Lean_HashSetImp_insert___at_Lean_CollectMVars_visit___spec__3(x_277, x_275); -x_279 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_279, 0, x_278); -lean_ctor_set(x_279, 1, x_267); -return x_279; } } else { -uint8_t x_280; -lean_dec(x_240); -lean_dec(x_239); -lean_dec(x_113); -lean_dec(x_111); -x_280 = !lean_is_exclusive(x_252); -if (x_280 == 0) -{ -return x_252; -} -else -{ -lean_object* x_281; lean_object* x_282; lean_object* x_283; -x_281 = lean_ctor_get(x_252, 0); -x_282 = lean_ctor_get(x_252, 1); -lean_inc(x_282); -lean_inc(x_281); -lean_dec(x_252); -x_283 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_283, 0, x_281); -lean_ctor_set(x_283, 1, x_282); -return x_283; -} -} -} -else -{ -lean_object* x_284; lean_object* x_285; -lean_dec(x_240); -lean_dec(x_239); +lean_object* x_244; lean_object* x_245; +lean_dec(x_138); +lean_dec(x_137); +lean_dec(x_136); +lean_dec(x_118); lean_dec(x_113); lean_dec(x_111); lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); -x_284 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__1; -x_285 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_285, 0, x_284); -lean_ctor_set(x_285, 1, x_9); -return x_285; +x_244 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__1; +x_245 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_245, 0, x_244); +lean_ctor_set(x_245, 1, x_9); +return x_245; +} +} +else +{ +lean_object* x_246; lean_object* x_247; +lean_dec(x_137); +lean_dec(x_136); +lean_dec(x_118); +lean_dec(x_113); +lean_dec(x_111); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +x_246 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__1; +x_247 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_247, 0, x_246); +lean_ctor_set(x_247, 1, x_9); +return x_247; +} +} +else +{ +lean_object* x_248; lean_object* x_249; +lean_dec(x_136); +lean_dec(x_118); +lean_dec(x_113); +lean_dec(x_111); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +x_248 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__1; +x_249 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_249, 0, x_248); +lean_ctor_set(x_249, 1, x_9); +return x_249; +} +} +} +} +} +else +{ +lean_object* x_250; uint8_t x_251; +lean_dec(x_120); +x_250 = l_Lean_Elab_Tactic_Omega_groundNat_x3f___closed__6; +x_251 = lean_string_dec_eq(x_119, x_250); +lean_dec(x_119); +if (x_251 == 0) +{ +lean_object* x_252; lean_object* x_253; +lean_dec(x_118); +lean_dec(x_113); +lean_dec(x_111); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +x_252 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__1; +x_253 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_253, 0, x_252); +lean_ctor_set(x_253, 1, x_9); +return x_253; +} +else +{ +lean_object* x_254; uint8_t x_255; +x_254 = lean_array_get_size(x_118); +x_255 = lean_nat_dec_eq(x_254, x_106); +lean_dec(x_254); +if (x_255 == 0) +{ +lean_object* x_256; lean_object* x_257; +lean_dec(x_118); +lean_dec(x_113); +lean_dec(x_111); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +x_256 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__1; +x_257 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_257, 0, x_256); +lean_ctor_set(x_257, 1, x_9); +return x_257; +} +else +{ +lean_object* x_258; lean_object* x_259; lean_object* x_260; +x_258 = lean_array_fget(x_118, x_110); +x_259 = lean_array_fget(x_118, x_112); +lean_dec(x_118); +lean_inc(x_258); +x_260 = l_Lean_Elab_Tactic_Omega_natCast_x3f(x_258); +if (lean_obj_tag(x_260) == 0) +{ +lean_object* x_261; lean_object* x_262; +lean_dec(x_259); +lean_dec(x_258); +lean_dec(x_113); +lean_dec(x_111); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +x_261 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__1; +x_262 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_262, 0, x_261); +lean_ctor_set(x_262, 1, x_9); +return x_262; +} +else +{ +lean_object* x_263; lean_object* x_264; uint8_t x_265; +x_263 = lean_ctor_get(x_260, 0); +lean_inc(x_263); +lean_dec(x_260); +x_264 = lean_unsigned_to_nat(0u); +x_265 = lean_nat_dec_eq(x_263, x_264); +lean_dec(x_263); +if (x_265 == 0) +{ +lean_object* x_266; uint8_t x_304; +x_304 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__50; +if (x_304 == 0) +{ +lean_object* x_305; +x_305 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__73; +x_266 = x_305; +goto block_303; +} +else +{ +lean_object* x_306; +x_306 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__67; +x_266 = x_306; +goto block_303; +} +block_303: +{ +lean_object* x_267; lean_object* x_268; lean_object* x_269; lean_object* x_270; lean_object* x_271; +x_267 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__30; +x_268 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__58; +x_269 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__70; +lean_inc(x_258); +lean_inc(x_266); +x_270 = l_Lean_mkApp4(x_267, x_268, x_269, x_266, x_258); +x_271 = l_Lean_Meta_mkDecideProof(x_270, x_5, x_6, x_7, x_8, x_9); +if (lean_obj_tag(x_271) == 0) +{ +uint8_t x_272; +x_272 = !lean_is_exclusive(x_271); +if (x_272 == 0) +{ +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; +x_273 = lean_ctor_get(x_271, 0); +x_274 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__72; +x_275 = l_Lean_mkApp3(x_274, x_258, x_259, x_273); +x_276 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__48; +lean_inc(x_275); +lean_inc(x_113); +x_277 = l_Lean_mkApp3(x_276, x_113, x_266, x_275); +x_278 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__45; +lean_inc(x_113); +lean_inc(x_111); +x_279 = l_Lean_mkApp3(x_278, x_111, x_113, x_277); +x_280 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__53; +x_281 = l_Lean_mkApp3(x_280, x_111, x_113, x_275); +x_282 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__1; +x_283 = l_Lean_HashSetImp_insert___at_Lean_CollectMVars_visit___spec__3(x_282, x_279); +x_284 = l_Lean_HashSetImp_insert___at_Lean_CollectMVars_visit___spec__3(x_283, x_281); +lean_ctor_set(x_271, 0, x_284); +return x_271; +} +else +{ +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; +x_285 = lean_ctor_get(x_271, 0); +x_286 = lean_ctor_get(x_271, 1); +lean_inc(x_286); +lean_inc(x_285); +lean_dec(x_271); +x_287 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__72; +x_288 = l_Lean_mkApp3(x_287, x_258, x_259, x_285); +x_289 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__48; +lean_inc(x_288); +lean_inc(x_113); +x_290 = l_Lean_mkApp3(x_289, x_113, x_266, x_288); +x_291 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__45; +lean_inc(x_113); +lean_inc(x_111); +x_292 = l_Lean_mkApp3(x_291, x_111, x_113, x_290); +x_293 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__53; +x_294 = l_Lean_mkApp3(x_293, x_111, x_113, x_288); +x_295 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__1; +x_296 = l_Lean_HashSetImp_insert___at_Lean_CollectMVars_visit___spec__3(x_295, x_292); +x_297 = l_Lean_HashSetImp_insert___at_Lean_CollectMVars_visit___spec__3(x_296, x_294); +x_298 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_298, 0, x_297); +lean_ctor_set(x_298, 1, x_286); +return x_298; +} +} +else +{ +uint8_t x_299; +lean_dec(x_266); +lean_dec(x_259); +lean_dec(x_258); +lean_dec(x_113); +lean_dec(x_111); +x_299 = !lean_is_exclusive(x_271); +if (x_299 == 0) +{ +return x_271; +} +else +{ +lean_object* x_300; lean_object* x_301; lean_object* x_302; +x_300 = lean_ctor_get(x_271, 0); +x_301 = lean_ctor_get(x_271, 1); +lean_inc(x_301); +lean_inc(x_300); +lean_dec(x_271); +x_302 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_302, 0, x_300); +lean_ctor_set(x_302, 1, x_301); +return x_302; +} +} +} +} +else +{ +lean_object* x_307; lean_object* x_308; +lean_dec(x_259); +lean_dec(x_258); +lean_dec(x_113); +lean_dec(x_111); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +x_307 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__1; +x_308 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_308, 0, x_307); +lean_ctor_set(x_308, 1, x_9); +return x_308; } } } @@ -4390,7 +4584,7 @@ return x_285; } else { -lean_object* x_286; lean_object* x_287; +lean_object* x_309; lean_object* x_310; lean_dec(x_117); lean_dec(x_116); lean_dec(x_115); @@ -4401,16 +4595,16 @@ lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); -x_286 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__1; -x_287 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_287, 0, x_286); -lean_ctor_set(x_287, 1, x_9); -return x_287; +x_309 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__1; +x_310 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_310, 0, x_309); +lean_ctor_set(x_310, 1, x_9); +return x_310; } } else { -lean_object* x_288; lean_object* x_289; +lean_object* x_311; lean_object* x_312; lean_dec(x_116); lean_dec(x_115); lean_dec(x_114); @@ -4420,16 +4614,16 @@ lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); -x_288 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__1; -x_289 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_289, 0, x_288); -lean_ctor_set(x_289, 1, x_9); -return x_289; +x_311 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__1; +x_312 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_312, 0, x_311); +lean_ctor_set(x_312, 1, x_9); +return x_312; } } else { -lean_object* x_290; lean_object* x_291; +lean_object* x_313; lean_object* x_314; lean_dec(x_115); lean_dec(x_114); lean_dec(x_113); @@ -4438,11 +4632,11 @@ lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); -x_290 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__1; -x_291 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_291, 0, x_290); -lean_ctor_set(x_291, 1, x_9); -return x_291; +x_313 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__1; +x_314 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_314, 0, x_313); +lean_ctor_set(x_314, 1, x_9); +return x_314; } } } @@ -4450,219 +4644,238 @@ return x_291; } else { -lean_object* x_292; uint8_t x_293; +lean_object* x_315; uint8_t x_316; lean_dec(x_46); -x_292 = l_Lean_Elab_Tactic_Omega_groundNat_x3f___closed__8; -x_293 = lean_string_dec_eq(x_45, x_292); +x_315 = l_Lean_Elab_Tactic_Omega_groundNat_x3f___closed__8; +x_316 = lean_string_dec_eq(x_45, x_315); lean_dec(x_45); -if (x_293 == 0) +if (x_316 == 0) { -lean_object* x_294; lean_object* x_295; +lean_object* x_317; lean_object* x_318; lean_dec(x_44); lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); -x_294 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__1; -x_295 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_295, 0, x_294); -lean_ctor_set(x_295, 1, x_9); -return x_295; -} -else -{ -lean_object* x_296; lean_object* x_297; uint8_t x_298; -x_296 = lean_array_get_size(x_44); -x_297 = lean_unsigned_to_nat(6u); -x_298 = lean_nat_dec_eq(x_296, x_297); -lean_dec(x_296); -if (x_298 == 0) -{ -lean_object* x_299; lean_object* x_300; -lean_dec(x_44); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -x_299 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__1; -x_300 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_300, 0, x_299); -lean_ctor_set(x_300, 1, x_9); -return x_300; -} -else -{ -lean_object* x_301; lean_object* x_302; lean_object* x_303; lean_object* x_304; lean_object* x_305; -x_301 = lean_unsigned_to_nat(4u); -x_302 = lean_array_fget(x_44, x_301); -x_303 = lean_unsigned_to_nat(5u); -x_304 = lean_array_fget(x_44, x_303); -lean_dec(x_44); -lean_inc(x_304); -x_305 = l_Lean_Elab_Tactic_Omega_natCast_x3f(x_304); -if (lean_obj_tag(x_305) == 0) -{ -lean_object* x_306; lean_object* x_307; -lean_dec(x_304); -lean_dec(x_302); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -x_306 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__1; -x_307 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_307, 0, x_306); -lean_ctor_set(x_307, 1, x_9); -return x_307; -} -else -{ -lean_object* x_308; lean_object* x_309; uint8_t x_310; -x_308 = lean_ctor_get(x_305, 0); -lean_inc(x_308); -lean_dec(x_305); -x_309 = lean_unsigned_to_nat(0u); -x_310 = lean_nat_dec_eq(x_308, x_309); -lean_dec(x_308); -if (x_310 == 0) -{ -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 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__67; -x_312 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__56; -x_313 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__60; -lean_inc(x_304); -x_314 = l_Lean_mkApp3(x_311, x_312, x_304, x_313); -x_315 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__68; -x_316 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__59; -lean_inc(x_304); -x_317 = l_Lean_mkApp4(x_315, x_312, x_316, x_313, x_304); -lean_inc(x_8); -lean_inc(x_7); -lean_inc(x_6); -lean_inc(x_5); -x_318 = l_Lean_Meta_mkDecideProof(x_314, x_5, x_6, x_7, x_8, x_9); -if (lean_obj_tag(x_318) == 0) -{ -lean_object* x_319; lean_object* x_320; lean_object* x_321; -x_319 = lean_ctor_get(x_318, 0); -lean_inc(x_319); -x_320 = lean_ctor_get(x_318, 1); -lean_inc(x_320); -lean_dec(x_318); -x_321 = l_Lean_Meta_mkDecideProof(x_317, x_5, x_6, x_7, x_8, x_320); -if (lean_obj_tag(x_321) == 0) -{ -uint8_t x_322; -x_322 = !lean_is_exclusive(x_321); -if (x_322 == 0) -{ -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_323 = lean_ctor_get(x_321, 0); -x_324 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__71; -lean_inc(x_304); -lean_inc(x_302); -x_325 = l_Lean_mkApp3(x_324, x_302, x_304, x_319); -x_326 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__74; -x_327 = l_Lean_mkApp3(x_326, x_302, x_304, x_323); -x_328 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__1; -x_329 = l_Lean_HashSetImp_insert___at_Lean_CollectMVars_visit___spec__3(x_328, x_325); -x_330 = l_Lean_HashSetImp_insert___at_Lean_CollectMVars_visit___spec__3(x_329, x_327); -lean_ctor_set(x_321, 0, x_330); -return x_321; -} -else -{ -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; -x_331 = lean_ctor_get(x_321, 0); -x_332 = lean_ctor_get(x_321, 1); -lean_inc(x_332); -lean_inc(x_331); -lean_dec(x_321); -x_333 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__71; -lean_inc(x_304); -lean_inc(x_302); -x_334 = l_Lean_mkApp3(x_333, x_302, x_304, x_319); -x_335 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__74; -x_336 = l_Lean_mkApp3(x_335, x_302, x_304, x_331); -x_337 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__1; -x_338 = l_Lean_HashSetImp_insert___at_Lean_CollectMVars_visit___spec__3(x_337, x_334); -x_339 = l_Lean_HashSetImp_insert___at_Lean_CollectMVars_visit___spec__3(x_338, x_336); -x_340 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_340, 0, x_339); -lean_ctor_set(x_340, 1, x_332); -return x_340; -} -} -else -{ -uint8_t x_341; -lean_dec(x_319); -lean_dec(x_304); -lean_dec(x_302); -x_341 = !lean_is_exclusive(x_321); -if (x_341 == 0) -{ -return x_321; -} -else -{ -lean_object* x_342; lean_object* x_343; lean_object* x_344; -x_342 = lean_ctor_get(x_321, 0); -x_343 = lean_ctor_get(x_321, 1); -lean_inc(x_343); -lean_inc(x_342); -lean_dec(x_321); -x_344 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_344, 0, x_342); -lean_ctor_set(x_344, 1, x_343); -return x_344; -} -} -} -else -{ -uint8_t x_345; -lean_dec(x_317); -lean_dec(x_304); -lean_dec(x_302); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -x_345 = !lean_is_exclusive(x_318); -if (x_345 == 0) -{ +x_317 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__1; +x_318 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_318, 0, x_317); +lean_ctor_set(x_318, 1, x_9); return x_318; } else { -lean_object* x_346; lean_object* x_347; lean_object* x_348; -x_346 = lean_ctor_get(x_318, 0); -x_347 = lean_ctor_get(x_318, 1); -lean_inc(x_347); -lean_inc(x_346); -lean_dec(x_318); -x_348 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_348, 0, x_346); -lean_ctor_set(x_348, 1, x_347); -return x_348; -} -} -} -else +lean_object* x_319; lean_object* x_320; uint8_t x_321; +x_319 = lean_array_get_size(x_44); +x_320 = lean_unsigned_to_nat(6u); +x_321 = lean_nat_dec_eq(x_319, x_320); +lean_dec(x_319); +if (x_321 == 0) { -lean_object* x_349; lean_object* x_350; -lean_dec(x_304); -lean_dec(x_302); +lean_object* x_322; lean_object* x_323; +lean_dec(x_44); lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); -x_349 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__1; -x_350 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_350, 0, x_349); -lean_ctor_set(x_350, 1, x_9); -return x_350; +x_322 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__1; +x_323 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_323, 0, x_322); +lean_ctor_set(x_323, 1, x_9); +return x_323; +} +else +{ +lean_object* x_324; lean_object* x_325; lean_object* x_326; lean_object* x_327; lean_object* x_328; +x_324 = lean_unsigned_to_nat(4u); +x_325 = lean_array_fget(x_44, x_324); +x_326 = lean_unsigned_to_nat(5u); +x_327 = lean_array_fget(x_44, x_326); +lean_dec(x_44); +lean_inc(x_327); +x_328 = l_Lean_Elab_Tactic_Omega_natCast_x3f(x_327); +if (lean_obj_tag(x_328) == 0) +{ +lean_object* x_329; lean_object* x_330; +lean_dec(x_327); +lean_dec(x_325); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +x_329 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__1; +x_330 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_330, 0, x_329); +lean_ctor_set(x_330, 1, x_9); +return x_330; +} +else +{ +lean_object* x_331; lean_object* x_332; uint8_t x_333; +x_331 = lean_ctor_get(x_328, 0); +lean_inc(x_331); +lean_dec(x_328); +x_332 = lean_unsigned_to_nat(0u); +x_333 = lean_nat_dec_eq(x_331, x_332); +lean_dec(x_331); +if (x_333 == 0) +{ +lean_object* x_334; uint8_t x_373; +x_373 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__50; +if (x_373 == 0) +{ +lean_object* x_374; +x_374 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__87; +x_334 = x_374; +goto block_372; +} +else +{ +lean_object* x_375; +x_375 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__67; +x_334 = x_375; +goto block_372; +} +block_372: +{ +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; +x_335 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__78; +x_336 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__58; +lean_inc(x_334); +lean_inc(x_327); +x_337 = l_Lean_mkApp3(x_335, x_336, x_327, x_334); +x_338 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__79; +x_339 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__70; +lean_inc(x_327); +x_340 = l_Lean_mkApp4(x_338, x_336, x_339, x_334, x_327); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +x_341 = l_Lean_Meta_mkDecideProof(x_337, x_5, x_6, x_7, x_8, x_9); +if (lean_obj_tag(x_341) == 0) +{ +lean_object* x_342; lean_object* x_343; lean_object* x_344; +x_342 = lean_ctor_get(x_341, 0); +lean_inc(x_342); +x_343 = lean_ctor_get(x_341, 1); +lean_inc(x_343); +lean_dec(x_341); +x_344 = l_Lean_Meta_mkDecideProof(x_340, x_5, x_6, x_7, x_8, x_343); +if (lean_obj_tag(x_344) == 0) +{ +uint8_t x_345; +x_345 = !lean_is_exclusive(x_344); +if (x_345 == 0) +{ +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_346 = lean_ctor_get(x_344, 0); +x_347 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__82; +lean_inc(x_327); +lean_inc(x_325); +x_348 = l_Lean_mkApp3(x_347, x_325, x_327, x_342); +x_349 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__85; +x_350 = l_Lean_mkApp3(x_349, x_325, x_327, x_346); +x_351 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__1; +x_352 = l_Lean_HashSetImp_insert___at_Lean_CollectMVars_visit___spec__3(x_351, x_348); +x_353 = l_Lean_HashSetImp_insert___at_Lean_CollectMVars_visit___spec__3(x_352, x_350); +lean_ctor_set(x_344, 0, x_353); +return x_344; +} +else +{ +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; +x_354 = lean_ctor_get(x_344, 0); +x_355 = lean_ctor_get(x_344, 1); +lean_inc(x_355); +lean_inc(x_354); +lean_dec(x_344); +x_356 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__82; +lean_inc(x_327); +lean_inc(x_325); +x_357 = l_Lean_mkApp3(x_356, x_325, x_327, x_342); +x_358 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__85; +x_359 = l_Lean_mkApp3(x_358, x_325, x_327, x_354); +x_360 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__1; +x_361 = l_Lean_HashSetImp_insert___at_Lean_CollectMVars_visit___spec__3(x_360, x_357); +x_362 = l_Lean_HashSetImp_insert___at_Lean_CollectMVars_visit___spec__3(x_361, x_359); +x_363 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_363, 0, x_362); +lean_ctor_set(x_363, 1, x_355); +return x_363; +} +} +else +{ +uint8_t x_364; +lean_dec(x_342); +lean_dec(x_327); +lean_dec(x_325); +x_364 = !lean_is_exclusive(x_344); +if (x_364 == 0) +{ +return x_344; +} +else +{ +lean_object* x_365; lean_object* x_366; lean_object* x_367; +x_365 = lean_ctor_get(x_344, 0); +x_366 = lean_ctor_get(x_344, 1); +lean_inc(x_366); +lean_inc(x_365); +lean_dec(x_344); +x_367 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_367, 0, x_365); +lean_ctor_set(x_367, 1, x_366); +return x_367; +} +} +} +else +{ +uint8_t x_368; +lean_dec(x_340); +lean_dec(x_327); +lean_dec(x_325); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +x_368 = !lean_is_exclusive(x_341); +if (x_368 == 0) +{ +return x_341; +} +else +{ +lean_object* x_369; lean_object* x_370; lean_object* x_371; +x_369 = lean_ctor_get(x_341, 0); +x_370 = lean_ctor_get(x_341, 1); +lean_inc(x_370); +lean_inc(x_369); +lean_dec(x_341); +x_371 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_371, 0, x_369); +lean_ctor_set(x_371, 1, x_370); +return x_371; +} +} +} +} +else +{ +lean_object* x_376; lean_object* x_377; +lean_dec(x_327); +lean_dec(x_325); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +x_376 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__1; +x_377 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_377, 0, x_376); +lean_ctor_set(x_377, 1, x_9); +return x_377; } } } @@ -4671,792 +4884,670 @@ return x_350; } else { -lean_object* x_351; uint8_t x_352; +lean_object* x_378; uint8_t x_379; lean_dec(x_46); lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); -x_351 = l_Lean_Elab_Tactic_Omega_natCast_x3f___closed__2; -x_352 = lean_string_dec_eq(x_45, x_351); +x_378 = l_Lean_Elab_Tactic_Omega_natCast_x3f___closed__2; +x_379 = lean_string_dec_eq(x_45, x_378); lean_dec(x_45); -if (x_352 == 0) +if (x_379 == 0) { -lean_object* x_353; lean_object* x_354; +lean_object* x_380; lean_object* x_381; lean_dec(x_44); -x_353 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__1; -x_354 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_354, 0, x_353); -lean_ctor_set(x_354, 1, x_9); -return x_354; +x_380 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__1; +x_381 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_381, 0, x_380); +lean_ctor_set(x_381, 1, x_9); +return x_381; } else { -lean_object* x_355; lean_object* x_356; uint8_t x_357; -x_355 = lean_array_get_size(x_44); -x_356 = lean_unsigned_to_nat(3u); -x_357 = lean_nat_dec_eq(x_355, x_356); -lean_dec(x_355); -if (x_357 == 0) -{ -lean_object* x_358; lean_object* x_359; -lean_dec(x_44); -x_358 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__1; -x_359 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_359, 0, x_358); -lean_ctor_set(x_359, 1, x_9); -return x_359; -} -else -{ -lean_object* x_360; lean_object* x_361; -x_360 = lean_unsigned_to_nat(0u); -x_361 = lean_array_fget(x_44, x_360); -if (lean_obj_tag(x_361) == 4) -{ -lean_object* x_362; -x_362 = lean_ctor_get(x_361, 0); -lean_inc(x_362); -if (lean_obj_tag(x_362) == 1) -{ -lean_object* x_363; -x_363 = lean_ctor_get(x_362, 0); -lean_inc(x_363); -if (lean_obj_tag(x_363) == 0) -{ -lean_object* x_364; lean_object* x_365; lean_object* x_366; uint8_t x_367; -x_364 = lean_ctor_get(x_361, 1); -lean_inc(x_364); -lean_dec(x_361); -x_365 = lean_ctor_get(x_362, 1); -lean_inc(x_365); -lean_dec(x_362); -x_366 = l_Lean_Elab_Tactic_Omega_atomsList___rarg___closed__1; -x_367 = lean_string_dec_eq(x_365, x_366); -lean_dec(x_365); -if (x_367 == 0) -{ -lean_object* x_368; lean_object* x_369; -lean_dec(x_364); -lean_dec(x_44); -x_368 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__1; -x_369 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_369, 0, x_368); -lean_ctor_set(x_369, 1, x_9); -return x_369; -} -else -{ -if (lean_obj_tag(x_364) == 0) -{ -lean_object* x_370; lean_object* x_371; lean_object* x_372; lean_object* x_373; lean_object* x_374; lean_object* x_375; uint8_t x_376; lean_object* x_377; -x_370 = lean_unsigned_to_nat(2u); -x_371 = lean_array_fget(x_44, x_370); -lean_dec(x_44); -x_372 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__77; -lean_inc(x_371); -x_373 = l_Lean_Expr_app___override(x_372, x_371); -x_374 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__1; -x_375 = l_Lean_HashSetImp_insert___at_Lean_CollectMVars_visit___spec__3(x_374, x_373); -x_376 = lean_ctor_get_uint8(x_4, 1); -x_377 = l_Lean_Expr_getAppFnArgs(x_371); -if (x_376 == 0) -{ -lean_object* x_378; -x_378 = lean_ctor_get(x_377, 0); -lean_inc(x_378); -if (lean_obj_tag(x_378) == 1) -{ -lean_object* x_379; -x_379 = lean_ctor_get(x_378, 0); -lean_inc(x_379); -if (lean_obj_tag(x_379) == 1) -{ -lean_object* x_380; -x_380 = lean_ctor_get(x_379, 0); -lean_inc(x_380); -switch (lean_obj_tag(x_380)) { -case 0: -{ -lean_object* x_381; lean_object* x_382; lean_object* x_383; uint8_t x_384; -x_381 = lean_ctor_get(x_377, 1); -lean_inc(x_381); -lean_dec(x_377); -x_382 = lean_ctor_get(x_378, 1); -lean_inc(x_382); -lean_dec(x_378); -x_383 = lean_ctor_get(x_379, 1); -lean_inc(x_383); -lean_dec(x_379); -x_384 = lean_string_dec_eq(x_383, x_366); +lean_object* x_382; lean_object* x_383; uint8_t x_384; +x_382 = lean_array_get_size(x_44); +x_383 = lean_unsigned_to_nat(3u); +x_384 = lean_nat_dec_eq(x_382, x_383); +lean_dec(x_382); if (x_384 == 0) { -lean_object* x_385; uint8_t x_386; -x_385 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__78; -x_386 = lean_string_dec_eq(x_383, x_385); -lean_dec(x_383); -if (x_386 == 0) -{ -lean_object* x_387; -lean_dec(x_382); -lean_dec(x_381); -x_387 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_387, 0, x_375); -lean_ctor_set(x_387, 1, x_9); -return x_387; +lean_object* x_385; lean_object* x_386; +lean_dec(x_44); +x_385 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__1; +x_386 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_386, 0, x_385); +lean_ctor_set(x_386, 1, x_9); +return x_386; } else { -lean_object* x_388; uint8_t x_389; -x_388 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__79; -x_389 = lean_string_dec_eq(x_382, x_388); -lean_dec(x_382); -if (x_389 == 0) +lean_object* x_387; lean_object* x_388; +x_387 = lean_unsigned_to_nat(0u); +x_388 = lean_array_fget(x_44, x_387); +if (lean_obj_tag(x_388) == 4) +{ +lean_object* x_389; +x_389 = lean_ctor_get(x_388, 0); +lean_inc(x_389); +if (lean_obj_tag(x_389) == 1) { lean_object* x_390; -lean_dec(x_381); -x_390 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_390, 0, x_375); -lean_ctor_set(x_390, 1, x_9); -return x_390; -} -else +x_390 = lean_ctor_get(x_389, 0); +lean_inc(x_390); +if (lean_obj_tag(x_390) == 0) { -lean_object* x_391; uint8_t x_392; -x_391 = lean_array_get_size(x_381); -x_392 = lean_nat_dec_eq(x_391, x_370); +lean_object* x_391; lean_object* x_392; lean_object* x_393; uint8_t x_394; +x_391 = lean_ctor_get(x_388, 1); +lean_inc(x_391); +lean_dec(x_388); +x_392 = lean_ctor_get(x_389, 1); +lean_inc(x_392); +lean_dec(x_389); +x_393 = l_Lean_Elab_Tactic_Omega_atomsList___rarg___closed__1; +x_394 = lean_string_dec_eq(x_392, x_393); +lean_dec(x_392); +if (x_394 == 0) +{ +lean_object* x_395; lean_object* x_396; lean_dec(x_391); -if (x_392 == 0) -{ -lean_object* x_393; -lean_dec(x_381); -x_393 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_393, 0, x_375); -lean_ctor_set(x_393, 1, x_9); -return x_393; +lean_dec(x_44); +x_395 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__1; +x_396 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_396, 0, x_395); +lean_ctor_set(x_396, 1, x_9); +return x_396; } else { -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; -x_394 = lean_array_fget(x_381, x_360); -x_395 = lean_unsigned_to_nat(1u); -x_396 = lean_array_fget(x_381, x_395); -lean_dec(x_381); -x_397 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__82; -x_398 = l_Lean_mkAppB(x_397, x_394, x_396); -x_399 = l_Lean_HashSetImp_insert___at_Lean_CollectMVars_visit___spec__3(x_375, x_398); -x_400 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_400, 0, x_399); -lean_ctor_set(x_400, 1, x_9); -return x_400; -} -} -} -} -else +if (lean_obj_tag(x_391) == 0) { -lean_object* x_401; uint8_t x_402; -lean_dec(x_383); -x_401 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__83; -x_402 = lean_string_dec_eq(x_382, x_401); -lean_dec(x_382); -if (x_402 == 0) +lean_object* x_397; lean_object* x_398; lean_object* x_399; lean_object* x_400; lean_object* x_401; lean_object* x_402; uint8_t x_403; lean_object* x_404; +x_397 = lean_unsigned_to_nat(2u); +x_398 = lean_array_fget(x_44, x_397); +lean_dec(x_44); +x_399 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__90; +lean_inc(x_398); +x_400 = l_Lean_Expr_app___override(x_399, x_398); +x_401 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__1; +x_402 = l_Lean_HashSetImp_insert___at_Lean_CollectMVars_visit___spec__3(x_401, x_400); +x_403 = lean_ctor_get_uint8(x_4, 1); +x_404 = l_Lean_Expr_getAppFnArgs(x_398); +if (x_403 == 0) { -lean_object* x_403; -lean_dec(x_381); -x_403 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_403, 0, x_375); -lean_ctor_set(x_403, 1, x_9); -return x_403; -} -else +lean_object* x_405; +x_405 = lean_ctor_get(x_404, 0); +lean_inc(x_405); +if (lean_obj_tag(x_405) == 1) { -lean_object* x_404; lean_object* x_405; uint8_t x_406; -x_404 = lean_array_get_size(x_381); -x_405 = lean_unsigned_to_nat(1u); -x_406 = lean_nat_dec_eq(x_404, x_405); -lean_dec(x_404); -if (x_406 == 0) +lean_object* x_406; +x_406 = lean_ctor_get(x_405, 0); +lean_inc(x_406); +if (lean_obj_tag(x_406) == 1) { lean_object* x_407; -lean_dec(x_381); -x_407 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_407, 0, x_375); -lean_ctor_set(x_407, 1, x_9); -return x_407; -} -else +x_407 = lean_ctor_get(x_406, 0); +lean_inc(x_407); +if (lean_obj_tag(x_407) == 0) { -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; -x_408 = lean_array_fget(x_381, x_360); -lean_dec(x_381); -x_409 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__86; +lean_object* x_408; lean_object* x_409; lean_object* x_410; uint8_t x_411; +x_408 = lean_ctor_get(x_404, 1); lean_inc(x_408); -x_410 = l_Lean_Expr_app___override(x_409, x_408); -x_411 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__89; -x_412 = l_Lean_Expr_app___override(x_411, x_408); -x_413 = l_Lean_HashSetImp_insert___at_Lean_CollectMVars_visit___spec__3(x_375, x_410); -x_414 = l_Lean_HashSetImp_insert___at_Lean_CollectMVars_visit___spec__3(x_413, x_412); -x_415 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_415, 0, x_414); -lean_ctor_set(x_415, 1, x_9); -return x_415; -} -} -} -} -case 1: +lean_dec(x_404); +x_409 = lean_ctor_get(x_405, 1); +lean_inc(x_409); +lean_dec(x_405); +x_410 = lean_ctor_get(x_406, 1); +lean_inc(x_410); +lean_dec(x_406); +x_411 = lean_string_dec_eq(x_410, x_393); +if (x_411 == 0) +{ +lean_object* x_412; uint8_t x_413; +x_412 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__91; +x_413 = lean_string_dec_eq(x_410, x_412); +if (x_413 == 0) +{ +lean_object* x_414; uint8_t x_415; +x_414 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__92; +x_415 = lean_string_dec_eq(x_410, x_414); +lean_dec(x_410); +if (x_415 == 0) { lean_object* x_416; -x_416 = lean_ctor_get(x_380, 0); -lean_inc(x_416); -if (lean_obj_tag(x_416) == 0) +lean_dec(x_409); +lean_dec(x_408); +x_416 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_416, 0, x_402); +lean_ctor_set(x_416, 1, x_9); +return x_416; +} +else { -lean_object* x_417; lean_object* x_418; lean_object* x_419; lean_object* x_420; lean_object* x_421; uint8_t x_422; -x_417 = lean_ctor_get(x_377, 1); -lean_inc(x_417); -lean_dec(x_377); -x_418 = lean_ctor_get(x_378, 1); -lean_inc(x_418); -lean_dec(x_378); -x_419 = lean_ctor_get(x_379, 1); -lean_inc(x_419); -lean_dec(x_379); -x_420 = lean_ctor_get(x_380, 1); -lean_inc(x_420); -lean_dec(x_380); -x_421 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__90; -x_422 = lean_string_dec_eq(x_420, x_421); +lean_object* x_417; uint8_t x_418; +x_417 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__93; +x_418 = lean_string_dec_eq(x_409, x_417); +lean_dec(x_409); +if (x_418 == 0) +{ +lean_object* x_419; +lean_dec(x_408); +x_419 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_419, 0, x_402); +lean_ctor_set(x_419, 1, x_9); +return x_419; +} +else +{ +lean_object* x_420; uint8_t x_421; +x_420 = lean_array_get_size(x_408); +x_421 = lean_nat_dec_eq(x_420, x_397); lean_dec(x_420); -if (x_422 == 0) +if (x_421 == 0) { -lean_object* x_423; -lean_dec(x_419); -lean_dec(x_418); -lean_dec(x_417); -x_423 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_423, 0, x_375); -lean_ctor_set(x_423, 1, x_9); -return x_423; +lean_object* x_422; +lean_dec(x_408); +x_422 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_422, 0, x_402); +lean_ctor_set(x_422, 1, x_9); +return x_422; } else { -lean_object* x_424; uint8_t x_425; -x_424 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__91; -x_425 = lean_string_dec_eq(x_419, x_424); -lean_dec(x_419); -if (x_425 == 0) -{ -lean_object* x_426; -lean_dec(x_418); -lean_dec(x_417); -x_426 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_426, 0, x_375); -lean_ctor_set(x_426, 1, x_9); -return x_426; -} -else -{ -lean_object* x_427; uint8_t x_428; -x_427 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__92; -x_428 = lean_string_dec_eq(x_418, x_427); -lean_dec(x_418); -if (x_428 == 0) -{ -lean_object* x_429; -lean_dec(x_417); +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; +x_423 = lean_array_fget(x_408, x_387); +x_424 = lean_unsigned_to_nat(1u); +x_425 = lean_array_fget(x_408, x_424); +lean_dec(x_408); +x_426 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__96; +x_427 = l_Lean_mkAppB(x_426, x_423, x_425); +x_428 = l_Lean_HashSetImp_insert___at_Lean_CollectMVars_visit___spec__3(x_402, x_427); x_429 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_429, 0, x_375); +lean_ctor_set(x_429, 0, x_428); lean_ctor_set(x_429, 1, x_9); return x_429; } +} +} +} else { lean_object* x_430; uint8_t x_431; -x_430 = lean_array_get_size(x_417); -x_431 = lean_nat_dec_eq(x_430, x_370); -lean_dec(x_430); +lean_dec(x_410); +x_430 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__97; +x_431 = lean_string_dec_eq(x_409, x_430); +lean_dec(x_409); if (x_431 == 0) { lean_object* x_432; -lean_dec(x_417); +lean_dec(x_408); x_432 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_432, 0, x_375); +lean_ctor_set(x_432, 0, x_402); lean_ctor_set(x_432, 1, x_9); return x_432; } 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; lean_object* x_439; -x_433 = lean_array_fget(x_417, x_360); -x_434 = lean_unsigned_to_nat(1u); -x_435 = lean_array_fget(x_417, x_434); -lean_dec(x_417); -x_436 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__95; -x_437 = l_Lean_mkAppB(x_436, x_433, x_435); -x_438 = l_Lean_HashSetImp_insert___at_Lean_CollectMVars_visit___spec__3(x_375, x_437); -x_439 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_439, 0, x_438); -lean_ctor_set(x_439, 1, x_9); -return x_439; -} -} -} -} +lean_object* x_433; uint8_t x_434; +x_433 = lean_array_get_size(x_408); +x_434 = lean_nat_dec_eq(x_433, x_397); +lean_dec(x_433); +if (x_434 == 0) +{ +lean_object* x_435; +lean_dec(x_408); +x_435 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_435, 0, x_402); +lean_ctor_set(x_435, 1, x_9); +return x_435; } else { -lean_object* x_440; -lean_dec(x_416); -lean_dec(x_380); -lean_dec(x_379); -lean_dec(x_378); -lean_dec(x_377); -x_440 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_440, 0, x_375); -lean_ctor_set(x_440, 1, x_9); -return x_440; -} -} -default: -{ -lean_object* x_441; -lean_dec(x_380); -lean_dec(x_379); -lean_dec(x_378); -lean_dec(x_377); -x_441 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_441, 0, x_375); -lean_ctor_set(x_441, 1, x_9); -return x_441; -} -} -} -else -{ -lean_object* x_442; -lean_dec(x_379); -lean_dec(x_378); -lean_dec(x_377); +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; +x_436 = lean_array_fget(x_408, x_387); +x_437 = lean_unsigned_to_nat(1u); +x_438 = lean_array_fget(x_408, x_437); +lean_dec(x_408); +x_439 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__100; +x_440 = l_Lean_mkAppB(x_439, x_436, x_438); +x_441 = l_Lean_HashSetImp_insert___at_Lean_CollectMVars_visit___spec__3(x_402, x_440); x_442 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_442, 0, x_375); +lean_ctor_set(x_442, 0, x_441); lean_ctor_set(x_442, 1, x_9); return x_442; } } -else -{ -lean_object* x_443; -lean_dec(x_378); -lean_dec(x_377); -x_443 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_443, 0, x_375); -lean_ctor_set(x_443, 1, x_9); -return x_443; } } else { -lean_object* x_444; -x_444 = lean_ctor_get(x_377, 0); -lean_inc(x_444); -if (lean_obj_tag(x_444) == 1) +lean_object* x_443; uint8_t x_444; +lean_dec(x_410); +x_443 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__101; +x_444 = lean_string_dec_eq(x_409, x_443); +lean_dec(x_409); +if (x_444 == 0) { lean_object* x_445; -x_445 = lean_ctor_get(x_444, 0); -lean_inc(x_445); -if (lean_obj_tag(x_445) == 1) -{ -lean_object* x_446; -x_446 = lean_ctor_get(x_445, 0); -lean_inc(x_446); -switch (lean_obj_tag(x_446)) { -case 0: -{ -lean_object* x_447; lean_object* x_448; lean_object* x_449; lean_object* x_450; uint8_t x_451; -x_447 = lean_ctor_get(x_377, 1); -lean_inc(x_447); -lean_dec(x_377); -x_448 = lean_ctor_get(x_444, 1); -lean_inc(x_448); -lean_dec(x_444); -x_449 = lean_ctor_get(x_445, 1); -lean_inc(x_449); -lean_dec(x_445); -x_450 = l_Lean_Elab_Tactic_Omega_groundNat_x3f___closed__3; -x_451 = lean_string_dec_eq(x_449, x_450); -if (x_451 == 0) -{ -uint8_t x_452; -x_452 = lean_string_dec_eq(x_449, x_366); -if (x_452 == 0) -{ -lean_object* x_453; uint8_t x_454; -x_453 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__78; -x_454 = lean_string_dec_eq(x_449, x_453); -lean_dec(x_449); -if (x_454 == 0) -{ -lean_object* x_455; -lean_dec(x_448); -lean_dec(x_447); -x_455 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_455, 0, x_375); -lean_ctor_set(x_455, 1, x_9); -return x_455; +lean_dec(x_408); +x_445 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_445, 0, x_402); +lean_ctor_set(x_445, 1, x_9); +return x_445; } else { -lean_object* x_456; uint8_t x_457; -x_456 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__79; -x_457 = lean_string_dec_eq(x_448, x_456); -lean_dec(x_448); -if (x_457 == 0) +lean_object* x_446; lean_object* x_447; uint8_t x_448; +x_446 = lean_array_get_size(x_408); +x_447 = lean_unsigned_to_nat(1u); +x_448 = lean_nat_dec_eq(x_446, x_447); +lean_dec(x_446); +if (x_448 == 0) +{ +lean_object* x_449; +lean_dec(x_408); +x_449 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_449, 0, x_402); +lean_ctor_set(x_449, 1, x_9); +return x_449; +} +else +{ +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; +x_450 = lean_array_fget(x_408, x_387); +lean_dec(x_408); +x_451 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__104; +lean_inc(x_450); +x_452 = l_Lean_Expr_app___override(x_451, x_450); +x_453 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__107; +x_454 = l_Lean_Expr_app___override(x_453, x_450); +x_455 = l_Lean_HashSetImp_insert___at_Lean_CollectMVars_visit___spec__3(x_402, x_452); +x_456 = l_Lean_HashSetImp_insert___at_Lean_CollectMVars_visit___spec__3(x_455, x_454); +x_457 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_457, 0, x_456); +lean_ctor_set(x_457, 1, x_9); +return x_457; +} +} +} +} +else { lean_object* x_458; -lean_dec(x_447); +lean_dec(x_407); +lean_dec(x_406); +lean_dec(x_405); +lean_dec(x_404); x_458 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_458, 0, x_375); +lean_ctor_set(x_458, 0, x_402); lean_ctor_set(x_458, 1, x_9); return x_458; } +} else { -lean_object* x_459; uint8_t x_460; -x_459 = lean_array_get_size(x_447); -x_460 = lean_nat_dec_eq(x_459, x_370); -lean_dec(x_459); -if (x_460 == 0) +lean_object* x_459; +lean_dec(x_406); +lean_dec(x_405); +lean_dec(x_404); +x_459 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_459, 0, x_402); +lean_ctor_set(x_459, 1, x_9); +return x_459; +} +} +else +{ +lean_object* x_460; +lean_dec(x_405); +lean_dec(x_404); +x_460 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_460, 0, x_402); +lean_ctor_set(x_460, 1, x_9); +return x_460; +} +} +else { lean_object* x_461; -lean_dec(x_447); -x_461 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_461, 0, x_375); -lean_ctor_set(x_461, 1, x_9); -return x_461; +x_461 = lean_ctor_get(x_404, 0); +lean_inc(x_461); +if (lean_obj_tag(x_461) == 1) +{ +lean_object* x_462; +x_462 = lean_ctor_get(x_461, 0); +lean_inc(x_462); +if (lean_obj_tag(x_462) == 1) +{ +lean_object* x_463; +x_463 = lean_ctor_get(x_462, 0); +lean_inc(x_463); +if (lean_obj_tag(x_463) == 0) +{ +lean_object* x_464; lean_object* x_465; lean_object* x_466; lean_object* x_467; uint8_t x_468; +x_464 = lean_ctor_get(x_404, 1); +lean_inc(x_464); +lean_dec(x_404); +x_465 = lean_ctor_get(x_461, 1); +lean_inc(x_465); +lean_dec(x_461); +x_466 = lean_ctor_get(x_462, 1); +lean_inc(x_466); +lean_dec(x_462); +x_467 = l_Lean_Elab_Tactic_Omega_groundNat_x3f___closed__3; +x_468 = lean_string_dec_eq(x_466, x_467); +if (x_468 == 0) +{ +uint8_t x_469; +x_469 = lean_string_dec_eq(x_466, x_393); +if (x_469 == 0) +{ +lean_object* x_470; uint8_t x_471; +x_470 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__91; +x_471 = lean_string_dec_eq(x_466, x_470); +if (x_471 == 0) +{ +lean_object* x_472; uint8_t x_473; +x_472 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__92; +x_473 = lean_string_dec_eq(x_466, x_472); +lean_dec(x_466); +if (x_473 == 0) +{ +lean_object* x_474; +lean_dec(x_465); +lean_dec(x_464); +x_474 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_474, 0, x_402); +lean_ctor_set(x_474, 1, x_9); +return x_474; } else { -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; -x_462 = lean_array_fget(x_447, x_360); -x_463 = lean_unsigned_to_nat(1u); -x_464 = lean_array_fget(x_447, x_463); -lean_dec(x_447); -x_465 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__82; -x_466 = l_Lean_mkAppB(x_465, x_462, x_464); -x_467 = l_Lean_HashSetImp_insert___at_Lean_CollectMVars_visit___spec__3(x_375, x_466); -x_468 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_468, 0, x_467); -lean_ctor_set(x_468, 1, x_9); -return x_468; +lean_object* x_475; uint8_t x_476; +x_475 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__93; +x_476 = lean_string_dec_eq(x_465, x_475); +lean_dec(x_465); +if (x_476 == 0) +{ +lean_object* x_477; +lean_dec(x_464); +x_477 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_477, 0, x_402); +lean_ctor_set(x_477, 1, x_9); +return x_477; +} +else +{ +lean_object* x_478; uint8_t x_479; +x_478 = lean_array_get_size(x_464); +x_479 = lean_nat_dec_eq(x_478, x_397); +lean_dec(x_478); +if (x_479 == 0) +{ +lean_object* x_480; +lean_dec(x_464); +x_480 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_480, 0, x_402); +lean_ctor_set(x_480, 1, x_9); +return x_480; +} +else +{ +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; +x_481 = lean_array_fget(x_464, x_387); +x_482 = lean_unsigned_to_nat(1u); +x_483 = lean_array_fget(x_464, x_482); +lean_dec(x_464); +x_484 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__96; +x_485 = l_Lean_mkAppB(x_484, x_481, x_483); +x_486 = l_Lean_HashSetImp_insert___at_Lean_CollectMVars_visit___spec__3(x_402, x_485); +x_487 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_487, 0, x_486); +lean_ctor_set(x_487, 1, x_9); +return x_487; } } } } else { -lean_object* x_469; uint8_t x_470; -lean_dec(x_449); -x_469 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__83; -x_470 = lean_string_dec_eq(x_448, x_469); -lean_dec(x_448); -if (x_470 == 0) -{ -lean_object* x_471; -lean_dec(x_447); -x_471 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_471, 0, x_375); -lean_ctor_set(x_471, 1, x_9); -return x_471; -} -else -{ -lean_object* x_472; lean_object* x_473; uint8_t x_474; -x_472 = lean_array_get_size(x_447); -x_473 = lean_unsigned_to_nat(1u); -x_474 = lean_nat_dec_eq(x_472, x_473); -lean_dec(x_472); -if (x_474 == 0) -{ -lean_object* x_475; -lean_dec(x_447); -x_475 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_475, 0, x_375); -lean_ctor_set(x_475, 1, x_9); -return x_475; -} -else -{ -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; -x_476 = lean_array_fget(x_447, x_360); -lean_dec(x_447); -x_477 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__86; -lean_inc(x_476); -x_478 = l_Lean_Expr_app___override(x_477, x_476); -x_479 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__89; -x_480 = l_Lean_Expr_app___override(x_479, x_476); -x_481 = l_Lean_HashSetImp_insert___at_Lean_CollectMVars_visit___spec__3(x_375, x_478); -x_482 = l_Lean_HashSetImp_insert___at_Lean_CollectMVars_visit___spec__3(x_481, x_480); -x_483 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_483, 0, x_482); -lean_ctor_set(x_483, 1, x_9); -return x_483; -} -} -} -} -else -{ -lean_object* x_484; uint8_t x_485; -lean_dec(x_449); -x_484 = l_Lean_Elab_Tactic_Omega_groundNat_x3f___closed__10; -x_485 = lean_string_dec_eq(x_448, x_484); -lean_dec(x_448); -if (x_485 == 0) -{ -lean_object* x_486; -lean_dec(x_447); -x_486 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_486, 0, x_375); -lean_ctor_set(x_486, 1, x_9); -return x_486; -} -else -{ -lean_object* x_487; lean_object* x_488; uint8_t x_489; -x_487 = lean_array_get_size(x_447); -x_488 = lean_unsigned_to_nat(6u); -x_489 = lean_nat_dec_eq(x_487, x_488); -lean_dec(x_487); +lean_object* x_488; uint8_t x_489; +lean_dec(x_466); +x_488 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__97; +x_489 = lean_string_dec_eq(x_465, x_488); +lean_dec(x_465); if (x_489 == 0) { lean_object* x_490; -lean_dec(x_447); +lean_dec(x_464); x_490 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_490, 0, x_375); +lean_ctor_set(x_490, 0, x_402); lean_ctor_set(x_490, 1, x_9); return x_490; } else { -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; -x_491 = lean_unsigned_to_nat(4u); -x_492 = lean_array_fget(x_447, x_491); -x_493 = lean_unsigned_to_nat(5u); -x_494 = lean_array_fget(x_447, x_493); -lean_dec(x_447); -x_495 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__98; -x_496 = l_Lean_mkAppB(x_495, x_492, x_494); -x_497 = l_Lean_HashSetImp_insert___at_Lean_CollectMVars_visit___spec__3(x_375, x_496); -x_498 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_498, 0, x_497); -lean_ctor_set(x_498, 1, x_9); -return x_498; -} -} -} -} -case 1: +lean_object* x_491; uint8_t x_492; +x_491 = lean_array_get_size(x_464); +x_492 = lean_nat_dec_eq(x_491, x_397); +lean_dec(x_491); +if (x_492 == 0) { -lean_object* x_499; -x_499 = lean_ctor_get(x_446, 0); -lean_inc(x_499); -if (lean_obj_tag(x_499) == 0) -{ -lean_object* x_500; lean_object* x_501; lean_object* x_502; lean_object* x_503; lean_object* x_504; uint8_t x_505; -x_500 = lean_ctor_get(x_377, 1); -lean_inc(x_500); -lean_dec(x_377); -x_501 = lean_ctor_get(x_444, 1); -lean_inc(x_501); -lean_dec(x_444); -x_502 = lean_ctor_get(x_445, 1); -lean_inc(x_502); -lean_dec(x_445); -x_503 = lean_ctor_get(x_446, 1); -lean_inc(x_503); -lean_dec(x_446); -x_504 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__90; -x_505 = lean_string_dec_eq(x_503, x_504); -lean_dec(x_503); -if (x_505 == 0) -{ -lean_object* x_506; -lean_dec(x_502); -lean_dec(x_501); -lean_dec(x_500); -x_506 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_506, 0, x_375); -lean_ctor_set(x_506, 1, x_9); -return x_506; +lean_object* x_493; +lean_dec(x_464); +x_493 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_493, 0, x_402); +lean_ctor_set(x_493, 1, x_9); +return x_493; } else { -lean_object* x_507; uint8_t x_508; -x_507 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__91; -x_508 = lean_string_dec_eq(x_502, x_507); -lean_dec(x_502); -if (x_508 == 0) -{ -lean_object* x_509; -lean_dec(x_501); -lean_dec(x_500); -x_509 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_509, 0, x_375); -lean_ctor_set(x_509, 1, x_9); -return x_509; +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; +x_494 = lean_array_fget(x_464, x_387); +x_495 = lean_unsigned_to_nat(1u); +x_496 = lean_array_fget(x_464, x_495); +lean_dec(x_464); +x_497 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__100; +x_498 = l_Lean_mkAppB(x_497, x_494, x_496); +x_499 = l_Lean_HashSetImp_insert___at_Lean_CollectMVars_visit___spec__3(x_402, x_498); +x_500 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_500, 0, x_499); +lean_ctor_set(x_500, 1, x_9); +return x_500; +} +} +} } else { -lean_object* x_510; uint8_t x_511; -x_510 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__92; -x_511 = lean_string_dec_eq(x_501, x_510); -lean_dec(x_501); -if (x_511 == 0) +lean_object* x_501; uint8_t x_502; +lean_dec(x_466); +x_501 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__101; +x_502 = lean_string_dec_eq(x_465, x_501); +lean_dec(x_465); +if (x_502 == 0) { -lean_object* x_512; -lean_dec(x_500); -x_512 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_512, 0, x_375); -lean_ctor_set(x_512, 1, x_9); -return x_512; +lean_object* x_503; +lean_dec(x_464); +x_503 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_503, 0, x_402); +lean_ctor_set(x_503, 1, x_9); +return x_503; } else { -lean_object* x_513; uint8_t x_514; -x_513 = lean_array_get_size(x_500); -x_514 = lean_nat_dec_eq(x_513, x_370); -lean_dec(x_513); -if (x_514 == 0) +lean_object* x_504; lean_object* x_505; uint8_t x_506; +x_504 = lean_array_get_size(x_464); +x_505 = lean_unsigned_to_nat(1u); +x_506 = lean_nat_dec_eq(x_504, x_505); +lean_dec(x_504); +if (x_506 == 0) { -lean_object* x_515; -lean_dec(x_500); +lean_object* x_507; +lean_dec(x_464); +x_507 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_507, 0, x_402); +lean_ctor_set(x_507, 1, x_9); +return x_507; +} +else +{ +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; +x_508 = lean_array_fget(x_464, x_387); +lean_dec(x_464); +x_509 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__104; +lean_inc(x_508); +x_510 = l_Lean_Expr_app___override(x_509, x_508); +x_511 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__107; +x_512 = l_Lean_Expr_app___override(x_511, x_508); +x_513 = l_Lean_HashSetImp_insert___at_Lean_CollectMVars_visit___spec__3(x_402, x_510); +x_514 = l_Lean_HashSetImp_insert___at_Lean_CollectMVars_visit___spec__3(x_513, x_512); x_515 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_515, 0, x_375); +lean_ctor_set(x_515, 0, x_514); lean_ctor_set(x_515, 1, x_9); return x_515; } +} +} +} else { -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; -x_516 = lean_array_fget(x_500, x_360); -x_517 = lean_unsigned_to_nat(1u); -x_518 = lean_array_fget(x_500, x_517); -lean_dec(x_500); -x_519 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__95; -x_520 = l_Lean_mkAppB(x_519, x_516, x_518); -x_521 = l_Lean_HashSetImp_insert___at_Lean_CollectMVars_visit___spec__3(x_375, x_520); +lean_object* x_516; uint8_t x_517; +lean_dec(x_466); +x_516 = l_Lean_Elab_Tactic_Omega_groundNat_x3f___closed__10; +x_517 = lean_string_dec_eq(x_465, x_516); +lean_dec(x_465); +if (x_517 == 0) +{ +lean_object* x_518; +lean_dec(x_464); +x_518 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_518, 0, x_402); +lean_ctor_set(x_518, 1, x_9); +return x_518; +} +else +{ +lean_object* x_519; lean_object* x_520; uint8_t x_521; +x_519 = lean_array_get_size(x_464); +x_520 = lean_unsigned_to_nat(6u); +x_521 = lean_nat_dec_eq(x_519, x_520); +lean_dec(x_519); +if (x_521 == 0) +{ +lean_object* x_522; +lean_dec(x_464); x_522 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_522, 0, x_521); +lean_ctor_set(x_522, 0, x_402); lean_ctor_set(x_522, 1, x_9); return x_522; } -} -} -} -} else { -lean_object* x_523; -lean_dec(x_499); -lean_dec(x_446); -lean_dec(x_445); -lean_dec(x_444); -lean_dec(x_377); -x_523 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_523, 0, x_375); -lean_ctor_set(x_523, 1, x_9); -return x_523; -} -} -default: -{ -lean_object* x_524; -lean_dec(x_446); -lean_dec(x_445); -lean_dec(x_444); -lean_dec(x_377); -x_524 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_524, 0, x_375); -lean_ctor_set(x_524, 1, x_9); -return x_524; -} -} -} -else -{ -lean_object* x_525; -lean_dec(x_445); -lean_dec(x_444); -lean_dec(x_377); -x_525 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_525, 0, x_375); -lean_ctor_set(x_525, 1, x_9); -return x_525; -} -} -else -{ -lean_object* x_526; -lean_dec(x_444); -lean_dec(x_377); -x_526 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_526, 0, x_375); -lean_ctor_set(x_526, 1, x_9); -return x_526; -} -} -} -else -{ -lean_object* x_527; lean_object* x_528; -lean_dec(x_364); -lean_dec(x_44); -x_527 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__1; -x_528 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_528, 0, x_527); -lean_ctor_set(x_528, 1, x_9); -return x_528; -} -} -} -else -{ -lean_object* x_529; lean_object* x_530; -lean_dec(x_363); -lean_dec(x_362); -lean_dec(x_361); -lean_dec(x_44); -x_529 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__1; +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; +x_523 = lean_unsigned_to_nat(4u); +x_524 = lean_array_fget(x_464, x_523); +x_525 = lean_unsigned_to_nat(5u); +x_526 = lean_array_fget(x_464, x_525); +lean_dec(x_464); +x_527 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__110; +x_528 = l_Lean_mkAppB(x_527, x_524, x_526); +x_529 = l_Lean_HashSetImp_insert___at_Lean_CollectMVars_visit___spec__3(x_402, x_528); x_530 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_530, 0, x_529); lean_ctor_set(x_530, 1, x_9); return x_530; } } +} +} else { -lean_object* x_531; lean_object* x_532; -lean_dec(x_362); -lean_dec(x_361); -lean_dec(x_44); -x_531 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__1; +lean_object* x_531; +lean_dec(x_463); +lean_dec(x_462); +lean_dec(x_461); +lean_dec(x_404); +x_531 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_531, 0, x_402); +lean_ctor_set(x_531, 1, x_9); +return x_531; +} +} +else +{ +lean_object* x_532; +lean_dec(x_462); +lean_dec(x_461); +lean_dec(x_404); x_532 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_532, 0, x_531); +lean_ctor_set(x_532, 0, x_402); lean_ctor_set(x_532, 1, x_9); return x_532; } } else { -lean_object* x_533; lean_object* x_534; -lean_dec(x_361); +lean_object* x_533; +lean_dec(x_461); +lean_dec(x_404); +x_533 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_533, 0, x_402); +lean_ctor_set(x_533, 1, x_9); +return x_533; +} +} +} +else +{ +lean_object* x_534; lean_object* x_535; +lean_dec(x_391); lean_dec(x_44); -x_533 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__1; -x_534 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_534, 0, x_533); -lean_ctor_set(x_534, 1, x_9); -return x_534; +x_534 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__1; +x_535 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_535, 0, x_534); +lean_ctor_set(x_535, 1, x_9); +return x_535; +} +} +} +else +{ +lean_object* x_536; lean_object* x_537; +lean_dec(x_390); +lean_dec(x_389); +lean_dec(x_388); +lean_dec(x_44); +x_536 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__1; +x_537 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_537, 0, x_536); +lean_ctor_set(x_537, 1, x_9); +return x_537; +} +} +else +{ +lean_object* x_538; lean_object* x_539; +lean_dec(x_389); +lean_dec(x_388); +lean_dec(x_44); +x_538 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__1; +x_539 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_539, 0, x_538); +lean_ctor_set(x_539, 1, x_9); +return x_539; +} +} +else +{ +lean_object* x_540; lean_object* x_541; +lean_dec(x_388); +lean_dec(x_44); +x_540 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__1; +x_541 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_541, 0, x_540); +lean_ctor_set(x_541, 1, x_9); +return x_541; } } } @@ -5464,7 +5555,7 @@ return x_534; } else { -lean_object* x_535; lean_object* x_536; +lean_object* x_542; lean_object* x_543; lean_dec(x_43); lean_dec(x_12); lean_dec(x_11); @@ -5473,16 +5564,16 @@ lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); -x_535 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__1; -x_536 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_536, 0, x_535); -lean_ctor_set(x_536, 1, x_9); -return x_536; +x_542 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__1; +x_543 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_543, 0, x_542); +lean_ctor_set(x_543, 1, x_9); +return x_543; } } default: { -lean_object* x_537; lean_object* x_538; +lean_object* x_544; lean_object* x_545; lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); @@ -5490,28 +5581,28 @@ lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); -x_537 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__1; -x_538 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_538, 0, x_537); -lean_ctor_set(x_538, 1, x_9); -return x_538; +x_544 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__1; +x_545 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_545, 0, x_544); +lean_ctor_set(x_545, 1, x_9); +return x_545; } } } else { -lean_object* x_539; lean_object* x_540; +lean_object* x_546; lean_object* x_547; lean_dec(x_11); lean_dec(x_10); lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); -x_539 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__1; -x_540 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_540, 0, x_539); -lean_ctor_set(x_540, 1, x_9); -return x_540; +x_546 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__1; +x_547 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_547, 0, x_546); +lean_ctor_set(x_547, 1, x_9); +return x_547; } } } @@ -6722,14 +6813,26 @@ lean_dec(x_3); return x_12; } } -lean_object* initialize_Init(uint8_t builtin, lean_object*); +lean_object* initialize_Init_Omega_LinearCombo(uint8_t builtin, lean_object*); +lean_object* initialize_Init_Omega_Int(uint8_t builtin, lean_object*); +lean_object* initialize_Init_Omega_Logic(uint8_t builtin, lean_object*); +lean_object* initialize_Init_Data_BitVec(uint8_t builtin, lean_object*); lean_object* initialize_Lean_Meta_AppBuilder(uint8_t builtin, lean_object*); static bool _G_initialized = false; LEAN_EXPORT lean_object* initialize_Lean_Elab_Tactic_Omega_OmegaM(uint8_t builtin, lean_object* w) { lean_object * res; if (_G_initialized) return lean_io_result_mk_ok(lean_box(0)); _G_initialized = true; -res = initialize_Init(builtin, lean_io_mk_world()); +res = initialize_Init_Omega_LinearCombo(builtin, lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +res = initialize_Init_Omega_Int(builtin, lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +res = initialize_Init_Omega_Logic(builtin, lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +res = initialize_Init_Data_BitVec(builtin, lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); res = initialize_Lean_Meta_AppBuilder(builtin, lean_io_mk_world()); @@ -6900,7 +7003,6 @@ lean_mark_persistent(l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__48); l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__49 = _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__49(); lean_mark_persistent(l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__49); l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__50 = _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__50(); -lean_mark_persistent(l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__50); l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__51 = _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__51(); lean_mark_persistent(l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__51); l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__52 = _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__52(); @@ -6997,6 +7099,30 @@ l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__97 = _init_l_Lean_Elab_Tactic_Ome lean_mark_persistent(l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__97); l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__98 = _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__98(); lean_mark_persistent(l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__98); +l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__99 = _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__99(); +lean_mark_persistent(l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__99); +l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__100 = _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__100(); +lean_mark_persistent(l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__100); +l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__101 = _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__101(); +lean_mark_persistent(l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__101); +l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__102 = _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__102(); +lean_mark_persistent(l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__102); +l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__103 = _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__103(); +lean_mark_persistent(l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__103); +l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__104 = _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__104(); +lean_mark_persistent(l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__104); +l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__105 = _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__105(); +lean_mark_persistent(l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__105); +l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__106 = _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__106(); +lean_mark_persistent(l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__106); +l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__107 = _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__107(); +lean_mark_persistent(l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__107); +l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__108 = _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__108(); +lean_mark_persistent(l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__108); +l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__109 = _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__109(); +lean_mark_persistent(l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__109); +l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__110 = _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__110(); +lean_mark_persistent(l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__110); l_Lean_isTracingEnabledFor___at_Lean_Elab_Tactic_Omega_lookup___spec__2___closed__1 = _init_l_Lean_isTracingEnabledFor___at_Lean_Elab_Tactic_Omega_lookup___spec__2___closed__1(); lean_mark_persistent(l_Lean_isTracingEnabledFor___at_Lean_Elab_Tactic_Omega_lookup___spec__2___closed__1); l_Lean_Elab_Tactic_Omega_lookup___lambda__2___closed__1 = _init_l_Lean_Elab_Tactic_Omega_lookup___lambda__2___closed__1(); diff --git a/stage0/stdlib/Lean/Elab/Tactic/SimpTrace.c b/stage0/stdlib/Lean/Elab/Tactic/SimpTrace.c index 917a011eb7..6036850425 100644 --- a/stage0/stdlib/Lean/Elab/Tactic/SimpTrace.c +++ b/stage0/stdlib/Lean/Elab/Tactic/SimpTrace.c @@ -1,6 +1,6 @@ // Lean compiler output // Module: Lean.Elab.Tactic.SimpTrace -// Imports: Init Lean.Elab.ElabRules Lean.Elab.Tactic.Simp Lean.Meta.Tactic.TryThis +// Imports: Lean.Elab.ElabRules Lean.Elab.Tactic.Simp Lean.Meta.Tactic.TryThis #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -1466,7 +1466,7 @@ static lean_object* _init_l___regBuiltin_Lean_Elab_Tactic_evalSimpTrace_declRang _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(24u); +x_1 = lean_unsigned_to_nat(25u); x_2 = lean_unsigned_to_nat(28u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -1478,7 +1478,7 @@ static lean_object* _init_l___regBuiltin_Lean_Elab_Tactic_evalSimpTrace_declRang _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(39u); +x_1 = lean_unsigned_to_nat(40u); x_2 = lean_unsigned_to_nat(31u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -1506,7 +1506,7 @@ static lean_object* _init_l___regBuiltin_Lean_Elab_Tactic_evalSimpTrace_declRang _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(24u); +x_1 = lean_unsigned_to_nat(25u); x_2 = lean_unsigned_to_nat(32u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -1518,7 +1518,7 @@ static lean_object* _init_l___regBuiltin_Lean_Elab_Tactic_evalSimpTrace_declRang _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(24u); +x_1 = lean_unsigned_to_nat(25u); x_2 = lean_unsigned_to_nat(45u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -2803,7 +2803,7 @@ static lean_object* _init_l___regBuiltin_Lean_Elab_Tactic_evalSimpAllTrace_declR _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(41u); +x_1 = lean_unsigned_to_nat(42u); x_2 = lean_unsigned_to_nat(31u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -2815,7 +2815,7 @@ static lean_object* _init_l___regBuiltin_Lean_Elab_Tactic_evalSimpAllTrace_declR _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(56u); +x_1 = lean_unsigned_to_nat(57u); x_2 = lean_unsigned_to_nat(31u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -2842,7 +2842,7 @@ static lean_object* _init_l___regBuiltin_Lean_Elab_Tactic_evalSimpAllTrace_declR _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(41u); +x_1 = lean_unsigned_to_nat(42u); x_2 = lean_unsigned_to_nat(35u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -2854,7 +2854,7 @@ static lean_object* _init_l___regBuiltin_Lean_Elab_Tactic_evalSimpAllTrace_declR _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(41u); +x_1 = lean_unsigned_to_nat(42u); x_2 = lean_unsigned_to_nat(51u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -4500,7 +4500,7 @@ static lean_object* _init_l___regBuiltin_Lean_Elab_Tactic_evalDSimpTrace_declRan _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(79u); +x_1 = lean_unsigned_to_nat(80u); x_2 = lean_unsigned_to_nat(29u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -4512,7 +4512,7 @@ static lean_object* _init_l___regBuiltin_Lean_Elab_Tactic_evalDSimpTrace_declRan _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(90u); +x_1 = lean_unsigned_to_nat(91u); x_2 = lean_unsigned_to_nat(31u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -4540,7 +4540,7 @@ static lean_object* _init_l___regBuiltin_Lean_Elab_Tactic_evalDSimpTrace_declRan _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(79u); +x_1 = lean_unsigned_to_nat(80u); x_2 = lean_unsigned_to_nat(33u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -4552,7 +4552,7 @@ static lean_object* _init_l___regBuiltin_Lean_Elab_Tactic_evalDSimpTrace_declRan _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(79u); +x_1 = lean_unsigned_to_nat(80u); x_2 = lean_unsigned_to_nat(47u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -4598,7 +4598,6 @@ x_4 = l_Lean_addBuiltinDeclarationRanges(x_2, x_3, x_1); return x_4; } } -lean_object* initialize_Init(uint8_t builtin, lean_object*); lean_object* initialize_Lean_Elab_ElabRules(uint8_t builtin, lean_object*); lean_object* initialize_Lean_Elab_Tactic_Simp(uint8_t builtin, lean_object*); lean_object* initialize_Lean_Meta_Tactic_TryThis(uint8_t builtin, lean_object*); @@ -4607,9 +4606,6 @@ LEAN_EXPORT lean_object* initialize_Lean_Elab_Tactic_SimpTrace(uint8_t builtin, lean_object * res; if (_G_initialized) return lean_io_result_mk_ok(lean_box(0)); _G_initialized = true; -res = initialize_Init(builtin, lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); res = initialize_Lean_Elab_ElabRules(builtin, lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); diff --git a/stage0/stdlib/Lean/Elab/Tactic/Simpa.c b/stage0/stdlib/Lean/Elab/Tactic/Simpa.c index a41a49ab29..b8ccebebb7 100644 --- a/stage0/stdlib/Lean/Elab/Tactic/Simpa.c +++ b/stage0/stdlib/Lean/Elab/Tactic/Simpa.c @@ -1,6 +1,6 @@ // Lean compiler output // Module: Lean.Elab.Tactic.Simpa -// Imports: Init Lean.Meta.Tactic.Assumption Lean.Meta.Tactic.TryThis Lean.Elab.Tactic.Simp Lean.Linter.Util +// Imports: Lean.Meta.Tactic.Assumption Lean.Meta.Tactic.TryThis Lean.Elab.Tactic.Simp Lean.Linter.Util #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -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_Std_Tactic_Simpa_evalSimpa___lambda__2___closed__1; x_2 = l_Std_Tactic_Simpa_evalSimpa___lambda__2___closed__2; -x_3 = lean_unsigned_to_nat(85u); +x_3 = lean_unsigned_to_nat(86u); x_4 = lean_unsigned_to_nat(17u); x_5 = l_Std_Tactic_Simpa_evalSimpa___lambda__2___closed__3; x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); @@ -2102,13 +2102,14 @@ return x_3; static lean_object* _init_l_Std_Tactic_Simpa_evalSimpa___lambda__7___closed__10() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_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; x_1 = l_Std_Tactic_Simpa_evalSimpa___lambda__2___closed__1; x_2 = l_Std_Tactic_Simpa_evalSimpa___lambda__2___closed__2; -x_3 = lean_unsigned_to_nat(58u); -x_4 = l_Std_Tactic_Simpa_evalSimpa___lambda__2___closed__3; -x_5 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_3, x_4); -return x_5; +x_3 = lean_unsigned_to_nat(59u); +x_4 = lean_unsigned_to_nat(58u); +x_5 = l_Std_Tactic_Simpa_evalSimpa___lambda__2___closed__3; +x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); +return x_6; } } LEAN_EXPORT lean_object* l_Std_Tactic_Simpa_evalSimpa___lambda__7(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) { @@ -5013,7 +5014,7 @@ static lean_object* _init_l___regBuiltin_Std_Tactic_Simpa_evalSimpa_declRange___ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(30u); +x_1 = lean_unsigned_to_nat(31u); x_2 = lean_unsigned_to_nat(43u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -5025,7 +5026,7 @@ static lean_object* _init_l___regBuiltin_Std_Tactic_Simpa_evalSimpa_declRange___ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(87u); +x_1 = lean_unsigned_to_nat(88u); x_2 = lean_unsigned_to_nat(33u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -5053,7 +5054,7 @@ static lean_object* _init_l___regBuiltin_Std_Tactic_Simpa_evalSimpa_declRange___ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(30u); +x_1 = lean_unsigned_to_nat(31u); x_2 = lean_unsigned_to_nat(47u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -5065,7 +5066,7 @@ static lean_object* _init_l___regBuiltin_Std_Tactic_Simpa_evalSimpa_declRange___ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(30u); +x_1 = lean_unsigned_to_nat(31u); x_2 = lean_unsigned_to_nat(56u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -5111,7 +5112,6 @@ x_4 = l_Lean_addBuiltinDeclarationRanges(x_2, x_3, x_1); return x_4; } } -lean_object* initialize_Init(uint8_t builtin, lean_object*); lean_object* initialize_Lean_Meta_Tactic_Assumption(uint8_t builtin, lean_object*); lean_object* initialize_Lean_Meta_Tactic_TryThis(uint8_t builtin, lean_object*); lean_object* initialize_Lean_Elab_Tactic_Simp(uint8_t builtin, lean_object*); @@ -5121,9 +5121,6 @@ LEAN_EXPORT lean_object* initialize_Lean_Elab_Tactic_Simpa(uint8_t builtin, lean lean_object * res; if (_G_initialized) return lean_io_result_mk_ok(lean_box(0)); _G_initialized = true; -res = initialize_Init(builtin, lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); res = initialize_Lean_Meta_Tactic_Assumption(builtin, lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); diff --git a/stage0/stdlib/Lean/Elab/Tactic/SolveByElim.c b/stage0/stdlib/Lean/Elab/Tactic/SolveByElim.c index 61bd358af9..05307e21ba 100644 --- a/stage0/stdlib/Lean/Elab/Tactic/SolveByElim.c +++ b/stage0/stdlib/Lean/Elab/Tactic/SolveByElim.c @@ -13,245 +13,245 @@ #ifdef __cplusplus extern "C" { #endif +static lean_object* l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalApplyAssumption_declRange___closed__2; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_SolveByElim_processSyntax___lambda__1(uint8_t, 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* l_Lean_Expr_const___override(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_SolveByElim_parseArgs___spec__2___boxed(lean_object*, lean_object*, lean_object*); +static lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_SolveByElim_parseArgs___spec__2___closed__9; lean_object* l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___regBuiltin_Lean_Elab_Tactic_evalSolveByElim_declRange___closed__1; -LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_elabConfig___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_object*); -LEAN_EXPORT lean_object* l___private_Lean_Elab_InfoTree_Main_0__Lean_Elab_withSavedPartialInfoContext___at_Lean_Elab_Tactic_elabConfig___spec__2___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_Lean_Elab_Tactic_parseUsing___closed__1; +static lean_object* l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalApplyRules___closed__1; +static lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_SolveByElim_parseArgs___spec__2___closed__3; +static lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_SolveByElim_parseArgs___spec__2___closed__2; +static lean_object* l_Lean_Elab_Tactic_SolveByElim_elabConfig___closed__6; lean_object* lean_mk_empty_array_with_capacity(lean_object*); -static lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_evalApplyAssumption___spec__1___rarg___closed__2; -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_189_(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_Tactic_elabApplyRulesConfig___closed__4; lean_object* l_Lean_Elab_CommandContextInfo_save___at_Lean_Elab_Term_withoutModifyingElabMetaStateWithInfo___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_addBuiltinDocString(lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_Tactic_elabApplyRulesConfig___closed__2; -LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_elabConfig___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_EXPORT uint8_t l___private_Init_Data_Sum_0__Sum_beqSum____x40_Init_Data_Sum___hyg_241____at_Lean_Elab_Tactic_parseArgs___spec__5(lean_object*, lean_object*); -static lean_object* l_Lean_Elab_Tactic_elabConfig___closed__13; -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_elabApplyRulesConfig___boxed(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_Tactic_elabConfig___spec__11(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_EXPORT lean_object* l_List_filterMap___at_Lean_Elab_Tactic_SolveByElim_parseArgs___spec__7(lean_object*); +static lean_object* l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalApplyAssumption_declRange___closed__7; lean_object* l_Lean_Meta_SolveByElim_solveByElim(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_InfoTree_Main_0__Lean_Elab_withSavedPartialInfoContext___at_Lean_Elab_Tactic_elabConfig___spec__2___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_Lean_Elab_Tactic_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_189____closed__1; -static lean_object* l___regBuiltin_Lean_Elab_Tactic_evalApplyRules_declRange___closed__6; +static lean_object* l_Lean_Elab_Tactic_SolveByElim_evalSolveByElim___closed__2; 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*); lean_object* l_Lean_throwError___at_Lean_Elab_Tactic_evalTactic_throwExs___spec__2(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_mapMUnsafe_map___at_Lean_Elab_Tactic_parseArgs___spec__2___closed__7; -static lean_object* l_Lean_Elab_Tactic_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_8____closed__5; -LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Tactic_evalApplyAssumption(lean_object*); -static lean_object* l_Lean_Elab_Tactic_elabApplyRulesConfig___closed__1; -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_evalApplyAssumption___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_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_SolveByElim_evalApplyAssumption___spec__1___rarg___closed__1; +LEAN_EXPORT lean_object* l_Lean_Elab_withSaveInfoContext___at_Lean_Elab_Tactic_SolveByElim_elabConfig___spec__1___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_SolveByElim_parseArgs___spec__2___closed__1; lean_object* l_Lean_Elab_Term_elabTermEnsuringType(lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Elab_Tactic_tacticElabAttribute; -LEAN_EXPORT lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_evalApplyAssumption___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Tactic_evalApplyRules_docString(lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_withSaveInfoContext___at_Lean_Elab_Tactic_elabConfig___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_Tactic_evalSolveByElim___lambda__1___closed__2; -static lean_object* l_Lean_Elab_Tactic_elabConfig___closed__9; +static lean_object* l_Lean_Elab_Tactic_SolveByElim_elabApplyRulesConfig___closed__1; +static lean_object* l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalApplyRules___closed__3; +LEAN_EXPORT lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_SolveByElim_evalApplyAssumption___spec__1___rarg(lean_object*); +static lean_object* l_Lean_Elab_Tactic_SolveByElim_evalSolveByElim___closed__1; lean_object* l_Lean_Syntax_getArgs(lean_object*); -static lean_object* l___regBuiltin_Lean_Elab_Tactic_evalApplyRules___closed__2; -static lean_object* l_Lean_Elab_Tactic_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_8____closed__1; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_SolveByElim_elabApplyRulesConfig___boxed(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*); -static lean_object* l_Lean_Elab_Tactic_elabConfig___closed__2; -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_evalSolveByElim(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_SolveByElim_evalApplyAssumption___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* l_Lean_Elab_Tactic_getMainGoal(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_elabConfig___closed__10; lean_object* l_Lean_Syntax_TSepArray_getElems___rarg(lean_object*); -static lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_parseArgs___spec__2___closed__11; -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_evalApplyAssumption___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_EXPORT lean_object* l_Lean_Elab_Tactic_evalApplyRules(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_evalApplyRules___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_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_elabConfig___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_evalSolveByElim___lambda__1(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*, lean_object*, lean_object*); -static size_t l_Lean_Elab_Tactic_parseArgs___closed__2; -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_elabConfig___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_Lean_Elab_Tactic_SolveByElim_evalSolveByElim___closed__3; +LEAN_EXPORT lean_object* l_List_elem___at_Lean_Elab_Tactic_SolveByElim_parseArgs___spec__3___boxed(lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Tactic_SolveByElim_elabApplyRulesConfig___closed__4; +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_SolveByElim_elabConfig___spec__10(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_EXPORT lean_object* l_Lean_PersistentArray_mapM___at_Lean_Elab_Tactic_SolveByElim_elabConfig___spec__8(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_Lean_Elab_Tactic_SolveByElim_evalSolveByElim(lean_object*); +LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalApplyRules(lean_object*); lean_object* l_Lean_addBuiltinDeclarationRanges(lean_object*, lean_object*, lean_object*); -static lean_object* l___regBuiltin_Lean_Elab_Tactic_evalSolveByElim_declRange___closed__7; -LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_parseArgs___spec__2___boxed(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT uint8_t l_List_elem___at_Lean_Elab_Tactic_SolveByElim_parseArgs___spec__3(lean_object*, lean_object*); 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*); -LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Tactic_evalApplyAssumption_declRange(lean_object*); -static lean_object* l_Lean_Elab_Tactic_evalApplyAssumption___closed__2; +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_SolveByElim_elabConfig___spec__5(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* l_Lean_stringToMessageData(lean_object*); -static lean_object* l_Lean_Elab_withSaveInfoContext___at_Lean_Elab_Tactic_elabConfig___spec__1___closed__1; -static lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_parseArgs___spec__2___closed__12; -LEAN_EXPORT lean_object* l_Lean_PersistentArray_mapMAux___at_Lean_Elab_Tactic_elabConfig___spec__9(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_evalApplyRules___closed__1; -LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Tactic_evalSolveByElim_declRange(lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_evalSolveByElim___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*); -static lean_object* l_Lean_Elab_Tactic_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_8____closed__2; -static lean_object* l_Lean_Elab_Tactic_elabConfig___lambda__4___closed__2; +static lean_object* l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalApplyRules_declRange___closed__2; +static lean_object* l_Lean_Elab_Tactic_SolveByElim_parseArgs___closed__1; +LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalSolveByElim_declRange(lean_object*); +static lean_object* l_Lean_Elab_Tactic_SolveByElim_elabConfig___closed__14; +static lean_object* l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalSolveByElim_declRange___closed__6; +static lean_object* l_Lean_Elab_Tactic_SolveByElim_evalApplyAssumption___closed__2; +static lean_object* l_Lean_Elab_Tactic_SolveByElim_elabConfig___closed__9; +static lean_object* l_Lean_Elab_Tactic_SolveByElim_parseUsing___closed__2; +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_SolveByElim_elabConfig___spec__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_EXPORT lean_object* l_Lean_Elab_Tactic_SolveByElim_parseArgs(lean_object*); lean_object* l___private_Lean_Elab_SyntheticMVars_0__Lean_Elab_Term_withSynthesizeImp___rarg___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_elabConfig___closed__15; -LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_elabConfig___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*); -static lean_object* l___regBuiltin_Lean_Elab_Tactic_evalSolveByElim_declRange___closed__3; -static lean_object* l_Lean_Elab_Tactic_elabConfig___closed__17; +LEAN_EXPORT lean_object* l_panic___at_Lean_Elab_Tactic_SolveByElim_parseArgs___spec__1(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_SolveByElim_evalApplyAssumption___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* l_Sum_getRight_x3f___rarg(lean_object*); -static lean_object* l___regBuiltin_Lean_Elab_Tactic_evalSolveByElim_declRange___closed__6; +static lean_object* l_Lean_Elab_Tactic_SolveByElim_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_8____closed__3; +static lean_object* l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalApplyAssumption___closed__2; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_SolveByElim_evalSolveByElim___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*); +static lean_object* l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalApplyRules_declRange___closed__3; size_t lean_usize_of_nat(lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_processSyntax___lambda__1(uint8_t, 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* l_Lean_Elab_Tactic_getGoals___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_parseUsing(lean_object*); -static lean_object* l___regBuiltin_Lean_Elab_Tactic_evalApplyAssumption_declRange___closed__2; -LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_parseArgs___spec__2(size_t, size_t, lean_object*); -static lean_object* l_Lean_Elab_Tactic_elabConfig___closed__6; +static lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_SolveByElim_parseArgs___spec__2___closed__5; +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_SolveByElim_elabConfig___spec__11(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_Lean_Elab_Tactic_SolveByElim_evalApplyRules___closed__1; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_SolveByElim_evalSolveByElim___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*); +static lean_object* l_Lean_Elab_Tactic_SolveByElim_evalSolveByElim___lambda__1___closed__2; lean_object* lean_st_ref_take(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_withSaveInfoContext___at_Lean_Elab_Tactic_elabConfig___spec__1___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_Tactic_elabConfig___closed__8; -static lean_object* l___regBuiltin_Lean_Elab_Tactic_evalApplyRules_declRange___closed__4; -LEAN_EXPORT lean_object* l_Lean_Elab_withoutModifyingStateWithInfoAndMessages___at_Lean_Elab_Tactic_elabConfig___spec__13(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_Tactic_parseArgs___closed__1; -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_parseArgs(lean_object*); -LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_elabConfig___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*); -static lean_object* l_Lean_Elab_Tactic_processSyntax___closed__2; -static lean_object* l_Lean_Elab_Tactic_elabConfig___closed__5; -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_processSyntax___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___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalApplyRules_declRange___closed__7; +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_SolveByElim_elabConfig___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*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_SolveByElim_evalApplyRules___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_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_SolveByElim_evalSolveByElim___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_EXPORT lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_SolveByElim_evalApplyAssumption___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_SolveByElim_parseArgs___spec__2___closed__12; +static lean_object* l_Lean_Elab_Tactic_SolveByElim_elabApplyRulesConfig___closed__2; +static lean_object* l_Lean_Elab_Tactic_SolveByElim_parseArgs___closed__3; +static lean_object* l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalApplyRules_declRange___closed__5; +LEAN_EXPORT lean_object* l___private_Lean_Elab_InfoTree_Main_0__Lean_Elab_withSavedPartialInfoContext___at_Lean_Elab_Tactic_SolveByElim_elabConfig___spec__2___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_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_SolveByElim_elabConfig___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*); +static lean_object* l_Lean_Elab_Tactic_SolveByElim_elabConfig___closed__2; lean_object* l_Lean_PersistentArray_append___rarg(lean_object*, lean_object*); -static lean_object* l_Lean_Elab_Tactic_evalSolveByElim___closed__1; -static lean_object* l_Lean_Elab_Tactic_evalSolveByElim___closed__2; -LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_elabConfig___spec__6(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_EXPORT lean_object* l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalApplyRules_declRange(lean_object*); +static lean_object* l_Lean_Elab_Tactic_SolveByElim_elabConfig___closed__11; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_SolveByElim_evalSolveByElim___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*); +static lean_object* l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalApplyRules_declRange___closed__4; lean_object* l_Lean_Elab_Tactic_withMainContext___rarg(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_SolveByElim_elabConfig___lambda__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Tactic_SolveByElim_elabConfig___closed__12; lean_object* lean_st_ref_get(lean_object*, lean_object*); -static lean_object* l_Lean_Elab_Tactic_evalApplyRules___closed__2; +static lean_object* l_Lean_Elab_Tactic_SolveByElim_elabConfig___closed__16; +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_SolveByElim_elabConfig___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*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_SolveByElim_elabConfig___lambda__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_List_isEmpty___rarg(lean_object*); +static lean_object* l_Lean_Elab_Tactic_SolveByElim_elabConfig___closed__5; lean_object* lean_array_to_list(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_evalSolveByElim___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_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_8_(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___regBuiltin_Lean_Elab_Tactic_evalApplyAssumption_declRange___closed__6; -static lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_evalApplyAssumption___spec__1___rarg___closed__1; -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_evalSolveByElim___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_EXPORT lean_object* l_Lean_Elab_Tactic_elabConfig(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Tactic_SolveByElim_evalApplyAssumption___closed__1; +static lean_object* l_Lean_Elab_Tactic_SolveByElim_elabConfig___closed__17; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_SolveByElim_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_8_(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_Lean_Elab_Tactic_SolveByElim_elabConfig___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_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_SolveByElim_elabConfig___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*); +static lean_object* l_Lean_Elab_Tactic_SolveByElim_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_189____closed__2; +static lean_object* l_Lean_Elab_Tactic_SolveByElim_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_8____closed__5; +static lean_object* l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalApplyAssumption___closed__3; lean_object* l_Lean_Elab_InfoTree_substitute(lean_object*, lean_object*); -static lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_parseArgs___spec__2___closed__6; -static lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_parseArgs___spec__2___closed__1; -static lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_parseArgs___spec__2___closed__3; -LEAN_EXPORT lean_object* l___private_Init_Data_Option_Basic_0__Option_beqOption____x40_Init_Data_Option_Basic___hyg_158____at_Lean_Elab_Tactic_parseArgs___spec__4___boxed(lean_object*, lean_object*); +static lean_object* l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalApplyAssumption___closed__4; +static lean_object* l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalSolveByElim_declRange___closed__1; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_SolveByElim_evalApplyRules___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_EXPORT lean_object* l_Lean_Elab_Tactic_SolveByElim_evalApplyAssumption(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_SolveByElim_elabConfig___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Tactic_SolveByElim_parseArgs___closed__4; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_SolveByElim_evalSolveByElim___lambda__6(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___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalSolveByElim___closed__1; +LEAN_EXPORT lean_object* l___private_Init_Data_Sum_0__Sum_beqSum____x40_Init_Data_Sum___hyg_241____at_Lean_Elab_Tactic_SolveByElim_parseArgs___spec__5___boxed(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Elab_InfoTree_Main_0__Lean_Elab_withSavedPartialInfoContext___at_Lean_Elab_Tactic_SolveByElim_elabConfig___spec__2___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_List_lengthTRAux___rarg(lean_object*, lean_object*); -static lean_object* l___regBuiltin_Lean_Elab_Tactic_evalApplyRules_declRange___closed__7; -static lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_parseArgs___spec__2___closed__10; -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_processSyntax(lean_object*, uint8_t, 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_Elab_Tactic_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_8____boxed(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_Tactic_elabConfig___spec__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*); +static lean_object* l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalApplyAssumption_declRange___closed__4; +LEAN_EXPORT uint8_t l___private_Init_Data_Sum_0__Sum_beqSum____x40_Init_Data_Sum___hyg_241____at_Lean_Elab_Tactic_SolveByElim_parseArgs___spec__5(lean_object*, lean_object*); +static lean_object* l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalSolveByElim_declRange___closed__3; +LEAN_EXPORT lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_SolveByElim_evalApplyAssumption___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Tactic_SolveByElim_evalSolveByElim___lambda__1___closed__1; +static lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_SolveByElim_parseArgs___spec__2___closed__6; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_SolveByElim_elabConfig___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_SolveByElim_parseArgs___spec__2___closed__4; lean_object* l_Lean_mkOptionalNode(lean_object*); -LEAN_EXPORT lean_object* l_Lean_PersistentArray_mapM___at_Lean_Elab_Tactic_elabConfig___spec__8(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_evalSolveByElim___closed__3; -static lean_object* l___regBuiltin_Lean_Elab_Tactic_evalApplyRules_declRange___closed__2; +LEAN_EXPORT lean_object* l_Lean_Elab_withSaveInfoContext___at_Lean_Elab_Tactic_SolveByElim_elabConfig___spec__1___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Tactic_SolveByElim_elabConfig___closed__10; +static lean_object* l_Lean_Elab_Tactic_SolveByElim_elabConfig___closed__4; lean_object* l_Lean_Syntax_getArg(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_SolveByElim_processSyntax___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*); +static lean_object* l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalApplyAssumption_declRange___closed__5; lean_object* l___private_Init_Util_0__mkPanicMessageWithDecl(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___regBuiltin_Lean_Elab_Tactic_evalApplyRules_declRange___closed__5; -LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Tactic_evalApplyRules_declRange(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_SolveByElim_evalSolveByElim___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_object*, lean_object*); +static lean_object* l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalApplyAssumption_declRange___closed__3; uint8_t l_Lean_Syntax_matchesNull(lean_object*, lean_object*); -static lean_object* l___regBuiltin_Lean_Elab_Tactic_evalApplyRules_docString___closed__1; -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_evalApplyRules___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*); -static lean_object* l_Lean_Elab_Tactic_parseArgs___closed__4; -static lean_object* l_Lean_Elab_Tactic_parseArgs___closed__3; -static lean_object* l___regBuiltin_Lean_Elab_Tactic_evalApplyAssumption___closed__5; -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_evalApplyRules___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*); -static lean_object* l___regBuiltin_Lean_Elab_Tactic_evalSolveByElim___closed__2; -LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_elabConfig___spec__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_EXPORT lean_object* l_Lean_Elab_Tactic_evalApplyRules___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*); -static lean_object* l___regBuiltin_Lean_Elab_Tactic_evalSolveByElim_declRange___closed__4; -LEAN_EXPORT lean_object* l___private_Init_Data_Sum_0__Sum_beqSum____x40_Init_Data_Sum___hyg_241____at_Lean_Elab_Tactic_parseArgs___spec__5___boxed(lean_object*, lean_object*); -static lean_object* l___regBuiltin_Lean_Elab_Tactic_evalApplyRules_declRange___closed__1; +static lean_object* l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalApplyAssumption_declRange___closed__1; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_SolveByElim_elabConfig___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_Lean_Elab_Tactic_SolveByElim_evalApplyRules___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_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_SolveByElim_elabConfig___spec__6(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_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_SolveByElim_parseArgs___spec__2___closed__10; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_SolveByElim_evalApplyAssumption___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_EXPORT lean_object* l_Lean_Elab_Tactic_SolveByElim_elabConfig(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_Tactic_SolveByElim_elabConfig___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_EXPORT lean_object* l_Lean_Elab_Tactic_SolveByElim_evalApplyRules___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*); +static lean_object* l_Lean_Elab_Tactic_SolveByElim_elabConfig___closed__1; lean_object* l_Sum_getLeft_x3f___rarg(lean_object*); lean_object* l_Lean_throwError___at_Lean_Meta_mkSimpCongrTheorem___spec__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT uint8_t l___private_Init_Data_Option_Basic_0__Option_beqOption____x40_Init_Data_Option_Basic___hyg_158____at_Lean_Elab_Tactic_parseArgs___spec__4(lean_object*, lean_object*); -static lean_object* l_Lean_Elab_Tactic_elabConfig___closed__16; -LEAN_EXPORT uint8_t l_List_elem___at_Lean_Elab_Tactic_parseArgs___spec__3(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_evalApplyAssumption___spec__1___rarg(lean_object*); -LEAN_EXPORT lean_object* l_List_filterMap___at_Lean_Elab_Tactic_parseArgs___spec__7(lean_object*); -static lean_object* l_Lean_Elab_Tactic_processSyntax___closed__1; -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_evalSolveByElim___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_EXPORT lean_object* l_Lean_Elab_Tactic_evalApplyRules___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*); -static lean_object* l___regBuiltin_Lean_Elab_Tactic_evalSolveByElim___closed__1; -LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_elabConfig___spec__5(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_EXPORT lean_object* l___private_Lean_Elab_InfoTree_Main_0__Lean_Elab_withSavedPartialInfoContext___at_Lean_Elab_Tactic_elabConfig___spec__2(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_evalApplyAssumption_declRange___closed__7; -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_elabApplyRulesConfig(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___regBuiltin_Lean_Elab_Tactic_evalSolveByElim_declRange___closed__2; -static lean_object* l_Lean_Elab_Tactic_elabConfig___closed__11; -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_evalApplyAssumption___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___regBuiltin_Lean_Elab_Tactic_evalApplyAssumption_declRange___closed__3; -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_elabConfig___boxed(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_Tactic_elabConfig___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*, lean_object*); -LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_elabConfig___spec__10(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_Lean_Elab_Tactic_parseUsing___closed__2; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_SolveByElim_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_189____boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Tactic_SolveByElim_elabConfig___closed__8; +LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalApplyRules_docString(lean_object*); +LEAN_EXPORT uint8_t l___private_Init_Data_Option_Basic_0__Option_beqOption____x40_Init_Data_Option_Basic___hyg_158____at_Lean_Elab_Tactic_SolveByElim_parseArgs___spec__4(lean_object*, lean_object*); +static lean_object* l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalApplyAssumption_declRange___closed__6; +static lean_object* l_Lean_Elab_Tactic_SolveByElim_elabConfig___closed__15; +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_SolveByElim_parseArgs___spec__2(size_t, size_t, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Elab_InfoTree_Main_0__Lean_Elab_withSavedPartialInfoContext___at_Lean_Elab_Tactic_SolveByElim_elabConfig___spec__2(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_SolveByElim_evalSolveByElim_declRange___closed__4; +static lean_object* l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalSolveByElim_declRange___closed__5; +LEAN_EXPORT lean_object* l_Lean_Elab_withSaveInfoContext___at_Lean_Elab_Tactic_SolveByElim_elabConfig___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalSolveByElim___closed__2; lean_object* l_Lean_Elab_getResetInfoTrees___at_Lean_Elab_Term_withDeclName___spec__3___rarg(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_evalSolveByElim___lambda__6(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___regBuiltin_Lean_Elab_Tactic_evalApplyRules_declRange___closed__3; +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_SolveByElim_elabConfig___spec__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*); uint8_t lean_nat_dec_lt(lean_object*, lean_object*); -static lean_object* l___regBuiltin_Lean_Elab_Tactic_evalApplyAssumption_declRange___closed__5; +static lean_object* l_Lean_Elab_Tactic_SolveByElim_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_189____closed__1; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_SolveByElim_parseUsing(lean_object*); +static lean_object* l_Lean_Elab_Tactic_SolveByElim_processSyntax___closed__2; +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_SolveByElim_elabConfig___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_object*); lean_object* l_Lean_Meta_withLCtx___at___private_Lean_Elab_Binders_0__Lean_Elab_Term_FunBinders_elabFunBinderViews___spec__3___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___regBuiltin_Lean_Elab_Tactic_evalApplyAssumption___closed__2; -static lean_object* l___regBuiltin_Lean_Elab_Tactic_evalSolveByElim_declRange___closed__5; -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_evalApplyRules___lambda__1(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_EXPORT lean_object* l_Lean_Elab_withSaveInfoContext___at_Lean_Elab_Tactic_elabConfig___spec__1___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_Tactic_elabConfig___closed__7; -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_elabConfig___lambda__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_Tactic_elabConfig___closed__1; -static lean_object* l_Lean_Elab_Tactic_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_189____closed__2; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_SolveByElim_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_189_(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalApplyAssumption(lean_object*); +static lean_object* l_Lean_Elab_Tactic_SolveByElim_elabApplyRulesConfig___closed__3; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_SolveByElim_evalApplyRules___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_EXPORT lean_object* l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalApplyAssumption_declRange(lean_object*); +static lean_object* l_Lean_Elab_Tactic_SolveByElim_elabConfig___closed__3; +static lean_object* l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalApplyRules_declRange___closed__1; lean_object* l_Lean_throwError___at_Lean_Meta_Tactic_Backtrack_BacktrackConfig_discharge___default___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_evalSolveByElim___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*); -static lean_object* l_Lean_Elab_Tactic_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_8____closed__3; +static lean_object* l_Lean_Elab_Tactic_SolveByElim_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_8____closed__2; uint8_t l_Lean_Syntax_isNone(lean_object*); lean_object* lean_panic_fn(lean_object*, lean_object*); -static lean_object* l_Lean_Elab_Tactic_elabConfig___closed__12; -static lean_object* l___regBuiltin_Lean_Elab_Tactic_evalApplyAssumption___closed__4; -static lean_object* l___regBuiltin_Lean_Elab_Tactic_evalApplyAssumption_declRange___closed__1; -static lean_object* l_Lean_Elab_Tactic_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_8____closed__4; -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_evalApplyAssumption___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_EXPORT lean_object* l_panic___at_Lean_Elab_Tactic_parseArgs___spec__1(lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_189____boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_Tactic_elabConfig___closed__3; -static lean_object* l___regBuiltin_Lean_Elab_Tactic_evalApplyRules___closed__1; +static lean_object* l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalSolveByElim_declRange___closed__2; +LEAN_EXPORT lean_object* l___private_Init_Data_Option_Basic_0__Option_beqOption____x40_Init_Data_Option_Basic___hyg_158____at_Lean_Elab_Tactic_SolveByElim_parseArgs___spec__4___boxed(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_SolveByElim_elabConfig___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_PersistentArray_mapMAux___at_Lean_Elab_Tactic_SolveByElim_elabConfig___spec__4(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_SolveByElim_evalApplyRules___closed__2; +LEAN_EXPORT lean_object* l_Lean_PersistentArray_mapMAux___at_Lean_Elab_Tactic_SolveByElim_elabConfig___spec__9(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_EXPORT lean_object* l_Lean_Elab_Tactic_elabConfig___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_List_filterMap___at_Lean_Elab_Tactic_parseArgs___spec__6(lean_object*); -static lean_object* l___regBuiltin_Lean_Elab_Tactic_evalApplyAssumption___closed__1; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_SolveByElim_elabConfig___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_SolveByElim_evalSolveByElim___lambda__1(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*, lean_object*, lean_object*); +static size_t l_Lean_Elab_Tactic_SolveByElim_parseArgs___closed__2; +static lean_object* l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalApplyRules___closed__2; uint8_t l_Lean_Syntax_structEq(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_PersistentArray_mapMAux___at_Lean_Elab_Tactic_elabConfig___spec__4(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_evalApplyRules___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_EXPORT lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_evalApplyAssumption___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_Tactic_SolveByElim_evalSolveByElim(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_mapMUnsafe_map___at_Lean_Elab_Tactic_SolveByElim_parseArgs___spec__2___closed__8; size_t lean_usize_add(size_t, size_t); -static lean_object* l_Lean_Elab_Tactic_elabApplyRulesConfig___closed__3; -static lean_object* l_Lean_Elab_Tactic_evalSolveByElim___lambda__1___closed__1; -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_elabConfig___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_elabConfig___lambda__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_parseArgs___spec__2___closed__5; +static lean_object* l_Lean_Elab_withSaveInfoContext___at_Lean_Elab_Tactic_SolveByElim_elabConfig___spec__1___closed__1; +static lean_object* l_Lean_Elab_Tactic_SolveByElim_parseUsing___closed__1; +static lean_object* l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalApplyRules_declRange___closed__6; +LEAN_EXPORT lean_object* l_Lean_Elab_withoutModifyingStateWithInfoAndMessages___at_Lean_Elab_Tactic_SolveByElim_elabConfig___spec__13(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_SolveByElim_processSyntax(lean_object*, uint8_t, 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_Elab_Tactic_SolveByElim_elabApplyRulesConfig(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_SolveByElim_parseArgs___spec__2___closed__7; lean_object* lean_array_uget(lean_object*, size_t); +LEAN_EXPORT lean_object* l_List_filterMap___at_Lean_Elab_Tactic_SolveByElim_parseArgs___spec__6(lean_object*); +static lean_object* l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalSolveByElim_declRange___closed__7; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_SolveByElim_evalApplyAssumption___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_st_ref_set(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_processSyntax___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_Elab_Tactic_evalApplyAssumption(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_Tactic_elabConfig___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_Lean_Name_mkStr4(lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Tactic_evalSolveByElim(lean_object*); lean_object* l_Lean_Meta_SolveByElim_mkAssumptionSet(uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_Tactic_evalApplyAssumption___closed__1; +static lean_object* l_Lean_Elab_Tactic_SolveByElim_elabConfig___closed__13; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_SolveByElim_processSyntax___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_Meta_evalExpr_x27___rarg(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_parseArgs___spec__2___closed__2; lean_object* lean_array_get_size(lean_object*); -LEAN_EXPORT lean_object* l_Lean_PersistentArray_mapM___at_Lean_Elab_Tactic_elabConfig___spec__3(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_evalApplyAssumption___closed__3; -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_evalApplyAssumption___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*); +static lean_object* l_Lean_Elab_Tactic_SolveByElim_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_8____closed__4; +static lean_object* l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalApplyRules_docString___closed__1; extern lean_object* l_Lean_Elab_unsupportedSyntaxExceptionId; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_SolveByElim_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_8____boxed(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); -static lean_object* l_Lean_Elab_Tactic_elabConfig___lambda__4___closed__1; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_SolveByElim_evalApplyRules(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_SolveByElim_evalApplyAssumption___closed__1; lean_object* l___private_Lean_Elab_Term_0__Lean_Elab_Term_withoutModifyingStateWithInfoAndMessagesImpl___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_elabConfig___lambda__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_parseArgs___spec__2___closed__9; -static lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_parseArgs___spec__2___closed__8; -static lean_object* l___regBuiltin_Lean_Elab_Tactic_evalApplyRules___closed__3; -static lean_object* l_Lean_Elab_Tactic_elabConfig___closed__14; -static lean_object* l_Lean_Elab_Tactic_elabConfig___closed__4; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_SolveByElim_evalApplyAssumption___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_Elab_Tactic_SolveByElim_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_8____closed__1; +static lean_object* l_Lean_Elab_Tactic_SolveByElim_elabConfig___lambda__4___closed__1; lean_object* lean_array_uset(lean_object*, size_t, lean_object*); +static lean_object* l_Lean_Elab_Tactic_SolveByElim_elabConfig___closed__7; lean_object* l_Lean_Elab_Tactic_replaceMainGoal(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_List_elem___at_Lean_Elab_Tactic_parseArgs___spec__3___boxed(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Tactic_evalApplyRules(lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_evalApplyAssumption___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*); -static lean_object* l___regBuiltin_Lean_Elab_Tactic_evalApplyAssumption_declRange___closed__4; -static lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_parseArgs___spec__2___closed__4; -static lean_object* _init_l_Lean_Elab_Tactic_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_8____closed__1() { +static lean_object* l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalApplyAssumption___closed__5; +static lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_SolveByElim_parseArgs___spec__2___closed__11; +static lean_object* l_Lean_Elab_Tactic_SolveByElim_elabConfig___lambda__4___closed__2; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_SolveByElim_elabConfig___lambda__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_SolveByElim_evalApplyAssumption___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*); +static lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_SolveByElim_evalApplyAssumption___spec__1___rarg___closed__2; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_SolveByElim_evalApplyRules___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*); +static lean_object* l_Lean_Elab_Tactic_SolveByElim_processSyntax___closed__1; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_SolveByElim_evalApplyRules___lambda__1(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*); +static lean_object* _init_l_Lean_Elab_Tactic_SolveByElim_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_8____closed__1() { _start: { lean_object* x_1; @@ -259,7 +259,7 @@ x_1 = lean_mk_string_from_bytes("Lean", 4); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_8____closed__2() { +static lean_object* _init_l_Lean_Elab_Tactic_SolveByElim_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_8____closed__2() { _start: { lean_object* x_1; @@ -267,7 +267,7 @@ x_1 = lean_mk_string_from_bytes("Meta", 4); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_8____closed__3() { +static lean_object* _init_l_Lean_Elab_Tactic_SolveByElim_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_8____closed__3() { _start: { lean_object* x_1; @@ -275,7 +275,7 @@ x_1 = lean_mk_string_from_bytes("SolveByElim", 11); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_8____closed__4() { +static lean_object* _init_l_Lean_Elab_Tactic_SolveByElim_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_8____closed__4() { _start: { lean_object* x_1; @@ -283,39 +283,39 @@ x_1 = lean_mk_string_from_bytes("SolveByElimConfig", 17); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_8____closed__5() { +static lean_object* _init_l_Lean_Elab_Tactic_SolveByElim_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_8____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_Lean_Elab_Tactic_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_8____closed__1; -x_2 = l_Lean_Elab_Tactic_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_8____closed__2; -x_3 = l_Lean_Elab_Tactic_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_8____closed__3; -x_4 = l_Lean_Elab_Tactic_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_8____closed__4; +x_1 = l_Lean_Elab_Tactic_SolveByElim_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_8____closed__1; +x_2 = l_Lean_Elab_Tactic_SolveByElim_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_8____closed__2; +x_3 = l_Lean_Elab_Tactic_SolveByElim_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_8____closed__3; +x_4 = l_Lean_Elab_Tactic_SolveByElim_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_8____closed__4; x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); return x_5; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_8_(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_EXPORT lean_object* l_Lean_Elab_Tactic_SolveByElim_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_8_(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) { _start: { lean_object* x_9; uint8_t x_10; lean_object* x_11; -x_9 = l_Lean_Elab_Tactic_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_8____closed__5; +x_9 = l_Lean_Elab_Tactic_SolveByElim_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_8____closed__5; x_10 = 0; x_11 = l_Lean_Meta_evalExpr_x27___rarg(x_9, x_1, x_10, x_4, x_5, x_6, x_7, x_8); return x_11; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_8____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_EXPORT lean_object* l_Lean_Elab_Tactic_SolveByElim_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_8____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) { _start: { lean_object* x_9; -x_9 = l_Lean_Elab_Tactic_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_8_(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +x_9 = l_Lean_Elab_Tactic_SolveByElim_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_8_(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); lean_dec(x_3); lean_dec(x_2); return x_9; } } -LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_elabConfig___spec__5(lean_object* x_1, lean_object* x_2, size_t x_3, size_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_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_SolveByElim_elabConfig___spec__5(lean_object* x_1, lean_object* x_2, size_t x_3, size_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) { _start: { uint8_t x_13; @@ -350,7 +350,7 @@ lean_inc(x_7); lean_inc(x_6); lean_inc(x_2); lean_inc(x_1); -x_18 = l_Lean_PersistentArray_mapMAux___at_Lean_Elab_Tactic_elabConfig___spec__4(x_1, x_2, x_15, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +x_18 = l_Lean_PersistentArray_mapMAux___at_Lean_Elab_Tactic_SolveByElim_elabConfig___spec__4(x_1, x_2, x_15, x_6, x_7, x_8, x_9, x_10, x_11, x_12); if (lean_obj_tag(x_18) == 0) { lean_object* x_19; lean_object* x_20; size_t x_21; size_t x_22; lean_object* x_23; @@ -401,7 +401,7 @@ return x_28; } } } -LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_elabConfig___spec__6(lean_object* x_1, lean_object* x_2, size_t x_3, size_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_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_SolveByElim_elabConfig___spec__6(lean_object* x_1, lean_object* x_2, size_t x_3, size_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) { _start: { uint8_t x_13; @@ -514,7 +514,7 @@ return x_37; } } } -LEAN_EXPORT lean_object* l_Lean_PersistentArray_mapMAux___at_Lean_Elab_Tactic_elabConfig___spec__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_EXPORT lean_object* l_Lean_PersistentArray_mapMAux___at_Lean_Elab_Tactic_SolveByElim_elabConfig___spec__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) { _start: { if (lean_obj_tag(x_3) == 0) @@ -529,7 +529,7 @@ x_13 = lean_array_get_size(x_12); x_14 = lean_usize_of_nat(x_13); lean_dec(x_13); x_15 = 0; -x_16 = l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_elabConfig___spec__5(x_1, x_2, x_14, x_15, x_12, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_16 = l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_SolveByElim_elabConfig___spec__5(x_1, x_2, x_14, x_15, x_12, x_4, x_5, x_6, x_7, x_8, x_9, x_10); if (lean_obj_tag(x_16) == 0) { uint8_t x_17; @@ -591,7 +591,7 @@ x_27 = lean_array_get_size(x_26); x_28 = lean_usize_of_nat(x_27); lean_dec(x_27); x_29 = 0; -x_30 = l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_elabConfig___spec__5(x_1, x_2, x_28, x_29, x_26, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_30 = l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_SolveByElim_elabConfig___spec__5(x_1, x_2, x_28, x_29, x_26, x_4, x_5, x_6, x_7, x_8, x_9, x_10); if (lean_obj_tag(x_30) == 0) { lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; @@ -656,7 +656,7 @@ x_42 = lean_array_get_size(x_41); x_43 = lean_usize_of_nat(x_42); lean_dec(x_42); x_44 = 0; -x_45 = l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_elabConfig___spec__6(x_1, x_2, x_43, x_44, x_41, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_45 = l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_SolveByElim_elabConfig___spec__6(x_1, x_2, x_43, x_44, x_41, x_4, x_5, x_6, x_7, x_8, x_9, x_10); if (lean_obj_tag(x_45) == 0) { uint8_t x_46; @@ -718,7 +718,7 @@ x_56 = lean_array_get_size(x_55); x_57 = lean_usize_of_nat(x_56); lean_dec(x_56); x_58 = 0; -x_59 = l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_elabConfig___spec__6(x_1, x_2, x_57, x_58, x_55, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_59 = l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_SolveByElim_elabConfig___spec__6(x_1, x_2, x_57, x_58, x_55, x_4, x_5, x_6, x_7, x_8, x_9, x_10); if (lean_obj_tag(x_59) == 0) { lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; @@ -773,7 +773,7 @@ return x_68; } } } -LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_elabConfig___spec__7(lean_object* x_1, lean_object* x_2, size_t x_3, size_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_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_SolveByElim_elabConfig___spec__7(lean_object* x_1, lean_object* x_2, size_t x_3, size_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) { _start: { uint8_t x_13; @@ -886,7 +886,7 @@ return x_37; } } } -LEAN_EXPORT lean_object* l_Lean_PersistentArray_mapM___at_Lean_Elab_Tactic_elabConfig___spec__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_EXPORT lean_object* l_Lean_PersistentArray_mapM___at_Lean_Elab_Tactic_SolveByElim_elabConfig___spec__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: { uint8_t x_11; @@ -906,7 +906,7 @@ lean_inc(x_5); lean_inc(x_4); lean_inc(x_2); lean_inc(x_1); -x_16 = l_Lean_PersistentArray_mapMAux___at_Lean_Elab_Tactic_elabConfig___spec__4(x_1, x_2, x_12, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_16 = l_Lean_PersistentArray_mapMAux___at_Lean_Elab_Tactic_SolveByElim_elabConfig___spec__4(x_1, x_2, x_12, x_4, x_5, x_6, x_7, x_8, x_9, x_10); if (lean_obj_tag(x_16) == 0) { lean_object* x_17; lean_object* x_18; lean_object* x_19; size_t x_20; size_t x_21; lean_object* x_22; @@ -919,7 +919,7 @@ x_19 = lean_array_get_size(x_13); x_20 = lean_usize_of_nat(x_19); lean_dec(x_19); x_21 = 0; -x_22 = l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_elabConfig___spec__7(x_1, x_2, x_20, x_21, x_13, x_4, x_5, x_6, x_7, x_8, x_9, x_18); +x_22 = l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_SolveByElim_elabConfig___spec__7(x_1, x_2, x_20, x_21, x_13, x_4, x_5, x_6, x_7, x_8, x_9, x_18); if (lean_obj_tag(x_22) == 0) { uint8_t x_23; @@ -1032,7 +1032,7 @@ lean_inc(x_5); lean_inc(x_4); lean_inc(x_2); lean_inc(x_1); -x_41 = l_Lean_PersistentArray_mapMAux___at_Lean_Elab_Tactic_elabConfig___spec__4(x_1, x_2, x_36, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_41 = l_Lean_PersistentArray_mapMAux___at_Lean_Elab_Tactic_SolveByElim_elabConfig___spec__4(x_1, x_2, x_36, x_4, x_5, x_6, x_7, x_8, x_9, x_10); if (lean_obj_tag(x_41) == 0) { lean_object* x_42; lean_object* x_43; lean_object* x_44; size_t x_45; size_t x_46; lean_object* x_47; @@ -1045,7 +1045,7 @@ x_44 = lean_array_get_size(x_37); x_45 = lean_usize_of_nat(x_44); lean_dec(x_44); x_46 = 0; -x_47 = l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_elabConfig___spec__7(x_1, x_2, x_45, x_46, x_37, x_4, x_5, x_6, x_7, x_8, x_9, x_43); +x_47 = l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_SolveByElim_elabConfig___spec__7(x_1, x_2, x_45, x_46, x_37, x_4, x_5, x_6, x_7, x_8, x_9, x_43); if (lean_obj_tag(x_47) == 0) { lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; @@ -1142,7 +1142,7 @@ return x_60; } } } -LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_elabConfig___spec__10(lean_object* x_1, lean_object* x_2, size_t x_3, size_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_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_SolveByElim_elabConfig___spec__10(lean_object* x_1, lean_object* x_2, size_t x_3, size_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) { _start: { uint8_t x_13; @@ -1177,7 +1177,7 @@ lean_inc(x_7); lean_inc(x_6); lean_inc(x_2); lean_inc(x_1); -x_18 = l_Lean_PersistentArray_mapMAux___at_Lean_Elab_Tactic_elabConfig___spec__9(x_1, x_2, x_15, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +x_18 = l_Lean_PersistentArray_mapMAux___at_Lean_Elab_Tactic_SolveByElim_elabConfig___spec__9(x_1, x_2, x_15, x_6, x_7, x_8, x_9, x_10, x_11, x_12); if (lean_obj_tag(x_18) == 0) { lean_object* x_19; lean_object* x_20; size_t x_21; size_t x_22; lean_object* x_23; @@ -1228,7 +1228,7 @@ return x_28; } } } -LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_elabConfig___spec__11(lean_object* x_1, lean_object* x_2, size_t x_3, size_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_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_SolveByElim_elabConfig___spec__11(lean_object* x_1, lean_object* x_2, size_t x_3, size_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) { _start: { uint8_t x_13; @@ -1341,7 +1341,7 @@ return x_37; } } } -LEAN_EXPORT lean_object* l_Lean_PersistentArray_mapMAux___at_Lean_Elab_Tactic_elabConfig___spec__9(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_EXPORT lean_object* l_Lean_PersistentArray_mapMAux___at_Lean_Elab_Tactic_SolveByElim_elabConfig___spec__9(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: { if (lean_obj_tag(x_3) == 0) @@ -1356,7 +1356,7 @@ x_13 = lean_array_get_size(x_12); x_14 = lean_usize_of_nat(x_13); lean_dec(x_13); x_15 = 0; -x_16 = l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_elabConfig___spec__10(x_1, x_2, x_14, x_15, x_12, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_16 = l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_SolveByElim_elabConfig___spec__10(x_1, x_2, x_14, x_15, x_12, x_4, x_5, x_6, x_7, x_8, x_9, x_10); if (lean_obj_tag(x_16) == 0) { uint8_t x_17; @@ -1418,7 +1418,7 @@ x_27 = lean_array_get_size(x_26); x_28 = lean_usize_of_nat(x_27); lean_dec(x_27); x_29 = 0; -x_30 = l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_elabConfig___spec__10(x_1, x_2, x_28, x_29, x_26, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_30 = l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_SolveByElim_elabConfig___spec__10(x_1, x_2, x_28, x_29, x_26, x_4, x_5, x_6, x_7, x_8, x_9, x_10); if (lean_obj_tag(x_30) == 0) { lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; @@ -1483,7 +1483,7 @@ x_42 = lean_array_get_size(x_41); x_43 = lean_usize_of_nat(x_42); lean_dec(x_42); x_44 = 0; -x_45 = l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_elabConfig___spec__11(x_1, x_2, x_43, x_44, x_41, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_45 = l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_SolveByElim_elabConfig___spec__11(x_1, x_2, x_43, x_44, x_41, x_4, x_5, x_6, x_7, x_8, x_9, x_10); if (lean_obj_tag(x_45) == 0) { uint8_t x_46; @@ -1545,7 +1545,7 @@ x_56 = lean_array_get_size(x_55); x_57 = lean_usize_of_nat(x_56); lean_dec(x_56); x_58 = 0; -x_59 = l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_elabConfig___spec__11(x_1, x_2, x_57, x_58, x_55, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_59 = l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_SolveByElim_elabConfig___spec__11(x_1, x_2, x_57, x_58, x_55, x_4, x_5, x_6, x_7, x_8, x_9, x_10); if (lean_obj_tag(x_59) == 0) { lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; @@ -1600,7 +1600,7 @@ return x_68; } } } -LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_elabConfig___spec__12(lean_object* x_1, lean_object* x_2, size_t x_3, size_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_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_SolveByElim_elabConfig___spec__12(lean_object* x_1, lean_object* x_2, size_t x_3, size_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) { _start: { uint8_t x_13; @@ -1713,7 +1713,7 @@ return x_37; } } } -LEAN_EXPORT lean_object* l_Lean_PersistentArray_mapM___at_Lean_Elab_Tactic_elabConfig___spec__8(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_EXPORT lean_object* l_Lean_PersistentArray_mapM___at_Lean_Elab_Tactic_SolveByElim_elabConfig___spec__8(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_11; @@ -1733,7 +1733,7 @@ lean_inc(x_5); lean_inc(x_4); lean_inc(x_2); lean_inc(x_1); -x_16 = l_Lean_PersistentArray_mapMAux___at_Lean_Elab_Tactic_elabConfig___spec__9(x_1, x_2, x_12, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_16 = l_Lean_PersistentArray_mapMAux___at_Lean_Elab_Tactic_SolveByElim_elabConfig___spec__9(x_1, x_2, x_12, x_4, x_5, x_6, x_7, x_8, x_9, x_10); if (lean_obj_tag(x_16) == 0) { lean_object* x_17; lean_object* x_18; lean_object* x_19; size_t x_20; size_t x_21; lean_object* x_22; @@ -1746,7 +1746,7 @@ x_19 = lean_array_get_size(x_13); x_20 = lean_usize_of_nat(x_19); lean_dec(x_19); x_21 = 0; -x_22 = l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_elabConfig___spec__12(x_1, x_2, x_20, x_21, x_13, x_4, x_5, x_6, x_7, x_8, x_9, x_18); +x_22 = l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_SolveByElim_elabConfig___spec__12(x_1, x_2, x_20, x_21, x_13, x_4, x_5, x_6, x_7, x_8, x_9, x_18); if (lean_obj_tag(x_22) == 0) { uint8_t x_23; @@ -1859,7 +1859,7 @@ lean_inc(x_5); lean_inc(x_4); lean_inc(x_2); lean_inc(x_1); -x_41 = l_Lean_PersistentArray_mapMAux___at_Lean_Elab_Tactic_elabConfig___spec__9(x_1, x_2, x_36, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_41 = l_Lean_PersistentArray_mapMAux___at_Lean_Elab_Tactic_SolveByElim_elabConfig___spec__9(x_1, x_2, x_36, x_4, x_5, x_6, x_7, x_8, x_9, x_10); if (lean_obj_tag(x_41) == 0) { lean_object* x_42; lean_object* x_43; lean_object* x_44; size_t x_45; size_t x_46; lean_object* x_47; @@ -1872,7 +1872,7 @@ x_44 = lean_array_get_size(x_37); x_45 = lean_usize_of_nat(x_44); lean_dec(x_44); x_46 = 0; -x_47 = l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_elabConfig___spec__12(x_1, x_2, x_45, x_46, x_37, x_4, x_5, x_6, x_7, x_8, x_9, x_43); +x_47 = l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_SolveByElim_elabConfig___spec__12(x_1, x_2, x_45, x_46, x_37, x_4, x_5, x_6, x_7, x_8, x_9, x_43); if (lean_obj_tag(x_47) == 0) { lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; @@ -1969,7 +1969,7 @@ return x_60; } } } -LEAN_EXPORT lean_object* l___private_Lean_Elab_InfoTree_Main_0__Lean_Elab_withSavedPartialInfoContext___at_Lean_Elab_Tactic_elabConfig___spec__2___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) { +LEAN_EXPORT lean_object* l___private_Lean_Elab_InfoTree_Main_0__Lean_Elab_withSavedPartialInfoContext___at_Lean_Elab_Tactic_SolveByElim_elabConfig___spec__2___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; lean_object* x_14; @@ -2006,7 +2006,7 @@ lean_dec(x_18); x_21 = lean_ctor_get(x_20, 1); lean_inc(x_21); lean_inc(x_9); -x_22 = l_Lean_PersistentArray_mapM___at_Lean_Elab_Tactic_elabConfig___spec__3(x_2, x_20, x_21, x_4, x_5, x_6, x_7, x_8, x_9, x_19); +x_22 = l_Lean_PersistentArray_mapM___at_Lean_Elab_Tactic_SolveByElim_elabConfig___spec__3(x_2, x_20, x_21, x_4, x_5, x_6, x_7, x_8, x_9, x_19); if (lean_obj_tag(x_22) == 0) { lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; uint8_t x_29; @@ -2207,7 +2207,7 @@ lean_dec(x_70); x_73 = lean_ctor_get(x_72, 1); lean_inc(x_73); lean_inc(x_9); -x_74 = l_Lean_PersistentArray_mapM___at_Lean_Elab_Tactic_elabConfig___spec__8(x_2, x_72, x_73, x_4, x_5, x_6, x_7, x_8, x_9, x_71); +x_74 = l_Lean_PersistentArray_mapM___at_Lean_Elab_Tactic_SolveByElim_elabConfig___spec__8(x_2, x_72, x_73, x_4, x_5, x_6, x_7, x_8, x_9, x_71); if (lean_obj_tag(x_74) == 0) { lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; uint8_t x_81; @@ -2393,7 +2393,7 @@ return x_118; } } } -LEAN_EXPORT lean_object* l___private_Lean_Elab_InfoTree_Main_0__Lean_Elab_withSavedPartialInfoContext___at_Lean_Elab_Tactic_elabConfig___spec__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_EXPORT lean_object* l___private_Lean_Elab_InfoTree_Main_0__Lean_Elab_withSavedPartialInfoContext___at_Lean_Elab_Tactic_SolveByElim_elabConfig___spec__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; lean_object* x_12; uint8_t x_13; @@ -2465,12 +2465,12 @@ x_24 = lean_ctor_get(x_10, 1); lean_inc(x_24); lean_dec(x_10); x_25 = lean_box(0); -x_26 = l___private_Lean_Elab_InfoTree_Main_0__Lean_Elab_withSavedPartialInfoContext___at_Lean_Elab_Tactic_elabConfig___spec__2___lambda__1(x_1, x_2, x_25, x_3, x_4, x_5, x_6, x_7, x_8, x_24); +x_26 = l___private_Lean_Elab_InfoTree_Main_0__Lean_Elab_withSavedPartialInfoContext___at_Lean_Elab_Tactic_SolveByElim_elabConfig___spec__2___lambda__1(x_1, x_2, x_25, x_3, x_4, x_5, x_6, x_7, x_8, x_24); return x_26; } } } -LEAN_EXPORT lean_object* l_Lean_Elab_withSaveInfoContext___at_Lean_Elab_Tactic_elabConfig___spec__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, lean_object* x_7) { +LEAN_EXPORT lean_object* l_Lean_Elab_withSaveInfoContext___at_Lean_Elab_Tactic_SolveByElim_elabConfig___spec__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, lean_object* x_7) { _start: { lean_object* x_8; uint8_t x_9; @@ -2506,24 +2506,24 @@ return x_17; } } } -static lean_object* _init_l_Lean_Elab_withSaveInfoContext___at_Lean_Elab_Tactic_elabConfig___spec__1___closed__1() { +static lean_object* _init_l_Lean_Elab_withSaveInfoContext___at_Lean_Elab_Tactic_SolveByElim_elabConfig___spec__1___closed__1() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Elab_withSaveInfoContext___at_Lean_Elab_Tactic_elabConfig___spec__1___lambda__1___boxed), 7, 0); +x_1 = lean_alloc_closure((void*)(l_Lean_Elab_withSaveInfoContext___at_Lean_Elab_Tactic_SolveByElim_elabConfig___spec__1___lambda__1___boxed), 7, 0); return x_1; } } -LEAN_EXPORT lean_object* l_Lean_Elab_withSaveInfoContext___at_Lean_Elab_Tactic_elabConfig___spec__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_EXPORT lean_object* l_Lean_Elab_withSaveInfoContext___at_Lean_Elab_Tactic_SolveByElim_elabConfig___spec__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) { _start: { lean_object* x_9; lean_object* x_10; -x_9 = l_Lean_Elab_withSaveInfoContext___at_Lean_Elab_Tactic_elabConfig___spec__1___closed__1; -x_10 = l___private_Lean_Elab_InfoTree_Main_0__Lean_Elab_withSavedPartialInfoContext___at_Lean_Elab_Tactic_elabConfig___spec__2(x_1, x_9, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +x_9 = l_Lean_Elab_withSaveInfoContext___at_Lean_Elab_Tactic_SolveByElim_elabConfig___spec__1___closed__1; +x_10 = l___private_Lean_Elab_InfoTree_Main_0__Lean_Elab_withSavedPartialInfoContext___at_Lean_Elab_Tactic_SolveByElim_elabConfig___spec__2(x_1, x_9, x_2, x_3, x_4, x_5, x_6, x_7, x_8); return x_10; } } -LEAN_EXPORT lean_object* l_Lean_Elab_withoutModifyingStateWithInfoAndMessages___at_Lean_Elab_Tactic_elabConfig___spec__13(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_EXPORT lean_object* l_Lean_Elab_withoutModifyingStateWithInfoAndMessages___at_Lean_Elab_Tactic_SolveByElim_elabConfig___spec__13(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) { _start: { lean_object* x_9; @@ -2574,7 +2574,7 @@ return x_17; } } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_elabConfig___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) { +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_SolveByElim_elabConfig___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: { uint8_t x_11; lean_object* x_12; @@ -2677,7 +2677,7 @@ return x_26; } } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_elabConfig___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_EXPORT lean_object* l_Lean_Elab_Tactic_SolveByElim_elabConfig___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; @@ -2688,7 +2688,7 @@ lean_ctor_set(x_9, 1, x_7); return x_9; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_elabConfig___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_EXPORT lean_object* l_Lean_Elab_Tactic_SolveByElim_elabConfig___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) { _start: { uint8_t x_7; lean_object* x_8; lean_object* x_9; @@ -2700,7 +2700,7 @@ lean_ctor_set(x_9, 1, x_6); return x_9; } } -static lean_object* _init_l_Lean_Elab_Tactic_elabConfig___lambda__4___closed__1() { +static lean_object* _init_l_Lean_Elab_Tactic_SolveByElim_elabConfig___lambda__4___closed__1() { _start: { lean_object* x_1; @@ -2708,25 +2708,25 @@ x_1 = lean_mk_string_from_bytes("failed", 6); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_elabConfig___lambda__4___closed__2() { +static lean_object* _init_l_Lean_Elab_Tactic_SolveByElim_elabConfig___lambda__4___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Elab_Tactic_elabConfig___lambda__4___closed__1; +x_1 = l_Lean_Elab_Tactic_SolveByElim_elabConfig___lambda__4___closed__1; x_2 = l_Lean_stringToMessageData(x_1); return x_2; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_elabConfig___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_EXPORT lean_object* l_Lean_Elab_Tactic_SolveByElim_elabConfig___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) { _start: { lean_object* x_7; lean_object* x_8; -x_7 = l_Lean_Elab_Tactic_elabConfig___lambda__4___closed__2; +x_7 = l_Lean_Elab_Tactic_SolveByElim_elabConfig___lambda__4___closed__2; x_8 = l_Lean_throwError___at_Lean_Meta_Tactic_Backtrack_BacktrackConfig_discharge___default___spec__1(x_7, x_2, x_3, x_4, x_5, x_6); return x_8; } } -static lean_object* _init_l_Lean_Elab_Tactic_elabConfig___closed__1() { +static lean_object* _init_l_Lean_Elab_Tactic_SolveByElim_elabConfig___closed__1() { _start: { lean_object* x_1; @@ -2734,21 +2734,21 @@ x_1 = l_Lean_PersistentHashMap_mkEmptyEntriesArray(lean_box(0), lean_box(0)); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_elabConfig___closed__2() { +static lean_object* _init_l_Lean_Elab_Tactic_SolveByElim_elabConfig___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Elab_Tactic_elabConfig___closed__1; +x_1 = l_Lean_Elab_Tactic_SolveByElim_elabConfig___closed__1; 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_Elab_Tactic_elabConfig___closed__3() { +static lean_object* _init_l_Lean_Elab_Tactic_SolveByElim_elabConfig___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Tactic_elabConfig___closed__2; +x_1 = l_Lean_Elab_Tactic_SolveByElim_elabConfig___closed__2; x_2 = lean_unsigned_to_nat(0u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -2756,7 +2756,7 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Tactic_elabConfig___closed__4() { +static lean_object* _init_l_Lean_Elab_Tactic_SolveByElim_elabConfig___closed__4() { _start: { lean_object* x_1; lean_object* x_2; @@ -2765,23 +2765,23 @@ x_2 = lean_mk_empty_array_with_capacity(x_1); return x_2; } } -static lean_object* _init_l_Lean_Elab_Tactic_elabConfig___closed__5() { +static lean_object* _init_l_Lean_Elab_Tactic_SolveByElim_elabConfig___closed__5() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Elab_Tactic_elabConfig___closed__4; +x_1 = l_Lean_Elab_Tactic_SolveByElim_elabConfig___closed__4; 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_Elab_Tactic_elabConfig___closed__6() { +static lean_object* _init_l_Lean_Elab_Tactic_SolveByElim_elabConfig___closed__6() { _start: { size_t x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; x_1 = 5; -x_2 = l_Lean_Elab_Tactic_elabConfig___closed__5; -x_3 = l_Lean_Elab_Tactic_elabConfig___closed__4; +x_2 = l_Lean_Elab_Tactic_SolveByElim_elabConfig___closed__5; +x_3 = l_Lean_Elab_Tactic_SolveByElim_elabConfig___closed__4; x_4 = lean_unsigned_to_nat(0u); x_5 = lean_alloc_ctor(0, 4, sizeof(size_t)*1); lean_ctor_set(x_5, 0, x_2); @@ -2792,19 +2792,19 @@ lean_ctor_set_usize(x_5, 4, x_1); return x_5; } } -static lean_object* _init_l_Lean_Elab_Tactic_elabConfig___closed__7() { +static lean_object* _init_l_Lean_Elab_Tactic_SolveByElim_elabConfig___closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Tactic_elabConfig___closed__3; -x_2 = l_Lean_Elab_Tactic_elabConfig___closed__6; +x_1 = l_Lean_Elab_Tactic_SolveByElim_elabConfig___closed__3; +x_2 = l_Lean_Elab_Tactic_SolveByElim_elabConfig___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); return x_3; } } -static lean_object* _init_l_Lean_Elab_Tactic_elabConfig___closed__8() { +static lean_object* _init_l_Lean_Elab_Tactic_SolveByElim_elabConfig___closed__8() { _start: { lean_object* x_1; lean_object* x_2; @@ -2813,58 +2813,58 @@ x_2 = lean_mk_empty_array_with_capacity(x_1); return x_2; } } -static lean_object* _init_l_Lean_Elab_Tactic_elabConfig___closed__9() { +static lean_object* _init_l_Lean_Elab_Tactic_SolveByElim_elabConfig___closed__9() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Elab_Tactic_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_8____closed__5; +x_2 = l_Lean_Elab_Tactic_SolveByElim_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_8____closed__5; x_3 = l_Lean_Expr_const___override(x_2, x_1); return x_3; } } -static lean_object* _init_l_Lean_Elab_Tactic_elabConfig___closed__10() { +static lean_object* _init_l_Lean_Elab_Tactic_SolveByElim_elabConfig___closed__10() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Elab_Tactic_elabConfig___closed__9; +x_1 = l_Lean_Elab_Tactic_SolveByElim_elabConfig___closed__9; x_2 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Elab_Tactic_elabConfig___closed__11() { +static lean_object* _init_l_Lean_Elab_Tactic_SolveByElim_elabConfig___closed__11() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_elabConfig___lambda__2___boxed), 7, 0); +x_1 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_SolveByElim_elabConfig___lambda__2___boxed), 7, 0); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_elabConfig___closed__12() { +static lean_object* _init_l_Lean_Elab_Tactic_SolveByElim_elabConfig___closed__12() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_elabConfig___lambda__3___boxed), 6, 0); +x_1 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_SolveByElim_elabConfig___lambda__3___boxed), 6, 0); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_elabConfig___closed__13() { +static lean_object* _init_l_Lean_Elab_Tactic_SolveByElim_elabConfig___closed__13() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_elabConfig___lambda__4___boxed), 6, 0); +x_1 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_SolveByElim_elabConfig___lambda__4___boxed), 6, 0); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_elabConfig___closed__14() { +static lean_object* _init_l_Lean_Elab_Tactic_SolveByElim_elabConfig___closed__14() { _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_unsigned_to_nat(6u); -x_2 = l_Lean_Elab_Tactic_elabConfig___closed__11; -x_3 = l_Lean_Elab_Tactic_elabConfig___closed__12; -x_4 = l_Lean_Elab_Tactic_elabConfig___closed__13; +x_2 = l_Lean_Elab_Tactic_SolveByElim_elabConfig___closed__11; +x_3 = l_Lean_Elab_Tactic_SolveByElim_elabConfig___closed__12; +x_4 = l_Lean_Elab_Tactic_SolveByElim_elabConfig___closed__13; x_5 = 0; x_6 = lean_alloc_ctor(0, 4, 1); lean_ctor_set(x_6, 0, x_1); @@ -2875,7 +2875,7 @@ lean_ctor_set_uint8(x_6, sizeof(void*)*4, x_5); return x_6; } } -static lean_object* _init_l_Lean_Elab_Tactic_elabConfig___closed__15() { +static lean_object* _init_l_Lean_Elab_Tactic_SolveByElim_elabConfig___closed__15() { _start: { uint8_t x_1; uint8_t x_2; uint8_t x_3; lean_object* x_4; @@ -2890,12 +2890,12 @@ lean_ctor_set_uint8(x_4, 3, x_2); return x_4; } } -static lean_object* _init_l_Lean_Elab_Tactic_elabConfig___closed__16() { +static lean_object* _init_l_Lean_Elab_Tactic_SolveByElim_elabConfig___closed__16() { _start: { lean_object* x_1; lean_object* x_2; uint8_t x_3; uint8_t x_4; lean_object* x_5; -x_1 = l_Lean_Elab_Tactic_elabConfig___closed__14; -x_2 = l_Lean_Elab_Tactic_elabConfig___closed__15; +x_1 = l_Lean_Elab_Tactic_SolveByElim_elabConfig___closed__14; +x_2 = l_Lean_Elab_Tactic_SolveByElim_elabConfig___closed__15; x_3 = 1; x_4 = 1; x_5 = lean_alloc_ctor(0, 2, 3); @@ -2907,11 +2907,11 @@ lean_ctor_set_uint8(x_5, sizeof(void*)*2 + 2, x_4); return x_5; } } -static lean_object* _init_l_Lean_Elab_Tactic_elabConfig___closed__17() { +static lean_object* _init_l_Lean_Elab_Tactic_SolveByElim_elabConfig___closed__17() { _start: { lean_object* x_1; uint8_t x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Tactic_elabConfig___closed__16; +x_1 = l_Lean_Elab_Tactic_SolveByElim_elabConfig___closed__16; x_2 = 1; x_3 = lean_alloc_ctor(0, 1, 3); lean_ctor_set(x_3, 0, x_1); @@ -2921,7 +2921,7 @@ lean_ctor_set_uint8(x_3, sizeof(void*)*1 + 2, x_2); return x_3; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_elabConfig(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_EXPORT lean_object* l_Lean_Elab_Tactic_SolveByElim_elabConfig(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) { _start: { uint8_t x_9; @@ -2935,8 +2935,8 @@ x_12 = lean_unsigned_to_nat(3u); x_13 = l_Lean_Syntax_getArg(x_11, x_12); lean_dec(x_11); x_14 = lean_box(0); -x_15 = l_Lean_Elab_Tactic_elabConfig___closed__10; -x_16 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_elabConfig___lambda__1), 10, 3); +x_15 = l_Lean_Elab_Tactic_SolveByElim_elabConfig___closed__10; +x_16 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_SolveByElim_elabConfig___lambda__1), 10, 3); lean_closure_set(x_16, 0, x_13); lean_closure_set(x_16, 1, x_15); lean_closure_set(x_16, 2, x_14); @@ -2948,10 +2948,10 @@ x_21 = lean_alloc_closure((void*)(l___private_Lean_Elab_SyntheticMVars_0__Lean_E lean_closure_set(x_21, 0, x_16); lean_closure_set(x_21, 1, x_19); lean_closure_set(x_21, 2, x_20); -x_22 = lean_alloc_closure((void*)(l_Lean_Elab_withSaveInfoContext___at_Lean_Elab_Tactic_elabConfig___spec__1), 8, 1); +x_22 = lean_alloc_closure((void*)(l_Lean_Elab_withSaveInfoContext___at_Lean_Elab_Tactic_SolveByElim_elabConfig___spec__1), 8, 1); lean_closure_set(x_22, 0, x_21); -x_23 = l_Lean_Elab_Tactic_elabConfig___closed__7; -x_24 = l_Lean_Elab_Tactic_elabConfig___closed__8; +x_23 = l_Lean_Elab_Tactic_SolveByElim_elabConfig___closed__7; +x_24 = l_Lean_Elab_Tactic_SolveByElim_elabConfig___closed__8; x_25 = lean_alloc_closure((void*)(l_Lean_Meta_withLCtx___at___private_Lean_Elab_Binders_0__Lean_Elab_Term_FunBinders_elabFunBinderViews___spec__3___rarg), 10, 3); lean_closure_set(x_25, 0, x_23); lean_closure_set(x_25, 1, x_24); @@ -2962,7 +2962,7 @@ lean_inc(x_5); lean_inc(x_4); lean_inc(x_3); lean_inc(x_2); -x_26 = l_Lean_Elab_withoutModifyingStateWithInfoAndMessages___at_Lean_Elab_Tactic_elabConfig___spec__13(x_25, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +x_26 = l_Lean_Elab_withoutModifyingStateWithInfoAndMessages___at_Lean_Elab_Tactic_SolveByElim_elabConfig___spec__13(x_25, x_2, x_3, x_4, x_5, x_6, x_7, x_8); if (lean_obj_tag(x_26) == 0) { lean_object* x_27; lean_object* x_28; lean_object* x_29; @@ -2971,7 +2971,7 @@ lean_inc(x_27); x_28 = lean_ctor_get(x_26, 1); lean_inc(x_28); lean_dec(x_26); -x_29 = l_Lean_Elab_Tactic_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_8_(x_27, x_2, x_3, x_4, x_5, x_6, x_7, x_28); +x_29 = l_Lean_Elab_Tactic_SolveByElim_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_8_(x_27, x_2, x_3, x_4, x_5, x_6, x_7, x_28); lean_dec(x_3); lean_dec(x_2); return x_29; @@ -3014,7 +3014,7 @@ lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); -x_34 = l_Lean_Elab_Tactic_elabConfig___closed__17; +x_34 = l_Lean_Elab_Tactic_SolveByElim_elabConfig___closed__17; x_35 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_35, 0, x_34); lean_ctor_set(x_35, 1, x_8); @@ -3022,7 +3022,7 @@ return x_35; } } } -LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_elabConfig___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, lean_object* x_12) { +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_SolveByElim_elabConfig___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, lean_object* x_12) { _start: { size_t x_13; size_t x_14; lean_object* x_15; @@ -3030,11 +3030,11 @@ x_13 = lean_unbox_usize(x_3); lean_dec(x_3); x_14 = lean_unbox_usize(x_4); lean_dec(x_4); -x_15 = l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_elabConfig___spec__5(x_1, x_2, x_13, x_14, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +x_15 = l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_SolveByElim_elabConfig___spec__5(x_1, x_2, x_13, x_14, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); return x_15; } } -LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_elabConfig___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, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_SolveByElim_elabConfig___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, lean_object* x_10, lean_object* x_11, lean_object* x_12) { _start: { size_t x_13; size_t x_14; lean_object* x_15; @@ -3042,11 +3042,11 @@ x_13 = lean_unbox_usize(x_3); lean_dec(x_3); x_14 = lean_unbox_usize(x_4); lean_dec(x_4); -x_15 = l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_elabConfig___spec__6(x_1, x_2, x_13, x_14, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +x_15 = l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_SolveByElim_elabConfig___spec__6(x_1, x_2, x_13, x_14, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); return x_15; } } -LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_elabConfig___spec__7___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_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_SolveByElim_elabConfig___spec__7___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: { size_t x_13; size_t x_14; lean_object* x_15; @@ -3054,11 +3054,11 @@ x_13 = lean_unbox_usize(x_3); lean_dec(x_3); x_14 = lean_unbox_usize(x_4); lean_dec(x_4); -x_15 = l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_elabConfig___spec__7(x_1, x_2, x_13, x_14, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +x_15 = l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_SolveByElim_elabConfig___spec__7(x_1, x_2, x_13, x_14, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); return x_15; } } -LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_elabConfig___spec__10___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_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_SolveByElim_elabConfig___spec__10___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: { size_t x_13; size_t x_14; lean_object* x_15; @@ -3066,11 +3066,11 @@ x_13 = lean_unbox_usize(x_3); lean_dec(x_3); x_14 = lean_unbox_usize(x_4); lean_dec(x_4); -x_15 = l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_elabConfig___spec__10(x_1, x_2, x_13, x_14, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +x_15 = l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_SolveByElim_elabConfig___spec__10(x_1, x_2, x_13, x_14, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); return x_15; } } -LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_elabConfig___spec__11___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_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_SolveByElim_elabConfig___spec__11___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: { size_t x_13; size_t x_14; lean_object* x_15; @@ -3078,11 +3078,11 @@ x_13 = lean_unbox_usize(x_3); lean_dec(x_3); x_14 = lean_unbox_usize(x_4); lean_dec(x_4); -x_15 = l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_elabConfig___spec__11(x_1, x_2, x_13, x_14, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +x_15 = l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_SolveByElim_elabConfig___spec__11(x_1, x_2, x_13, x_14, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); return x_15; } } -LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_elabConfig___spec__12___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_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_SolveByElim_elabConfig___spec__12___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: { size_t x_13; size_t x_14; lean_object* x_15; @@ -3090,24 +3090,24 @@ x_13 = lean_unbox_usize(x_3); lean_dec(x_3); x_14 = lean_unbox_usize(x_4); lean_dec(x_4); -x_15 = l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_elabConfig___spec__12(x_1, x_2, x_13, x_14, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +x_15 = l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_SolveByElim_elabConfig___spec__12(x_1, x_2, x_13, x_14, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); return x_15; } } -LEAN_EXPORT lean_object* l___private_Lean_Elab_InfoTree_Main_0__Lean_Elab_withSavedPartialInfoContext___at_Lean_Elab_Tactic_elabConfig___spec__2___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) { +LEAN_EXPORT lean_object* l___private_Lean_Elab_InfoTree_Main_0__Lean_Elab_withSavedPartialInfoContext___at_Lean_Elab_Tactic_SolveByElim_elabConfig___spec__2___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___private_Lean_Elab_InfoTree_Main_0__Lean_Elab_withSavedPartialInfoContext___at_Lean_Elab_Tactic_elabConfig___spec__2___lambda__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_11 = l___private_Lean_Elab_InfoTree_Main_0__Lean_Elab_withSavedPartialInfoContext___at_Lean_Elab_Tactic_SolveByElim_elabConfig___spec__2___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_3); return x_11; } } -LEAN_EXPORT lean_object* l_Lean_Elab_withSaveInfoContext___at_Lean_Elab_Tactic_elabConfig___spec__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, lean_object* x_7) { +LEAN_EXPORT lean_object* l_Lean_Elab_withSaveInfoContext___at_Lean_Elab_Tactic_SolveByElim_elabConfig___spec__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, lean_object* x_7) { _start: { lean_object* x_8; -x_8 = l_Lean_Elab_withSaveInfoContext___at_Lean_Elab_Tactic_elabConfig___spec__1___lambda__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +x_8 = l_Lean_Elab_withSaveInfoContext___at_Lean_Elab_Tactic_SolveByElim_elabConfig___spec__1___lambda__1(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); @@ -3117,11 +3117,11 @@ lean_dec(x_1); return x_8; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_elabConfig___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_EXPORT lean_object* l_Lean_Elab_Tactic_SolveByElim_elabConfig___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_Lean_Elab_Tactic_elabConfig___lambda__2(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +x_8 = l_Lean_Elab_Tactic_SolveByElim_elabConfig___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); @@ -3131,11 +3131,11 @@ lean_dec(x_1); return x_8; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_elabConfig___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_EXPORT lean_object* l_Lean_Elab_Tactic_SolveByElim_elabConfig___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) { _start: { lean_object* x_7; -x_7 = l_Lean_Elab_Tactic_elabConfig___lambda__3(x_1, x_2, x_3, x_4, x_5, x_6); +x_7 = l_Lean_Elab_Tactic_SolveByElim_elabConfig___lambda__3(x_1, x_2, x_3, x_4, x_5, x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); @@ -3144,11 +3144,11 @@ lean_dec(x_1); return x_7; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_elabConfig___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_EXPORT lean_object* l_Lean_Elab_Tactic_SolveByElim_elabConfig___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) { _start: { lean_object* x_7; -x_7 = l_Lean_Elab_Tactic_elabConfig___lambda__4(x_1, x_2, x_3, x_4, x_5, x_6); +x_7 = l_Lean_Elab_Tactic_SolveByElim_elabConfig___lambda__4(x_1, x_2, x_3, x_4, x_5, x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); @@ -3157,16 +3157,16 @@ lean_dec(x_1); return x_7; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_elabConfig___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_EXPORT lean_object* l_Lean_Elab_Tactic_SolveByElim_elabConfig___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) { _start: { lean_object* x_9; -x_9 = l_Lean_Elab_Tactic_elabConfig(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +x_9 = l_Lean_Elab_Tactic_SolveByElim_elabConfig(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); lean_dec(x_1); return x_9; } } -static lean_object* _init_l_Lean_Elab_Tactic_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_189____closed__1() { +static lean_object* _init_l_Lean_Elab_Tactic_SolveByElim_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_189____closed__1() { _start: { lean_object* x_1; @@ -3174,66 +3174,66 @@ x_1 = lean_mk_string_from_bytes("ApplyRulesConfig", 16); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_189____closed__2() { +static lean_object* _init_l_Lean_Elab_Tactic_SolveByElim_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_189____closed__2() { _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_Elab_Tactic_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_8____closed__1; -x_2 = l_Lean_Elab_Tactic_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_8____closed__2; -x_3 = l_Lean_Elab_Tactic_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_8____closed__3; -x_4 = l_Lean_Elab_Tactic_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_189____closed__1; +x_1 = l_Lean_Elab_Tactic_SolveByElim_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_8____closed__1; +x_2 = l_Lean_Elab_Tactic_SolveByElim_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_8____closed__2; +x_3 = l_Lean_Elab_Tactic_SolveByElim_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_8____closed__3; +x_4 = l_Lean_Elab_Tactic_SolveByElim_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_189____closed__1; x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); return x_5; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_189_(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_EXPORT lean_object* l_Lean_Elab_Tactic_SolveByElim_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_189_(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) { _start: { lean_object* x_9; uint8_t x_10; lean_object* x_11; -x_9 = l_Lean_Elab_Tactic_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_189____closed__2; +x_9 = l_Lean_Elab_Tactic_SolveByElim_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_189____closed__2; x_10 = 0; x_11 = l_Lean_Meta_evalExpr_x27___rarg(x_9, x_1, x_10, x_4, x_5, x_6, x_7, x_8); return x_11; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_189____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_EXPORT lean_object* l_Lean_Elab_Tactic_SolveByElim_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_189____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) { _start: { lean_object* x_9; -x_9 = l_Lean_Elab_Tactic_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_189_(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +x_9 = l_Lean_Elab_Tactic_SolveByElim_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_189_(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); lean_dec(x_3); lean_dec(x_2); return x_9; } } -static lean_object* _init_l_Lean_Elab_Tactic_elabApplyRulesConfig___closed__1() { +static lean_object* _init_l_Lean_Elab_Tactic_SolveByElim_elabApplyRulesConfig___closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Elab_Tactic_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_189____closed__2; +x_2 = l_Lean_Elab_Tactic_SolveByElim_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_189____closed__2; x_3 = l_Lean_Expr_const___override(x_2, x_1); return x_3; } } -static lean_object* _init_l_Lean_Elab_Tactic_elabApplyRulesConfig___closed__2() { +static lean_object* _init_l_Lean_Elab_Tactic_SolveByElim_elabApplyRulesConfig___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Elab_Tactic_elabApplyRulesConfig___closed__1; +x_1 = l_Lean_Elab_Tactic_SolveByElim_elabApplyRulesConfig___closed__1; x_2 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Elab_Tactic_elabApplyRulesConfig___closed__3() { +static lean_object* _init_l_Lean_Elab_Tactic_SolveByElim_elabApplyRulesConfig___closed__3() { _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_unsigned_to_nat(50u); -x_2 = l_Lean_Elab_Tactic_elabConfig___closed__11; -x_3 = l_Lean_Elab_Tactic_elabConfig___closed__12; -x_4 = l_Lean_Elab_Tactic_elabConfig___closed__13; +x_2 = l_Lean_Elab_Tactic_SolveByElim_elabConfig___closed__11; +x_3 = l_Lean_Elab_Tactic_SolveByElim_elabConfig___closed__12; +x_4 = l_Lean_Elab_Tactic_SolveByElim_elabConfig___closed__13; x_5 = 0; x_6 = lean_alloc_ctor(0, 4, 1); lean_ctor_set(x_6, 0, x_1); @@ -3244,12 +3244,12 @@ lean_ctor_set_uint8(x_6, sizeof(void*)*4, x_5); return x_6; } } -static lean_object* _init_l_Lean_Elab_Tactic_elabApplyRulesConfig___closed__4() { +static lean_object* _init_l_Lean_Elab_Tactic_SolveByElim_elabApplyRulesConfig___closed__4() { _start: { lean_object* x_1; lean_object* x_2; uint8_t x_3; uint8_t x_4; lean_object* x_5; -x_1 = l_Lean_Elab_Tactic_elabApplyRulesConfig___closed__3; -x_2 = l_Lean_Elab_Tactic_elabConfig___closed__15; +x_1 = l_Lean_Elab_Tactic_SolveByElim_elabApplyRulesConfig___closed__3; +x_2 = l_Lean_Elab_Tactic_SolveByElim_elabConfig___closed__15; x_3 = 1; x_4 = 1; x_5 = lean_alloc_ctor(0, 2, 3); @@ -3261,7 +3261,7 @@ lean_ctor_set_uint8(x_5, sizeof(void*)*2 + 2, x_4); return x_5; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_elabApplyRulesConfig(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_EXPORT lean_object* l_Lean_Elab_Tactic_SolveByElim_elabApplyRulesConfig(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) { _start: { uint8_t x_9; @@ -3275,8 +3275,8 @@ x_12 = lean_unsigned_to_nat(3u); x_13 = l_Lean_Syntax_getArg(x_11, x_12); lean_dec(x_11); x_14 = lean_box(0); -x_15 = l_Lean_Elab_Tactic_elabApplyRulesConfig___closed__2; -x_16 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_elabConfig___lambda__1), 10, 3); +x_15 = l_Lean_Elab_Tactic_SolveByElim_elabApplyRulesConfig___closed__2; +x_16 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_SolveByElim_elabConfig___lambda__1), 10, 3); lean_closure_set(x_16, 0, x_13); lean_closure_set(x_16, 1, x_15); lean_closure_set(x_16, 2, x_14); @@ -3288,10 +3288,10 @@ x_21 = lean_alloc_closure((void*)(l___private_Lean_Elab_SyntheticMVars_0__Lean_E lean_closure_set(x_21, 0, x_16); lean_closure_set(x_21, 1, x_19); lean_closure_set(x_21, 2, x_20); -x_22 = lean_alloc_closure((void*)(l_Lean_Elab_withSaveInfoContext___at_Lean_Elab_Tactic_elabConfig___spec__1), 8, 1); +x_22 = lean_alloc_closure((void*)(l_Lean_Elab_withSaveInfoContext___at_Lean_Elab_Tactic_SolveByElim_elabConfig___spec__1), 8, 1); lean_closure_set(x_22, 0, x_21); -x_23 = l_Lean_Elab_Tactic_elabConfig___closed__7; -x_24 = l_Lean_Elab_Tactic_elabConfig___closed__8; +x_23 = l_Lean_Elab_Tactic_SolveByElim_elabConfig___closed__7; +x_24 = l_Lean_Elab_Tactic_SolveByElim_elabConfig___closed__8; x_25 = lean_alloc_closure((void*)(l_Lean_Meta_withLCtx___at___private_Lean_Elab_Binders_0__Lean_Elab_Term_FunBinders_elabFunBinderViews___spec__3___rarg), 10, 3); lean_closure_set(x_25, 0, x_23); lean_closure_set(x_25, 1, x_24); @@ -3302,7 +3302,7 @@ lean_inc(x_5); lean_inc(x_4); lean_inc(x_3); lean_inc(x_2); -x_26 = l_Lean_Elab_withoutModifyingStateWithInfoAndMessages___at_Lean_Elab_Tactic_elabConfig___spec__13(x_25, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +x_26 = l_Lean_Elab_withoutModifyingStateWithInfoAndMessages___at_Lean_Elab_Tactic_SolveByElim_elabConfig___spec__13(x_25, x_2, x_3, x_4, x_5, x_6, x_7, x_8); if (lean_obj_tag(x_26) == 0) { lean_object* x_27; lean_object* x_28; lean_object* x_29; @@ -3311,7 +3311,7 @@ lean_inc(x_27); x_28 = lean_ctor_get(x_26, 1); lean_inc(x_28); lean_dec(x_26); -x_29 = l_Lean_Elab_Tactic_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_189_(x_27, x_2, x_3, x_4, x_5, x_6, x_7, x_28); +x_29 = l_Lean_Elab_Tactic_SolveByElim_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_189_(x_27, x_2, x_3, x_4, x_5, x_6, x_7, x_28); lean_dec(x_3); lean_dec(x_2); return x_29; @@ -3354,7 +3354,7 @@ lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); -x_34 = l_Lean_Elab_Tactic_elabApplyRulesConfig___closed__4; +x_34 = l_Lean_Elab_Tactic_SolveByElim_elabApplyRulesConfig___closed__4; x_35 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_35, 0, x_34); lean_ctor_set(x_35, 1, x_8); @@ -3362,16 +3362,16 @@ return x_35; } } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_elabApplyRulesConfig___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_EXPORT lean_object* l_Lean_Elab_Tactic_SolveByElim_elabApplyRulesConfig___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) { _start: { lean_object* x_9; -x_9 = l_Lean_Elab_Tactic_elabApplyRulesConfig(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +x_9 = l_Lean_Elab_Tactic_SolveByElim_elabApplyRulesConfig(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); lean_dec(x_1); return x_9; } } -LEAN_EXPORT lean_object* l_panic___at_Lean_Elab_Tactic_parseArgs___spec__1(lean_object* x_1) { +LEAN_EXPORT lean_object* l_panic___at_Lean_Elab_Tactic_SolveByElim_parseArgs___spec__1(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; @@ -3380,7 +3380,7 @@ x_3 = lean_panic_fn(x_2, x_1); return x_3; } } -static lean_object* _init_l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_parseArgs___spec__2___closed__1() { +static lean_object* _init_l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_SolveByElim_parseArgs___spec__2___closed__1() { _start: { lean_object* x_1; @@ -3388,7 +3388,7 @@ x_1 = lean_mk_string_from_bytes("Parser", 6); return x_1; } } -static lean_object* _init_l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_parseArgs___spec__2___closed__2() { +static lean_object* _init_l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_SolveByElim_parseArgs___spec__2___closed__2() { _start: { lean_object* x_1; @@ -3396,7 +3396,7 @@ x_1 = lean_mk_string_from_bytes("Tactic", 6); return x_1; } } -static lean_object* _init_l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_parseArgs___spec__2___closed__3() { +static lean_object* _init_l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_SolveByElim_parseArgs___spec__2___closed__3() { _start: { lean_object* x_1; @@ -3404,20 +3404,20 @@ x_1 = lean_mk_string_from_bytes("arg", 3); return x_1; } } -static lean_object* _init_l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_parseArgs___spec__2___closed__4() { +static lean_object* _init_l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_SolveByElim_parseArgs___spec__2___closed__4() { _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_Elab_Tactic_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_8____closed__1; -x_2 = l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_parseArgs___spec__2___closed__1; -x_3 = l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_parseArgs___spec__2___closed__2; -x_4 = l_Lean_Elab_Tactic_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_8____closed__3; -x_5 = l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_parseArgs___spec__2___closed__3; +x_1 = l_Lean_Elab_Tactic_SolveByElim_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_8____closed__1; +x_2 = l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_SolveByElim_parseArgs___spec__2___closed__1; +x_3 = l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_SolveByElim_parseArgs___spec__2___closed__2; +x_4 = l_Lean_Elab_Tactic_SolveByElim_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_8____closed__3; +x_5 = l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_SolveByElim_parseArgs___spec__2___closed__3; x_6 = l_Lean_Name_mkStr5(x_1, x_2, x_3, x_4, x_5); return x_6; } } -static lean_object* _init_l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_parseArgs___spec__2___closed__5() { +static lean_object* _init_l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_SolveByElim_parseArgs___spec__2___closed__5() { _start: { lean_object* x_1; @@ -3425,15 +3425,15 @@ x_1 = lean_mk_string_from_bytes("Lean.Elab.Tactic.SolveByElim", 28); return x_1; } } -static lean_object* _init_l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_parseArgs___spec__2___closed__6() { +static lean_object* _init_l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_SolveByElim_parseArgs___spec__2___closed__6() { _start: { lean_object* x_1; -x_1 = lean_mk_string_from_bytes("Lean.Elab.Tactic.parseArgs", 26); +x_1 = lean_mk_string_from_bytes("Lean.Elab.Tactic.SolveByElim.parseArgs", 38); return x_1; } } -static lean_object* _init_l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_parseArgs___spec__2___closed__7() { +static lean_object* _init_l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_SolveByElim_parseArgs___spec__2___closed__7() { _start: { lean_object* x_1; @@ -3441,20 +3441,20 @@ x_1 = lean_mk_string_from_bytes("Unreachable parse of solve_by_elim arguments.", return x_1; } } -static lean_object* _init_l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_parseArgs___spec__2___closed__8() { +static lean_object* _init_l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_SolveByElim_parseArgs___spec__2___closed__8() { _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_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_parseArgs___spec__2___closed__5; -x_2 = l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_parseArgs___spec__2___closed__6; +x_1 = l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_SolveByElim_parseArgs___spec__2___closed__5; +x_2 = l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_SolveByElim_parseArgs___spec__2___closed__6; x_3 = lean_unsigned_to_nat(45u); x_4 = lean_unsigned_to_nat(11u); -x_5 = l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_parseArgs___spec__2___closed__7; +x_5 = l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_SolveByElim_parseArgs___spec__2___closed__7; x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); return x_6; } } -static lean_object* _init_l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_parseArgs___spec__2___closed__9() { +static lean_object* _init_l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_SolveByElim_parseArgs___spec__2___closed__9() { _start: { lean_object* x_1; @@ -3462,20 +3462,20 @@ x_1 = lean_mk_string_from_bytes("star", 4); return x_1; } } -static lean_object* _init_l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_parseArgs___spec__2___closed__10() { +static lean_object* _init_l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_SolveByElim_parseArgs___spec__2___closed__10() { _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_Elab_Tactic_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_8____closed__1; -x_2 = l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_parseArgs___spec__2___closed__1; -x_3 = l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_parseArgs___spec__2___closed__2; -x_4 = l_Lean_Elab_Tactic_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_8____closed__3; -x_5 = l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_parseArgs___spec__2___closed__9; +x_1 = l_Lean_Elab_Tactic_SolveByElim_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_8____closed__1; +x_2 = l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_SolveByElim_parseArgs___spec__2___closed__1; +x_3 = l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_SolveByElim_parseArgs___spec__2___closed__2; +x_4 = l_Lean_Elab_Tactic_SolveByElim_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_8____closed__3; +x_5 = l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_SolveByElim_parseArgs___spec__2___closed__9; x_6 = l_Lean_Name_mkStr5(x_1, x_2, x_3, x_4, x_5); return x_6; } } -static lean_object* _init_l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_parseArgs___spec__2___closed__11() { +static lean_object* _init_l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_SolveByElim_parseArgs___spec__2___closed__11() { _start: { lean_object* x_1; @@ -3483,20 +3483,20 @@ x_1 = lean_mk_string_from_bytes("erase", 5); return x_1; } } -static lean_object* _init_l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_parseArgs___spec__2___closed__12() { +static lean_object* _init_l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_SolveByElim_parseArgs___spec__2___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 = l_Lean_Elab_Tactic_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_8____closed__1; -x_2 = l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_parseArgs___spec__2___closed__1; -x_3 = l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_parseArgs___spec__2___closed__2; -x_4 = l_Lean_Elab_Tactic_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_8____closed__3; -x_5 = l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_parseArgs___spec__2___closed__11; +x_1 = l_Lean_Elab_Tactic_SolveByElim_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_8____closed__1; +x_2 = l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_SolveByElim_parseArgs___spec__2___closed__1; +x_3 = l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_SolveByElim_parseArgs___spec__2___closed__2; +x_4 = l_Lean_Elab_Tactic_SolveByElim_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_8____closed__3; +x_5 = l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_SolveByElim_parseArgs___spec__2___closed__11; x_6 = l_Lean_Name_mkStr5(x_1, x_2, x_3, x_4, x_5); return x_6; } } -LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_parseArgs___spec__2(size_t x_1, size_t x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_SolveByElim_parseArgs___spec__2(size_t x_1, size_t x_2, lean_object* x_3) { _start: { uint8_t x_4; @@ -3511,7 +3511,7 @@ lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; uint8_t x_5 = lean_array_uget(x_3, x_2); x_6 = lean_unsigned_to_nat(0u); x_7 = lean_array_uset(x_3, x_2, x_6); -x_8 = l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_parseArgs___spec__2___closed__4; +x_8 = l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_SolveByElim_parseArgs___spec__2___closed__4; lean_inc(x_5); x_9 = l_Lean_Syntax_isOfKind(x_5, x_8); x_10 = 1; @@ -3520,8 +3520,8 @@ if (x_9 == 0) { lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_dec(x_5); -x_12 = l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_parseArgs___spec__2___closed__8; -x_13 = l_panic___at_Lean_Elab_Tactic_parseArgs___spec__1(x_12); +x_12 = l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_SolveByElim_parseArgs___spec__2___closed__8; +x_13 = l_panic___at_Lean_Elab_Tactic_SolveByElim_parseArgs___spec__1(x_12); x_14 = lean_array_uset(x_7, x_2, x_13); x_2 = x_11; x_3 = x_14; @@ -3532,13 +3532,13 @@ else lean_object* x_16; lean_object* x_17; uint8_t x_18; x_16 = l_Lean_Syntax_getArg(x_5, x_6); lean_dec(x_5); -x_17 = l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_parseArgs___spec__2___closed__10; +x_17 = l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_SolveByElim_parseArgs___spec__2___closed__10; lean_inc(x_16); x_18 = l_Lean_Syntax_isOfKind(x_16, x_17); if (x_18 == 0) { lean_object* x_19; uint8_t x_20; -x_19 = l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_parseArgs___spec__2___closed__12; +x_19 = l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_SolveByElim_parseArgs___spec__2___closed__12; lean_inc(x_16); x_20 = l_Lean_Syntax_isOfKind(x_16, x_19); if (x_20 == 0) @@ -3583,7 +3583,7 @@ goto _start; } } } -LEAN_EXPORT uint8_t l___private_Init_Data_Sum_0__Sum_beqSum____x40_Init_Data_Sum___hyg_241____at_Lean_Elab_Tactic_parseArgs___spec__5(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT uint8_t l___private_Init_Data_Sum_0__Sum_beqSum____x40_Init_Data_Sum___hyg_241____at_Lean_Elab_Tactic_SolveByElim_parseArgs___spec__5(lean_object* x_1, lean_object* x_2) { _start: { if (lean_obj_tag(x_1) == 0) @@ -3634,7 +3634,7 @@ return x_10; } } } -LEAN_EXPORT uint8_t l___private_Init_Data_Option_Basic_0__Option_beqOption____x40_Init_Data_Option_Basic___hyg_158____at_Lean_Elab_Tactic_parseArgs___spec__4(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT uint8_t l___private_Init_Data_Option_Basic_0__Option_beqOption____x40_Init_Data_Option_Basic___hyg_158____at_Lean_Elab_Tactic_SolveByElim_parseArgs___spec__4(lean_object* x_1, lean_object* x_2) { _start: { if (lean_obj_tag(x_1) == 0) @@ -3671,13 +3671,13 @@ lean_dec(x_1); x_7 = lean_ctor_get(x_2, 0); lean_inc(x_7); lean_dec(x_2); -x_8 = l___private_Init_Data_Sum_0__Sum_beqSum____x40_Init_Data_Sum___hyg_241____at_Lean_Elab_Tactic_parseArgs___spec__5(x_6, x_7); +x_8 = l___private_Init_Data_Sum_0__Sum_beqSum____x40_Init_Data_Sum___hyg_241____at_Lean_Elab_Tactic_SolveByElim_parseArgs___spec__5(x_6, x_7); return x_8; } } } } -LEAN_EXPORT uint8_t l_List_elem___at_Lean_Elab_Tactic_parseArgs___spec__3(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT uint8_t l_List_elem___at_Lean_Elab_Tactic_SolveByElim_parseArgs___spec__3(lean_object* x_1, lean_object* x_2) { _start: { if (lean_obj_tag(x_2) == 0) @@ -3696,7 +3696,7 @@ x_5 = lean_ctor_get(x_2, 1); lean_inc(x_5); lean_dec(x_2); lean_inc(x_1); -x_6 = l___private_Init_Data_Option_Basic_0__Option_beqOption____x40_Init_Data_Option_Basic___hyg_158____at_Lean_Elab_Tactic_parseArgs___spec__4(x_1, x_4); +x_6 = l___private_Init_Data_Option_Basic_0__Option_beqOption____x40_Init_Data_Option_Basic___hyg_158____at_Lean_Elab_Tactic_SolveByElim_parseArgs___spec__4(x_1, x_4); if (x_6 == 0) { x_2 = x_5; @@ -3713,7 +3713,7 @@ return x_8; } } } -LEAN_EXPORT lean_object* l_List_filterMap___at_Lean_Elab_Tactic_parseArgs___spec__6(lean_object* x_1) { +LEAN_EXPORT lean_object* l_List_filterMap___at_Lean_Elab_Tactic_SolveByElim_parseArgs___spec__6(lean_object* x_1) { _start: { if (lean_obj_tag(x_1) == 0) @@ -3763,7 +3763,7 @@ lean_object* x_12; lean_object* x_13; x_12 = lean_ctor_get(x_10, 0); lean_inc(x_12); lean_dec(x_10); -x_13 = l_List_filterMap___at_Lean_Elab_Tactic_parseArgs___spec__6(x_7); +x_13 = l_List_filterMap___at_Lean_Elab_Tactic_SolveByElim_parseArgs___spec__6(x_7); lean_ctor_set(x_1, 1, x_13); lean_ctor_set(x_1, 0, x_12); return x_1; @@ -3791,7 +3791,7 @@ lean_object* x_18; lean_object* x_19; lean_object* x_20; x_18 = lean_ctor_get(x_16, 0); lean_inc(x_18); lean_dec(x_16); -x_19 = l_List_filterMap___at_Lean_Elab_Tactic_parseArgs___spec__6(x_14); +x_19 = l_List_filterMap___at_Lean_Elab_Tactic_SolveByElim_parseArgs___spec__6(x_14); x_20 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_20, 0, x_18); lean_ctor_set(x_20, 1, x_19); @@ -3802,7 +3802,7 @@ return x_20; } } } -LEAN_EXPORT lean_object* l_List_filterMap___at_Lean_Elab_Tactic_parseArgs___spec__7(lean_object* x_1) { +LEAN_EXPORT lean_object* l_List_filterMap___at_Lean_Elab_Tactic_SolveByElim_parseArgs___spec__7(lean_object* x_1) { _start: { if (lean_obj_tag(x_1) == 0) @@ -3852,7 +3852,7 @@ lean_object* x_12; lean_object* x_13; x_12 = lean_ctor_get(x_10, 0); lean_inc(x_12); lean_dec(x_10); -x_13 = l_List_filterMap___at_Lean_Elab_Tactic_parseArgs___spec__7(x_7); +x_13 = l_List_filterMap___at_Lean_Elab_Tactic_SolveByElim_parseArgs___spec__7(x_7); lean_ctor_set(x_1, 1, x_13); lean_ctor_set(x_1, 0, x_12); return x_1; @@ -3880,7 +3880,7 @@ lean_object* x_18; lean_object* x_19; lean_object* x_20; x_18 = lean_ctor_get(x_16, 0); lean_inc(x_18); lean_dec(x_16); -x_19 = l_List_filterMap___at_Lean_Elab_Tactic_parseArgs___spec__7(x_14); +x_19 = l_List_filterMap___at_Lean_Elab_Tactic_SolveByElim_parseArgs___spec__7(x_14); x_20 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_20, 0, x_18); lean_ctor_set(x_20, 1, x_19); @@ -3891,25 +3891,25 @@ return x_20; } } } -static lean_object* _init_l_Lean_Elab_Tactic_parseArgs___closed__1() { +static lean_object* _init_l_Lean_Elab_Tactic_SolveByElim_parseArgs___closed__1() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Elab_Tactic_elabConfig___closed__8; +x_1 = l_Lean_Elab_Tactic_SolveByElim_elabConfig___closed__8; x_2 = lean_array_get_size(x_1); return x_2; } } -static size_t _init_l_Lean_Elab_Tactic_parseArgs___closed__2() { +static size_t _init_l_Lean_Elab_Tactic_SolveByElim_parseArgs___closed__2() { _start: { lean_object* x_1; size_t x_2; -x_1 = l_Lean_Elab_Tactic_parseArgs___closed__1; +x_1 = l_Lean_Elab_Tactic_SolveByElim_parseArgs___closed__1; x_2 = lean_usize_of_nat(x_1); return x_2; } } -static lean_object* _init_l_Lean_Elab_Tactic_parseArgs___closed__3() { +static lean_object* _init_l_Lean_Elab_Tactic_SolveByElim_parseArgs___closed__3() { _start: { lean_object* x_1; @@ -3917,20 +3917,20 @@ x_1 = lean_mk_string_from_bytes("args", 4); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_parseArgs___closed__4() { +static lean_object* _init_l_Lean_Elab_Tactic_SolveByElim_parseArgs___closed__4() { _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_Elab_Tactic_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_8____closed__1; -x_2 = l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_parseArgs___spec__2___closed__1; -x_3 = l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_parseArgs___spec__2___closed__2; -x_4 = l_Lean_Elab_Tactic_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_8____closed__3; -x_5 = l_Lean_Elab_Tactic_parseArgs___closed__3; +x_1 = l_Lean_Elab_Tactic_SolveByElim_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_8____closed__1; +x_2 = l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_SolveByElim_parseArgs___spec__2___closed__1; +x_3 = l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_SolveByElim_parseArgs___spec__2___closed__2; +x_4 = l_Lean_Elab_Tactic_SolveByElim_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_8____closed__3; +x_5 = l_Lean_Elab_Tactic_SolveByElim_parseArgs___closed__3; x_6 = l_Lean_Name_mkStr5(x_1, x_2, x_3, x_4, x_5); return x_6; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_parseArgs(lean_object* x_1) { +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_SolveByElim_parseArgs(lean_object* x_1) { _start: { size_t x_2; lean_object* x_3; @@ -3939,15 +3939,15 @@ x_3 = lean_box(0); if (lean_obj_tag(x_1) == 0) { size_t x_4; lean_object* x_5; 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_object* x_12; lean_object* x_13; -x_4 = l_Lean_Elab_Tactic_parseArgs___closed__2; -x_5 = l_Lean_Elab_Tactic_elabConfig___closed__8; -x_6 = l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_parseArgs___spec__2(x_4, x_2, x_5); +x_4 = l_Lean_Elab_Tactic_SolveByElim_parseArgs___closed__2; +x_5 = l_Lean_Elab_Tactic_SolveByElim_elabConfig___closed__8; +x_6 = l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_SolveByElim_parseArgs___spec__2(x_4, x_2, x_5); x_7 = lean_array_to_list(lean_box(0), x_6); lean_inc(x_7); -x_8 = l_List_elem___at_Lean_Elab_Tactic_parseArgs___spec__3(x_3, x_7); +x_8 = l_List_elem___at_Lean_Elab_Tactic_SolveByElim_parseArgs___spec__3(x_3, x_7); lean_inc(x_7); -x_9 = l_List_filterMap___at_Lean_Elab_Tactic_parseArgs___spec__6(x_7); -x_10 = l_List_filterMap___at_Lean_Elab_Tactic_parseArgs___spec__7(x_7); +x_9 = l_List_filterMap___at_Lean_Elab_Tactic_SolveByElim_parseArgs___spec__6(x_7); +x_10 = l_List_filterMap___at_Lean_Elab_Tactic_SolveByElim_parseArgs___spec__7(x_7); x_11 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_11, 0, x_9); lean_ctor_set(x_11, 1, x_10); @@ -3963,22 +3963,22 @@ lean_object* x_14; lean_object* x_15; uint8_t x_16; x_14 = lean_ctor_get(x_1, 0); lean_inc(x_14); lean_dec(x_1); -x_15 = l_Lean_Elab_Tactic_parseArgs___closed__4; +x_15 = l_Lean_Elab_Tactic_SolveByElim_parseArgs___closed__4; lean_inc(x_14); x_16 = l_Lean_Syntax_isOfKind(x_14, x_15); if (x_16 == 0) { size_t x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; uint8_t 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_14); -x_17 = l_Lean_Elab_Tactic_parseArgs___closed__2; -x_18 = l_Lean_Elab_Tactic_elabConfig___closed__8; -x_19 = l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_parseArgs___spec__2(x_17, x_2, x_18); +x_17 = l_Lean_Elab_Tactic_SolveByElim_parseArgs___closed__2; +x_18 = l_Lean_Elab_Tactic_SolveByElim_elabConfig___closed__8; +x_19 = l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_SolveByElim_parseArgs___spec__2(x_17, x_2, x_18); x_20 = lean_array_to_list(lean_box(0), x_19); lean_inc(x_20); -x_21 = l_List_elem___at_Lean_Elab_Tactic_parseArgs___spec__3(x_3, x_20); +x_21 = l_List_elem___at_Lean_Elab_Tactic_SolveByElim_parseArgs___spec__3(x_3, x_20); lean_inc(x_20); -x_22 = l_List_filterMap___at_Lean_Elab_Tactic_parseArgs___spec__6(x_20); -x_23 = l_List_filterMap___at_Lean_Elab_Tactic_parseArgs___spec__7(x_20); +x_22 = l_List_filterMap___at_Lean_Elab_Tactic_SolveByElim_parseArgs___spec__6(x_20); +x_23 = l_List_filterMap___at_Lean_Elab_Tactic_SolveByElim_parseArgs___spec__7(x_20); x_24 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_24, 0, x_22); lean_ctor_set(x_24, 1, x_23); @@ -4001,13 +4001,13 @@ lean_dec(x_29); x_31 = lean_array_get_size(x_30); x_32 = lean_usize_of_nat(x_31); lean_dec(x_31); -x_33 = l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_parseArgs___spec__2(x_32, x_2, x_30); +x_33 = l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_SolveByElim_parseArgs___spec__2(x_32, x_2, x_30); x_34 = lean_array_to_list(lean_box(0), x_33); lean_inc(x_34); -x_35 = l_List_elem___at_Lean_Elab_Tactic_parseArgs___spec__3(x_3, x_34); +x_35 = l_List_elem___at_Lean_Elab_Tactic_SolveByElim_parseArgs___spec__3(x_3, x_34); lean_inc(x_34); -x_36 = l_List_filterMap___at_Lean_Elab_Tactic_parseArgs___spec__6(x_34); -x_37 = l_List_filterMap___at_Lean_Elab_Tactic_parseArgs___spec__7(x_34); +x_36 = l_List_filterMap___at_Lean_Elab_Tactic_SolveByElim_parseArgs___spec__6(x_34); +x_37 = l_List_filterMap___at_Lean_Elab_Tactic_SolveByElim_parseArgs___spec__7(x_34); x_38 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_38, 0, x_36); lean_ctor_set(x_38, 1, x_37); @@ -4020,7 +4020,7 @@ return x_40; } } } -LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_parseArgs___spec__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_SolveByElim_parseArgs___spec__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { size_t x_4; size_t x_5; lean_object* x_6; @@ -4028,38 +4028,38 @@ x_4 = lean_unbox_usize(x_1); lean_dec(x_1); x_5 = lean_unbox_usize(x_2); lean_dec(x_2); -x_6 = l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_parseArgs___spec__2(x_4, x_5, x_3); +x_6 = l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_SolveByElim_parseArgs___spec__2(x_4, x_5, x_3); return x_6; } } -LEAN_EXPORT lean_object* l___private_Init_Data_Sum_0__Sum_beqSum____x40_Init_Data_Sum___hyg_241____at_Lean_Elab_Tactic_parseArgs___spec__5___boxed(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l___private_Init_Data_Sum_0__Sum_beqSum____x40_Init_Data_Sum___hyg_241____at_Lean_Elab_Tactic_SolveByElim_parseArgs___spec__5___boxed(lean_object* x_1, lean_object* x_2) { _start: { uint8_t x_3; lean_object* x_4; -x_3 = l___private_Init_Data_Sum_0__Sum_beqSum____x40_Init_Data_Sum___hyg_241____at_Lean_Elab_Tactic_parseArgs___spec__5(x_1, x_2); +x_3 = l___private_Init_Data_Sum_0__Sum_beqSum____x40_Init_Data_Sum___hyg_241____at_Lean_Elab_Tactic_SolveByElim_parseArgs___spec__5(x_1, x_2); x_4 = lean_box(x_3); return x_4; } } -LEAN_EXPORT lean_object* l___private_Init_Data_Option_Basic_0__Option_beqOption____x40_Init_Data_Option_Basic___hyg_158____at_Lean_Elab_Tactic_parseArgs___spec__4___boxed(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l___private_Init_Data_Option_Basic_0__Option_beqOption____x40_Init_Data_Option_Basic___hyg_158____at_Lean_Elab_Tactic_SolveByElim_parseArgs___spec__4___boxed(lean_object* x_1, lean_object* x_2) { _start: { uint8_t x_3; lean_object* x_4; -x_3 = l___private_Init_Data_Option_Basic_0__Option_beqOption____x40_Init_Data_Option_Basic___hyg_158____at_Lean_Elab_Tactic_parseArgs___spec__4(x_1, x_2); +x_3 = l___private_Init_Data_Option_Basic_0__Option_beqOption____x40_Init_Data_Option_Basic___hyg_158____at_Lean_Elab_Tactic_SolveByElim_parseArgs___spec__4(x_1, x_2); x_4 = lean_box(x_3); return x_4; } } -LEAN_EXPORT lean_object* l_List_elem___at_Lean_Elab_Tactic_parseArgs___spec__3___boxed(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l_List_elem___at_Lean_Elab_Tactic_SolveByElim_parseArgs___spec__3___boxed(lean_object* x_1, lean_object* x_2) { _start: { uint8_t x_3; lean_object* x_4; -x_3 = l_List_elem___at_Lean_Elab_Tactic_parseArgs___spec__3(x_1, x_2); +x_3 = l_List_elem___at_Lean_Elab_Tactic_SolveByElim_parseArgs___spec__3(x_1, x_2); x_4 = lean_box(x_3); return x_4; } } -static lean_object* _init_l_Lean_Elab_Tactic_parseUsing___closed__1() { +static lean_object* _init_l_Lean_Elab_Tactic_SolveByElim_parseUsing___closed__1() { _start: { lean_object* x_1; @@ -4067,26 +4067,26 @@ x_1 = lean_mk_string_from_bytes("using_", 6); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_parseUsing___closed__2() { +static lean_object* _init_l_Lean_Elab_Tactic_SolveByElim_parseUsing___closed__2() { _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_Elab_Tactic_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_8____closed__1; -x_2 = l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_parseArgs___spec__2___closed__1; -x_3 = l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_parseArgs___spec__2___closed__2; -x_4 = l_Lean_Elab_Tactic_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_8____closed__3; -x_5 = l_Lean_Elab_Tactic_parseUsing___closed__1; +x_1 = l_Lean_Elab_Tactic_SolveByElim_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_8____closed__1; +x_2 = l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_SolveByElim_parseArgs___spec__2___closed__1; +x_3 = l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_SolveByElim_parseArgs___spec__2___closed__2; +x_4 = l_Lean_Elab_Tactic_SolveByElim_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_8____closed__3; +x_5 = l_Lean_Elab_Tactic_SolveByElim_parseUsing___closed__1; x_6 = l_Lean_Name_mkStr5(x_1, x_2, x_3, x_4, x_5); return x_6; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_parseUsing(lean_object* x_1) { +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_SolveByElim_parseUsing(lean_object* x_1) { _start: { if (lean_obj_tag(x_1) == 0) { lean_object* x_2; -x_2 = l_Lean_Elab_Tactic_elabConfig___closed__8; +x_2 = l_Lean_Elab_Tactic_SolveByElim_elabConfig___closed__8; return x_2; } else @@ -4095,14 +4095,14 @@ lean_object* x_3; lean_object* x_4; uint8_t x_5; x_3 = lean_ctor_get(x_1, 0); lean_inc(x_3); lean_dec(x_1); -x_4 = l_Lean_Elab_Tactic_parseUsing___closed__2; +x_4 = l_Lean_Elab_Tactic_SolveByElim_parseUsing___closed__2; lean_inc(x_3); x_5 = l_Lean_Syntax_isOfKind(x_3, x_4); if (x_5 == 0) { lean_object* x_6; lean_dec(x_3); -x_6 = l_Lean_Elab_Tactic_elabConfig___closed__8; +x_6 = l_Lean_Elab_Tactic_SolveByElim_elabConfig___closed__8; return x_6; } else @@ -4120,7 +4120,7 @@ return x_10; } } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_processSyntax___lambda__1(uint8_t 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) { +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_SolveByElim_processSyntax___lambda__1(uint8_t 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) { _start: { lean_object* x_14; @@ -4175,7 +4175,7 @@ return x_23; } } } -static lean_object* _init_l_Lean_Elab_Tactic_processSyntax___closed__1() { +static lean_object* _init_l_Lean_Elab_Tactic_SolveByElim_processSyntax___closed__1() { _start: { lean_object* x_1; @@ -4183,16 +4183,16 @@ x_1 = lean_mk_string_from_bytes("Removing local hypotheses is not supported when return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_processSyntax___closed__2() { +static lean_object* _init_l_Lean_Elab_Tactic_SolveByElim_processSyntax___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Elab_Tactic_processSyntax___closed__1; +x_1 = l_Lean_Elab_Tactic_SolveByElim_processSyntax___closed__1; x_2 = l_Lean_stringToMessageData(x_1); return x_2; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_processSyntax(lean_object* x_1, uint8_t 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_EXPORT lean_object* l_Lean_Elab_Tactic_SolveByElim_processSyntax(lean_object* x_1, uint8_t 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) { _start: { uint8_t x_13; @@ -4209,7 +4209,7 @@ if (x_17 == 0) { lean_object* x_18; lean_object* x_19; x_18 = lean_box(0); -x_19 = l_Lean_Elab_Tactic_processSyntax___lambda__1(x_2, x_3, x_4, x_5, x_6, x_1, x_7, x_18, x_8, x_9, x_10, x_11, x_12); +x_19 = l_Lean_Elab_Tactic_SolveByElim_processSyntax___lambda__1(x_2, x_3, x_4, x_5, x_6, x_1, x_7, x_18, x_8, x_9, x_10, x_11, x_12); return x_19; } else @@ -4220,7 +4220,7 @@ lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_1); -x_20 = l_Lean_Elab_Tactic_processSyntax___closed__2; +x_20 = l_Lean_Elab_Tactic_SolveByElim_processSyntax___closed__2; x_21 = l_Lean_throwError___at_Lean_Meta_mkSimpCongrTheorem___spec__4(x_20, x_8, x_9, x_10, x_11, x_12); lean_dec(x_11); lean_dec(x_10); @@ -4250,12 +4250,12 @@ else { lean_object* x_26; lean_object* x_27; x_26 = lean_box(0); -x_27 = l_Lean_Elab_Tactic_processSyntax___lambda__1(x_2, x_3, x_4, x_5, x_6, x_1, x_7, x_26, x_8, x_9, x_10, x_11, x_12); +x_27 = l_Lean_Elab_Tactic_SolveByElim_processSyntax___lambda__1(x_2, x_3, x_4, x_5, x_6, x_1, x_7, x_26, x_8, x_9, x_10, x_11, x_12); return x_27; } } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_processSyntax___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, lean_object* x_11, lean_object* x_12, lean_object* x_13) { +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_SolveByElim_processSyntax___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, lean_object* x_11, lean_object* x_12, lean_object* x_13) { _start: { uint8_t x_14; uint8_t x_15; lean_object* x_16; @@ -4263,12 +4263,12 @@ x_14 = lean_unbox(x_1); lean_dec(x_1); x_15 = lean_unbox(x_2); lean_dec(x_2); -x_16 = l_Lean_Elab_Tactic_processSyntax___lambda__1(x_14, x_15, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); +x_16 = l_Lean_Elab_Tactic_SolveByElim_processSyntax___lambda__1(x_14, x_15, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); lean_dec(x_8); return x_16; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_processSyntax___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_EXPORT lean_object* l_Lean_Elab_Tactic_SolveByElim_processSyntax___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: { uint8_t x_13; uint8_t x_14; lean_object* x_15; @@ -4276,11 +4276,11 @@ x_13 = lean_unbox(x_2); lean_dec(x_2); x_14 = lean_unbox(x_3); lean_dec(x_3); -x_15 = l_Lean_Elab_Tactic_processSyntax(x_1, x_13, x_14, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +x_15 = l_Lean_Elab_Tactic_SolveByElim_processSyntax(x_1, x_13, x_14, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); return x_15; } } -static lean_object* _init_l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_evalApplyAssumption___spec__1___rarg___closed__1() { +static lean_object* _init_l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_SolveByElim_evalApplyAssumption___spec__1___rarg___closed__1() { _start: { lean_object* x_1; @@ -4288,42 +4288,42 @@ x_1 = l_Lean_Elab_unsupportedSyntaxExceptionId; return x_1; } } -static lean_object* _init_l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_evalApplyAssumption___spec__1___rarg___closed__2() { +static lean_object* _init_l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_SolveByElim_evalApplyAssumption___spec__1___rarg___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_evalApplyAssumption___spec__1___rarg___closed__1; +x_2 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_SolveByElim_evalApplyAssumption___spec__1___rarg___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; } } -LEAN_EXPORT lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_evalApplyAssumption___spec__1___rarg(lean_object* x_1) { +LEAN_EXPORT lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_SolveByElim_evalApplyAssumption___spec__1___rarg(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; -x_2 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_evalApplyAssumption___spec__1___rarg___closed__2; +x_2 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_SolveByElim_evalApplyAssumption___spec__1___rarg___closed__2; 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; } } -LEAN_EXPORT lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_evalApplyAssumption___spec__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_EXPORT lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_SolveByElim_evalApplyAssumption___spec__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) { _start: { lean_object* x_9; -x_9 = lean_alloc_closure((void*)(l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_evalApplyAssumption___spec__1___rarg), 1, 0); +x_9 = lean_alloc_closure((void*)(l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_SolveByElim_evalApplyAssumption___spec__1___rarg), 1, 0); return x_9; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_evalApplyAssumption___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, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14) { +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_SolveByElim_evalApplyAssumption___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, 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; -x_15 = l_Lean_Elab_Tactic_parseArgs(x_1); +x_15 = l_Lean_Elab_Tactic_SolveByElim_parseArgs(x_1); x_16 = lean_ctor_get(x_15, 1); lean_inc(x_16); x_17 = lean_ctor_get(x_15, 0); @@ -4334,7 +4334,7 @@ lean_inc(x_18); x_19 = lean_ctor_get(x_16, 1); lean_inc(x_19); lean_dec(x_16); -x_20 = l_Lean_Elab_Tactic_parseUsing(x_5); +x_20 = l_Lean_Elab_Tactic_SolveByElim_parseUsing(x_5); if (lean_obj_tag(x_3) == 0) { lean_object* x_190; @@ -4373,7 +4373,7 @@ lean_inc(x_11); lean_inc(x_10); lean_inc(x_9); lean_inc(x_8); -x_23 = l_Lean_Elab_Tactic_elabConfig(x_22, x_8, x_9, x_10, x_11, x_12, x_13, x_14); +x_23 = l_Lean_Elab_Tactic_SolveByElim_elabConfig(x_22, x_8, x_9, x_10, x_11, x_12, x_13, x_14); lean_dec(x_22); if (lean_obj_tag(x_23) == 0) { @@ -4439,7 +4439,7 @@ lean_inc(x_13); lean_inc(x_12); lean_inc(x_11); lean_inc(x_10); -x_42 = l_Lean_Elab_Tactic_processSyntax(x_24, x_35, x_41, x_18, x_19, x_20, x_40, x_10, x_11, x_12, x_13, x_38); +x_42 = l_Lean_Elab_Tactic_SolveByElim_processSyntax(x_24, x_35, x_41, x_18, x_19, x_20, x_40, x_10, x_11, x_12, x_13, x_38); if (lean_obj_tag(x_42) == 0) { lean_object* x_43; lean_object* x_44; lean_object* x_45; @@ -4492,7 +4492,7 @@ lean_inc(x_13); lean_inc(x_12); lean_inc(x_11); lean_inc(x_10); -x_52 = l_Lean_Elab_Tactic_processSyntax(x_24, x_50, x_51, x_18, x_19, x_20, x_40, x_10, x_11, x_12, x_13, x_38); +x_52 = l_Lean_Elab_Tactic_SolveByElim_processSyntax(x_24, x_50, x_51, x_18, x_19, x_20, x_40, x_10, x_11, x_12, x_13, x_38); if (lean_obj_tag(x_52) == 0) { lean_object* x_53; lean_object* x_54; lean_object* x_55; @@ -4623,7 +4623,7 @@ lean_inc(x_13); lean_inc(x_12); lean_inc(x_11); lean_inc(x_10); -x_77 = l_Lean_Elab_Tactic_processSyntax(x_24, x_70, x_76, x_18, x_19, x_20, x_75, x_10, x_11, x_12, x_13, x_73); +x_77 = l_Lean_Elab_Tactic_SolveByElim_processSyntax(x_24, x_70, x_76, x_18, x_19, x_20, x_75, x_10, x_11, x_12, x_13, x_73); if (lean_obj_tag(x_77) == 0) { lean_object* x_78; lean_object* x_79; lean_object* x_80; @@ -4678,7 +4678,7 @@ lean_inc(x_13); lean_inc(x_12); lean_inc(x_11); lean_inc(x_10); -x_87 = l_Lean_Elab_Tactic_processSyntax(x_24, x_85, x_86, x_18, x_19, x_20, x_75, x_10, x_11, x_12, x_13, x_73); +x_87 = l_Lean_Elab_Tactic_SolveByElim_processSyntax(x_24, x_85, x_86, x_18, x_19, x_20, x_75, x_10, x_11, x_12, x_13, x_73); if (lean_obj_tag(x_87) == 0) { lean_object* x_88; lean_object* x_89; lean_object* x_90; @@ -4839,7 +4839,7 @@ lean_inc(x_13); lean_inc(x_12); lean_inc(x_11); lean_inc(x_10); -x_118 = l_Lean_Elab_Tactic_processSyntax(x_24, x_111, x_117, x_18, x_19, x_20, x_116, x_10, x_11, x_12, x_13, x_114); +x_118 = l_Lean_Elab_Tactic_SolveByElim_processSyntax(x_24, x_111, x_117, x_18, x_19, x_20, x_116, x_10, x_11, x_12, x_13, x_114); if (lean_obj_tag(x_118) == 0) { lean_object* x_119; lean_object* x_120; lean_object* x_121; @@ -4894,7 +4894,7 @@ lean_inc(x_13); lean_inc(x_12); lean_inc(x_11); lean_inc(x_10); -x_128 = l_Lean_Elab_Tactic_processSyntax(x_24, x_126, x_127, x_18, x_19, x_20, x_116, x_10, x_11, x_12, x_13, x_114); +x_128 = l_Lean_Elab_Tactic_SolveByElim_processSyntax(x_24, x_126, x_127, x_18, x_19, x_20, x_116, x_10, x_11, x_12, x_13, x_114); if (lean_obj_tag(x_128) == 0) { lean_object* x_129; lean_object* x_130; lean_object* x_131; @@ -5072,7 +5072,7 @@ lean_inc(x_13); lean_inc(x_12); lean_inc(x_11); lean_inc(x_10); -x_163 = l_Lean_Elab_Tactic_processSyntax(x_156, x_155, x_162, x_18, x_19, x_20, x_161, x_10, x_11, x_12, x_13, x_159); +x_163 = l_Lean_Elab_Tactic_SolveByElim_processSyntax(x_156, x_155, x_162, x_18, x_19, x_20, x_161, x_10, x_11, x_12, x_13, x_159); if (lean_obj_tag(x_163) == 0) { lean_object* x_164; lean_object* x_165; lean_object* x_166; @@ -5127,7 +5127,7 @@ lean_inc(x_13); lean_inc(x_12); lean_inc(x_11); lean_inc(x_10); -x_173 = l_Lean_Elab_Tactic_processSyntax(x_156, x_171, x_172, x_18, x_19, x_20, x_161, x_10, x_11, x_12, x_13, x_159); +x_173 = l_Lean_Elab_Tactic_SolveByElim_processSyntax(x_156, x_171, x_172, x_18, x_19, x_20, x_161, x_10, x_11, x_12, x_13, x_159); if (lean_obj_tag(x_173) == 0) { lean_object* x_174; lean_object* x_175; lean_object* x_176; @@ -5249,7 +5249,7 @@ return x_188; } } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_evalApplyAssumption___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_EXPORT lean_object* l_Lean_Elab_Tactic_SolveByElim_evalApplyAssumption___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) { _start: { lean_object* x_15; lean_object* x_16; uint8_t x_17; @@ -5278,7 +5278,7 @@ lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_3); -x_20 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_evalApplyAssumption___spec__1___rarg(x_14); +x_20 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_SolveByElim_evalApplyAssumption___spec__1___rarg(x_14); return x_20; } else @@ -5287,7 +5287,7 @@ lean_object* x_21; lean_object* x_22; lean_object* x_23; uint8_t x_24; x_21 = lean_unsigned_to_nat(0u); x_22 = l_Lean_Syntax_getArg(x_16, x_21); lean_dec(x_16); -x_23 = l_Lean_Elab_Tactic_parseUsing___closed__2; +x_23 = l_Lean_Elab_Tactic_SolveByElim_parseUsing___closed__2; lean_inc(x_22); x_24 = l_Lean_Syntax_isOfKind(x_22, x_23); if (x_24 == 0) @@ -5304,7 +5304,7 @@ lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_3); -x_25 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_evalApplyAssumption___spec__1___rarg(x_14); +x_25 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_SolveByElim_evalApplyAssumption___spec__1___rarg(x_14); return x_25; } else @@ -5313,7 +5313,7 @@ lean_object* x_26; lean_object* x_27; lean_object* x_28; x_26 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_26, 0, x_22); x_27 = lean_box(0); -x_28 = l_Lean_Elab_Tactic_evalApplyAssumption___lambda__1(x_5, x_2, x_3, x_27, x_26, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14); +x_28 = l_Lean_Elab_Tactic_SolveByElim_evalApplyAssumption___lambda__1(x_5, x_2, x_3, x_27, x_26, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14); return x_28; } } @@ -5324,12 +5324,12 @@ lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_dec(x_16); x_29 = lean_box(0); x_30 = lean_box(0); -x_31 = l_Lean_Elab_Tactic_evalApplyAssumption___lambda__1(x_5, x_2, x_3, x_30, x_29, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14); +x_31 = l_Lean_Elab_Tactic_SolveByElim_evalApplyAssumption___lambda__1(x_5, x_2, x_3, x_30, x_29, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14); return x_31; } } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_evalApplyAssumption___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_EXPORT lean_object* l_Lean_Elab_Tactic_SolveByElim_evalApplyAssumption___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) { _start: { lean_object* x_14; lean_object* x_15; uint8_t x_16; @@ -5358,7 +5358,7 @@ lean_dec(x_5); lean_dec(x_4); lean_dec(x_2); lean_dec(x_1); -x_19 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_evalApplyAssumption___spec__1___rarg(x_13); +x_19 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_SolveByElim_evalApplyAssumption___spec__1___rarg(x_13); return x_19; } else @@ -5367,7 +5367,7 @@ lean_object* x_20; lean_object* x_21; lean_object* x_22; uint8_t x_23; x_20 = lean_unsigned_to_nat(0u); x_21 = l_Lean_Syntax_getArg(x_15, x_20); lean_dec(x_15); -x_22 = l_Lean_Elab_Tactic_parseArgs___closed__4; +x_22 = l_Lean_Elab_Tactic_SolveByElim_parseArgs___closed__4; lean_inc(x_21); x_23 = l_Lean_Syntax_isOfKind(x_21, x_22); if (x_23 == 0) @@ -5385,7 +5385,7 @@ lean_dec(x_5); lean_dec(x_4); lean_dec(x_2); lean_dec(x_1); -x_24 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_evalApplyAssumption___spec__1___rarg(x_13); +x_24 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_SolveByElim_evalApplyAssumption___spec__1___rarg(x_13); return x_24; } else @@ -5394,7 +5394,7 @@ lean_object* x_25; lean_object* x_26; lean_object* x_27; x_25 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_25, 0, x_21); x_26 = lean_box(0); -x_27 = l_Lean_Elab_Tactic_evalApplyAssumption___lambda__2(x_1, x_4, x_2, x_26, x_25, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); +x_27 = l_Lean_Elab_Tactic_SolveByElim_evalApplyAssumption___lambda__2(x_1, x_4, x_2, x_26, x_25, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); lean_dec(x_4); return x_27; } @@ -5406,13 +5406,13 @@ lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_dec(x_15); x_28 = lean_box(0); x_29 = lean_box(0); -x_30 = l_Lean_Elab_Tactic_evalApplyAssumption___lambda__2(x_1, x_4, x_2, x_29, x_28, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); +x_30 = l_Lean_Elab_Tactic_SolveByElim_evalApplyAssumption___lambda__2(x_1, x_4, x_2, x_29, x_28, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); lean_dec(x_4); return x_30; } } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_evalApplyAssumption___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_EXPORT lean_object* l_Lean_Elab_Tactic_SolveByElim_evalApplyAssumption___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) { _start: { lean_object* x_13; lean_object* x_14; uint8_t x_15; @@ -5440,7 +5440,7 @@ lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_1); -x_18 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_evalApplyAssumption___spec__1___rarg(x_12); +x_18 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_SolveByElim_evalApplyAssumption___spec__1___rarg(x_12); return x_18; } else @@ -5452,7 +5452,7 @@ lean_dec(x_14); x_21 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_21, 0, x_20); x_22 = lean_box(0); -x_23 = l_Lean_Elab_Tactic_evalApplyAssumption___lambda__3(x_1, x_3, x_22, x_21, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +x_23 = l_Lean_Elab_Tactic_SolveByElim_evalApplyAssumption___lambda__3(x_1, x_3, x_22, x_21, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); return x_23; } } @@ -5462,12 +5462,12 @@ lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_dec(x_14); x_24 = lean_box(0); x_25 = lean_box(0); -x_26 = l_Lean_Elab_Tactic_evalApplyAssumption___lambda__3(x_1, x_3, x_25, x_24, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +x_26 = l_Lean_Elab_Tactic_SolveByElim_evalApplyAssumption___lambda__3(x_1, x_3, x_25, x_24, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); return x_26; } } } -static lean_object* _init_l_Lean_Elab_Tactic_evalApplyAssumption___closed__1() { +static lean_object* _init_l_Lean_Elab_Tactic_SolveByElim_evalApplyAssumption___closed__1() { _start: { lean_object* x_1; @@ -5475,23 +5475,23 @@ x_1 = lean_mk_string_from_bytes("applyAssumption", 15); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_evalApplyAssumption___closed__2() { +static lean_object* _init_l_Lean_Elab_Tactic_SolveByElim_evalApplyAssumption___closed__2() { _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_Elab_Tactic_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_8____closed__1; -x_2 = l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_parseArgs___spec__2___closed__1; -x_3 = l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_parseArgs___spec__2___closed__2; -x_4 = l_Lean_Elab_Tactic_evalApplyAssumption___closed__1; +x_1 = l_Lean_Elab_Tactic_SolveByElim_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_8____closed__1; +x_2 = l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_SolveByElim_parseArgs___spec__2___closed__1; +x_3 = l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_SolveByElim_parseArgs___spec__2___closed__2; +x_4 = l_Lean_Elab_Tactic_SolveByElim_evalApplyAssumption___closed__1; x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); return x_5; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_evalApplyAssumption(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_EXPORT lean_object* l_Lean_Elab_Tactic_SolveByElim_evalApplyAssumption(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; uint8_t x_12; -x_11 = l_Lean_Elab_Tactic_evalApplyAssumption___closed__2; +x_11 = l_Lean_Elab_Tactic_SolveByElim_evalApplyAssumption___closed__2; lean_inc(x_1); x_12 = l_Lean_Syntax_isOfKind(x_1, x_11); if (x_12 == 0) @@ -5506,7 +5506,7 @@ lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_13 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_evalApplyAssumption___spec__1___rarg(x_10); +x_13 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_SolveByElim_evalApplyAssumption___spec__1___rarg(x_10); return x_13; } else @@ -5533,7 +5533,7 @@ lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_18 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_evalApplyAssumption___spec__1___rarg(x_10); +x_18 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_SolveByElim_evalApplyAssumption___spec__1___rarg(x_10); return x_18; } else @@ -5545,7 +5545,7 @@ lean_dec(x_15); x_21 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_21, 0, x_20); x_22 = lean_box(0); -x_23 = l_Lean_Elab_Tactic_evalApplyAssumption___lambda__4(x_1, x_22, x_21, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_23 = l_Lean_Elab_Tactic_SolveByElim_evalApplyAssumption___lambda__4(x_1, x_22, x_21, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); return x_23; } } @@ -5555,17 +5555,17 @@ lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_dec(x_15); x_24 = lean_box(0); x_25 = lean_box(0); -x_26 = l_Lean_Elab_Tactic_evalApplyAssumption___lambda__4(x_1, x_25, x_24, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_26 = l_Lean_Elab_Tactic_SolveByElim_evalApplyAssumption___lambda__4(x_1, x_25, x_24, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); return x_26; } } } } -LEAN_EXPORT lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_evalApplyAssumption___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_EXPORT lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_SolveByElim_evalApplyAssumption___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) { _start: { lean_object* x_9; -x_9 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_evalApplyAssumption___spec__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +x_9 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_SolveByElim_evalApplyAssumption___spec__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); @@ -5577,26 +5577,26 @@ lean_dec(x_1); return x_9; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_evalApplyAssumption___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, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14) { +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_SolveByElim_evalApplyAssumption___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, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14) { _start: { lean_object* x_15; -x_15 = l_Lean_Elab_Tactic_evalApplyAssumption___lambda__1(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 = l_Lean_Elab_Tactic_SolveByElim_evalApplyAssumption___lambda__1(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); lean_dec(x_4); lean_dec(x_2); return x_15; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_evalApplyAssumption___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_Elab_Tactic_SolveByElim_evalApplyAssumption___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) { _start: { lean_object* x_15; -x_15 = l_Lean_Elab_Tactic_evalApplyAssumption___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 = l_Lean_Elab_Tactic_SolveByElim_evalApplyAssumption___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); lean_dec(x_2); return x_15; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Tactic_evalApplyAssumption___closed__1() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalApplyAssumption___closed__1() { _start: { lean_object* x_1; @@ -5604,7 +5604,7 @@ x_1 = lean_mk_string_from_bytes("Elab", 4); return x_1; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Tactic_evalApplyAssumption___closed__2() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalApplyAssumption___closed__2() { _start: { lean_object* x_1; @@ -5612,19 +5612,20 @@ x_1 = lean_mk_string_from_bytes("evalApplyAssumption", 19); return x_1; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Tactic_evalApplyAssumption___closed__3() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalApplyAssumption___closed__3() { _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_Elab_Tactic_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_8____closed__1; -x_2 = l___regBuiltin_Lean_Elab_Tactic_evalApplyAssumption___closed__1; -x_3 = l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_parseArgs___spec__2___closed__2; -x_4 = l___regBuiltin_Lean_Elab_Tactic_evalApplyAssumption___closed__2; -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; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; +x_1 = l_Lean_Elab_Tactic_SolveByElim_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_8____closed__1; +x_2 = l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalApplyAssumption___closed__1; +x_3 = l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_SolveByElim_parseArgs___spec__2___closed__2; +x_4 = l_Lean_Elab_Tactic_SolveByElim_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_8____closed__3; +x_5 = l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalApplyAssumption___closed__2; +x_6 = l_Lean_Name_mkStr5(x_1, x_2, x_3, x_4, x_5); +return x_6; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Tactic_evalApplyAssumption___closed__4() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalApplyAssumption___closed__4() { _start: { lean_object* x_1; @@ -5632,27 +5633,27 @@ x_1 = l_Lean_Elab_Tactic_tacticElabAttribute; return x_1; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Tactic_evalApplyAssumption___closed__5() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalApplyAssumption___closed__5() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_evalApplyAssumption), 10, 0); +x_1 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_SolveByElim_evalApplyAssumption), 10, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Tactic_evalApplyAssumption(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalApplyAssumption(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; -x_2 = l___regBuiltin_Lean_Elab_Tactic_evalApplyAssumption___closed__4; -x_3 = l_Lean_Elab_Tactic_evalApplyAssumption___closed__2; -x_4 = l___regBuiltin_Lean_Elab_Tactic_evalApplyAssumption___closed__3; -x_5 = l___regBuiltin_Lean_Elab_Tactic_evalApplyAssumption___closed__5; +x_2 = l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalApplyAssumption___closed__4; +x_3 = l_Lean_Elab_Tactic_SolveByElim_evalApplyAssumption___closed__2; +x_4 = l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalApplyAssumption___closed__3; +x_5 = l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalApplyAssumption___closed__5; x_6 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_5, x_1); return x_6; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Tactic_evalApplyAssumption_declRange___closed__1() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalApplyAssumption_declRange___closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -5664,7 +5665,7 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Tactic_evalApplyAssumption_declRange___closed__2() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalApplyAssumption_declRange___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -5676,13 +5677,13 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Tactic_evalApplyAssumption_declRange___closed__3() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalApplyAssumption_declRange___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l___regBuiltin_Lean_Elab_Tactic_evalApplyAssumption_declRange___closed__1; +x_1 = l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalApplyAssumption_declRange___closed__1; x_2 = lean_unsigned_to_nat(0u); -x_3 = l___regBuiltin_Lean_Elab_Tactic_evalApplyAssumption_declRange___closed__2; +x_3 = l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalApplyAssumption_declRange___closed__2; x_4 = lean_unsigned_to_nat(31u); x_5 = lean_alloc_ctor(0, 4, 0); lean_ctor_set(x_5, 0, x_1); @@ -5692,7 +5693,7 @@ lean_ctor_set(x_5, 3, x_4); return x_5; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Tactic_evalApplyAssumption_declRange___closed__4() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalApplyAssumption_declRange___closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -5704,7 +5705,7 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Tactic_evalApplyAssumption_declRange___closed__5() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalApplyAssumption_declRange___closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -5716,13 +5717,13 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Tactic_evalApplyAssumption_declRange___closed__6() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalApplyAssumption_declRange___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___regBuiltin_Lean_Elab_Tactic_evalApplyAssumption_declRange___closed__4; +x_1 = l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalApplyAssumption_declRange___closed__4; x_2 = lean_unsigned_to_nat(4u); -x_3 = l___regBuiltin_Lean_Elab_Tactic_evalApplyAssumption_declRange___closed__5; +x_3 = l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalApplyAssumption_declRange___closed__5; x_4 = lean_unsigned_to_nat(23u); x_5 = lean_alloc_ctor(0, 4, 0); lean_ctor_set(x_5, 0, x_1); @@ -5732,29 +5733,29 @@ lean_ctor_set(x_5, 3, x_4); return x_5; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Tactic_evalApplyAssumption_declRange___closed__7() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalApplyAssumption_declRange___closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Lean_Elab_Tactic_evalApplyAssumption_declRange___closed__3; -x_2 = l___regBuiltin_Lean_Elab_Tactic_evalApplyAssumption_declRange___closed__6; +x_1 = l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalApplyAssumption_declRange___closed__3; +x_2 = l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalApplyAssumption_declRange___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); return x_3; } } -LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Tactic_evalApplyAssumption_declRange(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalApplyAssumption_declRange(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_2 = l___regBuiltin_Lean_Elab_Tactic_evalApplyAssumption___closed__3; -x_3 = l___regBuiltin_Lean_Elab_Tactic_evalApplyAssumption_declRange___closed__7; +x_2 = l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalApplyAssumption___closed__3; +x_3 = l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalApplyAssumption_declRange___closed__7; x_4 = l_Lean_addBuiltinDeclarationRanges(x_2, x_3, x_1); return x_4; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_evalApplyRules___lambda__1(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, lean_object* x_14, lean_object* x_15) { +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_SolveByElim_evalApplyRules___lambda__1(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, lean_object* x_14, lean_object* x_15) { _start: { lean_object* x_16; @@ -5787,7 +5788,7 @@ lean_inc(x_14); lean_inc(x_13); lean_inc(x_12); lean_inc(x_11); -x_22 = l_Lean_Elab_Tactic_processSyntax(x_2, x_21, x_3, x_4, x_5, x_6, x_20, x_11, x_12, x_13, x_14, x_18); +x_22 = l_Lean_Elab_Tactic_SolveByElim_processSyntax(x_2, x_21, x_3, x_4, x_5, x_6, x_20, x_11, x_12, x_13, x_14, x_18); if (lean_obj_tag(x_22) == 0) { lean_object* x_23; lean_object* x_24; lean_object* x_25; @@ -5885,7 +5886,7 @@ lean_inc(x_14); lean_inc(x_13); lean_inc(x_12); lean_inc(x_11); -x_41 = l_Lean_Elab_Tactic_processSyntax(x_2, x_40, x_3, x_4, x_5, x_6, x_20, x_11, x_12, x_13, x_14, x_18); +x_41 = l_Lean_Elab_Tactic_SolveByElim_processSyntax(x_2, x_40, x_3, x_4, x_5, x_6, x_20, x_11, x_12, x_13, x_14, x_18); if (lean_obj_tag(x_41) == 0) { lean_object* x_42; lean_object* x_43; lean_object* x_44; @@ -6012,11 +6013,11 @@ return x_62; } } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_evalApplyRules___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_EXPORT lean_object* l_Lean_Elab_Tactic_SolveByElim_evalApplyRules___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) { _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; -x_15 = l_Lean_Elab_Tactic_parseArgs(x_1); +x_15 = l_Lean_Elab_Tactic_SolveByElim_parseArgs(x_1); x_16 = lean_ctor_get(x_15, 1); lean_inc(x_16); x_17 = lean_ctor_get(x_15, 0); @@ -6027,7 +6028,7 @@ lean_inc(x_18); x_19 = lean_ctor_get(x_16, 1); lean_inc(x_19); lean_dec(x_16); -x_20 = l_Lean_Elab_Tactic_parseUsing(x_5); +x_20 = l_Lean_Elab_Tactic_SolveByElim_parseUsing(x_5); if (lean_obj_tag(x_3) == 0) { lean_object* x_36; @@ -6066,7 +6067,7 @@ lean_inc(x_11); lean_inc(x_10); lean_inc(x_9); lean_inc(x_8); -x_23 = l_Lean_Elab_Tactic_elabApplyRulesConfig(x_22, x_8, x_9, x_10, x_11, x_12, x_13, x_14); +x_23 = l_Lean_Elab_Tactic_SolveByElim_elabApplyRulesConfig(x_22, x_8, x_9, x_10, x_11, x_12, x_13, x_14); lean_dec(x_22); if (lean_obj_tag(x_23) == 0) { @@ -6083,7 +6084,7 @@ lean_ctor_set(x_28, 0, x_24); lean_ctor_set_uint8(x_28, sizeof(void*)*1, x_26); lean_ctor_set_uint8(x_28, sizeof(void*)*1 + 1, x_27); lean_ctor_set_uint8(x_28, sizeof(void*)*1 + 2, x_27); -x_29 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_evalApplyRules___lambda__1___boxed), 15, 6); +x_29 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_SolveByElim_evalApplyRules___lambda__1___boxed), 15, 6); lean_closure_set(x_29, 0, x_2); lean_closure_set(x_29, 1, x_28); lean_closure_set(x_29, 2, x_17); @@ -6131,7 +6132,7 @@ return x_34; } } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_evalApplyRules___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_EXPORT lean_object* l_Lean_Elab_Tactic_SolveByElim_evalApplyRules___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) { _start: { lean_object* x_15; lean_object* x_16; uint8_t x_17; @@ -6161,7 +6162,7 @@ lean_dec(x_6); lean_dec(x_5); lean_dec(x_3); lean_dec(x_2); -x_20 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_evalApplyAssumption___spec__1___rarg(x_14); +x_20 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_SolveByElim_evalApplyAssumption___spec__1___rarg(x_14); return x_20; } else @@ -6170,7 +6171,7 @@ lean_object* x_21; lean_object* x_22; lean_object* x_23; uint8_t x_24; x_21 = lean_unsigned_to_nat(0u); x_22 = l_Lean_Syntax_getArg(x_16, x_21); lean_dec(x_16); -x_23 = l_Lean_Elab_Tactic_parseUsing___closed__2; +x_23 = l_Lean_Elab_Tactic_SolveByElim_parseUsing___closed__2; lean_inc(x_22); x_24 = l_Lean_Syntax_isOfKind(x_22, x_23); if (x_24 == 0) @@ -6188,7 +6189,7 @@ lean_dec(x_6); lean_dec(x_5); lean_dec(x_3); lean_dec(x_2); -x_25 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_evalApplyAssumption___spec__1___rarg(x_14); +x_25 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_SolveByElim_evalApplyAssumption___spec__1___rarg(x_14); return x_25; } else @@ -6197,7 +6198,7 @@ lean_object* x_26; lean_object* x_27; lean_object* x_28; x_26 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_26, 0, x_22); x_27 = lean_box(0); -x_28 = l_Lean_Elab_Tactic_evalApplyRules___lambda__2(x_5, x_2, x_3, x_27, x_26, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14); +x_28 = l_Lean_Elab_Tactic_SolveByElim_evalApplyRules___lambda__2(x_5, x_2, x_3, x_27, x_26, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14); return x_28; } } @@ -6208,12 +6209,12 @@ lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_dec(x_16); x_29 = lean_box(0); x_30 = lean_box(0); -x_31 = l_Lean_Elab_Tactic_evalApplyRules___lambda__2(x_5, x_2, x_3, x_30, x_29, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14); +x_31 = l_Lean_Elab_Tactic_SolveByElim_evalApplyRules___lambda__2(x_5, x_2, x_3, x_30, x_29, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14); return x_31; } } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_evalApplyRules___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_EXPORT lean_object* l_Lean_Elab_Tactic_SolveByElim_evalApplyRules___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) { _start: { lean_object* x_14; lean_object* x_15; uint8_t x_16; @@ -6242,7 +6243,7 @@ lean_dec(x_5); lean_dec(x_4); lean_dec(x_2); lean_dec(x_1); -x_19 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_evalApplyAssumption___spec__1___rarg(x_13); +x_19 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_SolveByElim_evalApplyAssumption___spec__1___rarg(x_13); return x_19; } else @@ -6251,7 +6252,7 @@ lean_object* x_20; lean_object* x_21; lean_object* x_22; uint8_t x_23; x_20 = lean_unsigned_to_nat(0u); x_21 = l_Lean_Syntax_getArg(x_15, x_20); lean_dec(x_15); -x_22 = l_Lean_Elab_Tactic_parseArgs___closed__4; +x_22 = l_Lean_Elab_Tactic_SolveByElim_parseArgs___closed__4; lean_inc(x_21); x_23 = l_Lean_Syntax_isOfKind(x_21, x_22); if (x_23 == 0) @@ -6269,7 +6270,7 @@ lean_dec(x_5); lean_dec(x_4); lean_dec(x_2); lean_dec(x_1); -x_24 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_evalApplyAssumption___spec__1___rarg(x_13); +x_24 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_SolveByElim_evalApplyAssumption___spec__1___rarg(x_13); return x_24; } else @@ -6278,7 +6279,7 @@ lean_object* x_25; lean_object* x_26; lean_object* x_27; x_25 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_25, 0, x_21); x_26 = lean_box(0); -x_27 = l_Lean_Elab_Tactic_evalApplyRules___lambda__3(x_1, x_4, x_2, x_26, x_25, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); +x_27 = l_Lean_Elab_Tactic_SolveByElim_evalApplyRules___lambda__3(x_1, x_4, x_2, x_26, x_25, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); return x_27; } } @@ -6289,12 +6290,12 @@ lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_dec(x_15); x_28 = lean_box(0); x_29 = lean_box(0); -x_30 = l_Lean_Elab_Tactic_evalApplyRules___lambda__3(x_1, x_4, x_2, x_29, x_28, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); +x_30 = l_Lean_Elab_Tactic_SolveByElim_evalApplyRules___lambda__3(x_1, x_4, x_2, x_29, x_28, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); return x_30; } } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_evalApplyRules___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_EXPORT lean_object* l_Lean_Elab_Tactic_SolveByElim_evalApplyRules___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) { _start: { lean_object* x_13; lean_object* x_14; uint8_t x_15; @@ -6322,7 +6323,7 @@ lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_1); -x_18 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_evalApplyAssumption___spec__1___rarg(x_12); +x_18 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_SolveByElim_evalApplyAssumption___spec__1___rarg(x_12); return x_18; } else @@ -6334,7 +6335,7 @@ lean_dec(x_14); x_21 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_21, 0, x_20); x_22 = lean_box(0); -x_23 = l_Lean_Elab_Tactic_evalApplyRules___lambda__4(x_1, x_3, x_22, x_21, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +x_23 = l_Lean_Elab_Tactic_SolveByElim_evalApplyRules___lambda__4(x_1, x_3, x_22, x_21, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); return x_23; } } @@ -6344,12 +6345,12 @@ lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_dec(x_14); x_24 = lean_box(0); x_25 = lean_box(0); -x_26 = l_Lean_Elab_Tactic_evalApplyRules___lambda__4(x_1, x_3, x_25, x_24, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +x_26 = l_Lean_Elab_Tactic_SolveByElim_evalApplyRules___lambda__4(x_1, x_3, x_25, x_24, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); return x_26; } } } -static lean_object* _init_l_Lean_Elab_Tactic_evalApplyRules___closed__1() { +static lean_object* _init_l_Lean_Elab_Tactic_SolveByElim_evalApplyRules___closed__1() { _start: { lean_object* x_1; @@ -6357,23 +6358,23 @@ x_1 = lean_mk_string_from_bytes("applyRules", 10); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_evalApplyRules___closed__2() { +static lean_object* _init_l_Lean_Elab_Tactic_SolveByElim_evalApplyRules___closed__2() { _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_Elab_Tactic_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_8____closed__1; -x_2 = l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_parseArgs___spec__2___closed__1; -x_3 = l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_parseArgs___spec__2___closed__2; -x_4 = l_Lean_Elab_Tactic_evalApplyRules___closed__1; +x_1 = l_Lean_Elab_Tactic_SolveByElim_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_8____closed__1; +x_2 = l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_SolveByElim_parseArgs___spec__2___closed__1; +x_3 = l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_SolveByElim_parseArgs___spec__2___closed__2; +x_4 = l_Lean_Elab_Tactic_SolveByElim_evalApplyRules___closed__1; x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); return x_5; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_evalApplyRules(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_EXPORT lean_object* l_Lean_Elab_Tactic_SolveByElim_evalApplyRules(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; uint8_t x_12; -x_11 = l_Lean_Elab_Tactic_evalApplyRules___closed__2; +x_11 = l_Lean_Elab_Tactic_SolveByElim_evalApplyRules___closed__2; lean_inc(x_1); x_12 = l_Lean_Syntax_isOfKind(x_1, x_11); if (x_12 == 0) @@ -6388,7 +6389,7 @@ lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_13 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_evalApplyAssumption___spec__1___rarg(x_10); +x_13 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_SolveByElim_evalApplyAssumption___spec__1___rarg(x_10); return x_13; } else @@ -6415,7 +6416,7 @@ lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_18 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_evalApplyAssumption___spec__1___rarg(x_10); +x_18 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_SolveByElim_evalApplyAssumption___spec__1___rarg(x_10); return x_18; } else @@ -6427,7 +6428,7 @@ lean_dec(x_15); x_21 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_21, 0, x_20); x_22 = lean_box(0); -x_23 = l_Lean_Elab_Tactic_evalApplyRules___lambda__5(x_1, x_22, x_21, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_23 = l_Lean_Elab_Tactic_SolveByElim_evalApplyRules___lambda__5(x_1, x_22, x_21, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); return x_23; } } @@ -6437,33 +6438,33 @@ lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_dec(x_15); x_24 = lean_box(0); x_25 = lean_box(0); -x_26 = l_Lean_Elab_Tactic_evalApplyRules___lambda__5(x_1, x_25, x_24, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_26 = l_Lean_Elab_Tactic_SolveByElim_evalApplyRules___lambda__5(x_1, x_25, x_24, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); return x_26; } } } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_evalApplyRules___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, 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_Elab_Tactic_SolveByElim_evalApplyRules___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, 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_3); lean_dec(x_3); -x_17 = l_Lean_Elab_Tactic_evalApplyRules___lambda__1(x_1, x_2, x_16, 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_17 = l_Lean_Elab_Tactic_SolveByElim_evalApplyRules___lambda__1(x_1, x_2, x_16, x_4, 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_1); return x_17; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_evalApplyRules___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_Elab_Tactic_SolveByElim_evalApplyRules___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) { _start: { lean_object* x_15; -x_15 = l_Lean_Elab_Tactic_evalApplyRules___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 = l_Lean_Elab_Tactic_SolveByElim_evalApplyRules___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); lean_dec(x_4); return x_15; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Tactic_evalApplyRules___closed__1() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalApplyRules___closed__1() { _start: { lean_object* x_1; @@ -6471,39 +6472,40 @@ x_1 = lean_mk_string_from_bytes("evalApplyRules", 14); return x_1; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Tactic_evalApplyRules___closed__2() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalApplyRules___closed__2() { _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_Elab_Tactic_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_8____closed__1; -x_2 = l___regBuiltin_Lean_Elab_Tactic_evalApplyAssumption___closed__1; -x_3 = l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_parseArgs___spec__2___closed__2; -x_4 = l___regBuiltin_Lean_Elab_Tactic_evalApplyRules___closed__1; -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; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; +x_1 = l_Lean_Elab_Tactic_SolveByElim_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_8____closed__1; +x_2 = l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalApplyAssumption___closed__1; +x_3 = l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_SolveByElim_parseArgs___spec__2___closed__2; +x_4 = l_Lean_Elab_Tactic_SolveByElim_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_8____closed__3; +x_5 = l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalApplyRules___closed__1; +x_6 = l_Lean_Name_mkStr5(x_1, x_2, x_3, x_4, x_5); +return x_6; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Tactic_evalApplyRules___closed__3() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalApplyRules___closed__3() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_evalApplyRules), 10, 0); +x_1 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_SolveByElim_evalApplyRules), 10, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Tactic_evalApplyRules(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalApplyRules(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; -x_2 = l___regBuiltin_Lean_Elab_Tactic_evalApplyAssumption___closed__4; -x_3 = l_Lean_Elab_Tactic_evalApplyRules___closed__2; -x_4 = l___regBuiltin_Lean_Elab_Tactic_evalApplyRules___closed__2; -x_5 = l___regBuiltin_Lean_Elab_Tactic_evalApplyRules___closed__3; +x_2 = l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalApplyAssumption___closed__4; +x_3 = l_Lean_Elab_Tactic_SolveByElim_evalApplyRules___closed__2; +x_4 = l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalApplyRules___closed__2; +x_5 = l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalApplyRules___closed__3; x_6 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_5, x_1); return x_6; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Tactic_evalApplyRules_docString___closed__1() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalApplyRules_docString___closed__1() { _start: { lean_object* x_1; @@ -6511,17 +6513,17 @@ x_1 = lean_mk_string_from_bytes("Elaborator for apply_rules.\n\nSee `Lean.MVarId return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Tactic_evalApplyRules_docString(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalApplyRules_docString(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_2 = l___regBuiltin_Lean_Elab_Tactic_evalApplyRules___closed__2; -x_3 = l___regBuiltin_Lean_Elab_Tactic_evalApplyRules_docString___closed__1; +x_2 = l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalApplyRules___closed__2; +x_3 = l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalApplyRules_docString___closed__1; x_4 = l_Lean_addBuiltinDocString(x_2, x_3, x_1); return x_4; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Tactic_evalApplyRules_declRange___closed__1() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalApplyRules_declRange___closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -6533,7 +6535,7 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Tactic_evalApplyRules_declRange___closed__2() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalApplyRules_declRange___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -6545,13 +6547,13 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Tactic_evalApplyRules_declRange___closed__3() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalApplyRules_declRange___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l___regBuiltin_Lean_Elab_Tactic_evalApplyRules_declRange___closed__1; +x_1 = l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalApplyRules_declRange___closed__1; x_2 = lean_unsigned_to_nat(0u); -x_3 = l___regBuiltin_Lean_Elab_Tactic_evalApplyRules_declRange___closed__2; +x_3 = l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalApplyRules_declRange___closed__2; x_4 = lean_unsigned_to_nat(31u); x_5 = lean_alloc_ctor(0, 4, 0); lean_ctor_set(x_5, 0, x_1); @@ -6561,7 +6563,7 @@ lean_ctor_set(x_5, 3, x_4); return x_5; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Tactic_evalApplyRules_declRange___closed__4() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalApplyRules_declRange___closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -6573,7 +6575,7 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Tactic_evalApplyRules_declRange___closed__5() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalApplyRules_declRange___closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -6585,13 +6587,13 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Tactic_evalApplyRules_declRange___closed__6() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalApplyRules_declRange___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___regBuiltin_Lean_Elab_Tactic_evalApplyRules_declRange___closed__4; +x_1 = l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalApplyRules_declRange___closed__4; x_2 = lean_unsigned_to_nat(4u); -x_3 = l___regBuiltin_Lean_Elab_Tactic_evalApplyRules_declRange___closed__5; +x_3 = l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalApplyRules_declRange___closed__5; x_4 = lean_unsigned_to_nat(18u); x_5 = lean_alloc_ctor(0, 4, 0); lean_ctor_set(x_5, 0, x_1); @@ -6601,29 +6603,29 @@ lean_ctor_set(x_5, 3, x_4); return x_5; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Tactic_evalApplyRules_declRange___closed__7() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalApplyRules_declRange___closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Lean_Elab_Tactic_evalApplyRules_declRange___closed__3; -x_2 = l___regBuiltin_Lean_Elab_Tactic_evalApplyRules_declRange___closed__6; +x_1 = l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalApplyRules_declRange___closed__3; +x_2 = l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalApplyRules_declRange___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); return x_3; } } -LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Tactic_evalApplyRules_declRange(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalApplyRules_declRange(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_2 = l___regBuiltin_Lean_Elab_Tactic_evalApplyRules___closed__2; -x_3 = l___regBuiltin_Lean_Elab_Tactic_evalApplyRules_declRange___closed__7; +x_2 = l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalApplyRules___closed__2; +x_3 = l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalApplyRules_declRange___closed__7; x_4 = l_Lean_addBuiltinDeclarationRanges(x_2, x_3, x_1); return x_4; } } -static lean_object* _init_l_Lean_Elab_Tactic_evalSolveByElim___lambda__1___closed__1() { +static lean_object* _init_l_Lean_Elab_Tactic_SolveByElim_evalSolveByElim___lambda__1___closed__1() { _start: { lean_object* x_1; @@ -6631,16 +6633,16 @@ x_1 = lean_mk_string_from_bytes("solve_by_elim unexpectedly returned subgoals", return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_evalSolveByElim___lambda__1___closed__2() { +static lean_object* _init_l_Lean_Elab_Tactic_SolveByElim_evalSolveByElim___lambda__1___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Elab_Tactic_evalSolveByElim___lambda__1___closed__1; +x_1 = l_Lean_Elab_Tactic_SolveByElim_evalSolveByElim___lambda__1___closed__1; x_2 = l_Lean_stringToMessageData(x_1); return x_2; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_evalSolveByElim___lambda__1(uint8_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, 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_Elab_Tactic_SolveByElim_evalSolveByElim___lambda__1(uint8_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, 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: { lean_object* x_17; @@ -6682,7 +6684,7 @@ lean_inc(x_13); lean_inc(x_12); lean_inc(x_11); lean_inc(x_10); -x_19 = l_Lean_Elab_Tactic_elabConfig(x_18, x_10, x_11, x_12, x_13, x_14, x_15, x_16); +x_19 = l_Lean_Elab_Tactic_SolveByElim_elabConfig(x_18, x_10, x_11, x_12, x_13, x_14, x_15, x_16); lean_dec(x_18); if (lean_obj_tag(x_19) == 0) { @@ -6713,7 +6715,7 @@ lean_inc(x_15); lean_inc(x_14); lean_inc(x_13); lean_inc(x_12); -x_23 = l_Lean_Elab_Tactic_processSyntax(x_20, x_22, x_1, x_2, x_3, x_4, x_7, x_12, x_13, x_14, x_15, x_21); +x_23 = l_Lean_Elab_Tactic_SolveByElim_processSyntax(x_20, x_22, x_1, x_2, x_3, x_4, x_7, x_12, x_13, x_14, x_15, x_21); if (lean_obj_tag(x_23) == 0) { lean_object* x_24; @@ -6758,7 +6760,7 @@ lean_dec(x_24); x_31 = lean_ctor_get(x_23, 1); lean_inc(x_31); lean_dec(x_23); -x_32 = l_Lean_Elab_Tactic_evalSolveByElim___lambda__1___closed__2; +x_32 = l_Lean_Elab_Tactic_SolveByElim_evalSolveByElim___lambda__1___closed__2; x_33 = l_Lean_throwError___at_Lean_Elab_Tactic_evalTactic_throwExs___spec__2(x_32, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_31); lean_dec(x_15); lean_dec(x_14); @@ -6834,12 +6836,12 @@ return x_44; } } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_evalSolveByElim___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_EXPORT lean_object* l_Lean_Elab_Tactic_SolveByElim_evalSolveByElim___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) { _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_dec(x_5); -x_16 = l_Lean_Elab_Tactic_parseArgs(x_1); +x_16 = l_Lean_Elab_Tactic_SolveByElim_parseArgs(x_1); x_17 = lean_ctor_get(x_16, 1); lean_inc(x_17); x_18 = lean_ctor_get(x_16, 0); @@ -6850,7 +6852,7 @@ lean_inc(x_19); x_20 = lean_ctor_get(x_17, 1); lean_inc(x_20); lean_dec(x_17); -x_21 = l_Lean_Elab_Tactic_parseUsing(x_6); +x_21 = l_Lean_Elab_Tactic_SolveByElim_parseUsing(x_6); if (lean_obj_tag(x_4) == 0) { lean_object* x_22; @@ -6877,7 +6879,7 @@ lean_ctor_set(x_26, 0, x_23); lean_ctor_set(x_26, 1, x_25); x_27 = lean_unbox(x_18); lean_dec(x_18); -x_28 = l_Lean_Elab_Tactic_evalSolveByElim___lambda__1(x_27, x_19, x_20, x_21, x_2, x_3, x_26, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_24); +x_28 = l_Lean_Elab_Tactic_SolveByElim_evalSolveByElim___lambda__1(x_27, x_19, x_20, x_21, x_2, x_3, x_26, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_24); lean_dec(x_8); lean_dec(x_7); lean_dec(x_2); @@ -6932,7 +6934,7 @@ lean_inc(x_35); lean_dec(x_33); x_36 = lean_unbox(x_18); lean_dec(x_18); -x_37 = l_Lean_Elab_Tactic_evalSolveByElim___lambda__1(x_36, x_19, x_20, x_21, x_2, x_3, x_34, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_35); +x_37 = l_Lean_Elab_Tactic_SolveByElim_evalSolveByElim___lambda__1(x_36, x_19, x_20, x_21, x_2, x_3, x_34, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_35); lean_dec(x_8); lean_dec(x_7); lean_dec(x_2); @@ -6940,7 +6942,7 @@ return x_37; } } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_evalSolveByElim___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_EXPORT lean_object* l_Lean_Elab_Tactic_SolveByElim_evalSolveByElim___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) { _start: { lean_object* x_16; lean_object* x_17; uint8_t x_18; @@ -6971,7 +6973,7 @@ lean_dec(x_6); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); -x_21 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_evalApplyAssumption___spec__1___rarg(x_15); +x_21 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_SolveByElim_evalApplyAssumption___spec__1___rarg(x_15); return x_21; } else @@ -6980,7 +6982,7 @@ lean_object* x_22; lean_object* x_23; lean_object* x_24; uint8_t x_25; x_22 = lean_unsigned_to_nat(0u); x_23 = l_Lean_Syntax_getArg(x_17, x_22); lean_dec(x_17); -x_24 = l_Lean_Elab_Tactic_parseUsing___closed__2; +x_24 = l_Lean_Elab_Tactic_SolveByElim_parseUsing___closed__2; lean_inc(x_23); x_25 = l_Lean_Syntax_isOfKind(x_23, x_24); if (x_25 == 0) @@ -6999,7 +7001,7 @@ lean_dec(x_6); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); -x_26 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_evalApplyAssumption___spec__1___rarg(x_15); +x_26 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_SolveByElim_evalApplyAssumption___spec__1___rarg(x_15); return x_26; } else @@ -7008,7 +7010,7 @@ lean_object* x_27; lean_object* x_28; lean_object* x_29; x_27 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_27, 0, x_23); x_28 = lean_box(0); -x_29 = l_Lean_Elab_Tactic_evalSolveByElim___lambda__2(x_6, x_2, x_3, x_4, x_28, x_27, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15); +x_29 = l_Lean_Elab_Tactic_SolveByElim_evalSolveByElim___lambda__2(x_6, x_2, x_3, x_4, x_28, x_27, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15); return x_29; } } @@ -7019,12 +7021,12 @@ lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_dec(x_17); x_30 = lean_box(0); x_31 = lean_box(0); -x_32 = l_Lean_Elab_Tactic_evalSolveByElim___lambda__2(x_6, x_2, x_3, x_4, x_31, x_30, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15); +x_32 = l_Lean_Elab_Tactic_SolveByElim_evalSolveByElim___lambda__2(x_6, x_2, x_3, x_4, x_31, x_30, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15); return x_32; } } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_evalSolveByElim___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_EXPORT lean_object* l_Lean_Elab_Tactic_SolveByElim_evalSolveByElim___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) { _start: { lean_object* x_15; lean_object* x_16; uint8_t x_17; @@ -7054,7 +7056,7 @@ lean_dec(x_5); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_20 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_evalApplyAssumption___spec__1___rarg(x_14); +x_20 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_SolveByElim_evalApplyAssumption___spec__1___rarg(x_14); return x_20; } else @@ -7063,7 +7065,7 @@ lean_object* x_21; lean_object* x_22; lean_object* x_23; uint8_t x_24; x_21 = lean_unsigned_to_nat(0u); x_22 = l_Lean_Syntax_getArg(x_16, x_21); lean_dec(x_16); -x_23 = l_Lean_Elab_Tactic_parseArgs___closed__4; +x_23 = l_Lean_Elab_Tactic_SolveByElim_parseArgs___closed__4; lean_inc(x_22); x_24 = l_Lean_Syntax_isOfKind(x_22, x_23); if (x_24 == 0) @@ -7082,7 +7084,7 @@ lean_dec(x_5); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_25 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_evalApplyAssumption___spec__1___rarg(x_14); +x_25 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_SolveByElim_evalApplyAssumption___spec__1___rarg(x_14); return x_25; } else @@ -7091,7 +7093,7 @@ lean_object* x_26; lean_object* x_27; lean_object* x_28; x_26 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_26, 0, x_22); x_27 = lean_box(0); -x_28 = l_Lean_Elab_Tactic_evalSolveByElim___lambda__3(x_1, x_5, x_2, x_3, x_27, x_26, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14); +x_28 = l_Lean_Elab_Tactic_SolveByElim_evalSolveByElim___lambda__3(x_1, x_5, x_2, x_3, x_27, x_26, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14); return x_28; } } @@ -7102,12 +7104,12 @@ lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_dec(x_16); x_29 = lean_box(0); x_30 = lean_box(0); -x_31 = l_Lean_Elab_Tactic_evalSolveByElim___lambda__3(x_1, x_5, x_2, x_3, x_30, x_29, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14); +x_31 = l_Lean_Elab_Tactic_SolveByElim_evalSolveByElim___lambda__3(x_1, x_5, x_2, x_3, x_30, x_29, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14); return x_31; } } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_evalSolveByElim___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_EXPORT lean_object* l_Lean_Elab_Tactic_SolveByElim_evalSolveByElim___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) { _start: { lean_object* x_14; lean_object* x_15; uint8_t x_16; @@ -7136,7 +7138,7 @@ lean_dec(x_5); lean_dec(x_4); lean_dec(x_2); lean_dec(x_1); -x_19 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_evalApplyAssumption___spec__1___rarg(x_13); +x_19 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_SolveByElim_evalApplyAssumption___spec__1___rarg(x_13); return x_19; } else @@ -7148,7 +7150,7 @@ lean_dec(x_15); x_22 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_22, 0, x_21); x_23 = lean_box(0); -x_24 = l_Lean_Elab_Tactic_evalSolveByElim___lambda__4(x_1, x_4, x_2, x_23, x_22, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); +x_24 = l_Lean_Elab_Tactic_SolveByElim_evalSolveByElim___lambda__4(x_1, x_4, x_2, x_23, x_22, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); return x_24; } } @@ -7158,12 +7160,12 @@ lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_dec(x_15); x_25 = lean_box(0); x_26 = lean_box(0); -x_27 = l_Lean_Elab_Tactic_evalSolveByElim___lambda__4(x_1, x_4, x_2, x_26, x_25, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); +x_27 = l_Lean_Elab_Tactic_SolveByElim_evalSolveByElim___lambda__4(x_1, x_4, x_2, x_26, x_25, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); return x_27; } } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_evalSolveByElim___lambda__6(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_EXPORT lean_object* l_Lean_Elab_Tactic_SolveByElim_evalSolveByElim___lambda__6(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_13; lean_object* x_14; uint8_t x_15; @@ -7191,7 +7193,7 @@ lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_1); -x_18 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_evalApplyAssumption___spec__1___rarg(x_12); +x_18 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_SolveByElim_evalApplyAssumption___spec__1___rarg(x_12); return x_18; } else @@ -7203,7 +7205,7 @@ lean_dec(x_14); x_21 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_21, 0, x_20); x_22 = lean_box(0); -x_23 = l_Lean_Elab_Tactic_evalSolveByElim___lambda__5(x_1, x_3, x_22, x_21, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +x_23 = l_Lean_Elab_Tactic_SolveByElim_evalSolveByElim___lambda__5(x_1, x_3, x_22, x_21, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); return x_23; } } @@ -7213,12 +7215,12 @@ lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_dec(x_14); x_24 = lean_box(0); x_25 = lean_box(0); -x_26 = l_Lean_Elab_Tactic_evalSolveByElim___lambda__5(x_1, x_3, x_25, x_24, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +x_26 = l_Lean_Elab_Tactic_SolveByElim_evalSolveByElim___lambda__5(x_1, x_3, x_25, x_24, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); return x_26; } } } -static lean_object* _init_l_Lean_Elab_Tactic_evalSolveByElim___closed__1() { +static lean_object* _init_l_Lean_Elab_Tactic_SolveByElim_evalSolveByElim___closed__1() { _start: { lean_object* x_1; @@ -7226,23 +7228,23 @@ x_1 = lean_mk_string_from_bytes("solveByElim", 11); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_evalSolveByElim___closed__2() { +static lean_object* _init_l_Lean_Elab_Tactic_SolveByElim_evalSolveByElim___closed__2() { _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_Elab_Tactic_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_8____closed__1; -x_2 = l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_parseArgs___spec__2___closed__1; -x_3 = l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_parseArgs___spec__2___closed__2; -x_4 = l_Lean_Elab_Tactic_evalSolveByElim___closed__1; +x_1 = l_Lean_Elab_Tactic_SolveByElim_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_8____closed__1; +x_2 = l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_SolveByElim_parseArgs___spec__2___closed__1; +x_3 = l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_SolveByElim_parseArgs___spec__2___closed__2; +x_4 = l_Lean_Elab_Tactic_SolveByElim_evalSolveByElim___closed__1; x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); return x_5; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_evalSolveByElim(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_EXPORT lean_object* l_Lean_Elab_Tactic_SolveByElim_evalSolveByElim(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; uint8_t x_12; -x_11 = l_Lean_Elab_Tactic_evalSolveByElim___closed__2; +x_11 = l_Lean_Elab_Tactic_SolveByElim_evalSolveByElim___closed__2; lean_inc(x_1); x_12 = l_Lean_Syntax_isOfKind(x_1, x_11); if (x_12 == 0) @@ -7257,7 +7259,7 @@ lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_13 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_evalApplyAssumption___spec__1___rarg(x_10); +x_13 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_SolveByElim_evalApplyAssumption___spec__1___rarg(x_10); return x_13; } else @@ -7284,7 +7286,7 @@ lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_18 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_evalApplyAssumption___spec__1___rarg(x_10); +x_18 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_SolveByElim_evalApplyAssumption___spec__1___rarg(x_10); return x_18; } else @@ -7296,7 +7298,7 @@ lean_dec(x_15); x_21 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_21, 0, x_20); x_22 = lean_box(0); -x_23 = l_Lean_Elab_Tactic_evalSolveByElim___lambda__6(x_1, x_22, x_21, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_23 = l_Lean_Elab_Tactic_SolveByElim_evalSolveByElim___lambda__6(x_1, x_22, x_21, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); return x_23; } } @@ -7306,26 +7308,26 @@ lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_dec(x_15); x_24 = lean_box(0); x_25 = lean_box(0); -x_26 = l_Lean_Elab_Tactic_evalSolveByElim___lambda__6(x_1, x_25, x_24, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_26 = l_Lean_Elab_Tactic_SolveByElim_evalSolveByElim___lambda__6(x_1, x_25, x_24, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); return x_26; } } } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_evalSolveByElim___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, 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_Elab_Tactic_SolveByElim_evalSolveByElim___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, 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; lean_object* x_18; x_17 = lean_unbox(x_1); lean_dec(x_1); -x_18 = l_Lean_Elab_Tactic_evalSolveByElim___lambda__1(x_17, 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_18 = l_Lean_Elab_Tactic_SolveByElim_evalSolveByElim___lambda__1(x_17, 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); lean_dec(x_9); lean_dec(x_8); lean_dec(x_5); return x_18; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Tactic_evalSolveByElim___closed__1() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalSolveByElim___closed__1() { _start: { lean_object* x_1; @@ -7333,39 +7335,40 @@ x_1 = lean_mk_string_from_bytes("evalSolveByElim", 15); return x_1; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Tactic_evalSolveByElim___closed__2() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalSolveByElim___closed__2() { _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_Elab_Tactic_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_8____closed__1; -x_2 = l___regBuiltin_Lean_Elab_Tactic_evalApplyAssumption___closed__1; -x_3 = l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_parseArgs___spec__2___closed__2; -x_4 = l___regBuiltin_Lean_Elab_Tactic_evalSolveByElim___closed__1; -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; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; +x_1 = l_Lean_Elab_Tactic_SolveByElim_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_8____closed__1; +x_2 = l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalApplyAssumption___closed__1; +x_3 = l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_SolveByElim_parseArgs___spec__2___closed__2; +x_4 = l_Lean_Elab_Tactic_SolveByElim_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_8____closed__3; +x_5 = l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalSolveByElim___closed__1; +x_6 = l_Lean_Name_mkStr5(x_1, x_2, x_3, x_4, x_5); +return x_6; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Tactic_evalSolveByElim___closed__3() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalSolveByElim___closed__3() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_evalSolveByElim), 10, 0); +x_1 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_SolveByElim_evalSolveByElim), 10, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Tactic_evalSolveByElim(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalSolveByElim(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; -x_2 = l___regBuiltin_Lean_Elab_Tactic_evalApplyAssumption___closed__4; -x_3 = l_Lean_Elab_Tactic_evalSolveByElim___closed__2; -x_4 = l___regBuiltin_Lean_Elab_Tactic_evalSolveByElim___closed__2; -x_5 = l___regBuiltin_Lean_Elab_Tactic_evalSolveByElim___closed__3; +x_2 = l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalApplyAssumption___closed__4; +x_3 = l_Lean_Elab_Tactic_SolveByElim_evalSolveByElim___closed__2; +x_4 = l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalSolveByElim___closed__2; +x_5 = l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalSolveByElim___closed__3; x_6 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_5, x_1); return x_6; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Tactic_evalSolveByElim_declRange___closed__1() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalSolveByElim_declRange___closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -7377,7 +7380,7 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Tactic_evalSolveByElim_declRange___closed__2() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalSolveByElim_declRange___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -7389,13 +7392,13 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Tactic_evalSolveByElim_declRange___closed__3() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalSolveByElim_declRange___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l___regBuiltin_Lean_Elab_Tactic_evalSolveByElim_declRange___closed__1; +x_1 = l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalSolveByElim_declRange___closed__1; x_2 = lean_unsigned_to_nat(0u); -x_3 = l___regBuiltin_Lean_Elab_Tactic_evalSolveByElim_declRange___closed__2; +x_3 = l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalSolveByElim_declRange___closed__2; x_4 = lean_unsigned_to_nat(31u); x_5 = lean_alloc_ctor(0, 4, 0); lean_ctor_set(x_5, 0, x_1); @@ -7405,7 +7408,7 @@ lean_ctor_set(x_5, 3, x_4); return x_5; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Tactic_evalSolveByElim_declRange___closed__4() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalSolveByElim_declRange___closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -7417,7 +7420,7 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Tactic_evalSolveByElim_declRange___closed__5() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalSolveByElim_declRange___closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -7429,13 +7432,13 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Tactic_evalSolveByElim_declRange___closed__6() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalSolveByElim_declRange___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___regBuiltin_Lean_Elab_Tactic_evalSolveByElim_declRange___closed__4; +x_1 = l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalSolveByElim_declRange___closed__4; x_2 = lean_unsigned_to_nat(4u); -x_3 = l___regBuiltin_Lean_Elab_Tactic_evalSolveByElim_declRange___closed__5; +x_3 = l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalSolveByElim_declRange___closed__5; x_4 = lean_unsigned_to_nat(19u); x_5 = lean_alloc_ctor(0, 4, 0); lean_ctor_set(x_5, 0, x_1); @@ -7445,24 +7448,24 @@ lean_ctor_set(x_5, 3, x_4); return x_5; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Tactic_evalSolveByElim_declRange___closed__7() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalSolveByElim_declRange___closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Lean_Elab_Tactic_evalSolveByElim_declRange___closed__3; -x_2 = l___regBuiltin_Lean_Elab_Tactic_evalSolveByElim_declRange___closed__6; +x_1 = l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalSolveByElim_declRange___closed__3; +x_2 = l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalSolveByElim_declRange___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); return x_3; } } -LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Tactic_evalSolveByElim_declRange(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalSolveByElim_declRange(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_2 = l___regBuiltin_Lean_Elab_Tactic_evalSolveByElim___closed__2; -x_3 = l___regBuiltin_Lean_Elab_Tactic_evalSolveByElim_declRange___closed__7; +x_2 = l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalSolveByElim___closed__2; +x_3 = l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalSolveByElim_declRange___closed__7; x_4 = l_Lean_addBuiltinDeclarationRanges(x_2, x_3, x_1); return x_4; } @@ -7480,212 +7483,212 @@ lean_dec_ref(res); res = initialize_Lean_Elab_Tactic_Config(builtin, lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -l_Lean_Elab_Tactic_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_8____closed__1 = _init_l_Lean_Elab_Tactic_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_8____closed__1(); -lean_mark_persistent(l_Lean_Elab_Tactic_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_8____closed__1); -l_Lean_Elab_Tactic_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_8____closed__2 = _init_l_Lean_Elab_Tactic_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_8____closed__2(); -lean_mark_persistent(l_Lean_Elab_Tactic_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_8____closed__2); -l_Lean_Elab_Tactic_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_8____closed__3 = _init_l_Lean_Elab_Tactic_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_8____closed__3(); -lean_mark_persistent(l_Lean_Elab_Tactic_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_8____closed__3); -l_Lean_Elab_Tactic_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_8____closed__4 = _init_l_Lean_Elab_Tactic_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_8____closed__4(); -lean_mark_persistent(l_Lean_Elab_Tactic_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_8____closed__4); -l_Lean_Elab_Tactic_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_8____closed__5 = _init_l_Lean_Elab_Tactic_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_8____closed__5(); -lean_mark_persistent(l_Lean_Elab_Tactic_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_8____closed__5); -l_Lean_Elab_withSaveInfoContext___at_Lean_Elab_Tactic_elabConfig___spec__1___closed__1 = _init_l_Lean_Elab_withSaveInfoContext___at_Lean_Elab_Tactic_elabConfig___spec__1___closed__1(); -lean_mark_persistent(l_Lean_Elab_withSaveInfoContext___at_Lean_Elab_Tactic_elabConfig___spec__1___closed__1); -l_Lean_Elab_Tactic_elabConfig___lambda__4___closed__1 = _init_l_Lean_Elab_Tactic_elabConfig___lambda__4___closed__1(); -lean_mark_persistent(l_Lean_Elab_Tactic_elabConfig___lambda__4___closed__1); -l_Lean_Elab_Tactic_elabConfig___lambda__4___closed__2 = _init_l_Lean_Elab_Tactic_elabConfig___lambda__4___closed__2(); -lean_mark_persistent(l_Lean_Elab_Tactic_elabConfig___lambda__4___closed__2); -l_Lean_Elab_Tactic_elabConfig___closed__1 = _init_l_Lean_Elab_Tactic_elabConfig___closed__1(); -lean_mark_persistent(l_Lean_Elab_Tactic_elabConfig___closed__1); -l_Lean_Elab_Tactic_elabConfig___closed__2 = _init_l_Lean_Elab_Tactic_elabConfig___closed__2(); -lean_mark_persistent(l_Lean_Elab_Tactic_elabConfig___closed__2); -l_Lean_Elab_Tactic_elabConfig___closed__3 = _init_l_Lean_Elab_Tactic_elabConfig___closed__3(); -lean_mark_persistent(l_Lean_Elab_Tactic_elabConfig___closed__3); -l_Lean_Elab_Tactic_elabConfig___closed__4 = _init_l_Lean_Elab_Tactic_elabConfig___closed__4(); -lean_mark_persistent(l_Lean_Elab_Tactic_elabConfig___closed__4); -l_Lean_Elab_Tactic_elabConfig___closed__5 = _init_l_Lean_Elab_Tactic_elabConfig___closed__5(); -lean_mark_persistent(l_Lean_Elab_Tactic_elabConfig___closed__5); -l_Lean_Elab_Tactic_elabConfig___closed__6 = _init_l_Lean_Elab_Tactic_elabConfig___closed__6(); -lean_mark_persistent(l_Lean_Elab_Tactic_elabConfig___closed__6); -l_Lean_Elab_Tactic_elabConfig___closed__7 = _init_l_Lean_Elab_Tactic_elabConfig___closed__7(); -lean_mark_persistent(l_Lean_Elab_Tactic_elabConfig___closed__7); -l_Lean_Elab_Tactic_elabConfig___closed__8 = _init_l_Lean_Elab_Tactic_elabConfig___closed__8(); -lean_mark_persistent(l_Lean_Elab_Tactic_elabConfig___closed__8); -l_Lean_Elab_Tactic_elabConfig___closed__9 = _init_l_Lean_Elab_Tactic_elabConfig___closed__9(); -lean_mark_persistent(l_Lean_Elab_Tactic_elabConfig___closed__9); -l_Lean_Elab_Tactic_elabConfig___closed__10 = _init_l_Lean_Elab_Tactic_elabConfig___closed__10(); -lean_mark_persistent(l_Lean_Elab_Tactic_elabConfig___closed__10); -l_Lean_Elab_Tactic_elabConfig___closed__11 = _init_l_Lean_Elab_Tactic_elabConfig___closed__11(); -lean_mark_persistent(l_Lean_Elab_Tactic_elabConfig___closed__11); -l_Lean_Elab_Tactic_elabConfig___closed__12 = _init_l_Lean_Elab_Tactic_elabConfig___closed__12(); -lean_mark_persistent(l_Lean_Elab_Tactic_elabConfig___closed__12); -l_Lean_Elab_Tactic_elabConfig___closed__13 = _init_l_Lean_Elab_Tactic_elabConfig___closed__13(); -lean_mark_persistent(l_Lean_Elab_Tactic_elabConfig___closed__13); -l_Lean_Elab_Tactic_elabConfig___closed__14 = _init_l_Lean_Elab_Tactic_elabConfig___closed__14(); -lean_mark_persistent(l_Lean_Elab_Tactic_elabConfig___closed__14); -l_Lean_Elab_Tactic_elabConfig___closed__15 = _init_l_Lean_Elab_Tactic_elabConfig___closed__15(); -lean_mark_persistent(l_Lean_Elab_Tactic_elabConfig___closed__15); -l_Lean_Elab_Tactic_elabConfig___closed__16 = _init_l_Lean_Elab_Tactic_elabConfig___closed__16(); -lean_mark_persistent(l_Lean_Elab_Tactic_elabConfig___closed__16); -l_Lean_Elab_Tactic_elabConfig___closed__17 = _init_l_Lean_Elab_Tactic_elabConfig___closed__17(); -lean_mark_persistent(l_Lean_Elab_Tactic_elabConfig___closed__17); -l_Lean_Elab_Tactic_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_189____closed__1 = _init_l_Lean_Elab_Tactic_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_189____closed__1(); -lean_mark_persistent(l_Lean_Elab_Tactic_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_189____closed__1); -l_Lean_Elab_Tactic_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_189____closed__2 = _init_l_Lean_Elab_Tactic_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_189____closed__2(); -lean_mark_persistent(l_Lean_Elab_Tactic_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_189____closed__2); -l_Lean_Elab_Tactic_elabApplyRulesConfig___closed__1 = _init_l_Lean_Elab_Tactic_elabApplyRulesConfig___closed__1(); -lean_mark_persistent(l_Lean_Elab_Tactic_elabApplyRulesConfig___closed__1); -l_Lean_Elab_Tactic_elabApplyRulesConfig___closed__2 = _init_l_Lean_Elab_Tactic_elabApplyRulesConfig___closed__2(); -lean_mark_persistent(l_Lean_Elab_Tactic_elabApplyRulesConfig___closed__2); -l_Lean_Elab_Tactic_elabApplyRulesConfig___closed__3 = _init_l_Lean_Elab_Tactic_elabApplyRulesConfig___closed__3(); -lean_mark_persistent(l_Lean_Elab_Tactic_elabApplyRulesConfig___closed__3); -l_Lean_Elab_Tactic_elabApplyRulesConfig___closed__4 = _init_l_Lean_Elab_Tactic_elabApplyRulesConfig___closed__4(); -lean_mark_persistent(l_Lean_Elab_Tactic_elabApplyRulesConfig___closed__4); -l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_parseArgs___spec__2___closed__1 = _init_l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_parseArgs___spec__2___closed__1(); -lean_mark_persistent(l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_parseArgs___spec__2___closed__1); -l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_parseArgs___spec__2___closed__2 = _init_l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_parseArgs___spec__2___closed__2(); -lean_mark_persistent(l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_parseArgs___spec__2___closed__2); -l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_parseArgs___spec__2___closed__3 = _init_l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_parseArgs___spec__2___closed__3(); -lean_mark_persistent(l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_parseArgs___spec__2___closed__3); -l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_parseArgs___spec__2___closed__4 = _init_l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_parseArgs___spec__2___closed__4(); -lean_mark_persistent(l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_parseArgs___spec__2___closed__4); -l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_parseArgs___spec__2___closed__5 = _init_l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_parseArgs___spec__2___closed__5(); -lean_mark_persistent(l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_parseArgs___spec__2___closed__5); -l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_parseArgs___spec__2___closed__6 = _init_l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_parseArgs___spec__2___closed__6(); -lean_mark_persistent(l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_parseArgs___spec__2___closed__6); -l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_parseArgs___spec__2___closed__7 = _init_l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_parseArgs___spec__2___closed__7(); -lean_mark_persistent(l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_parseArgs___spec__2___closed__7); -l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_parseArgs___spec__2___closed__8 = _init_l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_parseArgs___spec__2___closed__8(); -lean_mark_persistent(l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_parseArgs___spec__2___closed__8); -l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_parseArgs___spec__2___closed__9 = _init_l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_parseArgs___spec__2___closed__9(); -lean_mark_persistent(l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_parseArgs___spec__2___closed__9); -l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_parseArgs___spec__2___closed__10 = _init_l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_parseArgs___spec__2___closed__10(); -lean_mark_persistent(l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_parseArgs___spec__2___closed__10); -l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_parseArgs___spec__2___closed__11 = _init_l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_parseArgs___spec__2___closed__11(); -lean_mark_persistent(l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_parseArgs___spec__2___closed__11); -l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_parseArgs___spec__2___closed__12 = _init_l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_parseArgs___spec__2___closed__12(); -lean_mark_persistent(l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_parseArgs___spec__2___closed__12); -l_Lean_Elab_Tactic_parseArgs___closed__1 = _init_l_Lean_Elab_Tactic_parseArgs___closed__1(); -lean_mark_persistent(l_Lean_Elab_Tactic_parseArgs___closed__1); -l_Lean_Elab_Tactic_parseArgs___closed__2 = _init_l_Lean_Elab_Tactic_parseArgs___closed__2(); -l_Lean_Elab_Tactic_parseArgs___closed__3 = _init_l_Lean_Elab_Tactic_parseArgs___closed__3(); -lean_mark_persistent(l_Lean_Elab_Tactic_parseArgs___closed__3); -l_Lean_Elab_Tactic_parseArgs___closed__4 = _init_l_Lean_Elab_Tactic_parseArgs___closed__4(); -lean_mark_persistent(l_Lean_Elab_Tactic_parseArgs___closed__4); -l_Lean_Elab_Tactic_parseUsing___closed__1 = _init_l_Lean_Elab_Tactic_parseUsing___closed__1(); -lean_mark_persistent(l_Lean_Elab_Tactic_parseUsing___closed__1); -l_Lean_Elab_Tactic_parseUsing___closed__2 = _init_l_Lean_Elab_Tactic_parseUsing___closed__2(); -lean_mark_persistent(l_Lean_Elab_Tactic_parseUsing___closed__2); -l_Lean_Elab_Tactic_processSyntax___closed__1 = _init_l_Lean_Elab_Tactic_processSyntax___closed__1(); -lean_mark_persistent(l_Lean_Elab_Tactic_processSyntax___closed__1); -l_Lean_Elab_Tactic_processSyntax___closed__2 = _init_l_Lean_Elab_Tactic_processSyntax___closed__2(); -lean_mark_persistent(l_Lean_Elab_Tactic_processSyntax___closed__2); -l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_evalApplyAssumption___spec__1___rarg___closed__1 = _init_l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_evalApplyAssumption___spec__1___rarg___closed__1(); -lean_mark_persistent(l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_evalApplyAssumption___spec__1___rarg___closed__1); -l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_evalApplyAssumption___spec__1___rarg___closed__2 = _init_l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_evalApplyAssumption___spec__1___rarg___closed__2(); -lean_mark_persistent(l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_evalApplyAssumption___spec__1___rarg___closed__2); -l_Lean_Elab_Tactic_evalApplyAssumption___closed__1 = _init_l_Lean_Elab_Tactic_evalApplyAssumption___closed__1(); -lean_mark_persistent(l_Lean_Elab_Tactic_evalApplyAssumption___closed__1); -l_Lean_Elab_Tactic_evalApplyAssumption___closed__2 = _init_l_Lean_Elab_Tactic_evalApplyAssumption___closed__2(); -lean_mark_persistent(l_Lean_Elab_Tactic_evalApplyAssumption___closed__2); -l___regBuiltin_Lean_Elab_Tactic_evalApplyAssumption___closed__1 = _init_l___regBuiltin_Lean_Elab_Tactic_evalApplyAssumption___closed__1(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Tactic_evalApplyAssumption___closed__1); -l___regBuiltin_Lean_Elab_Tactic_evalApplyAssumption___closed__2 = _init_l___regBuiltin_Lean_Elab_Tactic_evalApplyAssumption___closed__2(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Tactic_evalApplyAssumption___closed__2); -l___regBuiltin_Lean_Elab_Tactic_evalApplyAssumption___closed__3 = _init_l___regBuiltin_Lean_Elab_Tactic_evalApplyAssumption___closed__3(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Tactic_evalApplyAssumption___closed__3); -l___regBuiltin_Lean_Elab_Tactic_evalApplyAssumption___closed__4 = _init_l___regBuiltin_Lean_Elab_Tactic_evalApplyAssumption___closed__4(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Tactic_evalApplyAssumption___closed__4); -l___regBuiltin_Lean_Elab_Tactic_evalApplyAssumption___closed__5 = _init_l___regBuiltin_Lean_Elab_Tactic_evalApplyAssumption___closed__5(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Tactic_evalApplyAssumption___closed__5); -if (builtin) {res = l___regBuiltin_Lean_Elab_Tactic_evalApplyAssumption(lean_io_mk_world()); +l_Lean_Elab_Tactic_SolveByElim_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_8____closed__1 = _init_l_Lean_Elab_Tactic_SolveByElim_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_8____closed__1(); +lean_mark_persistent(l_Lean_Elab_Tactic_SolveByElim_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_8____closed__1); +l_Lean_Elab_Tactic_SolveByElim_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_8____closed__2 = _init_l_Lean_Elab_Tactic_SolveByElim_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_8____closed__2(); +lean_mark_persistent(l_Lean_Elab_Tactic_SolveByElim_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_8____closed__2); +l_Lean_Elab_Tactic_SolveByElim_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_8____closed__3 = _init_l_Lean_Elab_Tactic_SolveByElim_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_8____closed__3(); +lean_mark_persistent(l_Lean_Elab_Tactic_SolveByElim_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_8____closed__3); +l_Lean_Elab_Tactic_SolveByElim_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_8____closed__4 = _init_l_Lean_Elab_Tactic_SolveByElim_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_8____closed__4(); +lean_mark_persistent(l_Lean_Elab_Tactic_SolveByElim_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_8____closed__4); +l_Lean_Elab_Tactic_SolveByElim_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_8____closed__5 = _init_l_Lean_Elab_Tactic_SolveByElim_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_8____closed__5(); +lean_mark_persistent(l_Lean_Elab_Tactic_SolveByElim_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_8____closed__5); +l_Lean_Elab_withSaveInfoContext___at_Lean_Elab_Tactic_SolveByElim_elabConfig___spec__1___closed__1 = _init_l_Lean_Elab_withSaveInfoContext___at_Lean_Elab_Tactic_SolveByElim_elabConfig___spec__1___closed__1(); +lean_mark_persistent(l_Lean_Elab_withSaveInfoContext___at_Lean_Elab_Tactic_SolveByElim_elabConfig___spec__1___closed__1); +l_Lean_Elab_Tactic_SolveByElim_elabConfig___lambda__4___closed__1 = _init_l_Lean_Elab_Tactic_SolveByElim_elabConfig___lambda__4___closed__1(); +lean_mark_persistent(l_Lean_Elab_Tactic_SolveByElim_elabConfig___lambda__4___closed__1); +l_Lean_Elab_Tactic_SolveByElim_elabConfig___lambda__4___closed__2 = _init_l_Lean_Elab_Tactic_SolveByElim_elabConfig___lambda__4___closed__2(); +lean_mark_persistent(l_Lean_Elab_Tactic_SolveByElim_elabConfig___lambda__4___closed__2); +l_Lean_Elab_Tactic_SolveByElim_elabConfig___closed__1 = _init_l_Lean_Elab_Tactic_SolveByElim_elabConfig___closed__1(); +lean_mark_persistent(l_Lean_Elab_Tactic_SolveByElim_elabConfig___closed__1); +l_Lean_Elab_Tactic_SolveByElim_elabConfig___closed__2 = _init_l_Lean_Elab_Tactic_SolveByElim_elabConfig___closed__2(); +lean_mark_persistent(l_Lean_Elab_Tactic_SolveByElim_elabConfig___closed__2); +l_Lean_Elab_Tactic_SolveByElim_elabConfig___closed__3 = _init_l_Lean_Elab_Tactic_SolveByElim_elabConfig___closed__3(); +lean_mark_persistent(l_Lean_Elab_Tactic_SolveByElim_elabConfig___closed__3); +l_Lean_Elab_Tactic_SolveByElim_elabConfig___closed__4 = _init_l_Lean_Elab_Tactic_SolveByElim_elabConfig___closed__4(); +lean_mark_persistent(l_Lean_Elab_Tactic_SolveByElim_elabConfig___closed__4); +l_Lean_Elab_Tactic_SolveByElim_elabConfig___closed__5 = _init_l_Lean_Elab_Tactic_SolveByElim_elabConfig___closed__5(); +lean_mark_persistent(l_Lean_Elab_Tactic_SolveByElim_elabConfig___closed__5); +l_Lean_Elab_Tactic_SolveByElim_elabConfig___closed__6 = _init_l_Lean_Elab_Tactic_SolveByElim_elabConfig___closed__6(); +lean_mark_persistent(l_Lean_Elab_Tactic_SolveByElim_elabConfig___closed__6); +l_Lean_Elab_Tactic_SolveByElim_elabConfig___closed__7 = _init_l_Lean_Elab_Tactic_SolveByElim_elabConfig___closed__7(); +lean_mark_persistent(l_Lean_Elab_Tactic_SolveByElim_elabConfig___closed__7); +l_Lean_Elab_Tactic_SolveByElim_elabConfig___closed__8 = _init_l_Lean_Elab_Tactic_SolveByElim_elabConfig___closed__8(); +lean_mark_persistent(l_Lean_Elab_Tactic_SolveByElim_elabConfig___closed__8); +l_Lean_Elab_Tactic_SolveByElim_elabConfig___closed__9 = _init_l_Lean_Elab_Tactic_SolveByElim_elabConfig___closed__9(); +lean_mark_persistent(l_Lean_Elab_Tactic_SolveByElim_elabConfig___closed__9); +l_Lean_Elab_Tactic_SolveByElim_elabConfig___closed__10 = _init_l_Lean_Elab_Tactic_SolveByElim_elabConfig___closed__10(); +lean_mark_persistent(l_Lean_Elab_Tactic_SolveByElim_elabConfig___closed__10); +l_Lean_Elab_Tactic_SolveByElim_elabConfig___closed__11 = _init_l_Lean_Elab_Tactic_SolveByElim_elabConfig___closed__11(); +lean_mark_persistent(l_Lean_Elab_Tactic_SolveByElim_elabConfig___closed__11); +l_Lean_Elab_Tactic_SolveByElim_elabConfig___closed__12 = _init_l_Lean_Elab_Tactic_SolveByElim_elabConfig___closed__12(); +lean_mark_persistent(l_Lean_Elab_Tactic_SolveByElim_elabConfig___closed__12); +l_Lean_Elab_Tactic_SolveByElim_elabConfig___closed__13 = _init_l_Lean_Elab_Tactic_SolveByElim_elabConfig___closed__13(); +lean_mark_persistent(l_Lean_Elab_Tactic_SolveByElim_elabConfig___closed__13); +l_Lean_Elab_Tactic_SolveByElim_elabConfig___closed__14 = _init_l_Lean_Elab_Tactic_SolveByElim_elabConfig___closed__14(); +lean_mark_persistent(l_Lean_Elab_Tactic_SolveByElim_elabConfig___closed__14); +l_Lean_Elab_Tactic_SolveByElim_elabConfig___closed__15 = _init_l_Lean_Elab_Tactic_SolveByElim_elabConfig___closed__15(); +lean_mark_persistent(l_Lean_Elab_Tactic_SolveByElim_elabConfig___closed__15); +l_Lean_Elab_Tactic_SolveByElim_elabConfig___closed__16 = _init_l_Lean_Elab_Tactic_SolveByElim_elabConfig___closed__16(); +lean_mark_persistent(l_Lean_Elab_Tactic_SolveByElim_elabConfig___closed__16); +l_Lean_Elab_Tactic_SolveByElim_elabConfig___closed__17 = _init_l_Lean_Elab_Tactic_SolveByElim_elabConfig___closed__17(); +lean_mark_persistent(l_Lean_Elab_Tactic_SolveByElim_elabConfig___closed__17); +l_Lean_Elab_Tactic_SolveByElim_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_189____closed__1 = _init_l_Lean_Elab_Tactic_SolveByElim_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_189____closed__1(); +lean_mark_persistent(l_Lean_Elab_Tactic_SolveByElim_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_189____closed__1); +l_Lean_Elab_Tactic_SolveByElim_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_189____closed__2 = _init_l_Lean_Elab_Tactic_SolveByElim_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_189____closed__2(); +lean_mark_persistent(l_Lean_Elab_Tactic_SolveByElim_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_189____closed__2); +l_Lean_Elab_Tactic_SolveByElim_elabApplyRulesConfig___closed__1 = _init_l_Lean_Elab_Tactic_SolveByElim_elabApplyRulesConfig___closed__1(); +lean_mark_persistent(l_Lean_Elab_Tactic_SolveByElim_elabApplyRulesConfig___closed__1); +l_Lean_Elab_Tactic_SolveByElim_elabApplyRulesConfig___closed__2 = _init_l_Lean_Elab_Tactic_SolveByElim_elabApplyRulesConfig___closed__2(); +lean_mark_persistent(l_Lean_Elab_Tactic_SolveByElim_elabApplyRulesConfig___closed__2); +l_Lean_Elab_Tactic_SolveByElim_elabApplyRulesConfig___closed__3 = _init_l_Lean_Elab_Tactic_SolveByElim_elabApplyRulesConfig___closed__3(); +lean_mark_persistent(l_Lean_Elab_Tactic_SolveByElim_elabApplyRulesConfig___closed__3); +l_Lean_Elab_Tactic_SolveByElim_elabApplyRulesConfig___closed__4 = _init_l_Lean_Elab_Tactic_SolveByElim_elabApplyRulesConfig___closed__4(); +lean_mark_persistent(l_Lean_Elab_Tactic_SolveByElim_elabApplyRulesConfig___closed__4); +l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_SolveByElim_parseArgs___spec__2___closed__1 = _init_l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_SolveByElim_parseArgs___spec__2___closed__1(); +lean_mark_persistent(l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_SolveByElim_parseArgs___spec__2___closed__1); +l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_SolveByElim_parseArgs___spec__2___closed__2 = _init_l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_SolveByElim_parseArgs___spec__2___closed__2(); +lean_mark_persistent(l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_SolveByElim_parseArgs___spec__2___closed__2); +l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_SolveByElim_parseArgs___spec__2___closed__3 = _init_l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_SolveByElim_parseArgs___spec__2___closed__3(); +lean_mark_persistent(l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_SolveByElim_parseArgs___spec__2___closed__3); +l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_SolveByElim_parseArgs___spec__2___closed__4 = _init_l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_SolveByElim_parseArgs___spec__2___closed__4(); +lean_mark_persistent(l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_SolveByElim_parseArgs___spec__2___closed__4); +l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_SolveByElim_parseArgs___spec__2___closed__5 = _init_l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_SolveByElim_parseArgs___spec__2___closed__5(); +lean_mark_persistent(l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_SolveByElim_parseArgs___spec__2___closed__5); +l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_SolveByElim_parseArgs___spec__2___closed__6 = _init_l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_SolveByElim_parseArgs___spec__2___closed__6(); +lean_mark_persistent(l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_SolveByElim_parseArgs___spec__2___closed__6); +l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_SolveByElim_parseArgs___spec__2___closed__7 = _init_l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_SolveByElim_parseArgs___spec__2___closed__7(); +lean_mark_persistent(l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_SolveByElim_parseArgs___spec__2___closed__7); +l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_SolveByElim_parseArgs___spec__2___closed__8 = _init_l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_SolveByElim_parseArgs___spec__2___closed__8(); +lean_mark_persistent(l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_SolveByElim_parseArgs___spec__2___closed__8); +l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_SolveByElim_parseArgs___spec__2___closed__9 = _init_l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_SolveByElim_parseArgs___spec__2___closed__9(); +lean_mark_persistent(l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_SolveByElim_parseArgs___spec__2___closed__9); +l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_SolveByElim_parseArgs___spec__2___closed__10 = _init_l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_SolveByElim_parseArgs___spec__2___closed__10(); +lean_mark_persistent(l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_SolveByElim_parseArgs___spec__2___closed__10); +l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_SolveByElim_parseArgs___spec__2___closed__11 = _init_l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_SolveByElim_parseArgs___spec__2___closed__11(); +lean_mark_persistent(l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_SolveByElim_parseArgs___spec__2___closed__11); +l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_SolveByElim_parseArgs___spec__2___closed__12 = _init_l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_SolveByElim_parseArgs___spec__2___closed__12(); +lean_mark_persistent(l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_SolveByElim_parseArgs___spec__2___closed__12); +l_Lean_Elab_Tactic_SolveByElim_parseArgs___closed__1 = _init_l_Lean_Elab_Tactic_SolveByElim_parseArgs___closed__1(); +lean_mark_persistent(l_Lean_Elab_Tactic_SolveByElim_parseArgs___closed__1); +l_Lean_Elab_Tactic_SolveByElim_parseArgs___closed__2 = _init_l_Lean_Elab_Tactic_SolveByElim_parseArgs___closed__2(); +l_Lean_Elab_Tactic_SolveByElim_parseArgs___closed__3 = _init_l_Lean_Elab_Tactic_SolveByElim_parseArgs___closed__3(); +lean_mark_persistent(l_Lean_Elab_Tactic_SolveByElim_parseArgs___closed__3); +l_Lean_Elab_Tactic_SolveByElim_parseArgs___closed__4 = _init_l_Lean_Elab_Tactic_SolveByElim_parseArgs___closed__4(); +lean_mark_persistent(l_Lean_Elab_Tactic_SolveByElim_parseArgs___closed__4); +l_Lean_Elab_Tactic_SolveByElim_parseUsing___closed__1 = _init_l_Lean_Elab_Tactic_SolveByElim_parseUsing___closed__1(); +lean_mark_persistent(l_Lean_Elab_Tactic_SolveByElim_parseUsing___closed__1); +l_Lean_Elab_Tactic_SolveByElim_parseUsing___closed__2 = _init_l_Lean_Elab_Tactic_SolveByElim_parseUsing___closed__2(); +lean_mark_persistent(l_Lean_Elab_Tactic_SolveByElim_parseUsing___closed__2); +l_Lean_Elab_Tactic_SolveByElim_processSyntax___closed__1 = _init_l_Lean_Elab_Tactic_SolveByElim_processSyntax___closed__1(); +lean_mark_persistent(l_Lean_Elab_Tactic_SolveByElim_processSyntax___closed__1); +l_Lean_Elab_Tactic_SolveByElim_processSyntax___closed__2 = _init_l_Lean_Elab_Tactic_SolveByElim_processSyntax___closed__2(); +lean_mark_persistent(l_Lean_Elab_Tactic_SolveByElim_processSyntax___closed__2); +l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_SolveByElim_evalApplyAssumption___spec__1___rarg___closed__1 = _init_l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_SolveByElim_evalApplyAssumption___spec__1___rarg___closed__1(); +lean_mark_persistent(l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_SolveByElim_evalApplyAssumption___spec__1___rarg___closed__1); +l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_SolveByElim_evalApplyAssumption___spec__1___rarg___closed__2 = _init_l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_SolveByElim_evalApplyAssumption___spec__1___rarg___closed__2(); +lean_mark_persistent(l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_SolveByElim_evalApplyAssumption___spec__1___rarg___closed__2); +l_Lean_Elab_Tactic_SolveByElim_evalApplyAssumption___closed__1 = _init_l_Lean_Elab_Tactic_SolveByElim_evalApplyAssumption___closed__1(); +lean_mark_persistent(l_Lean_Elab_Tactic_SolveByElim_evalApplyAssumption___closed__1); +l_Lean_Elab_Tactic_SolveByElim_evalApplyAssumption___closed__2 = _init_l_Lean_Elab_Tactic_SolveByElim_evalApplyAssumption___closed__2(); +lean_mark_persistent(l_Lean_Elab_Tactic_SolveByElim_evalApplyAssumption___closed__2); +l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalApplyAssumption___closed__1 = _init_l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalApplyAssumption___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalApplyAssumption___closed__1); +l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalApplyAssumption___closed__2 = _init_l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalApplyAssumption___closed__2(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalApplyAssumption___closed__2); +l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalApplyAssumption___closed__3 = _init_l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalApplyAssumption___closed__3(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalApplyAssumption___closed__3); +l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalApplyAssumption___closed__4 = _init_l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalApplyAssumption___closed__4(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalApplyAssumption___closed__4); +l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalApplyAssumption___closed__5 = _init_l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalApplyAssumption___closed__5(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalApplyAssumption___closed__5); +if (builtin) {res = l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalApplyAssumption(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}l___regBuiltin_Lean_Elab_Tactic_evalApplyAssumption_declRange___closed__1 = _init_l___regBuiltin_Lean_Elab_Tactic_evalApplyAssumption_declRange___closed__1(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Tactic_evalApplyAssumption_declRange___closed__1); -l___regBuiltin_Lean_Elab_Tactic_evalApplyAssumption_declRange___closed__2 = _init_l___regBuiltin_Lean_Elab_Tactic_evalApplyAssumption_declRange___closed__2(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Tactic_evalApplyAssumption_declRange___closed__2); -l___regBuiltin_Lean_Elab_Tactic_evalApplyAssumption_declRange___closed__3 = _init_l___regBuiltin_Lean_Elab_Tactic_evalApplyAssumption_declRange___closed__3(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Tactic_evalApplyAssumption_declRange___closed__3); -l___regBuiltin_Lean_Elab_Tactic_evalApplyAssumption_declRange___closed__4 = _init_l___regBuiltin_Lean_Elab_Tactic_evalApplyAssumption_declRange___closed__4(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Tactic_evalApplyAssumption_declRange___closed__4); -l___regBuiltin_Lean_Elab_Tactic_evalApplyAssumption_declRange___closed__5 = _init_l___regBuiltin_Lean_Elab_Tactic_evalApplyAssumption_declRange___closed__5(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Tactic_evalApplyAssumption_declRange___closed__5); -l___regBuiltin_Lean_Elab_Tactic_evalApplyAssumption_declRange___closed__6 = _init_l___regBuiltin_Lean_Elab_Tactic_evalApplyAssumption_declRange___closed__6(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Tactic_evalApplyAssumption_declRange___closed__6); -l___regBuiltin_Lean_Elab_Tactic_evalApplyAssumption_declRange___closed__7 = _init_l___regBuiltin_Lean_Elab_Tactic_evalApplyAssumption_declRange___closed__7(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Tactic_evalApplyAssumption_declRange___closed__7); -if (builtin) {res = l___regBuiltin_Lean_Elab_Tactic_evalApplyAssumption_declRange(lean_io_mk_world()); +}l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalApplyAssumption_declRange___closed__1 = _init_l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalApplyAssumption_declRange___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalApplyAssumption_declRange___closed__1); +l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalApplyAssumption_declRange___closed__2 = _init_l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalApplyAssumption_declRange___closed__2(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalApplyAssumption_declRange___closed__2); +l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalApplyAssumption_declRange___closed__3 = _init_l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalApplyAssumption_declRange___closed__3(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalApplyAssumption_declRange___closed__3); +l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalApplyAssumption_declRange___closed__4 = _init_l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalApplyAssumption_declRange___closed__4(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalApplyAssumption_declRange___closed__4); +l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalApplyAssumption_declRange___closed__5 = _init_l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalApplyAssumption_declRange___closed__5(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalApplyAssumption_declRange___closed__5); +l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalApplyAssumption_declRange___closed__6 = _init_l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalApplyAssumption_declRange___closed__6(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalApplyAssumption_declRange___closed__6); +l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalApplyAssumption_declRange___closed__7 = _init_l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalApplyAssumption_declRange___closed__7(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalApplyAssumption_declRange___closed__7); +if (builtin) {res = l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalApplyAssumption_declRange(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}l_Lean_Elab_Tactic_evalApplyRules___closed__1 = _init_l_Lean_Elab_Tactic_evalApplyRules___closed__1(); -lean_mark_persistent(l_Lean_Elab_Tactic_evalApplyRules___closed__1); -l_Lean_Elab_Tactic_evalApplyRules___closed__2 = _init_l_Lean_Elab_Tactic_evalApplyRules___closed__2(); -lean_mark_persistent(l_Lean_Elab_Tactic_evalApplyRules___closed__2); -l___regBuiltin_Lean_Elab_Tactic_evalApplyRules___closed__1 = _init_l___regBuiltin_Lean_Elab_Tactic_evalApplyRules___closed__1(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Tactic_evalApplyRules___closed__1); -l___regBuiltin_Lean_Elab_Tactic_evalApplyRules___closed__2 = _init_l___regBuiltin_Lean_Elab_Tactic_evalApplyRules___closed__2(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Tactic_evalApplyRules___closed__2); -l___regBuiltin_Lean_Elab_Tactic_evalApplyRules___closed__3 = _init_l___regBuiltin_Lean_Elab_Tactic_evalApplyRules___closed__3(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Tactic_evalApplyRules___closed__3); -if (builtin) {res = l___regBuiltin_Lean_Elab_Tactic_evalApplyRules(lean_io_mk_world()); +}l_Lean_Elab_Tactic_SolveByElim_evalApplyRules___closed__1 = _init_l_Lean_Elab_Tactic_SolveByElim_evalApplyRules___closed__1(); +lean_mark_persistent(l_Lean_Elab_Tactic_SolveByElim_evalApplyRules___closed__1); +l_Lean_Elab_Tactic_SolveByElim_evalApplyRules___closed__2 = _init_l_Lean_Elab_Tactic_SolveByElim_evalApplyRules___closed__2(); +lean_mark_persistent(l_Lean_Elab_Tactic_SolveByElim_evalApplyRules___closed__2); +l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalApplyRules___closed__1 = _init_l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalApplyRules___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalApplyRules___closed__1); +l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalApplyRules___closed__2 = _init_l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalApplyRules___closed__2(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalApplyRules___closed__2); +l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalApplyRules___closed__3 = _init_l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalApplyRules___closed__3(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalApplyRules___closed__3); +if (builtin) {res = l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalApplyRules(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}l___regBuiltin_Lean_Elab_Tactic_evalApplyRules_docString___closed__1 = _init_l___regBuiltin_Lean_Elab_Tactic_evalApplyRules_docString___closed__1(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Tactic_evalApplyRules_docString___closed__1); -if (builtin) {res = l___regBuiltin_Lean_Elab_Tactic_evalApplyRules_docString(lean_io_mk_world()); +}l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalApplyRules_docString___closed__1 = _init_l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalApplyRules_docString___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalApplyRules_docString___closed__1); +if (builtin) {res = l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalApplyRules_docString(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}l___regBuiltin_Lean_Elab_Tactic_evalApplyRules_declRange___closed__1 = _init_l___regBuiltin_Lean_Elab_Tactic_evalApplyRules_declRange___closed__1(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Tactic_evalApplyRules_declRange___closed__1); -l___regBuiltin_Lean_Elab_Tactic_evalApplyRules_declRange___closed__2 = _init_l___regBuiltin_Lean_Elab_Tactic_evalApplyRules_declRange___closed__2(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Tactic_evalApplyRules_declRange___closed__2); -l___regBuiltin_Lean_Elab_Tactic_evalApplyRules_declRange___closed__3 = _init_l___regBuiltin_Lean_Elab_Tactic_evalApplyRules_declRange___closed__3(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Tactic_evalApplyRules_declRange___closed__3); -l___regBuiltin_Lean_Elab_Tactic_evalApplyRules_declRange___closed__4 = _init_l___regBuiltin_Lean_Elab_Tactic_evalApplyRules_declRange___closed__4(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Tactic_evalApplyRules_declRange___closed__4); -l___regBuiltin_Lean_Elab_Tactic_evalApplyRules_declRange___closed__5 = _init_l___regBuiltin_Lean_Elab_Tactic_evalApplyRules_declRange___closed__5(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Tactic_evalApplyRules_declRange___closed__5); -l___regBuiltin_Lean_Elab_Tactic_evalApplyRules_declRange___closed__6 = _init_l___regBuiltin_Lean_Elab_Tactic_evalApplyRules_declRange___closed__6(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Tactic_evalApplyRules_declRange___closed__6); -l___regBuiltin_Lean_Elab_Tactic_evalApplyRules_declRange___closed__7 = _init_l___regBuiltin_Lean_Elab_Tactic_evalApplyRules_declRange___closed__7(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Tactic_evalApplyRules_declRange___closed__7); -if (builtin) {res = l___regBuiltin_Lean_Elab_Tactic_evalApplyRules_declRange(lean_io_mk_world()); +}l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalApplyRules_declRange___closed__1 = _init_l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalApplyRules_declRange___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalApplyRules_declRange___closed__1); +l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalApplyRules_declRange___closed__2 = _init_l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalApplyRules_declRange___closed__2(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalApplyRules_declRange___closed__2); +l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalApplyRules_declRange___closed__3 = _init_l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalApplyRules_declRange___closed__3(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalApplyRules_declRange___closed__3); +l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalApplyRules_declRange___closed__4 = _init_l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalApplyRules_declRange___closed__4(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalApplyRules_declRange___closed__4); +l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalApplyRules_declRange___closed__5 = _init_l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalApplyRules_declRange___closed__5(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalApplyRules_declRange___closed__5); +l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalApplyRules_declRange___closed__6 = _init_l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalApplyRules_declRange___closed__6(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalApplyRules_declRange___closed__6); +l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalApplyRules_declRange___closed__7 = _init_l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalApplyRules_declRange___closed__7(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalApplyRules_declRange___closed__7); +if (builtin) {res = l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalApplyRules_declRange(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}l_Lean_Elab_Tactic_evalSolveByElim___lambda__1___closed__1 = _init_l_Lean_Elab_Tactic_evalSolveByElim___lambda__1___closed__1(); -lean_mark_persistent(l_Lean_Elab_Tactic_evalSolveByElim___lambda__1___closed__1); -l_Lean_Elab_Tactic_evalSolveByElim___lambda__1___closed__2 = _init_l_Lean_Elab_Tactic_evalSolveByElim___lambda__1___closed__2(); -lean_mark_persistent(l_Lean_Elab_Tactic_evalSolveByElim___lambda__1___closed__2); -l_Lean_Elab_Tactic_evalSolveByElim___closed__1 = _init_l_Lean_Elab_Tactic_evalSolveByElim___closed__1(); -lean_mark_persistent(l_Lean_Elab_Tactic_evalSolveByElim___closed__1); -l_Lean_Elab_Tactic_evalSolveByElim___closed__2 = _init_l_Lean_Elab_Tactic_evalSolveByElim___closed__2(); -lean_mark_persistent(l_Lean_Elab_Tactic_evalSolveByElim___closed__2); -l___regBuiltin_Lean_Elab_Tactic_evalSolveByElim___closed__1 = _init_l___regBuiltin_Lean_Elab_Tactic_evalSolveByElim___closed__1(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Tactic_evalSolveByElim___closed__1); -l___regBuiltin_Lean_Elab_Tactic_evalSolveByElim___closed__2 = _init_l___regBuiltin_Lean_Elab_Tactic_evalSolveByElim___closed__2(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Tactic_evalSolveByElim___closed__2); -l___regBuiltin_Lean_Elab_Tactic_evalSolveByElim___closed__3 = _init_l___regBuiltin_Lean_Elab_Tactic_evalSolveByElim___closed__3(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Tactic_evalSolveByElim___closed__3); -if (builtin) {res = l___regBuiltin_Lean_Elab_Tactic_evalSolveByElim(lean_io_mk_world()); +}l_Lean_Elab_Tactic_SolveByElim_evalSolveByElim___lambda__1___closed__1 = _init_l_Lean_Elab_Tactic_SolveByElim_evalSolveByElim___lambda__1___closed__1(); +lean_mark_persistent(l_Lean_Elab_Tactic_SolveByElim_evalSolveByElim___lambda__1___closed__1); +l_Lean_Elab_Tactic_SolveByElim_evalSolveByElim___lambda__1___closed__2 = _init_l_Lean_Elab_Tactic_SolveByElim_evalSolveByElim___lambda__1___closed__2(); +lean_mark_persistent(l_Lean_Elab_Tactic_SolveByElim_evalSolveByElim___lambda__1___closed__2); +l_Lean_Elab_Tactic_SolveByElim_evalSolveByElim___closed__1 = _init_l_Lean_Elab_Tactic_SolveByElim_evalSolveByElim___closed__1(); +lean_mark_persistent(l_Lean_Elab_Tactic_SolveByElim_evalSolveByElim___closed__1); +l_Lean_Elab_Tactic_SolveByElim_evalSolveByElim___closed__2 = _init_l_Lean_Elab_Tactic_SolveByElim_evalSolveByElim___closed__2(); +lean_mark_persistent(l_Lean_Elab_Tactic_SolveByElim_evalSolveByElim___closed__2); +l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalSolveByElim___closed__1 = _init_l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalSolveByElim___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalSolveByElim___closed__1); +l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalSolveByElim___closed__2 = _init_l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalSolveByElim___closed__2(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalSolveByElim___closed__2); +l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalSolveByElim___closed__3 = _init_l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalSolveByElim___closed__3(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalSolveByElim___closed__3); +if (builtin) {res = l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalSolveByElim(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}l___regBuiltin_Lean_Elab_Tactic_evalSolveByElim_declRange___closed__1 = _init_l___regBuiltin_Lean_Elab_Tactic_evalSolveByElim_declRange___closed__1(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Tactic_evalSolveByElim_declRange___closed__1); -l___regBuiltin_Lean_Elab_Tactic_evalSolveByElim_declRange___closed__2 = _init_l___regBuiltin_Lean_Elab_Tactic_evalSolveByElim_declRange___closed__2(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Tactic_evalSolveByElim_declRange___closed__2); -l___regBuiltin_Lean_Elab_Tactic_evalSolveByElim_declRange___closed__3 = _init_l___regBuiltin_Lean_Elab_Tactic_evalSolveByElim_declRange___closed__3(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Tactic_evalSolveByElim_declRange___closed__3); -l___regBuiltin_Lean_Elab_Tactic_evalSolveByElim_declRange___closed__4 = _init_l___regBuiltin_Lean_Elab_Tactic_evalSolveByElim_declRange___closed__4(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Tactic_evalSolveByElim_declRange___closed__4); -l___regBuiltin_Lean_Elab_Tactic_evalSolveByElim_declRange___closed__5 = _init_l___regBuiltin_Lean_Elab_Tactic_evalSolveByElim_declRange___closed__5(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Tactic_evalSolveByElim_declRange___closed__5); -l___regBuiltin_Lean_Elab_Tactic_evalSolveByElim_declRange___closed__6 = _init_l___regBuiltin_Lean_Elab_Tactic_evalSolveByElim_declRange___closed__6(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Tactic_evalSolveByElim_declRange___closed__6); -l___regBuiltin_Lean_Elab_Tactic_evalSolveByElim_declRange___closed__7 = _init_l___regBuiltin_Lean_Elab_Tactic_evalSolveByElim_declRange___closed__7(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Tactic_evalSolveByElim_declRange___closed__7); -if (builtin) {res = l___regBuiltin_Lean_Elab_Tactic_evalSolveByElim_declRange(lean_io_mk_world()); +}l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalSolveByElim_declRange___closed__1 = _init_l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalSolveByElim_declRange___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalSolveByElim_declRange___closed__1); +l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalSolveByElim_declRange___closed__2 = _init_l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalSolveByElim_declRange___closed__2(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalSolveByElim_declRange___closed__2); +l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalSolveByElim_declRange___closed__3 = _init_l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalSolveByElim_declRange___closed__3(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalSolveByElim_declRange___closed__3); +l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalSolveByElim_declRange___closed__4 = _init_l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalSolveByElim_declRange___closed__4(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalSolveByElim_declRange___closed__4); +l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalSolveByElim_declRange___closed__5 = _init_l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalSolveByElim_declRange___closed__5(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalSolveByElim_declRange___closed__5); +l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalSolveByElim_declRange___closed__6 = _init_l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalSolveByElim_declRange___closed__6(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalSolveByElim_declRange___closed__6); +l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalSolveByElim_declRange___closed__7 = _init_l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalSolveByElim_declRange___closed__7(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalSolveByElim_declRange___closed__7); +if (builtin) {res = l___regBuiltin_Lean_Elab_Tactic_SolveByElim_evalSolveByElim_declRange(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)); diff --git a/stage0/stdlib/Lean/Expr.c b/stage0/stdlib/Lean/Expr.c index 66a1df881e..e01e2c74c1 100644 --- a/stage0/stdlib/Lean/Expr.c +++ b/stage0/stdlib/Lean/Expr.c @@ -36,6 +36,7 @@ static lean_object* l___private_Lean_Expr_0__Lean_reprLiteral____x40_Lean_Expr__ LEAN_EXPORT lean_object* l_Lean_instReprData__1___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_instBEqFVarId; LEAN_EXPORT lean_object* l_Lean_mkLet___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Expr_getRevArg_x21_x27___closed__1; LEAN_EXPORT lean_object* l_Lean_Expr_isHeadBetaTargetFn___boxed(lean_object*, lean_object*); uint8_t lean_uint32_to_uint8(uint32_t); LEAN_EXPORT lean_object* l_Lean_Expr_looseBVarRange(lean_object*); @@ -126,12 +127,14 @@ LEAN_EXPORT uint8_t l_Lean_Expr_isLet(lean_object*); LEAN_EXPORT lean_object* l_Lean_Expr_getAppFn___boxed(lean_object*); static lean_object* l___private_Lean_Expr_0__Lean_reprExpr____x40_Lean_Expr___hyg_2961____closed__26; LEAN_EXPORT uint8_t l_Lean_Expr_isAppOfArity(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT uint8_t l_Lean_Expr_isRawNatLit(lean_object*); static lean_object* l___private_Lean_Expr_0__Lean_reprMVarId____x40_Lean_Expr___hyg_1952____closed__4; LEAN_EXPORT lean_object* l_Lean_inaccessible_x3f___boxed(lean_object*); static lean_object* l_Lean_mkNatLit___closed__6; LEAN_EXPORT uint8_t l_Lean_Expr_isOptParam(lean_object*); static lean_object* l_Lean_Expr_updateLambdaE_x21___closed__1; lean_object* l_String_quote(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Expr_getArg_x21_x27___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT uint8_t l_Lean_Expr_isApp(lean_object*); static lean_object* l_Lean_Expr_ctorName___closed__1; LEAN_EXPORT lean_object* l_Lean_Expr_binderInfo___boxed(lean_object*); @@ -210,7 +213,6 @@ LEAN_EXPORT lean_object* l_Lean_instReprData__1___lambda__1___boxed(lean_object* static lean_object* l_Lean_Expr_getRevArg_x21___closed__1; static lean_object* l_Lean_Expr_getRevArg_x21___closed__2; LEAN_EXPORT lean_object* l_Lean_Expr_mkAppData___boxed(lean_object*, lean_object*); -LEAN_EXPORT uint8_t l_Lean_Expr_isNatLit(lean_object*); static lean_object* l_Lean_Expr_ctorName___closed__2; static lean_object* l___private_Lean_Expr_0__Lean_Expr_updateProj_x21Impl___closed__3; LEAN_EXPORT lean_object* l_Lean_Expr_getBoundedAppFn(lean_object*, lean_object*); @@ -263,6 +265,7 @@ LEAN_EXPORT uint8_t l_Lean_isPatternWithRef(lean_object*); static lean_object* l___private_Lean_Expr_0__Lean_Expr_updateLambda_x21Impl___closed__2; LEAN_EXPORT lean_object* l_Lean_Expr_isMData___boxed(lean_object*); static lean_object* l___private_Lean_Expr_0__Lean_reprBinderInfo____x40_Lean_Expr___hyg_415____closed__18; +LEAN_EXPORT lean_object* l_Lean_Expr_getAppFn_x27___boxed(lean_object*); LEAN_EXPORT lean_object* l_Lean_Expr_quickLt___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* lean_expr_mk_bvar(lean_object*); LEAN_EXPORT lean_object* l_Lean_Expr_abstractRange___boxed(lean_object*, lean_object*, lean_object*); @@ -412,7 +415,6 @@ static lean_object* l___private_Lean_Expr_0__Lean_reprExpr____x40_Lean_Expr___hy extern uint64_t l_instInhabitedUInt64; lean_object* lean_expr_instantiate(lean_object*, lean_object*); LEAN_EXPORT uint8_t l_Lean_Expr_isMVar(lean_object*); -LEAN_EXPORT lean_object* l_Lean_Expr_isNatLit___boxed(lean_object*); static lean_object* l_Lean_mkNot___closed__2; LEAN_EXPORT lean_object* l_Lean_Expr_appArg_x21___boxed(lean_object*); lean_object* lean_uint64_to_nat(uint64_t); @@ -638,6 +640,7 @@ LEAN_EXPORT lean_object* l_Lean_Expr_getRevArg_x21___boxed(lean_object*, lean_ob static lean_object* l_Lean_Expr_getAppArgsN_loop___closed__1; LEAN_EXPORT lean_object* l_Lean_mkOr(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Expr_eta(lean_object*); +static lean_object* l_Lean_Expr_getRevArg_x21_x27___closed__2; static lean_object* l_Lean_mkInaccessible___closed__1; LEAN_EXPORT lean_object* l_Lean_instMVarIdSetInhabited; LEAN_EXPORT lean_object* l_Lean_Expr_getAppNumArgs(lean_object*); @@ -746,6 +749,7 @@ LEAN_EXPORT lean_object* l_Lean_Expr_Data_hasLevelMVar___boxed(lean_object*); lean_object* lean_array_set(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Expr_hasLooseBVarInExplicitDomain___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Expr_mdataExpr_x21___boxed(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Expr_getAppFn_x27(lean_object*); uint64_t l_Lean_Name_hash___override(lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Expr_0__Lean_hashFVarId____x40_Lean_Expr___hyg_1674____boxed(lean_object*); LEAN_EXPORT lean_object* l_Lean_Expr_constName_x21___boxed(lean_object*); @@ -831,6 +835,7 @@ LEAN_EXPORT lean_object* l_Lean_Expr_hasMVar___boxed(lean_object*); LEAN_EXPORT lean_object* l_Lean_mkApp(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_RBNode_ins___at_Lean_MVarIdSet_insert___spec__2(lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Name_quickCmp(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Expr_isRawNatLit___boxed(lean_object*); lean_object* lean_uint8_to_nat(uint8_t); LEAN_EXPORT lean_object* l_Lean_mkLambdaEx___boxed(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_patternAnnotation_x3f(lean_object*); @@ -868,6 +873,7 @@ LEAN_EXPORT lean_object* l_Lean_instReprMVarId__1___boxed(lean_object*, lean_obj static lean_object* l_Lean_Expr_bindingName_x21___closed__1; LEAN_EXPORT lean_object* l_Lean_mkFVar(lean_object*); LEAN_EXPORT lean_object* l_Lean_instReprLiteral; +LEAN_EXPORT lean_object* l_Lean_Expr_getArg_x21_x27(lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Expr_0__Lean_reprExpr____x40_Lean_Expr___hyg_2961____closed__17; LEAN_EXPORT lean_object* l_Lean_Expr_bindingBody_x21(lean_object*); uint32_t lean_uint32_add(uint32_t, uint32_t); @@ -1000,6 +1006,7 @@ static lean_object* l___private_Lean_Expr_0__Lean_reprExpr____x40_Lean_Expr___hy LEAN_EXPORT uint8_t l___private_Lean_Expr_0__Lean_beqLiteral____x40_Lean_Expr___hyg_31_(lean_object*, lean_object*); LEAN_EXPORT uint64_t l_Lean_instInhabitedData__1; LEAN_EXPORT lean_object* l_Lean_mkFreshLMVarId___rarg(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Expr_getRevArg_x21_x27(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Expr_constName___boxed(lean_object*); LEAN_EXPORT uint8_t l_Lean_Expr_hasLevelMVar(lean_object*); LEAN_EXPORT lean_object* l_Lean_mkFreshFVarId___rarg(lean_object*, lean_object*); @@ -1018,6 +1025,7 @@ LEAN_EXPORT lean_object* l_Lean_mkFreshFVarId(lean_object*); static lean_object* l_Lean_Expr_instBEqExpr___closed__1; static lean_object* l_Lean_Expr_isSemiOutParam___closed__2; static lean_object* l_Lean_Expr_ctorName___closed__8; +LEAN_EXPORT lean_object* l_Lean_Expr_getRevArg_x21_x27___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Expr_0__Lean_Expr_updateForall_x21Impl___boxed(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Expr_etaExpandedStrict_x3f(lean_object*); LEAN_EXPORT lean_object* l_Lean_BinderInfo_hash___boxed(lean_object*); @@ -23599,7 +23607,7 @@ return x_4; } } } -LEAN_EXPORT uint8_t l_Lean_Expr_isNatLit(lean_object* x_1) { +LEAN_EXPORT uint8_t l_Lean_Expr_isRawNatLit(lean_object* x_1) { _start: { if (lean_obj_tag(x_1) == 9) @@ -23627,11 +23635,11 @@ return x_5; } } } -LEAN_EXPORT lean_object* l_Lean_Expr_isNatLit___boxed(lean_object* x_1) { +LEAN_EXPORT lean_object* l_Lean_Expr_isRawNatLit___boxed(lean_object* x_1) { _start: { uint8_t x_2; lean_object* x_3; -x_2 = l_Lean_Expr_isNatLit(x_1); +x_2 = l_Lean_Expr_isRawNatLit(x_1); lean_dec(x_1); x_3 = lean_box(x_2); return x_3; @@ -23756,7 +23764,7 @@ return x_7; else { uint8_t x_8; -x_8 = l_Lean_Expr_isNatLit(x_3); +x_8 = l_Lean_Expr_isRawNatLit(x_3); return x_8; } } @@ -24891,6 +24899,41 @@ lean_dec(x_1); return x_2; } } +LEAN_EXPORT lean_object* l_Lean_Expr_getAppFn_x27(lean_object* x_1) { +_start: +{ +switch (lean_obj_tag(x_1)) { +case 5: +{ +lean_object* x_2; +x_2 = lean_ctor_get(x_1, 0); +x_1 = x_2; +goto _start; +} +case 10: +{ +lean_object* x_4; +x_4 = lean_ctor_get(x_1, 1); +x_1 = x_4; +goto _start; +} +default: +{ +lean_inc(x_1); +return x_1; +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_Expr_getAppFn_x27___boxed(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = l_Lean_Expr_getAppFn_x27(x_1); +lean_dec(x_1); +return x_2; +} +} LEAN_EXPORT uint8_t l_Lean_Expr_isAppOf(lean_object* x_1, lean_object* x_2) { _start: { @@ -25661,7 +25704,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_getAppArgsN_loop___closed__1; -x_3 = lean_unsigned_to_nat(1167u); +x_3 = lean_unsigned_to_nat(1175u); x_4 = lean_unsigned_to_nat(27u); x_5 = l_Lean_Expr_getAppArgsN_loop___closed__2; x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); @@ -26015,7 +26058,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_getRevArg_x21___closed__1; -x_3 = lean_unsigned_to_nat(1208u); +x_3 = lean_unsigned_to_nat(1216u); x_4 = lean_unsigned_to_nat(20u); x_5 = l_Lean_Expr_getRevArg_x21___closed__2; x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); @@ -26068,6 +26111,82 @@ lean_dec(x_1); return x_3; } } +static lean_object* _init_l_Lean_Expr_getRevArg_x21_x27___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("Lean.Expr.getRevArg!'", 21); +return x_1; +} +} +static lean_object* _init_l_Lean_Expr_getRevArg_x21_x27___closed__2() { +_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_getRevArg_x21_x27___closed__1; +x_3 = lean_unsigned_to_nat(1223u); +x_4 = lean_unsigned_to_nat(20u); +x_5 = l_Lean_Expr_getRevArg_x21___closed__2; +x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); +return x_6; +} +} +LEAN_EXPORT lean_object* l_Lean_Expr_getRevArg_x21_x27(lean_object* x_1, lean_object* x_2) { +_start: +{ +switch (lean_obj_tag(x_1)) { +case 5: +{ +lean_object* x_3; lean_object* x_4; lean_object* x_5; uint8_t x_6; +x_3 = lean_ctor_get(x_1, 0); +x_4 = lean_ctor_get(x_1, 1); +x_5 = lean_unsigned_to_nat(0u); +x_6 = lean_nat_dec_eq(x_2, x_5); +if (x_6 == 0) +{ +lean_object* x_7; lean_object* x_8; +x_7 = lean_unsigned_to_nat(1u); +x_8 = lean_nat_sub(x_2, x_7); +lean_dec(x_2); +x_1 = x_3; +x_2 = x_8; +goto _start; +} +else +{ +lean_dec(x_2); +lean_inc(x_4); +return x_4; +} +} +case 10: +{ +lean_object* x_10; +x_10 = lean_ctor_get(x_1, 1); +x_1 = x_10; +goto _start; +} +default: +{ +lean_object* x_12; lean_object* x_13; +lean_dec(x_2); +x_12 = l_Lean_Expr_getRevArg_x21_x27___closed__2; +x_13 = l_panic___at_Lean_Expr_appFn_x21___spec__1(x_12); +return x_13; +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_Expr_getRevArg_x21_x27___boxed(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; +x_3 = l_Lean_Expr_getRevArg_x21_x27(x_1, x_2); +lean_dec(x_1); +return x_3; +} +} LEAN_EXPORT lean_object* l_Lean_Expr_getArg_x21(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { @@ -26091,6 +26210,29 @@ lean_dec(x_1); return x_4; } } +LEAN_EXPORT lean_object* l_Lean_Expr_getArg_x21_x27(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; +x_4 = lean_nat_sub(x_3, x_2); +x_5 = lean_unsigned_to_nat(1u); +x_6 = lean_nat_sub(x_4, x_5); +lean_dec(x_4); +x_7 = l_Lean_Expr_getRevArg_x21_x27(x_1, x_6); +return x_7; +} +} +LEAN_EXPORT lean_object* l_Lean_Expr_getArg_x21_x27___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +lean_object* x_4; +x_4 = l_Lean_Expr_getArg_x21_x27(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_Lean_Expr_getArgD(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { @@ -28093,7 +28235,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(1633u); +x_3 = lean_unsigned_to_nat(1652u); 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); @@ -28172,7 +28314,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(1644u); +x_3 = lean_unsigned_to_nat(1663u); 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); @@ -28233,7 +28375,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(1649u); +x_3 = lean_unsigned_to_nat(1668u); 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); @@ -28299,7 +28441,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(1660u); +x_3 = lean_unsigned_to_nat(1679u); 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); @@ -28370,7 +28512,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(1671u); +x_3 = lean_unsigned_to_nat(1690u); 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); @@ -28438,7 +28580,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(1682u); +x_3 = lean_unsigned_to_nat(1701u); 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); @@ -28509,7 +28651,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(1697u); +x_3 = lean_unsigned_to_nat(1716u); 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); @@ -28612,7 +28754,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(1708u); +x_3 = lean_unsigned_to_nat(1727u); 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); @@ -28718,7 +28860,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(1717u); +x_3 = lean_unsigned_to_nat(1736u); 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); @@ -28821,7 +28963,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(1728u); +x_3 = lean_unsigned_to_nat(1747u); 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); @@ -28919,7 +29061,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(1737u); +x_3 = lean_unsigned_to_nat(1756u); 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); @@ -31354,6 +31496,10 @@ l_Lean_Expr_getRevArg_x21___closed__2 = _init_l_Lean_Expr_getRevArg_x21___closed lean_mark_persistent(l_Lean_Expr_getRevArg_x21___closed__2); l_Lean_Expr_getRevArg_x21___closed__3 = _init_l_Lean_Expr_getRevArg_x21___closed__3(); lean_mark_persistent(l_Lean_Expr_getRevArg_x21___closed__3); +l_Lean_Expr_getRevArg_x21_x27___closed__1 = _init_l_Lean_Expr_getRevArg_x21_x27___closed__1(); +lean_mark_persistent(l_Lean_Expr_getRevArg_x21_x27___closed__1); +l_Lean_Expr_getRevArg_x21_x27___closed__2 = _init_l_Lean_Expr_getRevArg_x21_x27___closed__2(); +lean_mark_persistent(l_Lean_Expr_getRevArg_x21_x27___closed__2); l_Lean_Expr_replaceFVar___closed__1 = _init_l_Lean_Expr_replaceFVar___closed__1(); lean_mark_persistent(l_Lean_Expr_replaceFVar___closed__1); l_Lean_Expr_instToStringExpr___closed__1 = _init_l_Lean_Expr_instToStringExpr___closed__1(); diff --git a/stage0/stdlib/Lean/Meta.c b/stage0/stdlib/Lean/Meta.c index 47f987c1ba..a95a686984 100644 --- a/stage0/stdlib/Lean/Meta.c +++ b/stage0/stdlib/Lean/Meta.c @@ -1,6 +1,6 @@ // Lean compiler output // Module: Lean.Meta -// Imports: Lean.Meta.Basic Lean.Meta.LevelDefEq Lean.Meta.WHNF Lean.Meta.InferType Lean.Meta.FunInfo Lean.Meta.ExprDefEq Lean.Meta.DecLevel Lean.Meta.DiscrTree Lean.Meta.Reduce Lean.Meta.Instances Lean.Meta.AbstractMVars Lean.Meta.SynthInstance Lean.Meta.AppBuilder Lean.Meta.Tactic Lean.Meta.KAbstract Lean.Meta.RecursorInfo Lean.Meta.GeneralizeTelescope Lean.Meta.Match Lean.Meta.ReduceEval Lean.Meta.Closure Lean.Meta.AbstractNestedProofs Lean.Meta.ForEachExpr Lean.Meta.Transform Lean.Meta.PPGoal Lean.Meta.UnificationHint Lean.Meta.Inductive Lean.Meta.SizeOf Lean.Meta.IndPredBelow Lean.Meta.Coe Lean.Meta.CollectFVars Lean.Meta.GeneralizeVars Lean.Meta.Injective Lean.Meta.Structure Lean.Meta.Constructions Lean.Meta.CongrTheorems Lean.Meta.Eqns Lean.Meta.ExprLens Lean.Meta.ExprTraverse Lean.Meta.Eval Lean.Meta.CoeAttr Lean.Meta.Iterator +// Imports: Lean.Meta.Basic Lean.Meta.LevelDefEq Lean.Meta.WHNF Lean.Meta.InferType Lean.Meta.FunInfo Lean.Meta.ExprDefEq Lean.Meta.DecLevel Lean.Meta.DiscrTree Lean.Meta.Reduce Lean.Meta.Instances Lean.Meta.AbstractMVars Lean.Meta.SynthInstance Lean.Meta.AppBuilder Lean.Meta.Tactic Lean.Meta.KAbstract Lean.Meta.RecursorInfo Lean.Meta.GeneralizeTelescope Lean.Meta.Match Lean.Meta.ReduceEval Lean.Meta.Closure Lean.Meta.AbstractNestedProofs Lean.Meta.ForEachExpr Lean.Meta.Transform Lean.Meta.PPGoal Lean.Meta.UnificationHint Lean.Meta.Inductive Lean.Meta.SizeOf Lean.Meta.IndPredBelow Lean.Meta.Coe Lean.Meta.CollectFVars Lean.Meta.GeneralizeVars Lean.Meta.Injective Lean.Meta.Structure Lean.Meta.Constructions Lean.Meta.CongrTheorems Lean.Meta.Eqns Lean.Meta.ExprLens Lean.Meta.ExprTraverse Lean.Meta.Eval Lean.Meta.CoeAttr Lean.Meta.Iterator Lean.Meta.LazyDiscrTree Lean.Meta.LitValues #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -54,6 +54,8 @@ lean_object* initialize_Lean_Meta_ExprTraverse(uint8_t builtin, lean_object*); lean_object* initialize_Lean_Meta_Eval(uint8_t builtin, lean_object*); lean_object* initialize_Lean_Meta_CoeAttr(uint8_t builtin, lean_object*); lean_object* initialize_Lean_Meta_Iterator(uint8_t builtin, lean_object*); +lean_object* initialize_Lean_Meta_LazyDiscrTree(uint8_t builtin, lean_object*); +lean_object* initialize_Lean_Meta_LitValues(uint8_t builtin, lean_object*); static bool _G_initialized = false; LEAN_EXPORT lean_object* initialize_Lean_Meta(uint8_t builtin, lean_object* w) { lean_object * res; @@ -182,6 +184,12 @@ lean_dec_ref(res); res = initialize_Lean_Meta_Iterator(builtin, lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +res = initialize_Lean_Meta_LazyDiscrTree(builtin, lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +res = initialize_Lean_Meta_LitValues(builtin, lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); return lean_io_result_mk_ok(lean_box(0)); } #ifdef __cplusplus diff --git a/stage0/stdlib/Lean/Meta/Basic.c b/stage0/stdlib/Lean/Meta/Basic.c index a4d3a6a0b3..9a7a4fb029 100644 --- a/stage0/stdlib/Lean/Meta/Basic.c +++ b/stage0/stdlib/Lean/Meta/Basic.c @@ -134,7 +134,6 @@ static lean_object* l___private_Lean_Meta_Basic_0__Lean_Meta_mkLeveErrorMessageC LEAN_EXPORT lean_object* l_Lean_Meta_withAtLeastTransparency___rarg___lambda__1(uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at_Lean_Meta_withLocalDecls_loop___spec__1___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_forallMetaTelescope(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_initFn____x40_Lean_Meta_Basic___hyg_14922____closed__6; LEAN_EXPORT lean_object* l_Lean_Meta_getPostponed___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_withNewMCtxDepth___rarg___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_Meta_processPostponed___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -206,6 +205,7 @@ lean_object* l_Lean_Expr_proj___override(lean_object*, lean_object*, lean_object lean_object* l_Lean_Expr_bvar___override(lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_mkFreshLevelMVarsFor___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_array_fget(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_forallTelescope___at_Lean_Meta_mapForallTelescope_x27___spec__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_DefEqCache_instances___default; LEAN_EXPORT lean_object* l_Lean_Meta_withLocalInstances___rarg___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Meta_instMonadEnvMetaM___closed__3; @@ -305,7 +305,6 @@ static lean_object* l___private_Lean_Meta_Basic_0__Lean_Meta_mkLeveErrorMessageC LEAN_EXPORT lean_object* l_Lean_Meta_isInductivePredicate___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_modifyInferTypeCache(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_Cache_inferType___default; -static lean_object* l_Lean_initFn____x40_Lean_Meta_Basic___hyg_14922____closed__5; static lean_object* l_Lean_Meta_instInhabitedCache___closed__4; LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDeclD(lean_object*); LEAN_EXPORT lean_object* l_Lean_FVarId_findDecl_x3f(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -408,7 +407,6 @@ LEAN_EXPORT lean_object* l_Lean_Meta_instMetaEvalMetaM(lean_object*); lean_object* l_Lean_ppExprWithInfos(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_lambdaTelescope___rarg___lambda__1(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_withLocalInstances___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_initFn____x40_Lean_Meta_Basic___hyg_14922____closed__3; 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*); static lean_object* l_Lean_Meta_Cache_synthInstance___default___closed__6; static lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_Basic___hyg_1614____closed__3; @@ -423,6 +421,7 @@ LEAN_EXPORT lean_object* l___private_Lean_Meta_Basic_0__Lean_Meta_forallMetaTele lean_object* l_Lean_Option_get___at_Lean_profiler_threshold_getSecs___spec__1(lean_object*, lean_object*); lean_object* l_Lean_ConstantInfo_numLevelParams(lean_object*); static lean_object* l___private_Lean_Meta_Basic_0__Lean_Meta_mkLeveErrorMessageCore___lambda__3___closed__1; +LEAN_EXPORT lean_object* l_Lean_Meta_mapForallTelescope_x27(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_mkLevelStuckErrorMessage(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_setPostponed___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_orElse___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -451,7 +450,9 @@ LEAN_EXPORT lean_object* l_Lean_Meta_isReadOnlyExprMVar___boxed(lean_object*, le LEAN_EXPORT lean_object* l_Lean_Meta_ParamInfo_isExplicit___boxed(lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_isReadOnlyOrSyntheticOpaqueExprMVar___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_isDefEqGuarded(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_initFn____x40_Lean_Meta_Basic___hyg_15046____closed__1; LEAN_EXPORT lean_object* l_Lean_Meta_liftMkBindingM___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_initFn____x40_Lean_Meta_Basic___hyg_15046____closed__5; LEAN_EXPORT lean_object* l_MonadExcept_ofExcept___at_Lean_Meta_processPostponed___spec__6___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_getTransparency___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Meta_instMetaEvalMetaM___rarg___closed__8; @@ -530,6 +531,7 @@ static lean_object* l_Lean_Meta_instInhabitedInfoCacheKey___closed__2; static lean_object* l_Lean_Meta_DefEqCache_reducible___default___closed__3; LEAN_EXPORT lean_object* l_Lean_Meta_fullApproxDefEq___rarg___lambda__1(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_Lean_initFn____x40_Lean_Meta_Basic___hyg_15046____closed__6; LEAN_EXPORT lean_object* l_Lean_Meta_getTransparency(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Basic_0__Lean_Meta_lambdaTelescopeImp_process(lean_object*); static lean_object* l_Lean_Meta_instAlternativeMetaM___closed__2; @@ -541,7 +543,6 @@ static lean_object* l___private_Lean_Meta_Basic_0__Lean_Meta_mkLeveErrorMessageC static lean_object* l_Lean_Meta_instInhabitedCache___closed__3; LEAN_EXPORT lean_object* l___private_Lean_Meta_Basic_0__Lean_Meta_withExistingLocalDeclsImp(lean_object*); static lean_object* l_Lean_Meta_liftMkBindingM___rarg___closed__3; -static lean_object* l_Lean_initFn____x40_Lean_Meta_Basic___hyg_14922____closed__2; uint64_t l_Lean_Expr_hash(lean_object*); uint8_t l_Lean_BinderInfo_isInstImplicit(uint8_t); LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDeclD___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -580,6 +581,7 @@ LEAN_EXPORT lean_object* l_Lean_Meta_approxDefEq___rarg___lambda__1(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_throwError___at_Lean_Meta_mkConstWithFreshMVarLevels___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Meta_Basic_0__Lean_Meta_processPostponedStep___spec__4(uint8_t, 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_initFn____x40_Lean_Meta_Basic___hyg_15046____closed__2; LEAN_EXPORT lean_object* l_Lean_Meta_withoutProofIrrelevance___rarg___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_withoutProofIrrelevance___rarg(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_getParamNames___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -618,9 +620,9 @@ lean_object* l_Lean_MetavarContext_MkBinding_elimMVarDeps(lean_object*, lean_obj static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Meta_Basic_0__Lean_Meta_processPostponedStep___spec__5___closed__3; static lean_object* l_Lean_Meta_processPostponed_loop___closed__4; LEAN_EXPORT lean_object* l_Lean_Meta_ppExpr___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_initFn____x40_Lean_Meta_Basic___hyg_15046____closed__3; LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDeclsD(lean_object*); static lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_Basic___hyg_1614____closed__15; -LEAN_EXPORT lean_object* l_Lean_initFn____x40_Lean_Meta_Basic___hyg_14922_(lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_isListLevelDefEqAux(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_MVarId_isReadOnlyOrSyntheticOpaque(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(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -641,6 +643,7 @@ LEAN_EXPORT lean_object* l___private_Lean_Meta_Basic_0__Lean_Meta_withNewFVar___ static lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_Basic___hyg_1614____closed__16; LEAN_EXPORT lean_object* l_Lean_Meta_approxDefEq___rarg(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Meta_withInstImplicitAsImplict___spec__2(lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_mapForallTelescope(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_getParamNames(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); size_t lean_usize_mod(size_t, size_t); LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Meta_processPostponed___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_object*, lean_object*); @@ -664,6 +667,7 @@ LEAN_EXPORT lean_object* l___private_Lean_Meta_Basic_0__Lean_Meta_forallTelescop lean_object* l_Lean_Level_collectMVars(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_filterMapM___at_Lean_Meta_withInstImplicitAsImplict___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_instantiateMVars___at___private_Lean_Meta_Basic_0__Lean_Meta_isClassApp_x3f___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_mapForallTelescope___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_LocalDecl_isImplementationDetail(lean_object*); static lean_object* l_Lean_Meta_Cache_funInfo___default___closed__1; static lean_object* l_Lean_Meta_instMetaEvalMetaM___rarg___closed__10; @@ -676,6 +680,7 @@ double l_Float_ofScientific(lean_object*, uint8_t, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_withAtLeastTransparency___rarg___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Basic_0__Lean_Meta_forallTelescopeReducingAuxAux_process(lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_MetaM_run_x27___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_forallTelescope___at_Lean_Meta_mapForallTelescope_x27___spec__1(lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Basic_0__Lean_Meta_isClassQuick_x3f(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_LocalDecl_userName(lean_object*); static lean_object* l_Lean_Meta_State_postponed___default___closed__1; @@ -706,6 +711,7 @@ LEAN_EXPORT lean_object* l_Lean_Meta_resetZetaDeltaFVarIds(lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_withLCtx___at___private_Lean_Meta_Basic_0__Lean_Meta_mkLeveErrorMessageCore___spec__2___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Basic_0__Lean_Meta_lambdaTelescopeImp_process___rarg(lean_object*, uint8_t, 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_Meta_Cache_inferType___default___closed__1; +LEAN_EXPORT lean_object* l_Lean_Meta_mapForallTelescope___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_withLetDecl___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_mkFunUnit___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_withNewLocalInstances(lean_object*); @@ -740,6 +746,7 @@ LEAN_EXPORT lean_object* l_Lean_PersistentArray_forIn___at___private_Lean_Meta_B LEAN_EXPORT lean_object* l_Lean_Meta_forallTelescope___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_withNewLocalInstance___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_getResetPostponed___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_initFn____x40_Lean_Meta_Basic___hyg_15046_(lean_object*); LEAN_EXPORT lean_object* l_Lean_throwError___at_Lean_Meta_mkConstWithFreshMVarLevels___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_mapErrorImp(lean_object*); uint8_t lean_nat_dec_eq(lean_object*, lean_object*); @@ -755,7 +762,9 @@ uint8_t lean_nat_dec_lt(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_qsort_sort___at_Lean_Meta_sortFVarIds___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Basic_0__Lean_Meta_lambdaTelescopeImp___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_environment_main_module(lean_object*); +static lean_object* l_Lean_initFn____x40_Lean_Meta_Basic___hyg_15046____closed__7; LEAN_EXPORT lean_object* l_Lean_Meta_mkFreshExprMVar(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_mapForallTelescope_x27___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_throwMaxRecDepthAt___at_Lean_Meta_withIncRecDepth___spec__1___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_throwError___at_Lean_Meta_setInlineAttribute___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_instOrElseMetaM(lean_object*); @@ -837,12 +846,10 @@ LEAN_EXPORT lean_object* l_Lean_Meta_processPostponed_loop___lambda__1(uint8_t, LEAN_EXPORT lean_object* l_Lean_Meta_throwUnknownFVar(lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Basic_0__Lean_Meta_withNewBinderInfosImp(lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_instMetaEvalMetaM___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_initFn____x40_Lean_Meta_Basic___hyg_14922____closed__7; lean_object* l_Lean_MetavarContext_setMVarType(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Meta_throwIsDefEqStuck___rarg___closed__1; LEAN_EXPORT lean_object* l___private_Lean_Meta_Basic_0__Lean_Meta_forallTelescopeReducingAuxAux___rarg___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_InfoCacheKey_instHashableInfoCacheKey___boxed(lean_object*); -static lean_object* l_Lean_initFn____x40_Lean_Meta_Basic___hyg_14922____closed__4; LEAN_EXPORT lean_object* l_Lean_Meta_map2MetaM___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_Meta_shouldReduceAll___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_elimMVarDeps(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -965,6 +972,7 @@ LEAN_EXPORT lean_object* l_Lean_Meta_findMVarDecl_x3f___boxed(lean_object*, lean LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Meta_withLocalDeclsD___spec__1___rarg(size_t, size_t, lean_object*); static lean_object* l_Lean_withTraceNode___at_Lean_Meta_processPostponed___spec__1___lambda__5___closed__1; LEAN_EXPORT lean_object* l_Lean_throwError___at_Lean_Meta_liftMkBindingM___spec__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_initFn____x40_Lean_Meta_Basic___hyg_15046____closed__4; LEAN_EXPORT lean_object* l_Lean_Meta_processPostponed_loop___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_getLocalDeclFromUserName___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_modifyPostponed___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -1028,7 +1036,6 @@ LEAN_EXPORT lean_object* l_Lean_throwMaxRecDepthAt___at_Lean_Meta_withIncRecDept LEAN_EXPORT lean_object* l_Lean_Meta_withoutProofIrrelevance(lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_mkConstWithFreshMVarLevels(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT uint8_t l_Lean_Meta_Config_quasiPatternApprox___default; -static lean_object* l_Lean_initFn____x40_Lean_Meta_Basic___hyg_14922____closed__1; lean_object* l_Lean_Expr_mvarId_x21(lean_object*); static lean_object* l_Lean_Meta_Cache_synthInstance___default___closed__4; LEAN_EXPORT lean_object* l_Lean_Meta_MetaM_toIO___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -18567,6 +18574,206 @@ x_2 = lean_alloc_closure((void*)(l_Lean_Meta_forallTelescope___rarg), 5, 0); return x_2; } } +LEAN_EXPORT lean_object* l_Lean_Meta_forallTelescope___at_Lean_Meta_mapForallTelescope_x27___spec__1___rarg(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; uint8_t x_9; lean_object* x_10; +x_8 = lean_box(0); +x_9 = 0; +x_10 = l___private_Lean_Meta_Basic_0__Lean_Meta_forallTelescopeReducingAuxAux___rarg(x_9, x_8, x_1, x_2, x_3, x_4, x_5, x_6, x_7); +if (lean_obj_tag(x_10) == 0) +{ +uint8_t x_11; +x_11 = !lean_is_exclusive(x_10); +if (x_11 == 0) +{ +return x_10; +} +else +{ +lean_object* x_12; lean_object* x_13; lean_object* x_14; +x_12 = lean_ctor_get(x_10, 0); +x_13 = lean_ctor_get(x_10, 1); +lean_inc(x_13); +lean_inc(x_12); +lean_dec(x_10); +x_14 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_14, 0, x_12); +lean_ctor_set(x_14, 1, x_13); +return x_14; +} +} +else +{ +uint8_t x_15; +x_15 = !lean_is_exclusive(x_10); +if (x_15 == 0) +{ +return x_10; +} +else +{ +lean_object* x_16; lean_object* x_17; lean_object* x_18; +x_16 = lean_ctor_get(x_10, 0); +x_17 = lean_ctor_get(x_10, 1); +lean_inc(x_17); +lean_inc(x_16); +lean_dec(x_10); +x_18 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_18, 0, x_16); +lean_ctor_set(x_18, 1, x_17); +return x_18; +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_forallTelescope___at_Lean_Meta_mapForallTelescope_x27___spec__1(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = lean_alloc_closure((void*)(l_Lean_Meta_forallTelescope___at_Lean_Meta_mapForallTelescope_x27___spec__1___rarg), 7, 0); +return x_2; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_mapForallTelescope_x27___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) { +_start: +{ +lean_object* x_10; lean_object* x_11; +lean_inc(x_3); +x_10 = l_Lean_mkAppN(x_1, x_3); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +x_11 = lean_apply_7(x_2, x_4, x_10, x_5, x_6, x_7, x_8, x_9); +if (lean_obj_tag(x_11) == 0) +{ +lean_object* x_12; lean_object* x_13; uint8_t x_14; uint8_t x_15; uint8_t x_16; lean_object* x_17; +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); +x_14 = 0; +x_15 = 1; +x_16 = 1; +x_17 = l_Lean_Meta_mkLambdaFVars(x_3, x_12, x_14, x_15, x_16, x_5, x_6, x_7, x_8, x_13); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +return x_17; +} +else +{ +uint8_t x_18; +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_3); +x_18 = !lean_is_exclusive(x_11); +if (x_18 == 0) +{ +return x_11; +} +else +{ +lean_object* x_19; lean_object* x_20; lean_object* x_21; +x_19 = lean_ctor_get(x_11, 0); +x_20 = lean_ctor_get(x_11, 1); +lean_inc(x_20); +lean_inc(x_19); +lean_dec(x_11); +x_21 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_21, 0, x_19); +lean_ctor_set(x_21, 1, x_20); +return x_21; +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_mapForallTelescope_x27(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_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +lean_inc(x_2); +x_8 = lean_infer_type(x_2, x_3, x_4, x_5, x_6, x_7); +if (lean_obj_tag(x_8) == 0) +{ +lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; +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_alloc_closure((void*)(l_Lean_Meta_mapForallTelescope_x27___lambda__1), 9, 2); +lean_closure_set(x_11, 0, x_2); +lean_closure_set(x_11, 1, x_1); +x_12 = l_Lean_Meta_forallTelescope___at_Lean_Meta_mapForallTelescope_x27___spec__1___rarg(x_9, x_11, x_3, x_4, x_5, x_6, x_10); +return x_12; +} +else +{ +uint8_t x_13; +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +x_13 = !lean_is_exclusive(x_8); +if (x_13 == 0) +{ +return x_8; +} +else +{ +lean_object* x_14; lean_object* x_15; lean_object* x_16; +x_14 = lean_ctor_get(x_8, 0); +x_15 = lean_ctor_get(x_8, 1); +lean_inc(x_15); +lean_inc(x_14); +lean_dec(x_8); +x_16 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_16, 0, x_14); +lean_ctor_set(x_16, 1, x_15); +return x_16; +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_mapForallTelescope___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) { +_start: +{ +lean_object* x_9; +x_9 = lean_apply_6(x_1, x_3, x_4, x_5, x_6, x_7, x_8); +return x_9; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_mapForallTelescope(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; +x_8 = lean_alloc_closure((void*)(l_Lean_Meta_mapForallTelescope___lambda__1___boxed), 8, 1); +lean_closure_set(x_8, 0, x_1); +x_9 = l_Lean_Meta_mapForallTelescope_x27(x_8, x_2, x_3, x_4, x_5, x_6, x_7); +return x_9; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_mapForallTelescope___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) { +_start: +{ +lean_object* x_9; +x_9 = l_Lean_Meta_mapForallTelescope___lambda__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +lean_dec(x_2); +return x_9; +} +} LEAN_EXPORT lean_object* l___private_Lean_Meta_Basic_0__Lean_Meta_forallTelescopeReducingImp___rarg(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: { @@ -39121,7 +39328,7 @@ lean_dec(x_3); return x_9; } } -static lean_object* _init_l_Lean_initFn____x40_Lean_Meta_Basic___hyg_14922____closed__1() { +static lean_object* _init_l_Lean_initFn____x40_Lean_Meta_Basic___hyg_15046____closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -39131,73 +39338,73 @@ x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_initFn____x40_Lean_Meta_Basic___hyg_14922____closed__2() { +static lean_object* _init_l_Lean_initFn____x40_Lean_Meta_Basic___hyg_15046____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_initFn____x40_Lean_Meta_Basic___hyg_14922____closed__1; +x_1 = l_Lean_initFn____x40_Lean_Meta_Basic___hyg_15046____closed__1; x_2 = l_Lean_Meta_initFn____x40_Lean_Meta_Basic___hyg_1614____closed__8; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_initFn____x40_Lean_Meta_Basic___hyg_14922____closed__3() { +static lean_object* _init_l_Lean_initFn____x40_Lean_Meta_Basic___hyg_15046____closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_initFn____x40_Lean_Meta_Basic___hyg_14922____closed__2; +x_1 = l_Lean_initFn____x40_Lean_Meta_Basic___hyg_15046____closed__2; x_2 = l_Lean_Meta_initFn____x40_Lean_Meta_Basic___hyg_1614____closed__3; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_initFn____x40_Lean_Meta_Basic___hyg_14922____closed__4() { +static lean_object* _init_l_Lean_initFn____x40_Lean_Meta_Basic___hyg_15046____closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_initFn____x40_Lean_Meta_Basic___hyg_14922____closed__3; +x_1 = l_Lean_initFn____x40_Lean_Meta_Basic___hyg_15046____closed__3; x_2 = l_Lean_Meta_initFn____x40_Lean_Meta_Basic___hyg_1614____closed__1; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_initFn____x40_Lean_Meta_Basic___hyg_14922____closed__5() { +static lean_object* _init_l_Lean_initFn____x40_Lean_Meta_Basic___hyg_15046____closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_initFn____x40_Lean_Meta_Basic___hyg_14922____closed__4; +x_1 = l_Lean_initFn____x40_Lean_Meta_Basic___hyg_15046____closed__4; x_2 = l_Lean_Meta_initFn____x40_Lean_Meta_Basic___hyg_1614____closed__12; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_initFn____x40_Lean_Meta_Basic___hyg_14922____closed__6() { +static lean_object* _init_l_Lean_initFn____x40_Lean_Meta_Basic___hyg_15046____closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_initFn____x40_Lean_Meta_Basic___hyg_14922____closed__5; +x_1 = l_Lean_initFn____x40_Lean_Meta_Basic___hyg_15046____closed__5; x_2 = l_Lean_Meta_initFn____x40_Lean_Meta_Basic___hyg_1614____closed__14; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_initFn____x40_Lean_Meta_Basic___hyg_14922____closed__7() { +static lean_object* _init_l_Lean_initFn____x40_Lean_Meta_Basic___hyg_15046____closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_initFn____x40_Lean_Meta_Basic___hyg_14922____closed__6; -x_2 = lean_unsigned_to_nat(14922u); +x_1 = l_Lean_initFn____x40_Lean_Meta_Basic___hyg_15046____closed__6; +x_2 = lean_unsigned_to_nat(15046u); x_3 = l_Lean_Name_num___override(x_1, x_2); return x_3; } } -LEAN_EXPORT lean_object* l_Lean_initFn____x40_Lean_Meta_Basic___hyg_14922_(lean_object* x_1) { +LEAN_EXPORT lean_object* l_Lean_initFn____x40_Lean_Meta_Basic___hyg_15046_(lean_object* x_1) { _start: { lean_object* x_2; uint8_t x_3; lean_object* x_4; lean_object* x_5; x_2 = l_Lean_Meta_processPostponed_loop___closed__3; x_3 = 0; -x_4 = l_Lean_initFn____x40_Lean_Meta_Basic___hyg_14922____closed__7; +x_4 = l_Lean_initFn____x40_Lean_Meta_Basic___hyg_15046____closed__7; x_5 = l_Lean_registerTraceClass(x_2, x_3, x_4, x_1); return x_5; } @@ -39669,21 +39876,21 @@ l_Lean_Meta_checkpointDefEq___closed__1 = _init_l_Lean_Meta_checkpointDefEq___cl lean_mark_persistent(l_Lean_Meta_checkpointDefEq___closed__1); l_Lean_Meta_checkpointDefEq___closed__2 = _init_l_Lean_Meta_checkpointDefEq___closed__2(); lean_mark_persistent(l_Lean_Meta_checkpointDefEq___closed__2); -l_Lean_initFn____x40_Lean_Meta_Basic___hyg_14922____closed__1 = _init_l_Lean_initFn____x40_Lean_Meta_Basic___hyg_14922____closed__1(); -lean_mark_persistent(l_Lean_initFn____x40_Lean_Meta_Basic___hyg_14922____closed__1); -l_Lean_initFn____x40_Lean_Meta_Basic___hyg_14922____closed__2 = _init_l_Lean_initFn____x40_Lean_Meta_Basic___hyg_14922____closed__2(); -lean_mark_persistent(l_Lean_initFn____x40_Lean_Meta_Basic___hyg_14922____closed__2); -l_Lean_initFn____x40_Lean_Meta_Basic___hyg_14922____closed__3 = _init_l_Lean_initFn____x40_Lean_Meta_Basic___hyg_14922____closed__3(); -lean_mark_persistent(l_Lean_initFn____x40_Lean_Meta_Basic___hyg_14922____closed__3); -l_Lean_initFn____x40_Lean_Meta_Basic___hyg_14922____closed__4 = _init_l_Lean_initFn____x40_Lean_Meta_Basic___hyg_14922____closed__4(); -lean_mark_persistent(l_Lean_initFn____x40_Lean_Meta_Basic___hyg_14922____closed__4); -l_Lean_initFn____x40_Lean_Meta_Basic___hyg_14922____closed__5 = _init_l_Lean_initFn____x40_Lean_Meta_Basic___hyg_14922____closed__5(); -lean_mark_persistent(l_Lean_initFn____x40_Lean_Meta_Basic___hyg_14922____closed__5); -l_Lean_initFn____x40_Lean_Meta_Basic___hyg_14922____closed__6 = _init_l_Lean_initFn____x40_Lean_Meta_Basic___hyg_14922____closed__6(); -lean_mark_persistent(l_Lean_initFn____x40_Lean_Meta_Basic___hyg_14922____closed__6); -l_Lean_initFn____x40_Lean_Meta_Basic___hyg_14922____closed__7 = _init_l_Lean_initFn____x40_Lean_Meta_Basic___hyg_14922____closed__7(); -lean_mark_persistent(l_Lean_initFn____x40_Lean_Meta_Basic___hyg_14922____closed__7); -if (builtin) {res = l_Lean_initFn____x40_Lean_Meta_Basic___hyg_14922_(lean_io_mk_world()); +l_Lean_initFn____x40_Lean_Meta_Basic___hyg_15046____closed__1 = _init_l_Lean_initFn____x40_Lean_Meta_Basic___hyg_15046____closed__1(); +lean_mark_persistent(l_Lean_initFn____x40_Lean_Meta_Basic___hyg_15046____closed__1); +l_Lean_initFn____x40_Lean_Meta_Basic___hyg_15046____closed__2 = _init_l_Lean_initFn____x40_Lean_Meta_Basic___hyg_15046____closed__2(); +lean_mark_persistent(l_Lean_initFn____x40_Lean_Meta_Basic___hyg_15046____closed__2); +l_Lean_initFn____x40_Lean_Meta_Basic___hyg_15046____closed__3 = _init_l_Lean_initFn____x40_Lean_Meta_Basic___hyg_15046____closed__3(); +lean_mark_persistent(l_Lean_initFn____x40_Lean_Meta_Basic___hyg_15046____closed__3); +l_Lean_initFn____x40_Lean_Meta_Basic___hyg_15046____closed__4 = _init_l_Lean_initFn____x40_Lean_Meta_Basic___hyg_15046____closed__4(); +lean_mark_persistent(l_Lean_initFn____x40_Lean_Meta_Basic___hyg_15046____closed__4); +l_Lean_initFn____x40_Lean_Meta_Basic___hyg_15046____closed__5 = _init_l_Lean_initFn____x40_Lean_Meta_Basic___hyg_15046____closed__5(); +lean_mark_persistent(l_Lean_initFn____x40_Lean_Meta_Basic___hyg_15046____closed__5); +l_Lean_initFn____x40_Lean_Meta_Basic___hyg_15046____closed__6 = _init_l_Lean_initFn____x40_Lean_Meta_Basic___hyg_15046____closed__6(); +lean_mark_persistent(l_Lean_initFn____x40_Lean_Meta_Basic___hyg_15046____closed__6); +l_Lean_initFn____x40_Lean_Meta_Basic___hyg_15046____closed__7 = _init_l_Lean_initFn____x40_Lean_Meta_Basic___hyg_15046____closed__7(); +lean_mark_persistent(l_Lean_initFn____x40_Lean_Meta_Basic___hyg_15046____closed__7); +if (builtin) {res = l_Lean_initFn____x40_Lean_Meta_Basic___hyg_15046_(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)); diff --git a/stage0/stdlib/Lean/Meta/Closure.c b/stage0/stdlib/Lean/Meta/Closure.c index a23bbfec57..4f20acc2b8 100644 --- a/stage0/stdlib/Lean/Meta/Closure.c +++ b/stage0/stdlib/Lean/Meta/Closure.c @@ -3821,7 +3821,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(1671u); +x_3 = lean_unsigned_to_nat(1690u); 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); @@ -3850,7 +3850,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(1682u); +x_3 = lean_unsigned_to_nat(1701u); 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); @@ -3879,7 +3879,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(1633u); +x_3 = lean_unsigned_to_nat(1652u); 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); @@ -3908,7 +3908,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(1728u); +x_3 = lean_unsigned_to_nat(1747u); 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); @@ -3937,7 +3937,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(1708u); +x_3 = lean_unsigned_to_nat(1727u); 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); @@ -3966,7 +3966,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(1737u); +x_3 = lean_unsigned_to_nat(1756u); 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/CompletionName.c b/stage0/stdlib/Lean/Meta/CompletionName.c index 5edac29750..76568f0945 100644 --- a/stage0/stdlib/Lean/Meta/CompletionName.c +++ b/stage0/stdlib/Lean/Meta/CompletionName.c @@ -1,6 +1,6 @@ // Lean compiler output // Module: Lean.Meta.CompletionName -// Imports: Init Lean.Meta.Basic Lean.Meta.Match.MatcherInfo +// Imports: Lean.Meta.Basic Lean.Meta.Match.MatcherInfo #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -245,7 +245,6 @@ x_4 = lean_box(x_3); return x_4; } } -lean_object* initialize_Init(uint8_t builtin, lean_object*); lean_object* initialize_Lean_Meta_Basic(uint8_t builtin, lean_object*); lean_object* initialize_Lean_Meta_Match_MatcherInfo(uint8_t builtin, lean_object*); static bool _G_initialized = false; @@ -253,9 +252,6 @@ LEAN_EXPORT lean_object* initialize_Lean_Meta_CompletionName(uint8_t builtin, le lean_object * res; if (_G_initialized) return lean_io_result_mk_ok(lean_box(0)); _G_initialized = true; -res = initialize_Init(builtin, lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); res = initialize_Lean_Meta_Basic(builtin, lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); diff --git a/stage0/stdlib/Lean/Meta/DiscrTree.c b/stage0/stdlib/Lean/Meta/DiscrTree.c index 53a5d2c4e7..c011c0a2e7 100644 --- a/stage0/stdlib/Lean/Meta/DiscrTree.c +++ b/stage0/stdlib/Lean/Meta/DiscrTree.c @@ -113,6 +113,7 @@ LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_findAtAux___at___private_Lean_ LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_find_x3f___at_Lean_Meta_DiscrTree_getUnify___spec__4___rarg(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Meta_DiscrTree_Trie_mapArraysM___spec__1___rarg___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_foldlMAux___at_Lean_Meta_DiscrTree_fold___spec__7___rarg(lean_object*, lean_object*, lean_object*); +uint8_t l_Lean_Expr_isRawNatLit(lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_DiscrTree_Trie_size(lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_DiscrTree_fold___rarg___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_binSearchAux___at_Lean_Meta_DiscrTree_getUnify_process___spec__1___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -175,7 +176,6 @@ LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Meta_DiscrTree_toAr LEAN_EXPORT lean_object* l_Lean_Meta_DiscrTree_instLTKey; LEAN_EXPORT lean_object* l___private_Lean_Meta_DiscrTree_0__Lean_Meta_DiscrTree_isOffset(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_binSearchAux___at___private_Lean_Meta_DiscrTree_0__Lean_Meta_DiscrTree_getMatchLoop___spec__7___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -uint8_t l_Lean_Expr_isNatLit(lean_object*); LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_findAux___at_Lean_Meta_DiscrTree_getUnify___spec__2(lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_DiscrTree_getUnify___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_Meta_DiscrTree_Trie_foldValues(lean_object*, lean_object*); @@ -2392,7 +2392,7 @@ LEAN_EXPORT uint8_t l___private_Lean_Meta_DiscrTree_0__Lean_Meta_DiscrTree_isNum _start: { uint8_t x_2; -x_2 = l_Lean_Expr_isNatLit(x_1); +x_2 = l_Lean_Expr_isRawNatLit(x_1); if (x_2 == 0) { lean_object* x_3; uint8_t x_4; diff --git a/stage0/stdlib/Lean/Meta/ExprLens.c b/stage0/stdlib/Lean/Meta/ExprLens.c index 0d22af3e03..ec44b71353 100644 --- a/stage0/stdlib/Lean/Meta/ExprLens.c +++ b/stage0/stdlib/Lean/Meta/ExprLens.c @@ -416,7 +416,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(1633u); +x_3 = lean_unsigned_to_nat(1652u); 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); @@ -594,7 +594,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(1737u); +x_3 = lean_unsigned_to_nat(1756u); 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); @@ -795,7 +795,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(1728u); +x_3 = lean_unsigned_to_nat(1747u); 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); @@ -919,7 +919,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(1708u); +x_3 = lean_unsigned_to_nat(1727u); 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/InferType.c b/stage0/stdlib/Lean/Meta/InferType.c index 781241738a..37bcb01dfd 100644 --- a/stage0/stdlib/Lean/Meta/InferType.c +++ b/stage0/stdlib/Lean/Meta/InferType.c @@ -70,6 +70,7 @@ LEAN_EXPORT lean_object* l_Lean_Meta_throwIncorrectNumberOfLevels(lean_object*); lean_object* l_Lean_Expr_proj___override(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_bvar___override(lean_object*); lean_object* lean_array_fget(lean_object*, lean_object*); +lean_object* l_Lean_Meta_forallTelescope___at_Lean_Meta_mapForallTelescope_x27___spec__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Expr_instantiateBetaRevRange___closed__1; lean_object* lean_array_fset(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_InferType_0__Lean_Meta_withLocalDecl_x27___rarg(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -159,7 +160,6 @@ lean_object* lean_expr_consume_type_annotations(lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_isTypeFormerType_go(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t lean_expr_equal(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_HashMapImp_expand___at_Lean_Expr_instantiateBetaRevRange_visit___spec__5(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Init_Util_0__mkPanicMessageWithDecl(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_InferType_0__Lean_Meta_isArrowType___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Meta_throwFunctionExpected___rarg___closed__1; @@ -179,7 +179,6 @@ extern lean_object* l_Lean_ExprStructEq_instBEqExprStructEq; LEAN_EXPORT lean_object* l_Lean_AssocList_contains___at_Lean_Expr_instantiateBetaRevRange_visit___spec__4___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Expr_instantiateBetaRevRange___boxed(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_InferType_0__Lean_Meta_inferFVarType(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Lean_Meta_Basic_0__Lean_Meta_forallTelescopeReducingAuxAux___rarg(uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Meta_throwUnknownMVar___rarg___closed__4; LEAN_EXPORT lean_object* l_Lean_Meta_inferTypeImp_infer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Meta_InferType_0__Lean_Meta_inferProjType___closed__1; @@ -253,7 +252,6 @@ LEAN_EXPORT lean_object* l_Std_Range_forIn_loop___at___private_Lean_Meta_InferTy static lean_object* l_Lean_Meta_throwUnknownMVar___rarg___closed__3; LEAN_EXPORT lean_object* l___private_Lean_Meta_InferType_0__Lean_Meta_isTypeQuickApp(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_array_get_size(lean_object*); -LEAN_EXPORT lean_object* l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2(lean_object*); LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insert___at___private_Lean_Meta_InferType_0__Lean_Meta_checkInferTypeCache___spec__4(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_throwUnknownMVar___rarg(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*); @@ -4550,67 +4548,6 @@ return x_30; } } } -LEAN_EXPORT lean_object* l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(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; uint8_t x_9; lean_object* x_10; -x_8 = lean_box(0); -x_9 = 0; -x_10 = l___private_Lean_Meta_Basic_0__Lean_Meta_forallTelescopeReducingAuxAux___rarg(x_9, x_8, x_1, x_2, x_3, x_4, x_5, x_6, x_7); -if (lean_obj_tag(x_10) == 0) -{ -uint8_t x_11; -x_11 = !lean_is_exclusive(x_10); -if (x_11 == 0) -{ -return x_10; -} -else -{ -lean_object* x_12; lean_object* x_13; lean_object* x_14; -x_12 = lean_ctor_get(x_10, 0); -x_13 = lean_ctor_get(x_10, 1); -lean_inc(x_13); -lean_inc(x_12); -lean_dec(x_10); -x_14 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_14, 0, x_12); -lean_ctor_set(x_14, 1, x_13); -return x_14; -} -} -else -{ -uint8_t x_15; -x_15 = !lean_is_exclusive(x_10); -if (x_15 == 0) -{ -return x_10; -} -else -{ -lean_object* x_16; lean_object* x_17; lean_object* x_18; -x_16 = lean_ctor_get(x_10, 0); -x_17 = lean_ctor_get(x_10, 1); -lean_inc(x_17); -lean_inc(x_16); -lean_dec(x_10); -x_18 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_18, 0, x_16); -lean_ctor_set(x_18, 1, x_17); -return x_18; -} -} -} -} -LEAN_EXPORT lean_object* l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2(lean_object* x_1) { -_start: -{ -lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg), 7, 0); -return x_2; -} -} LEAN_EXPORT lean_object* l___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___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) { _start: { @@ -4833,7 +4770,7 @@ _start: { lean_object* x_7; lean_object* x_8; x_7 = l___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___closed__1; -x_8 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_1, x_7, x_2, x_3, x_4, x_5, x_6); +x_8 = l_Lean_Meta_forallTelescope___at_Lean_Meta_mapForallTelescope_x27___spec__1___rarg(x_1, x_7, x_2, x_3, x_4, x_5, x_6); return x_8; } } @@ -8039,7 +7976,7 @@ lean_free_object(x_305); x_312 = l___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___closed__1; lean_inc(x_3); lean_inc(x_1); -x_313 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_1, x_312, x_2, x_3, x_4, x_5, x_308); +x_313 = l_Lean_Meta_forallTelescope___at_Lean_Meta_mapForallTelescope_x27___spec__1___rarg(x_1, x_312, x_2, x_3, x_4, x_5, x_308); if (lean_obj_tag(x_313) == 0) { uint8_t x_314; @@ -8442,7 +8379,7 @@ lean_object* x_403; lean_object* x_404; x_403 = l___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___closed__1; lean_inc(x_3); lean_inc(x_1); -x_404 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_1, x_403, x_2, x_3, x_4, x_5, x_399); +x_404 = l_Lean_Meta_forallTelescope___at_Lean_Meta_mapForallTelescope_x27___spec__1___rarg(x_1, x_403, x_2, x_3, x_4, x_5, x_399); if (lean_obj_tag(x_404) == 0) { lean_object* x_405; lean_object* x_406; lean_object* x_407; uint8_t x_408; diff --git a/stage0/stdlib/Lean/Meta/Injective.c b/stage0/stdlib/Lean/Meta/Injective.c index 52ef753d4d..f7fc5fc0df 100644 --- a/stage0/stdlib/Lean/Meta/Injective.c +++ b/stage0/stdlib/Lean/Meta/Injective.c @@ -59,6 +59,7 @@ LEAN_EXPORT lean_object* l_List_forIn_loop___at_Lean_Meta_mkInjectiveTheorems___ static lean_object* l___private_Lean_Util_Trace_0__Lean_getResetTraces___at_Lean_Meta_mkInjectiveTheorems___spec__7___rarg___closed__2; lean_object* l_Lean_replaceRef(lean_object*, lean_object*); lean_object* lean_array_fget(lean_object*, lean_object*); +lean_object* l_Lean_Meta_forallTelescope___at_Lean_Meta_mapForallTelescope_x27___spec__1___rarg(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__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_getConstInfo___at_Lean_Meta_mkInjectiveTheorems___spec__2___closed__2; lean_object* l_Lean_Expr_fvarId_x21(lean_object*); @@ -167,7 +168,6 @@ LEAN_EXPORT lean_object* l_Lean_getConstInfoCtor___at_Lean_Meta_mkInjectiveTheor static lean_object* l_Lean_withTraceNode___at_Lean_Meta_mkInjectiveTheorems___spec__5___lambda__3___closed__5; 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_Meta_simpExtension; -lean_object* l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Init_Util_0__mkPanicMessageWithDecl(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Util_Trace_0__Lean_getResetTraces___at_Lean_Meta_mkInjectiveTheorems___spec__7___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Meta_mkInjectiveTheorems___spec__5___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*); @@ -2084,7 +2084,7 @@ lean_closure_set(x_13, 2, x_5); lean_closure_set(x_13, 3, x_12); lean_closure_set(x_13, 4, x_4); lean_closure_set(x_13, 5, x_6); -x_14 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_6, x_13, x_7, x_8, x_9, x_10, x_11); +x_14 = l_Lean_Meta_forallTelescope___at_Lean_Meta_mapForallTelescope_x27___spec__1___rarg(x_6, x_13, x_7, x_8, x_9, x_10, x_11); return x_14; } } diff --git a/stage0/stdlib/Lean/Meta/LazyDiscrTree.c b/stage0/stdlib/Lean/Meta/LazyDiscrTree.c new file mode 100644 index 0000000000..cf2a650dbd --- /dev/null +++ b/stage0/stdlib/Lean/Meta/LazyDiscrTree.c @@ -0,0 +1,15392 @@ +// Lean compiler output +// Module: Lean.Meta.LazyDiscrTree +// Imports: Lean.Meta.CompletionName Lean.Meta.DiscrTree +#include +#if defined(__clang__) +#pragma clang diagnostic ignored "-Wunused-parameter" +#pragma clang diagnostic ignored "-Wunused-label" +#elif defined(__GNUC__) && !defined(__CLANG__) +#pragma GCC diagnostic ignored "-Wunused-parameter" +#pragma GCC diagnostic ignored "-Wunused-label" +#pragma GCC diagnostic ignored "-Wunused-but-set-variable" +#endif +#ifdef __cplusplus +extern "C" { +#endif +static lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_ImportData_new___closed__5; +static lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_isNumeral___closed__4; +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchResult_toArray_loop(lean_object*); +lean_object* l___private_Init_Util_0__outOfBounds___rarg(lean_object*); +lean_object* l_Lean_Name_reprPrec(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchResult_toArray_loop___rarg(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_LazyDiscrTree_MatchClone_Key_instHashableKey; +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_addConstImportData(lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_newTrie___at___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_evalLazyEntries_iter___spec__4(lean_object*); +LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchResult_toArray_loop___spec__1___rarg(lean_object*, size_t, size_t, lean_object*); +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*); +static lean_object* l_Lean_Meta_LazyDiscrTree_instInhabitedPreDiscrTree___closed__1; +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_getMatchCore___rarg(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_LazyDiscrTree_MatchClone_instInhabitedKey; +uint8_t l_Lean_Meta_DiscrTree_hasNoindexAnnotation(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_LazyDiscrTree_InitResults_append___rarg(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_rootKey(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Core_getMaxHeartbeats(lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_PreDiscrTree_toLazy___rarg(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_getKeyArgs___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_AssocList_replace___at___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_PreDiscrTree_modifyAt___spec__8(lean_object*, lean_object*, lean_object*); +static lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__10; +lean_object* lean_mk_empty_array_with_capacity(lean_object*); +static lean_object* l_Lean_Meta_LazyDiscrTree_PreDiscrTree_instAppendPreDiscrTree___closed__1; +LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_combineGet___spec__1___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__4; +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_evalLazyEntries_iter___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*); +LEAN_EXPORT lean_object* l_Lean_AssocList_foldlM___at_Lean_Meta_LazyDiscrTree_PreDiscrTree_append___spec__1___rarg(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___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_PreDiscrTree_modifyAt___rarg(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT uint8_t l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_beqKey____x40_Lean_Meta_LazyDiscrTree___hyg_99_(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_HashMapImp_moveEntries___at___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_evalLazyEntries_iter___spec__8(lean_object*, lean_object*, lean_object*); +extern lean_object* l_Lean_instInhabitedModuleData; +static lean_object* l_Lean_Meta_LazyDiscrTree_instEmptyCollectionTrie___closed__2; +static lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_tmpMVarId___closed__2; +LEAN_EXPORT lean_object* l_Lean_Meta_LazyDiscrTree_instEmptyCollectionTrie(lean_object*); +static lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_getKeyArgs___lambda__2___closed__2; +static lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__12; +static lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__29; +static lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_ImportData_new___closed__2; +lean_object* lean_whnf(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_getKeyArgs___lambda__3___closed__3; +LEAN_EXPORT lean_object* l_Lean_Meta_LazyDiscrTree_InitEntry_mkSubEntry___rarg___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_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_pushArgs(uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_LazyDiscrTree_createImportedEnvironment_go___rarg___boxed(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___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchResult_toArray_loop___spec__1(lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchResult_toArray_n___rarg(lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_setTrie___rarg(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*); +uint64_t lean_uint64_mix_hash(uint64_t, uint64_t); +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_PreDiscrTree_push(lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_evalLazyEntries_iter___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_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_evalLazyEntries___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 l_Lean_Expr_isRawNatLit(lean_object*); +static lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_addConstImportData___rarg___lambda__1___closed__17; +LEAN_EXPORT lean_object* l_Lean_AssocList_foldlM___at___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_evalLazyEntries_iter___spec__9(lean_object*, lean_object*); +static lean_object* l_Lean_Meta_LazyDiscrTree_createImportedEnvironment___rarg___closed__1; +static lean_object* l_Lean_Meta_LazyDiscrTree_tries___default___closed__1; +LEAN_EXPORT lean_object* l_Lean_Meta_LazyDiscrTree_MatchClone_instReprKey; +lean_object* lean_io_as_task(lean_object*, lean_object*, lean_object*); +static lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_ImportData_new___closed__8; +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_combineGet(lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_newTrie___at___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_evalLazyEntries_iter___spec__4___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_ImportData_new___closed__6; +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_addLazyEntryToTrie(lean_object*); +lean_object* l_Lean_Expr_sort___override(lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_getMatchKeyArgs(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_LazyDiscrTree_createImportedEnvironment___rarg(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* lean_array_push(lean_object*, lean_object*); +lean_object* l_Array_toSubarray___rarg(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_getStarResult___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_AssocList_contains___at___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_PreDiscrTree_modifyAt___spec__4___boxed(lean_object*, lean_object*); +lean_object* l_Lean_instBEqLocalInstance___boxed(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_AssocList_find_x3f___at___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_evalLazyEntries_iter___spec__3(lean_object*, lean_object*); +static lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__31; +lean_object* lean_mk_array(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_pushArgs___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +uint8_t lean_usize_dec_eq(size_t, size_t); +static lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_isNumeral___closed__8; +static lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_isNatOffset___closed__7; +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_PreDiscrTree_modifyAt(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_LazyDiscrTree_createImportedEnvironment(lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_newTrie(lean_object*, lean_object*, lean_object*); +static lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_ImportData_new___closed__1; +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_createImportedEnvironmentSeq___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_addConstImportData___rarg___lambda__1___closed__13; +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_evalNode___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_pushArgs___closed__1; +lean_object* lean_array_fget(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_LazyDiscrTree_createImportedEnvironment___rarg___lambda__1(lean_object*, lean_object*, lean_object*); +lean_object* lean_array_fset(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_elimLooseBVarsByBeta(lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_tmpStar___closed__1; +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_evalLazyEntries_iter(lean_object*); +static lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_addConstImportData___rarg___lambda__1___closed__8; +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchResult_push(lean_object*); +static lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__32; +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_newTrie___rarg___lambda__1(lean_object*, lean_object*); +static lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_addConstImportData___rarg___lambda__1___closed__5; +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_combineGet___rarg(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Meta_throwIsDefEqStuck___rarg(lean_object*); +LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Meta_LazyDiscrTree_PreDiscrTree_append___spec__2(lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_ignoreArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_addConstImportData___rarg___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +uint8_t l_Lean_ConstantInfo_isUnsafe(lean_object*); +static lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__19; +static lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_getKeyArgs___lambda__3___closed__2; +lean_object* l_Lean_stringToMessageData(lean_object*); +static lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_rootKey___closed__1; +lean_object* l_Lean_Expr_mvar___override(lean_object*); +static lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_ImportData_new___closed__16; +static lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_ImportData_new___closed__13; +LEAN_EXPORT lean_object* l_Lean_Meta_LazyDiscrTree_instInhabitedTrie(lean_object*); +static lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_isNumeral___closed__7; +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_newTrie___rarg(lean_object*, lean_object*); +lean_object* l___private_Lean_Expr_0__Lean_reprLiteral____x40_Lean_Expr___hyg_117_(lean_object*, lean_object*); +extern lean_object* l_Lean_Expr_instBEqExpr; +static lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_ImportData_new___closed__4; +static lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__18; +LEAN_EXPORT lean_object* l_Lean_Meta_LazyDiscrTree_getMatch___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___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_addConstImportData___rarg___lambda__1___closed__14; +static lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_addConstImportData___rarg___lambda__1___closed__12; +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_pushArgsAux(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_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchResult_toArray_n(lean_object*); +lean_object* l_instBEqProd___rarg(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Expr_appArg_x21(lean_object*); +static lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__14; +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_createImportedEnvironmentSeq_go(lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchResult_toArray___rarg(lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_setTrie(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_LazyDiscrTree_roots___default; +lean_object* lean_st_ref_swap(lean_object*, lean_object*, lean_object*); +lean_object* l_instHashableArray___rarg___boxed(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchResult_toArray_n___spec__1___rarg(lean_object*, size_t, size_t, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_mkPath(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_initCapacity; +size_t lean_usize_of_nat(lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_createImportedEnvironmentSeq_go___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_addConstImportData___rarg___lambda__1___closed__7; +static lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__17; +static lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_addConstImportData___rarg___lambda__1___closed__6; +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_addConstImportData___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_newTrie___at___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_evalLazyEntries_iter___spec__11(lean_object*); +lean_object* lean_st_ref_take(lean_object*, lean_object*); +lean_object* l_Lean_Expr_getRevArg_x21(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchResult_push___rarg(lean_object*, lean_object*, lean_object*); +uint8_t lean_nat_dec_eq(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_PreDiscrTree_toLazy___spec__1___rarg(size_t, size_t, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_mkPathAux___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_mkHashMap___at___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_PreDiscrTree_roots___default___spec__1___boxed(lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_isNatType(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_beqKey____x40_Lean_Meta_LazyDiscrTree___hyg_99____boxed(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_pushArgs___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___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_getKeyArgs___lambda__2___closed__1; +static lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_toNatLit_x3f_loop___closed__1; +static lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_isNatOffset___closed__6; +static lean_object* l_Lean_Meta_LazyDiscrTree_InitResults_instAppendInitResults___closed__1; +lean_object* lean_nat_to_int(lean_object*); +lean_object* l_Lean_Meta_isType(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Meta_LazyDiscrTree_createImportedEnvironment___spec__2(lean_object*); +uint8_t l_Lean_Meta_ParamInfo_isImplicit(lean_object*); +LEAN_EXPORT lean_object* l_Lean_throwError___at___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_pushArgs___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_AssocList_foldlM___at_Lean_Meta_LazyDiscrTree_PreDiscrTree_append___spec__1___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__21; +LEAN_EXPORT lean_object* l_Lean_HashMapImp_expand___at___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_evalLazyEntries_iter___spec__7(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_withLCtx___at___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_evalLazyEntries_iter___spec__1(lean_object*, lean_object*); +static lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_addConstImportData___rarg___lambda__1___closed__21; +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_toFlat___rarg(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____boxed(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_PreDiscrTree_push___rarg(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_pushArgs___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_isNatOffset___closed__4; +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_PreDiscrTree_toLazy___spec__1___rarg___boxed(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_newTrie___at___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_evalLazyEntries_iter___spec__11___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_getKeyArgs(lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT uint8_t l_Lean_AssocList_contains___at___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_evalLazyEntries_iter___spec__6(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_ImportData_new(lean_object*); +static lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_ImportData_new___closed__3; +lean_object* l_Lean_isReducible___at___private_Lean_Meta_Basic_0__Lean_Meta_getDefInfoTemp___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_addConstImportData___rarg___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Meta_Match_MatcherInfo_getFirstDiscrPos(lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_elimLooseBVarsByBeta___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_LazyDiscrTree_tries___default(lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_addConstImportData___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_Meta_LazyDiscrTree_instInhabitedPreDiscrTree(lean_object*); +static lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_isNumeral___closed__1; +static lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__23; +static lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__20; +static lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_getKeyArgs___lambda__3___closed__1; +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_getMatchCore(lean_object*); +LEAN_EXPORT lean_object* l_Lean_AssocList_find_x3f___at___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_evalLazyEntries_iter___spec__3___boxed(lean_object*, lean_object*); +static lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_ImportData_new___closed__17; +static lean_object* l_Lean_Meta_LazyDiscrTree_MatchClone_Key_instHashableKey___closed__1; +lean_object* lean_st_ref_get(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_LazyDiscrTree_PreDiscrTree_instAppendPreDiscrTree(lean_object*); +static lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__11; +LEAN_EXPORT lean_object* l_Lean_Meta_LazyDiscrTree_config___default; +lean_object* lean_array_pop(lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchResult_push_loop(lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_shouldAddAsStar(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +uint64_t l___private_Lean_Expr_0__Lean_hashFVarId____x40_Lean_Expr___hyg_1674_(lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_getMatchLoop(lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_tmpStar; +lean_object* lean_st_mk_ref(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchResult_toArray_n___spec__2___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_AssocList_foldlM___at_Lean_Meta_LazyDiscrTree_PreDiscrTree_append___spec__1(lean_object*); +uint8_t l_Lean_Expr_hasLooseBVars(lean_object*); +uint8_t l_Lean_Expr_isHeadBetaTarget(lean_object*, uint8_t); +LEAN_EXPORT lean_object* l_Lean_Meta_LazyDiscrTree_instInhabitedLazyDiscrTree(lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_tmpMVarId; +static lean_object* l_Lean_Meta_LazyDiscrTree_PreDiscrTree_append___rarg___closed__1; +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_evalLazyEntries___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*); +extern lean_object* l_Lean_Expr_instHashableExpr; +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_getKeyArgs___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_runMatch___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__25; +extern lean_object* l_Lean_levelZero; +lean_object* l_Lean_Expr_constName_x21(lean_object*); +uint64_t l_Lean_Literal_hash(lean_object*); +extern lean_object* l_Lean_instInhabitedExpr; +static lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_addConstImportData___rarg___lambda__1___closed__15; +static lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_isNumeral___closed__2; +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_shouldAddAsStar___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__9; +static lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_isNatOffset___closed__2; +LEAN_EXPORT lean_object* l_Lean_HashMapImp_find_x3f___at___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_evalLazyEntries_iter___spec__2(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_combineGet___at_Lean_Meta_LazyDiscrTree_createImportedEnvironment___spec__1(lean_object*); +LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchResult_toArray_n___spec__2(lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_newTrie___at___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_evalLazyEntries_iter___spec__4___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_addConstImportData___rarg___lambda__1___closed__4; +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_createImportedEnvironmentSeq(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_LazyDiscrTree_instInhabitedInitResults(lean_object*); +LEAN_EXPORT lean_object* l_Lean_HashMapImp_moveEntries___at___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_PreDiscrTree_modifyAt___spec__6(lean_object*, lean_object*, lean_object*); +extern lean_object* l_Task_Priority_default; +LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Meta_LazyDiscrTree_createImportedEnvironment___spec__2___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_getKeyArgs___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_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_ImportData_new___closed__7; +lean_object* l_Lean_instHashableLocalInstance___boxed(lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_getMatchRoot(lean_object*); +lean_object* l_instHashableProd___rarg___boxed(lean_object*, lean_object*, lean_object*); +uint8_t lean_name_eq(lean_object*, lean_object*); +lean_object* l_Lean_Name_str___override(lean_object*, lean_object*); +static lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_addConstImportData___rarg___lambda__1___closed__18; +static lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_ImportData_new___closed__14; +static lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_addConstImportData___rarg___lambda__1___closed__3; +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_Trie_pushPending___rarg(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_LazyDiscrTree_getMatch(lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_getKeyArgs___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__26; +LEAN_EXPORT lean_object* l_Lean_mkHashMap___at___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_PreDiscrTree_roots___default___spec__1(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_LazyDiscrTree_InitEntry_mkSubEntry(lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_getTrie(lean_object*); +lean_object* l_Lean_Meta_isMatcherAppCore_x3f(lean_object*, lean_object*); +static lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__5; +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_loadImportedModule(lean_object*); +uint8_t l_Lean_Meta_ParamInfo_isInstImplicit(lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_isNumeral___boxed(lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_mkPathAux(uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_evalNode___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_elimLooseBVarsByBeta___lambda__1___closed__1; +static lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__15; +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_createImportedEnvironmentSeq_go___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__8; +LEAN_EXPORT uint8_t l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_isNumeral(lean_object*); +lean_object* l_Lean_MVarId_isReadOnlyOrSyntheticOpaque(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_isRec___at___private_Lean_Meta_DiscrTree_0__Lean_Meta_DiscrTree_getKeyArgs___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_isNatOffset___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* lean_task_get_own(lean_object*); +static lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__22; +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_getMatchKeyArgs___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_loadImportedModule___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Meta_LazyDiscrTree_MatchClone_instInhabitedKey___closed__1; +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchResult_push_loop___rarg___boxed(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_addConstImportData___spec__1(lean_object*); +static lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__27; +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_pushArgsAux___boxed(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_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_isNumeral___closed__5; +LEAN_EXPORT lean_object* l_Lean_Meta_LazyDiscrTree_PreDiscrTree_append___rarg(lean_object*, lean_object*); +size_t lean_hashmap_mk_idx(lean_object*, uint64_t); +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchResult_push_loop___rarg(lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Meta_LazyDiscrTree_instEmptyCollectionTrie___closed__1; +lean_object* l_Array_append___rarg(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_LazyDiscrTree_InitEntry_fromExpr___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT uint8_t l_Lean_AssocList_contains___at___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_PreDiscrTree_modifyAt___spec__4(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368_(lean_object*, lean_object*); +lean_object* l_Lean_Meta_getConfig(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchResult_toArray_n___rarg___boxed(lean_object*); +LEAN_EXPORT lean_object* l_Lean_AssocList_find_x3f___at___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_PreDiscrTree_modifyAt___spec__2___boxed(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Meta_LazyDiscrTree_PreDiscrTree_append___spec__2___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_LazyDiscrTree_InitEntry_fromExpr(lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_getMatchRoot___rarg(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_LazyDiscrTree_InitEntry_mkSubEntry___rarg(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___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchResult_toArray_n___spec__1___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_isNatOffset___closed__1; +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_addLazyEntryToTrie___rarg___boxed(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_getAppRevArgsAux(lean_object*, lean_object*); +lean_object* l_Lean_Core_transform___at_Lean_Core_betaReduce___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__30; +LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_combineGet___spec__1(lean_object*); +LEAN_EXPORT lean_object* l_Lean_HashMap_insert___at___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_PreDiscrTree_modifyAt___spec__3(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_HashMap_insert___at___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_evalLazyEntries_iter___spec__5(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_PreDiscrTree_toLazy(lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_combineGet___at_Lean_Meta_LazyDiscrTree_createImportedEnvironment___spec__1___rarg(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchResult_toArray_loop___spec__1___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_HashMapImp_find_x3f___at___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_PreDiscrTree_modifyAt___spec__1(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_addConstImportData___rarg___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___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_ImportData_new___closed__12; +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_pushArgs___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +uint8_t l_Lean_Meta_ParamInfo_isStrictImplicit(lean_object*); +LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_addConstImportData___spec__1___rarg(lean_object*, size_t, size_t, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_pushArgs___lambda__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_elimLooseBVarsByBeta___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_LazyDiscrTree_PreDiscrTree_append(lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_createImportedEnvironmentSeq___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +uint8_t l_Lean_Meta_allowCompletion(lean_object*, lean_object*); +static lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_ImportData_new___closed__10; +uint8_t lean_nat_dec_eq(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_getKeyArgs___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_runMatch(lean_object*, lean_object*); +LEAN_EXPORT uint64_t l_Lean_Meta_LazyDiscrTree_MatchClone_Key_hash(lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_ignoreArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l_Lean_instInhabitedConstantInfo; +static lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__13; +lean_object* l_Subarray_forInUnsafe_loop___at___private_Lean_Meta_DiscrTree_0__Lean_Meta_DiscrTree_getKeyArgs___spec__2(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_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchResult_elts___default(lean_object*); +uint8_t lean_nat_dec_lt(lean_object*, lean_object*); +static lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_addConstImportData___rarg___lambda__1___closed__20; +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_evalLazyEntries_iter___rarg___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___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_evalNode___rarg___closed__1; +lean_object* l_Lean_Meta_getLocalInstances(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_getKeyArgs___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_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_getStarResult(lean_object*); +lean_object* l_Lean_Name_mkStr2(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_mkHashMap___at_Lean_Meta_LazyDiscrTree_instInhabitedTrie___spec__1___boxed(lean_object*); +static lean_object* l_Lean_Meta_LazyDiscrTree_instInhabitedLazyDiscrTree___closed__1; +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_toNatLit_x3f_loop(lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_loadImportedModule___rarg___boxed(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___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_addConstImportData___spec__1___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_mkHashMap___at_Lean_Meta_LazyDiscrTree_instInhabitedTrie___spec__1(lean_object*); +static lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_pushArgs___closed__2; +LEAN_EXPORT lean_object* l_Lean_Meta_LazyDiscrTree_MatchClone_instBEqKey; +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_elimLooseBVarsByBeta___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +uint8_t l_Lean_Expr_isConstOf(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_toFlat(lean_object*); +lean_object* lean_array_set(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_evalLazyEntries(lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_InitResults_errors___default; +uint64_t l_Lean_Name_hash___override(lean_object*); +static lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_addConstImportData___rarg___lambda__1___closed__10; +lean_object* l_Lean_addMessageContextFull___at_Lean_Meta_instAddMessageContextMetaM___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Repr_addAppParen(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_evalNode(lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_getMatchLoop___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___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_addConstImportData___rarg___lambda__1___closed__19; +lean_object* lean_nat_sub(lean_object*, lean_object*); +static lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_elimLooseBVarsByBeta___closed__1; +lean_object* l_Lean_Expr_getAppFn(lean_object*); +lean_object* lean_nat_mul(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_elimLooseBVarsByBeta___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_LazyDiscrTree_PreDiscrTree_append___rarg___lambda__1(lean_object*, lean_object*); +lean_object* l_Lean_Meta_InfoCacheKey_instHashableInfoCacheKey___boxed(lean_object*); +static lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_isNatOffset___closed__3; +LEAN_EXPORT lean_object* l_Lean_AssocList_foldlM___at___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_PreDiscrTree_modifyAt___spec__7(lean_object*, lean_object*); +static lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__6; +static lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__24; +static lean_object* l_Lean_Meta_LazyDiscrTree_instInhabitedInitResults___closed__1; +lean_object* l_Lean_PersistentHashMap_mkEmptyEntriesArray(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Meta_LazyDiscrTree_PreDiscrTree_append___spec__2___rarg(lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_Trie_pushPending(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_LazyDiscrTree_MatchClone_Key_hash___boxed(lean_object*); +lean_object* l_Array_back___rarg(lean_object*, lean_object*); +lean_object* l_Lean_Meta_getFunInfoNArgs(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l_Lean_firstFrontendMacroScope; +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_getKeyArgs___lambda__3(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__16; +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchResult_toArray(lean_object*); +lean_object* l_Lean_mkHashMapImp___rarg(lean_object*); +LEAN_EXPORT lean_object* l_Lean_throwError___at___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_pushArgs___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Meta_LazyDiscrTree_createImportedEnvironment___spec__2___rarg(lean_object*, size_t, size_t, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_PreDiscrTree_tries___default(lean_object*); +static lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__1; +LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchResult_toArray_n___spec__2___rarg(lean_object*, size_t, size_t, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_InitResults_tree___default(lean_object*); +size_t lean_usize_add(size_t, size_t); +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_newTrie___at___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_evalLazyEntries_iter___spec__11___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_getTrie___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_AssocList_contains___at___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_evalLazyEntries_iter___spec__6___boxed(lean_object*, lean_object*); +extern lean_object* l_Lean_instInhabitedName; +lean_object* lean_array_uget(lean_object*, size_t); +static lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_addConstImportData___rarg___lambda__1___closed__2; +static lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_ImportData_new___closed__15; +static lean_object* l_Lean_Meta_LazyDiscrTree_config___default___closed__1; +LEAN_EXPORT lean_object* l_Lean_Meta_LazyDiscrTree_getMatch___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_LazyDiscrTree_InitResults_append(lean_object*); +static lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_getKeyArgs___lambda__2___closed__3; +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_setTrie___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* lean_st_ref_set(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_LazyDiscrTree_createImportedEnvironment___rarg___lambda__1___boxed(lean_object*, lean_object*, lean_object*); +static lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__3; +static lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__2; +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_newTrie___boxed(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_PreDiscrTree_push___rarg___lambda__1(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_HashMapImp_expand___at___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_PreDiscrTree_modifyAt___spec__5(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_AssocList_find_x3f___at___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_PreDiscrTree_modifyAt___spec__2(lean_object*, lean_object*); +lean_object* l___private_Lean_Expr_0__Lean_Expr_getAppArgsAux(lean_object*, lean_object*, lean_object*); +static lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_isNatOffset___closed__5; +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_toFlat___rarg___boxed(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_isNatOffset(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_PreDiscrTree_roots___default; +static lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_elimLooseBVarsByBeta___closed__2; +LEAN_EXPORT lean_object* l_Lean_Meta_LazyDiscrTree_createImportedEnvironment_go___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Expr_headBeta(lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_addLazyEntryToTrie___rarg(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_LazyDiscrTree_InitResults_instAppendInitResults(lean_object*); +LEAN_EXPORT lean_object* l_Lean_AssocList_replace___at___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_evalLazyEntries_iter___spec__10(lean_object*, lean_object*, lean_object*); +lean_object* lean_array_get_size(lean_object*); +static lean_object* l_Lean_Meta_LazyDiscrTree_MatchClone_instReprKey___closed__1; +static lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__28; +static lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_isNatType___closed__1; +uint8_t lean_nat_dec_le(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchResult_push___rarg___boxed(lean_object*, lean_object*, lean_object*); +uint8_t lean_usize_dec_lt(size_t, size_t); +lean_object* l_Lean_Meta_DiscrTree_reduceDT(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_LazyDiscrTree_createImportedEnvironment_go(lean_object*); +static lean_object* l_Lean_Meta_LazyDiscrTree_MatchClone_instBEqKey___closed__1; +LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchResult_toArray_n___spec__1(lean_object*); +lean_object* lean_nat_add(lean_object*, lean_object*); +static lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_ImportData_new___closed__11; +uint8_t l_Lean_Expr_isConst(lean_object*); +static lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_addConstImportData___rarg___lambda__1___closed__16; +lean_object* l_Array_instBEqArray___rarg___boxed(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_combineGet___spec__1___rarg(lean_object*, lean_object*, size_t, size_t, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_pushArgs___boxed(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_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_addConstImportData___rarg___lambda__1___closed__11; +static lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_ImportData_new___closed__9; +uint8_t lean_is_class(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_PreDiscrTree_toLazy___spec__1(lean_object*); +static lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_addConstImportData___rarg___lambda__1___closed__9; +static lean_object* l_Lean_Meta_LazyDiscrTree_createImportedEnvironment___rarg___closed__2; +lean_object* l_Lean_Meta_DiscrTree_mkNoindexAnnotation(lean_object*); +lean_object* lean_array_uset(lean_object*, size_t, lean_object*); +lean_object* lean_array_get(lean_object*, lean_object*, lean_object*); +lean_object* l_Nat_repr(lean_object*); +static lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_tmpMVarId___closed__1; +lean_object* l_Lean_Meta_isProof(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_evalLazyEntries_iter___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_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_toNatLit_x3f(lean_object*); +uint8_t l___private_Lean_Expr_0__Lean_beqLiteral____x40_Lean_Expr___hyg_31_(lean_object*, lean_object*); +static lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__7; +LEAN_EXPORT lean_object* l_Lean_Meta_withLCtx___at___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_evalLazyEntries_iter___spec__1___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___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_isNumeral___closed__6; +static lean_object* l_Lean_Meta_LazyDiscrTree_PreDiscrTree_append___rarg___closed__2; +lean_object* l___private_Lean_Data_HashMap_0__Lean_numBucketsForCapacity(lean_object*); +static lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_addConstImportData___rarg___lambda__1___closed__1; +static lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_isNumeral___closed__3; +uint8_t l_Lean_Expr_hasExprMVar(lean_object*); +uint8_t l_Array_isEmpty___rarg(lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_pushArgs___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* _init_l_Lean_Meta_LazyDiscrTree_MatchClone_instInhabitedKey___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = lean_unsigned_to_nat(0u); +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_LazyDiscrTree_MatchClone_instInhabitedKey() { +_start: +{ +lean_object* x_1; +x_1 = l_Lean_Meta_LazyDiscrTree_MatchClone_instInhabitedKey___closed__1; +return x_1; +} +} +LEAN_EXPORT uint8_t l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_beqKey____x40_Lean_Meta_LazyDiscrTree___hyg_99_(lean_object* x_1, lean_object* x_2) { +_start: +{ +switch (lean_obj_tag(x_1)) { +case 0: +{ +if (lean_obj_tag(x_2) == 0) +{ +lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; uint8_t x_7; +x_3 = lean_ctor_get(x_1, 0); +x_4 = lean_ctor_get(x_1, 1); +x_5 = lean_ctor_get(x_2, 0); +x_6 = lean_ctor_get(x_2, 1); +x_7 = lean_name_eq(x_3, x_5); +if (x_7 == 0) +{ +uint8_t x_8; +x_8 = 0; +return x_8; +} +else +{ +uint8_t x_9; +x_9 = lean_nat_dec_eq(x_4, x_6); +return x_9; +} +} +else +{ +uint8_t x_10; +x_10 = 0; +return x_10; +} +} +case 1: +{ +if (lean_obj_tag(x_2) == 1) +{ +lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; uint8_t x_15; +x_11 = lean_ctor_get(x_1, 0); +x_12 = lean_ctor_get(x_1, 1); +x_13 = lean_ctor_get(x_2, 0); +x_14 = lean_ctor_get(x_2, 1); +x_15 = lean_name_eq(x_11, x_13); +if (x_15 == 0) +{ +uint8_t x_16; +x_16 = 0; +return x_16; +} +else +{ +uint8_t x_17; +x_17 = lean_nat_dec_eq(x_12, x_14); +return x_17; +} +} +else +{ +uint8_t x_18; +x_18 = 0; +return x_18; +} +} +case 2: +{ +if (lean_obj_tag(x_2) == 2) +{ +lean_object* x_19; lean_object* x_20; uint8_t x_21; +x_19 = lean_ctor_get(x_1, 0); +x_20 = lean_ctor_get(x_2, 0); +x_21 = l___private_Lean_Expr_0__Lean_beqLiteral____x40_Lean_Expr___hyg_31_(x_19, x_20); +return x_21; +} +else +{ +uint8_t x_22; +x_22 = 0; +return x_22; +} +} +case 3: +{ +if (lean_obj_tag(x_2) == 3) +{ +uint8_t x_23; +x_23 = 1; +return x_23; +} +else +{ +uint8_t x_24; +x_24 = 0; +return x_24; +} +} +case 4: +{ +if (lean_obj_tag(x_2) == 4) +{ +uint8_t x_25; +x_25 = 1; +return x_25; +} +else +{ +uint8_t x_26; +x_26 = 0; +return x_26; +} +} +case 5: +{ +if (lean_obj_tag(x_2) == 5) +{ +uint8_t x_27; +x_27 = 1; +return x_27; +} +else +{ +uint8_t x_28; +x_28 = 0; +return x_28; +} +} +default: +{ +if (lean_obj_tag(x_2) == 6) +{ +lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; uint8_t x_35; +x_29 = lean_ctor_get(x_1, 0); +x_30 = lean_ctor_get(x_1, 1); +x_31 = lean_ctor_get(x_1, 2); +x_32 = lean_ctor_get(x_2, 0); +x_33 = lean_ctor_get(x_2, 1); +x_34 = lean_ctor_get(x_2, 2); +x_35 = lean_name_eq(x_29, x_32); +if (x_35 == 0) +{ +uint8_t x_36; +x_36 = 0; +return x_36; +} +else +{ +uint8_t x_37; +x_37 = lean_nat_dec_eq(x_30, x_33); +if (x_37 == 0) +{ +uint8_t x_38; +x_38 = 0; +return x_38; +} +else +{ +uint8_t x_39; +x_39 = lean_nat_dec_eq(x_31, x_34); +return x_39; +} +} +} +else +{ +uint8_t x_40; +x_40 = 0; +return x_40; +} +} +} +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_beqKey____x40_Lean_Meta_LazyDiscrTree___hyg_99____boxed(lean_object* x_1, lean_object* x_2) { +_start: +{ +uint8_t x_3; lean_object* x_4; +x_3 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_beqKey____x40_Lean_Meta_LazyDiscrTree___hyg_99_(x_1, x_2); +lean_dec(x_2); +lean_dec(x_1); +x_4 = lean_box(x_3); +return x_4; +} +} +static lean_object* _init_l_Lean_Meta_LazyDiscrTree_MatchClone_instBEqKey___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_beqKey____x40_Lean_Meta_LazyDiscrTree___hyg_99____boxed), 2, 0); +return x_1; +} +} +static lean_object* _init_l_Lean_Meta_LazyDiscrTree_MatchClone_instBEqKey() { +_start: +{ +lean_object* x_1; +x_1 = l_Lean_Meta_LazyDiscrTree_MatchClone_instBEqKey___closed__1; +return x_1; +} +} +static lean_object* _init_l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("_private.Lean.Meta.LazyDiscrTree.0.Lean.Meta.LazyDiscrTree.MatchClone.Key.const", 79); +return x_1; +} +} +static lean_object* _init_l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__1; +x_2 = lean_alloc_ctor(3, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; +} +} +static lean_object* _init_l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__2; +x_2 = lean_box(1); +x_3 = lean_alloc_ctor(5, 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_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = lean_unsigned_to_nat(2u); +x_2 = lean_nat_to_int(x_1); +return x_2; +} +} +static lean_object* _init_l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = lean_unsigned_to_nat(1u); +x_2 = lean_nat_to_int(x_1); +return x_2; +} +} +static lean_object* _init_l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__6() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("_private.Lean.Meta.LazyDiscrTree.0.Lean.Meta.LazyDiscrTree.MatchClone.Key.fvar", 78); +return x_1; +} +} +static lean_object* _init_l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__7() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__6; +x_2 = lean_alloc_ctor(3, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; +} +} +static lean_object* _init_l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__8() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__7; +x_2 = lean_box(1); +x_3 = lean_alloc_ctor(5, 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_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__9() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("_private.Lean.Meta.LazyDiscrTree.0.Lean.Meta.LazyDiscrTree.MatchClone.Key.lit", 77); +return x_1; +} +} +static lean_object* _init_l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__10() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__9; +x_2 = lean_alloc_ctor(3, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; +} +} +static lean_object* _init_l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__11() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__10; +x_2 = lean_box(1); +x_3 = lean_alloc_ctor(5, 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_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__12() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("_private.Lean.Meta.LazyDiscrTree.0.Lean.Meta.LazyDiscrTree.MatchClone.Key.star", 78); +return x_1; +} +} +static lean_object* _init_l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__13() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__12; +x_2 = lean_alloc_ctor(3, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; +} +} +static lean_object* _init_l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__14() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__4; +x_2 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__13; +x_3 = lean_alloc_ctor(4, 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_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__15() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; +x_1 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__14; +x_2 = 0; +x_3 = lean_alloc_ctor(6, 1, 1); +lean_ctor_set(x_3, 0, x_1); +lean_ctor_set_uint8(x_3, sizeof(void*)*1, x_2); +return x_3; +} +} +static lean_object* _init_l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__16() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__5; +x_2 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__13; +x_3 = lean_alloc_ctor(4, 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_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__17() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; +x_1 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__16; +x_2 = 0; +x_3 = lean_alloc_ctor(6, 1, 1); +lean_ctor_set(x_3, 0, x_1); +lean_ctor_set_uint8(x_3, sizeof(void*)*1, x_2); +return x_3; +} +} +static lean_object* _init_l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__18() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("_private.Lean.Meta.LazyDiscrTree.0.Lean.Meta.LazyDiscrTree.MatchClone.Key.other", 79); +return x_1; +} +} +static lean_object* _init_l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__19() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__18; +x_2 = lean_alloc_ctor(3, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; +} +} +static lean_object* _init_l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__20() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__4; +x_2 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__19; +x_3 = lean_alloc_ctor(4, 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_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__21() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; +x_1 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__20; +x_2 = 0; +x_3 = lean_alloc_ctor(6, 1, 1); +lean_ctor_set(x_3, 0, x_1); +lean_ctor_set_uint8(x_3, sizeof(void*)*1, x_2); +return x_3; +} +} +static lean_object* _init_l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__22() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__5; +x_2 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__19; +x_3 = lean_alloc_ctor(4, 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_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__23() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; +x_1 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__22; +x_2 = 0; +x_3 = lean_alloc_ctor(6, 1, 1); +lean_ctor_set(x_3, 0, x_1); +lean_ctor_set_uint8(x_3, sizeof(void*)*1, x_2); +return x_3; +} +} +static lean_object* _init_l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__24() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("_private.Lean.Meta.LazyDiscrTree.0.Lean.Meta.LazyDiscrTree.MatchClone.Key.arrow", 79); +return x_1; +} +} +static lean_object* _init_l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__25() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__24; +x_2 = lean_alloc_ctor(3, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; +} +} +static lean_object* _init_l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__26() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__4; +x_2 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__25; +x_3 = lean_alloc_ctor(4, 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_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__27() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; +x_1 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__26; +x_2 = 0; +x_3 = lean_alloc_ctor(6, 1, 1); +lean_ctor_set(x_3, 0, x_1); +lean_ctor_set_uint8(x_3, sizeof(void*)*1, x_2); +return x_3; +} +} +static lean_object* _init_l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__28() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__5; +x_2 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__25; +x_3 = lean_alloc_ctor(4, 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_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__29() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; +x_1 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__28; +x_2 = 0; +x_3 = lean_alloc_ctor(6, 1, 1); +lean_ctor_set(x_3, 0, x_1); +lean_ctor_set_uint8(x_3, sizeof(void*)*1, x_2); +return x_3; +} +} +static lean_object* _init_l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__30() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("_private.Lean.Meta.LazyDiscrTree.0.Lean.Meta.LazyDiscrTree.MatchClone.Key.proj", 78); +return x_1; +} +} +static lean_object* _init_l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__31() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__30; +x_2 = lean_alloc_ctor(3, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; +} +} +static lean_object* _init_l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__32() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__31; +x_2 = lean_box(1); +x_3 = lean_alloc_ctor(5, 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___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368_(lean_object* x_1, lean_object* x_2) { +_start: +{ +switch (lean_obj_tag(x_1)) { +case 0: +{ +lean_object* 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; lean_object* x_12; lean_object* x_13; lean_object* x_14; +x_3 = lean_ctor_get(x_1, 0); +lean_inc(x_3); +x_4 = lean_ctor_get(x_1, 1); +lean_inc(x_4); +lean_dec(x_1); +x_5 = lean_unsigned_to_nat(1024u); +x_6 = lean_nat_dec_le(x_5, x_2); +x_7 = l_Lean_Name_reprPrec(x_3, x_5); +x_8 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__3; +x_9 = lean_alloc_ctor(5, 2, 0); +lean_ctor_set(x_9, 0, x_8); +lean_ctor_set(x_9, 1, x_7); +x_10 = lean_box(1); +x_11 = lean_alloc_ctor(5, 2, 0); +lean_ctor_set(x_11, 0, x_9); +lean_ctor_set(x_11, 1, x_10); +x_12 = l_Nat_repr(x_4); +x_13 = lean_alloc_ctor(3, 1, 0); +lean_ctor_set(x_13, 0, x_12); +x_14 = lean_alloc_ctor(5, 2, 0); +lean_ctor_set(x_14, 0, x_11); +lean_ctor_set(x_14, 1, x_13); +if (x_6 == 0) +{ +lean_object* x_15; lean_object* x_16; uint8_t x_17; lean_object* x_18; lean_object* x_19; +x_15 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__4; +x_16 = lean_alloc_ctor(4, 2, 0); +lean_ctor_set(x_16, 0, x_15); +lean_ctor_set(x_16, 1, x_14); +x_17 = 0; +x_18 = lean_alloc_ctor(6, 1, 1); +lean_ctor_set(x_18, 0, x_16); +lean_ctor_set_uint8(x_18, sizeof(void*)*1, x_17); +x_19 = l_Repr_addAppParen(x_18, x_2); +return x_19; +} +else +{ +lean_object* x_20; lean_object* x_21; uint8_t x_22; lean_object* x_23; lean_object* x_24; +x_20 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__5; +x_21 = lean_alloc_ctor(4, 2, 0); +lean_ctor_set(x_21, 0, x_20); +lean_ctor_set(x_21, 1, x_14); +x_22 = 0; +x_23 = lean_alloc_ctor(6, 1, 1); +lean_ctor_set(x_23, 0, x_21); +lean_ctor_set_uint8(x_23, sizeof(void*)*1, x_22); +x_24 = l_Repr_addAppParen(x_23, x_2); +return x_24; +} +} +case 1: +{ +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; lean_object* x_34; lean_object* x_35; lean_object* x_36; +x_25 = lean_ctor_get(x_1, 0); +lean_inc(x_25); +x_26 = lean_ctor_get(x_1, 1); +lean_inc(x_26); +lean_dec(x_1); +x_27 = lean_unsigned_to_nat(1024u); +x_28 = lean_nat_dec_le(x_27, x_2); +x_29 = l_Lean_Name_reprPrec(x_25, x_27); +x_30 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__8; +x_31 = lean_alloc_ctor(5, 2, 0); +lean_ctor_set(x_31, 0, x_30); +lean_ctor_set(x_31, 1, x_29); +x_32 = lean_box(1); +x_33 = lean_alloc_ctor(5, 2, 0); +lean_ctor_set(x_33, 0, x_31); +lean_ctor_set(x_33, 1, x_32); +x_34 = l_Nat_repr(x_26); +x_35 = lean_alloc_ctor(3, 1, 0); +lean_ctor_set(x_35, 0, x_34); +x_36 = lean_alloc_ctor(5, 2, 0); +lean_ctor_set(x_36, 0, x_33); +lean_ctor_set(x_36, 1, x_35); +if (x_28 == 0) +{ +lean_object* x_37; lean_object* x_38; uint8_t x_39; lean_object* x_40; lean_object* x_41; +x_37 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__4; +x_38 = lean_alloc_ctor(4, 2, 0); +lean_ctor_set(x_38, 0, x_37); +lean_ctor_set(x_38, 1, x_36); +x_39 = 0; +x_40 = lean_alloc_ctor(6, 1, 1); +lean_ctor_set(x_40, 0, x_38); +lean_ctor_set_uint8(x_40, sizeof(void*)*1, x_39); +x_41 = l_Repr_addAppParen(x_40, x_2); +return x_41; +} +else +{ +lean_object* x_42; lean_object* x_43; uint8_t x_44; lean_object* x_45; lean_object* x_46; +x_42 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__5; +x_43 = lean_alloc_ctor(4, 2, 0); +lean_ctor_set(x_43, 0, x_42); +lean_ctor_set(x_43, 1, x_36); +x_44 = 0; +x_45 = lean_alloc_ctor(6, 1, 1); +lean_ctor_set(x_45, 0, x_43); +lean_ctor_set_uint8(x_45, sizeof(void*)*1, x_44); +x_46 = l_Repr_addAppParen(x_45, x_2); +return x_46; +} +} +case 2: +{ +lean_object* x_47; lean_object* x_48; uint8_t x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; +x_47 = lean_ctor_get(x_1, 0); +lean_inc(x_47); +lean_dec(x_1); +x_48 = lean_unsigned_to_nat(1024u); +x_49 = lean_nat_dec_le(x_48, x_2); +x_50 = l___private_Lean_Expr_0__Lean_reprLiteral____x40_Lean_Expr___hyg_117_(x_47, x_48); +x_51 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__11; +x_52 = lean_alloc_ctor(5, 2, 0); +lean_ctor_set(x_52, 0, x_51); +lean_ctor_set(x_52, 1, x_50); +if (x_49 == 0) +{ +lean_object* x_53; lean_object* x_54; uint8_t x_55; lean_object* x_56; lean_object* x_57; +x_53 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__4; +x_54 = lean_alloc_ctor(4, 2, 0); +lean_ctor_set(x_54, 0, x_53); +lean_ctor_set(x_54, 1, x_52); +x_55 = 0; +x_56 = lean_alloc_ctor(6, 1, 1); +lean_ctor_set(x_56, 0, x_54); +lean_ctor_set_uint8(x_56, sizeof(void*)*1, x_55); +x_57 = l_Repr_addAppParen(x_56, x_2); +return x_57; +} +else +{ +lean_object* x_58; lean_object* x_59; uint8_t x_60; lean_object* x_61; lean_object* x_62; +x_58 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__5; +x_59 = lean_alloc_ctor(4, 2, 0); +lean_ctor_set(x_59, 0, x_58); +lean_ctor_set(x_59, 1, x_52); +x_60 = 0; +x_61 = lean_alloc_ctor(6, 1, 1); +lean_ctor_set(x_61, 0, x_59); +lean_ctor_set_uint8(x_61, sizeof(void*)*1, x_60); +x_62 = l_Repr_addAppParen(x_61, x_2); +return x_62; +} +} +case 3: +{ +lean_object* x_63; uint8_t x_64; +x_63 = lean_unsigned_to_nat(1024u); +x_64 = lean_nat_dec_le(x_63, x_2); +if (x_64 == 0) +{ +lean_object* x_65; lean_object* x_66; +x_65 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__15; +x_66 = l_Repr_addAppParen(x_65, x_2); +return x_66; +} +else +{ +lean_object* x_67; lean_object* x_68; +x_67 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__17; +x_68 = l_Repr_addAppParen(x_67, x_2); +return x_68; +} +} +case 4: +{ +lean_object* x_69; uint8_t x_70; +x_69 = lean_unsigned_to_nat(1024u); +x_70 = lean_nat_dec_le(x_69, x_2); +if (x_70 == 0) +{ +lean_object* x_71; lean_object* x_72; +x_71 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__21; +x_72 = l_Repr_addAppParen(x_71, x_2); +return x_72; +} +else +{ +lean_object* x_73; lean_object* x_74; +x_73 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__23; +x_74 = l_Repr_addAppParen(x_73, x_2); +return x_74; +} +} +case 5: +{ +lean_object* x_75; uint8_t x_76; +x_75 = lean_unsigned_to_nat(1024u); +x_76 = lean_nat_dec_le(x_75, x_2); +if (x_76 == 0) +{ +lean_object* x_77; lean_object* x_78; +x_77 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__27; +x_78 = l_Repr_addAppParen(x_77, x_2); +return x_78; +} +else +{ +lean_object* x_79; lean_object* x_80; +x_79 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__29; +x_80 = l_Repr_addAppParen(x_79, x_2); +return x_80; +} +} +default: +{ +lean_object* x_81; 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; 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_81 = lean_ctor_get(x_1, 0); +lean_inc(x_81); +x_82 = lean_ctor_get(x_1, 1); +lean_inc(x_82); +x_83 = lean_ctor_get(x_1, 2); +lean_inc(x_83); +lean_dec(x_1); +x_84 = lean_unsigned_to_nat(1024u); +x_85 = lean_nat_dec_le(x_84, x_2); +x_86 = l_Lean_Name_reprPrec(x_81, x_84); +x_87 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__32; +x_88 = lean_alloc_ctor(5, 2, 0); +lean_ctor_set(x_88, 0, x_87); +lean_ctor_set(x_88, 1, x_86); +x_89 = lean_box(1); +x_90 = lean_alloc_ctor(5, 2, 0); +lean_ctor_set(x_90, 0, x_88); +lean_ctor_set(x_90, 1, x_89); +x_91 = l_Nat_repr(x_82); +x_92 = lean_alloc_ctor(3, 1, 0); +lean_ctor_set(x_92, 0, x_91); +x_93 = lean_alloc_ctor(5, 2, 0); +lean_ctor_set(x_93, 0, x_90); +lean_ctor_set(x_93, 1, x_92); +x_94 = lean_alloc_ctor(5, 2, 0); +lean_ctor_set(x_94, 0, x_93); +lean_ctor_set(x_94, 1, x_89); +x_95 = l_Nat_repr(x_83); +x_96 = lean_alloc_ctor(3, 1, 0); +lean_ctor_set(x_96, 0, x_95); +x_97 = lean_alloc_ctor(5, 2, 0); +lean_ctor_set(x_97, 0, x_94); +lean_ctor_set(x_97, 1, x_96); +if (x_85 == 0) +{ +lean_object* x_98; lean_object* x_99; uint8_t x_100; lean_object* x_101; lean_object* x_102; +x_98 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__4; +x_99 = lean_alloc_ctor(4, 2, 0); +lean_ctor_set(x_99, 0, x_98); +lean_ctor_set(x_99, 1, x_97); +x_100 = 0; +x_101 = lean_alloc_ctor(6, 1, 1); +lean_ctor_set(x_101, 0, x_99); +lean_ctor_set_uint8(x_101, sizeof(void*)*1, x_100); +x_102 = l_Repr_addAppParen(x_101, x_2); +return x_102; +} +else +{ +lean_object* x_103; lean_object* x_104; uint8_t x_105; lean_object* x_106; lean_object* x_107; +x_103 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__5; +x_104 = lean_alloc_ctor(4, 2, 0); +lean_ctor_set(x_104, 0, x_103); +lean_ctor_set(x_104, 1, x_97); +x_105 = 0; +x_106 = lean_alloc_ctor(6, 1, 1); +lean_ctor_set(x_106, 0, x_104); +lean_ctor_set_uint8(x_106, sizeof(void*)*1, x_105); +x_107 = l_Repr_addAppParen(x_106, x_2); +return x_107; +} +} +} +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____boxed(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; +x_3 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368_(x_1, x_2); +lean_dec(x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Meta_LazyDiscrTree_MatchClone_instReprKey___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____boxed), 2, 0); +return x_1; +} +} +static lean_object* _init_l_Lean_Meta_LazyDiscrTree_MatchClone_instReprKey() { +_start: +{ +lean_object* x_1; +x_1 = l_Lean_Meta_LazyDiscrTree_MatchClone_instReprKey___closed__1; +return x_1; +} +} +LEAN_EXPORT uint64_t l_Lean_Meta_LazyDiscrTree_MatchClone_Key_hash(lean_object* x_1) { +_start: +{ +switch (lean_obj_tag(x_1)) { +case 0: +{ +lean_object* x_2; lean_object* x_3; uint64_t x_4; uint64_t x_5; uint64_t x_6; uint64_t x_7; uint64_t x_8; +x_2 = lean_ctor_get(x_1, 0); +x_3 = lean_ctor_get(x_1, 1); +x_4 = 5237; +x_5 = l_Lean_Name_hash___override(x_2); +x_6 = lean_uint64_of_nat(x_3); +x_7 = lean_uint64_mix_hash(x_5, x_6); +x_8 = lean_uint64_mix_hash(x_4, x_7); +return x_8; +} +case 1: +{ +lean_object* x_9; lean_object* x_10; uint64_t x_11; uint64_t x_12; uint64_t x_13; uint64_t x_14; uint64_t x_15; +x_9 = lean_ctor_get(x_1, 0); +x_10 = lean_ctor_get(x_1, 1); +x_11 = 3541; +x_12 = l___private_Lean_Expr_0__Lean_hashFVarId____x40_Lean_Expr___hyg_1674_(x_9); +x_13 = lean_uint64_of_nat(x_10); +x_14 = lean_uint64_mix_hash(x_12, x_13); +x_15 = lean_uint64_mix_hash(x_11, x_14); +return x_15; +} +case 2: +{ +lean_object* x_16; uint64_t x_17; uint64_t x_18; uint64_t x_19; +x_16 = lean_ctor_get(x_1, 0); +x_17 = 1879; +x_18 = l_Lean_Literal_hash(x_16); +x_19 = lean_uint64_mix_hash(x_17, x_18); +return x_19; +} +case 3: +{ +uint64_t x_20; +x_20 = 7883; +return x_20; +} +case 4: +{ +uint64_t x_21; +x_21 = 2411; +return x_21; +} +case 5: +{ +uint64_t x_22; +x_22 = 17; +return x_22; +} +default: +{ +lean_object* x_23; lean_object* x_24; lean_object* x_25; uint64_t x_26; uint64_t x_27; uint64_t x_28; uint64_t x_29; uint64_t x_30; +x_23 = lean_ctor_get(x_1, 0); +x_24 = lean_ctor_get(x_1, 1); +x_25 = lean_ctor_get(x_1, 2); +x_26 = lean_uint64_of_nat(x_25); +x_27 = l_Lean_Name_hash___override(x_23); +x_28 = lean_uint64_of_nat(x_24); +x_29 = lean_uint64_mix_hash(x_27, x_28); +x_30 = lean_uint64_mix_hash(x_26, x_29); +return x_30; +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_LazyDiscrTree_MatchClone_Key_hash___boxed(lean_object* x_1) { +_start: +{ +uint64_t x_2; lean_object* x_3; +x_2 = l_Lean_Meta_LazyDiscrTree_MatchClone_Key_hash(x_1); +lean_dec(x_1); +x_3 = lean_box_uint64(x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Meta_LazyDiscrTree_MatchClone_Key_instHashableKey___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Meta_LazyDiscrTree_MatchClone_Key_hash___boxed), 1, 0); +return x_1; +} +} +static lean_object* _init_l_Lean_Meta_LazyDiscrTree_MatchClone_Key_instHashableKey() { +_start: +{ +lean_object* x_1; +x_1 = l_Lean_Meta_LazyDiscrTree_MatchClone_Key_instHashableKey___closed__1; +return x_1; +} +} +static lean_object* _init_l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_tmpMVarId___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("_discr_tree_tmp", 15); +return x_1; +} +} +static lean_object* _init_l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_tmpMVarId___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_tmpMVarId___closed__1; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_tmpMVarId() { +_start: +{ +lean_object* x_1; +x_1 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_tmpMVarId___closed__2; +return x_1; +} +} +static lean_object* _init_l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_tmpStar___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_tmpMVarId; +x_2 = l_Lean_Expr_mvar___override(x_1); +return x_2; +} +} +static lean_object* _init_l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_tmpStar() { +_start: +{ +lean_object* x_1; +x_1 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_tmpStar___closed__1; +return x_1; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_ignoreArg(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) { +_start: +{ +lean_object* x_9; uint8_t x_10; +x_9 = lean_array_get_size(x_3); +x_10 = lean_nat_dec_lt(x_2, x_9); +lean_dec(x_9); +if (x_10 == 0) +{ +lean_object* x_11; +x_11 = l_Lean_Meta_isProof(x_1, x_4, x_5, x_6, x_7, x_8); +return x_11; +} +else +{ +lean_object* x_12; uint8_t x_13; +x_12 = lean_array_fget(x_3, x_2); +x_13 = l_Lean_Meta_ParamInfo_isInstImplicit(x_12); +if (x_13 == 0) +{ +uint8_t x_14; +x_14 = l_Lean_Meta_ParamInfo_isImplicit(x_12); +if (x_14 == 0) +{ +uint8_t x_15; +x_15 = l_Lean_Meta_ParamInfo_isStrictImplicit(x_12); +lean_dec(x_12); +if (x_15 == 0) +{ +lean_object* x_16; +x_16 = l_Lean_Meta_isProof(x_1, x_4, x_5, x_6, x_7, x_8); +return x_16; +} +else +{ +lean_object* x_17; +x_17 = l_Lean_Meta_isType(x_1, x_4, x_5, x_6, x_7, x_8); +if (lean_obj_tag(x_17) == 0) +{ +lean_object* x_18; uint8_t x_19; +x_18 = lean_ctor_get(x_17, 0); +lean_inc(x_18); +x_19 = lean_unbox(x_18); +lean_dec(x_18); +if (x_19 == 0) +{ +uint8_t x_20; +x_20 = !lean_is_exclusive(x_17); +if (x_20 == 0) +{ +lean_object* x_21; uint8_t x_22; lean_object* x_23; +x_21 = lean_ctor_get(x_17, 0); +lean_dec(x_21); +x_22 = 1; +x_23 = lean_box(x_22); +lean_ctor_set(x_17, 0, x_23); +return x_17; +} +else +{ +lean_object* x_24; uint8_t x_25; lean_object* x_26; lean_object* x_27; +x_24 = lean_ctor_get(x_17, 1); +lean_inc(x_24); +lean_dec(x_17); +x_25 = 1; +x_26 = lean_box(x_25); +x_27 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_27, 0, x_26); +lean_ctor_set(x_27, 1, x_24); +return x_27; +} +} +else +{ +uint8_t x_28; +x_28 = !lean_is_exclusive(x_17); +if (x_28 == 0) +{ +lean_object* x_29; uint8_t x_30; lean_object* x_31; +x_29 = lean_ctor_get(x_17, 0); +lean_dec(x_29); +x_30 = 0; +x_31 = lean_box(x_30); +lean_ctor_set(x_17, 0, x_31); +return x_17; +} +else +{ +lean_object* x_32; uint8_t x_33; lean_object* x_34; lean_object* x_35; +x_32 = lean_ctor_get(x_17, 1); +lean_inc(x_32); +lean_dec(x_17); +x_33 = 0; +x_34 = lean_box(x_33); +x_35 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_35, 0, x_34); +lean_ctor_set(x_35, 1, x_32); +return x_35; +} +} +} +else +{ +uint8_t x_36; +x_36 = !lean_is_exclusive(x_17); +if (x_36 == 0) +{ +return x_17; +} +else +{ +lean_object* x_37; lean_object* x_38; lean_object* x_39; +x_37 = lean_ctor_get(x_17, 0); +x_38 = lean_ctor_get(x_17, 1); +lean_inc(x_38); +lean_inc(x_37); +lean_dec(x_17); +x_39 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_39, 0, x_37); +lean_ctor_set(x_39, 1, x_38); +return x_39; +} +} +} +} +else +{ +lean_object* x_40; +lean_dec(x_12); +x_40 = l_Lean_Meta_isType(x_1, x_4, x_5, x_6, x_7, x_8); +if (lean_obj_tag(x_40) == 0) +{ +lean_object* x_41; uint8_t x_42; +x_41 = lean_ctor_get(x_40, 0); +lean_inc(x_41); +x_42 = lean_unbox(x_41); +lean_dec(x_41); +if (x_42 == 0) +{ +uint8_t x_43; +x_43 = !lean_is_exclusive(x_40); +if (x_43 == 0) +{ +lean_object* x_44; uint8_t x_45; lean_object* x_46; +x_44 = lean_ctor_get(x_40, 0); +lean_dec(x_44); +x_45 = 1; +x_46 = lean_box(x_45); +lean_ctor_set(x_40, 0, x_46); +return x_40; +} +else +{ +lean_object* x_47; uint8_t x_48; lean_object* x_49; lean_object* x_50; +x_47 = lean_ctor_get(x_40, 1); +lean_inc(x_47); +lean_dec(x_40); +x_48 = 1; +x_49 = lean_box(x_48); +x_50 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_50, 0, x_49); +lean_ctor_set(x_50, 1, x_47); +return x_50; +} +} +else +{ +uint8_t x_51; +x_51 = !lean_is_exclusive(x_40); +if (x_51 == 0) +{ +lean_object* x_52; uint8_t x_53; lean_object* x_54; +x_52 = lean_ctor_get(x_40, 0); +lean_dec(x_52); +x_53 = 0; +x_54 = lean_box(x_53); +lean_ctor_set(x_40, 0, x_54); +return x_40; +} +else +{ +lean_object* x_55; uint8_t x_56; lean_object* x_57; lean_object* x_58; +x_55 = lean_ctor_get(x_40, 1); +lean_inc(x_55); +lean_dec(x_40); +x_56 = 0; +x_57 = lean_box(x_56); +x_58 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_58, 0, x_57); +lean_ctor_set(x_58, 1, x_55); +return x_58; +} +} +} +else +{ +uint8_t x_59; +x_59 = !lean_is_exclusive(x_40); +if (x_59 == 0) +{ +return x_40; +} +else +{ +lean_object* x_60; lean_object* x_61; lean_object* x_62; +x_60 = lean_ctor_get(x_40, 0); +x_61 = lean_ctor_get(x_40, 1); +lean_inc(x_61); +lean_inc(x_60); +lean_dec(x_40); +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 +{ +uint8_t x_63; lean_object* x_64; lean_object* x_65; +lean_dec(x_12); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_1); +x_63 = 1; +x_64 = lean_box(x_63); +x_65 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_65, 0, x_64); +lean_ctor_set(x_65, 1, x_8); +return x_65; +} +} +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_ignoreArg___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) { +_start: +{ +lean_object* x_9; +x_9 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_ignoreArg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +lean_dec(x_3); +lean_dec(x_2); +return x_9; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_pushArgsAux(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: +{ +if (lean_obj_tag(x_3) == 5) +{ +lean_object* x_10; lean_object* x_11; lean_object* x_12; +x_10 = lean_ctor_get(x_3, 0); +lean_inc(x_10); +x_11 = lean_ctor_get(x_3, 1); +lean_inc(x_11); +lean_dec(x_3); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_11); +x_12 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_ignoreArg(x_11, x_2, x_1, x_5, x_6, x_7, x_8, x_9); +if (lean_obj_tag(x_12) == 0) +{ +lean_object* x_13; uint8_t x_14; +x_13 = lean_ctor_get(x_12, 0); +lean_inc(x_13); +x_14 = lean_unbox(x_13); +lean_dec(x_13); +if (x_14 == 0) +{ +lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; +x_15 = lean_ctor_get(x_12, 1); +lean_inc(x_15); +lean_dec(x_12); +x_16 = lean_unsigned_to_nat(1u); +x_17 = lean_nat_sub(x_2, x_16); +lean_dec(x_2); +x_18 = lean_array_push(x_4, x_11); +x_2 = x_17; +x_3 = x_10; +x_4 = x_18; +x_9 = x_15; +goto _start; +} +else +{ +lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; +lean_dec(x_11); +x_20 = lean_ctor_get(x_12, 1); +lean_inc(x_20); +lean_dec(x_12); +x_21 = lean_unsigned_to_nat(1u); +x_22 = lean_nat_sub(x_2, x_21); +lean_dec(x_2); +x_23 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_tmpStar; +x_24 = lean_array_push(x_4, x_23); +x_2 = x_22; +x_3 = x_10; +x_4 = x_24; +x_9 = x_20; +goto _start; +} +} +else +{ +uint8_t x_26; +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_2); +x_26 = !lean_is_exclusive(x_12); +if (x_26 == 0) +{ +return x_12; +} +else +{ +lean_object* x_27; lean_object* x_28; lean_object* x_29; +x_27 = lean_ctor_get(x_12, 0); +x_28 = lean_ctor_get(x_12, 1); +lean_inc(x_28); +lean_inc(x_27); +lean_dec(x_12); +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; +} +} +} +else +{ +lean_object* x_30; +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_30 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_30, 0, x_4); +lean_ctor_set(x_30, 1, x_9); +return x_30; +} +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_pushArgsAux___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___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_pushArgsAux(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +lean_dec(x_1); +return x_10; +} +} +static lean_object* _init_l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_isNumeral___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("OfNat", 5); +return x_1; +} +} +static lean_object* _init_l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_isNumeral___closed__2() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("ofNat", 5); +return x_1; +} +} +static lean_object* _init_l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_isNumeral___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_isNumeral___closed__1; +x_2 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_isNumeral___closed__2; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_isNumeral___closed__4() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("Nat", 3); +return x_1; +} +} +static lean_object* _init_l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_isNumeral___closed__5() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("zero", 4); +return x_1; +} +} +static lean_object* _init_l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_isNumeral___closed__6() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_isNumeral___closed__4; +x_2 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_isNumeral___closed__5; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_isNumeral___closed__7() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("succ", 4); +return x_1; +} +} +static lean_object* _init_l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_isNumeral___closed__8() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_isNumeral___closed__4; +x_2 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_isNumeral___closed__7; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; +} +} +LEAN_EXPORT uint8_t l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_isNumeral(lean_object* x_1) { +_start: +{ +uint8_t x_2; +x_2 = l_Lean_Expr_isRawNatLit(x_1); +if (x_2 == 0) +{ +lean_object* x_3; uint8_t x_4; +x_3 = l_Lean_Expr_getAppFn(x_1); +x_4 = l_Lean_Expr_isConst(x_3); +if (x_4 == 0) +{ +uint8_t x_5; +lean_dec(x_3); +lean_dec(x_1); +x_5 = 0; +return x_5; +} +else +{ +lean_object* x_6; lean_object* x_7; lean_object* x_30; uint8_t x_31; +x_6 = l_Lean_Expr_constName_x21(x_3); +lean_dec(x_3); +x_30 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_isNumeral___closed__8; +x_31 = lean_name_eq(x_6, x_30); +if (x_31 == 0) +{ +lean_object* x_32; +x_32 = lean_box(0); +x_7 = x_32; +goto block_29; +} +else +{ +lean_object* x_33; lean_object* x_34; lean_object* x_35; uint8_t x_36; +x_33 = lean_unsigned_to_nat(0u); +x_34 = l___private_Lean_Expr_0__Lean_Expr_getAppNumArgsAux(x_1, x_33); +x_35 = lean_unsigned_to_nat(1u); +x_36 = lean_nat_dec_eq(x_34, x_35); +lean_dec(x_34); +if (x_36 == 0) +{ +lean_object* x_37; +x_37 = lean_box(0); +x_7 = x_37; +goto block_29; +} +else +{ +lean_object* x_38; +lean_dec(x_6); +x_38 = l_Lean_Expr_appArg_x21(x_1); +lean_dec(x_1); +x_1 = x_38; +goto _start; +} +} +block_29: +{ +lean_object* x_8; uint8_t x_9; +lean_dec(x_7); +x_8 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_isNumeral___closed__3; +x_9 = lean_name_eq(x_6, x_8); +if (x_9 == 0) +{ +lean_object* x_10; uint8_t x_11; +x_10 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_isNumeral___closed__6; +x_11 = lean_name_eq(x_6, x_10); +lean_dec(x_6); +if (x_11 == 0) +{ +uint8_t x_12; +lean_dec(x_1); +x_12 = 0; +return x_12; +} +else +{ +lean_object* x_13; lean_object* x_14; uint8_t x_15; +x_13 = lean_unsigned_to_nat(0u); +x_14 = l___private_Lean_Expr_0__Lean_Expr_getAppNumArgsAux(x_1, x_13); +lean_dec(x_1); +x_15 = lean_nat_dec_eq(x_14, x_13); +lean_dec(x_14); +return x_15; +} +} +else +{ +lean_object* x_16; lean_object* x_17; lean_object* x_18; uint8_t x_19; +x_16 = lean_unsigned_to_nat(0u); +x_17 = l___private_Lean_Expr_0__Lean_Expr_getAppNumArgsAux(x_1, x_16); +x_18 = lean_unsigned_to_nat(3u); +x_19 = lean_nat_dec_eq(x_17, x_18); +if (x_19 == 0) +{ +lean_object* x_20; uint8_t x_21; +lean_dec(x_1); +x_20 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_isNumeral___closed__6; +x_21 = lean_name_eq(x_6, x_20); +lean_dec(x_6); +if (x_21 == 0) +{ +uint8_t x_22; +lean_dec(x_17); +x_22 = 0; +return x_22; +} +else +{ +uint8_t x_23; +x_23 = lean_nat_dec_eq(x_17, x_16); +lean_dec(x_17); +return x_23; +} +} +else +{ +lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; +lean_dec(x_6); +x_24 = lean_unsigned_to_nat(1u); +x_25 = lean_nat_sub(x_17, x_24); +lean_dec(x_17); +x_26 = lean_nat_sub(x_25, x_24); +lean_dec(x_25); +x_27 = l_Lean_Expr_getRevArg_x21(x_1, x_26); +lean_dec(x_1); +x_1 = x_27; +goto _start; +} +} +} +} +} +else +{ +uint8_t x_40; +lean_dec(x_1); +x_40 = 1; +return x_40; +} +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_isNumeral___boxed(lean_object* x_1) { +_start: +{ +uint8_t x_2; lean_object* x_3; +x_2 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_isNumeral(x_1); +x_3 = lean_box(x_2); +return x_3; +} +} +static lean_object* _init_l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_toNatLit_x3f_loop___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = lean_unsigned_to_nat(0u); +x_2 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_toNatLit_x3f_loop(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = l_Lean_Expr_getAppFn(x_1); +switch (lean_obj_tag(x_2)) { +case 4: +{ +lean_object* x_3; lean_object* x_4; lean_object* x_31; uint8_t x_32; +x_3 = lean_ctor_get(x_2, 0); +lean_inc(x_3); +lean_dec(x_2); +x_31 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_isNumeral___closed__8; +x_32 = lean_name_eq(x_3, x_31); +if (x_32 == 0) +{ +lean_object* x_33; +x_33 = lean_box(0); +x_4 = x_33; +goto block_30; +} +else +{ +lean_object* x_34; lean_object* x_35; lean_object* x_36; uint8_t x_37; +x_34 = lean_unsigned_to_nat(0u); +x_35 = l___private_Lean_Expr_0__Lean_Expr_getAppNumArgsAux(x_1, x_34); +x_36 = lean_unsigned_to_nat(1u); +x_37 = lean_nat_dec_eq(x_35, x_36); +lean_dec(x_35); +if (x_37 == 0) +{ +lean_object* x_38; +x_38 = lean_box(0); +x_4 = x_38; +goto block_30; +} +else +{ +lean_object* x_39; lean_object* x_40; +lean_dec(x_3); +x_39 = l_Lean_Expr_appArg_x21(x_1); +lean_dec(x_1); +x_40 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_toNatLit_x3f_loop(x_39); +if (lean_obj_tag(x_40) == 0) +{ +lean_object* x_41; +x_41 = lean_box(0); +return x_41; +} +else +{ +uint8_t x_42; +x_42 = !lean_is_exclusive(x_40); +if (x_42 == 0) +{ +lean_object* x_43; lean_object* x_44; +x_43 = lean_ctor_get(x_40, 0); +x_44 = lean_nat_add(x_43, x_36); +lean_dec(x_43); +lean_ctor_set(x_40, 0, x_44); +return x_40; +} +else +{ +lean_object* x_45; lean_object* x_46; lean_object* x_47; +x_45 = lean_ctor_get(x_40, 0); +lean_inc(x_45); +lean_dec(x_40); +x_46 = lean_nat_add(x_45, x_36); +lean_dec(x_45); +x_47 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_47, 0, x_46); +return x_47; +} +} +} +} +block_30: +{ +lean_object* x_5; uint8_t x_6; +lean_dec(x_4); +x_5 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_isNumeral___closed__3; +x_6 = lean_name_eq(x_3, x_5); +if (x_6 == 0) +{ +lean_object* x_7; uint8_t x_8; +x_7 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_isNumeral___closed__6; +x_8 = lean_name_eq(x_3, x_7); +lean_dec(x_3); +if (x_8 == 0) +{ +lean_object* x_9; +lean_dec(x_1); +x_9 = lean_box(0); +return x_9; +} +else +{ +lean_object* x_10; lean_object* x_11; uint8_t x_12; +x_10 = lean_unsigned_to_nat(0u); +x_11 = l___private_Lean_Expr_0__Lean_Expr_getAppNumArgsAux(x_1, x_10); +lean_dec(x_1); +x_12 = lean_nat_dec_eq(x_11, x_10); +lean_dec(x_11); +if (x_12 == 0) +{ +lean_object* x_13; +x_13 = lean_box(0); +return x_13; +} +else +{ +lean_object* x_14; +x_14 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_toNatLit_x3f_loop___closed__1; +return x_14; +} +} +} +else +{ +lean_object* x_15; lean_object* x_16; lean_object* x_17; uint8_t x_18; +x_15 = lean_unsigned_to_nat(0u); +x_16 = l___private_Lean_Expr_0__Lean_Expr_getAppNumArgsAux(x_1, x_15); +x_17 = lean_unsigned_to_nat(3u); +x_18 = lean_nat_dec_eq(x_16, x_17); +if (x_18 == 0) +{ +lean_object* x_19; uint8_t x_20; +lean_dec(x_1); +x_19 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_isNumeral___closed__6; +x_20 = lean_name_eq(x_3, x_19); +lean_dec(x_3); +if (x_20 == 0) +{ +lean_object* x_21; +lean_dec(x_16); +x_21 = lean_box(0); +return x_21; +} +else +{ +uint8_t x_22; +x_22 = lean_nat_dec_eq(x_16, x_15); +lean_dec(x_16); +if (x_22 == 0) +{ +lean_object* x_23; +x_23 = lean_box(0); +return x_23; +} +else +{ +lean_object* x_24; +x_24 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_toNatLit_x3f_loop___closed__1; +return x_24; +} +} +} +else +{ +lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; +lean_dec(x_3); +x_25 = lean_unsigned_to_nat(1u); +x_26 = lean_nat_sub(x_16, x_25); +lean_dec(x_16); +x_27 = lean_nat_sub(x_26, x_25); +lean_dec(x_26); +x_28 = l_Lean_Expr_getRevArg_x21(x_1, x_27); +lean_dec(x_1); +x_1 = x_28; +goto _start; +} +} +} +} +case 9: +{ +lean_object* x_48; +lean_dec(x_1); +x_48 = lean_ctor_get(x_2, 0); +lean_inc(x_48); +lean_dec(x_2); +if (lean_obj_tag(x_48) == 0) +{ +lean_object* x_49; lean_object* x_50; +x_49 = lean_ctor_get(x_48, 0); +lean_inc(x_49); +lean_dec(x_48); +x_50 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_50, 0, x_49); +return x_50; +} +else +{ +lean_object* x_51; +lean_dec(x_48); +x_51 = lean_box(0); +return x_51; +} +} +default: +{ +lean_object* x_52; +lean_dec(x_2); +lean_dec(x_1); +x_52 = lean_box(0); +return x_52; +} +} +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_toNatLit_x3f(lean_object* x_1) { +_start: +{ +uint8_t x_2; +lean_inc(x_1); +x_2 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_isNumeral(x_1); +if (x_2 == 0) +{ +lean_object* x_3; +lean_dec(x_1); +x_3 = lean_box(0); +return x_3; +} +else +{ +lean_object* x_4; +x_4 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_toNatLit_x3f_loop(x_1); +if (lean_obj_tag(x_4) == 0) +{ +lean_object* x_5; +x_5 = lean_box(0); +return x_5; +} +else +{ +uint8_t x_6; +x_6 = !lean_is_exclusive(x_4); +if (x_6 == 0) +{ +lean_object* x_7; lean_object* x_8; +x_7 = lean_ctor_get(x_4, 0); +x_8 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_8, 0, x_7); +lean_ctor_set(x_4, 0, x_8); +return x_4; +} +else +{ +lean_object* x_9; lean_object* x_10; lean_object* x_11; +x_9 = lean_ctor_get(x_4, 0); +lean_inc(x_9); +lean_dec(x_4); +x_10 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_10, 0, x_9); +x_11 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_11, 0, x_10); +return x_11; +} +} +} +} +} +static lean_object* _init_l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_isNatType___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_isNumeral___closed__4; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_isNatType(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 = lean_whnf(x_1, x_2, x_3, x_4, x_5, x_6); +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; uint8_t x_11; lean_object* x_12; +x_9 = lean_ctor_get(x_7, 0); +x_10 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_isNatType___closed__1; +x_11 = l_Lean_Expr_isConstOf(x_9, x_10); +lean_dec(x_9); +x_12 = lean_box(x_11); +lean_ctor_set(x_7, 0, x_12); +return x_7; +} +else +{ +lean_object* x_13; lean_object* x_14; lean_object* x_15; uint8_t x_16; lean_object* x_17; lean_object* x_18; +x_13 = lean_ctor_get(x_7, 0); +x_14 = lean_ctor_get(x_7, 1); +lean_inc(x_14); +lean_inc(x_13); +lean_dec(x_7); +x_15 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_isNatType___closed__1; +x_16 = l_Lean_Expr_isConstOf(x_13, x_15); +lean_dec(x_13); +x_17 = lean_box(x_16); +x_18 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_18, 0, x_17); +lean_ctor_set(x_18, 1, x_14); +return x_18; +} +} +else +{ +uint8_t x_19; +x_19 = !lean_is_exclusive(x_7); +if (x_19 == 0) +{ +return x_7; +} +else +{ +lean_object* x_20; lean_object* x_21; lean_object* x_22; +x_20 = lean_ctor_get(x_7, 0); +x_21 = lean_ctor_get(x_7, 1); +lean_inc(x_21); +lean_inc(x_20); +lean_dec(x_7); +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; +} +} +} +} +static lean_object* _init_l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_isNatOffset___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("HAdd", 4); +return x_1; +} +} +static lean_object* _init_l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_isNatOffset___closed__2() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("hAdd", 4); +return x_1; +} +} +static lean_object* _init_l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_isNatOffset___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_isNatOffset___closed__1; +x_2 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_isNatOffset___closed__2; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_isNatOffset___closed__4() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("add", 3); +return x_1; +} +} +static lean_object* _init_l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_isNatOffset___closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_isNumeral___closed__4; +x_2 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_isNatOffset___closed__4; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_isNatOffset___closed__6() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("Add", 3); +return x_1; +} +} +static lean_object* _init_l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_isNatOffset___closed__7() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_isNatOffset___closed__6; +x_2 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_isNatOffset___closed__4; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_isNatOffset(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_65; uint8_t x_66; +x_65 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_isNatOffset___closed__5; +x_66 = lean_name_eq(x_1, x_65); +if (x_66 == 0) +{ +lean_object* x_67; uint8_t x_68; +x_67 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_isNatOffset___closed__7; +x_68 = lean_name_eq(x_1, x_67); +if (x_68 == 0) +{ +lean_object* x_69; +x_69 = lean_box(0); +x_8 = x_69; +goto block_64; +} +else +{ +lean_object* x_70; lean_object* x_71; lean_object* x_72; uint8_t x_73; +x_70 = lean_unsigned_to_nat(0u); +x_71 = l___private_Lean_Expr_0__Lean_Expr_getAppNumArgsAux(x_2, x_70); +x_72 = lean_unsigned_to_nat(4u); +x_73 = lean_nat_dec_eq(x_71, x_72); +if (x_73 == 0) +{ +lean_object* x_74; +lean_dec(x_71); +x_74 = lean_box(0); +x_8 = x_74; +goto block_64; +} +else +{ +lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; lean_object* x_79; +x_75 = lean_nat_sub(x_71, x_70); +lean_dec(x_71); +x_76 = lean_unsigned_to_nat(1u); +x_77 = lean_nat_sub(x_75, x_76); +lean_dec(x_75); +x_78 = l_Lean_Expr_getRevArg_x21(x_2, x_77); +x_79 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_isNatType(x_78, x_3, x_4, x_5, x_6, x_7); +if (lean_obj_tag(x_79) == 0) +{ +lean_object* x_80; uint8_t x_81; +x_80 = lean_ctor_get(x_79, 0); +lean_inc(x_80); +x_81 = lean_unbox(x_80); +lean_dec(x_80); +if (x_81 == 0) +{ +uint8_t x_82; +x_82 = !lean_is_exclusive(x_79); +if (x_82 == 0) +{ +lean_object* x_83; uint8_t x_84; lean_object* x_85; +x_83 = lean_ctor_get(x_79, 0); +lean_dec(x_83); +x_84 = 0; +x_85 = lean_box(x_84); +lean_ctor_set(x_79, 0, x_85); +return x_79; +} +else +{ +lean_object* x_86; uint8_t x_87; lean_object* x_88; lean_object* x_89; +x_86 = lean_ctor_get(x_79, 1); +lean_inc(x_86); +lean_dec(x_79); +x_87 = 0; +x_88 = lean_box(x_87); +x_89 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_89, 0, x_88); +lean_ctor_set(x_89, 1, x_86); +return x_89; +} +} +else +{ +uint8_t x_90; +x_90 = !lean_is_exclusive(x_79); +if (x_90 == 0) +{ +lean_object* x_91; lean_object* x_92; uint8_t x_93; lean_object* x_94; +x_91 = lean_ctor_get(x_79, 0); +lean_dec(x_91); +x_92 = l_Lean_Expr_appArg_x21(x_2); +x_93 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_isNumeral(x_92); +x_94 = lean_box(x_93); +lean_ctor_set(x_79, 0, x_94); +return x_79; +} +else +{ +lean_object* x_95; lean_object* x_96; uint8_t x_97; lean_object* x_98; lean_object* x_99; +x_95 = lean_ctor_get(x_79, 1); +lean_inc(x_95); +lean_dec(x_79); +x_96 = l_Lean_Expr_appArg_x21(x_2); +x_97 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_isNumeral(x_96); +x_98 = lean_box(x_97); +x_99 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_99, 0, x_98); +lean_ctor_set(x_99, 1, x_95); +return x_99; +} +} +} +else +{ +uint8_t x_100; +x_100 = !lean_is_exclusive(x_79); +if (x_100 == 0) +{ +return x_79; +} +else +{ +lean_object* x_101; lean_object* x_102; lean_object* x_103; +x_101 = lean_ctor_get(x_79, 0); +x_102 = lean_ctor_get(x_79, 1); +lean_inc(x_102); +lean_inc(x_101); +lean_dec(x_79); +x_103 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_103, 0, x_101); +lean_ctor_set(x_103, 1, x_102); +return x_103; +} +} +} +} +} +else +{ +lean_object* x_104; lean_object* x_105; lean_object* x_106; uint8_t x_107; +x_104 = lean_unsigned_to_nat(0u); +x_105 = l___private_Lean_Expr_0__Lean_Expr_getAppNumArgsAux(x_2, x_104); +x_106 = lean_unsigned_to_nat(2u); +x_107 = lean_nat_dec_eq(x_105, x_106); +if (x_107 == 0) +{ +lean_object* x_108; uint8_t x_109; +x_108 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_isNatOffset___closed__7; +x_109 = lean_name_eq(x_1, x_108); +if (x_109 == 0) +{ +lean_object* x_110; +lean_dec(x_105); +x_110 = lean_box(0); +x_8 = x_110; +goto block_64; +} +else +{ +lean_object* x_111; uint8_t x_112; +x_111 = lean_unsigned_to_nat(4u); +x_112 = lean_nat_dec_eq(x_105, x_111); +if (x_112 == 0) +{ +lean_object* x_113; +lean_dec(x_105); +x_113 = lean_box(0); +x_8 = x_113; +goto block_64; +} +else +{ +lean_object* x_114; lean_object* x_115; lean_object* x_116; lean_object* x_117; lean_object* x_118; +x_114 = lean_nat_sub(x_105, x_104); +lean_dec(x_105); +x_115 = lean_unsigned_to_nat(1u); +x_116 = lean_nat_sub(x_114, x_115); +lean_dec(x_114); +x_117 = l_Lean_Expr_getRevArg_x21(x_2, x_116); +x_118 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_isNatType(x_117, x_3, x_4, x_5, x_6, x_7); +if (lean_obj_tag(x_118) == 0) +{ +lean_object* x_119; uint8_t x_120; +x_119 = lean_ctor_get(x_118, 0); +lean_inc(x_119); +x_120 = lean_unbox(x_119); +lean_dec(x_119); +if (x_120 == 0) +{ +uint8_t x_121; +x_121 = !lean_is_exclusive(x_118); +if (x_121 == 0) +{ +lean_object* x_122; uint8_t x_123; lean_object* x_124; +x_122 = lean_ctor_get(x_118, 0); +lean_dec(x_122); +x_123 = 0; +x_124 = lean_box(x_123); +lean_ctor_set(x_118, 0, x_124); +return x_118; +} +else +{ +lean_object* x_125; uint8_t x_126; lean_object* x_127; lean_object* x_128; +x_125 = lean_ctor_get(x_118, 1); +lean_inc(x_125); +lean_dec(x_118); +x_126 = 0; +x_127 = lean_box(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_125); +return x_128; +} +} +else +{ +uint8_t x_129; +x_129 = !lean_is_exclusive(x_118); +if (x_129 == 0) +{ +lean_object* x_130; lean_object* x_131; uint8_t x_132; lean_object* x_133; +x_130 = lean_ctor_get(x_118, 0); +lean_dec(x_130); +x_131 = l_Lean_Expr_appArg_x21(x_2); +x_132 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_isNumeral(x_131); +x_133 = lean_box(x_132); +lean_ctor_set(x_118, 0, x_133); +return x_118; +} +else +{ +lean_object* x_134; lean_object* x_135; uint8_t x_136; lean_object* x_137; lean_object* x_138; +x_134 = lean_ctor_get(x_118, 1); +lean_inc(x_134); +lean_dec(x_118); +x_135 = l_Lean_Expr_appArg_x21(x_2); +x_136 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_isNumeral(x_135); +x_137 = lean_box(x_136); +x_138 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_138, 0, x_137); +lean_ctor_set(x_138, 1, x_134); +return x_138; +} +} +} +else +{ +uint8_t x_139; +x_139 = !lean_is_exclusive(x_118); +if (x_139 == 0) +{ +return x_118; +} +else +{ +lean_object* x_140; lean_object* x_141; lean_object* x_142; +x_140 = lean_ctor_get(x_118, 0); +x_141 = lean_ctor_get(x_118, 1); +lean_inc(x_141); +lean_inc(x_140); +lean_dec(x_118); +x_142 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_142, 0, x_140); +lean_ctor_set(x_142, 1, x_141); +return x_142; +} +} +} +} +} +else +{ +lean_object* x_143; uint8_t x_144; lean_object* x_145; lean_object* x_146; +lean_dec(x_105); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +x_143 = l_Lean_Expr_appArg_x21(x_2); +x_144 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_isNumeral(x_143); +x_145 = lean_box(x_144); +x_146 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_146, 0, x_145); +lean_ctor_set(x_146, 1, x_7); +return x_146; +} +} +block_64: +{ +lean_object* x_9; uint8_t x_10; +lean_dec(x_8); +x_9 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_isNatOffset___closed__3; +x_10 = lean_name_eq(x_1, x_9); +if (x_10 == 0) +{ +lean_object* x_11; uint8_t x_12; +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +x_11 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_isNumeral___closed__8; +x_12 = lean_name_eq(x_1, x_11); +if (x_12 == 0) +{ +uint8_t x_13; lean_object* x_14; lean_object* x_15; +x_13 = 0; +x_14 = lean_box(x_13); +x_15 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_15, 0, x_14); +lean_ctor_set(x_15, 1, x_7); +return x_15; +} +else +{ +lean_object* x_16; lean_object* x_17; lean_object* x_18; uint8_t x_19; lean_object* x_20; lean_object* x_21; +x_16 = lean_unsigned_to_nat(0u); +x_17 = l___private_Lean_Expr_0__Lean_Expr_getAppNumArgsAux(x_2, x_16); +x_18 = lean_unsigned_to_nat(1u); +x_19 = lean_nat_dec_eq(x_17, x_18); +lean_dec(x_17); +x_20 = lean_box(x_19); +x_21 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_21, 0, x_20); +lean_ctor_set(x_21, 1, x_7); +return x_21; +} +} +else +{ +lean_object* x_22; lean_object* x_23; lean_object* x_24; uint8_t x_25; +x_22 = lean_unsigned_to_nat(0u); +x_23 = l___private_Lean_Expr_0__Lean_Expr_getAppNumArgsAux(x_2, x_22); +x_24 = lean_unsigned_to_nat(6u); +x_25 = lean_nat_dec_eq(x_23, x_24); +if (x_25 == 0) +{ +lean_object* x_26; uint8_t x_27; +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +x_26 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_isNumeral___closed__8; +x_27 = lean_name_eq(x_1, x_26); +if (x_27 == 0) +{ +uint8_t x_28; lean_object* x_29; lean_object* x_30; +lean_dec(x_23); +x_28 = 0; +x_29 = lean_box(x_28); +x_30 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_30, 0, x_29); +lean_ctor_set(x_30, 1, x_7); +return x_30; +} +else +{ +lean_object* x_31; uint8_t x_32; lean_object* x_33; lean_object* x_34; +x_31 = lean_unsigned_to_nat(1u); +x_32 = lean_nat_dec_eq(x_23, x_31); +lean_dec(x_23); +x_33 = lean_box(x_32); +x_34 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_34, 0, x_33); +lean_ctor_set(x_34, 1, x_7); +return x_34; +} +} +else +{ +lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; +x_35 = lean_unsigned_to_nat(1u); +x_36 = lean_nat_sub(x_23, x_35); +lean_dec(x_23); +x_37 = lean_nat_sub(x_36, x_35); +lean_dec(x_36); +x_38 = l_Lean_Expr_getRevArg_x21(x_2, x_37); +x_39 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_isNatType(x_38, x_3, x_4, x_5, x_6, x_7); +if (lean_obj_tag(x_39) == 0) +{ +lean_object* x_40; uint8_t x_41; +x_40 = lean_ctor_get(x_39, 0); +lean_inc(x_40); +x_41 = lean_unbox(x_40); +lean_dec(x_40); +if (x_41 == 0) +{ +uint8_t x_42; +x_42 = !lean_is_exclusive(x_39); +if (x_42 == 0) +{ +lean_object* x_43; uint8_t x_44; lean_object* x_45; +x_43 = lean_ctor_get(x_39, 0); +lean_dec(x_43); +x_44 = 0; +x_45 = lean_box(x_44); +lean_ctor_set(x_39, 0, x_45); +return x_39; +} +else +{ +lean_object* x_46; uint8_t x_47; lean_object* x_48; lean_object* x_49; +x_46 = lean_ctor_get(x_39, 1); +lean_inc(x_46); +lean_dec(x_39); +x_47 = 0; +x_48 = lean_box(x_47); +x_49 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_49, 0, x_48); +lean_ctor_set(x_49, 1, x_46); +return x_49; +} +} +else +{ +uint8_t x_50; +x_50 = !lean_is_exclusive(x_39); +if (x_50 == 0) +{ +lean_object* x_51; lean_object* x_52; uint8_t x_53; lean_object* x_54; +x_51 = lean_ctor_get(x_39, 0); +lean_dec(x_51); +x_52 = l_Lean_Expr_appArg_x21(x_2); +x_53 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_isNumeral(x_52); +x_54 = lean_box(x_53); +lean_ctor_set(x_39, 0, x_54); +return x_39; +} +else +{ +lean_object* x_55; lean_object* x_56; uint8_t x_57; lean_object* x_58; lean_object* x_59; +x_55 = lean_ctor_get(x_39, 1); +lean_inc(x_55); +lean_dec(x_39); +x_56 = l_Lean_Expr_appArg_x21(x_2); +x_57 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_isNumeral(x_56); +x_58 = lean_box(x_57); +x_59 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_59, 0, x_58); +lean_ctor_set(x_59, 1, x_55); +return x_59; +} +} +} +else +{ +uint8_t x_60; +x_60 = !lean_is_exclusive(x_39); +if (x_60 == 0) +{ +return x_39; +} +else +{ +lean_object* x_61; lean_object* x_62; lean_object* x_63; +x_61 = lean_ctor_get(x_39, 0); +x_62 = lean_ctor_get(x_39, 1); +lean_inc(x_62); +lean_inc(x_61); +lean_dec(x_39); +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; +} +} +} +} +} +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_isNatOffset___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___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_isNatOffset(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +lean_dec(x_2); +lean_dec(x_1); +return x_8; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_shouldAddAsStar(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___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_isNatOffset(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +return x_8; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_shouldAddAsStar___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___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_shouldAddAsStar(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +lean_dec(x_2); +lean_dec(x_1); +return x_8; +} +} +static lean_object* _init_l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_elimLooseBVarsByBeta___lambda__1___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = lean_box(0); +x_2 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_elimLooseBVarsByBeta___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_Lean_Expr_hasLooseBVars(x_1); +if (x_5 == 0) +{ +lean_object* x_6; lean_object* x_7; +x_6 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_6, 0, x_1); +x_7 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_7, 0, x_6); +lean_ctor_set(x_7, 1, x_4); +return x_7; +} +else +{ +uint8_t x_8; uint8_t x_9; +x_8 = 0; +x_9 = l_Lean_Expr_isHeadBetaTarget(x_1, x_8); +if (x_9 == 0) +{ +lean_object* x_10; lean_object* x_11; +lean_dec(x_1); +x_10 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_elimLooseBVarsByBeta___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_4); +return x_11; +} +else +{ +lean_object* x_12; lean_object* x_13; lean_object* x_14; +x_12 = l_Lean_Expr_headBeta(x_1); +x_13 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_13, 0, x_12); +x_14 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_14, 0, x_13); +lean_ctor_set(x_14, 1, x_4); +return x_14; +} +} +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_elimLooseBVarsByBeta___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; +x_5 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_5, 0, 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); +return x_6; +} +} +static lean_object* _init_l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_elimLooseBVarsByBeta___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_elimLooseBVarsByBeta___lambda__1___boxed), 4, 0); +return x_1; +} +} +static lean_object* _init_l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_elimLooseBVarsByBeta___closed__2() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_elimLooseBVarsByBeta___lambda__2___boxed), 4, 0); +return x_1; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_elimLooseBVarsByBeta(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; lean_object* x_7; +x_5 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_elimLooseBVarsByBeta___closed__1; +x_6 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_elimLooseBVarsByBeta___closed__2; +x_7 = l_Lean_Core_transform___at_Lean_Core_betaReduce___spec__1(x_1, x_5, x_6, x_2, x_3, x_4); +return x_7; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_elimLooseBVarsByBeta___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___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_elimLooseBVarsByBeta___lambda__1(x_1, x_2, x_3, x_4); +lean_dec(x_3); +lean_dec(x_2); +return x_5; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_elimLooseBVarsByBeta___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___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_elimLooseBVarsByBeta___lambda__2(x_1, x_2, x_3, x_4); +lean_dec(x_3); +lean_dec(x_2); +return x_5; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_getKeyArgs___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) { +_start: +{ +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; +x_9 = lean_unsigned_to_nat(0u); +x_10 = l___private_Lean_Expr_0__Lean_Expr_getAppNumArgsAux(x_1, x_9); +lean_inc(x_10); +x_11 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_11, 0, x_2); +lean_ctor_set(x_11, 1, x_10); +x_12 = lean_mk_empty_array_with_capacity(x_10); +lean_dec(x_10); +x_13 = l___private_Lean_Expr_0__Lean_Expr_getAppRevArgsAux(x_1, x_12); +x_14 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_14, 0, x_11); +lean_ctor_set(x_14, 1, x_13); +x_15 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_15, 0, x_14); +lean_ctor_set(x_15, 1, x_8); +return x_15; +} +} +static lean_object* _init_l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_getKeyArgs___lambda__2___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = lean_unsigned_to_nat(2u); +x_2 = lean_mk_empty_array_with_capacity(x_1); +return x_2; +} +} +static lean_object* _init_l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_getKeyArgs___lambda__2___closed__2() { +_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___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_getKeyArgs___lambda__2___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(4); +x_2 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_getKeyArgs___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___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_getKeyArgs___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: +{ +uint8_t x_8; +x_8 = l_Lean_Expr_hasLooseBVars(x_2); +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; +x_9 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_getKeyArgs___lambda__2___closed__1; +x_10 = lean_array_push(x_9, x_1); +x_11 = lean_array_push(x_10, x_2); +x_12 = lean_box(5); +x_13 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_13, 0, x_12); +lean_ctor_set(x_13, 1, x_11); +x_14 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_14, 0, x_13); +lean_ctor_set(x_14, 1, x_7); +return x_14; +} +else +{ +lean_object* x_15; lean_object* x_16; +lean_dec(x_2); +lean_dec(x_1); +x_15 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_getKeyArgs___lambda__2___closed__3; +x_16 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_16, 0, x_15); +lean_ctor_set(x_16, 1, x_7); +return x_16; +} +} +} +static lean_object* _init_l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_getKeyArgs___lambda__3___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(3); +x_2 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_getKeyArgs___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; +} +} +static lean_object* _init_l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_getKeyArgs___lambda__3___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_levelZero; +x_2 = l_Lean_Expr_sort___override(x_1); +return x_2; +} +} +static lean_object* _init_l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_getKeyArgs___lambda__3___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = lean_unsigned_to_nat(1u); +x_2 = lean_mk_empty_array_with_capacity(x_1); +return x_2; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_getKeyArgs___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) { +_start: +{ +lean_object* x_9; +lean_dec(x_3); +x_9 = l_Lean_Expr_getAppFn(x_1); +switch (lean_obj_tag(x_9)) { +case 1: +{ +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_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +x_10 = lean_ctor_get(x_9, 0); +lean_inc(x_10); +lean_dec(x_9); +x_11 = lean_unsigned_to_nat(0u); +x_12 = l___private_Lean_Expr_0__Lean_Expr_getAppNumArgsAux(x_1, x_11); +lean_inc(x_12); +x_13 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_13, 0, x_10); +lean_ctor_set(x_13, 1, x_12); +x_14 = lean_mk_empty_array_with_capacity(x_12); +lean_dec(x_12); +x_15 = l___private_Lean_Expr_0__Lean_Expr_getAppRevArgsAux(x_1, x_14); +x_16 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_16, 0, x_13); +lean_ctor_set(x_16, 1, 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_8); +return x_17; +} +case 2: +{ +lean_dec(x_1); +if (x_2 == 0) +{ +lean_object* x_18; uint8_t x_19; +x_18 = lean_ctor_get(x_4, 0); +lean_inc(x_18); +x_19 = lean_ctor_get_uint8(x_18, 4); +lean_dec(x_18); +if (x_19 == 0) +{ +lean_object* x_20; lean_object* x_21; +x_20 = lean_ctor_get(x_9, 0); +lean_inc(x_20); +lean_dec(x_9); +x_21 = l_Lean_MVarId_isReadOnlyOrSyntheticOpaque(x_20, x_4, x_5, x_6, x_7, x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +if (lean_obj_tag(x_21) == 0) +{ +lean_object* x_22; uint8_t x_23; +x_22 = lean_ctor_get(x_21, 0); +lean_inc(x_22); +x_23 = lean_unbox(x_22); +lean_dec(x_22); +if (x_23 == 0) +{ +uint8_t x_24; +x_24 = !lean_is_exclusive(x_21); +if (x_24 == 0) +{ +lean_object* x_25; lean_object* x_26; +x_25 = lean_ctor_get(x_21, 0); +lean_dec(x_25); +x_26 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_getKeyArgs___lambda__3___closed__1; +lean_ctor_set(x_21, 0, x_26); +return x_21; +} +else +{ +lean_object* x_27; lean_object* x_28; lean_object* x_29; +x_27 = lean_ctor_get(x_21, 1); +lean_inc(x_27); +lean_dec(x_21); +x_28 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_getKeyArgs___lambda__3___closed__1; +x_29 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_29, 0, x_28); +lean_ctor_set(x_29, 1, x_27); +return x_29; +} +} +else +{ +uint8_t x_30; +x_30 = !lean_is_exclusive(x_21); +if (x_30 == 0) +{ +lean_object* x_31; lean_object* x_32; +x_31 = lean_ctor_get(x_21, 0); +lean_dec(x_31); +x_32 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_getKeyArgs___lambda__2___closed__3; +lean_ctor_set(x_21, 0, x_32); +return x_21; +} +else +{ +lean_object* x_33; lean_object* x_34; lean_object* x_35; +x_33 = lean_ctor_get(x_21, 1); +lean_inc(x_33); +lean_dec(x_21); +x_34 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_getKeyArgs___lambda__2___closed__3; +x_35 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_35, 0, x_34); +lean_ctor_set(x_35, 1, x_33); +return x_35; +} +} +} +else +{ +uint8_t x_36; +x_36 = !lean_is_exclusive(x_21); +if (x_36 == 0) +{ +return x_21; +} +else +{ +lean_object* x_37; lean_object* x_38; lean_object* x_39; +x_37 = lean_ctor_get(x_21, 0); +x_38 = lean_ctor_get(x_21, 1); +lean_inc(x_38); +lean_inc(x_37); +lean_dec(x_21); +x_39 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_39, 0, x_37); +lean_ctor_set(x_39, 1, x_38); +return x_39; +} +} +} +else +{ +lean_object* x_40; lean_object* x_41; +lean_dec(x_9); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +x_40 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_getKeyArgs___lambda__3___closed__1; +x_41 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_41, 0, x_40); +lean_ctor_set(x_41, 1, x_8); +return x_41; +} +} +else +{ +lean_object* x_42; lean_object* x_43; +lean_dec(x_9); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +x_42 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_getKeyArgs___lambda__2___closed__3; +x_43 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_43, 0, x_42); +lean_ctor_set(x_43, 1, x_8); +return x_43; +} +} +case 4: +{ +lean_object* x_44; lean_object* x_45; lean_object* x_46; uint8_t x_47; +x_44 = lean_ctor_get(x_9, 0); +lean_inc(x_44); +lean_dec(x_9); +x_45 = l_Lean_Meta_getConfig(x_4, x_5, x_6, x_7, x_8); +x_46 = lean_ctor_get(x_45, 0); +lean_inc(x_46); +x_47 = lean_ctor_get_uint8(x_46, 4); +lean_dec(x_46); +if (x_47 == 0) +{ +lean_object* x_48; lean_object* x_49; lean_object* x_50; +x_48 = lean_ctor_get(x_45, 1); +lean_inc(x_48); +lean_dec(x_45); +x_49 = lean_box(0); +x_50 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_getKeyArgs___lambda__1(x_1, x_44, x_49, x_4, x_5, x_6, x_7, x_48); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +return x_50; +} +else +{ +lean_object* x_51; uint8_t x_52; +x_51 = lean_ctor_get(x_45, 1); +lean_inc(x_51); +lean_dec(x_45); +x_52 = l_Lean_Expr_hasExprMVar(x_1); +if (x_52 == 0) +{ +lean_object* x_53; lean_object* x_54; +x_53 = lean_box(0); +x_54 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_getKeyArgs___lambda__1(x_1, x_44, x_53, x_4, x_5, x_6, x_7, x_51); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +return x_54; +} +else +{ +lean_object* x_55; lean_object* x_56; uint8_t x_57; +lean_inc(x_44); +x_55 = l_Lean_isReducible___at___private_Lean_Meta_Basic_0__Lean_Meta_getDefInfoTemp___spec__1(x_44, x_4, x_5, x_6, x_7, x_51); +x_56 = lean_ctor_get(x_55, 0); +lean_inc(x_56); +x_57 = lean_unbox(x_56); +lean_dec(x_56); +if (x_57 == 0) +{ +lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; +x_58 = lean_ctor_get(x_55, 1); +lean_inc(x_58); +lean_dec(x_55); +x_59 = lean_st_ref_get(x_7, x_58); +x_60 = lean_ctor_get(x_59, 0); +lean_inc(x_60); +x_61 = lean_ctor_get(x_59, 1); +lean_inc(x_61); +lean_dec(x_59); +x_62 = lean_ctor_get(x_60, 0); +lean_inc(x_62); +lean_dec(x_60); +x_63 = l_Lean_Meta_isMatcherAppCore_x3f(x_62, x_1); +if (lean_obj_tag(x_63) == 0) +{ +lean_object* x_64; lean_object* x_65; uint8_t x_66; +lean_inc(x_44); +x_64 = l_Lean_isRec___at___private_Lean_Meta_DiscrTree_0__Lean_Meta_DiscrTree_getKeyArgs___spec__1(x_44, x_4, x_5, x_6, x_7, x_61); +x_65 = lean_ctor_get(x_64, 0); +lean_inc(x_65); +x_66 = lean_unbox(x_65); +lean_dec(x_65); +if (x_66 == 0) +{ +lean_object* x_67; lean_object* x_68; lean_object* x_69; +x_67 = lean_ctor_get(x_64, 1); +lean_inc(x_67); +lean_dec(x_64); +x_68 = lean_box(0); +x_69 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_getKeyArgs___lambda__1(x_1, x_44, x_68, x_4, x_5, x_6, x_7, x_67); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +return x_69; +} +else +{ +lean_object* x_70; lean_object* x_71; uint8_t x_72; +lean_dec(x_44); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_1); +x_70 = lean_ctor_get(x_64, 1); +lean_inc(x_70); +lean_dec(x_64); +x_71 = l_Lean_Meta_throwIsDefEqStuck___rarg(x_70); +x_72 = !lean_is_exclusive(x_71); +if (x_72 == 0) +{ +return x_71; +} +else +{ +lean_object* x_73; lean_object* x_74; lean_object* x_75; +x_73 = lean_ctor_get(x_71, 0); +x_74 = lean_ctor_get(x_71, 1); +lean_inc(x_74); +lean_inc(x_73); +lean_dec(x_71); +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; +} +} +} +else +{ +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; size_t x_89; lean_object* x_90; size_t x_91; lean_object* x_92; lean_object* x_93; +x_76 = lean_ctor_get(x_63, 0); +lean_inc(x_76); +lean_dec(x_63); +x_77 = lean_unsigned_to_nat(0u); +x_78 = l___private_Lean_Expr_0__Lean_Expr_getAppNumArgsAux(x_1, x_77); +x_79 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_getKeyArgs___lambda__3___closed__2; +lean_inc(x_78); +x_80 = lean_mk_array(x_78, x_79); +x_81 = lean_unsigned_to_nat(1u); +x_82 = lean_nat_sub(x_78, x_81); +lean_dec(x_78); +lean_inc(x_1); +x_83 = l___private_Lean_Expr_0__Lean_Expr_getAppArgsAux(x_1, x_80, x_82); +x_84 = l_Lean_Meta_Match_MatcherInfo_getFirstDiscrPos(x_76); +x_85 = lean_ctor_get(x_76, 1); +lean_inc(x_85); +lean_dec(x_76); +x_86 = lean_nat_add(x_84, x_85); +lean_dec(x_85); +x_87 = l_Array_toSubarray___rarg(x_83, x_84, x_86); +x_88 = lean_ctor_get(x_87, 2); +lean_inc(x_88); +x_89 = lean_usize_of_nat(x_88); +lean_dec(x_88); +x_90 = lean_ctor_get(x_87, 1); +lean_inc(x_90); +x_91 = lean_usize_of_nat(x_90); +lean_dec(x_90); +x_92 = lean_box(0); +x_93 = l_Subarray_forInUnsafe_loop___at___private_Lean_Meta_DiscrTree_0__Lean_Meta_DiscrTree_getKeyArgs___spec__2(x_87, x_89, x_91, x_92, x_4, x_5, x_6, x_7, x_61); +lean_dec(x_87); +if (lean_obj_tag(x_93) == 0) +{ +lean_object* x_94; lean_object* x_95; +x_94 = lean_ctor_get(x_93, 1); +lean_inc(x_94); +lean_dec(x_93); +x_95 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_getKeyArgs___lambda__1(x_1, x_44, x_92, x_4, x_5, x_6, x_7, x_94); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +return x_95; +} +else +{ +uint8_t x_96; +lean_dec(x_44); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_1); +x_96 = !lean_is_exclusive(x_93); +if (x_96 == 0) +{ +return x_93; +} +else +{ +lean_object* x_97; lean_object* x_98; lean_object* x_99; +x_97 = lean_ctor_get(x_93, 0); +x_98 = lean_ctor_get(x_93, 1); +lean_inc(x_98); +lean_inc(x_97); +lean_dec(x_93); +x_99 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_99, 0, x_97); +lean_ctor_set(x_99, 1, x_98); +return x_99; +} +} +} +} +else +{ +lean_object* x_100; lean_object* x_101; uint8_t x_102; +lean_dec(x_44); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_1); +x_100 = lean_ctor_get(x_55, 1); +lean_inc(x_100); +lean_dec(x_55); +x_101 = l_Lean_Meta_throwIsDefEqStuck___rarg(x_100); +x_102 = !lean_is_exclusive(x_101); +if (x_102 == 0) +{ +return x_101; +} +else +{ +lean_object* x_103; lean_object* x_104; lean_object* x_105; +x_103 = lean_ctor_get(x_101, 0); +x_104 = lean_ctor_get(x_101, 1); +lean_inc(x_104); +lean_inc(x_103); +lean_dec(x_101); +x_105 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_105, 0, x_103); +lean_ctor_set(x_105, 1, x_104); +return x_105; +} +} +} +} +} +case 7: +{ +lean_object* x_106; lean_object* x_107; uint8_t x_108; +lean_dec(x_1); +x_106 = lean_ctor_get(x_9, 1); +lean_inc(x_106); +x_107 = lean_ctor_get(x_9, 2); +lean_inc(x_107); +lean_dec(x_9); +x_108 = l_Lean_Expr_hasLooseBVars(x_107); +if (x_108 == 0) +{ +lean_object* x_109; +x_109 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_getKeyArgs___lambda__2(x_106, x_107, x_4, x_5, x_6, x_7, x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +return x_109; +} +else +{ +lean_object* x_110; lean_object* x_111; lean_object* x_112; +x_110 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_elimLooseBVarsByBeta___closed__1; +x_111 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_elimLooseBVarsByBeta___closed__2; +lean_inc(x_7); +lean_inc(x_6); +x_112 = l_Lean_Core_transform___at_Lean_Core_betaReduce___spec__1(x_107, x_110, x_111, x_6, x_7, x_8); +if (lean_obj_tag(x_112) == 0) +{ +lean_object* x_113; lean_object* x_114; lean_object* x_115; +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); +x_115 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_getKeyArgs___lambda__2(x_106, x_113, x_4, x_5, x_6, x_7, x_114); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +return x_115; +} +else +{ +uint8_t x_116; +lean_dec(x_106); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +x_116 = !lean_is_exclusive(x_112); +if (x_116 == 0) +{ +return x_112; +} +else +{ +lean_object* x_117; lean_object* x_118; lean_object* x_119; +x_117 = lean_ctor_get(x_112, 0); +x_118 = lean_ctor_get(x_112, 1); +lean_inc(x_118); +lean_inc(x_117); +lean_dec(x_112); +x_119 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_119, 0, x_117); +lean_ctor_set(x_119, 1, x_118); +return x_119; +} +} +} +} +case 9: +{ +lean_object* x_120; lean_object* x_121; lean_object* x_122; lean_object* x_123; lean_object* x_124; +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_1); +x_120 = lean_ctor_get(x_9, 0); +lean_inc(x_120); +lean_dec(x_9); +x_121 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_121, 0, x_120); +x_122 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_getKeyArgs___lambda__2___closed__2; +x_123 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_123, 0, x_121); +lean_ctor_set(x_123, 1, x_122); +x_124 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_124, 0, x_123); +lean_ctor_set(x_124, 1, x_8); +return x_124; +} +case 11: +{ +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_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +x_125 = lean_ctor_get(x_9, 0); +lean_inc(x_125); +x_126 = lean_ctor_get(x_9, 1); +lean_inc(x_126); +x_127 = lean_ctor_get(x_9, 2); +lean_inc(x_127); +lean_dec(x_9); +x_128 = lean_unsigned_to_nat(0u); +x_129 = l___private_Lean_Expr_0__Lean_Expr_getAppNumArgsAux(x_1, x_128); +lean_inc(x_129); +x_130 = lean_alloc_ctor(6, 3, 0); +lean_ctor_set(x_130, 0, x_125); +lean_ctor_set(x_130, 1, x_126); +lean_ctor_set(x_130, 2, x_129); +x_131 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_getKeyArgs___lambda__3___closed__3; +x_132 = lean_array_push(x_131, x_127); +x_133 = lean_mk_empty_array_with_capacity(x_129); +lean_dec(x_129); +x_134 = l___private_Lean_Expr_0__Lean_Expr_getAppRevArgsAux(x_1, x_133); +x_135 = l_Array_append___rarg(x_132, x_134); +x_136 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_136, 0, x_130); +lean_ctor_set(x_136, 1, x_135); +x_137 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_137, 0, x_136); +lean_ctor_set(x_137, 1, x_8); +return x_137; +} +default: +{ +lean_object* x_138; lean_object* x_139; +lean_dec(x_9); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_1); +x_138 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_getKeyArgs___lambda__2___closed__3; +x_139 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_139, 0, x_138); +lean_ctor_set(x_139, 1, x_8); +return x_139; +} +} +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_getKeyArgs(lean_object* x_1, uint8_t 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) { +_start: +{ +lean_object* x_10; +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +x_10 = l_Lean_Meta_DiscrTree_reduceDT(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +if (lean_obj_tag(x_10) == 0) +{ +if (x_3 == 0) +{ +uint8_t x_11; +x_11 = !lean_is_exclusive(x_10); +if (x_11 == 0) +{ +lean_object* x_12; lean_object* x_13; lean_object* x_14; +x_12 = lean_ctor_get(x_10, 0); +x_13 = lean_ctor_get(x_10, 1); +lean_inc(x_12); +x_14 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_toNatLit_x3f(x_12); +if (lean_obj_tag(x_14) == 0) +{ +lean_object* x_15; lean_object* x_16; +lean_free_object(x_10); +x_15 = lean_box(0); +x_16 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_getKeyArgs___lambda__3(x_12, x_2, x_15, x_5, x_6, x_7, x_8, x_13); +return x_16; +} +else +{ +lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; +lean_dec(x_12); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +x_17 = lean_ctor_get(x_14, 0); +lean_inc(x_17); +lean_dec(x_14); +x_18 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_18, 0, x_17); +x_19 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_getKeyArgs___lambda__2___closed__2; +x_20 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_20, 0, x_18); +lean_ctor_set(x_20, 1, x_19); +lean_ctor_set(x_10, 0, x_20); +return x_10; +} +} +else +{ +lean_object* x_21; lean_object* x_22; lean_object* x_23; +x_21 = lean_ctor_get(x_10, 0); +x_22 = lean_ctor_get(x_10, 1); +lean_inc(x_22); +lean_inc(x_21); +lean_dec(x_10); +lean_inc(x_21); +x_23 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_toNatLit_x3f(x_21); +if (lean_obj_tag(x_23) == 0) +{ +lean_object* x_24; lean_object* x_25; +x_24 = lean_box(0); +x_25 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_getKeyArgs___lambda__3(x_21, x_2, x_24, x_5, x_6, x_7, x_8, x_22); +return x_25; +} +else +{ +lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; +lean_dec(x_21); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +x_26 = lean_ctor_get(x_23, 0); +lean_inc(x_26); +lean_dec(x_23); +x_27 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_27, 0, x_26); +x_28 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_getKeyArgs___lambda__2___closed__2; +x_29 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_29, 0, x_27); +lean_ctor_set(x_29, 1, x_28); +x_30 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_30, 0, x_29); +lean_ctor_set(x_30, 1, x_22); +return x_30; +} +} +} +else +{ +lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; +x_31 = lean_ctor_get(x_10, 0); +lean_inc(x_31); +x_32 = lean_ctor_get(x_10, 1); +lean_inc(x_32); +lean_dec(x_10); +x_33 = lean_box(0); +x_34 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_getKeyArgs___lambda__3(x_31, x_2, x_33, x_5, x_6, x_7, x_8, x_32); +return x_34; +} +} +else +{ +uint8_t x_35; +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +x_35 = !lean_is_exclusive(x_10); +if (x_35 == 0) +{ +return x_10; +} +else +{ +lean_object* x_36; lean_object* x_37; lean_object* x_38; +x_36 = lean_ctor_get(x_10, 0); +x_37 = lean_ctor_get(x_10, 1); +lean_inc(x_37); +lean_inc(x_36); +lean_dec(x_10); +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___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_getKeyArgs___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) { +_start: +{ +lean_object* x_9; +x_9 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_getKeyArgs___lambda__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +return x_9; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_getKeyArgs___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___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_getKeyArgs___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___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_getKeyArgs___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) { +_start: +{ +uint8_t x_9; lean_object* x_10; +x_9 = lean_unbox(x_2); +lean_dec(x_2); +x_10 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_getKeyArgs___lambda__3(x_1, x_9, x_3, x_4, x_5, x_6, x_7, x_8); +return x_10; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_getKeyArgs___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: +{ +uint8_t x_10; uint8_t x_11; lean_object* x_12; +x_10 = lean_unbox(x_2); +lean_dec(x_2); +x_11 = lean_unbox(x_3); +lean_dec(x_3); +x_12 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_getKeyArgs(x_1, x_10, x_11, x_4, x_5, x_6, x_7, x_8, x_9); +return x_12; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_getMatchKeyArgs(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) { +_start: +{ +uint8_t x_9; lean_object* x_10; +x_9 = 1; +x_10 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_getKeyArgs(x_1, x_9, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +return x_10; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_getMatchKeyArgs___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) { +_start: +{ +uint8_t x_9; lean_object* x_10; +x_9 = lean_unbox(x_2); +lean_dec(x_2); +x_10 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_getMatchKeyArgs(x_1, x_9, x_3, x_4, x_5, x_6, x_7, x_8); +return x_10; +} +} +LEAN_EXPORT lean_object* l_Lean_mkHashMap___at_Lean_Meta_LazyDiscrTree_instInhabitedTrie___spec__1(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = l_Lean_mkHashMapImp___rarg(x_1); +return x_2; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_LazyDiscrTree_instInhabitedTrie(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; +x_2 = lean_unsigned_to_nat(8u); +x_3 = l_Lean_mkHashMapImp___rarg(x_2); +x_4 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_getKeyArgs___lambda__2___closed__2; +x_5 = lean_unsigned_to_nat(0u); +x_6 = lean_alloc_ctor(0, 4, 0); +lean_ctor_set(x_6, 0, x_4); +lean_ctor_set(x_6, 1, x_5); +lean_ctor_set(x_6, 2, x_3); +lean_ctor_set(x_6, 3, x_4); +return x_6; +} +} +LEAN_EXPORT lean_object* l_Lean_mkHashMap___at_Lean_Meta_LazyDiscrTree_instInhabitedTrie___spec__1___boxed(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = l_Lean_mkHashMap___at_Lean_Meta_LazyDiscrTree_instInhabitedTrie___spec__1(x_1); +lean_dec(x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Meta_LazyDiscrTree_instEmptyCollectionTrie___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = lean_unsigned_to_nat(8u); +x_2 = l_Lean_mkHashMapImp___rarg(x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Meta_LazyDiscrTree_instEmptyCollectionTrie___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_getKeyArgs___lambda__2___closed__2; +x_2 = lean_unsigned_to_nat(0u); +x_3 = l_Lean_Meta_LazyDiscrTree_instEmptyCollectionTrie___closed__1; +x_4 = lean_alloc_ctor(0, 4, 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); +lean_ctor_set(x_4, 3, x_1); +return x_4; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_LazyDiscrTree_instEmptyCollectionTrie(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = l_Lean_Meta_LazyDiscrTree_instEmptyCollectionTrie___closed__2; +return x_2; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_Trie_pushPending___rarg(lean_object* x_1, lean_object* x_2) { +_start: +{ +uint8_t x_3; +x_3 = !lean_is_exclusive(x_1); +if (x_3 == 0) +{ +lean_object* x_4; lean_object* x_5; +x_4 = lean_ctor_get(x_1, 3); +x_5 = lean_array_push(x_4, x_2); +lean_ctor_set(x_1, 3, x_5); +return x_1; +} +else +{ +lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; +x_6 = lean_ctor_get(x_1, 0); +x_7 = lean_ctor_get(x_1, 1); +x_8 = lean_ctor_get(x_1, 2); +x_9 = lean_ctor_get(x_1, 3); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_6); +lean_dec(x_1); +x_10 = lean_array_push(x_9, x_2); +x_11 = lean_alloc_ctor(0, 4, 0); +lean_ctor_set(x_11, 0, x_6); +lean_ctor_set(x_11, 1, x_7); +lean_ctor_set(x_11, 2, x_8); +lean_ctor_set(x_11, 3, x_10); +return x_11; +} +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_Trie_pushPending(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = lean_alloc_closure((void*)(l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_Trie_pushPending___rarg), 2, 0); +return x_2; +} +} +static lean_object* _init_l_Lean_Meta_LazyDiscrTree_config___default___closed__1() { +_start: +{ +uint8_t x_1; uint8_t x_2; lean_object* x_3; +x_1 = 1; +x_2 = 2; +x_3 = lean_alloc_ctor(0, 0, 5); +lean_ctor_set_uint8(x_3, 0, x_1); +lean_ctor_set_uint8(x_3, 1, x_1); +lean_ctor_set_uint8(x_3, 2, x_2); +lean_ctor_set_uint8(x_3, 3, x_1); +lean_ctor_set_uint8(x_3, 4, x_1); +return x_3; +} +} +static lean_object* _init_l_Lean_Meta_LazyDiscrTree_config___default() { +_start: +{ +lean_object* x_1; +x_1 = l_Lean_Meta_LazyDiscrTree_config___default___closed__1; +return x_1; +} +} +static lean_object* _init_l_Lean_Meta_LazyDiscrTree_tries___default___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_getKeyArgs___lambda__3___closed__3; +x_2 = l_Lean_Meta_LazyDiscrTree_instEmptyCollectionTrie___closed__2; +x_3 = lean_array_push(x_1, x_2); +return x_3; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_LazyDiscrTree_tries___default(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = l_Lean_Meta_LazyDiscrTree_tries___default___closed__1; +return x_2; +} +} +static lean_object* _init_l_Lean_Meta_LazyDiscrTree_roots___default() { +_start: +{ +lean_object* x_1; +x_1 = l_Lean_Meta_LazyDiscrTree_instEmptyCollectionTrie___closed__1; +return x_1; +} +} +static lean_object* _init_l_Lean_Meta_LazyDiscrTree_instInhabitedLazyDiscrTree___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Meta_LazyDiscrTree_config___default___closed__1; +x_2 = l_Lean_Meta_LazyDiscrTree_tries___default___closed__1; +x_3 = l_Lean_Meta_LazyDiscrTree_instEmptyCollectionTrie___closed__1; +x_4 = lean_alloc_ctor(0, 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; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_LazyDiscrTree_instInhabitedLazyDiscrTree(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = l_Lean_Meta_LazyDiscrTree_instInhabitedLazyDiscrTree___closed__1; +return x_2; +} +} +LEAN_EXPORT lean_object* l_Lean_throwError___at___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_pushArgs___spec__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; lean_object* x_8; uint8_t x_9; +x_7 = lean_ctor_get(x_4, 5); +x_8 = l_Lean_addMessageContextFull___at_Lean_Meta_instAddMessageContextMetaM___spec__1(x_1, x_2, x_3, x_4, x_5, x_6); +x_9 = !lean_is_exclusive(x_8); +if (x_9 == 0) +{ +lean_object* x_10; lean_object* x_11; +x_10 = lean_ctor_get(x_8, 0); +lean_inc(x_7); +x_11 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_11, 0, x_7); +lean_ctor_set(x_11, 1, x_10); +lean_ctor_set_tag(x_8, 1); +lean_ctor_set(x_8, 0, x_11); +return x_8; +} +else +{ +lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; +x_12 = lean_ctor_get(x_8, 0); +x_13 = lean_ctor_get(x_8, 1); +lean_inc(x_13); +lean_inc(x_12); +lean_dec(x_8); +lean_inc(x_7); +x_14 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_14, 0, x_7); +lean_ctor_set(x_14, 1, x_12); +x_15 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_15, 0, x_14); +lean_ctor_set(x_15, 1, x_13); +return x_15; +} +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_pushArgs___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; lean_object* x_14; +x_11 = lean_unsigned_to_nat(0u); +x_12 = l___private_Lean_Expr_0__Lean_Expr_getAppNumArgsAux(x_1, x_11); +lean_inc(x_12); +x_13 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_13, 0, x_2); +lean_ctor_set(x_13, 1, x_12); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_12); +x_14 = l_Lean_Meta_getFunInfoNArgs(x_3, x_12, x_6, x_7, x_8, x_9, x_10); +if (lean_obj_tag(x_14) == 0) +{ +lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; +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_ctor_get(x_15, 0); +lean_inc(x_17); +lean_dec(x_15); +x_18 = lean_unsigned_to_nat(1u); +x_19 = lean_nat_sub(x_12, x_18); +lean_dec(x_12); +x_20 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_pushArgsAux(x_17, x_19, x_1, x_4, x_6, x_7, x_8, x_9, x_16); +lean_dec(x_17); +if (lean_obj_tag(x_20) == 0) +{ +uint8_t x_21; +x_21 = !lean_is_exclusive(x_20); +if (x_21 == 0) +{ +lean_object* x_22; lean_object* x_23; +x_22 = lean_ctor_get(x_20, 0); +x_23 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_23, 0, x_13); +lean_ctor_set(x_23, 1, x_22); +lean_ctor_set(x_20, 0, x_23); +return x_20; +} +else +{ +lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; +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(0, 2, 0); +lean_ctor_set(x_26, 0, x_13); +lean_ctor_set(x_26, 1, x_24); +x_27 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_27, 0, x_26); +lean_ctor_set(x_27, 1, x_25); +return x_27; +} +} +else +{ +uint8_t x_28; +lean_dec(x_13); +x_28 = !lean_is_exclusive(x_20); +if (x_28 == 0) +{ +return x_20; +} +else +{ +lean_object* x_29; lean_object* x_30; lean_object* x_31; +x_29 = lean_ctor_get(x_20, 0); +x_30 = lean_ctor_get(x_20, 1); +lean_inc(x_30); +lean_inc(x_29); +lean_dec(x_20); +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; +} +} +} +else +{ +uint8_t x_32; +lean_dec(x_13); +lean_dec(x_12); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_4); +lean_dec(x_1); +x_32 = !lean_is_exclusive(x_14); +if (x_32 == 0) +{ +return x_14; +} +else +{ +lean_object* x_33; lean_object* x_34; lean_object* x_35; +x_33 = lean_ctor_get(x_14, 0); +x_34 = lean_ctor_get(x_14, 1); +lean_inc(x_34); +lean_inc(x_33); +lean_dec(x_14); +x_35 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_35, 0, x_33); +lean_ctor_set(x_35, 1, x_34); +return x_35; +} +} +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_pushArgs___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) { +_start: +{ +lean_object* x_11; +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_6); +x_11 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_isNatOffset(x_1, x_2, x_6, x_7, x_8, x_9, x_10); +if (lean_obj_tag(x_11) == 0) +{ +lean_object* x_12; uint8_t x_13; +x_12 = lean_ctor_get(x_11, 0); +lean_inc(x_12); +x_13 = lean_unbox(x_12); +lean_dec(x_12); +if (x_13 == 0) +{ +lean_object* x_14; lean_object* x_15; lean_object* x_16; +lean_dec(x_4); +x_14 = lean_ctor_get(x_11, 1); +lean_inc(x_14); +lean_dec(x_11); +x_15 = lean_box(0); +x_16 = lean_apply_6(x_3, x_15, x_6, x_7, x_8, x_9, x_14); +return x_16; +} +else +{ +uint8_t x_17; +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_3); +x_17 = !lean_is_exclusive(x_11); +if (x_17 == 0) +{ +lean_object* x_18; lean_object* x_19; lean_object* x_20; +x_18 = lean_ctor_get(x_11, 0); +lean_dec(x_18); +x_19 = lean_box(3); +x_20 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_20, 0, x_19); +lean_ctor_set(x_20, 1, x_4); +lean_ctor_set(x_11, 0, x_20); +return x_11; +} +else +{ +lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; +x_21 = lean_ctor_get(x_11, 1); +lean_inc(x_21); +lean_dec(x_11); +x_22 = lean_box(3); +x_23 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_23, 0, x_22); +lean_ctor_set(x_23, 1, x_4); +x_24 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_24, 0, x_23); +lean_ctor_set(x_24, 1, x_21); +return x_24; +} +} +} +else +{ +uint8_t x_25; +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_4); +lean_dec(x_3); +x_25 = !lean_is_exclusive(x_11); +if (x_25 == 0) +{ +return x_11; +} +else +{ +lean_object* x_26; lean_object* x_27; lean_object* x_28; +x_26 = lean_ctor_get(x_11, 0); +x_27 = lean_ctor_get(x_11, 1); +lean_inc(x_27); +lean_inc(x_26); +lean_dec(x_11); +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; +} +} +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_pushArgs___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) { +_start: +{ +uint8_t x_9; +x_9 = l_Lean_Expr_hasLooseBVars(x_3); +if (x_9 == 0) +{ +lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; +x_10 = lean_array_push(x_1, x_2); +x_11 = lean_array_push(x_10, x_3); +x_12 = lean_box(5); +x_13 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_13, 0, x_12); +lean_ctor_set(x_13, 1, x_11); +x_14 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_14, 0, x_13); +lean_ctor_set(x_14, 1, x_8); +return x_14; +} +else +{ +lean_object* x_15; lean_object* x_16; lean_object* x_17; +lean_dec(x_3); +lean_dec(x_2); +x_15 = lean_box(4); +x_16 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_16, 0, x_15); +lean_ctor_set(x_16, 1, x_1); +x_17 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_17, 0, x_16); +lean_ctor_set(x_17, 1, x_8); +return x_17; +} +} +} +static lean_object* _init_l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_pushArgs___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("failed", 6); +return x_1; +} +} +static lean_object* _init_l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_pushArgs___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_pushArgs___closed__1; +x_2 = l_Lean_stringToMessageData(x_1); +return x_2; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_pushArgs(uint8_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, lean_object* x_8, lean_object* x_9) { +_start: +{ +uint8_t x_10; +x_10 = l_Lean_Meta_DiscrTree_hasNoindexAnnotation(x_3); +if (x_10 == 0) +{ +lean_object* x_11; +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +x_11 = l_Lean_Meta_DiscrTree_reduceDT(x_3, x_1, x_4, x_5, x_6, x_7, x_8, x_9); +if (lean_obj_tag(x_11) == 0) +{ +uint8_t x_12; +x_12 = !lean_is_exclusive(x_11); +if (x_12 == 0) +{ +lean_object* x_13; lean_object* x_14; lean_object* x_15; +x_13 = lean_ctor_get(x_11, 0); +x_14 = lean_ctor_get(x_11, 1); +x_15 = l_Lean_Expr_getAppFn(x_13); +switch (lean_obj_tag(x_15)) { +case 1: +{ +lean_object* x_16; lean_object* x_17; +lean_dec(x_15); +lean_dec(x_13); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +x_16 = lean_box(3); +x_17 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_17, 0, x_16); +lean_ctor_set(x_17, 1, x_2); +lean_ctor_set(x_11, 0, x_17); +return x_11; +} +case 2: +{ +lean_object* x_18; lean_object* x_19; uint8_t x_20; +lean_dec(x_13); +x_18 = lean_ctor_get(x_15, 0); +lean_inc(x_18); +lean_dec(x_15); +x_19 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_tmpMVarId; +x_20 = lean_name_eq(x_18, x_19); +lean_dec(x_18); +if (x_20 == 0) +{ +lean_object* x_21; lean_object* x_22; +lean_free_object(x_11); +lean_dec(x_2); +x_21 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_pushArgs___closed__2; +x_22 = l_Lean_throwError___at___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_pushArgs___spec__1(x_21, x_5, x_6, x_7, x_8, x_14); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +return x_22; +} +else +{ +lean_object* x_23; lean_object* x_24; +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +x_23 = lean_box(3); +x_24 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_24, 0, x_23); +lean_ctor_set(x_24, 1, x_2); +lean_ctor_set(x_11, 0, x_24); +return x_11; +} +} +case 4: +{ +if (x_1 == 0) +{ +lean_object* x_25; lean_object* x_26; lean_object* x_27; +x_25 = lean_ctor_get(x_15, 0); +lean_inc(x_25); +lean_inc(x_2); +lean_inc(x_25); +lean_inc(x_13); +x_26 = lean_alloc_closure((void*)(l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_pushArgs___lambda__1___boxed), 10, 4); +lean_closure_set(x_26, 0, x_13); +lean_closure_set(x_26, 1, x_25); +lean_closure_set(x_26, 2, x_15); +lean_closure_set(x_26, 3, x_2); +lean_inc(x_13); +x_27 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_toNatLit_x3f(x_13); +if (lean_obj_tag(x_27) == 0) +{ +lean_object* x_28; lean_object* x_29; +lean_free_object(x_11); +x_28 = lean_box(0); +x_29 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_pushArgs___lambda__2(x_25, x_13, x_26, x_2, x_28, x_5, x_6, x_7, x_8, x_14); +lean_dec(x_13); +lean_dec(x_25); +return x_29; +} +else +{ +lean_object* x_30; lean_object* x_31; lean_object* x_32; +lean_dec(x_26); +lean_dec(x_25); +lean_dec(x_13); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +x_30 = lean_ctor_get(x_27, 0); +lean_inc(x_30); +lean_dec(x_27); +x_31 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_31, 0, x_30); +x_32 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_32, 0, x_31); +lean_ctor_set(x_32, 1, x_2); +lean_ctor_set(x_11, 0, x_32); +return x_11; +} +} +else +{ +lean_object* x_33; lean_object* x_34; lean_object* x_35; +lean_free_object(x_11); +x_33 = lean_ctor_get(x_15, 0); +lean_inc(x_33); +x_34 = lean_box(0); +x_35 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_pushArgs___lambda__1(x_13, x_33, x_15, x_2, x_34, x_5, x_6, x_7, x_8, x_14); +return x_35; +} +} +case 7: +{ +lean_object* x_36; lean_object* x_37; uint8_t x_38; +lean_free_object(x_11); +lean_dec(x_13); +x_36 = lean_ctor_get(x_15, 1); +lean_inc(x_36); +x_37 = lean_ctor_get(x_15, 2); +lean_inc(x_37); +lean_dec(x_15); +x_38 = l_Lean_Expr_hasLooseBVars(x_37); +if (x_38 == 0) +{ +lean_object* x_39; +x_39 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_pushArgs___lambda__3(x_2, x_36, x_37, x_5, x_6, x_7, x_8, x_14); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +return x_39; +} +else +{ +lean_object* x_40; lean_object* x_41; lean_object* x_42; +x_40 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_elimLooseBVarsByBeta___closed__1; +x_41 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_elimLooseBVarsByBeta___closed__2; +lean_inc(x_8); +lean_inc(x_7); +x_42 = l_Lean_Core_transform___at_Lean_Core_betaReduce___spec__1(x_37, x_40, x_41, x_7, x_8, x_14); +if (lean_obj_tag(x_42) == 0) +{ +lean_object* x_43; lean_object* x_44; lean_object* x_45; +x_43 = lean_ctor_get(x_42, 0); +lean_inc(x_43); +x_44 = lean_ctor_get(x_42, 1); +lean_inc(x_44); +lean_dec(x_42); +x_45 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_pushArgs___lambda__3(x_2, x_36, x_43, x_5, x_6, x_7, x_8, x_44); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +return x_45; +} +else +{ +uint8_t x_46; +lean_dec(x_36); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_2); +x_46 = !lean_is_exclusive(x_42); +if (x_46 == 0) +{ +return x_42; +} +else +{ +lean_object* x_47; lean_object* x_48; lean_object* x_49; +x_47 = lean_ctor_get(x_42, 0); +x_48 = lean_ctor_get(x_42, 1); +lean_inc(x_48); +lean_inc(x_47); +lean_dec(x_42); +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; +} +} +} +} +case 9: +{ +lean_object* x_50; lean_object* x_51; lean_object* x_52; +lean_dec(x_13); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +x_50 = lean_ctor_get(x_15, 0); +lean_inc(x_50); +lean_dec(x_15); +x_51 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_51, 0, x_50); +x_52 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_52, 0, x_51); +lean_ctor_set(x_52, 1, x_2); +lean_ctor_set(x_11, 0, x_52); +return x_11; +} +case 11: +{ +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; lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; +lean_free_object(x_11); +x_53 = lean_ctor_get(x_15, 0); +lean_inc(x_53); +x_54 = lean_ctor_get(x_15, 1); +lean_inc(x_54); +x_55 = lean_ctor_get(x_15, 2); +lean_inc(x_55); +x_56 = lean_st_ref_get(x_8, x_14); +x_57 = lean_ctor_get(x_56, 0); +lean_inc(x_57); +x_58 = lean_ctor_get(x_56, 1); +lean_inc(x_58); +lean_dec(x_56); +x_59 = lean_ctor_get(x_57, 0); +lean_inc(x_59); +lean_dec(x_57); +lean_inc(x_53); +x_60 = lean_is_class(x_59, x_53); +x_61 = lean_unsigned_to_nat(0u); +x_62 = l___private_Lean_Expr_0__Lean_Expr_getAppNumArgsAux(x_13, x_61); +lean_inc(x_62); +x_63 = lean_alloc_ctor(6, 3, 0); +lean_ctor_set(x_63, 0, x_53); +lean_ctor_set(x_63, 1, x_54); +lean_ctor_set(x_63, 2, x_62); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_62); +x_64 = l_Lean_Meta_getFunInfoNArgs(x_15, x_62, x_5, x_6, x_7, x_8, x_58); +if (x_60 == 0) +{ +if (lean_obj_tag(x_64) == 0) +{ +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; +x_65 = lean_ctor_get(x_64, 0); +lean_inc(x_65); +x_66 = lean_ctor_get(x_64, 1); +lean_inc(x_66); +lean_dec(x_64); +x_67 = lean_array_push(x_2, x_55); +x_68 = lean_ctor_get(x_65, 0); +lean_inc(x_68); +lean_dec(x_65); +x_69 = lean_unsigned_to_nat(1u); +x_70 = lean_nat_sub(x_62, x_69); +lean_dec(x_62); +x_71 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_pushArgsAux(x_68, x_70, x_13, x_67, x_5, x_6, x_7, x_8, x_66); +lean_dec(x_68); +if (lean_obj_tag(x_71) == 0) +{ +uint8_t x_72; +x_72 = !lean_is_exclusive(x_71); +if (x_72 == 0) +{ +lean_object* x_73; lean_object* x_74; +x_73 = lean_ctor_get(x_71, 0); +x_74 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_74, 0, x_63); +lean_ctor_set(x_74, 1, x_73); +lean_ctor_set(x_71, 0, x_74); +return x_71; +} +else +{ +lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; +x_75 = lean_ctor_get(x_71, 0); +x_76 = lean_ctor_get(x_71, 1); +lean_inc(x_76); +lean_inc(x_75); +lean_dec(x_71); +x_77 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_77, 0, x_63); +lean_ctor_set(x_77, 1, x_75); +x_78 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_78, 0, x_77); +lean_ctor_set(x_78, 1, x_76); +return x_78; +} +} +else +{ +uint8_t x_79; +lean_dec(x_63); +x_79 = !lean_is_exclusive(x_71); +if (x_79 == 0) +{ +return x_71; +} +else +{ +lean_object* x_80; lean_object* x_81; lean_object* x_82; +x_80 = lean_ctor_get(x_71, 0); +x_81 = lean_ctor_get(x_71, 1); +lean_inc(x_81); +lean_inc(x_80); +lean_dec(x_71); +x_82 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_82, 0, x_80); +lean_ctor_set(x_82, 1, x_81); +return x_82; +} +} +} +else +{ +uint8_t x_83; +lean_dec(x_63); +lean_dec(x_62); +lean_dec(x_55); +lean_dec(x_13); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_2); +x_83 = !lean_is_exclusive(x_64); +if (x_83 == 0) +{ +return x_64; +} +else +{ +lean_object* x_84; lean_object* x_85; lean_object* x_86; +x_84 = lean_ctor_get(x_64, 0); +x_85 = lean_ctor_get(x_64, 1); +lean_inc(x_85); +lean_inc(x_84); +lean_dec(x_64); +x_86 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_86, 0, x_84); +lean_ctor_set(x_86, 1, x_85); +return x_86; +} +} +} +else +{ +if (lean_obj_tag(x_64) == 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; +x_87 = lean_ctor_get(x_64, 0); +lean_inc(x_87); +x_88 = lean_ctor_get(x_64, 1); +lean_inc(x_88); +lean_dec(x_64); +x_89 = l_Lean_Meta_DiscrTree_mkNoindexAnnotation(x_55); +x_90 = lean_array_push(x_2, x_89); +x_91 = lean_ctor_get(x_87, 0); +lean_inc(x_91); +lean_dec(x_87); +x_92 = lean_unsigned_to_nat(1u); +x_93 = lean_nat_sub(x_62, x_92); +lean_dec(x_62); +x_94 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_pushArgsAux(x_91, x_93, x_13, x_90, x_5, x_6, x_7, x_8, x_88); +lean_dec(x_91); +if (lean_obj_tag(x_94) == 0) +{ +uint8_t x_95; +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); +x_97 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_97, 0, x_63); +lean_ctor_set(x_97, 1, x_96); +lean_ctor_set(x_94, 0, x_97); +return x_94; +} +else +{ +lean_object* x_98; lean_object* x_99; lean_object* x_100; lean_object* x_101; +x_98 = lean_ctor_get(x_94, 0); +x_99 = lean_ctor_get(x_94, 1); +lean_inc(x_99); +lean_inc(x_98); +lean_dec(x_94); +x_100 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_100, 0, x_63); +lean_ctor_set(x_100, 1, x_98); +x_101 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_101, 0, x_100); +lean_ctor_set(x_101, 1, x_99); +return x_101; +} +} +else +{ +uint8_t x_102; +lean_dec(x_63); +x_102 = !lean_is_exclusive(x_94); +if (x_102 == 0) +{ +return x_94; +} +else +{ +lean_object* x_103; lean_object* x_104; lean_object* x_105; +x_103 = lean_ctor_get(x_94, 0); +x_104 = lean_ctor_get(x_94, 1); +lean_inc(x_104); +lean_inc(x_103); +lean_dec(x_94); +x_105 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_105, 0, x_103); +lean_ctor_set(x_105, 1, x_104); +return x_105; +} +} +} +else +{ +uint8_t x_106; +lean_dec(x_63); +lean_dec(x_62); +lean_dec(x_55); +lean_dec(x_13); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_2); +x_106 = !lean_is_exclusive(x_64); +if (x_106 == 0) +{ +return x_64; +} +else +{ +lean_object* x_107; lean_object* x_108; lean_object* x_109; +x_107 = lean_ctor_get(x_64, 0); +x_108 = lean_ctor_get(x_64, 1); +lean_inc(x_108); +lean_inc(x_107); +lean_dec(x_64); +x_109 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_109, 0, x_107); +lean_ctor_set(x_109, 1, x_108); +return x_109; +} +} +} +} +default: +{ +lean_object* x_110; lean_object* x_111; +lean_dec(x_15); +lean_dec(x_13); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +x_110 = lean_box(4); +x_111 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_111, 0, x_110); +lean_ctor_set(x_111, 1, x_2); +lean_ctor_set(x_11, 0, x_111); +return x_11; +} +} +} +else +{ +lean_object* x_112; lean_object* x_113; lean_object* x_114; +x_112 = lean_ctor_get(x_11, 0); +x_113 = lean_ctor_get(x_11, 1); +lean_inc(x_113); +lean_inc(x_112); +lean_dec(x_11); +x_114 = l_Lean_Expr_getAppFn(x_112); +switch (lean_obj_tag(x_114)) { +case 1: +{ +lean_object* x_115; lean_object* x_116; lean_object* x_117; +lean_dec(x_114); +lean_dec(x_112); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +x_115 = lean_box(3); +x_116 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_116, 0, x_115); +lean_ctor_set(x_116, 1, x_2); +x_117 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_117, 0, x_116); +lean_ctor_set(x_117, 1, x_113); +return x_117; +} +case 2: +{ +lean_object* x_118; lean_object* x_119; uint8_t x_120; +lean_dec(x_112); +x_118 = lean_ctor_get(x_114, 0); +lean_inc(x_118); +lean_dec(x_114); +x_119 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_tmpMVarId; +x_120 = lean_name_eq(x_118, x_119); +lean_dec(x_118); +if (x_120 == 0) +{ +lean_object* x_121; lean_object* x_122; +lean_dec(x_2); +x_121 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_pushArgs___closed__2; +x_122 = l_Lean_throwError___at___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_pushArgs___spec__1(x_121, x_5, x_6, x_7, x_8, x_113); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +return x_122; +} +else +{ +lean_object* x_123; lean_object* x_124; lean_object* x_125; +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +x_123 = lean_box(3); +x_124 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_124, 0, x_123); +lean_ctor_set(x_124, 1, x_2); +x_125 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_125, 0, x_124); +lean_ctor_set(x_125, 1, x_113); +return x_125; +} +} +case 4: +{ +if (x_1 == 0) +{ +lean_object* x_126; lean_object* x_127; lean_object* x_128; +x_126 = lean_ctor_get(x_114, 0); +lean_inc(x_126); +lean_inc(x_2); +lean_inc(x_126); +lean_inc(x_112); +x_127 = lean_alloc_closure((void*)(l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_pushArgs___lambda__1___boxed), 10, 4); +lean_closure_set(x_127, 0, x_112); +lean_closure_set(x_127, 1, x_126); +lean_closure_set(x_127, 2, x_114); +lean_closure_set(x_127, 3, x_2); +lean_inc(x_112); +x_128 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_toNatLit_x3f(x_112); +if (lean_obj_tag(x_128) == 0) +{ +lean_object* x_129; lean_object* x_130; +x_129 = lean_box(0); +x_130 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_pushArgs___lambda__2(x_126, x_112, x_127, x_2, x_129, x_5, x_6, x_7, x_8, x_113); +lean_dec(x_112); +lean_dec(x_126); +return x_130; +} +else +{ +lean_object* x_131; lean_object* x_132; lean_object* x_133; lean_object* x_134; +lean_dec(x_127); +lean_dec(x_126); +lean_dec(x_112); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +x_131 = lean_ctor_get(x_128, 0); +lean_inc(x_131); +lean_dec(x_128); +x_132 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_132, 0, x_131); +x_133 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_133, 0, x_132); +lean_ctor_set(x_133, 1, x_2); +x_134 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_134, 0, x_133); +lean_ctor_set(x_134, 1, x_113); +return x_134; +} +} +else +{ +lean_object* x_135; lean_object* x_136; lean_object* x_137; +x_135 = lean_ctor_get(x_114, 0); +lean_inc(x_135); +x_136 = lean_box(0); +x_137 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_pushArgs___lambda__1(x_112, x_135, x_114, x_2, x_136, x_5, x_6, x_7, x_8, x_113); +return x_137; +} +} +case 7: +{ +lean_object* x_138; lean_object* x_139; uint8_t x_140; +lean_dec(x_112); +x_138 = lean_ctor_get(x_114, 1); +lean_inc(x_138); +x_139 = lean_ctor_get(x_114, 2); +lean_inc(x_139); +lean_dec(x_114); +x_140 = l_Lean_Expr_hasLooseBVars(x_139); +if (x_140 == 0) +{ +lean_object* x_141; +x_141 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_pushArgs___lambda__3(x_2, x_138, x_139, x_5, x_6, x_7, x_8, x_113); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +return x_141; +} +else +{ +lean_object* x_142; lean_object* x_143; lean_object* x_144; +x_142 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_elimLooseBVarsByBeta___closed__1; +x_143 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_elimLooseBVarsByBeta___closed__2; +lean_inc(x_8); +lean_inc(x_7); +x_144 = l_Lean_Core_transform___at_Lean_Core_betaReduce___spec__1(x_139, x_142, x_143, x_7, x_8, x_113); +if (lean_obj_tag(x_144) == 0) +{ +lean_object* x_145; lean_object* x_146; lean_object* x_147; +x_145 = lean_ctor_get(x_144, 0); +lean_inc(x_145); +x_146 = lean_ctor_get(x_144, 1); +lean_inc(x_146); +lean_dec(x_144); +x_147 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_pushArgs___lambda__3(x_2, x_138, x_145, x_5, x_6, x_7, x_8, x_146); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +return x_147; +} +else +{ +lean_object* x_148; lean_object* x_149; lean_object* x_150; lean_object* x_151; +lean_dec(x_138); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_2); +x_148 = lean_ctor_get(x_144, 0); +lean_inc(x_148); +x_149 = lean_ctor_get(x_144, 1); +lean_inc(x_149); +if (lean_is_exclusive(x_144)) { + lean_ctor_release(x_144, 0); + lean_ctor_release(x_144, 1); + x_150 = x_144; +} else { + lean_dec_ref(x_144); + x_150 = lean_box(0); +} +if (lean_is_scalar(x_150)) { + x_151 = lean_alloc_ctor(1, 2, 0); +} else { + x_151 = x_150; +} +lean_ctor_set(x_151, 0, x_148); +lean_ctor_set(x_151, 1, x_149); +return x_151; +} +} +} +case 9: +{ +lean_object* x_152; lean_object* x_153; lean_object* x_154; lean_object* x_155; +lean_dec(x_112); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +x_152 = lean_ctor_get(x_114, 0); +lean_inc(x_152); +lean_dec(x_114); +x_153 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_153, 0, x_152); +x_154 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_154, 0, x_153); +lean_ctor_set(x_154, 1, x_2); +x_155 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_155, 0, x_154); +lean_ctor_set(x_155, 1, x_113); +return x_155; +} +case 11: +{ +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; +x_156 = lean_ctor_get(x_114, 0); +lean_inc(x_156); +x_157 = lean_ctor_get(x_114, 1); +lean_inc(x_157); +x_158 = lean_ctor_get(x_114, 2); +lean_inc(x_158); +x_159 = lean_st_ref_get(x_8, x_113); +x_160 = lean_ctor_get(x_159, 0); +lean_inc(x_160); +x_161 = lean_ctor_get(x_159, 1); +lean_inc(x_161); +lean_dec(x_159); +x_162 = lean_ctor_get(x_160, 0); +lean_inc(x_162); +lean_dec(x_160); +lean_inc(x_156); +x_163 = lean_is_class(x_162, x_156); +x_164 = lean_unsigned_to_nat(0u); +x_165 = l___private_Lean_Expr_0__Lean_Expr_getAppNumArgsAux(x_112, x_164); +lean_inc(x_165); +x_166 = lean_alloc_ctor(6, 3, 0); +lean_ctor_set(x_166, 0, x_156); +lean_ctor_set(x_166, 1, x_157); +lean_ctor_set(x_166, 2, x_165); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_165); +x_167 = l_Lean_Meta_getFunInfoNArgs(x_114, x_165, x_5, x_6, x_7, x_8, x_161); +if (x_163 == 0) +{ +if (lean_obj_tag(x_167) == 0) +{ +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; +x_168 = lean_ctor_get(x_167, 0); +lean_inc(x_168); +x_169 = lean_ctor_get(x_167, 1); +lean_inc(x_169); +lean_dec(x_167); +x_170 = lean_array_push(x_2, x_158); +x_171 = lean_ctor_get(x_168, 0); +lean_inc(x_171); +lean_dec(x_168); +x_172 = lean_unsigned_to_nat(1u); +x_173 = lean_nat_sub(x_165, x_172); +lean_dec(x_165); +x_174 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_pushArgsAux(x_171, x_173, x_112, x_170, x_5, x_6, x_7, x_8, x_169); +lean_dec(x_171); +if (lean_obj_tag(x_174) == 0) +{ +lean_object* x_175; lean_object* x_176; lean_object* x_177; lean_object* x_178; lean_object* x_179; +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; +} else { + lean_dec_ref(x_174); + x_177 = lean_box(0); +} +x_178 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_178, 0, x_166); +lean_ctor_set(x_178, 1, x_175); +if (lean_is_scalar(x_177)) { + x_179 = lean_alloc_ctor(0, 2, 0); +} else { + x_179 = x_177; +} +lean_ctor_set(x_179, 0, x_178); +lean_ctor_set(x_179, 1, x_176); +return x_179; +} +else +{ +lean_object* x_180; lean_object* x_181; lean_object* x_182; lean_object* x_183; +lean_dec(x_166); +x_180 = lean_ctor_get(x_174, 0); +lean_inc(x_180); +x_181 = lean_ctor_get(x_174, 1); +lean_inc(x_181); +if (lean_is_exclusive(x_174)) { + lean_ctor_release(x_174, 0); + lean_ctor_release(x_174, 1); + x_182 = x_174; +} else { + lean_dec_ref(x_174); + x_182 = lean_box(0); +} +if (lean_is_scalar(x_182)) { + x_183 = lean_alloc_ctor(1, 2, 0); +} else { + x_183 = x_182; +} +lean_ctor_set(x_183, 0, x_180); +lean_ctor_set(x_183, 1, x_181); +return x_183; +} +} +else +{ +lean_object* x_184; lean_object* x_185; lean_object* x_186; lean_object* x_187; +lean_dec(x_166); +lean_dec(x_165); +lean_dec(x_158); +lean_dec(x_112); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_2); +x_184 = lean_ctor_get(x_167, 0); +lean_inc(x_184); +x_185 = lean_ctor_get(x_167, 1); +lean_inc(x_185); +if (lean_is_exclusive(x_167)) { + lean_ctor_release(x_167, 0); + lean_ctor_release(x_167, 1); + x_186 = x_167; +} else { + lean_dec_ref(x_167); + x_186 = lean_box(0); +} +if (lean_is_scalar(x_186)) { + x_187 = lean_alloc_ctor(1, 2, 0); +} else { + x_187 = x_186; +} +lean_ctor_set(x_187, 0, x_184); +lean_ctor_set(x_187, 1, x_185); +return x_187; +} +} +else +{ +if (lean_obj_tag(x_167) == 0) +{ +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; +x_188 = lean_ctor_get(x_167, 0); +lean_inc(x_188); +x_189 = lean_ctor_get(x_167, 1); +lean_inc(x_189); +lean_dec(x_167); +x_190 = l_Lean_Meta_DiscrTree_mkNoindexAnnotation(x_158); +x_191 = lean_array_push(x_2, x_190); +x_192 = lean_ctor_get(x_188, 0); +lean_inc(x_192); +lean_dec(x_188); +x_193 = lean_unsigned_to_nat(1u); +x_194 = lean_nat_sub(x_165, x_193); +lean_dec(x_165); +x_195 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_pushArgsAux(x_192, x_194, x_112, x_191, x_5, x_6, x_7, x_8, x_189); +lean_dec(x_192); +if (lean_obj_tag(x_195) == 0) +{ +lean_object* x_196; lean_object* x_197; lean_object* x_198; lean_object* x_199; lean_object* x_200; +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_195); + x_198 = lean_box(0); +} +x_199 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_199, 0, x_166); +lean_ctor_set(x_199, 1, x_196); +if (lean_is_scalar(x_198)) { + x_200 = lean_alloc_ctor(0, 2, 0); +} else { + x_200 = x_198; +} +lean_ctor_set(x_200, 0, x_199); +lean_ctor_set(x_200, 1, x_197); +return x_200; +} +else +{ +lean_object* x_201; lean_object* x_202; lean_object* x_203; lean_object* x_204; +lean_dec(x_166); +x_201 = lean_ctor_get(x_195, 0); +lean_inc(x_201); +x_202 = lean_ctor_get(x_195, 1); +lean_inc(x_202); +if (lean_is_exclusive(x_195)) { + lean_ctor_release(x_195, 0); + lean_ctor_release(x_195, 1); + x_203 = x_195; +} else { + lean_dec_ref(x_195); + x_203 = lean_box(0); +} +if (lean_is_scalar(x_203)) { + x_204 = lean_alloc_ctor(1, 2, 0); +} else { + x_204 = x_203; +} +lean_ctor_set(x_204, 0, x_201); +lean_ctor_set(x_204, 1, x_202); +return x_204; +} +} +else +{ +lean_object* x_205; lean_object* x_206; lean_object* x_207; lean_object* x_208; +lean_dec(x_166); +lean_dec(x_165); +lean_dec(x_158); +lean_dec(x_112); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_2); +x_205 = lean_ctor_get(x_167, 0); +lean_inc(x_205); +x_206 = lean_ctor_get(x_167, 1); +lean_inc(x_206); +if (lean_is_exclusive(x_167)) { + lean_ctor_release(x_167, 0); + lean_ctor_release(x_167, 1); + x_207 = x_167; +} else { + lean_dec_ref(x_167); + x_207 = lean_box(0); +} +if (lean_is_scalar(x_207)) { + x_208 = lean_alloc_ctor(1, 2, 0); +} else { + x_208 = x_207; +} +lean_ctor_set(x_208, 0, x_205); +lean_ctor_set(x_208, 1, x_206); +return x_208; +} +} +} +default: +{ +lean_object* x_209; lean_object* x_210; lean_object* x_211; +lean_dec(x_114); +lean_dec(x_112); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +x_209 = lean_box(4); +x_210 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_210, 0, x_209); +lean_ctor_set(x_210, 1, x_2); +x_211 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_211, 0, x_210); +lean_ctor_set(x_211, 1, x_113); +return x_211; +} +} +} +} +else +{ +uint8_t x_212; +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_2); +x_212 = !lean_is_exclusive(x_11); +if (x_212 == 0) +{ +return x_11; +} +else +{ +lean_object* x_213; lean_object* x_214; lean_object* x_215; +x_213 = lean_ctor_get(x_11, 0); +x_214 = lean_ctor_get(x_11, 1); +lean_inc(x_214); +lean_inc(x_213); +lean_dec(x_11); +x_215 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_215, 0, x_213); +lean_ctor_set(x_215, 1, x_214); +return x_215; +} +} +} +else +{ +lean_object* x_216; lean_object* x_217; lean_object* x_218; +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_216 = lean_box(3); +x_217 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_217, 0, x_216); +lean_ctor_set(x_217, 1, x_2); +x_218 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_218, 0, x_217); +lean_ctor_set(x_218, 1, x_9); +return x_218; +} +} +} +LEAN_EXPORT lean_object* l_Lean_throwError___at___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_pushArgs___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) { +_start: +{ +lean_object* x_7; +x_7 = l_Lean_throwError___at___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_pushArgs___spec__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___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_pushArgs___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___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_pushArgs___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); +return x_11; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_pushArgs___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) { +_start: +{ +lean_object* x_11; +x_11 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_pushArgs___lambda__2(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_2); +lean_dec(x_1); +return x_11; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_pushArgs___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) { +_start: +{ +lean_object* x_9; +x_9 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_pushArgs___lambda__3(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +return x_9; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_pushArgs___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: +{ +uint8_t x_10; lean_object* x_11; +x_10 = lean_unbox(x_1); +lean_dec(x_1); +x_11 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_pushArgs(x_10, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +return x_11; +} +} +static lean_object* _init_l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_initCapacity() { +_start: +{ +lean_object* x_1; +x_1 = lean_unsigned_to_nat(8u); +return x_1; +} +} +static lean_object* _init_l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_rootKey___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_initCapacity; +x_2 = lean_mk_empty_array_with_capacity(x_1); +return x_2; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_rootKey(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: +{ +uint8_t x_8; lean_object* x_9; lean_object* x_10; +x_8 = 1; +x_9 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_rootKey___closed__1; +x_10 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_pushArgs(x_8, x_9, x_2, x_1, x_3, x_4, x_5, x_6, x_7); +return x_10; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_mkPathAux(uint8_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, lean_object* x_8, lean_object* x_9) { +_start: +{ +uint8_t x_10; +x_10 = l_Array_isEmpty___rarg(x_2); +if (x_10 == 0) +{ +lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; +x_11 = l_Lean_instInhabitedExpr; +x_12 = l_Array_back___rarg(x_11, x_2); +x_13 = lean_array_pop(x_2); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +x_14 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_pushArgs(x_1, x_13, x_12, x_4, x_5, x_6, x_7, x_8, x_9); +if (lean_obj_tag(x_14) == 0) +{ +lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; uint8_t x_20; +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_ctor_get(x_15, 0); +lean_inc(x_17); +x_18 = lean_ctor_get(x_15, 1); +lean_inc(x_18); +lean_dec(x_15); +x_19 = lean_array_push(x_3, x_17); +x_20 = 0; +x_1 = x_20; +x_2 = x_18; +x_3 = x_19; +x_9 = x_16; +goto _start; +} +else +{ +uint8_t x_22; +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_22 = !lean_is_exclusive(x_14); +if (x_22 == 0) +{ +return x_14; +} +else +{ +lean_object* x_23; lean_object* x_24; lean_object* x_25; +x_23 = lean_ctor_get(x_14, 0); +x_24 = lean_ctor_get(x_14, 1); +lean_inc(x_24); +lean_inc(x_23); +lean_dec(x_14); +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 +{ +lean_object* x_26; +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_2); +x_26 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_26, 0, x_3); +lean_ctor_set(x_26, 1, x_9); +return x_26; +} +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_mkPathAux___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: +{ +uint8_t x_10; lean_object* x_11; +x_10 = lean_unbox(x_1); +lean_dec(x_1); +x_11 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_mkPathAux(x_10, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +return x_11; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_mkPath(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; uint8_t x_10; lean_object* x_11; +x_8 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_rootKey___closed__1; +x_9 = lean_array_push(x_8, x_1); +x_10 = 1; +x_11 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_mkPathAux(x_10, x_9, x_8, x_2, x_3, x_4, x_5, x_6, x_7); +return x_11; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_runMatch___rarg(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; uint8_t x_9; +x_8 = lean_ctor_get(x_3, 0); +lean_inc(x_8); +x_9 = !lean_is_exclusive(x_1); +if (x_9 == 0) +{ +uint8_t x_10; +x_10 = !lean_is_exclusive(x_3); +if (x_10 == 0) +{ +lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; uint8_t x_15; +x_11 = lean_ctor_get(x_1, 0); +x_12 = lean_ctor_get(x_1, 1); +x_13 = lean_ctor_get(x_1, 2); +x_14 = lean_ctor_get(x_3, 0); +lean_dec(x_14); +x_15 = !lean_is_exclusive(x_8); +if (x_15 == 0) +{ +uint8_t x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; +x_16 = 2; +lean_ctor_set_uint8(x_8, 9, x_16); +x_17 = lean_st_mk_ref(x_12, x_7); +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); +lean_inc(x_18); +lean_inc(x_11); +x_20 = lean_apply_7(x_2, x_11, x_18, x_3, x_4, x_5, x_6, x_19); +if (lean_obj_tag(x_20) == 0) +{ +lean_object* x_21; lean_object* x_22; lean_object* x_23; uint8_t x_24; +x_21 = lean_ctor_get(x_20, 0); +lean_inc(x_21); +x_22 = lean_ctor_get(x_20, 1); +lean_inc(x_22); +lean_dec(x_20); +x_23 = lean_st_ref_get(x_18, x_22); +lean_dec(x_18); +x_24 = !lean_is_exclusive(x_23); +if (x_24 == 0) +{ +lean_object* x_25; lean_object* x_26; +x_25 = lean_ctor_get(x_23, 0); +lean_ctor_set(x_1, 1, x_25); +x_26 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_26, 0, x_21); +lean_ctor_set(x_26, 1, x_1); +lean_ctor_set(x_23, 0, x_26); +return x_23; +} +else +{ +lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; +x_27 = lean_ctor_get(x_23, 0); +x_28 = lean_ctor_get(x_23, 1); +lean_inc(x_28); +lean_inc(x_27); +lean_dec(x_23); +lean_ctor_set(x_1, 1, x_27); +x_29 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_29, 0, x_21); +lean_ctor_set(x_29, 1, x_1); +x_30 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_30, 0, x_29); +lean_ctor_set(x_30, 1, x_28); +return x_30; +} +} +else +{ +uint8_t x_31; +lean_dec(x_18); +lean_free_object(x_1); +lean_dec(x_13); +lean_dec(x_11); +x_31 = !lean_is_exclusive(x_20); +if (x_31 == 0) +{ +return x_20; +} +else +{ +lean_object* x_32; lean_object* x_33; lean_object* x_34; +x_32 = lean_ctor_get(x_20, 0); +x_33 = lean_ctor_get(x_20, 1); +lean_inc(x_33); +lean_inc(x_32); +lean_dec(x_20); +x_34 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_34, 0, x_32); +lean_ctor_set(x_34, 1, x_33); +return x_34; +} +} +} +else +{ +uint8_t x_35; uint8_t x_36; uint8_t x_37; uint8_t x_38; uint8_t x_39; uint8_t x_40; uint8_t x_41; uint8_t x_42; uint8_t x_43; uint8_t x_44; uint8_t x_45; uint8_t x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; +x_35 = lean_ctor_get_uint8(x_8, 0); +x_36 = lean_ctor_get_uint8(x_8, 1); +x_37 = lean_ctor_get_uint8(x_8, 2); +x_38 = lean_ctor_get_uint8(x_8, 3); +x_39 = lean_ctor_get_uint8(x_8, 4); +x_40 = lean_ctor_get_uint8(x_8, 5); +x_41 = lean_ctor_get_uint8(x_8, 6); +x_42 = lean_ctor_get_uint8(x_8, 7); +x_43 = lean_ctor_get_uint8(x_8, 8); +x_44 = lean_ctor_get_uint8(x_8, 10); +x_45 = lean_ctor_get_uint8(x_8, 11); +lean_dec(x_8); +x_46 = 2; +x_47 = lean_alloc_ctor(0, 0, 12); +lean_ctor_set_uint8(x_47, 0, x_35); +lean_ctor_set_uint8(x_47, 1, x_36); +lean_ctor_set_uint8(x_47, 2, x_37); +lean_ctor_set_uint8(x_47, 3, x_38); +lean_ctor_set_uint8(x_47, 4, x_39); +lean_ctor_set_uint8(x_47, 5, x_40); +lean_ctor_set_uint8(x_47, 6, x_41); +lean_ctor_set_uint8(x_47, 7, x_42); +lean_ctor_set_uint8(x_47, 8, x_43); +lean_ctor_set_uint8(x_47, 9, x_46); +lean_ctor_set_uint8(x_47, 10, x_44); +lean_ctor_set_uint8(x_47, 11, x_45); +lean_ctor_set(x_3, 0, x_47); +x_48 = lean_st_mk_ref(x_12, x_7); +x_49 = lean_ctor_get(x_48, 0); +lean_inc(x_49); +x_50 = lean_ctor_get(x_48, 1); +lean_inc(x_50); +lean_dec(x_48); +lean_inc(x_49); +lean_inc(x_11); +x_51 = lean_apply_7(x_2, x_11, x_49, x_3, x_4, x_5, x_6, x_50); +if (lean_obj_tag(x_51) == 0) +{ +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; +x_52 = lean_ctor_get(x_51, 0); +lean_inc(x_52); +x_53 = lean_ctor_get(x_51, 1); +lean_inc(x_53); +lean_dec(x_51); +x_54 = lean_st_ref_get(x_49, x_53); +lean_dec(x_49); +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_54); + x_57 = lean_box(0); +} +lean_ctor_set(x_1, 1, x_55); +x_58 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_58, 0, x_52); +lean_ctor_set(x_58, 1, x_1); +if (lean_is_scalar(x_57)) { + x_59 = lean_alloc_ctor(0, 2, 0); +} else { + x_59 = x_57; +} +lean_ctor_set(x_59, 0, x_58); +lean_ctor_set(x_59, 1, x_56); +return x_59; +} +else +{ +lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; +lean_dec(x_49); +lean_free_object(x_1); +lean_dec(x_13); +lean_dec(x_11); +x_60 = lean_ctor_get(x_51, 0); +lean_inc(x_60); +x_61 = lean_ctor_get(x_51, 1); +lean_inc(x_61); +if (lean_is_exclusive(x_51)) { + lean_ctor_release(x_51, 0); + lean_ctor_release(x_51, 1); + x_62 = x_51; +} else { + lean_dec_ref(x_51); + x_62 = lean_box(0); +} +if (lean_is_scalar(x_62)) { + x_63 = lean_alloc_ctor(1, 2, 0); +} else { + x_63 = x_62; +} +lean_ctor_set(x_63, 0, x_60); +lean_ctor_set(x_63, 1, x_61); +return x_63; +} +} +} +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; lean_object* x_71; uint8_t x_72; uint8_t x_73; uint8_t x_74; uint8_t x_75; uint8_t x_76; uint8_t x_77; uint8_t x_78; uint8_t x_79; uint8_t x_80; uint8_t x_81; uint8_t x_82; lean_object* x_83; uint8_t 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; +x_64 = lean_ctor_get(x_1, 0); +x_65 = lean_ctor_get(x_1, 1); +x_66 = lean_ctor_get(x_1, 2); +x_67 = lean_ctor_get(x_3, 1); +x_68 = lean_ctor_get(x_3, 2); +x_69 = lean_ctor_get(x_3, 3); +x_70 = lean_ctor_get(x_3, 4); +x_71 = lean_ctor_get(x_3, 5); +lean_inc(x_71); +lean_inc(x_70); +lean_inc(x_69); +lean_inc(x_68); +lean_inc(x_67); +lean_dec(x_3); +x_72 = lean_ctor_get_uint8(x_8, 0); +x_73 = lean_ctor_get_uint8(x_8, 1); +x_74 = lean_ctor_get_uint8(x_8, 2); +x_75 = lean_ctor_get_uint8(x_8, 3); +x_76 = lean_ctor_get_uint8(x_8, 4); +x_77 = lean_ctor_get_uint8(x_8, 5); +x_78 = lean_ctor_get_uint8(x_8, 6); +x_79 = lean_ctor_get_uint8(x_8, 7); +x_80 = lean_ctor_get_uint8(x_8, 8); +x_81 = lean_ctor_get_uint8(x_8, 10); +x_82 = lean_ctor_get_uint8(x_8, 11); +if (lean_is_exclusive(x_8)) { + x_83 = x_8; +} else { + lean_dec_ref(x_8); + x_83 = lean_box(0); +} +x_84 = 2; +if (lean_is_scalar(x_83)) { + x_85 = lean_alloc_ctor(0, 0, 12); +} else { + x_85 = x_83; +} +lean_ctor_set_uint8(x_85, 0, x_72); +lean_ctor_set_uint8(x_85, 1, x_73); +lean_ctor_set_uint8(x_85, 2, x_74); +lean_ctor_set_uint8(x_85, 3, x_75); +lean_ctor_set_uint8(x_85, 4, x_76); +lean_ctor_set_uint8(x_85, 5, x_77); +lean_ctor_set_uint8(x_85, 6, x_78); +lean_ctor_set_uint8(x_85, 7, x_79); +lean_ctor_set_uint8(x_85, 8, x_80); +lean_ctor_set_uint8(x_85, 9, x_84); +lean_ctor_set_uint8(x_85, 10, x_81); +lean_ctor_set_uint8(x_85, 11, x_82); +x_86 = lean_alloc_ctor(0, 6, 0); +lean_ctor_set(x_86, 0, x_85); +lean_ctor_set(x_86, 1, x_67); +lean_ctor_set(x_86, 2, x_68); +lean_ctor_set(x_86, 3, x_69); +lean_ctor_set(x_86, 4, x_70); +lean_ctor_set(x_86, 5, x_71); +x_87 = lean_st_mk_ref(x_65, x_7); +x_88 = lean_ctor_get(x_87, 0); +lean_inc(x_88); +x_89 = lean_ctor_get(x_87, 1); +lean_inc(x_89); +lean_dec(x_87); +lean_inc(x_88); +lean_inc(x_64); +x_90 = lean_apply_7(x_2, x_64, x_88, x_86, x_4, x_5, x_6, x_89); +if (lean_obj_tag(x_90) == 0) +{ +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_91 = lean_ctor_get(x_90, 0); +lean_inc(x_91); +x_92 = lean_ctor_get(x_90, 1); +lean_inc(x_92); +lean_dec(x_90); +x_93 = lean_st_ref_get(x_88, x_92); +lean_dec(x_88); +x_94 = lean_ctor_get(x_93, 0); +lean_inc(x_94); +x_95 = lean_ctor_get(x_93, 1); +lean_inc(x_95); +if (lean_is_exclusive(x_93)) { + lean_ctor_release(x_93, 0); + lean_ctor_release(x_93, 1); + x_96 = x_93; +} else { + lean_dec_ref(x_93); + x_96 = lean_box(0); +} +lean_ctor_set(x_1, 1, x_94); +x_97 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_97, 0, x_91); +lean_ctor_set(x_97, 1, x_1); +if (lean_is_scalar(x_96)) { + x_98 = lean_alloc_ctor(0, 2, 0); +} else { + x_98 = x_96; +} +lean_ctor_set(x_98, 0, x_97); +lean_ctor_set(x_98, 1, x_95); +return x_98; +} +else +{ +lean_object* x_99; lean_object* x_100; lean_object* x_101; lean_object* x_102; +lean_dec(x_88); +lean_free_object(x_1); +lean_dec(x_66); +lean_dec(x_64); +x_99 = lean_ctor_get(x_90, 0); +lean_inc(x_99); +x_100 = lean_ctor_get(x_90, 1); +lean_inc(x_100); +if (lean_is_exclusive(x_90)) { + lean_ctor_release(x_90, 0); + lean_ctor_release(x_90, 1); + x_101 = x_90; +} else { + lean_dec_ref(x_90); + x_101 = lean_box(0); +} +if (lean_is_scalar(x_101)) { + x_102 = lean_alloc_ctor(1, 2, 0); +} else { + x_102 = x_101; +} +lean_ctor_set(x_102, 0, x_99); +lean_ctor_set(x_102, 1, x_100); +return x_102; +} +} +} +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; lean_object* x_110; lean_object* x_111; uint8_t x_112; uint8_t x_113; uint8_t x_114; uint8_t x_115; uint8_t x_116; uint8_t x_117; uint8_t x_118; uint8_t x_119; uint8_t x_120; uint8_t x_121; uint8_t x_122; lean_object* x_123; uint8_t 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_103 = lean_ctor_get(x_1, 0); +x_104 = lean_ctor_get(x_1, 1); +x_105 = lean_ctor_get(x_1, 2); +lean_inc(x_105); +lean_inc(x_104); +lean_inc(x_103); +lean_dec(x_1); +x_106 = lean_ctor_get(x_3, 1); +lean_inc(x_106); +x_107 = lean_ctor_get(x_3, 2); +lean_inc(x_107); +x_108 = lean_ctor_get(x_3, 3); +lean_inc(x_108); +x_109 = lean_ctor_get(x_3, 4); +lean_inc(x_109); +x_110 = lean_ctor_get(x_3, 5); +lean_inc(x_110); +if (lean_is_exclusive(x_3)) { + lean_ctor_release(x_3, 0); + lean_ctor_release(x_3, 1); + lean_ctor_release(x_3, 2); + lean_ctor_release(x_3, 3); + lean_ctor_release(x_3, 4); + lean_ctor_release(x_3, 5); + x_111 = x_3; +} else { + lean_dec_ref(x_3); + x_111 = lean_box(0); +} +x_112 = lean_ctor_get_uint8(x_8, 0); +x_113 = lean_ctor_get_uint8(x_8, 1); +x_114 = lean_ctor_get_uint8(x_8, 2); +x_115 = lean_ctor_get_uint8(x_8, 3); +x_116 = lean_ctor_get_uint8(x_8, 4); +x_117 = lean_ctor_get_uint8(x_8, 5); +x_118 = lean_ctor_get_uint8(x_8, 6); +x_119 = lean_ctor_get_uint8(x_8, 7); +x_120 = lean_ctor_get_uint8(x_8, 8); +x_121 = lean_ctor_get_uint8(x_8, 10); +x_122 = lean_ctor_get_uint8(x_8, 11); +if (lean_is_exclusive(x_8)) { + x_123 = x_8; +} else { + lean_dec_ref(x_8); + x_123 = lean_box(0); +} +x_124 = 2; +if (lean_is_scalar(x_123)) { + x_125 = lean_alloc_ctor(0, 0, 12); +} else { + x_125 = x_123; +} +lean_ctor_set_uint8(x_125, 0, x_112); +lean_ctor_set_uint8(x_125, 1, x_113); +lean_ctor_set_uint8(x_125, 2, x_114); +lean_ctor_set_uint8(x_125, 3, x_115); +lean_ctor_set_uint8(x_125, 4, x_116); +lean_ctor_set_uint8(x_125, 5, x_117); +lean_ctor_set_uint8(x_125, 6, x_118); +lean_ctor_set_uint8(x_125, 7, x_119); +lean_ctor_set_uint8(x_125, 8, x_120); +lean_ctor_set_uint8(x_125, 9, x_124); +lean_ctor_set_uint8(x_125, 10, x_121); +lean_ctor_set_uint8(x_125, 11, x_122); +if (lean_is_scalar(x_111)) { + x_126 = lean_alloc_ctor(0, 6, 0); +} else { + x_126 = x_111; +} +lean_ctor_set(x_126, 0, x_125); +lean_ctor_set(x_126, 1, x_106); +lean_ctor_set(x_126, 2, x_107); +lean_ctor_set(x_126, 3, x_108); +lean_ctor_set(x_126, 4, x_109); +lean_ctor_set(x_126, 5, x_110); +x_127 = lean_st_mk_ref(x_104, x_7); +x_128 = lean_ctor_get(x_127, 0); +lean_inc(x_128); +x_129 = lean_ctor_get(x_127, 1); +lean_inc(x_129); +lean_dec(x_127); +lean_inc(x_128); +lean_inc(x_103); +x_130 = lean_apply_7(x_2, x_103, x_128, x_126, x_4, x_5, x_6, x_129); +if (lean_obj_tag(x_130) == 0) +{ +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; +x_131 = lean_ctor_get(x_130, 0); +lean_inc(x_131); +x_132 = lean_ctor_get(x_130, 1); +lean_inc(x_132); +lean_dec(x_130); +x_133 = lean_st_ref_get(x_128, x_132); +lean_dec(x_128); +x_134 = lean_ctor_get(x_133, 0); +lean_inc(x_134); +x_135 = lean_ctor_get(x_133, 1); +lean_inc(x_135); +if (lean_is_exclusive(x_133)) { + lean_ctor_release(x_133, 0); + lean_ctor_release(x_133, 1); + x_136 = x_133; +} else { + lean_dec_ref(x_133); + x_136 = lean_box(0); +} +x_137 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_137, 0, x_103); +lean_ctor_set(x_137, 1, x_134); +lean_ctor_set(x_137, 2, x_105); +x_138 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_138, 0, x_131); +lean_ctor_set(x_138, 1, x_137); +if (lean_is_scalar(x_136)) { + x_139 = lean_alloc_ctor(0, 2, 0); +} else { + x_139 = x_136; +} +lean_ctor_set(x_139, 0, x_138); +lean_ctor_set(x_139, 1, x_135); +return x_139; +} +else +{ +lean_object* x_140; lean_object* x_141; lean_object* x_142; lean_object* x_143; +lean_dec(x_128); +lean_dec(x_105); +lean_dec(x_103); +x_140 = lean_ctor_get(x_130, 0); +lean_inc(x_140); +x_141 = lean_ctor_get(x_130, 1); +lean_inc(x_141); +if (lean_is_exclusive(x_130)) { + lean_ctor_release(x_130, 0); + lean_ctor_release(x_130, 1); + x_142 = x_130; +} else { + lean_dec_ref(x_130); + x_142 = lean_box(0); +} +if (lean_is_scalar(x_142)) { + x_143 = lean_alloc_ctor(1, 2, 0); +} else { + x_143 = x_142; +} +lean_ctor_set(x_143, 0, x_140); +lean_ctor_set(x_143, 1, x_141); +return x_143; +} +} +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_runMatch(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; +x_3 = lean_alloc_closure((void*)(l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_runMatch___rarg), 7, 0); +return x_3; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_setTrie___rarg(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; uint8_t x_15; +x_10 = lean_st_ref_take(x_4, 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 = lean_array_set(x_11, x_1, x_2); +x_14 = lean_st_ref_set(x_4, x_13, x_12); +x_15 = !lean_is_exclusive(x_14); +if (x_15 == 0) +{ +lean_object* x_16; lean_object* x_17; +x_16 = lean_ctor_get(x_14, 0); +lean_dec(x_16); +x_17 = lean_box(0); +lean_ctor_set(x_14, 0, x_17); +return x_14; +} +else +{ +lean_object* x_18; lean_object* x_19; lean_object* x_20; +x_18 = lean_ctor_get(x_14, 1); +lean_inc(x_18); +lean_dec(x_14); +x_19 = lean_box(0); +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; +} +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_setTrie(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = lean_alloc_closure((void*)(l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_setTrie___rarg___boxed), 9, 0); +return x_2; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_setTrie___rarg___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___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_setTrie___rarg(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_1); +return x_10; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_newTrie___rarg___lambda__1(lean_object* x_1, lean_object* x_2) { +_start: +{ +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; +x_3 = lean_array_get_size(x_2); +x_4 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_getKeyArgs___lambda__3___closed__3; +x_5 = lean_array_push(x_4, x_1); +x_6 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_getKeyArgs___lambda__2___closed__2; +x_7 = lean_unsigned_to_nat(0u); +x_8 = l_Lean_Meta_LazyDiscrTree_instEmptyCollectionTrie___closed__1; +x_9 = lean_alloc_ctor(0, 4, 0); +lean_ctor_set(x_9, 0, x_6); +lean_ctor_set(x_9, 1, x_7); +lean_ctor_set(x_9, 2, x_8); +lean_ctor_set(x_9, 3, x_5); +x_10 = lean_array_push(x_2, x_9); +x_11 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_11, 0, x_3); +lean_ctor_set(x_11, 1, x_10); +return x_11; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_newTrie___rarg(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_3 = lean_ctor_get(x_1, 2); +lean_inc(x_3); +lean_dec(x_1); +x_4 = lean_alloc_closure((void*)(l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_newTrie___rarg___lambda__1), 2, 1); +lean_closure_set(x_4, 0, x_2); +x_5 = lean_apply_2(x_3, lean_box(0), x_4); +return x_5; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_newTrie(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +lean_object* x_4; +x_4 = lean_alloc_closure((void*)(l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_newTrie___rarg), 2, 0); +return x_4; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_newTrie___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +lean_object* x_4; +x_4 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_newTrie(x_1, x_2, x_3); +lean_dec(x_3); +return x_4; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_addLazyEntryToTrie___rarg(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; uint8_t x_14; +x_10 = lean_st_ref_take(x_4, 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 = lean_array_get_size(x_11); +x_14 = lean_nat_dec_lt(x_1, x_13); +lean_dec(x_13); +if (x_14 == 0) +{ +lean_object* x_15; uint8_t x_16; +lean_dec(x_2); +x_15 = lean_st_ref_set(x_4, x_11, x_12); +x_16 = !lean_is_exclusive(x_15); +if (x_16 == 0) +{ +lean_object* x_17; lean_object* x_18; +x_17 = lean_ctor_get(x_15, 0); +lean_dec(x_17); +x_18 = lean_box(0); +lean_ctor_set(x_15, 0, x_18); +return x_15; +} +else +{ +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 = lean_box(0); +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 +{ +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; +x_22 = lean_array_fget(x_11, x_1); +x_23 = lean_box(0); +x_24 = lean_array_fset(x_11, x_1, x_23); +x_25 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_Trie_pushPending___rarg(x_22, x_2); +x_26 = lean_array_fset(x_24, x_1, x_25); +x_27 = lean_st_ref_set(x_4, x_26, x_12); +x_28 = !lean_is_exclusive(x_27); +if (x_28 == 0) +{ +lean_object* x_29; +x_29 = lean_ctor_get(x_27, 0); +lean_dec(x_29); +lean_ctor_set(x_27, 0, x_23); +return x_27; +} +else +{ +lean_object* x_30; lean_object* x_31; +x_30 = lean_ctor_get(x_27, 1); +lean_inc(x_30); +lean_dec(x_27); +x_31 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_31, 0, x_23); +lean_ctor_set(x_31, 1, x_30); +return x_31; +} +} +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_addLazyEntryToTrie(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = lean_alloc_closure((void*)(l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_addLazyEntryToTrie___rarg___boxed), 9, 0); +return x_2; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_addLazyEntryToTrie___rarg___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___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_addLazyEntryToTrie___rarg(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_1); +return x_10; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_withLCtx___at___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_evalLazyEntries_iter___spec__1___rarg(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; +x_11 = lean_apply_2(x_3, x_4, x_5); +x_12 = l___private_Lean_Meta_Basic_0__Lean_Meta_withLocalContextImp___rarg(x_1, x_2, x_11, x_6, x_7, x_8, x_9, 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_Lean_Meta_withLCtx___at___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_evalLazyEntries_iter___spec__1(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; +x_3 = lean_alloc_closure((void*)(l_Lean_Meta_withLCtx___at___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_evalLazyEntries_iter___spec__1___rarg), 10, 0); +return x_3; +} +} +LEAN_EXPORT lean_object* l_Lean_AssocList_find_x3f___at___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_evalLazyEntries_iter___spec__3(lean_object* x_1, lean_object* x_2) { +_start: +{ +if (lean_obj_tag(x_2) == 0) +{ +lean_object* x_3; +x_3 = lean_box(0); +return x_3; +} +else +{ +lean_object* x_4; lean_object* x_5; lean_object* x_6; uint8_t x_7; +x_4 = lean_ctor_get(x_2, 0); +x_5 = lean_ctor_get(x_2, 1); +x_6 = lean_ctor_get(x_2, 2); +x_7 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_beqKey____x40_Lean_Meta_LazyDiscrTree___hyg_99_(x_4, x_1); +if (x_7 == 0) +{ +x_2 = x_6; +goto _start; +} +else +{ +lean_object* x_9; +lean_inc(x_5); +x_9 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_9, 0, x_5); +return x_9; +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_HashMapImp_find_x3f___at___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_evalLazyEntries_iter___spec__2(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; lean_object* x_4; uint64_t x_5; size_t x_6; lean_object* x_7; lean_object* x_8; +x_3 = lean_ctor_get(x_1, 1); +lean_inc(x_3); +lean_dec(x_1); +x_4 = lean_array_get_size(x_3); +x_5 = l_Lean_Meta_LazyDiscrTree_MatchClone_Key_hash(x_2); +x_6 = lean_hashmap_mk_idx(x_4, x_5); +x_7 = lean_array_uget(x_3, x_6); +lean_dec(x_3); +x_8 = l_Lean_AssocList_find_x3f___at___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_evalLazyEntries_iter___spec__3(x_2, x_7); +lean_dec(x_7); +lean_dec(x_2); +return x_8; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_newTrie___at___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_evalLazyEntries_iter___spec__4___rarg(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) { +_start: +{ +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; uint8_t x_21; +x_9 = lean_st_ref_take(x_3, x_8); +x_10 = lean_ctor_get(x_9, 0); +lean_inc(x_10); +x_11 = lean_ctor_get(x_9, 1); +lean_inc(x_11); +lean_dec(x_9); +x_12 = lean_array_get_size(x_10); +x_13 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_getKeyArgs___lambda__3___closed__3; +x_14 = lean_array_push(x_13, x_1); +x_15 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_getKeyArgs___lambda__2___closed__2; +x_16 = lean_unsigned_to_nat(0u); +x_17 = l_Lean_Meta_LazyDiscrTree_instEmptyCollectionTrie___closed__1; +x_18 = lean_alloc_ctor(0, 4, 0); +lean_ctor_set(x_18, 0, x_15); +lean_ctor_set(x_18, 1, x_16); +lean_ctor_set(x_18, 2, x_17); +lean_ctor_set(x_18, 3, x_14); +x_19 = lean_array_push(x_10, x_18); +x_20 = lean_st_ref_set(x_3, x_19, x_11); +x_21 = !lean_is_exclusive(x_20); +if (x_21 == 0) +{ +lean_object* x_22; +x_22 = lean_ctor_get(x_20, 0); +lean_dec(x_22); +lean_ctor_set(x_20, 0, x_12); +return x_20; +} +else +{ +lean_object* x_23; lean_object* x_24; +x_23 = lean_ctor_get(x_20, 1); +lean_inc(x_23); +lean_dec(x_20); +x_24 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_24, 0, x_12); +lean_ctor_set(x_24, 1, x_23); +return x_24; +} +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_newTrie___at___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_evalLazyEntries_iter___spec__4(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = lean_alloc_closure((void*)(l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_newTrie___at___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_evalLazyEntries_iter___spec__4___rarg___boxed), 8, 0); +return x_2; +} +} +LEAN_EXPORT uint8_t l_Lean_AssocList_contains___at___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_evalLazyEntries_iter___spec__6(lean_object* x_1, lean_object* x_2) { +_start: +{ +if (lean_obj_tag(x_2) == 0) +{ +uint8_t x_3; +x_3 = 0; +return x_3; +} +else +{ +lean_object* x_4; lean_object* x_5; uint8_t x_6; +x_4 = lean_ctor_get(x_2, 0); +x_5 = lean_ctor_get(x_2, 2); +x_6 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_beqKey____x40_Lean_Meta_LazyDiscrTree___hyg_99_(x_4, x_1); +if (x_6 == 0) +{ +x_2 = x_5; +goto _start; +} +else +{ +uint8_t x_8; +x_8 = 1; +return x_8; +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_AssocList_foldlM___at___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_evalLazyEntries_iter___spec__9(lean_object* x_1, lean_object* x_2) { +_start: +{ +if (lean_obj_tag(x_2) == 0) +{ +return x_1; +} +else +{ +uint8_t x_3; +x_3 = !lean_is_exclusive(x_2); +if (x_3 == 0) +{ +lean_object* x_4; lean_object* x_5; lean_object* x_6; uint64_t x_7; size_t x_8; lean_object* x_9; lean_object* x_10; +x_4 = lean_ctor_get(x_2, 0); +x_5 = lean_ctor_get(x_2, 2); +x_6 = lean_array_get_size(x_1); +x_7 = l_Lean_Meta_LazyDiscrTree_MatchClone_Key_hash(x_4); +x_8 = lean_hashmap_mk_idx(x_6, x_7); +x_9 = lean_array_uget(x_1, x_8); +lean_ctor_set(x_2, 2, x_9); +x_10 = lean_array_uset(x_1, x_8, x_2); +x_1 = x_10; +x_2 = x_5; +goto _start; +} +else +{ +lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; uint64_t x_16; size_t x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; +x_12 = lean_ctor_get(x_2, 0); +x_13 = lean_ctor_get(x_2, 1); +x_14 = lean_ctor_get(x_2, 2); +lean_inc(x_14); +lean_inc(x_13); +lean_inc(x_12); +lean_dec(x_2); +x_15 = lean_array_get_size(x_1); +x_16 = l_Lean_Meta_LazyDiscrTree_MatchClone_Key_hash(x_12); +x_17 = lean_hashmap_mk_idx(x_15, x_16); +x_18 = lean_array_uget(x_1, x_17); +x_19 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_19, 0, x_12); +lean_ctor_set(x_19, 1, x_13); +lean_ctor_set(x_19, 2, x_18); +x_20 = lean_array_uset(x_1, x_17, x_19); +x_1 = x_20; +x_2 = x_14; +goto _start; +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_HashMapImp_moveEntries___at___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_evalLazyEntries_iter___spec__8(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +lean_object* x_4; uint8_t x_5; +x_4 = lean_array_get_size(x_2); +x_5 = lean_nat_dec_lt(x_1, x_4); +lean_dec(x_4); +if (x_5 == 0) +{ +lean_dec(x_2); +lean_dec(x_1); +return x_3; +} +else +{ +lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; +x_6 = lean_array_fget(x_2, x_1); +x_7 = lean_box(0); +x_8 = lean_array_fset(x_2, x_1, x_7); +x_9 = l_Lean_AssocList_foldlM___at___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_evalLazyEntries_iter___spec__9(x_3, x_6); +x_10 = lean_unsigned_to_nat(1u); +x_11 = lean_nat_add(x_1, x_10); +lean_dec(x_1); +x_1 = x_11; +x_2 = x_8; +x_3 = x_9; +goto _start; +} +} +} +LEAN_EXPORT lean_object* l_Lean_HashMapImp_expand___at___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_evalLazyEntries_iter___spec__7(lean_object* x_1, lean_object* x_2) { +_start: +{ +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; +x_3 = lean_array_get_size(x_2); +x_4 = lean_unsigned_to_nat(2u); +x_5 = lean_nat_mul(x_3, x_4); +lean_dec(x_3); +x_6 = lean_box(0); +x_7 = lean_mk_array(x_5, x_6); +x_8 = lean_unsigned_to_nat(0u); +x_9 = l_Lean_HashMapImp_moveEntries___at___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_evalLazyEntries_iter___spec__8(x_8, x_2, x_7); +x_10 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_10, 0, x_1); +lean_ctor_set(x_10, 1, x_9); +return x_10; +} +} +LEAN_EXPORT lean_object* l_Lean_AssocList_replace___at___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_evalLazyEntries_iter___spec__10(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +if (lean_obj_tag(x_3) == 0) +{ +lean_object* x_4; +lean_dec(x_2); +lean_dec(x_1); +x_4 = lean_box(0); +return x_4; +} +else +{ +uint8_t x_5; +x_5 = !lean_is_exclusive(x_3); +if (x_5 == 0) +{ +lean_object* x_6; lean_object* x_7; lean_object* x_8; uint8_t x_9; +x_6 = lean_ctor_get(x_3, 0); +x_7 = lean_ctor_get(x_3, 1); +x_8 = lean_ctor_get(x_3, 2); +x_9 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_beqKey____x40_Lean_Meta_LazyDiscrTree___hyg_99_(x_6, x_1); +if (x_9 == 0) +{ +lean_object* x_10; +x_10 = l_Lean_AssocList_replace___at___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_evalLazyEntries_iter___spec__10(x_1, x_2, x_8); +lean_ctor_set(x_3, 2, x_10); +return x_3; +} +else +{ +lean_dec(x_7); +lean_dec(x_6); +lean_ctor_set(x_3, 1, x_2); +lean_ctor_set(x_3, 0, x_1); +return x_3; +} +} +else +{ +lean_object* x_11; lean_object* x_12; lean_object* x_13; uint8_t x_14; +x_11 = lean_ctor_get(x_3, 0); +x_12 = lean_ctor_get(x_3, 1); +x_13 = lean_ctor_get(x_3, 2); +lean_inc(x_13); +lean_inc(x_12); +lean_inc(x_11); +lean_dec(x_3); +x_14 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_beqKey____x40_Lean_Meta_LazyDiscrTree___hyg_99_(x_11, x_1); +if (x_14 == 0) +{ +lean_object* x_15; lean_object* x_16; +x_15 = l_Lean_AssocList_replace___at___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_evalLazyEntries_iter___spec__10(x_1, x_2, x_13); +x_16 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_16, 0, x_11); +lean_ctor_set(x_16, 1, x_12); +lean_ctor_set(x_16, 2, x_15); +return x_16; +} +else +{ +lean_object* x_17; +lean_dec(x_12); +lean_dec(x_11); +x_17 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_17, 0, x_1); +lean_ctor_set(x_17, 1, x_2); +lean_ctor_set(x_17, 2, x_13); +return x_17; +} +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_HashMap_insert___at___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_evalLazyEntries_iter___spec__5(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +uint8_t x_4; +x_4 = !lean_is_exclusive(x_1); +if (x_4 == 0) +{ +lean_object* x_5; lean_object* x_6; lean_object* x_7; uint64_t x_8; size_t x_9; lean_object* x_10; uint8_t x_11; +x_5 = lean_ctor_get(x_1, 0); +x_6 = lean_ctor_get(x_1, 1); +x_7 = lean_array_get_size(x_6); +x_8 = l_Lean_Meta_LazyDiscrTree_MatchClone_Key_hash(x_2); +lean_inc(x_7); +x_9 = lean_hashmap_mk_idx(x_7, x_8); +x_10 = lean_array_uget(x_6, x_9); +x_11 = l_Lean_AssocList_contains___at___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_evalLazyEntries_iter___spec__6(x_2, x_10); +if (x_11 == 0) +{ +lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; uint8_t x_17; +x_12 = lean_unsigned_to_nat(1u); +x_13 = lean_nat_add(x_5, x_12); +lean_dec(x_5); +x_14 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_14, 0, x_2); +lean_ctor_set(x_14, 1, x_3); +lean_ctor_set(x_14, 2, x_10); +x_15 = lean_array_uset(x_6, x_9, x_14); +x_16 = l___private_Lean_Data_HashMap_0__Lean_numBucketsForCapacity(x_13); +x_17 = lean_nat_dec_le(x_16, x_7); +lean_dec(x_7); +lean_dec(x_16); +if (x_17 == 0) +{ +lean_object* x_18; +lean_free_object(x_1); +x_18 = l_Lean_HashMapImp_expand___at___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_evalLazyEntries_iter___spec__7(x_13, x_15); +return x_18; +} +else +{ +lean_ctor_set(x_1, 1, x_15); +lean_ctor_set(x_1, 0, x_13); +return x_1; +} +} +else +{ +lean_object* x_19; lean_object* x_20; +lean_dec(x_7); +x_19 = l_Lean_AssocList_replace___at___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_evalLazyEntries_iter___spec__10(x_2, x_3, x_10); +x_20 = lean_array_uset(x_6, x_9, x_19); +lean_ctor_set(x_1, 1, x_20); +return x_1; +} +} +else +{ +lean_object* x_21; lean_object* x_22; lean_object* x_23; uint64_t x_24; size_t x_25; lean_object* x_26; uint8_t x_27; +x_21 = lean_ctor_get(x_1, 0); +x_22 = lean_ctor_get(x_1, 1); +lean_inc(x_22); +lean_inc(x_21); +lean_dec(x_1); +x_23 = lean_array_get_size(x_22); +x_24 = l_Lean_Meta_LazyDiscrTree_MatchClone_Key_hash(x_2); +lean_inc(x_23); +x_25 = lean_hashmap_mk_idx(x_23, x_24); +x_26 = lean_array_uget(x_22, x_25); +x_27 = l_Lean_AssocList_contains___at___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_evalLazyEntries_iter___spec__6(x_2, x_26); +if (x_27 == 0) +{ +lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; uint8_t x_33; +x_28 = lean_unsigned_to_nat(1u); +x_29 = lean_nat_add(x_21, x_28); +lean_dec(x_21); +x_30 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_30, 0, x_2); +lean_ctor_set(x_30, 1, x_3); +lean_ctor_set(x_30, 2, x_26); +x_31 = lean_array_uset(x_22, x_25, x_30); +x_32 = l___private_Lean_Data_HashMap_0__Lean_numBucketsForCapacity(x_29); +x_33 = lean_nat_dec_le(x_32, x_23); +lean_dec(x_23); +lean_dec(x_32); +if (x_33 == 0) +{ +lean_object* x_34; +x_34 = l_Lean_HashMapImp_expand___at___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_evalLazyEntries_iter___spec__7(x_29, x_31); +return x_34; +} +else +{ +lean_object* x_35; +x_35 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_35, 0, x_29); +lean_ctor_set(x_35, 1, x_31); +return x_35; +} +} +else +{ +lean_object* x_36; lean_object* x_37; lean_object* x_38; +lean_dec(x_23); +x_36 = l_Lean_AssocList_replace___at___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_evalLazyEntries_iter___spec__10(x_2, x_3, x_26); +x_37 = lean_array_uset(x_22, x_25, x_36); +x_38 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_38, 0, x_21); +lean_ctor_set(x_38, 1, x_37); +return x_38; +} +} +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_newTrie___at___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_evalLazyEntries_iter___spec__11___rarg(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) { +_start: +{ +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; uint8_t x_21; +x_9 = lean_st_ref_take(x_3, x_8); +x_10 = lean_ctor_get(x_9, 0); +lean_inc(x_10); +x_11 = lean_ctor_get(x_9, 1); +lean_inc(x_11); +lean_dec(x_9); +x_12 = lean_array_get_size(x_10); +x_13 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_getKeyArgs___lambda__3___closed__3; +x_14 = lean_array_push(x_13, x_1); +x_15 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_getKeyArgs___lambda__2___closed__2; +x_16 = lean_unsigned_to_nat(0u); +x_17 = l_Lean_Meta_LazyDiscrTree_instEmptyCollectionTrie___closed__1; +x_18 = lean_alloc_ctor(0, 4, 0); +lean_ctor_set(x_18, 0, x_15); +lean_ctor_set(x_18, 1, x_16); +lean_ctor_set(x_18, 2, x_17); +lean_ctor_set(x_18, 3, x_14); +x_19 = lean_array_push(x_10, x_18); +x_20 = lean_st_ref_set(x_3, x_19, x_11); +x_21 = !lean_is_exclusive(x_20); +if (x_21 == 0) +{ +lean_object* x_22; +x_22 = lean_ctor_get(x_20, 0); +lean_dec(x_22); +lean_ctor_set(x_20, 0, x_12); +return x_20; +} +else +{ +lean_object* x_23; lean_object* x_24; +x_23 = lean_ctor_get(x_20, 1); +lean_inc(x_23); +lean_dec(x_20); +x_24 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_24, 0, x_12); +lean_ctor_set(x_24, 1, x_23); +return x_24; +} +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_newTrie___at___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_evalLazyEntries_iter___spec__11(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = lean_alloc_closure((void*)(l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_newTrie___at___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_evalLazyEntries_iter___spec__11___rarg___boxed), 8, 0); +return x_2; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_evalLazyEntries_iter___rarg___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: +{ +uint8_t x_11; lean_object* x_12; +x_11 = 0; +x_12 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_pushArgs(x_11, x_1, x_2, x_3, x_6, x_7, x_8, x_9, x_10); +return x_12; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_evalLazyEntries_iter___rarg(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: +{ +lean_object* x_14; uint8_t x_15; +x_14 = lean_array_get_size(x_2); +x_15 = lean_nat_dec_lt(x_6, x_14); +lean_dec(x_14); +if (x_15 == 0) +{ +lean_object* x_16; lean_object* x_17; lean_object* x_18; +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_1); +x_16 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_16, 0, x_4); +lean_ctor_set(x_16, 1, x_5); +x_17 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_17, 0, x_3); +lean_ctor_set(x_17, 1, x_16); +x_18 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_18, 0, x_17); +lean_ctor_set(x_18, 1, x_13); +return x_18; +} +else +{ +lean_object* x_19; lean_object* x_20; lean_object* x_21; uint8_t x_22; +x_19 = lean_array_fget(x_2, x_6); +x_20 = lean_ctor_get(x_19, 1); +lean_inc(x_20); +x_21 = lean_ctor_get(x_19, 0); +lean_inc(x_21); +lean_dec(x_19); +x_22 = !lean_is_exclusive(x_20); +if (x_22 == 0) +{ +lean_object* x_23; lean_object* x_24; uint8_t x_25; +x_23 = lean_ctor_get(x_20, 0); +x_24 = lean_ctor_get(x_20, 1); +x_25 = l_Array_isEmpty___rarg(x_21); +if (x_25 == 0) +{ +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; +x_26 = l_Lean_instInhabitedExpr; +x_27 = l_Array_back___rarg(x_26, x_21); +x_28 = lean_array_pop(x_21); +x_29 = lean_ctor_get(x_23, 0); +lean_inc(x_29); +x_30 = lean_ctor_get(x_23, 1); +lean_inc(x_30); +lean_inc(x_1); +x_31 = lean_alloc_closure((void*)(l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_evalLazyEntries_iter___rarg___lambda__1___boxed), 10, 3); +lean_closure_set(x_31, 0, x_28); +lean_closure_set(x_31, 1, x_27); +lean_closure_set(x_31, 2, x_1); +lean_inc(x_12); +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +x_32 = l_Lean_Meta_withLCtx___at___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_evalLazyEntries_iter___spec__1___rarg(x_29, x_30, x_31, x_7, x_8, x_9, x_10, x_11, x_12, x_13); +if (lean_obj_tag(x_32) == 0) +{ +lean_object* x_33; lean_object* x_34; uint8_t x_35; +x_33 = lean_ctor_get(x_32, 0); +lean_inc(x_33); +x_34 = lean_ctor_get(x_32, 1); +lean_inc(x_34); +lean_dec(x_32); +x_35 = !lean_is_exclusive(x_33); +if (x_35 == 0) +{ +lean_object* x_36; lean_object* x_37; lean_object* x_38; uint8_t x_39; +x_36 = lean_ctor_get(x_33, 0); +x_37 = lean_ctor_get(x_33, 1); +x_38 = lean_box(3); +x_39 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_beqKey____x40_Lean_Meta_LazyDiscrTree___hyg_99_(x_36, x_38); +if (x_39 == 0) +{ +lean_object* x_40; +lean_inc(x_36); +lean_inc(x_5); +x_40 = l_Lean_HashMapImp_find_x3f___at___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_evalLazyEntries_iter___spec__2(x_5, x_36); +if (lean_obj_tag(x_40) == 0) +{ +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_ctor_set(x_33, 1, x_24); +lean_ctor_set(x_33, 0, x_23); +lean_ctor_set(x_20, 1, x_33); +lean_ctor_set(x_20, 0, x_37); +x_41 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_newTrie___at___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_evalLazyEntries_iter___spec__4___rarg(x_20, x_7, x_8, x_9, x_10, x_11, x_12, x_34); +x_42 = lean_ctor_get(x_41, 0); +lean_inc(x_42); +x_43 = lean_ctor_get(x_41, 1); +lean_inc(x_43); +lean_dec(x_41); +x_44 = l_Lean_HashMap_insert___at___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_evalLazyEntries_iter___spec__5(x_5, x_36, x_42); +x_45 = lean_unsigned_to_nat(1u); +x_46 = lean_nat_add(x_6, x_45); +lean_dec(x_6); +x_5 = x_44; +x_6 = x_46; +x_13 = x_43; +goto _start; +} +else +{ +lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; +lean_dec(x_36); +x_48 = lean_ctor_get(x_40, 0); +lean_inc(x_48); +lean_dec(x_40); +lean_ctor_set(x_33, 1, x_24); +lean_ctor_set(x_33, 0, x_23); +lean_ctor_set(x_20, 1, x_33); +lean_ctor_set(x_20, 0, x_37); +x_49 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_addLazyEntryToTrie___rarg(x_48, x_20, x_7, x_8, x_9, x_10, x_11, x_12, x_34); +lean_dec(x_48); +x_50 = lean_ctor_get(x_49, 1); +lean_inc(x_50); +lean_dec(x_49); +x_51 = lean_unsigned_to_nat(1u); +x_52 = lean_nat_add(x_6, x_51); +lean_dec(x_6); +x_6 = x_52; +x_13 = x_50; +goto _start; +} +} +else +{ +lean_object* x_54; uint8_t x_55; +lean_dec(x_36); +x_54 = lean_unsigned_to_nat(0u); +x_55 = lean_nat_dec_eq(x_4, x_54); +if (x_55 == 0) +{ +lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; +lean_ctor_set(x_33, 1, x_24); +lean_ctor_set(x_33, 0, x_23); +lean_ctor_set(x_20, 1, x_33); +lean_ctor_set(x_20, 0, x_37); +x_56 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_addLazyEntryToTrie___rarg(x_4, x_20, x_7, x_8, x_9, x_10, x_11, x_12, x_34); +x_57 = lean_ctor_get(x_56, 1); +lean_inc(x_57); +lean_dec(x_56); +x_58 = lean_unsigned_to_nat(1u); +x_59 = lean_nat_add(x_6, x_58); +lean_dec(x_6); +x_6 = x_59; +x_13 = x_57; +goto _start; +} +else +{ +lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; +lean_dec(x_4); +lean_ctor_set(x_33, 1, x_24); +lean_ctor_set(x_33, 0, x_23); +lean_ctor_set(x_20, 1, x_33); +lean_ctor_set(x_20, 0, x_37); +x_61 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_newTrie___at___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_evalLazyEntries_iter___spec__11___rarg(x_20, x_7, x_8, x_9, x_10, x_11, x_12, x_34); +x_62 = lean_ctor_get(x_61, 0); +lean_inc(x_62); +x_63 = lean_ctor_get(x_61, 1); +lean_inc(x_63); +lean_dec(x_61); +x_64 = lean_unsigned_to_nat(1u); +x_65 = lean_nat_add(x_6, x_64); +lean_dec(x_6); +x_4 = x_62; +x_6 = x_65; +x_13 = x_63; +goto _start; +} +} +} +else +{ +lean_object* x_67; lean_object* x_68; lean_object* x_69; uint8_t x_70; +x_67 = lean_ctor_get(x_33, 0); +x_68 = lean_ctor_get(x_33, 1); +lean_inc(x_68); +lean_inc(x_67); +lean_dec(x_33); +x_69 = lean_box(3); +x_70 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_beqKey____x40_Lean_Meta_LazyDiscrTree___hyg_99_(x_67, x_69); +if (x_70 == 0) +{ +lean_object* x_71; +lean_inc(x_67); +lean_inc(x_5); +x_71 = l_Lean_HashMapImp_find_x3f___at___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_evalLazyEntries_iter___spec__2(x_5, x_67); +if (lean_obj_tag(x_71) == 0) +{ +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_72 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_72, 0, x_23); +lean_ctor_set(x_72, 1, x_24); +lean_ctor_set(x_20, 1, x_72); +lean_ctor_set(x_20, 0, x_68); +x_73 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_newTrie___at___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_evalLazyEntries_iter___spec__4___rarg(x_20, x_7, x_8, x_9, x_10, x_11, x_12, x_34); +x_74 = lean_ctor_get(x_73, 0); +lean_inc(x_74); +x_75 = lean_ctor_get(x_73, 1); +lean_inc(x_75); +lean_dec(x_73); +x_76 = l_Lean_HashMap_insert___at___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_evalLazyEntries_iter___spec__5(x_5, x_67, x_74); +x_77 = lean_unsigned_to_nat(1u); +x_78 = lean_nat_add(x_6, x_77); +lean_dec(x_6); +x_5 = x_76; +x_6 = x_78; +x_13 = x_75; +goto _start; +} +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_dec(x_67); +x_80 = lean_ctor_get(x_71, 0); +lean_inc(x_80); +lean_dec(x_71); +x_81 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_81, 0, x_23); +lean_ctor_set(x_81, 1, x_24); +lean_ctor_set(x_20, 1, x_81); +lean_ctor_set(x_20, 0, x_68); +x_82 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_addLazyEntryToTrie___rarg(x_80, x_20, x_7, x_8, x_9, x_10, x_11, x_12, x_34); +lean_dec(x_80); +x_83 = lean_ctor_get(x_82, 1); +lean_inc(x_83); +lean_dec(x_82); +x_84 = lean_unsigned_to_nat(1u); +x_85 = lean_nat_add(x_6, x_84); +lean_dec(x_6); +x_6 = x_85; +x_13 = x_83; +goto _start; +} +} +else +{ +lean_object* x_87; uint8_t x_88; +lean_dec(x_67); +x_87 = lean_unsigned_to_nat(0u); +x_88 = lean_nat_dec_eq(x_4, x_87); +if (x_88 == 0) +{ +lean_object* x_89; lean_object* x_90; lean_object* x_91; lean_object* x_92; lean_object* x_93; +x_89 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_89, 0, x_23); +lean_ctor_set(x_89, 1, x_24); +lean_ctor_set(x_20, 1, x_89); +lean_ctor_set(x_20, 0, x_68); +x_90 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_addLazyEntryToTrie___rarg(x_4, x_20, x_7, x_8, x_9, x_10, x_11, x_12, x_34); +x_91 = lean_ctor_get(x_90, 1); +lean_inc(x_91); +lean_dec(x_90); +x_92 = lean_unsigned_to_nat(1u); +x_93 = lean_nat_add(x_6, x_92); +lean_dec(x_6); +x_6 = x_93; +x_13 = x_91; +goto _start; +} +else +{ +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_dec(x_4); +x_95 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_95, 0, x_23); +lean_ctor_set(x_95, 1, x_24); +lean_ctor_set(x_20, 1, x_95); +lean_ctor_set(x_20, 0, x_68); +x_96 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_newTrie___at___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_evalLazyEntries_iter___spec__11___rarg(x_20, x_7, x_8, x_9, x_10, x_11, x_12, x_34); +x_97 = lean_ctor_get(x_96, 0); +lean_inc(x_97); +x_98 = lean_ctor_get(x_96, 1); +lean_inc(x_98); +lean_dec(x_96); +x_99 = lean_unsigned_to_nat(1u); +x_100 = lean_nat_add(x_6, x_99); +lean_dec(x_6); +x_4 = x_97; +x_6 = x_100; +x_13 = x_98; +goto _start; +} +} +} +} +else +{ +uint8_t x_102; +lean_free_object(x_20); +lean_dec(x_24); +lean_dec(x_23); +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); +lean_dec(x_1); +x_102 = !lean_is_exclusive(x_32); +if (x_102 == 0) +{ +return x_32; +} +else +{ +lean_object* x_103; lean_object* x_104; lean_object* x_105; +x_103 = lean_ctor_get(x_32, 0); +x_104 = lean_ctor_get(x_32, 1); +lean_inc(x_104); +lean_inc(x_103); +lean_dec(x_32); +x_105 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_105, 0, x_103); +lean_ctor_set(x_105, 1, x_104); +return x_105; +} +} +} +else +{ +lean_object* x_106; lean_object* x_107; lean_object* x_108; +lean_free_object(x_20); +lean_dec(x_23); +lean_dec(x_21); +x_106 = lean_array_push(x_3, x_24); +x_107 = lean_unsigned_to_nat(1u); +x_108 = lean_nat_add(x_6, x_107); +lean_dec(x_6); +x_3 = x_106; +x_6 = x_108; +goto _start; +} +} +else +{ +lean_object* x_110; lean_object* x_111; uint8_t x_112; +x_110 = lean_ctor_get(x_20, 0); +x_111 = lean_ctor_get(x_20, 1); +lean_inc(x_111); +lean_inc(x_110); +lean_dec(x_20); +x_112 = l_Array_isEmpty___rarg(x_21); +if (x_112 == 0) +{ +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; +x_113 = l_Lean_instInhabitedExpr; +x_114 = l_Array_back___rarg(x_113, x_21); +x_115 = lean_array_pop(x_21); +x_116 = lean_ctor_get(x_110, 0); +lean_inc(x_116); +x_117 = lean_ctor_get(x_110, 1); +lean_inc(x_117); +lean_inc(x_1); +x_118 = lean_alloc_closure((void*)(l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_evalLazyEntries_iter___rarg___lambda__1___boxed), 10, 3); +lean_closure_set(x_118, 0, x_115); +lean_closure_set(x_118, 1, x_114); +lean_closure_set(x_118, 2, x_1); +lean_inc(x_12); +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +x_119 = l_Lean_Meta_withLCtx___at___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_evalLazyEntries_iter___spec__1___rarg(x_116, x_117, x_118, x_7, x_8, x_9, x_10, x_11, x_12, x_13); +if (lean_obj_tag(x_119) == 0) +{ +lean_object* x_120; lean_object* x_121; lean_object* x_122; lean_object* x_123; lean_object* x_124; lean_object* x_125; uint8_t x_126; +x_120 = lean_ctor_get(x_119, 0); +lean_inc(x_120); +x_121 = lean_ctor_get(x_119, 1); +lean_inc(x_121); +lean_dec(x_119); +x_122 = lean_ctor_get(x_120, 0); +lean_inc(x_122); +x_123 = lean_ctor_get(x_120, 1); +lean_inc(x_123); +if (lean_is_exclusive(x_120)) { + lean_ctor_release(x_120, 0); + lean_ctor_release(x_120, 1); + x_124 = x_120; +} else { + lean_dec_ref(x_120); + x_124 = lean_box(0); +} +x_125 = lean_box(3); +x_126 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_beqKey____x40_Lean_Meta_LazyDiscrTree___hyg_99_(x_122, x_125); +if (x_126 == 0) +{ +lean_object* x_127; +lean_inc(x_122); +lean_inc(x_5); +x_127 = l_Lean_HashMapImp_find_x3f___at___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_evalLazyEntries_iter___spec__2(x_5, x_122); +if (lean_obj_tag(x_127) == 0) +{ +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; +if (lean_is_scalar(x_124)) { + x_128 = lean_alloc_ctor(0, 2, 0); +} else { + x_128 = x_124; +} +lean_ctor_set(x_128, 0, x_110); +lean_ctor_set(x_128, 1, x_111); +x_129 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_129, 0, x_123); +lean_ctor_set(x_129, 1, x_128); +x_130 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_newTrie___at___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_evalLazyEntries_iter___spec__4___rarg(x_129, x_7, x_8, x_9, x_10, x_11, x_12, x_121); +x_131 = lean_ctor_get(x_130, 0); +lean_inc(x_131); +x_132 = lean_ctor_get(x_130, 1); +lean_inc(x_132); +lean_dec(x_130); +x_133 = l_Lean_HashMap_insert___at___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_evalLazyEntries_iter___spec__5(x_5, x_122, x_131); +x_134 = lean_unsigned_to_nat(1u); +x_135 = lean_nat_add(x_6, x_134); +lean_dec(x_6); +x_5 = x_133; +x_6 = x_135; +x_13 = x_132; +goto _start; +} +else +{ +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_dec(x_122); +x_137 = lean_ctor_get(x_127, 0); +lean_inc(x_137); +lean_dec(x_127); +if (lean_is_scalar(x_124)) { + x_138 = lean_alloc_ctor(0, 2, 0); +} else { + x_138 = x_124; +} +lean_ctor_set(x_138, 0, x_110); +lean_ctor_set(x_138, 1, x_111); +x_139 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_139, 0, x_123); +lean_ctor_set(x_139, 1, x_138); +x_140 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_addLazyEntryToTrie___rarg(x_137, x_139, x_7, x_8, x_9, x_10, x_11, x_12, x_121); +lean_dec(x_137); +x_141 = lean_ctor_get(x_140, 1); +lean_inc(x_141); +lean_dec(x_140); +x_142 = lean_unsigned_to_nat(1u); +x_143 = lean_nat_add(x_6, x_142); +lean_dec(x_6); +x_6 = x_143; +x_13 = x_141; +goto _start; +} +} +else +{ +lean_object* x_145; uint8_t x_146; +lean_dec(x_122); +x_145 = lean_unsigned_to_nat(0u); +x_146 = lean_nat_dec_eq(x_4, x_145); +if (x_146 == 0) +{ +lean_object* x_147; lean_object* x_148; lean_object* x_149; lean_object* x_150; lean_object* x_151; lean_object* x_152; +if (lean_is_scalar(x_124)) { + x_147 = lean_alloc_ctor(0, 2, 0); +} else { + x_147 = x_124; +} +lean_ctor_set(x_147, 0, x_110); +lean_ctor_set(x_147, 1, x_111); +x_148 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_148, 0, x_123); +lean_ctor_set(x_148, 1, x_147); +x_149 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_addLazyEntryToTrie___rarg(x_4, x_148, x_7, x_8, x_9, x_10, x_11, x_12, x_121); +x_150 = lean_ctor_get(x_149, 1); +lean_inc(x_150); +lean_dec(x_149); +x_151 = lean_unsigned_to_nat(1u); +x_152 = lean_nat_add(x_6, x_151); +lean_dec(x_6); +x_6 = x_152; +x_13 = x_150; +goto _start; +} +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; +lean_dec(x_4); +if (lean_is_scalar(x_124)) { + x_154 = lean_alloc_ctor(0, 2, 0); +} else { + x_154 = x_124; +} +lean_ctor_set(x_154, 0, x_110); +lean_ctor_set(x_154, 1, x_111); +x_155 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_155, 0, x_123); +lean_ctor_set(x_155, 1, x_154); +x_156 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_newTrie___at___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_evalLazyEntries_iter___spec__11___rarg(x_155, x_7, x_8, x_9, x_10, x_11, x_12, x_121); +x_157 = lean_ctor_get(x_156, 0); +lean_inc(x_157); +x_158 = lean_ctor_get(x_156, 1); +lean_inc(x_158); +lean_dec(x_156); +x_159 = lean_unsigned_to_nat(1u); +x_160 = lean_nat_add(x_6, x_159); +lean_dec(x_6); +x_4 = x_157; +x_6 = x_160; +x_13 = x_158; +goto _start; +} +} +} +else +{ +lean_object* x_162; lean_object* x_163; lean_object* x_164; lean_object* x_165; +lean_dec(x_111); +lean_dec(x_110); +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); +lean_dec(x_1); +x_162 = lean_ctor_get(x_119, 0); +lean_inc(x_162); +x_163 = lean_ctor_get(x_119, 1); +lean_inc(x_163); +if (lean_is_exclusive(x_119)) { + lean_ctor_release(x_119, 0); + lean_ctor_release(x_119, 1); + x_164 = x_119; +} else { + lean_dec_ref(x_119); + x_164 = lean_box(0); +} +if (lean_is_scalar(x_164)) { + x_165 = lean_alloc_ctor(1, 2, 0); +} else { + x_165 = x_164; +} +lean_ctor_set(x_165, 0, x_162); +lean_ctor_set(x_165, 1, x_163); +return x_165; +} +} +else +{ +lean_object* x_166; lean_object* x_167; lean_object* x_168; +lean_dec(x_110); +lean_dec(x_21); +x_166 = lean_array_push(x_3, x_111); +x_167 = lean_unsigned_to_nat(1u); +x_168 = lean_nat_add(x_6, x_167); +lean_dec(x_6); +x_3 = x_166; +x_6 = x_168; +goto _start; +} +} +} +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_evalLazyEntries_iter(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = lean_alloc_closure((void*)(l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_evalLazyEntries_iter___rarg___boxed), 13, 0); +return x_2; +} +} +LEAN_EXPORT lean_object* l_Lean_AssocList_find_x3f___at___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_evalLazyEntries_iter___spec__3___boxed(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; +x_3 = l_Lean_AssocList_find_x3f___at___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_evalLazyEntries_iter___spec__3(x_1, x_2); +lean_dec(x_2); +lean_dec(x_1); +return x_3; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_newTrie___at___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_evalLazyEntries_iter___spec__4___rarg___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) { +_start: +{ +lean_object* x_9; +x_9 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_newTrie___at___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_evalLazyEntries_iter___spec__4___rarg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, 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); +return x_9; +} +} +LEAN_EXPORT lean_object* l_Lean_AssocList_contains___at___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_evalLazyEntries_iter___spec__6___boxed(lean_object* x_1, lean_object* x_2) { +_start: +{ +uint8_t x_3; lean_object* x_4; +x_3 = l_Lean_AssocList_contains___at___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_evalLazyEntries_iter___spec__6(x_1, x_2); +lean_dec(x_2); +lean_dec(x_1); +x_4 = lean_box(x_3); +return x_4; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_newTrie___at___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_evalLazyEntries_iter___spec__11___rarg___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) { +_start: +{ +lean_object* x_9; +x_9 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_newTrie___at___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_evalLazyEntries_iter___spec__11___rarg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, 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); +return x_9; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_evalLazyEntries_iter___rarg___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___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_evalLazyEntries_iter___rarg___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); +return x_11; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_evalLazyEntries_iter___rarg___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: +{ +lean_object* x_14; +x_14 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_evalLazyEntries_iter___rarg(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); +lean_dec(x_2); +return x_14; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_evalLazyEntries___rarg(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_13; lean_object* x_14; +x_13 = lean_unsigned_to_nat(0u); +x_14 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_evalLazyEntries_iter___rarg(x_1, x_5, x_2, x_3, x_4, x_13, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +return x_14; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_evalLazyEntries(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = lean_alloc_closure((void*)(l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_evalLazyEntries___rarg___boxed), 12, 0); +return x_2; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_evalLazyEntries___rarg___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: +{ +lean_object* x_13; +x_13 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_evalLazyEntries___rarg(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_5); +return x_13; +} +} +static lean_object* _init_l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_evalNode___rarg___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = l_Lean_Meta_LazyDiscrTree_instInhabitedTrie(lean_box(0)); +return x_1; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_evalNode___rarg(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) { +_start: +{ +lean_object* x_9; uint8_t x_10; +x_9 = lean_st_ref_get(x_3, x_8); +x_10 = !lean_is_exclusive(x_9); +if (x_10 == 0) +{ +lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; uint8_t x_15; +x_11 = lean_ctor_get(x_9, 0); +x_12 = lean_ctor_get(x_9, 1); +x_13 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_evalNode___rarg___closed__1; +x_14 = lean_array_get(x_13, x_11, x_1); +lean_dec(x_11); +x_15 = !lean_is_exclusive(x_14); +if (x_15 == 0) +{ +lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; uint8_t x_22; +x_16 = lean_ctor_get(x_14, 0); +x_17 = lean_ctor_get(x_14, 1); +x_18 = lean_ctor_get(x_14, 2); +x_19 = lean_ctor_get(x_14, 3); +x_20 = lean_array_get_size(x_19); +x_21 = lean_unsigned_to_nat(0u); +x_22 = lean_nat_dec_eq(x_20, x_21); +lean_dec(x_20); +if (x_22 == 0) +{ +lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; +lean_free_object(x_9); +x_23 = l_Lean_Meta_LazyDiscrTree_instEmptyCollectionTrie___closed__2; +x_24 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_setTrie___rarg(x_1, x_23, x_2, x_3, x_4, x_5, x_6, x_7, x_12); +x_25 = lean_ctor_get(x_24, 1); +lean_inc(x_25); +lean_dec(x_24); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +lean_inc_n(x_2, 2); +x_26 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_evalLazyEntries_iter___rarg(x_2, x_19, x_16, x_17, x_18, x_21, x_2, x_3, x_4, x_5, x_6, x_7, x_25); +lean_dec(x_19); +if (lean_obj_tag(x_26) == 0) +{ +lean_object* x_27; lean_object* x_28; lean_object* x_29; uint8_t x_30; +x_27 = lean_ctor_get(x_26, 0); +lean_inc(x_27); +x_28 = lean_ctor_get(x_27, 1); +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; uint8_t x_33; +x_31 = lean_ctor_get(x_27, 0); +x_32 = lean_ctor_get(x_27, 1); +lean_dec(x_32); +x_33 = !lean_is_exclusive(x_28); +if (x_33 == 0) +{ +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_28, 0); +x_35 = lean_ctor_get(x_28, 1); +x_36 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_getKeyArgs___lambda__2___closed__2; +lean_inc(x_35); +lean_inc(x_34); +lean_inc(x_31); +lean_ctor_set(x_14, 3, x_36); +lean_ctor_set(x_14, 2, x_35); +lean_ctor_set(x_14, 1, x_34); +lean_ctor_set(x_14, 0, x_31); +x_37 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_setTrie___rarg(x_1, x_14, x_2, x_3, x_4, x_5, x_6, x_7, x_29); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_38 = !lean_is_exclusive(x_37); +if (x_38 == 0) +{ +lean_object* x_39; +x_39 = lean_ctor_get(x_37, 0); +lean_dec(x_39); +lean_ctor_set(x_37, 0, x_27); +return x_37; +} +else +{ +lean_object* x_40; lean_object* x_41; +x_40 = lean_ctor_get(x_37, 1); +lean_inc(x_40); +lean_dec(x_37); +x_41 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_41, 0, x_27); +lean_ctor_set(x_41, 1, x_40); +return x_41; +} +} +else +{ +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; +x_42 = lean_ctor_get(x_28, 0); +x_43 = lean_ctor_get(x_28, 1); +lean_inc(x_43); +lean_inc(x_42); +lean_dec(x_28); +x_44 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_getKeyArgs___lambda__2___closed__2; +lean_inc(x_43); +lean_inc(x_42); +lean_inc(x_31); +lean_ctor_set(x_14, 3, x_44); +lean_ctor_set(x_14, 2, x_43); +lean_ctor_set(x_14, 1, x_42); +lean_ctor_set(x_14, 0, x_31); +x_45 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_setTrie___rarg(x_1, x_14, x_2, x_3, x_4, x_5, x_6, x_7, x_29); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_46 = lean_ctor_get(x_45, 1); +lean_inc(x_46); +if (lean_is_exclusive(x_45)) { + lean_ctor_release(x_45, 0); + lean_ctor_release(x_45, 1); + x_47 = x_45; +} else { + lean_dec_ref(x_45); + x_47 = lean_box(0); +} +x_48 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_48, 0, x_42); +lean_ctor_set(x_48, 1, x_43); +lean_ctor_set(x_27, 1, x_48); +if (lean_is_scalar(x_47)) { + x_49 = lean_alloc_ctor(0, 2, 0); +} else { + x_49 = x_47; +} +lean_ctor_set(x_49, 0, x_27); +lean_ctor_set(x_49, 1, x_46); +return x_49; +} +} +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; lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; +x_50 = lean_ctor_get(x_27, 0); +lean_inc(x_50); +lean_dec(x_27); +x_51 = lean_ctor_get(x_28, 0); +lean_inc(x_51); +x_52 = lean_ctor_get(x_28, 1); +lean_inc(x_52); +if (lean_is_exclusive(x_28)) { + lean_ctor_release(x_28, 0); + lean_ctor_release(x_28, 1); + x_53 = x_28; +} else { + lean_dec_ref(x_28); + x_53 = lean_box(0); +} +x_54 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_getKeyArgs___lambda__2___closed__2; +lean_inc(x_52); +lean_inc(x_51); +lean_inc(x_50); +lean_ctor_set(x_14, 3, x_54); +lean_ctor_set(x_14, 2, x_52); +lean_ctor_set(x_14, 1, x_51); +lean_ctor_set(x_14, 0, x_50); +x_55 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_setTrie___rarg(x_1, x_14, x_2, x_3, x_4, x_5, x_6, x_7, x_29); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_56 = lean_ctor_get(x_55, 1); +lean_inc(x_56); +if (lean_is_exclusive(x_55)) { + lean_ctor_release(x_55, 0); + lean_ctor_release(x_55, 1); + x_57 = x_55; +} else { + lean_dec_ref(x_55); + x_57 = lean_box(0); +} +if (lean_is_scalar(x_53)) { + x_58 = lean_alloc_ctor(0, 2, 0); +} else { + x_58 = x_53; +} +lean_ctor_set(x_58, 0, x_51); +lean_ctor_set(x_58, 1, x_52); +x_59 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_59, 0, x_50); +lean_ctor_set(x_59, 1, x_58); +if (lean_is_scalar(x_57)) { + x_60 = lean_alloc_ctor(0, 2, 0); +} else { + x_60 = x_57; +} +lean_ctor_set(x_60, 0, x_59); +lean_ctor_set(x_60, 1, x_56); +return x_60; +} +} +else +{ +uint8_t x_61; +lean_free_object(x_14); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_61 = !lean_is_exclusive(x_26); +if (x_61 == 0) +{ +return x_26; +} +else +{ +lean_object* x_62; lean_object* x_63; lean_object* x_64; +x_62 = lean_ctor_get(x_26, 0); +x_63 = lean_ctor_get(x_26, 1); +lean_inc(x_63); +lean_inc(x_62); +lean_dec(x_26); +x_64 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_64, 0, x_62); +lean_ctor_set(x_64, 1, x_63); +return x_64; +} +} +} +else +{ +lean_object* x_65; lean_object* x_66; +lean_free_object(x_14); +lean_dec(x_19); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_65 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_65, 0, x_17); +lean_ctor_set(x_65, 1, x_18); +x_66 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_66, 0, x_16); +lean_ctor_set(x_66, 1, x_65); +lean_ctor_set(x_9, 0, x_66); +return x_9; +} +} +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; uint8_t x_73; +x_67 = lean_ctor_get(x_14, 0); +x_68 = lean_ctor_get(x_14, 1); +x_69 = lean_ctor_get(x_14, 2); +x_70 = lean_ctor_get(x_14, 3); +lean_inc(x_70); +lean_inc(x_69); +lean_inc(x_68); +lean_inc(x_67); +lean_dec(x_14); +x_71 = lean_array_get_size(x_70); +x_72 = lean_unsigned_to_nat(0u); +x_73 = lean_nat_dec_eq(x_71, x_72); +lean_dec(x_71); +if (x_73 == 0) +{ +lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; +lean_free_object(x_9); +x_74 = l_Lean_Meta_LazyDiscrTree_instEmptyCollectionTrie___closed__2; +x_75 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_setTrie___rarg(x_1, x_74, x_2, x_3, x_4, x_5, x_6, x_7, x_12); +x_76 = lean_ctor_get(x_75, 1); +lean_inc(x_76); +lean_dec(x_75); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +lean_inc_n(x_2, 2); +x_77 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_evalLazyEntries_iter___rarg(x_2, x_70, x_67, x_68, x_69, x_72, x_2, x_3, x_4, x_5, x_6, x_7, x_76); +lean_dec(x_70); +if (lean_obj_tag(x_77) == 0) +{ +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; +x_78 = lean_ctor_get(x_77, 0); +lean_inc(x_78); +x_79 = lean_ctor_get(x_78, 1); +lean_inc(x_79); +x_80 = lean_ctor_get(x_77, 1); +lean_inc(x_80); +lean_dec(x_77); +x_81 = lean_ctor_get(x_78, 0); +lean_inc(x_81); +if (lean_is_exclusive(x_78)) { + lean_ctor_release(x_78, 0); + lean_ctor_release(x_78, 1); + x_82 = x_78; +} else { + lean_dec_ref(x_78); + x_82 = lean_box(0); +} +x_83 = lean_ctor_get(x_79, 0); +lean_inc(x_83); +x_84 = lean_ctor_get(x_79, 1); +lean_inc(x_84); +if (lean_is_exclusive(x_79)) { + lean_ctor_release(x_79, 0); + lean_ctor_release(x_79, 1); + x_85 = x_79; +} else { + lean_dec_ref(x_79); + x_85 = lean_box(0); +} +x_86 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_getKeyArgs___lambda__2___closed__2; +lean_inc(x_84); +lean_inc(x_83); +lean_inc(x_81); +x_87 = lean_alloc_ctor(0, 4, 0); +lean_ctor_set(x_87, 0, x_81); +lean_ctor_set(x_87, 1, x_83); +lean_ctor_set(x_87, 2, x_84); +lean_ctor_set(x_87, 3, x_86); +x_88 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_setTrie___rarg(x_1, x_87, x_2, x_3, x_4, x_5, x_6, x_7, x_80); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_89 = lean_ctor_get(x_88, 1); +lean_inc(x_89); +if (lean_is_exclusive(x_88)) { + lean_ctor_release(x_88, 0); + lean_ctor_release(x_88, 1); + x_90 = x_88; +} else { + lean_dec_ref(x_88); + x_90 = lean_box(0); +} +if (lean_is_scalar(x_85)) { + x_91 = lean_alloc_ctor(0, 2, 0); +} else { + x_91 = x_85; +} +lean_ctor_set(x_91, 0, x_83); +lean_ctor_set(x_91, 1, x_84); +if (lean_is_scalar(x_82)) { + x_92 = lean_alloc_ctor(0, 2, 0); +} else { + x_92 = x_82; +} +lean_ctor_set(x_92, 0, x_81); +lean_ctor_set(x_92, 1, x_91); +if (lean_is_scalar(x_90)) { + x_93 = lean_alloc_ctor(0, 2, 0); +} else { + x_93 = x_90; +} +lean_ctor_set(x_93, 0, x_92); +lean_ctor_set(x_93, 1, x_89); +return x_93; +} +else +{ +lean_object* x_94; lean_object* x_95; lean_object* x_96; lean_object* x_97; +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_94 = lean_ctor_get(x_77, 0); +lean_inc(x_94); +x_95 = lean_ctor_get(x_77, 1); +lean_inc(x_95); +if (lean_is_exclusive(x_77)) { + lean_ctor_release(x_77, 0); + lean_ctor_release(x_77, 1); + x_96 = x_77; +} else { + lean_dec_ref(x_77); + x_96 = lean_box(0); +} +if (lean_is_scalar(x_96)) { + x_97 = lean_alloc_ctor(1, 2, 0); +} else { + x_97 = x_96; +} +lean_ctor_set(x_97, 0, x_94); +lean_ctor_set(x_97, 1, x_95); +return x_97; +} +} +else +{ +lean_object* x_98; lean_object* x_99; +lean_dec(x_70); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_98 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_98, 0, x_68); +lean_ctor_set(x_98, 1, x_69); +x_99 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_99, 0, x_67); +lean_ctor_set(x_99, 1, x_98); +lean_ctor_set(x_9, 0, x_99); +return x_9; +} +} +} +else +{ +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; uint8_t x_111; +x_100 = lean_ctor_get(x_9, 0); +x_101 = lean_ctor_get(x_9, 1); +lean_inc(x_101); +lean_inc(x_100); +lean_dec(x_9); +x_102 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_evalNode___rarg___closed__1; +x_103 = lean_array_get(x_102, x_100, x_1); +lean_dec(x_100); +x_104 = lean_ctor_get(x_103, 0); +lean_inc(x_104); +x_105 = lean_ctor_get(x_103, 1); +lean_inc(x_105); +x_106 = lean_ctor_get(x_103, 2); +lean_inc(x_106); +x_107 = lean_ctor_get(x_103, 3); +lean_inc(x_107); +if (lean_is_exclusive(x_103)) { + lean_ctor_release(x_103, 0); + lean_ctor_release(x_103, 1); + lean_ctor_release(x_103, 2); + lean_ctor_release(x_103, 3); + x_108 = x_103; +} else { + lean_dec_ref(x_103); + x_108 = lean_box(0); +} +x_109 = lean_array_get_size(x_107); +x_110 = lean_unsigned_to_nat(0u); +x_111 = lean_nat_dec_eq(x_109, x_110); +lean_dec(x_109); +if (x_111 == 0) +{ +lean_object* x_112; lean_object* x_113; lean_object* x_114; lean_object* x_115; +x_112 = l_Lean_Meta_LazyDiscrTree_instEmptyCollectionTrie___closed__2; +x_113 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_setTrie___rarg(x_1, x_112, x_2, x_3, x_4, x_5, x_6, x_7, x_101); +x_114 = lean_ctor_get(x_113, 1); +lean_inc(x_114); +lean_dec(x_113); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +lean_inc_n(x_2, 2); +x_115 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_evalLazyEntries_iter___rarg(x_2, x_107, x_104, x_105, x_106, x_110, x_2, x_3, x_4, x_5, x_6, x_7, x_114); +lean_dec(x_107); +if (lean_obj_tag(x_115) == 0) +{ +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; +x_116 = lean_ctor_get(x_115, 0); +lean_inc(x_116); +x_117 = lean_ctor_get(x_116, 1); +lean_inc(x_117); +x_118 = lean_ctor_get(x_115, 1); +lean_inc(x_118); +lean_dec(x_115); +x_119 = lean_ctor_get(x_116, 0); +lean_inc(x_119); +if (lean_is_exclusive(x_116)) { + lean_ctor_release(x_116, 0); + lean_ctor_release(x_116, 1); + x_120 = x_116; +} else { + lean_dec_ref(x_116); + x_120 = lean_box(0); +} +x_121 = lean_ctor_get(x_117, 0); +lean_inc(x_121); +x_122 = lean_ctor_get(x_117, 1); +lean_inc(x_122); +if (lean_is_exclusive(x_117)) { + lean_ctor_release(x_117, 0); + lean_ctor_release(x_117, 1); + x_123 = x_117; +} else { + lean_dec_ref(x_117); + x_123 = lean_box(0); +} +x_124 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_getKeyArgs___lambda__2___closed__2; +lean_inc(x_122); +lean_inc(x_121); +lean_inc(x_119); +if (lean_is_scalar(x_108)) { + x_125 = lean_alloc_ctor(0, 4, 0); +} else { + x_125 = x_108; +} +lean_ctor_set(x_125, 0, x_119); +lean_ctor_set(x_125, 1, x_121); +lean_ctor_set(x_125, 2, x_122); +lean_ctor_set(x_125, 3, x_124); +x_126 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_setTrie___rarg(x_1, x_125, x_2, x_3, x_4, x_5, x_6, x_7, x_118); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_127 = lean_ctor_get(x_126, 1); +lean_inc(x_127); +if (lean_is_exclusive(x_126)) { + lean_ctor_release(x_126, 0); + lean_ctor_release(x_126, 1); + x_128 = x_126; +} else { + lean_dec_ref(x_126); + x_128 = lean_box(0); +} +if (lean_is_scalar(x_123)) { + x_129 = lean_alloc_ctor(0, 2, 0); +} else { + x_129 = x_123; +} +lean_ctor_set(x_129, 0, x_121); +lean_ctor_set(x_129, 1, x_122); +if (lean_is_scalar(x_120)) { + x_130 = lean_alloc_ctor(0, 2, 0); +} else { + x_130 = x_120; +} +lean_ctor_set(x_130, 0, x_119); +lean_ctor_set(x_130, 1, x_129); +if (lean_is_scalar(x_128)) { + x_131 = lean_alloc_ctor(0, 2, 0); +} else { + x_131 = x_128; +} +lean_ctor_set(x_131, 0, x_130); +lean_ctor_set(x_131, 1, x_127); +return x_131; +} +else +{ +lean_object* x_132; lean_object* x_133; lean_object* x_134; lean_object* x_135; +lean_dec(x_108); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_132 = lean_ctor_get(x_115, 0); +lean_inc(x_132); +x_133 = lean_ctor_get(x_115, 1); +lean_inc(x_133); +if (lean_is_exclusive(x_115)) { + lean_ctor_release(x_115, 0); + lean_ctor_release(x_115, 1); + x_134 = x_115; +} else { + lean_dec_ref(x_115); + x_134 = lean_box(0); +} +if (lean_is_scalar(x_134)) { + x_135 = lean_alloc_ctor(1, 2, 0); +} else { + x_135 = x_134; +} +lean_ctor_set(x_135, 0, x_132); +lean_ctor_set(x_135, 1, x_133); +return x_135; +} +} +else +{ +lean_object* x_136; lean_object* x_137; lean_object* x_138; +lean_dec(x_108); +lean_dec(x_107); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_136 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_136, 0, x_105); +lean_ctor_set(x_136, 1, x_106); +x_137 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_137, 0, x_104); +lean_ctor_set(x_137, 1, x_136); +x_138 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_138, 0, x_137); +lean_ctor_set(x_138, 1, x_101); +return x_138; +} +} +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_evalNode(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = lean_alloc_closure((void*)(l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_evalNode___rarg___boxed), 8, 0); +return x_2; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_evalNode___rarg___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) { +_start: +{ +lean_object* x_9; +x_9 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_evalNode___rarg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +lean_dec(x_1); +return x_9; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_getTrie___rarg(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; +x_8 = lean_alloc_closure((void*)(l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_evalNode___rarg___boxed), 8, 1); +lean_closure_set(x_8, 0, x_2); +x_9 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_runMatch___rarg(x_1, x_8, x_3, x_4, x_5, x_6, x_7); +return x_9; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_getTrie(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = lean_alloc_closure((void*)(l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_getTrie___rarg), 7, 0); +return x_2; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchResult_elts___default(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_getKeyArgs___lambda__2___closed__2; +return x_2; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchResult_push_loop___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +lean_object* x_4; uint8_t x_5; +x_4 = lean_array_get_size(x_3); +x_5 = lean_nat_dec_lt(x_4, x_1); +lean_dec(x_4); +if (x_5 == 0) +{ +lean_object* x_6; lean_object* x_7; lean_object* x_8; +x_6 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_getKeyArgs___lambda__3___closed__3; +x_7 = lean_array_push(x_6, x_2); +x_8 = lean_array_push(x_3, x_7); +return x_8; +} +else +{ +lean_object* x_9; lean_object* x_10; +x_9 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_getKeyArgs___lambda__2___closed__2; +x_10 = lean_array_push(x_3, x_9); +x_3 = x_10; +goto _start; +} +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchResult_push_loop(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = lean_alloc_closure((void*)(l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchResult_push_loop___rarg___boxed), 3, 0); +return x_2; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchResult_push_loop___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +lean_object* x_4; +x_4 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchResult_push_loop___rarg(x_1, x_2, x_3); +lean_dec(x_1); +return x_4; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchResult_push___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +uint8_t x_4; +x_4 = l_Array_isEmpty___rarg(x_3); +if (x_4 == 0) +{ +lean_object* x_5; uint8_t x_6; +x_5 = lean_array_get_size(x_1); +x_6 = lean_nat_dec_lt(x_2, x_5); +lean_dec(x_5); +if (x_6 == 0) +{ +lean_object* x_7; +x_7 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchResult_push_loop___rarg(x_2, x_3, x_1); +return x_7; +} +else +{ +lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; +x_8 = lean_array_fget(x_1, x_2); +x_9 = lean_box(0); +x_10 = lean_array_fset(x_1, x_2, x_9); +x_11 = lean_array_push(x_8, x_3); +x_12 = lean_array_fset(x_10, x_2, x_11); +return x_12; +} +} +else +{ +lean_dec(x_3); +return x_1; +} +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchResult_push(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = lean_alloc_closure((void*)(l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchResult_push___rarg___boxed), 3, 0); +return x_2; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchResult_push___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +lean_object* x_4; +x_4 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchResult_push___rarg(x_1, x_2, x_3); +lean_dec(x_2); +return x_4; +} +} +LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchResult_toArray_n___spec__1___rarg(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; 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_array_get_size(x_6); +lean_dec(x_6); +x_8 = lean_nat_add(x_4, x_7); +lean_dec(x_7); +lean_dec(x_4); +x_9 = 1; +x_10 = lean_usize_add(x_2, x_9); +x_2 = x_10; +x_4 = x_8; +goto _start; +} +else +{ +return x_4; +} +} +} +LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchResult_toArray_n___spec__1(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = lean_alloc_closure((void*)(l_Array_foldlMUnsafe_fold___at___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchResult_toArray_n___spec__1___rarg___boxed), 4, 0); +return x_2; +} +} +LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchResult_toArray_n___spec__2___rarg(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; lean_object* x_7; lean_object* x_8; uint8_t x_9; size_t x_10; size_t x_11; +x_6 = lean_array_uget(x_1, x_2); +x_7 = lean_array_get_size(x_6); +x_8 = lean_unsigned_to_nat(0u); +x_9 = lean_nat_dec_lt(x_8, x_7); +x_10 = 1; +x_11 = lean_usize_add(x_2, x_10); +if (x_9 == 0) +{ +lean_dec(x_7); +lean_dec(x_6); +x_2 = x_11; +goto _start; +} +else +{ +uint8_t x_13; +x_13 = lean_nat_dec_le(x_7, x_7); +if (x_13 == 0) +{ +lean_dec(x_7); +lean_dec(x_6); +x_2 = x_11; +goto _start; +} +else +{ +size_t x_15; size_t x_16; lean_object* x_17; +x_15 = 0; +x_16 = lean_usize_of_nat(x_7); +lean_dec(x_7); +x_17 = l_Array_foldlMUnsafe_fold___at___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchResult_toArray_n___spec__1___rarg(x_6, x_15, x_16, x_4); +lean_dec(x_6); +x_2 = x_11; +x_4 = x_17; +goto _start; +} +} +} +else +{ +return x_4; +} +} +} +LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchResult_toArray_n___spec__2(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = lean_alloc_closure((void*)(l_Array_foldlMUnsafe_fold___at___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchResult_toArray_n___spec__2___rarg___boxed), 4, 0); +return x_2; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchResult_toArray_n___rarg(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; uint8_t x_4; +x_2 = lean_array_get_size(x_1); +x_3 = lean_unsigned_to_nat(0u); +x_4 = lean_nat_dec_lt(x_3, x_2); +if (x_4 == 0) +{ +lean_object* x_5; +lean_dec(x_2); +x_5 = lean_unsigned_to_nat(0u); +return x_5; +} +else +{ +uint8_t x_6; +x_6 = lean_nat_dec_le(x_2, x_2); +if (x_6 == 0) +{ +lean_object* x_7; +lean_dec(x_2); +x_7 = lean_unsigned_to_nat(0u); +return x_7; +} +else +{ +size_t x_8; size_t x_9; lean_object* x_10; +x_8 = 0; +x_9 = lean_usize_of_nat(x_2); +lean_dec(x_2); +x_10 = l_Array_foldlMUnsafe_fold___at___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchResult_toArray_n___spec__2___rarg(x_1, x_8, x_9, x_3); +return x_10; +} +} +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchResult_toArray_n(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = lean_alloc_closure((void*)(l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchResult_toArray_n___rarg___boxed), 1, 0); +return x_2; +} +} +LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchResult_toArray_n___spec__1___rarg___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___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchResult_toArray_n___spec__1___rarg(x_1, x_5, x_6, x_4); +lean_dec(x_1); +return x_7; +} +} +LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchResult_toArray_n___spec__2___rarg___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___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchResult_toArray_n___spec__2___rarg(x_1, x_5, x_6, x_4); +lean_dec(x_1); +return x_7; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchResult_toArray_n___rarg___boxed(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchResult_toArray_n___rarg(x_1); +lean_dec(x_1); +return x_2; +} +} +LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchResult_toArray_loop___spec__1___rarg(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; lean_object* x_7; size_t x_8; size_t x_9; +x_6 = lean_array_uget(x_1, x_2); +x_7 = l_Array_append___rarg(x_4, x_6); +x_8 = 1; +x_9 = lean_usize_add(x_2, x_8); +x_2 = x_9; +x_4 = x_7; +goto _start; +} +else +{ +return x_4; +} +} +} +LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchResult_toArray_loop___spec__1(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = lean_alloc_closure((void*)(l_Array_foldlMUnsafe_fold___at___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchResult_toArray_loop___spec__1___rarg___boxed), 4, 0); +return x_2; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchResult_toArray_loop___rarg(lean_object* x_1, lean_object* x_2) { +_start: +{ +uint8_t x_3; +x_3 = l_Array_isEmpty___rarg(x_2); +if (x_3 == 0) +{ +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 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_getKeyArgs___lambda__2___closed__2; +x_5 = l_Array_back___rarg(x_4, x_2); +x_6 = lean_array_get_size(x_5); +x_7 = lean_unsigned_to_nat(0u); +x_8 = lean_nat_dec_lt(x_7, x_6); +x_9 = lean_array_pop(x_2); +if (x_8 == 0) +{ +lean_dec(x_6); +lean_dec(x_5); +x_2 = x_9; +goto _start; +} +else +{ +uint8_t x_11; +x_11 = lean_nat_dec_le(x_6, x_6); +if (x_11 == 0) +{ +lean_dec(x_6); +lean_dec(x_5); +x_2 = x_9; +goto _start; +} +else +{ +size_t x_13; size_t x_14; lean_object* x_15; +x_13 = 0; +x_14 = lean_usize_of_nat(x_6); +lean_dec(x_6); +x_15 = l_Array_foldlMUnsafe_fold___at___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchResult_toArray_loop___spec__1___rarg(x_5, x_13, x_14, x_1); +lean_dec(x_5); +x_1 = x_15; +x_2 = x_9; +goto _start; +} +} +} +else +{ +lean_dec(x_2); +return x_1; +} +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchResult_toArray_loop(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = lean_alloc_closure((void*)(l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchResult_toArray_loop___rarg), 2, 0); +return x_2; +} +} +LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchResult_toArray_loop___spec__1___rarg___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___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchResult_toArray_loop___spec__1___rarg(x_1, x_5, x_6, x_4); +lean_dec(x_1); +return x_7; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchResult_toArray___rarg(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_2 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchResult_toArray_n___rarg(x_1); +x_3 = lean_mk_empty_array_with_capacity(x_2); +lean_dec(x_2); +x_4 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchResult_toArray_loop___rarg(x_3, x_1); +return x_4; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchResult_toArray(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = lean_alloc_closure((void*)(l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchResult_toArray___rarg), 1, 0); +return x_2; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_getMatchLoop___rarg(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) { +_start: +{ +lean_object* x_12; +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +x_12 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_evalNode___rarg(x_3, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_3); +if (lean_obj_tag(x_12) == 0) +{ +lean_object* x_13; lean_object* x_14; uint8_t x_15; +x_13 = lean_ctor_get(x_12, 0); +lean_inc(x_13); +x_14 = lean_ctor_get(x_13, 1); +lean_inc(x_14); +x_15 = !lean_is_exclusive(x_12); +if (x_15 == 0) +{ +lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; uint8_t x_241; +x_16 = lean_ctor_get(x_12, 1); +x_17 = lean_ctor_get(x_12, 0); +lean_dec(x_17); +x_18 = lean_ctor_get(x_13, 0); +lean_inc(x_18); +lean_dec(x_13); +x_19 = lean_ctor_get(x_14, 0); +lean_inc(x_19); +x_20 = lean_ctor_get(x_14, 1); +lean_inc(x_20); +lean_dec(x_14); +x_241 = l_Array_isEmpty___rarg(x_1); +if (x_241 == 0) +{ +lean_object* x_242; uint8_t x_243; +lean_dec(x_18); +x_242 = lean_unsigned_to_nat(0u); +x_243 = lean_nat_dec_eq(x_19, x_242); +if (x_243 == 0) +{ +lean_object* x_244; +lean_free_object(x_12); +x_244 = lean_box(0); +x_21 = x_244; +goto block_240; +} +else +{ +lean_object* x_245; uint8_t x_246; +x_245 = lean_ctor_get(x_20, 0); +lean_inc(x_245); +x_246 = lean_nat_dec_eq(x_245, x_242); +lean_dec(x_245); +if (x_246 == 0) +{ +lean_object* x_247; +lean_free_object(x_12); +x_247 = lean_box(0); +x_21 = x_247; +goto block_240; +} +else +{ +lean_dec(x_20); +lean_dec(x_19); +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); +lean_dec(x_1); +lean_ctor_set(x_12, 0, x_4); +return x_12; +} +} +} +else +{ +lean_object* x_248; +lean_dec(x_20); +lean_dec(x_19); +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_1); +x_248 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchResult_push___rarg(x_4, x_2, x_18); +lean_dec(x_2); +lean_ctor_set(x_12, 0, x_248); +return x_12; +} +block_240: +{ +lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; uint8_t x_26; +lean_dec(x_21); +x_22 = l_Lean_instInhabitedExpr; +x_23 = l_Array_back___rarg(x_22, x_1); +x_24 = lean_array_pop(x_1); +x_25 = lean_unsigned_to_nat(0u); +x_26 = lean_nat_dec_eq(x_19, x_25); +if (x_26 == 0) +{ +lean_object* x_27; +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_2); +lean_inc(x_24); +x_27 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_getMatchLoop___rarg(x_24, x_2, x_19, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_16); +if (lean_obj_tag(x_27) == 0) +{ +lean_object* x_28; lean_object* x_29; uint8_t x_30; uint8_t x_31; lean_object* x_32; +x_28 = lean_ctor_get(x_27, 0); +lean_inc(x_28); +x_29 = lean_ctor_get(x_27, 1); +lean_inc(x_29); +lean_dec(x_27); +x_30 = 1; +x_31 = 0; +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_5); +x_32 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_getKeyArgs(x_23, x_30, x_31, x_5, x_7, x_8, x_9, x_10, x_29); +if (lean_obj_tag(x_32) == 0) +{ +lean_object* x_33; lean_object* x_34; +x_33 = lean_ctor_get(x_32, 0); +lean_inc(x_33); +x_34 = lean_ctor_get(x_33, 0); +lean_inc(x_34); +switch (lean_obj_tag(x_34)) { +case 3: +{ +uint8_t x_35; +lean_dec(x_33); +lean_dec(x_24); +lean_dec(x_20); +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_35 = !lean_is_exclusive(x_32); +if (x_35 == 0) +{ +lean_object* x_36; +x_36 = lean_ctor_get(x_32, 0); +lean_dec(x_36); +lean_ctor_set(x_32, 0, x_28); +return x_32; +} +else +{ +lean_object* x_37; lean_object* x_38; +x_37 = lean_ctor_get(x_32, 1); +lean_inc(x_37); +lean_dec(x_32); +x_38 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_38, 0, x_28); +lean_ctor_set(x_38, 1, x_37); +return x_38; +} +} +case 5: +{ +uint8_t x_39; +x_39 = !lean_is_exclusive(x_32); +if (x_39 == 0) +{ +lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; +x_40 = lean_ctor_get(x_32, 1); +x_41 = lean_ctor_get(x_32, 0); +lean_dec(x_41); +x_42 = lean_ctor_get(x_33, 1); +lean_inc(x_42); +lean_dec(x_33); +lean_inc(x_20); +x_43 = l_Lean_HashMapImp_find_x3f___at___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_evalLazyEntries_iter___spec__2(x_20, x_34); +if (lean_obj_tag(x_43) == 0) +{ +lean_object* x_44; lean_object* x_45; +lean_dec(x_42); +x_44 = lean_box(4); +x_45 = l_Lean_HashMapImp_find_x3f___at___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_evalLazyEntries_iter___spec__2(x_20, x_44); +if (lean_obj_tag(x_45) == 0) +{ +lean_dec(x_24); +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); +lean_ctor_set(x_32, 0, x_28); +return x_32; +} +else +{ +lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; +lean_free_object(x_32); +x_46 = lean_ctor_get(x_45, 0); +lean_inc(x_46); +lean_dec(x_45); +x_47 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_getKeyArgs___lambda__2___closed__2; +x_48 = l_Array_append___rarg(x_24, x_47); +x_49 = lean_unsigned_to_nat(1u); +x_50 = lean_nat_add(x_2, x_49); +lean_dec(x_2); +x_1 = x_48; +x_2 = x_50; +x_3 = x_46; +x_4 = x_28; +x_11 = x_40; +goto _start; +} +} +else +{ +lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; +lean_free_object(x_32); +x_52 = lean_ctor_get(x_43, 0); +lean_inc(x_52); +lean_dec(x_43); +lean_inc(x_24); +x_53 = l_Array_append___rarg(x_24, x_42); +x_54 = lean_unsigned_to_nat(1u); +x_55 = lean_nat_add(x_2, x_54); +lean_dec(x_2); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_55); +x_56 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_getMatchLoop___rarg(x_53, x_55, x_52, x_28, x_5, x_6, x_7, x_8, x_9, x_10, x_40); +if (lean_obj_tag(x_56) == 0) +{ +uint8_t x_57; +x_57 = !lean_is_exclusive(x_56); +if (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_56, 0); +x_59 = lean_ctor_get(x_56, 1); +x_60 = lean_box(4); +x_61 = l_Lean_HashMapImp_find_x3f___at___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_evalLazyEntries_iter___spec__2(x_20, x_60); +if (lean_obj_tag(x_61) == 0) +{ +lean_dec(x_55); +lean_dec(x_24); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +return x_56; +} +else +{ +lean_object* x_62; lean_object* x_63; lean_object* x_64; +lean_free_object(x_56); +x_62 = lean_ctor_get(x_61, 0); +lean_inc(x_62); +lean_dec(x_61); +x_63 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_getKeyArgs___lambda__2___closed__2; +x_64 = l_Array_append___rarg(x_24, x_63); +x_1 = x_64; +x_2 = x_55; +x_3 = x_62; +x_4 = x_58; +x_11 = x_59; +goto _start; +} +} +else +{ +lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; +x_66 = lean_ctor_get(x_56, 0); +x_67 = lean_ctor_get(x_56, 1); +lean_inc(x_67); +lean_inc(x_66); +lean_dec(x_56); +x_68 = lean_box(4); +x_69 = l_Lean_HashMapImp_find_x3f___at___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_evalLazyEntries_iter___spec__2(x_20, x_68); +if (lean_obj_tag(x_69) == 0) +{ +lean_object* x_70; +lean_dec(x_55); +lean_dec(x_24); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +x_70 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_70, 0, x_66); +lean_ctor_set(x_70, 1, x_67); +return x_70; +} +else +{ +lean_object* x_71; lean_object* x_72; lean_object* x_73; +x_71 = lean_ctor_get(x_69, 0); +lean_inc(x_71); +lean_dec(x_69); +x_72 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_getKeyArgs___lambda__2___closed__2; +x_73 = l_Array_append___rarg(x_24, x_72); +x_1 = x_73; +x_2 = x_55; +x_3 = x_71; +x_4 = x_66; +x_11 = x_67; +goto _start; +} +} +} +else +{ +uint8_t x_75; +lean_dec(x_55); +lean_dec(x_24); +lean_dec(x_20); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +x_75 = !lean_is_exclusive(x_56); +if (x_75 == 0) +{ +return x_56; +} +else +{ +lean_object* x_76; lean_object* x_77; lean_object* x_78; +x_76 = lean_ctor_get(x_56, 0); +x_77 = lean_ctor_get(x_56, 1); +lean_inc(x_77); +lean_inc(x_76); +lean_dec(x_56); +x_78 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_78, 0, x_76); +lean_ctor_set(x_78, 1, x_77); +return x_78; +} +} +} +} +else +{ +lean_object* x_79; lean_object* x_80; lean_object* x_81; +x_79 = lean_ctor_get(x_32, 1); +lean_inc(x_79); +lean_dec(x_32); +x_80 = lean_ctor_get(x_33, 1); +lean_inc(x_80); +lean_dec(x_33); +lean_inc(x_20); +x_81 = l_Lean_HashMapImp_find_x3f___at___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_evalLazyEntries_iter___spec__2(x_20, x_34); +if (lean_obj_tag(x_81) == 0) +{ +lean_object* x_82; lean_object* x_83; +lean_dec(x_80); +x_82 = lean_box(4); +x_83 = l_Lean_HashMapImp_find_x3f___at___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_evalLazyEntries_iter___spec__2(x_20, x_82); +if (lean_obj_tag(x_83) == 0) +{ +lean_object* x_84; +lean_dec(x_24); +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_84 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_84, 0, x_28); +lean_ctor_set(x_84, 1, x_79); +return x_84; +} +else +{ +lean_object* x_85; lean_object* x_86; lean_object* x_87; lean_object* x_88; lean_object* x_89; +x_85 = lean_ctor_get(x_83, 0); +lean_inc(x_85); +lean_dec(x_83); +x_86 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_getKeyArgs___lambda__2___closed__2; +x_87 = l_Array_append___rarg(x_24, x_86); +x_88 = lean_unsigned_to_nat(1u); +x_89 = lean_nat_add(x_2, x_88); +lean_dec(x_2); +x_1 = x_87; +x_2 = x_89; +x_3 = x_85; +x_4 = x_28; +x_11 = x_79; +goto _start; +} +} +else +{ +lean_object* x_91; lean_object* x_92; lean_object* x_93; lean_object* x_94; lean_object* x_95; +x_91 = lean_ctor_get(x_81, 0); +lean_inc(x_91); +lean_dec(x_81); +lean_inc(x_24); +x_92 = l_Array_append___rarg(x_24, x_80); +x_93 = lean_unsigned_to_nat(1u); +x_94 = lean_nat_add(x_2, x_93); +lean_dec(x_2); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_94); +x_95 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_getMatchLoop___rarg(x_92, x_94, x_91, x_28, x_5, x_6, x_7, x_8, x_9, x_10, x_79); +if (lean_obj_tag(x_95) == 0) +{ +lean_object* x_96; lean_object* x_97; lean_object* x_98; lean_object* x_99; lean_object* x_100; +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_box(4); +x_100 = l_Lean_HashMapImp_find_x3f___at___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_evalLazyEntries_iter___spec__2(x_20, x_99); +if (lean_obj_tag(x_100) == 0) +{ +lean_object* x_101; +lean_dec(x_94); +lean_dec(x_24); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +if (lean_is_scalar(x_98)) { + x_101 = lean_alloc_ctor(0, 2, 0); +} else { + x_101 = x_98; +} +lean_ctor_set(x_101, 0, x_96); +lean_ctor_set(x_101, 1, x_97); +return x_101; +} +else +{ +lean_object* x_102; lean_object* x_103; lean_object* x_104; +lean_dec(x_98); +x_102 = lean_ctor_get(x_100, 0); +lean_inc(x_102); +lean_dec(x_100); +x_103 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_getKeyArgs___lambda__2___closed__2; +x_104 = l_Array_append___rarg(x_24, x_103); +x_1 = x_104; +x_2 = x_94; +x_3 = x_102; +x_4 = x_96; +x_11 = x_97; +goto _start; +} +} +else +{ +lean_object* x_106; lean_object* x_107; lean_object* x_108; lean_object* x_109; +lean_dec(x_94); +lean_dec(x_24); +lean_dec(x_20); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +x_106 = lean_ctor_get(x_95, 0); +lean_inc(x_106); +x_107 = lean_ctor_get(x_95, 1); +lean_inc(x_107); +if (lean_is_exclusive(x_95)) { + lean_ctor_release(x_95, 0); + lean_ctor_release(x_95, 1); + x_108 = x_95; +} else { + lean_dec_ref(x_95); + 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; +} +} +} +} +default: +{ +uint8_t x_110; +x_110 = !lean_is_exclusive(x_32); +if (x_110 == 0) +{ +lean_object* x_111; lean_object* x_112; lean_object* x_113; lean_object* x_114; +x_111 = lean_ctor_get(x_32, 1); +x_112 = lean_ctor_get(x_32, 0); +lean_dec(x_112); +x_113 = lean_ctor_get(x_33, 1); +lean_inc(x_113); +lean_dec(x_33); +x_114 = l_Lean_HashMapImp_find_x3f___at___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_evalLazyEntries_iter___spec__2(x_20, x_34); +if (lean_obj_tag(x_114) == 0) +{ +lean_dec(x_113); +lean_dec(x_24); +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); +lean_ctor_set(x_32, 0, x_28); +return x_32; +} +else +{ +lean_object* x_115; lean_object* x_116; lean_object* x_117; lean_object* x_118; +lean_free_object(x_32); +x_115 = lean_ctor_get(x_114, 0); +lean_inc(x_115); +lean_dec(x_114); +x_116 = l_Array_append___rarg(x_24, x_113); +x_117 = lean_unsigned_to_nat(1u); +x_118 = lean_nat_add(x_2, x_117); +lean_dec(x_2); +x_1 = x_116; +x_2 = x_118; +x_3 = x_115; +x_4 = x_28; +x_11 = x_111; +goto _start; +} +} +else +{ +lean_object* x_120; lean_object* x_121; lean_object* x_122; +x_120 = lean_ctor_get(x_32, 1); +lean_inc(x_120); +lean_dec(x_32); +x_121 = lean_ctor_get(x_33, 1); +lean_inc(x_121); +lean_dec(x_33); +x_122 = l_Lean_HashMapImp_find_x3f___at___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_evalLazyEntries_iter___spec__2(x_20, x_34); +if (lean_obj_tag(x_122) == 0) +{ +lean_object* x_123; +lean_dec(x_121); +lean_dec(x_24); +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_123 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_123, 0, x_28); +lean_ctor_set(x_123, 1, x_120); +return x_123; +} +else +{ +lean_object* x_124; lean_object* x_125; lean_object* x_126; lean_object* x_127; +x_124 = lean_ctor_get(x_122, 0); +lean_inc(x_124); +lean_dec(x_122); +x_125 = l_Array_append___rarg(x_24, x_121); +x_126 = lean_unsigned_to_nat(1u); +x_127 = lean_nat_add(x_2, x_126); +lean_dec(x_2); +x_1 = x_125; +x_2 = x_127; +x_3 = x_124; +x_4 = x_28; +x_11 = x_120; +goto _start; +} +} +} +} +} +else +{ +uint8_t x_129; +lean_dec(x_28); +lean_dec(x_24); +lean_dec(x_20); +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_129 = !lean_is_exclusive(x_32); +if (x_129 == 0) +{ +return x_32; +} +else +{ +lean_object* x_130; lean_object* x_131; lean_object* x_132; +x_130 = lean_ctor_get(x_32, 0); +x_131 = lean_ctor_get(x_32, 1); +lean_inc(x_131); +lean_inc(x_130); +lean_dec(x_32); +x_132 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_132, 0, x_130); +lean_ctor_set(x_132, 1, x_131); +return x_132; +} +} +} +else +{ +uint8_t x_133; +lean_dec(x_24); +lean_dec(x_23); +lean_dec(x_20); +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_133 = !lean_is_exclusive(x_27); +if (x_133 == 0) +{ +return x_27; +} +else +{ +lean_object* x_134; lean_object* x_135; lean_object* x_136; +x_134 = lean_ctor_get(x_27, 0); +x_135 = lean_ctor_get(x_27, 1); +lean_inc(x_135); +lean_inc(x_134); +lean_dec(x_27); +x_136 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_136, 0, x_134); +lean_ctor_set(x_136, 1, x_135); +return x_136; +} +} +} +else +{ +uint8_t x_137; uint8_t x_138; lean_object* x_139; +lean_dec(x_19); +x_137 = 1; +x_138 = 0; +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_5); +x_139 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_getKeyArgs(x_23, x_137, x_138, x_5, x_7, x_8, x_9, x_10, x_16); +if (lean_obj_tag(x_139) == 0) +{ +lean_object* x_140; lean_object* x_141; +x_140 = lean_ctor_get(x_139, 0); +lean_inc(x_140); +x_141 = lean_ctor_get(x_140, 0); +lean_inc(x_141); +switch (lean_obj_tag(x_141)) { +case 3: +{ +uint8_t x_142; +lean_dec(x_140); +lean_dec(x_24); +lean_dec(x_20); +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_142 = !lean_is_exclusive(x_139); +if (x_142 == 0) +{ +lean_object* x_143; +x_143 = lean_ctor_get(x_139, 0); +lean_dec(x_143); +lean_ctor_set(x_139, 0, x_4); +return x_139; +} +else +{ +lean_object* x_144; lean_object* x_145; +x_144 = lean_ctor_get(x_139, 1); +lean_inc(x_144); +lean_dec(x_139); +x_145 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_145, 0, x_4); +lean_ctor_set(x_145, 1, x_144); +return x_145; +} +} +case 5: +{ +uint8_t x_146; +x_146 = !lean_is_exclusive(x_139); +if (x_146 == 0) +{ +lean_object* x_147; lean_object* x_148; lean_object* x_149; lean_object* x_150; +x_147 = lean_ctor_get(x_139, 1); +x_148 = lean_ctor_get(x_139, 0); +lean_dec(x_148); +x_149 = lean_ctor_get(x_140, 1); +lean_inc(x_149); +lean_dec(x_140); +lean_inc(x_20); +x_150 = l_Lean_HashMapImp_find_x3f___at___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_evalLazyEntries_iter___spec__2(x_20, x_141); +if (lean_obj_tag(x_150) == 0) +{ +lean_object* x_151; lean_object* x_152; +lean_dec(x_149); +x_151 = lean_box(4); +x_152 = l_Lean_HashMapImp_find_x3f___at___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_evalLazyEntries_iter___spec__2(x_20, x_151); +if (lean_obj_tag(x_152) == 0) +{ +lean_dec(x_24); +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); +lean_ctor_set(x_139, 0, x_4); +return x_139; +} +else +{ +lean_object* x_153; lean_object* x_154; lean_object* x_155; lean_object* x_156; lean_object* x_157; +lean_free_object(x_139); +x_153 = lean_ctor_get(x_152, 0); +lean_inc(x_153); +lean_dec(x_152); +x_154 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_getKeyArgs___lambda__2___closed__2; +x_155 = l_Array_append___rarg(x_24, x_154); +x_156 = lean_unsigned_to_nat(1u); +x_157 = lean_nat_add(x_2, x_156); +lean_dec(x_2); +x_1 = x_155; +x_2 = x_157; +x_3 = x_153; +x_11 = x_147; +goto _start; +} +} +else +{ +lean_object* x_159; lean_object* x_160; lean_object* x_161; lean_object* x_162; lean_object* x_163; +lean_free_object(x_139); +x_159 = lean_ctor_get(x_150, 0); +lean_inc(x_159); +lean_dec(x_150); +lean_inc(x_24); +x_160 = l_Array_append___rarg(x_24, x_149); +x_161 = lean_unsigned_to_nat(1u); +x_162 = lean_nat_add(x_2, x_161); +lean_dec(x_2); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_162); +x_163 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_getMatchLoop___rarg(x_160, x_162, x_159, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_147); +if (lean_obj_tag(x_163) == 0) +{ +uint8_t x_164; +x_164 = !lean_is_exclusive(x_163); +if (x_164 == 0) +{ +lean_object* x_165; lean_object* x_166; lean_object* x_167; lean_object* x_168; +x_165 = lean_ctor_get(x_163, 0); +x_166 = lean_ctor_get(x_163, 1); +x_167 = lean_box(4); +x_168 = l_Lean_HashMapImp_find_x3f___at___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_evalLazyEntries_iter___spec__2(x_20, x_167); +if (lean_obj_tag(x_168) == 0) +{ +lean_dec(x_162); +lean_dec(x_24); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +return x_163; +} +else +{ +lean_object* x_169; lean_object* x_170; lean_object* x_171; +lean_free_object(x_163); +x_169 = lean_ctor_get(x_168, 0); +lean_inc(x_169); +lean_dec(x_168); +x_170 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_getKeyArgs___lambda__2___closed__2; +x_171 = l_Array_append___rarg(x_24, x_170); +x_1 = x_171; +x_2 = x_162; +x_3 = x_169; +x_4 = x_165; +x_11 = x_166; +goto _start; +} +} +else +{ +lean_object* x_173; lean_object* x_174; lean_object* x_175; lean_object* x_176; +x_173 = lean_ctor_get(x_163, 0); +x_174 = lean_ctor_get(x_163, 1); +lean_inc(x_174); +lean_inc(x_173); +lean_dec(x_163); +x_175 = lean_box(4); +x_176 = l_Lean_HashMapImp_find_x3f___at___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_evalLazyEntries_iter___spec__2(x_20, x_175); +if (lean_obj_tag(x_176) == 0) +{ +lean_object* x_177; +lean_dec(x_162); +lean_dec(x_24); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +x_177 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_177, 0, x_173); +lean_ctor_set(x_177, 1, x_174); +return x_177; +} +else +{ +lean_object* x_178; lean_object* x_179; lean_object* x_180; +x_178 = lean_ctor_get(x_176, 0); +lean_inc(x_178); +lean_dec(x_176); +x_179 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_getKeyArgs___lambda__2___closed__2; +x_180 = l_Array_append___rarg(x_24, x_179); +x_1 = x_180; +x_2 = x_162; +x_3 = x_178; +x_4 = x_173; +x_11 = x_174; +goto _start; +} +} +} +else +{ +uint8_t x_182; +lean_dec(x_162); +lean_dec(x_24); +lean_dec(x_20); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +x_182 = !lean_is_exclusive(x_163); +if (x_182 == 0) +{ +return x_163; +} +else +{ +lean_object* x_183; lean_object* x_184; lean_object* x_185; +x_183 = lean_ctor_get(x_163, 0); +x_184 = lean_ctor_get(x_163, 1); +lean_inc(x_184); +lean_inc(x_183); +lean_dec(x_163); +x_185 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_185, 0, x_183); +lean_ctor_set(x_185, 1, x_184); +return x_185; +} +} +} +} +else +{ +lean_object* x_186; lean_object* x_187; lean_object* x_188; +x_186 = lean_ctor_get(x_139, 1); +lean_inc(x_186); +lean_dec(x_139); +x_187 = lean_ctor_get(x_140, 1); +lean_inc(x_187); +lean_dec(x_140); +lean_inc(x_20); +x_188 = l_Lean_HashMapImp_find_x3f___at___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_evalLazyEntries_iter___spec__2(x_20, x_141); +if (lean_obj_tag(x_188) == 0) +{ +lean_object* x_189; lean_object* x_190; +lean_dec(x_187); +x_189 = lean_box(4); +x_190 = l_Lean_HashMapImp_find_x3f___at___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_evalLazyEntries_iter___spec__2(x_20, x_189); +if (lean_obj_tag(x_190) == 0) +{ +lean_object* x_191; +lean_dec(x_24); +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_191 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_191, 0, x_4); +lean_ctor_set(x_191, 1, x_186); +return x_191; +} +else +{ +lean_object* x_192; lean_object* x_193; lean_object* x_194; lean_object* x_195; lean_object* x_196; +x_192 = lean_ctor_get(x_190, 0); +lean_inc(x_192); +lean_dec(x_190); +x_193 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_getKeyArgs___lambda__2___closed__2; +x_194 = l_Array_append___rarg(x_24, x_193); +x_195 = lean_unsigned_to_nat(1u); +x_196 = lean_nat_add(x_2, x_195); +lean_dec(x_2); +x_1 = x_194; +x_2 = x_196; +x_3 = x_192; +x_11 = x_186; +goto _start; +} +} +else +{ +lean_object* x_198; lean_object* x_199; lean_object* x_200; lean_object* x_201; lean_object* x_202; +x_198 = lean_ctor_get(x_188, 0); +lean_inc(x_198); +lean_dec(x_188); +lean_inc(x_24); +x_199 = l_Array_append___rarg(x_24, x_187); +x_200 = lean_unsigned_to_nat(1u); +x_201 = lean_nat_add(x_2, x_200); +lean_dec(x_2); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_201); +x_202 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_getMatchLoop___rarg(x_199, x_201, x_198, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_186); +if (lean_obj_tag(x_202) == 0) +{ +lean_object* x_203; lean_object* x_204; lean_object* x_205; lean_object* x_206; lean_object* x_207; +x_203 = lean_ctor_get(x_202, 0); +lean_inc(x_203); +x_204 = lean_ctor_get(x_202, 1); +lean_inc(x_204); +if (lean_is_exclusive(x_202)) { + lean_ctor_release(x_202, 0); + lean_ctor_release(x_202, 1); + x_205 = x_202; +} else { + lean_dec_ref(x_202); + x_205 = lean_box(0); +} +x_206 = lean_box(4); +x_207 = l_Lean_HashMapImp_find_x3f___at___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_evalLazyEntries_iter___spec__2(x_20, x_206); +if (lean_obj_tag(x_207) == 0) +{ +lean_object* x_208; +lean_dec(x_201); +lean_dec(x_24); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +if (lean_is_scalar(x_205)) { + x_208 = lean_alloc_ctor(0, 2, 0); +} else { + x_208 = x_205; +} +lean_ctor_set(x_208, 0, x_203); +lean_ctor_set(x_208, 1, x_204); +return x_208; +} +else +{ +lean_object* x_209; lean_object* x_210; lean_object* x_211; +lean_dec(x_205); +x_209 = lean_ctor_get(x_207, 0); +lean_inc(x_209); +lean_dec(x_207); +x_210 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_getKeyArgs___lambda__2___closed__2; +x_211 = l_Array_append___rarg(x_24, x_210); +x_1 = x_211; +x_2 = x_201; +x_3 = x_209; +x_4 = x_203; +x_11 = x_204; +goto _start; +} +} +else +{ +lean_object* x_213; lean_object* x_214; lean_object* x_215; lean_object* x_216; +lean_dec(x_201); +lean_dec(x_24); +lean_dec(x_20); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +x_213 = lean_ctor_get(x_202, 0); +lean_inc(x_213); +x_214 = lean_ctor_get(x_202, 1); +lean_inc(x_214); +if (lean_is_exclusive(x_202)) { + lean_ctor_release(x_202, 0); + lean_ctor_release(x_202, 1); + x_215 = x_202; +} else { + lean_dec_ref(x_202); + x_215 = lean_box(0); +} +if (lean_is_scalar(x_215)) { + x_216 = lean_alloc_ctor(1, 2, 0); +} else { + x_216 = x_215; +} +lean_ctor_set(x_216, 0, x_213); +lean_ctor_set(x_216, 1, x_214); +return x_216; +} +} +} +} +default: +{ +uint8_t x_217; +x_217 = !lean_is_exclusive(x_139); +if (x_217 == 0) +{ +lean_object* x_218; lean_object* x_219; lean_object* x_220; lean_object* x_221; +x_218 = lean_ctor_get(x_139, 1); +x_219 = lean_ctor_get(x_139, 0); +lean_dec(x_219); +x_220 = lean_ctor_get(x_140, 1); +lean_inc(x_220); +lean_dec(x_140); +x_221 = l_Lean_HashMapImp_find_x3f___at___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_evalLazyEntries_iter___spec__2(x_20, x_141); +if (lean_obj_tag(x_221) == 0) +{ +lean_dec(x_220); +lean_dec(x_24); +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); +lean_ctor_set(x_139, 0, x_4); +return x_139; +} +else +{ +lean_object* x_222; lean_object* x_223; lean_object* x_224; lean_object* x_225; +lean_free_object(x_139); +x_222 = lean_ctor_get(x_221, 0); +lean_inc(x_222); +lean_dec(x_221); +x_223 = l_Array_append___rarg(x_24, x_220); +x_224 = lean_unsigned_to_nat(1u); +x_225 = lean_nat_add(x_2, x_224); +lean_dec(x_2); +x_1 = x_223; +x_2 = x_225; +x_3 = x_222; +x_11 = x_218; +goto _start; +} +} +else +{ +lean_object* x_227; lean_object* x_228; lean_object* x_229; +x_227 = lean_ctor_get(x_139, 1); +lean_inc(x_227); +lean_dec(x_139); +x_228 = lean_ctor_get(x_140, 1); +lean_inc(x_228); +lean_dec(x_140); +x_229 = l_Lean_HashMapImp_find_x3f___at___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_evalLazyEntries_iter___spec__2(x_20, x_141); +if (lean_obj_tag(x_229) == 0) +{ +lean_object* x_230; +lean_dec(x_228); +lean_dec(x_24); +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_230 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_230, 0, x_4); +lean_ctor_set(x_230, 1, x_227); +return x_230; +} +else +{ +lean_object* x_231; lean_object* x_232; lean_object* x_233; lean_object* x_234; +x_231 = lean_ctor_get(x_229, 0); +lean_inc(x_231); +lean_dec(x_229); +x_232 = l_Array_append___rarg(x_24, x_228); +x_233 = lean_unsigned_to_nat(1u); +x_234 = lean_nat_add(x_2, x_233); +lean_dec(x_2); +x_1 = x_232; +x_2 = x_234; +x_3 = x_231; +x_11 = x_227; +goto _start; +} +} +} +} +} +else +{ +uint8_t x_236; +lean_dec(x_24); +lean_dec(x_20); +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_2); +x_236 = !lean_is_exclusive(x_139); +if (x_236 == 0) +{ +return x_139; +} +else +{ +lean_object* x_237; lean_object* x_238; lean_object* x_239; +x_237 = lean_ctor_get(x_139, 0); +x_238 = lean_ctor_get(x_139, 1); +lean_inc(x_238); +lean_inc(x_237); +lean_dec(x_139); +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 +{ +lean_object* x_249; lean_object* x_250; lean_object* x_251; lean_object* x_252; lean_object* x_253; uint8_t x_375; +x_249 = lean_ctor_get(x_12, 1); +lean_inc(x_249); +lean_dec(x_12); +x_250 = lean_ctor_get(x_13, 0); +lean_inc(x_250); +lean_dec(x_13); +x_251 = lean_ctor_get(x_14, 0); +lean_inc(x_251); +x_252 = lean_ctor_get(x_14, 1); +lean_inc(x_252); +lean_dec(x_14); +x_375 = l_Array_isEmpty___rarg(x_1); +if (x_375 == 0) +{ +lean_object* x_376; uint8_t x_377; +lean_dec(x_250); +x_376 = lean_unsigned_to_nat(0u); +x_377 = lean_nat_dec_eq(x_251, x_376); +if (x_377 == 0) +{ +lean_object* x_378; +x_378 = lean_box(0); +x_253 = x_378; +goto block_374; +} +else +{ +lean_object* x_379; uint8_t x_380; +x_379 = lean_ctor_get(x_252, 0); +lean_inc(x_379); +x_380 = lean_nat_dec_eq(x_379, x_376); +lean_dec(x_379); +if (x_380 == 0) +{ +lean_object* x_381; +x_381 = lean_box(0); +x_253 = x_381; +goto block_374; +} +else +{ +lean_object* x_382; +lean_dec(x_252); +lean_dec(x_251); +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); +lean_dec(x_1); +x_382 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_382, 0, x_4); +lean_ctor_set(x_382, 1, x_249); +return x_382; +} +} +} +else +{ +lean_object* x_383; lean_object* x_384; +lean_dec(x_252); +lean_dec(x_251); +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_1); +x_383 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchResult_push___rarg(x_4, x_2, x_250); +lean_dec(x_2); +x_384 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_384, 0, x_383); +lean_ctor_set(x_384, 1, x_249); +return x_384; +} +block_374: +{ +lean_object* x_254; lean_object* x_255; lean_object* x_256; lean_object* x_257; uint8_t x_258; +lean_dec(x_253); +x_254 = l_Lean_instInhabitedExpr; +x_255 = l_Array_back___rarg(x_254, x_1); +x_256 = lean_array_pop(x_1); +x_257 = lean_unsigned_to_nat(0u); +x_258 = lean_nat_dec_eq(x_251, x_257); +if (x_258 == 0) +{ +lean_object* x_259; +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_2); +lean_inc(x_256); +x_259 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_getMatchLoop___rarg(x_256, x_2, x_251, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_249); +if (lean_obj_tag(x_259) == 0) +{ +lean_object* x_260; lean_object* x_261; uint8_t x_262; uint8_t x_263; lean_object* x_264; +x_260 = lean_ctor_get(x_259, 0); +lean_inc(x_260); +x_261 = lean_ctor_get(x_259, 1); +lean_inc(x_261); +lean_dec(x_259); +x_262 = 1; +x_263 = 0; +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_5); +x_264 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_getKeyArgs(x_255, x_262, x_263, x_5, x_7, x_8, x_9, x_10, x_261); +if (lean_obj_tag(x_264) == 0) +{ +lean_object* x_265; lean_object* x_266; +x_265 = lean_ctor_get(x_264, 0); +lean_inc(x_265); +x_266 = lean_ctor_get(x_265, 0); +lean_inc(x_266); +switch (lean_obj_tag(x_266)) { +case 3: +{ +lean_object* x_267; lean_object* x_268; lean_object* x_269; +lean_dec(x_265); +lean_dec(x_256); +lean_dec(x_252); +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_267 = lean_ctor_get(x_264, 1); +lean_inc(x_267); +if (lean_is_exclusive(x_264)) { + lean_ctor_release(x_264, 0); + lean_ctor_release(x_264, 1); + x_268 = x_264; +} else { + lean_dec_ref(x_264); + x_268 = lean_box(0); +} +if (lean_is_scalar(x_268)) { + x_269 = lean_alloc_ctor(0, 2, 0); +} else { + x_269 = x_268; +} +lean_ctor_set(x_269, 0, x_260); +lean_ctor_set(x_269, 1, x_267); +return x_269; +} +case 5: +{ +lean_object* x_270; lean_object* x_271; lean_object* x_272; lean_object* x_273; +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; +} else { + lean_dec_ref(x_264); + x_271 = lean_box(0); +} +x_272 = lean_ctor_get(x_265, 1); +lean_inc(x_272); +lean_dec(x_265); +lean_inc(x_252); +x_273 = l_Lean_HashMapImp_find_x3f___at___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_evalLazyEntries_iter___spec__2(x_252, x_266); +if (lean_obj_tag(x_273) == 0) +{ +lean_object* x_274; lean_object* x_275; +lean_dec(x_272); +x_274 = lean_box(4); +x_275 = l_Lean_HashMapImp_find_x3f___at___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_evalLazyEntries_iter___spec__2(x_252, x_274); +if (lean_obj_tag(x_275) == 0) +{ +lean_object* x_276; +lean_dec(x_256); +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); +if (lean_is_scalar(x_271)) { + x_276 = lean_alloc_ctor(0, 2, 0); +} else { + x_276 = x_271; +} +lean_ctor_set(x_276, 0, x_260); +lean_ctor_set(x_276, 1, x_270); +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_dec(x_271); +x_277 = lean_ctor_get(x_275, 0); +lean_inc(x_277); +lean_dec(x_275); +x_278 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_getKeyArgs___lambda__2___closed__2; +x_279 = l_Array_append___rarg(x_256, x_278); +x_280 = lean_unsigned_to_nat(1u); +x_281 = lean_nat_add(x_2, x_280); +lean_dec(x_2); +x_1 = x_279; +x_2 = x_281; +x_3 = x_277; +x_4 = x_260; +x_11 = x_270; +goto _start; +} +} +else +{ +lean_object* x_283; lean_object* x_284; lean_object* x_285; lean_object* x_286; lean_object* x_287; +lean_dec(x_271); +x_283 = lean_ctor_get(x_273, 0); +lean_inc(x_283); +lean_dec(x_273); +lean_inc(x_256); +x_284 = l_Array_append___rarg(x_256, x_272); +x_285 = lean_unsigned_to_nat(1u); +x_286 = lean_nat_add(x_2, x_285); +lean_dec(x_2); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_286); +x_287 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_getMatchLoop___rarg(x_284, x_286, x_283, x_260, x_5, x_6, x_7, x_8, x_9, x_10, x_270); +if (lean_obj_tag(x_287) == 0) +{ +lean_object* x_288; lean_object* x_289; lean_object* x_290; lean_object* x_291; lean_object* x_292; +x_288 = lean_ctor_get(x_287, 0); +lean_inc(x_288); +x_289 = lean_ctor_get(x_287, 1); +lean_inc(x_289); +if (lean_is_exclusive(x_287)) { + lean_ctor_release(x_287, 0); + lean_ctor_release(x_287, 1); + x_290 = x_287; +} else { + lean_dec_ref(x_287); + x_290 = lean_box(0); +} +x_291 = lean_box(4); +x_292 = l_Lean_HashMapImp_find_x3f___at___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_evalLazyEntries_iter___spec__2(x_252, x_291); +if (lean_obj_tag(x_292) == 0) +{ +lean_object* x_293; +lean_dec(x_286); +lean_dec(x_256); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +if (lean_is_scalar(x_290)) { + x_293 = lean_alloc_ctor(0, 2, 0); +} else { + x_293 = x_290; +} +lean_ctor_set(x_293, 0, x_288); +lean_ctor_set(x_293, 1, x_289); +return x_293; +} +else +{ +lean_object* x_294; lean_object* x_295; lean_object* x_296; +lean_dec(x_290); +x_294 = lean_ctor_get(x_292, 0); +lean_inc(x_294); +lean_dec(x_292); +x_295 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_getKeyArgs___lambda__2___closed__2; +x_296 = l_Array_append___rarg(x_256, x_295); +x_1 = x_296; +x_2 = x_286; +x_3 = x_294; +x_4 = x_288; +x_11 = x_289; +goto _start; +} +} +else +{ +lean_object* x_298; lean_object* x_299; lean_object* x_300; lean_object* x_301; +lean_dec(x_286); +lean_dec(x_256); +lean_dec(x_252); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +x_298 = lean_ctor_get(x_287, 0); +lean_inc(x_298); +x_299 = lean_ctor_get(x_287, 1); +lean_inc(x_299); +if (lean_is_exclusive(x_287)) { + lean_ctor_release(x_287, 0); + lean_ctor_release(x_287, 1); + x_300 = x_287; +} else { + lean_dec_ref(x_287); + x_300 = lean_box(0); +} +if (lean_is_scalar(x_300)) { + x_301 = lean_alloc_ctor(1, 2, 0); +} else { + x_301 = x_300; +} +lean_ctor_set(x_301, 0, x_298); +lean_ctor_set(x_301, 1, x_299); +return x_301; +} +} +} +default: +{ +lean_object* x_302; lean_object* x_303; lean_object* x_304; lean_object* x_305; +x_302 = lean_ctor_get(x_264, 1); +lean_inc(x_302); +if (lean_is_exclusive(x_264)) { + lean_ctor_release(x_264, 0); + lean_ctor_release(x_264, 1); + x_303 = x_264; +} else { + lean_dec_ref(x_264); + x_303 = lean_box(0); +} +x_304 = lean_ctor_get(x_265, 1); +lean_inc(x_304); +lean_dec(x_265); +x_305 = l_Lean_HashMapImp_find_x3f___at___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_evalLazyEntries_iter___spec__2(x_252, x_266); +if (lean_obj_tag(x_305) == 0) +{ +lean_object* x_306; +lean_dec(x_304); +lean_dec(x_256); +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); +if (lean_is_scalar(x_303)) { + x_306 = lean_alloc_ctor(0, 2, 0); +} else { + x_306 = x_303; +} +lean_ctor_set(x_306, 0, x_260); +lean_ctor_set(x_306, 1, x_302); +return x_306; +} +else +{ +lean_object* x_307; lean_object* x_308; lean_object* x_309; lean_object* x_310; +lean_dec(x_303); +x_307 = lean_ctor_get(x_305, 0); +lean_inc(x_307); +lean_dec(x_305); +x_308 = l_Array_append___rarg(x_256, x_304); +x_309 = lean_unsigned_to_nat(1u); +x_310 = lean_nat_add(x_2, x_309); +lean_dec(x_2); +x_1 = x_308; +x_2 = x_310; +x_3 = x_307; +x_4 = x_260; +x_11 = x_302; +goto _start; +} +} +} +} +else +{ +lean_object* x_312; lean_object* x_313; lean_object* x_314; lean_object* x_315; +lean_dec(x_260); +lean_dec(x_256); +lean_dec(x_252); +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_312 = lean_ctor_get(x_264, 0); +lean_inc(x_312); +x_313 = lean_ctor_get(x_264, 1); +lean_inc(x_313); +if (lean_is_exclusive(x_264)) { + lean_ctor_release(x_264, 0); + lean_ctor_release(x_264, 1); + x_314 = x_264; +} else { + lean_dec_ref(x_264); + x_314 = lean_box(0); +} +if (lean_is_scalar(x_314)) { + x_315 = lean_alloc_ctor(1, 2, 0); +} else { + x_315 = x_314; +} +lean_ctor_set(x_315, 0, x_312); +lean_ctor_set(x_315, 1, x_313); +return x_315; +} +} +else +{ +lean_object* x_316; lean_object* x_317; lean_object* x_318; lean_object* x_319; +lean_dec(x_256); +lean_dec(x_255); +lean_dec(x_252); +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_316 = lean_ctor_get(x_259, 0); +lean_inc(x_316); +x_317 = lean_ctor_get(x_259, 1); +lean_inc(x_317); +if (lean_is_exclusive(x_259)) { + lean_ctor_release(x_259, 0); + lean_ctor_release(x_259, 1); + x_318 = x_259; +} else { + lean_dec_ref(x_259); + x_318 = lean_box(0); +} +if (lean_is_scalar(x_318)) { + x_319 = lean_alloc_ctor(1, 2, 0); +} else { + x_319 = x_318; +} +lean_ctor_set(x_319, 0, x_316); +lean_ctor_set(x_319, 1, x_317); +return x_319; +} +} +else +{ +uint8_t x_320; uint8_t x_321; lean_object* x_322; +lean_dec(x_251); +x_320 = 1; +x_321 = 0; +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_5); +x_322 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_getKeyArgs(x_255, x_320, x_321, x_5, x_7, x_8, x_9, x_10, x_249); +if (lean_obj_tag(x_322) == 0) +{ +lean_object* x_323; lean_object* x_324; +x_323 = lean_ctor_get(x_322, 0); +lean_inc(x_323); +x_324 = lean_ctor_get(x_323, 0); +lean_inc(x_324); +switch (lean_obj_tag(x_324)) { +case 3: +{ +lean_object* x_325; lean_object* x_326; lean_object* x_327; +lean_dec(x_323); +lean_dec(x_256); +lean_dec(x_252); +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_325 = lean_ctor_get(x_322, 1); +lean_inc(x_325); +if (lean_is_exclusive(x_322)) { + lean_ctor_release(x_322, 0); + lean_ctor_release(x_322, 1); + x_326 = x_322; +} else { + lean_dec_ref(x_322); + x_326 = lean_box(0); +} +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_4); +lean_ctor_set(x_327, 1, x_325); +return x_327; +} +case 5: +{ +lean_object* x_328; lean_object* x_329; lean_object* x_330; lean_object* x_331; +x_328 = lean_ctor_get(x_322, 1); +lean_inc(x_328); +if (lean_is_exclusive(x_322)) { + lean_ctor_release(x_322, 0); + lean_ctor_release(x_322, 1); + x_329 = x_322; +} else { + lean_dec_ref(x_322); + x_329 = lean_box(0); +} +x_330 = lean_ctor_get(x_323, 1); +lean_inc(x_330); +lean_dec(x_323); +lean_inc(x_252); +x_331 = l_Lean_HashMapImp_find_x3f___at___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_evalLazyEntries_iter___spec__2(x_252, x_324); +if (lean_obj_tag(x_331) == 0) +{ +lean_object* x_332; lean_object* x_333; +lean_dec(x_330); +x_332 = lean_box(4); +x_333 = l_Lean_HashMapImp_find_x3f___at___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_evalLazyEntries_iter___spec__2(x_252, x_332); +if (lean_obj_tag(x_333) == 0) +{ +lean_object* x_334; +lean_dec(x_256); +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); +if (lean_is_scalar(x_329)) { + x_334 = lean_alloc_ctor(0, 2, 0); +} else { + x_334 = x_329; +} +lean_ctor_set(x_334, 0, x_4); +lean_ctor_set(x_334, 1, x_328); +return x_334; +} +else +{ +lean_object* x_335; lean_object* x_336; lean_object* x_337; lean_object* x_338; lean_object* x_339; +lean_dec(x_329); +x_335 = lean_ctor_get(x_333, 0); +lean_inc(x_335); +lean_dec(x_333); +x_336 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_getKeyArgs___lambda__2___closed__2; +x_337 = l_Array_append___rarg(x_256, x_336); +x_338 = lean_unsigned_to_nat(1u); +x_339 = lean_nat_add(x_2, x_338); +lean_dec(x_2); +x_1 = x_337; +x_2 = x_339; +x_3 = x_335; +x_11 = x_328; +goto _start; +} +} +else +{ +lean_object* x_341; lean_object* x_342; lean_object* x_343; lean_object* x_344; lean_object* x_345; +lean_dec(x_329); +x_341 = lean_ctor_get(x_331, 0); +lean_inc(x_341); +lean_dec(x_331); +lean_inc(x_256); +x_342 = l_Array_append___rarg(x_256, x_330); +x_343 = lean_unsigned_to_nat(1u); +x_344 = lean_nat_add(x_2, x_343); +lean_dec(x_2); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_344); +x_345 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_getMatchLoop___rarg(x_342, x_344, x_341, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_328); +if (lean_obj_tag(x_345) == 0) +{ +lean_object* x_346; lean_object* x_347; lean_object* x_348; lean_object* x_349; lean_object* x_350; +x_346 = lean_ctor_get(x_345, 0); +lean_inc(x_346); +x_347 = lean_ctor_get(x_345, 1); +lean_inc(x_347); +if (lean_is_exclusive(x_345)) { + lean_ctor_release(x_345, 0); + lean_ctor_release(x_345, 1); + x_348 = x_345; +} else { + lean_dec_ref(x_345); + x_348 = lean_box(0); +} +x_349 = lean_box(4); +x_350 = l_Lean_HashMapImp_find_x3f___at___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_evalLazyEntries_iter___spec__2(x_252, x_349); +if (lean_obj_tag(x_350) == 0) +{ +lean_object* x_351; +lean_dec(x_344); +lean_dec(x_256); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +if (lean_is_scalar(x_348)) { + x_351 = lean_alloc_ctor(0, 2, 0); +} else { + x_351 = x_348; +} +lean_ctor_set(x_351, 0, x_346); +lean_ctor_set(x_351, 1, x_347); +return x_351; +} +else +{ +lean_object* x_352; lean_object* x_353; lean_object* x_354; +lean_dec(x_348); +x_352 = lean_ctor_get(x_350, 0); +lean_inc(x_352); +lean_dec(x_350); +x_353 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_getKeyArgs___lambda__2___closed__2; +x_354 = l_Array_append___rarg(x_256, x_353); +x_1 = x_354; +x_2 = x_344; +x_3 = x_352; +x_4 = x_346; +x_11 = x_347; +goto _start; +} +} +else +{ +lean_object* x_356; lean_object* x_357; lean_object* x_358; lean_object* x_359; +lean_dec(x_344); +lean_dec(x_256); +lean_dec(x_252); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +x_356 = lean_ctor_get(x_345, 0); +lean_inc(x_356); +x_357 = lean_ctor_get(x_345, 1); +lean_inc(x_357); +if (lean_is_exclusive(x_345)) { + lean_ctor_release(x_345, 0); + lean_ctor_release(x_345, 1); + x_358 = x_345; +} else { + lean_dec_ref(x_345); + x_358 = lean_box(0); +} +if (lean_is_scalar(x_358)) { + x_359 = lean_alloc_ctor(1, 2, 0); +} else { + x_359 = x_358; +} +lean_ctor_set(x_359, 0, x_356); +lean_ctor_set(x_359, 1, x_357); +return x_359; +} +} +} +default: +{ +lean_object* x_360; lean_object* x_361; lean_object* x_362; lean_object* x_363; +x_360 = lean_ctor_get(x_322, 1); +lean_inc(x_360); +if (lean_is_exclusive(x_322)) { + lean_ctor_release(x_322, 0); + lean_ctor_release(x_322, 1); + x_361 = x_322; +} else { + lean_dec_ref(x_322); + x_361 = lean_box(0); +} +x_362 = lean_ctor_get(x_323, 1); +lean_inc(x_362); +lean_dec(x_323); +x_363 = l_Lean_HashMapImp_find_x3f___at___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_evalLazyEntries_iter___spec__2(x_252, x_324); +if (lean_obj_tag(x_363) == 0) +{ +lean_object* x_364; +lean_dec(x_362); +lean_dec(x_256); +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); +if (lean_is_scalar(x_361)) { + x_364 = lean_alloc_ctor(0, 2, 0); +} else { + x_364 = x_361; +} +lean_ctor_set(x_364, 0, x_4); +lean_ctor_set(x_364, 1, x_360); +return x_364; +} +else +{ +lean_object* x_365; lean_object* x_366; lean_object* x_367; lean_object* x_368; +lean_dec(x_361); +x_365 = lean_ctor_get(x_363, 0); +lean_inc(x_365); +lean_dec(x_363); +x_366 = l_Array_append___rarg(x_256, x_362); +x_367 = lean_unsigned_to_nat(1u); +x_368 = lean_nat_add(x_2, x_367); +lean_dec(x_2); +x_1 = x_366; +x_2 = x_368; +x_3 = x_365; +x_11 = x_360; +goto _start; +} +} +} +} +else +{ +lean_object* x_370; lean_object* x_371; lean_object* x_372; lean_object* x_373; +lean_dec(x_256); +lean_dec(x_252); +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_2); +x_370 = lean_ctor_get(x_322, 0); +lean_inc(x_370); +x_371 = lean_ctor_get(x_322, 1); +lean_inc(x_371); +if (lean_is_exclusive(x_322)) { + lean_ctor_release(x_322, 0); + lean_ctor_release(x_322, 1); + x_372 = x_322; +} else { + lean_dec_ref(x_322); + x_372 = lean_box(0); +} +if (lean_is_scalar(x_372)) { + x_373 = lean_alloc_ctor(1, 2, 0); +} else { + x_373 = x_372; +} +lean_ctor_set(x_373, 0, x_370); +lean_ctor_set(x_373, 1, x_371); +return x_373; +} +} +} +} +} +else +{ +uint8_t x_385; +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_2); +lean_dec(x_1); +x_385 = !lean_is_exclusive(x_12); +if (x_385 == 0) +{ +return x_12; +} +else +{ +lean_object* x_386; lean_object* x_387; lean_object* x_388; +x_386 = lean_ctor_get(x_12, 0); +x_387 = lean_ctor_get(x_12, 1); +lean_inc(x_387); +lean_inc(x_386); +lean_dec(x_12); +x_388 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_388, 0, x_386); +lean_ctor_set(x_388, 1, x_387); +return x_388; +} +} +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_getMatchLoop(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = lean_alloc_closure((void*)(l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_getMatchLoop___rarg), 11, 0); +return x_2; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_getStarResult___rarg(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) { +_start: +{ +lean_object* x_9; lean_object* x_10; +x_9 = lean_box(3); +x_10 = l_Lean_HashMapImp_find_x3f___at___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_evalLazyEntries_iter___spec__2(x_1, x_9); +if (lean_obj_tag(x_10) == 0) +{ +lean_object* x_11; lean_object* x_12; +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_11 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_getKeyArgs___lambda__2___closed__2; +x_12 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_12, 0, x_11); +lean_ctor_set(x_12, 1, x_8); +return x_12; +} +else +{ +lean_object* x_13; lean_object* x_14; +x_13 = lean_ctor_get(x_10, 0); +lean_inc(x_13); +lean_dec(x_10); +x_14 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_evalNode___rarg(x_13, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +lean_dec(x_13); +if (lean_obj_tag(x_14) == 0) +{ +uint8_t x_15; +x_15 = !lean_is_exclusive(x_14); +if (x_15 == 0) +{ +lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; +x_16 = lean_ctor_get(x_14, 0); +x_17 = lean_ctor_get(x_16, 0); +lean_inc(x_17); +lean_dec(x_16); +x_18 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_getKeyArgs___lambda__2___closed__2; +x_19 = lean_unsigned_to_nat(0u); +x_20 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchResult_push___rarg(x_18, x_19, x_17); +lean_ctor_set(x_14, 0, x_20); +return x_14; +} +else +{ +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_21 = lean_ctor_get(x_14, 0); +x_22 = lean_ctor_get(x_14, 1); +lean_inc(x_22); +lean_inc(x_21); +lean_dec(x_14); +x_23 = lean_ctor_get(x_21, 0); +lean_inc(x_23); +lean_dec(x_21); +x_24 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_getKeyArgs___lambda__2___closed__2; +x_25 = lean_unsigned_to_nat(0u); +x_26 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchResult_push___rarg(x_24, x_25, x_23); +x_27 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_27, 0, x_26); +lean_ctor_set(x_27, 1, x_22); +return x_27; +} +} +else +{ +uint8_t x_28; +x_28 = !lean_is_exclusive(x_14); +if (x_28 == 0) +{ +return x_14; +} +else +{ +lean_object* x_29; lean_object* x_30; lean_object* x_31; +x_29 = lean_ctor_get(x_14, 0); +x_30 = lean_ctor_get(x_14, 1); +lean_inc(x_30); +lean_inc(x_29); +lean_dec(x_14); +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_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_getStarResult(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = lean_alloc_closure((void*)(l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_getStarResult___rarg), 8, 0); +return x_2; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_getMatchRoot___rarg(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) { +_start: +{ +lean_object* x_12; +x_12 = l_Lean_HashMapImp_find_x3f___at___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_evalLazyEntries_iter___spec__2(x_1, x_2); +if (lean_obj_tag(x_12) == 0) +{ +lean_object* x_13; +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_3); +x_13 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_13, 0, x_4); +lean_ctor_set(x_13, 1, x_11); +return x_13; +} +else +{ +lean_object* x_14; lean_object* x_15; lean_object* x_16; +x_14 = lean_ctor_get(x_12, 0); +lean_inc(x_14); +lean_dec(x_12); +x_15 = lean_unsigned_to_nat(1u); +x_16 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_getMatchLoop___rarg(x_3, x_15, x_14, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +return x_16; +} +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_getMatchRoot(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = lean_alloc_closure((void*)(l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_getMatchRoot___rarg), 11, 0); +return x_2; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_getMatchCore___rarg(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_inc(x_8); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +lean_inc(x_1); +x_10 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_getStarResult___rarg(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +if (lean_obj_tag(x_10) == 0) +{ +lean_object* x_11; lean_object* x_12; uint8_t x_13; lean_object* x_14; +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 = 1; +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_3); +x_14 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_getKeyArgs(x_2, x_13, x_13, x_3, x_5, x_6, x_7, x_8, x_12); +if (lean_obj_tag(x_14) == 0) +{ +lean_object* x_15; lean_object* x_16; +x_15 = lean_ctor_get(x_14, 0); +lean_inc(x_15); +x_16 = lean_ctor_get(x_15, 0); +lean_inc(x_16); +switch (lean_obj_tag(x_16)) { +case 3: +{ +uint8_t x_17; +lean_dec(x_15); +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_1); +x_17 = !lean_is_exclusive(x_14); +if (x_17 == 0) +{ +lean_object* x_18; +x_18 = lean_ctor_get(x_14, 0); +lean_dec(x_18); +lean_ctor_set(x_14, 0, x_11); +return x_14; +} +else +{ +lean_object* x_19; lean_object* x_20; +x_19 = lean_ctor_get(x_14, 1); +lean_inc(x_19); +lean_dec(x_14); +x_20 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_20, 0, x_11); +lean_ctor_set(x_20, 1, x_19); +return x_20; +} +} +case 5: +{ +lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; +x_21 = lean_ctor_get(x_14, 1); +lean_inc(x_21); +lean_dec(x_14); +x_22 = lean_ctor_get(x_15, 1); +lean_inc(x_22); +lean_dec(x_15); +x_23 = lean_box(4); +x_24 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_getKeyArgs___lambda__2___closed__2; +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +lean_inc(x_1); +x_25 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_getMatchRoot___rarg(x_1, x_23, x_24, x_11, x_3, x_4, x_5, x_6, x_7, x_8, x_21); +if (lean_obj_tag(x_25) == 0) +{ +lean_object* x_26; lean_object* x_27; lean_object* x_28; +x_26 = lean_ctor_get(x_25, 0); +lean_inc(x_26); +x_27 = lean_ctor_get(x_25, 1); +lean_inc(x_27); +lean_dec(x_25); +x_28 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_getMatchRoot___rarg(x_1, x_16, x_22, x_26, x_3, x_4, x_5, x_6, x_7, x_8, x_27); +return x_28; +} +else +{ +uint8_t x_29; +lean_dec(x_22); +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_1); +x_29 = !lean_is_exclusive(x_25); +if (x_29 == 0) +{ +return x_25; +} +else +{ +lean_object* x_30; lean_object* x_31; lean_object* x_32; +x_30 = lean_ctor_get(x_25, 0); +x_31 = lean_ctor_get(x_25, 1); +lean_inc(x_31); +lean_inc(x_30); +lean_dec(x_25); +x_32 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_32, 0, x_30); +lean_ctor_set(x_32, 1, x_31); +return x_32; +} +} +} +default: +{ +lean_object* x_33; lean_object* x_34; lean_object* x_35; +x_33 = lean_ctor_get(x_14, 1); +lean_inc(x_33); +lean_dec(x_14); +x_34 = lean_ctor_get(x_15, 1); +lean_inc(x_34); +lean_dec(x_15); +x_35 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_getMatchRoot___rarg(x_1, x_16, x_34, x_11, x_3, x_4, x_5, x_6, x_7, x_8, x_33); +return x_35; +} +} +} +else +{ +uint8_t x_36; +lean_dec(x_11); +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_1); +x_36 = !lean_is_exclusive(x_14); +if (x_36 == 0) +{ +return x_14; +} +else +{ +lean_object* x_37; lean_object* x_38; lean_object* x_39; +x_37 = lean_ctor_get(x_14, 0); +x_38 = lean_ctor_get(x_14, 1); +lean_inc(x_38); +lean_inc(x_37); +lean_dec(x_14); +x_39 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_39, 0, x_37); +lean_ctor_set(x_39, 1, x_38); +return x_39; +} +} +} +else +{ +uint8_t x_40; +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); +x_40 = !lean_is_exclusive(x_10); +if (x_40 == 0) +{ +return x_10; +} +else +{ +lean_object* x_41; lean_object* x_42; lean_object* x_43; +x_41 = lean_ctor_get(x_10, 0); +x_42 = lean_ctor_get(x_10, 1); +lean_inc(x_42); +lean_inc(x_41); +lean_dec(x_10); +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___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_getMatchCore(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = lean_alloc_closure((void*)(l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_getMatchCore___rarg), 9, 0); +return x_2; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_LazyDiscrTree_getMatch___rarg___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) { +_start: +{ +lean_object* x_10; +x_10 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_getMatchCore___rarg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +if (lean_obj_tag(x_10) == 0) +{ +uint8_t x_11; +x_11 = !lean_is_exclusive(x_10); +if (x_11 == 0) +{ +lean_object* x_12; lean_object* x_13; +x_12 = lean_ctor_get(x_10, 0); +x_13 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchResult_toArray___rarg(x_12); +lean_ctor_set(x_10, 0, x_13); +return x_10; +} +else +{ +lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; +x_14 = lean_ctor_get(x_10, 0); +x_15 = lean_ctor_get(x_10, 1); +lean_inc(x_15); +lean_inc(x_14); +lean_dec(x_10); +x_16 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchResult_toArray___rarg(x_14); +x_17 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_17, 0, x_16); +lean_ctor_set(x_17, 1, x_15); +return x_17; +} +} +else +{ +uint8_t x_18; +x_18 = !lean_is_exclusive(x_10); +if (x_18 == 0) +{ +return x_10; +} +else +{ +lean_object* x_19; lean_object* x_20; lean_object* x_21; +x_19 = lean_ctor_get(x_10, 0); +x_20 = lean_ctor_get(x_10, 1); +lean_inc(x_20); +lean_inc(x_19); +lean_dec(x_10); +x_21 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_21, 0, x_19); +lean_ctor_set(x_21, 1, x_20); +return x_21; +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_LazyDiscrTree_getMatch___rarg(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; uint8_t x_10; +x_8 = lean_ctor_get(x_1, 2); +lean_inc(x_8); +x_9 = lean_alloc_closure((void*)(l_Lean_Meta_LazyDiscrTree_getMatch___rarg___lambda__1), 9, 2); +lean_closure_set(x_9, 0, x_8); +lean_closure_set(x_9, 1, x_2); +x_10 = !lean_is_exclusive(x_3); +if (x_10 == 0) +{ +lean_object* x_11; uint8_t x_12; +x_11 = lean_ctor_get(x_3, 0); +x_12 = !lean_is_exclusive(x_11); +if (x_12 == 0) +{ +uint8_t x_13; lean_object* x_14; +x_13 = 2; +lean_ctor_set_uint8(x_11, 9, x_13); +x_14 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_runMatch___rarg(x_1, x_9, x_3, x_4, x_5, x_6, x_7); +if (lean_obj_tag(x_14) == 0) +{ +uint8_t x_15; +x_15 = !lean_is_exclusive(x_14); +if (x_15 == 0) +{ +return x_14; +} +else +{ +lean_object* x_16; lean_object* x_17; lean_object* x_18; +x_16 = lean_ctor_get(x_14, 0); +x_17 = lean_ctor_get(x_14, 1); +lean_inc(x_17); +lean_inc(x_16); +lean_dec(x_14); +x_18 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_18, 0, x_16); +lean_ctor_set(x_18, 1, x_17); +return x_18; +} +} +else +{ +uint8_t x_19; +x_19 = !lean_is_exclusive(x_14); +if (x_19 == 0) +{ +return x_14; +} +else +{ +lean_object* x_20; lean_object* x_21; lean_object* x_22; +x_20 = lean_ctor_get(x_14, 0); +x_21 = lean_ctor_get(x_14, 1); +lean_inc(x_21); +lean_inc(x_20); +lean_dec(x_14); +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; +} +} +} +else +{ +uint8_t x_23; uint8_t x_24; uint8_t x_25; uint8_t x_26; uint8_t x_27; uint8_t x_28; uint8_t x_29; uint8_t x_30; uint8_t x_31; uint8_t x_32; uint8_t x_33; uint8_t x_34; lean_object* x_35; lean_object* x_36; +x_23 = lean_ctor_get_uint8(x_11, 0); +x_24 = lean_ctor_get_uint8(x_11, 1); +x_25 = lean_ctor_get_uint8(x_11, 2); +x_26 = lean_ctor_get_uint8(x_11, 3); +x_27 = lean_ctor_get_uint8(x_11, 4); +x_28 = lean_ctor_get_uint8(x_11, 5); +x_29 = lean_ctor_get_uint8(x_11, 6); +x_30 = lean_ctor_get_uint8(x_11, 7); +x_31 = lean_ctor_get_uint8(x_11, 8); +x_32 = lean_ctor_get_uint8(x_11, 10); +x_33 = lean_ctor_get_uint8(x_11, 11); +lean_dec(x_11); +x_34 = 2; +x_35 = lean_alloc_ctor(0, 0, 12); +lean_ctor_set_uint8(x_35, 0, x_23); +lean_ctor_set_uint8(x_35, 1, x_24); +lean_ctor_set_uint8(x_35, 2, x_25); +lean_ctor_set_uint8(x_35, 3, x_26); +lean_ctor_set_uint8(x_35, 4, x_27); +lean_ctor_set_uint8(x_35, 5, x_28); +lean_ctor_set_uint8(x_35, 6, x_29); +lean_ctor_set_uint8(x_35, 7, x_30); +lean_ctor_set_uint8(x_35, 8, x_31); +lean_ctor_set_uint8(x_35, 9, x_34); +lean_ctor_set_uint8(x_35, 10, x_32); +lean_ctor_set_uint8(x_35, 11, x_33); +lean_ctor_set(x_3, 0, x_35); +x_36 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_runMatch___rarg(x_1, x_9, x_3, x_4, x_5, x_6, x_7); +if (lean_obj_tag(x_36) == 0) +{ +lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; +x_37 = lean_ctor_get(x_36, 0); +lean_inc(x_37); +x_38 = lean_ctor_get(x_36, 1); +lean_inc(x_38); +if (lean_is_exclusive(x_36)) { + lean_ctor_release(x_36, 0); + lean_ctor_release(x_36, 1); + x_39 = x_36; +} else { + lean_dec_ref(x_36); + x_39 = lean_box(0); +} +if (lean_is_scalar(x_39)) { + x_40 = lean_alloc_ctor(0, 2, 0); +} else { + x_40 = x_39; +} +lean_ctor_set(x_40, 0, x_37); +lean_ctor_set(x_40, 1, x_38); +return x_40; +} +else +{ +lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; +x_41 = lean_ctor_get(x_36, 0); +lean_inc(x_41); +x_42 = lean_ctor_get(x_36, 1); +lean_inc(x_42); +if (lean_is_exclusive(x_36)) { + lean_ctor_release(x_36, 0); + lean_ctor_release(x_36, 1); + x_43 = x_36; +} else { + lean_dec_ref(x_36); + x_43 = lean_box(0); +} +if (lean_is_scalar(x_43)) { + x_44 = lean_alloc_ctor(1, 2, 0); +} else { + x_44 = x_43; +} +lean_ctor_set(x_44, 0, x_41); +lean_ctor_set(x_44, 1, x_42); +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; uint8_t x_51; uint8_t x_52; uint8_t x_53; uint8_t x_54; uint8_t x_55; uint8_t x_56; uint8_t x_57; uint8_t x_58; uint8_t x_59; uint8_t x_60; uint8_t x_61; lean_object* x_62; uint8_t x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; +x_45 = lean_ctor_get(x_3, 0); +x_46 = lean_ctor_get(x_3, 1); +x_47 = lean_ctor_get(x_3, 2); +x_48 = lean_ctor_get(x_3, 3); +x_49 = lean_ctor_get(x_3, 4); +x_50 = lean_ctor_get(x_3, 5); +lean_inc(x_50); +lean_inc(x_49); +lean_inc(x_48); +lean_inc(x_47); +lean_inc(x_46); +lean_inc(x_45); +lean_dec(x_3); +x_51 = lean_ctor_get_uint8(x_45, 0); +x_52 = lean_ctor_get_uint8(x_45, 1); +x_53 = lean_ctor_get_uint8(x_45, 2); +x_54 = lean_ctor_get_uint8(x_45, 3); +x_55 = lean_ctor_get_uint8(x_45, 4); +x_56 = lean_ctor_get_uint8(x_45, 5); +x_57 = lean_ctor_get_uint8(x_45, 6); +x_58 = lean_ctor_get_uint8(x_45, 7); +x_59 = lean_ctor_get_uint8(x_45, 8); +x_60 = lean_ctor_get_uint8(x_45, 10); +x_61 = lean_ctor_get_uint8(x_45, 11); +if (lean_is_exclusive(x_45)) { + x_62 = x_45; +} else { + lean_dec_ref(x_45); + x_62 = lean_box(0); +} +x_63 = 2; +if (lean_is_scalar(x_62)) { + x_64 = lean_alloc_ctor(0, 0, 12); +} else { + x_64 = x_62; +} +lean_ctor_set_uint8(x_64, 0, x_51); +lean_ctor_set_uint8(x_64, 1, x_52); +lean_ctor_set_uint8(x_64, 2, x_53); +lean_ctor_set_uint8(x_64, 3, x_54); +lean_ctor_set_uint8(x_64, 4, x_55); +lean_ctor_set_uint8(x_64, 5, x_56); +lean_ctor_set_uint8(x_64, 6, x_57); +lean_ctor_set_uint8(x_64, 7, x_58); +lean_ctor_set_uint8(x_64, 8, x_59); +lean_ctor_set_uint8(x_64, 9, x_63); +lean_ctor_set_uint8(x_64, 10, x_60); +lean_ctor_set_uint8(x_64, 11, x_61); +x_65 = lean_alloc_ctor(0, 6, 0); +lean_ctor_set(x_65, 0, x_64); +lean_ctor_set(x_65, 1, x_46); +lean_ctor_set(x_65, 2, x_47); +lean_ctor_set(x_65, 3, x_48); +lean_ctor_set(x_65, 4, x_49); +lean_ctor_set(x_65, 5, x_50); +x_66 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_runMatch___rarg(x_1, x_9, x_65, x_4, x_5, x_6, x_7); +if (lean_obj_tag(x_66) == 0) +{ +lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; +x_67 = lean_ctor_get(x_66, 0); +lean_inc(x_67); +x_68 = lean_ctor_get(x_66, 1); +lean_inc(x_68); +if (lean_is_exclusive(x_66)) { + lean_ctor_release(x_66, 0); + lean_ctor_release(x_66, 1); + x_69 = x_66; +} else { + lean_dec_ref(x_66); + x_69 = lean_box(0); +} +if (lean_is_scalar(x_69)) { + x_70 = lean_alloc_ctor(0, 2, 0); +} else { + x_70 = x_69; +} +lean_ctor_set(x_70, 0, x_67); +lean_ctor_set(x_70, 1, x_68); +return x_70; +} +else +{ +lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; +x_71 = lean_ctor_get(x_66, 0); +lean_inc(x_71); +x_72 = lean_ctor_get(x_66, 1); +lean_inc(x_72); +if (lean_is_exclusive(x_66)) { + lean_ctor_release(x_66, 0); + lean_ctor_release(x_66, 1); + x_73 = x_66; +} else { + lean_dec_ref(x_66); + x_73 = lean_box(0); +} +if (lean_is_scalar(x_73)) { + x_74 = lean_alloc_ctor(1, 2, 0); +} else { + x_74 = x_73; +} +lean_ctor_set(x_74, 0, x_71); +lean_ctor_set(x_74, 1, x_72); +return x_74; +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_LazyDiscrTree_getMatch(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = lean_alloc_closure((void*)(l_Lean_Meta_LazyDiscrTree_getMatch___rarg), 7, 0); +return x_2; +} +} +LEAN_EXPORT lean_object* l_Lean_mkHashMap___at___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_PreDiscrTree_roots___default___spec__1(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = l_Lean_mkHashMapImp___rarg(x_1); +return x_2; +} +} +static lean_object* _init_l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_PreDiscrTree_roots___default() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = lean_unsigned_to_nat(8u); +x_2 = l_Lean_mkHashMapImp___rarg(x_1); +return x_2; +} +} +LEAN_EXPORT lean_object* l_Lean_mkHashMap___at___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_PreDiscrTree_roots___default___spec__1___boxed(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = l_Lean_mkHashMap___at___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_PreDiscrTree_roots___default___spec__1(x_1); +lean_dec(x_1); +return x_2; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_PreDiscrTree_tries___default(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_getKeyArgs___lambda__2___closed__2; +return x_2; +} +} +static lean_object* _init_l_Lean_Meta_LazyDiscrTree_instInhabitedPreDiscrTree___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Meta_LazyDiscrTree_instEmptyCollectionTrie___closed__1; +x_2 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_getKeyArgs___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_Meta_LazyDiscrTree_instInhabitedPreDiscrTree(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = l_Lean_Meta_LazyDiscrTree_instInhabitedPreDiscrTree___closed__1; +return x_2; +} +} +LEAN_EXPORT lean_object* l_Lean_AssocList_find_x3f___at___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_PreDiscrTree_modifyAt___spec__2(lean_object* x_1, lean_object* x_2) { +_start: +{ +if (lean_obj_tag(x_2) == 0) +{ +lean_object* x_3; +x_3 = lean_box(0); +return x_3; +} +else +{ +lean_object* x_4; lean_object* x_5; lean_object* x_6; uint8_t x_7; +x_4 = lean_ctor_get(x_2, 0); +x_5 = lean_ctor_get(x_2, 1); +x_6 = lean_ctor_get(x_2, 2); +x_7 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_beqKey____x40_Lean_Meta_LazyDiscrTree___hyg_99_(x_4, x_1); +if (x_7 == 0) +{ +x_2 = x_6; +goto _start; +} +else +{ +lean_object* x_9; +lean_inc(x_5); +x_9 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_9, 0, x_5); +return x_9; +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_HashMapImp_find_x3f___at___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_PreDiscrTree_modifyAt___spec__1(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; lean_object* x_4; uint64_t x_5; size_t x_6; lean_object* x_7; lean_object* x_8; +x_3 = lean_ctor_get(x_1, 1); +lean_inc(x_3); +lean_dec(x_1); +x_4 = lean_array_get_size(x_3); +x_5 = l_Lean_Meta_LazyDiscrTree_MatchClone_Key_hash(x_2); +x_6 = lean_hashmap_mk_idx(x_4, x_5); +x_7 = lean_array_uget(x_3, x_6); +lean_dec(x_3); +x_8 = l_Lean_AssocList_find_x3f___at___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_PreDiscrTree_modifyAt___spec__2(x_2, x_7); +lean_dec(x_7); +lean_dec(x_2); +return x_8; +} +} +LEAN_EXPORT uint8_t l_Lean_AssocList_contains___at___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_PreDiscrTree_modifyAt___spec__4(lean_object* x_1, lean_object* x_2) { +_start: +{ +if (lean_obj_tag(x_2) == 0) +{ +uint8_t x_3; +x_3 = 0; +return x_3; +} +else +{ +lean_object* x_4; lean_object* x_5; uint8_t x_6; +x_4 = lean_ctor_get(x_2, 0); +x_5 = lean_ctor_get(x_2, 2); +x_6 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_beqKey____x40_Lean_Meta_LazyDiscrTree___hyg_99_(x_4, x_1); +if (x_6 == 0) +{ +x_2 = x_5; +goto _start; +} +else +{ +uint8_t x_8; +x_8 = 1; +return x_8; +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_AssocList_foldlM___at___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_PreDiscrTree_modifyAt___spec__7(lean_object* x_1, lean_object* x_2) { +_start: +{ +if (lean_obj_tag(x_2) == 0) +{ +return x_1; +} +else +{ +uint8_t x_3; +x_3 = !lean_is_exclusive(x_2); +if (x_3 == 0) +{ +lean_object* x_4; lean_object* x_5; lean_object* x_6; uint64_t x_7; size_t x_8; lean_object* x_9; lean_object* x_10; +x_4 = lean_ctor_get(x_2, 0); +x_5 = lean_ctor_get(x_2, 2); +x_6 = lean_array_get_size(x_1); +x_7 = l_Lean_Meta_LazyDiscrTree_MatchClone_Key_hash(x_4); +x_8 = lean_hashmap_mk_idx(x_6, x_7); +x_9 = lean_array_uget(x_1, x_8); +lean_ctor_set(x_2, 2, x_9); +x_10 = lean_array_uset(x_1, x_8, x_2); +x_1 = x_10; +x_2 = x_5; +goto _start; +} +else +{ +lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; uint64_t x_16; size_t x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; +x_12 = lean_ctor_get(x_2, 0); +x_13 = lean_ctor_get(x_2, 1); +x_14 = lean_ctor_get(x_2, 2); +lean_inc(x_14); +lean_inc(x_13); +lean_inc(x_12); +lean_dec(x_2); +x_15 = lean_array_get_size(x_1); +x_16 = l_Lean_Meta_LazyDiscrTree_MatchClone_Key_hash(x_12); +x_17 = lean_hashmap_mk_idx(x_15, x_16); +x_18 = lean_array_uget(x_1, x_17); +x_19 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_19, 0, x_12); +lean_ctor_set(x_19, 1, x_13); +lean_ctor_set(x_19, 2, x_18); +x_20 = lean_array_uset(x_1, x_17, x_19); +x_1 = x_20; +x_2 = x_14; +goto _start; +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_HashMapImp_moveEntries___at___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_PreDiscrTree_modifyAt___spec__6(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +lean_object* x_4; uint8_t x_5; +x_4 = lean_array_get_size(x_2); +x_5 = lean_nat_dec_lt(x_1, x_4); +lean_dec(x_4); +if (x_5 == 0) +{ +lean_dec(x_2); +lean_dec(x_1); +return x_3; +} +else +{ +lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; +x_6 = lean_array_fget(x_2, x_1); +x_7 = lean_box(0); +x_8 = lean_array_fset(x_2, x_1, x_7); +x_9 = l_Lean_AssocList_foldlM___at___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_PreDiscrTree_modifyAt___spec__7(x_3, x_6); +x_10 = lean_unsigned_to_nat(1u); +x_11 = lean_nat_add(x_1, x_10); +lean_dec(x_1); +x_1 = x_11; +x_2 = x_8; +x_3 = x_9; +goto _start; +} +} +} +LEAN_EXPORT lean_object* l_Lean_HashMapImp_expand___at___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_PreDiscrTree_modifyAt___spec__5(lean_object* x_1, lean_object* x_2) { +_start: +{ +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; +x_3 = lean_array_get_size(x_2); +x_4 = lean_unsigned_to_nat(2u); +x_5 = lean_nat_mul(x_3, x_4); +lean_dec(x_3); +x_6 = lean_box(0); +x_7 = lean_mk_array(x_5, x_6); +x_8 = lean_unsigned_to_nat(0u); +x_9 = l_Lean_HashMapImp_moveEntries___at___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_PreDiscrTree_modifyAt___spec__6(x_8, x_2, x_7); +x_10 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_10, 0, x_1); +lean_ctor_set(x_10, 1, x_9); +return x_10; +} +} +LEAN_EXPORT lean_object* l_Lean_AssocList_replace___at___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_PreDiscrTree_modifyAt___spec__8(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +if (lean_obj_tag(x_3) == 0) +{ +lean_object* x_4; +lean_dec(x_2); +lean_dec(x_1); +x_4 = lean_box(0); +return x_4; +} +else +{ +uint8_t x_5; +x_5 = !lean_is_exclusive(x_3); +if (x_5 == 0) +{ +lean_object* x_6; lean_object* x_7; lean_object* x_8; uint8_t x_9; +x_6 = lean_ctor_get(x_3, 0); +x_7 = lean_ctor_get(x_3, 1); +x_8 = lean_ctor_get(x_3, 2); +x_9 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_beqKey____x40_Lean_Meta_LazyDiscrTree___hyg_99_(x_6, x_1); +if (x_9 == 0) +{ +lean_object* x_10; +x_10 = l_Lean_AssocList_replace___at___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_PreDiscrTree_modifyAt___spec__8(x_1, x_2, x_8); +lean_ctor_set(x_3, 2, x_10); +return x_3; +} +else +{ +lean_dec(x_7); +lean_dec(x_6); +lean_ctor_set(x_3, 1, x_2); +lean_ctor_set(x_3, 0, x_1); +return x_3; +} +} +else +{ +lean_object* x_11; lean_object* x_12; lean_object* x_13; uint8_t x_14; +x_11 = lean_ctor_get(x_3, 0); +x_12 = lean_ctor_get(x_3, 1); +x_13 = lean_ctor_get(x_3, 2); +lean_inc(x_13); +lean_inc(x_12); +lean_inc(x_11); +lean_dec(x_3); +x_14 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_beqKey____x40_Lean_Meta_LazyDiscrTree___hyg_99_(x_11, x_1); +if (x_14 == 0) +{ +lean_object* x_15; lean_object* x_16; +x_15 = l_Lean_AssocList_replace___at___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_PreDiscrTree_modifyAt___spec__8(x_1, x_2, x_13); +x_16 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_16, 0, x_11); +lean_ctor_set(x_16, 1, x_12); +lean_ctor_set(x_16, 2, x_15); +return x_16; +} +else +{ +lean_object* x_17; +lean_dec(x_12); +lean_dec(x_11); +x_17 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_17, 0, x_1); +lean_ctor_set(x_17, 1, x_2); +lean_ctor_set(x_17, 2, x_13); +return x_17; +} +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_HashMap_insert___at___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_PreDiscrTree_modifyAt___spec__3(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +uint8_t x_4; +x_4 = !lean_is_exclusive(x_1); +if (x_4 == 0) +{ +lean_object* x_5; lean_object* x_6; lean_object* x_7; uint64_t x_8; size_t x_9; lean_object* x_10; uint8_t x_11; +x_5 = lean_ctor_get(x_1, 0); +x_6 = lean_ctor_get(x_1, 1); +x_7 = lean_array_get_size(x_6); +x_8 = l_Lean_Meta_LazyDiscrTree_MatchClone_Key_hash(x_2); +lean_inc(x_7); +x_9 = lean_hashmap_mk_idx(x_7, x_8); +x_10 = lean_array_uget(x_6, x_9); +x_11 = l_Lean_AssocList_contains___at___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_PreDiscrTree_modifyAt___spec__4(x_2, x_10); +if (x_11 == 0) +{ +lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; uint8_t x_17; +x_12 = lean_unsigned_to_nat(1u); +x_13 = lean_nat_add(x_5, x_12); +lean_dec(x_5); +x_14 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_14, 0, x_2); +lean_ctor_set(x_14, 1, x_3); +lean_ctor_set(x_14, 2, x_10); +x_15 = lean_array_uset(x_6, x_9, x_14); +x_16 = l___private_Lean_Data_HashMap_0__Lean_numBucketsForCapacity(x_13); +x_17 = lean_nat_dec_le(x_16, x_7); +lean_dec(x_7); +lean_dec(x_16); +if (x_17 == 0) +{ +lean_object* x_18; +lean_free_object(x_1); +x_18 = l_Lean_HashMapImp_expand___at___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_PreDiscrTree_modifyAt___spec__5(x_13, x_15); +return x_18; +} +else +{ +lean_ctor_set(x_1, 1, x_15); +lean_ctor_set(x_1, 0, x_13); +return x_1; +} +} +else +{ +lean_object* x_19; lean_object* x_20; +lean_dec(x_7); +x_19 = l_Lean_AssocList_replace___at___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_PreDiscrTree_modifyAt___spec__8(x_2, x_3, x_10); +x_20 = lean_array_uset(x_6, x_9, x_19); +lean_ctor_set(x_1, 1, x_20); +return x_1; +} +} +else +{ +lean_object* x_21; lean_object* x_22; lean_object* x_23; uint64_t x_24; size_t x_25; lean_object* x_26; uint8_t x_27; +x_21 = lean_ctor_get(x_1, 0); +x_22 = lean_ctor_get(x_1, 1); +lean_inc(x_22); +lean_inc(x_21); +lean_dec(x_1); +x_23 = lean_array_get_size(x_22); +x_24 = l_Lean_Meta_LazyDiscrTree_MatchClone_Key_hash(x_2); +lean_inc(x_23); +x_25 = lean_hashmap_mk_idx(x_23, x_24); +x_26 = lean_array_uget(x_22, x_25); +x_27 = l_Lean_AssocList_contains___at___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_PreDiscrTree_modifyAt___spec__4(x_2, x_26); +if (x_27 == 0) +{ +lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; uint8_t x_33; +x_28 = lean_unsigned_to_nat(1u); +x_29 = lean_nat_add(x_21, x_28); +lean_dec(x_21); +x_30 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_30, 0, x_2); +lean_ctor_set(x_30, 1, x_3); +lean_ctor_set(x_30, 2, x_26); +x_31 = lean_array_uset(x_22, x_25, x_30); +x_32 = l___private_Lean_Data_HashMap_0__Lean_numBucketsForCapacity(x_29); +x_33 = lean_nat_dec_le(x_32, x_23); +lean_dec(x_23); +lean_dec(x_32); +if (x_33 == 0) +{ +lean_object* x_34; +x_34 = l_Lean_HashMapImp_expand___at___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_PreDiscrTree_modifyAt___spec__5(x_29, x_31); +return x_34; +} +else +{ +lean_object* x_35; +x_35 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_35, 0, x_29); +lean_ctor_set(x_35, 1, x_31); +return x_35; +} +} +else +{ +lean_object* x_36; lean_object* x_37; lean_object* x_38; +lean_dec(x_23); +x_36 = l_Lean_AssocList_replace___at___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_PreDiscrTree_modifyAt___spec__8(x_2, x_3, x_26); +x_37 = lean_array_uset(x_22, x_25, x_36); +x_38 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_38, 0, x_21); +lean_ctor_set(x_38, 1, x_37); +return x_38; +} +} +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_PreDiscrTree_modifyAt___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +uint8_t x_4; +x_4 = !lean_is_exclusive(x_1); +if (x_4 == 0) +{ +lean_object* x_5; lean_object* x_6; lean_object* x_7; +x_5 = lean_ctor_get(x_1, 0); +x_6 = lean_ctor_get(x_1, 1); +lean_inc(x_2); +lean_inc(x_5); +x_7 = l_Lean_HashMapImp_find_x3f___at___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_PreDiscrTree_modifyAt___spec__1(x_5, x_2); +if (lean_obj_tag(x_7) == 0) +{ +lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; +x_8 = lean_array_get_size(x_6); +x_9 = l_Lean_HashMap_insert___at___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_PreDiscrTree_modifyAt___spec__3(x_5, x_2, x_8); +x_10 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_getKeyArgs___lambda__2___closed__2; +x_11 = lean_apply_1(x_3, x_10); +x_12 = lean_array_push(x_6, x_11); +lean_ctor_set(x_1, 1, x_12); +lean_ctor_set(x_1, 0, x_9); +return x_1; +} +else +{ +lean_object* x_13; lean_object* x_14; uint8_t x_15; +lean_dec(x_2); +x_13 = lean_ctor_get(x_7, 0); +lean_inc(x_13); +lean_dec(x_7); +x_14 = lean_array_get_size(x_6); +x_15 = lean_nat_dec_lt(x_13, x_14); +lean_dec(x_14); +if (x_15 == 0) +{ +lean_dec(x_13); +lean_dec(x_3); +return x_1; +} +else +{ +lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; +x_16 = lean_array_fget(x_6, x_13); +x_17 = lean_box(0); +x_18 = lean_array_fset(x_6, x_13, x_17); +x_19 = lean_apply_1(x_3, x_16); +x_20 = lean_array_fset(x_18, x_13, x_19); +lean_dec(x_13); +lean_ctor_set(x_1, 1, x_20); +return x_1; +} +} +} +else +{ +lean_object* x_21; lean_object* x_22; lean_object* x_23; +x_21 = lean_ctor_get(x_1, 0); +x_22 = lean_ctor_get(x_1, 1); +lean_inc(x_22); +lean_inc(x_21); +lean_dec(x_1); +lean_inc(x_2); +lean_inc(x_21); +x_23 = l_Lean_HashMapImp_find_x3f___at___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_PreDiscrTree_modifyAt___spec__1(x_21, x_2); +if (lean_obj_tag(x_23) == 0) +{ +lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; +x_24 = lean_array_get_size(x_22); +x_25 = l_Lean_HashMap_insert___at___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_PreDiscrTree_modifyAt___spec__3(x_21, x_2, x_24); +x_26 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_getKeyArgs___lambda__2___closed__2; +x_27 = lean_apply_1(x_3, x_26); +x_28 = lean_array_push(x_22, x_27); +x_29 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_29, 0, x_25); +lean_ctor_set(x_29, 1, x_28); +return x_29; +} +else +{ +lean_object* x_30; lean_object* x_31; uint8_t x_32; +lean_dec(x_2); +x_30 = lean_ctor_get(x_23, 0); +lean_inc(x_30); +lean_dec(x_23); +x_31 = lean_array_get_size(x_22); +x_32 = lean_nat_dec_lt(x_30, x_31); +lean_dec(x_31); +if (x_32 == 0) +{ +lean_object* x_33; +lean_dec(x_30); +lean_dec(x_3); +x_33 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_33, 0, x_21); +lean_ctor_set(x_33, 1, x_22); +return x_33; +} +else +{ +lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; +x_34 = lean_array_fget(x_22, x_30); +x_35 = lean_box(0); +x_36 = lean_array_fset(x_22, x_30, x_35); +x_37 = lean_apply_1(x_3, x_34); +x_38 = lean_array_fset(x_36, x_30, x_37); +lean_dec(x_30); +x_39 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_39, 0, x_21); +lean_ctor_set(x_39, 1, x_38); +return x_39; +} +} +} +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_PreDiscrTree_modifyAt(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = lean_alloc_closure((void*)(l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_PreDiscrTree_modifyAt___rarg), 3, 0); +return x_2; +} +} +LEAN_EXPORT lean_object* l_Lean_AssocList_find_x3f___at___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_PreDiscrTree_modifyAt___spec__2___boxed(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; +x_3 = l_Lean_AssocList_find_x3f___at___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_PreDiscrTree_modifyAt___spec__2(x_1, x_2); +lean_dec(x_2); +lean_dec(x_1); +return x_3; +} +} +LEAN_EXPORT lean_object* l_Lean_AssocList_contains___at___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_PreDiscrTree_modifyAt___spec__4___boxed(lean_object* x_1, lean_object* x_2) { +_start: +{ +uint8_t x_3; lean_object* x_4; +x_3 = l_Lean_AssocList_contains___at___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_PreDiscrTree_modifyAt___spec__4(x_1, x_2); +lean_dec(x_2); +lean_dec(x_1); +x_4 = lean_box(x_3); +return x_4; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_PreDiscrTree_push___rarg___lambda__1(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; +x_3 = lean_array_push(x_2, x_1); +return x_3; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_PreDiscrTree_push___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +lean_object* x_4; lean_object* x_5; +x_4 = lean_alloc_closure((void*)(l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_PreDiscrTree_push___rarg___lambda__1), 2, 1); +lean_closure_set(x_4, 0, x_3); +x_5 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_PreDiscrTree_modifyAt___rarg(x_1, x_2, x_4); +return x_5; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_PreDiscrTree_push(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = lean_alloc_closure((void*)(l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_PreDiscrTree_push___rarg), 3, 0); +return x_2; +} +} +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_PreDiscrTree_toLazy___spec__1___rarg(size_t x_1, size_t x_2, lean_object* x_3) { +_start: +{ +uint8_t x_4; +x_4 = lean_usize_dec_lt(x_2, x_1); +if (x_4 == 0) +{ +return x_3; +} +else +{ +lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; size_t x_11; size_t x_12; lean_object* x_13; +x_5 = lean_array_uget(x_3, x_2); +x_6 = lean_unsigned_to_nat(0u); +x_7 = lean_array_uset(x_3, x_2, x_6); +x_8 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_getKeyArgs___lambda__2___closed__2; +x_9 = l_Lean_Meta_LazyDiscrTree_instEmptyCollectionTrie___closed__1; +x_10 = lean_alloc_ctor(0, 4, 0); +lean_ctor_set(x_10, 0, x_8); +lean_ctor_set(x_10, 1, x_6); +lean_ctor_set(x_10, 2, x_9); +lean_ctor_set(x_10, 3, x_5); +x_11 = 1; +x_12 = lean_usize_add(x_2, x_11); +x_13 = lean_array_uset(x_7, x_2, x_10); +x_2 = x_12; +x_3 = x_13; +goto _start; +} +} +} +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_PreDiscrTree_toLazy___spec__1(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = lean_alloc_closure((void*)(l_Array_mapMUnsafe_map___at___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_PreDiscrTree_toLazy___spec__1___rarg___boxed), 3, 0); +return x_2; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_PreDiscrTree_toLazy___rarg(lean_object* x_1, lean_object* x_2) { +_start: +{ +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; +x_3 = lean_ctor_get(x_1, 0); +lean_inc(x_3); +x_4 = lean_ctor_get(x_1, 1); +lean_inc(x_4); +lean_dec(x_1); +x_5 = lean_array_get_size(x_4); +x_6 = lean_usize_of_nat(x_5); +lean_dec(x_5); +x_7 = 0; +x_8 = l_Array_mapMUnsafe_map___at___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_PreDiscrTree_toLazy___spec__1___rarg(x_6, x_7, x_4); +x_9 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_9, 0, x_2); +lean_ctor_set(x_9, 1, x_8); +lean_ctor_set(x_9, 2, x_3); +return x_9; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_PreDiscrTree_toLazy(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = lean_alloc_closure((void*)(l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_PreDiscrTree_toLazy___rarg), 2, 0); +return x_2; +} +} +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_PreDiscrTree_toLazy___spec__1___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +size_t x_4; size_t x_5; lean_object* x_6; +x_4 = lean_unbox_usize(x_1); +lean_dec(x_1); +x_5 = lean_unbox_usize(x_2); +lean_dec(x_2); +x_6 = l_Array_mapMUnsafe_map___at___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_PreDiscrTree_toLazy___spec__1___rarg(x_4, x_5, x_3); +return x_6; +} +} +LEAN_EXPORT lean_object* l_Lean_AssocList_foldlM___at_Lean_Meta_LazyDiscrTree_PreDiscrTree_append___spec__1___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +_start: +{ +if (lean_obj_tag(x_4) == 0) +{ +lean_dec(x_1); +return x_3; +} +else +{ +lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; uint8_t x_9; +x_5 = lean_ctor_get(x_4, 0); +lean_inc(x_5); +x_6 = lean_ctor_get(x_4, 1); +lean_inc(x_6); +x_7 = lean_ctor_get(x_4, 2); +lean_inc(x_7); +lean_dec(x_4); +x_8 = lean_array_get_size(x_2); +x_9 = lean_nat_dec_lt(x_6, x_8); +lean_dec(x_8); +if (x_9 == 0) +{ +lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; +lean_dec(x_6); +x_10 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_getKeyArgs___lambda__2___closed__2; +x_11 = l___private_Init_Util_0__outOfBounds___rarg(x_10); +lean_inc(x_1); +x_12 = lean_apply_1(x_1, x_11); +x_13 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_PreDiscrTree_modifyAt___rarg(x_3, x_5, x_12); +x_3 = x_13; +x_4 = x_7; +goto _start; +} +else +{ +lean_object* x_15; lean_object* x_16; lean_object* x_17; +x_15 = lean_array_fget(x_2, x_6); +lean_dec(x_6); +lean_inc(x_1); +x_16 = lean_apply_1(x_1, x_15); +x_17 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_PreDiscrTree_modifyAt___rarg(x_3, x_5, x_16); +x_3 = x_17; +x_4 = x_7; +goto _start; +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_AssocList_foldlM___at_Lean_Meta_LazyDiscrTree_PreDiscrTree_append___spec__1(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = lean_alloc_closure((void*)(l_Lean_AssocList_foldlM___at_Lean_Meta_LazyDiscrTree_PreDiscrTree_append___spec__1___rarg___boxed), 4, 0); +return x_2; +} +} +LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Meta_LazyDiscrTree_PreDiscrTree_append___spec__2___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, size_t x_4, size_t x_5, lean_object* x_6) { +_start: +{ +uint8_t x_7; +x_7 = lean_usize_dec_eq(x_4, x_5); +if (x_7 == 0) +{ +lean_object* x_8; lean_object* x_9; size_t x_10; size_t x_11; +x_8 = lean_array_uget(x_3, x_4); +lean_inc(x_1); +x_9 = l_Lean_AssocList_foldlM___at_Lean_Meta_LazyDiscrTree_PreDiscrTree_append___spec__1___rarg(x_1, x_2, x_6, x_8); +x_10 = 1; +x_11 = lean_usize_add(x_4, x_10); +x_4 = x_11; +x_6 = x_9; +goto _start; +} +else +{ +lean_dec(x_1); +return x_6; +} +} +} +LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Meta_LazyDiscrTree_PreDiscrTree_append___spec__2(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = lean_alloc_closure((void*)(l_Array_foldlMUnsafe_fold___at_Lean_Meta_LazyDiscrTree_PreDiscrTree_append___spec__2___rarg___boxed), 6, 0); +return x_2; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_LazyDiscrTree_PreDiscrTree_append___rarg___lambda__1(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; +x_3 = l_Array_append___rarg(x_2, x_1); +return x_3; +} +} +static lean_object* _init_l_Lean_Meta_LazyDiscrTree_PreDiscrTree_append___rarg___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Array_append___rarg), 2, 0); +return x_1; +} +} +static lean_object* _init_l_Lean_Meta_LazyDiscrTree_PreDiscrTree_append___rarg___closed__2() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Meta_LazyDiscrTree_PreDiscrTree_append___rarg___lambda__1), 2, 0); +return x_1; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_LazyDiscrTree_PreDiscrTree_append___rarg(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; lean_object* x_4; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; uint8_t x_22; +x_18 = lean_ctor_get(x_2, 0); +lean_inc(x_18); +x_19 = lean_ctor_get(x_1, 0); +lean_inc(x_19); +x_20 = lean_ctor_get(x_18, 0); +lean_inc(x_20); +lean_dec(x_18); +x_21 = lean_ctor_get(x_19, 0); +lean_inc(x_21); +lean_dec(x_19); +x_22 = lean_nat_dec_le(x_20, x_21); +lean_dec(x_21); +lean_dec(x_20); +if (x_22 == 0) +{ +lean_object* x_23; lean_object* x_24; +x_23 = l_Lean_Meta_LazyDiscrTree_PreDiscrTree_append___rarg___closed__1; +x_24 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_24, 0, x_1); +lean_ctor_set(x_24, 1, x_23); +x_3 = x_2; +x_4 = x_24; +goto block_17; +} +else +{ +lean_object* x_25; lean_object* x_26; +x_25 = l_Lean_Meta_LazyDiscrTree_PreDiscrTree_append___rarg___closed__2; +x_26 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_26, 0, x_2); +lean_ctor_set(x_26, 1, x_25); +x_3 = x_1; +x_4 = x_26; +goto block_17; +} +block_17: +{ +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; +x_5 = lean_ctor_get(x_4, 0); +lean_inc(x_5); +x_6 = lean_ctor_get(x_4, 1); +lean_inc(x_6); +lean_dec(x_4); +x_7 = lean_ctor_get(x_5, 0); +lean_inc(x_7); +x_8 = lean_ctor_get(x_5, 1); +lean_inc(x_8); +lean_dec(x_5); +x_9 = lean_ctor_get(x_7, 1); +lean_inc(x_9); +lean_dec(x_7); +x_10 = lean_array_get_size(x_9); +x_11 = lean_unsigned_to_nat(0u); +x_12 = lean_nat_dec_lt(x_11, x_10); +if (x_12 == 0) +{ +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_6); +return x_3; +} +else +{ +uint8_t x_13; +x_13 = lean_nat_dec_le(x_10, x_10); +if (x_13 == 0) +{ +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_6); +return x_3; +} +else +{ +size_t x_14; size_t x_15; lean_object* x_16; +x_14 = 0; +x_15 = lean_usize_of_nat(x_10); +lean_dec(x_10); +x_16 = l_Array_foldlMUnsafe_fold___at_Lean_Meta_LazyDiscrTree_PreDiscrTree_append___spec__2___rarg(x_6, x_8, x_9, x_14, x_15, x_3); +lean_dec(x_9); +lean_dec(x_8); +return x_16; +} +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_LazyDiscrTree_PreDiscrTree_append(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = lean_alloc_closure((void*)(l_Lean_Meta_LazyDiscrTree_PreDiscrTree_append___rarg), 2, 0); +return x_2; +} +} +LEAN_EXPORT lean_object* l_Lean_AssocList_foldlM___at_Lean_Meta_LazyDiscrTree_PreDiscrTree_append___spec__1___rarg___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_AssocList_foldlM___at_Lean_Meta_LazyDiscrTree_PreDiscrTree_append___spec__1___rarg(x_1, x_2, x_3, x_4); +lean_dec(x_2); +return x_5; +} +} +LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Meta_LazyDiscrTree_PreDiscrTree_append___spec__2___rarg___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: +{ +size_t x_7; size_t x_8; lean_object* x_9; +x_7 = lean_unbox_usize(x_4); +lean_dec(x_4); +x_8 = lean_unbox_usize(x_5); +lean_dec(x_5); +x_9 = l_Array_foldlMUnsafe_fold___at_Lean_Meta_LazyDiscrTree_PreDiscrTree_append___spec__2___rarg(x_1, x_2, x_3, x_7, x_8, x_6); +lean_dec(x_3); +lean_dec(x_2); +return x_9; +} +} +static lean_object* _init_l_Lean_Meta_LazyDiscrTree_PreDiscrTree_instAppendPreDiscrTree___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Meta_LazyDiscrTree_PreDiscrTree_append___rarg), 2, 0); +return x_1; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_LazyDiscrTree_PreDiscrTree_instAppendPreDiscrTree(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = l_Lean_Meta_LazyDiscrTree_PreDiscrTree_instAppendPreDiscrTree___closed__1; +return x_2; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_LazyDiscrTree_InitEntry_fromExpr___rarg(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) { +_start: +{ +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_9 = lean_ctor_get(x_4, 1); +lean_inc(x_9); +x_10 = l_Lean_Meta_getLocalInstances(x_4, x_5, x_6, x_7, x_8); +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 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_13, 0, x_9); +lean_ctor_set(x_13, 1, x_11); +x_14 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_rootKey(x_3, x_1, x_4, x_5, x_6, x_7, x_12); +if (lean_obj_tag(x_14) == 0) +{ +uint8_t x_15; +x_15 = !lean_is_exclusive(x_14); +if (x_15 == 0) +{ +lean_object* x_16; uint8_t x_17; +x_16 = lean_ctor_get(x_14, 0); +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; +x_18 = lean_ctor_get(x_16, 0); +x_19 = lean_ctor_get(x_16, 1); +lean_ctor_set(x_16, 1, x_2); +lean_ctor_set(x_16, 0, x_13); +x_20 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_20, 0, x_19); +lean_ctor_set(x_20, 1, x_16); +x_21 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_21, 0, x_18); +lean_ctor_set(x_21, 1, x_20); +lean_ctor_set(x_14, 0, x_21); +return x_14; +} +else +{ +lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; +x_22 = lean_ctor_get(x_16, 0); +x_23 = lean_ctor_get(x_16, 1); +lean_inc(x_23); +lean_inc(x_22); +lean_dec(x_16); +x_24 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_24, 0, x_13); +lean_ctor_set(x_24, 1, x_2); +x_25 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_25, 0, x_23); +lean_ctor_set(x_25, 1, x_24); +x_26 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_26, 0, x_22); +lean_ctor_set(x_26, 1, x_25); +lean_ctor_set(x_14, 0, x_26); +return x_14; +} +} +else +{ +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; +x_27 = lean_ctor_get(x_14, 0); +x_28 = lean_ctor_get(x_14, 1); +lean_inc(x_28); +lean_inc(x_27); +lean_dec(x_14); +x_29 = lean_ctor_get(x_27, 0); +lean_inc(x_29); +x_30 = lean_ctor_get(x_27, 1); +lean_inc(x_30); +if (lean_is_exclusive(x_27)) { + lean_ctor_release(x_27, 0); + lean_ctor_release(x_27, 1); + x_31 = x_27; +} else { + lean_dec_ref(x_27); + x_31 = lean_box(0); +} +if (lean_is_scalar(x_31)) { + x_32 = lean_alloc_ctor(0, 2, 0); +} else { + x_32 = x_31; +} +lean_ctor_set(x_32, 0, x_13); +lean_ctor_set(x_32, 1, x_2); +x_33 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_33, 0, x_30); +lean_ctor_set(x_33, 1, x_32); +x_34 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_34, 0, x_29); +lean_ctor_set(x_34, 1, x_33); +x_35 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_35, 0, x_34); +lean_ctor_set(x_35, 1, x_28); +return x_35; +} +} +else +{ +uint8_t x_36; +lean_dec(x_13); +lean_dec(x_2); +x_36 = !lean_is_exclusive(x_14); +if (x_36 == 0) +{ +return x_14; +} +else +{ +lean_object* x_37; lean_object* x_38; lean_object* x_39; +x_37 = lean_ctor_get(x_14, 0); +x_38 = lean_ctor_get(x_14, 1); +lean_inc(x_38); +lean_inc(x_37); +lean_dec(x_14); +x_39 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_39, 0, x_37); +lean_ctor_set(x_39, 1, x_38); +return x_39; +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_LazyDiscrTree_InitEntry_fromExpr(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = lean_alloc_closure((void*)(l_Lean_Meta_LazyDiscrTree_InitEntry_fromExpr___rarg), 8, 0); +return x_2; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_LazyDiscrTree_InitEntry_mkSubEntry___rarg(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; uint8_t x_13; +x_10 = lean_ctor_get(x_1, 1); +lean_inc(x_10); +lean_dec(x_1); +x_11 = lean_ctor_get(x_10, 1); +lean_inc(x_11); +x_12 = lean_ctor_get(x_10, 0); +lean_inc(x_12); +lean_dec(x_10); +x_13 = !lean_is_exclusive(x_11); +if (x_13 == 0) +{ +lean_object* x_14; lean_object* x_15; lean_object* x_16; uint8_t x_17; +x_14 = lean_ctor_get(x_11, 0); +x_15 = lean_ctor_get(x_11, 1); +lean_dec(x_15); +x_16 = lean_array_get_size(x_12); +x_17 = lean_nat_dec_lt(x_2, x_16); +lean_dec(x_16); +if (x_17 == 0) +{ +lean_object* x_18; lean_object* x_19; lean_object* x_20; +lean_dec(x_12); +x_18 = l_Lean_instInhabitedExpr; +x_19 = l___private_Init_Util_0__outOfBounds___rarg(x_18); +x_20 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_rootKey(x_4, x_19, x_5, x_6, x_7, x_8, x_9); +if (lean_obj_tag(x_20) == 0) +{ +uint8_t x_21; +x_21 = !lean_is_exclusive(x_20); +if (x_21 == 0) +{ +lean_object* x_22; uint8_t x_23; +x_22 = lean_ctor_get(x_20, 0); +x_23 = !lean_is_exclusive(x_22); +if (x_23 == 0) +{ +lean_object* x_24; lean_object* x_25; lean_object* x_26; +x_24 = lean_ctor_get(x_22, 0); +x_25 = lean_ctor_get(x_22, 1); +lean_ctor_set(x_22, 1, x_3); +lean_ctor_set(x_22, 0, x_14); +lean_ctor_set(x_11, 1, x_22); +lean_ctor_set(x_11, 0, x_25); +x_26 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_26, 0, x_24); +lean_ctor_set(x_26, 1, x_11); +lean_ctor_set(x_20, 0, x_26); +return x_20; +} +else +{ +lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; +x_27 = lean_ctor_get(x_22, 0); +x_28 = lean_ctor_get(x_22, 1); +lean_inc(x_28); +lean_inc(x_27); +lean_dec(x_22); +x_29 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_29, 0, x_14); +lean_ctor_set(x_29, 1, x_3); +lean_ctor_set(x_11, 1, x_29); +lean_ctor_set(x_11, 0, x_28); +x_30 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_30, 0, x_27); +lean_ctor_set(x_30, 1, x_11); +lean_ctor_set(x_20, 0, x_30); +return x_20; +} +} +else +{ +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; +x_31 = lean_ctor_get(x_20, 0); +x_32 = lean_ctor_get(x_20, 1); +lean_inc(x_32); +lean_inc(x_31); +lean_dec(x_20); +x_33 = lean_ctor_get(x_31, 0); +lean_inc(x_33); +x_34 = lean_ctor_get(x_31, 1); +lean_inc(x_34); +if (lean_is_exclusive(x_31)) { + lean_ctor_release(x_31, 0); + lean_ctor_release(x_31, 1); + x_35 = x_31; +} else { + lean_dec_ref(x_31); + x_35 = lean_box(0); +} +if (lean_is_scalar(x_35)) { + x_36 = lean_alloc_ctor(0, 2, 0); +} else { + x_36 = x_35; +} +lean_ctor_set(x_36, 0, x_14); +lean_ctor_set(x_36, 1, x_3); +lean_ctor_set(x_11, 1, x_36); +lean_ctor_set(x_11, 0, x_34); +x_37 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_37, 0, x_33); +lean_ctor_set(x_37, 1, x_11); +x_38 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_38, 0, x_37); +lean_ctor_set(x_38, 1, x_32); +return x_38; +} +} +else +{ +uint8_t x_39; +lean_free_object(x_11); +lean_dec(x_14); +lean_dec(x_3); +x_39 = !lean_is_exclusive(x_20); +if (x_39 == 0) +{ +return x_20; +} +else +{ +lean_object* x_40; lean_object* x_41; lean_object* x_42; +x_40 = lean_ctor_get(x_20, 0); +x_41 = lean_ctor_get(x_20, 1); +lean_inc(x_41); +lean_inc(x_40); +lean_dec(x_20); +x_42 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_42, 0, x_40); +lean_ctor_set(x_42, 1, x_41); +return x_42; +} +} +} +else +{ +lean_object* x_43; lean_object* x_44; +x_43 = lean_array_fget(x_12, x_2); +lean_dec(x_12); +x_44 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_rootKey(x_4, x_43, x_5, x_6, x_7, x_8, x_9); +if (lean_obj_tag(x_44) == 0) +{ +uint8_t x_45; +x_45 = !lean_is_exclusive(x_44); +if (x_45 == 0) +{ +lean_object* x_46; uint8_t x_47; +x_46 = lean_ctor_get(x_44, 0); +x_47 = !lean_is_exclusive(x_46); +if (x_47 == 0) +{ +lean_object* x_48; lean_object* x_49; lean_object* x_50; +x_48 = lean_ctor_get(x_46, 0); +x_49 = lean_ctor_get(x_46, 1); +lean_ctor_set(x_46, 1, x_3); +lean_ctor_set(x_46, 0, x_14); +lean_ctor_set(x_11, 1, x_46); +lean_ctor_set(x_11, 0, x_49); +x_50 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_50, 0, x_48); +lean_ctor_set(x_50, 1, x_11); +lean_ctor_set(x_44, 0, x_50); +return x_44; +} +else +{ +lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; +x_51 = lean_ctor_get(x_46, 0); +x_52 = lean_ctor_get(x_46, 1); +lean_inc(x_52); +lean_inc(x_51); +lean_dec(x_46); +x_53 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_53, 0, x_14); +lean_ctor_set(x_53, 1, x_3); +lean_ctor_set(x_11, 1, x_53); +lean_ctor_set(x_11, 0, x_52); +x_54 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_54, 0, x_51); +lean_ctor_set(x_54, 1, x_11); +lean_ctor_set(x_44, 0, x_54); +return x_44; +} +} +else +{ +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; +x_55 = lean_ctor_get(x_44, 0); +x_56 = lean_ctor_get(x_44, 1); +lean_inc(x_56); +lean_inc(x_55); +lean_dec(x_44); +x_57 = lean_ctor_get(x_55, 0); +lean_inc(x_57); +x_58 = lean_ctor_get(x_55, 1); +lean_inc(x_58); +if (lean_is_exclusive(x_55)) { + lean_ctor_release(x_55, 0); + lean_ctor_release(x_55, 1); + x_59 = x_55; +} else { + lean_dec_ref(x_55); + x_59 = lean_box(0); +} +if (lean_is_scalar(x_59)) { + x_60 = lean_alloc_ctor(0, 2, 0); +} else { + x_60 = x_59; +} +lean_ctor_set(x_60, 0, x_14); +lean_ctor_set(x_60, 1, x_3); +lean_ctor_set(x_11, 1, x_60); +lean_ctor_set(x_11, 0, x_58); +x_61 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_61, 0, x_57); +lean_ctor_set(x_61, 1, x_11); +x_62 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_62, 0, x_61); +lean_ctor_set(x_62, 1, x_56); +return x_62; +} +} +else +{ +uint8_t x_63; +lean_free_object(x_11); +lean_dec(x_14); +lean_dec(x_3); +x_63 = !lean_is_exclusive(x_44); +if (x_63 == 0) +{ +return x_44; +} +else +{ +lean_object* x_64; lean_object* x_65; lean_object* x_66; +x_64 = lean_ctor_get(x_44, 0); +x_65 = lean_ctor_get(x_44, 1); +lean_inc(x_65); +lean_inc(x_64); +lean_dec(x_44); +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; +} +} +} +} +else +{ +lean_object* x_67; lean_object* x_68; uint8_t x_69; +x_67 = lean_ctor_get(x_11, 0); +lean_inc(x_67); +lean_dec(x_11); +x_68 = lean_array_get_size(x_12); +x_69 = lean_nat_dec_lt(x_2, x_68); +lean_dec(x_68); +if (x_69 == 0) +{ +lean_object* x_70; lean_object* x_71; lean_object* x_72; +lean_dec(x_12); +x_70 = l_Lean_instInhabitedExpr; +x_71 = l___private_Init_Util_0__outOfBounds___rarg(x_70); +x_72 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_rootKey(x_4, x_71, x_5, x_6, x_7, x_8, x_9); +if (lean_obj_tag(x_72) == 0) +{ +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; +x_73 = lean_ctor_get(x_72, 0); +lean_inc(x_73); +x_74 = lean_ctor_get(x_72, 1); +lean_inc(x_74); +if (lean_is_exclusive(x_72)) { + lean_ctor_release(x_72, 0); + lean_ctor_release(x_72, 1); + x_75 = x_72; +} else { + lean_dec_ref(x_72); + x_75 = lean_box(0); +} +x_76 = lean_ctor_get(x_73, 0); +lean_inc(x_76); +x_77 = lean_ctor_get(x_73, 1); +lean_inc(x_77); +if (lean_is_exclusive(x_73)) { + lean_ctor_release(x_73, 0); + lean_ctor_release(x_73, 1); + x_78 = x_73; +} else { + lean_dec_ref(x_73); + x_78 = lean_box(0); +} +if (lean_is_scalar(x_78)) { + x_79 = lean_alloc_ctor(0, 2, 0); +} else { + x_79 = x_78; +} +lean_ctor_set(x_79, 0, x_67); +lean_ctor_set(x_79, 1, x_3); +x_80 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_80, 0, x_77); +lean_ctor_set(x_80, 1, x_79); +x_81 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_81, 0, x_76); +lean_ctor_set(x_81, 1, x_80); +if (lean_is_scalar(x_75)) { + x_82 = lean_alloc_ctor(0, 2, 0); +} else { + x_82 = x_75; +} +lean_ctor_set(x_82, 0, x_81); +lean_ctor_set(x_82, 1, x_74); +return x_82; +} +else +{ +lean_object* x_83; lean_object* x_84; lean_object* x_85; lean_object* x_86; +lean_dec(x_67); +lean_dec(x_3); +x_83 = lean_ctor_get(x_72, 0); +lean_inc(x_83); +x_84 = lean_ctor_get(x_72, 1); +lean_inc(x_84); +if (lean_is_exclusive(x_72)) { + lean_ctor_release(x_72, 0); + lean_ctor_release(x_72, 1); + x_85 = x_72; +} else { + lean_dec_ref(x_72); + x_85 = lean_box(0); +} +if (lean_is_scalar(x_85)) { + x_86 = lean_alloc_ctor(1, 2, 0); +} else { + x_86 = x_85; +} +lean_ctor_set(x_86, 0, x_83); +lean_ctor_set(x_86, 1, x_84); +return x_86; +} +} +else +{ +lean_object* x_87; lean_object* x_88; +x_87 = lean_array_fget(x_12, x_2); +lean_dec(x_12); +x_88 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_rootKey(x_4, x_87, x_5, x_6, x_7, x_8, x_9); +if (lean_obj_tag(x_88) == 0) +{ +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_89 = lean_ctor_get(x_88, 0); +lean_inc(x_89); +x_90 = lean_ctor_get(x_88, 1); +lean_inc(x_90); +if (lean_is_exclusive(x_88)) { + lean_ctor_release(x_88, 0); + lean_ctor_release(x_88, 1); + x_91 = x_88; +} else { + lean_dec_ref(x_88); + x_91 = lean_box(0); +} +x_92 = lean_ctor_get(x_89, 0); +lean_inc(x_92); +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 { + lean_dec_ref(x_89); + x_94 = lean_box(0); +} +if (lean_is_scalar(x_94)) { + x_95 = lean_alloc_ctor(0, 2, 0); +} else { + x_95 = x_94; +} +lean_ctor_set(x_95, 0, x_67); +lean_ctor_set(x_95, 1, x_3); +x_96 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_96, 0, x_93); +lean_ctor_set(x_96, 1, x_95); +x_97 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_97, 0, x_92); +lean_ctor_set(x_97, 1, x_96); +if (lean_is_scalar(x_91)) { + x_98 = lean_alloc_ctor(0, 2, 0); +} else { + x_98 = x_91; +} +lean_ctor_set(x_98, 0, x_97); +lean_ctor_set(x_98, 1, x_90); +return x_98; +} +else +{ +lean_object* x_99; lean_object* x_100; lean_object* x_101; lean_object* x_102; +lean_dec(x_67); +lean_dec(x_3); +x_99 = lean_ctor_get(x_88, 0); +lean_inc(x_99); +x_100 = lean_ctor_get(x_88, 1); +lean_inc(x_100); +if (lean_is_exclusive(x_88)) { + lean_ctor_release(x_88, 0); + lean_ctor_release(x_88, 1); + x_101 = x_88; +} else { + lean_dec_ref(x_88); + x_101 = lean_box(0); +} +if (lean_is_scalar(x_101)) { + x_102 = lean_alloc_ctor(1, 2, 0); +} else { + x_102 = x_101; +} +lean_ctor_set(x_102, 0, x_99); +lean_ctor_set(x_102, 1, x_100); +return x_102; +} +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_LazyDiscrTree_InitEntry_mkSubEntry(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = lean_alloc_closure((void*)(l_Lean_Meta_LazyDiscrTree_InitEntry_mkSubEntry___rarg___boxed), 9, 0); +return x_2; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_LazyDiscrTree_InitEntry_mkSubEntry___rarg___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_Lean_Meta_LazyDiscrTree_InitEntry_mkSubEntry___rarg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +lean_dec(x_2); +return x_10; +} +} +static lean_object* _init_l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_ImportData_new___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = l_Lean_PersistentHashMap_mkEmptyEntriesArray(lean_box(0), lean_box(0)); +return x_1; +} +} +static lean_object* _init_l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_ImportData_new___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_ImportData_new___closed__1; +x_2 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; +} +} +static lean_object* _init_l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_ImportData_new___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_ImportData_new___closed__2; +x_2 = lean_unsigned_to_nat(0u); +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_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_ImportData_new___closed__4() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Meta_InfoCacheKey_instHashableInfoCacheKey___boxed), 1, 0); +return x_1; +} +} +static lean_object* _init_l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_ImportData_new___closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_ImportData_new___closed__2; +x_2 = lean_unsigned_to_nat(0u); +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_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_ImportData_new___closed__6() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_instBEqLocalInstance___boxed), 2, 0); +return x_1; +} +} +static lean_object* _init_l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_ImportData_new___closed__7() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_ImportData_new___closed__6; +x_2 = lean_alloc_closure((void*)(l_Array_instBEqArray___rarg___boxed), 3, 1); +lean_closure_set(x_2, 0, x_1); +return x_2; +} +} +static lean_object* _init_l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_ImportData_new___closed__8() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_ImportData_new___closed__7; +x_2 = l_Lean_Expr_instBEqExpr; +x_3 = lean_alloc_closure((void*)(l_instBEqProd___rarg), 4, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +static lean_object* _init_l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_ImportData_new___closed__9() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_instHashableLocalInstance___boxed), 1, 0); +return x_1; +} +} +static lean_object* _init_l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_ImportData_new___closed__10() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_ImportData_new___closed__9; +x_2 = lean_alloc_closure((void*)(l_instHashableArray___rarg___boxed), 2, 1); +lean_closure_set(x_2, 0, x_1); +return x_2; +} +} +static lean_object* _init_l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_ImportData_new___closed__11() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_ImportData_new___closed__10; +x_2 = l_Lean_Expr_instHashableExpr; +x_3 = lean_alloc_closure((void*)(l_instHashableProd___rarg___boxed), 3, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +static lean_object* _init_l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_ImportData_new___closed__12() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_ImportData_new___closed__2; +x_2 = lean_unsigned_to_nat(0u); +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_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_ImportData_new___closed__13() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Expr_instBEqExpr; +x_2 = lean_alloc_closure((void*)(l_instBEqProd___rarg), 4, 2); +lean_closure_set(x_2, 0, x_1); +lean_closure_set(x_2, 1, x_1); +return x_2; +} +} +static lean_object* _init_l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_ImportData_new___closed__14() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Expr_instHashableExpr; +x_2 = lean_alloc_closure((void*)(l_instHashableProd___rarg___boxed), 3, 2); +lean_closure_set(x_2, 0, x_1); +lean_closure_set(x_2, 1, x_1); +return x_2; +} +} +static lean_object* _init_l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_ImportData_new___closed__15() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_ImportData_new___closed__2; +x_2 = lean_unsigned_to_nat(0u); +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_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_ImportData_new___closed__16() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_ImportData_new___closed__15; +x_2 = lean_alloc_ctor(0, 4, 0); +lean_ctor_set(x_2, 0, x_1); +lean_ctor_set(x_2, 1, x_1); +lean_ctor_set(x_2, 2, x_1); +lean_ctor_set(x_2, 3, x_1); +return x_2; +} +} +static lean_object* _init_l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_ImportData_new___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___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_ImportData_new___closed__3; +x_2 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_ImportData_new___closed__5; +x_3 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_ImportData_new___closed__12; +x_4 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_ImportData_new___closed__16; +x_5 = lean_alloc_ctor(0, 7, 0); +lean_ctor_set(x_5, 0, x_1); +lean_ctor_set(x_5, 1, x_2); +lean_ctor_set(x_5, 2, x_3); +lean_ctor_set(x_5, 3, x_1); +lean_ctor_set(x_5, 4, x_1); +lean_ctor_set(x_5, 5, x_4); +lean_ctor_set(x_5, 6, x_4); +return x_5; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_ImportData_new(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; +x_2 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_ImportData_new___closed__17; +x_3 = lean_st_mk_ref(x_2, x_1); +if (lean_obj_tag(x_3) == 0) +{ +lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; +x_4 = lean_ctor_get(x_3, 0); +lean_inc(x_4); +x_5 = lean_ctor_get(x_3, 1); +lean_inc(x_5); +lean_dec(x_3); +x_6 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_getKeyArgs___lambda__2___closed__2; +x_7 = lean_st_mk_ref(x_6, x_5); +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); +x_10 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_10, 0, x_4); +lean_ctor_set(x_10, 1, x_9); +lean_ctor_set(x_7, 0, x_10); +return x_7; +} +else +{ +lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; +x_11 = lean_ctor_get(x_7, 0); +x_12 = lean_ctor_get(x_7, 1); +lean_inc(x_12); +lean_inc(x_11); +lean_dec(x_7); +x_13 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_13, 0, x_4); +lean_ctor_set(x_13, 1, x_11); +x_14 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_14, 0, x_13); +lean_ctor_set(x_14, 1, x_12); +return x_14; +} +} +else +{ +uint8_t x_15; +lean_dec(x_4); +x_15 = !lean_is_exclusive(x_7); +if (x_15 == 0) +{ +return x_7; +} +else +{ +lean_object* x_16; lean_object* x_17; lean_object* x_18; +x_16 = lean_ctor_get(x_7, 0); +x_17 = lean_ctor_get(x_7, 1); +lean_inc(x_17); +lean_inc(x_16); +lean_dec(x_7); +x_18 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_18, 0, x_16); +lean_ctor_set(x_18, 1, x_17); +return x_18; +} +} +} +else +{ +uint8_t x_19; +x_19 = !lean_is_exclusive(x_3); +if (x_19 == 0) +{ +return x_3; +} +else +{ +lean_object* x_20; lean_object* x_21; lean_object* x_22; +x_20 = lean_ctor_get(x_3, 0); +x_21 = lean_ctor_get(x_3, 1); +lean_inc(x_21); +lean_inc(x_20); +lean_dec(x_3); +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; +} +} +} +} +LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_addConstImportData___spec__1___rarg(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; lean_object* x_7; lean_object* x_8; lean_object* x_9; size_t x_10; size_t x_11; +x_6 = lean_array_uget(x_1, x_2); +x_7 = lean_ctor_get(x_6, 0); +lean_inc(x_7); +x_8 = lean_ctor_get(x_6, 1); +lean_inc(x_8); +lean_dec(x_6); +x_9 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_PreDiscrTree_push___rarg(x_4, x_7, x_8); +x_10 = 1; +x_11 = lean_usize_add(x_2, x_10); +x_2 = x_11; +x_4 = x_9; +goto _start; +} +else +{ +return x_4; +} +} +} +LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_addConstImportData___spec__1(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = lean_alloc_closure((void*)(l_Array_foldlMUnsafe_fold___at___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_addConstImportData___spec__1___rarg___boxed), 4, 0); +return x_2; +} +} +static lean_object* _init_l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_addConstImportData___rarg___lambda__1___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_ImportData_new___closed__2; +x_2 = lean_unsigned_to_nat(0u); +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_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_addConstImportData___rarg___lambda__1___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_ImportData_new___closed__2; +x_2 = lean_unsigned_to_nat(0u); +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_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_addConstImportData___rarg___lambda__1___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_ImportData_new___closed__2; +x_2 = lean_unsigned_to_nat(0u); +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_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_addConstImportData___rarg___lambda__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 = lean_unsigned_to_nat(0u); +x_2 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_addConstImportData___rarg___lambda__1___closed__1; +x_3 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_addConstImportData___rarg___lambda__1___closed__2; +x_4 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_addConstImportData___rarg___lambda__1___closed__3; +x_5 = lean_alloc_ctor(0, 9, 0); +lean_ctor_set(x_5, 0, x_1); +lean_ctor_set(x_5, 1, x_1); +lean_ctor_set(x_5, 2, x_1); +lean_ctor_set(x_5, 3, x_2); +lean_ctor_set(x_5, 4, x_3); +lean_ctor_set(x_5, 5, x_4); +lean_ctor_set(x_5, 6, x_2); +lean_ctor_set(x_5, 7, x_3); +lean_ctor_set(x_5, 8, x_3); +return x_5; +} +} +static lean_object* _init_l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_addConstImportData___rarg___lambda__1___closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = lean_unsigned_to_nat(32u); +x_2 = lean_mk_empty_array_with_capacity(x_1); +return x_2; +} +} +static lean_object* _init_l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_addConstImportData___rarg___lambda__1___closed__6() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_addConstImportData___rarg___lambda__1___closed__5; +x_2 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; +} +} +static lean_object* _init_l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_addConstImportData___rarg___lambda__1___closed__7() { +_start: +{ +size_t x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_1 = 5; +x_2 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_addConstImportData___rarg___lambda__1___closed__6; +x_3 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_addConstImportData___rarg___lambda__1___closed__5; +x_4 = lean_unsigned_to_nat(0u); +x_5 = lean_alloc_ctor(0, 4, sizeof(size_t)*1); +lean_ctor_set(x_5, 0, x_2); +lean_ctor_set(x_5, 1, x_3); +lean_ctor_set(x_5, 2, x_4); +lean_ctor_set(x_5, 3, x_4); +lean_ctor_set_usize(x_5, 4, x_1); +return x_5; +} +} +static lean_object* _init_l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_addConstImportData___rarg___lambda__1___closed__8() { +_start: +{ +uint8_t x_1; uint8_t x_2; uint8_t x_3; uint8_t x_4; lean_object* x_5; +x_1 = 0; +x_2 = 1; +x_3 = 2; +x_4 = 0; +x_5 = lean_alloc_ctor(0, 0, 12); +lean_ctor_set_uint8(x_5, 0, x_1); +lean_ctor_set_uint8(x_5, 1, x_1); +lean_ctor_set_uint8(x_5, 2, x_1); +lean_ctor_set_uint8(x_5, 3, x_1); +lean_ctor_set_uint8(x_5, 4, x_1); +lean_ctor_set_uint8(x_5, 5, x_2); +lean_ctor_set_uint8(x_5, 6, x_2); +lean_ctor_set_uint8(x_5, 7, x_1); +lean_ctor_set_uint8(x_5, 8, x_2); +lean_ctor_set_uint8(x_5, 9, x_3); +lean_ctor_set_uint8(x_5, 10, x_1); +lean_ctor_set_uint8(x_5, 11, x_4); +return x_5; +} +} +static lean_object* _init_l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_addConstImportData___rarg___lambda__1___closed__9() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_ImportData_new___closed__2; +x_2 = lean_unsigned_to_nat(0u); +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_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_addConstImportData___rarg___lambda__1___closed__10() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_addConstImportData___rarg___lambda__1___closed__9; +x_2 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_addConstImportData___rarg___lambda__1___closed__7; +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_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_addConstImportData___rarg___lambda__1___closed__11() { +_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_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_addConstImportData___rarg___lambda__1___closed__8; +x_3 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_addConstImportData___rarg___lambda__1___closed__10; +x_4 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_getKeyArgs___lambda__2___closed__2; +x_5 = lean_unsigned_to_nat(0u); +x_6 = lean_alloc_ctor(0, 6, 0); +lean_ctor_set(x_6, 0, x_2); +lean_ctor_set(x_6, 1, x_3); +lean_ctor_set(x_6, 2, x_4); +lean_ctor_set(x_6, 3, x_1); +lean_ctor_set(x_6, 4, x_5); +lean_ctor_set(x_6, 5, x_1); +return x_6; +} +} +static lean_object* _init_l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_addConstImportData___rarg___lambda__1___closed__12() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("", 0); +return x_1; +} +} +static lean_object* _init_l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_addConstImportData___rarg___lambda__1___closed__13() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_addConstImportData___rarg___lambda__1___closed__12; +x_2 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_getKeyArgs___lambda__2___closed__2; +x_3 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_3, 0, x_1); +lean_ctor_set(x_3, 1, x_2); +lean_ctor_set(x_3, 2, x_2); +return x_3; +} +} +static lean_object* _init_l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_addConstImportData___rarg___lambda__1___closed__14() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = lean_box(0); +x_2 = l_Lean_Core_getMaxHeartbeats(x_1); +return x_2; +} +} +static lean_object* _init_l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_addConstImportData___rarg___lambda__1___closed__15() { +_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; lean_object* x_7; lean_object* x_8; lean_object* x_9; uint8_t x_10; lean_object* x_11; +x_1 = lean_box(0); +x_2 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_addConstImportData___rarg___lambda__1___closed__12; +x_3 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_addConstImportData___rarg___lambda__1___closed__13; +x_4 = lean_unsigned_to_nat(0u); +x_5 = lean_unsigned_to_nat(1000u); +x_6 = lean_box(0); +x_7 = lean_box(0); +x_8 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_addConstImportData___rarg___lambda__1___closed__14; +x_9 = l_Lean_firstFrontendMacroScope; +x_10 = 0; +x_11 = lean_alloc_ctor(0, 11, 1); +lean_ctor_set(x_11, 0, x_2); +lean_ctor_set(x_11, 1, x_3); +lean_ctor_set(x_11, 2, x_1); +lean_ctor_set(x_11, 3, x_4); +lean_ctor_set(x_11, 4, x_5); +lean_ctor_set(x_11, 5, x_6); +lean_ctor_set(x_11, 6, x_7); +lean_ctor_set(x_11, 7, x_1); +lean_ctor_set(x_11, 8, x_4); +lean_ctor_set(x_11, 9, x_8); +lean_ctor_set(x_11, 10, x_9); +lean_ctor_set_uint8(x_11, sizeof(void*)*11, x_10); +return x_11; +} +} +static lean_object* _init_l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_addConstImportData___rarg___lambda__1___closed__16() { +_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___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_addConstImportData___rarg___lambda__1___closed__17() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("_uniq", 5); +return x_1; +} +} +static lean_object* _init_l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_addConstImportData___rarg___lambda__1___closed__18() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_addConstImportData___rarg___lambda__1___closed__17; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_addConstImportData___rarg___lambda__1___closed__19() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_addConstImportData___rarg___lambda__1___closed__18; +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___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_addConstImportData___rarg___lambda__1___closed__20() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_addConstImportData___rarg___lambda__1___closed__3; +x_2 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_2, 0, x_1); +lean_ctor_set(x_2, 1, x_1); +return x_2; +} +} +static lean_object* _init_l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_addConstImportData___rarg___lambda__1___closed__21() { +_start: +{ +uint8_t x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = 1; +x_2 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_addConstImportData___rarg___lambda__1___closed__2; +x_3 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_addConstImportData___rarg___lambda__1___closed__7; +x_4 = lean_alloc_ctor(0, 2, 1); +lean_ctor_set(x_4, 0, x_2); +lean_ctor_set(x_4, 1, x_3); +lean_ctor_set_uint8(x_4, sizeof(void*)*2, x_1); +return x_4; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_addConstImportData___rarg___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) { +_start: +{ +lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_64; +x_10 = lean_ctor_get(x_1, 0); +x_64 = lean_st_ref_get(x_10, x_9); +if (lean_obj_tag(x_64) == 0) +{ +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; +x_65 = lean_ctor_get(x_64, 0); +lean_inc(x_65); +x_66 = lean_ctor_get(x_64, 1); +lean_inc(x_66); +lean_dec(x_64); +x_67 = lean_box(0); +x_68 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_addConstImportData___rarg___lambda__1___closed__4; +x_69 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_addConstImportData___rarg___lambda__1___closed__7; +x_70 = lean_alloc_ctor(0, 4, 0); +lean_ctor_set(x_70, 0, x_68); +lean_ctor_set(x_70, 1, x_65); +lean_ctor_set(x_70, 2, x_67); +lean_ctor_set(x_70, 3, x_69); +x_71 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_ImportData_new___closed__17; +x_72 = lean_st_ref_set(x_10, x_71, x_66); +if (lean_obj_tag(x_72) == 0) +{ +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_73 = lean_ctor_get(x_72, 1); +lean_inc(x_73); +lean_dec(x_72); +x_74 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_addConstImportData___rarg___lambda__1___closed__16; +x_75 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_addConstImportData___rarg___lambda__1___closed__19; +x_76 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_addConstImportData___rarg___lambda__1___closed__20; +x_77 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_addConstImportData___rarg___lambda__1___closed__21; +x_78 = lean_alloc_ctor(0, 7, 0); +lean_ctor_set(x_78, 0, x_5); +lean_ctor_set(x_78, 1, x_74); +lean_ctor_set(x_78, 2, x_75); +lean_ctor_set(x_78, 3, x_69); +lean_ctor_set(x_78, 4, x_76); +lean_ctor_set(x_78, 5, x_69); +lean_ctor_set(x_78, 6, x_77); +x_79 = lean_st_mk_ref(x_78, x_73); +x_80 = lean_ctor_get(x_79, 0); +lean_inc(x_80); +x_81 = lean_ctor_get(x_79, 1); +lean_inc(x_81); +lean_dec(x_79); +x_82 = lean_st_mk_ref(x_70, x_81); +x_83 = lean_ctor_get(x_82, 0); +lean_inc(x_83); +x_84 = lean_ctor_get(x_82, 1); +lean_inc(x_84); +lean_dec(x_82); +x_85 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_addConstImportData___rarg___lambda__1___closed__11; +x_86 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_addConstImportData___rarg___lambda__1___closed__15; +lean_inc(x_80); +lean_inc(x_83); +lean_inc(x_3); +x_87 = lean_apply_7(x_6, x_3, x_7, x_85, x_83, x_86, x_80, x_84); +if (lean_obj_tag(x_87) == 0) +{ +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_88 = lean_ctor_get(x_87, 0); +lean_inc(x_88); +x_89 = lean_ctor_get(x_87, 1); +lean_inc(x_89); +lean_dec(x_87); +x_90 = lean_st_ref_get(x_83, x_89); +lean_dec(x_83); +x_91 = lean_ctor_get(x_90, 0); +lean_inc(x_91); +x_92 = lean_ctor_get(x_90, 1); +lean_inc(x_92); +lean_dec(x_90); +x_93 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_93, 0, x_88); +lean_ctor_set(x_93, 1, x_91); +x_94 = lean_st_ref_get(x_80, x_92); +lean_dec(x_80); +x_95 = lean_ctor_get(x_94, 0); +lean_inc(x_95); +x_96 = lean_ctor_get(x_94, 1); +lean_inc(x_96); +lean_dec(x_94); +x_97 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_97, 0, x_93); +lean_ctor_set(x_97, 1, x_95); +x_98 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_98, 0, x_97); +x_11 = x_98; +x_12 = x_96; +goto block_63; +} +else +{ +lean_object* x_99; lean_object* x_100; lean_object* x_101; +lean_dec(x_83); +lean_dec(x_80); +x_99 = lean_ctor_get(x_87, 0); +lean_inc(x_99); +x_100 = lean_ctor_get(x_87, 1); +lean_inc(x_100); +lean_dec(x_87); +x_101 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_101, 0, x_99); +x_11 = x_101; +x_12 = x_100; +goto block_63; +} +} +else +{ +uint8_t x_102; +lean_dec(x_70); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_102 = !lean_is_exclusive(x_72); +if (x_102 == 0) +{ +return x_72; +} +else +{ +lean_object* x_103; lean_object* x_104; lean_object* x_105; +x_103 = lean_ctor_get(x_72, 0); +x_104 = lean_ctor_get(x_72, 1); +lean_inc(x_104); +lean_inc(x_103); +lean_dec(x_72); +x_105 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_105, 0, x_103); +lean_ctor_set(x_105, 1, x_104); +return x_105; +} +} +} +else +{ +uint8_t x_106; +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_106 = !lean_is_exclusive(x_64); +if (x_106 == 0) +{ +return x_64; +} +else +{ +lean_object* x_107; lean_object* x_108; lean_object* x_109; +x_107 = lean_ctor_get(x_64, 0); +x_108 = lean_ctor_get(x_64, 1); +lean_inc(x_108); +lean_inc(x_107); +lean_dec(x_64); +x_109 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_109, 0, x_107); +lean_ctor_set(x_109, 1, x_108); +return x_109; +} +} +block_63: +{ +if (lean_obj_tag(x_11) == 0) +{ +lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; +x_13 = lean_ctor_get(x_11, 0); +lean_inc(x_13); +lean_dec(x_11); +x_14 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_14, 0, x_2); +lean_ctor_set(x_14, 1, x_3); +lean_ctor_set(x_14, 2, x_13); +x_15 = lean_ctor_get(x_1, 1); +x_16 = lean_st_ref_take(x_15, x_12); +if (lean_obj_tag(x_16) == 0) +{ +lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; +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_array_push(x_17, x_14); +x_20 = lean_st_ref_set(x_15, x_19, x_18); +if (lean_obj_tag(x_20) == 0) +{ +uint8_t x_21; +x_21 = !lean_is_exclusive(x_20); +if (x_21 == 0) +{ +lean_object* x_22; +x_22 = lean_ctor_get(x_20, 0); +lean_dec(x_22); +lean_ctor_set(x_20, 0, x_4); +return x_20; +} +else +{ +lean_object* x_23; lean_object* x_24; +x_23 = lean_ctor_get(x_20, 1); +lean_inc(x_23); +lean_dec(x_20); +x_24 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_24, 0, x_4); +lean_ctor_set(x_24, 1, x_23); +return x_24; +} +} +else +{ +uint8_t x_25; +lean_dec(x_4); +x_25 = !lean_is_exclusive(x_20); +if (x_25 == 0) +{ +return x_20; +} +else +{ +lean_object* x_26; lean_object* x_27; lean_object* x_28; +x_26 = lean_ctor_get(x_20, 0); +x_27 = lean_ctor_get(x_20, 1); +lean_inc(x_27); +lean_inc(x_26); +lean_dec(x_20); +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; +} +} +} +else +{ +uint8_t x_29; +lean_dec(x_14); +lean_dec(x_4); +x_29 = !lean_is_exclusive(x_16); +if (x_29 == 0) +{ +return x_16; +} +else +{ +lean_object* x_30; lean_object* x_31; lean_object* x_32; +x_30 = lean_ctor_get(x_16, 0); +x_31 = lean_ctor_get(x_16, 1); +lean_inc(x_31); +lean_inc(x_30); +lean_dec(x_16); +x_32 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_32, 0, x_30); +lean_ctor_set(x_32, 1, x_31); +return x_32; +} +} +} +else +{ +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_3); +lean_dec(x_2); +x_33 = lean_ctor_get(x_11, 0); +lean_inc(x_33); +lean_dec(x_11); +x_34 = lean_ctor_get(x_33, 0); +lean_inc(x_34); +lean_dec(x_33); +x_35 = lean_ctor_get(x_34, 0); +lean_inc(x_35); +x_36 = lean_ctor_get(x_34, 1); +lean_inc(x_36); +lean_dec(x_34); +x_37 = lean_ctor_get(x_36, 1); +lean_inc(x_37); +lean_dec(x_36); +x_38 = lean_st_ref_set(x_10, x_37, x_12); +if (lean_obj_tag(x_38) == 0) +{ +uint8_t x_39; +x_39 = !lean_is_exclusive(x_38); +if (x_39 == 0) +{ +lean_object* x_40; lean_object* x_41; lean_object* x_42; uint8_t x_43; +x_40 = lean_ctor_get(x_38, 0); +lean_dec(x_40); +x_41 = lean_array_get_size(x_35); +x_42 = lean_unsigned_to_nat(0u); +x_43 = lean_nat_dec_lt(x_42, x_41); +if (x_43 == 0) +{ +lean_dec(x_41); +lean_dec(x_35); +lean_ctor_set(x_38, 0, x_4); +return x_38; +} +else +{ +uint8_t x_44; +x_44 = lean_nat_dec_le(x_41, x_41); +if (x_44 == 0) +{ +lean_dec(x_41); +lean_dec(x_35); +lean_ctor_set(x_38, 0, x_4); +return x_38; +} +else +{ +size_t x_45; size_t x_46; lean_object* x_47; +x_45 = 0; +x_46 = lean_usize_of_nat(x_41); +lean_dec(x_41); +x_47 = l_Array_foldlMUnsafe_fold___at___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_addConstImportData___spec__1___rarg(x_35, x_45, x_46, x_4); +lean_dec(x_35); +lean_ctor_set(x_38, 0, x_47); +return x_38; +} +} +} +else +{ +lean_object* x_48; lean_object* x_49; lean_object* x_50; uint8_t x_51; +x_48 = lean_ctor_get(x_38, 1); +lean_inc(x_48); +lean_dec(x_38); +x_49 = lean_array_get_size(x_35); +x_50 = lean_unsigned_to_nat(0u); +x_51 = lean_nat_dec_lt(x_50, x_49); +if (x_51 == 0) +{ +lean_object* x_52; +lean_dec(x_49); +lean_dec(x_35); +x_52 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_52, 0, x_4); +lean_ctor_set(x_52, 1, x_48); +return x_52; +} +else +{ +uint8_t x_53; +x_53 = lean_nat_dec_le(x_49, x_49); +if (x_53 == 0) +{ +lean_object* x_54; +lean_dec(x_49); +lean_dec(x_35); +x_54 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_54, 0, x_4); +lean_ctor_set(x_54, 1, x_48); +return x_54; +} +else +{ +size_t x_55; size_t x_56; lean_object* x_57; lean_object* x_58; +x_55 = 0; +x_56 = lean_usize_of_nat(x_49); +lean_dec(x_49); +x_57 = l_Array_foldlMUnsafe_fold___at___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_addConstImportData___spec__1___rarg(x_35, x_55, x_56, x_4); +lean_dec(x_35); +x_58 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_58, 0, x_57); +lean_ctor_set(x_58, 1, x_48); +return x_58; +} +} +} +} +else +{ +uint8_t x_59; +lean_dec(x_35); +lean_dec(x_4); +x_59 = !lean_is_exclusive(x_38); +if (x_59 == 0) +{ +return x_38; +} +else +{ +lean_object* x_60; lean_object* x_61; lean_object* x_62; +x_60 = lean_ctor_get(x_38, 0); +x_61 = lean_ctor_get(x_38, 1); +lean_inc(x_61); +lean_inc(x_60); +lean_dec(x_38); +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; +} +} +} +} +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_addConstImportData___rarg___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: +{ +uint8_t x_10; +lean_dec(x_8); +lean_inc(x_3); +lean_inc(x_5); +x_10 = l_Lean_Meta_allowCompletion(x_5, x_3); +if (x_10 == 0) +{ +lean_object* x_11; +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_3); +lean_dec(x_2); +x_11 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_11, 0, x_4); +lean_ctor_set(x_11, 1, x_9); +return x_11; +} +else +{ +lean_object* x_12; lean_object* x_13; +x_12 = lean_box(0); +x_13 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_addConstImportData___rarg___lambda__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_12, x_9); +return x_13; +} +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_addConstImportData___rarg(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) { +_start: +{ +uint8_t x_9; +x_9 = l_Lean_ConstantInfo_isUnsafe(x_7); +if (x_9 == 0) +{ +lean_object* x_10; lean_object* x_11; +x_10 = lean_box(0); +x_11 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_addConstImportData___rarg___lambda__2(x_3, x_2, x_6, x_4, x_1, x_5, x_7, x_10, x_8); +lean_dec(x_3); +return x_11; +} +else +{ +lean_object* x_12; +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +x_12 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_12, 0, x_4); +lean_ctor_set(x_12, 1, x_8); +return x_12; +} +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_addConstImportData(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = lean_alloc_closure((void*)(l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_addConstImportData___rarg), 8, 0); +return x_2; +} +} +LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_addConstImportData___spec__1___rarg___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___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_addConstImportData___spec__1___rarg(x_1, x_5, x_6, x_4); +lean_dec(x_1); +return x_7; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_addConstImportData___rarg___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) { +_start: +{ +lean_object* x_10; +x_10 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_addConstImportData___rarg___lambda__1(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_1); +return x_10; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_addConstImportData___rarg___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___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_addConstImportData___rarg___lambda__2(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +lean_dec(x_1); +return x_10; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_InitResults_tree___default(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = l_Lean_Meta_LazyDiscrTree_instInhabitedPreDiscrTree___closed__1; +return x_2; +} +} +static lean_object* _init_l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_InitResults_errors___default() { +_start: +{ +lean_object* x_1; +x_1 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_getKeyArgs___lambda__2___closed__2; +return x_1; +} +} +static lean_object* _init_l_Lean_Meta_LazyDiscrTree_instInhabitedInitResults___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Meta_LazyDiscrTree_instInhabitedPreDiscrTree___closed__1; +x_2 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_getKeyArgs___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_Meta_LazyDiscrTree_instInhabitedInitResults(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = l_Lean_Meta_LazyDiscrTree_instInhabitedInitResults___closed__1; +return x_2; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_LazyDiscrTree_InitResults_append___rarg(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; lean_object* x_4; uint8_t x_5; +x_3 = lean_ctor_get(x_1, 0); +lean_inc(x_3); +x_4 = lean_ctor_get(x_1, 1); +lean_inc(x_4); +lean_dec(x_1); +x_5 = !lean_is_exclusive(x_2); +if (x_5 == 0) +{ +lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; +x_6 = lean_ctor_get(x_2, 0); +x_7 = lean_ctor_get(x_2, 1); +x_8 = l_Lean_Meta_LazyDiscrTree_PreDiscrTree_append___rarg(x_3, x_6); +x_9 = l_Array_append___rarg(x_4, x_7); +lean_ctor_set(x_2, 1, x_9); +lean_ctor_set(x_2, 0, x_8); +return x_2; +} +else +{ +lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; +x_10 = lean_ctor_get(x_2, 0); +x_11 = lean_ctor_get(x_2, 1); +lean_inc(x_11); +lean_inc(x_10); +lean_dec(x_2); +x_12 = l_Lean_Meta_LazyDiscrTree_PreDiscrTree_append___rarg(x_3, x_10); +x_13 = l_Array_append___rarg(x_4, x_11); +x_14 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_14, 0, x_12); +lean_ctor_set(x_14, 1, x_13); +return x_14; +} +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_LazyDiscrTree_InitResults_append(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = lean_alloc_closure((void*)(l_Lean_Meta_LazyDiscrTree_InitResults_append___rarg), 2, 0); +return x_2; +} +} +static lean_object* _init_l_Lean_Meta_LazyDiscrTree_InitResults_instAppendInitResults___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Meta_LazyDiscrTree_InitResults_append___rarg), 2, 0); +return x_1; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_LazyDiscrTree_InitResults_instAppendInitResults(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = l_Lean_Meta_LazyDiscrTree_InitResults_instAppendInitResults___closed__1; +return x_2; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_toFlat___rarg(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 = lean_ctor_get(x_1, 1); +x_5 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_getKeyArgs___lambda__2___closed__2; +x_6 = lean_st_ref_swap(x_4, x_5, x_3); +if (lean_obj_tag(x_6) == 0) +{ +uint8_t x_7; +x_7 = !lean_is_exclusive(x_6); +if (x_7 == 0) +{ +lean_object* x_8; lean_object* x_9; +x_8 = lean_ctor_get(x_6, 0); +x_9 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_9, 0, x_2); +lean_ctor_set(x_9, 1, x_8); +lean_ctor_set(x_6, 0, x_9); +return x_6; +} +else +{ +lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; +x_10 = lean_ctor_get(x_6, 0); +x_11 = lean_ctor_get(x_6, 1); +lean_inc(x_11); +lean_inc(x_10); +lean_dec(x_6); +x_12 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_12, 0, x_2); +lean_ctor_set(x_12, 1, x_10); +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; +lean_dec(x_2); +x_14 = !lean_is_exclusive(x_6); +if (x_14 == 0) +{ +return x_6; +} +else +{ +lean_object* x_15; lean_object* x_16; lean_object* x_17; +x_15 = lean_ctor_get(x_6, 0); +x_16 = lean_ctor_get(x_6, 1); +lean_inc(x_16); +lean_inc(x_15); +lean_dec(x_6); +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___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_toFlat(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = lean_alloc_closure((void*)(l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_toFlat___rarg___boxed), 3, 0); +return x_2; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_toFlat___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +lean_object* x_4; +x_4 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_toFlat___rarg(x_1, x_2, x_3); +lean_dec(x_1); +return x_4; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_loadImportedModule___rarg(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) { +_start: +{ +lean_object* x_9; lean_object* x_10; uint8_t x_11; +x_9 = lean_ctor_get(x_6, 1); +x_10 = lean_array_get_size(x_9); +x_11 = lean_nat_dec_lt(x_7, x_10); +lean_dec(x_10); +if (x_11 == 0) +{ +lean_object* x_12; +lean_dec(x_7); +lean_dec(x_5); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +x_12 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_12, 0, x_4); +lean_ctor_set(x_12, 1, x_8); +return x_12; +} +else +{ +lean_object* x_13; lean_object* x_14; lean_object* x_15; uint8_t x_16; +x_13 = lean_array_fget(x_9, x_7); +x_14 = lean_ctor_get(x_6, 2); +x_15 = lean_array_get_size(x_14); +x_16 = lean_nat_dec_lt(x_7, x_15); +lean_dec(x_15); +if (x_16 == 0) +{ +lean_object* x_17; lean_object* x_18; lean_object* x_19; +x_17 = l_Lean_instInhabitedConstantInfo; +x_18 = l___private_Init_Util_0__outOfBounds___rarg(x_17); +lean_inc(x_2); +lean_inc(x_3); +lean_inc(x_5); +lean_inc(x_1); +x_19 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_addConstImportData___rarg(x_1, x_5, x_3, x_4, x_2, x_13, x_18, x_8); +if (lean_obj_tag(x_19) == 0) +{ +lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; +x_20 = lean_ctor_get(x_19, 0); +lean_inc(x_20); +x_21 = lean_ctor_get(x_19, 1); +lean_inc(x_21); +lean_dec(x_19); +x_22 = lean_unsigned_to_nat(1u); +x_23 = lean_nat_add(x_7, x_22); +lean_dec(x_7); +x_4 = x_20; +x_7 = x_23; +x_8 = x_21; +goto _start; +} +else +{ +uint8_t x_25; +lean_dec(x_7); +lean_dec(x_5); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +x_25 = !lean_is_exclusive(x_19); +if (x_25 == 0) +{ +return x_19; +} +else +{ +lean_object* x_26; lean_object* x_27; lean_object* x_28; +x_26 = lean_ctor_get(x_19, 0); +x_27 = lean_ctor_get(x_19, 1); +lean_inc(x_27); +lean_inc(x_26); +lean_dec(x_19); +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; +} +} +} +else +{ +lean_object* x_29; lean_object* x_30; +x_29 = lean_array_fget(x_14, x_7); +lean_inc(x_2); +lean_inc(x_3); +lean_inc(x_5); +lean_inc(x_1); +x_30 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_addConstImportData___rarg(x_1, x_5, x_3, x_4, x_2, x_13, x_29, x_8); +if (lean_obj_tag(x_30) == 0) +{ +lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; +x_31 = lean_ctor_get(x_30, 0); +lean_inc(x_31); +x_32 = lean_ctor_get(x_30, 1); +lean_inc(x_32); +lean_dec(x_30); +x_33 = lean_unsigned_to_nat(1u); +x_34 = lean_nat_add(x_7, x_33); +lean_dec(x_7); +x_4 = x_31; +x_7 = x_34; +x_8 = x_32; +goto _start; +} +else +{ +uint8_t x_36; +lean_dec(x_7); +lean_dec(x_5); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +x_36 = !lean_is_exclusive(x_30); +if (x_36 == 0) +{ +return x_30; +} +else +{ +lean_object* x_37; lean_object* x_38; lean_object* x_39; +x_37 = lean_ctor_get(x_30, 0); +x_38 = lean_ctor_get(x_30, 1); +lean_inc(x_38); +lean_inc(x_37); +lean_dec(x_30); +x_39 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_39, 0, x_37); +lean_ctor_set(x_39, 1, x_38); +return x_39; +} +} +} +} +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_loadImportedModule(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = lean_alloc_closure((void*)(l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_loadImportedModule___rarg___boxed), 8, 0); +return x_2; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_loadImportedModule___rarg___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) { +_start: +{ +lean_object* x_9; +x_9 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_loadImportedModule___rarg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +lean_dec(x_6); +return x_9; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_createImportedEnvironmentSeq_go___rarg(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: +{ +uint8_t x_8; +x_8 = lean_nat_dec_lt(x_5, x_6); +if (x_8 == 0) +{ +lean_object* x_9; +lean_dec(x_5); +lean_dec(x_2); +lean_dec(x_1); +x_9 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_toFlat___rarg(x_3, x_4, x_7); +lean_dec(x_3); +return x_9; +} +else +{ +lean_object* x_10; lean_object* x_11; lean_object* x_12; uint8_t x_13; lean_object* x_14; lean_object* x_15; uint8_t x_16; +x_10 = lean_ctor_get(x_1, 4); +lean_inc(x_10); +x_11 = lean_ctor_get(x_10, 3); +lean_inc(x_11); +x_12 = lean_array_get_size(x_11); +x_13 = lean_nat_dec_lt(x_5, x_12); +lean_dec(x_12); +x_14 = lean_ctor_get(x_10, 4); +lean_inc(x_14); +lean_dec(x_10); +x_15 = lean_array_get_size(x_14); +x_16 = lean_nat_dec_lt(x_5, x_15); +lean_dec(x_15); +if (x_13 == 0) +{ +lean_object* x_17; lean_object* x_18; +lean_dec(x_11); +x_17 = l_Lean_instInhabitedName; +x_18 = l___private_Init_Util_0__outOfBounds___rarg(x_17); +if (x_16 == 0) +{ +lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; +lean_dec(x_14); +x_19 = l_Lean_instInhabitedModuleData; +x_20 = l___private_Init_Util_0__outOfBounds___rarg(x_19); +x_21 = lean_unsigned_to_nat(0u); +lean_inc(x_3); +lean_inc(x_2); +lean_inc(x_1); +x_22 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_loadImportedModule___rarg(x_1, x_2, x_3, x_4, x_18, x_20, x_21, x_7); +lean_dec(x_20); +if (lean_obj_tag(x_22) == 0) +{ +lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; +x_23 = lean_ctor_get(x_22, 0); +lean_inc(x_23); +x_24 = lean_ctor_get(x_22, 1); +lean_inc(x_24); +lean_dec(x_22); +x_25 = lean_unsigned_to_nat(1u); +x_26 = lean_nat_add(x_5, x_25); +lean_dec(x_5); +x_4 = x_23; +x_5 = x_26; +x_7 = x_24; +goto _start; +} +else +{ +uint8_t x_28; +lean_dec(x_5); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +x_28 = !lean_is_exclusive(x_22); +if (x_28 == 0) +{ +return x_22; +} +else +{ +lean_object* x_29; lean_object* x_30; lean_object* x_31; +x_29 = lean_ctor_get(x_22, 0); +x_30 = lean_ctor_get(x_22, 1); +lean_inc(x_30); +lean_inc(x_29); +lean_dec(x_22); +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; +} +} +} +else +{ +lean_object* x_32; lean_object* x_33; lean_object* x_34; +x_32 = lean_array_fget(x_14, x_5); +lean_dec(x_14); +x_33 = lean_unsigned_to_nat(0u); +lean_inc(x_3); +lean_inc(x_2); +lean_inc(x_1); +x_34 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_loadImportedModule___rarg(x_1, x_2, x_3, x_4, x_18, x_32, x_33, x_7); +lean_dec(x_32); +if (lean_obj_tag(x_34) == 0) +{ +lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; +x_35 = lean_ctor_get(x_34, 0); +lean_inc(x_35); +x_36 = lean_ctor_get(x_34, 1); +lean_inc(x_36); +lean_dec(x_34); +x_37 = lean_unsigned_to_nat(1u); +x_38 = lean_nat_add(x_5, x_37); +lean_dec(x_5); +x_4 = x_35; +x_5 = x_38; +x_7 = x_36; +goto _start; +} +else +{ +uint8_t x_40; +lean_dec(x_5); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +x_40 = !lean_is_exclusive(x_34); +if (x_40 == 0) +{ +return x_34; +} +else +{ +lean_object* x_41; lean_object* x_42; lean_object* x_43; +x_41 = lean_ctor_get(x_34, 0); +x_42 = lean_ctor_get(x_34, 1); +lean_inc(x_42); +lean_inc(x_41); +lean_dec(x_34); +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; +} +} +} +} +else +{ +lean_object* x_44; +x_44 = lean_array_fget(x_11, x_5); +lean_dec(x_11); +if (x_16 == 0) +{ +lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; +lean_dec(x_14); +x_45 = l_Lean_instInhabitedModuleData; +x_46 = l___private_Init_Util_0__outOfBounds___rarg(x_45); +x_47 = lean_unsigned_to_nat(0u); +lean_inc(x_3); +lean_inc(x_2); +lean_inc(x_1); +x_48 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_loadImportedModule___rarg(x_1, x_2, x_3, x_4, x_44, x_46, x_47, x_7); +lean_dec(x_46); +if (lean_obj_tag(x_48) == 0) +{ +lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; +x_49 = lean_ctor_get(x_48, 0); +lean_inc(x_49); +x_50 = lean_ctor_get(x_48, 1); +lean_inc(x_50); +lean_dec(x_48); +x_51 = lean_unsigned_to_nat(1u); +x_52 = lean_nat_add(x_5, x_51); +lean_dec(x_5); +x_4 = x_49; +x_5 = x_52; +x_7 = x_50; +goto _start; +} +else +{ +uint8_t x_54; +lean_dec(x_5); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +x_54 = !lean_is_exclusive(x_48); +if (x_54 == 0) +{ +return x_48; +} +else +{ +lean_object* x_55; lean_object* x_56; lean_object* x_57; +x_55 = lean_ctor_get(x_48, 0); +x_56 = lean_ctor_get(x_48, 1); +lean_inc(x_56); +lean_inc(x_55); +lean_dec(x_48); +x_57 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_57, 0, x_55); +lean_ctor_set(x_57, 1, x_56); +return x_57; +} +} +} +else +{ +lean_object* x_58; lean_object* x_59; lean_object* x_60; +x_58 = lean_array_fget(x_14, x_5); +lean_dec(x_14); +x_59 = lean_unsigned_to_nat(0u); +lean_inc(x_3); +lean_inc(x_2); +lean_inc(x_1); +x_60 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_loadImportedModule___rarg(x_1, x_2, x_3, x_4, x_44, x_58, x_59, x_7); +lean_dec(x_58); +if (lean_obj_tag(x_60) == 0) +{ +lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; +x_61 = lean_ctor_get(x_60, 0); +lean_inc(x_61); +x_62 = lean_ctor_get(x_60, 1); +lean_inc(x_62); +lean_dec(x_60); +x_63 = lean_unsigned_to_nat(1u); +x_64 = lean_nat_add(x_5, x_63); +lean_dec(x_5); +x_4 = x_61; +x_5 = x_64; +x_7 = x_62; +goto _start; +} +else +{ +uint8_t x_66; +lean_dec(x_5); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +x_66 = !lean_is_exclusive(x_60); +if (x_66 == 0) +{ +return x_60; +} +else +{ +lean_object* x_67; lean_object* x_68; lean_object* x_69; +x_67 = lean_ctor_get(x_60, 0); +x_68 = lean_ctor_get(x_60, 1); +lean_inc(x_68); +lean_inc(x_67); +lean_dec(x_60); +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; +} +} +} +} +} +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_createImportedEnvironmentSeq_go(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = lean_alloc_closure((void*)(l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_createImportedEnvironmentSeq_go___rarg___boxed), 7, 0); +return x_2; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_createImportedEnvironmentSeq_go___rarg___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___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_createImportedEnvironmentSeq_go___rarg(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +lean_dec(x_6); +return x_8; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_createImportedEnvironmentSeq___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +_start: +{ +lean_object* x_6; +x_6 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_ImportData_new(x_5); +if (lean_obj_tag(x_6) == 0) +{ +lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; +x_7 = lean_ctor_get(x_6, 0); +lean_inc(x_7); +x_8 = lean_ctor_get(x_6, 1); +lean_inc(x_8); +lean_dec(x_6); +x_9 = l_Lean_Meta_LazyDiscrTree_instInhabitedPreDiscrTree___closed__1; +x_10 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_createImportedEnvironmentSeq_go___rarg(x_1, x_2, x_7, x_9, x_3, x_4, x_8); +return x_10; +} +else +{ +uint8_t x_11; +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +x_11 = !lean_is_exclusive(x_6); +if (x_11 == 0) +{ +return x_6; +} +else +{ +lean_object* x_12; lean_object* x_13; lean_object* x_14; +x_12 = lean_ctor_get(x_6, 0); +x_13 = lean_ctor_get(x_6, 1); +lean_inc(x_13); +lean_inc(x_12); +lean_dec(x_6); +x_14 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_14, 0, x_12); +lean_ctor_set(x_14, 1, x_13); +return x_14; +} +} +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_createImportedEnvironmentSeq(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = lean_alloc_closure((void*)(l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_createImportedEnvironmentSeq___rarg___boxed), 5, 0); +return x_2; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_createImportedEnvironmentSeq___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +_start: +{ +lean_object* x_6; +x_6 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_createImportedEnvironmentSeq___rarg(x_1, x_2, x_3, x_4, x_5); +lean_dec(x_4); +return x_6; +} +} +LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_combineGet___spec__1___rarg(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; +x_6 = lean_usize_dec_eq(x_3, x_4); +if (x_6 == 0) +{ +lean_object* x_7; lean_object* x_8; lean_object* x_9; size_t x_10; size_t x_11; +x_7 = lean_array_uget(x_2, x_3); +x_8 = lean_task_get_own(x_7); +lean_inc(x_1); +x_9 = lean_apply_2(x_1, x_5, x_8); +x_10 = 1; +x_11 = lean_usize_add(x_3, x_10); +x_3 = x_11; +x_5 = x_9; +goto _start; +} +else +{ +lean_dec(x_1); +return x_5; +} +} +} +LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_combineGet___spec__1(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = lean_alloc_closure((void*)(l_Array_foldlMUnsafe_fold___at___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_combineGet___spec__1___rarg___boxed), 5, 0); +return x_2; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_combineGet___rarg(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; +x_4 = lean_array_get_size(x_3); +x_5 = lean_unsigned_to_nat(0u); +x_6 = lean_nat_dec_lt(x_5, x_4); +if (x_6 == 0) +{ +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_1); +return x_2; +} +else +{ +uint8_t x_7; +x_7 = lean_nat_dec_le(x_4, x_4); +if (x_7 == 0) +{ +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_1); +return x_2; +} +else +{ +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___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_combineGet___spec__1___rarg(x_1, x_3, x_8, x_9, x_2); +lean_dec(x_3); +return x_10; +} +} +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_combineGet(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = lean_alloc_closure((void*)(l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_combineGet___rarg), 3, 0); +return x_2; +} +} +LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_combineGet___spec__1___rarg___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; +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___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_combineGet___spec__1___rarg(x_1, x_2, x_6, x_7, x_5); +lean_dec(x_2); +return x_8; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_LazyDiscrTree_createImportedEnvironment_go___rarg(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; uint8_t x_13; +x_10 = lean_ctor_get(x_1, 4); +lean_inc(x_10); +x_11 = lean_ctor_get(x_10, 4); +lean_inc(x_11); +lean_dec(x_10); +x_12 = lean_array_get_size(x_11); +x_13 = lean_nat_dec_lt(x_8, x_12); +lean_dec(x_12); +if (x_13 == 0) +{ +uint8_t x_14; +lean_dec(x_11); +lean_dec(x_8); +lean_dec(x_7); +x_14 = lean_nat_dec_lt(x_6, x_4); +if (x_14 == 0) +{ +lean_object* x_15; +lean_dec(x_6); +lean_dec(x_4); +lean_dec(x_2); +lean_dec(x_1); +x_15 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_15, 0, x_5); +lean_ctor_set(x_15, 1, x_9); +return x_15; +} +else +{ +lean_object* x_16; lean_object* x_17; lean_object* x_18; uint8_t x_19; +x_16 = lean_alloc_closure((void*)(l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_createImportedEnvironmentSeq___rarg___boxed), 5, 4); +lean_closure_set(x_16, 0, x_1); +lean_closure_set(x_16, 1, x_2); +lean_closure_set(x_16, 2, x_6); +lean_closure_set(x_16, 3, x_4); +x_17 = l_Task_Priority_default; +x_18 = lean_io_as_task(x_16, x_17, x_9); +x_19 = !lean_is_exclusive(x_18); +if (x_19 == 0) +{ +lean_object* x_20; lean_object* x_21; +x_20 = lean_ctor_get(x_18, 0); +x_21 = lean_array_push(x_5, x_20); +lean_ctor_set(x_18, 0, x_21); +return x_18; +} +else +{ +lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; +x_22 = lean_ctor_get(x_18, 0); +x_23 = lean_ctor_get(x_18, 1); +lean_inc(x_23); +lean_inc(x_22); +lean_dec(x_18); +x_24 = lean_array_push(x_5, x_22); +x_25 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_25, 0, x_24); +lean_ctor_set(x_25, 1, x_23); +return x_25; +} +} +} +else +{ +lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; uint8_t x_30; +x_26 = lean_array_fget(x_11, x_8); +lean_dec(x_11); +x_27 = lean_ctor_get(x_26, 2); +lean_inc(x_27); +lean_dec(x_26); +x_28 = lean_array_get_size(x_27); +lean_dec(x_27); +x_29 = lean_nat_add(x_7, x_28); +lean_dec(x_28); +lean_dec(x_7); +x_30 = lean_nat_dec_lt(x_3, x_29); +if (x_30 == 0) +{ +lean_object* x_31; lean_object* x_32; +x_31 = lean_unsigned_to_nat(1u); +x_32 = lean_nat_add(x_8, x_31); +lean_dec(x_8); +x_7 = x_29; +x_8 = x_32; +goto _start; +} +else +{ +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_dec(x_29); +x_34 = lean_unsigned_to_nat(1u); +x_35 = lean_nat_add(x_8, x_34); +lean_dec(x_8); +lean_inc(x_35); +lean_inc(x_2); +lean_inc(x_1); +x_36 = lean_alloc_closure((void*)(l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_createImportedEnvironmentSeq___rarg___boxed), 5, 4); +lean_closure_set(x_36, 0, x_1); +lean_closure_set(x_36, 1, x_2); +lean_closure_set(x_36, 2, x_6); +lean_closure_set(x_36, 3, x_35); +x_37 = l_Task_Priority_default; +x_38 = lean_io_as_task(x_36, x_37, x_9); +x_39 = lean_ctor_get(x_38, 0); +lean_inc(x_39); +x_40 = lean_ctor_get(x_38, 1); +lean_inc(x_40); +lean_dec(x_38); +x_41 = lean_array_push(x_5, x_39); +x_42 = lean_unsigned_to_nat(0u); +lean_inc(x_35); +x_5 = x_41; +x_6 = x_35; +x_7 = x_42; +x_8 = x_35; +x_9 = x_40; +goto _start; +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_LazyDiscrTree_createImportedEnvironment_go(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = lean_alloc_closure((void*)(l_Lean_Meta_LazyDiscrTree_createImportedEnvironment_go___rarg___boxed), 9, 0); +return x_2; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_LazyDiscrTree_createImportedEnvironment_go___rarg___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_Lean_Meta_LazyDiscrTree_createImportedEnvironment_go___rarg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +lean_dec(x_3); +return x_10; +} +} +LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Meta_LazyDiscrTree_createImportedEnvironment___spec__2___rarg(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; 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_task_get_own(x_6); +x_8 = l_Lean_Meta_LazyDiscrTree_InitResults_append___rarg(x_4, x_7); +x_9 = 1; +x_10 = lean_usize_add(x_2, x_9); +x_2 = x_10; +x_4 = x_8; +goto _start; +} +else +{ +return x_4; +} +} +} +LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Meta_LazyDiscrTree_createImportedEnvironment___spec__2(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = lean_alloc_closure((void*)(l_Array_foldlMUnsafe_fold___at_Lean_Meta_LazyDiscrTree_createImportedEnvironment___spec__2___rarg___boxed), 4, 0); +return x_2; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_combineGet___at_Lean_Meta_LazyDiscrTree_createImportedEnvironment___spec__1___rarg(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; lean_object* x_4; uint8_t x_5; +x_3 = lean_array_get_size(x_2); +x_4 = lean_unsigned_to_nat(0u); +x_5 = lean_nat_dec_lt(x_4, x_3); +if (x_5 == 0) +{ +lean_dec(x_3); +lean_dec(x_2); +return x_1; +} +else +{ +uint8_t x_6; +x_6 = lean_nat_dec_le(x_3, x_3); +if (x_6 == 0) +{ +lean_dec(x_3); +lean_dec(x_2); +return x_1; +} +else +{ +size_t x_7; size_t x_8; lean_object* x_9; +x_7 = 0; +x_8 = lean_usize_of_nat(x_3); +lean_dec(x_3); +x_9 = l_Array_foldlMUnsafe_fold___at_Lean_Meta_LazyDiscrTree_createImportedEnvironment___spec__2___rarg(x_2, x_7, x_8, x_1); +lean_dec(x_2); +return x_9; +} +} +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_combineGet___at_Lean_Meta_LazyDiscrTree_createImportedEnvironment___spec__1(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = lean_alloc_closure((void*)(l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_combineGet___at_Lean_Meta_LazyDiscrTree_createImportedEnvironment___spec__1___rarg), 2, 0); +return x_2; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_LazyDiscrTree_createImportedEnvironment___rarg___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; +x_4 = lean_ctor_get(x_1, 0); +lean_inc(x_4); +lean_dec(x_1); +x_5 = l_Lean_Meta_LazyDiscrTree_config___default___closed__1; +x_6 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_PreDiscrTree_toLazy___rarg(x_4, x_5); +x_7 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_7, 0, x_6); +lean_ctor_set(x_7, 1, x_3); +return x_7; +} +} +static lean_object* _init_l_Lean_Meta_LazyDiscrTree_createImportedEnvironment___rarg___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Meta_LazyDiscrTree_instEmptyCollectionTrie___closed__1; +x_2 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_getKeyArgs___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; +} +} +static lean_object* _init_l_Lean_Meta_LazyDiscrTree_createImportedEnvironment___rarg___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Meta_LazyDiscrTree_createImportedEnvironment___rarg___closed__1; +x_2 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_getKeyArgs___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_Meta_LazyDiscrTree_createImportedEnvironment___rarg(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; lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; uint8_t x_11; +x_5 = lean_ctor_get(x_1, 4); +lean_inc(x_5); +x_6 = lean_ctor_get(x_5, 4); +lean_inc(x_6); +lean_dec(x_5); +x_7 = lean_array_get_size(x_6); +lean_dec(x_6); +x_8 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_getKeyArgs___lambda__2___closed__2; +x_9 = lean_unsigned_to_nat(0u); +x_10 = l_Lean_Meta_LazyDiscrTree_createImportedEnvironment_go___rarg(x_1, x_2, x_3, x_7, x_8, x_9, x_9, x_9, x_4); +lean_dec(x_3); +x_11 = !lean_is_exclusive(x_10); +if (x_11 == 0) +{ +lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; uint8_t x_18; +x_12 = lean_ctor_get(x_10, 0); +x_13 = lean_ctor_get(x_10, 1); +x_14 = l_Lean_Meta_LazyDiscrTree_createImportedEnvironment___rarg___closed__2; +x_15 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_combineGet___at_Lean_Meta_LazyDiscrTree_createImportedEnvironment___spec__1___rarg(x_14, x_12); +x_16 = lean_ctor_get(x_15, 1); +lean_inc(x_16); +x_17 = lean_array_get_size(x_16); +x_18 = lean_nat_dec_lt(x_9, x_17); +lean_dec(x_17); +if (x_18 == 0) +{ +lean_object* x_19; lean_object* x_20; +lean_dec(x_16); +lean_free_object(x_10); +x_19 = lean_box(0); +x_20 = l_Lean_Meta_LazyDiscrTree_createImportedEnvironment___rarg___lambda__1(x_15, x_19, x_13); +return x_20; +} +else +{ +lean_object* x_21; lean_object* x_22; +lean_dec(x_15); +x_21 = lean_array_fget(x_16, x_9); +lean_dec(x_16); +x_22 = lean_ctor_get(x_21, 2); +lean_inc(x_22); +lean_dec(x_21); +lean_ctor_set_tag(x_10, 1); +lean_ctor_set(x_10, 0, x_22); +return x_10; +} +} +else +{ +lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; uint8_t x_29; +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 = l_Lean_Meta_LazyDiscrTree_createImportedEnvironment___rarg___closed__2; +x_26 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_combineGet___at_Lean_Meta_LazyDiscrTree_createImportedEnvironment___spec__1___rarg(x_25, x_23); +x_27 = lean_ctor_get(x_26, 1); +lean_inc(x_27); +x_28 = lean_array_get_size(x_27); +x_29 = lean_nat_dec_lt(x_9, x_28); +lean_dec(x_28); +if (x_29 == 0) +{ +lean_object* x_30; lean_object* x_31; +lean_dec(x_27); +x_30 = lean_box(0); +x_31 = l_Lean_Meta_LazyDiscrTree_createImportedEnvironment___rarg___lambda__1(x_26, x_30, x_24); +return x_31; +} +else +{ +lean_object* x_32; lean_object* x_33; lean_object* x_34; +lean_dec(x_26); +x_32 = lean_array_fget(x_27, x_9); +lean_dec(x_27); +x_33 = lean_ctor_get(x_32, 2); +lean_inc(x_33); +lean_dec(x_32); +x_34 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_34, 0, x_33); +lean_ctor_set(x_34, 1, x_24); +return x_34; +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_LazyDiscrTree_createImportedEnvironment(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = lean_alloc_closure((void*)(l_Lean_Meta_LazyDiscrTree_createImportedEnvironment___rarg), 4, 0); +return x_2; +} +} +LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Meta_LazyDiscrTree_createImportedEnvironment___spec__2___rarg___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_Meta_LazyDiscrTree_createImportedEnvironment___spec__2___rarg(x_1, x_5, x_6, x_4); +lean_dec(x_1); +return x_7; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_LazyDiscrTree_createImportedEnvironment___rarg___lambda__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +lean_object* x_4; +x_4 = l_Lean_Meta_LazyDiscrTree_createImportedEnvironment___rarg___lambda__1(x_1, x_2, x_3); +lean_dec(x_2); +return x_4; +} +} +lean_object* initialize_Lean_Meta_CompletionName(uint8_t builtin, lean_object*); +lean_object* initialize_Lean_Meta_DiscrTree(uint8_t builtin, lean_object*); +static bool _G_initialized = false; +LEAN_EXPORT lean_object* initialize_Lean_Meta_LazyDiscrTree(uint8_t builtin, lean_object* w) { +lean_object * res; +if (_G_initialized) return lean_io_result_mk_ok(lean_box(0)); +_G_initialized = true; +res = initialize_Lean_Meta_CompletionName(builtin, lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +res = initialize_Lean_Meta_DiscrTree(builtin, lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +l_Lean_Meta_LazyDiscrTree_MatchClone_instInhabitedKey___closed__1 = _init_l_Lean_Meta_LazyDiscrTree_MatchClone_instInhabitedKey___closed__1(); +lean_mark_persistent(l_Lean_Meta_LazyDiscrTree_MatchClone_instInhabitedKey___closed__1); +l_Lean_Meta_LazyDiscrTree_MatchClone_instInhabitedKey = _init_l_Lean_Meta_LazyDiscrTree_MatchClone_instInhabitedKey(); +lean_mark_persistent(l_Lean_Meta_LazyDiscrTree_MatchClone_instInhabitedKey); +l_Lean_Meta_LazyDiscrTree_MatchClone_instBEqKey___closed__1 = _init_l_Lean_Meta_LazyDiscrTree_MatchClone_instBEqKey___closed__1(); +lean_mark_persistent(l_Lean_Meta_LazyDiscrTree_MatchClone_instBEqKey___closed__1); +l_Lean_Meta_LazyDiscrTree_MatchClone_instBEqKey = _init_l_Lean_Meta_LazyDiscrTree_MatchClone_instBEqKey(); +lean_mark_persistent(l_Lean_Meta_LazyDiscrTree_MatchClone_instBEqKey); +l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__1 = _init_l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__1(); +lean_mark_persistent(l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__1); +l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__2 = _init_l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__2(); +lean_mark_persistent(l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__2); +l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__3 = _init_l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__3(); +lean_mark_persistent(l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__3); +l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__4 = _init_l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__4(); +lean_mark_persistent(l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__4); +l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__5 = _init_l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__5(); +lean_mark_persistent(l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__5); +l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__6 = _init_l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__6(); +lean_mark_persistent(l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__6); +l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__7 = _init_l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__7(); +lean_mark_persistent(l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__7); +l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__8 = _init_l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__8(); +lean_mark_persistent(l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__8); +l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__9 = _init_l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__9(); +lean_mark_persistent(l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__9); +l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__10 = _init_l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__10(); +lean_mark_persistent(l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__10); +l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__11 = _init_l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__11(); +lean_mark_persistent(l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__11); +l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__12 = _init_l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__12(); +lean_mark_persistent(l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__12); +l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__13 = _init_l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__13(); +lean_mark_persistent(l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__13); +l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__14 = _init_l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__14(); +lean_mark_persistent(l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__14); +l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__15 = _init_l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__15(); +lean_mark_persistent(l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__15); +l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__16 = _init_l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__16(); +lean_mark_persistent(l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__16); +l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__17 = _init_l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__17(); +lean_mark_persistent(l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__17); +l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__18 = _init_l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__18(); +lean_mark_persistent(l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__18); +l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__19 = _init_l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__19(); +lean_mark_persistent(l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__19); +l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__20 = _init_l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__20(); +lean_mark_persistent(l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__20); +l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__21 = _init_l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__21(); +lean_mark_persistent(l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__21); +l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__22 = _init_l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__22(); +lean_mark_persistent(l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__22); +l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__23 = _init_l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__23(); +lean_mark_persistent(l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__23); +l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__24 = _init_l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__24(); +lean_mark_persistent(l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__24); +l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__25 = _init_l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__25(); +lean_mark_persistent(l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__25); +l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__26 = _init_l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__26(); +lean_mark_persistent(l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__26); +l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__27 = _init_l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__27(); +lean_mark_persistent(l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__27); +l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__28 = _init_l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__28(); +lean_mark_persistent(l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__28); +l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__29 = _init_l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__29(); +lean_mark_persistent(l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__29); +l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__30 = _init_l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__30(); +lean_mark_persistent(l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__30); +l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__31 = _init_l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__31(); +lean_mark_persistent(l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__31); +l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__32 = _init_l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__32(); +lean_mark_persistent(l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_reprKey____x40_Lean_Meta_LazyDiscrTree___hyg_368____closed__32); +l_Lean_Meta_LazyDiscrTree_MatchClone_instReprKey___closed__1 = _init_l_Lean_Meta_LazyDiscrTree_MatchClone_instReprKey___closed__1(); +lean_mark_persistent(l_Lean_Meta_LazyDiscrTree_MatchClone_instReprKey___closed__1); +l_Lean_Meta_LazyDiscrTree_MatchClone_instReprKey = _init_l_Lean_Meta_LazyDiscrTree_MatchClone_instReprKey(); +lean_mark_persistent(l_Lean_Meta_LazyDiscrTree_MatchClone_instReprKey); +l_Lean_Meta_LazyDiscrTree_MatchClone_Key_instHashableKey___closed__1 = _init_l_Lean_Meta_LazyDiscrTree_MatchClone_Key_instHashableKey___closed__1(); +lean_mark_persistent(l_Lean_Meta_LazyDiscrTree_MatchClone_Key_instHashableKey___closed__1); +l_Lean_Meta_LazyDiscrTree_MatchClone_Key_instHashableKey = _init_l_Lean_Meta_LazyDiscrTree_MatchClone_Key_instHashableKey(); +lean_mark_persistent(l_Lean_Meta_LazyDiscrTree_MatchClone_Key_instHashableKey); +l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_tmpMVarId___closed__1 = _init_l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_tmpMVarId___closed__1(); +lean_mark_persistent(l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_tmpMVarId___closed__1); +l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_tmpMVarId___closed__2 = _init_l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_tmpMVarId___closed__2(); +lean_mark_persistent(l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_tmpMVarId___closed__2); +l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_tmpMVarId = _init_l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_tmpMVarId(); +lean_mark_persistent(l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_tmpMVarId); +l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_tmpStar___closed__1 = _init_l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_tmpStar___closed__1(); +lean_mark_persistent(l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_tmpStar___closed__1); +l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_tmpStar = _init_l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_tmpStar(); +lean_mark_persistent(l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_tmpStar); +l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_isNumeral___closed__1 = _init_l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_isNumeral___closed__1(); +lean_mark_persistent(l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_isNumeral___closed__1); +l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_isNumeral___closed__2 = _init_l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_isNumeral___closed__2(); +lean_mark_persistent(l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_isNumeral___closed__2); +l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_isNumeral___closed__3 = _init_l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_isNumeral___closed__3(); +lean_mark_persistent(l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_isNumeral___closed__3); +l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_isNumeral___closed__4 = _init_l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_isNumeral___closed__4(); +lean_mark_persistent(l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_isNumeral___closed__4); +l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_isNumeral___closed__5 = _init_l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_isNumeral___closed__5(); +lean_mark_persistent(l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_isNumeral___closed__5); +l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_isNumeral___closed__6 = _init_l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_isNumeral___closed__6(); +lean_mark_persistent(l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_isNumeral___closed__6); +l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_isNumeral___closed__7 = _init_l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_isNumeral___closed__7(); +lean_mark_persistent(l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_isNumeral___closed__7); +l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_isNumeral___closed__8 = _init_l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_isNumeral___closed__8(); +lean_mark_persistent(l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_isNumeral___closed__8); +l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_toNatLit_x3f_loop___closed__1 = _init_l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_toNatLit_x3f_loop___closed__1(); +lean_mark_persistent(l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_toNatLit_x3f_loop___closed__1); +l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_isNatType___closed__1 = _init_l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_isNatType___closed__1(); +lean_mark_persistent(l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_isNatType___closed__1); +l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_isNatOffset___closed__1 = _init_l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_isNatOffset___closed__1(); +lean_mark_persistent(l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_isNatOffset___closed__1); +l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_isNatOffset___closed__2 = _init_l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_isNatOffset___closed__2(); +lean_mark_persistent(l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_isNatOffset___closed__2); +l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_isNatOffset___closed__3 = _init_l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_isNatOffset___closed__3(); +lean_mark_persistent(l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_isNatOffset___closed__3); +l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_isNatOffset___closed__4 = _init_l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_isNatOffset___closed__4(); +lean_mark_persistent(l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_isNatOffset___closed__4); +l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_isNatOffset___closed__5 = _init_l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_isNatOffset___closed__5(); +lean_mark_persistent(l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_isNatOffset___closed__5); +l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_isNatOffset___closed__6 = _init_l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_isNatOffset___closed__6(); +lean_mark_persistent(l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_isNatOffset___closed__6); +l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_isNatOffset___closed__7 = _init_l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_isNatOffset___closed__7(); +lean_mark_persistent(l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_isNatOffset___closed__7); +l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_elimLooseBVarsByBeta___lambda__1___closed__1 = _init_l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_elimLooseBVarsByBeta___lambda__1___closed__1(); +lean_mark_persistent(l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_elimLooseBVarsByBeta___lambda__1___closed__1); +l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_elimLooseBVarsByBeta___closed__1 = _init_l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_elimLooseBVarsByBeta___closed__1(); +lean_mark_persistent(l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_elimLooseBVarsByBeta___closed__1); +l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_elimLooseBVarsByBeta___closed__2 = _init_l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_elimLooseBVarsByBeta___closed__2(); +lean_mark_persistent(l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_elimLooseBVarsByBeta___closed__2); +l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_getKeyArgs___lambda__2___closed__1 = _init_l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_getKeyArgs___lambda__2___closed__1(); +lean_mark_persistent(l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_getKeyArgs___lambda__2___closed__1); +l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_getKeyArgs___lambda__2___closed__2 = _init_l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_getKeyArgs___lambda__2___closed__2(); +lean_mark_persistent(l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_getKeyArgs___lambda__2___closed__2); +l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_getKeyArgs___lambda__2___closed__3 = _init_l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_getKeyArgs___lambda__2___closed__3(); +lean_mark_persistent(l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_getKeyArgs___lambda__2___closed__3); +l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_getKeyArgs___lambda__3___closed__1 = _init_l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_getKeyArgs___lambda__3___closed__1(); +lean_mark_persistent(l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_getKeyArgs___lambda__3___closed__1); +l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_getKeyArgs___lambda__3___closed__2 = _init_l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_getKeyArgs___lambda__3___closed__2(); +lean_mark_persistent(l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_getKeyArgs___lambda__3___closed__2); +l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_getKeyArgs___lambda__3___closed__3 = _init_l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_getKeyArgs___lambda__3___closed__3(); +lean_mark_persistent(l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_getKeyArgs___lambda__3___closed__3); +l_Lean_Meta_LazyDiscrTree_instEmptyCollectionTrie___closed__1 = _init_l_Lean_Meta_LazyDiscrTree_instEmptyCollectionTrie___closed__1(); +lean_mark_persistent(l_Lean_Meta_LazyDiscrTree_instEmptyCollectionTrie___closed__1); +l_Lean_Meta_LazyDiscrTree_instEmptyCollectionTrie___closed__2 = _init_l_Lean_Meta_LazyDiscrTree_instEmptyCollectionTrie___closed__2(); +lean_mark_persistent(l_Lean_Meta_LazyDiscrTree_instEmptyCollectionTrie___closed__2); +l_Lean_Meta_LazyDiscrTree_config___default___closed__1 = _init_l_Lean_Meta_LazyDiscrTree_config___default___closed__1(); +lean_mark_persistent(l_Lean_Meta_LazyDiscrTree_config___default___closed__1); +l_Lean_Meta_LazyDiscrTree_config___default = _init_l_Lean_Meta_LazyDiscrTree_config___default(); +lean_mark_persistent(l_Lean_Meta_LazyDiscrTree_config___default); +l_Lean_Meta_LazyDiscrTree_tries___default___closed__1 = _init_l_Lean_Meta_LazyDiscrTree_tries___default___closed__1(); +lean_mark_persistent(l_Lean_Meta_LazyDiscrTree_tries___default___closed__1); +l_Lean_Meta_LazyDiscrTree_roots___default = _init_l_Lean_Meta_LazyDiscrTree_roots___default(); +lean_mark_persistent(l_Lean_Meta_LazyDiscrTree_roots___default); +l_Lean_Meta_LazyDiscrTree_instInhabitedLazyDiscrTree___closed__1 = _init_l_Lean_Meta_LazyDiscrTree_instInhabitedLazyDiscrTree___closed__1(); +lean_mark_persistent(l_Lean_Meta_LazyDiscrTree_instInhabitedLazyDiscrTree___closed__1); +l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_pushArgs___closed__1 = _init_l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_pushArgs___closed__1(); +lean_mark_persistent(l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_pushArgs___closed__1); +l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_pushArgs___closed__2 = _init_l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_pushArgs___closed__2(); +lean_mark_persistent(l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_pushArgs___closed__2); +l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_initCapacity = _init_l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_initCapacity(); +lean_mark_persistent(l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_initCapacity); +l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_rootKey___closed__1 = _init_l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_rootKey___closed__1(); +lean_mark_persistent(l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_rootKey___closed__1); +l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_evalNode___rarg___closed__1 = _init_l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_evalNode___rarg___closed__1(); +lean_mark_persistent(l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_evalNode___rarg___closed__1); +l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_PreDiscrTree_roots___default = _init_l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_PreDiscrTree_roots___default(); +lean_mark_persistent(l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_PreDiscrTree_roots___default); +l_Lean_Meta_LazyDiscrTree_instInhabitedPreDiscrTree___closed__1 = _init_l_Lean_Meta_LazyDiscrTree_instInhabitedPreDiscrTree___closed__1(); +lean_mark_persistent(l_Lean_Meta_LazyDiscrTree_instInhabitedPreDiscrTree___closed__1); +l_Lean_Meta_LazyDiscrTree_PreDiscrTree_append___rarg___closed__1 = _init_l_Lean_Meta_LazyDiscrTree_PreDiscrTree_append___rarg___closed__1(); +lean_mark_persistent(l_Lean_Meta_LazyDiscrTree_PreDiscrTree_append___rarg___closed__1); +l_Lean_Meta_LazyDiscrTree_PreDiscrTree_append___rarg___closed__2 = _init_l_Lean_Meta_LazyDiscrTree_PreDiscrTree_append___rarg___closed__2(); +lean_mark_persistent(l_Lean_Meta_LazyDiscrTree_PreDiscrTree_append___rarg___closed__2); +l_Lean_Meta_LazyDiscrTree_PreDiscrTree_instAppendPreDiscrTree___closed__1 = _init_l_Lean_Meta_LazyDiscrTree_PreDiscrTree_instAppendPreDiscrTree___closed__1(); +lean_mark_persistent(l_Lean_Meta_LazyDiscrTree_PreDiscrTree_instAppendPreDiscrTree___closed__1); +l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_ImportData_new___closed__1 = _init_l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_ImportData_new___closed__1(); +lean_mark_persistent(l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_ImportData_new___closed__1); +l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_ImportData_new___closed__2 = _init_l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_ImportData_new___closed__2(); +lean_mark_persistent(l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_ImportData_new___closed__2); +l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_ImportData_new___closed__3 = _init_l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_ImportData_new___closed__3(); +lean_mark_persistent(l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_ImportData_new___closed__3); +l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_ImportData_new___closed__4 = _init_l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_ImportData_new___closed__4(); +lean_mark_persistent(l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_ImportData_new___closed__4); +l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_ImportData_new___closed__5 = _init_l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_ImportData_new___closed__5(); +lean_mark_persistent(l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_ImportData_new___closed__5); +l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_ImportData_new___closed__6 = _init_l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_ImportData_new___closed__6(); +lean_mark_persistent(l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_ImportData_new___closed__6); +l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_ImportData_new___closed__7 = _init_l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_ImportData_new___closed__7(); +lean_mark_persistent(l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_ImportData_new___closed__7); +l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_ImportData_new___closed__8 = _init_l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_ImportData_new___closed__8(); +lean_mark_persistent(l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_ImportData_new___closed__8); +l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_ImportData_new___closed__9 = _init_l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_ImportData_new___closed__9(); +lean_mark_persistent(l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_ImportData_new___closed__9); +l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_ImportData_new___closed__10 = _init_l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_ImportData_new___closed__10(); +lean_mark_persistent(l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_ImportData_new___closed__10); +l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_ImportData_new___closed__11 = _init_l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_ImportData_new___closed__11(); +lean_mark_persistent(l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_ImportData_new___closed__11); +l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_ImportData_new___closed__12 = _init_l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_ImportData_new___closed__12(); +lean_mark_persistent(l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_ImportData_new___closed__12); +l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_ImportData_new___closed__13 = _init_l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_ImportData_new___closed__13(); +lean_mark_persistent(l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_ImportData_new___closed__13); +l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_ImportData_new___closed__14 = _init_l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_ImportData_new___closed__14(); +lean_mark_persistent(l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_ImportData_new___closed__14); +l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_ImportData_new___closed__15 = _init_l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_ImportData_new___closed__15(); +lean_mark_persistent(l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_ImportData_new___closed__15); +l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_ImportData_new___closed__16 = _init_l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_ImportData_new___closed__16(); +lean_mark_persistent(l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_ImportData_new___closed__16); +l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_ImportData_new___closed__17 = _init_l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_ImportData_new___closed__17(); +lean_mark_persistent(l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_ImportData_new___closed__17); +l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_addConstImportData___rarg___lambda__1___closed__1 = _init_l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_addConstImportData___rarg___lambda__1___closed__1(); +lean_mark_persistent(l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_addConstImportData___rarg___lambda__1___closed__1); +l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_addConstImportData___rarg___lambda__1___closed__2 = _init_l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_addConstImportData___rarg___lambda__1___closed__2(); +lean_mark_persistent(l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_addConstImportData___rarg___lambda__1___closed__2); +l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_addConstImportData___rarg___lambda__1___closed__3 = _init_l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_addConstImportData___rarg___lambda__1___closed__3(); +lean_mark_persistent(l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_addConstImportData___rarg___lambda__1___closed__3); +l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_addConstImportData___rarg___lambda__1___closed__4 = _init_l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_addConstImportData___rarg___lambda__1___closed__4(); +lean_mark_persistent(l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_addConstImportData___rarg___lambda__1___closed__4); +l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_addConstImportData___rarg___lambda__1___closed__5 = _init_l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_addConstImportData___rarg___lambda__1___closed__5(); +lean_mark_persistent(l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_addConstImportData___rarg___lambda__1___closed__5); +l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_addConstImportData___rarg___lambda__1___closed__6 = _init_l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_addConstImportData___rarg___lambda__1___closed__6(); +lean_mark_persistent(l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_addConstImportData___rarg___lambda__1___closed__6); +l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_addConstImportData___rarg___lambda__1___closed__7 = _init_l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_addConstImportData___rarg___lambda__1___closed__7(); +lean_mark_persistent(l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_addConstImportData___rarg___lambda__1___closed__7); +l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_addConstImportData___rarg___lambda__1___closed__8 = _init_l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_addConstImportData___rarg___lambda__1___closed__8(); +lean_mark_persistent(l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_addConstImportData___rarg___lambda__1___closed__8); +l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_addConstImportData___rarg___lambda__1___closed__9 = _init_l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_addConstImportData___rarg___lambda__1___closed__9(); +lean_mark_persistent(l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_addConstImportData___rarg___lambda__1___closed__9); +l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_addConstImportData___rarg___lambda__1___closed__10 = _init_l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_addConstImportData___rarg___lambda__1___closed__10(); +lean_mark_persistent(l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_addConstImportData___rarg___lambda__1___closed__10); +l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_addConstImportData___rarg___lambda__1___closed__11 = _init_l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_addConstImportData___rarg___lambda__1___closed__11(); +lean_mark_persistent(l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_addConstImportData___rarg___lambda__1___closed__11); +l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_addConstImportData___rarg___lambda__1___closed__12 = _init_l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_addConstImportData___rarg___lambda__1___closed__12(); +lean_mark_persistent(l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_addConstImportData___rarg___lambda__1___closed__12); +l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_addConstImportData___rarg___lambda__1___closed__13 = _init_l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_addConstImportData___rarg___lambda__1___closed__13(); +lean_mark_persistent(l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_addConstImportData___rarg___lambda__1___closed__13); +l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_addConstImportData___rarg___lambda__1___closed__14 = _init_l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_addConstImportData___rarg___lambda__1___closed__14(); +lean_mark_persistent(l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_addConstImportData___rarg___lambda__1___closed__14); +l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_addConstImportData___rarg___lambda__1___closed__15 = _init_l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_addConstImportData___rarg___lambda__1___closed__15(); +lean_mark_persistent(l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_addConstImportData___rarg___lambda__1___closed__15); +l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_addConstImportData___rarg___lambda__1___closed__16 = _init_l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_addConstImportData___rarg___lambda__1___closed__16(); +lean_mark_persistent(l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_addConstImportData___rarg___lambda__1___closed__16); +l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_addConstImportData___rarg___lambda__1___closed__17 = _init_l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_addConstImportData___rarg___lambda__1___closed__17(); +lean_mark_persistent(l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_addConstImportData___rarg___lambda__1___closed__17); +l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_addConstImportData___rarg___lambda__1___closed__18 = _init_l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_addConstImportData___rarg___lambda__1___closed__18(); +lean_mark_persistent(l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_addConstImportData___rarg___lambda__1___closed__18); +l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_addConstImportData___rarg___lambda__1___closed__19 = _init_l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_addConstImportData___rarg___lambda__1___closed__19(); +lean_mark_persistent(l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_addConstImportData___rarg___lambda__1___closed__19); +l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_addConstImportData___rarg___lambda__1___closed__20 = _init_l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_addConstImportData___rarg___lambda__1___closed__20(); +lean_mark_persistent(l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_addConstImportData___rarg___lambda__1___closed__20); +l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_addConstImportData___rarg___lambda__1___closed__21 = _init_l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_addConstImportData___rarg___lambda__1___closed__21(); +lean_mark_persistent(l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_addConstImportData___rarg___lambda__1___closed__21); +l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_InitResults_errors___default = _init_l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_InitResults_errors___default(); +lean_mark_persistent(l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_InitResults_errors___default); +l_Lean_Meta_LazyDiscrTree_instInhabitedInitResults___closed__1 = _init_l_Lean_Meta_LazyDiscrTree_instInhabitedInitResults___closed__1(); +lean_mark_persistent(l_Lean_Meta_LazyDiscrTree_instInhabitedInitResults___closed__1); +l_Lean_Meta_LazyDiscrTree_InitResults_instAppendInitResults___closed__1 = _init_l_Lean_Meta_LazyDiscrTree_InitResults_instAppendInitResults___closed__1(); +lean_mark_persistent(l_Lean_Meta_LazyDiscrTree_InitResults_instAppendInitResults___closed__1); +l_Lean_Meta_LazyDiscrTree_createImportedEnvironment___rarg___closed__1 = _init_l_Lean_Meta_LazyDiscrTree_createImportedEnvironment___rarg___closed__1(); +lean_mark_persistent(l_Lean_Meta_LazyDiscrTree_createImportedEnvironment___rarg___closed__1); +l_Lean_Meta_LazyDiscrTree_createImportedEnvironment___rarg___closed__2 = _init_l_Lean_Meta_LazyDiscrTree_createImportedEnvironment___rarg___closed__2(); +lean_mark_persistent(l_Lean_Meta_LazyDiscrTree_createImportedEnvironment___rarg___closed__2); +return lean_io_result_mk_ok(lean_box(0)); +} +#ifdef __cplusplus +} +#endif diff --git a/stage0/stdlib/Lean/Meta/LitValues.c b/stage0/stdlib/Lean/Meta/LitValues.c new file mode 100644 index 0000000000..53c7ec0044 --- /dev/null +++ b/stage0/stdlib/Lean/Meta/LitValues.c @@ -0,0 +1,4445 @@ +// Lean compiler output +// Module: Lean.Meta.LitValues +// Imports: Lean.Meta.Basic +#include +#if defined(__clang__) +#pragma clang diagnostic ignored "-Wunused-parameter" +#pragma clang diagnostic ignored "-Wunused-label" +#elif defined(__GNUC__) && !defined(__CLANG__) +#pragma GCC diagnostic ignored "-Wunused-parameter" +#pragma GCC diagnostic ignored "-Wunused-label" +#pragma GCC diagnostic ignored "-Wunused-but-set-variable" +#endif +#ifdef __cplusplus +extern "C" { +#endif +LEAN_EXPORT lean_object* l_Lean_Meta_getUInt32Value_x3f___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_EXPORT lean_object* l_Lean_Meta_normLitValue___lambda__10(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_mkNatLit(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_getCharValue_x3f(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Meta_getIntValue_x3f___lambda__2___closed__1; +lean_object* l___private_Lean_Expr_0__Lean_Expr_getAppNumArgsAux(lean_object*, lean_object*); +lean_object* lean_uint32_to_nat(uint32_t); +LEAN_EXPORT lean_object* l_Lean_Meta_getNatValue_x3f(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Meta_normLitValue___lambda__2___closed__5; +static lean_object* l_Lean_Meta_normLitValue___lambda__9___closed__2; +uint64_t lean_uint64_of_nat(lean_object*); +lean_object* l_Lean_mkAppB(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_normLitValue___lambda__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_getUInt64Value_x3f(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_normLitValue___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Meta_getBitVecValue_x3f___closed__1; +LEAN_EXPORT lean_object* l_Lean_Meta_getIntValue_x3f___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_normLitValue___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Meta_normLitValue___lambda__2___closed__2; +LEAN_EXPORT lean_object* l_Lean_Meta_getUInt32Value_x3f(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_normLitValue(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_getIntValue_x3f___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Meta_normLitValue___lambda__2___closed__6; +static lean_object* l_Lean_Meta_normLitValue___lambda__5___closed__2; +static lean_object* l_Lean_Meta_getUInt32Value_x3f___closed__1; +uint8_t lean_int_dec_le(lean_object*, lean_object*); +static lean_object* l_Lean_Meta_normLitValue___lambda__2___closed__1; +static lean_object* l_Lean_Meta_normLitValue___lambda__10___closed__3; +lean_object* lean_string_push(lean_object*, uint32_t); +lean_object* l_Lean_Level_ofNat(lean_object*); +lean_object* l_Lean_Expr_appArg_x21(lean_object*); +lean_object* l_Fin_ofNat(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_getUInt16Value_x3f___boxed(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*); +static lean_object* l_Lean_Meta_getFinValue_x3f___closed__2; +uint8_t l_Lean_Expr_isAppOfArity_x27(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_getStringValue_x3f(lean_object*); +lean_object* l_Lean_mkStrLit(lean_object*); +static lean_object* l_Lean_Meta_getUInt16Value_x3f___closed__2; +static lean_object* l_Lean_Meta_normLitValue___lambda__4___closed__3; +LEAN_EXPORT lean_object* l_Lean_Meta_getIntValue_x3f(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* lean_uint16_to_nat(uint16_t); +static lean_object* l_Lean_Meta_getUInt32Value_x3f___closed__2; +LEAN_EXPORT lean_object* l_Lean_Meta_getIntValue_x3f___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* lean_nat_to_int(lean_object*); +uint32_t lean_uint32_of_nat(lean_object*); +static lean_object* l_Lean_Meta_getCharValue_x3f___closed__2; +static lean_object* l_Lean_Meta_getIntValue_x3f___lambda__2___closed__3; +lean_object* lean_uint64_to_nat(uint64_t); +LEAN_EXPORT lean_object* l_Lean_Meta_normLitValue___lambda__9(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Meta_getIntValue_x3f___lambda__2___closed__2; +LEAN_EXPORT lean_object* l_Lean_Meta_normLitValue___lambda__6(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_getBitVecValue_x3f(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_Meta_getUInt64Value_x3f___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Meta_normLitValue___lambda__6___closed__1; +static lean_object* l_Lean_Meta_getNatValue_x3f___lambda__1___closed__2; +static lean_object* l_Lean_Meta_getFinValue_x3f___closed__1; +static lean_object* l_Lean_Meta_getOfNatValue_x3f___closed__3; +static lean_object* l_Lean_Meta_getBitVecValue_x3f___lambda__1___closed__2; +LEAN_EXPORT lean_object* l_Lean_Meta_getUInt8Value_x3f(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_getUInt16Value_x3f(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_normLitValue___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_normLitValue___lambda__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Meta_whnfD(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Meta_normLitValue___lambda__10___closed__1; +LEAN_EXPORT lean_object* l_Lean_Meta_normLitValue___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_IO_print___at_IO_println___spec__1(lean_object*, lean_object*); +static lean_object* l_Lean_Meta_normLitValue___lambda__4___closed__1; +static lean_object* l_Lean_Meta_getIntValue_x3f___closed__2; +LEAN_EXPORT lean_object* l_Lean_Meta_getNatValue_x3f___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +uint16_t lean_uint16_of_nat(lean_object*); +static lean_object* l_Lean_Meta_getOfNatValue_x3f___closed__1; +lean_object* l_Lean_Name_str___override(lean_object*, lean_object*); +static lean_object* l_Lean_Meta_normLitValue___lambda__10___closed__6; +static lean_object* l_Lean_Meta_getUInt8Value_x3f___closed__2; +static lean_object* l_Lean_Meta_getUInt64Value_x3f___closed__2; +LEAN_EXPORT lean_object* l_Lean_Meta_getIntValue_x3f___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_getNatValue_x3f___lambda__1___closed__1; +LEAN_EXPORT lean_object* l_Lean_Meta_normLitValue___lambda__5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Meta_normLitValue___lambda__3___closed__3; +static lean_object* l_Lean_Meta_normLitValue___lambda__4___closed__2; +LEAN_EXPORT lean_object* l_Lean_Meta_getFinValue_x3f(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Meta_getIntValue_x3f___lambda__2___closed__4; +static lean_object* l_Lean_Meta_normLitValue___lambda__5___closed__1; +LEAN_EXPORT lean_object* l_Lean_Meta_getFinValue_x3f___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Meta_normLitValue___lambda__10___closed__4; +static lean_object* l_Lean_Meta_getOfNatValue_x3f___closed__4; +static lean_object* l_Lean_Meta_normLitValue___lambda__10___closed__2; +LEAN_EXPORT lean_object* l_Lean_Meta_getOfNatValue_x3f(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_getRawNatValue_x3f___boxed(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_getIntValue_x3f___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Meta_normLitValue___lambda__9___closed__3; +LEAN_EXPORT lean_object* l_Lean_Meta_getStringValue_x3f___boxed(lean_object*); +lean_object* l_Lean_Expr_app___override(lean_object*, lean_object*); +static lean_object* l_Lean_Meta_normLitValue___lambda__9___closed__1; +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_Meta_getUInt64Value_x3f___closed__1; +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; +lean_object* l_Lean_mkRawNatLit(lean_object*); +static lean_object* l_Lean_Meta_getCharValue_x3f___closed__1; +static lean_object* l_Lean_Meta_normLitValue___lambda__8___closed__1; +lean_object* l_Lean_Name_mkStr2(lean_object*, lean_object*); +static lean_object* l_Lean_Meta_normLitValue___lambda__2___closed__7; +static lean_object* l_Lean_Meta_normLitValue___lambda__2___closed__3; +uint8_t l_Lean_Expr_isConstOf(lean_object*, lean_object*); +lean_object* l_Int_toNat(lean_object*); +static lean_object* l_Lean_Meta_getBitVecValue_x3f___lambda__1___closed__1; +LEAN_EXPORT lean_object* l_Lean_Meta_normLitValue___lambda__7(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* lean_nat_sub(lean_object*, lean_object*); +lean_object* l_Lean_Expr_getAppFn(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_getOfNatValue_x3f___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Meta_normLitValue___lambda__5___closed__3; +static lean_object* l_Lean_Meta_normLitValue___lambda__2___closed__4; +LEAN_EXPORT lean_object* l_Lean_Meta_getCharValue_x3f___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +uint8_t lean_uint8_of_nat(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_getBitVecValue_x3f___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Meta_getUInt16Value_x3f___closed__1; +static lean_object* l_Lean_Meta_getOfNatValue_x3f___closed__2; +LEAN_EXPORT lean_object* l_Lean_Meta_getRawNatValue_x3f(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_getUInt8Value_x3f___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_IO_println___at_Lean_Meta_getBitVecValue_x3f___spec__1(lean_object*, lean_object*); +static lean_object* l_Lean_Meta_getUInt8Value_x3f___closed__1; +LEAN_EXPORT lean_object* l_Lean_Meta_getBitVecValue_x3f___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_instToExprInt_mkNat(lean_object*); +lean_object* lean_io_error_to_string(lean_object*); +static lean_object* l_Lean_Meta_normLitValue___lambda__10___closed__5; +LEAN_EXPORT lean_object* l_Lean_Meta_getNatValue_x3f___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* lean_int_neg(lean_object*); +static lean_object* l_Lean_Meta_normLitValue___lambda__3___closed__2; +lean_object* lean_nat_add(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_getBitVecValue_x3f___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Expr_consumeMData(lean_object*); +lean_object* lean_uint32_to_nat(uint32_t); +lean_object* l_Nat_repr(lean_object*); +lean_object* l_Char_ofNat(lean_object*); +lean_object* l_Lean_Expr_getRevArg_x21_x27(lean_object*, lean_object*); +static lean_object* l_Lean_Meta_getIntValue_x3f___closed__1; +lean_object* lean_uint8_to_nat(uint8_t); +LEAN_EXPORT lean_object* l_Lean_Meta_getRawNatValue_x3f(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = l_Lean_Expr_consumeMData(x_1); +if (lean_obj_tag(x_2) == 9) +{ +lean_object* x_3; +x_3 = lean_ctor_get(x_2, 0); +lean_inc(x_3); +lean_dec(x_2); +if (lean_obj_tag(x_3) == 0) +{ +lean_object* x_4; lean_object* x_5; +x_4 = lean_ctor_get(x_3, 0); +lean_inc(x_4); +lean_dec(x_3); +x_5 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_5, 0, x_4); +return x_5; +} +else +{ +lean_object* x_6; +lean_dec(x_3); +x_6 = lean_box(0); +return x_6; +} +} +else +{ +lean_object* x_7; +lean_dec(x_2); +x_7 = lean_box(0); +return x_7; +} +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_getRawNatValue_x3f___boxed(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = l_Lean_Meta_getRawNatValue_x3f(x_1); +lean_dec(x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Meta_getOfNatValue_x3f___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("OfNat", 5); +return x_1; +} +} +static lean_object* _init_l_Lean_Meta_getOfNatValue_x3f___closed__2() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("ofNat", 5); +return x_1; +} +} +static lean_object* _init_l_Lean_Meta_getOfNatValue_x3f___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Meta_getOfNatValue_x3f___closed__1; +x_2 = l_Lean_Meta_getOfNatValue_x3f___closed__2; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Meta_getOfNatValue_x3f___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = lean_box(0); +x_2 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_getOfNatValue_x3f(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_object* x_10; uint8_t x_11; lean_object* x_12; lean_object* x_13; +x_8 = l_Lean_Expr_consumeMData(x_1); +x_9 = l_Lean_Meta_getOfNatValue_x3f___closed__3; +x_10 = lean_unsigned_to_nat(3u); +x_11 = l_Lean_Expr_isAppOfArity_x27(x_8, x_9, x_10); +if (x_11 == 0) +{ +lean_object* x_67; +x_67 = lean_box(0); +x_12 = x_67; +x_13 = x_7; +goto block_66; +} +else +{ +lean_object* x_68; +x_68 = l_Lean_Meta_getOfNatValue_x3f___closed__4; +x_12 = x_68; +x_13 = x_7; +goto block_66; +} +block_66: +{ +if (lean_obj_tag(x_12) == 0) +{ +lean_object* x_14; lean_object* x_15; +lean_dec(x_8); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +x_14 = lean_box(0); +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_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; +lean_dec(x_12); +x_16 = lean_unsigned_to_nat(0u); +x_17 = l___private_Lean_Expr_0__Lean_Expr_getAppNumArgsAux(x_8, x_16); +x_18 = lean_nat_sub(x_17, x_16); +x_19 = lean_unsigned_to_nat(1u); +x_20 = lean_nat_sub(x_18, x_19); +lean_dec(x_18); +x_21 = l_Lean_Expr_getRevArg_x21_x27(x_8, x_20); +x_22 = l_Lean_Meta_whnfD(x_21, x_3, x_4, x_5, x_6, x_13); +if (lean_obj_tag(x_22) == 0) +{ +lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_58; uint8_t x_59; +x_23 = lean_ctor_get(x_22, 0); +lean_inc(x_23); +x_24 = lean_ctor_get(x_22, 1); +lean_inc(x_24); +if (lean_is_exclusive(x_22)) { + lean_ctor_release(x_22, 0); + lean_ctor_release(x_22, 1); + x_25 = x_22; +} else { + lean_dec_ref(x_22); + x_25 = lean_box(0); +} +x_58 = l_Lean_Expr_getAppFn(x_23); +x_59 = l_Lean_Expr_isConstOf(x_58, x_2); +lean_dec(x_58); +if (x_59 == 0) +{ +lean_object* x_60; +x_60 = lean_box(0); +x_26 = x_60; +x_27 = x_24; +goto block_57; +} +else +{ +lean_object* x_61; +x_61 = l_Lean_Meta_getOfNatValue_x3f___closed__4; +x_26 = x_61; +x_27 = x_24; +goto block_57; +} +block_57: +{ +if (lean_obj_tag(x_26) == 0) +{ +lean_object* x_28; lean_object* x_29; +lean_dec(x_23); +lean_dec(x_17); +lean_dec(x_8); +x_28 = lean_box(0); +if (lean_is_scalar(x_25)) { + x_29 = lean_alloc_ctor(0, 2, 0); +} else { + x_29 = x_25; +} +lean_ctor_set(x_29, 0, x_28); +lean_ctor_set(x_29, 1, x_27); +return x_29; +} +else +{ +uint8_t x_30; +x_30 = !lean_is_exclusive(x_26); +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); +lean_dec(x_31); +x_32 = lean_nat_sub(x_17, x_19); +lean_dec(x_17); +x_33 = lean_nat_sub(x_32, x_19); +lean_dec(x_32); +x_34 = l_Lean_Expr_getRevArg_x21_x27(x_8, x_33); +lean_dec(x_8); +x_35 = l_Lean_Expr_consumeMData(x_34); +lean_dec(x_34); +if (lean_obj_tag(x_35) == 9) +{ +lean_object* x_36; +x_36 = lean_ctor_get(x_35, 0); +lean_inc(x_36); +lean_dec(x_35); +if (lean_obj_tag(x_36) == 0) +{ +lean_object* x_37; lean_object* x_38; lean_object* x_39; +x_37 = lean_ctor_get(x_36, 0); +lean_inc(x_37); +lean_dec(x_36); +x_38 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_38, 0, x_37); +lean_ctor_set(x_38, 1, x_23); +lean_ctor_set(x_26, 0, x_38); +if (lean_is_scalar(x_25)) { + x_39 = lean_alloc_ctor(0, 2, 0); +} else { + x_39 = x_25; +} +lean_ctor_set(x_39, 0, x_26); +lean_ctor_set(x_39, 1, x_27); +return x_39; +} +else +{ +lean_object* x_40; lean_object* x_41; +lean_dec(x_36); +lean_free_object(x_26); +lean_dec(x_23); +x_40 = lean_box(0); +if (lean_is_scalar(x_25)) { + x_41 = lean_alloc_ctor(0, 2, 0); +} else { + x_41 = x_25; +} +lean_ctor_set(x_41, 0, x_40); +lean_ctor_set(x_41, 1, x_27); +return x_41; +} +} +else +{ +lean_object* x_42; lean_object* x_43; +lean_dec(x_35); +lean_free_object(x_26); +lean_dec(x_23); +x_42 = lean_box(0); +if (lean_is_scalar(x_25)) { + x_43 = lean_alloc_ctor(0, 2, 0); +} else { + x_43 = x_25; +} +lean_ctor_set(x_43, 0, x_42); +lean_ctor_set(x_43, 1, x_27); +return x_43; +} +} +else +{ +lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; +lean_dec(x_26); +x_44 = lean_nat_sub(x_17, x_19); +lean_dec(x_17); +x_45 = lean_nat_sub(x_44, x_19); +lean_dec(x_44); +x_46 = l_Lean_Expr_getRevArg_x21_x27(x_8, x_45); +lean_dec(x_8); +x_47 = l_Lean_Expr_consumeMData(x_46); +lean_dec(x_46); +if (lean_obj_tag(x_47) == 9) +{ +lean_object* x_48; +x_48 = lean_ctor_get(x_47, 0); +lean_inc(x_48); +lean_dec(x_47); +if (lean_obj_tag(x_48) == 0) +{ +lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; +x_49 = lean_ctor_get(x_48, 0); +lean_inc(x_49); +lean_dec(x_48); +x_50 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_50, 0, x_49); +lean_ctor_set(x_50, 1, x_23); +x_51 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_51, 0, x_50); +if (lean_is_scalar(x_25)) { + x_52 = lean_alloc_ctor(0, 2, 0); +} else { + x_52 = x_25; +} +lean_ctor_set(x_52, 0, x_51); +lean_ctor_set(x_52, 1, x_27); +return x_52; +} +else +{ +lean_object* x_53; lean_object* x_54; +lean_dec(x_48); +lean_dec(x_23); +x_53 = lean_box(0); +if (lean_is_scalar(x_25)) { + x_54 = lean_alloc_ctor(0, 2, 0); +} else { + x_54 = x_25; +} +lean_ctor_set(x_54, 0, x_53); +lean_ctor_set(x_54, 1, x_27); +return x_54; +} +} +else +{ +lean_object* x_55; lean_object* x_56; +lean_dec(x_47); +lean_dec(x_23); +x_55 = lean_box(0); +if (lean_is_scalar(x_25)) { + x_56 = lean_alloc_ctor(0, 2, 0); +} else { + x_56 = x_25; +} +lean_ctor_set(x_56, 0, x_55); +lean_ctor_set(x_56, 1, x_27); +return x_56; +} +} +} +} +} +else +{ +uint8_t x_62; +lean_dec(x_17); +lean_dec(x_8); +x_62 = !lean_is_exclusive(x_22); +if (x_62 == 0) +{ +return x_22; +} +else +{ +lean_object* x_63; lean_object* x_64; lean_object* x_65; +x_63 = lean_ctor_get(x_22, 0); +x_64 = lean_ctor_get(x_22, 1); +lean_inc(x_64); +lean_inc(x_63); +lean_dec(x_22); +x_65 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_65, 0, x_63); +lean_ctor_set(x_65, 1, x_64); +return x_65; +} +} +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_getOfNatValue_x3f___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_Lean_Meta_getOfNatValue_x3f(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +lean_dec(x_2); +lean_dec(x_1); +return x_8; +} +} +static lean_object* _init_l_Lean_Meta_getNatValue_x3f___lambda__1___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("Nat", 3); +return x_1; +} +} +static lean_object* _init_l_Lean_Meta_getNatValue_x3f___lambda__1___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Meta_getNatValue_x3f___lambda__1___closed__1; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_getNatValue_x3f___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) { +_start: +{ +lean_object* x_8; lean_object* x_9; +x_8 = l_Lean_Meta_getNatValue_x3f___lambda__1___closed__2; +x_9 = l_Lean_Meta_getOfNatValue_x3f(x_1, x_8, x_3, x_4, x_5, x_6, x_7); +if (lean_obj_tag(x_9) == 0) +{ +lean_object* x_10; +x_10 = lean_ctor_get(x_9, 0); +lean_inc(x_10); +if (lean_obj_tag(x_10) == 0) +{ +uint8_t x_11; +x_11 = !lean_is_exclusive(x_9); +if (x_11 == 0) +{ +lean_object* x_12; lean_object* x_13; +x_12 = lean_ctor_get(x_9, 0); +lean_dec(x_12); +x_13 = lean_box(0); +lean_ctor_set(x_9, 0, x_13); +return x_9; +} +else +{ +lean_object* x_14; lean_object* x_15; lean_object* x_16; +x_14 = lean_ctor_get(x_9, 1); +lean_inc(x_14); +lean_dec(x_9); +x_15 = lean_box(0); +x_16 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_16, 0, x_15); +lean_ctor_set(x_16, 1, x_14); +return x_16; +} +} +else +{ +uint8_t x_17; +x_17 = !lean_is_exclusive(x_10); +if (x_17 == 0) +{ +uint8_t x_18; +x_18 = !lean_is_exclusive(x_9); +if (x_18 == 0) +{ +lean_object* x_19; lean_object* x_20; lean_object* x_21; +x_19 = lean_ctor_get(x_10, 0); +x_20 = lean_ctor_get(x_9, 0); +lean_dec(x_20); +x_21 = lean_ctor_get(x_19, 0); +lean_inc(x_21); +lean_dec(x_19); +lean_ctor_set(x_10, 0, x_21); +return x_9; +} +else +{ +lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; +x_22 = lean_ctor_get(x_10, 0); +x_23 = lean_ctor_get(x_9, 1); +lean_inc(x_23); +lean_dec(x_9); +x_24 = lean_ctor_get(x_22, 0); +lean_inc(x_24); +lean_dec(x_22); +lean_ctor_set(x_10, 0, x_24); +x_25 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_25, 0, x_10); +lean_ctor_set(x_25, 1, x_23); +return x_25; +} +} +else +{ +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_26 = lean_ctor_get(x_10, 0); +lean_inc(x_26); +lean_dec(x_10); +x_27 = lean_ctor_get(x_9, 1); +lean_inc(x_27); +if (lean_is_exclusive(x_9)) { + lean_ctor_release(x_9, 0); + lean_ctor_release(x_9, 1); + x_28 = x_9; +} else { + lean_dec_ref(x_9); + x_28 = lean_box(0); +} +x_29 = lean_ctor_get(x_26, 0); +lean_inc(x_29); +lean_dec(x_26); +x_30 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_30, 0, x_29); +if (lean_is_scalar(x_28)) { + x_31 = lean_alloc_ctor(0, 2, 0); +} else { + x_31 = x_28; +} +lean_ctor_set(x_31, 0, x_30); +lean_ctor_set(x_31, 1, x_27); +return x_31; +} +} +} +else +{ +uint8_t x_32; +x_32 = !lean_is_exclusive(x_9); +if (x_32 == 0) +{ +return x_9; +} +else +{ +lean_object* x_33; lean_object* x_34; lean_object* x_35; +x_33 = lean_ctor_get(x_9, 0); +x_34 = lean_ctor_get(x_9, 1); +lean_inc(x_34); +lean_inc(x_33); +lean_dec(x_9); +x_35 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_35, 0, x_33); +lean_ctor_set(x_35, 1, x_34); +return x_35; +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_getNatValue_x3f(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; lean_object* x_8; +x_7 = l_Lean_Expr_consumeMData(x_1); +lean_dec(x_1); +x_8 = l_Lean_Meta_getRawNatValue_x3f(x_7); +if (lean_obj_tag(x_8) == 0) +{ +lean_object* x_9; lean_object* x_10; +x_9 = lean_box(0); +x_10 = l_Lean_Meta_getNatValue_x3f___lambda__1(x_7, x_9, x_2, x_3, x_4, x_5, x_6); +lean_dec(x_7); +return x_10; +} +else +{ +uint8_t x_11; +lean_dec(x_7); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_11 = !lean_is_exclusive(x_8); +if (x_11 == 0) +{ +lean_object* x_12; +x_12 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_12, 0, x_8); +lean_ctor_set(x_12, 1, x_6); +return x_12; +} +else +{ +lean_object* x_13; lean_object* x_14; lean_object* x_15; +x_13 = lean_ctor_get(x_8, 0); +lean_inc(x_13); +lean_dec(x_8); +x_14 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_14, 0, x_13); +x_15 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_15, 0, x_14); +lean_ctor_set(x_15, 1, x_6); +return x_15; +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_getNatValue_x3f___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) { +_start: +{ +lean_object* x_8; +x_8 = l_Lean_Meta_getNatValue_x3f___lambda__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +lean_dec(x_2); +lean_dec(x_1); +return x_8; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_getIntValue_x3f___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; lean_object* x_8; +x_7 = lean_box(0); +x_8 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_8, 0, x_7); +lean_ctor_set(x_8, 1, x_6); +return x_8; +} +} +static lean_object* _init_l_Lean_Meta_getIntValue_x3f___lambda__2___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Meta_getIntValue_x3f___lambda__1___boxed), 6, 0); +return x_1; +} +} +static lean_object* _init_l_Lean_Meta_getIntValue_x3f___lambda__2___closed__2() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("Neg", 3); +return x_1; +} +} +static lean_object* _init_l_Lean_Meta_getIntValue_x3f___lambda__2___closed__3() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("neg", 3); +return x_1; +} +} +static lean_object* _init_l_Lean_Meta_getIntValue_x3f___lambda__2___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Meta_getIntValue_x3f___lambda__2___closed__2; +x_2 = l_Lean_Meta_getIntValue_x3f___lambda__2___closed__3; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_getIntValue_x3f___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) { +_start: +{ +lean_object* x_9; lean_object* x_10; lean_object* x_11; uint8_t x_12; +x_9 = l_Lean_Meta_getIntValue_x3f___lambda__2___closed__1; +x_10 = l_Lean_Meta_getIntValue_x3f___lambda__2___closed__4; +x_11 = lean_unsigned_to_nat(3u); +x_12 = l_Lean_Expr_isAppOfArity_x27(x_1, x_10, x_11); +if (x_12 == 0) +{ +lean_object* x_13; lean_object* x_14; +x_13 = lean_box(0); +x_14 = lean_apply_6(x_9, x_13, x_4, x_5, x_6, x_7, x_8); +return x_14; +} +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; lean_object* x_22; +x_15 = lean_unsigned_to_nat(0u); +x_16 = l___private_Lean_Expr_0__Lean_Expr_getAppNumArgsAux(x_1, x_15); +x_17 = lean_unsigned_to_nat(2u); +x_18 = lean_nat_sub(x_16, x_17); +lean_dec(x_16); +x_19 = lean_unsigned_to_nat(1u); +x_20 = lean_nat_sub(x_18, x_19); +lean_dec(x_18); +x_21 = l_Lean_Expr_getRevArg_x21_x27(x_1, x_20); +x_22 = l_Lean_Meta_getOfNatValue_x3f(x_21, x_2, x_4, x_5, x_6, x_7, x_8); +lean_dec(x_21); +if (lean_obj_tag(x_22) == 0) +{ +lean_object* x_23; +x_23 = lean_ctor_get(x_22, 0); +lean_inc(x_23); +if (lean_obj_tag(x_23) == 0) +{ +uint8_t x_24; +x_24 = !lean_is_exclusive(x_22); +if (x_24 == 0) +{ +lean_object* x_25; lean_object* x_26; +x_25 = lean_ctor_get(x_22, 0); +lean_dec(x_25); +x_26 = lean_box(0); +lean_ctor_set(x_22, 0, x_26); +return x_22; +} +else +{ +lean_object* x_27; lean_object* x_28; lean_object* x_29; +x_27 = lean_ctor_get(x_22, 1); +lean_inc(x_27); +lean_dec(x_22); +x_28 = lean_box(0); +x_29 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_29, 0, x_28); +lean_ctor_set(x_29, 1, x_27); +return x_29; +} +} +else +{ +uint8_t x_30; +x_30 = !lean_is_exclusive(x_23); +if (x_30 == 0) +{ +uint8_t x_31; +x_31 = !lean_is_exclusive(x_22); +if (x_31 == 0) +{ +lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; +x_32 = lean_ctor_get(x_23, 0); +x_33 = lean_ctor_get(x_22, 0); +lean_dec(x_33); +x_34 = lean_ctor_get(x_32, 0); +lean_inc(x_34); +lean_dec(x_32); +x_35 = lean_nat_to_int(x_34); +x_36 = lean_int_neg(x_35); +lean_dec(x_35); +lean_ctor_set(x_23, 0, x_36); +return x_22; +} +else +{ +lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; +x_37 = lean_ctor_get(x_23, 0); +x_38 = lean_ctor_get(x_22, 1); +lean_inc(x_38); +lean_dec(x_22); +x_39 = lean_ctor_get(x_37, 0); +lean_inc(x_39); +lean_dec(x_37); +x_40 = lean_nat_to_int(x_39); +x_41 = lean_int_neg(x_40); +lean_dec(x_40); +lean_ctor_set(x_23, 0, x_41); +x_42 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_42, 0, x_23); +lean_ctor_set(x_42, 1, x_38); +return x_42; +} +} +else +{ +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; +x_43 = lean_ctor_get(x_23, 0); +lean_inc(x_43); +lean_dec(x_23); +x_44 = lean_ctor_get(x_22, 1); +lean_inc(x_44); +if (lean_is_exclusive(x_22)) { + lean_ctor_release(x_22, 0); + lean_ctor_release(x_22, 1); + x_45 = x_22; +} else { + lean_dec_ref(x_22); + x_45 = lean_box(0); +} +x_46 = lean_ctor_get(x_43, 0); +lean_inc(x_46); +lean_dec(x_43); +x_47 = lean_nat_to_int(x_46); +x_48 = lean_int_neg(x_47); +lean_dec(x_47); +x_49 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_49, 0, x_48); +if (lean_is_scalar(x_45)) { + x_50 = lean_alloc_ctor(0, 2, 0); +} else { + x_50 = x_45; +} +lean_ctor_set(x_50, 0, x_49); +lean_ctor_set(x_50, 1, x_44); +return x_50; +} +} +} +else +{ +uint8_t x_51; +x_51 = !lean_is_exclusive(x_22); +if (x_51 == 0) +{ +return x_22; +} +else +{ +lean_object* x_52; lean_object* x_53; lean_object* x_54; +x_52 = lean_ctor_get(x_22, 0); +x_53 = lean_ctor_get(x_22, 1); +lean_inc(x_53); +lean_inc(x_52); +lean_dec(x_22); +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; +} +} +} +} +} +static lean_object* _init_l_Lean_Meta_getIntValue_x3f___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("Int", 3); +return x_1; +} +} +static lean_object* _init_l_Lean_Meta_getIntValue_x3f___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Meta_getIntValue_x3f___closed__1; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_getIntValue_x3f(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; lean_object* x_8; +x_7 = l_Lean_Meta_getIntValue_x3f___closed__2; +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +lean_inc(x_2); +x_8 = l_Lean_Meta_getOfNatValue_x3f(x_1, x_7, x_2, x_3, x_4, x_5, x_6); +if (lean_obj_tag(x_8) == 0) +{ +lean_object* x_9; +x_9 = lean_ctor_get(x_8, 0); +lean_inc(x_9); +if (lean_obj_tag(x_9) == 0) +{ +lean_object* x_10; lean_object* x_11; lean_object* x_12; +x_10 = lean_ctor_get(x_8, 1); +lean_inc(x_10); +lean_dec(x_8); +x_11 = lean_box(0); +x_12 = l_Lean_Meta_getIntValue_x3f___lambda__2(x_1, x_7, x_11, x_2, x_3, x_4, x_5, x_10); +return x_12; +} +else +{ +uint8_t x_13; +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_13 = !lean_is_exclusive(x_9); +if (x_13 == 0) +{ +uint8_t x_14; +x_14 = !lean_is_exclusive(x_8); +if (x_14 == 0) +{ +lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; +x_15 = lean_ctor_get(x_9, 0); +x_16 = lean_ctor_get(x_8, 0); +lean_dec(x_16); +x_17 = lean_ctor_get(x_15, 0); +lean_inc(x_17); +lean_dec(x_15); +x_18 = lean_nat_to_int(x_17); +lean_ctor_set(x_9, 0, x_18); +return x_8; +} +else +{ +lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; +x_19 = lean_ctor_get(x_9, 0); +x_20 = lean_ctor_get(x_8, 1); +lean_inc(x_20); +lean_dec(x_8); +x_21 = lean_ctor_get(x_19, 0); +lean_inc(x_21); +lean_dec(x_19); +x_22 = lean_nat_to_int(x_21); +lean_ctor_set(x_9, 0, x_22); +x_23 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_23, 0, x_9); +lean_ctor_set(x_23, 1, x_20); +return x_23; +} +} +else +{ +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_24 = lean_ctor_get(x_9, 0); +lean_inc(x_24); +lean_dec(x_9); +x_25 = lean_ctor_get(x_8, 1); +lean_inc(x_25); +if (lean_is_exclusive(x_8)) { + lean_ctor_release(x_8, 0); + lean_ctor_release(x_8, 1); + x_26 = x_8; +} else { + lean_dec_ref(x_8); + x_26 = lean_box(0); +} +x_27 = lean_ctor_get(x_24, 0); +lean_inc(x_27); +lean_dec(x_24); +x_28 = lean_nat_to_int(x_27); +x_29 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_29, 0, x_28); +if (lean_is_scalar(x_26)) { + x_30 = lean_alloc_ctor(0, 2, 0); +} else { + x_30 = x_26; +} +lean_ctor_set(x_30, 0, x_29); +lean_ctor_set(x_30, 1, x_25); +return x_30; +} +} +} +else +{ +uint8_t x_31; +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_31 = !lean_is_exclusive(x_8); +if (x_31 == 0) +{ +return x_8; +} +else +{ +lean_object* x_32; lean_object* x_33; lean_object* x_34; +x_32 = lean_ctor_get(x_8, 0); +x_33 = lean_ctor_get(x_8, 1); +lean_inc(x_33); +lean_inc(x_32); +lean_dec(x_8); +x_34 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_34, 0, x_32); +lean_ctor_set(x_34, 1, x_33); +return x_34; +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_getIntValue_x3f___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_Lean_Meta_getIntValue_x3f___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); +lean_dec(x_1); +return x_7; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_getIntValue_x3f___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) { +_start: +{ +lean_object* x_9; +x_9 = l_Lean_Meta_getIntValue_x3f___lambda__2(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +return x_9; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_getIntValue_x3f___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_Lean_Meta_getIntValue_x3f(x_1, x_2, x_3, x_4, x_5, x_6); +lean_dec(x_1); +return x_7; +} +} +static lean_object* _init_l_Lean_Meta_getCharValue_x3f___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("Char", 4); +return x_1; +} +} +static lean_object* _init_l_Lean_Meta_getCharValue_x3f___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Meta_getCharValue_x3f___closed__1; +x_2 = l_Lean_Meta_getOfNatValue_x3f___closed__2; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_getCharValue_x3f(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; lean_object* x_8; uint8_t x_9; +x_7 = l_Lean_Meta_getCharValue_x3f___closed__2; +x_8 = lean_unsigned_to_nat(1u); +x_9 = l_Lean_Expr_isAppOfArity_x27(x_1, x_7, x_8); +if (x_9 == 0) +{ +lean_object* x_10; lean_object* x_11; +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_10 = lean_box(0); +x_11 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_11, 0, x_10); +lean_ctor_set(x_11, 1, x_6); +return x_11; +} +else +{ +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_12 = lean_unsigned_to_nat(0u); +x_13 = l___private_Lean_Expr_0__Lean_Expr_getAppNumArgsAux(x_1, x_12); +x_14 = lean_nat_sub(x_13, x_12); +lean_dec(x_13); +x_15 = lean_nat_sub(x_14, x_8); +lean_dec(x_14); +x_16 = l_Lean_Expr_getRevArg_x21_x27(x_1, x_15); +x_17 = l_Lean_Meta_getNatValue_x3f(x_16, x_2, x_3, x_4, x_5, x_6); +if (lean_obj_tag(x_17) == 0) +{ +lean_object* x_18; +x_18 = lean_ctor_get(x_17, 0); +lean_inc(x_18); +if (lean_obj_tag(x_18) == 0) +{ +uint8_t x_19; +x_19 = !lean_is_exclusive(x_17); +if (x_19 == 0) +{ +lean_object* x_20; lean_object* x_21; +x_20 = lean_ctor_get(x_17, 0); +lean_dec(x_20); +x_21 = lean_box(0); +lean_ctor_set(x_17, 0, x_21); +return x_17; +} +else +{ +lean_object* x_22; lean_object* x_23; lean_object* x_24; +x_22 = lean_ctor_get(x_17, 1); +lean_inc(x_22); +lean_dec(x_17); +x_23 = lean_box(0); +x_24 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_24, 0, x_23); +lean_ctor_set(x_24, 1, x_22); +return x_24; +} +} +else +{ +uint8_t x_25; +x_25 = !lean_is_exclusive(x_17); +if (x_25 == 0) +{ +lean_object* x_26; uint8_t x_27; +x_26 = lean_ctor_get(x_17, 0); +lean_dec(x_26); +x_27 = !lean_is_exclusive(x_18); +if (x_27 == 0) +{ +lean_object* x_28; lean_object* x_29; uint32_t x_30; lean_object* x_31; +x_28 = lean_ctor_get(x_18, 0); +x_29 = l_Char_ofNat(x_28); +lean_dec(x_28); +x_30 = lean_unbox_uint32(x_29); +lean_dec(x_29); +x_31 = lean_box_uint32(x_30); +lean_ctor_set(x_18, 0, x_31); +return x_17; +} +else +{ +lean_object* x_32; lean_object* x_33; uint32_t x_34; lean_object* x_35; lean_object* x_36; +x_32 = lean_ctor_get(x_18, 0); +lean_inc(x_32); +lean_dec(x_18); +x_33 = l_Char_ofNat(x_32); +lean_dec(x_32); +x_34 = lean_unbox_uint32(x_33); +lean_dec(x_33); +x_35 = lean_box_uint32(x_34); +x_36 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_36, 0, x_35); +lean_ctor_set(x_17, 0, x_36); +return x_17; +} +} +else +{ +lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; uint32_t x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; +x_37 = lean_ctor_get(x_17, 1); +lean_inc(x_37); +lean_dec(x_17); +x_38 = lean_ctor_get(x_18, 0); +lean_inc(x_38); +if (lean_is_exclusive(x_18)) { + lean_ctor_release(x_18, 0); + x_39 = x_18; +} else { + lean_dec_ref(x_18); + x_39 = lean_box(0); +} +x_40 = l_Char_ofNat(x_38); +lean_dec(x_38); +x_41 = lean_unbox_uint32(x_40); +lean_dec(x_40); +x_42 = lean_box_uint32(x_41); +if (lean_is_scalar(x_39)) { + x_43 = lean_alloc_ctor(1, 1, 0); +} else { + x_43 = x_39; +} +lean_ctor_set(x_43, 0, x_42); +x_44 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_44, 0, x_43); +lean_ctor_set(x_44, 1, x_37); +return x_44; +} +} +} +else +{ +uint8_t x_45; +x_45 = !lean_is_exclusive(x_17); +if (x_45 == 0) +{ +return x_17; +} +else +{ +lean_object* x_46; lean_object* x_47; lean_object* x_48; +x_46 = lean_ctor_get(x_17, 0); +x_47 = lean_ctor_get(x_17, 1); +lean_inc(x_47); +lean_inc(x_46); +lean_dec(x_17); +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_EXPORT lean_object* l_Lean_Meta_getCharValue_x3f___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_Lean_Meta_getCharValue_x3f(x_1, x_2, x_3, x_4, x_5, x_6); +lean_dec(x_1); +return x_7; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_getStringValue_x3f(lean_object* x_1) { +_start: +{ +if (lean_obj_tag(x_1) == 9) +{ +lean_object* x_2; +x_2 = lean_ctor_get(x_1, 0); +if (lean_obj_tag(x_2) == 0) +{ +lean_object* x_3; +x_3 = lean_box(0); +return x_3; +} +else +{ +lean_object* x_4; lean_object* x_5; +x_4 = lean_ctor_get(x_2, 0); +lean_inc(x_4); +x_5 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_5, 0, x_4); +return x_5; +} +} +else +{ +lean_object* x_6; +x_6 = lean_box(0); +return x_6; +} +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_getStringValue_x3f___boxed(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = l_Lean_Meta_getStringValue_x3f(x_1); +lean_dec(x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Meta_getFinValue_x3f___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("Fin", 3); +return x_1; +} +} +static lean_object* _init_l_Lean_Meta_getFinValue_x3f___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Meta_getFinValue_x3f___closed__1; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_getFinValue_x3f(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; lean_object* x_8; +x_7 = l_Lean_Meta_getFinValue_x3f___closed__2; +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +lean_inc(x_2); +x_8 = l_Lean_Meta_getOfNatValue_x3f(x_1, x_7, x_2, x_3, x_4, x_5, x_6); +if (lean_obj_tag(x_8) == 0) +{ +lean_object* x_9; +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_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +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 = lean_box(0); +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 = lean_box(0); +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_object* x_19; lean_object* x_20; lean_object* x_21; +x_16 = lean_ctor_get(x_9, 0); +lean_inc(x_16); +lean_dec(x_9); +x_17 = lean_ctor_get(x_8, 1); +lean_inc(x_17); +lean_dec(x_8); +x_18 = lean_ctor_get(x_16, 0); +lean_inc(x_18); +x_19 = lean_ctor_get(x_16, 1); +lean_inc(x_19); +lean_dec(x_16); +x_20 = l_Lean_Expr_appArg_x21(x_19); +lean_dec(x_19); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +lean_inc(x_2); +x_21 = l_Lean_Meta_whnfD(x_20, x_2, x_3, x_4, x_5, x_17); +if (lean_obj_tag(x_21) == 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); +lean_dec(x_21); +x_24 = l_Lean_Meta_getNatValue_x3f(x_22, x_2, x_3, x_4, x_5, x_23); +if (lean_obj_tag(x_24) == 0) +{ +lean_object* x_25; +x_25 = lean_ctor_get(x_24, 0); +lean_inc(x_25); +if (lean_obj_tag(x_25) == 0) +{ +uint8_t x_26; +lean_dec(x_18); +x_26 = !lean_is_exclusive(x_24); +if (x_26 == 0) +{ +lean_object* x_27; lean_object* x_28; +x_27 = lean_ctor_get(x_24, 0); +lean_dec(x_27); +x_28 = lean_box(0); +lean_ctor_set(x_24, 0, x_28); +return x_24; +} +else +{ +lean_object* x_29; lean_object* x_30; lean_object* x_31; +x_29 = lean_ctor_get(x_24, 1); +lean_inc(x_29); +lean_dec(x_24); +x_30 = lean_box(0); +x_31 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_31, 0, x_30); +lean_ctor_set(x_31, 1, x_29); +return x_31; +} +} +else +{ +uint8_t x_32; +x_32 = !lean_is_exclusive(x_24); +if (x_32 == 0) +{ +lean_object* x_33; uint8_t x_34; +x_33 = lean_ctor_get(x_24, 0); +lean_dec(x_33); +x_34 = !lean_is_exclusive(x_25); +if (x_34 == 0) +{ +lean_object* x_35; lean_object* x_36; uint8_t x_37; +x_35 = lean_ctor_get(x_25, 0); +x_36 = lean_unsigned_to_nat(0u); +x_37 = lean_nat_dec_eq(x_35, x_36); +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_unsigned_to_nat(1u); +x_39 = lean_nat_sub(x_35, x_38); +lean_dec(x_35); +x_40 = lean_nat_add(x_39, x_38); +x_41 = l_Fin_ofNat(x_39, x_18); +lean_dec(x_18); +lean_dec(x_39); +x_42 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_42, 0, x_40); +lean_ctor_set(x_42, 1, x_41); +lean_ctor_set(x_25, 0, x_42); +return x_24; +} +else +{ +lean_object* x_43; +lean_free_object(x_25); +lean_dec(x_35); +lean_dec(x_18); +x_43 = lean_box(0); +lean_ctor_set(x_24, 0, x_43); +return x_24; +} +} +else +{ +lean_object* x_44; lean_object* x_45; uint8_t x_46; +x_44 = lean_ctor_get(x_25, 0); +lean_inc(x_44); +lean_dec(x_25); +x_45 = lean_unsigned_to_nat(0u); +x_46 = lean_nat_dec_eq(x_44, x_45); +if (x_46 == 0) +{ +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_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_18); +lean_dec(x_18); +lean_dec(x_48); +x_51 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_51, 0, x_49); +lean_ctor_set(x_51, 1, x_50); +x_52 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_52, 0, x_51); +lean_ctor_set(x_24, 0, x_52); +return x_24; +} +else +{ +lean_object* x_53; +lean_dec(x_44); +lean_dec(x_18); +x_53 = lean_box(0); +lean_ctor_set(x_24, 0, x_53); +return x_24; +} +} +} +else +{ +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_24, 1); +lean_inc(x_54); +lean_dec(x_24); +x_55 = lean_ctor_get(x_25, 0); +lean_inc(x_55); +if (lean_is_exclusive(x_25)) { + lean_ctor_release(x_25, 0); + x_56 = x_25; +} else { + lean_dec_ref(x_25); + x_56 = lean_box(0); +} +x_57 = lean_unsigned_to_nat(0u); +x_58 = lean_nat_dec_eq(x_55, x_57); +if (x_58 == 0) +{ +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; +x_59 = lean_unsigned_to_nat(1u); +x_60 = lean_nat_sub(x_55, x_59); +lean_dec(x_55); +x_61 = lean_nat_add(x_60, x_59); +x_62 = l_Fin_ofNat(x_60, x_18); +lean_dec(x_18); +lean_dec(x_60); +x_63 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_63, 0, x_61); +lean_ctor_set(x_63, 1, x_62); +if (lean_is_scalar(x_56)) { + x_64 = lean_alloc_ctor(1, 1, 0); +} else { + x_64 = x_56; +} +lean_ctor_set(x_64, 0, x_63); +x_65 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_65, 0, x_64); +lean_ctor_set(x_65, 1, x_54); +return x_65; +} +else +{ +lean_object* x_66; lean_object* x_67; +lean_dec(x_56); +lean_dec(x_55); +lean_dec(x_18); +x_66 = lean_box(0); +x_67 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_67, 0, x_66); +lean_ctor_set(x_67, 1, x_54); +return x_67; +} +} +} +} +else +{ +uint8_t x_68; +lean_dec(x_18); +x_68 = !lean_is_exclusive(x_24); +if (x_68 == 0) +{ +return x_24; +} +else +{ +lean_object* x_69; lean_object* x_70; lean_object* x_71; +x_69 = lean_ctor_get(x_24, 0); +x_70 = lean_ctor_get(x_24, 1); +lean_inc(x_70); +lean_inc(x_69); +lean_dec(x_24); +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; +} +} +} +else +{ +uint8_t x_72; +lean_dec(x_18); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_72 = !lean_is_exclusive(x_21); +if (x_72 == 0) +{ +return x_21; +} +else +{ +lean_object* x_73; lean_object* x_74; lean_object* x_75; +x_73 = lean_ctor_get(x_21, 0); +x_74 = lean_ctor_get(x_21, 1); +lean_inc(x_74); +lean_inc(x_73); +lean_dec(x_21); +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; +} +} +} +} +else +{ +uint8_t x_76; +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_76 = !lean_is_exclusive(x_8); +if (x_76 == 0) +{ +return x_8; +} +else +{ +lean_object* x_77; lean_object* x_78; lean_object* x_79; +x_77 = lean_ctor_get(x_8, 0); +x_78 = lean_ctor_get(x_8, 1); +lean_inc(x_78); +lean_inc(x_77); +lean_dec(x_8); +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_EXPORT lean_object* l_Lean_Meta_getFinValue_x3f___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_Lean_Meta_getFinValue_x3f(x_1, x_2, x_3, x_4, x_5, x_6); +lean_dec(x_1); +return x_7; +} +} +LEAN_EXPORT lean_object* l_IO_println___at_Lean_Meta_getBitVecValue_x3f___spec__1(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; uint32_t x_4; lean_object* x_5; lean_object* x_6; +x_3 = l_Nat_repr(x_1); +x_4 = 10; +x_5 = lean_string_push(x_3, x_4); +x_6 = l_IO_print___at_IO_println___spec__1(x_5, x_2); +return x_6; +} +} +static lean_object* _init_l_Lean_Meta_getBitVecValue_x3f___lambda__1___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("BitVec", 6); +return x_1; +} +} +static lean_object* _init_l_Lean_Meta_getBitVecValue_x3f___lambda__1___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Meta_getBitVecValue_x3f___lambda__1___closed__1; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_getBitVecValue_x3f___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) { +_start: +{ +lean_object* x_8; lean_object* x_9; +x_8 = l_Lean_Meta_getBitVecValue_x3f___lambda__1___closed__2; +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +x_9 = l_Lean_Meta_getOfNatValue_x3f(x_1, x_8, x_3, x_4, x_5, x_6, x_7); +if (lean_obj_tag(x_9) == 0) +{ +lean_object* x_10; +x_10 = lean_ctor_get(x_9, 0); +lean_inc(x_10); +if (lean_obj_tag(x_10) == 0) +{ +uint8_t x_11; +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +x_11 = !lean_is_exclusive(x_9); +if (x_11 == 0) +{ +lean_object* x_12; lean_object* x_13; +x_12 = lean_ctor_get(x_9, 0); +lean_dec(x_12); +x_13 = lean_box(0); +lean_ctor_set(x_9, 0, x_13); +return x_9; +} +else +{ +lean_object* x_14; lean_object* x_15; lean_object* x_16; +x_14 = lean_ctor_get(x_9, 1); +lean_inc(x_14); +lean_dec(x_9); +x_15 = lean_box(0); +x_16 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_16, 0, x_15); +lean_ctor_set(x_16, 1, x_14); +return x_16; +} +} +else +{ +lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; +x_17 = lean_ctor_get(x_10, 0); +lean_inc(x_17); +lean_dec(x_10); +x_18 = lean_ctor_get(x_9, 1); +lean_inc(x_18); +lean_dec(x_9); +x_19 = lean_ctor_get(x_17, 0); +lean_inc(x_19); +x_20 = lean_ctor_get(x_17, 1); +lean_inc(x_20); +lean_dec(x_17); +x_21 = lean_ctor_get(x_5, 5); +lean_inc(x_21); +lean_inc(x_19); +x_22 = l_IO_println___at_Lean_Meta_getBitVecValue_x3f___spec__1(x_19, x_18); +if (lean_obj_tag(x_22) == 0) +{ +lean_object* x_23; lean_object* x_24; lean_object* x_25; +lean_dec(x_21); +x_23 = lean_ctor_get(x_22, 1); +lean_inc(x_23); +lean_dec(x_22); +x_24 = l_Lean_Expr_appArg_x21(x_20); +lean_dec(x_20); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +x_25 = l_Lean_Meta_whnfD(x_24, x_3, x_4, x_5, x_6, x_23); +if (lean_obj_tag(x_25) == 0) +{ +lean_object* x_26; lean_object* x_27; lean_object* x_28; +x_26 = lean_ctor_get(x_25, 0); +lean_inc(x_26); +x_27 = lean_ctor_get(x_25, 1); +lean_inc(x_27); +lean_dec(x_25); +x_28 = l_Lean_Meta_getNatValue_x3f(x_26, x_3, x_4, x_5, x_6, x_27); +if (lean_obj_tag(x_28) == 0) +{ +lean_object* x_29; +x_29 = lean_ctor_get(x_28, 0); +lean_inc(x_29); +if (lean_obj_tag(x_29) == 0) +{ +uint8_t x_30; +lean_dec(x_19); +x_30 = !lean_is_exclusive(x_28); +if (x_30 == 0) +{ +lean_object* x_31; lean_object* x_32; +x_31 = lean_ctor_get(x_28, 0); +lean_dec(x_31); +x_32 = lean_box(0); +lean_ctor_set(x_28, 0, x_32); +return x_28; +} +else +{ +lean_object* x_33; lean_object* x_34; lean_object* x_35; +x_33 = lean_ctor_get(x_28, 1); +lean_inc(x_33); +lean_dec(x_28); +x_34 = lean_box(0); +x_35 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_35, 0, x_34); +lean_ctor_set(x_35, 1, x_33); +return x_35; +} +} +else +{ +uint8_t x_36; +x_36 = !lean_is_exclusive(x_28); +if (x_36 == 0) +{ +lean_object* x_37; uint8_t x_38; +x_37 = lean_ctor_get(x_28, 0); +lean_dec(x_37); +x_38 = !lean_is_exclusive(x_29); +if (x_38 == 0) +{ +lean_object* x_39; lean_object* x_40; lean_object* x_41; +x_39 = lean_ctor_get(x_29, 0); +x_40 = l_BitVec_ofNat(x_39, x_19); +lean_dec(x_19); +x_41 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_41, 0, x_39); +lean_ctor_set(x_41, 1, x_40); +lean_ctor_set(x_29, 0, x_41); +return x_28; +} +else +{ +lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; +x_42 = lean_ctor_get(x_29, 0); +lean_inc(x_42); +lean_dec(x_29); +x_43 = l_BitVec_ofNat(x_42, x_19); +lean_dec(x_19); +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_45 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_45, 0, x_44); +lean_ctor_set(x_28, 0, x_45); +return x_28; +} +} +else +{ +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; +x_46 = lean_ctor_get(x_28, 1); +lean_inc(x_46); +lean_dec(x_28); +x_47 = lean_ctor_get(x_29, 0); +lean_inc(x_47); +if (lean_is_exclusive(x_29)) { + lean_ctor_release(x_29, 0); + x_48 = x_29; +} else { + lean_dec_ref(x_29); + x_48 = lean_box(0); +} +x_49 = l_BitVec_ofNat(x_47, x_19); +lean_dec(x_19); +x_50 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_50, 0, x_47); +lean_ctor_set(x_50, 1, x_49); +if (lean_is_scalar(x_48)) { + x_51 = lean_alloc_ctor(1, 1, 0); +} else { + x_51 = x_48; +} +lean_ctor_set(x_51, 0, x_50); +x_52 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_52, 0, x_51); +lean_ctor_set(x_52, 1, x_46); +return x_52; +} +} +} +else +{ +uint8_t x_53; +lean_dec(x_19); +x_53 = !lean_is_exclusive(x_28); +if (x_53 == 0) +{ +return x_28; +} +else +{ +lean_object* x_54; lean_object* x_55; lean_object* x_56; +x_54 = lean_ctor_get(x_28, 0); +x_55 = lean_ctor_get(x_28, 1); +lean_inc(x_55); +lean_inc(x_54); +lean_dec(x_28); +x_56 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_56, 0, x_54); +lean_ctor_set(x_56, 1, x_55); +return x_56; +} +} +} +else +{ +uint8_t x_57; +lean_dec(x_19); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +x_57 = !lean_is_exclusive(x_25); +if (x_57 == 0) +{ +return x_25; +} +else +{ +lean_object* x_58; lean_object* x_59; lean_object* x_60; +x_58 = lean_ctor_get(x_25, 0); +x_59 = lean_ctor_get(x_25, 1); +lean_inc(x_59); +lean_inc(x_58); +lean_dec(x_25); +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; +} +} +} +else +{ +uint8_t x_61; +lean_dec(x_20); +lean_dec(x_19); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +x_61 = !lean_is_exclusive(x_22); +if (x_61 == 0) +{ +lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; +x_62 = lean_ctor_get(x_22, 0); +x_63 = lean_io_error_to_string(x_62); +x_64 = lean_alloc_ctor(3, 1, 0); +lean_ctor_set(x_64, 0, x_63); +x_65 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_65, 0, x_64); +x_66 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_66, 0, x_21); +lean_ctor_set(x_66, 1, x_65); +lean_ctor_set(x_22, 0, x_66); +return x_22; +} +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; +x_67 = lean_ctor_get(x_22, 0); +x_68 = lean_ctor_get(x_22, 1); +lean_inc(x_68); +lean_inc(x_67); +lean_dec(x_22); +x_69 = lean_io_error_to_string(x_67); +x_70 = lean_alloc_ctor(3, 1, 0); +lean_ctor_set(x_70, 0, x_69); +x_71 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_71, 0, x_70); +x_72 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_72, 0, x_21); +lean_ctor_set(x_72, 1, x_71); +x_73 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_73, 0, x_72); +lean_ctor_set(x_73, 1, x_68); +return x_73; +} +} +} +} +else +{ +uint8_t x_74; +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +x_74 = !lean_is_exclusive(x_9); +if (x_74 == 0) +{ +return x_9; +} +else +{ +lean_object* x_75; lean_object* x_76; lean_object* x_77; +x_75 = lean_ctor_get(x_9, 0); +x_76 = lean_ctor_get(x_9, 1); +lean_inc(x_76); +lean_inc(x_75); +lean_dec(x_9); +x_77 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_77, 0, x_75); +lean_ctor_set(x_77, 1, x_76); +return x_77; +} +} +} +} +static lean_object* _init_l_Lean_Meta_getBitVecValue_x3f___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Meta_getBitVecValue_x3f___lambda__1___closed__1; +x_2 = l_Lean_Meta_getOfNatValue_x3f___closed__2; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_getBitVecValue_x3f(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; lean_object* x_8; uint8_t x_9; +x_7 = l_Lean_Meta_getBitVecValue_x3f___closed__1; +x_8 = lean_unsigned_to_nat(2u); +x_9 = l_Lean_Expr_isAppOfArity_x27(x_1, x_7, x_8); +if (x_9 == 0) +{ +lean_object* x_10; lean_object* x_11; +x_10 = lean_box(0); +x_11 = l_Lean_Meta_getBitVecValue_x3f___lambda__1(x_1, x_10, x_2, x_3, x_4, x_5, x_6); +return x_11; +} +else +{ +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_12 = lean_unsigned_to_nat(0u); +x_13 = l___private_Lean_Expr_0__Lean_Expr_getAppNumArgsAux(x_1, x_12); +x_14 = lean_nat_sub(x_13, x_12); +x_15 = lean_unsigned_to_nat(1u); +x_16 = lean_nat_sub(x_14, x_15); +lean_dec(x_14); +x_17 = l_Lean_Expr_getRevArg_x21_x27(x_1, x_16); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +lean_inc(x_2); +x_18 = l_Lean_Meta_getNatValue_x3f(x_17, x_2, x_3, x_4, x_5, x_6); +if (lean_obj_tag(x_18) == 0) +{ +lean_object* x_19; +x_19 = lean_ctor_get(x_18, 0); +lean_inc(x_19); +if (lean_obj_tag(x_19) == 0) +{ +uint8_t x_20; +lean_dec(x_13); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_20 = !lean_is_exclusive(x_18); +if (x_20 == 0) +{ +lean_object* x_21; lean_object* x_22; +x_21 = lean_ctor_get(x_18, 0); +lean_dec(x_21); +x_22 = lean_box(0); +lean_ctor_set(x_18, 0, x_22); +return x_18; +} +else +{ +lean_object* x_23; lean_object* x_24; lean_object* x_25; +x_23 = lean_ctor_get(x_18, 1); +lean_inc(x_23); +lean_dec(x_18); +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_23); +return x_25; +} +} +else +{ +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_26 = lean_ctor_get(x_18, 1); +lean_inc(x_26); +lean_dec(x_18); +x_27 = lean_ctor_get(x_19, 0); +lean_inc(x_27); +lean_dec(x_19); +x_28 = lean_nat_sub(x_13, x_15); +lean_dec(x_13); +x_29 = lean_nat_sub(x_28, x_15); +lean_dec(x_28); +x_30 = l_Lean_Expr_getRevArg_x21_x27(x_1, x_29); +x_31 = l_Lean_Meta_getNatValue_x3f(x_30, x_2, x_3, x_4, x_5, x_26); +if (lean_obj_tag(x_31) == 0) +{ +lean_object* x_32; +x_32 = lean_ctor_get(x_31, 0); +lean_inc(x_32); +if (lean_obj_tag(x_32) == 0) +{ +uint8_t x_33; +lean_dec(x_27); +x_33 = !lean_is_exclusive(x_31); +if (x_33 == 0) +{ +lean_object* x_34; lean_object* x_35; +x_34 = lean_ctor_get(x_31, 0); +lean_dec(x_34); +x_35 = lean_box(0); +lean_ctor_set(x_31, 0, x_35); +return x_31; +} +else +{ +lean_object* x_36; lean_object* x_37; lean_object* x_38; +x_36 = lean_ctor_get(x_31, 1); +lean_inc(x_36); +lean_dec(x_31); +x_37 = lean_box(0); +x_38 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_38, 0, x_37); +lean_ctor_set(x_38, 1, x_36); +return x_38; +} +} +else +{ +uint8_t x_39; +x_39 = !lean_is_exclusive(x_31); +if (x_39 == 0) +{ +lean_object* x_40; uint8_t x_41; +x_40 = lean_ctor_get(x_31, 0); +lean_dec(x_40); +x_41 = !lean_is_exclusive(x_32); +if (x_41 == 0) +{ +lean_object* x_42; lean_object* x_43; lean_object* x_44; +x_42 = lean_ctor_get(x_32, 0); +x_43 = l_BitVec_ofNat(x_27, x_42); +lean_dec(x_42); +x_44 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_44, 0, x_27); +lean_ctor_set(x_44, 1, x_43); +lean_ctor_set(x_32, 0, x_44); +return x_31; +} +else +{ +lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; +x_45 = lean_ctor_get(x_32, 0); +lean_inc(x_45); +lean_dec(x_32); +x_46 = l_BitVec_ofNat(x_27, x_45); +lean_dec(x_45); +x_47 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_47, 0, x_27); +lean_ctor_set(x_47, 1, x_46); +x_48 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_48, 0, x_47); +lean_ctor_set(x_31, 0, x_48); +return x_31; +} +} +else +{ +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; +x_49 = lean_ctor_get(x_31, 1); +lean_inc(x_49); +lean_dec(x_31); +x_50 = lean_ctor_get(x_32, 0); +lean_inc(x_50); +if (lean_is_exclusive(x_32)) { + lean_ctor_release(x_32, 0); + x_51 = x_32; +} else { + lean_dec_ref(x_32); + x_51 = lean_box(0); +} +x_52 = l_BitVec_ofNat(x_27, x_50); +lean_dec(x_50); +x_53 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_53, 0, x_27); +lean_ctor_set(x_53, 1, x_52); +if (lean_is_scalar(x_51)) { + x_54 = lean_alloc_ctor(1, 1, 0); +} else { + x_54 = x_51; +} +lean_ctor_set(x_54, 0, x_53); +x_55 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_55, 0, x_54); +lean_ctor_set(x_55, 1, x_49); +return x_55; +} +} +} +else +{ +uint8_t x_56; +lean_dec(x_27); +x_56 = !lean_is_exclusive(x_31); +if (x_56 == 0) +{ +return x_31; +} +else +{ +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_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_60; +lean_dec(x_13); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_60 = !lean_is_exclusive(x_18); +if (x_60 == 0) +{ +return x_18; +} +else +{ +lean_object* x_61; lean_object* x_62; lean_object* x_63; +x_61 = lean_ctor_get(x_18, 0); +x_62 = lean_ctor_get(x_18, 1); +lean_inc(x_62); +lean_inc(x_61); +lean_dec(x_18); +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; +} +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_getBitVecValue_x3f___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) { +_start: +{ +lean_object* x_8; +x_8 = l_Lean_Meta_getBitVecValue_x3f___lambda__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +lean_dec(x_2); +lean_dec(x_1); +return x_8; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_getBitVecValue_x3f___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_Lean_Meta_getBitVecValue_x3f(x_1, x_2, x_3, x_4, x_5, x_6); +lean_dec(x_1); +return x_7; +} +} +static lean_object* _init_l_Lean_Meta_getUInt8Value_x3f___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("UInt8", 5); +return x_1; +} +} +static lean_object* _init_l_Lean_Meta_getUInt8Value_x3f___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Meta_getUInt8Value_x3f___closed__1; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_getUInt8Value_x3f(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; lean_object* x_8; +x_7 = l_Lean_Meta_getUInt8Value_x3f___closed__2; +x_8 = l_Lean_Meta_getOfNatValue_x3f(x_1, x_7, x_2, x_3, x_4, x_5, x_6); +if (lean_obj_tag(x_8) == 0) +{ +lean_object* x_9; +x_9 = lean_ctor_get(x_8, 0); +lean_inc(x_9); +if (lean_obj_tag(x_9) == 0) +{ +uint8_t x_10; +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 = lean_box(0); +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 = lean_box(0); +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 +{ +uint8_t x_16; +x_16 = !lean_is_exclusive(x_9); +if (x_16 == 0) +{ +uint8_t x_17; +x_17 = !lean_is_exclusive(x_8); +if (x_17 == 0) +{ +lean_object* x_18; lean_object* x_19; lean_object* x_20; uint8_t x_21; lean_object* x_22; +x_18 = lean_ctor_get(x_9, 0); +x_19 = lean_ctor_get(x_8, 0); +lean_dec(x_19); +x_20 = lean_ctor_get(x_18, 0); +lean_inc(x_20); +lean_dec(x_18); +x_21 = lean_uint8_of_nat(x_20); +lean_dec(x_20); +x_22 = lean_box(x_21); +lean_ctor_set(x_9, 0, x_22); +return x_8; +} +else +{ +lean_object* x_23; lean_object* x_24; lean_object* x_25; uint8_t x_26; lean_object* x_27; lean_object* x_28; +x_23 = lean_ctor_get(x_9, 0); +x_24 = lean_ctor_get(x_8, 1); +lean_inc(x_24); +lean_dec(x_8); +x_25 = lean_ctor_get(x_23, 0); +lean_inc(x_25); +lean_dec(x_23); +x_26 = lean_uint8_of_nat(x_25); +lean_dec(x_25); +x_27 = lean_box(x_26); +lean_ctor_set(x_9, 0, x_27); +x_28 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_28, 0, x_9); +lean_ctor_set(x_28, 1, x_24); +return x_28; +} +} +else +{ +lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; uint8_t x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; +x_29 = lean_ctor_get(x_9, 0); +lean_inc(x_29); +lean_dec(x_9); +x_30 = lean_ctor_get(x_8, 1); +lean_inc(x_30); +if (lean_is_exclusive(x_8)) { + lean_ctor_release(x_8, 0); + lean_ctor_release(x_8, 1); + x_31 = x_8; +} else { + lean_dec_ref(x_8); + x_31 = lean_box(0); +} +x_32 = lean_ctor_get(x_29, 0); +lean_inc(x_32); +lean_dec(x_29); +x_33 = lean_uint8_of_nat(x_32); +lean_dec(x_32); +x_34 = lean_box(x_33); +x_35 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_35, 0, x_34); +if (lean_is_scalar(x_31)) { + x_36 = lean_alloc_ctor(0, 2, 0); +} else { + x_36 = x_31; +} +lean_ctor_set(x_36, 0, x_35); +lean_ctor_set(x_36, 1, x_30); +return x_36; +} +} +} +else +{ +uint8_t x_37; +x_37 = !lean_is_exclusive(x_8); +if (x_37 == 0) +{ +return x_8; +} +else +{ +lean_object* x_38; lean_object* x_39; lean_object* x_40; +x_38 = lean_ctor_get(x_8, 0); +x_39 = lean_ctor_get(x_8, 1); +lean_inc(x_39); +lean_inc(x_38); +lean_dec(x_8); +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_Lean_Meta_getUInt8Value_x3f___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_Lean_Meta_getUInt8Value_x3f(x_1, x_2, x_3, x_4, x_5, x_6); +lean_dec(x_1); +return x_7; +} +} +static lean_object* _init_l_Lean_Meta_getUInt16Value_x3f___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("UInt16", 6); +return x_1; +} +} +static lean_object* _init_l_Lean_Meta_getUInt16Value_x3f___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Meta_getUInt16Value_x3f___closed__1; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_getUInt16Value_x3f(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; lean_object* x_8; +x_7 = l_Lean_Meta_getUInt16Value_x3f___closed__2; +x_8 = l_Lean_Meta_getOfNatValue_x3f(x_1, x_7, x_2, x_3, x_4, x_5, x_6); +if (lean_obj_tag(x_8) == 0) +{ +lean_object* x_9; +x_9 = lean_ctor_get(x_8, 0); +lean_inc(x_9); +if (lean_obj_tag(x_9) == 0) +{ +uint8_t x_10; +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 = lean_box(0); +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 = lean_box(0); +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 +{ +uint8_t x_16; +x_16 = !lean_is_exclusive(x_9); +if (x_16 == 0) +{ +uint8_t x_17; +x_17 = !lean_is_exclusive(x_8); +if (x_17 == 0) +{ +lean_object* x_18; lean_object* x_19; lean_object* x_20; uint16_t x_21; lean_object* x_22; +x_18 = lean_ctor_get(x_9, 0); +x_19 = lean_ctor_get(x_8, 0); +lean_dec(x_19); +x_20 = lean_ctor_get(x_18, 0); +lean_inc(x_20); +lean_dec(x_18); +x_21 = lean_uint16_of_nat(x_20); +lean_dec(x_20); +x_22 = lean_box(x_21); +lean_ctor_set(x_9, 0, x_22); +return x_8; +} +else +{ +lean_object* x_23; lean_object* x_24; lean_object* x_25; uint16_t x_26; lean_object* x_27; lean_object* x_28; +x_23 = lean_ctor_get(x_9, 0); +x_24 = lean_ctor_get(x_8, 1); +lean_inc(x_24); +lean_dec(x_8); +x_25 = lean_ctor_get(x_23, 0); +lean_inc(x_25); +lean_dec(x_23); +x_26 = lean_uint16_of_nat(x_25); +lean_dec(x_25); +x_27 = lean_box(x_26); +lean_ctor_set(x_9, 0, x_27); +x_28 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_28, 0, x_9); +lean_ctor_set(x_28, 1, x_24); +return x_28; +} +} +else +{ +lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; uint16_t x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; +x_29 = lean_ctor_get(x_9, 0); +lean_inc(x_29); +lean_dec(x_9); +x_30 = lean_ctor_get(x_8, 1); +lean_inc(x_30); +if (lean_is_exclusive(x_8)) { + lean_ctor_release(x_8, 0); + lean_ctor_release(x_8, 1); + x_31 = x_8; +} else { + lean_dec_ref(x_8); + x_31 = lean_box(0); +} +x_32 = lean_ctor_get(x_29, 0); +lean_inc(x_32); +lean_dec(x_29); +x_33 = lean_uint16_of_nat(x_32); +lean_dec(x_32); +x_34 = lean_box(x_33); +x_35 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_35, 0, x_34); +if (lean_is_scalar(x_31)) { + x_36 = lean_alloc_ctor(0, 2, 0); +} else { + x_36 = x_31; +} +lean_ctor_set(x_36, 0, x_35); +lean_ctor_set(x_36, 1, x_30); +return x_36; +} +} +} +else +{ +uint8_t x_37; +x_37 = !lean_is_exclusive(x_8); +if (x_37 == 0) +{ +return x_8; +} +else +{ +lean_object* x_38; lean_object* x_39; lean_object* x_40; +x_38 = lean_ctor_get(x_8, 0); +x_39 = lean_ctor_get(x_8, 1); +lean_inc(x_39); +lean_inc(x_38); +lean_dec(x_8); +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_Lean_Meta_getUInt16Value_x3f___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_Lean_Meta_getUInt16Value_x3f(x_1, x_2, x_3, x_4, x_5, x_6); +lean_dec(x_1); +return x_7; +} +} +static lean_object* _init_l_Lean_Meta_getUInt32Value_x3f___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("UInt32", 6); +return x_1; +} +} +static lean_object* _init_l_Lean_Meta_getUInt32Value_x3f___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Meta_getUInt32Value_x3f___closed__1; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_getUInt32Value_x3f(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; lean_object* x_8; +x_7 = l_Lean_Meta_getUInt32Value_x3f___closed__2; +x_8 = l_Lean_Meta_getOfNatValue_x3f(x_1, x_7, x_2, x_3, x_4, x_5, x_6); +if (lean_obj_tag(x_8) == 0) +{ +lean_object* x_9; +x_9 = lean_ctor_get(x_8, 0); +lean_inc(x_9); +if (lean_obj_tag(x_9) == 0) +{ +uint8_t x_10; +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 = lean_box(0); +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 = lean_box(0); +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 +{ +uint8_t x_16; +x_16 = !lean_is_exclusive(x_9); +if (x_16 == 0) +{ +uint8_t x_17; +x_17 = !lean_is_exclusive(x_8); +if (x_17 == 0) +{ +lean_object* x_18; lean_object* x_19; lean_object* x_20; uint32_t x_21; lean_object* x_22; +x_18 = lean_ctor_get(x_9, 0); +x_19 = lean_ctor_get(x_8, 0); +lean_dec(x_19); +x_20 = lean_ctor_get(x_18, 0); +lean_inc(x_20); +lean_dec(x_18); +x_21 = lean_uint32_of_nat(x_20); +lean_dec(x_20); +x_22 = lean_box_uint32(x_21); +lean_ctor_set(x_9, 0, x_22); +return x_8; +} +else +{ +lean_object* x_23; lean_object* x_24; lean_object* x_25; uint32_t x_26; lean_object* x_27; lean_object* x_28; +x_23 = lean_ctor_get(x_9, 0); +x_24 = lean_ctor_get(x_8, 1); +lean_inc(x_24); +lean_dec(x_8); +x_25 = lean_ctor_get(x_23, 0); +lean_inc(x_25); +lean_dec(x_23); +x_26 = lean_uint32_of_nat(x_25); +lean_dec(x_25); +x_27 = lean_box_uint32(x_26); +lean_ctor_set(x_9, 0, x_27); +x_28 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_28, 0, x_9); +lean_ctor_set(x_28, 1, x_24); +return x_28; +} +} +else +{ +lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; uint32_t x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; +x_29 = lean_ctor_get(x_9, 0); +lean_inc(x_29); +lean_dec(x_9); +x_30 = lean_ctor_get(x_8, 1); +lean_inc(x_30); +if (lean_is_exclusive(x_8)) { + lean_ctor_release(x_8, 0); + lean_ctor_release(x_8, 1); + x_31 = x_8; +} else { + lean_dec_ref(x_8); + x_31 = lean_box(0); +} +x_32 = lean_ctor_get(x_29, 0); +lean_inc(x_32); +lean_dec(x_29); +x_33 = lean_uint32_of_nat(x_32); +lean_dec(x_32); +x_34 = lean_box_uint32(x_33); +x_35 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_35, 0, x_34); +if (lean_is_scalar(x_31)) { + x_36 = lean_alloc_ctor(0, 2, 0); +} else { + x_36 = x_31; +} +lean_ctor_set(x_36, 0, x_35); +lean_ctor_set(x_36, 1, x_30); +return x_36; +} +} +} +else +{ +uint8_t x_37; +x_37 = !lean_is_exclusive(x_8); +if (x_37 == 0) +{ +return x_8; +} +else +{ +lean_object* x_38; lean_object* x_39; lean_object* x_40; +x_38 = lean_ctor_get(x_8, 0); +x_39 = lean_ctor_get(x_8, 1); +lean_inc(x_39); +lean_inc(x_38); +lean_dec(x_8); +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_Lean_Meta_getUInt32Value_x3f___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_Lean_Meta_getUInt32Value_x3f(x_1, x_2, x_3, x_4, x_5, x_6); +lean_dec(x_1); +return x_7; +} +} +static lean_object* _init_l_Lean_Meta_getUInt64Value_x3f___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("UInt64", 6); +return x_1; +} +} +static lean_object* _init_l_Lean_Meta_getUInt64Value_x3f___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Meta_getUInt64Value_x3f___closed__1; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_getUInt64Value_x3f(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; lean_object* x_8; +x_7 = l_Lean_Meta_getUInt64Value_x3f___closed__2; +x_8 = l_Lean_Meta_getOfNatValue_x3f(x_1, x_7, x_2, x_3, x_4, x_5, x_6); +if (lean_obj_tag(x_8) == 0) +{ +lean_object* x_9; +x_9 = lean_ctor_get(x_8, 0); +lean_inc(x_9); +if (lean_obj_tag(x_9) == 0) +{ +uint8_t x_10; +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 = lean_box(0); +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 = lean_box(0); +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 +{ +uint8_t x_16; +x_16 = !lean_is_exclusive(x_9); +if (x_16 == 0) +{ +uint8_t x_17; +x_17 = !lean_is_exclusive(x_8); +if (x_17 == 0) +{ +lean_object* x_18; lean_object* x_19; lean_object* x_20; uint64_t x_21; lean_object* x_22; +x_18 = lean_ctor_get(x_9, 0); +x_19 = lean_ctor_get(x_8, 0); +lean_dec(x_19); +x_20 = lean_ctor_get(x_18, 0); +lean_inc(x_20); +lean_dec(x_18); +x_21 = lean_uint64_of_nat(x_20); +lean_dec(x_20); +x_22 = lean_box_uint64(x_21); +lean_ctor_set(x_9, 0, x_22); +return x_8; +} +else +{ +lean_object* x_23; lean_object* x_24; lean_object* x_25; uint64_t x_26; lean_object* x_27; lean_object* x_28; +x_23 = lean_ctor_get(x_9, 0); +x_24 = lean_ctor_get(x_8, 1); +lean_inc(x_24); +lean_dec(x_8); +x_25 = lean_ctor_get(x_23, 0); +lean_inc(x_25); +lean_dec(x_23); +x_26 = lean_uint64_of_nat(x_25); +lean_dec(x_25); +x_27 = lean_box_uint64(x_26); +lean_ctor_set(x_9, 0, x_27); +x_28 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_28, 0, x_9); +lean_ctor_set(x_28, 1, x_24); +return x_28; +} +} +else +{ +lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; uint64_t x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; +x_29 = lean_ctor_get(x_9, 0); +lean_inc(x_29); +lean_dec(x_9); +x_30 = lean_ctor_get(x_8, 1); +lean_inc(x_30); +if (lean_is_exclusive(x_8)) { + lean_ctor_release(x_8, 0); + lean_ctor_release(x_8, 1); + x_31 = x_8; +} else { + lean_dec_ref(x_8); + x_31 = lean_box(0); +} +x_32 = lean_ctor_get(x_29, 0); +lean_inc(x_32); +lean_dec(x_29); +x_33 = lean_uint64_of_nat(x_32); +lean_dec(x_32); +x_34 = lean_box_uint64(x_33); +x_35 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_35, 0, x_34); +if (lean_is_scalar(x_31)) { + x_36 = lean_alloc_ctor(0, 2, 0); +} else { + x_36 = x_31; +} +lean_ctor_set(x_36, 0, x_35); +lean_ctor_set(x_36, 1, x_30); +return x_36; +} +} +} +else +{ +uint8_t x_37; +x_37 = !lean_is_exclusive(x_8); +if (x_37 == 0) +{ +return x_8; +} +else +{ +lean_object* x_38; lean_object* x_39; lean_object* x_40; +x_38 = lean_ctor_get(x_8, 0); +x_39 = lean_ctor_get(x_8, 1); +lean_inc(x_39); +lean_inc(x_38); +lean_dec(x_8); +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_Lean_Meta_getUInt64Value_x3f___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_Lean_Meta_getUInt64Value_x3f(x_1, x_2, x_3, x_4, x_5, x_6); +lean_dec(x_1); +return x_7; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_normLitValue___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) { +_start: +{ +lean_object* x_8; +x_8 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_8, 0, x_1); +lean_ctor_set(x_8, 1, x_7); +return x_8; +} +} +static lean_object* _init_l_Lean_Meta_normLitValue___lambda__2___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = lean_unsigned_to_nat(0u); +x_2 = l_Lean_Level_ofNat(x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Meta_normLitValue___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_Meta_normLitValue___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_Lean_Meta_normLitValue___lambda__2___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Meta_getOfNatValue_x3f___closed__3; +x_2 = l_Lean_Meta_normLitValue___lambda__2___closed__2; +x_3 = l_Lean_Expr_const___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Meta_normLitValue___lambda__2___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Meta_getUInt64Value_x3f___closed__2; +x_3 = l_Lean_Expr_const___override(x_2, x_1); +return x_3; +} +} +static lean_object* _init_l_Lean_Meta_normLitValue___lambda__2___closed__5() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("instOfNat", 9); +return x_1; +} +} +static lean_object* _init_l_Lean_Meta_normLitValue___lambda__2___closed__6() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Meta_getUInt64Value_x3f___closed__1; +x_2 = l_Lean_Meta_normLitValue___lambda__2___closed__5; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Meta_normLitValue___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_Lean_Meta_normLitValue___lambda__2___closed__6; +x_3 = l_Lean_Expr_const___override(x_2, x_1); +return x_3; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_normLitValue___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; +x_8 = l_Lean_Meta_getUInt64Value_x3f(x_1, x_3, x_4, x_5, x_6, x_7); +if (lean_obj_tag(x_8) == 0) +{ +lean_object* x_9; +x_9 = lean_ctor_get(x_8, 0); +lean_inc(x_9); +if (lean_obj_tag(x_9) == 0) +{ +uint8_t x_10; +x_10 = !lean_is_exclusive(x_8); +if (x_10 == 0) +{ +lean_object* x_11; +x_11 = lean_ctor_get(x_8, 0); +lean_dec(x_11); +lean_ctor_set(x_8, 0, x_1); +return x_8; +} +else +{ +lean_object* x_12; lean_object* x_13; +x_12 = lean_ctor_get(x_8, 1); +lean_inc(x_12); +lean_dec(x_8); +x_13 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_13, 0, x_1); +lean_ctor_set(x_13, 1, x_12); +return x_13; +} +} +else +{ +uint8_t x_14; +lean_dec(x_1); +x_14 = !lean_is_exclusive(x_8); +if (x_14 == 0) +{ +lean_object* x_15; lean_object* x_16; uint64_t 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_15 = lean_ctor_get(x_8, 0); +lean_dec(x_15); +x_16 = lean_ctor_get(x_9, 0); +lean_inc(x_16); +lean_dec(x_9); +x_17 = lean_unbox_uint64(x_16); +lean_dec(x_16); +x_18 = lean_uint64_to_nat(x_17); +x_19 = l_Lean_mkRawNatLit(x_18); +x_20 = l_Lean_Meta_normLitValue___lambda__2___closed__7; +lean_inc(x_19); +x_21 = l_Lean_Expr_app___override(x_20, x_19); +x_22 = l_Lean_Meta_normLitValue___lambda__2___closed__3; +x_23 = l_Lean_Meta_normLitValue___lambda__2___closed__4; +x_24 = l_Lean_mkApp3(x_22, x_23, x_19, x_21); +lean_ctor_set(x_8, 0, x_24); +return x_8; +} +else +{ +lean_object* x_25; lean_object* x_26; uint64_t 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; +x_25 = lean_ctor_get(x_8, 1); +lean_inc(x_25); +lean_dec(x_8); +x_26 = lean_ctor_get(x_9, 0); +lean_inc(x_26); +lean_dec(x_9); +x_27 = lean_unbox_uint64(x_26); +lean_dec(x_26); +x_28 = lean_uint64_to_nat(x_27); +x_29 = l_Lean_mkRawNatLit(x_28); +x_30 = l_Lean_Meta_normLitValue___lambda__2___closed__7; +lean_inc(x_29); +x_31 = l_Lean_Expr_app___override(x_30, x_29); +x_32 = l_Lean_Meta_normLitValue___lambda__2___closed__3; +x_33 = l_Lean_Meta_normLitValue___lambda__2___closed__4; +x_34 = l_Lean_mkApp3(x_32, x_33, x_29, x_31); +x_35 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_35, 0, x_34); +lean_ctor_set(x_35, 1, x_25); +return x_35; +} +} +} +else +{ +uint8_t x_36; +lean_dec(x_1); +x_36 = !lean_is_exclusive(x_8); +if (x_36 == 0) +{ +return x_8; +} +else +{ +lean_object* x_37; lean_object* x_38; lean_object* x_39; +x_37 = lean_ctor_get(x_8, 0); +x_38 = lean_ctor_get(x_8, 1); +lean_inc(x_38); +lean_inc(x_37); +lean_dec(x_8); +x_39 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_39, 0, x_37); +lean_ctor_set(x_39, 1, x_38); +return x_39; +} +} +} +} +static lean_object* _init_l_Lean_Meta_normLitValue___lambda__3___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Meta_getUInt32Value_x3f___closed__2; +x_3 = l_Lean_Expr_const___override(x_2, x_1); +return x_3; +} +} +static lean_object* _init_l_Lean_Meta_normLitValue___lambda__3___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Meta_getUInt32Value_x3f___closed__1; +x_2 = l_Lean_Meta_normLitValue___lambda__2___closed__5; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Meta_normLitValue___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_Meta_normLitValue___lambda__3___closed__2; +x_3 = l_Lean_Expr_const___override(x_2, x_1); +return x_3; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_normLitValue___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) { +_start: +{ +lean_object* x_8; +lean_dec(x_2); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +x_8 = l_Lean_Meta_getUInt32Value_x3f(x_1, x_3, x_4, x_5, x_6, x_7); +if (lean_obj_tag(x_8) == 0) +{ +lean_object* x_9; +x_9 = lean_ctor_get(x_8, 0); +lean_inc(x_9); +if (lean_obj_tag(x_9) == 0) +{ +lean_object* x_10; lean_object* x_11; lean_object* x_12; +x_10 = lean_ctor_get(x_8, 1); +lean_inc(x_10); +lean_dec(x_8); +x_11 = lean_box(0); +x_12 = l_Lean_Meta_normLitValue___lambda__2(x_1, x_11, x_3, x_4, x_5, x_6, x_10); +return x_12; +} +else +{ +uint8_t x_13; +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_1); +x_13 = !lean_is_exclusive(x_8); +if (x_13 == 0) +{ +lean_object* x_14; lean_object* x_15; uint32_t 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_14 = lean_ctor_get(x_8, 0); +lean_dec(x_14); +x_15 = lean_ctor_get(x_9, 0); +lean_inc(x_15); +lean_dec(x_9); +x_16 = lean_unbox_uint32(x_15); +lean_dec(x_15); +x_17 = lean_uint32_to_nat(x_16); +x_18 = l_Lean_mkRawNatLit(x_17); +x_19 = l_Lean_Meta_normLitValue___lambda__3___closed__3; +lean_inc(x_18); +x_20 = l_Lean_Expr_app___override(x_19, x_18); +x_21 = l_Lean_Meta_normLitValue___lambda__2___closed__3; +x_22 = l_Lean_Meta_normLitValue___lambda__3___closed__1; +x_23 = l_Lean_mkApp3(x_21, x_22, x_18, x_20); +lean_ctor_set(x_8, 0, x_23); +return x_8; +} +else +{ +lean_object* x_24; lean_object* x_25; uint32_t 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; +x_24 = lean_ctor_get(x_8, 1); +lean_inc(x_24); +lean_dec(x_8); +x_25 = lean_ctor_get(x_9, 0); +lean_inc(x_25); +lean_dec(x_9); +x_26 = lean_unbox_uint32(x_25); +lean_dec(x_25); +x_27 = lean_uint32_to_nat(x_26); +x_28 = l_Lean_mkRawNatLit(x_27); +x_29 = l_Lean_Meta_normLitValue___lambda__3___closed__3; +lean_inc(x_28); +x_30 = l_Lean_Expr_app___override(x_29, x_28); +x_31 = l_Lean_Meta_normLitValue___lambda__2___closed__3; +x_32 = l_Lean_Meta_normLitValue___lambda__3___closed__1; +x_33 = l_Lean_mkApp3(x_31, x_32, x_28, x_30); +x_34 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_34, 0, x_33); +lean_ctor_set(x_34, 1, x_24); +return x_34; +} +} +} +else +{ +uint8_t x_35; +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_1); +x_35 = !lean_is_exclusive(x_8); +if (x_35 == 0) +{ +return x_8; +} +else +{ +lean_object* x_36; lean_object* x_37; lean_object* x_38; +x_36 = lean_ctor_get(x_8, 0); +x_37 = lean_ctor_get(x_8, 1); +lean_inc(x_37); +lean_inc(x_36); +lean_dec(x_8); +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; +} +} +} +} +static lean_object* _init_l_Lean_Meta_normLitValue___lambda__4___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Meta_getUInt16Value_x3f___closed__2; +x_3 = l_Lean_Expr_const___override(x_2, x_1); +return x_3; +} +} +static lean_object* _init_l_Lean_Meta_normLitValue___lambda__4___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Meta_getUInt16Value_x3f___closed__1; +x_2 = l_Lean_Meta_normLitValue___lambda__2___closed__5; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Meta_normLitValue___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_Lean_Meta_normLitValue___lambda__4___closed__2; +x_3 = l_Lean_Expr_const___override(x_2, x_1); +return x_3; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_normLitValue___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) { +_start: +{ +lean_object* x_8; +lean_dec(x_2); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +x_8 = l_Lean_Meta_getUInt16Value_x3f(x_1, x_3, x_4, x_5, x_6, x_7); +if (lean_obj_tag(x_8) == 0) +{ +lean_object* x_9; +x_9 = lean_ctor_get(x_8, 0); +lean_inc(x_9); +if (lean_obj_tag(x_9) == 0) +{ +lean_object* x_10; lean_object* x_11; lean_object* x_12; +x_10 = lean_ctor_get(x_8, 1); +lean_inc(x_10); +lean_dec(x_8); +x_11 = lean_box(0); +x_12 = l_Lean_Meta_normLitValue___lambda__3(x_1, x_11, x_3, x_4, x_5, x_6, x_10); +return x_12; +} +else +{ +uint8_t x_13; +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_1); +x_13 = !lean_is_exclusive(x_8); +if (x_13 == 0) +{ +lean_object* x_14; lean_object* x_15; uint16_t 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_14 = lean_ctor_get(x_8, 0); +lean_dec(x_14); +x_15 = lean_ctor_get(x_9, 0); +lean_inc(x_15); +lean_dec(x_9); +x_16 = lean_unbox(x_15); +lean_dec(x_15); +x_17 = lean_uint16_to_nat(x_16); +x_18 = l_Lean_mkRawNatLit(x_17); +x_19 = l_Lean_Meta_normLitValue___lambda__4___closed__3; +lean_inc(x_18); +x_20 = l_Lean_Expr_app___override(x_19, x_18); +x_21 = l_Lean_Meta_normLitValue___lambda__2___closed__3; +x_22 = l_Lean_Meta_normLitValue___lambda__4___closed__1; +x_23 = l_Lean_mkApp3(x_21, x_22, x_18, x_20); +lean_ctor_set(x_8, 0, x_23); +return x_8; +} +else +{ +lean_object* x_24; lean_object* x_25; uint16_t 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; +x_24 = lean_ctor_get(x_8, 1); +lean_inc(x_24); +lean_dec(x_8); +x_25 = lean_ctor_get(x_9, 0); +lean_inc(x_25); +lean_dec(x_9); +x_26 = lean_unbox(x_25); +lean_dec(x_25); +x_27 = lean_uint16_to_nat(x_26); +x_28 = l_Lean_mkRawNatLit(x_27); +x_29 = l_Lean_Meta_normLitValue___lambda__4___closed__3; +lean_inc(x_28); +x_30 = l_Lean_Expr_app___override(x_29, x_28); +x_31 = l_Lean_Meta_normLitValue___lambda__2___closed__3; +x_32 = l_Lean_Meta_normLitValue___lambda__4___closed__1; +x_33 = l_Lean_mkApp3(x_31, x_32, x_28, x_30); +x_34 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_34, 0, x_33); +lean_ctor_set(x_34, 1, x_24); +return x_34; +} +} +} +else +{ +uint8_t x_35; +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_1); +x_35 = !lean_is_exclusive(x_8); +if (x_35 == 0) +{ +return x_8; +} +else +{ +lean_object* x_36; lean_object* x_37; lean_object* x_38; +x_36 = lean_ctor_get(x_8, 0); +x_37 = lean_ctor_get(x_8, 1); +lean_inc(x_37); +lean_inc(x_36); +lean_dec(x_8); +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; +} +} +} +} +static lean_object* _init_l_Lean_Meta_normLitValue___lambda__5___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Meta_getUInt8Value_x3f___closed__2; +x_3 = l_Lean_Expr_const___override(x_2, x_1); +return x_3; +} +} +static lean_object* _init_l_Lean_Meta_normLitValue___lambda__5___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Meta_getUInt8Value_x3f___closed__1; +x_2 = l_Lean_Meta_normLitValue___lambda__2___closed__5; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Meta_normLitValue___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_Lean_Meta_normLitValue___lambda__5___closed__2; +x_3 = l_Lean_Expr_const___override(x_2, x_1); +return x_3; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_normLitValue___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) { +_start: +{ +lean_object* x_8; +lean_dec(x_2); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +x_8 = l_Lean_Meta_getUInt8Value_x3f(x_1, x_3, x_4, x_5, x_6, x_7); +if (lean_obj_tag(x_8) == 0) +{ +lean_object* x_9; +x_9 = lean_ctor_get(x_8, 0); +lean_inc(x_9); +if (lean_obj_tag(x_9) == 0) +{ +lean_object* x_10; lean_object* x_11; lean_object* x_12; +x_10 = lean_ctor_get(x_8, 1); +lean_inc(x_10); +lean_dec(x_8); +x_11 = lean_box(0); +x_12 = l_Lean_Meta_normLitValue___lambda__4(x_1, x_11, x_3, x_4, x_5, x_6, x_10); +return x_12; +} +else +{ +uint8_t x_13; +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_1); +x_13 = !lean_is_exclusive(x_8); +if (x_13 == 0) +{ +lean_object* x_14; lean_object* x_15; uint8_t 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_14 = lean_ctor_get(x_8, 0); +lean_dec(x_14); +x_15 = lean_ctor_get(x_9, 0); +lean_inc(x_15); +lean_dec(x_9); +x_16 = lean_unbox(x_15); +lean_dec(x_15); +x_17 = lean_uint8_to_nat(x_16); +x_18 = l_Lean_mkRawNatLit(x_17); +x_19 = l_Lean_Meta_normLitValue___lambda__5___closed__3; +lean_inc(x_18); +x_20 = l_Lean_Expr_app___override(x_19, x_18); +x_21 = l_Lean_Meta_normLitValue___lambda__2___closed__3; +x_22 = l_Lean_Meta_normLitValue___lambda__5___closed__1; +x_23 = l_Lean_mkApp3(x_21, x_22, x_18, x_20); +lean_ctor_set(x_8, 0, x_23); +return x_8; +} +else +{ +lean_object* x_24; lean_object* x_25; uint8_t 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; +x_24 = lean_ctor_get(x_8, 1); +lean_inc(x_24); +lean_dec(x_8); +x_25 = lean_ctor_get(x_9, 0); +lean_inc(x_25); +lean_dec(x_9); +x_26 = lean_unbox(x_25); +lean_dec(x_25); +x_27 = lean_uint8_to_nat(x_26); +x_28 = l_Lean_mkRawNatLit(x_27); +x_29 = l_Lean_Meta_normLitValue___lambda__5___closed__3; +lean_inc(x_28); +x_30 = l_Lean_Expr_app___override(x_29, x_28); +x_31 = l_Lean_Meta_normLitValue___lambda__2___closed__3; +x_32 = l_Lean_Meta_normLitValue___lambda__5___closed__1; +x_33 = l_Lean_mkApp3(x_31, x_32, x_28, x_30); +x_34 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_34, 0, x_33); +lean_ctor_set(x_34, 1, x_24); +return x_34; +} +} +} +else +{ +uint8_t x_35; +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_1); +x_35 = !lean_is_exclusive(x_8); +if (x_35 == 0) +{ +return x_8; +} +else +{ +lean_object* x_36; lean_object* x_37; lean_object* x_38; +x_36 = lean_ctor_get(x_8, 0); +x_37 = lean_ctor_get(x_8, 1); +lean_inc(x_37); +lean_inc(x_36); +lean_dec(x_8); +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; +} +} +} +} +static lean_object* _init_l_Lean_Meta_normLitValue___lambda__6___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Meta_getCharValue_x3f___closed__2; +x_3 = l_Lean_Expr_const___override(x_2, x_1); +return x_3; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_normLitValue___lambda__6(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_dec(x_2); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +x_8 = l_Lean_Meta_getCharValue_x3f(x_1, x_3, x_4, x_5, x_6, x_7); +if (lean_obj_tag(x_8) == 0) +{ +lean_object* x_9; +x_9 = lean_ctor_get(x_8, 0); +lean_inc(x_9); +if (lean_obj_tag(x_9) == 0) +{ +lean_object* x_10; lean_object* x_11; lean_object* x_12; +x_10 = lean_ctor_get(x_8, 1); +lean_inc(x_10); +lean_dec(x_8); +x_11 = lean_box(0); +x_12 = l_Lean_Meta_normLitValue___lambda__5(x_1, x_11, x_3, x_4, x_5, x_6, x_10); +return x_12; +} +else +{ +uint8_t x_13; +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_1); +x_13 = !lean_is_exclusive(x_8); +if (x_13 == 0) +{ +lean_object* x_14; lean_object* x_15; uint32_t x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; +x_14 = lean_ctor_get(x_8, 0); +lean_dec(x_14); +x_15 = lean_ctor_get(x_9, 0); +lean_inc(x_15); +lean_dec(x_9); +x_16 = lean_unbox_uint32(x_15); +lean_dec(x_15); +x_17 = lean_uint32_to_nat(x_16); +x_18 = l_Lean_mkRawNatLit(x_17); +x_19 = l_Lean_Meta_normLitValue___lambda__6___closed__1; +x_20 = l_Lean_Expr_app___override(x_19, x_18); +lean_ctor_set(x_8, 0, x_20); +return x_8; +} +else +{ +lean_object* x_21; lean_object* x_22; uint32_t x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; +x_21 = lean_ctor_get(x_8, 1); +lean_inc(x_21); +lean_dec(x_8); +x_22 = lean_ctor_get(x_9, 0); +lean_inc(x_22); +lean_dec(x_9); +x_23 = lean_unbox_uint32(x_22); +lean_dec(x_22); +x_24 = lean_uint32_to_nat(x_23); +x_25 = l_Lean_mkRawNatLit(x_24); +x_26 = l_Lean_Meta_normLitValue___lambda__6___closed__1; +x_27 = l_Lean_Expr_app___override(x_26, x_25); +x_28 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_28, 0, x_27); +lean_ctor_set(x_28, 1, x_21); +return x_28; +} +} +} +else +{ +uint8_t x_29; +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_1); +x_29 = !lean_is_exclusive(x_8); +if (x_29 == 0) +{ +return x_8; +} +else +{ +lean_object* x_30; lean_object* x_31; lean_object* x_32; +x_30 = lean_ctor_get(x_8, 0); +x_31 = lean_ctor_get(x_8, 1); +lean_inc(x_31); +lean_inc(x_30); +lean_dec(x_8); +x_32 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_32, 0, x_30); +lean_ctor_set(x_32, 1, x_31); +return x_32; +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_normLitValue___lambda__7(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_dec(x_2); +x_8 = l_Lean_Meta_getStringValue_x3f(x_1); +if (lean_obj_tag(x_8) == 0) +{ +lean_object* x_9; lean_object* x_10; +x_9 = lean_box(0); +x_10 = l_Lean_Meta_normLitValue___lambda__6(x_1, x_9, x_3, x_4, x_5, x_6, x_7); +return x_10; +} +else +{ +lean_object* x_11; lean_object* x_12; lean_object* x_13; +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_1); +x_11 = lean_ctor_get(x_8, 0); +lean_inc(x_11); +lean_dec(x_8); +x_12 = l_Lean_mkStrLit(x_11); +x_13 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_13, 0, x_12); +lean_ctor_set(x_13, 1, x_7); +return x_13; +} +} +} +static lean_object* _init_l_Lean_Meta_normLitValue___lambda__8___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Meta_getBitVecValue_x3f___closed__1; +x_3 = l_Lean_Expr_const___override(x_2, x_1); +return x_3; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_normLitValue___lambda__8(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_dec(x_2); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +x_8 = l_Lean_Meta_getBitVecValue_x3f(x_1, x_3, x_4, x_5, x_6, x_7); +if (lean_obj_tag(x_8) == 0) +{ +lean_object* x_9; +x_9 = lean_ctor_get(x_8, 0); +lean_inc(x_9); +if (lean_obj_tag(x_9) == 0) +{ +lean_object* x_10; lean_object* x_11; lean_object* x_12; +x_10 = lean_ctor_get(x_8, 1); +lean_inc(x_10); +lean_dec(x_8); +x_11 = lean_box(0); +x_12 = l_Lean_Meta_normLitValue___lambda__7(x_1, x_11, x_3, x_4, x_5, x_6, x_10); +return x_12; +} +else +{ +lean_object* x_13; uint8_t x_14; +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_1); +x_13 = lean_ctor_get(x_9, 0); +lean_inc(x_13); +lean_dec(x_9); +x_14 = !lean_is_exclusive(x_8); +if (x_14 == 0) +{ +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_8, 0); +lean_dec(x_15); +x_16 = lean_ctor_get(x_13, 0); +lean_inc(x_16); +x_17 = lean_ctor_get(x_13, 1); +lean_inc(x_17); +lean_dec(x_13); +x_18 = l_Lean_mkNatLit(x_16); +x_19 = l_Lean_mkNatLit(x_17); +x_20 = l_Lean_Meta_normLitValue___lambda__8___closed__1; +x_21 = l_Lean_mkAppB(x_20, x_18, x_19); +lean_ctor_set(x_8, 0, x_21); +return x_8; +} +else +{ +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; +x_22 = lean_ctor_get(x_8, 1); +lean_inc(x_22); +lean_dec(x_8); +x_23 = lean_ctor_get(x_13, 0); +lean_inc(x_23); +x_24 = lean_ctor_get(x_13, 1); +lean_inc(x_24); +lean_dec(x_13); +x_25 = l_Lean_mkNatLit(x_23); +x_26 = l_Lean_mkNatLit(x_24); +x_27 = l_Lean_Meta_normLitValue___lambda__8___closed__1; +x_28 = l_Lean_mkAppB(x_27, x_25, x_26); +x_29 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_29, 0, x_28); +lean_ctor_set(x_29, 1, x_22); +return x_29; +} +} +} +else +{ +uint8_t x_30; +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_1); +x_30 = !lean_is_exclusive(x_8); +if (x_30 == 0) +{ +return x_8; +} +else +{ +lean_object* x_31; lean_object* x_32; lean_object* x_33; +x_31 = lean_ctor_get(x_8, 0); +x_32 = lean_ctor_get(x_8, 1); +lean_inc(x_32); +lean_inc(x_31); +lean_dec(x_8); +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; +} +} +} +} +static lean_object* _init_l_Lean_Meta_normLitValue___lambda__9___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Meta_getFinValue_x3f___closed__2; +x_3 = l_Lean_Expr_const___override(x_2, x_1); +return x_3; +} +} +static lean_object* _init_l_Lean_Meta_normLitValue___lambda__9___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Meta_getFinValue_x3f___closed__1; +x_2 = l_Lean_Meta_normLitValue___lambda__2___closed__5; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Meta_normLitValue___lambda__9___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Meta_normLitValue___lambda__9___closed__2; +x_3 = l_Lean_Expr_const___override(x_2, x_1); +return x_3; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_normLitValue___lambda__9(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_dec(x_2); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +x_8 = l_Lean_Meta_getFinValue_x3f(x_1, x_3, x_4, x_5, x_6, x_7); +if (lean_obj_tag(x_8) == 0) +{ +lean_object* x_9; +x_9 = lean_ctor_get(x_8, 0); +lean_inc(x_9); +if (lean_obj_tag(x_9) == 0) +{ +lean_object* x_10; lean_object* x_11; lean_object* x_12; +x_10 = lean_ctor_get(x_8, 1); +lean_inc(x_10); +lean_dec(x_8); +x_11 = lean_box(0); +x_12 = l_Lean_Meta_normLitValue___lambda__8(x_1, x_11, x_3, x_4, x_5, x_6, x_10); +return x_12; +} +else +{ +lean_object* x_13; uint8_t x_14; +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_1); +x_13 = lean_ctor_get(x_9, 0); +lean_inc(x_13); +lean_dec(x_9); +x_14 = !lean_is_exclusive(x_8); +if (x_14 == 0) +{ +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; +x_15 = lean_ctor_get(x_8, 0); +lean_dec(x_15); +x_16 = lean_ctor_get(x_13, 0); +lean_inc(x_16); +x_17 = lean_ctor_get(x_13, 1); +lean_inc(x_17); +lean_dec(x_13); +x_18 = l_Lean_mkRawNatLit(x_17); +lean_inc(x_16); +x_19 = l_Lean_mkNatLit(x_16); +x_20 = l_Lean_Meta_normLitValue___lambda__9___closed__1; +x_21 = l_Lean_Expr_app___override(x_20, x_19); +x_22 = lean_unsigned_to_nat(1u); +x_23 = lean_nat_sub(x_16, x_22); +lean_dec(x_16); +x_24 = l_Lean_mkNatLit(x_23); +x_25 = l_Lean_Meta_normLitValue___lambda__9___closed__3; +lean_inc(x_18); +x_26 = l_Lean_mkAppB(x_25, x_24, x_18); +x_27 = l_Lean_Meta_normLitValue___lambda__2___closed__3; +x_28 = l_Lean_mkApp3(x_27, x_21, x_18, x_26); +lean_ctor_set(x_8, 0, x_28); +return x_8; +} +else +{ +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; +x_29 = lean_ctor_get(x_8, 1); +lean_inc(x_29); +lean_dec(x_8); +x_30 = lean_ctor_get(x_13, 0); +lean_inc(x_30); +x_31 = lean_ctor_get(x_13, 1); +lean_inc(x_31); +lean_dec(x_13); +x_32 = l_Lean_mkRawNatLit(x_31); +lean_inc(x_30); +x_33 = l_Lean_mkNatLit(x_30); +x_34 = l_Lean_Meta_normLitValue___lambda__9___closed__1; +x_35 = l_Lean_Expr_app___override(x_34, x_33); +x_36 = lean_unsigned_to_nat(1u); +x_37 = lean_nat_sub(x_30, x_36); +lean_dec(x_30); +x_38 = l_Lean_mkNatLit(x_37); +x_39 = l_Lean_Meta_normLitValue___lambda__9___closed__3; +lean_inc(x_32); +x_40 = l_Lean_mkAppB(x_39, x_38, x_32); +x_41 = l_Lean_Meta_normLitValue___lambda__2___closed__3; +x_42 = l_Lean_mkApp3(x_41, x_35, x_32, x_40); +x_43 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_43, 0, x_42); +lean_ctor_set(x_43, 1, x_29); +return x_43; +} +} +} +else +{ +uint8_t x_44; +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_1); +x_44 = !lean_is_exclusive(x_8); +if (x_44 == 0) +{ +return x_8; +} +else +{ +lean_object* x_45; lean_object* x_46; lean_object* x_47; +x_45 = lean_ctor_get(x_8, 0); +x_46 = lean_ctor_get(x_8, 1); +lean_inc(x_46); +lean_inc(x_45); +lean_dec(x_8); +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; +} +} +} +} +static lean_object* _init_l_Lean_Meta_normLitValue___lambda__10___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_Lean_Meta_normLitValue___lambda__10___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Meta_getIntValue_x3f___lambda__2___closed__4; +x_2 = l_Lean_Meta_normLitValue___lambda__2___closed__2; +x_3 = l_Lean_Expr_const___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Meta_normLitValue___lambda__10___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Meta_getIntValue_x3f___closed__2; +x_3 = l_Lean_Expr_const___override(x_2, x_1); +return x_3; +} +} +static lean_object* _init_l_Lean_Meta_normLitValue___lambda__10___closed__4() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("instNegInt", 10); +return x_1; +} +} +static lean_object* _init_l_Lean_Meta_normLitValue___lambda__10___closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Meta_getIntValue_x3f___closed__1; +x_2 = l_Lean_Meta_normLitValue___lambda__10___closed__4; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Meta_normLitValue___lambda__10___closed__6() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Meta_normLitValue___lambda__10___closed__5; +x_3 = l_Lean_Expr_const___override(x_2, x_1); +return x_3; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_normLitValue___lambda__10(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_dec(x_2); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +x_8 = l_Lean_Meta_getIntValue_x3f(x_1, x_3, x_4, x_5, x_6, x_7); +if (lean_obj_tag(x_8) == 0) +{ +lean_object* x_9; +x_9 = lean_ctor_get(x_8, 0); +lean_inc(x_9); +if (lean_obj_tag(x_9) == 0) +{ +lean_object* x_10; lean_object* x_11; lean_object* x_12; +x_10 = lean_ctor_get(x_8, 1); +lean_inc(x_10); +lean_dec(x_8); +x_11 = lean_box(0); +x_12 = l_Lean_Meta_normLitValue___lambda__9(x_1, x_11, x_3, x_4, x_5, x_6, x_10); +return x_12; +} +else +{ +uint8_t x_13; +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_1); +x_13 = !lean_is_exclusive(x_8); +if (x_13 == 0) +{ +lean_object* x_14; lean_object* x_15; lean_object* x_16; uint8_t x_17; +x_14 = lean_ctor_get(x_8, 0); +lean_dec(x_14); +x_15 = lean_ctor_get(x_9, 0); +lean_inc(x_15); +lean_dec(x_9); +x_16 = l_Lean_Meta_normLitValue___lambda__10___closed__1; +x_17 = lean_int_dec_le(x_16, x_15); +if (x_17 == 0) +{ +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_int_neg(x_15); +lean_dec(x_15); +x_19 = l_Int_toNat(x_18); +lean_dec(x_18); +x_20 = l_Lean_instToExprInt_mkNat(x_19); +x_21 = l_Lean_Meta_normLitValue___lambda__10___closed__2; +x_22 = l_Lean_Meta_normLitValue___lambda__10___closed__3; +x_23 = l_Lean_Meta_normLitValue___lambda__10___closed__6; +x_24 = l_Lean_mkApp3(x_21, x_22, x_23, x_20); +lean_ctor_set(x_8, 0, x_24); +return x_8; +} +else +{ +lean_object* x_25; lean_object* x_26; +x_25 = l_Int_toNat(x_15); +lean_dec(x_15); +x_26 = l_Lean_instToExprInt_mkNat(x_25); +lean_ctor_set(x_8, 0, x_26); +return x_8; +} +} +else +{ +lean_object* x_27; lean_object* x_28; lean_object* x_29; uint8_t x_30; +x_27 = lean_ctor_get(x_8, 1); +lean_inc(x_27); +lean_dec(x_8); +x_28 = lean_ctor_get(x_9, 0); +lean_inc(x_28); +lean_dec(x_9); +x_29 = l_Lean_Meta_normLitValue___lambda__10___closed__1; +x_30 = lean_int_dec_le(x_29, x_28); +if (x_30 == 0) +{ +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; +x_31 = lean_int_neg(x_28); +lean_dec(x_28); +x_32 = l_Int_toNat(x_31); +lean_dec(x_31); +x_33 = l_Lean_instToExprInt_mkNat(x_32); +x_34 = l_Lean_Meta_normLitValue___lambda__10___closed__2; +x_35 = l_Lean_Meta_normLitValue___lambda__10___closed__3; +x_36 = l_Lean_Meta_normLitValue___lambda__10___closed__6; +x_37 = l_Lean_mkApp3(x_34, x_35, x_36, x_33); +x_38 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_38, 0, x_37); +lean_ctor_set(x_38, 1, x_27); +return x_38; +} +else +{ +lean_object* x_39; lean_object* x_40; lean_object* x_41; +x_39 = l_Int_toNat(x_28); +lean_dec(x_28); +x_40 = l_Lean_instToExprInt_mkNat(x_39); +x_41 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_41, 0, x_40); +lean_ctor_set(x_41, 1, x_27); +return x_41; +} +} +} +} +else +{ +uint8_t x_42; +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_1); +x_42 = !lean_is_exclusive(x_8); +if (x_42 == 0) +{ +return x_8; +} +else +{ +lean_object* x_43; lean_object* x_44; lean_object* x_45; +x_43 = lean_ctor_get(x_8, 0); +x_44 = lean_ctor_get(x_8, 1); +lean_inc(x_44); +lean_inc(x_43); +lean_dec(x_8); +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_EXPORT lean_object* l_Lean_Meta_normLitValue(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; lean_object* x_8; lean_object* x_9; lean_object* x_10; +x_7 = l_Lean_instantiateMVars___at___private_Lean_Meta_Basic_0__Lean_Meta_isClassApp_x3f___spec__1(x_1, x_2, x_3, x_4, x_5, x_6); +x_8 = lean_ctor_get(x_7, 0); +lean_inc(x_8); +x_9 = lean_ctor_get(x_7, 1); +lean_inc(x_9); +lean_dec(x_7); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +lean_inc(x_2); +lean_inc(x_8); +x_10 = l_Lean_Meta_getNatValue_x3f(x_8, x_2, x_3, x_4, x_5, x_9); +if (lean_obj_tag(x_10) == 0) +{ +lean_object* x_11; +x_11 = lean_ctor_get(x_10, 0); +lean_inc(x_11); +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_10, 1); +lean_inc(x_12); +lean_dec(x_10); +x_13 = lean_box(0); +x_14 = l_Lean_Meta_normLitValue___lambda__10(x_8, x_13, x_2, x_3, x_4, x_5, x_12); +return x_14; +} +else +{ +uint8_t x_15; +lean_dec(x_8); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_15 = !lean_is_exclusive(x_10); +if (x_15 == 0) +{ +lean_object* x_16; lean_object* x_17; lean_object* x_18; +x_16 = lean_ctor_get(x_10, 0); +lean_dec(x_16); +x_17 = lean_ctor_get(x_11, 0); +lean_inc(x_17); +lean_dec(x_11); +x_18 = l_Lean_mkNatLit(x_17); +lean_ctor_set(x_10, 0, x_18); +return x_10; +} +else +{ +lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; +x_19 = lean_ctor_get(x_10, 1); +lean_inc(x_19); +lean_dec(x_10); +x_20 = lean_ctor_get(x_11, 0); +lean_inc(x_20); +lean_dec(x_11); +x_21 = l_Lean_mkNatLit(x_20); +x_22 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_22, 0, x_21); +lean_ctor_set(x_22, 1, x_19); +return x_22; +} +} +} +else +{ +uint8_t x_23; +lean_dec(x_8); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_23 = !lean_is_exclusive(x_10); +if (x_23 == 0) +{ +return x_10; +} +else +{ +lean_object* x_24; lean_object* x_25; lean_object* x_26; +x_24 = lean_ctor_get(x_10, 0); +x_25 = lean_ctor_get(x_10, 1); +lean_inc(x_25); +lean_inc(x_24); +lean_dec(x_10); +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; +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_normLitValue___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) { +_start: +{ +lean_object* x_8; +x_8 = l_Lean_Meta_normLitValue___lambda__1(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); +lean_dec(x_2); +return x_8; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_normLitValue___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_Lean_Meta_normLitValue___lambda__2(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +lean_dec(x_2); +return x_8; +} +} +lean_object* initialize_Lean_Meta_Basic(uint8_t builtin, lean_object*); +static bool _G_initialized = false; +LEAN_EXPORT lean_object* initialize_Lean_Meta_LitValues(uint8_t builtin, lean_object* w) { +lean_object * res; +if (_G_initialized) return lean_io_result_mk_ok(lean_box(0)); +_G_initialized = true; +res = initialize_Lean_Meta_Basic(builtin, lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +l_Lean_Meta_getOfNatValue_x3f___closed__1 = _init_l_Lean_Meta_getOfNatValue_x3f___closed__1(); +lean_mark_persistent(l_Lean_Meta_getOfNatValue_x3f___closed__1); +l_Lean_Meta_getOfNatValue_x3f___closed__2 = _init_l_Lean_Meta_getOfNatValue_x3f___closed__2(); +lean_mark_persistent(l_Lean_Meta_getOfNatValue_x3f___closed__2); +l_Lean_Meta_getOfNatValue_x3f___closed__3 = _init_l_Lean_Meta_getOfNatValue_x3f___closed__3(); +lean_mark_persistent(l_Lean_Meta_getOfNatValue_x3f___closed__3); +l_Lean_Meta_getOfNatValue_x3f___closed__4 = _init_l_Lean_Meta_getOfNatValue_x3f___closed__4(); +lean_mark_persistent(l_Lean_Meta_getOfNatValue_x3f___closed__4); +l_Lean_Meta_getNatValue_x3f___lambda__1___closed__1 = _init_l_Lean_Meta_getNatValue_x3f___lambda__1___closed__1(); +lean_mark_persistent(l_Lean_Meta_getNatValue_x3f___lambda__1___closed__1); +l_Lean_Meta_getNatValue_x3f___lambda__1___closed__2 = _init_l_Lean_Meta_getNatValue_x3f___lambda__1___closed__2(); +lean_mark_persistent(l_Lean_Meta_getNatValue_x3f___lambda__1___closed__2); +l_Lean_Meta_getIntValue_x3f___lambda__2___closed__1 = _init_l_Lean_Meta_getIntValue_x3f___lambda__2___closed__1(); +lean_mark_persistent(l_Lean_Meta_getIntValue_x3f___lambda__2___closed__1); +l_Lean_Meta_getIntValue_x3f___lambda__2___closed__2 = _init_l_Lean_Meta_getIntValue_x3f___lambda__2___closed__2(); +lean_mark_persistent(l_Lean_Meta_getIntValue_x3f___lambda__2___closed__2); +l_Lean_Meta_getIntValue_x3f___lambda__2___closed__3 = _init_l_Lean_Meta_getIntValue_x3f___lambda__2___closed__3(); +lean_mark_persistent(l_Lean_Meta_getIntValue_x3f___lambda__2___closed__3); +l_Lean_Meta_getIntValue_x3f___lambda__2___closed__4 = _init_l_Lean_Meta_getIntValue_x3f___lambda__2___closed__4(); +lean_mark_persistent(l_Lean_Meta_getIntValue_x3f___lambda__2___closed__4); +l_Lean_Meta_getIntValue_x3f___closed__1 = _init_l_Lean_Meta_getIntValue_x3f___closed__1(); +lean_mark_persistent(l_Lean_Meta_getIntValue_x3f___closed__1); +l_Lean_Meta_getIntValue_x3f___closed__2 = _init_l_Lean_Meta_getIntValue_x3f___closed__2(); +lean_mark_persistent(l_Lean_Meta_getIntValue_x3f___closed__2); +l_Lean_Meta_getCharValue_x3f___closed__1 = _init_l_Lean_Meta_getCharValue_x3f___closed__1(); +lean_mark_persistent(l_Lean_Meta_getCharValue_x3f___closed__1); +l_Lean_Meta_getCharValue_x3f___closed__2 = _init_l_Lean_Meta_getCharValue_x3f___closed__2(); +lean_mark_persistent(l_Lean_Meta_getCharValue_x3f___closed__2); +l_Lean_Meta_getFinValue_x3f___closed__1 = _init_l_Lean_Meta_getFinValue_x3f___closed__1(); +lean_mark_persistent(l_Lean_Meta_getFinValue_x3f___closed__1); +l_Lean_Meta_getFinValue_x3f___closed__2 = _init_l_Lean_Meta_getFinValue_x3f___closed__2(); +lean_mark_persistent(l_Lean_Meta_getFinValue_x3f___closed__2); +l_Lean_Meta_getBitVecValue_x3f___lambda__1___closed__1 = _init_l_Lean_Meta_getBitVecValue_x3f___lambda__1___closed__1(); +lean_mark_persistent(l_Lean_Meta_getBitVecValue_x3f___lambda__1___closed__1); +l_Lean_Meta_getBitVecValue_x3f___lambda__1___closed__2 = _init_l_Lean_Meta_getBitVecValue_x3f___lambda__1___closed__2(); +lean_mark_persistent(l_Lean_Meta_getBitVecValue_x3f___lambda__1___closed__2); +l_Lean_Meta_getBitVecValue_x3f___closed__1 = _init_l_Lean_Meta_getBitVecValue_x3f___closed__1(); +lean_mark_persistent(l_Lean_Meta_getBitVecValue_x3f___closed__1); +l_Lean_Meta_getUInt8Value_x3f___closed__1 = _init_l_Lean_Meta_getUInt8Value_x3f___closed__1(); +lean_mark_persistent(l_Lean_Meta_getUInt8Value_x3f___closed__1); +l_Lean_Meta_getUInt8Value_x3f___closed__2 = _init_l_Lean_Meta_getUInt8Value_x3f___closed__2(); +lean_mark_persistent(l_Lean_Meta_getUInt8Value_x3f___closed__2); +l_Lean_Meta_getUInt16Value_x3f___closed__1 = _init_l_Lean_Meta_getUInt16Value_x3f___closed__1(); +lean_mark_persistent(l_Lean_Meta_getUInt16Value_x3f___closed__1); +l_Lean_Meta_getUInt16Value_x3f___closed__2 = _init_l_Lean_Meta_getUInt16Value_x3f___closed__2(); +lean_mark_persistent(l_Lean_Meta_getUInt16Value_x3f___closed__2); +l_Lean_Meta_getUInt32Value_x3f___closed__1 = _init_l_Lean_Meta_getUInt32Value_x3f___closed__1(); +lean_mark_persistent(l_Lean_Meta_getUInt32Value_x3f___closed__1); +l_Lean_Meta_getUInt32Value_x3f___closed__2 = _init_l_Lean_Meta_getUInt32Value_x3f___closed__2(); +lean_mark_persistent(l_Lean_Meta_getUInt32Value_x3f___closed__2); +l_Lean_Meta_getUInt64Value_x3f___closed__1 = _init_l_Lean_Meta_getUInt64Value_x3f___closed__1(); +lean_mark_persistent(l_Lean_Meta_getUInt64Value_x3f___closed__1); +l_Lean_Meta_getUInt64Value_x3f___closed__2 = _init_l_Lean_Meta_getUInt64Value_x3f___closed__2(); +lean_mark_persistent(l_Lean_Meta_getUInt64Value_x3f___closed__2); +l_Lean_Meta_normLitValue___lambda__2___closed__1 = _init_l_Lean_Meta_normLitValue___lambda__2___closed__1(); +lean_mark_persistent(l_Lean_Meta_normLitValue___lambda__2___closed__1); +l_Lean_Meta_normLitValue___lambda__2___closed__2 = _init_l_Lean_Meta_normLitValue___lambda__2___closed__2(); +lean_mark_persistent(l_Lean_Meta_normLitValue___lambda__2___closed__2); +l_Lean_Meta_normLitValue___lambda__2___closed__3 = _init_l_Lean_Meta_normLitValue___lambda__2___closed__3(); +lean_mark_persistent(l_Lean_Meta_normLitValue___lambda__2___closed__3); +l_Lean_Meta_normLitValue___lambda__2___closed__4 = _init_l_Lean_Meta_normLitValue___lambda__2___closed__4(); +lean_mark_persistent(l_Lean_Meta_normLitValue___lambda__2___closed__4); +l_Lean_Meta_normLitValue___lambda__2___closed__5 = _init_l_Lean_Meta_normLitValue___lambda__2___closed__5(); +lean_mark_persistent(l_Lean_Meta_normLitValue___lambda__2___closed__5); +l_Lean_Meta_normLitValue___lambda__2___closed__6 = _init_l_Lean_Meta_normLitValue___lambda__2___closed__6(); +lean_mark_persistent(l_Lean_Meta_normLitValue___lambda__2___closed__6); +l_Lean_Meta_normLitValue___lambda__2___closed__7 = _init_l_Lean_Meta_normLitValue___lambda__2___closed__7(); +lean_mark_persistent(l_Lean_Meta_normLitValue___lambda__2___closed__7); +l_Lean_Meta_normLitValue___lambda__3___closed__1 = _init_l_Lean_Meta_normLitValue___lambda__3___closed__1(); +lean_mark_persistent(l_Lean_Meta_normLitValue___lambda__3___closed__1); +l_Lean_Meta_normLitValue___lambda__3___closed__2 = _init_l_Lean_Meta_normLitValue___lambda__3___closed__2(); +lean_mark_persistent(l_Lean_Meta_normLitValue___lambda__3___closed__2); +l_Lean_Meta_normLitValue___lambda__3___closed__3 = _init_l_Lean_Meta_normLitValue___lambda__3___closed__3(); +lean_mark_persistent(l_Lean_Meta_normLitValue___lambda__3___closed__3); +l_Lean_Meta_normLitValue___lambda__4___closed__1 = _init_l_Lean_Meta_normLitValue___lambda__4___closed__1(); +lean_mark_persistent(l_Lean_Meta_normLitValue___lambda__4___closed__1); +l_Lean_Meta_normLitValue___lambda__4___closed__2 = _init_l_Lean_Meta_normLitValue___lambda__4___closed__2(); +lean_mark_persistent(l_Lean_Meta_normLitValue___lambda__4___closed__2); +l_Lean_Meta_normLitValue___lambda__4___closed__3 = _init_l_Lean_Meta_normLitValue___lambda__4___closed__3(); +lean_mark_persistent(l_Lean_Meta_normLitValue___lambda__4___closed__3); +l_Lean_Meta_normLitValue___lambda__5___closed__1 = _init_l_Lean_Meta_normLitValue___lambda__5___closed__1(); +lean_mark_persistent(l_Lean_Meta_normLitValue___lambda__5___closed__1); +l_Lean_Meta_normLitValue___lambda__5___closed__2 = _init_l_Lean_Meta_normLitValue___lambda__5___closed__2(); +lean_mark_persistent(l_Lean_Meta_normLitValue___lambda__5___closed__2); +l_Lean_Meta_normLitValue___lambda__5___closed__3 = _init_l_Lean_Meta_normLitValue___lambda__5___closed__3(); +lean_mark_persistent(l_Lean_Meta_normLitValue___lambda__5___closed__3); +l_Lean_Meta_normLitValue___lambda__6___closed__1 = _init_l_Lean_Meta_normLitValue___lambda__6___closed__1(); +lean_mark_persistent(l_Lean_Meta_normLitValue___lambda__6___closed__1); +l_Lean_Meta_normLitValue___lambda__8___closed__1 = _init_l_Lean_Meta_normLitValue___lambda__8___closed__1(); +lean_mark_persistent(l_Lean_Meta_normLitValue___lambda__8___closed__1); +l_Lean_Meta_normLitValue___lambda__9___closed__1 = _init_l_Lean_Meta_normLitValue___lambda__9___closed__1(); +lean_mark_persistent(l_Lean_Meta_normLitValue___lambda__9___closed__1); +l_Lean_Meta_normLitValue___lambda__9___closed__2 = _init_l_Lean_Meta_normLitValue___lambda__9___closed__2(); +lean_mark_persistent(l_Lean_Meta_normLitValue___lambda__9___closed__2); +l_Lean_Meta_normLitValue___lambda__9___closed__3 = _init_l_Lean_Meta_normLitValue___lambda__9___closed__3(); +lean_mark_persistent(l_Lean_Meta_normLitValue___lambda__9___closed__3); +l_Lean_Meta_normLitValue___lambda__10___closed__1 = _init_l_Lean_Meta_normLitValue___lambda__10___closed__1(); +lean_mark_persistent(l_Lean_Meta_normLitValue___lambda__10___closed__1); +l_Lean_Meta_normLitValue___lambda__10___closed__2 = _init_l_Lean_Meta_normLitValue___lambda__10___closed__2(); +lean_mark_persistent(l_Lean_Meta_normLitValue___lambda__10___closed__2); +l_Lean_Meta_normLitValue___lambda__10___closed__3 = _init_l_Lean_Meta_normLitValue___lambda__10___closed__3(); +lean_mark_persistent(l_Lean_Meta_normLitValue___lambda__10___closed__3); +l_Lean_Meta_normLitValue___lambda__10___closed__4 = _init_l_Lean_Meta_normLitValue___lambda__10___closed__4(); +lean_mark_persistent(l_Lean_Meta_normLitValue___lambda__10___closed__4); +l_Lean_Meta_normLitValue___lambda__10___closed__5 = _init_l_Lean_Meta_normLitValue___lambda__10___closed__5(); +lean_mark_persistent(l_Lean_Meta_normLitValue___lambda__10___closed__5); +l_Lean_Meta_normLitValue___lambda__10___closed__6 = _init_l_Lean_Meta_normLitValue___lambda__10___closed__6(); +lean_mark_persistent(l_Lean_Meta_normLitValue___lambda__10___closed__6); +return lean_io_result_mk_ok(lean_box(0)); +} +#ifdef __cplusplus +} +#endif diff --git a/stage0/stdlib/Lean/Meta/Match/Basic.c b/stage0/stdlib/Lean/Meta/Match/Basic.c index a28b1cec99..c60e4905ea 100644 --- a/stage0/stdlib/Lean/Meta/Match/Basic.c +++ b/stage0/stdlib/Lean/Meta/Match/Basic.c @@ -170,7 +170,7 @@ LEAN_EXPORT lean_object* l_List_mapTR_loop___at_Lean_Meta_Match_Example_replaceF static lean_object* l_Lean_Meta_Match_Alt_checkAndReplaceFVarId___lambda__2___closed__5; LEAN_EXPORT lean_object* l_List_mapTR_loop___at_Lean_Meta_Match_Alt_applyFVarSubst___spec__1___boxed(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Meta_Match_toPattern___closed__1; -uint8_t l_Lean_Meta_isMatchValue(lean_object*); +lean_object* l_Lean_Meta_isMatchValue(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Meta_Match_Pattern_toMessageData___closed__11; LEAN_EXPORT lean_object* l_Lean_Meta_Match_Pattern_collectFVars(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_Match_toPattern___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -6983,555 +6983,870 @@ lean_object* x_9; x_9 = l_Lean_Meta_Match_isNamedPattern_x3f(x_1); if (lean_obj_tag(x_9) == 0) { -uint8_t x_10; -x_10 = l_Lean_Meta_isMatchValue(x_1); -if (x_10 == 0) -{ -uint8_t x_11; -x_11 = l_Lean_Expr_isFVar(x_1); -if (x_11 == 0) -{ -lean_object* x_12; +lean_object* x_10; lean_inc(x_5); lean_inc(x_4); lean_inc(x_3); lean_inc(x_2); lean_inc(x_1); -x_12 = lean_whnf(x_1, x_2, x_3, x_4, x_5, x_6); -if (lean_obj_tag(x_12) == 0) +x_10 = l_Lean_Meta_isMatchValue(x_1, x_2, x_3, x_4, x_5, x_6); +if (lean_obj_tag(x_10) == 0) { -lean_object* x_13; lean_object* x_14; uint8_t x_15; -x_13 = lean_ctor_get(x_12, 0); -lean_inc(x_13); -x_14 = lean_ctor_get(x_12, 1); -lean_inc(x_14); -lean_dec(x_12); -x_15 = lean_expr_eqv(x_13, x_1); -if (x_15 == 0) +lean_object* x_11; uint8_t x_12; +x_11 = lean_ctor_get(x_10, 0); +lean_inc(x_11); +x_12 = lean_unbox(x_11); +lean_dec(x_11); +if (x_12 == 0) { -lean_dec(x_1); -x_1 = x_13; -x_6 = x_14; -goto _start; -} -else +uint8_t x_13; +x_13 = !lean_is_exclusive(x_10); +if (x_13 == 0) +{ +lean_object* x_14; lean_object* x_15; uint8_t x_16; +x_14 = lean_ctor_get(x_10, 1); +x_15 = lean_ctor_get(x_10, 0); +lean_dec(x_15); +x_16 = l_Lean_Expr_isFVar(x_1); +if (x_16 == 0) { lean_object* x_17; -lean_dec(x_13); -x_17 = l_Lean_Expr_getAppFn(x_1); -if (lean_obj_tag(x_17) == 4) +lean_free_object(x_10); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +lean_inc(x_2); +lean_inc(x_1); +x_17 = lean_whnf(x_1, x_2, x_3, x_4, x_5, x_14); +if (lean_obj_tag(x_17) == 0) { -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_18; lean_object* x_19; uint8_t 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 = lean_st_ref_get(x_5, x_14); -x_21 = lean_ctor_get(x_20, 0); -lean_inc(x_21); -x_22 = lean_ctor_get(x_20, 1); -lean_inc(x_22); -lean_dec(x_20); -x_23 = lean_ctor_get(x_21, 0); +x_20 = lean_expr_eqv(x_18, x_1); +if (x_20 == 0) +{ +lean_dec(x_1); +x_1 = x_18; +x_6 = x_19; +goto _start; +} +else +{ +lean_object* x_22; +lean_dec(x_18); +x_22 = l_Lean_Expr_getAppFn(x_1); +if (lean_obj_tag(x_22) == 4) +{ +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; +x_23 = lean_ctor_get(x_22, 0); lean_inc(x_23); -lean_dec(x_21); -x_24 = lean_environment_find(x_23, x_18); -if (lean_obj_tag(x_24) == 0) +x_24 = lean_ctor_get(x_22, 1); +lean_inc(x_24); +lean_dec(x_22); +x_25 = lean_st_ref_get(x_5, x_19); +x_26 = lean_ctor_get(x_25, 0); +lean_inc(x_26); +x_27 = lean_ctor_get(x_25, 1); +lean_inc(x_27); +lean_dec(x_25); +x_28 = lean_ctor_get(x_26, 0); +lean_inc(x_28); +lean_dec(x_26); +x_29 = lean_environment_find(x_28, x_23); +if (lean_obj_tag(x_29) == 0) { -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_dec(x_19); -x_25 = l_Lean_indentExpr(x_1); -x_26 = l_Lean_Meta_Match_toPattern___closed__2; -x_27 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_27, 0, x_26); -lean_ctor_set(x_27, 1, x_25); -x_28 = l_Lean_Meta_Match_Pattern_toMessageData___closed__8; -x_29 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_29, 0, x_27); -lean_ctor_set(x_29, 1, x_28); -x_30 = l_Lean_throwError___at_Lean_Meta_Match_toPattern___spec__1(x_29, x_2, x_3, x_4, x_5, x_22); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -return x_30; -} -else -{ -lean_object* x_31; -x_31 = lean_ctor_get(x_24, 0); -lean_inc(x_31); +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_dec(x_24); -if (lean_obj_tag(x_31) == 6) -{ -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; uint8_t x_44; -x_32 = lean_ctor_get(x_31, 0); -lean_inc(x_32); -lean_dec(x_31); -x_33 = lean_unsigned_to_nat(0u); -x_34 = l___private_Lean_Expr_0__Lean_Expr_getAppNumArgsAux(x_1, x_33); -x_35 = l_Lean_Meta_Match_toPattern___closed__3; -lean_inc(x_34); -x_36 = lean_mk_array(x_34, x_35); -x_37 = lean_unsigned_to_nat(1u); -x_38 = lean_nat_sub(x_34, x_37); -lean_dec(x_34); -lean_inc(x_1); -x_39 = l___private_Lean_Expr_0__Lean_Expr_getAppArgsAux(x_1, x_36, x_38); -x_40 = lean_array_get_size(x_39); -x_41 = lean_ctor_get(x_32, 3); -lean_inc(x_41); -x_42 = lean_ctor_get(x_32, 4); -lean_inc(x_42); -x_43 = lean_nat_add(x_41, x_42); -lean_dec(x_42); -lean_dec(x_41); -x_44 = lean_nat_dec_eq(x_40, x_43); -lean_dec(x_43); -lean_dec(x_40); -if (x_44 == 0) -{ -lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; uint8_t x_51; -lean_dec(x_39); -lean_dec(x_32); -lean_dec(x_19); -x_45 = l_Lean_indentExpr(x_1); -x_46 = l_Lean_Meta_Match_toPattern___closed__2; -x_47 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_47, 0, x_46); -lean_ctor_set(x_47, 1, x_45); -x_48 = l_Lean_Meta_Match_Pattern_toMessageData___closed__8; -x_49 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_49, 0, x_47); -lean_ctor_set(x_49, 1, x_48); -x_50 = l_Lean_throwError___at___private_Lean_Meta_InferType_0__Lean_Meta_inferProjType___spec__1(x_49, x_2, x_3, x_4, x_5, x_22); +x_30 = l_Lean_indentExpr(x_1); +x_31 = l_Lean_Meta_Match_toPattern___closed__2; +x_32 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_32, 0, x_31); +lean_ctor_set(x_32, 1, x_30); +x_33 = l_Lean_Meta_Match_Pattern_toMessageData___closed__8; +x_34 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_34, 0, x_32); +lean_ctor_set(x_34, 1, x_33); +x_35 = l_Lean_throwError___at_Lean_Meta_Match_toPattern___spec__1(x_34, x_2, x_3, x_4, x_5, x_27); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); -x_51 = !lean_is_exclusive(x_50); -if (x_51 == 0) -{ -return x_50; +return x_35; } else { -lean_object* x_52; lean_object* x_53; lean_object* x_54; -x_52 = lean_ctor_get(x_50, 0); -x_53 = lean_ctor_get(x_50, 1); -lean_inc(x_53); -lean_inc(x_52); -lean_dec(x_50); -x_54 = lean_alloc_ctor(1, 2, 0); +lean_object* x_36; +x_36 = lean_ctor_get(x_29, 0); +lean_inc(x_36); +lean_dec(x_29); +if (lean_obj_tag(x_36) == 6) +{ +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; uint8_t x_49; +x_37 = lean_ctor_get(x_36, 0); +lean_inc(x_37); +lean_dec(x_36); +x_38 = lean_unsigned_to_nat(0u); +x_39 = l___private_Lean_Expr_0__Lean_Expr_getAppNumArgsAux(x_1, x_38); +x_40 = l_Lean_Meta_Match_toPattern___closed__3; +lean_inc(x_39); +x_41 = lean_mk_array(x_39, x_40); +x_42 = lean_unsigned_to_nat(1u); +x_43 = lean_nat_sub(x_39, x_42); +lean_dec(x_39); +lean_inc(x_1); +x_44 = l___private_Lean_Expr_0__Lean_Expr_getAppArgsAux(x_1, x_41, x_43); +x_45 = lean_array_get_size(x_44); +x_46 = lean_ctor_get(x_37, 3); +lean_inc(x_46); +x_47 = lean_ctor_get(x_37, 4); +lean_inc(x_47); +x_48 = lean_nat_add(x_46, x_47); +lean_dec(x_47); +lean_dec(x_46); +x_49 = lean_nat_dec_eq(x_45, x_48); +lean_dec(x_48); +lean_dec(x_45); +if (x_49 == 0) +{ +lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; uint8_t x_56; +lean_dec(x_44); +lean_dec(x_37); +lean_dec(x_24); +x_50 = l_Lean_indentExpr(x_1); +x_51 = l_Lean_Meta_Match_toPattern___closed__2; +x_52 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_52, 0, x_51); +lean_ctor_set(x_52, 1, x_50); +x_53 = l_Lean_Meta_Match_Pattern_toMessageData___closed__8; +x_54 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_54, 0, x_52); lean_ctor_set(x_54, 1, x_53); -return x_54; +x_55 = l_Lean_throwError___at___private_Lean_Meta_InferType_0__Lean_Meta_inferProjType___spec__1(x_54, x_2, x_3, x_4, x_5, x_27); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_56 = !lean_is_exclusive(x_55); +if (x_56 == 0) +{ +return x_55; +} +else +{ +lean_object* x_57; lean_object* x_58; lean_object* x_59; +x_57 = lean_ctor_get(x_55, 0); +x_58 = lean_ctor_get(x_55, 1); +lean_inc(x_58); +lean_inc(x_57); +lean_dec(x_55); +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 { -lean_object* x_55; lean_object* x_56; +lean_object* x_60; lean_object* x_61; lean_dec(x_1); -x_55 = lean_box(0); -x_56 = l_Lean_Meta_Match_toPattern___lambda__1(x_32, x_39, x_19, x_55, x_2, x_3, x_4, x_5, x_22); -lean_dec(x_39); -return x_56; +x_60 = lean_box(0); +x_61 = l_Lean_Meta_Match_toPattern___lambda__1(x_37, x_44, x_24, x_60, x_2, x_3, x_4, x_5, x_27); +lean_dec(x_44); +return x_61; } } else { -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_dec(x_31); -lean_dec(x_19); -x_57 = l_Lean_indentExpr(x_1); -x_58 = l_Lean_Meta_Match_toPattern___closed__2; -x_59 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_59, 0, x_58); -lean_ctor_set(x_59, 1, x_57); -x_60 = l_Lean_Meta_Match_Pattern_toMessageData___closed__8; -x_61 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_61, 0, x_59); -lean_ctor_set(x_61, 1, x_60); -x_62 = l_Lean_throwError___at_Lean_Meta_Match_toPattern___spec__1(x_61, x_2, x_3, x_4, x_5, x_22); +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_dec(x_36); +lean_dec(x_24); +x_62 = l_Lean_indentExpr(x_1); +x_63 = l_Lean_Meta_Match_toPattern___closed__2; +x_64 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_64, 0, x_63); +lean_ctor_set(x_64, 1, x_62); +x_65 = l_Lean_Meta_Match_Pattern_toMessageData___closed__8; +x_66 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_66, 0, x_64); +lean_ctor_set(x_66, 1, x_65); +x_67 = l_Lean_throwError___at_Lean_Meta_Match_toPattern___spec__1(x_66, x_2, x_3, x_4, x_5, x_27); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); -return x_62; +return x_67; } } } 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_dec(x_17); -x_63 = l_Lean_indentExpr(x_1); -x_64 = l_Lean_Meta_Match_toPattern___closed__2; -x_65 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_65, 0, x_64); -lean_ctor_set(x_65, 1, x_63); -x_66 = l_Lean_Meta_Match_Pattern_toMessageData___closed__8; -x_67 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_67, 0, x_65); -lean_ctor_set(x_67, 1, x_66); -x_68 = l_Lean_throwError___at_Lean_Meta_Match_toPattern___spec__1(x_67, x_2, x_3, x_4, x_5, x_14); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -return x_68; -} -} -} -else -{ -uint8_t x_69; -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -lean_dec(x_1); -x_69 = !lean_is_exclusive(x_12); -if (x_69 == 0) -{ -return x_12; -} -else -{ -lean_object* x_70; lean_object* x_71; lean_object* x_72; -x_70 = lean_ctor_get(x_12, 0); -x_71 = lean_ctor_get(x_12, 1); -lean_inc(x_71); -lean_inc(x_70); -lean_dec(x_12); -x_72 = lean_alloc_ctor(1, 2, 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_dec(x_22); +x_68 = l_Lean_indentExpr(x_1); +x_69 = l_Lean_Meta_Match_toPattern___closed__2; +x_70 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_70, 0, x_69); +lean_ctor_set(x_70, 1, x_68); +x_71 = l_Lean_Meta_Match_Pattern_toMessageData___closed__8; +x_72 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_72, 0, x_70); lean_ctor_set(x_72, 1, x_71); -return x_72; +x_73 = l_Lean_throwError___at_Lean_Meta_Match_toPattern___spec__1(x_72, x_2, x_3, x_4, x_5, x_19); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +return x_73; } } } else { -lean_object* x_73; lean_object* x_74; lean_object* x_75; +uint8_t x_74; lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); -x_73 = l_Lean_Expr_fvarId_x21(x_1); -x_74 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_74, 0, x_73); -x_75 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_75, 0, x_74); -lean_ctor_set(x_75, 1, x_6); -return x_75; -} +lean_dec(x_1); +x_74 = !lean_is_exclusive(x_17); +if (x_74 == 0) +{ +return x_17; } else { -lean_object* x_76; lean_object* x_77; -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -x_76 = lean_alloc_ctor(3, 1, 0); -lean_ctor_set(x_76, 0, x_1); -x_77 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_77, 0, x_76); -lean_ctor_set(x_77, 1, x_6); +lean_object* x_75; lean_object* x_76; lean_object* x_77; +x_75 = lean_ctor_get(x_17, 0); +x_76 = lean_ctor_get(x_17, 1); +lean_inc(x_76); +lean_inc(x_75); +lean_dec(x_17); +x_77 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_77, 0, x_75); +lean_ctor_set(x_77, 1, x_76); return x_77; } } +} else { -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_dec(x_1); -x_78 = lean_ctor_get(x_9, 0); -lean_inc(x_78); -lean_dec(x_9); -x_79 = lean_unsigned_to_nat(0u); -x_80 = l___private_Lean_Expr_0__Lean_Expr_getAppNumArgsAux(x_78, x_79); -x_81 = lean_unsigned_to_nat(2u); -x_82 = lean_nat_sub(x_80, x_81); -x_83 = lean_unsigned_to_nat(1u); -x_84 = lean_nat_sub(x_82, x_83); -lean_dec(x_82); -x_85 = l_Lean_Expr_getRevArg_x21(x_78, x_84); +lean_object* x_78; lean_object* x_79; +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_78 = l_Lean_Expr_fvarId_x21(x_1); +x_79 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_79, 0, x_78); +lean_ctor_set(x_10, 0, x_79); +return x_10; +} +} +else +{ +lean_object* x_80; uint8_t x_81; +x_80 = lean_ctor_get(x_10, 1); +lean_inc(x_80); +lean_dec(x_10); +x_81 = l_Lean_Expr_isFVar(x_1); +if (x_81 == 0) +{ +lean_object* x_82; lean_inc(x_5); lean_inc(x_4); lean_inc(x_3); lean_inc(x_2); -x_86 = l_Lean_Meta_Match_toPattern(x_85, x_2, x_3, x_4, x_5, x_6); -if (lean_obj_tag(x_86) == 0) +lean_inc(x_1); +x_82 = lean_whnf(x_1, x_2, x_3, x_4, x_5, x_80); +if (lean_obj_tag(x_82) == 0) { -uint8_t x_87; -x_87 = !lean_is_exclusive(x_86); -if (x_87 == 0) +lean_object* x_83; lean_object* x_84; uint8_t x_85; +x_83 = lean_ctor_get(x_82, 0); +lean_inc(x_83); +x_84 = lean_ctor_get(x_82, 1); +lean_inc(x_84); +lean_dec(x_82); +x_85 = lean_expr_eqv(x_83, x_1); +if (x_85 == 0) { -lean_object* x_88; lean_object* x_89; lean_object* x_90; lean_object* x_91; lean_object* x_92; -x_88 = lean_ctor_get(x_86, 0); -x_89 = lean_ctor_get(x_86, 1); -x_90 = lean_nat_sub(x_80, x_83); -x_91 = lean_nat_sub(x_90, x_83); +lean_dec(x_1); +x_1 = x_83; +x_6 = x_84; +goto _start; +} +else +{ +lean_object* x_87; +lean_dec(x_83); +x_87 = l_Lean_Expr_getAppFn(x_1); +if (lean_obj_tag(x_87) == 4) +{ +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; +x_88 = lean_ctor_get(x_87, 0); +lean_inc(x_88); +x_89 = lean_ctor_get(x_87, 1); +lean_inc(x_89); +lean_dec(x_87); +x_90 = lean_st_ref_get(x_5, x_84); +x_91 = lean_ctor_get(x_90, 0); +lean_inc(x_91); +x_92 = lean_ctor_get(x_90, 1); +lean_inc(x_92); lean_dec(x_90); -x_92 = l_Lean_Expr_getRevArg_x21(x_78, x_91); -if (lean_obj_tag(x_92) == 1) -{ -lean_object* x_93; lean_object* x_94; lean_object* x_95; lean_object* x_96; lean_object* x_97; -x_93 = lean_ctor_get(x_92, 0); +x_93 = lean_ctor_get(x_91, 0); lean_inc(x_93); -lean_dec(x_92); -x_94 = lean_unsigned_to_nat(3u); -x_95 = lean_nat_sub(x_80, x_94); -lean_dec(x_80); -x_96 = lean_nat_sub(x_95, x_83); -lean_dec(x_95); -x_97 = l_Lean_Expr_getRevArg_x21(x_78, x_96); -lean_dec(x_78); -if (lean_obj_tag(x_97) == 1) +lean_dec(x_91); +x_94 = lean_environment_find(x_93, x_88); +if (lean_obj_tag(x_94) == 0) { -lean_object* x_98; lean_object* x_99; +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_dec(x_89); +x_95 = l_Lean_indentExpr(x_1); +x_96 = l_Lean_Meta_Match_toPattern___closed__2; +x_97 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_97, 0, x_96); +lean_ctor_set(x_97, 1, x_95); +x_98 = l_Lean_Meta_Match_Pattern_toMessageData___closed__8; +x_99 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_99, 0, x_97); +lean_ctor_set(x_99, 1, x_98); +x_100 = l_Lean_throwError___at_Lean_Meta_Match_toPattern___spec__1(x_99, x_2, x_3, x_4, x_5, x_92); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); -x_98 = lean_ctor_get(x_97, 0); -lean_inc(x_98); -lean_dec(x_97); -x_99 = lean_alloc_ctor(5, 3, 0); -lean_ctor_set(x_99, 0, x_93); -lean_ctor_set(x_99, 1, x_88); -lean_ctor_set(x_99, 2, x_98); -lean_ctor_set(x_86, 0, x_99); -return x_86; +return x_100; } else { -lean_object* x_100; lean_object* x_101; -lean_dec(x_97); -lean_dec(x_93); -lean_free_object(x_86); -lean_dec(x_88); -x_100 = l_Lean_Meta_Match_toPattern___closed__5; -x_101 = l_Lean_throwError___at_Lean_Meta_Match_toPattern___spec__1(x_100, x_2, x_3, x_4, x_5, x_89); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -return x_101; -} -} -else +lean_object* x_101; +x_101 = lean_ctor_get(x_94, 0); +lean_inc(x_101); +lean_dec(x_94); +if (lean_obj_tag(x_101) == 6) { -lean_object* x_102; lean_object* x_103; -lean_dec(x_92); -lean_free_object(x_86); -lean_dec(x_88); -lean_dec(x_80); -lean_dec(x_78); -x_102 = l_Lean_Meta_Match_toPattern___closed__5; -x_103 = l_Lean_throwError___at_Lean_Meta_Match_toPattern___spec__1(x_102, x_2, x_3, x_4, x_5, x_89); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -return x_103; -} -} -else -{ -lean_object* x_104; lean_object* x_105; lean_object* x_106; lean_object* x_107; lean_object* x_108; -x_104 = lean_ctor_get(x_86, 0); -x_105 = lean_ctor_get(x_86, 1); -lean_inc(x_105); +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; uint8_t x_114; +x_102 = lean_ctor_get(x_101, 0); +lean_inc(x_102); +lean_dec(x_101); +x_103 = lean_unsigned_to_nat(0u); +x_104 = l___private_Lean_Expr_0__Lean_Expr_getAppNumArgsAux(x_1, x_103); +x_105 = l_Lean_Meta_Match_toPattern___closed__3; lean_inc(x_104); -lean_dec(x_86); -x_106 = lean_nat_sub(x_80, x_83); -x_107 = lean_nat_sub(x_106, x_83); -lean_dec(x_106); -x_108 = l_Lean_Expr_getRevArg_x21(x_78, x_107); -if (lean_obj_tag(x_108) == 1) -{ -lean_object* x_109; lean_object* x_110; lean_object* x_111; lean_object* x_112; lean_object* x_113; -x_109 = lean_ctor_get(x_108, 0); -lean_inc(x_109); -lean_dec(x_108); -x_110 = lean_unsigned_to_nat(3u); -x_111 = lean_nat_sub(x_80, x_110); -lean_dec(x_80); -x_112 = lean_nat_sub(x_111, x_83); +x_106 = lean_mk_array(x_104, x_105); +x_107 = lean_unsigned_to_nat(1u); +x_108 = lean_nat_sub(x_104, x_107); +lean_dec(x_104); +lean_inc(x_1); +x_109 = l___private_Lean_Expr_0__Lean_Expr_getAppArgsAux(x_1, x_106, x_108); +x_110 = lean_array_get_size(x_109); +x_111 = lean_ctor_get(x_102, 3); +lean_inc(x_111); +x_112 = lean_ctor_get(x_102, 4); +lean_inc(x_112); +x_113 = lean_nat_add(x_111, x_112); +lean_dec(x_112); lean_dec(x_111); -x_113 = l_Lean_Expr_getRevArg_x21(x_78, x_112); -lean_dec(x_78); -if (lean_obj_tag(x_113) == 1) -{ -lean_object* x_114; lean_object* x_115; lean_object* x_116; -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -x_114 = lean_ctor_get(x_113, 0); -lean_inc(x_114); +x_114 = lean_nat_dec_eq(x_110, x_113); lean_dec(x_113); -x_115 = lean_alloc_ctor(5, 3, 0); -lean_ctor_set(x_115, 0, x_109); -lean_ctor_set(x_115, 1, x_104); -lean_ctor_set(x_115, 2, x_114); -x_116 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_116, 0, x_115); -lean_ctor_set(x_116, 1, x_105); -return x_116; -} -else +lean_dec(x_110); +if (x_114 == 0) { -lean_object* x_117; lean_object* x_118; -lean_dec(x_113); +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_dec(x_109); -lean_dec(x_104); -x_117 = l_Lean_Meta_Match_toPattern___closed__5; -x_118 = l_Lean_throwError___at_Lean_Meta_Match_toPattern___spec__1(x_117, x_2, x_3, x_4, x_5, x_105); +lean_dec(x_102); +lean_dec(x_89); +x_115 = l_Lean_indentExpr(x_1); +x_116 = l_Lean_Meta_Match_toPattern___closed__2; +x_117 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_117, 0, x_116); +lean_ctor_set(x_117, 1, x_115); +x_118 = l_Lean_Meta_Match_Pattern_toMessageData___closed__8; +x_119 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_119, 0, x_117); +lean_ctor_set(x_119, 1, x_118); +x_120 = l_Lean_throwError___at___private_Lean_Meta_InferType_0__Lean_Meta_inferProjType___spec__1(x_119, x_2, x_3, x_4, x_5, x_92); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); -return x_118; -} -} -else -{ -lean_object* x_119; lean_object* x_120; -lean_dec(x_108); -lean_dec(x_104); -lean_dec(x_80); -lean_dec(x_78); -x_119 = l_Lean_Meta_Match_toPattern___closed__5; -x_120 = l_Lean_throwError___at_Lean_Meta_Match_toPattern___spec__1(x_119, x_2, x_3, x_4, x_5, x_105); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -return x_120; -} -} -} -else -{ -uint8_t x_121; -lean_dec(x_80); -lean_dec(x_78); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -x_121 = !lean_is_exclusive(x_86); -if (x_121 == 0) -{ -return x_86; -} -else -{ -lean_object* x_122; lean_object* x_123; lean_object* x_124; -x_122 = lean_ctor_get(x_86, 0); -x_123 = lean_ctor_get(x_86, 1); -lean_inc(x_123); +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_86); -x_124 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_124, 0, x_122); -lean_ctor_set(x_124, 1, x_123); +if (lean_is_exclusive(x_120)) { + lean_ctor_release(x_120, 0); + lean_ctor_release(x_120, 1); + x_123 = x_120; +} else { + lean_dec_ref(x_120); + x_123 = lean_box(0); +} +if (lean_is_scalar(x_123)) { + x_124 = lean_alloc_ctor(1, 2, 0); +} else { + x_124 = x_123; +} +lean_ctor_set(x_124, 0, x_121); +lean_ctor_set(x_124, 1, x_122); return x_124; } -} -} -} else { -lean_object* x_125; lean_object* x_126; lean_object* x_127; lean_object* x_128; lean_object* x_129; +lean_object* x_125; lean_object* x_126; lean_dec(x_1); -x_125 = lean_ctor_get(x_8, 0); -lean_inc(x_125); -lean_dec(x_8); -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); -x_128 = lean_box(0); -x_129 = l_List_mapM_loop___at_Lean_Meta_Match_toPattern___spec__3(x_127, x_128, x_2, x_3, x_4, x_5, x_6); -if (lean_obj_tag(x_129) == 0) -{ -uint8_t x_130; -x_130 = !lean_is_exclusive(x_129); -if (x_130 == 0) -{ -lean_object* x_131; lean_object* x_132; -x_131 = lean_ctor_get(x_129, 0); -x_132 = lean_alloc_ctor(4, 2, 0); -lean_ctor_set(x_132, 0, x_126); -lean_ctor_set(x_132, 1, x_131); -lean_ctor_set(x_129, 0, x_132); -return x_129; +x_125 = lean_box(0); +x_126 = l_Lean_Meta_Match_toPattern___lambda__1(x_102, x_109, x_89, x_125, x_2, x_3, x_4, x_5, x_92); +lean_dec(x_109); +return x_126; +} } else { -lean_object* x_133; lean_object* x_134; lean_object* x_135; lean_object* x_136; -x_133 = lean_ctor_get(x_129, 0); -x_134 = lean_ctor_get(x_129, 1); -lean_inc(x_134); -lean_inc(x_133); -lean_dec(x_129); -x_135 = lean_alloc_ctor(4, 2, 0); -lean_ctor_set(x_135, 0, 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_dec(x_101); +lean_dec(x_89); +x_127 = l_Lean_indentExpr(x_1); +x_128 = l_Lean_Meta_Match_toPattern___closed__2; +x_129 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_129, 0, x_128); +lean_ctor_set(x_129, 1, x_127); +x_130 = l_Lean_Meta_Match_Pattern_toMessageData___closed__8; +x_131 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_131, 0, x_129); +lean_ctor_set(x_131, 1, x_130); +x_132 = l_Lean_throwError___at_Lean_Meta_Match_toPattern___spec__1(x_131, x_2, x_3, x_4, x_5, x_92); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +return x_132; +} +} +} +else +{ +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_dec(x_87); +x_133 = l_Lean_indentExpr(x_1); +x_134 = l_Lean_Meta_Match_toPattern___closed__2; +x_135 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_135, 0, x_134); lean_ctor_set(x_135, 1, x_133); -x_136 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_136, 0, x_135); -lean_ctor_set(x_136, 1, x_134); -return x_136; -} -} -else -{ -uint8_t x_137; -lean_dec(x_126); -x_137 = !lean_is_exclusive(x_129); -if (x_137 == 0) -{ -return x_129; -} -else -{ -lean_object* x_138; lean_object* x_139; lean_object* x_140; -x_138 = lean_ctor_get(x_129, 0); -x_139 = lean_ctor_get(x_129, 1); -lean_inc(x_139); -lean_inc(x_138); -lean_dec(x_129); -x_140 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_140, 0, x_138); -lean_ctor_set(x_140, 1, x_139); -return x_140; -} +x_136 = l_Lean_Meta_Match_Pattern_toMessageData___closed__8; +x_137 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_137, 0, x_135); +lean_ctor_set(x_137, 1, x_136); +x_138 = l_Lean_throwError___at_Lean_Meta_Match_toPattern___spec__1(x_137, x_2, x_3, x_4, x_5, x_84); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +return x_138; } } } else { -lean_object* x_141; lean_object* x_142; lean_object* x_143; +lean_object* x_139; lean_object* x_140; lean_object* x_141; lean_object* x_142; lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_141 = lean_ctor_get(x_7, 0); -lean_inc(x_141); +x_139 = lean_ctor_get(x_82, 0); +lean_inc(x_139); +x_140 = lean_ctor_get(x_82, 1); +lean_inc(x_140); +if (lean_is_exclusive(x_82)) { + lean_ctor_release(x_82, 0); + lean_ctor_release(x_82, 1); + x_141 = x_82; +} else { + lean_dec_ref(x_82); + x_141 = lean_box(0); +} +if (lean_is_scalar(x_141)) { + x_142 = lean_alloc_ctor(1, 2, 0); +} else { + x_142 = x_141; +} +lean_ctor_set(x_142, 0, x_139); +lean_ctor_set(x_142, 1, x_140); +return x_142; +} +} +else +{ +lean_object* x_143; lean_object* x_144; lean_object* x_145; +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_143 = l_Lean_Expr_fvarId_x21(x_1); +x_144 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_144, 0, x_143); +x_145 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_145, 0, x_144); +lean_ctor_set(x_145, 1, x_80); +return x_145; +} +} +} +else +{ +uint8_t x_146; +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_146 = !lean_is_exclusive(x_10); +if (x_146 == 0) +{ +lean_object* x_147; lean_object* x_148; +x_147 = lean_ctor_get(x_10, 0); +lean_dec(x_147); +x_148 = lean_alloc_ctor(3, 1, 0); +lean_ctor_set(x_148, 0, x_1); +lean_ctor_set(x_10, 0, x_148); +return x_10; +} +else +{ +lean_object* x_149; lean_object* x_150; lean_object* x_151; +x_149 = lean_ctor_get(x_10, 1); +lean_inc(x_149); +lean_dec(x_10); +x_150 = lean_alloc_ctor(3, 1, 0); +lean_ctor_set(x_150, 0, x_1); +x_151 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_151, 0, x_150); +lean_ctor_set(x_151, 1, x_149); +return x_151; +} +} +} +else +{ +uint8_t x_152; +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +x_152 = !lean_is_exclusive(x_10); +if (x_152 == 0) +{ +return x_10; +} +else +{ +lean_object* x_153; lean_object* x_154; lean_object* x_155; +x_153 = lean_ctor_get(x_10, 0); +x_154 = lean_ctor_get(x_10, 1); +lean_inc(x_154); +lean_inc(x_153); +lean_dec(x_10); +x_155 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_155, 0, x_153); +lean_ctor_set(x_155, 1, x_154); +return x_155; +} +} +} +else +{ +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_dec(x_1); +x_156 = lean_ctor_get(x_9, 0); +lean_inc(x_156); +lean_dec(x_9); +x_157 = lean_unsigned_to_nat(0u); +x_158 = l___private_Lean_Expr_0__Lean_Expr_getAppNumArgsAux(x_156, x_157); +x_159 = lean_unsigned_to_nat(2u); +x_160 = lean_nat_sub(x_158, x_159); +x_161 = lean_unsigned_to_nat(1u); +x_162 = lean_nat_sub(x_160, x_161); +lean_dec(x_160); +x_163 = l_Lean_Expr_getRevArg_x21(x_156, x_162); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +lean_inc(x_2); +x_164 = l_Lean_Meta_Match_toPattern(x_163, x_2, x_3, x_4, x_5, x_6); +if (lean_obj_tag(x_164) == 0) +{ +uint8_t x_165; +x_165 = !lean_is_exclusive(x_164); +if (x_165 == 0) +{ +lean_object* x_166; lean_object* x_167; lean_object* x_168; lean_object* x_169; lean_object* x_170; +x_166 = lean_ctor_get(x_164, 0); +x_167 = lean_ctor_get(x_164, 1); +x_168 = lean_nat_sub(x_158, x_161); +x_169 = lean_nat_sub(x_168, x_161); +lean_dec(x_168); +x_170 = l_Lean_Expr_getRevArg_x21(x_156, x_169); +if (lean_obj_tag(x_170) == 1) +{ +lean_object* x_171; lean_object* x_172; lean_object* x_173; lean_object* x_174; lean_object* x_175; +x_171 = lean_ctor_get(x_170, 0); +lean_inc(x_171); +lean_dec(x_170); +x_172 = lean_unsigned_to_nat(3u); +x_173 = lean_nat_sub(x_158, x_172); +lean_dec(x_158); +x_174 = lean_nat_sub(x_173, x_161); +lean_dec(x_173); +x_175 = l_Lean_Expr_getRevArg_x21(x_156, x_174); +lean_dec(x_156); +if (lean_obj_tag(x_175) == 1) +{ +lean_object* x_176; lean_object* x_177; +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_176 = lean_ctor_get(x_175, 0); +lean_inc(x_176); +lean_dec(x_175); +x_177 = lean_alloc_ctor(5, 3, 0); +lean_ctor_set(x_177, 0, x_171); +lean_ctor_set(x_177, 1, x_166); +lean_ctor_set(x_177, 2, x_176); +lean_ctor_set(x_164, 0, x_177); +return x_164; +} +else +{ +lean_object* x_178; lean_object* x_179; +lean_dec(x_175); +lean_dec(x_171); +lean_free_object(x_164); +lean_dec(x_166); +x_178 = l_Lean_Meta_Match_toPattern___closed__5; +x_179 = l_Lean_throwError___at_Lean_Meta_Match_toPattern___spec__1(x_178, x_2, x_3, x_4, x_5, x_167); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +return x_179; +} +} +else +{ +lean_object* x_180; lean_object* x_181; +lean_dec(x_170); +lean_free_object(x_164); +lean_dec(x_166); +lean_dec(x_158); +lean_dec(x_156); +x_180 = l_Lean_Meta_Match_toPattern___closed__5; +x_181 = l_Lean_throwError___at_Lean_Meta_Match_toPattern___spec__1(x_180, x_2, x_3, x_4, x_5, x_167); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +return x_181; +} +} +else +{ +lean_object* x_182; lean_object* x_183; lean_object* x_184; lean_object* x_185; lean_object* x_186; +x_182 = lean_ctor_get(x_164, 0); +x_183 = lean_ctor_get(x_164, 1); +lean_inc(x_183); +lean_inc(x_182); +lean_dec(x_164); +x_184 = lean_nat_sub(x_158, x_161); +x_185 = lean_nat_sub(x_184, x_161); +lean_dec(x_184); +x_186 = l_Lean_Expr_getRevArg_x21(x_156, x_185); +if (lean_obj_tag(x_186) == 1) +{ +lean_object* x_187; lean_object* x_188; lean_object* x_189; lean_object* x_190; lean_object* x_191; +x_187 = lean_ctor_get(x_186, 0); +lean_inc(x_187); +lean_dec(x_186); +x_188 = lean_unsigned_to_nat(3u); +x_189 = lean_nat_sub(x_158, x_188); +lean_dec(x_158); +x_190 = lean_nat_sub(x_189, x_161); +lean_dec(x_189); +x_191 = l_Lean_Expr_getRevArg_x21(x_156, x_190); +lean_dec(x_156); +if (lean_obj_tag(x_191) == 1) +{ +lean_object* x_192; lean_object* x_193; lean_object* x_194; +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_192 = lean_ctor_get(x_191, 0); +lean_inc(x_192); +lean_dec(x_191); +x_193 = lean_alloc_ctor(5, 3, 0); +lean_ctor_set(x_193, 0, x_187); +lean_ctor_set(x_193, 1, x_182); +lean_ctor_set(x_193, 2, x_192); +x_194 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_194, 0, x_193); +lean_ctor_set(x_194, 1, x_183); +return x_194; +} +else +{ +lean_object* x_195; lean_object* x_196; +lean_dec(x_191); +lean_dec(x_187); +lean_dec(x_182); +x_195 = l_Lean_Meta_Match_toPattern___closed__5; +x_196 = l_Lean_throwError___at_Lean_Meta_Match_toPattern___spec__1(x_195, x_2, x_3, x_4, x_5, x_183); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +return x_196; +} +} +else +{ +lean_object* x_197; lean_object* x_198; +lean_dec(x_186); +lean_dec(x_182); +lean_dec(x_158); +lean_dec(x_156); +x_197 = l_Lean_Meta_Match_toPattern___closed__5; +x_198 = l_Lean_throwError___at_Lean_Meta_Match_toPattern___spec__1(x_197, x_2, x_3, x_4, x_5, x_183); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +return x_198; +} +} +} +else +{ +uint8_t x_199; +lean_dec(x_158); +lean_dec(x_156); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_199 = !lean_is_exclusive(x_164); +if (x_199 == 0) +{ +return x_164; +} +else +{ +lean_object* x_200; lean_object* x_201; lean_object* x_202; +x_200 = lean_ctor_get(x_164, 0); +x_201 = lean_ctor_get(x_164, 1); +lean_inc(x_201); +lean_inc(x_200); +lean_dec(x_164); +x_202 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_202, 0, x_200); +lean_ctor_set(x_202, 1, x_201); +return x_202; +} +} +} +} +else +{ +lean_object* x_203; lean_object* x_204; lean_object* x_205; lean_object* x_206; lean_object* x_207; +lean_dec(x_1); +x_203 = lean_ctor_get(x_8, 0); +lean_inc(x_203); +lean_dec(x_8); +x_204 = lean_ctor_get(x_203, 0); +lean_inc(x_204); +x_205 = lean_ctor_get(x_203, 1); +lean_inc(x_205); +lean_dec(x_203); +x_206 = lean_box(0); +x_207 = l_List_mapM_loop___at_Lean_Meta_Match_toPattern___spec__3(x_205, x_206, x_2, x_3, x_4, x_5, x_6); +if (lean_obj_tag(x_207) == 0) +{ +uint8_t x_208; +x_208 = !lean_is_exclusive(x_207); +if (x_208 == 0) +{ +lean_object* x_209; lean_object* x_210; +x_209 = lean_ctor_get(x_207, 0); +x_210 = lean_alloc_ctor(4, 2, 0); +lean_ctor_set(x_210, 0, x_204); +lean_ctor_set(x_210, 1, x_209); +lean_ctor_set(x_207, 0, x_210); +return x_207; +} +else +{ +lean_object* x_211; lean_object* x_212; lean_object* x_213; lean_object* x_214; +x_211 = lean_ctor_get(x_207, 0); +x_212 = lean_ctor_get(x_207, 1); +lean_inc(x_212); +lean_inc(x_211); +lean_dec(x_207); +x_213 = lean_alloc_ctor(4, 2, 0); +lean_ctor_set(x_213, 0, x_204); +lean_ctor_set(x_213, 1, x_211); +x_214 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_214, 0, x_213); +lean_ctor_set(x_214, 1, x_212); +return x_214; +} +} +else +{ +uint8_t x_215; +lean_dec(x_204); +x_215 = !lean_is_exclusive(x_207); +if (x_215 == 0) +{ +return x_207; +} +else +{ +lean_object* x_216; lean_object* x_217; lean_object* x_218; +x_216 = lean_ctor_get(x_207, 0); +x_217 = lean_ctor_get(x_207, 1); +lean_inc(x_217); +lean_inc(x_216); +lean_dec(x_207); +x_218 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_218, 0, x_216); +lean_ctor_set(x_218, 1, x_217); +return x_218; +} +} +} +} +else +{ +lean_object* x_219; lean_object* x_220; lean_object* x_221; +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +x_219 = lean_ctor_get(x_7, 0); +lean_inc(x_219); lean_dec(x_7); -x_142 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_142, 0, x_141); -x_143 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_143, 0, x_142); -lean_ctor_set(x_143, 1, x_6); -return x_143; +x_220 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_220, 0, x_219); +x_221 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_221, 0, x_220); +lean_ctor_set(x_221, 1, x_6); +return x_221; } } } diff --git a/stage0/stdlib/Lean/Meta/Match/CaseValues.c b/stage0/stdlib/Lean/Meta/Match/CaseValues.c index 821129a8df..193e78a687 100644 --- a/stage0/stdlib/Lean/Meta/Match/CaseValues.c +++ b/stage0/stdlib/Lean/Meta/Match/CaseValues.c @@ -30,6 +30,7 @@ lean_object* l_Lean_Meta_FVarSubst_get(lean_object*, lean_object*); lean_object* l_Lean_MVarId_getTag(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_fvarId_x21(lean_object*); static lean_object* l___private_Lean_Meta_Match_CaseValues_0__Lean_Meta_caseValueAux___lambda__4___closed__7; +lean_object* l_Lean_Meta_normLitValue(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_stringToMessageData(lean_object*); static lean_object* l___private_Lean_Meta_Match_CaseValues_0__Lean_Meta_caseValueAux___lambda__2___closed__2; static lean_object* l___private_Lean_Meta_Match_CaseValues_0__Lean_Meta_caseValueAux___lambda__4___closed__10; @@ -107,8 +108,6 @@ lean_object* lean_nat_add(lean_object*, lean_object*); static lean_object* l_Lean_Meta_caseValue___closed__4; lean_object* l_Lean_Expr_mvarId_x21(lean_object*); LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Meta_caseValues_loop___spec__1(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_CaseValues_0__Lean_Meta_caseValueAux___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* l_Lean_Meta_foldPatValue(lean_object*); static lean_object* l_Lean_Meta_caseValue___closed__2; static lean_object* l___private_Lean_Meta_Match_CaseValues_0__Lean_Meta_caseValueAux___lambda__3___closed__1; LEAN_EXPORT lean_object* l_Lean_Meta_instInhabitedCaseValuesSubgoal; @@ -572,427 +571,439 @@ lean_inc(x_1); x_17 = l_Lean_MVarId_getType(x_1, x_6, x_7, x_8, x_9, x_16); if (lean_obj_tag(x_17) == 0) { -lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; +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_Expr_fvar___override(x_2); -x_21 = l_Lean_Meta_foldPatValue(x_3); lean_inc(x_9); lean_inc(x_8); lean_inc(x_7); lean_inc(x_6); -x_22 = l_Lean_Meta_mkEq(x_20, x_21, x_6, x_7, x_8, x_9, x_19); -if (lean_obj_tag(x_22) == 0) +x_20 = l_Lean_Meta_normLitValue(x_2, x_6, x_7, x_8, x_9, x_19); +if (lean_obj_tag(x_20) == 0) { -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; 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; -x_23 = lean_ctor_get(x_22, 0); -lean_inc(x_23); -x_24 = lean_ctor_get(x_22, 1); -lean_inc(x_24); -lean_dec(x_22); -x_25 = lean_box(0); -x_26 = l___private_Lean_Meta_Match_CaseValues_0__Lean_Meta_caseValueAux___lambda__4___closed__5; -lean_inc(x_23); -x_27 = l_Lean_Expr_app___override(x_26, x_23); -x_28 = 0; +lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; +x_21 = lean_ctor_get(x_20, 0); +lean_inc(x_21); +x_22 = lean_ctor_get(x_20, 1); +lean_inc(x_22); +lean_dec(x_20); +x_23 = l_Lean_Expr_fvar___override(x_3); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_6); +x_24 = l_Lean_Meta_mkEq(x_23, x_21, x_6, x_7, x_8, x_9, x_22); +if (lean_obj_tag(x_24) == 0) +{ +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; 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; +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 = lean_box(0); +x_28 = l___private_Lean_Meta_Match_CaseValues_0__Lean_Meta_caseValueAux___lambda__4___closed__5; +lean_inc(x_25); +x_29 = l_Lean_Expr_app___override(x_28, x_25); +x_30 = 0; lean_inc(x_18); -lean_inc(x_23); +lean_inc(x_25); lean_inc(x_4); -x_29 = l_Lean_Expr_forallE___override(x_4, x_23, x_18, x_28); -x_30 = l_Lean_Expr_forallE___override(x_4, x_27, x_18, x_28); +x_31 = l_Lean_Expr_forallE___override(x_4, x_25, x_18, x_30); +x_32 = l_Lean_Expr_forallE___override(x_4, x_29, x_18, x_30); lean_inc(x_6); lean_inc(x_12); -x_31 = l_Lean_Meta_mkFreshExprSyntheticOpaqueMVar(x_29, x_12, x_6, x_7, x_8, x_9, x_24); -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_33 = l_Lean_Meta_mkFreshExprSyntheticOpaqueMVar(x_31, x_12, x_6, x_7, x_8, x_9, x_26); +x_34 = lean_ctor_get(x_33, 0); +lean_inc(x_34); +x_35 = lean_ctor_get(x_33, 1); +lean_inc(x_35); +lean_dec(x_33); lean_inc(x_6); -x_34 = l_Lean_Meta_mkFreshExprSyntheticOpaqueMVar(x_30, x_12, x_6, x_7, x_8, x_9, x_33); -x_35 = lean_ctor_get(x_34, 0); -lean_inc(x_35); -x_36 = lean_ctor_get(x_34, 1); -lean_inc(x_36); -lean_dec(x_34); -x_37 = lean_box(0); -x_38 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_38, 0, x_23); -lean_inc(x_32); -x_39 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_39, 0, x_32); -lean_inc(x_35); +x_36 = l_Lean_Meta_mkFreshExprSyntheticOpaqueMVar(x_32, x_12, x_6, x_7, x_8, x_9, 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 = lean_box(0); x_40 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_40, 0, x_35); -x_41 = l___private_Lean_Meta_Match_CaseValues_0__Lean_Meta_caseValueAux___lambda__4___closed__9; -x_42 = lean_array_push(x_41, x_38); -x_43 = lean_array_push(x_42, x_37); -x_44 = lean_array_push(x_43, x_39); -x_45 = lean_array_push(x_44, x_40); -x_46 = l___private_Lean_Meta_Match_CaseValues_0__Lean_Meta_caseValueAux___lambda__4___closed__7; +lean_ctor_set(x_40, 0, x_25); +lean_inc(x_34); +x_41 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_41, 0, x_34); +lean_inc(x_37); +x_42 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_42, 0, x_37); +x_43 = l___private_Lean_Meta_Match_CaseValues_0__Lean_Meta_caseValueAux___lambda__4___closed__9; +x_44 = lean_array_push(x_43, x_40); +x_45 = lean_array_push(x_44, x_39); +x_46 = lean_array_push(x_45, x_41); +x_47 = lean_array_push(x_46, x_42); +x_48 = l___private_Lean_Meta_Match_CaseValues_0__Lean_Meta_caseValueAux___lambda__4___closed__7; lean_inc(x_9); lean_inc(x_8); lean_inc(x_7); lean_inc(x_6); -x_47 = l_Lean_Meta_mkAppOptM(x_46, x_45, x_6, x_7, x_8, x_9, x_36); -if (lean_obj_tag(x_47) == 0) +x_49 = l_Lean_Meta_mkAppOptM(x_48, x_47, x_6, x_7, x_8, x_9, x_38); +if (lean_obj_tag(x_49) == 0) { -lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; uint8_t x_53; lean_object* x_54; -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_MVarId_assign___at_Lean_Meta_getLevel___spec__1(x_1, x_48, x_6, x_7, x_8, x_9, x_49); -x_51 = lean_ctor_get(x_50, 1); +lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; uint8_t x_55; lean_object* x_56; +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_50); -x_52 = l_Lean_Expr_mvarId_x21(x_35); -x_53 = 1; +lean_dec(x_49); +x_52 = l_Lean_MVarId_assign___at_Lean_Meta_getLevel___spec__1(x_1, x_50, x_6, x_7, x_8, x_9, x_51); +x_53 = lean_ctor_get(x_52, 1); +lean_inc(x_53); +lean_dec(x_52); +x_54 = l_Lean_Expr_mvarId_x21(x_37); +x_55 = 1; lean_inc(x_9); lean_inc(x_8); lean_inc(x_7); lean_inc(x_6); -x_54 = l_Lean_Meta_intro1Core(x_52, x_53, x_6, x_7, x_8, x_9, x_51); -if (lean_obj_tag(x_54) == 0) +x_56 = l_Lean_Meta_intro1Core(x_54, x_55, x_6, x_7, x_8, x_9, x_53); +if (lean_obj_tag(x_56) == 0) { -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; -x_55 = lean_ctor_get(x_54, 0); -lean_inc(x_55); -x_56 = lean_ctor_get(x_54, 1); -lean_inc(x_56); -lean_dec(x_54); -x_57 = lean_ctor_get(x_55, 0); +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; +x_57 = lean_ctor_get(x_56, 0); lean_inc(x_57); -x_58 = lean_ctor_get(x_55, 1); +x_58 = lean_ctor_get(x_56, 1); lean_inc(x_58); -lean_dec(x_55); +lean_dec(x_56); +x_59 = lean_ctor_get(x_57, 0); +lean_inc(x_59); +x_60 = lean_ctor_get(x_57, 1); +lean_inc(x_60); +lean_dec(x_57); lean_inc(x_5); -x_59 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_59, 0, x_58); -lean_ctor_set(x_59, 1, x_57); -lean_ctor_set(x_59, 2, x_5); -x_60 = l_Lean_Expr_mvarId_x21(x_32); +x_61 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_61, 0, x_60); +lean_ctor_set(x_61, 1, x_59); +lean_ctor_set(x_61, 2, x_5); +x_62 = l_Lean_Expr_mvarId_x21(x_34); lean_inc(x_9); lean_inc(x_8); lean_inc(x_7); lean_inc(x_6); -x_61 = l_Lean_Meta_intro1Core(x_60, x_53, x_6, x_7, x_8, x_9, x_56); -if (lean_obj_tag(x_61) == 0) +x_63 = l_Lean_Meta_intro1Core(x_62, x_55, x_6, x_7, x_8, x_9, x_58); +if (lean_obj_tag(x_63) == 0) { -lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; uint8_t x_66; lean_object* x_67; -x_62 = lean_ctor_get(x_61, 0); -lean_inc(x_62); -x_63 = lean_ctor_get(x_61, 1); -lean_inc(x_63); -lean_dec(x_61); -x_64 = lean_ctor_get(x_62, 0); +lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; uint8_t x_68; lean_object* x_69; +x_64 = lean_ctor_get(x_63, 0); lean_inc(x_64); -x_65 = lean_ctor_get(x_62, 1); +x_65 = lean_ctor_get(x_63, 1); lean_inc(x_65); -lean_dec(x_62); -x_66 = 0; +lean_dec(x_63); +x_66 = lean_ctor_get(x_64, 0); +lean_inc(x_66); +x_67 = lean_ctor_get(x_64, 1); +lean_inc(x_67); +lean_dec(x_64); +x_68 = 0; lean_inc(x_9); lean_inc(x_8); lean_inc(x_7); lean_inc(x_6); -lean_inc(x_64); -x_67 = l_Lean_Meta_substCore(x_65, x_64, x_66, x_5, x_66, x_66, x_6, x_7, x_8, x_9, x_63); -if (lean_obj_tag(x_67) == 0) +lean_inc(x_66); +x_69 = l_Lean_Meta_substCore(x_67, x_66, x_68, x_5, x_68, x_68, x_6, x_7, x_8, x_9, x_65); +if (lean_obj_tag(x_69) == 0) { -lean_object* x_68; lean_object* x_69; uint8_t x_70; -x_68 = lean_ctor_get(x_67, 0); -lean_inc(x_68); -x_69 = lean_ctor_get(x_67, 1); -lean_inc(x_69); -lean_dec(x_67); -x_70 = !lean_is_exclusive(x_68); -if (x_70 == 0) -{ -lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; -x_71 = lean_ctor_get(x_68, 0); -x_72 = lean_ctor_get(x_68, 1); -x_73 = l___private_Lean_Meta_Match_CaseValues_0__Lean_Meta_caseValueAux___lambda__4___closed__11; -lean_inc(x_64); +lean_object* x_70; lean_object* x_71; uint8_t x_72; +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_74 = lean_alloc_closure((void*)(l___private_Lean_Meta_Match_CaseValues_0__Lean_Meta_caseValueAux___lambda__3), 9, 4); -lean_closure_set(x_74, 0, x_73); -lean_closure_set(x_74, 1, x_71); -lean_closure_set(x_74, 2, x_64); -lean_closure_set(x_74, 3, x_25); -lean_inc(x_72); -x_75 = l_Lean_MVarId_withContext___at___private_Lean_Meta_SynthInstance_0__Lean_Meta_synthPendingImp___spec__2___rarg(x_72, x_74, x_6, x_7, x_8, x_9, x_69); -if (lean_obj_tag(x_75) == 0) +lean_dec(x_69); +x_72 = !lean_is_exclusive(x_70); +if (x_72 == 0) { -uint8_t x_76; -x_76 = !lean_is_exclusive(x_75); -if (x_76 == 0) +lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; +x_73 = lean_ctor_get(x_70, 0); +x_74 = lean_ctor_get(x_70, 1); +x_75 = l___private_Lean_Meta_Match_CaseValues_0__Lean_Meta_caseValueAux___lambda__4___closed__11; +lean_inc(x_66); +lean_inc(x_73); +x_76 = lean_alloc_closure((void*)(l___private_Lean_Meta_Match_CaseValues_0__Lean_Meta_caseValueAux___lambda__3), 9, 4); +lean_closure_set(x_76, 0, x_75); +lean_closure_set(x_76, 1, x_73); +lean_closure_set(x_76, 2, x_66); +lean_closure_set(x_76, 3, x_27); +lean_inc(x_74); +x_77 = l_Lean_MVarId_withContext___at___private_Lean_Meta_SynthInstance_0__Lean_Meta_synthPendingImp___spec__2___rarg(x_74, x_76, x_6, x_7, x_8, x_9, x_71); +if (lean_obj_tag(x_77) == 0) { -lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; -x_77 = lean_ctor_get(x_75, 0); +uint8_t x_78; +x_78 = !lean_is_exclusive(x_77); +if (x_78 == 0) +{ +lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; +x_79 = lean_ctor_get(x_77, 0); +lean_dec(x_79); +x_80 = l_Lean_Meta_FVarSubst_get(x_73, x_66); +x_81 = l_Lean_Expr_fvarId_x21(x_80); +x_82 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_82, 0, x_74); +lean_ctor_set(x_82, 1, x_81); +lean_ctor_set(x_82, 2, x_73); +lean_ctor_set(x_70, 1, x_61); +lean_ctor_set(x_70, 0, x_82); +lean_ctor_set(x_77, 0, x_70); +return x_77; +} +else +{ +lean_object* x_83; lean_object* x_84; lean_object* x_85; lean_object* x_86; lean_object* x_87; +x_83 = lean_ctor_get(x_77, 1); +lean_inc(x_83); lean_dec(x_77); -x_78 = l_Lean_Meta_FVarSubst_get(x_71, x_64); -x_79 = l_Lean_Expr_fvarId_x21(x_78); -x_80 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_80, 0, x_72); -lean_ctor_set(x_80, 1, x_79); -lean_ctor_set(x_80, 2, x_71); -lean_ctor_set(x_68, 1, x_59); -lean_ctor_set(x_68, 0, x_80); -lean_ctor_set(x_75, 0, x_68); -return x_75; -} -else -{ -lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; lean_object* x_85; -x_81 = lean_ctor_get(x_75, 1); -lean_inc(x_81); -lean_dec(x_75); -x_82 = l_Lean_Meta_FVarSubst_get(x_71, x_64); -x_83 = l_Lean_Expr_fvarId_x21(x_82); -x_84 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_84, 0, x_72); -lean_ctor_set(x_84, 1, x_83); -lean_ctor_set(x_84, 2, x_71); -lean_ctor_set(x_68, 1, x_59); -lean_ctor_set(x_68, 0, x_84); -x_85 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_85, 0, x_68); -lean_ctor_set(x_85, 1, x_81); -return x_85; +x_84 = l_Lean_Meta_FVarSubst_get(x_73, x_66); +x_85 = l_Lean_Expr_fvarId_x21(x_84); +x_86 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_86, 0, x_74); +lean_ctor_set(x_86, 1, x_85); +lean_ctor_set(x_86, 2, x_73); +lean_ctor_set(x_70, 1, x_61); +lean_ctor_set(x_70, 0, x_86); +x_87 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_87, 0, x_70); +lean_ctor_set(x_87, 1, x_83); +return x_87; } } else { -uint8_t x_86; -lean_free_object(x_68); -lean_dec(x_72); -lean_dec(x_71); -lean_dec(x_64); -lean_dec(x_59); -x_86 = !lean_is_exclusive(x_75); -if (x_86 == 0) -{ -return x_75; -} -else -{ -lean_object* x_87; lean_object* x_88; lean_object* x_89; -x_87 = lean_ctor_get(x_75, 0); -x_88 = lean_ctor_get(x_75, 1); -lean_inc(x_88); -lean_inc(x_87); -lean_dec(x_75); -x_89 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_89, 0, x_87); -lean_ctor_set(x_89, 1, x_88); -return x_89; -} -} -} -else -{ -lean_object* x_90; lean_object* x_91; lean_object* x_92; lean_object* x_93; lean_object* x_94; -x_90 = lean_ctor_get(x_68, 0); -x_91 = lean_ctor_get(x_68, 1); -lean_inc(x_91); -lean_inc(x_90); -lean_dec(x_68); -x_92 = l___private_Lean_Meta_Match_CaseValues_0__Lean_Meta_caseValueAux___lambda__4___closed__11; -lean_inc(x_64); -lean_inc(x_90); -x_93 = lean_alloc_closure((void*)(l___private_Lean_Meta_Match_CaseValues_0__Lean_Meta_caseValueAux___lambda__3), 9, 4); -lean_closure_set(x_93, 0, x_92); -lean_closure_set(x_93, 1, x_90); -lean_closure_set(x_93, 2, x_64); -lean_closure_set(x_93, 3, x_25); -lean_inc(x_91); -x_94 = l_Lean_MVarId_withContext___at___private_Lean_Meta_SynthInstance_0__Lean_Meta_synthPendingImp___spec__2___rarg(x_91, x_93, x_6, x_7, x_8, x_9, x_69); -if (lean_obj_tag(x_94) == 0) -{ -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_95 = lean_ctor_get(x_94, 1); -lean_inc(x_95); -if (lean_is_exclusive(x_94)) { - lean_ctor_release(x_94, 0); - lean_ctor_release(x_94, 1); - x_96 = x_94; -} else { - lean_dec_ref(x_94); - x_96 = lean_box(0); -} -x_97 = l_Lean_Meta_FVarSubst_get(x_90, x_64); -x_98 = l_Lean_Expr_fvarId_x21(x_97); -x_99 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_99, 0, x_91); -lean_ctor_set(x_99, 1, x_98); -lean_ctor_set(x_99, 2, x_90); -x_100 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_100, 0, x_99); -lean_ctor_set(x_100, 1, x_59); -if (lean_is_scalar(x_96)) { - x_101 = lean_alloc_ctor(0, 2, 0); -} else { - x_101 = x_96; -} -lean_ctor_set(x_101, 0, x_100); -lean_ctor_set(x_101, 1, x_95); -return x_101; -} -else -{ -lean_object* x_102; lean_object* x_103; lean_object* x_104; lean_object* x_105; -lean_dec(x_91); -lean_dec(x_90); -lean_dec(x_64); -lean_dec(x_59); -x_102 = lean_ctor_get(x_94, 0); -lean_inc(x_102); -x_103 = lean_ctor_get(x_94, 1); -lean_inc(x_103); -if (lean_is_exclusive(x_94)) { - lean_ctor_release(x_94, 0); - lean_ctor_release(x_94, 1); - x_104 = x_94; -} else { - lean_dec_ref(x_94); - x_104 = lean_box(0); -} -if (lean_is_scalar(x_104)) { - x_105 = lean_alloc_ctor(1, 2, 0); -} else { - x_105 = x_104; -} -lean_ctor_set(x_105, 0, x_102); -lean_ctor_set(x_105, 1, x_103); -return x_105; -} -} -} -else -{ -uint8_t x_106; -lean_dec(x_64); -lean_dec(x_59); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -x_106 = !lean_is_exclusive(x_67); -if (x_106 == 0) -{ -return x_67; -} -else -{ -lean_object* x_107; lean_object* x_108; lean_object* x_109; -x_107 = lean_ctor_get(x_67, 0); -x_108 = lean_ctor_get(x_67, 1); -lean_inc(x_108); -lean_inc(x_107); -lean_dec(x_67); -x_109 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_109, 0, x_107); -lean_ctor_set(x_109, 1, x_108); -return x_109; -} -} -} -else -{ -uint8_t x_110; -lean_dec(x_59); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -x_110 = !lean_is_exclusive(x_61); -if (x_110 == 0) -{ -return x_61; -} -else -{ -lean_object* x_111; lean_object* x_112; lean_object* x_113; -x_111 = lean_ctor_get(x_61, 0); -x_112 = lean_ctor_get(x_61, 1); -lean_inc(x_112); -lean_inc(x_111); +uint8_t x_88; +lean_free_object(x_70); +lean_dec(x_74); +lean_dec(x_73); +lean_dec(x_66); lean_dec(x_61); -x_113 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_113, 0, x_111); -lean_ctor_set(x_113, 1, x_112); -return x_113; +x_88 = !lean_is_exclusive(x_77); +if (x_88 == 0) +{ +return x_77; +} +else +{ +lean_object* x_89; lean_object* x_90; lean_object* x_91; +x_89 = lean_ctor_get(x_77, 0); +x_90 = lean_ctor_get(x_77, 1); +lean_inc(x_90); +lean_inc(x_89); +lean_dec(x_77); +x_91 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_91, 0, x_89); +lean_ctor_set(x_91, 1, x_90); +return x_91; } } } else { -uint8_t x_114; -lean_dec(x_32); +lean_object* x_92; lean_object* x_93; lean_object* x_94; lean_object* x_95; lean_object* x_96; +x_92 = lean_ctor_get(x_70, 0); +x_93 = lean_ctor_get(x_70, 1); +lean_inc(x_93); +lean_inc(x_92); +lean_dec(x_70); +x_94 = l___private_Lean_Meta_Match_CaseValues_0__Lean_Meta_caseValueAux___lambda__4___closed__11; +lean_inc(x_66); +lean_inc(x_92); +x_95 = lean_alloc_closure((void*)(l___private_Lean_Meta_Match_CaseValues_0__Lean_Meta_caseValueAux___lambda__3), 9, 4); +lean_closure_set(x_95, 0, x_94); +lean_closure_set(x_95, 1, x_92); +lean_closure_set(x_95, 2, x_66); +lean_closure_set(x_95, 3, x_27); +lean_inc(x_93); +x_96 = l_Lean_MVarId_withContext___at___private_Lean_Meta_SynthInstance_0__Lean_Meta_synthPendingImp___spec__2___rarg(x_93, x_95, x_6, x_7, x_8, x_9, x_71); +if (lean_obj_tag(x_96) == 0) +{ +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_97 = lean_ctor_get(x_96, 1); +lean_inc(x_97); +if (lean_is_exclusive(x_96)) { + lean_ctor_release(x_96, 0); + lean_ctor_release(x_96, 1); + x_98 = x_96; +} else { + lean_dec_ref(x_96); + x_98 = lean_box(0); +} +x_99 = l_Lean_Meta_FVarSubst_get(x_92, x_66); +x_100 = l_Lean_Expr_fvarId_x21(x_99); +x_101 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_101, 0, x_93); +lean_ctor_set(x_101, 1, x_100); +lean_ctor_set(x_101, 2, x_92); +x_102 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_102, 0, x_101); +lean_ctor_set(x_102, 1, x_61); +if (lean_is_scalar(x_98)) { + x_103 = lean_alloc_ctor(0, 2, 0); +} else { + 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; +lean_dec(x_93); +lean_dec(x_92); +lean_dec(x_66); +lean_dec(x_61); +x_104 = lean_ctor_get(x_96, 0); +lean_inc(x_104); +x_105 = lean_ctor_get(x_96, 1); +lean_inc(x_105); +if (lean_is_exclusive(x_96)) { + lean_ctor_release(x_96, 0); + lean_ctor_release(x_96, 1); + x_106 = x_96; +} else { + lean_dec_ref(x_96); + x_106 = lean_box(0); +} +if (lean_is_scalar(x_106)) { + x_107 = lean_alloc_ctor(1, 2, 0); +} else { + x_107 = x_106; +} +lean_ctor_set(x_107, 0, x_104); +lean_ctor_set(x_107, 1, x_105); +return x_107; +} +} +} +else +{ +uint8_t x_108; +lean_dec(x_66); +lean_dec(x_61); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +x_108 = !lean_is_exclusive(x_69); +if (x_108 == 0) +{ +return x_69; +} +else +{ +lean_object* x_109; lean_object* x_110; lean_object* x_111; +x_109 = lean_ctor_get(x_69, 0); +x_110 = lean_ctor_get(x_69, 1); +lean_inc(x_110); +lean_inc(x_109); +lean_dec(x_69); +x_111 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_111, 0, x_109); +lean_ctor_set(x_111, 1, x_110); +return x_111; +} +} +} +else +{ +uint8_t x_112; +lean_dec(x_61); lean_dec(x_9); lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); -x_114 = !lean_is_exclusive(x_54); -if (x_114 == 0) +x_112 = !lean_is_exclusive(x_63); +if (x_112 == 0) { -return x_54; +return x_63; } else { -lean_object* x_115; lean_object* x_116; lean_object* x_117; -x_115 = lean_ctor_get(x_54, 0); -x_116 = lean_ctor_get(x_54, 1); -lean_inc(x_116); -lean_inc(x_115); -lean_dec(x_54); -x_117 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_117, 0, x_115); -lean_ctor_set(x_117, 1, x_116); -return x_117; +lean_object* x_113; lean_object* x_114; lean_object* x_115; +x_113 = lean_ctor_get(x_63, 0); +x_114 = lean_ctor_get(x_63, 1); +lean_inc(x_114); +lean_inc(x_113); +lean_dec(x_63); +x_115 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_115, 0, x_113); +lean_ctor_set(x_115, 1, x_114); +return x_115; } } } else { -uint8_t x_118; -lean_dec(x_35); -lean_dec(x_32); +uint8_t x_116; +lean_dec(x_34); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +x_116 = !lean_is_exclusive(x_56); +if (x_116 == 0) +{ +return x_56; +} +else +{ +lean_object* x_117; lean_object* x_118; lean_object* x_119; +x_117 = lean_ctor_get(x_56, 0); +x_118 = lean_ctor_get(x_56, 1); +lean_inc(x_118); +lean_inc(x_117); +lean_dec(x_56); +x_119 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_119, 0, x_117); +lean_ctor_set(x_119, 1, x_118); +return x_119; +} +} +} +else +{ +uint8_t x_120; +lean_dec(x_37); +lean_dec(x_34); lean_dec(x_9); lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_1); -x_118 = !lean_is_exclusive(x_47); -if (x_118 == 0) +x_120 = !lean_is_exclusive(x_49); +if (x_120 == 0) { -return x_47; +return x_49; } else { -lean_object* x_119; lean_object* x_120; lean_object* x_121; -x_119 = lean_ctor_get(x_47, 0); -x_120 = lean_ctor_get(x_47, 1); -lean_inc(x_120); -lean_inc(x_119); -lean_dec(x_47); -x_121 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_121, 0, x_119); -lean_ctor_set(x_121, 1, x_120); -return x_121; +lean_object* x_121; lean_object* x_122; lean_object* x_123; +x_121 = lean_ctor_get(x_49, 0); +x_122 = lean_ctor_get(x_49, 1); +lean_inc(x_122); +lean_inc(x_121); +lean_dec(x_49); +x_123 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_123, 0, x_121); +lean_ctor_set(x_123, 1, x_122); +return x_123; } } } else { -uint8_t x_122; +uint8_t x_124; lean_dec(x_18); lean_dec(x_12); lean_dec(x_9); @@ -1002,29 +1013,30 @@ lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_1); -x_122 = !lean_is_exclusive(x_22); -if (x_122 == 0) +x_124 = !lean_is_exclusive(x_24); +if (x_124 == 0) { -return x_22; +return x_24; } else { -lean_object* x_123; lean_object* x_124; lean_object* x_125; -x_123 = lean_ctor_get(x_22, 0); -x_124 = lean_ctor_get(x_22, 1); -lean_inc(x_124); -lean_inc(x_123); -lean_dec(x_22); -x_125 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_125, 0, x_123); -lean_ctor_set(x_125, 1, x_124); -return x_125; +lean_object* x_125; lean_object* x_126; lean_object* x_127; +x_125 = lean_ctor_get(x_24, 0); +x_126 = lean_ctor_get(x_24, 1); +lean_inc(x_126); +lean_inc(x_125); +lean_dec(x_24); +x_127 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_127, 0, x_125); +lean_ctor_set(x_127, 1, x_126); +return x_127; } } } else { -uint8_t x_126; +uint8_t x_128; +lean_dec(x_18); lean_dec(x_12); lean_dec(x_9); lean_dec(x_8); @@ -1032,31 +1044,64 @@ lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_1); +x_128 = !lean_is_exclusive(x_20); +if (x_128 == 0) +{ +return x_20; +} +else +{ +lean_object* x_129; lean_object* x_130; lean_object* x_131; +x_129 = lean_ctor_get(x_20, 0); +x_130 = lean_ctor_get(x_20, 1); +lean_inc(x_130); +lean_inc(x_129); +lean_dec(x_20); +x_131 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_131, 0, x_129); +lean_ctor_set(x_131, 1, x_130); +return x_131; +} +} +} +else +{ +uint8_t x_132; +lean_dec(x_12); +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); lean_dec(x_2); lean_dec(x_1); -x_126 = !lean_is_exclusive(x_17); -if (x_126 == 0) +x_132 = !lean_is_exclusive(x_17); +if (x_132 == 0) { return x_17; } else { -lean_object* x_127; lean_object* x_128; lean_object* x_129; -x_127 = lean_ctor_get(x_17, 0); -x_128 = lean_ctor_get(x_17, 1); -lean_inc(x_128); -lean_inc(x_127); +lean_object* x_133; lean_object* x_134; lean_object* x_135; +x_133 = lean_ctor_get(x_17, 0); +x_134 = lean_ctor_get(x_17, 1); +lean_inc(x_134); +lean_inc(x_133); lean_dec(x_17); -x_129 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_129, 0, x_127); -lean_ctor_set(x_129, 1, x_128); -return x_129; +x_135 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_135, 0, x_133); +lean_ctor_set(x_135, 1, x_134); +return x_135; } } } else { -uint8_t x_130; +uint8_t x_136; lean_dec(x_12); lean_dec(x_9); lean_dec(x_8); @@ -1064,56 +1109,58 @@ 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); -x_130 = !lean_is_exclusive(x_15); -if (x_130 == 0) +x_136 = !lean_is_exclusive(x_15); +if (x_136 == 0) { return x_15; } else { -lean_object* x_131; lean_object* x_132; lean_object* x_133; -x_131 = lean_ctor_get(x_15, 0); -x_132 = lean_ctor_get(x_15, 1); -lean_inc(x_132); -lean_inc(x_131); +lean_object* x_137; lean_object* x_138; lean_object* x_139; +x_137 = lean_ctor_get(x_15, 0); +x_138 = lean_ctor_get(x_15, 1); +lean_inc(x_138); +lean_inc(x_137); lean_dec(x_15); -x_133 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_133, 0, x_131); -lean_ctor_set(x_133, 1, x_132); -return x_133; +x_139 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_139, 0, x_137); +lean_ctor_set(x_139, 1, x_138); +return x_139; } } } else { -uint8_t x_134; +uint8_t x_140; 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); lean_dec(x_2); lean_dec(x_1); -x_134 = !lean_is_exclusive(x_11); -if (x_134 == 0) +x_140 = !lean_is_exclusive(x_11); +if (x_140 == 0) { return x_11; } else { -lean_object* x_135; lean_object* x_136; lean_object* x_137; -x_135 = lean_ctor_get(x_11, 0); -x_136 = lean_ctor_get(x_11, 1); -lean_inc(x_136); -lean_inc(x_135); +lean_object* x_141; lean_object* x_142; lean_object* x_143; +x_141 = lean_ctor_get(x_11, 0); +x_142 = lean_ctor_get(x_11, 1); +lean_inc(x_142); +lean_inc(x_141); lean_dec(x_11); -x_137 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_137, 0, x_135); -lean_ctor_set(x_137, 1, x_136); -return x_137; +x_143 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_143, 0, x_141); +lean_ctor_set(x_143, 1, x_142); +return x_143; } } } @@ -1123,10 +1170,10 @@ _start: { lean_object* x_11; lean_object* x_12; lean_inc(x_1); -x_11 = lean_alloc_closure((void*)(l___private_Lean_Meta_Match_CaseValues_0__Lean_Meta_caseValueAux___lambda__4___boxed), 10, 5); +x_11 = lean_alloc_closure((void*)(l___private_Lean_Meta_Match_CaseValues_0__Lean_Meta_caseValueAux___lambda__4), 10, 5); lean_closure_set(x_11, 0, x_1); -lean_closure_set(x_11, 1, x_2); -lean_closure_set(x_11, 2, x_3); +lean_closure_set(x_11, 1, x_3); +lean_closure_set(x_11, 2, x_2); lean_closure_set(x_11, 3, x_4); lean_closure_set(x_11, 4, x_5); x_12 = l_Lean_MVarId_withContext___at___private_Lean_Meta_SynthInstance_0__Lean_Meta_synthPendingImp___spec__2___rarg(x_1, x_11, x_6, x_7, x_8, x_9, x_10); @@ -1145,15 +1192,6 @@ lean_dec(x_3); return x_9; } } -LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_CaseValues_0__Lean_Meta_caseValueAux___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) { -_start: -{ -lean_object* x_11; -x_11 = l___private_Lean_Meta_Match_CaseValues_0__Lean_Meta_caseValueAux___lambda__4(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -lean_dec(x_3); -return x_11; -} -} static lean_object* _init_l_Lean_Meta_caseValue___closed__1() { _start: { diff --git a/stage0/stdlib/Lean/Meta/Match/Match.c b/stage0/stdlib/Lean/Meta/Match/Match.c index 1a72d4f139..fb237e57e0 100644 --- a/stage0/stdlib/Lean/Meta/Match/Match.c +++ b/stage0/stdlib/Lean/Meta/Match/Match.c @@ -1,6 +1,6 @@ // Lean compiler output // Module: Lean.Meta.Match.Match -// Imports: Lean.Meta.Check Lean.Meta.Closure Lean.Meta.Tactic.Cases Lean.Meta.Tactic.Contradiction Lean.Meta.GeneralizeTelescope Lean.Meta.Match.Basic +// Imports: Lean.Meta.LitValues Lean.Meta.Check Lean.Meta.Closure Lean.Meta.Tactic.Cases Lean.Meta.Tactic.Contradiction Lean.Meta.GeneralizeTelescope Lean.Meta.Match.Basic Lean.Meta.Match.MatcherApp.Basic #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -15,15 +15,16 @@ extern "C" { #endif LEAN_EXPORT lean_object* l_Array_foldrMUnsafe_fold___at_Lean_Meta_Match_withCleanLCtxFor___spec__16___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT uint8_t l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_hasValPattern___lambda__1(lean_object*); +static lean_object* l_List_mapM_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandNatValuePattern___spec__1___closed__2; LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processArrayLit(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_List_mapTR_loop___at_Lean_Meta_Match_mkMatcher___spec__9___at_Lean_Meta_Match_mkMatcher___spec__10(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_const___override(lean_object*, lean_object*); lean_object* l_Lean_Meta_FVarSubst_apply(lean_object*, lean_object*); static lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_withAlts_loop___rarg___closed__4; -LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_updateAlts___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* l_Lean_Meta_mkEqHEq(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_process___closed__3; LEAN_EXPORT lean_object* l_List_mapTR_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processValue___spec__8(lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10422____closed__3; LEAN_EXPORT lean_object* l___private_Lean_Data_PersistentArray_0__Lean_PersistentArray_foldrMAux___at_Lean_Meta_Match_withCleanLCtxFor___spec__3(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_throwError___at_Lean_Meta_Match_getMkMatcherInputInContext___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Init_Util_0__outOfBounds___rarg(lean_object*); @@ -34,16 +35,18 @@ LEAN_EXPORT lean_object* l_Array_foldrMUnsafe_fold___at_Lean_Meta_Match_withClea static lean_object* l_Lean_Meta_Match_mkMatcher___lambda__5___closed__2; static lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_hasArrayLitPattern___closed__1; LEAN_EXPORT lean_object* l_Lean_Meta_Match_getMkMatcherInputInContext___lambda__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_Match_Match___hyg_13886____closed__1; LEAN_EXPORT uint8_t l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_hasArrayLitPattern___lambda__1(lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_Match_mkMatcher___lambda__15___boxed(lean_object**); LEAN_EXPORT lean_object* l___private_Lean_Data_PersistentArray_0__Lean_PersistentArray_foldrMAux___at_Lean_Meta_Match_withCleanLCtxFor___spec__20___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_MVarId_contradictionCore(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_Match_processInaccessibleAsCtor___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* l_Lean_mkNatLit(lean_object*); static lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_throwCasesException___rarg___closed__15; -static lean_object* l_List_mapTR_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandNatValuePattern___spec__1___closed__5; +LEAN_EXPORT lean_object* l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10385_(lean_object*); +LEAN_EXPORT lean_object* l_List_mapM_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandNatValuePattern___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_process___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_List_mapTR_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processValue___spec__10(lean_object*, lean_object*); -static lean_object* l_Array_mapMUnsafe_map___at_Lean_Meta_MatcherApp_refineThrough___spec__3___lambda__2___closed__2; LEAN_EXPORT lean_object* l_Lean_Meta_Match_mkMatcher___lambda__4___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*); static lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_throwCasesException___rarg___closed__18; @@ -57,24 +60,24 @@ LEAN_EXPORT uint8_t l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_hasArra static lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processLeaf___closed__1; LEAN_EXPORT lean_object* l_ReaderT_bind___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processLeaf___spec__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); size_t lean_usize_shift_right(size_t, size_t); +static lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_Match_Match___hyg_13886____closed__4; LEAN_EXPORT lean_object* l_panic___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processValue___spec__6(lean_object*); LEAN_EXPORT lean_object* l_Array_foldrMUnsafe_fold___at_Lean_Meta_Match_withCleanLCtxFor___spec__8(lean_object*, lean_object*, size_t, size_t, lean_object*); static lean_object* l_Lean_PersistentHashMap_insertAux___at_Lean_Meta_Match_mkMatcherAuxDefinition___spec__5___closed__1; LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_hasNonTrivialExample___boxed(lean_object*); -LEAN_EXPORT lean_object* l_Nat_foldRevM_loop___at_Lean_Meta_MatcherApp_refineThrough___spec__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_Meta_Match_Match_0__Lean_Meta_Match_process___closed__2; static lean_object* l_List_mapTR_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processSkipInaccessible___spec__3___closed__2; -static lean_object* l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_9273____closed__7; LEAN_EXPORT lean_object* l_List_mapTR_loop___at_Lean_Meta_Match_mkMatcher___spec__16___at_Lean_Meta_Match_mkMatcher___spec__17___at_Lean_Meta_Match_mkMatcher___spec__18(lean_object*, lean_object*); static lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_throwCasesException___rarg___closed__10; lean_object* l_Lean_Meta_mkFreshLevelMVar(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___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandVarIntoCtor_x3f___closed__2; LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Meta_Match_mkMatcher___spec__2___boxed(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_refineThrough(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_List_forIn_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_checkNextPatternTypes___spec__2___closed__2; LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_isValueTransition___boxed(lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_Match_mkMatcher___lambda__13(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, size_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*); +lean_object* l_Lean_Meta_getNatValue_x3f(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_Match_Match___hyg_13886____closed__3; LEAN_EXPORT lean_object* l_Lean_addTrace___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_solveCnstrs_go___spec__2(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_Match_0__Lean_Meta_Match_processValue___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_findAux___at_Lean_Meta_Match_mkMatcherAuxDefinition___spec__2(lean_object*, size_t, lean_object*); @@ -84,10 +87,10 @@ LEAN_EXPORT lean_object* l_List_filterMapM_loop___at___private_Lean_Meta_Match_M LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_solveCnstrs_go___lambda__3(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_Match_Match_0__Lean_Meta_Match_throwNonSupported___lambda__1___closed__1; uint8_t l_List_all___rarg(lean_object*, lean_object*); +static lean_object* l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10422____closed__4; LEAN_EXPORT lean_object* l_Nat_foldTR_loop___at_Lean_Meta_Match_mkMatcher___spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Meta_Match_getMkMatcherInputInContext___lambda__3___closed__4; LEAN_EXPORT lean_object* l_panic___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processSkipInaccessible___spec__2(lean_object*); -LEAN_EXPORT lean_object* l_List_mapTR_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandNatValuePattern___spec__1(lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_isVariableTransition___boxed(lean_object*); static lean_object* l_Lean_Meta_Match_mkMatcherAuxDefinition___lambda__2___closed__15; lean_object* l_Lean_ConstantInfo_type(lean_object*); @@ -95,14 +98,14 @@ static lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_solveCn LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_hasArrayLitPattern___lambda__1___boxed(lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processLeaf_go___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_List_mapTR_loop___at_Lean_Meta_Match_mkMatcher___spec__1(lean_object*, lean_object*); +lean_object* l_Lean_Meta_mkLt(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandVarIntoArrayLit___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_Meta_lambdaTelescope___at___private_Lean_Meta_Eqns_0__Lean_Meta_mkSimpleEqThm___spec__1___rarg(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_foldrMUnsafe_fold___at_Lean_Meta_Match_withCleanLCtxFor___spec__23(lean_object*, lean_object*, size_t, size_t, lean_object*); uint8_t lean_usize_dec_le(size_t, size_t); lean_object* l_Lean_ConstantInfo_levelParams(lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_isValueTransition___lambda__1___boxed(lean_object*); lean_object* l_Lean_indentD(lean_object*); -LEAN_EXPORT uint8_t l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_isNatValueTransition(lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_isNatValueTransition(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_solveCnstrs_go___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_mkSimpleThunkType(lean_object*); LEAN_EXPORT uint8_t l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_inLocalDecls___lambda__1(lean_object*, lean_object*); @@ -122,9 +125,7 @@ LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_th size_t lean_hashset_mk_idx(lean_object*, uint64_t); size_t lean_uint64_to_usize(uint64_t); static lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_isConstructorTransition___closed__1; -LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_updateAlts___lambda__1(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_withAlts_loop___rarg___closed__10; -static lean_object* l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_9310____closed__9; LEAN_EXPORT lean_object* l_List_mapTR_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processConstructor___spec__3___boxed(lean_object*, lean_object*, lean_object*); static lean_object* l_List_filterMapM_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processNonVariable___spec__2___closed__1; LEAN_EXPORT lean_object* l_Lean_Meta_Match_mkMatcherAuxDefinition___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -136,16 +137,15 @@ LEAN_EXPORT lean_object* l_Lean_Meta_Match_mkMatcher___lambda__2(lean_object*, l lean_object* l_Lean_Expr_sort___override(lean_object*); lean_object* l_Lean_MessageData_ofList(lean_object*); lean_object* l_Lean_PersistentArray_push___rarg(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_hasCtorOrInaccessible___boxed(lean_object*); LEAN_EXPORT lean_object* l_List_mapTR_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processArrayLit___spec__1(lean_object*, lean_object*); lean_object* lean_array_push(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_List_mapM_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandVarIntoArrayLit_loop___spec__1___boxed(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_Match_Match_0__Lean_Meta_updateAlts___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_toSubarray___rarg(lean_object*, lean_object*, lean_object*); LEAN_EXPORT uint8_t l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_hasNonTrivialExample___lambda__1(lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_matchMatcherApp_x3f___at_Lean_Meta_Match_withMkMatcherInput___spec__2___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_Meta_Match_mkMatcher___spec__13___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___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processConstructor___closed__1; -LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_addArg___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* l_Lean_mkHashSetImp___rarg(lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandVarIntoCtor_x3f___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*); static lean_object* l_List_forIn_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_checkNextPatternTypes___spec__2___closed__3; @@ -165,6 +165,7 @@ static lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_hasVarP LEAN_EXPORT lean_object* l_Array_mapIdxM_map___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processArrayLit___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*, lean_object*); static lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_withAlts_loop___rarg___closed__5; static lean_object* l_Lean_Meta_Match_mkMatcher___lambda__4___closed__2; +static lean_object* l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10385____closed__1; LEAN_EXPORT lean_object* l_Lean_Meta_Match_mkMatcher(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_withAlts_loop___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* l_Lean_compileDecl(lean_object*, lean_object*, lean_object*, lean_object*); @@ -183,6 +184,8 @@ LEAN_EXPORT lean_object* l_Array_foldrMUnsafe_fold___at_Lean_Meta_Match_withClea static lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_checkNumPatterns___closed__1; lean_object* lean_array_fget(lean_object*, lean_object*); static lean_object* l_Lean_Meta_Match_mkMatcherAuxDefinition___lambda__4___closed__3; +lean_object* l_Lean_Meta_forallTelescope___at_Lean_Meta_mapForallTelescope_x27___spec__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_List_mapM_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandIntValuePattern___spec__1___closed__4; lean_object* lean_array_fset(lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_withAlts_loop___rarg___closed__3; lean_object* l_Lean_Meta_Match_MatcherInfo_arity(lean_object*); @@ -190,7 +193,7 @@ LEAN_EXPORT lean_object* l_List_mapTR_loop___at_Lean_Meta_Match_mkMatcher___spec LEAN_EXPORT uint8_t l_Lean_HashSetImp_contains___at_Lean_Meta_Match_mkMatcher___spec__3(lean_object*, lean_object*); lean_object* l_Lean_ConstantInfo_name(lean_object*); static lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandVarIntoCtor_x3f___lambda__5___closed__4; -LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Meta_MatcherApp_refineThrough___spec__3___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_Match_Match___hyg_13886____closed__9; LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Meta_Match_withCleanLCtxFor___spec__25(lean_object*, lean_object*, size_t, size_t, lean_object*); static lean_object* l_Lean_Meta_Match_mkMatcherAuxDefinition___lambda__2___closed__17; LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processLeaf_go(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -199,18 +202,17 @@ LEAN_EXPORT lean_object* l_Lean_throwError___at_Lean_Meta_Match_getMkMatcherInpu lean_object* l_Lean_Expr_fvarId_x21(lean_object*); LEAN_EXPORT lean_object* l_Lean_mkHashSet___at_Lean_Meta_Match_State_used___default___spec__1___boxed(lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_Match_getMkMatcherInputInContext___lambda__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_Match_Match___hyg_13886____closed__8; LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_solveCnstrs_go___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_List_foldl___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_collectArraySizes___spec__1(lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processConstructor___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_Match_Match_0__Lean_Meta_Match_isNatValueTransition___boxed(lean_object*); LEAN_EXPORT lean_object* l_Lean_throwError___at_Lean_Meta_Match_withMkMatcherInput___spec__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandVarIntoArrayLit(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_Match_0__Lean_Meta_Match_solveCnstrs_go___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_solveCnstrs_go___lambda__3___closed__4; +LEAN_EXPORT lean_object* l_List_anyM___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_hasNatValPattern___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processConstructor___lambda__3___closed__1; -uint8_t l_Lean_Expr_isNatLit(lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_withAlts_mkMinorType___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___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_hasNatValPattern___lambda__1___boxed(lean_object*); LEAN_EXPORT lean_object* l_Array_foldrMUnsafe_fold___at_Lean_Meta_Match_withCleanLCtxFor___spec__7___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_List_filterMapM_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processConstructor___spec__9___closed__1; LEAN_EXPORT lean_object* l_Lean_Meta_Match_mkMatcher___lambda__10___boxed(lean_object**); @@ -223,19 +225,14 @@ static lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandV lean_object* l_Lean_Meta_getMatcherInfo_x3f___at_Lean_Meta_reduceMatcher_x3f___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_Match_processInaccessibleAsCtor(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Meta_Match_processInaccessibleAsCtor___lambda__1___closed__2; -LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_refineThrough___lambda__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Meta_Match_withMkMatcherInput___rarg___lambda__1___closed__1; LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_throwCasesException(lean_object*); static lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processLeaf___lambda__2___closed__1; -static lean_object* l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_9310____closed__4; LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processConstructor___lambda__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_withAlts_mkMinorType___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_List_mapM_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processVariable___spec__2___closed__2; -static lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_updateAlts___lambda__3___closed__2; -static lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_Match_Match___hyg_14390____closed__12; +LEAN_EXPORT lean_object* l_List_mapM_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandFinValuePattern___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_solveSomeLocalFVarIdCnstr_x3f___lambda__2___closed__2; -static lean_object* l_List_mapTR_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandNatValuePattern___spec__1___closed__1; -static lean_object* l_Lean_Meta_MatcherApp_addArg___lambda__4___closed__4; lean_object* l_Lean_Name_mkStr5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Meta_Match_processInaccessibleAsCtor___closed__4; static lean_object* l_Lean_Meta_Match_getMkMatcherInputInContext___lambda__3___closed__3; @@ -244,6 +241,7 @@ LEAN_EXPORT lean_object* l_Lean_Meta_Match_isCurrVarInductive___lambda__1(lean_o static lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_isVariableTransition___closed__1; LEAN_EXPORT lean_object* l_Array_foldrMUnsafe_fold___at_Lean_Meta_Match_withCleanLCtxFor___spec__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_stringToMessageData(lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_hasIntValPattern(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandVarIntoCtor_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_EXPORT lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_withAlts_mkMinorType(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_Match_mkMatcherAuxDefinition___lambda__2___closed__16; @@ -256,22 +254,21 @@ LEAN_EXPORT lean_object* l_List_filterMapM_loop___at___private_Lean_Meta_Match_M static lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_withAlts_loop___rarg___lambda__1___closed__3; lean_object* l_Lean_Meta_Match_examplesToMessageData(lean_object*); uint8_t l_List_any___rarg(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_throwError___at___private_Lean_Meta_Match_Match_0__Lean_Meta_updateAlts___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_RBNode_findCore___at_Lean_Meta_removeUnused___spec__1(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_Match_withMkMatcherInput(lean_object*); static lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_throwCasesException___rarg___closed__12; static lean_object* l_List_forIn_loop___at_Lean_Meta_Match_withMkMatcherInput___spec__4___closed__2; +static lean_object* l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10385____closed__4; extern lean_object* l_Lean_Expr_instBEqExpr; lean_object* l_Lean_throwError___at_Lean_Meta_setInlineAttribute___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processSkipInaccessible___closed__1; -LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Meta_MatcherApp_refineThrough___spec__3___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_List_forIn_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_checkNextPatternTypes___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_Match_Example_applyFVarSubst(lean_object*, lean_object*); +uint8_t lean_int_dec_le(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_Match_mkMatcher___lambda__21(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_Match_mkMatcher___lambda__3___closed__1; LEAN_EXPORT lean_object* l_Lean_Expr_withAppAux___at_Lean_Meta_Match_getMkMatcherInputInContext___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_Nat_foldTR_loop___at_Lean_Meta_Match_mkMatcher___spec__14(lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Meta_MatcherApp_refineThrough___spec__2(size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_instBEqProd___rarg(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Meta_Match_getMkMatcherInputInContext___closed__1; LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_solveSomeLocalFVarIdCnstr_x3f_go(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -281,7 +278,6 @@ LEAN_EXPORT lean_object* l_Lean_Meta_Match_mkMatcher___lambda__12(lean_object*, LEAN_EXPORT lean_object* l_List_mapTR_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processArrayLit___spec__5(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_List_filterTR_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processConstructor___spec__7(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_throwNonSupported(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Meta_MatcherApp_refineThrough___spec__3___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_withLocalDecl___at_Lean_Meta_GeneralizeTelescope_generalizeTelescopeAux___spec__1___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___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_traceStep___closed__1; LEAN_EXPORT lean_object* l_List_foldl___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_collectValues___spec__1(lean_object*, lean_object*); @@ -291,6 +287,7 @@ lean_object* l_Lean_Meta_Match_Alt_replaceFVarId(lean_object*, lean_object*, lea LEAN_EXPORT lean_object* l_Lean_Meta_Match_mkMatcher___lambda__14(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, size_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*); LEAN_EXPORT lean_object* l_Lean_Meta_Match_getMkMatcherInputInContext___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_Match_Pattern_toExpr_visit(uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_hasIntValPattern___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT uint8_t l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_hasAsPattern(lean_object*); LEAN_EXPORT lean_object* l_List_mapTR_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processValue___spec__8___boxed(lean_object*, lean_object*, lean_object*); extern lean_object* l_instInhabitedNat; @@ -298,27 +295,26 @@ LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Meta_Match_mkMatcher__ LEAN_EXPORT lean_object* l_Array_foldrMUnsafe_fold___at_Lean_Meta_Match_withCleanLCtxFor___spec__24___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT uint8_t l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_hasVarPattern___lambda__1(lean_object*); extern lean_object* l_instInhabitedPUnit; -static lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_updateAlts___closed__4; LEAN_EXPORT lean_object* l_Lean_Meta_Match_MkMatcherInput_collectDependencies(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Meta_Match_mkMatcherAuxDefinition___lambda__2___closed__3; +LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandFinValuePattern(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_Match_mkMatcher___lambda__10(lean_object*, 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_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_checkNumPatterns___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_instHashableArray___rarg___boxed(lean_object*, lean_object*); +static lean_object* l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10422____closed__2; LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_withAlts_mkMinorType___boxed__const__1; LEAN_EXPORT lean_object* l_Lean_LocalContext_foldrM___at_Lean_Meta_Match_withCleanLCtxFor___spec__1(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandVarIntoCtor_x3f___spec__1(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_Match_0__Lean_Meta_updateAlts___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_Meta_isTypeCorrect(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_object* l_Lean_LocalContext_getFVar_x21(lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_solveSomeLocalFVarIdCnstr_x3f___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_solveCnstrs_go___closed__7; +static lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_Match_Match___hyg_13886____closed__5; LEAN_EXPORT lean_object* l_List_filterAuxM___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_filterTrivialCnstrs___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_EnvExtension_getState___rarg(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_addArg___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_object*); lean_object* l_List_appendTR___rarg(lean_object*, lean_object*); static lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_withAlts_loop___rarg___closed__11; -LEAN_EXPORT lean_object* l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_9273_(lean_object*); +LEAN_EXPORT uint8_t l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_hasCtorOrInaccessible(lean_object*); LEAN_EXPORT lean_object* l_List_mapTR_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processConstructor___spec__6___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_throwError___at_Lean_Meta_Match_withMkMatcherInput___spec__5___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_MVarId_withContext___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processLeaf___spec__2___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -328,30 +324,27 @@ LEAN_EXPORT lean_object* l_Array_foldrMUnsafe_fold___at_Lean_Meta_Match_withClea LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processLeaf___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Meta_Match_mkMatcher___lambda__14___closed__1; LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processSkipInaccessible(lean_object*); -static lean_object* l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_9273____closed__3; LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_isArrayLitTransition___lambda__1___boxed(lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_isArrayLitTransition___boxed(lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_filterTrivialCnstrs___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_isFinValueTransition___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_indexOfAux___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_getUElimPos_x3f___spec__1___boxed(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_addArg___lambda__4(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_Match_mkMatcher___lambda__6(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_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_List_forIn_loop___at_Lean_Meta_Match_withMkMatcherInput___spec__4(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_EXPORT lean_object* l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10422_(lean_object*); static lean_object* l_Lean_Meta_Match_processInaccessibleAsCtor___closed__1; lean_object* l_Lean_Meta_Match_withGoalOf___rarg(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_Match_Match_0__Lean_Meta_Match_getUElimPos_x3f___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_st_ref_take(lean_object*, lean_object*); -lean_object* l_Lean_Expr_getRevArg_x21(lean_object*, lean_object*); -static lean_object* l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_9310____closed__3; lean_object* l_Lean_Meta_getArrayArgType(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static size_t l_Lean_PersistentHashMap_findAux___at_Lean_Meta_Match_mkMatcherAuxDefinition___spec__2___closed__2; -LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_refineThrough___lambda__5(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_Match_Match_0__Lean_Meta_Match_processNonVariable___closed__1; LEAN_EXPORT lean_object* l_Lean_Meta_Match_MkMatcherInput_collectFVars___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processNonVariable___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_List_mapM_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processArrayLit___spec__8___closed__2; +lean_object* l_Lean_Meta_getIntValue_x3f(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_hasValPattern___boxed(lean_object*); -LEAN_EXPORT uint8_t l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_hasNatValPattern(lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_hasNatValPattern(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t lean_nat_dec_eq(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_List_mapM_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processArrayLit___spec__8___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_Match_processInaccessibleAsCtor___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*); @@ -359,14 +352,13 @@ LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_so LEAN_EXPORT lean_object* l_Lean_Meta_Match_mkMatcherAuxDefinition(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_ReaderT_pure___at_Lean_Meta_Match_mkMatcher___spec__5(lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_matchMatcherApp_x3f___at_Lean_Meta_Match_withMkMatcherInput___spec__2___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_List_mapM_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandIntValuePattern___spec__1___closed__7; uint8_t lean_expr_eqv(lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_checkNextPatternTypes___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_List_foldl___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_solveCnstrs_go___spec__7___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_solveCnstrs_go___spec__8(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_List_mapTR_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processConstructor___spec__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_9273____closed__6; LEAN_EXPORT lean_object* l_Lean_Meta_matchMatcherApp_x3f___at_Lean_Meta_Match_withMkMatcherInput___spec__2___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* l_Array_mapMUnsafe_map___at_Lean_Meta_Match_toPattern___spec__2(size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_zip___rarg(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_Match_mkMatcher___lambda__6___boxed(lean_object**); LEAN_EXPORT lean_object* l_List_mapTR_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processValue___spec__2(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_process___closed__4; @@ -378,41 +370,41 @@ LEAN_EXPORT lean_object* l_Lean_throwError___at___private_Lean_Meta_Match_Match_ LEAN_EXPORT lean_object* l_Lean_Meta_Match_withMkMatcherInput___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Meta_Match_mkMatcher___lambda__19___closed__1; LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processConstructor___spec__10___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_List_mapM_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandFinValuePattern___spec__1___closed__2; LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processNonVariable___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_Meta_Match_processInaccessibleAsCtor___closed__3; +lean_object* lean_nat_to_int(lean_object*); static lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_solveSomeLocalFVarIdCnstr_x3f___lambda__2___closed__1; LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_traceStep(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Meta_Match_mkMatcher___spec__2(size_t, size_t, lean_object*); lean_object* l_Lean_Meta_Match_Problem_toMessageData(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_List_mapTR_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandNatValuePattern___spec__1___closed__2; LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_traceStep___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT uint8_t l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_isArrayLitTransition(lean_object*); lean_object* l_Lean_MVarId_getType(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_List_mapTR_loop___at_Lean_MessageData_instCoeListExprMessageData___spec__1(lean_object*, lean_object*); uint8_t l_Lean_Expr_isEq(lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_matchMatcherApp_x3f___at_Lean_Meta_Match_withMkMatcherInput___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_EXPORT lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_updateAlts___lambda__3(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_Match_mkMatcher___lambda__14___boxed(lean_object**); static lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_solveCnstrs_go___closed__1; +static lean_object* l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10422____closed__8; LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Meta_Match_getMkMatcherInputInContext___spec__5(size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_updateAlts___lambda__3___closed__1; -static lean_object* l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_9273____closed__5; +static lean_object* l_List_mapM_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandIntValuePattern___spec__1___closed__6; LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_withAlts_mkMinorType___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_Meta_Match_Match_0__Lean_Meta_Match_processLeaf_go___closed__2; LEAN_EXPORT lean_object* l_Lean_throwError___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_checkNextPatternTypes___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandVarIntoCtor_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*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_MVarId_admit(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_foldrMUnsafe_fold___at_Lean_Meta_Match_withCleanLCtxFor___spec__22___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Meta_MatcherApp_refineThrough___lambda__5___closed__1; lean_object* l_Lean_registerTraceClass(lean_object*, uint8_t, lean_object*, lean_object*); +static lean_object* l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10422____closed__6; static lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_throwCasesException___rarg___closed__5; lean_object* l_Lean_PersistentHashMap_instInhabitedPersistentHashMap___rarg(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_isTracingEnabledFor___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_solveCnstrs_go___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Meta_kabstract(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Meta_Match_mkMatcherAuxDefinition___lambda__2___closed__14; LEAN_EXPORT lean_object* l_List_mapTR_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processConstructor___spec__5(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_mkHEqRefl(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_foldrMUnsafe_fold___at_Lean_Meta_Match_withCleanLCtxFor___spec__16(lean_object*, lean_object*, size_t, size_t, lean_object*); +static lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_Match_Match___hyg_13886____closed__10; uint8_t l_Lean_Meta_Match_Alt_isLocalDecl(lean_object*, lean_object*); lean_object* l_Lean_Meta_SavedState_restore(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_checkNextPatternTypes(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -422,10 +414,7 @@ LEAN_EXPORT lean_object* l_Lean_Meta_Match_mkMatcher___lambda__2___boxed(lean_ob LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandVarIntoCtor_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_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandVarIntoCtor_x3f___lambda__5___closed__1; lean_object* l_Lean_CollectFVars_State_addDependencies(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_9310____closed__5; -static lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_Match_Match___hyg_14390____closed__2; static lean_object* l_panic___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processSkipInaccessible___spec__1___closed__1; -LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_updateAlts(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_Meta_Match_mkMatcher___lambda__16___boxed(lean_object**); LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandVarIntoCtor_x3f(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Meta_Match_processInaccessibleAsCtor___lambda__1___closed__1; @@ -436,7 +425,6 @@ lean_object* l_Lean_MVarId_withContext___at___private_Lean_Meta_SynthInstance_0_ lean_object* l_instHashableBool___boxed(lean_object*); lean_object* l_Lean_Meta_Match_MatcherInfo_numAlts(lean_object*); LEAN_EXPORT lean_object* l_Lean_MVarId_assign___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_solveCnstrs_go___spec__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_9310____closed__1; LEAN_EXPORT lean_object* l_Lean_Meta_Match_withCleanLCtxFor___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Meta_Match_instInhabitedDiscrInfo; LEAN_EXPORT uint8_t l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_isArrayLitTransition___lambda__1(lean_object*); @@ -452,39 +440,40 @@ LEAN_EXPORT lean_object* l_Lean_throwError___at_Lean_Meta_Match_withMkMatcherInp LEAN_EXPORT lean_object* l_List_mapTR_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processConstructor___spec__8___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Meta_Match_mkMatcher___spec__8___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_foldrMUnsafe_fold___at_Lean_Meta_Match_withCleanLCtxFor___spec__15___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Meta_MatcherApp_addArg___lambda__4___closed__2; -LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Meta_MatcherApp_refineThrough___spec__3___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_solveCnstrs_go___closed__3; lean_object* l_Lean_Meta_caseArraySizes(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_st_ref_get(lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandVarIntoArrayLit_loop___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_HashSetImp_moveEntries___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_solveCnstrs_go___spec__6(lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_hasNonTrivialExample___closed__1; -LEAN_EXPORT uint8_t l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_isNatValueTransition___lambda__1(lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_isNatValueTransition___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_List_mapTR_loop___at_Lean_Meta_Match_mkMatcher___spec__16___at_Lean_Meta_Match_mkMatcher___spec__17(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT uint8_t l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_hasCtorPattern(lean_object*); static lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandVarIntoCtor_x3f___closed__1; LEAN_EXPORT lean_object* l_List_mapTR_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processValue___spec__5(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*); +static lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_process___closed__6; +static lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_Match_Match___hyg_13886____closed__6; static lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandVarIntoCtor_x3f___lambda__5___closed__2; +LEAN_EXPORT lean_object* l_List_anyM___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_hasIntValPattern___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Nat_foldTR_loop___at_Lean_Meta_Match_mkMatcher___spec__4(lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_Match_Match___hyg_14390____closed__9; LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_isVariableTransition___lambda__1___boxed(lean_object*); uint8_t l_List_isEmpty___rarg(lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_hasArrayLitPattern___boxed(lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_traceState___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_Match_bootstrap_genMatcherCode; -static lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_Match_Match___hyg_14390____closed__10; lean_object* lean_st_mk_ref(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_Match_mkMatcher___lambda__17(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_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_Match_State_counterExamples___default; LEAN_EXPORT lean_object* l_List_mapTR_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processArrayLit___spec__4(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_foldrMUnsafe_fold___at_Lean_Meta_Match_withCleanLCtxFor___spec__10___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Meta_Match_mkMatcher___lambda__2___closed__1; +lean_object* l_Lean_Meta_mkDecideProof(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10422____lambda__1___boxed(lean_object*, lean_object*); lean_object* lean_array_to_list(lean_object*, lean_object*); -lean_object* l_Lean_Meta_mkEq(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_Match_Match_0__Lean_Meta_Match_solveCnstrs_go___spec__10(lean_object*, lean_object*, 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_object* l_Lean_Expr_constructorApp_x3f(lean_object*, lean_object*, uint8_t); +LEAN_EXPORT lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_Match_Match___hyg_13886_(lean_object*); LEAN_EXPORT lean_object* l_Lean_throwError___at_Lean_Meta_Match_processInaccessibleAsCtor___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_Match_State_used___default; LEAN_EXPORT uint8_t l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_isVariableTransition(lean_object*); @@ -501,40 +490,38 @@ LEAN_EXPORT lean_object* l_Lean_Meta_Match_mkMatcherAuxDefinition___lambda__3(le LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_checkNumPatterns(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processValue___lambda__1___closed__1; lean_object* l_EStateM_pure___rarg(lean_object*, lean_object*); -static lean_object* l_List_mapTR_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandNatValuePattern___spec__1___closed__6; static lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_throwCasesException___rarg___closed__16; LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Meta_Match_getMkMatcherInputInContext___spec__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Expr_instHashableExpr; LEAN_EXPORT lean_object* l_Lean_Meta_Match_mkMatcherAuxDefinition___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*); +static lean_object* l_List_mapM_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandIntValuePattern___spec__1___closed__3; extern lean_object* l_Lean_levelZero; LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_solveSomeLocalFVarIdCnstr_x3f___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_PersistentHashMap_insertAux_traverse___at_Lean_Meta_Match_mkMatcherAuxDefinition___spec__6___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processConstructor___closed__2; static lean_object* l_List_forIn_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_checkNextPatternTypes___spec__2___closed__1; static lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processConstructor___lambda__3___closed__2; -static lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_updateAlts___closed__2; LEAN_EXPORT lean_object* l_List_replace___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_solveCnstrs_go___spec__9___boxed(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_instInhabitedExpr; -LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_addArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_Match_mkMatcher___lambda__15(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, size_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*); static lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_throwCasesException___rarg___closed__8; LEAN_EXPORT lean_object* l_List_mapTR_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processConstructor___spec__6(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_Match_mkMatcher___lambda__18___boxed(lean_object**); +LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_hasCtorOrInaccessible___lambda__1___boxed(lean_object*); lean_object* l_Lean_Meta_whnfD(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_List_mapTR_loop___at_Lean_Meta_Match_processInaccessibleAsCtor___spec__4(lean_object*, lean_object*); -static lean_object* l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_9273____closed__4; static lean_object* l_Lean_Meta_Match_mkMatcherAuxDefinition___lambda__2___closed__4; LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux___at_Lean_Meta_Match_mkMatcherAuxDefinition___spec__5(lean_object*, size_t, size_t, lean_object*, lean_object*); static lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_throwCasesException___rarg___closed__13; LEAN_EXPORT lean_object* l_Array_foldrMUnsafe_fold___at_Lean_Meta_Match_withCleanLCtxFor___spec__11___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_withEqs_go___rarg___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_Meta_MatcherApp_addArg___lambda__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint64_t l_Lean_Expr_hash(lean_object*); LEAN_EXPORT lean_object* l_panic___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processSkipInaccessible___spec__1(lean_object*); static lean_object* l_Lean_Meta_Match_mkMatcher___lambda__3___closed__3; static lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_withAlts_loop___rarg___closed__7; LEAN_EXPORT lean_object* l_List_mapM_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processNonVariable___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandVarIntoCtor_x3f___lambda__2___closed__4; +static lean_object* l_List_mapM_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandFinValuePattern___spec__1___closed__3; lean_object* l_Lean_FVarId_getType(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Meta_Match_mkMatcherAuxDefinition___lambda__2___closed__5; LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_Meta_Match_mkMatcher___spec__13___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -545,18 +532,18 @@ static lean_object* l_List_mapM_loop___at___private_Lean_Meta_Match_Match_0__Lea LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Meta_Match_getMkMatcherInputInContext___spec__5___lambda__1(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_throwError___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_solveCnstrs_go___spec__10___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_hasCtorOrInaccessible___closed__1; LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Meta_Match_getMkMatcherInputInContext___spec__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_Lean_HashSetImp_insert___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_solveCnstrs_go___spec__4(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_Match_mkMatcher___lambda__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_EXPORT uint8_t l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_isVariableTransition___lambda__1(lean_object*); +LEAN_EXPORT lean_object* l_List_allM___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_isFinValueTransition___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_isTracingEnabledFor___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_solveCnstrs_go___spec__1___closed__1; LEAN_EXPORT lean_object* l_List_mapTR_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processArrayLit___spec__3(lean_object*, lean_object*); -static lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_Match_Match___hyg_14390____closed__3; lean_object* l_Lean_instHashableLocalInstance___boxed(lean_object*); static lean_object* l_Lean_Meta_Match_mkMatcherAuxDefinition___lambda__4___closed__4; LEAN_EXPORT lean_object* l_Lean_Meta_matchMatcherApp_x3f___at_Lean_Meta_Match_withMkMatcherInput___spec__2___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_mapIdxM_map___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processValue___spec__11___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_Nat_foldRevM_loop___at_Lean_Meta_MatcherApp_addArg___spec__1(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_Meta_Match_Match_0__Lean_Meta_Match_inLocalDecls(lean_object*, lean_object*); lean_object* l_instHashableProd___rarg___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_Match_MkMatcherInput_numDiscrs(lean_object*); @@ -565,18 +552,14 @@ LEAN_EXPORT lean_object* l_List_mapTR_loop___at___private_Lean_Meta_Match_Match_ static lean_object* l_Lean_Meta_Match_mkMatcher___lambda__18___closed__2; LEAN_EXPORT lean_object* l_Lean_commitWhenSome_x3f___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processConstructor___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t lean_name_eq(lean_object*, lean_object*); -static lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_updateAlts___closed__3; lean_object* l_Lean_Meta_forallBoundedTelescope___at___private_Lean_Meta_FunInfo_0__Lean_Meta_getFunInfoAux___spec__5___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Data_PersistentArray_0__Lean_PersistentArray_foldrMAux___at_Lean_Meta_Match_withCleanLCtxFor___spec__9___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Name_str___override(lean_object*, lean_object*); static lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandVarIntoCtor_x3f___lambda__2___closed__3; -static lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_Match_Match___hyg_14390____closed__7; -static lean_object* l_Lean_Meta_MatcherApp_refineThrough___lambda__3___closed__2; LEAN_EXPORT lean_object* l_Lean_Meta_Match_mkMatcher___lambda__13___boxed(lean_object**); static lean_object* l_Lean_Meta_Match_getMkMatcherInputInContext___closed__2; LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandVarIntoArrayLit_loop___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_List_mapTR_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_reorientCnstrs___spec__1(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_refineThrough_x3f(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_solveCnstrs_go___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_Meta_Match_withCleanLCtxFor___spec__25___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_Match_mkMatcher___lambda__4(lean_object*, 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_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -586,17 +569,15 @@ uint8_t l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler LEAN_EXPORT lean_object* l_Array_foldrMUnsafe_fold___at_Lean_Meta_Match_withCleanLCtxFor___spec__17(lean_object*, lean_object*, size_t, size_t, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processAsPattern(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_foldrMUnsafe_fold___at_Lean_Meta_Match_withCleanLCtxFor___spec__24(lean_object*, lean_object*, size_t, size_t, lean_object*); -lean_object* l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_Match_Match___hyg_13886____closed__12; static lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_throwCasesException___rarg___closed__7; static lean_object* l_List_mapM_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processNonVariable___spec__1___closed__1; -LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_updateAlts___lambda__2(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Init_Util_0__mkPanicMessageWithDecl(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_throwCasesException___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_hasValPattern___lambda__1___boxed(lean_object*); static lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandVarIntoCtor_x3f___lambda__5___closed__3; LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_inLocalDecls___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processArrayLit___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_hasNatValPattern___boxed(lean_object*); static lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_throwCasesException___rarg___closed__4; static lean_object* l_Lean_Meta_Match_mkMatcherAuxDefinition___lambda__2___closed__1; static lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_throwCasesException___rarg___closed__17; @@ -611,12 +592,13 @@ LEAN_EXPORT lean_object* l_Array_foldrMUnsafe_fold___at_Lean_Meta_Match_withClea LEAN_EXPORT lean_object* l_Lean_PersistentArray_foldrM___at_Lean_Meta_Match_withCleanLCtxFor___spec__2(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_matchMatcherApp_x3f___at_Lean_Meta_Match_withMkMatcherInput___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* l_Lean_Meta_Match_Alt_applyFVarSubst(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_List_mapM_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandIntValuePattern___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_solveSomeLocalFVarIdCnstr_x3f___lambda__2___closed__5; lean_object* l_Lean_LocalDecl_fvarId(lean_object*); LEAN_EXPORT lean_object* l_List_mapTR_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processArrayLit___spec__5___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_hasRecursiveType(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_9310_(lean_object*); static lean_object* l_List_mapTR_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processSkipInaccessible___spec__3___closed__3; +LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_isFinValueTransition(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_solveSomeLocalFVarIdCnstr_x3f___lambda__2___closed__6; LEAN_EXPORT lean_object* l_panic___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processVariable___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processArrayLit___lambda__1___closed__3; @@ -626,14 +608,13 @@ extern lean_object* l_Lean_Meta_instMonadMetaM; LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_throwNonSupported___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_Match_mkMatcher___lambda__18(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_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_indexOfAux___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_getUElimPos_x3f___spec__1(lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_9273____closed__2; +LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandIntValuePattern(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_findAtAux___at_Lean_Meta_Match_mkMatcherAuxDefinition___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_throwError___at_Lean_Meta_Match_withMkMatcherInput___spec__1___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_process(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_throwError___at_Lean_Meta_Match_withMkMatcherInput___spec__1(lean_object*); uint8_t l_Lean_Environment_hasUnsafe(lean_object*, lean_object*); static lean_object* l_Lean_Meta_Match_mkMatcher___lambda__14___closed__2; -static lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_Match_Match___hyg_14390____closed__6; LEAN_EXPORT lean_object* l_Lean_Meta_Match_isCurrVarInductive(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processConstructor___spec__10(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_Meta_Match_mkMatcher___lambda__13___closed__1; @@ -642,33 +623,32 @@ LEAN_EXPORT lean_object* l_Lean_Meta_Match_mkMatcher___lambda__16(lean_object*, LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_solveCnstrs_go___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_PersistentHashMap_insert___at_Lean_Meta_Match_mkMatcherAuxDefinition___spec__4(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Meta_Match_mkMatcher___lambda__2___closed__2; -static lean_object* l_Lean_Meta_MatcherApp_addArg___lambda__2___closed__1; LEAN_EXPORT lean_object* l_Lean_Meta_Match_mkMatcher___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_usize_to_nat(size_t); LEAN_EXPORT lean_object* l_Array_mapIdxM_map___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processValue___spec__11___boxed(lean_object**); LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Meta_Match_mkMatcher___spec__15(lean_object*, size_t, size_t, lean_object*); lean_object* l_Lean_Meta_instInhabitedMetaM___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_9310____lambda__1___boxed(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_EXPORT lean_object* l_Lean_MVarId_assign___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_solveCnstrs_go___spec__3___boxed(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_Meta_MatcherApp_refineThrough___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Meta_getFinValue_x3f(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_panic___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processConstructor___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Meta_Match_mkMatcherAuxDefinition___lambda__2___closed__18; static lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_hasAsPattern___closed__1; extern lean_object* l_Lean_inheritedTraceOptions; +static lean_object* l_List_mapM_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandIntValuePattern___spec__1___closed__5; lean_object* l_Lean_MessageData_ofExpr(lean_object*); static lean_object* l_Lean_Meta_Match_getMkMatcherInputInContext___lambda__3___closed__1; LEAN_EXPORT lean_object* l_List_mapM_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandVarIntoArrayLit_loop___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_LocalContext_foldrM___at_Lean_Meta_Match_withCleanLCtxFor___spec__1___boxed(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Meta_Match_mkMatcher___lambda__5___closed__1; +static lean_object* l_List_mapM_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandNatValuePattern___spec__1___closed__6; LEAN_EXPORT lean_object* l_List_filterTR_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processValue___spec__1(lean_object*, lean_object*); uint8_t l_Lean_Expr_isConstructorApp(lean_object*, lean_object*); static lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_solveCnstrs_go___lambda__3___closed__1; LEAN_EXPORT lean_object* l___private_Lean_Data_PersistentArray_0__Lean_PersistentArray_foldrMAux___at_Lean_Meta_Match_withCleanLCtxFor___spec__3___boxed(lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_throwError___at_Lean_Meta_mkSimpCongrTheorem___spec__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_updateAlts___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___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processLeaf_go___closed__3; +static lean_object* l_List_mapM_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandNatValuePattern___spec__1___closed__4; static lean_object* l_List_mapM_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processVariable___spec__2___closed__1; static lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_throwCasesException___rarg___closed__14; LEAN_EXPORT lean_object* l_List_mapTR_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processArrayLit___spec__7___boxed(lean_object*, lean_object*, lean_object*); @@ -686,23 +666,20 @@ static lean_object* l_Lean_Meta_Match_mkMatcherAuxDefinition___lambda__4___close LEAN_EXPORT lean_object* l_Lean_Meta_Match_mkMatcher___lambda__12___boxed(lean_object**); LEAN_EXPORT uint8_t l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_isFirstPatternVar(lean_object*); LEAN_EXPORT lean_object* l_List_mapM_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processAsPattern___spec__2(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_Match_0__Lean_Meta_Match_isFinValueTransition___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_isValueTransition___closed__1; LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_hasNonTrivialExample___lambda__1___boxed(lean_object*); static lean_object* l_panic___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processAsPattern___spec__1___closed__1; -static lean_object* l_Lean_Meta_MatcherApp_addArg___lambda__4___closed__1; LEAN_EXPORT lean_object* l_List_filterTR_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processArrayLit___spec__6(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Lean_Meta_Basic_0__Lean_Meta_instantiateLambdaAux(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_Meta_MatcherApp_refineThrough___spec__3(size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10385____closed__2; static lean_object* l_panic___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processSkipInaccessible___spec__2___closed__1; LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_hasAsPattern___boxed(lean_object*); lean_object* l_Lean_Meta_withLCtx___at___private_Lean_Meta_Basic_0__Lean_Meta_mkLeveErrorMessageCore___spec__2___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_refineThrough___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_Match_mkMatcher___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_Meta_Match_getMkMatcherInputInContext___lambda__2___closed__1; LEAN_EXPORT lean_object* l_Lean_Meta_Match_mkMatcher___lambda__7___boxed(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_Meta_Match_mkMatcher___spec__15___boxed(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_withEqs___rarg___closed__1; -static lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_isNatValueTransition___closed__1; lean_object* l_Lean_Expr_constLevels_x21(lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_checkNextPatternTypes___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_inLocalDecls___lambda__1___boxed(lean_object*, lean_object*); @@ -711,12 +688,13 @@ LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Meta_Match_mkMatcher__ LEAN_EXPORT uint8_t l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_isNextVar(lean_object*); lean_object* l_Lean_Meta_Match_Pattern_toMessageData(lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_Match_mkMatcher___lambda__19(lean_object*, lean_object*, lean_object*, lean_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_Match_0__Lean_Meta_updateAlts___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___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandVarIntoCtor_x3f___lambda__5___closed__5; static lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processAsPattern___closed__2; static lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_getUElimPos_x3f___closed__1; LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_filterTrivialCnstrs(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_withAlts_loop___rarg___lambda__1___closed__1; +static lean_object* l_List_mapM_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandIntValuePattern___spec__1___closed__1; +LEAN_EXPORT lean_object* l_List_allM___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_isFinValueTransition___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_List_mapTR_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processValue___spec__7___closed__1; LEAN_EXPORT lean_object* l_Lean_Meta_Match_getMkMatcherInputInContext___lambda__3___boxed(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*); @@ -724,22 +702,21 @@ lean_object* l_Lean_AssocList_toList___rarg(lean_object*); static lean_object* l_Lean_Meta_Match_mkMatcher___lambda__12___closed__1; LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_reorientCnstrs(lean_object*); LEAN_EXPORT lean_object* l_List_mapTR_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processArrayLit___spec__2___boxed(lean_object*, lean_object*, lean_object*); -static lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_updateAlts___closed__1; +static lean_object* l_List_mapM_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandNatValuePattern___spec__1___closed__3; static lean_object* l_Lean_Meta_Match_mkMatcher___lambda__3___closed__2; lean_object* l_Lean_Meta_getInductiveUniverseAndParams(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_Match_Match___hyg_14390____closed__8; uint8_t lean_nat_dec_eq(lean_object*, lean_object*); +static lean_object* l_List_mapM_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandNatValuePattern___spec__1___closed__1; LEAN_EXPORT lean_object* l_List_mapTR_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processConstructor___spec__4(lean_object*, lean_object*); static lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processArrayLit___lambda__1___closed__2; +static lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_Match_Match___hyg_13886____closed__7; static lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processArrayLit___closed__2; -LEAN_EXPORT uint8_t l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_9310____lambda__1(uint8_t, uint8_t); static lean_object* l_Lean_Meta_matchMatcherApp_x3f___at_Lean_Meta_Match_withMkMatcherInput___spec__2___lambda__2___closed__1; uint8_t lean_nat_dec_lt(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_List_forM___at_Lean_Meta_Match_MkMatcherInput_collectFVars___spec__1(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_Match_Match_0__Lean_Meta_Match_getUElimPos_x3f___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_MessageData_ofLevel(lean_object*); static lean_object* l_Lean_Meta_Match_processInaccessibleAsCtor___closed__2; -lean_object* l_Lean_mkRawNatLit(lean_object*); static lean_object* l_Lean_Meta_Match_MkMatcherInput_collectDependencies___closed__2; LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_checkNumPatterns___lambda__1___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_List_mapM_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processArrayLit___spec__8(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -749,15 +726,13 @@ lean_object* l_Lean_Meta_getLocalInstances(lean_object*, lean_object*, lean_obje LEAN_EXPORT lean_object* l_Lean_mkHashSet___at_Lean_Meta_Match_State_used___default___spec__1(lean_object*); lean_object* l_Lean_Name_mkStr2(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_foldrMUnsafe_fold___at_Lean_Meta_Match_withCleanLCtxFor___spec__10(lean_object*, lean_object*, size_t, size_t, lean_object*); -static lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_updateAlts___lambda__2___closed__1; +static lean_object* l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10385____closed__3; static lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_solveCnstrs_go___closed__2; LEAN_EXPORT lean_object* l___private_Lean_Data_PersistentArray_0__Lean_PersistentArray_foldrMAux___at_Lean_Meta_Match_withCleanLCtxFor___spec__14(lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_9273____closed__1; static lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_solveCnstrs_go___closed__5; lean_object* l_Lean_Meta_mkEqRefl(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_HashSetImp_expand___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_solveCnstrs_go___spec__5(lean_object*, lean_object*); static lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_withAlts_loop___rarg___lambda__1___closed__2; -LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_addArg_x3f(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_indentExpr(lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processConstructor___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Array_contains___at___private_Lean_Meta_RecursorInfo_0__Lean_Meta_getMajorPosDepElim___spec__4(lean_object*, lean_object*); @@ -767,13 +742,15 @@ LEAN_EXPORT lean_object* l_Array_foldrMUnsafe_fold___at_Lean_Meta_Match_withClea lean_object* l_Lean_Meta_isExprDefEqGuarded(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PersistentHashMap_mkEmptyEntries(lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_withEqs(lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_isFinValueTransition___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10385____closed__7; LEAN_EXPORT lean_object* l_Array_foldrMUnsafe_fold___at_Lean_Meta_Match_withCleanLCtxFor___spec__12(lean_object*, lean_object*, size_t, size_t, lean_object*); LEAN_EXPORT uint8_t l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_isValueTransition(lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_matchMatcherApp_x3f___at_Lean_Meta_Match_withMkMatcherInput___spec__2(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_isNatValueTransition___lambda__1___boxed(lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_isNatValueTransition___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Array_mapIdxM_map___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processValue___spec__11___closed__2; static lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_throwCasesException___rarg___closed__2; -static lean_object* l_Lean_Meta_MatcherApp_addArg___lambda__4___closed__3; +static lean_object* l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10422____closed__7; static lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processArrayLit___closed__1; lean_object* l_Lean_Meta_mkHasTypeButIsExpectedMsg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_Match_mkMatcher___lambda__7(lean_object*, lean_object*, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -781,16 +758,15 @@ lean_object* l_Lean_Meta_mkForallFVars(lean_object*, lean_object*, uint8_t, uint lean_object* lean_local_ctx_erase(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_List_mapTR_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processValue___spec__3___boxed(lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_hasValPattern___closed__1; -static lean_object* l_Array_mapMUnsafe_map___at_Lean_Meta_MatcherApp_refineThrough___spec__3___lambda__2___closed__1; lean_object* lean_array_set(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Meta_Match_mkMatcher___lambda__13___closed__2; LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_solveSomeLocalFVarIdCnstr_x3f_go___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___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_withAlts_loop(lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processValue(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_solveSomeLocalFVarIdCnstr_x3f___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_Meta_initFn____x40_Lean_Meta_Match_Match___hyg_14390____closed__11; lean_object* l_Lean_addMessageContextFull___at_Lean_Meta_instAddMessageContextMetaM___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_exprDependsOn___at___private_Lean_Meta_CongrTheorems_0__Lean_Meta_mkCast_go___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Int_toNat(lean_object*); LEAN_EXPORT lean_object* l_Lean_isTracingEnabledFor___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_solveCnstrs_go___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_solveSomeLocalFVarIdCnstr_x3f___lambda__2___closed__4; LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_Meta_Match_mkMatcher___spec__13(lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -805,10 +781,9 @@ LEAN_EXPORT lean_object* l_List_mapM_loop___at___private_Lean_Meta_Match_Match_0 LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_withAlts_mkMinorType___spec__1___boxed(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_Match_0__Lean_Meta_Match_traceState(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_panic___at_Lean_Meta_Match_processInaccessibleAsCtor___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_hasNatValPattern___closed__1; LEAN_EXPORT lean_object* l_List_mapTR_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processValue___spec__9(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_HashSetImp_contains___at_Lean_Meta_Match_mkMatcher___spec__3___boxed(lean_object*, lean_object*); -static lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_Match_Match___hyg_14390____closed__5; +static lean_object* l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10422____closed__1; lean_object* lean_nat_sub(lean_object*, lean_object*); lean_object* l_Lean_Option_register___at_Lean_initFn____x40_Lean_Util_Profile___hyg_6____spec__1(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_Match_MkMatcherInput_collectDependencies___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -819,22 +794,20 @@ static lean_object* l_Lean_Meta_Match_getMkMatcherInputInContext___closed__3; LEAN_EXPORT lean_object* l_List_replace___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_solveCnstrs_go___spec__9(lean_object*, lean_object*, lean_object*); LEAN_EXPORT uint8_t l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_hasValPattern(lean_object*); lean_object* lean_nat_mul(lean_object*, lean_object*); +static lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_Match_Match___hyg_13886____closed__11; LEAN_EXPORT lean_object* l_List_filterTR_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processArrayLit___spec__6___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_MVarId_withContext___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processLeaf___spec__2(lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_Match_mkMatcherAuxDefinition___lambda__1(lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_hasCtorPattern___closed__1; LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_withAlts(lean_object*); -LEAN_EXPORT uint8_t l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_hasNatValPattern___lambda__1(lean_object*); static lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processValue___closed__2; lean_object* l_Lean_Meta_InfoCacheKey_instHashableInfoCacheKey___boxed(lean_object*); static lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_throwCasesException___rarg___closed__6; LEAN_EXPORT lean_object* l_Lean_Meta_Match_MkMatcherInput_collectFVars(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processNonVariable___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* l_Lean_mkArrow(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_Cases_cases(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_Match_0__Lean_Meta_Match_altsAreCtorLike(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_throwCasesException___rarg___closed__11; -LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_addArg___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* l_Lean_PersistentHashMap_mkCollisionNode___rarg(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_hasVarPattern___boxed(lean_object*); LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_find_x3f___at_Lean_Meta_Match_mkMatcherAuxDefinition___spec__1(lean_object*, lean_object*); @@ -848,7 +821,6 @@ LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_pr LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processLeaf___lambda__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_Array_mapIdxM_map___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processValue___spec__11___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, 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_List_mapTR_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processValue___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_9310____closed__7; LEAN_EXPORT lean_object* l_List_foldl___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_solveCnstrs_go___spec__7(lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_throwCasesException___rarg___closed__3; LEAN_EXPORT lean_object* l_List_mapTR_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processArrayLit___spec__7(lean_object*, lean_object*, lean_object*); @@ -867,18 +839,14 @@ LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_is size_t lean_usize_sub(size_t, size_t); static lean_object* l_Array_mapIdxM_map___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processValue___spec__11___lambda__2___closed__1; LEAN_EXPORT lean_object* l_Lean_Meta_Match_mkMatcher___lambda__5___boxed(lean_object**); -static lean_object* l_List_mapTR_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandNatValuePattern___spec__1___closed__4; static lean_object* l_Lean_Meta_Match_processInaccessibleAsCtor___lambda__1___closed__3; -LEAN_EXPORT lean_object* l_Nat_foldRevM_loop___at_Lean_Meta_MatcherApp_refineThrough___spec__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_Meta_Match_instInhabitedAlt; static lean_object* l_Lean_Meta_Match_mkMatcherAuxDefinition___lambda__4___closed__1; static lean_object* l_Lean_Meta_Match_mkMatcher___lambda__16___closed__1; LEAN_EXPORT lean_object* l_Array_mapIdxM_map___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processValue___spec__11___lambda__1___boxed(lean_object**); LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_process___spec__1(lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static size_t l_Lean_PersistentHashMap_findAux___at_Lean_Meta_Match_mkMatcherAuxDefinition___spec__2___closed__1; -static lean_object* l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_9310____closed__2; LEAN_EXPORT lean_object* l_List_forM___at_Lean_Meta_Match_MkMatcherInput_collectFVars___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_Match_Match___hyg_14390____closed__1; LEAN_EXPORT lean_object* l_Lean_throwError___at_Lean_Meta_Match_withMkMatcherInput___spec__5___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processConstructor___lambda__1___closed__1; lean_object* l_Lean_Level_param___override(lean_object*); @@ -886,6 +854,7 @@ LEAN_EXPORT lean_object* l_Lean_Meta_Match_MkMatcherInput_numDiscrs___boxed(lean static lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_solveCnstrs_go___closed__4; size_t lean_usize_add(size_t, size_t); lean_object* l_Lean_Meta_Match_Example_replaceFVarId(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT uint8_t l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_hasCtorOrInaccessible___lambda__1(lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_hasVarPattern___lambda__1___boxed(lean_object*); LEAN_EXPORT lean_object* l_List_mapTR_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processConstructor___spec__8(lean_object*, lean_object*, lean_object*); extern lean_object* l_Id_instMonadId; @@ -902,11 +871,10 @@ lean_object* lean_array_uget(lean_object*, size_t); LEAN_EXPORT lean_object* l_Lean_Meta_matchMatcherApp_x3f___at_Lean_Meta_Match_withMkMatcherInput___spec__2___lambda__3(uint8_t, 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_fvar___override(lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processLeaf_go___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_Match_initFn____x40_Lean_Meta_Match_Match___hyg_9310____closed__8; -LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandNatValuePattern(lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandNatValuePattern(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_solveCnstrs_go(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_List_mapTR_loop___at_Lean_Meta_Match_mkMatcher___spec__9(lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_Match_Match___hyg_14390____closed__4; +lean_object* lean_int_add(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_Match_withMkMatcherInput___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_Meta_Match_mkMatcher___lambda__11___boxed(lean_object**); static lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processConstructor___lambda__2___closed__1; @@ -914,8 +882,8 @@ LEAN_EXPORT lean_object* l_List_foldl___at___private_Lean_Meta_Match_Match_0__Le lean_object* lean_st_ref_set(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processConstructor___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_Array_mapMUnsafe_map___at_Lean_Meta_Match_mkMatcher___spec__8(size_t, size_t, lean_object*); +static lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_process___closed__7; lean_object* l_Lean_addTrace___at_Lean_Meta_processPostponed_loop___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_Match_Match___hyg_14390_(lean_object*); static lean_object* l_Array_mapMUnsafe_map___at_Lean_Meta_Match_getMkMatcherInputInContext___spec__5___lambda__1___closed__1; LEAN_EXPORT lean_object* l_panic___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processAsPattern___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_List_mapTR_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processArrayLit___spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*); @@ -927,7 +895,6 @@ LEAN_EXPORT lean_object* l_Array_foldrMUnsafe_fold___at_Lean_Meta_Match_withClea lean_object* l_Lean_Meta_setInlineAttribute(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_mapIdxM_map___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processArrayLit___spec__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*, lean_object*, lean_object*); lean_object* l___private_Lean_Expr_0__Lean_Expr_getAppArgsAux(lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_Match_Match___hyg_14390____closed__13; static lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_withAlts_loop___rarg___closed__6; static lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_withAlts_loop___rarg___closed__9; LEAN_EXPORT lean_object* l_Lean_Meta_matchMatcherApp_x3f___at_Lean_Meta_Match_withMkMatcherInput___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -946,20 +913,22 @@ static lean_object* l_Lean_Meta_Match_withMkMatcherInput___rarg___lambda__1___cl LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_withAlts_loop___rarg___lambda__1(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*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_foldrMUnsafe_fold___at_Lean_Meta_Match_withCleanLCtxFor___spec__5(lean_object*, lean_object*, size_t, size_t, lean_object*); lean_object* lean_array_get_size(lean_object*); -static lean_object* l_Lean_Meta_MatcherApp_refineThrough___lambda__3___closed__1; -static lean_object* l_Lean_Meta_MatcherApp_refineThrough___lambda__5___closed__2; +LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_isIntValueTransition(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* lean_int_neg(lean_object*); +LEAN_EXPORT lean_object* l_List_anyM___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_hasIntValPattern___spec__1___boxed(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_level_eq(lean_object*, lean_object*); uint8_t lean_nat_dec_le(lean_object*, lean_object*); -static lean_object* l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_9310____closed__6; static lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_isArrayLitTransition___closed__1; uint8_t lean_usize_dec_lt(size_t, size_t); +static lean_object* l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10385____closed__5; uint8_t l_Array_contains___at___private_Lean_Meta_FunInfo_0__Lean_Meta_collectDeps_visit___spec__2(lean_object*, lean_object*); LEAN_EXPORT uint8_t l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_checkNumPatterns___lambda__1(lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_solveSomeLocalFVarIdCnstr_x3f(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_List_forIn_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_checkNextPatternTypes___spec__2___boxed(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_Match_0__Lean_Meta_Match_hasAsPattern___lambda__1___boxed(lean_object*); lean_object* l_Lean_Meta_Match_AltLHS_collectFVars(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT uint8_t l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10422____lambda__1(uint8_t, uint8_t); LEAN_EXPORT lean_object* l_Lean_PersistentArray_foldrM___at_Lean_Meta_Match_withCleanLCtxFor___spec__2___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_List_mapTR_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processSkipInaccessible___spec__3(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_mkLambdaFVars(lean_object*, lean_object*, uint8_t, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -971,30 +940,34 @@ lean_object* l_Lean_PersistentHashMap_getCollisionNodeSize___rarg(lean_object*); LEAN_EXPORT lean_object* l_List_filterTR_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processConstructor___spec__7___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Meta_Match_mkMatcher___spec__12(size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT uint8_t l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_isValueTransition___lambda__1(lean_object*); -LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_refineThrough___lambda__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_List_mapTR_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processValue___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 uint8_t l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_isConstructorTransition(lean_object*); +static lean_object* l_List_mapM_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandIntValuePattern___spec__1___closed__2; LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandVarIntoCtor_x3f___spec__1___boxed(lean_object*, 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_List_mapTR_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processArrayLit___spec__2(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAtCollisionNodeAux___at_Lean_Meta_Match_mkMatcherAuxDefinition___spec__7(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_instBEqArray___rarg___boxed(lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_checkNumPatterns___closed__2; +static lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_Match_Match___hyg_13886____closed__2; LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processLeaf(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_solveSomeLocalFVarIdCnstr_x3f___lambda__2___closed__3; +static lean_object* l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10422____closed__5; LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_withEqs_go___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* l_Lean_Meta_checkpointDefEq___at_Lean_Meta_isLevelDefEq___spec__1(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_List_mapTR_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processValue___spec__7(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10385____closed__6; +static lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_Match_Match___hyg_13886____closed__13; uint8_t l_Lean_Expr_isFVar(lean_object*); LEAN_EXPORT lean_object* l_Lean_throwError___at_Lean_Meta_Match_processInaccessibleAsCtor___spec__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_mvarId_x21(lean_object*); -LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Meta_MatcherApp_refineThrough___spec__2___boxed(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_Match_0__Lean_Meta_Match_hasCtorPattern___lambda__1___boxed(lean_object*); lean_object* l_Lean_InductiveVal_numCtors(lean_object*); +static lean_object* l_List_mapM_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandFinValuePattern___spec__1___closed__1; LEAN_EXPORT lean_object* l___private_Lean_Data_PersistentArray_0__Lean_PersistentArray_foldrMAux___at_Lean_Meta_Match_withCleanLCtxFor___spec__20(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_Match_getMkMatcherInputInContext___lambda__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_withAlts___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_Meta_MatcherApp_addArg___lambda__2___closed__2; +static lean_object* l_List_mapM_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandNatValuePattern___spec__1___closed__5; LEAN_EXPORT lean_object* l_Lean_Meta_Match_mkMatcher___lambda__3(lean_object*, 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_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Meta_Match_getMkMatcherInputInContext___lambda__3___closed__2; LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_solveCnstrs(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -1007,29 +980,25 @@ LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Meta_Match_M lean_object* l_Lean_MessageData_ofName(lean_object*); uint8_t l_Lean_isCasesOnRecursor(lean_object*, lean_object*); lean_object* lean_array_get(lean_object*, lean_object*, lean_object*); -lean_object* lean_expr_instantiate1(lean_object*, lean_object*); lean_object* l___private_Lean_Meta_Basic_0__Lean_Meta_instantiateForallAux(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_foldrMUnsafe_fold___at_Lean_Meta_Match_withCleanLCtxFor___spec__18(lean_object*, lean_object*, size_t, size_t, lean_object*); static lean_object* l_Lean_Meta_Match_mkMatcherAuxDefinition___lambda__2___closed__9; LEAN_EXPORT lean_object* l_Array_mapIdxM_map___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processValue___spec__11___lambda__2(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___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processLeaf___lambda__2___closed__2; lean_object* l_Lean_Meta_Match_Alt_toMessageData(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10422____closed__9; lean_object* l_Lean_Expr_collectFVars(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_List_mapTR_loop___at_Lean_Meta_Match_mkMatcher___spec__7(lean_object*, lean_object*); lean_object* l_Nat_repr(lean_object*); -LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_refineThrough___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_List_mapTR_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandNatValuePattern___spec__1___closed__3; LEAN_EXPORT lean_object* l_Lean_Meta_Match_mkMatcherAuxDefinition___lambda__4(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_Closure_mkValueTypeClosure(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Meta_Match_mkMatcher___lambda__5___closed__4; lean_object* l_Lean_addDecl(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_List_mapTR_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processValue___spec__3(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_refineThrough___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); size_t lean_usize_land(size_t, size_t); LEAN_EXPORT uint8_t l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_isDone(lean_object*); LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_findAtAux___at_Lean_Meta_Match_mkMatcherAuxDefinition___spec__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_List_toArrayAux___rarg(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Nat_foldRevM_loop___at_Lean_Meta_MatcherApp_addArg___spec__1___boxed(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_Meta_Match_Match_0__Lean_Meta_Match_hasCtorPattern___lambda__1(lean_object*); lean_object* l_Lean_Meta_mkArrayLit(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_Match_mkMatcher___lambda__17___boxed__const__1; @@ -2473,74 +2442,324 @@ x_3 = lean_box(x_2); return x_3; } } -LEAN_EXPORT uint8_t l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_hasNatValPattern___lambda__1(lean_object* x_1) { +LEAN_EXPORT lean_object* l_List_anyM___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_hasNatValPattern___spec__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_2; -x_2 = lean_ctor_get(x_1, 4); -if (lean_obj_tag(x_2) == 0) +if (lean_obj_tag(x_1) == 0) { -uint8_t x_3; -x_3 = 0; -return x_3; -} -else -{ -lean_object* x_4; -x_4 = lean_ctor_get(x_2, 0); -if (lean_obj_tag(x_4) == 3) -{ -lean_object* x_5; uint8_t x_6; -x_5 = lean_ctor_get(x_4, 0); -x_6 = l_Lean_Expr_isNatLit(x_5); -return x_6; -} -else -{ -uint8_t x_7; +uint8_t x_7; lean_object* x_8; lean_object* x_9; +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); x_7 = 0; +x_8 = lean_box(x_7); +x_9 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_9, 0, x_8); +lean_ctor_set(x_9, 1, x_6); +return x_9; +} +else +{ +lean_object* x_10; lean_object* x_11; uint8_t x_12; lean_object* x_13; lean_object* x_19; +x_10 = lean_ctor_get(x_1, 0); +lean_inc(x_10); +x_11 = lean_ctor_get(x_1, 1); +lean_inc(x_11); +lean_dec(x_1); +x_19 = lean_ctor_get(x_10, 4); +lean_inc(x_19); +lean_dec(x_10); +if (lean_obj_tag(x_19) == 0) +{ +uint8_t x_20; +x_20 = 0; +x_12 = x_20; +x_13 = x_6; +goto block_18; +} +else +{ +lean_object* x_21; +x_21 = lean_ctor_get(x_19, 0); +lean_inc(x_21); +lean_dec(x_19); +if (lean_obj_tag(x_21) == 3) +{ +lean_object* x_22; lean_object* x_23; +x_22 = lean_ctor_get(x_21, 0); +lean_inc(x_22); +lean_dec(x_21); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +lean_inc(x_2); +x_23 = l_Lean_Meta_getNatValue_x3f(x_22, x_2, x_3, x_4, x_5, x_6); +if (lean_obj_tag(x_23) == 0) +{ +lean_object* x_24; +x_24 = lean_ctor_get(x_23, 0); +lean_inc(x_24); +if (lean_obj_tag(x_24) == 0) +{ +lean_object* x_25; uint8_t x_26; +x_25 = lean_ctor_get(x_23, 1); +lean_inc(x_25); +lean_dec(x_23); +x_26 = 0; +x_12 = x_26; +x_13 = x_25; +goto block_18; +} +else +{ +lean_object* x_27; uint8_t x_28; +lean_dec(x_24); +x_27 = lean_ctor_get(x_23, 1); +lean_inc(x_27); +lean_dec(x_23); +x_28 = 1; +x_12 = x_28; +x_13 = x_27; +goto block_18; +} +} +else +{ +uint8_t x_29; +lean_dec(x_11); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_29 = !lean_is_exclusive(x_23); +if (x_29 == 0) +{ +return x_23; +} +else +{ +lean_object* x_30; lean_object* x_31; lean_object* x_32; +x_30 = lean_ctor_get(x_23, 0); +x_31 = lean_ctor_get(x_23, 1); +lean_inc(x_31); +lean_inc(x_30); +lean_dec(x_23); +x_32 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_32, 0, x_30); +lean_ctor_set(x_32, 1, x_31); +return x_32; +} +} +} +else +{ +uint8_t x_33; +lean_dec(x_21); +x_33 = 0; +x_12 = x_33; +x_13 = x_6; +goto block_18; +} +} +block_18: +{ +if (x_12 == 0) +{ +x_1 = x_11; +x_6 = x_13; +goto _start; +} +else +{ +uint8_t x_15; lean_object* x_16; lean_object* x_17; +lean_dec(x_11); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_15 = 1; +x_16 = lean_box(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_13); +return x_17; +} +} +} +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_hasNatValPattern(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; lean_object* x_8; +x_7 = lean_ctor_get(x_1, 2); +lean_inc(x_7); +lean_dec(x_1); +x_8 = l_List_anyM___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_hasNatValPattern___spec__1(x_7, x_2, x_3, x_4, x_5, x_6); +return x_8; +} +} +LEAN_EXPORT lean_object* l_List_anyM___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_hasIntValPattern___spec__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: +{ +if (lean_obj_tag(x_1) == 0) +{ +uint8_t x_7; lean_object* x_8; lean_object* x_9; +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_7 = 0; +x_8 = lean_box(x_7); +x_9 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_9, 0, x_8); +lean_ctor_set(x_9, 1, x_6); +return x_9; +} +else +{ +lean_object* x_10; lean_object* x_11; uint8_t x_12; lean_object* x_13; lean_object* x_19; +x_10 = lean_ctor_get(x_1, 0); +x_11 = lean_ctor_get(x_1, 1); +x_19 = lean_ctor_get(x_10, 4); +if (lean_obj_tag(x_19) == 0) +{ +uint8_t x_20; +x_20 = 0; +x_12 = x_20; +x_13 = x_6; +goto block_18; +} +else +{ +lean_object* x_21; +x_21 = lean_ctor_get(x_19, 0); +if (lean_obj_tag(x_21) == 3) +{ +lean_object* x_22; lean_object* x_23; +x_22 = lean_ctor_get(x_21, 0); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +lean_inc(x_2); +x_23 = l_Lean_Meta_getIntValue_x3f(x_22, x_2, x_3, x_4, x_5, x_6); +if (lean_obj_tag(x_23) == 0) +{ +lean_object* x_24; +x_24 = lean_ctor_get(x_23, 0); +lean_inc(x_24); +if (lean_obj_tag(x_24) == 0) +{ +lean_object* x_25; uint8_t x_26; +x_25 = lean_ctor_get(x_23, 1); +lean_inc(x_25); +lean_dec(x_23); +x_26 = 0; +x_12 = x_26; +x_13 = x_25; +goto block_18; +} +else +{ +lean_object* x_27; uint8_t x_28; +lean_dec(x_24); +x_27 = lean_ctor_get(x_23, 1); +lean_inc(x_27); +lean_dec(x_23); +x_28 = 1; +x_12 = x_28; +x_13 = x_27; +goto block_18; +} +} +else +{ +uint8_t x_29; +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_29 = !lean_is_exclusive(x_23); +if (x_29 == 0) +{ +return x_23; +} +else +{ +lean_object* x_30; lean_object* x_31; lean_object* x_32; +x_30 = lean_ctor_get(x_23, 0); +x_31 = lean_ctor_get(x_23, 1); +lean_inc(x_31); +lean_inc(x_30); +lean_dec(x_23); +x_32 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_32, 0, x_30); +lean_ctor_set(x_32, 1, x_31); +return x_32; +} +} +} +else +{ +uint8_t x_33; +x_33 = 0; +x_12 = x_33; +x_13 = x_6; +goto block_18; +} +} +block_18: +{ +if (x_12 == 0) +{ +x_1 = x_11; +x_6 = x_13; +goto _start; +} +else +{ +uint8_t x_15; lean_object* x_16; lean_object* x_17; +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_15 = 1; +x_16 = lean_box(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_13); +return x_17; +} +} +} +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_hasIntValPattern(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; lean_object* x_8; +x_7 = lean_ctor_get(x_1, 2); +x_8 = l_List_anyM___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_hasIntValPattern___spec__1(x_7, x_2, x_3, x_4, x_5, x_6); +return x_8; +} +} +LEAN_EXPORT lean_object* l_List_anyM___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_hasIntValPattern___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) { +_start: +{ +lean_object* x_7; +x_7 = l_List_anyM___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_hasIntValPattern___spec__1(x_1, x_2, x_3, x_4, x_5, x_6); +lean_dec(x_1); return x_7; } } -} -} -static lean_object* _init_l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_hasNatValPattern___closed__1() { +LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_hasIntValPattern___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_1; -x_1 = lean_alloc_closure((void*)(l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_hasNatValPattern___lambda__1___boxed), 1, 0); -return x_1; -} -} -LEAN_EXPORT uint8_t l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_hasNatValPattern(lean_object* x_1) { -_start: -{ -lean_object* x_2; lean_object* x_3; uint8_t x_4; -x_2 = lean_ctor_get(x_1, 2); -lean_inc(x_2); +lean_object* x_7; +x_7 = l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_hasIntValPattern(x_1, x_2, x_3, x_4, x_5, x_6); lean_dec(x_1); -x_3 = l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_hasNatValPattern___closed__1; -x_4 = l_List_any___rarg(x_2, x_3); -return x_4; -} -} -LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_hasNatValPattern___lambda__1___boxed(lean_object* x_1) { -_start: -{ -uint8_t x_2; lean_object* x_3; -x_2 = l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_hasNatValPattern___lambda__1(x_1); -lean_dec(x_1); -x_3 = lean_box(x_2); -return x_3; -} -} -LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_hasNatValPattern___boxed(lean_object* x_1) { -_start: -{ -uint8_t x_2; lean_object* x_3; -x_2 = l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_hasNatValPattern(x_1); -x_3 = lean_box(x_2); -return x_3; +return x_7; } } LEAN_EXPORT uint8_t l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_hasVarPattern___lambda__1(lean_object* x_1) { @@ -2972,6 +3191,241 @@ x_3 = lean_box(x_2); return x_3; } } +LEAN_EXPORT lean_object* l_List_allM___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_isFinValueTransition___spec__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: +{ +if (lean_obj_tag(x_1) == 0) +{ +uint8_t x_7; lean_object* x_8; lean_object* x_9; +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_7 = 1; +x_8 = lean_box(x_7); +x_9 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_9, 0, x_8); +lean_ctor_set(x_9, 1, x_6); +return x_9; +} +else +{ +lean_object* x_10; lean_object* x_11; uint8_t x_12; lean_object* x_13; lean_object* x_19; +x_10 = lean_ctor_get(x_1, 0); +x_11 = lean_ctor_get(x_1, 1); +x_19 = lean_ctor_get(x_10, 4); +if (lean_obj_tag(x_19) == 0) +{ +uint8_t x_20; +x_20 = 0; +x_12 = x_20; +x_13 = x_6; +goto block_18; +} +else +{ +lean_object* x_21; +x_21 = lean_ctor_get(x_19, 0); +switch (lean_obj_tag(x_21)) { +case 2: +{ +uint8_t x_22; +x_22 = 1; +x_12 = x_22; +x_13 = x_6; +goto block_18; +} +case 3: +{ +lean_object* x_23; lean_object* x_24; +x_23 = lean_ctor_get(x_21, 0); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +lean_inc(x_2); +x_24 = l_Lean_Meta_getFinValue_x3f(x_23, x_2, x_3, x_4, x_5, x_6); +if (lean_obj_tag(x_24) == 0) +{ +lean_object* x_25; +x_25 = lean_ctor_get(x_24, 0); +lean_inc(x_25); +if (lean_obj_tag(x_25) == 0) +{ +lean_object* x_26; uint8_t x_27; +x_26 = lean_ctor_get(x_24, 1); +lean_inc(x_26); +lean_dec(x_24); +x_27 = 0; +x_12 = x_27; +x_13 = x_26; +goto block_18; +} +else +{ +lean_object* x_28; uint8_t x_29; +lean_dec(x_25); +x_28 = lean_ctor_get(x_24, 1); +lean_inc(x_28); +lean_dec(x_24); +x_29 = 1; +x_12 = x_29; +x_13 = x_28; +goto block_18; +} +} +else +{ +uint8_t x_30; +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_30 = !lean_is_exclusive(x_24); +if (x_30 == 0) +{ +return x_24; +} +else +{ +lean_object* x_31; lean_object* x_32; lean_object* x_33; +x_31 = lean_ctor_get(x_24, 0); +x_32 = lean_ctor_get(x_24, 1); +lean_inc(x_32); +lean_inc(x_31); +lean_dec(x_24); +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; +} +} +} +default: +{ +uint8_t x_34; +x_34 = 0; +x_12 = x_34; +x_13 = x_6; +goto block_18; +} +} +} +block_18: +{ +if (x_12 == 0) +{ +uint8_t x_14; lean_object* x_15; lean_object* x_16; +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_14 = 0; +x_15 = lean_box(x_14); +x_16 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_16, 0, x_15); +lean_ctor_set(x_16, 1, x_13); +return x_16; +} +else +{ +x_1 = x_11; +x_6 = x_13; +goto _start; +} +} +} +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_isFinValueTransition___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) { +_start: +{ +lean_object* x_8; lean_object* x_9; +lean_dec(x_2); +x_8 = lean_ctor_get(x_1, 2); +x_9 = l_List_allM___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_isFinValueTransition___spec__1(x_8, x_3, x_4, x_5, x_6, x_7); +return x_9; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_isFinValueTransition___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: +{ +uint8_t x_8; +lean_dec(x_2); +lean_inc(x_1); +x_8 = l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_hasValPattern(x_1); +if (x_8 == 0) +{ +uint8_t x_9; lean_object* x_10; lean_object* x_11; +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_1); +x_9 = 0; +x_10 = lean_box(x_9); +x_11 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_11, 0, x_10); +lean_ctor_set(x_11, 1, x_7); +return x_11; +} +else +{ +lean_object* x_12; lean_object* x_13; +x_12 = lean_box(0); +x_13 = l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_isFinValueTransition___lambda__1(x_1, x_12, x_3, x_4, x_5, x_6, x_7); +lean_dec(x_1); +return x_13; +} +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_isFinValueTransition(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_7; +lean_inc(x_1); +x_7 = l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_hasVarPattern(x_1); +if (x_7 == 0) +{ +lean_object* x_8; lean_object* x_9; +x_8 = lean_box(0); +x_9 = l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_isFinValueTransition___lambda__2(x_1, x_8, x_2, x_3, x_4, x_5, x_6); +return x_9; +} +else +{ +uint8_t x_10; lean_object* x_11; lean_object* x_12; +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +x_10 = 0; +x_11 = lean_box(x_10); +x_12 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_12, 0, x_11); +lean_ctor_set(x_12, 1, x_6); +return x_12; +} +} +} +LEAN_EXPORT lean_object* l_List_allM___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_isFinValueTransition___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) { +_start: +{ +lean_object* x_7; +x_7 = l_List_allM___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_isFinValueTransition___spec__1(x_1, x_2, x_3, x_4, x_5, x_6); +lean_dec(x_1); +return x_7; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_isFinValueTransition___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) { +_start: +{ +lean_object* x_8; +x_8 = l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_isFinValueTransition___lambda__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +lean_dec(x_1); +return x_8; +} +} LEAN_EXPORT uint8_t l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_isArrayLitTransition___lambda__1(lean_object* x_1) { _start: { @@ -3075,7 +3529,7 @@ x_3 = lean_box(x_2); return x_3; } } -LEAN_EXPORT uint8_t l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_isNatValueTransition___lambda__1(lean_object* x_1) { +LEAN_EXPORT uint8_t l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_hasCtorOrInaccessible___lambda__1(lean_object* x_1) { _start: { lean_object* x_2; @@ -3113,68 +3567,267 @@ return x_7; } } } -static lean_object* _init_l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_isNatValueTransition___closed__1() { +static lean_object* _init_l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_hasCtorOrInaccessible___closed__1() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_isNatValueTransition___lambda__1___boxed), 1, 0); +x_1 = lean_alloc_closure((void*)(l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_hasCtorOrInaccessible___lambda__1___boxed), 1, 0); return x_1; } } -LEAN_EXPORT uint8_t l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_isNatValueTransition(lean_object* x_1) { +LEAN_EXPORT uint8_t l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_hasCtorOrInaccessible(lean_object* x_1) { _start: { uint8_t x_2; -lean_inc(x_1); -x_2 = l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_hasNatValPattern(x_1); +x_2 = l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_isNextVar(x_1); if (x_2 == 0) { uint8_t x_3; lean_dec(x_1); -x_3 = 0; +x_3 = 1; return x_3; } else { -uint8_t x_4; -x_4 = l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_isNextVar(x_1); -if (x_4 == 0) -{ -uint8_t x_5; +lean_object* x_4; lean_object* x_5; uint8_t x_6; +x_4 = lean_ctor_get(x_1, 2); +lean_inc(x_4); lean_dec(x_1); -x_5 = 1; -return x_5; +x_5 = l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_hasCtorOrInaccessible___closed__1; +x_6 = l_List_any___rarg(x_4, x_5); +return x_6; +} +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_hasCtorOrInaccessible___lambda__1___boxed(lean_object* x_1) { +_start: +{ +uint8_t x_2; lean_object* x_3; +x_2 = l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_hasCtorOrInaccessible___lambda__1(x_1); +lean_dec(x_1); +x_3 = lean_box(x_2); +return x_3; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_hasCtorOrInaccessible___boxed(lean_object* x_1) { +_start: +{ +uint8_t x_2; lean_object* x_3; +x_2 = l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_hasCtorOrInaccessible(x_1); +x_3 = lean_box(x_2); +return x_3; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_isNatValueTransition___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) { +_start: +{ +uint8_t x_8; lean_object* x_9; lean_object* x_10; +x_8 = l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_hasCtorOrInaccessible(x_1); +x_9 = lean_box(x_8); +x_10 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_10, 0, x_9); +lean_ctor_set(x_10, 1, x_7); +return x_10; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_isNatValueTransition(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; +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +lean_inc(x_2); +lean_inc(x_1); +x_7 = l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_hasNatValPattern(x_1, x_2, x_3, x_4, x_5, x_6); +if (lean_obj_tag(x_7) == 0) +{ +lean_object* x_8; uint8_t x_9; +x_8 = lean_ctor_get(x_7, 0); +lean_inc(x_8); +x_9 = lean_unbox(x_8); +lean_dec(x_8); +if (x_9 == 0) +{ +uint8_t x_10; +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +x_10 = !lean_is_exclusive(x_7); +if (x_10 == 0) +{ +lean_object* x_11; uint8_t x_12; lean_object* x_13; +x_11 = lean_ctor_get(x_7, 0); +lean_dec(x_11); +x_12 = 0; +x_13 = lean_box(x_12); +lean_ctor_set(x_7, 0, x_13); +return x_7; } else { -lean_object* x_6; lean_object* x_7; uint8_t x_8; -x_6 = lean_ctor_get(x_1, 2); -lean_inc(x_6); +lean_object* x_14; uint8_t x_15; lean_object* x_16; lean_object* x_17; +x_14 = lean_ctor_get(x_7, 1); +lean_inc(x_14); +lean_dec(x_7); +x_15 = 0; +x_16 = lean_box(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_14); +return x_17; +} +} +else +{ +lean_object* x_18; lean_object* x_19; lean_object* x_20; +x_18 = lean_ctor_get(x_7, 1); +lean_inc(x_18); +lean_dec(x_7); +x_19 = lean_box(0); +x_20 = l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_isNatValueTransition___lambda__1(x_1, x_19, x_2, x_3, x_4, x_5, x_18); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +return x_20; +} +} +else +{ +uint8_t x_21; +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); lean_dec(x_1); -x_7 = l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_isNatValueTransition___closed__1; -x_8 = l_List_any___rarg(x_6, x_7); +x_21 = !lean_is_exclusive(x_7); +if (x_21 == 0) +{ +return x_7; +} +else +{ +lean_object* x_22; lean_object* x_23; lean_object* x_24; +x_22 = lean_ctor_get(x_7, 0); +x_23 = lean_ctor_get(x_7, 1); +lean_inc(x_23); +lean_inc(x_22); +lean_dec(x_7); +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; +} +} +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_isNatValueTransition___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) { +_start: +{ +lean_object* x_8; +x_8 = l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_isNatValueTransition___lambda__1(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); +lean_dec(x_2); return x_8; } } -} -} -LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_isNatValueTransition___lambda__1___boxed(lean_object* x_1) { +LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_isIntValueTransition(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_2; lean_object* x_3; -x_2 = l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_isNatValueTransition___lambda__1(x_1); +lean_object* x_7; +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +lean_inc(x_2); +x_7 = l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_hasIntValPattern(x_1, x_2, x_3, x_4, x_5, x_6); +if (lean_obj_tag(x_7) == 0) +{ +lean_object* x_8; uint8_t x_9; +x_8 = lean_ctor_get(x_7, 0); +lean_inc(x_8); +x_9 = lean_unbox(x_8); +lean_dec(x_8); +if (x_9 == 0) +{ +uint8_t x_10; +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); lean_dec(x_1); -x_3 = lean_box(x_2); -return x_3; -} -} -LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_isNatValueTransition___boxed(lean_object* x_1) { -_start: +x_10 = !lean_is_exclusive(x_7); +if (x_10 == 0) { -uint8_t x_2; lean_object* x_3; -x_2 = l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_isNatValueTransition(x_1); -x_3 = lean_box(x_2); -return x_3; +lean_object* x_11; uint8_t x_12; lean_object* x_13; +x_11 = lean_ctor_get(x_7, 0); +lean_dec(x_11); +x_12 = 0; +x_13 = lean_box(x_12); +lean_ctor_set(x_7, 0, x_13); +return x_7; +} +else +{ +lean_object* x_14; uint8_t x_15; lean_object* x_16; lean_object* x_17; +x_14 = lean_ctor_get(x_7, 1); +lean_inc(x_14); +lean_dec(x_7); +x_15 = 0; +x_16 = lean_box(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_14); +return x_17; +} +} +else +{ +lean_object* x_18; lean_object* x_19; lean_object* x_20; +x_18 = lean_ctor_get(x_7, 1); +lean_inc(x_18); +lean_dec(x_7); +x_19 = lean_box(0); +x_20 = l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_isNatValueTransition___lambda__1(x_1, x_19, x_2, x_3, x_4, x_5, x_18); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +return x_20; +} +} +else +{ +uint8_t x_21; +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +x_21 = !lean_is_exclusive(x_7); +if (x_21 == 0) +{ +return x_7; +} +else +{ +lean_object* x_22; lean_object* x_23; lean_object* x_24; +x_22 = lean_ctor_get(x_7, 0); +x_23 = lean_ctor_get(x_7, 1); +lean_inc(x_23); +lean_inc(x_22); +lean_dec(x_7); +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_panic___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processSkipInaccessible___spec__1___closed__1() { @@ -3245,7 +3898,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_List_mapTR_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processSkipInaccessible___spec__3___closed__1; x_2 = l_List_mapTR_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processSkipInaccessible___spec__3___closed__2; -x_3 = lean_unsigned_to_nat(150u); +x_3 = lean_unsigned_to_nat(175u); x_4 = lean_unsigned_to_nat(48u); x_5 = l_List_mapTR_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processSkipInaccessible___spec__3___closed__3; x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); @@ -3563,7 +4216,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_List_mapTR_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processSkipInaccessible___spec__3___closed__1; x_2 = l_List_mapTR_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processSkipInaccessible___spec__3___closed__2; -x_3 = lean_unsigned_to_nat(148u); +x_3 = lean_unsigned_to_nat(173u); x_4 = lean_unsigned_to_nat(26u); x_5 = l_List_mapTR_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processSkipInaccessible___spec__3___closed__3; x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); @@ -8134,7 +8787,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_List_mapTR_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processSkipInaccessible___spec__3___closed__1; x_2 = l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processAsPattern___closed__1; -x_3 = lean_unsigned_to_nat(253u); +x_3 = lean_unsigned_to_nat(278u); x_4 = lean_unsigned_to_nat(25u); x_5 = l_List_mapTR_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processSkipInaccessible___spec__3___closed__3; x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); @@ -8437,7 +9090,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_List_mapTR_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processSkipInaccessible___spec__3___closed__1; x_2 = l_List_mapM_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processVariable___spec__2___closed__1; -x_3 = lean_unsigned_to_nat(297u); +x_3 = lean_unsigned_to_nat(322u); x_4 = lean_unsigned_to_nat(12u); x_5 = l_List_mapTR_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processSkipInaccessible___spec__3___closed__3; x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); @@ -9173,7 +9826,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_List_mapTR_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processSkipInaccessible___spec__3___closed__1; x_2 = l_List_mapM_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processVariable___spec__2___closed__1; -x_3 = lean_unsigned_to_nat(287u); +x_3 = lean_unsigned_to_nat(312u); x_4 = lean_unsigned_to_nat(26u); x_5 = l_List_mapTR_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processSkipInaccessible___spec__3___closed__3; x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); @@ -11111,7 +11764,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_List_mapTR_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processSkipInaccessible___spec__3___closed__1; x_2 = l_Lean_Meta_Match_processInaccessibleAsCtor___closed__1; -x_3 = lean_unsigned_to_nat(391u); +x_3 = lean_unsigned_to_nat(416u); x_4 = lean_unsigned_to_nat(9u); x_5 = l_List_mapTR_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processSkipInaccessible___spec__3___closed__3; x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); @@ -12446,7 +13099,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_List_mapTR_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processSkipInaccessible___spec__3___closed__1; x_2 = l_List_filterMapM_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processConstructor___spec__9___closed__1; -x_3 = lean_unsigned_to_nat(457u); +x_3 = lean_unsigned_to_nat(482u); x_4 = lean_unsigned_to_nat(37u); x_5 = l_List_mapTR_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processSkipInaccessible___spec__3___closed__3; x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); @@ -13531,7 +14184,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_List_mapTR_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processSkipInaccessible___spec__3___closed__1; x_2 = l_List_filterMapM_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processConstructor___spec__9___closed__1; -x_3 = lean_unsigned_to_nat(410u); +x_3 = lean_unsigned_to_nat(435u); x_4 = lean_unsigned_to_nat(26u); x_5 = l_List_mapTR_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processSkipInaccessible___spec__3___closed__3; x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); @@ -14050,7 +14703,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_List_mapTR_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processSkipInaccessible___spec__3___closed__1; x_2 = l_List_mapM_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processNonVariable___spec__1___closed__1; -x_3 = lean_unsigned_to_nat(484u); +x_3 = lean_unsigned_to_nat(509u); x_4 = lean_unsigned_to_nat(16u); x_5 = l_List_mapTR_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processSkipInaccessible___spec__3___closed__3; x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); @@ -14637,7 +15290,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_List_mapTR_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processSkipInaccessible___spec__3___closed__1; x_2 = l_List_mapM_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processNonVariable___spec__1___closed__1; -x_3 = lean_unsigned_to_nat(478u); +x_3 = lean_unsigned_to_nat(503u); x_4 = lean_unsigned_to_nat(15u); x_5 = l_List_mapTR_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processSkipInaccessible___spec__3___closed__3; x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); @@ -15312,7 +15965,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_List_mapTR_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processSkipInaccessible___spec__3___closed__1; x_2 = l_List_mapM_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processNonVariable___spec__1___closed__1; -x_3 = lean_unsigned_to_nat(467u); +x_3 = lean_unsigned_to_nat(492u); x_4 = lean_unsigned_to_nat(26u); x_5 = l_List_mapTR_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processSkipInaccessible___spec__3___closed__3; x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); @@ -15885,7 +16538,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_List_mapTR_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processSkipInaccessible___spec__3___closed__1; x_2 = l_List_mapTR_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processValue___spec__7___closed__1; -x_3 = lean_unsigned_to_nat(522u); +x_3 = lean_unsigned_to_nat(547u); x_4 = lean_unsigned_to_nat(16u); x_5 = l_List_mapTR_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processSkipInaccessible___spec__3___closed__3; x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); @@ -16765,7 +17418,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_List_mapTR_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processSkipInaccessible___spec__3___closed__1; x_2 = l_List_mapTR_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processValue___spec__7___closed__1; -x_3 = lean_unsigned_to_nat(500u); +x_3 = lean_unsigned_to_nat(525u); x_4 = lean_unsigned_to_nat(26u); x_5 = l_List_mapTR_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processSkipInaccessible___spec__3___closed__3; x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); @@ -18128,7 +18781,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_List_mapTR_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processSkipInaccessible___spec__3___closed__1; x_2 = l_List_mapM_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processArrayLit___spec__8___closed__1; -x_3 = lean_unsigned_to_nat(579u); +x_3 = lean_unsigned_to_nat(604u); x_4 = lean_unsigned_to_nat(16u); x_5 = l_List_mapTR_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processSkipInaccessible___spec__3___closed__3; x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); @@ -19109,7 +19762,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_List_mapTR_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processSkipInaccessible___spec__3___closed__1; x_2 = l_List_mapM_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processArrayLit___spec__8___closed__1; -x_3 = lean_unsigned_to_nat(555u); +x_3 = lean_unsigned_to_nat(580u); x_4 = lean_unsigned_to_nat(26u); x_5 = l_List_mapTR_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processSkipInaccessible___spec__3___closed__3; x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); @@ -19345,7 +19998,7 @@ lean_dec(x_4); return x_17; } } -static lean_object* _init_l_List_mapTR_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandNatValuePattern___spec__1___closed__1() { +static lean_object* _init_l_List_mapM_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandNatValuePattern___spec__1___closed__1() { _start: { lean_object* x_1; @@ -19353,7 +20006,7 @@ x_1 = lean_mk_string_from_bytes("Nat", 3); return x_1; } } -static lean_object* _init_l_List_mapTR_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandNatValuePattern___spec__1___closed__2() { +static lean_object* _init_l_List_mapM_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandNatValuePattern___spec__1___closed__2() { _start: { lean_object* x_1; @@ -19361,17 +20014,17 @@ x_1 = lean_mk_string_from_bytes("succ", 4); return x_1; } } -static lean_object* _init_l_List_mapTR_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandNatValuePattern___spec__1___closed__3() { +static lean_object* _init_l_List_mapM_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandNatValuePattern___spec__1___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_List_mapTR_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandNatValuePattern___spec__1___closed__1; -x_2 = l_List_mapTR_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandNatValuePattern___spec__1___closed__2; +x_1 = l_List_mapM_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandNatValuePattern___spec__1___closed__1; +x_2 = l_List_mapM_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandNatValuePattern___spec__1___closed__2; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } -static lean_object* _init_l_List_mapTR_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandNatValuePattern___spec__1___closed__4() { +static lean_object* _init_l_List_mapM_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandNatValuePattern___spec__1___closed__4() { _start: { lean_object* x_1; @@ -19379,22 +20032,22 @@ x_1 = lean_mk_string_from_bytes("zero", 4); return x_1; } } -static lean_object* _init_l_List_mapTR_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandNatValuePattern___spec__1___closed__5() { +static lean_object* _init_l_List_mapM_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandNatValuePattern___spec__1___closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_List_mapTR_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandNatValuePattern___spec__1___closed__1; -x_2 = l_List_mapTR_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandNatValuePattern___spec__1___closed__4; +x_1 = l_List_mapM_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandNatValuePattern___spec__1___closed__1; +x_2 = l_List_mapM_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandNatValuePattern___spec__1___closed__4; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } -static lean_object* _init_l_List_mapTR_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandNatValuePattern___spec__1___closed__6() { +static lean_object* _init_l_List_mapM_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandNatValuePattern___spec__1___closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_List_mapTR_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandNatValuePattern___spec__1___closed__5; +x_2 = l_List_mapM_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandNatValuePattern___spec__1___closed__5; x_3 = lean_alloc_ctor(2, 4, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); @@ -19403,35 +20056,42 @@ lean_ctor_set(x_3, 3, x_1); return x_3; } } -LEAN_EXPORT lean_object* l_List_mapTR_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandNatValuePattern___spec__1(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l_List_mapM_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandNatValuePattern___spec__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) { _start: { if (lean_obj_tag(x_1) == 0) { -lean_object* x_3; -x_3 = l_List_reverse___rarg(x_2); -return x_3; +lean_object* x_8; lean_object* x_9; +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +x_8 = l_List_reverse___rarg(x_2); +x_9 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_9, 0, x_8); +lean_ctor_set(x_9, 1, x_7); +return x_9; } else { -lean_object* x_4; lean_object* x_5; -x_4 = lean_ctor_get(x_1, 0); -lean_inc(x_4); -x_5 = lean_ctor_get(x_4, 4); -lean_inc(x_5); -if (lean_obj_tag(x_5) == 0) +lean_object* x_10; lean_object* x_11; +x_10 = lean_ctor_get(x_1, 0); +lean_inc(x_10); +x_11 = lean_ctor_get(x_10, 4); +lean_inc(x_11); +if (lean_obj_tag(x_11) == 0) { -uint8_t x_6; -x_6 = !lean_is_exclusive(x_1); -if (x_6 == 0) +uint8_t x_12; +x_12 = !lean_is_exclusive(x_1); +if (x_12 == 0) { -lean_object* x_7; lean_object* x_8; -x_7 = lean_ctor_get(x_1, 1); -x_8 = lean_ctor_get(x_1, 0); -lean_dec(x_8); +lean_object* x_13; lean_object* x_14; +x_13 = lean_ctor_get(x_1, 1); +x_14 = lean_ctor_get(x_1, 0); +lean_dec(x_14); lean_ctor_set(x_1, 1, x_2); { -lean_object* _tmp_0 = x_7; +lean_object* _tmp_0 = x_13; lean_object* _tmp_1 = x_1; x_1 = _tmp_0; x_2 = _tmp_1; @@ -19440,24 +20100,903 @@ goto _start; } else { -lean_object* x_10; lean_object* x_11; -x_10 = lean_ctor_get(x_1, 1); -lean_inc(x_10); +lean_object* x_16; lean_object* x_17; +x_16 = lean_ctor_get(x_1, 1); +lean_inc(x_16); lean_dec(x_1); -x_11 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_11, 0, x_4); -lean_ctor_set(x_11, 1, x_2); -x_1 = x_10; -x_2 = x_11; +x_17 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_17, 0, x_10); +lean_ctor_set(x_17, 1, x_2); +x_1 = x_16; +x_2 = x_17; goto _start; } } else { -lean_object* x_13; -x_13 = lean_ctor_get(x_5, 0); -lean_inc(x_13); -if (lean_obj_tag(x_13) == 3) +lean_object* x_19; +x_19 = lean_ctor_get(x_11, 0); +lean_inc(x_19); +if (lean_obj_tag(x_19) == 3) +{ +uint8_t x_20; +x_20 = !lean_is_exclusive(x_1); +if (x_20 == 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; uint8_t x_28; +x_21 = lean_ctor_get(x_1, 1); +x_22 = lean_ctor_get(x_1, 0); +lean_dec(x_22); +x_23 = lean_ctor_get(x_10, 0); +lean_inc(x_23); +x_24 = lean_ctor_get(x_10, 1); +lean_inc(x_24); +x_25 = lean_ctor_get(x_10, 2); +lean_inc(x_25); +x_26 = lean_ctor_get(x_10, 3); +lean_inc(x_26); +x_27 = lean_ctor_get(x_10, 5); +lean_inc(x_27); +x_28 = !lean_is_exclusive(x_11); +if (x_28 == 0) +{ +lean_object* x_29; lean_object* x_30; uint8_t x_31; +x_29 = lean_ctor_get(x_11, 1); +x_30 = lean_ctor_get(x_11, 0); +lean_dec(x_30); +x_31 = !lean_is_exclusive(x_19); +if (x_31 == 0) +{ +lean_object* x_32; lean_object* x_33; +x_32 = lean_ctor_get(x_19, 0); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +x_33 = l_Lean_Meta_getNatValue_x3f(x_32, x_3, x_4, x_5, x_6, x_7); +if (lean_obj_tag(x_33) == 0) +{ +lean_object* x_34; +x_34 = lean_ctor_get(x_33, 0); +lean_inc(x_34); +if (lean_obj_tag(x_34) == 0) +{ +lean_object* x_35; +lean_free_object(x_19); +lean_dec(x_29); +lean_dec(x_27); +lean_dec(x_26); +lean_dec(x_25); +lean_dec(x_24); +lean_dec(x_23); +lean_free_object(x_1); +x_35 = lean_ctor_get(x_33, 1); +lean_inc(x_35); +lean_dec(x_33); +lean_ctor_set(x_11, 1, x_2); +lean_ctor_set(x_11, 0, x_10); +x_1 = x_21; +x_2 = x_11; +x_7 = x_35; +goto _start; +} +else +{ +uint8_t x_37; +x_37 = !lean_is_exclusive(x_10); +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; lean_object* x_44; lean_object* x_45; lean_object* x_46; uint8_t x_47; +x_38 = lean_ctor_get(x_10, 5); +lean_dec(x_38); +x_39 = lean_ctor_get(x_10, 4); +lean_dec(x_39); +x_40 = lean_ctor_get(x_10, 3); +lean_dec(x_40); +x_41 = lean_ctor_get(x_10, 2); +lean_dec(x_41); +x_42 = lean_ctor_get(x_10, 1); +lean_dec(x_42); +x_43 = lean_ctor_get(x_10, 0); +lean_dec(x_43); +x_44 = lean_ctor_get(x_33, 1); +lean_inc(x_44); +lean_dec(x_33); +x_45 = lean_ctor_get(x_34, 0); +lean_inc(x_45); +lean_dec(x_34); +x_46 = lean_unsigned_to_nat(0u); +x_47 = lean_nat_dec_eq(x_45, x_46); +if (x_47 == 0) +{ +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; +x_48 = lean_unsigned_to_nat(1u); +x_49 = lean_nat_sub(x_45, x_48); +lean_dec(x_45); +x_50 = lean_box(0); +x_51 = l_Lean_mkNatLit(x_49); +lean_ctor_set(x_19, 0, x_51); +lean_ctor_set(x_11, 1, x_50); +x_52 = l_List_mapM_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandNatValuePattern___spec__1___closed__3; +x_53 = lean_alloc_ctor(2, 4, 0); +lean_ctor_set(x_53, 0, x_52); +lean_ctor_set(x_53, 1, x_50); +lean_ctor_set(x_53, 2, x_50); +lean_ctor_set(x_53, 3, x_11); +lean_ctor_set(x_1, 1, x_29); +lean_ctor_set(x_1, 0, x_53); +lean_ctor_set(x_10, 4, x_1); +x_54 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_54, 0, x_10); +lean_ctor_set(x_54, 1, x_2); +x_1 = x_21; +x_2 = x_54; +x_7 = x_44; +goto _start; +} +else +{ +lean_object* x_56; +lean_dec(x_45); +lean_free_object(x_19); +x_56 = l_List_mapM_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandNatValuePattern___spec__1___closed__6; +lean_ctor_set(x_11, 0, x_56); +lean_ctor_set(x_1, 1, x_2); +{ +lean_object* _tmp_0 = x_21; +lean_object* _tmp_1 = x_1; +lean_object* _tmp_6 = x_44; +x_1 = _tmp_0; +x_2 = _tmp_1; +x_7 = _tmp_6; +} +goto _start; +} +} +else +{ +lean_object* x_58; lean_object* x_59; lean_object* x_60; uint8_t x_61; +lean_dec(x_10); +x_58 = lean_ctor_get(x_33, 1); +lean_inc(x_58); +lean_dec(x_33); +x_59 = lean_ctor_get(x_34, 0); +lean_inc(x_59); +lean_dec(x_34); +x_60 = lean_unsigned_to_nat(0u); +x_61 = lean_nat_dec_eq(x_59, x_60); +if (x_61 == 0) +{ +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; +x_62 = lean_unsigned_to_nat(1u); +x_63 = lean_nat_sub(x_59, x_62); +lean_dec(x_59); +x_64 = lean_box(0); +x_65 = l_Lean_mkNatLit(x_63); +lean_ctor_set(x_19, 0, x_65); +lean_ctor_set(x_11, 1, x_64); +x_66 = l_List_mapM_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandNatValuePattern___spec__1___closed__3; +x_67 = lean_alloc_ctor(2, 4, 0); +lean_ctor_set(x_67, 0, x_66); +lean_ctor_set(x_67, 1, x_64); +lean_ctor_set(x_67, 2, x_64); +lean_ctor_set(x_67, 3, x_11); +lean_ctor_set(x_1, 1, x_29); +lean_ctor_set(x_1, 0, x_67); +x_68 = lean_alloc_ctor(0, 6, 0); +lean_ctor_set(x_68, 0, x_23); +lean_ctor_set(x_68, 1, x_24); +lean_ctor_set(x_68, 2, x_25); +lean_ctor_set(x_68, 3, x_26); +lean_ctor_set(x_68, 4, x_1); +lean_ctor_set(x_68, 5, x_27); +x_69 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_69, 0, x_68); +lean_ctor_set(x_69, 1, x_2); +x_1 = x_21; +x_2 = x_69; +x_7 = x_58; +goto _start; +} +else +{ +lean_object* x_71; lean_object* x_72; +lean_dec(x_59); +lean_free_object(x_19); +x_71 = l_List_mapM_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandNatValuePattern___spec__1___closed__6; +lean_ctor_set(x_11, 0, x_71); +x_72 = lean_alloc_ctor(0, 6, 0); +lean_ctor_set(x_72, 0, x_23); +lean_ctor_set(x_72, 1, x_24); +lean_ctor_set(x_72, 2, x_25); +lean_ctor_set(x_72, 3, x_26); +lean_ctor_set(x_72, 4, x_11); +lean_ctor_set(x_72, 5, x_27); +lean_ctor_set(x_1, 1, x_2); +lean_ctor_set(x_1, 0, x_72); +{ +lean_object* _tmp_0 = x_21; +lean_object* _tmp_1 = x_1; +lean_object* _tmp_6 = x_58; +x_1 = _tmp_0; +x_2 = _tmp_1; +x_7 = _tmp_6; +} +goto _start; +} +} +} +} +else +{ +uint8_t x_74; +lean_free_object(x_19); +lean_free_object(x_11); +lean_dec(x_29); +lean_dec(x_27); +lean_dec(x_26); +lean_dec(x_25); +lean_dec(x_24); +lean_dec(x_23); +lean_free_object(x_1); +lean_dec(x_21); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_74 = !lean_is_exclusive(x_33); +if (x_74 == 0) +{ +return x_33; +} +else +{ +lean_object* x_75; lean_object* x_76; lean_object* x_77; +x_75 = lean_ctor_get(x_33, 0); +x_76 = lean_ctor_get(x_33, 1); +lean_inc(x_76); +lean_inc(x_75); +lean_dec(x_33); +x_77 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_77, 0, x_75); +lean_ctor_set(x_77, 1, x_76); +return x_77; +} +} +} +else +{ +lean_object* x_78; lean_object* x_79; +x_78 = lean_ctor_get(x_19, 0); +lean_inc(x_78); +lean_dec(x_19); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +x_79 = l_Lean_Meta_getNatValue_x3f(x_78, x_3, x_4, x_5, x_6, x_7); +if (lean_obj_tag(x_79) == 0) +{ +lean_object* x_80; +x_80 = lean_ctor_get(x_79, 0); +lean_inc(x_80); +if (lean_obj_tag(x_80) == 0) +{ +lean_object* x_81; +lean_dec(x_29); +lean_dec(x_27); +lean_dec(x_26); +lean_dec(x_25); +lean_dec(x_24); +lean_dec(x_23); +lean_free_object(x_1); +x_81 = lean_ctor_get(x_79, 1); +lean_inc(x_81); +lean_dec(x_79); +lean_ctor_set(x_11, 1, x_2); +lean_ctor_set(x_11, 0, x_10); +x_1 = x_21; +x_2 = x_11; +x_7 = x_81; +goto _start; +} +else +{ +lean_object* x_83; lean_object* x_84; lean_object* x_85; lean_object* x_86; uint8_t x_87; +if (lean_is_exclusive(x_10)) { + lean_ctor_release(x_10, 0); + lean_ctor_release(x_10, 1); + lean_ctor_release(x_10, 2); + lean_ctor_release(x_10, 3); + lean_ctor_release(x_10, 4); + lean_ctor_release(x_10, 5); + x_83 = x_10; +} else { + lean_dec_ref(x_10); + x_83 = lean_box(0); +} +x_84 = lean_ctor_get(x_79, 1); +lean_inc(x_84); +lean_dec(x_79); +x_85 = lean_ctor_get(x_80, 0); +lean_inc(x_85); +lean_dec(x_80); +x_86 = lean_unsigned_to_nat(0u); +x_87 = lean_nat_dec_eq(x_85, x_86); +if (x_87 == 0) +{ +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; +x_88 = lean_unsigned_to_nat(1u); +x_89 = lean_nat_sub(x_85, x_88); +lean_dec(x_85); +x_90 = lean_box(0); +x_91 = l_Lean_mkNatLit(x_89); +x_92 = lean_alloc_ctor(3, 1, 0); +lean_ctor_set(x_92, 0, x_91); +lean_ctor_set(x_11, 1, x_90); +lean_ctor_set(x_11, 0, x_92); +x_93 = l_List_mapM_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandNatValuePattern___spec__1___closed__3; +x_94 = lean_alloc_ctor(2, 4, 0); +lean_ctor_set(x_94, 0, x_93); +lean_ctor_set(x_94, 1, x_90); +lean_ctor_set(x_94, 2, x_90); +lean_ctor_set(x_94, 3, x_11); +lean_ctor_set(x_1, 1, x_29); +lean_ctor_set(x_1, 0, x_94); +if (lean_is_scalar(x_83)) { + x_95 = lean_alloc_ctor(0, 6, 0); +} else { + x_95 = x_83; +} +lean_ctor_set(x_95, 0, x_23); +lean_ctor_set(x_95, 1, x_24); +lean_ctor_set(x_95, 2, x_25); +lean_ctor_set(x_95, 3, x_26); +lean_ctor_set(x_95, 4, x_1); +lean_ctor_set(x_95, 5, x_27); +x_96 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_96, 0, x_95); +lean_ctor_set(x_96, 1, x_2); +x_1 = x_21; +x_2 = x_96; +x_7 = x_84; +goto _start; +} +else +{ +lean_object* x_98; lean_object* x_99; +lean_dec(x_85); +x_98 = l_List_mapM_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandNatValuePattern___spec__1___closed__6; +lean_ctor_set(x_11, 0, x_98); +if (lean_is_scalar(x_83)) { + x_99 = lean_alloc_ctor(0, 6, 0); +} else { + x_99 = x_83; +} +lean_ctor_set(x_99, 0, x_23); +lean_ctor_set(x_99, 1, x_24); +lean_ctor_set(x_99, 2, x_25); +lean_ctor_set(x_99, 3, x_26); +lean_ctor_set(x_99, 4, x_11); +lean_ctor_set(x_99, 5, x_27); +lean_ctor_set(x_1, 1, x_2); +lean_ctor_set(x_1, 0, x_99); +{ +lean_object* _tmp_0 = x_21; +lean_object* _tmp_1 = x_1; +lean_object* _tmp_6 = x_84; +x_1 = _tmp_0; +x_2 = _tmp_1; +x_7 = _tmp_6; +} +goto _start; +} +} +} +else +{ +lean_object* x_101; lean_object* x_102; lean_object* x_103; lean_object* x_104; +lean_free_object(x_11); +lean_dec(x_29); +lean_dec(x_27); +lean_dec(x_26); +lean_dec(x_25); +lean_dec(x_24); +lean_dec(x_23); +lean_free_object(x_1); +lean_dec(x_21); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_101 = lean_ctor_get(x_79, 0); +lean_inc(x_101); +x_102 = lean_ctor_get(x_79, 1); +lean_inc(x_102); +if (lean_is_exclusive(x_79)) { + lean_ctor_release(x_79, 0); + lean_ctor_release(x_79, 1); + x_103 = x_79; +} else { + lean_dec_ref(x_79); + x_103 = lean_box(0); +} +if (lean_is_scalar(x_103)) { + x_104 = lean_alloc_ctor(1, 2, 0); +} else { + x_104 = x_103; +} +lean_ctor_set(x_104, 0, x_101); +lean_ctor_set(x_104, 1, x_102); +return x_104; +} +} +} +else +{ +lean_object* x_105; lean_object* x_106; lean_object* x_107; lean_object* x_108; +x_105 = lean_ctor_get(x_11, 1); +lean_inc(x_105); +lean_dec(x_11); +x_106 = lean_ctor_get(x_19, 0); +lean_inc(x_106); +if (lean_is_exclusive(x_19)) { + lean_ctor_release(x_19, 0); + x_107 = x_19; +} else { + lean_dec_ref(x_19); + x_107 = lean_box(0); +} +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +x_108 = l_Lean_Meta_getNatValue_x3f(x_106, x_3, x_4, x_5, x_6, x_7); +if (lean_obj_tag(x_108) == 0) +{ +lean_object* x_109; +x_109 = lean_ctor_get(x_108, 0); +lean_inc(x_109); +if (lean_obj_tag(x_109) == 0) +{ +lean_object* x_110; lean_object* x_111; +lean_dec(x_107); +lean_dec(x_105); +lean_dec(x_27); +lean_dec(x_26); +lean_dec(x_25); +lean_dec(x_24); +lean_dec(x_23); +lean_free_object(x_1); +x_110 = lean_ctor_get(x_108, 1); +lean_inc(x_110); +lean_dec(x_108); +x_111 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_111, 0, x_10); +lean_ctor_set(x_111, 1, x_2); +x_1 = x_21; +x_2 = x_111; +x_7 = x_110; +goto _start; +} +else +{ +lean_object* x_113; lean_object* x_114; lean_object* x_115; lean_object* x_116; uint8_t x_117; +if (lean_is_exclusive(x_10)) { + lean_ctor_release(x_10, 0); + lean_ctor_release(x_10, 1); + lean_ctor_release(x_10, 2); + lean_ctor_release(x_10, 3); + lean_ctor_release(x_10, 4); + lean_ctor_release(x_10, 5); + x_113 = x_10; +} else { + lean_dec_ref(x_10); + x_113 = lean_box(0); +} +x_114 = lean_ctor_get(x_108, 1); +lean_inc(x_114); +lean_dec(x_108); +x_115 = lean_ctor_get(x_109, 0); +lean_inc(x_115); +lean_dec(x_109); +x_116 = lean_unsigned_to_nat(0u); +x_117 = lean_nat_dec_eq(x_115, x_116); +if (x_117 == 0) +{ +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; +x_118 = lean_unsigned_to_nat(1u); +x_119 = lean_nat_sub(x_115, x_118); +lean_dec(x_115); +x_120 = lean_box(0); +x_121 = l_Lean_mkNatLit(x_119); +if (lean_is_scalar(x_107)) { + x_122 = lean_alloc_ctor(3, 1, 0); +} else { + x_122 = x_107; +} +lean_ctor_set(x_122, 0, x_121); +x_123 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_123, 0, x_122); +lean_ctor_set(x_123, 1, x_120); +x_124 = l_List_mapM_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandNatValuePattern___spec__1___closed__3; +x_125 = lean_alloc_ctor(2, 4, 0); +lean_ctor_set(x_125, 0, x_124); +lean_ctor_set(x_125, 1, x_120); +lean_ctor_set(x_125, 2, x_120); +lean_ctor_set(x_125, 3, x_123); +lean_ctor_set(x_1, 1, x_105); +lean_ctor_set(x_1, 0, x_125); +if (lean_is_scalar(x_113)) { + x_126 = lean_alloc_ctor(0, 6, 0); +} else { + x_126 = x_113; +} +lean_ctor_set(x_126, 0, x_23); +lean_ctor_set(x_126, 1, x_24); +lean_ctor_set(x_126, 2, x_25); +lean_ctor_set(x_126, 3, x_26); +lean_ctor_set(x_126, 4, x_1); +lean_ctor_set(x_126, 5, x_27); +x_127 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_127, 0, x_126); +lean_ctor_set(x_127, 1, x_2); +x_1 = x_21; +x_2 = x_127; +x_7 = x_114; +goto _start; +} +else +{ +lean_object* x_129; lean_object* x_130; lean_object* x_131; +lean_dec(x_115); +lean_dec(x_107); +x_129 = l_List_mapM_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandNatValuePattern___spec__1___closed__6; +x_130 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_130, 0, x_129); +lean_ctor_set(x_130, 1, x_105); +if (lean_is_scalar(x_113)) { + x_131 = lean_alloc_ctor(0, 6, 0); +} else { + x_131 = x_113; +} +lean_ctor_set(x_131, 0, x_23); +lean_ctor_set(x_131, 1, x_24); +lean_ctor_set(x_131, 2, x_25); +lean_ctor_set(x_131, 3, x_26); +lean_ctor_set(x_131, 4, x_130); +lean_ctor_set(x_131, 5, x_27); +lean_ctor_set(x_1, 1, x_2); +lean_ctor_set(x_1, 0, x_131); +{ +lean_object* _tmp_0 = x_21; +lean_object* _tmp_1 = x_1; +lean_object* _tmp_6 = x_114; +x_1 = _tmp_0; +x_2 = _tmp_1; +x_7 = _tmp_6; +} +goto _start; +} +} +} +else +{ +lean_object* x_133; lean_object* x_134; lean_object* x_135; lean_object* x_136; +lean_dec(x_107); +lean_dec(x_105); +lean_dec(x_27); +lean_dec(x_26); +lean_dec(x_25); +lean_dec(x_24); +lean_dec(x_23); +lean_free_object(x_1); +lean_dec(x_21); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_133 = lean_ctor_get(x_108, 0); +lean_inc(x_133); +x_134 = lean_ctor_get(x_108, 1); +lean_inc(x_134); +if (lean_is_exclusive(x_108)) { + lean_ctor_release(x_108, 0); + lean_ctor_release(x_108, 1); + x_135 = x_108; +} else { + lean_dec_ref(x_108); + 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_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; +x_137 = lean_ctor_get(x_1, 1); +lean_inc(x_137); +lean_dec(x_1); +x_138 = lean_ctor_get(x_10, 0); +lean_inc(x_138); +x_139 = lean_ctor_get(x_10, 1); +lean_inc(x_139); +x_140 = lean_ctor_get(x_10, 2); +lean_inc(x_140); +x_141 = lean_ctor_get(x_10, 3); +lean_inc(x_141); +x_142 = lean_ctor_get(x_10, 5); +lean_inc(x_142); +x_143 = lean_ctor_get(x_11, 1); +lean_inc(x_143); +if (lean_is_exclusive(x_11)) { + lean_ctor_release(x_11, 0); + lean_ctor_release(x_11, 1); + x_144 = x_11; +} else { + lean_dec_ref(x_11); + x_144 = lean_box(0); +} +x_145 = lean_ctor_get(x_19, 0); +lean_inc(x_145); +if (lean_is_exclusive(x_19)) { + lean_ctor_release(x_19, 0); + x_146 = x_19; +} else { + lean_dec_ref(x_19); + x_146 = lean_box(0); +} +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +x_147 = l_Lean_Meta_getNatValue_x3f(x_145, x_3, x_4, x_5, x_6, x_7); +if (lean_obj_tag(x_147) == 0) +{ +lean_object* x_148; +x_148 = lean_ctor_get(x_147, 0); +lean_inc(x_148); +if (lean_obj_tag(x_148) == 0) +{ +lean_object* x_149; lean_object* x_150; +lean_dec(x_146); +lean_dec(x_143); +lean_dec(x_142); +lean_dec(x_141); +lean_dec(x_140); +lean_dec(x_139); +lean_dec(x_138); +x_149 = lean_ctor_get(x_147, 1); +lean_inc(x_149); +lean_dec(x_147); +if (lean_is_scalar(x_144)) { + x_150 = lean_alloc_ctor(1, 2, 0); +} else { + x_150 = x_144; +} +lean_ctor_set(x_150, 0, x_10); +lean_ctor_set(x_150, 1, x_2); +x_1 = x_137; +x_2 = x_150; +x_7 = x_149; +goto _start; +} +else +{ +lean_object* x_152; lean_object* x_153; lean_object* x_154; lean_object* x_155; uint8_t x_156; +if (lean_is_exclusive(x_10)) { + lean_ctor_release(x_10, 0); + lean_ctor_release(x_10, 1); + lean_ctor_release(x_10, 2); + lean_ctor_release(x_10, 3); + lean_ctor_release(x_10, 4); + lean_ctor_release(x_10, 5); + x_152 = x_10; +} else { + lean_dec_ref(x_10); + x_152 = lean_box(0); +} +x_153 = lean_ctor_get(x_147, 1); +lean_inc(x_153); +lean_dec(x_147); +x_154 = lean_ctor_get(x_148, 0); +lean_inc(x_154); +lean_dec(x_148); +x_155 = lean_unsigned_to_nat(0u); +x_156 = lean_nat_dec_eq(x_154, x_155); +if (x_156 == 0) +{ +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; +x_157 = lean_unsigned_to_nat(1u); +x_158 = lean_nat_sub(x_154, x_157); +lean_dec(x_154); +x_159 = lean_box(0); +x_160 = l_Lean_mkNatLit(x_158); +if (lean_is_scalar(x_146)) { + x_161 = lean_alloc_ctor(3, 1, 0); +} else { + x_161 = x_146; +} +lean_ctor_set(x_161, 0, x_160); +if (lean_is_scalar(x_144)) { + x_162 = lean_alloc_ctor(1, 2, 0); +} else { + x_162 = x_144; +} +lean_ctor_set(x_162, 0, x_161); +lean_ctor_set(x_162, 1, x_159); +x_163 = l_List_mapM_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandNatValuePattern___spec__1___closed__3; +x_164 = lean_alloc_ctor(2, 4, 0); +lean_ctor_set(x_164, 0, x_163); +lean_ctor_set(x_164, 1, x_159); +lean_ctor_set(x_164, 2, x_159); +lean_ctor_set(x_164, 3, x_162); +x_165 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_165, 0, x_164); +lean_ctor_set(x_165, 1, x_143); +if (lean_is_scalar(x_152)) { + x_166 = lean_alloc_ctor(0, 6, 0); +} else { + x_166 = x_152; +} +lean_ctor_set(x_166, 0, x_138); +lean_ctor_set(x_166, 1, x_139); +lean_ctor_set(x_166, 2, x_140); +lean_ctor_set(x_166, 3, x_141); +lean_ctor_set(x_166, 4, x_165); +lean_ctor_set(x_166, 5, x_142); +x_167 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_167, 0, x_166); +lean_ctor_set(x_167, 1, x_2); +x_1 = x_137; +x_2 = x_167; +x_7 = x_153; +goto _start; +} +else +{ +lean_object* x_169; lean_object* x_170; lean_object* x_171; lean_object* x_172; +lean_dec(x_154); +lean_dec(x_146); +x_169 = l_List_mapM_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandNatValuePattern___spec__1___closed__6; +if (lean_is_scalar(x_144)) { + x_170 = lean_alloc_ctor(1, 2, 0); +} else { + x_170 = x_144; +} +lean_ctor_set(x_170, 0, x_169); +lean_ctor_set(x_170, 1, x_143); +if (lean_is_scalar(x_152)) { + x_171 = lean_alloc_ctor(0, 6, 0); +} else { + x_171 = x_152; +} +lean_ctor_set(x_171, 0, x_138); +lean_ctor_set(x_171, 1, x_139); +lean_ctor_set(x_171, 2, x_140); +lean_ctor_set(x_171, 3, x_141); +lean_ctor_set(x_171, 4, x_170); +lean_ctor_set(x_171, 5, x_142); +x_172 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_172, 0, x_171); +lean_ctor_set(x_172, 1, x_2); +x_1 = x_137; +x_2 = x_172; +x_7 = x_153; +goto _start; +} +} +} +else +{ +lean_object* x_174; lean_object* x_175; lean_object* x_176; lean_object* x_177; +lean_dec(x_146); +lean_dec(x_144); +lean_dec(x_143); +lean_dec(x_142); +lean_dec(x_141); +lean_dec(x_140); +lean_dec(x_139); +lean_dec(x_138); +lean_dec(x_137); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_174 = lean_ctor_get(x_147, 0); +lean_inc(x_174); +x_175 = lean_ctor_get(x_147, 1); +lean_inc(x_175); +if (lean_is_exclusive(x_147)) { + lean_ctor_release(x_147, 0); + lean_ctor_release(x_147, 1); + x_176 = x_147; +} else { + lean_dec_ref(x_147); + x_176 = lean_box(0); +} +if (lean_is_scalar(x_176)) { + x_177 = lean_alloc_ctor(1, 2, 0); +} else { + x_177 = x_176; +} +lean_ctor_set(x_177, 0, x_174); +lean_ctor_set(x_177, 1, x_175); +return x_177; +} +} +} +else +{ +uint8_t x_178; +lean_dec(x_19); +x_178 = !lean_is_exclusive(x_11); +if (x_178 == 0) +{ +lean_object* x_179; lean_object* x_180; lean_object* x_181; +x_179 = lean_ctor_get(x_11, 1); +lean_dec(x_179); +x_180 = lean_ctor_get(x_11, 0); +lean_dec(x_180); +x_181 = lean_ctor_get(x_1, 1); +lean_inc(x_181); +lean_dec(x_1); +lean_ctor_set(x_11, 1, x_2); +lean_ctor_set(x_11, 0, x_10); +x_1 = x_181; +x_2 = x_11; +goto _start; +} +else +{ +lean_object* x_183; lean_object* x_184; +lean_dec(x_11); +x_183 = lean_ctor_get(x_1, 1); +lean_inc(x_183); +lean_dec(x_1); +x_184 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_184, 0, x_10); +lean_ctor_set(x_184, 1, x_2); +x_1 = x_183; +x_2 = x_184; +goto _start; +} +} +} +} +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandNatValuePattern(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_7; +x_7 = !lean_is_exclusive(x_1); +if (x_7 == 0) +{ +lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; +x_8 = lean_ctor_get(x_1, 0); +x_9 = lean_ctor_get(x_1, 1); +x_10 = lean_ctor_get(x_1, 2); +x_11 = lean_ctor_get(x_1, 3); +x_12 = lean_box(0); +x_13 = l_List_mapM_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandNatValuePattern___spec__1(x_10, x_12, x_2, x_3, x_4, x_5, x_6); +if (lean_obj_tag(x_13) == 0) { uint8_t x_14; x_14 = !lean_is_exclusive(x_13); @@ -19465,620 +21004,2725 @@ if (x_14 == 0) { lean_object* x_15; x_15 = lean_ctor_get(x_13, 0); -if (lean_obj_tag(x_15) == 9) -{ -lean_object* x_16; -x_16 = lean_ctor_get(x_15, 0); -lean_inc(x_16); -lean_dec(x_15); -if (lean_obj_tag(x_16) == 0) -{ -uint8_t x_17; -x_17 = !lean_is_exclusive(x_1); -if (x_17 == 0) -{ -lean_object* x_18; lean_object* x_19; uint8_t x_20; -x_18 = lean_ctor_get(x_1, 1); -x_19 = lean_ctor_get(x_1, 0); -lean_dec(x_19); -x_20 = !lean_is_exclusive(x_5); -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_5, 1); -x_22 = lean_ctor_get(x_5, 0); -lean_dec(x_22); -x_23 = lean_ctor_get(x_16, 0); -lean_inc(x_23); -lean_dec(x_16); -x_24 = lean_unsigned_to_nat(0u); -x_25 = lean_nat_dec_eq(x_23, x_24); -if (x_25 == 0) -{ -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; -x_26 = lean_unsigned_to_nat(1u); -x_27 = lean_nat_sub(x_23, x_26); -lean_dec(x_23); -x_28 = lean_ctor_get(x_4, 0); -lean_inc(x_28); -x_29 = lean_ctor_get(x_4, 1); -lean_inc(x_29); -x_30 = lean_ctor_get(x_4, 2); -lean_inc(x_30); -x_31 = lean_ctor_get(x_4, 3); -lean_inc(x_31); -x_32 = lean_box(0); -x_33 = l_Lean_mkRawNatLit(x_27); -lean_ctor_set(x_13, 0, x_33); -lean_ctor_set(x_5, 1, x_32); -x_34 = l_List_mapTR_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandNatValuePattern___spec__1___closed__3; -x_35 = lean_alloc_ctor(2, 4, 0); -lean_ctor_set(x_35, 0, x_34); -lean_ctor_set(x_35, 1, x_32); -lean_ctor_set(x_35, 2, x_32); -lean_ctor_set(x_35, 3, x_5); -lean_ctor_set(x_1, 1, x_21); -lean_ctor_set(x_1, 0, x_35); -x_36 = lean_ctor_get(x_4, 5); -lean_inc(x_36); -lean_dec(x_4); -x_37 = lean_alloc_ctor(0, 6, 0); -lean_ctor_set(x_37, 0, x_28); -lean_ctor_set(x_37, 1, x_29); -lean_ctor_set(x_37, 2, x_30); -lean_ctor_set(x_37, 3, x_31); -lean_ctor_set(x_37, 4, x_1); -lean_ctor_set(x_37, 5, x_36); -x_38 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_38, 0, x_37); -lean_ctor_set(x_38, 1, x_2); -x_1 = x_18; -x_2 = x_38; -goto _start; +lean_ctor_set(x_1, 2, x_15); +lean_ctor_set(x_13, 0, x_1); +return x_13; } else { -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_dec(x_23); -lean_free_object(x_13); -x_40 = lean_ctor_get(x_4, 0); -lean_inc(x_40); -x_41 = lean_ctor_get(x_4, 1); -lean_inc(x_41); -x_42 = lean_ctor_get(x_4, 2); -lean_inc(x_42); -x_43 = lean_ctor_get(x_4, 3); -lean_inc(x_43); -x_44 = l_List_mapTR_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandNatValuePattern___spec__1___closed__6; -lean_ctor_set(x_5, 0, x_44); -x_45 = lean_ctor_get(x_4, 5); -lean_inc(x_45); -lean_dec(x_4); -x_46 = lean_alloc_ctor(0, 6, 0); -lean_ctor_set(x_46, 0, x_40); -lean_ctor_set(x_46, 1, x_41); -lean_ctor_set(x_46, 2, x_42); -lean_ctor_set(x_46, 3, x_43); -lean_ctor_set(x_46, 4, x_5); -lean_ctor_set(x_46, 5, x_45); -lean_ctor_set(x_1, 1, x_2); -lean_ctor_set(x_1, 0, x_46); +lean_object* x_16; lean_object* x_17; lean_object* x_18; +x_16 = lean_ctor_get(x_13, 0); +x_17 = lean_ctor_get(x_13, 1); +lean_inc(x_17); +lean_inc(x_16); +lean_dec(x_13); +lean_ctor_set(x_1, 2, x_16); +x_18 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_18, 0, x_1); +lean_ctor_set(x_18, 1, x_17); +return x_18; +} +} +else { -lean_object* _tmp_0 = x_18; +uint8_t x_19; +lean_free_object(x_1); +lean_dec(x_11); +lean_dec(x_9); +lean_dec(x_8); +x_19 = !lean_is_exclusive(x_13); +if (x_19 == 0) +{ +return x_13; +} +else +{ +lean_object* x_20; lean_object* x_21; lean_object* x_22; +x_20 = lean_ctor_get(x_13, 0); +x_21 = lean_ctor_get(x_13, 1); +lean_inc(x_21); +lean_inc(x_20); +lean_dec(x_13); +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; +} +} +} +else +{ +lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; +x_23 = lean_ctor_get(x_1, 0); +x_24 = lean_ctor_get(x_1, 1); +x_25 = lean_ctor_get(x_1, 2); +x_26 = lean_ctor_get(x_1, 3); +lean_inc(x_26); +lean_inc(x_25); +lean_inc(x_24); +lean_inc(x_23); +lean_dec(x_1); +x_27 = lean_box(0); +x_28 = l_List_mapM_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandNatValuePattern___spec__1(x_25, x_27, x_2, x_3, x_4, x_5, x_6); +if (lean_obj_tag(x_28) == 0) +{ +lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; +x_29 = lean_ctor_get(x_28, 0); +lean_inc(x_29); +x_30 = lean_ctor_get(x_28, 1); +lean_inc(x_30); +if (lean_is_exclusive(x_28)) { + lean_ctor_release(x_28, 0); + lean_ctor_release(x_28, 1); + x_31 = x_28; +} else { + lean_dec_ref(x_28); + x_31 = lean_box(0); +} +x_32 = lean_alloc_ctor(0, 4, 0); +lean_ctor_set(x_32, 0, x_23); +lean_ctor_set(x_32, 1, x_24); +lean_ctor_set(x_32, 2, x_29); +lean_ctor_set(x_32, 3, x_26); +if (lean_is_scalar(x_31)) { + x_33 = lean_alloc_ctor(0, 2, 0); +} else { + x_33 = x_31; +} +lean_ctor_set(x_33, 0, x_32); +lean_ctor_set(x_33, 1, x_30); +return x_33; +} +else +{ +lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; +lean_dec(x_26); +lean_dec(x_24); +lean_dec(x_23); +x_34 = lean_ctor_get(x_28, 0); +lean_inc(x_34); +x_35 = lean_ctor_get(x_28, 1); +lean_inc(x_35); +if (lean_is_exclusive(x_28)) { + lean_ctor_release(x_28, 0); + lean_ctor_release(x_28, 1); + x_36 = x_28; +} else { + lean_dec_ref(x_28); + x_36 = lean_box(0); +} +if (lean_is_scalar(x_36)) { + x_37 = lean_alloc_ctor(1, 2, 0); +} else { + x_37 = x_36; +} +lean_ctor_set(x_37, 0, x_34); +lean_ctor_set(x_37, 1, x_35); +return x_37; +} +} +} +} +static lean_object* _init_l_List_mapM_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandIntValuePattern___spec__1___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_List_mapM_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandIntValuePattern___spec__1___closed__2() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("Int", 3); +return x_1; +} +} +static lean_object* _init_l_List_mapM_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandIntValuePattern___spec__1___closed__3() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("negSucc", 7); +return x_1; +} +} +static lean_object* _init_l_List_mapM_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandIntValuePattern___spec__1___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_List_mapM_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandIntValuePattern___spec__1___closed__2; +x_2 = l_List_mapM_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandIntValuePattern___spec__1___closed__3; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_List_mapM_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandIntValuePattern___spec__1___closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = lean_unsigned_to_nat(1u); +x_2 = lean_nat_to_int(x_1); +return x_2; +} +} +static lean_object* _init_l_List_mapM_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandIntValuePattern___spec__1___closed__6() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("ofNat", 5); +return x_1; +} +} +static lean_object* _init_l_List_mapM_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandIntValuePattern___spec__1___closed__7() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_List_mapM_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandIntValuePattern___spec__1___closed__2; +x_2 = l_List_mapM_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandIntValuePattern___spec__1___closed__6; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; +} +} +LEAN_EXPORT lean_object* l_List_mapM_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandIntValuePattern___spec__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) { +_start: +{ +if (lean_obj_tag(x_1) == 0) +{ +lean_object* x_8; lean_object* x_9; +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +x_8 = l_List_reverse___rarg(x_2); +x_9 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_9, 0, x_8); +lean_ctor_set(x_9, 1, x_7); +return x_9; +} +else +{ +lean_object* x_10; lean_object* x_11; +x_10 = lean_ctor_get(x_1, 0); +lean_inc(x_10); +x_11 = lean_ctor_get(x_10, 4); +lean_inc(x_11); +if (lean_obj_tag(x_11) == 0) +{ +uint8_t x_12; +x_12 = !lean_is_exclusive(x_1); +if (x_12 == 0) +{ +lean_object* x_13; lean_object* x_14; +x_13 = lean_ctor_get(x_1, 1); +x_14 = lean_ctor_get(x_1, 0); +lean_dec(x_14); +lean_ctor_set(x_1, 1, x_2); +{ +lean_object* _tmp_0 = x_13; lean_object* _tmp_1 = x_1; x_1 = _tmp_0; x_2 = _tmp_1; } goto _start; } +else +{ +lean_object* x_16; lean_object* x_17; +x_16 = lean_ctor_get(x_1, 1); +lean_inc(x_16); +lean_dec(x_1); +x_17 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_17, 0, x_10); +lean_ctor_set(x_17, 1, x_2); +x_1 = x_16; +x_2 = x_17; +goto _start; +} } else { -lean_object* x_48; lean_object* x_49; lean_object* x_50; uint8_t x_51; -x_48 = lean_ctor_get(x_5, 1); -lean_inc(x_48); -lean_dec(x_5); -x_49 = lean_ctor_get(x_16, 0); -lean_inc(x_49); -lean_dec(x_16); -x_50 = lean_unsigned_to_nat(0u); -x_51 = lean_nat_dec_eq(x_49, x_50); -if (x_51 == 0) +lean_object* x_19; +x_19 = lean_ctor_get(x_11, 0); +lean_inc(x_19); +if (lean_obj_tag(x_19) == 3) { -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; -x_52 = lean_unsigned_to_nat(1u); -x_53 = lean_nat_sub(x_49, x_52); -lean_dec(x_49); -x_54 = lean_ctor_get(x_4, 0); -lean_inc(x_54); -x_55 = lean_ctor_get(x_4, 1); -lean_inc(x_55); -x_56 = lean_ctor_get(x_4, 2); -lean_inc(x_56); -x_57 = lean_ctor_get(x_4, 3); -lean_inc(x_57); +uint8_t x_20; +x_20 = !lean_is_exclusive(x_1); +if (x_20 == 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; uint8_t x_28; +x_21 = lean_ctor_get(x_1, 1); +x_22 = lean_ctor_get(x_1, 0); +lean_dec(x_22); +x_23 = lean_ctor_get(x_10, 0); +lean_inc(x_23); +x_24 = lean_ctor_get(x_10, 1); +lean_inc(x_24); +x_25 = lean_ctor_get(x_10, 2); +lean_inc(x_25); +x_26 = lean_ctor_get(x_10, 3); +lean_inc(x_26); +x_27 = lean_ctor_get(x_10, 5); +lean_inc(x_27); +x_28 = !lean_is_exclusive(x_11); +if (x_28 == 0) +{ +lean_object* x_29; lean_object* x_30; uint8_t x_31; +x_29 = lean_ctor_get(x_11, 1); +x_30 = lean_ctor_get(x_11, 0); +lean_dec(x_30); +x_31 = !lean_is_exclusive(x_19); +if (x_31 == 0) +{ +lean_object* x_32; lean_object* x_33; +x_32 = lean_ctor_get(x_19, 0); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +x_33 = l_Lean_Meta_getIntValue_x3f(x_32, x_3, x_4, x_5, x_6, x_7); +lean_dec(x_32); +if (lean_obj_tag(x_33) == 0) +{ +lean_object* x_34; +x_34 = lean_ctor_get(x_33, 0); +lean_inc(x_34); +if (lean_obj_tag(x_34) == 0) +{ +lean_object* x_35; +lean_free_object(x_19); +lean_dec(x_29); +lean_dec(x_27); +lean_dec(x_26); +lean_dec(x_25); +lean_dec(x_24); +lean_dec(x_23); +lean_free_object(x_1); +x_35 = lean_ctor_get(x_33, 1); +lean_inc(x_35); +lean_dec(x_33); +lean_ctor_set(x_11, 1, x_2); +lean_ctor_set(x_11, 0, x_10); +x_1 = x_21; +x_2 = x_11; +x_7 = x_35; +goto _start; +} +else +{ +uint8_t x_37; +x_37 = !lean_is_exclusive(x_10); +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; lean_object* x_44; lean_object* x_45; lean_object* x_46; uint8_t x_47; +x_38 = lean_ctor_get(x_10, 5); +lean_dec(x_38); +x_39 = lean_ctor_get(x_10, 4); +lean_dec(x_39); +x_40 = lean_ctor_get(x_10, 3); +lean_dec(x_40); +x_41 = lean_ctor_get(x_10, 2); +lean_dec(x_41); +x_42 = lean_ctor_get(x_10, 1); +lean_dec(x_42); +x_43 = lean_ctor_get(x_10, 0); +lean_dec(x_43); +x_44 = lean_ctor_get(x_33, 1); +lean_inc(x_44); +lean_dec(x_33); +x_45 = lean_ctor_get(x_34, 0); +lean_inc(x_45); +lean_dec(x_34); +x_46 = l_List_mapM_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandIntValuePattern___spec__1___closed__1; +x_47 = lean_int_dec_le(x_46, x_45); +if (x_47 == 0) +{ +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; +x_48 = lean_box(0); +x_49 = l_List_mapM_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandIntValuePattern___spec__1___closed__5; +x_50 = lean_int_add(x_45, x_49); +lean_dec(x_45); +x_51 = lean_int_neg(x_50); +lean_dec(x_50); +x_52 = l_Int_toNat(x_51); +lean_dec(x_51); +x_53 = l_Lean_mkNatLit(x_52); +lean_ctor_set(x_19, 0, x_53); +lean_ctor_set(x_11, 1, x_48); +x_54 = l_List_mapM_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandIntValuePattern___spec__1___closed__4; +x_55 = lean_alloc_ctor(2, 4, 0); +lean_ctor_set(x_55, 0, x_54); +lean_ctor_set(x_55, 1, x_48); +lean_ctor_set(x_55, 2, x_48); +lean_ctor_set(x_55, 3, x_11); +lean_ctor_set(x_1, 1, x_29); +lean_ctor_set(x_1, 0, x_55); +lean_ctor_set(x_10, 4, x_1); +x_56 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_56, 0, x_10); +lean_ctor_set(x_56, 1, x_2); +x_1 = x_21; +x_2 = x_56; +x_7 = x_44; +goto _start; +} +else +{ +lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; x_58 = lean_box(0); -x_59 = l_Lean_mkRawNatLit(x_53); -lean_ctor_set(x_13, 0, x_59); -x_60 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_60, 0, x_13); -lean_ctor_set(x_60, 1, x_58); -x_61 = l_List_mapTR_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandNatValuePattern___spec__1___closed__3; +x_59 = l_Int_toNat(x_45); +lean_dec(x_45); +x_60 = l_Lean_mkNatLit(x_59); +lean_ctor_set(x_19, 0, x_60); +lean_ctor_set(x_11, 1, x_58); +x_61 = l_List_mapM_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandIntValuePattern___spec__1___closed__7; x_62 = lean_alloc_ctor(2, 4, 0); lean_ctor_set(x_62, 0, x_61); lean_ctor_set(x_62, 1, x_58); lean_ctor_set(x_62, 2, x_58); -lean_ctor_set(x_62, 3, x_60); -lean_ctor_set(x_1, 1, x_48); +lean_ctor_set(x_62, 3, x_11); +lean_ctor_set(x_1, 1, x_29); lean_ctor_set(x_1, 0, x_62); -x_63 = lean_ctor_get(x_4, 5); -lean_inc(x_63); -lean_dec(x_4); -x_64 = lean_alloc_ctor(0, 6, 0); -lean_ctor_set(x_64, 0, x_54); -lean_ctor_set(x_64, 1, x_55); -lean_ctor_set(x_64, 2, x_56); -lean_ctor_set(x_64, 3, x_57); -lean_ctor_set(x_64, 4, x_1); -lean_ctor_set(x_64, 5, x_63); -x_65 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_65, 0, x_64); -lean_ctor_set(x_65, 1, x_2); -x_1 = x_18; -x_2 = x_65; +lean_ctor_set(x_10, 4, x_1); +x_63 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_63, 0, x_10); +lean_ctor_set(x_63, 1, x_2); +x_1 = x_21; +x_2 = x_63; +x_7 = x_44; +goto _start; +} +} +else +{ +lean_object* x_65; lean_object* x_66; lean_object* x_67; uint8_t x_68; +lean_dec(x_10); +x_65 = lean_ctor_get(x_33, 1); +lean_inc(x_65); +lean_dec(x_33); +x_66 = lean_ctor_get(x_34, 0); +lean_inc(x_66); +lean_dec(x_34); +x_67 = l_List_mapM_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandIntValuePattern___spec__1___closed__1; +x_68 = lean_int_dec_le(x_67, x_66); +if (x_68 == 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; lean_object* x_78; +x_69 = lean_box(0); +x_70 = l_List_mapM_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandIntValuePattern___spec__1___closed__5; +x_71 = lean_int_add(x_66, x_70); +lean_dec(x_66); +x_72 = lean_int_neg(x_71); +lean_dec(x_71); +x_73 = l_Int_toNat(x_72); +lean_dec(x_72); +x_74 = l_Lean_mkNatLit(x_73); +lean_ctor_set(x_19, 0, x_74); +lean_ctor_set(x_11, 1, x_69); +x_75 = l_List_mapM_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandIntValuePattern___spec__1___closed__4; +x_76 = lean_alloc_ctor(2, 4, 0); +lean_ctor_set(x_76, 0, x_75); +lean_ctor_set(x_76, 1, x_69); +lean_ctor_set(x_76, 2, x_69); +lean_ctor_set(x_76, 3, x_11); +lean_ctor_set(x_1, 1, x_29); +lean_ctor_set(x_1, 0, x_76); +x_77 = lean_alloc_ctor(0, 6, 0); +lean_ctor_set(x_77, 0, x_23); +lean_ctor_set(x_77, 1, x_24); +lean_ctor_set(x_77, 2, x_25); +lean_ctor_set(x_77, 3, x_26); +lean_ctor_set(x_77, 4, x_1); +lean_ctor_set(x_77, 5, x_27); +x_78 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_78, 0, x_77); +lean_ctor_set(x_78, 1, x_2); +x_1 = x_21; +x_2 = x_78; +x_7 = x_65; goto _start; } 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_dec(x_49); -lean_free_object(x_13); -x_67 = lean_ctor_get(x_4, 0); -lean_inc(x_67); -x_68 = lean_ctor_get(x_4, 1); -lean_inc(x_68); -x_69 = lean_ctor_get(x_4, 2); -lean_inc(x_69); -x_70 = lean_ctor_get(x_4, 3); -lean_inc(x_70); -x_71 = l_List_mapTR_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandNatValuePattern___spec__1___closed__6; -x_72 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_72, 0, x_71); -lean_ctor_set(x_72, 1, x_48); -x_73 = lean_ctor_get(x_4, 5); -lean_inc(x_73); -lean_dec(x_4); -x_74 = lean_alloc_ctor(0, 6, 0); -lean_ctor_set(x_74, 0, x_67); -lean_ctor_set(x_74, 1, x_68); -lean_ctor_set(x_74, 2, x_69); -lean_ctor_set(x_74, 3, x_70); -lean_ctor_set(x_74, 4, x_72); -lean_ctor_set(x_74, 5, x_73); -lean_ctor_set(x_1, 1, x_2); -lean_ctor_set(x_1, 0, x_74); +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; +x_80 = lean_box(0); +x_81 = l_Int_toNat(x_66); +lean_dec(x_66); +x_82 = l_Lean_mkNatLit(x_81); +lean_ctor_set(x_19, 0, x_82); +lean_ctor_set(x_11, 1, x_80); +x_83 = l_List_mapM_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandIntValuePattern___spec__1___closed__7; +x_84 = lean_alloc_ctor(2, 4, 0); +lean_ctor_set(x_84, 0, x_83); +lean_ctor_set(x_84, 1, x_80); +lean_ctor_set(x_84, 2, x_80); +lean_ctor_set(x_84, 3, x_11); +lean_ctor_set(x_1, 1, x_29); +lean_ctor_set(x_1, 0, x_84); +x_85 = lean_alloc_ctor(0, 6, 0); +lean_ctor_set(x_85, 0, x_23); +lean_ctor_set(x_85, 1, x_24); +lean_ctor_set(x_85, 2, x_25); +lean_ctor_set(x_85, 3, x_26); +lean_ctor_set(x_85, 4, x_1); +lean_ctor_set(x_85, 5, x_27); +x_86 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_86, 0, x_85); +lean_ctor_set(x_86, 1, x_2); +x_1 = x_21; +x_2 = x_86; +x_7 = x_65; +goto _start; +} +} +} +} +else { -lean_object* _tmp_0 = x_18; +uint8_t x_88; +lean_free_object(x_19); +lean_free_object(x_11); +lean_dec(x_29); +lean_dec(x_27); +lean_dec(x_26); +lean_dec(x_25); +lean_dec(x_24); +lean_dec(x_23); +lean_free_object(x_1); +lean_dec(x_21); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_88 = !lean_is_exclusive(x_33); +if (x_88 == 0) +{ +return x_33; +} +else +{ +lean_object* x_89; lean_object* x_90; lean_object* x_91; +x_89 = lean_ctor_get(x_33, 0); +x_90 = lean_ctor_get(x_33, 1); +lean_inc(x_90); +lean_inc(x_89); +lean_dec(x_33); +x_91 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_91, 0, x_89); +lean_ctor_set(x_91, 1, x_90); +return x_91; +} +} +} +else +{ +lean_object* x_92; lean_object* x_93; +x_92 = lean_ctor_get(x_19, 0); +lean_inc(x_92); +lean_dec(x_19); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +x_93 = l_Lean_Meta_getIntValue_x3f(x_92, x_3, x_4, x_5, x_6, x_7); +lean_dec(x_92); +if (lean_obj_tag(x_93) == 0) +{ +lean_object* x_94; +x_94 = lean_ctor_get(x_93, 0); +lean_inc(x_94); +if (lean_obj_tag(x_94) == 0) +{ +lean_object* x_95; +lean_dec(x_29); +lean_dec(x_27); +lean_dec(x_26); +lean_dec(x_25); +lean_dec(x_24); +lean_dec(x_23); +lean_free_object(x_1); +x_95 = lean_ctor_get(x_93, 1); +lean_inc(x_95); +lean_dec(x_93); +lean_ctor_set(x_11, 1, x_2); +lean_ctor_set(x_11, 0, x_10); +x_1 = x_21; +x_2 = x_11; +x_7 = x_95; +goto _start; +} +else +{ +lean_object* x_97; lean_object* x_98; lean_object* x_99; lean_object* x_100; uint8_t x_101; +if (lean_is_exclusive(x_10)) { + lean_ctor_release(x_10, 0); + lean_ctor_release(x_10, 1); + lean_ctor_release(x_10, 2); + lean_ctor_release(x_10, 3); + lean_ctor_release(x_10, 4); + lean_ctor_release(x_10, 5); + x_97 = x_10; +} else { + lean_dec_ref(x_10); + x_97 = lean_box(0); +} +x_98 = lean_ctor_get(x_93, 1); +lean_inc(x_98); +lean_dec(x_93); +x_99 = lean_ctor_get(x_94, 0); +lean_inc(x_99); +lean_dec(x_94); +x_100 = l_List_mapM_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandIntValuePattern___spec__1___closed__1; +x_101 = lean_int_dec_le(x_100, x_99); +if (x_101 == 0) +{ +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; +x_102 = lean_box(0); +x_103 = l_List_mapM_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandIntValuePattern___spec__1___closed__5; +x_104 = lean_int_add(x_99, x_103); +lean_dec(x_99); +x_105 = lean_int_neg(x_104); +lean_dec(x_104); +x_106 = l_Int_toNat(x_105); +lean_dec(x_105); +x_107 = l_Lean_mkNatLit(x_106); +x_108 = lean_alloc_ctor(3, 1, 0); +lean_ctor_set(x_108, 0, x_107); +lean_ctor_set(x_11, 1, x_102); +lean_ctor_set(x_11, 0, x_108); +x_109 = l_List_mapM_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandIntValuePattern___spec__1___closed__4; +x_110 = lean_alloc_ctor(2, 4, 0); +lean_ctor_set(x_110, 0, x_109); +lean_ctor_set(x_110, 1, x_102); +lean_ctor_set(x_110, 2, x_102); +lean_ctor_set(x_110, 3, x_11); +lean_ctor_set(x_1, 1, x_29); +lean_ctor_set(x_1, 0, x_110); +if (lean_is_scalar(x_97)) { + x_111 = lean_alloc_ctor(0, 6, 0); +} else { + x_111 = x_97; +} +lean_ctor_set(x_111, 0, x_23); +lean_ctor_set(x_111, 1, x_24); +lean_ctor_set(x_111, 2, x_25); +lean_ctor_set(x_111, 3, x_26); +lean_ctor_set(x_111, 4, x_1); +lean_ctor_set(x_111, 5, x_27); +x_112 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_112, 0, x_111); +lean_ctor_set(x_112, 1, x_2); +x_1 = x_21; +x_2 = x_112; +x_7 = x_98; +goto _start; +} +else +{ +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; +x_114 = lean_box(0); +x_115 = l_Int_toNat(x_99); +lean_dec(x_99); +x_116 = l_Lean_mkNatLit(x_115); +x_117 = lean_alloc_ctor(3, 1, 0); +lean_ctor_set(x_117, 0, x_116); +lean_ctor_set(x_11, 1, x_114); +lean_ctor_set(x_11, 0, x_117); +x_118 = l_List_mapM_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandIntValuePattern___spec__1___closed__7; +x_119 = lean_alloc_ctor(2, 4, 0); +lean_ctor_set(x_119, 0, x_118); +lean_ctor_set(x_119, 1, x_114); +lean_ctor_set(x_119, 2, x_114); +lean_ctor_set(x_119, 3, x_11); +lean_ctor_set(x_1, 1, x_29); +lean_ctor_set(x_1, 0, x_119); +if (lean_is_scalar(x_97)) { + x_120 = lean_alloc_ctor(0, 6, 0); +} else { + x_120 = x_97; +} +lean_ctor_set(x_120, 0, x_23); +lean_ctor_set(x_120, 1, x_24); +lean_ctor_set(x_120, 2, x_25); +lean_ctor_set(x_120, 3, x_26); +lean_ctor_set(x_120, 4, x_1); +lean_ctor_set(x_120, 5, x_27); +x_121 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_121, 0, x_120); +lean_ctor_set(x_121, 1, x_2); +x_1 = x_21; +x_2 = x_121; +x_7 = x_98; +goto _start; +} +} +} +else +{ +lean_object* x_123; lean_object* x_124; lean_object* x_125; lean_object* x_126; +lean_free_object(x_11); +lean_dec(x_29); +lean_dec(x_27); +lean_dec(x_26); +lean_dec(x_25); +lean_dec(x_24); +lean_dec(x_23); +lean_free_object(x_1); +lean_dec(x_21); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_123 = lean_ctor_get(x_93, 0); +lean_inc(x_123); +x_124 = lean_ctor_get(x_93, 1); +lean_inc(x_124); +if (lean_is_exclusive(x_93)) { + lean_ctor_release(x_93, 0); + lean_ctor_release(x_93, 1); + x_125 = x_93; +} else { + lean_dec_ref(x_93); + x_125 = lean_box(0); +} +if (lean_is_scalar(x_125)) { + x_126 = lean_alloc_ctor(1, 2, 0); +} else { + x_126 = x_125; +} +lean_ctor_set(x_126, 0, x_123); +lean_ctor_set(x_126, 1, x_124); +return x_126; +} +} +} +else +{ +lean_object* x_127; lean_object* x_128; lean_object* x_129; lean_object* x_130; +x_127 = lean_ctor_get(x_11, 1); +lean_inc(x_127); +lean_dec(x_11); +x_128 = lean_ctor_get(x_19, 0); +lean_inc(x_128); +if (lean_is_exclusive(x_19)) { + lean_ctor_release(x_19, 0); + x_129 = x_19; +} else { + lean_dec_ref(x_19); + x_129 = lean_box(0); +} +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +x_130 = l_Lean_Meta_getIntValue_x3f(x_128, x_3, x_4, x_5, x_6, x_7); +lean_dec(x_128); +if (lean_obj_tag(x_130) == 0) +{ +lean_object* x_131; +x_131 = lean_ctor_get(x_130, 0); +lean_inc(x_131); +if (lean_obj_tag(x_131) == 0) +{ +lean_object* x_132; lean_object* x_133; +lean_dec(x_129); +lean_dec(x_127); +lean_dec(x_27); +lean_dec(x_26); +lean_dec(x_25); +lean_dec(x_24); +lean_dec(x_23); +lean_free_object(x_1); +x_132 = lean_ctor_get(x_130, 1); +lean_inc(x_132); +lean_dec(x_130); +x_133 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_133, 0, x_10); +lean_ctor_set(x_133, 1, x_2); +x_1 = x_21; +x_2 = x_133; +x_7 = x_132; +goto _start; +} +else +{ +lean_object* x_135; lean_object* x_136; lean_object* x_137; lean_object* x_138; uint8_t x_139; +if (lean_is_exclusive(x_10)) { + lean_ctor_release(x_10, 0); + lean_ctor_release(x_10, 1); + lean_ctor_release(x_10, 2); + lean_ctor_release(x_10, 3); + lean_ctor_release(x_10, 4); + lean_ctor_release(x_10, 5); + x_135 = x_10; +} else { + lean_dec_ref(x_10); + x_135 = lean_box(0); +} +x_136 = lean_ctor_get(x_130, 1); +lean_inc(x_136); +lean_dec(x_130); +x_137 = lean_ctor_get(x_131, 0); +lean_inc(x_137); +lean_dec(x_131); +x_138 = l_List_mapM_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandIntValuePattern___spec__1___closed__1; +x_139 = lean_int_dec_le(x_138, x_137); +if (x_139 == 0) +{ +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; +x_140 = lean_box(0); +x_141 = l_List_mapM_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandIntValuePattern___spec__1___closed__5; +x_142 = lean_int_add(x_137, x_141); +lean_dec(x_137); +x_143 = lean_int_neg(x_142); +lean_dec(x_142); +x_144 = l_Int_toNat(x_143); +lean_dec(x_143); +x_145 = l_Lean_mkNatLit(x_144); +if (lean_is_scalar(x_129)) { + x_146 = lean_alloc_ctor(3, 1, 0); +} else { + x_146 = x_129; +} +lean_ctor_set(x_146, 0, x_145); +x_147 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_147, 0, x_146); +lean_ctor_set(x_147, 1, x_140); +x_148 = l_List_mapM_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandIntValuePattern___spec__1___closed__4; +x_149 = lean_alloc_ctor(2, 4, 0); +lean_ctor_set(x_149, 0, x_148); +lean_ctor_set(x_149, 1, x_140); +lean_ctor_set(x_149, 2, x_140); +lean_ctor_set(x_149, 3, x_147); +lean_ctor_set(x_1, 1, x_127); +lean_ctor_set(x_1, 0, x_149); +if (lean_is_scalar(x_135)) { + x_150 = lean_alloc_ctor(0, 6, 0); +} else { + x_150 = x_135; +} +lean_ctor_set(x_150, 0, x_23); +lean_ctor_set(x_150, 1, x_24); +lean_ctor_set(x_150, 2, x_25); +lean_ctor_set(x_150, 3, x_26); +lean_ctor_set(x_150, 4, x_1); +lean_ctor_set(x_150, 5, x_27); +x_151 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_151, 0, x_150); +lean_ctor_set(x_151, 1, x_2); +x_1 = x_21; +x_2 = x_151; +x_7 = x_136; +goto _start; +} +else +{ +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; +x_153 = lean_box(0); +x_154 = l_Int_toNat(x_137); +lean_dec(x_137); +x_155 = l_Lean_mkNatLit(x_154); +if (lean_is_scalar(x_129)) { + x_156 = lean_alloc_ctor(3, 1, 0); +} else { + x_156 = x_129; +} +lean_ctor_set(x_156, 0, x_155); +x_157 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_157, 0, x_156); +lean_ctor_set(x_157, 1, x_153); +x_158 = l_List_mapM_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandIntValuePattern___spec__1___closed__7; +x_159 = lean_alloc_ctor(2, 4, 0); +lean_ctor_set(x_159, 0, x_158); +lean_ctor_set(x_159, 1, x_153); +lean_ctor_set(x_159, 2, x_153); +lean_ctor_set(x_159, 3, x_157); +lean_ctor_set(x_1, 1, x_127); +lean_ctor_set(x_1, 0, x_159); +if (lean_is_scalar(x_135)) { + x_160 = lean_alloc_ctor(0, 6, 0); +} else { + x_160 = x_135; +} +lean_ctor_set(x_160, 0, x_23); +lean_ctor_set(x_160, 1, x_24); +lean_ctor_set(x_160, 2, x_25); +lean_ctor_set(x_160, 3, x_26); +lean_ctor_set(x_160, 4, x_1); +lean_ctor_set(x_160, 5, x_27); +x_161 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_161, 0, x_160); +lean_ctor_set(x_161, 1, x_2); +x_1 = x_21; +x_2 = x_161; +x_7 = x_136; +goto _start; +} +} +} +else +{ +lean_object* x_163; lean_object* x_164; lean_object* x_165; lean_object* x_166; +lean_dec(x_129); +lean_dec(x_127); +lean_dec(x_27); +lean_dec(x_26); +lean_dec(x_25); +lean_dec(x_24); +lean_dec(x_23); +lean_free_object(x_1); +lean_dec(x_21); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_163 = lean_ctor_get(x_130, 0); +lean_inc(x_163); +x_164 = lean_ctor_get(x_130, 1); +lean_inc(x_164); +if (lean_is_exclusive(x_130)) { + lean_ctor_release(x_130, 0); + lean_ctor_release(x_130, 1); + x_165 = x_130; +} else { + lean_dec_ref(x_130); + x_165 = lean_box(0); +} +if (lean_is_scalar(x_165)) { + x_166 = lean_alloc_ctor(1, 2, 0); +} else { + x_166 = x_165; +} +lean_ctor_set(x_166, 0, x_163); +lean_ctor_set(x_166, 1, x_164); +return x_166; +} +} +} +else +{ +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; +x_167 = lean_ctor_get(x_1, 1); +lean_inc(x_167); +lean_dec(x_1); +x_168 = lean_ctor_get(x_10, 0); +lean_inc(x_168); +x_169 = lean_ctor_get(x_10, 1); +lean_inc(x_169); +x_170 = lean_ctor_get(x_10, 2); +lean_inc(x_170); +x_171 = lean_ctor_get(x_10, 3); +lean_inc(x_171); +x_172 = lean_ctor_get(x_10, 5); +lean_inc(x_172); +x_173 = lean_ctor_get(x_11, 1); +lean_inc(x_173); +if (lean_is_exclusive(x_11)) { + lean_ctor_release(x_11, 0); + lean_ctor_release(x_11, 1); + x_174 = x_11; +} else { + lean_dec_ref(x_11); + x_174 = lean_box(0); +} +x_175 = lean_ctor_get(x_19, 0); +lean_inc(x_175); +if (lean_is_exclusive(x_19)) { + lean_ctor_release(x_19, 0); + x_176 = x_19; +} else { + lean_dec_ref(x_19); + x_176 = lean_box(0); +} +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +x_177 = l_Lean_Meta_getIntValue_x3f(x_175, x_3, x_4, x_5, x_6, x_7); +lean_dec(x_175); +if (lean_obj_tag(x_177) == 0) +{ +lean_object* x_178; +x_178 = lean_ctor_get(x_177, 0); +lean_inc(x_178); +if (lean_obj_tag(x_178) == 0) +{ +lean_object* x_179; lean_object* x_180; +lean_dec(x_176); +lean_dec(x_173); +lean_dec(x_172); +lean_dec(x_171); +lean_dec(x_170); +lean_dec(x_169); +lean_dec(x_168); +x_179 = lean_ctor_get(x_177, 1); +lean_inc(x_179); +lean_dec(x_177); +if (lean_is_scalar(x_174)) { + x_180 = lean_alloc_ctor(1, 2, 0); +} else { + x_180 = x_174; +} +lean_ctor_set(x_180, 0, x_10); +lean_ctor_set(x_180, 1, x_2); +x_1 = x_167; +x_2 = x_180; +x_7 = x_179; +goto _start; +} +else +{ +lean_object* x_182; lean_object* x_183; lean_object* x_184; lean_object* x_185; uint8_t x_186; +if (lean_is_exclusive(x_10)) { + lean_ctor_release(x_10, 0); + lean_ctor_release(x_10, 1); + lean_ctor_release(x_10, 2); + lean_ctor_release(x_10, 3); + lean_ctor_release(x_10, 4); + lean_ctor_release(x_10, 5); + x_182 = x_10; +} else { + lean_dec_ref(x_10); + x_182 = lean_box(0); +} +x_183 = lean_ctor_get(x_177, 1); +lean_inc(x_183); +lean_dec(x_177); +x_184 = lean_ctor_get(x_178, 0); +lean_inc(x_184); +lean_dec(x_178); +x_185 = l_List_mapM_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandIntValuePattern___spec__1___closed__1; +x_186 = lean_int_dec_le(x_185, x_184); +if (x_186 == 0) +{ +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; +x_187 = lean_box(0); +x_188 = l_List_mapM_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandIntValuePattern___spec__1___closed__5; +x_189 = lean_int_add(x_184, x_188); +lean_dec(x_184); +x_190 = lean_int_neg(x_189); +lean_dec(x_189); +x_191 = l_Int_toNat(x_190); +lean_dec(x_190); +x_192 = l_Lean_mkNatLit(x_191); +if (lean_is_scalar(x_176)) { + x_193 = lean_alloc_ctor(3, 1, 0); +} else { + x_193 = x_176; +} +lean_ctor_set(x_193, 0, x_192); +if (lean_is_scalar(x_174)) { + x_194 = lean_alloc_ctor(1, 2, 0); +} else { + x_194 = x_174; +} +lean_ctor_set(x_194, 0, x_193); +lean_ctor_set(x_194, 1, x_187); +x_195 = l_List_mapM_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandIntValuePattern___spec__1___closed__4; +x_196 = lean_alloc_ctor(2, 4, 0); +lean_ctor_set(x_196, 0, x_195); +lean_ctor_set(x_196, 1, x_187); +lean_ctor_set(x_196, 2, x_187); +lean_ctor_set(x_196, 3, x_194); +x_197 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_197, 0, x_196); +lean_ctor_set(x_197, 1, x_173); +if (lean_is_scalar(x_182)) { + x_198 = lean_alloc_ctor(0, 6, 0); +} else { + x_198 = x_182; +} +lean_ctor_set(x_198, 0, x_168); +lean_ctor_set(x_198, 1, x_169); +lean_ctor_set(x_198, 2, x_170); +lean_ctor_set(x_198, 3, x_171); +lean_ctor_set(x_198, 4, x_197); +lean_ctor_set(x_198, 5, x_172); +x_199 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_199, 0, x_198); +lean_ctor_set(x_199, 1, x_2); +x_1 = x_167; +x_2 = x_199; +x_7 = x_183; +goto _start; +} +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; lean_object* x_208; lean_object* x_209; lean_object* x_210; +x_201 = lean_box(0); +x_202 = l_Int_toNat(x_184); +lean_dec(x_184); +x_203 = l_Lean_mkNatLit(x_202); +if (lean_is_scalar(x_176)) { + x_204 = lean_alloc_ctor(3, 1, 0); +} else { + x_204 = x_176; +} +lean_ctor_set(x_204, 0, x_203); +if (lean_is_scalar(x_174)) { + x_205 = lean_alloc_ctor(1, 2, 0); +} else { + x_205 = x_174; +} +lean_ctor_set(x_205, 0, x_204); +lean_ctor_set(x_205, 1, x_201); +x_206 = l_List_mapM_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandIntValuePattern___spec__1___closed__7; +x_207 = lean_alloc_ctor(2, 4, 0); +lean_ctor_set(x_207, 0, x_206); +lean_ctor_set(x_207, 1, x_201); +lean_ctor_set(x_207, 2, x_201); +lean_ctor_set(x_207, 3, x_205); +x_208 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_208, 0, x_207); +lean_ctor_set(x_208, 1, x_173); +if (lean_is_scalar(x_182)) { + x_209 = lean_alloc_ctor(0, 6, 0); +} else { + x_209 = x_182; +} +lean_ctor_set(x_209, 0, x_168); +lean_ctor_set(x_209, 1, x_169); +lean_ctor_set(x_209, 2, x_170); +lean_ctor_set(x_209, 3, x_171); +lean_ctor_set(x_209, 4, x_208); +lean_ctor_set(x_209, 5, x_172); +x_210 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_210, 0, x_209); +lean_ctor_set(x_210, 1, x_2); +x_1 = x_167; +x_2 = x_210; +x_7 = x_183; +goto _start; +} +} +} +else +{ +lean_object* x_212; lean_object* x_213; lean_object* x_214; lean_object* x_215; +lean_dec(x_176); +lean_dec(x_174); +lean_dec(x_173); +lean_dec(x_172); +lean_dec(x_171); +lean_dec(x_170); +lean_dec(x_169); +lean_dec(x_168); +lean_dec(x_167); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_212 = lean_ctor_get(x_177, 0); +lean_inc(x_212); +x_213 = lean_ctor_get(x_177, 1); +lean_inc(x_213); +if (lean_is_exclusive(x_177)) { + lean_ctor_release(x_177, 0); + lean_ctor_release(x_177, 1); + x_214 = x_177; +} else { + lean_dec_ref(x_177); + x_214 = lean_box(0); +} +if (lean_is_scalar(x_214)) { + x_215 = lean_alloc_ctor(1, 2, 0); +} else { + x_215 = x_214; +} +lean_ctor_set(x_215, 0, x_212); +lean_ctor_set(x_215, 1, x_213); +return x_215; +} +} +} +else +{ +uint8_t x_216; +lean_dec(x_19); +x_216 = !lean_is_exclusive(x_11); +if (x_216 == 0) +{ +lean_object* x_217; lean_object* x_218; lean_object* x_219; +x_217 = lean_ctor_get(x_11, 1); +lean_dec(x_217); +x_218 = lean_ctor_get(x_11, 0); +lean_dec(x_218); +x_219 = lean_ctor_get(x_1, 1); +lean_inc(x_219); +lean_dec(x_1); +lean_ctor_set(x_11, 1, x_2); +lean_ctor_set(x_11, 0, x_10); +x_1 = x_219; +x_2 = x_11; +goto _start; +} +else +{ +lean_object* x_221; lean_object* x_222; +lean_dec(x_11); +x_221 = lean_ctor_get(x_1, 1); +lean_inc(x_221); +lean_dec(x_1); +x_222 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_222, 0, x_10); +lean_ctor_set(x_222, 1, x_2); +x_1 = x_221; +x_2 = x_222; +goto _start; +} +} +} +} +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandIntValuePattern(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_7; +x_7 = !lean_is_exclusive(x_1); +if (x_7 == 0) +{ +lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; +x_8 = lean_ctor_get(x_1, 0); +x_9 = lean_ctor_get(x_1, 1); +x_10 = lean_ctor_get(x_1, 2); +x_11 = lean_ctor_get(x_1, 3); +x_12 = lean_box(0); +x_13 = l_List_mapM_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandIntValuePattern___spec__1(x_10, x_12, x_2, x_3, x_4, x_5, x_6); +if (lean_obj_tag(x_13) == 0) +{ +uint8_t x_14; +x_14 = !lean_is_exclusive(x_13); +if (x_14 == 0) +{ +lean_object* x_15; +x_15 = lean_ctor_get(x_13, 0); +lean_ctor_set(x_1, 2, x_15); +lean_ctor_set(x_13, 0, x_1); +return x_13; +} +else +{ +lean_object* x_16; lean_object* x_17; lean_object* x_18; +x_16 = lean_ctor_get(x_13, 0); +x_17 = lean_ctor_get(x_13, 1); +lean_inc(x_17); +lean_inc(x_16); +lean_dec(x_13); +lean_ctor_set(x_1, 2, x_16); +x_18 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_18, 0, x_1); +lean_ctor_set(x_18, 1, x_17); +return x_18; +} +} +else +{ +uint8_t x_19; +lean_free_object(x_1); +lean_dec(x_11); +lean_dec(x_9); +lean_dec(x_8); +x_19 = !lean_is_exclusive(x_13); +if (x_19 == 0) +{ +return x_13; +} +else +{ +lean_object* x_20; lean_object* x_21; lean_object* x_22; +x_20 = lean_ctor_get(x_13, 0); +x_21 = lean_ctor_get(x_13, 1); +lean_inc(x_21); +lean_inc(x_20); +lean_dec(x_13); +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; +} +} +} +else +{ +lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; +x_23 = lean_ctor_get(x_1, 0); +x_24 = lean_ctor_get(x_1, 1); +x_25 = lean_ctor_get(x_1, 2); +x_26 = lean_ctor_get(x_1, 3); +lean_inc(x_26); +lean_inc(x_25); +lean_inc(x_24); +lean_inc(x_23); +lean_dec(x_1); +x_27 = lean_box(0); +x_28 = l_List_mapM_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandIntValuePattern___spec__1(x_25, x_27, x_2, x_3, x_4, x_5, x_6); +if (lean_obj_tag(x_28) == 0) +{ +lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; +x_29 = lean_ctor_get(x_28, 0); +lean_inc(x_29); +x_30 = lean_ctor_get(x_28, 1); +lean_inc(x_30); +if (lean_is_exclusive(x_28)) { + lean_ctor_release(x_28, 0); + lean_ctor_release(x_28, 1); + x_31 = x_28; +} else { + lean_dec_ref(x_28); + x_31 = lean_box(0); +} +x_32 = lean_alloc_ctor(0, 4, 0); +lean_ctor_set(x_32, 0, x_23); +lean_ctor_set(x_32, 1, x_24); +lean_ctor_set(x_32, 2, x_29); +lean_ctor_set(x_32, 3, x_26); +if (lean_is_scalar(x_31)) { + x_33 = lean_alloc_ctor(0, 2, 0); +} else { + x_33 = x_31; +} +lean_ctor_set(x_33, 0, x_32); +lean_ctor_set(x_33, 1, x_30); +return x_33; +} +else +{ +lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; +lean_dec(x_26); +lean_dec(x_24); +lean_dec(x_23); +x_34 = lean_ctor_get(x_28, 0); +lean_inc(x_34); +x_35 = lean_ctor_get(x_28, 1); +lean_inc(x_35); +if (lean_is_exclusive(x_28)) { + lean_ctor_release(x_28, 0); + lean_ctor_release(x_28, 1); + x_36 = x_28; +} else { + lean_dec_ref(x_28); + x_36 = lean_box(0); +} +if (lean_is_scalar(x_36)) { + x_37 = lean_alloc_ctor(1, 2, 0); +} else { + x_37 = x_36; +} +lean_ctor_set(x_37, 0, x_34); +lean_ctor_set(x_37, 1, x_35); +return x_37; +} +} +} +} +static lean_object* _init_l_List_mapM_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandFinValuePattern___spec__1___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("Fin", 3); +return x_1; +} +} +static lean_object* _init_l_List_mapM_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandFinValuePattern___spec__1___closed__2() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("mk", 2); +return x_1; +} +} +static lean_object* _init_l_List_mapM_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandFinValuePattern___spec__1___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_List_mapM_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandFinValuePattern___spec__1___closed__1; +x_2 = l_List_mapM_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandFinValuePattern___spec__1___closed__2; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; +} +} +LEAN_EXPORT lean_object* l_List_mapM_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandFinValuePattern___spec__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) { +_start: +{ +if (lean_obj_tag(x_1) == 0) +{ +lean_object* x_8; lean_object* x_9; +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +x_8 = l_List_reverse___rarg(x_2); +x_9 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_9, 0, x_8); +lean_ctor_set(x_9, 1, x_7); +return x_9; +} +else +{ +lean_object* x_10; lean_object* x_11; +x_10 = lean_ctor_get(x_1, 0); +lean_inc(x_10); +x_11 = lean_ctor_get(x_10, 4); +lean_inc(x_11); +if (lean_obj_tag(x_11) == 0) +{ +uint8_t x_12; +x_12 = !lean_is_exclusive(x_1); +if (x_12 == 0) +{ +lean_object* x_13; lean_object* x_14; +x_13 = lean_ctor_get(x_1, 1); +x_14 = lean_ctor_get(x_1, 0); +lean_dec(x_14); +lean_ctor_set(x_1, 1, x_2); +{ +lean_object* _tmp_0 = x_13; lean_object* _tmp_1 = x_1; x_1 = _tmp_0; x_2 = _tmp_1; } goto _start; } +else +{ +lean_object* x_16; lean_object* x_17; +x_16 = lean_ctor_get(x_1, 1); +lean_inc(x_16); +lean_dec(x_1); +x_17 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_17, 0, x_10); +lean_ctor_set(x_17, 1, x_2); +x_1 = x_16; +x_2 = x_17; +goto _start; } } else { -lean_object* x_76; lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; uint8_t x_81; -x_76 = lean_ctor_get(x_1, 1); -lean_inc(x_76); -lean_dec(x_1); -x_77 = lean_ctor_get(x_5, 1); +lean_object* x_19; +x_19 = lean_ctor_get(x_11, 0); +lean_inc(x_19); +if (lean_obj_tag(x_19) == 3) +{ +uint8_t x_20; +x_20 = !lean_is_exclusive(x_1); +if (x_20 == 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; uint8_t x_28; +x_21 = lean_ctor_get(x_1, 1); +x_22 = lean_ctor_get(x_1, 0); +lean_dec(x_22); +x_23 = lean_ctor_get(x_10, 0); +lean_inc(x_23); +x_24 = lean_ctor_get(x_10, 1); +lean_inc(x_24); +x_25 = lean_ctor_get(x_10, 2); +lean_inc(x_25); +x_26 = lean_ctor_get(x_10, 3); +lean_inc(x_26); +x_27 = lean_ctor_get(x_10, 5); +lean_inc(x_27); +x_28 = !lean_is_exclusive(x_11); +if (x_28 == 0) +{ +lean_object* x_29; lean_object* x_30; uint8_t x_31; +x_29 = lean_ctor_get(x_11, 1); +x_30 = lean_ctor_get(x_11, 0); +lean_dec(x_30); +x_31 = !lean_is_exclusive(x_19); +if (x_31 == 0) +{ +lean_object* x_32; lean_object* x_33; +x_32 = lean_ctor_get(x_19, 0); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +x_33 = l_Lean_Meta_getFinValue_x3f(x_32, x_3, x_4, x_5, x_6, x_7); +lean_dec(x_32); +if (lean_obj_tag(x_33) == 0) +{ +lean_object* x_34; +x_34 = lean_ctor_get(x_33, 0); +lean_inc(x_34); +if (lean_obj_tag(x_34) == 0) +{ +lean_object* x_35; +lean_free_object(x_19); +lean_dec(x_29); +lean_dec(x_27); +lean_dec(x_26); +lean_dec(x_25); +lean_dec(x_24); +lean_dec(x_23); +lean_free_object(x_1); +x_35 = lean_ctor_get(x_33, 1); +lean_inc(x_35); +lean_dec(x_33); +lean_ctor_set(x_11, 1, x_2); +lean_ctor_set(x_11, 0, x_10); +x_1 = x_21; +x_2 = x_11; +x_7 = x_35; +goto _start; +} +else +{ +uint8_t x_37; +x_37 = !lean_is_exclusive(x_10); +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; 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; +x_38 = lean_ctor_get(x_10, 5); +lean_dec(x_38); +x_39 = lean_ctor_get(x_10, 4); +lean_dec(x_39); +x_40 = lean_ctor_get(x_10, 3); +lean_dec(x_40); +x_41 = lean_ctor_get(x_10, 2); +lean_dec(x_41); +x_42 = lean_ctor_get(x_10, 1); +lean_dec(x_42); +x_43 = lean_ctor_get(x_10, 0); +lean_dec(x_43); +x_44 = lean_ctor_get(x_34, 0); +lean_inc(x_44); +lean_dec(x_34); +x_45 = lean_ctor_get(x_33, 1); +lean_inc(x_45); +lean_dec(x_33); +x_46 = lean_ctor_get(x_44, 0); +lean_inc(x_46); +x_47 = lean_ctor_get(x_44, 1); +lean_inc(x_47); +lean_dec(x_44); +x_48 = l_Lean_mkNatLit(x_47); +x_49 = l_Lean_mkNatLit(x_46); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +lean_inc(x_49); +lean_inc(x_48); +x_50 = l_Lean_Meta_mkLt(x_48, x_49, x_3, x_4, x_5, x_6, x_45); +if (lean_obj_tag(x_50) == 0) +{ +lean_object* x_51; lean_object* x_52; lean_object* x_53; +x_51 = lean_ctor_get(x_50, 0); +lean_inc(x_51); +x_52 = lean_ctor_get(x_50, 1); +lean_inc(x_52); +lean_dec(x_50); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +x_53 = l_Lean_Meta_mkDecideProof(x_51, x_3, x_4, x_5, x_6, x_52); +if (lean_obj_tag(x_53) == 0) +{ +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; +x_54 = lean_ctor_get(x_53, 0); +lean_inc(x_54); +x_55 = lean_ctor_get(x_53, 1); +lean_inc(x_55); +lean_dec(x_53); +x_56 = lean_box(0); +lean_ctor_set(x_11, 1, x_56); +lean_ctor_set(x_11, 0, x_49); +lean_ctor_set(x_19, 0, x_48); +x_57 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_57, 0, x_54); +lean_ctor_set(x_1, 1, x_56); +lean_ctor_set(x_1, 0, x_57); +x_58 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_58, 0, x_19); +lean_ctor_set(x_58, 1, x_1); +x_59 = l_List_mapM_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandFinValuePattern___spec__1___closed__3; +x_60 = lean_alloc_ctor(2, 4, 0); +lean_ctor_set(x_60, 0, x_59); +lean_ctor_set(x_60, 1, x_56); +lean_ctor_set(x_60, 2, x_11); +lean_ctor_set(x_60, 3, x_58); +x_61 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_61, 0, x_60); +lean_ctor_set(x_61, 1, x_29); +lean_ctor_set(x_10, 4, x_61); +x_62 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_62, 0, x_10); +lean_ctor_set(x_62, 1, x_2); +x_1 = x_21; +x_2 = x_62; +x_7 = x_55; +goto _start; +} +else +{ +uint8_t x_64; +lean_dec(x_49); +lean_dec(x_48); +lean_free_object(x_10); +lean_free_object(x_19); +lean_free_object(x_11); +lean_dec(x_29); +lean_dec(x_27); +lean_dec(x_26); +lean_dec(x_25); +lean_dec(x_24); +lean_dec(x_23); +lean_free_object(x_1); +lean_dec(x_21); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_64 = !lean_is_exclusive(x_53); +if (x_64 == 0) +{ +return x_53; +} +else +{ +lean_object* x_65; lean_object* x_66; lean_object* x_67; +x_65 = lean_ctor_get(x_53, 0); +x_66 = lean_ctor_get(x_53, 1); +lean_inc(x_66); +lean_inc(x_65); +lean_dec(x_53); +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; +} +} +} +else +{ +uint8_t x_68; +lean_dec(x_49); +lean_dec(x_48); +lean_free_object(x_10); +lean_free_object(x_19); +lean_free_object(x_11); +lean_dec(x_29); +lean_dec(x_27); +lean_dec(x_26); +lean_dec(x_25); +lean_dec(x_24); +lean_dec(x_23); +lean_free_object(x_1); +lean_dec(x_21); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_68 = !lean_is_exclusive(x_50); +if (x_68 == 0) +{ +return x_50; +} +else +{ +lean_object* x_69; lean_object* x_70; lean_object* x_71; +x_69 = lean_ctor_get(x_50, 0); +x_70 = lean_ctor_get(x_50, 1); +lean_inc(x_70); +lean_inc(x_69); +lean_dec(x_50); +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; +} +} +} +else +{ +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_dec(x_10); +x_72 = lean_ctor_get(x_34, 0); +lean_inc(x_72); +lean_dec(x_34); +x_73 = lean_ctor_get(x_33, 1); +lean_inc(x_73); +lean_dec(x_33); +x_74 = lean_ctor_get(x_72, 0); +lean_inc(x_74); +x_75 = lean_ctor_get(x_72, 1); +lean_inc(x_75); +lean_dec(x_72); +x_76 = l_Lean_mkNatLit(x_75); +x_77 = l_Lean_mkNatLit(x_74); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); lean_inc(x_77); -if (lean_is_exclusive(x_5)) { - lean_ctor_release(x_5, 0); - lean_ctor_release(x_5, 1); - x_78 = x_5; -} else { - lean_dec_ref(x_5); - x_78 = lean_box(0); -} -x_79 = lean_ctor_get(x_16, 0); +lean_inc(x_76); +x_78 = l_Lean_Meta_mkLt(x_76, x_77, x_3, x_4, x_5, x_6, x_73); +if (lean_obj_tag(x_78) == 0) +{ +lean_object* x_79; lean_object* x_80; lean_object* x_81; +x_79 = lean_ctor_get(x_78, 0); lean_inc(x_79); -lean_dec(x_16); -x_80 = lean_unsigned_to_nat(0u); -x_81 = lean_nat_dec_eq(x_79, x_80); -if (x_81 == 0) +x_80 = lean_ctor_get(x_78, 1); +lean_inc(x_80); +lean_dec(x_78); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +x_81 = l_Lean_Meta_mkDecideProof(x_79, x_3, x_4, x_5, x_6, x_80); +if (lean_obj_tag(x_81) == 0) { -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; -x_82 = lean_unsigned_to_nat(1u); -x_83 = lean_nat_sub(x_79, x_82); -lean_dec(x_79); -x_84 = lean_ctor_get(x_4, 0); -lean_inc(x_84); -x_85 = lean_ctor_get(x_4, 1); -lean_inc(x_85); -x_86 = lean_ctor_get(x_4, 2); -lean_inc(x_86); -x_87 = lean_ctor_get(x_4, 3); -lean_inc(x_87); -x_88 = lean_box(0); -x_89 = l_Lean_mkRawNatLit(x_83); -lean_ctor_set(x_13, 0, x_89); -if (lean_is_scalar(x_78)) { - x_90 = lean_alloc_ctor(1, 2, 0); -} else { - x_90 = x_78; +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; +x_82 = lean_ctor_get(x_81, 0); +lean_inc(x_82); +x_83 = lean_ctor_get(x_81, 1); +lean_inc(x_83); +lean_dec(x_81); +x_84 = lean_box(0); +lean_ctor_set(x_11, 1, x_84); +lean_ctor_set(x_11, 0, x_77); +lean_ctor_set(x_19, 0, x_76); +x_85 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_85, 0, x_82); +lean_ctor_set(x_1, 1, x_84); +lean_ctor_set(x_1, 0, x_85); +x_86 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_86, 0, x_19); +lean_ctor_set(x_86, 1, x_1); +x_87 = l_List_mapM_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandFinValuePattern___spec__1___closed__3; +x_88 = lean_alloc_ctor(2, 4, 0); +lean_ctor_set(x_88, 0, x_87); +lean_ctor_set(x_88, 1, x_84); +lean_ctor_set(x_88, 2, x_11); +lean_ctor_set(x_88, 3, x_86); +x_89 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_89, 0, x_88); +lean_ctor_set(x_89, 1, x_29); +x_90 = lean_alloc_ctor(0, 6, 0); +lean_ctor_set(x_90, 0, x_23); +lean_ctor_set(x_90, 1, x_24); +lean_ctor_set(x_90, 2, x_25); +lean_ctor_set(x_90, 3, x_26); +lean_ctor_set(x_90, 4, x_89); +lean_ctor_set(x_90, 5, x_27); +x_91 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_91, 0, x_90); +lean_ctor_set(x_91, 1, x_2); +x_1 = x_21; +x_2 = x_91; +x_7 = x_83; +goto _start; } -lean_ctor_set(x_90, 0, x_13); -lean_ctor_set(x_90, 1, x_88); -x_91 = l_List_mapTR_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandNatValuePattern___spec__1___closed__3; -x_92 = lean_alloc_ctor(2, 4, 0); -lean_ctor_set(x_92, 0, x_91); -lean_ctor_set(x_92, 1, x_88); -lean_ctor_set(x_92, 2, x_88); -lean_ctor_set(x_92, 3, x_90); -x_93 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_93, 0, x_92); -lean_ctor_set(x_93, 1, x_77); -x_94 = lean_ctor_get(x_4, 5); +else +{ +lean_object* x_93; lean_object* x_94; lean_object* x_95; lean_object* x_96; +lean_dec(x_77); +lean_dec(x_76); +lean_free_object(x_19); +lean_free_object(x_11); +lean_dec(x_29); +lean_dec(x_27); +lean_dec(x_26); +lean_dec(x_25); +lean_dec(x_24); +lean_dec(x_23); +lean_free_object(x_1); +lean_dec(x_21); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_93 = lean_ctor_get(x_81, 0); +lean_inc(x_93); +x_94 = lean_ctor_get(x_81, 1); lean_inc(x_94); -lean_dec(x_4); -x_95 = lean_alloc_ctor(0, 6, 0); -lean_ctor_set(x_95, 0, x_84); -lean_ctor_set(x_95, 1, x_85); -lean_ctor_set(x_95, 2, x_86); -lean_ctor_set(x_95, 3, x_87); -lean_ctor_set(x_95, 4, x_93); -lean_ctor_set(x_95, 5, x_94); -x_96 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_96, 0, x_95); -lean_ctor_set(x_96, 1, x_2); -x_1 = x_76; -x_2 = x_96; -goto _start; +if (lean_is_exclusive(x_81)) { + lean_ctor_release(x_81, 0); + lean_ctor_release(x_81, 1); + x_95 = x_81; +} else { + lean_dec_ref(x_81); + x_95 = lean_box(0); +} +if (lean_is_scalar(x_95)) { + x_96 = lean_alloc_ctor(1, 2, 0); +} else { + x_96 = x_95; +} +lean_ctor_set(x_96, 0, x_93); +lean_ctor_set(x_96, 1, x_94); +return x_96; +} } else { -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_dec(x_79); -lean_free_object(x_13); -x_98 = lean_ctor_get(x_4, 0); +lean_object* x_97; lean_object* x_98; lean_object* x_99; lean_object* x_100; +lean_dec(x_77); +lean_dec(x_76); +lean_free_object(x_19); +lean_free_object(x_11); +lean_dec(x_29); +lean_dec(x_27); +lean_dec(x_26); +lean_dec(x_25); +lean_dec(x_24); +lean_dec(x_23); +lean_free_object(x_1); +lean_dec(x_21); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_97 = lean_ctor_get(x_78, 0); +lean_inc(x_97); +x_98 = lean_ctor_get(x_78, 1); lean_inc(x_98); -x_99 = lean_ctor_get(x_4, 1); -lean_inc(x_99); -x_100 = lean_ctor_get(x_4, 2); -lean_inc(x_100); -x_101 = lean_ctor_get(x_4, 3); -lean_inc(x_101); -x_102 = l_List_mapTR_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandNatValuePattern___spec__1___closed__6; -if (lean_is_scalar(x_78)) { - x_103 = lean_alloc_ctor(1, 2, 0); +if (lean_is_exclusive(x_78)) { + lean_ctor_release(x_78, 0); + lean_ctor_release(x_78, 1); + x_99 = x_78; } else { - x_103 = x_78; + lean_dec_ref(x_78); + x_99 = lean_box(0); +} +if (lean_is_scalar(x_99)) { + x_100 = lean_alloc_ctor(1, 2, 0); +} else { + x_100 = x_99; +} +lean_ctor_set(x_100, 0, x_97); +lean_ctor_set(x_100, 1, x_98); +return x_100; } -lean_ctor_set(x_103, 0, x_102); -lean_ctor_set(x_103, 1, x_77); -x_104 = lean_ctor_get(x_4, 5); -lean_inc(x_104); -lean_dec(x_4); -x_105 = lean_alloc_ctor(0, 6, 0); -lean_ctor_set(x_105, 0, x_98); -lean_ctor_set(x_105, 1, x_99); -lean_ctor_set(x_105, 2, x_100); -lean_ctor_set(x_105, 3, x_101); -lean_ctor_set(x_105, 4, x_103); -lean_ctor_set(x_105, 5, x_104); -x_106 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_106, 0, x_105); -lean_ctor_set(x_106, 1, x_2); -x_1 = x_76; -x_2 = x_106; -goto _start; } } } else { -uint8_t x_108; -lean_dec(x_16); -lean_free_object(x_13); -x_108 = !lean_is_exclusive(x_5); -if (x_108 == 0) +uint8_t x_101; +lean_free_object(x_19); +lean_free_object(x_11); +lean_dec(x_29); +lean_dec(x_27); +lean_dec(x_26); +lean_dec(x_25); +lean_dec(x_24); +lean_dec(x_23); +lean_free_object(x_1); +lean_dec(x_21); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_101 = !lean_is_exclusive(x_33); +if (x_101 == 0) { -lean_object* x_109; lean_object* x_110; lean_object* x_111; -x_109 = lean_ctor_get(x_5, 1); -lean_dec(x_109); -x_110 = lean_ctor_get(x_5, 0); -lean_dec(x_110); -x_111 = lean_ctor_get(x_1, 1); +return x_33; +} +else +{ +lean_object* x_102; lean_object* x_103; lean_object* x_104; +x_102 = lean_ctor_get(x_33, 0); +x_103 = lean_ctor_get(x_33, 1); +lean_inc(x_103); +lean_inc(x_102); +lean_dec(x_33); +x_104 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_104, 0, x_102); +lean_ctor_set(x_104, 1, x_103); +return x_104; +} +} +} +else +{ +lean_object* x_105; lean_object* x_106; +x_105 = lean_ctor_get(x_19, 0); +lean_inc(x_105); +lean_dec(x_19); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +x_106 = l_Lean_Meta_getFinValue_x3f(x_105, x_3, x_4, x_5, x_6, x_7); +lean_dec(x_105); +if (lean_obj_tag(x_106) == 0) +{ +lean_object* x_107; +x_107 = lean_ctor_get(x_106, 0); +lean_inc(x_107); +if (lean_obj_tag(x_107) == 0) +{ +lean_object* x_108; +lean_dec(x_29); +lean_dec(x_27); +lean_dec(x_26); +lean_dec(x_25); +lean_dec(x_24); +lean_dec(x_23); +lean_free_object(x_1); +x_108 = lean_ctor_get(x_106, 1); +lean_inc(x_108); +lean_dec(x_106); +lean_ctor_set(x_11, 1, x_2); +lean_ctor_set(x_11, 0, x_10); +x_1 = x_21; +x_2 = x_11; +x_7 = x_108; +goto _start; +} +else +{ +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; +if (lean_is_exclusive(x_10)) { + lean_ctor_release(x_10, 0); + lean_ctor_release(x_10, 1); + lean_ctor_release(x_10, 2); + lean_ctor_release(x_10, 3); + lean_ctor_release(x_10, 4); + lean_ctor_release(x_10, 5); + x_110 = x_10; +} else { + lean_dec_ref(x_10); + x_110 = lean_box(0); +} +x_111 = lean_ctor_get(x_107, 0); lean_inc(x_111); -lean_dec(x_1); -lean_ctor_set(x_5, 1, x_2); -lean_ctor_set(x_5, 0, x_4); -x_1 = x_111; -x_2 = x_5; -goto _start; -} -else -{ -lean_object* x_113; lean_object* x_114; -lean_dec(x_5); -x_113 = lean_ctor_get(x_1, 1); +lean_dec(x_107); +x_112 = lean_ctor_get(x_106, 1); +lean_inc(x_112); +lean_dec(x_106); +x_113 = lean_ctor_get(x_111, 0); lean_inc(x_113); -lean_dec(x_1); -x_114 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_114, 0, x_4); -lean_ctor_set(x_114, 1, x_2); -x_1 = x_113; -x_2 = x_114; -goto _start; -} -} -} -else +x_114 = lean_ctor_get(x_111, 1); +lean_inc(x_114); +lean_dec(x_111); +x_115 = l_Lean_mkNatLit(x_114); +x_116 = l_Lean_mkNatLit(x_113); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +lean_inc(x_116); +lean_inc(x_115); +x_117 = l_Lean_Meta_mkLt(x_115, x_116, x_3, x_4, x_5, x_6, x_112); +if (lean_obj_tag(x_117) == 0) { -uint8_t x_116; -lean_free_object(x_13); -lean_dec(x_15); -x_116 = !lean_is_exclusive(x_5); -if (x_116 == 0) -{ -lean_object* x_117; lean_object* x_118; lean_object* x_119; -x_117 = lean_ctor_get(x_5, 1); -lean_dec(x_117); -x_118 = lean_ctor_get(x_5, 0); -lean_dec(x_118); -x_119 = lean_ctor_get(x_1, 1); +lean_object* x_118; lean_object* x_119; lean_object* x_120; +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_1); -lean_ctor_set(x_5, 1, x_2); -lean_ctor_set(x_5, 0, x_4); -x_1 = x_119; -x_2 = x_5; -goto _start; -} -else +lean_dec(x_117); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +x_120 = l_Lean_Meta_mkDecideProof(x_118, x_3, x_4, x_5, x_6, x_119); +if (lean_obj_tag(x_120) == 0) { -lean_object* x_121; lean_object* x_122; -lean_dec(x_5); -x_121 = lean_ctor_get(x_1, 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; +x_121 = lean_ctor_get(x_120, 0); lean_inc(x_121); -lean_dec(x_1); -x_122 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_122, 0, x_4); -lean_ctor_set(x_122, 1, x_2); -x_1 = x_121; -x_2 = x_122; -goto _start; -} -} -} -else -{ -lean_object* x_124; -x_124 = lean_ctor_get(x_13, 0); -lean_inc(x_124); -lean_dec(x_13); -if (lean_obj_tag(x_124) == 9) -{ -lean_object* x_125; -x_125 = lean_ctor_get(x_124, 0); -lean_inc(x_125); -lean_dec(x_124); -if (lean_obj_tag(x_125) == 0) -{ -lean_object* x_126; lean_object* x_127; lean_object* x_128; lean_object* x_129; lean_object* x_130; lean_object* x_131; uint8_t x_132; -x_126 = lean_ctor_get(x_1, 1); -lean_inc(x_126); -if (lean_is_exclusive(x_1)) { - lean_ctor_release(x_1, 0); - lean_ctor_release(x_1, 1); - x_127 = x_1; +x_122 = lean_ctor_get(x_120, 1); +lean_inc(x_122); +lean_dec(x_120); +x_123 = lean_box(0); +lean_ctor_set(x_11, 1, x_123); +lean_ctor_set(x_11, 0, x_116); +x_124 = lean_alloc_ctor(3, 1, 0); +lean_ctor_set(x_124, 0, x_115); +x_125 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_125, 0, x_121); +lean_ctor_set(x_1, 1, x_123); +lean_ctor_set(x_1, 0, x_125); +x_126 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_126, 0, x_124); +lean_ctor_set(x_126, 1, x_1); +x_127 = l_List_mapM_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandFinValuePattern___spec__1___closed__3; +x_128 = lean_alloc_ctor(2, 4, 0); +lean_ctor_set(x_128, 0, x_127); +lean_ctor_set(x_128, 1, x_123); +lean_ctor_set(x_128, 2, x_11); +lean_ctor_set(x_128, 3, x_126); +x_129 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_129, 0, x_128); +lean_ctor_set(x_129, 1, x_29); +if (lean_is_scalar(x_110)) { + x_130 = lean_alloc_ctor(0, 6, 0); } else { - lean_dec_ref(x_1); - x_127 = lean_box(0); + x_130 = x_110; } -x_128 = lean_ctor_get(x_5, 1); -lean_inc(x_128); -if (lean_is_exclusive(x_5)) { - lean_ctor_release(x_5, 0); - lean_ctor_release(x_5, 1); - x_129 = x_5; -} else { - lean_dec_ref(x_5); - x_129 = lean_box(0); -} -x_130 = lean_ctor_get(x_125, 0); -lean_inc(x_130); -lean_dec(x_125); -x_131 = lean_unsigned_to_nat(0u); -x_132 = lean_nat_dec_eq(x_130, x_131); -if (x_132 == 0) -{ -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; -x_133 = lean_unsigned_to_nat(1u); -x_134 = lean_nat_sub(x_130, x_133); -lean_dec(x_130); -x_135 = lean_ctor_get(x_4, 0); -lean_inc(x_135); -x_136 = lean_ctor_get(x_4, 1); -lean_inc(x_136); -x_137 = lean_ctor_get(x_4, 2); -lean_inc(x_137); -x_138 = lean_ctor_get(x_4, 3); -lean_inc(x_138); -x_139 = lean_box(0); -x_140 = l_Lean_mkRawNatLit(x_134); -x_141 = lean_alloc_ctor(3, 1, 0); -lean_ctor_set(x_141, 0, x_140); -if (lean_is_scalar(x_129)) { - x_142 = lean_alloc_ctor(1, 2, 0); -} else { - x_142 = x_129; -} -lean_ctor_set(x_142, 0, x_141); -lean_ctor_set(x_142, 1, x_139); -x_143 = l_List_mapTR_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandNatValuePattern___spec__1___closed__3; -x_144 = lean_alloc_ctor(2, 4, 0); -lean_ctor_set(x_144, 0, x_143); -lean_ctor_set(x_144, 1, x_139); -lean_ctor_set(x_144, 2, x_139); -lean_ctor_set(x_144, 3, x_142); -if (lean_is_scalar(x_127)) { - x_145 = lean_alloc_ctor(1, 2, 0); -} else { - x_145 = x_127; -} -lean_ctor_set(x_145, 0, x_144); -lean_ctor_set(x_145, 1, x_128); -x_146 = lean_ctor_get(x_4, 5); -lean_inc(x_146); -lean_dec(x_4); -x_147 = lean_alloc_ctor(0, 6, 0); -lean_ctor_set(x_147, 0, x_135); -lean_ctor_set(x_147, 1, x_136); -lean_ctor_set(x_147, 2, x_137); -lean_ctor_set(x_147, 3, x_138); -lean_ctor_set(x_147, 4, x_145); -lean_ctor_set(x_147, 5, x_146); -x_148 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_148, 0, x_147); -lean_ctor_set(x_148, 1, x_2); -x_1 = x_126; -x_2 = x_148; +lean_ctor_set(x_130, 0, x_23); +lean_ctor_set(x_130, 1, x_24); +lean_ctor_set(x_130, 2, x_25); +lean_ctor_set(x_130, 3, x_26); +lean_ctor_set(x_130, 4, x_129); +lean_ctor_set(x_130, 5, x_27); +x_131 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_131, 0, x_130); +lean_ctor_set(x_131, 1, x_2); +x_1 = x_21; +x_2 = x_131; +x_7 = x_122; goto _start; } 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; lean_object* x_157; lean_object* x_158; -lean_dec(x_130); -x_150 = lean_ctor_get(x_4, 0); -lean_inc(x_150); -x_151 = lean_ctor_get(x_4, 1); -lean_inc(x_151); -x_152 = lean_ctor_get(x_4, 2); -lean_inc(x_152); -x_153 = lean_ctor_get(x_4, 3); -lean_inc(x_153); -x_154 = l_List_mapTR_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandNatValuePattern___spec__1___closed__6; -if (lean_is_scalar(x_129)) { - x_155 = lean_alloc_ctor(1, 2, 0); -} else { - x_155 = x_129; -} -lean_ctor_set(x_155, 0, x_154); -lean_ctor_set(x_155, 1, x_128); -x_156 = lean_ctor_get(x_4, 5); -lean_inc(x_156); -lean_dec(x_4); -x_157 = lean_alloc_ctor(0, 6, 0); -lean_ctor_set(x_157, 0, x_150); -lean_ctor_set(x_157, 1, x_151); -lean_ctor_set(x_157, 2, x_152); -lean_ctor_set(x_157, 3, x_153); -lean_ctor_set(x_157, 4, x_155); -lean_ctor_set(x_157, 5, x_156); -if (lean_is_scalar(x_127)) { - x_158 = lean_alloc_ctor(1, 2, 0); -} else { - x_158 = x_127; -} -lean_ctor_set(x_158, 0, x_157); -lean_ctor_set(x_158, 1, x_2); -x_1 = x_126; -x_2 = x_158; -goto _start; -} -} -else -{ -lean_object* x_160; lean_object* x_161; lean_object* x_162; -lean_dec(x_125); -if (lean_is_exclusive(x_5)) { - lean_ctor_release(x_5, 0); - lean_ctor_release(x_5, 1); - x_160 = x_5; -} else { - lean_dec_ref(x_5); - x_160 = lean_box(0); -} -x_161 = lean_ctor_get(x_1, 1); -lean_inc(x_161); -lean_dec(x_1); -if (lean_is_scalar(x_160)) { - x_162 = lean_alloc_ctor(1, 2, 0); -} else { - x_162 = x_160; -} -lean_ctor_set(x_162, 0, x_4); -lean_ctor_set(x_162, 1, x_2); -x_1 = x_161; -x_2 = x_162; -goto _start; -} -} -else -{ -lean_object* x_164; lean_object* x_165; lean_object* x_166; -lean_dec(x_124); -if (lean_is_exclusive(x_5)) { - lean_ctor_release(x_5, 0); - lean_ctor_release(x_5, 1); - x_164 = x_5; -} else { - lean_dec_ref(x_5); - x_164 = lean_box(0); -} -x_165 = lean_ctor_get(x_1, 1); -lean_inc(x_165); -lean_dec(x_1); -if (lean_is_scalar(x_164)) { - x_166 = lean_alloc_ctor(1, 2, 0); -} else { - x_166 = x_164; -} -lean_ctor_set(x_166, 0, x_4); -lean_ctor_set(x_166, 1, x_2); -x_1 = x_165; -x_2 = x_166; -goto _start; -} -} -} -else -{ -uint8_t x_168; -lean_dec(x_13); -x_168 = !lean_is_exclusive(x_5); -if (x_168 == 0) -{ -lean_object* x_169; lean_object* x_170; lean_object* x_171; -x_169 = lean_ctor_get(x_5, 1); -lean_dec(x_169); -x_170 = lean_ctor_get(x_5, 0); -lean_dec(x_170); -x_171 = lean_ctor_get(x_1, 1); -lean_inc(x_171); -lean_dec(x_1); -lean_ctor_set(x_5, 1, x_2); -lean_ctor_set(x_5, 0, x_4); -x_1 = x_171; -x_2 = x_5; -goto _start; -} -else -{ -lean_object* x_173; lean_object* x_174; +lean_object* x_133; lean_object* x_134; lean_object* x_135; lean_object* x_136; +lean_dec(x_116); +lean_dec(x_115); +lean_dec(x_110); +lean_free_object(x_11); +lean_dec(x_29); +lean_dec(x_27); +lean_dec(x_26); +lean_dec(x_25); +lean_dec(x_24); +lean_dec(x_23); +lean_free_object(x_1); +lean_dec(x_21); +lean_dec(x_6); lean_dec(x_5); -x_173 = lean_ctor_get(x_1, 1); -lean_inc(x_173); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +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_137; lean_object* x_138; lean_object* x_139; lean_object* x_140; +lean_dec(x_116); +lean_dec(x_115); +lean_dec(x_110); +lean_free_object(x_11); +lean_dec(x_29); +lean_dec(x_27); +lean_dec(x_26); +lean_dec(x_25); +lean_dec(x_24); +lean_dec(x_23); +lean_free_object(x_1); +lean_dec(x_21); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_137 = lean_ctor_get(x_117, 0); +lean_inc(x_137); +x_138 = lean_ctor_get(x_117, 1); +lean_inc(x_138); +if (lean_is_exclusive(x_117)) { + lean_ctor_release(x_117, 0); + lean_ctor_release(x_117, 1); + x_139 = x_117; +} else { + lean_dec_ref(x_117); + x_139 = lean_box(0); +} +if (lean_is_scalar(x_139)) { + x_140 = lean_alloc_ctor(1, 2, 0); +} else { + x_140 = x_139; +} +lean_ctor_set(x_140, 0, x_137); +lean_ctor_set(x_140, 1, x_138); +return x_140; +} +} +} +else +{ +lean_object* x_141; lean_object* x_142; lean_object* x_143; lean_object* x_144; +lean_free_object(x_11); +lean_dec(x_29); +lean_dec(x_27); +lean_dec(x_26); +lean_dec(x_25); +lean_dec(x_24); +lean_dec(x_23); +lean_free_object(x_1); +lean_dec(x_21); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_141 = lean_ctor_get(x_106, 0); +lean_inc(x_141); +x_142 = lean_ctor_get(x_106, 1); +lean_inc(x_142); +if (lean_is_exclusive(x_106)) { + lean_ctor_release(x_106, 0); + lean_ctor_release(x_106, 1); + x_143 = x_106; +} else { + lean_dec_ref(x_106); + x_143 = lean_box(0); +} +if (lean_is_scalar(x_143)) { + x_144 = lean_alloc_ctor(1, 2, 0); +} else { + x_144 = x_143; +} +lean_ctor_set(x_144, 0, x_141); +lean_ctor_set(x_144, 1, x_142); +return x_144; +} +} +} +else +{ +lean_object* x_145; lean_object* x_146; lean_object* x_147; lean_object* x_148; +x_145 = lean_ctor_get(x_11, 1); +lean_inc(x_145); +lean_dec(x_11); +x_146 = lean_ctor_get(x_19, 0); +lean_inc(x_146); +if (lean_is_exclusive(x_19)) { + lean_ctor_release(x_19, 0); + x_147 = x_19; +} else { + lean_dec_ref(x_19); + x_147 = lean_box(0); +} +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +x_148 = l_Lean_Meta_getFinValue_x3f(x_146, x_3, x_4, x_5, x_6, x_7); +lean_dec(x_146); +if (lean_obj_tag(x_148) == 0) +{ +lean_object* x_149; +x_149 = lean_ctor_get(x_148, 0); +lean_inc(x_149); +if (lean_obj_tag(x_149) == 0) +{ +lean_object* x_150; lean_object* x_151; +lean_dec(x_147); +lean_dec(x_145); +lean_dec(x_27); +lean_dec(x_26); +lean_dec(x_25); +lean_dec(x_24); +lean_dec(x_23); +lean_free_object(x_1); +x_150 = lean_ctor_get(x_148, 1); +lean_inc(x_150); +lean_dec(x_148); +x_151 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_151, 0, x_10); +lean_ctor_set(x_151, 1, x_2); +x_1 = x_21; +x_2 = x_151; +x_7 = x_150; +goto _start; +} +else +{ +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; +if (lean_is_exclusive(x_10)) { + lean_ctor_release(x_10, 0); + lean_ctor_release(x_10, 1); + lean_ctor_release(x_10, 2); + lean_ctor_release(x_10, 3); + lean_ctor_release(x_10, 4); + lean_ctor_release(x_10, 5); + x_153 = x_10; +} else { + lean_dec_ref(x_10); + x_153 = lean_box(0); +} +x_154 = lean_ctor_get(x_149, 0); +lean_inc(x_154); +lean_dec(x_149); +x_155 = lean_ctor_get(x_148, 1); +lean_inc(x_155); +lean_dec(x_148); +x_156 = lean_ctor_get(x_154, 0); +lean_inc(x_156); +x_157 = lean_ctor_get(x_154, 1); +lean_inc(x_157); +lean_dec(x_154); +x_158 = l_Lean_mkNatLit(x_157); +x_159 = l_Lean_mkNatLit(x_156); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +lean_inc(x_159); +lean_inc(x_158); +x_160 = l_Lean_Meta_mkLt(x_158, x_159, x_3, x_4, x_5, x_6, x_155); +if (lean_obj_tag(x_160) == 0) +{ +lean_object* x_161; lean_object* x_162; lean_object* x_163; +x_161 = lean_ctor_get(x_160, 0); +lean_inc(x_161); +x_162 = lean_ctor_get(x_160, 1); +lean_inc(x_162); +lean_dec(x_160); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +x_163 = l_Lean_Meta_mkDecideProof(x_161, x_3, x_4, x_5, x_6, x_162); +if (lean_obj_tag(x_163) == 0) +{ +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; +x_164 = lean_ctor_get(x_163, 0); +lean_inc(x_164); +x_165 = lean_ctor_get(x_163, 1); +lean_inc(x_165); +lean_dec(x_163); +x_166 = lean_box(0); +x_167 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_167, 0, x_159); +lean_ctor_set(x_167, 1, x_166); +if (lean_is_scalar(x_147)) { + x_168 = lean_alloc_ctor(3, 1, 0); +} else { + x_168 = x_147; +} +lean_ctor_set(x_168, 0, x_158); +x_169 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_169, 0, x_164); +lean_ctor_set(x_1, 1, x_166); +lean_ctor_set(x_1, 0, x_169); +x_170 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_170, 0, x_168); +lean_ctor_set(x_170, 1, x_1); +x_171 = l_List_mapM_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandFinValuePattern___spec__1___closed__3; +x_172 = lean_alloc_ctor(2, 4, 0); +lean_ctor_set(x_172, 0, x_171); +lean_ctor_set(x_172, 1, x_166); +lean_ctor_set(x_172, 2, x_167); +lean_ctor_set(x_172, 3, x_170); +x_173 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_173, 0, x_172); +lean_ctor_set(x_173, 1, x_145); +if (lean_is_scalar(x_153)) { + x_174 = lean_alloc_ctor(0, 6, 0); +} else { + x_174 = x_153; +} +lean_ctor_set(x_174, 0, x_23); +lean_ctor_set(x_174, 1, x_24); +lean_ctor_set(x_174, 2, x_25); +lean_ctor_set(x_174, 3, x_26); +lean_ctor_set(x_174, 4, x_173); +lean_ctor_set(x_174, 5, x_27); +x_175 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_175, 0, x_174); +lean_ctor_set(x_175, 1, x_2); +x_1 = x_21; +x_2 = x_175; +x_7 = x_165; +goto _start; +} +else +{ +lean_object* x_177; lean_object* x_178; lean_object* x_179; lean_object* x_180; +lean_dec(x_159); +lean_dec(x_158); +lean_dec(x_153); +lean_dec(x_147); +lean_dec(x_145); +lean_dec(x_27); +lean_dec(x_26); +lean_dec(x_25); +lean_dec(x_24); +lean_dec(x_23); +lean_free_object(x_1); +lean_dec(x_21); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_177 = lean_ctor_get(x_163, 0); +lean_inc(x_177); +x_178 = lean_ctor_get(x_163, 1); +lean_inc(x_178); +if (lean_is_exclusive(x_163)) { + lean_ctor_release(x_163, 0); + lean_ctor_release(x_163, 1); + x_179 = x_163; +} else { + lean_dec_ref(x_163); + x_179 = lean_box(0); +} +if (lean_is_scalar(x_179)) { + x_180 = lean_alloc_ctor(1, 2, 0); +} else { + x_180 = x_179; +} +lean_ctor_set(x_180, 0, x_177); +lean_ctor_set(x_180, 1, x_178); +return x_180; +} +} +else +{ +lean_object* x_181; lean_object* x_182; lean_object* x_183; lean_object* x_184; +lean_dec(x_159); +lean_dec(x_158); +lean_dec(x_153); +lean_dec(x_147); +lean_dec(x_145); +lean_dec(x_27); +lean_dec(x_26); +lean_dec(x_25); +lean_dec(x_24); +lean_dec(x_23); +lean_free_object(x_1); +lean_dec(x_21); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_181 = lean_ctor_get(x_160, 0); +lean_inc(x_181); +x_182 = lean_ctor_get(x_160, 1); +lean_inc(x_182); +if (lean_is_exclusive(x_160)) { + lean_ctor_release(x_160, 0); + lean_ctor_release(x_160, 1); + x_183 = x_160; +} else { + lean_dec_ref(x_160); + x_183 = lean_box(0); +} +if (lean_is_scalar(x_183)) { + x_184 = lean_alloc_ctor(1, 2, 0); +} else { + x_184 = x_183; +} +lean_ctor_set(x_184, 0, x_181); +lean_ctor_set(x_184, 1, x_182); +return x_184; +} +} +} +else +{ +lean_object* x_185; lean_object* x_186; lean_object* x_187; lean_object* x_188; +lean_dec(x_147); +lean_dec(x_145); +lean_dec(x_27); +lean_dec(x_26); +lean_dec(x_25); +lean_dec(x_24); +lean_dec(x_23); +lean_free_object(x_1); +lean_dec(x_21); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_185 = lean_ctor_get(x_148, 0); +lean_inc(x_185); +x_186 = lean_ctor_get(x_148, 1); +lean_inc(x_186); +if (lean_is_exclusive(x_148)) { + lean_ctor_release(x_148, 0); + lean_ctor_release(x_148, 1); + x_187 = x_148; +} else { + lean_dec_ref(x_148); + x_187 = lean_box(0); +} +if (lean_is_scalar(x_187)) { + x_188 = lean_alloc_ctor(1, 2, 0); +} else { + x_188 = x_187; +} +lean_ctor_set(x_188, 0, x_185); +lean_ctor_set(x_188, 1, x_186); +return x_188; +} +} +} +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; lean_object* x_196; lean_object* x_197; lean_object* x_198; lean_object* x_199; +x_189 = lean_ctor_get(x_1, 1); +lean_inc(x_189); lean_dec(x_1); -x_174 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_174, 0, x_4); -lean_ctor_set(x_174, 1, x_2); -x_1 = x_173; -x_2 = x_174; +x_190 = lean_ctor_get(x_10, 0); +lean_inc(x_190); +x_191 = lean_ctor_get(x_10, 1); +lean_inc(x_191); +x_192 = lean_ctor_get(x_10, 2); +lean_inc(x_192); +x_193 = lean_ctor_get(x_10, 3); +lean_inc(x_193); +x_194 = lean_ctor_get(x_10, 5); +lean_inc(x_194); +x_195 = lean_ctor_get(x_11, 1); +lean_inc(x_195); +if (lean_is_exclusive(x_11)) { + lean_ctor_release(x_11, 0); + lean_ctor_release(x_11, 1); + x_196 = x_11; +} else { + lean_dec_ref(x_11); + x_196 = lean_box(0); +} +x_197 = lean_ctor_get(x_19, 0); +lean_inc(x_197); +if (lean_is_exclusive(x_19)) { + lean_ctor_release(x_19, 0); + x_198 = x_19; +} else { + lean_dec_ref(x_19); + x_198 = lean_box(0); +} +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +x_199 = l_Lean_Meta_getFinValue_x3f(x_197, x_3, x_4, x_5, x_6, x_7); +lean_dec(x_197); +if (lean_obj_tag(x_199) == 0) +{ +lean_object* x_200; +x_200 = lean_ctor_get(x_199, 0); +lean_inc(x_200); +if (lean_obj_tag(x_200) == 0) +{ +lean_object* x_201; lean_object* x_202; +lean_dec(x_198); +lean_dec(x_195); +lean_dec(x_194); +lean_dec(x_193); +lean_dec(x_192); +lean_dec(x_191); +lean_dec(x_190); +x_201 = lean_ctor_get(x_199, 1); +lean_inc(x_201); +lean_dec(x_199); +if (lean_is_scalar(x_196)) { + x_202 = lean_alloc_ctor(1, 2, 0); +} else { + x_202 = x_196; +} +lean_ctor_set(x_202, 0, x_10); +lean_ctor_set(x_202, 1, x_2); +x_1 = x_189; +x_2 = x_202; +x_7 = x_201; +goto _start; +} +else +{ +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; +if (lean_is_exclusive(x_10)) { + lean_ctor_release(x_10, 0); + lean_ctor_release(x_10, 1); + lean_ctor_release(x_10, 2); + lean_ctor_release(x_10, 3); + lean_ctor_release(x_10, 4); + lean_ctor_release(x_10, 5); + x_204 = x_10; +} else { + lean_dec_ref(x_10); + x_204 = lean_box(0); +} +x_205 = lean_ctor_get(x_200, 0); +lean_inc(x_205); +lean_dec(x_200); +x_206 = lean_ctor_get(x_199, 1); +lean_inc(x_206); +lean_dec(x_199); +x_207 = lean_ctor_get(x_205, 0); +lean_inc(x_207); +x_208 = lean_ctor_get(x_205, 1); +lean_inc(x_208); +lean_dec(x_205); +x_209 = l_Lean_mkNatLit(x_208); +x_210 = l_Lean_mkNatLit(x_207); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +lean_inc(x_210); +lean_inc(x_209); +x_211 = l_Lean_Meta_mkLt(x_209, x_210, x_3, x_4, x_5, x_6, x_206); +if (lean_obj_tag(x_211) == 0) +{ +lean_object* x_212; lean_object* x_213; lean_object* x_214; +x_212 = lean_ctor_get(x_211, 0); +lean_inc(x_212); +x_213 = lean_ctor_get(x_211, 1); +lean_inc(x_213); +lean_dec(x_211); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +x_214 = l_Lean_Meta_mkDecideProof(x_212, x_3, x_4, x_5, x_6, x_213); +if (lean_obj_tag(x_214) == 0) +{ +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; +x_215 = lean_ctor_get(x_214, 0); +lean_inc(x_215); +x_216 = lean_ctor_get(x_214, 1); +lean_inc(x_216); +lean_dec(x_214); +x_217 = lean_box(0); +if (lean_is_scalar(x_196)) { + x_218 = lean_alloc_ctor(1, 2, 0); +} else { + x_218 = x_196; +} +lean_ctor_set(x_218, 0, x_210); +lean_ctor_set(x_218, 1, x_217); +if (lean_is_scalar(x_198)) { + x_219 = lean_alloc_ctor(3, 1, 0); +} else { + x_219 = x_198; +} +lean_ctor_set(x_219, 0, x_209); +x_220 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_220, 0, x_215); +x_221 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_221, 0, x_220); +lean_ctor_set(x_221, 1, x_217); +x_222 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_222, 0, x_219); +lean_ctor_set(x_222, 1, x_221); +x_223 = l_List_mapM_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandFinValuePattern___spec__1___closed__3; +x_224 = lean_alloc_ctor(2, 4, 0); +lean_ctor_set(x_224, 0, x_223); +lean_ctor_set(x_224, 1, x_217); +lean_ctor_set(x_224, 2, x_218); +lean_ctor_set(x_224, 3, x_222); +x_225 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_225, 0, x_224); +lean_ctor_set(x_225, 1, x_195); +if (lean_is_scalar(x_204)) { + x_226 = lean_alloc_ctor(0, 6, 0); +} else { + x_226 = x_204; +} +lean_ctor_set(x_226, 0, x_190); +lean_ctor_set(x_226, 1, x_191); +lean_ctor_set(x_226, 2, x_192); +lean_ctor_set(x_226, 3, x_193); +lean_ctor_set(x_226, 4, x_225); +lean_ctor_set(x_226, 5, x_194); +x_227 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_227, 0, x_226); +lean_ctor_set(x_227, 1, x_2); +x_1 = x_189; +x_2 = x_227; +x_7 = x_216; +goto _start; +} +else +{ +lean_object* x_229; lean_object* x_230; lean_object* x_231; lean_object* x_232; +lean_dec(x_210); +lean_dec(x_209); +lean_dec(x_204); +lean_dec(x_198); +lean_dec(x_196); +lean_dec(x_195); +lean_dec(x_194); +lean_dec(x_193); +lean_dec(x_192); +lean_dec(x_191); +lean_dec(x_190); +lean_dec(x_189); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_229 = lean_ctor_get(x_214, 0); +lean_inc(x_229); +x_230 = lean_ctor_get(x_214, 1); +lean_inc(x_230); +if (lean_is_exclusive(x_214)) { + lean_ctor_release(x_214, 0); + lean_ctor_release(x_214, 1); + x_231 = x_214; +} else { + lean_dec_ref(x_214); + x_231 = lean_box(0); +} +if (lean_is_scalar(x_231)) { + x_232 = lean_alloc_ctor(1, 2, 0); +} else { + x_232 = x_231; +} +lean_ctor_set(x_232, 0, x_229); +lean_ctor_set(x_232, 1, x_230); +return x_232; +} +} +else +{ +lean_object* x_233; lean_object* x_234; lean_object* x_235; lean_object* x_236; +lean_dec(x_210); +lean_dec(x_209); +lean_dec(x_204); +lean_dec(x_198); +lean_dec(x_196); +lean_dec(x_195); +lean_dec(x_194); +lean_dec(x_193); +lean_dec(x_192); +lean_dec(x_191); +lean_dec(x_190); +lean_dec(x_189); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_233 = lean_ctor_get(x_211, 0); +lean_inc(x_233); +x_234 = lean_ctor_get(x_211, 1); +lean_inc(x_234); +if (lean_is_exclusive(x_211)) { + lean_ctor_release(x_211, 0); + lean_ctor_release(x_211, 1); + x_235 = x_211; +} else { + lean_dec_ref(x_211); + x_235 = lean_box(0); +} +if (lean_is_scalar(x_235)) { + x_236 = lean_alloc_ctor(1, 2, 0); +} else { + x_236 = x_235; +} +lean_ctor_set(x_236, 0, x_233); +lean_ctor_set(x_236, 1, x_234); +return x_236; +} +} +} +else +{ +lean_object* x_237; lean_object* x_238; lean_object* x_239; lean_object* x_240; +lean_dec(x_198); +lean_dec(x_196); +lean_dec(x_195); +lean_dec(x_194); +lean_dec(x_193); +lean_dec(x_192); +lean_dec(x_191); +lean_dec(x_190); +lean_dec(x_189); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_237 = lean_ctor_get(x_199, 0); +lean_inc(x_237); +x_238 = lean_ctor_get(x_199, 1); +lean_inc(x_238); +if (lean_is_exclusive(x_199)) { + lean_ctor_release(x_199, 0); + lean_ctor_release(x_199, 1); + x_239 = x_199; +} else { + lean_dec_ref(x_199); + x_239 = lean_box(0); +} +if (lean_is_scalar(x_239)) { + x_240 = lean_alloc_ctor(1, 2, 0); +} else { + x_240 = x_239; +} +lean_ctor_set(x_240, 0, x_237); +lean_ctor_set(x_240, 1, x_238); +return x_240; +} +} +} +else +{ +uint8_t x_241; +lean_dec(x_19); +x_241 = !lean_is_exclusive(x_11); +if (x_241 == 0) +{ +lean_object* x_242; lean_object* x_243; lean_object* x_244; +x_242 = lean_ctor_get(x_11, 1); +lean_dec(x_242); +x_243 = lean_ctor_get(x_11, 0); +lean_dec(x_243); +x_244 = lean_ctor_get(x_1, 1); +lean_inc(x_244); +lean_dec(x_1); +lean_ctor_set(x_11, 1, x_2); +lean_ctor_set(x_11, 0, x_10); +x_1 = x_244; +x_2 = x_11; +goto _start; +} +else +{ +lean_object* x_246; lean_object* x_247; +lean_dec(x_11); +x_246 = lean_ctor_get(x_1, 1); +lean_inc(x_246); +lean_dec(x_1); +x_247 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_247, 0, x_10); +lean_ctor_set(x_247, 1, x_2); +x_1 = x_246; +x_2 = x_247; goto _start; } } @@ -20086,40 +23730,144 @@ goto _start; } } } -LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandNatValuePattern(lean_object* x_1) { +LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandFinValuePattern(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_2; -x_2 = !lean_is_exclusive(x_1); -if (x_2 == 0) +uint8_t x_7; +x_7 = !lean_is_exclusive(x_1); +if (x_7 == 0) { -lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_3 = lean_ctor_get(x_1, 2); -x_4 = lean_box(0); -x_5 = l_List_mapTR_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandNatValuePattern___spec__1(x_3, x_4); -lean_ctor_set(x_1, 2, x_5); -return x_1; +lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; +x_8 = lean_ctor_get(x_1, 0); +x_9 = lean_ctor_get(x_1, 1); +x_10 = lean_ctor_get(x_1, 2); +x_11 = lean_ctor_get(x_1, 3); +x_12 = lean_box(0); +x_13 = l_List_mapM_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandFinValuePattern___spec__1(x_10, x_12, x_2, x_3, x_4, x_5, x_6); +if (lean_obj_tag(x_13) == 0) +{ +uint8_t x_14; +x_14 = !lean_is_exclusive(x_13); +if (x_14 == 0) +{ +lean_object* x_15; +x_15 = lean_ctor_get(x_13, 0); +lean_ctor_set(x_1, 2, x_15); +lean_ctor_set(x_13, 0, x_1); +return x_13; } else { -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; -x_6 = lean_ctor_get(x_1, 0); -x_7 = lean_ctor_get(x_1, 1); -x_8 = lean_ctor_get(x_1, 2); -x_9 = lean_ctor_get(x_1, 3); -lean_inc(x_9); -lean_inc(x_8); -lean_inc(x_7); -lean_inc(x_6); +lean_object* x_16; lean_object* x_17; lean_object* x_18; +x_16 = lean_ctor_get(x_13, 0); +x_17 = lean_ctor_get(x_13, 1); +lean_inc(x_17); +lean_inc(x_16); +lean_dec(x_13); +lean_ctor_set(x_1, 2, x_16); +x_18 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_18, 0, x_1); +lean_ctor_set(x_18, 1, x_17); +return x_18; +} +} +else +{ +uint8_t x_19; +lean_free_object(x_1); +lean_dec(x_11); +lean_dec(x_9); +lean_dec(x_8); +x_19 = !lean_is_exclusive(x_13); +if (x_19 == 0) +{ +return x_13; +} +else +{ +lean_object* x_20; lean_object* x_21; lean_object* x_22; +x_20 = lean_ctor_get(x_13, 0); +x_21 = lean_ctor_get(x_13, 1); +lean_inc(x_21); +lean_inc(x_20); +lean_dec(x_13); +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; +} +} +} +else +{ +lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; +x_23 = lean_ctor_get(x_1, 0); +x_24 = lean_ctor_get(x_1, 1); +x_25 = lean_ctor_get(x_1, 2); +x_26 = lean_ctor_get(x_1, 3); +lean_inc(x_26); +lean_inc(x_25); +lean_inc(x_24); +lean_inc(x_23); lean_dec(x_1); -x_10 = lean_box(0); -x_11 = l_List_mapTR_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandNatValuePattern___spec__1(x_8, x_10); -x_12 = lean_alloc_ctor(0, 4, 0); -lean_ctor_set(x_12, 0, x_6); -lean_ctor_set(x_12, 1, x_7); -lean_ctor_set(x_12, 2, x_11); -lean_ctor_set(x_12, 3, x_9); -return x_12; +x_27 = lean_box(0); +x_28 = l_List_mapM_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandFinValuePattern___spec__1(x_25, x_27, x_2, x_3, x_4, x_5, x_6); +if (lean_obj_tag(x_28) == 0) +{ +lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; +x_29 = lean_ctor_get(x_28, 0); +lean_inc(x_29); +x_30 = lean_ctor_get(x_28, 1); +lean_inc(x_30); +if (lean_is_exclusive(x_28)) { + lean_ctor_release(x_28, 0); + lean_ctor_release(x_28, 1); + x_31 = x_28; +} else { + lean_dec_ref(x_28); + x_31 = lean_box(0); +} +x_32 = lean_alloc_ctor(0, 4, 0); +lean_ctor_set(x_32, 0, x_23); +lean_ctor_set(x_32, 1, x_24); +lean_ctor_set(x_32, 2, x_29); +lean_ctor_set(x_32, 3, x_26); +if (lean_is_scalar(x_31)) { + x_33 = lean_alloc_ctor(0, 2, 0); +} else { + x_33 = x_31; +} +lean_ctor_set(x_33, 0, x_32); +lean_ctor_set(x_33, 1, x_30); +return x_33; +} +else +{ +lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; +lean_dec(x_26); +lean_dec(x_24); +lean_dec(x_23); +x_34 = lean_ctor_get(x_28, 0); +lean_inc(x_34); +x_35 = lean_ctor_get(x_28, 1); +lean_inc(x_35); +if (lean_is_exclusive(x_28)) { + lean_ctor_release(x_28, 0); + lean_ctor_release(x_28, 1); + x_36 = x_28; +} else { + lean_dec_ref(x_28); + x_36 = lean_box(0); +} +if (lean_is_scalar(x_36)) { + x_37 = lean_alloc_ctor(1, 2, 0); +} else { + x_37 = x_36; +} +lean_ctor_set(x_37, 0, x_34); +lean_ctor_set(x_37, 1, x_35); +return x_37; +} } } } @@ -21201,7 +24949,7 @@ static lean_object* _init_l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_p _start: { lean_object* x_1; -x_1 = lean_mk_string_from_bytes("as-pattern", 10); +x_1 = lean_mk_string_from_bytes("fin value to constructor", 24); return x_1; } } @@ -21209,6 +24957,22 @@ static lean_object* _init_l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_p _start: { lean_object* x_1; +x_1 = lean_mk_string_from_bytes("int value to constructor", 24); +return x_1; +} +} +static lean_object* _init_l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_process___closed__6() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("as-pattern", 10); +return x_1; +} +} +static lean_object* _init_l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_process___closed__7() { +_start: +{ +lean_object* x_1; x_1 = lean_mk_string_from_bytes("leaf", 4); return x_1; } @@ -21237,74 +25001,841 @@ lean_inc(x_1); x_10 = l_Lean_Meta_Match_isCurrVarInductive(x_1, x_3, x_4, x_5, x_6, x_9); if (lean_obj_tag(x_10) == 0) { -lean_object* x_11; lean_object* x_12; lean_object* x_13; uint8_t x_106; +lean_object* x_11; lean_object* x_12; uint8_t x_13; 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_106 = l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_isDone(x_1); -if (x_106 == 0) +x_13 = l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_isDone(x_1); +if (x_13 == 0) { -uint8_t x_107; +uint8_t x_14; lean_inc(x_1); -x_107 = l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_hasAsPattern(x_1); -if (x_107 == 0) +x_14 = l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_hasAsPattern(x_1); +if (x_14 == 0) { -uint8_t x_108; -lean_inc(x_1); -x_108 = l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_isNatValueTransition(x_1); -if (x_108 == 0) -{ -uint8_t x_109; -x_109 = l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_isNextVar(x_1); -if (x_109 == 0) -{ -lean_object* x_110; lean_object* x_111; lean_object* x_112; lean_object* x_113; -lean_dec(x_11); -x_110 = l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_process___closed__3; -x_111 = l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_traceStep(x_110, x_2, x_3, x_4, x_5, x_6, x_12); -x_112 = lean_ctor_get(x_111, 1); -lean_inc(x_112); -lean_dec(x_111); +lean_object* x_15; lean_inc(x_6); lean_inc(x_5); lean_inc(x_4); lean_inc(x_3); -x_113 = l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processNonVariable(x_1, x_3, x_4, x_5, x_6, x_112); -if (lean_obj_tag(x_113) == 0) +lean_inc(x_1); +x_15 = l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_isNatValueTransition(x_1, x_3, x_4, x_5, x_6, x_12); +if (lean_obj_tag(x_15) == 0) { -lean_object* x_114; lean_object* x_115; -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); -x_1 = x_114; -x_7 = x_115; +lean_object* x_16; uint8_t x_17; +x_16 = lean_ctor_get(x_15, 0); +lean_inc(x_16); +x_17 = lean_unbox(x_16); +lean_dec(x_16); +if (x_17 == 0) +{ +lean_object* x_18; lean_object* x_19; +x_18 = lean_ctor_get(x_15, 1); +lean_inc(x_18); +lean_dec(x_15); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +lean_inc(x_1); +x_19 = l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_isIntValueTransition(x_1, x_3, x_4, x_5, x_6, x_18); +if (lean_obj_tag(x_19) == 0) +{ +lean_object* x_20; uint8_t x_21; +x_20 = lean_ctor_get(x_19, 0); +lean_inc(x_20); +x_21 = lean_unbox(x_20); +lean_dec(x_20); +if (x_21 == 0) +{ +lean_object* x_22; lean_object* x_23; +x_22 = lean_ctor_get(x_19, 1); +lean_inc(x_22); +lean_dec(x_19); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +lean_inc(x_1); +x_23 = l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_isFinValueTransition(x_1, x_3, x_4, x_5, x_6, x_22); +if (lean_obj_tag(x_23) == 0) +{ +lean_object* x_24; lean_object* x_25; lean_object* x_26; uint8_t x_133; +x_24 = lean_ctor_get(x_23, 0); +lean_inc(x_24); +x_25 = lean_ctor_get(x_23, 1); +lean_inc(x_25); +lean_dec(x_23); +x_133 = lean_unbox(x_24); +lean_dec(x_24); +if (x_133 == 0) +{ +uint8_t x_134; +x_134 = l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_isNextVar(x_1); +if (x_134 == 0) +{ +lean_object* x_135; lean_object* x_136; lean_object* x_137; lean_object* x_138; +lean_dec(x_11); +x_135 = l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_process___closed__3; +x_136 = l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_traceStep(x_135, x_2, x_3, x_4, x_5, x_6, x_25); +x_137 = lean_ctor_get(x_136, 1); +lean_inc(x_137); +lean_dec(x_136); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +x_138 = l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processNonVariable(x_1, x_3, x_4, x_5, x_6, x_137); +if (lean_obj_tag(x_138) == 0) +{ +lean_object* x_139; lean_object* x_140; +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); +x_1 = x_139; +x_7 = x_140; goto _start; } else { +uint8_t x_142; +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_142 = !lean_is_exclusive(x_138); +if (x_142 == 0) +{ +return x_138; +} +else +{ +lean_object* x_143; lean_object* x_144; lean_object* x_145; +x_143 = lean_ctor_get(x_138, 0); +x_144 = lean_ctor_get(x_138, 1); +lean_inc(x_144); +lean_inc(x_143); +lean_dec(x_138); +x_145 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_145, 0, x_143); +lean_ctor_set(x_145, 1, x_144); +return x_145; +} +} +} +else +{ +uint8_t x_146; +x_146 = lean_unbox(x_11); +lean_dec(x_11); +if (x_146 == 0) +{ +lean_object* x_147; +x_147 = lean_box(0); +x_26 = x_147; +goto block_132; +} +else +{ +uint8_t x_148; +lean_inc(x_1); +x_148 = l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_isConstructorTransition(x_1); +if (x_148 == 0) +{ +lean_object* x_149; +x_149 = lean_box(0); +x_26 = x_149; +goto block_132; +} +else +{ +lean_object* x_150; +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +x_150 = l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processConstructor(x_1, x_3, x_4, x_5, x_6, x_25); +if (lean_obj_tag(x_150) == 0) +{ +uint8_t x_151; +x_151 = !lean_is_exclusive(x_150); +if (x_151 == 0) +{ +lean_object* x_152; lean_object* x_153; lean_object* x_154; lean_object* x_155; uint8_t x_156; +x_152 = lean_ctor_get(x_150, 0); +x_153 = lean_ctor_get(x_150, 1); +x_154 = lean_array_get_size(x_152); +x_155 = lean_unsigned_to_nat(0u); +x_156 = lean_nat_dec_lt(x_155, x_154); +if (x_156 == 0) +{ +lean_object* x_157; +lean_dec(x_154); +lean_dec(x_152); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_157 = lean_box(0); +lean_ctor_set(x_150, 0, x_157); +return x_150; +} +else +{ +uint8_t x_158; +x_158 = lean_nat_dec_le(x_154, x_154); +if (x_158 == 0) +{ +lean_object* x_159; +lean_dec(x_154); +lean_dec(x_152); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_159 = lean_box(0); +lean_ctor_set(x_150, 0, x_159); +return x_150; +} +else +{ +size_t x_160; size_t x_161; lean_object* x_162; lean_object* x_163; +lean_free_object(x_150); +x_160 = 0; +x_161 = lean_usize_of_nat(x_154); +lean_dec(x_154); +x_162 = lean_box(0); +x_163 = l_Array_foldlMUnsafe_fold___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_process___spec__1(x_152, x_160, x_161, x_162, x_2, x_3, x_4, x_5, x_6, x_153); +lean_dec(x_152); +return x_163; +} +} +} +else +{ +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_150, 0); +x_165 = lean_ctor_get(x_150, 1); +lean_inc(x_165); +lean_inc(x_164); +lean_dec(x_150); +x_166 = lean_array_get_size(x_164); +x_167 = lean_unsigned_to_nat(0u); +x_168 = lean_nat_dec_lt(x_167, x_166); +if (x_168 == 0) +{ +lean_object* x_169; lean_object* x_170; +lean_dec(x_166); +lean_dec(x_164); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_169 = lean_box(0); +x_170 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_170, 0, x_169); +lean_ctor_set(x_170, 1, x_165); +return x_170; +} +else +{ +uint8_t x_171; +x_171 = lean_nat_dec_le(x_166, x_166); +if (x_171 == 0) +{ +lean_object* x_172; lean_object* x_173; +lean_dec(x_166); +lean_dec(x_164); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_172 = lean_box(0); +x_173 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_173, 0, x_172); +lean_ctor_set(x_173, 1, x_165); +return x_173; +} +else +{ +size_t x_174; size_t x_175; lean_object* x_176; lean_object* x_177; +x_174 = 0; +x_175 = lean_usize_of_nat(x_166); +lean_dec(x_166); +x_176 = lean_box(0); +x_177 = l_Array_foldlMUnsafe_fold___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_process___spec__1(x_164, x_174, x_175, x_176, x_2, x_3, x_4, x_5, x_6, x_165); +lean_dec(x_164); +return x_177; +} +} +} +} +else +{ +uint8_t x_178; +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_178 = !lean_is_exclusive(x_150); +if (x_178 == 0) +{ +return x_150; +} +else +{ +lean_object* x_179; lean_object* x_180; lean_object* x_181; +x_179 = lean_ctor_get(x_150, 0); +x_180 = lean_ctor_get(x_150, 1); +lean_inc(x_180); +lean_inc(x_179); +lean_dec(x_150); +x_181 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_181, 0, x_179); +lean_ctor_set(x_181, 1, x_180); +return x_181; +} +} +} +} +} +} +else +{ +lean_object* x_182; lean_object* x_183; lean_object* x_184; lean_object* x_185; +lean_dec(x_11); +x_182 = l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_process___closed__4; +x_183 = l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_traceStep(x_182, x_2, x_3, x_4, x_5, x_6, x_25); +x_184 = lean_ctor_get(x_183, 1); +lean_inc(x_184); +lean_dec(x_183); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +x_185 = l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandFinValuePattern(x_1, x_3, x_4, x_5, x_6, x_184); +if (lean_obj_tag(x_185) == 0) +{ +lean_object* x_186; lean_object* x_187; +x_186 = lean_ctor_get(x_185, 0); +lean_inc(x_186); +x_187 = lean_ctor_get(x_185, 1); +lean_inc(x_187); +lean_dec(x_185); +x_1 = x_186; +x_7 = x_187; +goto _start; +} +else +{ +uint8_t x_189; +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_189 = !lean_is_exclusive(x_185); +if (x_189 == 0) +{ +return x_185; +} +else +{ +lean_object* x_190; lean_object* x_191; lean_object* x_192; +x_190 = lean_ctor_get(x_185, 0); +x_191 = lean_ctor_get(x_185, 1); +lean_inc(x_191); +lean_inc(x_190); +lean_dec(x_185); +x_192 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_192, 0, x_190); +lean_ctor_set(x_192, 1, x_191); +return x_192; +} +} +} +block_132: +{ +uint8_t x_27; +lean_dec(x_26); +lean_inc(x_1); +x_27 = l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_isVariableTransition(x_1); +if (x_27 == 0) +{ +uint8_t x_28; +lean_inc(x_1); +x_28 = l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_isValueTransition(x_1); +if (x_28 == 0) +{ +uint8_t x_29; +lean_inc(x_1); +x_29 = l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_isArrayLitTransition(x_1); +if (x_29 == 0) +{ +lean_object* x_30; +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +lean_inc(x_1); +x_30 = l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_hasNatValPattern(x_1, x_3, x_4, x_5, x_6, x_25); +if (lean_obj_tag(x_30) == 0) +{ +lean_object* x_31; uint8_t x_32; +x_31 = lean_ctor_get(x_30, 0); +lean_inc(x_31); +x_32 = lean_unbox(x_31); +lean_dec(x_31); +if (x_32 == 0) +{ +lean_object* x_33; lean_object* x_34; +lean_dec(x_2); +x_33 = lean_ctor_get(x_30, 1); +lean_inc(x_33); +lean_dec(x_30); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +lean_inc(x_1); +x_34 = l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_checkNextPatternTypes(x_1, x_3, x_4, x_5, x_6, x_33); +if (lean_obj_tag(x_34) == 0) +{ +lean_object* x_35; lean_object* x_36; +x_35 = lean_ctor_get(x_34, 1); +lean_inc(x_35); +lean_dec(x_34); +x_36 = l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_throwNonSupported(x_1, x_3, x_4, x_5, x_6, x_35); +return x_36; +} +else +{ +uint8_t x_37; +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_1); +x_37 = !lean_is_exclusive(x_34); +if (x_37 == 0) +{ +return x_34; +} +else +{ +lean_object* x_38; lean_object* x_39; lean_object* x_40; +x_38 = lean_ctor_get(x_34, 0); +x_39 = lean_ctor_get(x_34, 1); +lean_inc(x_39); +lean_inc(x_38); +lean_dec(x_34); +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; +} +} +} +else +{ +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_30, 1); +lean_inc(x_41); +lean_dec(x_30); +x_42 = l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_process___closed__1; +x_43 = l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_traceStep(x_42, x_2, x_3, x_4, x_5, x_6, x_41); +x_44 = lean_ctor_get(x_43, 1); +lean_inc(x_44); +lean_dec(x_43); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +x_45 = l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandNatValuePattern(x_1, x_3, x_4, x_5, x_6, x_44); +if (lean_obj_tag(x_45) == 0) +{ +lean_object* x_46; lean_object* x_47; +x_46 = lean_ctor_get(x_45, 0); +lean_inc(x_46); +x_47 = lean_ctor_get(x_45, 1); +lean_inc(x_47); +lean_dec(x_45); +x_1 = x_46; +x_7 = x_47; +goto _start; +} +else +{ +uint8_t x_49; +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_49 = !lean_is_exclusive(x_45); +if (x_49 == 0) +{ +return x_45; +} +else +{ +lean_object* x_50; lean_object* x_51; lean_object* x_52; +x_50 = lean_ctor_get(x_45, 0); +x_51 = lean_ctor_get(x_45, 1); +lean_inc(x_51); +lean_inc(x_50); +lean_dec(x_45); +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 +{ +uint8_t x_53; +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +x_53 = !lean_is_exclusive(x_30); +if (x_53 == 0) +{ +return x_30; +} +else +{ +lean_object* x_54; lean_object* x_55; lean_object* x_56; +x_54 = lean_ctor_get(x_30, 0); +x_55 = lean_ctor_get(x_30, 1); +lean_inc(x_55); +lean_inc(x_54); +lean_dec(x_30); +x_56 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_56, 0, x_54); +lean_ctor_set(x_56, 1, x_55); +return x_56; +} +} +} +else +{ +lean_object* x_57; +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +x_57 = l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processArrayLit(x_1, x_3, x_4, x_5, x_6, x_25); +if (lean_obj_tag(x_57) == 0) +{ +uint8_t x_58; +x_58 = !lean_is_exclusive(x_57); +if (x_58 == 0) +{ +lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; uint8_t x_63; +x_59 = lean_ctor_get(x_57, 0); +x_60 = lean_ctor_get(x_57, 1); +x_61 = lean_array_get_size(x_59); +x_62 = lean_unsigned_to_nat(0u); +x_63 = lean_nat_dec_lt(x_62, x_61); +if (x_63 == 0) +{ +lean_object* x_64; +lean_dec(x_61); +lean_dec(x_59); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_64 = lean_box(0); +lean_ctor_set(x_57, 0, x_64); +return x_57; +} +else +{ +uint8_t x_65; +x_65 = lean_nat_dec_le(x_61, x_61); +if (x_65 == 0) +{ +lean_object* x_66; +lean_dec(x_61); +lean_dec(x_59); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_66 = lean_box(0); +lean_ctor_set(x_57, 0, x_66); +return x_57; +} +else +{ +size_t x_67; size_t x_68; lean_object* x_69; lean_object* x_70; +lean_free_object(x_57); +x_67 = 0; +x_68 = lean_usize_of_nat(x_61); +lean_dec(x_61); +x_69 = lean_box(0); +x_70 = l_Array_foldlMUnsafe_fold___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_process___spec__1(x_59, x_67, x_68, x_69, x_2, x_3, x_4, x_5, x_6, x_60); +lean_dec(x_59); +return x_70; +} +} +} +else +{ +lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; uint8_t x_75; +x_71 = lean_ctor_get(x_57, 0); +x_72 = lean_ctor_get(x_57, 1); +lean_inc(x_72); +lean_inc(x_71); +lean_dec(x_57); +x_73 = lean_array_get_size(x_71); +x_74 = lean_unsigned_to_nat(0u); +x_75 = lean_nat_dec_lt(x_74, x_73); +if (x_75 == 0) +{ +lean_object* x_76; lean_object* x_77; +lean_dec(x_73); +lean_dec(x_71); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_76 = lean_box(0); +x_77 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_77, 0, x_76); +lean_ctor_set(x_77, 1, x_72); +return x_77; +} +else +{ +uint8_t x_78; +x_78 = lean_nat_dec_le(x_73, x_73); +if (x_78 == 0) +{ +lean_object* x_79; lean_object* x_80; +lean_dec(x_73); +lean_dec(x_71); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_79 = lean_box(0); +x_80 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_80, 0, x_79); +lean_ctor_set(x_80, 1, x_72); +return x_80; +} +else +{ +size_t x_81; size_t x_82; lean_object* x_83; lean_object* x_84; +x_81 = 0; +x_82 = lean_usize_of_nat(x_73); +lean_dec(x_73); +x_83 = lean_box(0); +x_84 = l_Array_foldlMUnsafe_fold___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_process___spec__1(x_71, x_81, x_82, x_83, x_2, x_3, x_4, x_5, x_6, x_72); +lean_dec(x_71); +return x_84; +} +} +} +} +else +{ +uint8_t x_85; +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_85 = !lean_is_exclusive(x_57); +if (x_85 == 0) +{ +return x_57; +} +else +{ +lean_object* x_86; lean_object* x_87; lean_object* x_88; +x_86 = lean_ctor_get(x_57, 0); +x_87 = lean_ctor_get(x_57, 1); +lean_inc(x_87); +lean_inc(x_86); +lean_dec(x_57); +x_88 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_88, 0, x_86); +lean_ctor_set(x_88, 1, x_87); +return x_88; +} +} +} +} +else +{ +lean_object* x_89; +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +x_89 = l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processValue(x_1, x_3, x_4, x_5, x_6, x_25); +if (lean_obj_tag(x_89) == 0) +{ +uint8_t x_90; +x_90 = !lean_is_exclusive(x_89); +if (x_90 == 0) +{ +lean_object* x_91; lean_object* x_92; lean_object* x_93; lean_object* x_94; uint8_t x_95; +x_91 = lean_ctor_get(x_89, 0); +x_92 = lean_ctor_get(x_89, 1); +x_93 = lean_array_get_size(x_91); +x_94 = lean_unsigned_to_nat(0u); +x_95 = lean_nat_dec_lt(x_94, x_93); +if (x_95 == 0) +{ +lean_object* x_96; +lean_dec(x_93); +lean_dec(x_91); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_96 = lean_box(0); +lean_ctor_set(x_89, 0, x_96); +return x_89; +} +else +{ +uint8_t x_97; +x_97 = lean_nat_dec_le(x_93, x_93); +if (x_97 == 0) +{ +lean_object* x_98; +lean_dec(x_93); +lean_dec(x_91); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_98 = lean_box(0); +lean_ctor_set(x_89, 0, x_98); +return x_89; +} +else +{ +size_t x_99; size_t x_100; lean_object* x_101; lean_object* x_102; +lean_free_object(x_89); +x_99 = 0; +x_100 = lean_usize_of_nat(x_93); +lean_dec(x_93); +x_101 = lean_box(0); +x_102 = l_Array_foldlMUnsafe_fold___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_process___spec__1(x_91, x_99, x_100, x_101, x_2, x_3, x_4, x_5, x_6, x_92); +lean_dec(x_91); +return x_102; +} +} +} +else +{ +lean_object* x_103; lean_object* x_104; lean_object* x_105; lean_object* x_106; uint8_t x_107; +x_103 = lean_ctor_get(x_89, 0); +x_104 = lean_ctor_get(x_89, 1); +lean_inc(x_104); +lean_inc(x_103); +lean_dec(x_89); +x_105 = lean_array_get_size(x_103); +x_106 = lean_unsigned_to_nat(0u); +x_107 = lean_nat_dec_lt(x_106, x_105); +if (x_107 == 0) +{ +lean_object* x_108; lean_object* x_109; +lean_dec(x_105); +lean_dec(x_103); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_108 = lean_box(0); +x_109 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_109, 0, x_108); +lean_ctor_set(x_109, 1, x_104); +return x_109; +} +else +{ +uint8_t x_110; +x_110 = lean_nat_dec_le(x_105, x_105); +if (x_110 == 0) +{ +lean_object* x_111; lean_object* x_112; +lean_dec(x_105); +lean_dec(x_103); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_111 = lean_box(0); +x_112 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_112, 0, x_111); +lean_ctor_set(x_112, 1, x_104); +return x_112; +} +else +{ +size_t x_113; size_t x_114; lean_object* x_115; lean_object* x_116; +x_113 = 0; +x_114 = lean_usize_of_nat(x_105); +lean_dec(x_105); +x_115 = lean_box(0); +x_116 = l_Array_foldlMUnsafe_fold___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_process___spec__1(x_103, x_113, x_114, x_115, x_2, x_3, x_4, x_5, x_6, x_104); +lean_dec(x_103); +return x_116; +} +} +} +} +else +{ uint8_t x_117; lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); -x_117 = !lean_is_exclusive(x_113); +x_117 = !lean_is_exclusive(x_89); if (x_117 == 0) { -return x_113; +return x_89; } else { lean_object* x_118; lean_object* x_119; lean_object* x_120; -x_118 = lean_ctor_get(x_113, 0); -x_119 = lean_ctor_get(x_113, 1); +x_118 = lean_ctor_get(x_89, 0); +x_119 = lean_ctor_get(x_89, 1); lean_inc(x_119); lean_inc(x_118); -lean_dec(x_113); +lean_dec(x_89); x_120 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_120, 0, x_118); lean_ctor_set(x_120, 1, x_119); @@ -21312,774 +25843,391 @@ return x_120; } } } -else -{ -uint8_t x_121; -x_121 = lean_unbox(x_11); -lean_dec(x_11); -if (x_121 == 0) -{ -lean_object* x_122; -x_122 = lean_box(0); -x_13 = x_122; -goto block_105; } else { -uint8_t x_123; -lean_inc(x_1); -x_123 = l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_isConstructorTransition(x_1); -if (x_123 == 0) -{ -lean_object* x_124; -x_124 = lean_box(0); -x_13 = x_124; -goto block_105; -} -else -{ -lean_object* x_125; +lean_object* x_121; lean_object* x_122; lean_object* x_123; lean_object* x_124; +x_121 = l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_process___closed__2; +x_122 = l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_traceStep(x_121, x_2, x_3, x_4, x_5, x_6, x_25); +x_123 = lean_ctor_get(x_122, 1); +lean_inc(x_123); +lean_dec(x_122); lean_inc(x_6); lean_inc(x_5); lean_inc(x_4); lean_inc(x_3); -x_125 = l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processConstructor(x_1, x_3, x_4, x_5, x_6, x_12); -if (lean_obj_tag(x_125) == 0) +x_124 = l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processVariable(x_1, x_3, x_4, x_5, x_6, x_123); +if (lean_obj_tag(x_124) == 0) { -uint8_t x_126; -x_126 = !lean_is_exclusive(x_125); -if (x_126 == 0) -{ -lean_object* x_127; lean_object* x_128; lean_object* x_129; lean_object* x_130; uint8_t x_131; -x_127 = lean_ctor_get(x_125, 0); -x_128 = lean_ctor_get(x_125, 1); -x_129 = lean_array_get_size(x_127); -x_130 = lean_unsigned_to_nat(0u); -x_131 = lean_nat_dec_lt(x_130, x_129); -if (x_131 == 0) -{ -lean_object* x_132; -lean_dec(x_129); -lean_dec(x_127); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -x_132 = lean_box(0); -lean_ctor_set(x_125, 0, x_132); -return x_125; -} -else -{ -uint8_t x_133; -x_133 = lean_nat_dec_le(x_129, x_129); -if (x_133 == 0) -{ -lean_object* x_134; -lean_dec(x_129); -lean_dec(x_127); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -x_134 = lean_box(0); -lean_ctor_set(x_125, 0, x_134); -return x_125; -} -else -{ -size_t x_135; size_t x_136; lean_object* x_137; lean_object* x_138; -lean_free_object(x_125); -x_135 = 0; -x_136 = lean_usize_of_nat(x_129); -lean_dec(x_129); -x_137 = lean_box(0); -x_138 = l_Array_foldlMUnsafe_fold___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_process___spec__1(x_127, x_135, x_136, x_137, x_2, x_3, x_4, x_5, x_6, x_128); -lean_dec(x_127); -return x_138; -} -} -} -else -{ -lean_object* x_139; lean_object* x_140; lean_object* x_141; lean_object* x_142; uint8_t x_143; -x_139 = lean_ctor_get(x_125, 0); -x_140 = lean_ctor_get(x_125, 1); -lean_inc(x_140); -lean_inc(x_139); -lean_dec(x_125); -x_141 = lean_array_get_size(x_139); -x_142 = lean_unsigned_to_nat(0u); -x_143 = lean_nat_dec_lt(x_142, x_141); -if (x_143 == 0) -{ -lean_object* x_144; lean_object* x_145; -lean_dec(x_141); -lean_dec(x_139); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -x_144 = lean_box(0); -x_145 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_145, 0, x_144); -lean_ctor_set(x_145, 1, x_140); -return x_145; -} -else -{ -uint8_t x_146; -x_146 = lean_nat_dec_le(x_141, x_141); -if (x_146 == 0) -{ -lean_object* x_147; lean_object* x_148; -lean_dec(x_141); -lean_dec(x_139); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -x_147 = lean_box(0); -x_148 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_148, 0, x_147); -lean_ctor_set(x_148, 1, x_140); -return x_148; -} -else -{ -size_t x_149; size_t x_150; lean_object* x_151; lean_object* x_152; -x_149 = 0; -x_150 = lean_usize_of_nat(x_141); -lean_dec(x_141); -x_151 = lean_box(0); -x_152 = l_Array_foldlMUnsafe_fold___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_process___spec__1(x_139, x_149, x_150, x_151, x_2, x_3, x_4, x_5, x_6, x_140); -lean_dec(x_139); -return x_152; -} -} -} -} -else -{ -uint8_t x_153; -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -x_153 = !lean_is_exclusive(x_125); -if (x_153 == 0) -{ -return x_125; -} -else -{ -lean_object* x_154; lean_object* x_155; lean_object* x_156; -x_154 = lean_ctor_get(x_125, 0); -x_155 = lean_ctor_get(x_125, 1); -lean_inc(x_155); -lean_inc(x_154); -lean_dec(x_125); -x_156 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_156, 0, x_154); -lean_ctor_set(x_156, 1, x_155); -return x_156; -} -} -} -} -} -} -else -{ -lean_object* x_157; lean_object* x_158; lean_object* x_159; lean_object* x_160; -lean_dec(x_11); -x_157 = l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_process___closed__1; -x_158 = l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_traceStep(x_157, x_2, x_3, x_4, x_5, x_6, x_12); -x_159 = lean_ctor_get(x_158, 1); -lean_inc(x_159); -lean_dec(x_158); -x_160 = l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandNatValuePattern(x_1); -x_1 = x_160; -x_7 = x_159; -goto _start; -} -} -else -{ -lean_object* x_162; lean_object* x_163; lean_object* x_164; lean_object* x_165; -lean_dec(x_11); -x_162 = l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_process___closed__4; -x_163 = l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_traceStep(x_162, x_2, x_3, x_4, x_5, x_6, x_12); -x_164 = lean_ctor_get(x_163, 1); -lean_inc(x_164); -lean_dec(x_163); -lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_4); -lean_inc(x_3); -x_165 = l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processAsPattern(x_1, x_3, x_4, x_5, x_6, x_164); -if (lean_obj_tag(x_165) == 0) -{ -lean_object* x_166; lean_object* x_167; -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); -x_1 = x_166; -x_7 = x_167; +lean_object* x_125; lean_object* x_126; +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); +x_1 = x_125; +x_7 = x_126; goto _start; } else { -uint8_t x_169; +uint8_t x_128; lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); -x_169 = !lean_is_exclusive(x_165); -if (x_169 == 0) +x_128 = !lean_is_exclusive(x_124); +if (x_128 == 0) { -return x_165; +return x_124; } else { -lean_object* x_170; lean_object* x_171; lean_object* x_172; -x_170 = lean_ctor_get(x_165, 0); -x_171 = lean_ctor_get(x_165, 1); -lean_inc(x_171); -lean_inc(x_170); -lean_dec(x_165); -x_172 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_172, 0, x_170); -lean_ctor_set(x_172, 1, x_171); -return x_172; +lean_object* x_129; lean_object* x_130; lean_object* x_131; +x_129 = lean_ctor_get(x_124, 0); +x_130 = lean_ctor_get(x_124, 1); +lean_inc(x_130); +lean_inc(x_129); +lean_dec(x_124); +x_131 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_131, 0, x_129); +lean_ctor_set(x_131, 1, x_130); +return x_131; +} } } } } else { -lean_object* x_173; lean_object* x_174; lean_object* x_175; lean_object* x_176; +uint8_t x_193; lean_dec(x_11); -x_173 = l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_process___closed__5; -x_174 = l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_traceStep(x_173, x_2, x_3, x_4, x_5, x_6, x_12); -x_175 = lean_ctor_get(x_174, 1); -lean_inc(x_175); -lean_dec(x_174); -x_176 = l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processLeaf(x_1, x_2, x_3, x_4, x_5, x_6, x_175); -return x_176; -} -block_105: -{ -uint8_t x_14; -lean_dec(x_13); -lean_inc(x_1); -x_14 = l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_isVariableTransition(x_1); -if (x_14 == 0) -{ -uint8_t x_15; -lean_inc(x_1); -x_15 = l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_isValueTransition(x_1); -if (x_15 == 0) -{ -uint8_t x_16; -lean_inc(x_1); -x_16 = l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_isArrayLitTransition(x_1); -if (x_16 == 0) -{ -uint8_t x_17; -lean_inc(x_1); -x_17 = l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_hasNatValPattern(x_1); -if (x_17 == 0) -{ -lean_object* x_18; -lean_dec(x_2); -lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_4); -lean_inc(x_3); -lean_inc(x_1); -x_18 = l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_checkNextPatternTypes(x_1, x_3, x_4, x_5, x_6, x_12); -if (lean_obj_tag(x_18) == 0) -{ -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 = l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_throwNonSupported(x_1, x_3, x_4, x_5, x_6, x_19); -return x_20; -} -else -{ -uint8_t x_21; -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_1); -x_21 = !lean_is_exclusive(x_18); -if (x_21 == 0) -{ -return x_18; -} -else -{ -lean_object* x_22; lean_object* x_23; lean_object* x_24; -x_22 = lean_ctor_get(x_18, 0); -x_23 = lean_ctor_get(x_18, 1); -lean_inc(x_23); -lean_inc(x_22); -lean_dec(x_18); -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; -} -} -} -else -{ -lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; -x_25 = l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_process___closed__1; -x_26 = l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_traceStep(x_25, x_2, x_3, x_4, x_5, x_6, x_12); -x_27 = lean_ctor_get(x_26, 1); -lean_inc(x_27); -lean_dec(x_26); -x_28 = l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandNatValuePattern(x_1); -x_1 = x_28; -x_7 = x_27; -goto _start; -} -} -else -{ -lean_object* x_30; -lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_4); -lean_inc(x_3); -x_30 = l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processArrayLit(x_1, x_3, x_4, x_5, x_6, x_12); -if (lean_obj_tag(x_30) == 0) -{ -uint8_t x_31; -x_31 = !lean_is_exclusive(x_30); -if (x_31 == 0) -{ -lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; uint8_t x_36; -x_32 = lean_ctor_get(x_30, 0); -x_33 = lean_ctor_get(x_30, 1); -x_34 = lean_array_get_size(x_32); -x_35 = lean_unsigned_to_nat(0u); -x_36 = lean_nat_dec_lt(x_35, x_34); -if (x_36 == 0) -{ -lean_object* x_37; -lean_dec(x_34); -lean_dec(x_32); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -x_37 = lean_box(0); -lean_ctor_set(x_30, 0, x_37); -return x_30; -} -else -{ -uint8_t x_38; -x_38 = lean_nat_dec_le(x_34, x_34); -if (x_38 == 0) -{ -lean_object* x_39; -lean_dec(x_34); -lean_dec(x_32); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -x_39 = lean_box(0); -lean_ctor_set(x_30, 0, x_39); -return x_30; -} -else -{ -size_t x_40; size_t x_41; lean_object* x_42; lean_object* x_43; -lean_free_object(x_30); -x_40 = 0; -x_41 = lean_usize_of_nat(x_34); -lean_dec(x_34); -x_42 = lean_box(0); -x_43 = l_Array_foldlMUnsafe_fold___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_process___spec__1(x_32, x_40, x_41, x_42, x_2, x_3, x_4, x_5, x_6, x_33); -lean_dec(x_32); -return x_43; -} -} -} -else -{ -lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; uint8_t x_48; -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_array_get_size(x_44); -x_47 = lean_unsigned_to_nat(0u); -x_48 = lean_nat_dec_lt(x_47, x_46); -if (x_48 == 0) -{ -lean_object* x_49; lean_object* x_50; -lean_dec(x_46); -lean_dec(x_44); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -x_49 = lean_box(0); -x_50 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_50, 0, x_49); -lean_ctor_set(x_50, 1, x_45); -return x_50; -} -else -{ -uint8_t x_51; -x_51 = lean_nat_dec_le(x_46, x_46); -if (x_51 == 0) -{ -lean_object* x_52; lean_object* x_53; -lean_dec(x_46); -lean_dec(x_44); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -x_52 = lean_box(0); -x_53 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_53, 0, x_52); -lean_ctor_set(x_53, 1, x_45); -return x_53; -} -else -{ -size_t x_54; size_t x_55; lean_object* x_56; lean_object* x_57; -x_54 = 0; -x_55 = lean_usize_of_nat(x_46); -lean_dec(x_46); -x_56 = lean_box(0); -x_57 = l_Array_foldlMUnsafe_fold___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_process___spec__1(x_44, x_54, x_55, x_56, x_2, x_3, x_4, x_5, x_6, x_45); -lean_dec(x_44); -return x_57; -} -} -} -} -else -{ -uint8_t x_58; -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -x_58 = !lean_is_exclusive(x_30); -if (x_58 == 0) -{ -return x_30; -} -else -{ -lean_object* x_59; lean_object* x_60; lean_object* x_61; -x_59 = lean_ctor_get(x_30, 0); -x_60 = lean_ctor_get(x_30, 1); -lean_inc(x_60); -lean_inc(x_59); -lean_dec(x_30); -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; -} -} -} -} -else -{ -lean_object* x_62; -lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_4); -lean_inc(x_3); -x_62 = l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processValue(x_1, x_3, x_4, x_5, x_6, x_12); -if (lean_obj_tag(x_62) == 0) -{ -uint8_t x_63; -x_63 = !lean_is_exclusive(x_62); -if (x_63 == 0) -{ -lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; uint8_t x_68; -x_64 = lean_ctor_get(x_62, 0); -x_65 = lean_ctor_get(x_62, 1); -x_66 = lean_array_get_size(x_64); -x_67 = lean_unsigned_to_nat(0u); -x_68 = lean_nat_dec_lt(x_67, x_66); -if (x_68 == 0) -{ -lean_object* x_69; -lean_dec(x_66); -lean_dec(x_64); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -x_69 = lean_box(0); -lean_ctor_set(x_62, 0, x_69); -return x_62; -} -else -{ -uint8_t x_70; -x_70 = lean_nat_dec_le(x_66, x_66); -if (x_70 == 0) -{ -lean_object* x_71; -lean_dec(x_66); -lean_dec(x_64); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -x_71 = lean_box(0); -lean_ctor_set(x_62, 0, x_71); -return x_62; -} -else -{ -size_t x_72; size_t x_73; lean_object* x_74; lean_object* x_75; -lean_free_object(x_62); -x_72 = 0; -x_73 = lean_usize_of_nat(x_66); -lean_dec(x_66); -x_74 = lean_box(0); -x_75 = l_Array_foldlMUnsafe_fold___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_process___spec__1(x_64, x_72, x_73, x_74, x_2, x_3, x_4, x_5, x_6, x_65); -lean_dec(x_64); -return x_75; -} -} -} -else -{ -lean_object* x_76; lean_object* x_77; lean_object* x_78; lean_object* x_79; uint8_t x_80; -x_76 = lean_ctor_get(x_62, 0); -x_77 = lean_ctor_get(x_62, 1); -lean_inc(x_77); -lean_inc(x_76); -lean_dec(x_62); -x_78 = lean_array_get_size(x_76); -x_79 = lean_unsigned_to_nat(0u); -x_80 = lean_nat_dec_lt(x_79, x_78); -if (x_80 == 0) -{ -lean_object* x_81; lean_object* x_82; -lean_dec(x_78); -lean_dec(x_76); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -x_81 = lean_box(0); -x_82 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_82, 0, x_81); -lean_ctor_set(x_82, 1, x_77); -return x_82; -} -else -{ -uint8_t x_83; -x_83 = lean_nat_dec_le(x_78, x_78); -if (x_83 == 0) -{ -lean_object* x_84; lean_object* x_85; -lean_dec(x_78); -lean_dec(x_76); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -x_84 = lean_box(0); -x_85 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_85, 0, x_84); -lean_ctor_set(x_85, 1, x_77); -return x_85; -} -else -{ -size_t x_86; size_t x_87; lean_object* x_88; lean_object* x_89; -x_86 = 0; -x_87 = lean_usize_of_nat(x_78); -lean_dec(x_78); -x_88 = lean_box(0); -x_89 = l_Array_foldlMUnsafe_fold___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_process___spec__1(x_76, x_86, x_87, x_88, x_2, x_3, x_4, x_5, x_6, x_77); -lean_dec(x_76); -return x_89; -} -} -} -} -else -{ -uint8_t x_90; -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -x_90 = !lean_is_exclusive(x_62); -if (x_90 == 0) -{ -return x_62; -} -else -{ -lean_object* x_91; lean_object* x_92; lean_object* x_93; -x_91 = lean_ctor_get(x_62, 0); -x_92 = lean_ctor_get(x_62, 1); -lean_inc(x_92); -lean_inc(x_91); -lean_dec(x_62); -x_93 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_93, 0, x_91); -lean_ctor_set(x_93, 1, x_92); -return x_93; -} -} -} -} -else -{ -lean_object* x_94; lean_object* x_95; lean_object* x_96; lean_object* x_97; -x_94 = l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_process___closed__2; -x_95 = l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_traceStep(x_94, x_2, x_3, x_4, x_5, x_6, x_12); -x_96 = lean_ctor_get(x_95, 1); -lean_inc(x_96); -lean_dec(x_95); -lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_4); -lean_inc(x_3); -x_97 = l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processVariable(x_1, x_3, x_4, x_5, x_6, x_96); -if (lean_obj_tag(x_97) == 0) -{ -lean_object* x_98; lean_object* x_99; -x_98 = lean_ctor_get(x_97, 0); -lean_inc(x_98); -x_99 = lean_ctor_get(x_97, 1); -lean_inc(x_99); -lean_dec(x_97); -x_1 = x_98; -x_7 = x_99; -goto _start; -} -else -{ -uint8_t x_101; -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -x_101 = !lean_is_exclusive(x_97); -if (x_101 == 0) -{ -return x_97; -} -else -{ -lean_object* x_102; lean_object* x_103; lean_object* x_104; -x_102 = lean_ctor_get(x_97, 0); -x_103 = lean_ctor_get(x_97, 1); -lean_inc(x_103); -lean_inc(x_102); -lean_dec(x_97); -x_104 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_104, 0, x_102); -lean_ctor_set(x_104, 1, x_103); -return x_104; -} -} -} -} -} -else -{ -uint8_t x_177; lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_177 = !lean_is_exclusive(x_10); -if (x_177 == 0) +x_193 = !lean_is_exclusive(x_23); +if (x_193 == 0) +{ +return x_23; +} +else +{ +lean_object* x_194; lean_object* x_195; lean_object* x_196; +x_194 = lean_ctor_get(x_23, 0); +x_195 = lean_ctor_get(x_23, 1); +lean_inc(x_195); +lean_inc(x_194); +lean_dec(x_23); +x_196 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_196, 0, x_194); +lean_ctor_set(x_196, 1, x_195); +return x_196; +} +} +} +else +{ +lean_object* x_197; lean_object* x_198; lean_object* x_199; lean_object* x_200; lean_object* x_201; +lean_dec(x_11); +x_197 = lean_ctor_get(x_19, 1); +lean_inc(x_197); +lean_dec(x_19); +x_198 = l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_process___closed__5; +x_199 = l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_traceStep(x_198, x_2, x_3, x_4, x_5, x_6, x_197); +x_200 = lean_ctor_get(x_199, 1); +lean_inc(x_200); +lean_dec(x_199); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +x_201 = l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandIntValuePattern(x_1, x_3, x_4, x_5, x_6, x_200); +if (lean_obj_tag(x_201) == 0) +{ +lean_object* x_202; lean_object* x_203; +x_202 = lean_ctor_get(x_201, 0); +lean_inc(x_202); +x_203 = lean_ctor_get(x_201, 1); +lean_inc(x_203); +lean_dec(x_201); +x_1 = x_202; +x_7 = x_203; +goto _start; +} +else +{ +uint8_t x_205; +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_205 = !lean_is_exclusive(x_201); +if (x_205 == 0) +{ +return x_201; +} +else +{ +lean_object* x_206; lean_object* x_207; lean_object* x_208; +x_206 = lean_ctor_get(x_201, 0); +x_207 = lean_ctor_get(x_201, 1); +lean_inc(x_207); +lean_inc(x_206); +lean_dec(x_201); +x_208 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_208, 0, x_206); +lean_ctor_set(x_208, 1, x_207); +return x_208; +} +} +} +} +else +{ +uint8_t x_209; +lean_dec(x_11); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +x_209 = !lean_is_exclusive(x_19); +if (x_209 == 0) +{ +return x_19; +} +else +{ +lean_object* x_210; lean_object* x_211; lean_object* x_212; +x_210 = lean_ctor_get(x_19, 0); +x_211 = lean_ctor_get(x_19, 1); +lean_inc(x_211); +lean_inc(x_210); +lean_dec(x_19); +x_212 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_212, 0, x_210); +lean_ctor_set(x_212, 1, x_211); +return x_212; +} +} +} +else +{ +lean_object* x_213; lean_object* x_214; lean_object* x_215; lean_object* x_216; lean_object* x_217; +lean_dec(x_11); +x_213 = lean_ctor_get(x_15, 1); +lean_inc(x_213); +lean_dec(x_15); +x_214 = l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_process___closed__1; +x_215 = l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_traceStep(x_214, x_2, x_3, x_4, x_5, x_6, x_213); +x_216 = lean_ctor_get(x_215, 1); +lean_inc(x_216); +lean_dec(x_215); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +x_217 = l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandNatValuePattern(x_1, x_3, x_4, x_5, x_6, x_216); +if (lean_obj_tag(x_217) == 0) +{ +lean_object* x_218; lean_object* x_219; +x_218 = lean_ctor_get(x_217, 0); +lean_inc(x_218); +x_219 = lean_ctor_get(x_217, 1); +lean_inc(x_219); +lean_dec(x_217); +x_1 = x_218; +x_7 = x_219; +goto _start; +} +else +{ +uint8_t x_221; +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_221 = !lean_is_exclusive(x_217); +if (x_221 == 0) +{ +return x_217; +} +else +{ +lean_object* x_222; lean_object* x_223; lean_object* x_224; +x_222 = lean_ctor_get(x_217, 0); +x_223 = lean_ctor_get(x_217, 1); +lean_inc(x_223); +lean_inc(x_222); +lean_dec(x_217); +x_224 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_224, 0, x_222); +lean_ctor_set(x_224, 1, x_223); +return x_224; +} +} +} +} +else +{ +uint8_t x_225; +lean_dec(x_11); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +x_225 = !lean_is_exclusive(x_15); +if (x_225 == 0) +{ +return x_15; +} +else +{ +lean_object* x_226; lean_object* x_227; lean_object* x_228; +x_226 = lean_ctor_get(x_15, 0); +x_227 = lean_ctor_get(x_15, 1); +lean_inc(x_227); +lean_inc(x_226); +lean_dec(x_15); +x_228 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_228, 0, x_226); +lean_ctor_set(x_228, 1, x_227); +return x_228; +} +} +} +else +{ +lean_object* x_229; lean_object* x_230; lean_object* x_231; lean_object* x_232; +lean_dec(x_11); +x_229 = l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_process___closed__6; +x_230 = l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_traceStep(x_229, x_2, x_3, x_4, x_5, x_6, x_12); +x_231 = lean_ctor_get(x_230, 1); +lean_inc(x_231); +lean_dec(x_230); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +x_232 = l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processAsPattern(x_1, x_3, x_4, x_5, x_6, x_231); +if (lean_obj_tag(x_232) == 0) +{ +lean_object* x_233; lean_object* x_234; +x_233 = lean_ctor_get(x_232, 0); +lean_inc(x_233); +x_234 = lean_ctor_get(x_232, 1); +lean_inc(x_234); +lean_dec(x_232); +x_1 = x_233; +x_7 = x_234; +goto _start; +} +else +{ +uint8_t x_236; +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_236 = !lean_is_exclusive(x_232); +if (x_236 == 0) +{ +return x_232; +} +else +{ +lean_object* x_237; lean_object* x_238; lean_object* x_239; +x_237 = lean_ctor_get(x_232, 0); +x_238 = lean_ctor_get(x_232, 1); +lean_inc(x_238); +lean_inc(x_237); +lean_dec(x_232); +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 +{ +lean_object* x_240; lean_object* x_241; lean_object* x_242; lean_object* x_243; +lean_dec(x_11); +x_240 = l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_process___closed__7; +x_241 = l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_traceStep(x_240, x_2, x_3, x_4, x_5, x_6, x_12); +x_242 = lean_ctor_get(x_241, 1); +lean_inc(x_242); +lean_dec(x_241); +x_243 = l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processLeaf(x_1, x_2, x_3, x_4, x_5, x_6, x_242); +return x_243; +} +} +else +{ +uint8_t x_244; +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +x_244 = !lean_is_exclusive(x_10); +if (x_244 == 0) { return x_10; } else { -lean_object* x_178; lean_object* x_179; lean_object* x_180; -x_178 = lean_ctor_get(x_10, 0); -x_179 = lean_ctor_get(x_10, 1); -lean_inc(x_179); -lean_inc(x_178); +lean_object* x_245; lean_object* x_246; lean_object* x_247; +x_245 = lean_ctor_get(x_10, 0); +x_246 = lean_ctor_get(x_10, 1); +lean_inc(x_246); +lean_inc(x_245); lean_dec(x_10); -x_180 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_180, 0, x_178); -lean_ctor_set(x_180, 1, x_179); -return x_180; +x_247 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_247, 0, x_245); +lean_ctor_set(x_247, 1, x_246); +return x_247; } } } else { -uint8_t x_181; +uint8_t x_248; lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_181 = !lean_is_exclusive(x_8); -if (x_181 == 0) +x_248 = !lean_is_exclusive(x_8); +if (x_248 == 0) { return x_8; } else { -lean_object* x_182; lean_object* x_183; lean_object* x_184; -x_182 = lean_ctor_get(x_8, 0); -x_183 = lean_ctor_get(x_8, 1); -lean_inc(x_183); -lean_inc(x_182); +lean_object* x_249; lean_object* x_250; lean_object* x_251; +x_249 = lean_ctor_get(x_8, 0); +x_250 = lean_ctor_get(x_8, 1); +lean_inc(x_250); +lean_inc(x_249); lean_dec(x_8); -x_184 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_184, 0, x_182); -lean_ctor_set(x_184, 1, x_183); -return x_184; +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; } } } @@ -22289,7 +26437,7 @@ lean_dec(x_2); return x_7; } } -static lean_object* _init_l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_9273____closed__1() { +static lean_object* _init_l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10385____closed__1() { _start: { lean_object* x_1; @@ -22297,7 +26445,7 @@ x_1 = lean_mk_string_from_bytes("bootstrap", 9); return x_1; } } -static lean_object* _init_l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_9273____closed__2() { +static lean_object* _init_l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10385____closed__2() { _start: { lean_object* x_1; @@ -22305,17 +26453,17 @@ x_1 = lean_mk_string_from_bytes("genMatcherCode", 14); return x_1; } } -static lean_object* _init_l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_9273____closed__3() { +static lean_object* _init_l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10385____closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_9273____closed__1; -x_2 = l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_9273____closed__2; +x_1 = l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10385____closed__1; +x_2 = l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10385____closed__2; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_9273____closed__4() { +static lean_object* _init_l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10385____closed__4() { _start: { lean_object* x_1; @@ -22323,13 +26471,13 @@ x_1 = lean_mk_string_from_bytes("disable code generation for auxiliary matcher f return x_1; } } -static lean_object* _init_l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_9273____closed__5() { +static lean_object* _init_l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10385____closed__5() { _start: { uint8_t x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; x_1 = 1; -x_2 = l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_9273____closed__1; -x_3 = l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_9273____closed__4; +x_2 = l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10385____closed__1; +x_3 = l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10385____closed__4; x_4 = lean_box(x_1); x_5 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_5, 0, x_4); @@ -22338,7 +26486,7 @@ lean_ctor_set(x_5, 2, x_3); return x_5; } } -static lean_object* _init_l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_9273____closed__6() { +static lean_object* _init_l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10385____closed__6() { _start: { lean_object* x_1; @@ -22346,31 +26494,31 @@ x_1 = lean_mk_string_from_bytes("Lean", 4); return x_1; } } -static lean_object* _init_l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_9273____closed__7() { +static lean_object* _init_l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10385____closed__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_Match_initFn____x40_Lean_Meta_Match_Match___hyg_9273____closed__6; +x_1 = l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10385____closed__6; x_2 = l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_withAlts_loop___rarg___closed__3; x_3 = l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_withAlts_loop___rarg___closed__4; -x_4 = l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_9273____closed__1; -x_5 = l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_9273____closed__2; +x_4 = l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10385____closed__1; +x_5 = l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10385____closed__2; x_6 = l_Lean_Name_mkStr5(x_1, x_2, x_3, x_4, x_5); return x_6; } } -LEAN_EXPORT lean_object* l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_9273_(lean_object* x_1) { +LEAN_EXPORT lean_object* l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10385_(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_2 = l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_9273____closed__3; -x_3 = l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_9273____closed__5; -x_4 = l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_9273____closed__7; +x_2 = l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10385____closed__3; +x_3 = l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10385____closed__5; +x_4 = l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10385____closed__7; x_5 = l_Lean_Option_register___at_Lean_initFn____x40_Lean_Util_Profile___hyg_6____spec__1(x_2, x_3, x_4, x_1); return x_5; } } -LEAN_EXPORT uint8_t l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_9310____lambda__1(uint8_t x_1, uint8_t x_2) { +LEAN_EXPORT uint8_t l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10422____lambda__1(uint8_t x_1, uint8_t x_2) { _start: { if (x_1 == 0) @@ -22394,37 +26542,37 @@ return x_2; } } } -static lean_object* _init_l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_9310____closed__1() { +static lean_object* _init_l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10422____closed__1() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_9310____lambda__1___boxed), 2, 0); +x_1 = lean_alloc_closure((void*)(l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10422____lambda__1___boxed), 2, 0); return x_1; } } -static lean_object* _init_l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_9310____closed__2() { +static lean_object* _init_l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10422____closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_9310____closed__1; +x_1 = l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10422____closed__1; x_2 = lean_alloc_closure((void*)(l_instBEq___rarg), 3, 1); lean_closure_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_9310____closed__3() { +static lean_object* _init_l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10422____closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Expr_instBEqExpr; -x_2 = l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_9310____closed__2; +x_2 = l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10422____closed__2; x_3 = lean_alloc_closure((void*)(l_instBEqProd___rarg), 4, 2); lean_closure_set(x_3, 0, x_1); lean_closure_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_9310____closed__4() { +static lean_object* _init_l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10422____closed__4() { _start: { lean_object* x_1; @@ -22432,19 +26580,19 @@ x_1 = lean_alloc_closure((void*)(l_instHashableBool___boxed), 1, 0); return x_1; } } -static lean_object* _init_l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_9310____closed__5() { +static lean_object* _init_l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10422____closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Expr_instHashableExpr; -x_2 = l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_9310____closed__4; +x_2 = l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10422____closed__4; x_3 = lean_alloc_closure((void*)(l_instHashableProd___rarg___boxed), 3, 2); lean_closure_set(x_3, 0, x_1); lean_closure_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_9310____closed__6() { +static lean_object* _init_l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10422____closed__6() { _start: { lean_object* x_1; @@ -22452,21 +26600,21 @@ x_1 = l_Lean_PersistentHashMap_mkEmptyEntriesArray(lean_box(0), lean_box(0)); return x_1; } } -static lean_object* _init_l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_9310____closed__7() { +static lean_object* _init_l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10422____closed__7() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_9310____closed__6; +x_1 = l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10422____closed__6; 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_Match_initFn____x40_Lean_Meta_Match_Match___hyg_9310____closed__8() { +static lean_object* _init_l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10422____closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_9310____closed__7; +x_1 = l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10422____closed__7; x_2 = lean_unsigned_to_nat(0u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -22474,26 +26622,26 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_9310____closed__9() { +static lean_object* _init_l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10422____closed__9() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_9310____closed__8; +x_1 = l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10422____closed__8; x_2 = lean_alloc_closure((void*)(l_EStateM_pure___rarg), 2, 1); lean_closure_set(x_2, 0, x_1); return x_2; } } -LEAN_EXPORT lean_object* l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_9310_(lean_object* x_1) { +LEAN_EXPORT lean_object* l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10422_(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; -x_2 = l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_9310____closed__9; +x_2 = l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10422____closed__9; x_3 = l_Lean_EnvExtensionInterfaceUnsafe_registerExt___rarg(x_2, x_1); return x_3; } } -LEAN_EXPORT lean_object* l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_9310____lambda__1___boxed(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10422____lambda__1___boxed(lean_object* x_1, lean_object* x_2) { _start: { uint8_t x_3; uint8_t x_4; uint8_t x_5; lean_object* x_6; @@ -22501,7 +26649,7 @@ x_3 = lean_unbox(x_1); lean_dec(x_1); x_4 = lean_unbox(x_2); lean_dec(x_2); -x_5 = l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_9310____lambda__1(x_3, x_4); +x_5 = l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10422____lambda__1(x_3, x_4); x_6 = lean_box(x_5); return x_6; } @@ -23674,7 +27822,7 @@ static lean_object* _init_l_Lean_Meta_Match_mkMatcherAuxDefinition___lambda__2__ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_9310____closed__7; +x_1 = l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10422____closed__7; x_2 = lean_unsigned_to_nat(0u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -23697,7 +27845,7 @@ static lean_object* _init_l_Lean_Meta_Match_mkMatcherAuxDefinition___lambda__2__ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_9310____closed__7; +x_1 = l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10422____closed__7; x_2 = lean_unsigned_to_nat(0u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -23717,7 +27865,7 @@ static lean_object* _init_l_Lean_Meta_Match_mkMatcherAuxDefinition___lambda__2__ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_9310____closed__7; +x_1 = l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10422____closed__7; x_2 = lean_unsigned_to_nat(0u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -23789,7 +27937,7 @@ static lean_object* _init_l_Lean_Meta_Match_mkMatcherAuxDefinition___lambda__2__ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_9310____closed__7; +x_1 = l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10422____closed__7; x_2 = lean_unsigned_to_nat(0u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -23823,7 +27971,7 @@ static lean_object* _init_l_Lean_Meta_Match_mkMatcherAuxDefinition___lambda__2__ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_9310____closed__7; +x_1 = l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10422____closed__7; x_2 = lean_unsigned_to_nat(0u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -24314,8 +28462,8 @@ static lean_object* _init_l_Lean_Meta_Match_mkMatcherAuxDefinition___lambda__4__ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_9310____closed__3; -x_2 = l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_9310____closed__5; +x_1 = l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10422____closed__3; +x_2 = l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10422____closed__5; x_3 = l_Lean_PersistentHashMap_instInhabitedPersistentHashMap___rarg(x_1, x_2); return x_3; } @@ -32323,7 +36471,7 @@ lean_inc(x_7); lean_inc(x_6); lean_inc(x_5); lean_inc(x_4); -x_18 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_15, x_17, x_4, x_5, x_6, x_7, x_16); +x_18 = l_Lean_Meta_forallTelescope___at_Lean_Meta_mapForallTelescope_x27___spec__1___rarg(x_15, x_17, x_4, x_5, x_6, x_7, x_16); if (lean_obj_tag(x_18) == 0) { lean_object* x_19; lean_object* x_20; size_t x_21; size_t x_22; lean_object* x_23; @@ -33462,7 +37610,7 @@ static lean_object* _init_l_List_forIn_loop___at_Lean_Meta_Match_withMkMatcherIn _start: { lean_object* x_1; -x_1 = lean_mk_string_from_bytes("Lean.Meta.Match.MatcherInfo", 27); +x_1 = lean_mk_string_from_bytes("Lean.Meta.Match.MatcherApp.Basic", 32); return x_1; } } @@ -33480,7 +37628,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_List_forIn_loop___at_Lean_Meta_Match_withMkMatcherInput___spec__4___closed__1; x_2 = l_List_forIn_loop___at_Lean_Meta_Match_withMkMatcherInput___spec__4___closed__2; -x_3 = lean_unsigned_to_nat(183u); +x_3 = lean_unsigned_to_nat(63u); x_4 = lean_unsigned_to_nat(53u); x_5 = l_List_mapTR_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processSkipInaccessible___spec__3___closed__3; x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); @@ -35103,3258 +39251,27 @@ lean_dec(x_2); return x_7; } } -LEAN_EXPORT lean_object* l_Lean_throwError___at___private_Lean_Meta_Match_Match_0__Lean_Meta_updateAlts___spec__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; lean_object* x_8; uint8_t x_9; -x_7 = lean_ctor_get(x_4, 5); -x_8 = l_Lean_addMessageContextFull___at_Lean_Meta_instAddMessageContextMetaM___spec__1(x_1, x_2, x_3, x_4, x_5, x_6); -x_9 = !lean_is_exclusive(x_8); -if (x_9 == 0) -{ -lean_object* x_10; lean_object* x_11; -x_10 = lean_ctor_get(x_8, 0); -lean_inc(x_7); -x_11 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_11, 0, x_7); -lean_ctor_set(x_11, 1, x_10); -lean_ctor_set_tag(x_8, 1); -lean_ctor_set(x_8, 0, x_11); -return x_8; -} -else -{ -lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; -x_12 = lean_ctor_get(x_8, 0); -x_13 = lean_ctor_get(x_8, 1); -lean_inc(x_13); -lean_inc(x_12); -lean_dec(x_8); -lean_inc(x_7); -x_14 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_14, 0, x_7); -lean_ctor_set(x_14, 1, x_12); -x_15 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_15, 0, x_14); -lean_ctor_set(x_15, 1, x_13); -return x_15; -} -} -} -LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_updateAlts___lambda__1(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) { -_start: -{ -uint8_t x_12; uint8_t x_13; uint8_t x_14; lean_object* x_15; -x_12 = 0; -x_13 = 1; -x_14 = 1; -lean_inc(x_5); -x_15 = l_Lean_Meta_mkLambdaFVars(x_5, x_1, x_12, x_13, x_14, x_7, x_8, x_9, x_10, x_11); -if (lean_obj_tag(x_15) == 0) -{ -lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_75; lean_object* x_76; uint8_t x_77; -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); -x_75 = lean_array_get_size(x_5); -x_76 = lean_unsigned_to_nat(0u); -x_77 = lean_nat_dec_lt(x_76, x_75); -lean_dec(x_75); -if (x_77 == 0) -{ -lean_object* x_78; lean_object* x_79; -lean_dec(x_5); -x_78 = l_Lean_instInhabitedExpr; -x_79 = l___private_Init_Util_0__outOfBounds___rarg(x_78); -x_18 = x_79; -goto block_74; -} -else -{ -lean_object* x_80; -x_80 = lean_array_fget(x_5, x_76); -lean_dec(x_5); -x_18 = x_80; -goto block_74; -} -block_74: -{ -lean_object* x_19; -lean_inc(x_10); -lean_inc(x_9); -lean_inc(x_8); -lean_inc(x_7); -x_19 = lean_infer_type(x_18, x_7, x_8, x_9, x_10, x_17); -if (lean_obj_tag(x_19) == 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); -lean_dec(x_19); -lean_inc(x_10); -lean_inc(x_9); -lean_inc(x_8); -lean_inc(x_7); -x_22 = l_Lean_Meta_isExprDefEq(x_2, x_20, x_7, x_8, x_9, x_10, x_21); -if (lean_obj_tag(x_22) == 0) -{ -lean_object* x_23; lean_object* x_24; lean_object* x_25; -x_23 = lean_ctor_get(x_22, 0); -lean_inc(x_23); -x_24 = lean_ctor_get(x_22, 1); -lean_inc(x_24); -lean_dec(x_22); -x_25 = l_Lean_Meta_mkLambdaFVars(x_3, x_16, x_12, x_13, x_14, x_7, x_8, x_9, x_10, x_24); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -if (x_4 == 0) -{ -uint8_t x_26; -x_26 = lean_unbox(x_23); -lean_dec(x_23); -if (x_26 == 0) -{ -if (lean_obj_tag(x_25) == 0) -{ -uint8_t x_27; -x_27 = !lean_is_exclusive(x_25); -if (x_27 == 0) -{ -lean_object* x_28; lean_object* x_29; lean_object* x_30; -x_28 = lean_ctor_get(x_25, 0); -x_29 = lean_box(x_13); -x_30 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_30, 0, x_28); -lean_ctor_set(x_30, 1, x_29); -lean_ctor_set(x_25, 0, x_30); -return x_25; -} -else -{ -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_25, 0); -x_32 = lean_ctor_get(x_25, 1); -lean_inc(x_32); -lean_inc(x_31); -lean_dec(x_25); -x_33 = lean_box(x_13); -x_34 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_34, 0, x_31); -lean_ctor_set(x_34, 1, x_33); -x_35 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_35, 0, x_34); -lean_ctor_set(x_35, 1, x_32); -return x_35; -} -} -else -{ -uint8_t x_36; -x_36 = !lean_is_exclusive(x_25); -if (x_36 == 0) -{ -return x_25; -} -else -{ -lean_object* x_37; lean_object* x_38; lean_object* x_39; -x_37 = lean_ctor_get(x_25, 0); -x_38 = lean_ctor_get(x_25, 1); -lean_inc(x_38); -lean_inc(x_37); -lean_dec(x_25); -x_39 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_39, 0, x_37); -lean_ctor_set(x_39, 1, x_38); -return x_39; -} -} -} -else -{ -if (lean_obj_tag(x_25) == 0) -{ -uint8_t x_40; -x_40 = !lean_is_exclusive(x_25); -if (x_40 == 0) -{ -lean_object* x_41; lean_object* x_42; lean_object* x_43; -x_41 = lean_ctor_get(x_25, 0); -x_42 = lean_box(x_12); -x_43 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_43, 0, x_41); -lean_ctor_set(x_43, 1, x_42); -lean_ctor_set(x_25, 0, x_43); -return x_25; -} -else -{ -lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; -x_44 = lean_ctor_get(x_25, 0); -x_45 = lean_ctor_get(x_25, 1); -lean_inc(x_45); -lean_inc(x_44); -lean_dec(x_25); -x_46 = lean_box(x_12); -x_47 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_47, 0, x_44); -lean_ctor_set(x_47, 1, x_46); -x_48 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_48, 0, x_47); -lean_ctor_set(x_48, 1, x_45); -return x_48; -} -} -else -{ -uint8_t x_49; -x_49 = !lean_is_exclusive(x_25); -if (x_49 == 0) -{ -return x_25; -} -else -{ -lean_object* x_50; lean_object* x_51; lean_object* x_52; -x_50 = lean_ctor_get(x_25, 0); -x_51 = lean_ctor_get(x_25, 1); -lean_inc(x_51); -lean_inc(x_50); -lean_dec(x_25); -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 -{ -lean_dec(x_23); -if (lean_obj_tag(x_25) == 0) -{ -uint8_t x_53; -x_53 = !lean_is_exclusive(x_25); -if (x_53 == 0) -{ -lean_object* x_54; lean_object* x_55; lean_object* x_56; -x_54 = lean_ctor_get(x_25, 0); -x_55 = lean_box(x_4); -x_56 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_56, 0, x_54); -lean_ctor_set(x_56, 1, x_55); -lean_ctor_set(x_25, 0, x_56); -return x_25; -} -else -{ -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_25, 0); -x_58 = lean_ctor_get(x_25, 1); -lean_inc(x_58); -lean_inc(x_57); -lean_dec(x_25); -x_59 = lean_box(x_4); -x_60 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_60, 0, x_57); -lean_ctor_set(x_60, 1, x_59); -x_61 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_61, 0, x_60); -lean_ctor_set(x_61, 1, x_58); -return x_61; -} -} -else -{ -uint8_t x_62; -x_62 = !lean_is_exclusive(x_25); -if (x_62 == 0) -{ -return x_25; -} -else -{ -lean_object* x_63; lean_object* x_64; lean_object* x_65; -x_63 = lean_ctor_get(x_25, 0); -x_64 = lean_ctor_get(x_25, 1); -lean_inc(x_64); -lean_inc(x_63); -lean_dec(x_25); -x_65 = lean_alloc_ctor(1, 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_66; -lean_dec(x_16); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_3); -x_66 = !lean_is_exclusive(x_22); -if (x_66 == 0) -{ -return x_22; -} -else -{ -lean_object* x_67; lean_object* x_68; lean_object* x_69; -x_67 = lean_ctor_get(x_22, 0); -x_68 = lean_ctor_get(x_22, 1); -lean_inc(x_68); -lean_inc(x_67); -lean_dec(x_22); -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 -{ -uint8_t x_70; -lean_dec(x_16); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_3); -lean_dec(x_2); -x_70 = !lean_is_exclusive(x_19); -if (x_70 == 0) -{ -return x_19; -} -else -{ -lean_object* x_71; lean_object* x_72; lean_object* x_73; -x_71 = lean_ctor_get(x_19, 0); -x_72 = lean_ctor_get(x_19, 1); -lean_inc(x_72); -lean_inc(x_71); -lean_dec(x_19); -x_73 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_73, 0, x_71); -lean_ctor_set(x_73, 1, x_72); -return x_73; -} -} -} -} -else -{ -uint8_t x_81; -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_5); -lean_dec(x_3); -lean_dec(x_2); -x_81 = !lean_is_exclusive(x_15); -if (x_81 == 0) -{ -return x_15; -} -else -{ -lean_object* x_82; lean_object* x_83; lean_object* x_84; -x_82 = lean_ctor_get(x_15, 0); -x_83 = lean_ctor_get(x_15, 1); -lean_inc(x_83); -lean_inc(x_82); -lean_dec(x_15); -x_84 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_84, 0, x_82); -lean_ctor_set(x_84, 1, x_83); -return x_84; -} -} -} -} -static lean_object* _init_l___private_Lean_Meta_Match_Match_0__Lean_Meta_updateAlts___lambda__2___closed__1() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = lean_unsigned_to_nat(1u); -x_2 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_2, 0, x_1); -return x_2; -} -} -LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_updateAlts___lambda__2(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) { -_start: -{ -lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; -x_11 = lean_box(x_3); -x_12 = lean_alloc_closure((void*)(l___private_Lean_Meta_Match_Match_0__Lean_Meta_updateAlts___lambda__1___boxed), 11, 4); -lean_closure_set(x_12, 0, x_5); -lean_closure_set(x_12, 1, x_1); -lean_closure_set(x_12, 2, x_2); -lean_closure_set(x_12, 3, x_11); -x_13 = l___private_Lean_Meta_Match_Match_0__Lean_Meta_updateAlts___lambda__2___closed__1; -x_14 = l_Lean_Meta_forallBoundedTelescope___at___private_Lean_Meta_FunInfo_0__Lean_Meta_getFunInfoAux___spec__5___rarg(x_4, x_13, x_12, x_6, x_7, x_8, x_9, x_10); -return x_14; -} -} -static lean_object* _init_l___private_Lean_Meta_Match_Match_0__Lean_Meta_updateAlts___lambda__3___closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("unexpected matcher application, insufficient number of parameters in alternative", 80); -return x_1; -} -} -static lean_object* _init_l___private_Lean_Meta_Match_Match_0__Lean_Meta_updateAlts___lambda__3___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l___private_Lean_Meta_Match_Match_0__Lean_Meta_updateAlts___lambda__3___closed__1; -x_2 = l_Lean_stringToMessageData(x_1); -return x_2; -} -} -LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_updateAlts___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) { -_start: -{ -lean_object* x_11; lean_object* x_12; -x_11 = lean_unsigned_to_nat(0u); -lean_inc(x_9); -lean_inc(x_8); -lean_inc(x_7); -lean_inc(x_6); -x_12 = l___private_Lean_Meta_Basic_0__Lean_Meta_instantiateLambdaAux(x_4, x_11, x_3, x_6, x_7, x_8, x_9, x_10); -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_12, 0); -lean_inc(x_13); -x_14 = lean_ctor_get(x_12, 1); -lean_inc(x_14); -lean_dec(x_12); -x_15 = l___private_Lean_Meta_Match_Match_0__Lean_Meta_updateAlts___lambda__2(x_1, x_4, x_2, x_5, x_13, x_6, x_7, x_8, x_9, x_14); -return x_15; -} -else -{ -uint8_t x_16; -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_1); -x_16 = !lean_is_exclusive(x_12); -if (x_16 == 0) -{ -lean_object* x_17; lean_object* x_18; uint8_t x_19; -x_17 = lean_ctor_get(x_12, 0); -x_18 = lean_ctor_get(x_12, 1); -x_19 = l_Lean_Exception_isRuntime(x_17); -if (x_19 == 0) -{ -lean_object* x_20; lean_object* x_21; uint8_t x_22; -lean_free_object(x_12); -lean_dec(x_17); -x_20 = l___private_Lean_Meta_Match_Match_0__Lean_Meta_updateAlts___lambda__3___closed__2; -x_21 = l_Lean_throwError___at_Lean_Expr_abstractRangeM___spec__1(x_20, x_6, x_7, x_8, x_9, x_18); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -x_22 = !lean_is_exclusive(x_21); -if (x_22 == 0) -{ -return x_21; -} -else -{ -lean_object* x_23; lean_object* x_24; lean_object* x_25; -x_23 = lean_ctor_get(x_21, 0); -x_24 = lean_ctor_get(x_21, 1); -lean_inc(x_24); -lean_inc(x_23); -lean_dec(x_21); -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_ctor_get_uint8(x_8, sizeof(void*)*11); -if (x_26 == 0) -{ -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -return x_12; -} -else -{ -lean_object* x_27; lean_object* x_28; uint8_t x_29; -lean_free_object(x_12); -lean_dec(x_17); -x_27 = l___private_Lean_Meta_Match_Match_0__Lean_Meta_updateAlts___lambda__3___closed__2; -x_28 = l_Lean_throwError___at_Lean_Expr_abstractRangeM___spec__1(x_27, x_6, x_7, x_8, x_9, x_18); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -x_29 = !lean_is_exclusive(x_28); -if (x_29 == 0) -{ -return x_28; -} -else -{ -lean_object* x_30; lean_object* x_31; lean_object* x_32; -x_30 = lean_ctor_get(x_28, 0); -x_31 = lean_ctor_get(x_28, 1); -lean_inc(x_31); -lean_inc(x_30); -lean_dec(x_28); -x_32 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_32, 0, x_30); -lean_ctor_set(x_32, 1, x_31); -return x_32; -} -} -} -} -else -{ -lean_object* x_33; lean_object* x_34; uint8_t x_35; -x_33 = lean_ctor_get(x_12, 0); -x_34 = lean_ctor_get(x_12, 1); -lean_inc(x_34); -lean_inc(x_33); -lean_dec(x_12); -x_35 = l_Lean_Exception_isRuntime(x_33); -if (x_35 == 0) -{ -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_33); -x_36 = l___private_Lean_Meta_Match_Match_0__Lean_Meta_updateAlts___lambda__3___closed__2; -x_37 = l_Lean_throwError___at_Lean_Expr_abstractRangeM___spec__1(x_36, x_6, x_7, x_8, x_9, x_34); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -x_38 = lean_ctor_get(x_37, 0); -lean_inc(x_38); -x_39 = lean_ctor_get(x_37, 1); -lean_inc(x_39); -if (lean_is_exclusive(x_37)) { - lean_ctor_release(x_37, 0); - lean_ctor_release(x_37, 1); - x_40 = x_37; -} else { - lean_dec_ref(x_37); - x_40 = lean_box(0); -} -if (lean_is_scalar(x_40)) { - x_41 = lean_alloc_ctor(1, 2, 0); -} else { - x_41 = x_40; -} -lean_ctor_set(x_41, 0, x_38); -lean_ctor_set(x_41, 1, x_39); -return x_41; -} -else -{ -uint8_t x_42; -x_42 = lean_ctor_get_uint8(x_8, sizeof(void*)*11); -if (x_42 == 0) -{ -lean_object* x_43; -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -x_43 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_43, 0, x_33); -lean_ctor_set(x_43, 1, x_34); -return x_43; -} -else -{ -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_dec(x_33); -x_44 = l___private_Lean_Meta_Match_Match_0__Lean_Meta_updateAlts___lambda__3___closed__2; -x_45 = l_Lean_throwError___at_Lean_Expr_abstractRangeM___spec__1(x_44, x_6, x_7, x_8, x_9, x_34); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -x_46 = lean_ctor_get(x_45, 0); -lean_inc(x_46); -x_47 = lean_ctor_get(x_45, 1); -lean_inc(x_47); -if (lean_is_exclusive(x_45)) { - lean_ctor_release(x_45, 0); - lean_ctor_release(x_45, 1); - x_48 = x_45; -} else { - lean_dec_ref(x_45); - 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___private_Lean_Meta_Match_Match_0__Lean_Meta_updateAlts___closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("failed to add argument to matcher application, argument type was not refined by `casesOn`", 89); -return x_1; -} -} -static lean_object* _init_l___private_Lean_Meta_Match_Match_0__Lean_Meta_updateAlts___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l___private_Lean_Meta_Match_Match_0__Lean_Meta_updateAlts___closed__1; -x_2 = l_Lean_stringToMessageData(x_1); -return x_2; -} -} -static lean_object* _init_l___private_Lean_Meta_Match_Match_0__Lean_Meta_updateAlts___closed__3() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("unexpected type at MatcherApp.addArg", 36); -return x_1; -} -} -static lean_object* _init_l___private_Lean_Meta_Match_Match_0__Lean_Meta_updateAlts___closed__4() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l___private_Lean_Meta_Match_Match_0__Lean_Meta_updateAlts___closed__3; -x_2 = l_Lean_stringToMessageData(x_1); -return x_2; -} -} -LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_updateAlts(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) { -_start: -{ -lean_object* x_12; uint8_t x_13; -x_12 = lean_array_get_size(x_4); -x_13 = lean_nat_dec_lt(x_6, x_12); -lean_dec(x_12); -if (x_13 == 0) -{ -lean_dec(x_6); -lean_dec(x_2); -lean_dec(x_1); -if (x_5 == 0) -{ -lean_object* x_14; lean_object* x_15; -lean_dec(x_4); -lean_dec(x_3); -x_14 = l___private_Lean_Meta_Match_Match_0__Lean_Meta_updateAlts___closed__2; -x_15 = l_Lean_throwError___at___private_Lean_Meta_Match_Match_0__Lean_Meta_updateAlts___spec__1(x_14, x_7, x_8, x_9, x_10, x_11); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -return x_15; -} -else -{ -lean_object* x_16; lean_object* x_17; -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -x_16 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_16, 0, x_3); -lean_ctor_set(x_16, 1, x_4); -x_17 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_17, 0, x_16); -lean_ctor_set(x_17, 1, x_11); -return x_17; -} -} -else -{ -lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_47; uint8_t x_48; lean_object* x_49; -x_18 = lean_array_fget(x_4, x_6); -x_47 = lean_array_get_size(x_3); -x_48 = lean_nat_dec_lt(x_6, x_47); -lean_dec(x_47); -lean_inc(x_10); -lean_inc(x_9); -lean_inc(x_8); -lean_inc(x_7); -x_49 = l_Lean_Meta_whnfD(x_2, x_7, x_8, x_9, x_10, x_11); -if (x_48 == 0) -{ -if (lean_obj_tag(x_49) == 0) -{ -lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; -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 = l_instInhabitedNat; -x_53 = l___private_Init_Util_0__outOfBounds___rarg(x_52); -x_19 = x_53; -x_20 = x_50; -x_21 = x_51; -goto block_46; -} -else -{ -uint8_t x_54; -lean_dec(x_18); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_1); -x_54 = !lean_is_exclusive(x_49); -if (x_54 == 0) -{ -return x_49; -} -else -{ -lean_object* x_55; lean_object* x_56; lean_object* x_57; -x_55 = lean_ctor_get(x_49, 0); -x_56 = lean_ctor_get(x_49, 1); -lean_inc(x_56); -lean_inc(x_55); -lean_dec(x_49); -x_57 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_57, 0, x_55); -lean_ctor_set(x_57, 1, x_56); -return x_57; -} -} -} -else -{ -if (lean_obj_tag(x_49) == 0) -{ -lean_object* x_58; lean_object* x_59; lean_object* x_60; -x_58 = lean_ctor_get(x_49, 0); -lean_inc(x_58); -x_59 = lean_ctor_get(x_49, 1); -lean_inc(x_59); -lean_dec(x_49); -x_60 = lean_array_fget(x_3, x_6); -x_19 = x_60; -x_20 = x_58; -x_21 = x_59; -goto block_46; -} -else -{ -uint8_t x_61; -lean_dec(x_18); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_1); -x_61 = !lean_is_exclusive(x_49); -if (x_61 == 0) -{ -return x_49; -} -else -{ -lean_object* x_62; lean_object* x_63; lean_object* x_64; -x_62 = lean_ctor_get(x_49, 0); -x_63 = lean_ctor_get(x_49, 1); -lean_inc(x_63); -lean_inc(x_62); -lean_dec(x_49); -x_64 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_64, 0, x_62); -lean_ctor_set(x_64, 1, x_63); -return x_64; -} -} -} -block_46: -{ -if (lean_obj_tag(x_20) == 7) -{ -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_22 = lean_ctor_get(x_20, 1); -lean_inc(x_22); -x_23 = lean_ctor_get(x_20, 2); -lean_inc(x_23); -lean_dec(x_20); -lean_inc(x_19); -x_24 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_24, 0, x_19); -x_25 = lean_box(x_5); -lean_inc(x_1); -x_26 = lean_alloc_closure((void*)(l___private_Lean_Meta_Match_Match_0__Lean_Meta_updateAlts___lambda__3___boxed), 10, 3); -lean_closure_set(x_26, 0, x_1); -lean_closure_set(x_26, 1, x_25); -lean_closure_set(x_26, 2, x_18); -lean_inc(x_10); -lean_inc(x_9); -lean_inc(x_8); -lean_inc(x_7); -x_27 = l_Lean_Meta_forallBoundedTelescope___at___private_Lean_Meta_FunInfo_0__Lean_Meta_getFunInfoAux___spec__5___rarg(x_22, x_24, x_26, x_7, x_8, x_9, x_10, x_21); -if (lean_obj_tag(x_27) == 0) -{ -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; uint8_t x_38; -x_28 = lean_ctor_get(x_27, 0); -lean_inc(x_28); -x_29 = lean_ctor_get(x_27, 1); -lean_inc(x_29); -lean_dec(x_27); -x_30 = lean_ctor_get(x_28, 0); -lean_inc(x_30); -x_31 = lean_ctor_get(x_28, 1); -lean_inc(x_31); -lean_dec(x_28); -x_32 = lean_expr_instantiate1(x_23, x_30); -lean_dec(x_23); -x_33 = lean_unsigned_to_nat(1u); -x_34 = lean_nat_add(x_19, x_33); -lean_dec(x_19); -x_35 = lean_array_set(x_3, x_6, x_34); -x_36 = lean_array_fset(x_4, x_6, x_30); -x_37 = lean_nat_add(x_6, x_33); -lean_dec(x_6); -x_38 = lean_unbox(x_31); -lean_dec(x_31); -x_2 = x_32; -x_3 = x_35; -x_4 = x_36; -x_5 = x_38; -x_6 = x_37; -x_11 = x_29; -goto _start; -} -else -{ -uint8_t x_40; -lean_dec(x_23); -lean_dec(x_19); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_1); -x_40 = !lean_is_exclusive(x_27); -if (x_40 == 0) -{ -return x_27; -} -else -{ -lean_object* x_41; lean_object* x_42; lean_object* x_43; -x_41 = lean_ctor_get(x_27, 0); -x_42 = lean_ctor_get(x_27, 1); -lean_inc(x_42); -lean_inc(x_41); -lean_dec(x_27); -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; -} -} -} -else -{ -lean_object* x_44; lean_object* x_45; -lean_dec(x_20); -lean_dec(x_19); -lean_dec(x_18); -lean_dec(x_6); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_1); -x_44 = l___private_Lean_Meta_Match_Match_0__Lean_Meta_updateAlts___closed__4; -x_45 = l_Lean_throwError___at___private_Lean_Meta_Match_Match_0__Lean_Meta_updateAlts___spec__1(x_44, x_7, x_8, x_9, x_10, x_21); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -return x_45; -} -} -} -} -} -LEAN_EXPORT lean_object* l_Lean_throwError___at___private_Lean_Meta_Match_Match_0__Lean_Meta_updateAlts___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) { -_start: -{ -lean_object* x_7; -x_7 = l_Lean_throwError___at___private_Lean_Meta_Match_Match_0__Lean_Meta_updateAlts___spec__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___private_Lean_Meta_Match_Match_0__Lean_Meta_updateAlts___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, lean_object* x_11) { -_start: -{ -uint8_t x_12; lean_object* x_13; -x_12 = lean_unbox(x_4); -lean_dec(x_4); -x_13 = l___private_Lean_Meta_Match_Match_0__Lean_Meta_updateAlts___lambda__1(x_1, x_2, x_3, x_12, x_5, x_6, x_7, x_8, x_9, x_10, x_11); -lean_dec(x_6); -return x_13; -} -} -LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_updateAlts___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) { -_start: -{ -uint8_t x_11; lean_object* x_12; -x_11 = lean_unbox(x_3); -lean_dec(x_3); -x_12 = l___private_Lean_Meta_Match_Match_0__Lean_Meta_updateAlts___lambda__2(x_1, x_2, x_11, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -return x_12; -} -} -LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_updateAlts___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_11; lean_object* x_12; -x_11 = lean_unbox(x_2); -lean_dec(x_2); -x_12 = l___private_Lean_Meta_Match_Match_0__Lean_Meta_updateAlts___lambda__3(x_1, x_11, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -return x_12; -} -} -LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_updateAlts___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) { -_start: -{ -uint8_t x_12; lean_object* x_13; -x_12 = lean_unbox(x_5); -lean_dec(x_5); -x_13 = l___private_Lean_Meta_Match_Match_0__Lean_Meta_updateAlts(x_1, x_2, x_3, x_4, x_12, x_6, x_7, x_8, x_9, x_10, x_11); -return x_13; -} -} -LEAN_EXPORT lean_object* l_Nat_foldRevM_loop___at_Lean_Meta_MatcherApp_addArg___spec__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) { -_start: -{ -lean_object* x_10; uint8_t x_11; -x_10 = lean_unsigned_to_nat(0u); -x_11 = lean_nat_dec_eq(x_3, x_10); -if (x_11 == 0) -{ -lean_object* x_12; lean_object* x_13; lean_object* x_14; uint8_t x_15; lean_object* x_16; lean_object* x_17; uint8_t x_18; -x_12 = lean_unsigned_to_nat(1u); -x_13 = lean_nat_sub(x_3, x_12); -lean_dec(x_3); -x_14 = lean_array_get_size(x_2); -x_15 = lean_nat_dec_lt(x_13, x_14); -lean_dec(x_14); -x_16 = lean_ctor_get(x_1, 6); -x_17 = lean_array_get_size(x_16); -x_18 = lean_nat_dec_lt(x_13, x_17); -lean_dec(x_17); -if (x_15 == 0) -{ -lean_object* x_19; lean_object* x_20; -x_19 = l_Lean_instInhabitedExpr; -x_20 = l___private_Init_Util_0__outOfBounds___rarg(x_19); -if (x_18 == 0) -{ -lean_object* x_21; lean_object* x_22; lean_object* x_23; -x_21 = l___private_Init_Util_0__outOfBounds___rarg(x_19); -x_22 = lean_box(0); -lean_inc(x_8); -lean_inc(x_7); -lean_inc(x_6); -lean_inc(x_5); -x_23 = l_Lean_Meta_kabstract(x_4, x_21, x_22, x_5, x_6, x_7, x_8, x_9); -if (lean_obj_tag(x_23) == 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); -lean_dec(x_23); -x_26 = lean_expr_instantiate1(x_24, x_20); -lean_dec(x_20); -lean_dec(x_24); -x_3 = x_13; -x_4 = x_26; -x_9 = x_25; -goto _start; -} -else -{ -uint8_t x_28; -lean_dec(x_20); -lean_dec(x_13); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -x_28 = !lean_is_exclusive(x_23); -if (x_28 == 0) -{ -return x_23; -} -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; -} -} -} -else -{ -lean_object* x_32; lean_object* x_33; lean_object* x_34; -x_32 = lean_array_fget(x_16, x_13); -x_33 = lean_box(0); -lean_inc(x_8); -lean_inc(x_7); -lean_inc(x_6); -lean_inc(x_5); -x_34 = l_Lean_Meta_kabstract(x_4, x_32, x_33, x_5, x_6, x_7, x_8, x_9); -if (lean_obj_tag(x_34) == 0) -{ -lean_object* x_35; lean_object* x_36; lean_object* x_37; -x_35 = lean_ctor_get(x_34, 0); -lean_inc(x_35); -x_36 = lean_ctor_get(x_34, 1); -lean_inc(x_36); -lean_dec(x_34); -x_37 = lean_expr_instantiate1(x_35, x_20); -lean_dec(x_20); -lean_dec(x_35); -x_3 = x_13; -x_4 = x_37; -x_9 = x_36; -goto _start; -} -else -{ -uint8_t x_39; -lean_dec(x_20); -lean_dec(x_13); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -x_39 = !lean_is_exclusive(x_34); -if (x_39 == 0) -{ -return x_34; -} -else -{ -lean_object* x_40; lean_object* x_41; lean_object* x_42; -x_40 = lean_ctor_get(x_34, 0); -x_41 = lean_ctor_get(x_34, 1); -lean_inc(x_41); -lean_inc(x_40); -lean_dec(x_34); -x_42 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_42, 0, x_40); -lean_ctor_set(x_42, 1, x_41); -return x_42; -} -} -} -} -else -{ -lean_object* x_43; -x_43 = lean_array_fget(x_2, x_13); -if (x_18 == 0) -{ -lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; -x_44 = l_Lean_instInhabitedExpr; -x_45 = l___private_Init_Util_0__outOfBounds___rarg(x_44); -x_46 = lean_box(0); -lean_inc(x_8); -lean_inc(x_7); -lean_inc(x_6); -lean_inc(x_5); -x_47 = l_Lean_Meta_kabstract(x_4, x_45, x_46, x_5, x_6, x_7, x_8, x_9); -if (lean_obj_tag(x_47) == 0) -{ -lean_object* x_48; lean_object* x_49; lean_object* x_50; -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 = lean_expr_instantiate1(x_48, x_43); -lean_dec(x_43); -lean_dec(x_48); -x_3 = x_13; -x_4 = x_50; -x_9 = x_49; -goto _start; -} -else -{ -uint8_t x_52; -lean_dec(x_43); -lean_dec(x_13); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -x_52 = !lean_is_exclusive(x_47); -if (x_52 == 0) -{ -return x_47; -} -else -{ -lean_object* x_53; lean_object* x_54; lean_object* x_55; -x_53 = lean_ctor_get(x_47, 0); -x_54 = lean_ctor_get(x_47, 1); -lean_inc(x_54); -lean_inc(x_53); -lean_dec(x_47); -x_55 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_55, 0, x_53); -lean_ctor_set(x_55, 1, x_54); -return x_55; -} -} -} -else -{ -lean_object* x_56; lean_object* x_57; lean_object* x_58; -x_56 = lean_array_fget(x_16, x_13); -x_57 = lean_box(0); -lean_inc(x_8); -lean_inc(x_7); -lean_inc(x_6); -lean_inc(x_5); -x_58 = l_Lean_Meta_kabstract(x_4, x_56, x_57, x_5, x_6, x_7, x_8, x_9); -if (lean_obj_tag(x_58) == 0) -{ -lean_object* x_59; lean_object* x_60; lean_object* x_61; -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_expr_instantiate1(x_59, x_43); -lean_dec(x_43); -lean_dec(x_59); -x_3 = x_13; -x_4 = x_61; -x_9 = x_60; -goto _start; -} -else -{ -uint8_t x_63; -lean_dec(x_43); -lean_dec(x_13); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -x_63 = !lean_is_exclusive(x_58); -if (x_63 == 0) -{ -return x_58; -} -else -{ -lean_object* x_64; lean_object* x_65; lean_object* x_66; -x_64 = lean_ctor_get(x_58, 0); -x_65 = lean_ctor_get(x_58, 1); -lean_inc(x_65); -lean_inc(x_64); -lean_dec(x_58); -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; -} -} -} -} -} -else -{ -lean_object* x_67; -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_3); -x_67 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_67, 0, x_4); -lean_ctor_set(x_67, 1, x_9); -return x_67; -} -} -} -LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_addArg___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, 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; -lean_inc(x_14); -lean_inc(x_13); -lean_inc(x_12); -lean_inc(x_11); -x_16 = lean_infer_type(x_1, x_11, x_12, x_13, x_14, x_15); -if (lean_obj_tag(x_16) == 0) -{ -lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; uint8_t x_21; lean_object* x_22; lean_object* x_23; -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_ctor_get(x_2, 7); -lean_inc(x_19); -x_20 = lean_ctor_get(x_2, 8); -lean_inc(x_20); -x_21 = 0; -x_22 = lean_unsigned_to_nat(0u); -x_23 = l___private_Lean_Meta_Match_Match_0__Lean_Meta_updateAlts(x_3, x_17, x_19, x_20, x_21, x_22, x_11, x_12, x_13, x_14, 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; 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; -x_25 = lean_ctor_get(x_23, 0); -x_26 = lean_ctor_get(x_25, 0); -lean_inc(x_26); -x_27 = lean_ctor_get(x_25, 1); -lean_inc(x_27); -lean_dec(x_25); -x_28 = lean_ctor_get(x_2, 2); -lean_inc(x_28); -x_29 = lean_ctor_get(x_2, 3); -lean_inc(x_29); -x_30 = l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processConstructor___lambda__3___closed__2; -x_31 = lean_array_push(x_30, x_4); -x_32 = lean_ctor_get(x_2, 9); -lean_inc(x_32); -lean_dec(x_2); -x_33 = l_Array_append___rarg(x_31, x_32); -x_34 = lean_alloc_ctor(0, 10, 0); -lean_ctor_set(x_34, 0, x_5); -lean_ctor_set(x_34, 1, x_6); -lean_ctor_set(x_34, 2, x_28); -lean_ctor_set(x_34, 3, x_29); -lean_ctor_set(x_34, 4, x_7); -lean_ctor_set(x_34, 5, x_8); -lean_ctor_set(x_34, 6, x_9); -lean_ctor_set(x_34, 7, x_26); -lean_ctor_set(x_34, 8, x_27); -lean_ctor_set(x_34, 9, x_33); -lean_ctor_set(x_23, 0, x_34); -return x_23; -} -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_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; -x_35 = lean_ctor_get(x_23, 0); -x_36 = lean_ctor_get(x_23, 1); -lean_inc(x_36); -lean_inc(x_35); -lean_dec(x_23); -x_37 = lean_ctor_get(x_35, 0); -lean_inc(x_37); -x_38 = lean_ctor_get(x_35, 1); -lean_inc(x_38); -lean_dec(x_35); -x_39 = lean_ctor_get(x_2, 2); -lean_inc(x_39); -x_40 = lean_ctor_get(x_2, 3); -lean_inc(x_40); -x_41 = l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processConstructor___lambda__3___closed__2; -x_42 = lean_array_push(x_41, x_4); -x_43 = lean_ctor_get(x_2, 9); -lean_inc(x_43); -lean_dec(x_2); -x_44 = l_Array_append___rarg(x_42, x_43); -x_45 = lean_alloc_ctor(0, 10, 0); -lean_ctor_set(x_45, 0, x_5); -lean_ctor_set(x_45, 1, x_6); -lean_ctor_set(x_45, 2, x_39); -lean_ctor_set(x_45, 3, x_40); -lean_ctor_set(x_45, 4, x_7); -lean_ctor_set(x_45, 5, x_8); -lean_ctor_set(x_45, 6, x_9); -lean_ctor_set(x_45, 7, x_37); -lean_ctor_set(x_45, 8, x_38); -lean_ctor_set(x_45, 9, x_44); -x_46 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_46, 0, x_45); -lean_ctor_set(x_46, 1, x_36); -return x_46; -} -} -else -{ -uint8_t x_47; -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_2); -x_47 = !lean_is_exclusive(x_23); -if (x_47 == 0) -{ -return x_23; -} -else -{ -lean_object* x_48; lean_object* x_49; lean_object* x_50; -x_48 = lean_ctor_get(x_23, 0); -x_49 = lean_ctor_get(x_23, 1); -lean_inc(x_49); -lean_inc(x_48); -lean_dec(x_23); -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 -{ -uint8_t x_51; -lean_dec(x_14); -lean_dec(x_13); -lean_dec(x_12); -lean_dec(x_11); -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); -lean_dec(x_2); -x_51 = !lean_is_exclusive(x_16); -if (x_51 == 0) -{ -return x_16; -} -else -{ -lean_object* x_52; lean_object* x_53; lean_object* x_54; -x_52 = lean_ctor_get(x_16, 0); -x_53 = lean_ctor_get(x_16, 1); -lean_inc(x_53); -lean_inc(x_52); -lean_dec(x_16); -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; -} -} -} -} -static lean_object* _init_l_Lean_Meta_MatcherApp_addArg___lambda__2___closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("failed to add argument to matcher application, type error when constructing the new motive", 90); -return x_1; -} -} -static lean_object* _init_l_Lean_Meta_MatcherApp_addArg___lambda__2___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Meta_MatcherApp_addArg___lambda__2___closed__1; -x_2 = l_Lean_stringToMessageData(x_1); -return x_2; -} -} -LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_addArg___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) { -_start: -{ -uint8_t x_13; uint8_t x_14; uint8_t x_15; lean_object* x_16; -x_13 = 0; -x_14 = 1; -x_15 = 1; -x_16 = l_Lean_Meta_mkLambdaFVars(x_1, x_2, x_13, x_14, x_15, x_8, x_9, x_10, x_11, x_12); -if (lean_obj_tag(x_16) == 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; lean_object* x_24; lean_object* x_25; lean_object* x_26; -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_ctor_get(x_3, 0); -lean_inc(x_19); -lean_inc(x_7); -x_20 = lean_array_to_list(lean_box(0), x_7); -lean_inc(x_19); -x_21 = l_Lean_Expr_const___override(x_19, x_20); -x_22 = lean_ctor_get(x_3, 4); -lean_inc(x_22); -lean_inc(x_22); -x_23 = l_Lean_mkAppN(x_21, x_22); -lean_inc(x_17); -x_24 = l_Lean_Expr_app___override(x_23, x_17); -lean_inc(x_4); -x_25 = l_Lean_mkAppN(x_24, x_4); -lean_inc(x_11); -lean_inc(x_10); -lean_inc(x_9); -lean_inc(x_8); -lean_inc(x_25); -x_26 = l_Lean_Meta_isTypeCorrect(x_25, x_8, x_9, x_10, x_11, x_18); -if (lean_obj_tag(x_26) == 0) -{ -lean_object* x_27; uint8_t x_28; -x_27 = lean_ctor_get(x_26, 0); -lean_inc(x_27); -x_28 = lean_unbox(x_27); -lean_dec(x_27); -if (x_28 == 0) -{ -lean_object* x_29; lean_object* x_30; lean_object* x_31; uint8_t x_32; -lean_dec(x_25); -lean_dec(x_22); -lean_dec(x_19); -lean_dec(x_17); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -x_29 = lean_ctor_get(x_26, 1); -lean_inc(x_29); -lean_dec(x_26); -x_30 = l_Lean_Meta_MatcherApp_addArg___lambda__2___closed__2; -x_31 = l_Lean_throwError___at_Lean_Meta_mkSimpCongrTheorem___spec__4(x_30, x_8, x_9, x_10, x_11, x_29); -lean_dec(x_11); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -x_32 = !lean_is_exclusive(x_31); -if (x_32 == 0) -{ -return x_31; -} -else -{ -lean_object* x_33; lean_object* x_34; lean_object* x_35; -x_33 = lean_ctor_get(x_31, 0); -x_34 = lean_ctor_get(x_31, 1); -lean_inc(x_34); -lean_inc(x_33); -lean_dec(x_31); -x_35 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_35, 0, x_33); -lean_ctor_set(x_35, 1, x_34); -return x_35; -} -} -else -{ -lean_object* x_36; lean_object* x_37; lean_object* x_38; -x_36 = lean_ctor_get(x_26, 1); -lean_inc(x_36); -lean_dec(x_26); -x_37 = lean_box(0); -x_38 = l_Lean_Meta_MatcherApp_addArg___lambda__1(x_25, x_3, x_5, x_6, x_19, x_7, x_22, x_17, x_4, x_37, x_8, x_9, x_10, x_11, x_36); -return x_38; -} -} -else -{ -uint8_t x_39; -lean_dec(x_25); -lean_dec(x_22); -lean_dec(x_19); -lean_dec(x_17); -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_39 = !lean_is_exclusive(x_26); -if (x_39 == 0) -{ -return x_26; -} -else -{ -lean_object* x_40; lean_object* x_41; lean_object* x_42; -x_40 = lean_ctor_get(x_26, 0); -x_41 = lean_ctor_get(x_26, 1); -lean_inc(x_41); -lean_inc(x_40); -lean_dec(x_26); -x_42 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_42, 0, x_40); -lean_ctor_set(x_42, 1, x_41); -return x_42; -} -} -} -else -{ -uint8_t x_43; -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_43 = !lean_is_exclusive(x_16); -if (x_43 == 0) -{ -return x_16; -} -else -{ -lean_object* x_44; lean_object* x_45; lean_object* x_46; -x_44 = lean_ctor_get(x_16, 0); -x_45 = lean_ctor_get(x_16, 1); -lean_inc(x_45); -lean_inc(x_44); -lean_dec(x_16); -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_EXPORT lean_object* l_Lean_Meta_MatcherApp_addArg___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_11; -lean_dec(x_5); -lean_inc(x_9); -lean_inc(x_8); -lean_inc(x_7); -lean_inc(x_6); -lean_inc(x_1); -x_11 = lean_infer_type(x_1, x_6, x_7, x_8, x_9, x_10); -if (lean_obj_tag(x_11) == 0) -{ -lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; -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); -x_14 = lean_ctor_get(x_2, 6); -lean_inc(x_14); -x_15 = lean_array_get_size(x_14); -lean_inc(x_9); -lean_inc(x_8); -lean_inc(x_7); -lean_inc(x_6); -lean_inc(x_12); -x_16 = l_Nat_foldRevM_loop___at_Lean_Meta_MatcherApp_addArg___spec__1(x_2, x_3, x_15, x_12, x_6, x_7, x_8, x_9, x_13); -if (lean_obj_tag(x_16) == 0) -{ -lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; -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 = l_Lean_mkArrow(x_17, x_4, x_8, x_9, x_18); -x_20 = lean_ctor_get(x_2, 2); -lean_inc(x_20); -if (lean_obj_tag(x_20) == 0) -{ -lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; -x_21 = lean_ctor_get(x_19, 0); -lean_inc(x_21); -x_22 = lean_ctor_get(x_19, 1); -lean_inc(x_22); -lean_dec(x_19); -x_23 = lean_ctor_get(x_2, 1); -lean_inc(x_23); -x_24 = l_Lean_Meta_MatcherApp_addArg___lambda__2(x_3, x_21, x_2, x_14, x_12, x_1, x_23, x_6, x_7, x_8, x_9, x_22); -return x_24; -} -else -{ -lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; -x_25 = lean_ctor_get(x_19, 0); -lean_inc(x_25); -x_26 = lean_ctor_get(x_19, 1); -lean_inc(x_26); -lean_dec(x_19); -x_27 = lean_ctor_get(x_20, 0); -lean_inc(x_27); -lean_dec(x_20); -lean_inc(x_9); -lean_inc(x_8); -lean_inc(x_7); -lean_inc(x_6); -lean_inc(x_25); -x_28 = l_Lean_Meta_getLevel(x_25, x_6, x_7, x_8, x_9, x_26); -if (lean_obj_tag(x_28) == 0) -{ -lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; -x_29 = lean_ctor_get(x_28, 0); -lean_inc(x_29); -x_30 = lean_ctor_get(x_28, 1); -lean_inc(x_30); -lean_dec(x_28); -x_31 = lean_ctor_get(x_2, 1); -lean_inc(x_31); -x_32 = lean_array_set(x_31, x_27, x_29); -lean_dec(x_27); -x_33 = l_Lean_Meta_MatcherApp_addArg___lambda__2(x_3, x_25, x_2, x_14, x_12, x_1, x_32, x_6, x_7, x_8, x_9, x_30); -return x_33; -} -else -{ -uint8_t x_34; -lean_dec(x_27); -lean_dec(x_25); -lean_dec(x_14); -lean_dec(x_12); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_3); -lean_dec(x_2); -lean_dec(x_1); -x_34 = !lean_is_exclusive(x_28); -if (x_34 == 0) -{ -return x_28; -} -else -{ -lean_object* x_35; lean_object* x_36; lean_object* x_37; -x_35 = lean_ctor_get(x_28, 0); -x_36 = lean_ctor_get(x_28, 1); -lean_inc(x_36); -lean_inc(x_35); -lean_dec(x_28); -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_14); -lean_dec(x_12); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -lean_dec(x_1); -x_38 = !lean_is_exclusive(x_16); -if (x_38 == 0) -{ -return x_16; -} -else -{ -lean_object* x_39; lean_object* x_40; lean_object* x_41; -x_39 = lean_ctor_get(x_16, 0); -x_40 = lean_ctor_get(x_16, 1); -lean_inc(x_40); -lean_inc(x_39); -lean_dec(x_16); -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; -} -} -} -else -{ -uint8_t x_42; -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -lean_dec(x_1); -x_42 = !lean_is_exclusive(x_11); -if (x_42 == 0) -{ -return x_11; -} -else -{ -lean_object* x_43; lean_object* x_44; lean_object* x_45; -x_43 = lean_ctor_get(x_11, 0); -x_44 = lean_ctor_get(x_11, 1); -lean_inc(x_44); -lean_inc(x_43); -lean_dec(x_11); -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; -} -} -} -} -static lean_object* _init_l_Lean_Meta_MatcherApp_addArg___lambda__4___closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("unexpected matcher application, motive must be lambda expression with #", 71); -return x_1; -} -} -static lean_object* _init_l_Lean_Meta_MatcherApp_addArg___lambda__4___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Meta_MatcherApp_addArg___lambda__4___closed__1; -x_2 = l_Lean_stringToMessageData(x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Meta_MatcherApp_addArg___lambda__4___closed__3() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes(" arguments", 10); -return x_1; -} -} -static lean_object* _init_l_Lean_Meta_MatcherApp_addArg___lambda__4___closed__4() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Meta_MatcherApp_addArg___lambda__4___closed__3; -x_2 = l_Lean_stringToMessageData(x_1); -return x_2; -} -} -LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_addArg___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) { -_start: -{ -lean_object* x_10; lean_object* x_11; lean_object* x_12; uint8_t x_13; -x_10 = lean_array_get_size(x_3); -x_11 = lean_ctor_get(x_2, 6); -lean_inc(x_11); -x_12 = lean_array_get_size(x_11); -lean_dec(x_11); -x_13 = lean_nat_dec_eq(x_10, x_12); -lean_dec(x_10); -if (x_13 == 0) -{ -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; uint8_t x_22; -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -lean_dec(x_1); -x_14 = l_Nat_repr(x_12); -x_15 = lean_alloc_ctor(3, 1, 0); -lean_ctor_set(x_15, 0, x_14); -x_16 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_16, 0, x_15); -x_17 = l_Lean_Meta_MatcherApp_addArg___lambda__4___closed__2; -x_18 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_18, 0, x_17); -lean_ctor_set(x_18, 1, x_16); -x_19 = l_Lean_Meta_MatcherApp_addArg___lambda__4___closed__4; -x_20 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_20, 0, x_18); -lean_ctor_set(x_20, 1, x_19); -x_21 = l_Lean_throwError___at_Lean_Meta_mkSimpCongrTheorem___spec__4(x_20, 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); -x_22 = !lean_is_exclusive(x_21); -if (x_22 == 0) -{ -return x_21; -} -else -{ -lean_object* x_23; lean_object* x_24; lean_object* x_25; -x_23 = lean_ctor_get(x_21, 0); -x_24 = lean_ctor_get(x_21, 1); -lean_inc(x_24); -lean_inc(x_23); -lean_dec(x_21); -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 -{ -lean_object* x_26; lean_object* x_27; -lean_dec(x_12); -x_26 = lean_box(0); -x_27 = l_Lean_Meta_MatcherApp_addArg___lambda__3(x_1, x_2, x_3, x_4, x_26, x_5, x_6, x_7, x_8, x_9); -return x_27; -} -} -} -LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_addArg(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; uint8_t x_10; lean_object* x_11; -x_8 = lean_ctor_get(x_1, 5); -lean_inc(x_8); -x_9 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_addArg___lambda__4), 9, 2); -lean_closure_set(x_9, 0, x_2); -lean_closure_set(x_9, 1, x_1); -x_10 = 0; -x_11 = l_Lean_Meta_lambdaTelescope___at___private_Lean_Meta_Eqns_0__Lean_Meta_mkSimpleEqThm___spec__1___rarg(x_8, x_9, x_10, x_3, x_4, x_5, x_6, x_7); -return x_11; -} -} -LEAN_EXPORT lean_object* l_Nat_foldRevM_loop___at_Lean_Meta_MatcherApp_addArg___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: -{ -lean_object* x_10; -x_10 = l_Nat_foldRevM_loop___at_Lean_Meta_MatcherApp_addArg___spec__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); -lean_dec(x_2); -lean_dec(x_1); -return x_10; -} -} -LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_addArg___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, 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_Meta_MatcherApp_addArg___lambda__1(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); -lean_dec(x_10); -return x_16; -} -} -LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_addArg_x3f(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_inc(x_5); -x_8 = l_Lean_Meta_MatcherApp_addArg(x_1, x_2, x_3, x_4, x_5, x_6, x_7); -if (lean_obj_tag(x_8) == 0) -{ -uint8_t x_9; -lean_dec(x_5); -x_9 = !lean_is_exclusive(x_8); -if (x_9 == 0) -{ -lean_object* x_10; lean_object* x_11; -x_10 = lean_ctor_get(x_8, 0); -x_11 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_11, 0, x_10); -lean_ctor_set(x_8, 0, x_11); -return x_8; -} -else -{ -lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; -x_12 = lean_ctor_get(x_8, 0); -x_13 = lean_ctor_get(x_8, 1); -lean_inc(x_13); -lean_inc(x_12); -lean_dec(x_8); -x_14 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_14, 0, x_12); -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 -{ -uint8_t x_16; -x_16 = !lean_is_exclusive(x_8); -if (x_16 == 0) -{ -lean_object* x_17; uint8_t x_18; -x_17 = lean_ctor_get(x_8, 0); -x_18 = l_Lean_Exception_isRuntime(x_17); -if (x_18 == 0) -{ -lean_object* x_19; -lean_dec(x_17); -lean_dec(x_5); -x_19 = lean_box(0); -lean_ctor_set_tag(x_8, 0); -lean_ctor_set(x_8, 0, x_19); -return x_8; -} -else -{ -uint8_t x_20; -x_20 = lean_ctor_get_uint8(x_5, sizeof(void*)*11); -lean_dec(x_5); -if (x_20 == 0) -{ -return x_8; -} -else -{ -lean_object* x_21; -lean_dec(x_17); -x_21 = lean_box(0); -lean_ctor_set_tag(x_8, 0); -lean_ctor_set(x_8, 0, x_21); -return x_8; -} -} -} -else -{ -lean_object* x_22; lean_object* x_23; uint8_t x_24; -x_22 = lean_ctor_get(x_8, 0); -x_23 = lean_ctor_get(x_8, 1); -lean_inc(x_23); -lean_inc(x_22); -lean_dec(x_8); -x_24 = l_Lean_Exception_isRuntime(x_22); -if (x_24 == 0) -{ -lean_object* x_25; lean_object* x_26; -lean_dec(x_22); -lean_dec(x_5); -x_25 = lean_box(0); -x_26 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_26, 0, x_25); -lean_ctor_set(x_26, 1, x_23); -return x_26; -} -else -{ -uint8_t x_27; -x_27 = lean_ctor_get_uint8(x_5, sizeof(void*)*11); -lean_dec(x_5); -if (x_27 == 0) -{ -lean_object* x_28; -x_28 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_28, 0, x_22); -lean_ctor_set(x_28, 1, x_23); -return x_28; -} -else -{ -lean_object* x_29; lean_object* x_30; -lean_dec(x_22); -x_29 = lean_box(0); -x_30 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_30, 0, x_29); -lean_ctor_set(x_30, 1, x_23); -return x_30; -} -} -} -} -} -} -LEAN_EXPORT lean_object* l_Nat_foldRevM_loop___at_Lean_Meta_MatcherApp_refineThrough___spec__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) { -_start: -{ -lean_object* x_10; uint8_t x_11; -x_10 = lean_unsigned_to_nat(0u); -x_11 = lean_nat_dec_eq(x_3, x_10); -if (x_11 == 0) -{ -lean_object* x_12; lean_object* x_13; lean_object* x_14; uint8_t x_15; lean_object* x_16; lean_object* x_17; uint8_t x_18; -x_12 = lean_unsigned_to_nat(1u); -x_13 = lean_nat_sub(x_3, x_12); -lean_dec(x_3); -x_14 = lean_array_get_size(x_2); -x_15 = lean_nat_dec_lt(x_13, x_14); -lean_dec(x_14); -x_16 = lean_ctor_get(x_1, 6); -x_17 = lean_array_get_size(x_16); -x_18 = lean_nat_dec_lt(x_13, x_17); -lean_dec(x_17); -if (x_15 == 0) -{ -lean_object* x_19; lean_object* x_20; -x_19 = l_Lean_instInhabitedExpr; -x_20 = l___private_Init_Util_0__outOfBounds___rarg(x_19); -if (x_18 == 0) -{ -lean_object* x_21; lean_object* x_22; lean_object* x_23; -x_21 = l___private_Init_Util_0__outOfBounds___rarg(x_19); -x_22 = lean_box(0); -lean_inc(x_8); -lean_inc(x_7); -lean_inc(x_6); -lean_inc(x_5); -x_23 = l_Lean_Meta_kabstract(x_4, x_21, x_22, x_5, x_6, x_7, x_8, x_9); -if (lean_obj_tag(x_23) == 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); -lean_dec(x_23); -x_26 = lean_expr_instantiate1(x_24, x_20); -lean_dec(x_20); -lean_dec(x_24); -x_3 = x_13; -x_4 = x_26; -x_9 = x_25; -goto _start; -} -else -{ -uint8_t x_28; -lean_dec(x_20); -lean_dec(x_13); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -x_28 = !lean_is_exclusive(x_23); -if (x_28 == 0) -{ -return x_23; -} -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; -} -} -} -else -{ -lean_object* x_32; lean_object* x_33; lean_object* x_34; -x_32 = lean_array_fget(x_16, x_13); -x_33 = lean_box(0); -lean_inc(x_8); -lean_inc(x_7); -lean_inc(x_6); -lean_inc(x_5); -x_34 = l_Lean_Meta_kabstract(x_4, x_32, x_33, x_5, x_6, x_7, x_8, x_9); -if (lean_obj_tag(x_34) == 0) -{ -lean_object* x_35; lean_object* x_36; lean_object* x_37; -x_35 = lean_ctor_get(x_34, 0); -lean_inc(x_35); -x_36 = lean_ctor_get(x_34, 1); -lean_inc(x_36); -lean_dec(x_34); -x_37 = lean_expr_instantiate1(x_35, x_20); -lean_dec(x_20); -lean_dec(x_35); -x_3 = x_13; -x_4 = x_37; -x_9 = x_36; -goto _start; -} -else -{ -uint8_t x_39; -lean_dec(x_20); -lean_dec(x_13); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -x_39 = !lean_is_exclusive(x_34); -if (x_39 == 0) -{ -return x_34; -} -else -{ -lean_object* x_40; lean_object* x_41; lean_object* x_42; -x_40 = lean_ctor_get(x_34, 0); -x_41 = lean_ctor_get(x_34, 1); -lean_inc(x_41); -lean_inc(x_40); -lean_dec(x_34); -x_42 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_42, 0, x_40); -lean_ctor_set(x_42, 1, x_41); -return x_42; -} -} -} -} -else -{ -lean_object* x_43; -x_43 = lean_array_fget(x_2, x_13); -if (x_18 == 0) -{ -lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; -x_44 = l_Lean_instInhabitedExpr; -x_45 = l___private_Init_Util_0__outOfBounds___rarg(x_44); -x_46 = lean_box(0); -lean_inc(x_8); -lean_inc(x_7); -lean_inc(x_6); -lean_inc(x_5); -x_47 = l_Lean_Meta_kabstract(x_4, x_45, x_46, x_5, x_6, x_7, x_8, x_9); -if (lean_obj_tag(x_47) == 0) -{ -lean_object* x_48; lean_object* x_49; lean_object* x_50; -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 = lean_expr_instantiate1(x_48, x_43); -lean_dec(x_43); -lean_dec(x_48); -x_3 = x_13; -x_4 = x_50; -x_9 = x_49; -goto _start; -} -else -{ -uint8_t x_52; -lean_dec(x_43); -lean_dec(x_13); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -x_52 = !lean_is_exclusive(x_47); -if (x_52 == 0) -{ -return x_47; -} -else -{ -lean_object* x_53; lean_object* x_54; lean_object* x_55; -x_53 = lean_ctor_get(x_47, 0); -x_54 = lean_ctor_get(x_47, 1); -lean_inc(x_54); -lean_inc(x_53); -lean_dec(x_47); -x_55 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_55, 0, x_53); -lean_ctor_set(x_55, 1, x_54); -return x_55; -} -} -} -else -{ -lean_object* x_56; lean_object* x_57; lean_object* x_58; -x_56 = lean_array_fget(x_16, x_13); -x_57 = lean_box(0); -lean_inc(x_8); -lean_inc(x_7); -lean_inc(x_6); -lean_inc(x_5); -x_58 = l_Lean_Meta_kabstract(x_4, x_56, x_57, x_5, x_6, x_7, x_8, x_9); -if (lean_obj_tag(x_58) == 0) -{ -lean_object* x_59; lean_object* x_60; lean_object* x_61; -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_expr_instantiate1(x_59, x_43); -lean_dec(x_43); -lean_dec(x_59); -x_3 = x_13; -x_4 = x_61; -x_9 = x_60; -goto _start; -} -else -{ -uint8_t x_63; -lean_dec(x_43); -lean_dec(x_13); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -x_63 = !lean_is_exclusive(x_58); -if (x_63 == 0) -{ -return x_58; -} -else -{ -lean_object* x_64; lean_object* x_65; lean_object* x_66; -x_64 = lean_ctor_get(x_58, 0); -x_65 = lean_ctor_get(x_58, 1); -lean_inc(x_65); -lean_inc(x_64); -lean_dec(x_58); -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; -} -} -} -} -} -else -{ -lean_object* x_67; -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_3); -x_67 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_67, 0, x_4); -lean_ctor_set(x_67, 1, x_9); -return x_67; -} -} -} -LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Meta_MatcherApp_refineThrough___spec__2(size_t x_1, size_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) { -_start: -{ -uint8_t x_9; -x_9 = lean_usize_dec_lt(x_2, x_1); -if (x_9 == 0) -{ -lean_object* x_10; -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -x_10 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_10, 0, x_3); -lean_ctor_set(x_10, 1, x_8); -return x_10; -} -else -{ -lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; -x_11 = lean_array_uget(x_3, x_2); -x_12 = lean_unsigned_to_nat(0u); -x_13 = lean_array_uset(x_3, x_2, x_12); -lean_inc(x_7); -lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_4); -x_14 = lean_infer_type(x_11, x_4, x_5, x_6, x_7, x_8); -if (lean_obj_tag(x_14) == 0) -{ -lean_object* x_15; lean_object* x_16; size_t x_17; size_t x_18; lean_object* x_19; -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 = 1; -x_18 = lean_usize_add(x_2, x_17); -x_19 = lean_array_uset(x_13, x_2, x_15); -x_2 = x_18; -x_3 = x_19; -x_8 = x_16; -goto _start; -} -else -{ -uint8_t x_21; -lean_dec(x_13); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -x_21 = !lean_is_exclusive(x_14); -if (x_21 == 0) -{ -return x_14; -} -else -{ -lean_object* x_22; lean_object* x_23; lean_object* x_24; -x_22 = lean_ctor_get(x_14, 0); -x_23 = lean_ctor_get(x_14, 1); -lean_inc(x_23); -lean_inc(x_22); -lean_dec(x_14); -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; -} -} -} -} -} -LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Meta_MatcherApp_refineThrough___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, lean_object* x_7, lean_object* x_8) { -_start: -{ -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; uint8_t x_17; uint8_t x_18; lean_object* x_19; -x_9 = lean_unsigned_to_nat(0u); -x_10 = l___private_Lean_Expr_0__Lean_Expr_getAppNumArgsAux(x_1, x_9); -x_11 = lean_unsigned_to_nat(2u); -x_12 = lean_nat_sub(x_10, x_11); -lean_dec(x_10); -x_13 = lean_unsigned_to_nat(1u); -x_14 = lean_nat_sub(x_12, x_13); -lean_dec(x_12); -x_15 = l_Lean_Expr_getRevArg_x21(x_1, x_14); -x_16 = 0; -x_17 = 1; -x_18 = 1; -x_19 = l_Lean_Meta_mkLambdaFVars(x_2, x_15, x_16, x_17, x_18, x_4, x_5, x_6, x_7, x_8); -return x_19; -} -} -static lean_object* _init_l_Array_mapMUnsafe_map___at_Lean_Meta_MatcherApp_refineThrough___spec__3___lambda__2___closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("failed to transfer argument through matcher application, alt type must be telescope with #", 90); -return x_1; -} -} -static lean_object* _init_l_Array_mapMUnsafe_map___at_Lean_Meta_MatcherApp_refineThrough___spec__3___lambda__2___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Array_mapMUnsafe_map___at_Lean_Meta_MatcherApp_refineThrough___spec__3___lambda__2___closed__1; -x_2 = l_Lean_stringToMessageData(x_1); -return x_2; -} -} -LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Meta_MatcherApp_refineThrough___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, lean_object* x_8) { -_start: -{ -lean_object* x_9; uint8_t x_10; -x_9 = lean_array_get_size(x_2); -x_10 = lean_nat_dec_eq(x_9, x_1); -lean_dec(x_9); -if (x_10 == 0) -{ -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; uint8_t x_19; -lean_dec(x_3); -lean_dec(x_2); -x_11 = l_Nat_repr(x_1); -x_12 = lean_alloc_ctor(3, 1, 0); -lean_ctor_set(x_12, 0, x_11); -x_13 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_13, 0, x_12); -x_14 = l_Array_mapMUnsafe_map___at_Lean_Meta_MatcherApp_refineThrough___spec__3___lambda__2___closed__2; -x_15 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_15, 0, x_14); -lean_ctor_set(x_15, 1, x_13); -x_16 = l_Lean_Meta_MatcherApp_addArg___lambda__4___closed__4; -x_17 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_17, 0, x_15); -lean_ctor_set(x_17, 1, x_16); -x_18 = l_Lean_throwError___at_Lean_Meta_mkSimpCongrTheorem___spec__4(x_17, x_4, x_5, x_6, x_7, x_8); -x_19 = !lean_is_exclusive(x_18); -if (x_19 == 0) -{ -return x_18; -} -else -{ -lean_object* x_20; lean_object* x_21; lean_object* x_22; -x_20 = lean_ctor_get(x_18, 0); -x_21 = lean_ctor_get(x_18, 1); -lean_inc(x_21); -lean_inc(x_20); -lean_dec(x_18); -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; -} -} -else -{ -lean_object* x_23; lean_object* x_24; -lean_dec(x_1); -x_23 = lean_box(0); -x_24 = l_Array_mapMUnsafe_map___at_Lean_Meta_MatcherApp_refineThrough___spec__3___lambda__1(x_3, x_2, x_23, x_4, x_5, x_6, x_7, x_8); -lean_dec(x_3); -return x_24; -} -} -} -LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Meta_MatcherApp_refineThrough___spec__3(size_t x_1, size_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) { -_start: -{ -uint8_t x_9; -x_9 = lean_usize_dec_lt(x_2, x_1); -if (x_9 == 0) -{ -lean_object* x_10; -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -x_10 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_10, 0, x_3); -lean_ctor_set(x_10, 1, x_8); -return x_10; -} -else -{ -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_11 = lean_array_uget(x_3, x_2); -x_12 = lean_unsigned_to_nat(0u); -x_13 = lean_array_uset(x_3, x_2, x_12); -x_14 = lean_ctor_get(x_11, 0); -lean_inc(x_14); -x_15 = lean_ctor_get(x_11, 1); -lean_inc(x_15); -lean_dec(x_11); -lean_inc(x_14); -x_16 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_16, 0, x_14); -x_17 = lean_alloc_closure((void*)(l_Array_mapMUnsafe_map___at_Lean_Meta_MatcherApp_refineThrough___spec__3___lambda__2___boxed), 8, 1); -lean_closure_set(x_17, 0, x_14); -lean_inc(x_7); -lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_4); -x_18 = l_Lean_Meta_forallBoundedTelescope___at___private_Lean_Meta_FunInfo_0__Lean_Meta_getFunInfoAux___spec__5___rarg(x_15, x_16, x_17, x_4, x_5, x_6, x_7, x_8); -if (lean_obj_tag(x_18) == 0) -{ -lean_object* x_19; lean_object* x_20; size_t x_21; size_t x_22; lean_object* x_23; -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 = 1; -x_22 = lean_usize_add(x_2, x_21); -x_23 = lean_array_uset(x_13, x_2, x_19); -x_2 = x_22; -x_3 = x_23; -x_8 = x_20; -goto _start; -} -else -{ -uint8_t x_25; -lean_dec(x_13); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -x_25 = !lean_is_exclusive(x_18); -if (x_25 == 0) -{ -return x_18; -} -else -{ -lean_object* x_26; lean_object* x_27; lean_object* x_28; -x_26 = lean_ctor_get(x_18, 0); -x_27 = lean_ctor_get(x_18, 1); -lean_inc(x_27); -lean_inc(x_26); -lean_dec(x_18); -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; -} -} -} -} -} -LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_refineThrough___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) { -_start: -{ -lean_object* x_9; size_t x_10; size_t x_11; lean_object* x_12; -lean_dec(x_3); -x_9 = lean_array_get_size(x_2); -x_10 = lean_usize_of_nat(x_9); -lean_dec(x_9); -x_11 = 0; -lean_inc(x_7); -lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_4); -x_12 = l_Array_mapMUnsafe_map___at_Lean_Meta_MatcherApp_refineThrough___spec__2(x_10, x_11, x_2, x_4, x_5, x_6, x_7, x_8); -if (lean_obj_tag(x_12) == 0) -{ -lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; size_t x_18; lean_object* x_19; -x_13 = lean_ctor_get(x_12, 0); -lean_inc(x_13); -x_14 = lean_ctor_get(x_12, 1); -lean_inc(x_14); -lean_dec(x_12); -x_15 = lean_ctor_get(x_1, 7); -lean_inc(x_15); -lean_dec(x_1); -x_16 = l_Array_zip___rarg(x_15, x_13); -lean_dec(x_13); -lean_dec(x_15); -x_17 = lean_array_get_size(x_16); -x_18 = lean_usize_of_nat(x_17); -lean_dec(x_17); -x_19 = l_Array_mapMUnsafe_map___at_Lean_Meta_MatcherApp_refineThrough___spec__3(x_18, x_11, x_16, x_4, x_5, x_6, x_7, x_14); -return x_19; -} -else -{ -uint8_t x_20; -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_1); -x_20 = !lean_is_exclusive(x_12); -if (x_20 == 0) -{ -return x_12; -} -else -{ -lean_object* x_21; lean_object* x_22; lean_object* x_23; -x_21 = lean_ctor_get(x_12, 0); -x_22 = lean_ctor_get(x_12, 1); -lean_inc(x_22); -lean_inc(x_21); -lean_dec(x_12); -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; -} -} -} -} -LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_refineThrough___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) { -_start: -{ -lean_object* x_9; -lean_inc(x_7); -lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_4); -x_9 = lean_infer_type(x_1, x_4, x_5, x_6, x_7, x_8); -if (lean_obj_tag(x_9) == 0) -{ -lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; -x_10 = lean_ctor_get(x_9, 0); -lean_inc(x_10); -x_11 = lean_ctor_get(x_9, 1); -lean_inc(x_11); -lean_dec(x_9); -x_12 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_refineThrough___lambda__1), 8, 1); -lean_closure_set(x_12, 0, x_2); -x_13 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_10, x_12, x_4, x_5, x_6, x_7, x_11); -return x_13; -} -else -{ -uint8_t x_14; -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_2); -x_14 = !lean_is_exclusive(x_9); -if (x_14 == 0) -{ -return x_9; -} -else -{ -lean_object* x_15; lean_object* x_16; lean_object* x_17; -x_15 = lean_ctor_get(x_9, 0); -x_16 = lean_ctor_get(x_9, 1); -lean_inc(x_16); -lean_inc(x_15); -lean_dec(x_9); -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; -} -} -} -} -static lean_object* _init_l_Lean_Meta_MatcherApp_refineThrough___lambda__3___closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("failed to transfer argument through matcher application, type error when constructing the new motive", 100); -return x_1; -} -} -static lean_object* _init_l_Lean_Meta_MatcherApp_refineThrough___lambda__3___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Meta_MatcherApp_refineThrough___lambda__3___closed__1; -x_2 = l_Lean_stringToMessageData(x_1); -return x_2; -} -} -LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_refineThrough___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: -{ -uint8_t x_11; uint8_t x_12; uint8_t x_13; lean_object* x_14; -x_11 = 0; -x_12 = 1; -x_13 = 1; -x_14 = l_Lean_Meta_mkLambdaFVars(x_1, x_2, x_11, x_12, x_13, x_6, x_7, x_8, x_9, x_10); -if (lean_obj_tag(x_14) == 0) -{ -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; -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_ctor_get(x_3, 0); -lean_inc(x_17); -x_18 = lean_array_to_list(lean_box(0), x_5); -x_19 = l_Lean_Expr_const___override(x_17, x_18); -x_20 = lean_ctor_get(x_3, 4); -lean_inc(x_20); -x_21 = l_Lean_mkAppN(x_19, x_20); -x_22 = l_Lean_Expr_app___override(x_21, x_15); -x_23 = l_Lean_mkAppN(x_22, x_4); -lean_inc(x_9); -lean_inc(x_8); -lean_inc(x_7); -lean_inc(x_6); -lean_inc(x_23); -x_24 = l_Lean_Meta_isTypeCorrect(x_23, x_6, x_7, x_8, x_9, x_16); -if (lean_obj_tag(x_24) == 0) -{ -lean_object* x_25; uint8_t x_26; -x_25 = lean_ctor_get(x_24, 0); -lean_inc(x_25); -x_26 = lean_unbox(x_25); -lean_dec(x_25); -if (x_26 == 0) -{ -lean_object* x_27; lean_object* x_28; lean_object* x_29; uint8_t x_30; -lean_dec(x_23); -lean_dec(x_3); -x_27 = lean_ctor_get(x_24, 1); -lean_inc(x_27); -lean_dec(x_24); -x_28 = l_Lean_Meta_MatcherApp_refineThrough___lambda__3___closed__2; -x_29 = l_Lean_throwError___at_Lean_Meta_mkSimpCongrTheorem___spec__4(x_28, x_6, x_7, x_8, x_9, x_27); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -x_30 = !lean_is_exclusive(x_29); -if (x_30 == 0) -{ -return x_29; -} -else -{ -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(1, 2, 0); -lean_ctor_set(x_33, 0, x_31); -lean_ctor_set(x_33, 1, x_32); -return x_33; -} -} -else -{ -lean_object* x_34; lean_object* x_35; lean_object* x_36; -x_34 = lean_ctor_get(x_24, 1); -lean_inc(x_34); -lean_dec(x_24); -x_35 = lean_box(0); -x_36 = l_Lean_Meta_MatcherApp_refineThrough___lambda__2(x_23, x_3, x_35, x_6, x_7, x_8, x_9, x_34); -return x_36; -} -} -else -{ -uint8_t x_37; -lean_dec(x_23); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_3); -x_37 = !lean_is_exclusive(x_24); -if (x_37 == 0) -{ -return x_24; -} -else -{ -lean_object* x_38; lean_object* x_39; lean_object* x_40; -x_38 = lean_ctor_get(x_24, 0); -x_39 = lean_ctor_get(x_24, 1); -lean_inc(x_39); -lean_inc(x_38); -lean_dec(x_24); -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; -} -} -} -else -{ -uint8_t x_41; -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_41 = !lean_is_exclusive(x_14); -if (x_41 == 0) -{ -return x_14; -} -else -{ -lean_object* x_42; lean_object* x_43; lean_object* x_44; -x_42 = lean_ctor_get(x_14, 0); -x_43 = lean_ctor_get(x_14, 1); -lean_inc(x_43); -lean_inc(x_42); -lean_dec(x_14); -x_44 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_44, 0, x_42); -lean_ctor_set(x_44, 1, x_43); -return x_44; -} -} -} -} -LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_refineThrough___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) { -_start: -{ -lean_object* x_10; lean_object* x_11; lean_object* x_12; -lean_dec(x_4); -x_10 = lean_ctor_get(x_1, 6); -lean_inc(x_10); -x_11 = lean_array_get_size(x_10); -lean_inc(x_8); -lean_inc(x_7); -lean_inc(x_6); -lean_inc(x_5); -x_12 = l_Nat_foldRevM_loop___at_Lean_Meta_MatcherApp_refineThrough___spec__1(x_1, x_2, x_11, x_3, x_5, x_6, x_7, x_8, x_9); -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_12, 0); -lean_inc(x_13); -x_14 = lean_ctor_get(x_12, 1); -lean_inc(x_14); -lean_dec(x_12); -lean_inc(x_8); -lean_inc(x_7); -lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_13); -x_15 = l_Lean_Meta_mkEq(x_13, x_13, x_5, x_6, x_7, x_8, x_14); -if (lean_obj_tag(x_15) == 0) -{ -lean_object* x_16; -x_16 = lean_ctor_get(x_1, 2); -lean_inc(x_16); -if (lean_obj_tag(x_16) == 0) -{ -lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; -x_17 = lean_ctor_get(x_15, 0); -lean_inc(x_17); -x_18 = lean_ctor_get(x_15, 1); -lean_inc(x_18); -lean_dec(x_15); -x_19 = lean_ctor_get(x_1, 1); -lean_inc(x_19); -x_20 = l_Lean_Meta_MatcherApp_refineThrough___lambda__3(x_2, x_17, x_1, x_10, x_19, x_5, x_6, x_7, x_8, x_18); -return x_20; -} -else -{ -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_21 = lean_ctor_get(x_15, 0); -lean_inc(x_21); -x_22 = lean_ctor_get(x_15, 1); -lean_inc(x_22); -lean_dec(x_15); -x_23 = lean_ctor_get(x_16, 0); -lean_inc(x_23); -lean_dec(x_16); -x_24 = lean_ctor_get(x_1, 1); -lean_inc(x_24); -x_25 = l_Lean_levelZero; -x_26 = lean_array_set(x_24, x_23, x_25); -lean_dec(x_23); -x_27 = l_Lean_Meta_MatcherApp_refineThrough___lambda__3(x_2, x_21, x_1, x_10, x_26, x_5, x_6, x_7, x_8, x_22); -return x_27; -} -} -else -{ -uint8_t x_28; -lean_dec(x_10); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_2); -lean_dec(x_1); -x_28 = !lean_is_exclusive(x_15); -if (x_28 == 0) -{ -return x_15; -} -else -{ -lean_object* x_29; lean_object* x_30; lean_object* x_31; -x_29 = lean_ctor_get(x_15, 0); -x_30 = lean_ctor_get(x_15, 1); -lean_inc(x_30); -lean_inc(x_29); -lean_dec(x_15); -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; -} -} -} -else -{ -uint8_t x_32; -lean_dec(x_10); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_2); -lean_dec(x_1); -x_32 = !lean_is_exclusive(x_12); -if (x_32 == 0) -{ -return x_12; -} -else -{ -lean_object* x_33; lean_object* x_34; lean_object* x_35; -x_33 = lean_ctor_get(x_12, 0); -x_34 = lean_ctor_get(x_12, 1); -lean_inc(x_34); -lean_inc(x_33); -lean_dec(x_12); -x_35 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_35, 0, x_33); -lean_ctor_set(x_35, 1, x_34); -return x_35; -} -} -} -} -static lean_object* _init_l_Lean_Meta_MatcherApp_refineThrough___lambda__5___closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("failed to transfer argument through matcher application, motive must be lambda expression with #", 96); -return x_1; -} -} -static lean_object* _init_l_Lean_Meta_MatcherApp_refineThrough___lambda__5___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Meta_MatcherApp_refineThrough___lambda__5___closed__1; -x_2 = l_Lean_stringToMessageData(x_1); -return x_2; -} -} -LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_refineThrough___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) { -_start: -{ -lean_object* x_10; lean_object* x_11; lean_object* x_12; uint8_t x_13; -lean_dec(x_4); -x_10 = lean_array_get_size(x_3); -x_11 = lean_ctor_get(x_1, 6); -lean_inc(x_11); -x_12 = lean_array_get_size(x_11); -lean_dec(x_11); -x_13 = lean_nat_dec_eq(x_10, x_12); -lean_dec(x_10); -if (x_13 == 0) -{ -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; uint8_t x_22; -lean_dec(x_3); -lean_dec(x_2); -lean_dec(x_1); -x_14 = l_Nat_repr(x_12); -x_15 = lean_alloc_ctor(3, 1, 0); -lean_ctor_set(x_15, 0, x_14); -x_16 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_16, 0, x_15); -x_17 = l_Lean_Meta_MatcherApp_refineThrough___lambda__5___closed__2; -x_18 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_18, 0, x_17); -lean_ctor_set(x_18, 1, x_16); -x_19 = l_Lean_Meta_MatcherApp_addArg___lambda__4___closed__4; -x_20 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_20, 0, x_18); -lean_ctor_set(x_20, 1, x_19); -x_21 = l_Lean_throwError___at_Lean_Meta_mkSimpCongrTheorem___spec__4(x_20, 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); -x_22 = !lean_is_exclusive(x_21); -if (x_22 == 0) -{ -return x_21; -} -else -{ -lean_object* x_23; lean_object* x_24; lean_object* x_25; -x_23 = lean_ctor_get(x_21, 0); -x_24 = lean_ctor_get(x_21, 1); -lean_inc(x_24); -lean_inc(x_23); -lean_dec(x_21); -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 -{ -lean_object* x_26; lean_object* x_27; -lean_dec(x_12); -x_26 = lean_box(0); -x_27 = l_Lean_Meta_MatcherApp_refineThrough___lambda__4(x_1, x_3, x_2, x_26, x_5, x_6, x_7, x_8, x_9); -return x_27; -} -} -} -LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_refineThrough(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; uint8_t x_10; lean_object* x_11; -x_8 = lean_ctor_get(x_1, 5); -lean_inc(x_8); -x_9 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_refineThrough___lambda__5), 9, 2); -lean_closure_set(x_9, 0, x_1); -lean_closure_set(x_9, 1, x_2); -x_10 = 0; -x_11 = l_Lean_Meta_lambdaTelescope___at___private_Lean_Meta_Eqns_0__Lean_Meta_mkSimpleEqThm___spec__1___rarg(x_8, x_9, x_10, x_3, x_4, x_5, x_6, x_7); -return x_11; -} -} -LEAN_EXPORT lean_object* l_Nat_foldRevM_loop___at_Lean_Meta_MatcherApp_refineThrough___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: -{ -lean_object* x_10; -x_10 = l_Nat_foldRevM_loop___at_Lean_Meta_MatcherApp_refineThrough___spec__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); -lean_dec(x_2); -lean_dec(x_1); -return x_10; -} -} -LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Meta_MatcherApp_refineThrough___spec__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) { -_start: -{ -size_t x_9; size_t x_10; lean_object* x_11; -x_9 = lean_unbox_usize(x_1); -lean_dec(x_1); -x_10 = lean_unbox_usize(x_2); -lean_dec(x_2); -x_11 = l_Array_mapMUnsafe_map___at_Lean_Meta_MatcherApp_refineThrough___spec__2(x_9, x_10, x_3, x_4, x_5, x_6, x_7, x_8); -return x_11; -} -} -LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Meta_MatcherApp_refineThrough___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, lean_object* x_7, lean_object* x_8) { -_start: -{ -lean_object* x_9; -x_9 = l_Array_mapMUnsafe_map___at_Lean_Meta_MatcherApp_refineThrough___spec__3___lambda__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, 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_1); -return x_9; -} -} -LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Meta_MatcherApp_refineThrough___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) { -_start: -{ -lean_object* x_9; -x_9 = l_Array_mapMUnsafe_map___at_Lean_Meta_MatcherApp_refineThrough___spec__3___lambda__2(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -return x_9; -} -} -LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Meta_MatcherApp_refineThrough___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) { -_start: -{ -size_t x_9; size_t x_10; lean_object* x_11; -x_9 = lean_unbox_usize(x_1); -lean_dec(x_1); -x_10 = lean_unbox_usize(x_2); -lean_dec(x_2); -x_11 = l_Array_mapMUnsafe_map___at_Lean_Meta_MatcherApp_refineThrough___spec__3(x_9, x_10, x_3, x_4, x_5, x_6, x_7, x_8); -return x_11; -} -} -LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_refineThrough___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) { -_start: -{ -lean_object* x_9; -x_9 = l_Lean_Meta_MatcherApp_refineThrough___lambda__2(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); -lean_dec(x_3); -return x_9; -} -} -LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_refineThrough_x3f(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_inc(x_5); -x_8 = l_Lean_Meta_MatcherApp_refineThrough(x_1, x_2, x_3, x_4, x_5, x_6, x_7); -if (lean_obj_tag(x_8) == 0) -{ -uint8_t x_9; -lean_dec(x_5); -x_9 = !lean_is_exclusive(x_8); -if (x_9 == 0) -{ -lean_object* x_10; lean_object* x_11; -x_10 = lean_ctor_get(x_8, 0); -x_11 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_11, 0, x_10); -lean_ctor_set(x_8, 0, x_11); -return x_8; -} -else -{ -lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; -x_12 = lean_ctor_get(x_8, 0); -x_13 = lean_ctor_get(x_8, 1); -lean_inc(x_13); -lean_inc(x_12); -lean_dec(x_8); -x_14 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_14, 0, x_12); -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 -{ -uint8_t x_16; -x_16 = !lean_is_exclusive(x_8); -if (x_16 == 0) -{ -lean_object* x_17; uint8_t x_18; -x_17 = lean_ctor_get(x_8, 0); -x_18 = l_Lean_Exception_isRuntime(x_17); -if (x_18 == 0) -{ -lean_object* x_19; -lean_dec(x_17); -lean_dec(x_5); -x_19 = lean_box(0); -lean_ctor_set_tag(x_8, 0); -lean_ctor_set(x_8, 0, x_19); -return x_8; -} -else -{ -uint8_t x_20; -x_20 = lean_ctor_get_uint8(x_5, sizeof(void*)*11); -lean_dec(x_5); -if (x_20 == 0) -{ -return x_8; -} -else -{ -lean_object* x_21; -lean_dec(x_17); -x_21 = lean_box(0); -lean_ctor_set_tag(x_8, 0); -lean_ctor_set(x_8, 0, x_21); -return x_8; -} -} -} -else -{ -lean_object* x_22; lean_object* x_23; uint8_t x_24; -x_22 = lean_ctor_get(x_8, 0); -x_23 = lean_ctor_get(x_8, 1); -lean_inc(x_23); -lean_inc(x_22); -lean_dec(x_8); -x_24 = l_Lean_Exception_isRuntime(x_22); -if (x_24 == 0) -{ -lean_object* x_25; lean_object* x_26; -lean_dec(x_22); -lean_dec(x_5); -x_25 = lean_box(0); -x_26 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_26, 0, x_25); -lean_ctor_set(x_26, 1, x_23); -return x_26; -} -else -{ -uint8_t x_27; -x_27 = lean_ctor_get_uint8(x_5, sizeof(void*)*11); -lean_dec(x_5); -if (x_27 == 0) -{ -lean_object* x_28; -x_28 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_28, 0, x_22); -lean_ctor_set(x_28, 1, x_23); -return x_28; -} -else -{ -lean_object* x_29; lean_object* x_30; -lean_dec(x_22); -x_29 = lean_box(0); -x_30 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_30, 0, x_29); -lean_ctor_set(x_30, 1, x_23); -return x_30; -} -} -} -} -} -} -static lean_object* _init_l_Lean_Meta_initFn____x40_Lean_Meta_Match_Match___hyg_14390____closed__1() { +static lean_object* _init_l_Lean_Meta_initFn____x40_Lean_Meta_Match_Match___hyg_13886____closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_9273____closed__6; +x_2 = l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10385____closed__6; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Meta_initFn____x40_Lean_Meta_Match_Match___hyg_14390____closed__2() { +static lean_object* _init_l_Lean_Meta_initFn____x40_Lean_Meta_Match_Match___hyg_13886____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Meta_initFn____x40_Lean_Meta_Match_Match___hyg_14390____closed__1; +x_1 = l_Lean_Meta_initFn____x40_Lean_Meta_Match_Match___hyg_13886____closed__1; x_2 = l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_withAlts_loop___rarg___closed__3; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Meta_initFn____x40_Lean_Meta_Match_Match___hyg_14390____closed__3() { +static lean_object* _init_l_Lean_Meta_initFn____x40_Lean_Meta_Match_Match___hyg_13886____closed__3() { _start: { lean_object* x_1; @@ -38362,17 +39279,17 @@ x_1 = lean_mk_string_from_bytes("initFn", 6); return x_1; } } -static lean_object* _init_l_Lean_Meta_initFn____x40_Lean_Meta_Match_Match___hyg_14390____closed__4() { +static lean_object* _init_l_Lean_Meta_initFn____x40_Lean_Meta_Match_Match___hyg_13886____closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Meta_initFn____x40_Lean_Meta_Match_Match___hyg_14390____closed__2; -x_2 = l_Lean_Meta_initFn____x40_Lean_Meta_Match_Match___hyg_14390____closed__3; +x_1 = l_Lean_Meta_initFn____x40_Lean_Meta_Match_Match___hyg_13886____closed__2; +x_2 = l_Lean_Meta_initFn____x40_Lean_Meta_Match_Match___hyg_13886____closed__3; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Meta_initFn____x40_Lean_Meta_Match_Match___hyg_14390____closed__5() { +static lean_object* _init_l_Lean_Meta_initFn____x40_Lean_Meta_Match_Match___hyg_13886____closed__5() { _start: { lean_object* x_1; @@ -38380,57 +39297,57 @@ x_1 = lean_mk_string_from_bytes("_@", 2); return x_1; } } -static lean_object* _init_l_Lean_Meta_initFn____x40_Lean_Meta_Match_Match___hyg_14390____closed__6() { +static lean_object* _init_l_Lean_Meta_initFn____x40_Lean_Meta_Match_Match___hyg_13886____closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Meta_initFn____x40_Lean_Meta_Match_Match___hyg_14390____closed__4; -x_2 = l_Lean_Meta_initFn____x40_Lean_Meta_Match_Match___hyg_14390____closed__5; +x_1 = l_Lean_Meta_initFn____x40_Lean_Meta_Match_Match___hyg_13886____closed__4; +x_2 = l_Lean_Meta_initFn____x40_Lean_Meta_Match_Match___hyg_13886____closed__5; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Meta_initFn____x40_Lean_Meta_Match_Match___hyg_14390____closed__7() { +static lean_object* _init_l_Lean_Meta_initFn____x40_Lean_Meta_Match_Match___hyg_13886____closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Meta_initFn____x40_Lean_Meta_Match_Match___hyg_14390____closed__6; -x_2 = l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_9273____closed__6; +x_1 = l_Lean_Meta_initFn____x40_Lean_Meta_Match_Match___hyg_13886____closed__6; +x_2 = l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10385____closed__6; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Meta_initFn____x40_Lean_Meta_Match_Match___hyg_14390____closed__8() { +static lean_object* _init_l_Lean_Meta_initFn____x40_Lean_Meta_Match_Match___hyg_13886____closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Meta_initFn____x40_Lean_Meta_Match_Match___hyg_14390____closed__7; +x_1 = l_Lean_Meta_initFn____x40_Lean_Meta_Match_Match___hyg_13886____closed__7; x_2 = l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_withAlts_loop___rarg___closed__3; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Meta_initFn____x40_Lean_Meta_Match_Match___hyg_14390____closed__9() { +static lean_object* _init_l_Lean_Meta_initFn____x40_Lean_Meta_Match_Match___hyg_13886____closed__9() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Meta_initFn____x40_Lean_Meta_Match_Match___hyg_14390____closed__8; +x_1 = l_Lean_Meta_initFn____x40_Lean_Meta_Match_Match___hyg_13886____closed__8; x_2 = l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_withAlts_loop___rarg___closed__4; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Meta_initFn____x40_Lean_Meta_Match_Match___hyg_14390____closed__10() { +static lean_object* _init_l_Lean_Meta_initFn____x40_Lean_Meta_Match_Match___hyg_13886____closed__10() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Meta_initFn____x40_Lean_Meta_Match_Match___hyg_14390____closed__9; +x_1 = l_Lean_Meta_initFn____x40_Lean_Meta_Match_Match___hyg_13886____closed__9; x_2 = l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_withAlts_loop___rarg___closed__4; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Meta_initFn____x40_Lean_Meta_Match_Match___hyg_14390____closed__11() { +static lean_object* _init_l_Lean_Meta_initFn____x40_Lean_Meta_Match_Match___hyg_13886____closed__11() { _start: { lean_object* x_1; @@ -38438,33 +39355,33 @@ x_1 = lean_mk_string_from_bytes("_hyg", 4); return x_1; } } -static lean_object* _init_l_Lean_Meta_initFn____x40_Lean_Meta_Match_Match___hyg_14390____closed__12() { +static lean_object* _init_l_Lean_Meta_initFn____x40_Lean_Meta_Match_Match___hyg_13886____closed__12() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Meta_initFn____x40_Lean_Meta_Match_Match___hyg_14390____closed__10; -x_2 = l_Lean_Meta_initFn____x40_Lean_Meta_Match_Match___hyg_14390____closed__11; +x_1 = l_Lean_Meta_initFn____x40_Lean_Meta_Match_Match___hyg_13886____closed__10; +x_2 = l_Lean_Meta_initFn____x40_Lean_Meta_Match_Match___hyg_13886____closed__11; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Meta_initFn____x40_Lean_Meta_Match_Match___hyg_14390____closed__13() { +static lean_object* _init_l_Lean_Meta_initFn____x40_Lean_Meta_Match_Match___hyg_13886____closed__13() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Meta_initFn____x40_Lean_Meta_Match_Match___hyg_14390____closed__12; -x_2 = lean_unsigned_to_nat(14390u); +x_1 = l_Lean_Meta_initFn____x40_Lean_Meta_Match_Match___hyg_13886____closed__12; +x_2 = lean_unsigned_to_nat(13886u); x_3 = l_Lean_Name_num___override(x_1, x_2); return x_3; } } -LEAN_EXPORT lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_Match_Match___hyg_14390_(lean_object* x_1) { +LEAN_EXPORT lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_Match_Match___hyg_13886_(lean_object* x_1) { _start: { lean_object* x_2; uint8_t x_3; lean_object* x_4; lean_object* x_5; x_2 = l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_solveSomeLocalFVarIdCnstr_x3f___lambda__2___closed__2; x_3 = 0; -x_4 = l_Lean_Meta_initFn____x40_Lean_Meta_Match_Match___hyg_14390____closed__13; +x_4 = l_Lean_Meta_initFn____x40_Lean_Meta_Match_Match___hyg_13886____closed__13; x_5 = l_Lean_registerTraceClass(x_2, x_3, x_4, x_1); if (lean_obj_tag(x_5) == 0) { @@ -38531,17 +39448,22 @@ return x_19; } } } +lean_object* initialize_Lean_Meta_LitValues(uint8_t builtin, lean_object*); lean_object* initialize_Lean_Meta_Check(uint8_t builtin, lean_object*); lean_object* initialize_Lean_Meta_Closure(uint8_t builtin, lean_object*); lean_object* initialize_Lean_Meta_Tactic_Cases(uint8_t builtin, lean_object*); lean_object* initialize_Lean_Meta_Tactic_Contradiction(uint8_t builtin, lean_object*); lean_object* initialize_Lean_Meta_GeneralizeTelescope(uint8_t builtin, lean_object*); lean_object* initialize_Lean_Meta_Match_Basic(uint8_t builtin, lean_object*); +lean_object* initialize_Lean_Meta_Match_MatcherApp_Basic(uint8_t builtin, lean_object*); static bool _G_initialized = false; LEAN_EXPORT lean_object* initialize_Lean_Meta_Match_Match(uint8_t builtin, lean_object* w) { lean_object * res; if (_G_initialized) return lean_io_result_mk_ok(lean_box(0)); _G_initialized = true; +res = initialize_Lean_Meta_LitValues(builtin, lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); res = initialize_Lean_Meta_Check(builtin, lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); @@ -38560,6 +39482,9 @@ lean_dec_ref(res); res = initialize_Lean_Meta_Match_Basic(builtin, lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +res = initialize_Lean_Meta_Match_MatcherApp_Basic(builtin, lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_checkNumPatterns___closed__1 = _init_l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_checkNumPatterns___closed__1(); lean_mark_persistent(l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_checkNumPatterns___closed__1); l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_checkNumPatterns___closed__2 = _init_l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_checkNumPatterns___closed__2(); @@ -38610,8 +39535,6 @@ l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_hasCtorPattern___closed__1 lean_mark_persistent(l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_hasCtorPattern___closed__1); l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_hasValPattern___closed__1 = _init_l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_hasValPattern___closed__1(); lean_mark_persistent(l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_hasValPattern___closed__1); -l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_hasNatValPattern___closed__1 = _init_l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_hasNatValPattern___closed__1(); -lean_mark_persistent(l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_hasNatValPattern___closed__1); l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_hasVarPattern___closed__1 = _init_l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_hasVarPattern___closed__1(); lean_mark_persistent(l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_hasVarPattern___closed__1); l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_hasArrayLitPattern___closed__1 = _init_l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_hasArrayLitPattern___closed__1(); @@ -38624,8 +39547,8 @@ l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_isValueTransition___closed_ lean_mark_persistent(l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_isValueTransition___closed__1); l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_isArrayLitTransition___closed__1 = _init_l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_isArrayLitTransition___closed__1(); lean_mark_persistent(l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_isArrayLitTransition___closed__1); -l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_isNatValueTransition___closed__1 = _init_l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_isNatValueTransition___closed__1(); -lean_mark_persistent(l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_isNatValueTransition___closed__1); +l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_hasCtorOrInaccessible___closed__1 = _init_l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_hasCtorOrInaccessible___closed__1(); +lean_mark_persistent(l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_hasCtorOrInaccessible___closed__1); l_panic___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processSkipInaccessible___spec__1___closed__1 = _init_l_panic___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processSkipInaccessible___spec__1___closed__1(); lean_mark_persistent(l_panic___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processSkipInaccessible___spec__1___closed__1); l_panic___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processSkipInaccessible___spec__2___closed__1 = _init_l_panic___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processSkipInaccessible___spec__2___closed__1(); @@ -38840,18 +39763,38 @@ l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processArrayLit___closed__1 lean_mark_persistent(l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processArrayLit___closed__1); l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processArrayLit___closed__2 = _init_l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processArrayLit___closed__2(); lean_mark_persistent(l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processArrayLit___closed__2); -l_List_mapTR_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandNatValuePattern___spec__1___closed__1 = _init_l_List_mapTR_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandNatValuePattern___spec__1___closed__1(); -lean_mark_persistent(l_List_mapTR_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandNatValuePattern___spec__1___closed__1); -l_List_mapTR_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandNatValuePattern___spec__1___closed__2 = _init_l_List_mapTR_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandNatValuePattern___spec__1___closed__2(); -lean_mark_persistent(l_List_mapTR_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandNatValuePattern___spec__1___closed__2); -l_List_mapTR_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandNatValuePattern___spec__1___closed__3 = _init_l_List_mapTR_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandNatValuePattern___spec__1___closed__3(); -lean_mark_persistent(l_List_mapTR_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandNatValuePattern___spec__1___closed__3); -l_List_mapTR_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandNatValuePattern___spec__1___closed__4 = _init_l_List_mapTR_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandNatValuePattern___spec__1___closed__4(); -lean_mark_persistent(l_List_mapTR_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandNatValuePattern___spec__1___closed__4); -l_List_mapTR_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandNatValuePattern___spec__1___closed__5 = _init_l_List_mapTR_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandNatValuePattern___spec__1___closed__5(); -lean_mark_persistent(l_List_mapTR_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandNatValuePattern___spec__1___closed__5); -l_List_mapTR_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandNatValuePattern___spec__1___closed__6 = _init_l_List_mapTR_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandNatValuePattern___spec__1___closed__6(); -lean_mark_persistent(l_List_mapTR_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandNatValuePattern___spec__1___closed__6); +l_List_mapM_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandNatValuePattern___spec__1___closed__1 = _init_l_List_mapM_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandNatValuePattern___spec__1___closed__1(); +lean_mark_persistent(l_List_mapM_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandNatValuePattern___spec__1___closed__1); +l_List_mapM_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandNatValuePattern___spec__1___closed__2 = _init_l_List_mapM_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandNatValuePattern___spec__1___closed__2(); +lean_mark_persistent(l_List_mapM_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandNatValuePattern___spec__1___closed__2); +l_List_mapM_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandNatValuePattern___spec__1___closed__3 = _init_l_List_mapM_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandNatValuePattern___spec__1___closed__3(); +lean_mark_persistent(l_List_mapM_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandNatValuePattern___spec__1___closed__3); +l_List_mapM_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandNatValuePattern___spec__1___closed__4 = _init_l_List_mapM_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandNatValuePattern___spec__1___closed__4(); +lean_mark_persistent(l_List_mapM_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandNatValuePattern___spec__1___closed__4); +l_List_mapM_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandNatValuePattern___spec__1___closed__5 = _init_l_List_mapM_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandNatValuePattern___spec__1___closed__5(); +lean_mark_persistent(l_List_mapM_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandNatValuePattern___spec__1___closed__5); +l_List_mapM_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandNatValuePattern___spec__1___closed__6 = _init_l_List_mapM_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandNatValuePattern___spec__1___closed__6(); +lean_mark_persistent(l_List_mapM_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandNatValuePattern___spec__1___closed__6); +l_List_mapM_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandIntValuePattern___spec__1___closed__1 = _init_l_List_mapM_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandIntValuePattern___spec__1___closed__1(); +lean_mark_persistent(l_List_mapM_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandIntValuePattern___spec__1___closed__1); +l_List_mapM_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandIntValuePattern___spec__1___closed__2 = _init_l_List_mapM_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandIntValuePattern___spec__1___closed__2(); +lean_mark_persistent(l_List_mapM_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandIntValuePattern___spec__1___closed__2); +l_List_mapM_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandIntValuePattern___spec__1___closed__3 = _init_l_List_mapM_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandIntValuePattern___spec__1___closed__3(); +lean_mark_persistent(l_List_mapM_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandIntValuePattern___spec__1___closed__3); +l_List_mapM_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandIntValuePattern___spec__1___closed__4 = _init_l_List_mapM_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandIntValuePattern___spec__1___closed__4(); +lean_mark_persistent(l_List_mapM_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandIntValuePattern___spec__1___closed__4); +l_List_mapM_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandIntValuePattern___spec__1___closed__5 = _init_l_List_mapM_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandIntValuePattern___spec__1___closed__5(); +lean_mark_persistent(l_List_mapM_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandIntValuePattern___spec__1___closed__5); +l_List_mapM_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandIntValuePattern___spec__1___closed__6 = _init_l_List_mapM_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandIntValuePattern___spec__1___closed__6(); +lean_mark_persistent(l_List_mapM_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandIntValuePattern___spec__1___closed__6); +l_List_mapM_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandIntValuePattern___spec__1___closed__7 = _init_l_List_mapM_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandIntValuePattern___spec__1___closed__7(); +lean_mark_persistent(l_List_mapM_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandIntValuePattern___spec__1___closed__7); +l_List_mapM_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandFinValuePattern___spec__1___closed__1 = _init_l_List_mapM_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandFinValuePattern___spec__1___closed__1(); +lean_mark_persistent(l_List_mapM_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandFinValuePattern___spec__1___closed__1); +l_List_mapM_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandFinValuePattern___spec__1___closed__2 = _init_l_List_mapM_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandFinValuePattern___spec__1___closed__2(); +lean_mark_persistent(l_List_mapM_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandFinValuePattern___spec__1___closed__2); +l_List_mapM_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandFinValuePattern___spec__1___closed__3 = _init_l_List_mapM_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandFinValuePattern___spec__1___closed__3(); +lean_mark_persistent(l_List_mapM_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandFinValuePattern___spec__1___closed__3); l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_traceStep___closed__1 = _init_l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_traceStep___closed__1(); lean_mark_persistent(l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_traceStep___closed__1); l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_traceStep___closed__2 = _init_l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_traceStep___closed__2(); @@ -38876,48 +39819,52 @@ l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_process___closed__4 = _init lean_mark_persistent(l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_process___closed__4); l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_process___closed__5 = _init_l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_process___closed__5(); lean_mark_persistent(l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_process___closed__5); +l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_process___closed__6 = _init_l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_process___closed__6(); +lean_mark_persistent(l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_process___closed__6); +l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_process___closed__7 = _init_l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_process___closed__7(); +lean_mark_persistent(l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_process___closed__7); l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_getUElimPos_x3f___closed__1 = _init_l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_getUElimPos_x3f___closed__1(); lean_mark_persistent(l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_getUElimPos_x3f___closed__1); l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_getUElimPos_x3f___closed__2 = _init_l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_getUElimPos_x3f___closed__2(); lean_mark_persistent(l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_getUElimPos_x3f___closed__2); -l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_9273____closed__1 = _init_l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_9273____closed__1(); -lean_mark_persistent(l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_9273____closed__1); -l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_9273____closed__2 = _init_l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_9273____closed__2(); -lean_mark_persistent(l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_9273____closed__2); -l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_9273____closed__3 = _init_l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_9273____closed__3(); -lean_mark_persistent(l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_9273____closed__3); -l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_9273____closed__4 = _init_l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_9273____closed__4(); -lean_mark_persistent(l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_9273____closed__4); -l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_9273____closed__5 = _init_l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_9273____closed__5(); -lean_mark_persistent(l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_9273____closed__5); -l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_9273____closed__6 = _init_l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_9273____closed__6(); -lean_mark_persistent(l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_9273____closed__6); -l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_9273____closed__7 = _init_l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_9273____closed__7(); -lean_mark_persistent(l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_9273____closed__7); -if (builtin) {res = l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_9273_(lean_io_mk_world()); +l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10385____closed__1 = _init_l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10385____closed__1(); +lean_mark_persistent(l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10385____closed__1); +l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10385____closed__2 = _init_l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10385____closed__2(); +lean_mark_persistent(l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10385____closed__2); +l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10385____closed__3 = _init_l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10385____closed__3(); +lean_mark_persistent(l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10385____closed__3); +l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10385____closed__4 = _init_l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10385____closed__4(); +lean_mark_persistent(l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10385____closed__4); +l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10385____closed__5 = _init_l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10385____closed__5(); +lean_mark_persistent(l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10385____closed__5); +l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10385____closed__6 = _init_l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10385____closed__6(); +lean_mark_persistent(l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10385____closed__6); +l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10385____closed__7 = _init_l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10385____closed__7(); +lean_mark_persistent(l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10385____closed__7); +if (builtin) {res = l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10385_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; l_Lean_Meta_Match_bootstrap_genMatcherCode = lean_io_result_get_value(res); lean_mark_persistent(l_Lean_Meta_Match_bootstrap_genMatcherCode); lean_dec_ref(res); -}l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_9310____closed__1 = _init_l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_9310____closed__1(); -lean_mark_persistent(l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_9310____closed__1); -l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_9310____closed__2 = _init_l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_9310____closed__2(); -lean_mark_persistent(l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_9310____closed__2); -l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_9310____closed__3 = _init_l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_9310____closed__3(); -lean_mark_persistent(l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_9310____closed__3); -l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_9310____closed__4 = _init_l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_9310____closed__4(); -lean_mark_persistent(l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_9310____closed__4); -l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_9310____closed__5 = _init_l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_9310____closed__5(); -lean_mark_persistent(l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_9310____closed__5); -l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_9310____closed__6 = _init_l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_9310____closed__6(); -lean_mark_persistent(l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_9310____closed__6); -l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_9310____closed__7 = _init_l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_9310____closed__7(); -lean_mark_persistent(l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_9310____closed__7); -l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_9310____closed__8 = _init_l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_9310____closed__8(); -lean_mark_persistent(l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_9310____closed__8); -l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_9310____closed__9 = _init_l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_9310____closed__9(); -lean_mark_persistent(l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_9310____closed__9); -if (builtin) {res = l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_9310_(lean_io_mk_world()); +}l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10422____closed__1 = _init_l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10422____closed__1(); +lean_mark_persistent(l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10422____closed__1); +l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10422____closed__2 = _init_l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10422____closed__2(); +lean_mark_persistent(l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10422____closed__2); +l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10422____closed__3 = _init_l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10422____closed__3(); +lean_mark_persistent(l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10422____closed__3); +l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10422____closed__4 = _init_l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10422____closed__4(); +lean_mark_persistent(l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10422____closed__4); +l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10422____closed__5 = _init_l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10422____closed__5(); +lean_mark_persistent(l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10422____closed__5); +l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10422____closed__6 = _init_l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10422____closed__6(); +lean_mark_persistent(l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10422____closed__6); +l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10422____closed__7 = _init_l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10422____closed__7(); +lean_mark_persistent(l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10422____closed__7); +l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10422____closed__8 = _init_l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10422____closed__8(); +lean_mark_persistent(l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10422____closed__8); +l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10422____closed__9 = _init_l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10422____closed__9(); +lean_mark_persistent(l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10422____closed__9); +if (builtin) {res = l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10422_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; l_Lean_Meta_Match_matcherExt = lean_io_result_get_value(res); lean_mark_persistent(l_Lean_Meta_Match_matcherExt); @@ -39060,71 +40007,33 @@ l_Lean_Meta_Match_withMkMatcherInput___rarg___lambda__1___closed__1 = _init_l_Le lean_mark_persistent(l_Lean_Meta_Match_withMkMatcherInput___rarg___lambda__1___closed__1); l_Lean_Meta_Match_withMkMatcherInput___rarg___lambda__1___closed__2 = _init_l_Lean_Meta_Match_withMkMatcherInput___rarg___lambda__1___closed__2(); lean_mark_persistent(l_Lean_Meta_Match_withMkMatcherInput___rarg___lambda__1___closed__2); -l___private_Lean_Meta_Match_Match_0__Lean_Meta_updateAlts___lambda__2___closed__1 = _init_l___private_Lean_Meta_Match_Match_0__Lean_Meta_updateAlts___lambda__2___closed__1(); -lean_mark_persistent(l___private_Lean_Meta_Match_Match_0__Lean_Meta_updateAlts___lambda__2___closed__1); -l___private_Lean_Meta_Match_Match_0__Lean_Meta_updateAlts___lambda__3___closed__1 = _init_l___private_Lean_Meta_Match_Match_0__Lean_Meta_updateAlts___lambda__3___closed__1(); -lean_mark_persistent(l___private_Lean_Meta_Match_Match_0__Lean_Meta_updateAlts___lambda__3___closed__1); -l___private_Lean_Meta_Match_Match_0__Lean_Meta_updateAlts___lambda__3___closed__2 = _init_l___private_Lean_Meta_Match_Match_0__Lean_Meta_updateAlts___lambda__3___closed__2(); -lean_mark_persistent(l___private_Lean_Meta_Match_Match_0__Lean_Meta_updateAlts___lambda__3___closed__2); -l___private_Lean_Meta_Match_Match_0__Lean_Meta_updateAlts___closed__1 = _init_l___private_Lean_Meta_Match_Match_0__Lean_Meta_updateAlts___closed__1(); -lean_mark_persistent(l___private_Lean_Meta_Match_Match_0__Lean_Meta_updateAlts___closed__1); -l___private_Lean_Meta_Match_Match_0__Lean_Meta_updateAlts___closed__2 = _init_l___private_Lean_Meta_Match_Match_0__Lean_Meta_updateAlts___closed__2(); -lean_mark_persistent(l___private_Lean_Meta_Match_Match_0__Lean_Meta_updateAlts___closed__2); -l___private_Lean_Meta_Match_Match_0__Lean_Meta_updateAlts___closed__3 = _init_l___private_Lean_Meta_Match_Match_0__Lean_Meta_updateAlts___closed__3(); -lean_mark_persistent(l___private_Lean_Meta_Match_Match_0__Lean_Meta_updateAlts___closed__3); -l___private_Lean_Meta_Match_Match_0__Lean_Meta_updateAlts___closed__4 = _init_l___private_Lean_Meta_Match_Match_0__Lean_Meta_updateAlts___closed__4(); -lean_mark_persistent(l___private_Lean_Meta_Match_Match_0__Lean_Meta_updateAlts___closed__4); -l_Lean_Meta_MatcherApp_addArg___lambda__2___closed__1 = _init_l_Lean_Meta_MatcherApp_addArg___lambda__2___closed__1(); -lean_mark_persistent(l_Lean_Meta_MatcherApp_addArg___lambda__2___closed__1); -l_Lean_Meta_MatcherApp_addArg___lambda__2___closed__2 = _init_l_Lean_Meta_MatcherApp_addArg___lambda__2___closed__2(); -lean_mark_persistent(l_Lean_Meta_MatcherApp_addArg___lambda__2___closed__2); -l_Lean_Meta_MatcherApp_addArg___lambda__4___closed__1 = _init_l_Lean_Meta_MatcherApp_addArg___lambda__4___closed__1(); -lean_mark_persistent(l_Lean_Meta_MatcherApp_addArg___lambda__4___closed__1); -l_Lean_Meta_MatcherApp_addArg___lambda__4___closed__2 = _init_l_Lean_Meta_MatcherApp_addArg___lambda__4___closed__2(); -lean_mark_persistent(l_Lean_Meta_MatcherApp_addArg___lambda__4___closed__2); -l_Lean_Meta_MatcherApp_addArg___lambda__4___closed__3 = _init_l_Lean_Meta_MatcherApp_addArg___lambda__4___closed__3(); -lean_mark_persistent(l_Lean_Meta_MatcherApp_addArg___lambda__4___closed__3); -l_Lean_Meta_MatcherApp_addArg___lambda__4___closed__4 = _init_l_Lean_Meta_MatcherApp_addArg___lambda__4___closed__4(); -lean_mark_persistent(l_Lean_Meta_MatcherApp_addArg___lambda__4___closed__4); -l_Array_mapMUnsafe_map___at_Lean_Meta_MatcherApp_refineThrough___spec__3___lambda__2___closed__1 = _init_l_Array_mapMUnsafe_map___at_Lean_Meta_MatcherApp_refineThrough___spec__3___lambda__2___closed__1(); -lean_mark_persistent(l_Array_mapMUnsafe_map___at_Lean_Meta_MatcherApp_refineThrough___spec__3___lambda__2___closed__1); -l_Array_mapMUnsafe_map___at_Lean_Meta_MatcherApp_refineThrough___spec__3___lambda__2___closed__2 = _init_l_Array_mapMUnsafe_map___at_Lean_Meta_MatcherApp_refineThrough___spec__3___lambda__2___closed__2(); -lean_mark_persistent(l_Array_mapMUnsafe_map___at_Lean_Meta_MatcherApp_refineThrough___spec__3___lambda__2___closed__2); -l_Lean_Meta_MatcherApp_refineThrough___lambda__3___closed__1 = _init_l_Lean_Meta_MatcherApp_refineThrough___lambda__3___closed__1(); -lean_mark_persistent(l_Lean_Meta_MatcherApp_refineThrough___lambda__3___closed__1); -l_Lean_Meta_MatcherApp_refineThrough___lambda__3___closed__2 = _init_l_Lean_Meta_MatcherApp_refineThrough___lambda__3___closed__2(); -lean_mark_persistent(l_Lean_Meta_MatcherApp_refineThrough___lambda__3___closed__2); -l_Lean_Meta_MatcherApp_refineThrough___lambda__5___closed__1 = _init_l_Lean_Meta_MatcherApp_refineThrough___lambda__5___closed__1(); -lean_mark_persistent(l_Lean_Meta_MatcherApp_refineThrough___lambda__5___closed__1); -l_Lean_Meta_MatcherApp_refineThrough___lambda__5___closed__2 = _init_l_Lean_Meta_MatcherApp_refineThrough___lambda__5___closed__2(); -lean_mark_persistent(l_Lean_Meta_MatcherApp_refineThrough___lambda__5___closed__2); -l_Lean_Meta_initFn____x40_Lean_Meta_Match_Match___hyg_14390____closed__1 = _init_l_Lean_Meta_initFn____x40_Lean_Meta_Match_Match___hyg_14390____closed__1(); -lean_mark_persistent(l_Lean_Meta_initFn____x40_Lean_Meta_Match_Match___hyg_14390____closed__1); -l_Lean_Meta_initFn____x40_Lean_Meta_Match_Match___hyg_14390____closed__2 = _init_l_Lean_Meta_initFn____x40_Lean_Meta_Match_Match___hyg_14390____closed__2(); -lean_mark_persistent(l_Lean_Meta_initFn____x40_Lean_Meta_Match_Match___hyg_14390____closed__2); -l_Lean_Meta_initFn____x40_Lean_Meta_Match_Match___hyg_14390____closed__3 = _init_l_Lean_Meta_initFn____x40_Lean_Meta_Match_Match___hyg_14390____closed__3(); -lean_mark_persistent(l_Lean_Meta_initFn____x40_Lean_Meta_Match_Match___hyg_14390____closed__3); -l_Lean_Meta_initFn____x40_Lean_Meta_Match_Match___hyg_14390____closed__4 = _init_l_Lean_Meta_initFn____x40_Lean_Meta_Match_Match___hyg_14390____closed__4(); -lean_mark_persistent(l_Lean_Meta_initFn____x40_Lean_Meta_Match_Match___hyg_14390____closed__4); -l_Lean_Meta_initFn____x40_Lean_Meta_Match_Match___hyg_14390____closed__5 = _init_l_Lean_Meta_initFn____x40_Lean_Meta_Match_Match___hyg_14390____closed__5(); -lean_mark_persistent(l_Lean_Meta_initFn____x40_Lean_Meta_Match_Match___hyg_14390____closed__5); -l_Lean_Meta_initFn____x40_Lean_Meta_Match_Match___hyg_14390____closed__6 = _init_l_Lean_Meta_initFn____x40_Lean_Meta_Match_Match___hyg_14390____closed__6(); -lean_mark_persistent(l_Lean_Meta_initFn____x40_Lean_Meta_Match_Match___hyg_14390____closed__6); -l_Lean_Meta_initFn____x40_Lean_Meta_Match_Match___hyg_14390____closed__7 = _init_l_Lean_Meta_initFn____x40_Lean_Meta_Match_Match___hyg_14390____closed__7(); -lean_mark_persistent(l_Lean_Meta_initFn____x40_Lean_Meta_Match_Match___hyg_14390____closed__7); -l_Lean_Meta_initFn____x40_Lean_Meta_Match_Match___hyg_14390____closed__8 = _init_l_Lean_Meta_initFn____x40_Lean_Meta_Match_Match___hyg_14390____closed__8(); -lean_mark_persistent(l_Lean_Meta_initFn____x40_Lean_Meta_Match_Match___hyg_14390____closed__8); -l_Lean_Meta_initFn____x40_Lean_Meta_Match_Match___hyg_14390____closed__9 = _init_l_Lean_Meta_initFn____x40_Lean_Meta_Match_Match___hyg_14390____closed__9(); -lean_mark_persistent(l_Lean_Meta_initFn____x40_Lean_Meta_Match_Match___hyg_14390____closed__9); -l_Lean_Meta_initFn____x40_Lean_Meta_Match_Match___hyg_14390____closed__10 = _init_l_Lean_Meta_initFn____x40_Lean_Meta_Match_Match___hyg_14390____closed__10(); -lean_mark_persistent(l_Lean_Meta_initFn____x40_Lean_Meta_Match_Match___hyg_14390____closed__10); -l_Lean_Meta_initFn____x40_Lean_Meta_Match_Match___hyg_14390____closed__11 = _init_l_Lean_Meta_initFn____x40_Lean_Meta_Match_Match___hyg_14390____closed__11(); -lean_mark_persistent(l_Lean_Meta_initFn____x40_Lean_Meta_Match_Match___hyg_14390____closed__11); -l_Lean_Meta_initFn____x40_Lean_Meta_Match_Match___hyg_14390____closed__12 = _init_l_Lean_Meta_initFn____x40_Lean_Meta_Match_Match___hyg_14390____closed__12(); -lean_mark_persistent(l_Lean_Meta_initFn____x40_Lean_Meta_Match_Match___hyg_14390____closed__12); -l_Lean_Meta_initFn____x40_Lean_Meta_Match_Match___hyg_14390____closed__13 = _init_l_Lean_Meta_initFn____x40_Lean_Meta_Match_Match___hyg_14390____closed__13(); -lean_mark_persistent(l_Lean_Meta_initFn____x40_Lean_Meta_Match_Match___hyg_14390____closed__13); -if (builtin) {res = l_Lean_Meta_initFn____x40_Lean_Meta_Match_Match___hyg_14390_(lean_io_mk_world()); +l_Lean_Meta_initFn____x40_Lean_Meta_Match_Match___hyg_13886____closed__1 = _init_l_Lean_Meta_initFn____x40_Lean_Meta_Match_Match___hyg_13886____closed__1(); +lean_mark_persistent(l_Lean_Meta_initFn____x40_Lean_Meta_Match_Match___hyg_13886____closed__1); +l_Lean_Meta_initFn____x40_Lean_Meta_Match_Match___hyg_13886____closed__2 = _init_l_Lean_Meta_initFn____x40_Lean_Meta_Match_Match___hyg_13886____closed__2(); +lean_mark_persistent(l_Lean_Meta_initFn____x40_Lean_Meta_Match_Match___hyg_13886____closed__2); +l_Lean_Meta_initFn____x40_Lean_Meta_Match_Match___hyg_13886____closed__3 = _init_l_Lean_Meta_initFn____x40_Lean_Meta_Match_Match___hyg_13886____closed__3(); +lean_mark_persistent(l_Lean_Meta_initFn____x40_Lean_Meta_Match_Match___hyg_13886____closed__3); +l_Lean_Meta_initFn____x40_Lean_Meta_Match_Match___hyg_13886____closed__4 = _init_l_Lean_Meta_initFn____x40_Lean_Meta_Match_Match___hyg_13886____closed__4(); +lean_mark_persistent(l_Lean_Meta_initFn____x40_Lean_Meta_Match_Match___hyg_13886____closed__4); +l_Lean_Meta_initFn____x40_Lean_Meta_Match_Match___hyg_13886____closed__5 = _init_l_Lean_Meta_initFn____x40_Lean_Meta_Match_Match___hyg_13886____closed__5(); +lean_mark_persistent(l_Lean_Meta_initFn____x40_Lean_Meta_Match_Match___hyg_13886____closed__5); +l_Lean_Meta_initFn____x40_Lean_Meta_Match_Match___hyg_13886____closed__6 = _init_l_Lean_Meta_initFn____x40_Lean_Meta_Match_Match___hyg_13886____closed__6(); +lean_mark_persistent(l_Lean_Meta_initFn____x40_Lean_Meta_Match_Match___hyg_13886____closed__6); +l_Lean_Meta_initFn____x40_Lean_Meta_Match_Match___hyg_13886____closed__7 = _init_l_Lean_Meta_initFn____x40_Lean_Meta_Match_Match___hyg_13886____closed__7(); +lean_mark_persistent(l_Lean_Meta_initFn____x40_Lean_Meta_Match_Match___hyg_13886____closed__7); +l_Lean_Meta_initFn____x40_Lean_Meta_Match_Match___hyg_13886____closed__8 = _init_l_Lean_Meta_initFn____x40_Lean_Meta_Match_Match___hyg_13886____closed__8(); +lean_mark_persistent(l_Lean_Meta_initFn____x40_Lean_Meta_Match_Match___hyg_13886____closed__8); +l_Lean_Meta_initFn____x40_Lean_Meta_Match_Match___hyg_13886____closed__9 = _init_l_Lean_Meta_initFn____x40_Lean_Meta_Match_Match___hyg_13886____closed__9(); +lean_mark_persistent(l_Lean_Meta_initFn____x40_Lean_Meta_Match_Match___hyg_13886____closed__9); +l_Lean_Meta_initFn____x40_Lean_Meta_Match_Match___hyg_13886____closed__10 = _init_l_Lean_Meta_initFn____x40_Lean_Meta_Match_Match___hyg_13886____closed__10(); +lean_mark_persistent(l_Lean_Meta_initFn____x40_Lean_Meta_Match_Match___hyg_13886____closed__10); +l_Lean_Meta_initFn____x40_Lean_Meta_Match_Match___hyg_13886____closed__11 = _init_l_Lean_Meta_initFn____x40_Lean_Meta_Match_Match___hyg_13886____closed__11(); +lean_mark_persistent(l_Lean_Meta_initFn____x40_Lean_Meta_Match_Match___hyg_13886____closed__11); +l_Lean_Meta_initFn____x40_Lean_Meta_Match_Match___hyg_13886____closed__12 = _init_l_Lean_Meta_initFn____x40_Lean_Meta_Match_Match___hyg_13886____closed__12(); +lean_mark_persistent(l_Lean_Meta_initFn____x40_Lean_Meta_Match_Match___hyg_13886____closed__12); +l_Lean_Meta_initFn____x40_Lean_Meta_Match_Match___hyg_13886____closed__13 = _init_l_Lean_Meta_initFn____x40_Lean_Meta_Match_Match___hyg_13886____closed__13(); +lean_mark_persistent(l_Lean_Meta_initFn____x40_Lean_Meta_Match_Match___hyg_13886____closed__13); +if (builtin) {res = l_Lean_Meta_initFn____x40_Lean_Meta_Match_Match___hyg_13886_(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)); diff --git a/stage0/stdlib/Lean/Meta/Match/MatchEqs.c b/stage0/stdlib/Lean/Meta/Match/MatchEqs.c index 9f3d344bae..8ca8a764a7 100644 --- a/stage0/stdlib/Lean/Meta/Match/MatchEqs.c +++ b/stage0/stdlib/Lean/Meta/Match/MatchEqs.c @@ -20,6 +20,7 @@ lean_object* l_Lean_Meta_FVarSubst_apply(lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_injectionAny___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_transform_visit_visitLet___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertTemplate___spec__11(lean_object*, lean_object*, uint8_t, 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_EXPORT lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_injectionAny___spec__4___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_HashMapImp_find_x3f___at___private_Lean_Meta_Match_MatchEqs_0__Lean_MVarId_contradictionQuick___spec__8(lean_object*, lean_object*); lean_object* l_Lean_Meta_mkEqHEq(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); 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_object* l___private_Init_Util_0__outOfBounds___rarg(lean_object*); @@ -27,6 +28,7 @@ static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Meta_Match_Matc static lean_object* l_Lean_Meta_Match_proveCondEqThm___closed__2; 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*); LEAN_EXPORT uint8_t l_Lean_Meta_Match_forallAltTelescope_isNamedPatternProof___lambda__1(lean_object*, lean_object*); +static lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_MVarId_contradictionQuick___lambda__2___closed__1; LEAN_EXPORT lean_object* l_Lean_throwError___at_Lean_Meta_Match_forallAltTelescope_go___spec__6___rarg___boxed(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_go___closed__8; LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_SimpH_isDone___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -89,10 +91,13 @@ static lean_object* l_Std_Range_forIn_loop___at___private_Lean_Meta_Match_MatchE LEAN_EXPORT lean_object* l_Std_Range_forIn_loop___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_go___spec__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_Std_Range_forIn_loop___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkEquationsFor___spec__5___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, size_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*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); 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*); extern lean_object* l_Lean_maxRecDepthErrorMessage; +LEAN_EXPORT lean_object* l_Lean_AssocList_contains___at___private_Lean_Meta_Match_MatchEqs_0__Lean_MVarId_contradictionQuick___spec__3___boxed(lean_object*, lean_object*); static lean_object* l_Lean_Meta_Match_getEquationsForImpl___closed__1; LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof(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_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertTemplate___lambda__3___closed__1; +lean_object* l_Lean_Meta_isProp(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_ConstantInfo_levelParams(lean_object*); static lean_object* l_Lean_throwMaxRecDepthAt___at_Lean_Meta_Match_proveCondEqThm_go___spec__2___closed__1; LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkEquationsFor___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_object*, lean_object*, lean_object*); @@ -111,6 +116,7 @@ static lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkEq size_t lean_uint64_to_usize(uint64_t); LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_SimpH_processNextEq___lambda__5(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_Match_MatchEqs_0__Lean_Meta_Match_simpH_x3f___lambda__3___closed__1; +uint8_t l_Lean_Expr_isRawNatLit(lean_object*); lean_object* l_Array_getIdx_x3f___at___private_Lean_Meta_RecursorInfo_0__Lean_Meta_getMajorPosDepElim___spec__1(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_withLetDecl___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertTemplate___spec__14(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertTemplate___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*); @@ -118,7 +124,6 @@ static lean_object* l_Std_Range_forIn_loop___at___private_Lean_Meta_Match_MatchE static lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkEquationsFor___lambda__1___closed__2; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_injectionAny___spec__4___closed__5; LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof___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_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_MatchEqs___hyg_12945____closed__2; lean_object* l_Lean_Expr_sort___override(lean_object*); lean_object* l_Lean_MessageData_ofList(lean_object*); LEAN_EXPORT lean_object* l_Lean_isTracingEnabledFor___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_go___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -130,23 +135,26 @@ lean_object* lean_array_push(lean_object*, lean_object*); static lean_object* l_Lean_Meta_Match_forallAltTelescope_go___rarg___lambda__5___closed__2; lean_object* l_Array_toSubarray___rarg(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_addTrace___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_go___spec__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Meta_Match_MatchEqs_0__Lean_MVarId_contradictionQuick___spec__13(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_Lean_throwError___at_Lean_Meta_Match_forallAltTelescope_go___spec__7___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_transform_visit_visitLambda___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertTemplate___spec__9___lambda__1(lean_object*, lean_object*, lean_object*, uint8_t, 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_EXPORT lean_object* l_Lean_throwError___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec___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_Meta_transform_visit___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertTemplate___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_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Meta_Match_MatchEqs_0__Lean_MVarId_contradictionQuick___spec__13___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___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_withSplitterAlts___rarg(lean_object*, 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_SimpH_processNextEq___lambda__2___closed__2; lean_object* lean_mk_array(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_throwError___at_Lean_Meta_Match_forallAltTelescope_go___spec__2(lean_object*); uint8_t lean_usize_dec_eq(size_t, size_t); -static lean_object* l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_MatchEqs___hyg_12945____closed__13; extern uint8_t l_instInhabitedBool; LEAN_EXPORT lean_object* l_panic___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_go___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_HashMap_insert___at___private_Lean_Meta_Match_MatchEqs_0__Lean_MVarId_contradictionQuick___spec__2(lean_object*, lean_object*, lean_object*); lean_object* l_ST_Prim_Ref_get___boxed(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Std_Range_forIn_loop___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec___spec__6___lambda__2___closed__2; lean_object* l_Lean_Expr_mdata___override(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_substSomeVar___spec__5(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_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_go___closed__2; +LEAN_EXPORT uint8_t l_Lean_AssocList_contains___at___private_Lean_Meta_Match_MatchEqs_0__Lean_MVarId_contradictionQuick___spec__3(lean_object*, lean_object*); static lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_simpH_x3f___lambda__3___closed__4; LEAN_EXPORT lean_object* l_Lean_Expr_withAppAux___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec___spec__8___lambda__2___boxed(lean_object**); static lean_object* l_Lean_Expr_withAppAux___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec___spec__8___closed__4; @@ -158,22 +166,24 @@ lean_object* l_Lean_Expr_proj___override(lean_object*, lean_object*, lean_object lean_object* lean_array_fget(lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_proveSubgoalLoop___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_List_erase___at_Lean_MVarId_getNondepPropHyps___spec__4(lean_object*, lean_object*); +lean_object* l_Lean_Meta_forallTelescope___at_Lean_Meta_mapForallTelescope_x27___spec__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_throwError___at_Lean_Meta_Match_forallAltTelescope_go___spec__3___rarg(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_Lean_Meta_Match_unfoldNamedPattern___lambda__2___closed__1; LEAN_EXPORT lean_object* l_Lean_Meta_Match_forallAltTelescope_go___rarg___lambda__4___boxed(lean_object**); static lean_object* l_Lean_Meta_Match_proveCondEqThm_go___lambda__3___closed__10; lean_object* l_Lean_ConstantInfo_name(lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_SimpH_processNextEq___lambda__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static size_t l_Lean_PersistentHashMap_findAux___at_Lean_Meta_Match_getEquationsForImpl___spec__2___closed__2; +LEAN_EXPORT lean_object* l_Lean_PersistentArray_forIn___at___private_Lean_Meta_Match_MatchEqs_0__Lean_MVarId_contradictionQuick___spec__10(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_ReaderT_instMonadReaderT___rarg(lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_withIncRecDepth___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertTemplate___spec__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_Lean_Expr_fvarId_x21(lean_object*); +LEAN_EXPORT lean_object* l_Lean_mkHashMap___at___private_Lean_Meta_Match_MatchEqs_0__Lean_MVarId_contradictionQuick___spec__1(lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_Match_proveCondEqThm___lambda__2(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_injectionAny(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_MatchEqs___hyg_12945____closed__15; lean_object* lean_environment_find(lean_object*, lean_object*); static lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_substSomeVar___lambda__1___closed__1; -uint8_t l_Lean_Expr_isNatLit(lean_object*); lean_object* l_Lean_MVarId_refl(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_mkEquationsFor___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_EXPORT lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_withSplitterAlts(lean_object*); @@ -198,12 +208,15 @@ static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Meta_Match_Matc static lean_object* l_Lean_Meta_Match_forallAltTelescope_go___rarg___closed__17; LEAN_EXPORT lean_object* l_Lean_throwError___at_Lean_Meta_Match_forallAltTelescope_go___spec__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Subarray_forInUnsafe_loop___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_isCastEqRec___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_EXPORT lean_object* l_Lean_PersistentArray_forInAux___at___private_Lean_Meta_Match_MatchEqs_0__Lean_MVarId_contradictionQuick___spec__11(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_SimpH_applySubst___boxed(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_PersistentArray_forIn___at___private_Lean_Meta_Match_MatchEqs_0__Lean_MVarId_contradictionQuick___spec__10___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Expr_withAppAux___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec___spec__8___lambda__9___closed__2; LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_simpH_x3f___lambda__1(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_Meta_Match_forallAltTelescope_go___spec__4___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Std_Range_forIn_loop___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec___spec__6___lambda__2___closed__3; LEAN_EXPORT lean_object* l_Lean_Meta_transform_visit_visitLet___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertTemplate___spec__11___lambda__1(lean_object*, lean_object*, lean_object*, uint8_t, 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_EXPORT lean_object* l_Lean_AssocList_find_x3f___at___private_Lean_Meta_Match_MatchEqs_0__Lean_MVarId_contradictionQuick___spec__9(lean_object*, lean_object*); lean_object* l_Lean_throwError___at_Lean_Meta_setInlineAttribute___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_Range_forIn_loop___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkEquationsFor___spec__5___boxed(lean_object**); lean_object* l_Lean_Exception_toMessageData(lean_object*); @@ -221,11 +234,13 @@ lean_object* l_Lean_Expr_appArg_x21(lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertTemplate___spec__12___rarg(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*); LEAN_EXPORT lean_object* l_Lean_PersistentArray_forInAux___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_substSomeVar___spec__2(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_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_proveSubgoalLoop___closed__2; +LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Meta_Match_MatchEqs_0__Lean_MVarId_contradictionQuick___spec__13___lambda__4(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_instInhabitedNat; static lean_object* l_Lean_Meta_Match_proveCondEqThm_go___lambda__1___closed__1; LEAN_EXPORT lean_object* l_Lean_Expr_withAppAux___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec___spec__8___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_EXPORT lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertTemplate___lambda__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_List_mapTR_loop___at_Lean_mkConstWithLevelParams___spec__1(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_AssocList_find_x3f___at___private_Lean_Meta_Match_MatchEqs_0__Lean_MVarId_contradictionQuick___spec__9___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertTemplate___spec__12___rarg___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_Lean_Meta_Match_forallAltTelescope_go___rarg___lambda__5___closed__1; static lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkEquationsFor___lambda__4___closed__1; @@ -243,6 +258,7 @@ LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match lean_object* l_Lean_MVarId_contradiction(lean_object*, 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_SimpH_substRHS___closed__5; uint8_t l_Lean_Expr_isLambda(lean_object*); +lean_object* l_Lean_MVarId_assign___at_Lean_Meta_getLevel___spec__1(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_proveSubgoalLoop___lambda__1(lean_object*, lean_object*, 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_withSplitterAlts_go___rarg___closed__1; static lean_object* l_Lean_Expr_withAppAux___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec___spec__8___lambda__9___closed__1; @@ -250,20 +266,21 @@ size_t lean_ptr_addr(lean_object*); LEAN_EXPORT lean_object* l_Std_Range_forIn_loop___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec___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* l_Lean_Meta_isTypeCorrect(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_PersistentArray_forIn___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_substSomeVar___spec__1___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_Range_forIn_loop___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec___spec__6___boxed(lean_object**); -static lean_object* l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_MatchEqs___hyg_12945____closed__4; lean_object* l_Lean_EnvExtension_getState___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_List_appendTR___rarg(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_go___spec__4___rarg(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_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; +static lean_object* l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_MatchEqs___hyg_13691____closed__12; size_t lean_usize_of_nat(lean_object*); LEAN_EXPORT lean_object* l_Lean_MVarId_withContext___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_SimpH_processNextEq___spec__2(lean_object*); static lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkEquationsFor___lambda__4___closed__2; LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_substSomeVar___spec__4(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_Lean_throwError___at_Lean_Meta_Match_forallAltTelescope_go___spec__5___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_MVarId_contradictionQuick___lambda__1(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_proveSubgoalLoop(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_PersistentArray_forInAux___at___private_Lean_Meta_Match_MatchEqs_0__Lean_MVarId_contradictionQuick___spec__11___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_throwError___at_Lean_Meta_Match_forallAltTelescope_go___spec__7___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_substSomeVar___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*); lean_object* l___private_Lean_Meta_Basic_0__Lean_Meta_lambdaTelescopeImp___rarg(lean_object*, uint8_t, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -273,14 +290,15 @@ LEAN_EXPORT lean_object* l_Subarray_forInUnsafe_loop___at___private_Lean_Meta_Ma LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_trimFalseTrail(lean_object*); LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_substSomeVar___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_EXPORT lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_SimpH_processNextEq___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_AssocList_replace___at___private_Lean_Meta_Match_MatchEqs_0__Lean_MVarId_contradictionQuick___spec__7(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_List_filterMap___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_SimpH_applySubst___spec__1(lean_object*, lean_object*); +static lean_object* l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_MatchEqs___hyg_13691____closed__1; static lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_SimpH_substRHS___closed__4; static lean_object* l_Std_Range_forIn_loop___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec___spec__6___lambda__2___closed__4; static lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_substSomeVar___lambda__2___closed__2; lean_object* l_Array_reverse___rarg(lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_Match_forallAltTelescope_go___rarg___lambda__3___boxed(lean_object**); LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_simpH_x3f___lambda__3(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___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_substSomeVar___spec__2___lambda__1___boxed(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_EXPORT lean_object* l_Lean_Meta_transform_visit_visitForall___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertTemplate___spec__10(lean_object*, lean_object*, uint8_t, 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_EXPORT lean_object* l_Lean_Meta_Match_proveCondEqThm___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -288,6 +306,7 @@ lean_object* lean_st_ref_take(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_throwError___at_Lean_Meta_Match_forallAltTelescope_go___spec__5(lean_object*); LEAN_EXPORT lean_object* l_Lean_throwMaxRecDepthAt___at_Lean_Meta_Match_proveCondEqThm_go___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Meta_Basic_0__Lean_Meta_withLetDeclImp___rarg(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_HashMapImp_moveEntries___at___private_Lean_Meta_Match_MatchEqs_0__Lean_MVarId_contradictionQuick___spec__5(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_withSplitterAlts_go(lean_object*); static lean_object* l_Lean_Expr_withAppAux___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec___spec__8___lambda__4___closed__1; uint8_t lean_nat_dec_eq(lean_object*, lean_object*); @@ -297,13 +316,13 @@ static lean_object* l_Std_Range_forIn_loop___at___private_Lean_Meta_Match_MatchE LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_SimpH_processNextEq(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_PersistentArray_forInAux___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_injectionAny___spec__2(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_Match_proveCondEqThm_go___lambda__3___closed__7; +LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Meta_Match_MatchEqs_0__Lean_MVarId_contradictionQuick___spec__12(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*); uint8_t lean_expr_eqv(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_Match_forallAltTelescope_go___rarg___lambda__2___boxed(lean_object**); LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_SimpH_isDone(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_mkPrivateName(lean_object*, lean_object*); static lean_object* l_Lean_Meta_casesOnStuckLHS___lambda__1___closed__1; LEAN_EXPORT lean_object* l_Lean_Meta_Match_SimpH_trySubstVarsAndContradiction(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_MatchEqs___hyg_12945____closed__12; LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertTemplate___spec__12(lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_SimpH_substRHS(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Subarray_size___rarg(lean_object*); @@ -314,7 +333,6 @@ LEAN_EXPORT lean_object* l_Std_Range_forIn_loop___at___private_Lean_Meta_Match_M lean_object* l_Lean_MVarId_getType(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Meta_Match_forallAltTelescope_go___spec__8(lean_object*, lean_object*, size_t, size_t, lean_object*); lean_object* l_List_mapTR_loop___at_Lean_MessageData_instCoeListExprMessageData___spec__1(lean_object*, lean_object*); -static lean_object* l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_MatchEqs___hyg_12945____closed__1; lean_object* l_Lean_MVarId_deltaTarget(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_HashMapImp_find_x3f___at_Lean_instantiateExprMVars___spec__1(lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_withSplitterAlts_go___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -323,22 +341,26 @@ LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Meta_Match LEAN_EXPORT lean_object* l_Lean_Meta_Match_unfoldNamedPattern___lambda__1___boxed(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_withNewAlts_go(lean_object*); lean_object* l_Lean_registerTraceClass(lean_object*, uint8_t, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_mkHashMap___at___private_Lean_Meta_Match_MatchEqs_0__Lean_MVarId_contradictionQuick___spec__1___boxed(lean_object*); LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Meta_Match_forallAltTelescope_go___spec__8___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_MatchEqs___hyg_13691____closed__16; LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkEquationsFor___lambda__1___boxed(lean_object**); LEAN_EXPORT lean_object* l_Lean_throwError___at_Lean_Meta_Match_forallAltTelescope_go___spec__11___rarg(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_go___closed__6; lean_object* l_Lean_Meta_kabstract(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_mkHEqRefl(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_SavedState_restore(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_PersistentArray_forInAux___at___private_Lean_Meta_Match_MatchEqs_0__Lean_MVarId_contradictionQuick___spec__11___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); 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___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_proveSubgoalLoop___lambda__1___closed__4; LEAN_EXPORT lean_object* l_Lean_throwError___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkEquationsFor___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_List_elem___at_Lean_MVarId_getNondepPropHyps___spec__3(lean_object*, lean_object*); -static lean_object* l_Subarray_forInUnsafe_loop___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_isCastEqRec___spec__2___closed__2; +static lean_object* l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_MatchEqs___hyg_13691____closed__15; LEAN_EXPORT lean_object* l_Lean_throwError___at_Lean_Meta_Match_forallAltTelescope_go___spec__3___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_throwError___at_Lean_Meta_Match_forallAltTelescope_go___spec__12___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, 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__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_EXPORT lean_object* l_Lean_Meta_transform_visit_visitPost___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertTemplate___spec__8(lean_object*, lean_object*, uint8_t, 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_Array_forInUnsafe_loop___at___private_Lean_Meta_Match_MatchEqs_0__Lean_MVarId_contradictionQuick___spec__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_EXPORT lean_object* l_Std_Range_forIn_loop___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkEquationsFor___spec__5___lambda__3___boxed(lean_object**); static lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_proveSubgoalLoop___lambda__1___closed__2; LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_substSomeVar(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -353,11 +375,12 @@ LEAN_EXPORT lean_object* l_Lean_throwMaxRecDepthAt___at___private_Lean_Meta_Matc LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkEquationsFor___lambda__4(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_simpH_x3f___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_transform___at_Lean_Meta_zetaReduce___spec__1(lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_MatchEqs___hyg_12945____closed__16; static lean_object* l_Lean_Expr_withAppAux___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec___spec__8___lambda__2___closed__4; lean_object* l_Lean_FVarId_getDecl(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_throwError___at_Lean_Meta_Match_forallAltTelescope_go___spec__6(lean_object*); LEAN_EXPORT lean_object* l_Lean_throwMaxRecDepthAt___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertTemplate___spec__21___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_MatchEqs___hyg_13691____closed__8; +lean_object* l_Lean_Meta_mkAbsurd(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_Meta_Match_forallAltTelescope_go___spec__1(lean_object*); LEAN_EXPORT lean_object* l_Std_Range_forIn_loop___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkEquationsFor___spec__5___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* l_Lean_Meta_whnfForall(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -374,6 +397,7 @@ static lean_object* l_Lean_Expr_withAppAux___at___private_Lean_Meta_Match_MatchE static lean_object* l_Lean_Meta_Match_forallAltTelescope_go___rarg___closed__18; LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_simpH_x3f___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, 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__8(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_Match_initFn____x40_Lean_Meta_Match_MatchEqs___hyg_13691_(lean_object*); lean_object* l_Lean_Meta_splitIfTarget_x3f(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_object* l_Lean_Expr_replaceFVar(lean_object*, lean_object*, lean_object*); @@ -387,7 +411,6 @@ lean_object* l___private_Lean_Meta_Basic_0__Lean_Meta_withMVarContextImp___rarg( static lean_object* l_Std_Range_forIn_loop___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkEquationsFor___spec__5___closed__2; 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_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_MatchEqs___hyg_12945____closed__3; LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_SimpH_processNextEq___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_Match_forallAltTelescope_go(lean_object*); lean_object* l_instInhabited___rarg(lean_object*, lean_object*); @@ -410,6 +433,7 @@ LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Meta_Match LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_substSomeVar___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Expr_withAppAux___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec___spec__8___lambda__11___closed__2; static lean_object* l_Lean_Meta_Match_forallAltTelescope_go___rarg___closed__2; +uint64_t l_Lean_Expr_hash(lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_go___lambda__2___boxed(lean_object**); static lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertTemplate___lambda__3___closed__5; LEAN_EXPORT lean_object* l_Lean_Expr_withAppAux___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec___spec__8___lambda__10___boxed(lean_object**); @@ -433,11 +457,12 @@ LEAN_EXPORT lean_object* l_Lean_Meta_transform_visit___at___private_Lean_Meta_Ma LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkEquationsFor___lambda__5(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_injectionAnyCandidate_x3f(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT uint8_t l_Lean_Meta_Match_forallAltTelescope_isNamedPatternProof(lean_object*, lean_object*); +static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Meta_Match_MatchEqs_0__Lean_MVarId_contradictionQuick___spec__13___lambda__3___closed__1; LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertTemplate___spec__15___boxed(lean_object**); static lean_object* l_Lean_Expr_withAppAux___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec___spec__8___lambda__2___closed__1; LEAN_EXPORT lean_object* l_Lean_Meta_transform___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertTemplate___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* l_Lean_Meta_simpIfTarget(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_MatchEqs___hyg_13691____closed__10; static lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertTemplate___lambda__3___closed__3; static lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkEquationsFor___lambda__5___closed__1; LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -447,6 +472,7 @@ LEAN_EXPORT lean_object* l_Lean_Meta_casesOnStuckLHS___lambda__1___boxed(lean_ob LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_find_x3f___at_Lean_Meta_Match_getEquationsForImpl___spec__1(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_throwError___at_Lean_Meta_Match_forallAltTelescope_go___spec__6___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_saveState___rarg(lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_MatchEqs___hyg_13691____closed__13; LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_SimpH_processNextEq___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_EXPORT lean_object* l_Lean_Meta_forallTelescopeReducing___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec___spec__3___rarg___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_Lean_Meta_transform_visit___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertTemplate___spec__7___lambda__2(lean_object*, lean_object*, lean_object*); @@ -454,6 +480,7 @@ lean_object* l_Lean_LocalDecl_fvarId(lean_object*); static lean_object* l_Std_Range_forIn_loop___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec___spec__6___lambda__2___closed__1; static lean_object* l_Lean_Expr_withAppAux___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec___spec__8___lambda__2___closed__3; LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertTemplate___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*); +static lean_object* l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_MatchEqs___hyg_13691____closed__11; static lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_proveSubgoal___closed__3; LEAN_EXPORT lean_object* l_Lean_Meta_Match_SimpH_trySubstVarsAndContradiction___lambda__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_simpH_x3f___lambda__3___closed__6; @@ -465,12 +492,11 @@ extern lean_object* l_Lean_Meta_instMonadMetaM; LEAN_EXPORT lean_object* l_Lean_PersistentArray_forInAux___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_injectionAny___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___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_SimpH_substRHS___closed__1; lean_object* l_Array_eraseIdx___rarg(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Meta_Match_MatchEqs_0__Lean_MVarId_contradictionQuick___spec__14(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_List_mapTR_loop___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertTemplate___spec__3___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertTemplate___spec__4___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertTemplate___spec__5___closed__5; -static lean_object* l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_MatchEqs___hyg_12945____closed__9; LEAN_EXPORT lean_object* l_Lean_Meta_Match_forallAltTelescope_go___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_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertTemplate___spec__12___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_Range_forIn_loop___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkEquationsFor___spec__5___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_EXPORT lean_object* l_Lean_PersistentArray_forInAux___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_substSomeVar___spec__2___lambda__1(lean_object*, 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_proveSubgoal___closed__1; LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertTemplate___spec__17(lean_object*, lean_object*, uint8_t, uint8_t, 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_EXPORT lean_object* l_Lean_Meta_Match_unfoldNamedPattern___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -482,12 +508,15 @@ LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match static lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_proveSubgoalLoop___lambda__1___closed__1; LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertTemplate___spec__16___boxed(lean_object**); static lean_object* l_Lean_Meta_Match_unfoldNamedPattern___closed__1; +LEAN_EXPORT lean_object* l_Lean_PersistentArray_forIn___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_substSomeVar___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_Lean_Meta_Match_unfoldNamedPattern___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Subarray_forInUnsafe_loop___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_isCastEqRec___spec__2___closed__1; LEAN_EXPORT lean_object* l_Lean_throwError___at_Lean_Meta_Match_forallAltTelescope_go___spec__4___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_usize_to_nat(size_t); +size_t lean_hashmap_mk_idx(lean_object*, uint64_t); static lean_object* l_List_mapTR_loop___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertTemplate___spec__3___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertTemplate___spec__4___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertTemplate___spec__5___closed__2; static lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_simpH_x3f___closed__1; +LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Meta_Match_MatchEqs_0__Lean_MVarId_contradictionQuick___spec__13___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_Lean_Meta_Match_forallAltTelescope_go___rarg___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_Meta_withLetDecl___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertTemplate___spec__14___rarg(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_EXPORT lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertTemplate___spec__2___boxed(lean_object*, lean_object*, lean_object*); @@ -499,6 +528,7 @@ lean_object* l_Lean_MessageData_ofExpr(lean_object*); lean_object* l_Lean_Meta_Match_isNamedPattern_x3f(lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_transform___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertTemplate___spec__6(lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, 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_mkEquationsFor___lambda__5___closed__2; +uint8_t l_Lean_LocalDecl_isImplementationDetail(lean_object*); LEAN_EXPORT lean_object* l_Lean_throwError___at_Lean_Meta_Match_forallAltTelescope_go___spec__10(lean_object*); lean_object* l_Lean_Meta_whnfEasyCases___at_Lean_Meta_whnfCore_go___spec__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_throwError___at_Lean_Meta_mkSimpCongrTheorem___spec__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -507,6 +537,7 @@ static lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSp static lean_object* l_Lean_Expr_withAppAux___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec___spec__8___lambda__10___closed__4; static lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_proveSubgoal___closed__2; lean_object* l_Lean_LocalDecl_userName(lean_object*); +lean_object* l_Lean_Meta_matchNot_x3f(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_transform_visit_visitForall___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertTemplate___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*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_name_append_index_after(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkEquationsFor___spec__2(lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -516,8 +547,6 @@ static lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSp static lean_object* l_Lean_Expr_withAppAux___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec___spec__8___lambda__2___closed__2; static lean_object* l_List_mapTR_loop___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertTemplate___spec__3___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertTemplate___spec__4___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertTemplate___spec__5___closed__1; LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_substSomeVar___spec__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_Meta_Match_initFn____x40_Lean_Meta_Match_MatchEqs___hyg_12945_(lean_object*); -static lean_object* l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_MatchEqs___hyg_12945____closed__10; LEAN_EXPORT lean_object* l_Lean_Meta_Match_proveCondEqThm(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_SimpH_processNextEq___lambda__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_Array_forInUnsafe_loop___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_substSomeVar___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*); @@ -573,19 +602,23 @@ lean_object* l_Lean_Name_mkStr2(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_proveSubgoal___spec__1(size_t, size_t, lean_object*); LEAN_EXPORT lean_object* l_Lean_throwError___at_Lean_Meta_Match_forallAltTelescope_go___spec__11___rarg___boxed(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___private_Lean_Meta_Match_MatchEqs_0__Lean_MVarId_contradictionQuick(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_indentExpr(lean_object*); +static lean_object* l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_MatchEqs___hyg_13691____closed__2; LEAN_EXPORT lean_object* lean_get_match_equations_for(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Array_contains___at___private_Lean_Meta_RecursorInfo_0__Lean_Meta_getMajorPosDepElim___spec__4(lean_object*, lean_object*); lean_object* l_Lean_Meta_Match_getNumEqsFromDiscrInfos(lean_object*); -static lean_object* l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_MatchEqs___hyg_12945____closed__11; +LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Meta_Match_MatchEqs_0__Lean_MVarId_contradictionQuick___spec__13___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_transform_visit_visitPost___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertTemplate___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_List_mapTR_loop___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertTemplate___spec__3___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertTemplate___spec__4(lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_MatchEqs___hyg_13691____closed__14; static lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec___closed__3; LEAN_EXPORT lean_object* l_Std_Range_forIn_loop___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec___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_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_unfoldDefinition_x3f(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_SimpH_processNextEq___lambda__5___closed__1; LEAN_EXPORT lean_object* l_Lean_Meta_casesOnStuckLHS_findFVar_x3f(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Meta_Match_proveCondEqThm___lambda__3___closed__2; +LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_proveSubgoalLoop___lambda__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Expr_isConstOf(lean_object*, lean_object*); lean_object* l_Lean_Meta_mkForallFVars(lean_object*, lean_object*, uint8_t, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Meta_casesOnStuckLHS___lambda__1___closed__2; @@ -609,6 +642,8 @@ lean_object* lean_panic_fn(lean_object*, lean_object*); static lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertTemplate___lambda__2___closed__4; static lean_object* l_Lean_Expr_withAppAux___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec___spec__8___lambda__7___closed__1; LEAN_EXPORT lean_object* l_Std_Range_forIn_loop___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec___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_EXPORT lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Meta_Match_MatchEqs_0__Lean_MVarId_contradictionQuick___spec__13___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_Meta_Match_initFn____x40_Lean_Meta_Match_MatchEqs___hyg_13691____closed__9; LEAN_EXPORT lean_object* l_Lean_Expr_withAppAux___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec___spec__8___lambda__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static size_t l_Lean_PersistentHashMap_findAux___at_Lean_Meta_Match_getEquationsForImpl___spec__2___closed__1; extern lean_object* l_Lean_Meta_Match_matchEqnsExt; @@ -616,6 +651,7 @@ LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match LEAN_EXPORT lean_object* l_Lean_Meta_casesOnStuckLHS(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_Match_proveCondEqThm___lambda__4(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_Array_forInUnsafe_loop___at___private_Lean_Meta_Match_MatchEqs_0__Lean_MVarId_contradictionQuick___spec__13___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_Lean_throwError___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec___spec__2(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_SimpH_processNextEq___lambda__6(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_loop___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkEquationsFor___spec__5___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*); @@ -627,9 +663,9 @@ LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match static lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertTemplate___closed__1; static lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_SimpH_processNextEq___lambda__2___closed__1; static lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_isCastEqRec___lambda__2___closed__1; +lean_object* lean_nat_mul(lean_object*, lean_object*); static lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof___closed__1; static lean_object* l_Lean_Meta_Match_proveCondEqThm___closed__4; -LEAN_EXPORT lean_object* l_Lean_PersistentArray_forIn___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_substSomeVar___spec__1___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_transform_visit_visitLet___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertTemplate___spec__11___lambda__1___boxed(lean_object**); LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof___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_EXPORT lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertTemplate___spec__15(lean_object*, lean_object*, uint8_t, uint8_t, 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*); @@ -639,11 +675,11 @@ lean_object* l_Lean_Meta_Cases_cases(lean_object*, lean_object*, lean_object*, l LEAN_EXPORT lean_object* l_Lean_Meta_Match_proveCondEqThm_go___lambda__3(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___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertTemplate___spec__2(size_t, size_t, lean_object*); static lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkEquationsFor___lambda__2___closed__1; -static lean_object* l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_MatchEqs___hyg_12945____closed__14; static lean_object* l_Std_Range_forIn_loop___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec___spec__6___lambda__2___closed__5; static lean_object* l_Lean_Expr_withAppAux___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec___spec__8___lambda__10___closed__2; lean_object* l_Lean_PersistentHashMap_mkEmptyEntriesArray(lean_object*, lean_object*); lean_object* l_Array_ofSubarray___rarg(lean_object*); +static lean_object* l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_MatchEqs___hyg_13691____closed__6; uint8_t l_Lean_LocalDecl_binderInfo(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__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*); static lean_object* l_Lean_Meta_Match_forallAltTelescope_go___rarg___closed__14; @@ -655,13 +691,16 @@ LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match lean_object* lean_expr_instantiate_rev(lean_object*, lean_object*); lean_object* l_List_reverse___rarg(lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_Match_forallAltTelescope_isNamedPatternProof___boxed(lean_object*, lean_object*); +static lean_object* l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_MatchEqs___hyg_13691____closed__5; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_injectionAny___spec__4___closed__2; static lean_object* l_Std_Range_forIn_loop___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec___spec__1___closed__1; +LEAN_EXPORT lean_object* l_Lean_PersistentArray_forInAux___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_substSomeVar___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___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertTemplate___lambda__3___closed__6; size_t lean_usize_sub(size_t, size_t); static lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_substSomeVar___lambda__2___closed__1; LEAN_EXPORT lean_object* l_Lean_Meta_transform_visit___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertTemplate___spec__7___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_object*, lean_object*); lean_object* l_Lean_mkHashMapImp___rarg(lean_object*); +LEAN_EXPORT lean_object* l_Lean_AssocList_foldlM___at___private_Lean_Meta_Match_MatchEqs_0__Lean_MVarId_contradictionQuick___spec__6(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_Match_forallAltTelescope_go___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*, lean_object*, lean_object*); lean_object* l_Lean_MVarId_tryClearMany(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_Match_SimpH_go(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -671,9 +710,9 @@ static lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSp LEAN_EXPORT lean_object* l_Std_Range_forIn_loop___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_go___spec__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_EXPORT lean_object* l_Lean_Expr_withAppAux___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec___spec__8___lambda__5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); size_t lean_usize_add(size_t, size_t); +LEAN_EXPORT lean_object* l_Lean_PersistentArray_forIn___at___private_Lean_Meta_Match_MatchEqs_0__Lean_MVarId_contradictionQuick___spec__10___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_List_forIn_loop___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_simpH_x3f___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_Match_proveCondEqThm___lambda__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_MatchEqs___hyg_12945____closed__7; LEAN_EXPORT lean_object* l_Lean_throwError___at_Lean_Meta_casesOnStuckLHS___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Meta_transform___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertTemplate___spec__6___closed__1; static lean_object* l_Lean_Meta_Match_forallAltTelescope_go___rarg___closed__3; @@ -693,6 +732,7 @@ LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match static lean_object* l_Lean_Meta_casesOnStuckLHS_findFVar_x3f___closed__1; lean_object* l_Lean_Expr_bindingBody_x21(lean_object*); lean_object* l_List_redLength___rarg(lean_object*); +static lean_object* l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_MatchEqs___hyg_13691____closed__3; lean_object* l___private_Lean_Meta_Basic_0__Lean_Meta_forallTelescopeReducingAux___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Meta_Match_proveCondEqThm_go___closed__2; lean_object* l_Lean_Meta_setInlineAttribute(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -701,6 +741,7 @@ lean_object* l___private_Lean_Expr_0__Lean_Expr_getAppArgsAux(lean_object*, lean static lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_simpH_x3f___closed__2; static lean_object* l_Lean_Meta_Match_forallAltTelescope_go___rarg___closed__16; LEAN_EXPORT lean_object* l_Std_Range_forIn_loop___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec___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_EXPORT lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Meta_Match_MatchEqs_0__Lean_MVarId_contradictionQuick___spec__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*); extern lean_object* l_Lean_Meta_Match_instInhabitedMatchEqnsExtState; LEAN_EXPORT lean_object* l_Lean_Meta_Match_proveCondEqThm_go___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_throwError___at_Lean_Meta_Match_forallAltTelescope_go___spec__3(lean_object*); @@ -713,14 +754,15 @@ LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___private_Lean_Meta_Matc static lean_object* l_Lean_Meta_transform___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertTemplate___spec__6___closed__2; lean_object* l_Lean_MVarId_modifyTargetEqLHS(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_mkFreshExprSyntheticOpaqueMVar(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Meta_Match_MatchEqs_0__Lean_MVarId_contradictionQuick___spec__13___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_Expr_headBeta(lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_SimpH_contradiction(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___lambda__2___closed__2; lean_object* lean_array_get_size(lean_object*); +lean_object* l_Lean_LocalDecl_toExpr(lean_object*); LEAN_EXPORT uint8_t l_Lean_Meta_Match_proveCondEqThm___lambda__1(lean_object*, lean_object*); static lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_simpH_x3f___lambda__3___closed__2; LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_simpH_x3f___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_MatchEqs___hyg_12945____closed__5; LEAN_EXPORT lean_object* l_Lean_Meta_Match_forallAltTelescope___rarg(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___boxed(lean_object**); LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_findAtAux___at_Lean_Meta_Match_getEquationsForImpl___spec__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -733,7 +775,6 @@ static lean_object* l_Lean_Meta_Match_forallAltTelescope_go___rarg___closed__4; static lean_object* l_Lean_Expr_withAppAux___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec___spec__8___lambda__11___closed__3; 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*); -static lean_object* l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_MatchEqs___hyg_12945____closed__8; static lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_injectionAnyCandidate_x3f___closed__1; LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_mkMap(lean_object*, lean_object*, lean_object*, lean_object*); uint8_t lean_usize_dec_lt(size_t, size_t); @@ -744,8 +785,8 @@ static lean_object* l_Lean_Meta_Match_unfoldNamedPattern___closed__2; static lean_object* l_Lean_Meta_Match_forallAltTelescope_go___rarg___lambda__5___closed__4; static lean_object* l_Lean_Meta_Match_forallAltTelescope_go___rarg___lambda__5___closed__3; static lean_object* l_Lean_Expr_withAppAux___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec___spec__8___closed__3; -static lean_object* l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_MatchEqs___hyg_12945____closed__6; lean_object* l_Lean_Meta_mkLambdaFVars(lean_object*, lean_object*, uint8_t, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_MatchEqs___hyg_13691____closed__4; static lean_object* l_Lean_Expr_withAppAux___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec___spec__8___closed__2; lean_object* l_Lean_addAndCompile(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_isCastEqRec___closed__1; @@ -789,12 +830,15 @@ static lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_inje lean_object* lean_array_get(lean_object*, 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__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_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_expr_instantiate1(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Meta_Match_MatchEqs_0__Lean_MVarId_contradictionQuick___spec__13___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___private_Lean_Meta_Basic_0__Lean_Meta_instantiateForallAux(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_Match_registerMatchEqns(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_Match_unfoldNamedPattern___lambda__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_MatchEqs___hyg_13691____closed__7; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_injectionAny___spec__4___closed__3; LEAN_EXPORT lean_object* l_Lean_Expr_withAppAux___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec___spec__8___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_EXPORT lean_object* l_Lean_PersistentHashMap_findAtAux___at_Lean_Meta_Match_getEquationsForImpl___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_MVarId_contradictionQuick___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Meta_Basic_0__Lean_Meta_forallTelescopeReducingImp___rarg(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_injectionAnyCandidate_x3f___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_throwError___at_Lean_Meta_Match_forallAltTelescope_go___spec__12___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -810,12 +854,3338 @@ LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Meta_casesOnStuckLHS__ lean_object* l_List_toArrayAux___rarg(lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_SimpH_processNextEq___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_subst_x3f(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Data_HashMap_0__Lean_numBucketsForCapacity(lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_SimpH_processNextEq___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_Meta_withLetDecl___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertTemplate___spec__14___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_EXPORT lean_object* l_Lean_HashMapImp_expand___at___private_Lean_Meta_Match_MatchEqs_0__Lean_MVarId_contradictionQuick___spec__4(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__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*); uint8_t l_Array_isEmpty___rarg(lean_object*); lean_object* l_Lean_Meta_matchHEq_x3f(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_go___closed__4; +LEAN_EXPORT lean_object* l_Lean_mkHashMap___at___private_Lean_Meta_Match_MatchEqs_0__Lean_MVarId_contradictionQuick___spec__1(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = l_Lean_mkHashMapImp___rarg(x_1); +return x_2; +} +} +LEAN_EXPORT uint8_t l_Lean_AssocList_contains___at___private_Lean_Meta_Match_MatchEqs_0__Lean_MVarId_contradictionQuick___spec__3(lean_object* x_1, lean_object* x_2) { +_start: +{ +if (lean_obj_tag(x_2) == 0) +{ +uint8_t x_3; +x_3 = 0; +return x_3; +} +else +{ +lean_object* x_4; lean_object* x_5; uint8_t x_6; +x_4 = lean_ctor_get(x_2, 0); +x_5 = lean_ctor_get(x_2, 2); +x_6 = lean_expr_eqv(x_4, x_1); +if (x_6 == 0) +{ +x_2 = x_5; +goto _start; +} +else +{ +uint8_t x_8; +x_8 = 1; +return x_8; +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_AssocList_foldlM___at___private_Lean_Meta_Match_MatchEqs_0__Lean_MVarId_contradictionQuick___spec__6(lean_object* x_1, lean_object* x_2) { +_start: +{ +if (lean_obj_tag(x_2) == 0) +{ +return x_1; +} +else +{ +uint8_t x_3; +x_3 = !lean_is_exclusive(x_2); +if (x_3 == 0) +{ +lean_object* x_4; lean_object* x_5; lean_object* x_6; uint64_t x_7; size_t x_8; lean_object* x_9; lean_object* x_10; +x_4 = lean_ctor_get(x_2, 0); +x_5 = lean_ctor_get(x_2, 2); +x_6 = lean_array_get_size(x_1); +x_7 = l_Lean_Expr_hash(x_4); +x_8 = lean_hashmap_mk_idx(x_6, x_7); +x_9 = lean_array_uget(x_1, x_8); +lean_ctor_set(x_2, 2, x_9); +x_10 = lean_array_uset(x_1, x_8, x_2); +x_1 = x_10; +x_2 = x_5; +goto _start; +} +else +{ +lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; uint64_t x_16; size_t x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; +x_12 = lean_ctor_get(x_2, 0); +x_13 = lean_ctor_get(x_2, 1); +x_14 = lean_ctor_get(x_2, 2); +lean_inc(x_14); +lean_inc(x_13); +lean_inc(x_12); +lean_dec(x_2); +x_15 = lean_array_get_size(x_1); +x_16 = l_Lean_Expr_hash(x_12); +x_17 = lean_hashmap_mk_idx(x_15, x_16); +x_18 = lean_array_uget(x_1, x_17); +x_19 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_19, 0, x_12); +lean_ctor_set(x_19, 1, x_13); +lean_ctor_set(x_19, 2, x_18); +x_20 = lean_array_uset(x_1, x_17, x_19); +x_1 = x_20; +x_2 = x_14; +goto _start; +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_HashMapImp_moveEntries___at___private_Lean_Meta_Match_MatchEqs_0__Lean_MVarId_contradictionQuick___spec__5(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +lean_object* x_4; uint8_t x_5; +x_4 = lean_array_get_size(x_2); +x_5 = lean_nat_dec_lt(x_1, x_4); +lean_dec(x_4); +if (x_5 == 0) +{ +lean_dec(x_2); +lean_dec(x_1); +return x_3; +} +else +{ +lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; +x_6 = lean_array_fget(x_2, x_1); +x_7 = lean_box(0); +x_8 = lean_array_fset(x_2, x_1, x_7); +x_9 = l_Lean_AssocList_foldlM___at___private_Lean_Meta_Match_MatchEqs_0__Lean_MVarId_contradictionQuick___spec__6(x_3, x_6); +x_10 = lean_unsigned_to_nat(1u); +x_11 = lean_nat_add(x_1, x_10); +lean_dec(x_1); +x_1 = x_11; +x_2 = x_8; +x_3 = x_9; +goto _start; +} +} +} +LEAN_EXPORT lean_object* l_Lean_HashMapImp_expand___at___private_Lean_Meta_Match_MatchEqs_0__Lean_MVarId_contradictionQuick___spec__4(lean_object* x_1, lean_object* x_2) { +_start: +{ +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; +x_3 = lean_array_get_size(x_2); +x_4 = lean_unsigned_to_nat(2u); +x_5 = lean_nat_mul(x_3, x_4); +lean_dec(x_3); +x_6 = lean_box(0); +x_7 = lean_mk_array(x_5, x_6); +x_8 = lean_unsigned_to_nat(0u); +x_9 = l_Lean_HashMapImp_moveEntries___at___private_Lean_Meta_Match_MatchEqs_0__Lean_MVarId_contradictionQuick___spec__5(x_8, x_2, x_7); +x_10 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_10, 0, x_1); +lean_ctor_set(x_10, 1, x_9); +return x_10; +} +} +LEAN_EXPORT lean_object* l_Lean_AssocList_replace___at___private_Lean_Meta_Match_MatchEqs_0__Lean_MVarId_contradictionQuick___spec__7(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +if (lean_obj_tag(x_3) == 0) +{ +lean_object* x_4; +lean_dec(x_2); +lean_dec(x_1); +x_4 = lean_box(0); +return x_4; +} +else +{ +uint8_t x_5; +x_5 = !lean_is_exclusive(x_3); +if (x_5 == 0) +{ +lean_object* x_6; lean_object* x_7; lean_object* x_8; uint8_t x_9; +x_6 = lean_ctor_get(x_3, 0); +x_7 = lean_ctor_get(x_3, 1); +x_8 = lean_ctor_get(x_3, 2); +x_9 = lean_expr_eqv(x_6, x_1); +if (x_9 == 0) +{ +lean_object* x_10; +x_10 = l_Lean_AssocList_replace___at___private_Lean_Meta_Match_MatchEqs_0__Lean_MVarId_contradictionQuick___spec__7(x_1, x_2, x_8); +lean_ctor_set(x_3, 2, x_10); +return x_3; +} +else +{ +lean_dec(x_7); +lean_dec(x_6); +lean_ctor_set(x_3, 1, x_2); +lean_ctor_set(x_3, 0, x_1); +return x_3; +} +} +else +{ +lean_object* x_11; lean_object* x_12; lean_object* x_13; uint8_t x_14; +x_11 = lean_ctor_get(x_3, 0); +x_12 = lean_ctor_get(x_3, 1); +x_13 = lean_ctor_get(x_3, 2); +lean_inc(x_13); +lean_inc(x_12); +lean_inc(x_11); +lean_dec(x_3); +x_14 = lean_expr_eqv(x_11, x_1); +if (x_14 == 0) +{ +lean_object* x_15; lean_object* x_16; +x_15 = l_Lean_AssocList_replace___at___private_Lean_Meta_Match_MatchEqs_0__Lean_MVarId_contradictionQuick___spec__7(x_1, x_2, x_13); +x_16 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_16, 0, x_11); +lean_ctor_set(x_16, 1, x_12); +lean_ctor_set(x_16, 2, x_15); +return x_16; +} +else +{ +lean_object* x_17; +lean_dec(x_12); +lean_dec(x_11); +x_17 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_17, 0, x_1); +lean_ctor_set(x_17, 1, x_2); +lean_ctor_set(x_17, 2, x_13); +return x_17; +} +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_HashMap_insert___at___private_Lean_Meta_Match_MatchEqs_0__Lean_MVarId_contradictionQuick___spec__2(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +uint8_t x_4; +x_4 = !lean_is_exclusive(x_1); +if (x_4 == 0) +{ +lean_object* x_5; lean_object* x_6; lean_object* x_7; uint64_t x_8; size_t x_9; lean_object* x_10; uint8_t x_11; +x_5 = lean_ctor_get(x_1, 0); +x_6 = lean_ctor_get(x_1, 1); +x_7 = lean_array_get_size(x_6); +x_8 = l_Lean_Expr_hash(x_2); +lean_inc(x_7); +x_9 = lean_hashmap_mk_idx(x_7, x_8); +x_10 = lean_array_uget(x_6, x_9); +x_11 = l_Lean_AssocList_contains___at___private_Lean_Meta_Match_MatchEqs_0__Lean_MVarId_contradictionQuick___spec__3(x_2, x_10); +if (x_11 == 0) +{ +lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; uint8_t x_17; +x_12 = lean_unsigned_to_nat(1u); +x_13 = lean_nat_add(x_5, x_12); +lean_dec(x_5); +x_14 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_14, 0, x_2); +lean_ctor_set(x_14, 1, x_3); +lean_ctor_set(x_14, 2, x_10); +x_15 = lean_array_uset(x_6, x_9, x_14); +x_16 = l___private_Lean_Data_HashMap_0__Lean_numBucketsForCapacity(x_13); +x_17 = lean_nat_dec_le(x_16, x_7); +lean_dec(x_7); +lean_dec(x_16); +if (x_17 == 0) +{ +lean_object* x_18; +lean_free_object(x_1); +x_18 = l_Lean_HashMapImp_expand___at___private_Lean_Meta_Match_MatchEqs_0__Lean_MVarId_contradictionQuick___spec__4(x_13, x_15); +return x_18; +} +else +{ +lean_ctor_set(x_1, 1, x_15); +lean_ctor_set(x_1, 0, x_13); +return x_1; +} +} +else +{ +lean_object* x_19; lean_object* x_20; +lean_dec(x_7); +x_19 = l_Lean_AssocList_replace___at___private_Lean_Meta_Match_MatchEqs_0__Lean_MVarId_contradictionQuick___spec__7(x_2, x_3, x_10); +x_20 = lean_array_uset(x_6, x_9, x_19); +lean_ctor_set(x_1, 1, x_20); +return x_1; +} +} +else +{ +lean_object* x_21; lean_object* x_22; lean_object* x_23; uint64_t x_24; size_t x_25; lean_object* x_26; uint8_t x_27; +x_21 = lean_ctor_get(x_1, 0); +x_22 = lean_ctor_get(x_1, 1); +lean_inc(x_22); +lean_inc(x_21); +lean_dec(x_1); +x_23 = lean_array_get_size(x_22); +x_24 = l_Lean_Expr_hash(x_2); +lean_inc(x_23); +x_25 = lean_hashmap_mk_idx(x_23, x_24); +x_26 = lean_array_uget(x_22, x_25); +x_27 = l_Lean_AssocList_contains___at___private_Lean_Meta_Match_MatchEqs_0__Lean_MVarId_contradictionQuick___spec__3(x_2, x_26); +if (x_27 == 0) +{ +lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; uint8_t x_33; +x_28 = lean_unsigned_to_nat(1u); +x_29 = lean_nat_add(x_21, x_28); +lean_dec(x_21); +x_30 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_30, 0, x_2); +lean_ctor_set(x_30, 1, x_3); +lean_ctor_set(x_30, 2, x_26); +x_31 = lean_array_uset(x_22, x_25, x_30); +x_32 = l___private_Lean_Data_HashMap_0__Lean_numBucketsForCapacity(x_29); +x_33 = lean_nat_dec_le(x_32, x_23); +lean_dec(x_23); +lean_dec(x_32); +if (x_33 == 0) +{ +lean_object* x_34; +x_34 = l_Lean_HashMapImp_expand___at___private_Lean_Meta_Match_MatchEqs_0__Lean_MVarId_contradictionQuick___spec__4(x_29, x_31); +return x_34; +} +else +{ +lean_object* x_35; +x_35 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_35, 0, x_29); +lean_ctor_set(x_35, 1, x_31); +return x_35; +} +} +else +{ +lean_object* x_36; lean_object* x_37; lean_object* x_38; +lean_dec(x_23); +x_36 = l_Lean_AssocList_replace___at___private_Lean_Meta_Match_MatchEqs_0__Lean_MVarId_contradictionQuick___spec__7(x_2, x_3, x_26); +x_37 = lean_array_uset(x_22, x_25, x_36); +x_38 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_38, 0, x_21); +lean_ctor_set(x_38, 1, x_37); +return x_38; +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_AssocList_find_x3f___at___private_Lean_Meta_Match_MatchEqs_0__Lean_MVarId_contradictionQuick___spec__9(lean_object* x_1, lean_object* x_2) { +_start: +{ +if (lean_obj_tag(x_2) == 0) +{ +lean_object* x_3; +x_3 = lean_box(0); +return x_3; +} +else +{ +lean_object* x_4; lean_object* x_5; lean_object* x_6; uint8_t x_7; +x_4 = lean_ctor_get(x_2, 0); +x_5 = lean_ctor_get(x_2, 1); +x_6 = lean_ctor_get(x_2, 2); +x_7 = lean_expr_eqv(x_4, x_1); +if (x_7 == 0) +{ +x_2 = x_6; +goto _start; +} +else +{ +lean_object* x_9; +lean_inc(x_5); +x_9 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_9, 0, x_5); +return x_9; +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_HashMapImp_find_x3f___at___private_Lean_Meta_Match_MatchEqs_0__Lean_MVarId_contradictionQuick___spec__8(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; lean_object* x_4; uint64_t x_5; size_t x_6; lean_object* x_7; lean_object* x_8; +x_3 = lean_ctor_get(x_1, 1); +lean_inc(x_3); +lean_dec(x_1); +x_4 = lean_array_get_size(x_3); +x_5 = l_Lean_Expr_hash(x_2); +x_6 = lean_hashmap_mk_idx(x_4, x_5); +x_7 = lean_array_uget(x_3, x_6); +lean_dec(x_3); +x_8 = l_Lean_AssocList_find_x3f___at___private_Lean_Meta_Match_MatchEqs_0__Lean_MVarId_contradictionQuick___spec__9(x_2, x_7); +lean_dec(x_7); +lean_dec(x_2); +return x_8; +} +} +LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Meta_Match_MatchEqs_0__Lean_MVarId_contradictionQuick___spec__12(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, lean_object* x_11, lean_object* x_12, lean_object* x_13) { +_start: +{ +uint8_t x_14; +x_14 = lean_usize_dec_lt(x_7, x_6); +if (x_14 == 0) +{ +lean_object* x_15; +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +x_15 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_15, 0, x_8); +lean_ctor_set(x_15, 1, x_13); +return x_15; +} +else +{ +lean_object* x_16; uint8_t x_17; +x_16 = lean_array_uget(x_5, x_7); +x_17 = !lean_is_exclusive(x_8); +if (x_17 == 0) +{ +lean_object* x_18; lean_object* x_19; lean_object* x_20; +x_18 = lean_ctor_get(x_8, 1); +x_19 = lean_ctor_get(x_8, 0); +lean_dec(x_19); +lean_inc(x_12); +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_18); +lean_inc(x_3); +lean_inc(x_2); +lean_inc(x_1); +x_20 = l_Lean_PersistentArray_forInAux___at___private_Lean_Meta_Match_MatchEqs_0__Lean_MVarId_contradictionQuick___spec__11(x_1, x_2, x_3, x_16, x_18, x_9, x_10, x_11, x_12, x_13); +if (lean_obj_tag(x_20) == 0) +{ +lean_object* x_21; +x_21 = lean_ctor_get(x_20, 0); +lean_inc(x_21); +if (lean_obj_tag(x_21) == 0) +{ +uint8_t x_22; +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +x_22 = !lean_is_exclusive(x_20); +if (x_22 == 0) +{ +lean_object* x_23; lean_object* x_24; +x_23 = lean_ctor_get(x_20, 0); +lean_dec(x_23); +x_24 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_24, 0, x_21); +lean_ctor_set(x_8, 0, x_24); +lean_ctor_set(x_20, 0, x_8); +return x_20; +} +else +{ +lean_object* x_25; lean_object* x_26; lean_object* x_27; +x_25 = lean_ctor_get(x_20, 1); +lean_inc(x_25); +lean_dec(x_20); +x_26 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_26, 0, x_21); +lean_ctor_set(x_8, 0, x_26); +x_27 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_27, 0, x_8); +lean_ctor_set(x_27, 1, x_25); +return x_27; +} +} +else +{ +lean_object* x_28; lean_object* x_29; size_t x_30; size_t x_31; +lean_dec(x_18); +x_28 = lean_ctor_get(x_20, 1); +lean_inc(x_28); +lean_dec(x_20); +x_29 = lean_ctor_get(x_21, 0); +lean_inc(x_29); +lean_dec(x_21); +lean_inc(x_4); +lean_ctor_set(x_8, 1, x_29); +lean_ctor_set(x_8, 0, x_4); +x_30 = 1; +x_31 = lean_usize_add(x_7, x_30); +x_7 = x_31; +x_13 = x_28; +goto _start; +} +} +else +{ +uint8_t x_33; +lean_free_object(x_8); +lean_dec(x_18); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +x_33 = !lean_is_exclusive(x_20); +if (x_33 == 0) +{ +return x_20; +} +else +{ +lean_object* x_34; lean_object* x_35; lean_object* x_36; +x_34 = lean_ctor_get(x_20, 0); +x_35 = lean_ctor_get(x_20, 1); +lean_inc(x_35); +lean_inc(x_34); +lean_dec(x_20); +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_8, 1); +lean_inc(x_37); +lean_dec(x_8); +lean_inc(x_12); +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_37); +lean_inc(x_3); +lean_inc(x_2); +lean_inc(x_1); +x_38 = l_Lean_PersistentArray_forInAux___at___private_Lean_Meta_Match_MatchEqs_0__Lean_MVarId_contradictionQuick___spec__11(x_1, x_2, x_3, x_16, x_37, x_9, x_10, x_11, x_12, x_13); +if (lean_obj_tag(x_38) == 0) +{ +lean_object* x_39; +x_39 = lean_ctor_get(x_38, 0); +lean_inc(x_39); +if (lean_obj_tag(x_39) == 0) +{ +lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +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_alloc_ctor(0, 2, 0); +lean_ctor_set(x_43, 0, x_42); +lean_ctor_set(x_43, 1, x_37); +if (lean_is_scalar(x_41)) { + x_44 = lean_alloc_ctor(0, 2, 0); +} else { + x_44 = x_41; +} +lean_ctor_set(x_44, 0, x_43); +lean_ctor_set(x_44, 1, x_40); +return x_44; +} +else +{ +lean_object* x_45; lean_object* x_46; lean_object* x_47; size_t x_48; size_t x_49; +lean_dec(x_37); +x_45 = lean_ctor_get(x_38, 1); +lean_inc(x_45); +lean_dec(x_38); +x_46 = lean_ctor_get(x_39, 0); +lean_inc(x_46); +lean_dec(x_39); +lean_inc(x_4); +x_47 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_47, 0, x_4); +lean_ctor_set(x_47, 1, x_46); +x_48 = 1; +x_49 = lean_usize_add(x_7, x_48); +x_7 = x_49; +x_8 = x_47; +x_13 = x_45; +goto _start; +} +} +else +{ +lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; +lean_dec(x_37); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +x_51 = lean_ctor_get(x_38, 0); +lean_inc(x_51); +x_52 = lean_ctor_get(x_38, 1); +lean_inc(x_52); +if (lean_is_exclusive(x_38)) { + lean_ctor_release(x_38, 0); + lean_ctor_release(x_38, 1); + x_53 = x_38; +} else { + lean_dec_ref(x_38); + x_53 = lean_box(0); +} +if (lean_is_scalar(x_53)) { + x_54 = lean_alloc_ctor(1, 2, 0); +} else { + x_54 = x_53; +} +lean_ctor_set(x_54, 0, x_51); +lean_ctor_set(x_54, 1, x_52); +return x_54; +} +} +} +} +} +LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Meta_Match_MatchEqs_0__Lean_MVarId_contradictionQuick___spec__13___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) { +_start: +{ +lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; +x_10 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_10, 0, x_2); +lean_ctor_set(x_10, 1, x_3); +x_11 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_11, 0, x_1); +lean_ctor_set(x_11, 1, x_10); +x_12 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_12, 0, x_11); +x_13 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_13, 0, x_12); +lean_ctor_set(x_13, 1, x_9); +return x_13; +} +} +LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Meta_Match_MatchEqs_0__Lean_MVarId_contradictionQuick___spec__13___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) { +_start: +{ +lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; +x_12 = l_Lean_LocalDecl_fvarId(x_1); +x_13 = l_Lean_HashMap_insert___at___private_Lean_Meta_Match_MatchEqs_0__Lean_MVarId_contradictionQuick___spec__2(x_5, x_2, x_12); +x_14 = lean_box(0); +x_15 = lean_apply_8(x_3, x_4, x_13, x_14, x_7, x_8, x_9, x_10, x_11); +return x_15; +} +} +static lean_object* _init_l_Array_forInUnsafe_loop___at___private_Lean_Meta_Match_MatchEqs_0__Lean_MVarId_contradictionQuick___spec__13___lambda__3___closed__1() { +_start: +{ +uint8_t x_1; lean_object* x_2; lean_object* x_3; +x_1 = 1; +x_2 = lean_box(x_1); +x_3 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_3, 0, x_2); +return x_3; +} +} +LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Meta_Match_MatchEqs_0__Lean_MVarId_contradictionQuick___spec__13___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_13; +lean_dec(x_7); +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_1); +x_13 = l_Lean_Meta_isProp(x_1, x_8, x_9, x_10, x_11, x_12); +if (lean_obj_tag(x_13) == 0) +{ +lean_object* x_14; uint8_t x_15; +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; lean_object* x_17; lean_object* x_18; +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_1); +x_16 = lean_ctor_get(x_13, 1); +lean_inc(x_16); +lean_dec(x_13); +x_17 = lean_box(0); +x_18 = lean_apply_8(x_2, x_5, x_6, x_17, x_8, x_9, x_10, x_11, x_16); +return x_18; +} +else +{ +lean_object* x_19; lean_object* x_20; +x_19 = lean_ctor_get(x_13, 1); +lean_inc(x_19); +lean_dec(x_13); +lean_inc(x_1); +lean_inc(x_5); +x_20 = l_Lean_HashMapImp_find_x3f___at___private_Lean_Meta_Match_MatchEqs_0__Lean_MVarId_contradictionQuick___spec__8(x_5, x_1); +if (lean_obj_tag(x_20) == 0) +{ +lean_object* x_21; lean_object* x_22; +lean_dec(x_4); +x_21 = lean_box(0); +x_22 = l_Array_forInUnsafe_loop___at___private_Lean_Meta_Match_MatchEqs_0__Lean_MVarId_contradictionQuick___spec__13___lambda__2(x_3, x_1, x_2, x_5, x_6, x_21, x_8, x_9, x_10, x_11, x_19); +lean_dec(x_3); +return x_22; +} +else +{ +lean_object* x_23; lean_object* x_24; +lean_dec(x_2); +lean_dec(x_1); +x_23 = lean_ctor_get(x_20, 0); +lean_inc(x_23); +lean_dec(x_20); +lean_inc(x_4); +x_24 = l_Lean_MVarId_getType(x_4, x_8, x_9, x_10, x_11, x_19); +if (lean_obj_tag(x_24) == 0) +{ +lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; +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_LocalDecl_toExpr(x_3); +lean_dec(x_3); +x_28 = l_Lean_Expr_fvar___override(x_23); +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +x_29 = l_Lean_Meta_mkAbsurd(x_25, x_27, x_28, x_8, x_9, x_10, x_11, x_26); +if (lean_obj_tag(x_29) == 0) +{ +lean_object* x_30; lean_object* x_31; lean_object* x_32; uint8_t x_33; +x_30 = lean_ctor_get(x_29, 0); +lean_inc(x_30); +x_31 = lean_ctor_get(x_29, 1); +lean_inc(x_31); +lean_dec(x_29); +x_32 = l_Lean_MVarId_assign___at_Lean_Meta_getLevel___spec__1(x_4, x_30, x_8, x_9, x_10, x_11, x_31); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +x_33 = !lean_is_exclusive(x_32); +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_32, 0); +lean_dec(x_34); +x_35 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_35, 0, x_5); +lean_ctor_set(x_35, 1, x_6); +x_36 = l_Array_forInUnsafe_loop___at___private_Lean_Meta_Match_MatchEqs_0__Lean_MVarId_contradictionQuick___spec__13___lambda__3___closed__1; +x_37 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_37, 0, x_36); +lean_ctor_set(x_37, 1, x_35); +x_38 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_38, 0, x_37); +lean_ctor_set(x_32, 0, x_38); +return x_32; +} +else +{ +lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; +x_39 = lean_ctor_get(x_32, 1); +lean_inc(x_39); +lean_dec(x_32); +x_40 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_40, 0, x_5); +lean_ctor_set(x_40, 1, x_6); +x_41 = l_Array_forInUnsafe_loop___at___private_Lean_Meta_Match_MatchEqs_0__Lean_MVarId_contradictionQuick___spec__13___lambda__3___closed__1; +x_42 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_42, 0, x_41); +lean_ctor_set(x_42, 1, x_40); +x_43 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_43, 0, x_42); +x_44 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_44, 0, x_43); +lean_ctor_set(x_44, 1, x_39); +return x_44; +} +} +else +{ +uint8_t x_45; +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +x_45 = !lean_is_exclusive(x_29); +if (x_45 == 0) +{ +return x_29; +} +else +{ +lean_object* x_46; lean_object* x_47; lean_object* x_48; +x_46 = lean_ctor_get(x_29, 0); +x_47 = lean_ctor_get(x_29, 1); +lean_inc(x_47); +lean_inc(x_46); +lean_dec(x_29); +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 +{ +uint8_t x_49; +lean_dec(x_23); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +x_49 = !lean_is_exclusive(x_24); +if (x_49 == 0) +{ +return x_24; +} +else +{ +lean_object* x_50; lean_object* x_51; lean_object* x_52; +x_50 = lean_ctor_get(x_24, 0); +x_51 = lean_ctor_get(x_24, 1); +lean_inc(x_51); +lean_inc(x_50); +lean_dec(x_24); +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 +{ +uint8_t x_53; +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +x_53 = !lean_is_exclusive(x_13); +if (x_53 == 0) +{ +return x_13; +} +else +{ +lean_object* x_54; lean_object* x_55; lean_object* x_56; +x_54 = lean_ctor_get(x_13, 0); +x_55 = lean_ctor_get(x_13, 1); +lean_inc(x_55); +lean_inc(x_54); +lean_dec(x_13); +x_56 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_56, 0, x_54); +lean_ctor_set(x_56, 1, x_55); +return x_56; +} +} +} +} +LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Meta_Match_MatchEqs_0__Lean_MVarId_contradictionQuick___spec__13___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) { +_start: +{ +lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; +x_12 = l_Lean_LocalDecl_fvarId(x_1); +x_13 = l_Lean_HashMap_insert___at___private_Lean_Meta_Match_MatchEqs_0__Lean_MVarId_contradictionQuick___spec__2(x_5, x_2, x_12); +x_14 = lean_box(0); +x_15 = lean_apply_8(x_3, x_13, x_4, x_14, x_7, x_8, x_9, x_10, x_11); +return x_15; +} +} +LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Meta_Match_MatchEqs_0__Lean_MVarId_contradictionQuick___spec__13(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, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +_start: +{ +uint8_t x_13; +x_13 = lean_usize_dec_lt(x_6, x_5); +if (x_13 == 0) +{ +lean_object* x_14; +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +x_14 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_14, 0, x_7); +lean_ctor_set(x_14, 1, x_12); +return x_14; +} +else +{ +lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; +x_15 = lean_array_uget(x_4, x_6); +x_25 = lean_ctor_get(x_7, 1); +lean_inc(x_25); +if (lean_is_exclusive(x_7)) { + lean_ctor_release(x_7, 0); + lean_ctor_release(x_7, 1); + x_26 = x_7; +} else { + lean_dec_ref(x_7); + x_26 = lean_box(0); +} +if (lean_obj_tag(x_15) == 0) +{ +lean_object* x_39; +lean_inc(x_25); +x_39 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_39, 0, x_25); +x_27 = x_39; +x_28 = x_12; +goto block_38; +} +else +{ +lean_object* x_40; lean_object* x_41; uint8_t x_42; +x_40 = lean_ctor_get(x_25, 1); +lean_inc(x_40); +x_41 = lean_ctor_get(x_15, 0); +lean_inc(x_41); +lean_dec(x_15); +x_42 = !lean_is_exclusive(x_40); +if (x_42 == 0) +{ +lean_object* x_43; lean_object* x_44; lean_object* x_45; uint8_t x_46; +x_43 = lean_ctor_get(x_40, 0); +x_44 = lean_ctor_get(x_40, 1); +lean_inc(x_2); +x_45 = lean_alloc_closure((void*)(l_Array_forInUnsafe_loop___at___private_Lean_Meta_Match_MatchEqs_0__Lean_MVarId_contradictionQuick___spec__13___lambda__1___boxed), 9, 1); +lean_closure_set(x_45, 0, x_2); +x_46 = l_Lean_LocalDecl_isImplementationDetail(x_41); +if (x_46 == 0) +{ +lean_object* x_47; lean_object* x_48; +x_47 = l_Lean_LocalDecl_type(x_41); +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_47); +x_48 = l_Lean_Meta_matchNot_x3f(x_47, x_8, x_9, x_10, x_11, x_12); +if (lean_obj_tag(x_48) == 0) +{ +lean_object* x_49; +x_49 = lean_ctor_get(x_48, 0); +lean_inc(x_49); +if (lean_obj_tag(x_49) == 0) +{ +lean_object* x_50; lean_object* x_51; lean_object* x_52; +lean_free_object(x_40); +x_50 = lean_ctor_get(x_48, 1); +lean_inc(x_50); +lean_dec(x_48); +x_51 = lean_box(0); +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_1); +x_52 = l_Array_forInUnsafe_loop___at___private_Lean_Meta_Match_MatchEqs_0__Lean_MVarId_contradictionQuick___spec__13___lambda__3(x_47, x_45, x_41, x_1, x_43, x_44, x_51, x_8, x_9, x_10, x_11, x_50); +if (lean_obj_tag(x_52) == 0) +{ +lean_object* x_53; lean_object* x_54; +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_27 = x_53; +x_28 = x_54; +goto block_38; +} +else +{ +uint8_t x_55; +lean_dec(x_26); +lean_dec(x_25); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +x_55 = !lean_is_exclusive(x_52); +if (x_55 == 0) +{ +return x_52; +} +else +{ +lean_object* x_56; lean_object* x_57; lean_object* x_58; +x_56 = lean_ctor_get(x_52, 0); +x_57 = lean_ctor_get(x_52, 1); +lean_inc(x_57); +lean_inc(x_56); +lean_dec(x_52); +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; +} +} +} +else +{ +lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; +x_59 = lean_ctor_get(x_48, 1); +lean_inc(x_59); +lean_dec(x_48); +x_60 = lean_ctor_get(x_49, 0); +lean_inc(x_60); +lean_dec(x_49); +lean_inc(x_1); +lean_inc(x_41); +x_61 = lean_alloc_closure((void*)(l_Array_forInUnsafe_loop___at___private_Lean_Meta_Match_MatchEqs_0__Lean_MVarId_contradictionQuick___spec__13___lambda__3), 12, 4); +lean_closure_set(x_61, 0, x_47); +lean_closure_set(x_61, 1, x_45); +lean_closure_set(x_61, 2, x_41); +lean_closure_set(x_61, 3, x_1); +lean_inc(x_60); +lean_inc(x_44); +x_62 = l_Lean_HashMapImp_find_x3f___at___private_Lean_Meta_Match_MatchEqs_0__Lean_MVarId_contradictionQuick___spec__8(x_44, x_60); +if (lean_obj_tag(x_62) == 0) +{ +lean_object* x_63; lean_object* x_64; +lean_free_object(x_40); +x_63 = lean_box(0); +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +x_64 = l_Array_forInUnsafe_loop___at___private_Lean_Meta_Match_MatchEqs_0__Lean_MVarId_contradictionQuick___spec__13___lambda__4(x_41, x_60, x_61, x_44, x_43, x_63, x_8, x_9, x_10, x_11, x_59); +lean_dec(x_41); +if (lean_obj_tag(x_64) == 0) +{ +lean_object* x_65; lean_object* x_66; +x_65 = lean_ctor_get(x_64, 0); +lean_inc(x_65); +x_66 = lean_ctor_get(x_64, 1); +lean_inc(x_66); +lean_dec(x_64); +x_27 = x_65; +x_28 = x_66; +goto block_38; +} +else +{ +uint8_t x_67; +lean_dec(x_26); +lean_dec(x_25); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +x_67 = !lean_is_exclusive(x_64); +if (x_67 == 0) +{ +return x_64; +} +else +{ +lean_object* x_68; lean_object* x_69; lean_object* x_70; +x_68 = lean_ctor_get(x_64, 0); +x_69 = lean_ctor_get(x_64, 1); +lean_inc(x_69); +lean_inc(x_68); +lean_dec(x_64); +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 +{ +lean_object* x_71; lean_object* x_72; +lean_dec(x_61); +lean_dec(x_60); +x_71 = lean_ctor_get(x_62, 0); +lean_inc(x_71); +lean_dec(x_62); +lean_inc(x_1); +x_72 = l_Lean_MVarId_getType(x_1, x_8, x_9, x_10, x_11, x_59); +if (lean_obj_tag(x_72) == 0) +{ +lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; +x_73 = lean_ctor_get(x_72, 0); +lean_inc(x_73); +x_74 = lean_ctor_get(x_72, 1); +lean_inc(x_74); +lean_dec(x_72); +x_75 = l_Lean_Expr_fvar___override(x_71); +x_76 = l_Lean_LocalDecl_toExpr(x_41); +lean_dec(x_41); +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +x_77 = l_Lean_Meta_mkAbsurd(x_73, x_75, x_76, x_8, x_9, x_10, x_11, x_74); +if (lean_obj_tag(x_77) == 0) +{ +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; +x_78 = lean_ctor_get(x_77, 0); +lean_inc(x_78); +x_79 = lean_ctor_get(x_77, 1); +lean_inc(x_79); +lean_dec(x_77); +lean_inc(x_1); +x_80 = l_Lean_MVarId_assign___at_Lean_Meta_getLevel___spec__1(x_1, x_78, x_8, x_9, x_10, x_11, x_79); +x_81 = lean_ctor_get(x_80, 1); +lean_inc(x_81); +lean_dec(x_80); +x_82 = l_Array_forInUnsafe_loop___at___private_Lean_Meta_Match_MatchEqs_0__Lean_MVarId_contradictionQuick___spec__13___lambda__3___closed__1; +x_83 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_83, 0, x_82); +lean_ctor_set(x_83, 1, x_40); +x_84 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_84, 0, x_83); +x_27 = x_84; +x_28 = x_81; +goto block_38; +} +else +{ +uint8_t x_85; +lean_free_object(x_40); +lean_dec(x_44); +lean_dec(x_43); +lean_dec(x_26); +lean_dec(x_25); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +x_85 = !lean_is_exclusive(x_77); +if (x_85 == 0) +{ +return x_77; +} +else +{ +lean_object* x_86; lean_object* x_87; lean_object* x_88; +x_86 = lean_ctor_get(x_77, 0); +x_87 = lean_ctor_get(x_77, 1); +lean_inc(x_87); +lean_inc(x_86); +lean_dec(x_77); +x_88 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_88, 0, x_86); +lean_ctor_set(x_88, 1, x_87); +return x_88; +} +} +} +else +{ +uint8_t x_89; +lean_dec(x_71); +lean_free_object(x_40); +lean_dec(x_44); +lean_dec(x_43); +lean_dec(x_41); +lean_dec(x_26); +lean_dec(x_25); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +x_89 = !lean_is_exclusive(x_72); +if (x_89 == 0) +{ +return x_72; +} +else +{ +lean_object* x_90; lean_object* x_91; lean_object* x_92; +x_90 = lean_ctor_get(x_72, 0); +x_91 = lean_ctor_get(x_72, 1); +lean_inc(x_91); +lean_inc(x_90); +lean_dec(x_72); +x_92 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_92, 0, x_90); +lean_ctor_set(x_92, 1, x_91); +return x_92; +} +} +} +} +} +else +{ +uint8_t x_93; +lean_dec(x_47); +lean_dec(x_45); +lean_free_object(x_40); +lean_dec(x_44); +lean_dec(x_43); +lean_dec(x_41); +lean_dec(x_26); +lean_dec(x_25); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +x_93 = !lean_is_exclusive(x_48); +if (x_93 == 0) +{ +return x_48; +} +else +{ +lean_object* x_94; lean_object* x_95; lean_object* x_96; +x_94 = lean_ctor_get(x_48, 0); +x_95 = lean_ctor_get(x_48, 1); +lean_inc(x_95); +lean_inc(x_94); +lean_dec(x_48); +x_96 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_96, 0, x_94); +lean_ctor_set(x_96, 1, x_95); +return x_96; +} +} +} +else +{ +lean_object* x_97; lean_object* x_98; lean_object* x_99; lean_object* x_100; +lean_dec(x_45); +lean_free_object(x_40); +lean_dec(x_41); +x_97 = lean_box(0); +lean_inc(x_2); +x_98 = l_Array_forInUnsafe_loop___at___private_Lean_Meta_Match_MatchEqs_0__Lean_MVarId_contradictionQuick___spec__13___lambda__1(x_2, x_43, x_44, x_97, x_8, x_9, x_10, x_11, x_12); +x_99 = lean_ctor_get(x_98, 0); +lean_inc(x_99); +x_100 = lean_ctor_get(x_98, 1); +lean_inc(x_100); +lean_dec(x_98); +x_27 = x_99; +x_28 = x_100; +goto block_38; +} +} +else +{ +lean_object* x_101; lean_object* x_102; lean_object* x_103; uint8_t x_104; +x_101 = lean_ctor_get(x_40, 0); +x_102 = lean_ctor_get(x_40, 1); +lean_inc(x_102); +lean_inc(x_101); +lean_dec(x_40); +lean_inc(x_2); +x_103 = lean_alloc_closure((void*)(l_Array_forInUnsafe_loop___at___private_Lean_Meta_Match_MatchEqs_0__Lean_MVarId_contradictionQuick___spec__13___lambda__1___boxed), 9, 1); +lean_closure_set(x_103, 0, x_2); +x_104 = l_Lean_LocalDecl_isImplementationDetail(x_41); +if (x_104 == 0) +{ +lean_object* x_105; lean_object* x_106; +x_105 = l_Lean_LocalDecl_type(x_41); +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_105); +x_106 = l_Lean_Meta_matchNot_x3f(x_105, x_8, x_9, x_10, x_11, x_12); +if (lean_obj_tag(x_106) == 0) +{ +lean_object* x_107; +x_107 = lean_ctor_get(x_106, 0); +lean_inc(x_107); +if (lean_obj_tag(x_107) == 0) +{ +lean_object* x_108; lean_object* x_109; lean_object* x_110; +x_108 = lean_ctor_get(x_106, 1); +lean_inc(x_108); +lean_dec(x_106); +x_109 = lean_box(0); +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_1); +x_110 = l_Array_forInUnsafe_loop___at___private_Lean_Meta_Match_MatchEqs_0__Lean_MVarId_contradictionQuick___spec__13___lambda__3(x_105, x_103, x_41, x_1, x_101, x_102, x_109, x_8, x_9, x_10, x_11, x_108); +if (lean_obj_tag(x_110) == 0) +{ +lean_object* x_111; lean_object* x_112; +x_111 = lean_ctor_get(x_110, 0); +lean_inc(x_111); +x_112 = lean_ctor_get(x_110, 1); +lean_inc(x_112); +lean_dec(x_110); +x_27 = x_111; +x_28 = x_112; +goto block_38; +} +else +{ +lean_object* x_113; lean_object* x_114; lean_object* x_115; lean_object* x_116; +lean_dec(x_26); +lean_dec(x_25); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +x_113 = lean_ctor_get(x_110, 0); +lean_inc(x_113); +x_114 = lean_ctor_get(x_110, 1); +lean_inc(x_114); +if (lean_is_exclusive(x_110)) { + lean_ctor_release(x_110, 0); + lean_ctor_release(x_110, 1); + x_115 = x_110; +} else { + lean_dec_ref(x_110); + x_115 = lean_box(0); +} +if (lean_is_scalar(x_115)) { + x_116 = lean_alloc_ctor(1, 2, 0); +} else { + x_116 = x_115; +} +lean_ctor_set(x_116, 0, x_113); +lean_ctor_set(x_116, 1, x_114); +return x_116; +} +} +else +{ +lean_object* x_117; lean_object* x_118; lean_object* x_119; lean_object* x_120; +x_117 = lean_ctor_get(x_106, 1); +lean_inc(x_117); +lean_dec(x_106); +x_118 = lean_ctor_get(x_107, 0); +lean_inc(x_118); +lean_dec(x_107); +lean_inc(x_1); +lean_inc(x_41); +x_119 = lean_alloc_closure((void*)(l_Array_forInUnsafe_loop___at___private_Lean_Meta_Match_MatchEqs_0__Lean_MVarId_contradictionQuick___spec__13___lambda__3), 12, 4); +lean_closure_set(x_119, 0, x_105); +lean_closure_set(x_119, 1, x_103); +lean_closure_set(x_119, 2, x_41); +lean_closure_set(x_119, 3, x_1); +lean_inc(x_118); +lean_inc(x_102); +x_120 = l_Lean_HashMapImp_find_x3f___at___private_Lean_Meta_Match_MatchEqs_0__Lean_MVarId_contradictionQuick___spec__8(x_102, x_118); +if (lean_obj_tag(x_120) == 0) +{ +lean_object* x_121; lean_object* x_122; +x_121 = lean_box(0); +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +x_122 = l_Array_forInUnsafe_loop___at___private_Lean_Meta_Match_MatchEqs_0__Lean_MVarId_contradictionQuick___spec__13___lambda__4(x_41, x_118, x_119, x_102, x_101, x_121, x_8, x_9, x_10, x_11, x_117); +lean_dec(x_41); +if (lean_obj_tag(x_122) == 0) +{ +lean_object* x_123; lean_object* x_124; +x_123 = lean_ctor_get(x_122, 0); +lean_inc(x_123); +x_124 = lean_ctor_get(x_122, 1); +lean_inc(x_124); +lean_dec(x_122); +x_27 = x_123; +x_28 = x_124; +goto block_38; +} +else +{ +lean_object* x_125; lean_object* x_126; lean_object* x_127; lean_object* x_128; +lean_dec(x_26); +lean_dec(x_25); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +x_125 = lean_ctor_get(x_122, 0); +lean_inc(x_125); +x_126 = lean_ctor_get(x_122, 1); +lean_inc(x_126); +if (lean_is_exclusive(x_122)) { + lean_ctor_release(x_122, 0); + lean_ctor_release(x_122, 1); + x_127 = x_122; +} else { + lean_dec_ref(x_122); + x_127 = lean_box(0); +} +if (lean_is_scalar(x_127)) { + x_128 = lean_alloc_ctor(1, 2, 0); +} else { + x_128 = x_127; +} +lean_ctor_set(x_128, 0, x_125); +lean_ctor_set(x_128, 1, x_126); +return x_128; +} +} +else +{ +lean_object* x_129; lean_object* x_130; +lean_dec(x_119); +lean_dec(x_118); +x_129 = lean_ctor_get(x_120, 0); +lean_inc(x_129); +lean_dec(x_120); +lean_inc(x_1); +x_130 = l_Lean_MVarId_getType(x_1, x_8, x_9, x_10, x_11, x_117); +if (lean_obj_tag(x_130) == 0) +{ +lean_object* x_131; lean_object* x_132; lean_object* x_133; lean_object* x_134; lean_object* x_135; +x_131 = lean_ctor_get(x_130, 0); +lean_inc(x_131); +x_132 = lean_ctor_get(x_130, 1); +lean_inc(x_132); +lean_dec(x_130); +x_133 = l_Lean_Expr_fvar___override(x_129); +x_134 = l_Lean_LocalDecl_toExpr(x_41); +lean_dec(x_41); +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +x_135 = l_Lean_Meta_mkAbsurd(x_131, x_133, x_134, x_8, x_9, x_10, x_11, x_132); +if (lean_obj_tag(x_135) == 0) +{ +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; +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_1); +x_138 = l_Lean_MVarId_assign___at_Lean_Meta_getLevel___spec__1(x_1, x_136, x_8, x_9, x_10, x_11, x_137); +x_139 = lean_ctor_get(x_138, 1); +lean_inc(x_139); +lean_dec(x_138); +x_140 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_140, 0, x_101); +lean_ctor_set(x_140, 1, x_102); +x_141 = l_Array_forInUnsafe_loop___at___private_Lean_Meta_Match_MatchEqs_0__Lean_MVarId_contradictionQuick___spec__13___lambda__3___closed__1; +x_142 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_142, 0, x_141); +lean_ctor_set(x_142, 1, x_140); +x_143 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_143, 0, x_142); +x_27 = x_143; +x_28 = x_139; +goto block_38; +} +else +{ +lean_object* x_144; lean_object* x_145; lean_object* x_146; lean_object* x_147; +lean_dec(x_102); +lean_dec(x_101); +lean_dec(x_26); +lean_dec(x_25); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +x_144 = lean_ctor_get(x_135, 0); +lean_inc(x_144); +x_145 = lean_ctor_get(x_135, 1); +lean_inc(x_145); +if (lean_is_exclusive(x_135)) { + lean_ctor_release(x_135, 0); + lean_ctor_release(x_135, 1); + x_146 = x_135; +} else { + lean_dec_ref(x_135); + x_146 = lean_box(0); +} +if (lean_is_scalar(x_146)) { + x_147 = lean_alloc_ctor(1, 2, 0); +} else { + x_147 = x_146; +} +lean_ctor_set(x_147, 0, x_144); +lean_ctor_set(x_147, 1, x_145); +return x_147; +} +} +else +{ +lean_object* x_148; lean_object* x_149; lean_object* x_150; lean_object* x_151; +lean_dec(x_129); +lean_dec(x_102); +lean_dec(x_101); +lean_dec(x_41); +lean_dec(x_26); +lean_dec(x_25); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +x_148 = lean_ctor_get(x_130, 0); +lean_inc(x_148); +x_149 = lean_ctor_get(x_130, 1); +lean_inc(x_149); +if (lean_is_exclusive(x_130)) { + lean_ctor_release(x_130, 0); + lean_ctor_release(x_130, 1); + x_150 = x_130; +} else { + lean_dec_ref(x_130); + x_150 = lean_box(0); +} +if (lean_is_scalar(x_150)) { + x_151 = lean_alloc_ctor(1, 2, 0); +} else { + x_151 = x_150; +} +lean_ctor_set(x_151, 0, x_148); +lean_ctor_set(x_151, 1, x_149); +return x_151; +} +} +} +} +else +{ +lean_object* x_152; lean_object* x_153; lean_object* x_154; lean_object* x_155; +lean_dec(x_105); +lean_dec(x_103); +lean_dec(x_102); +lean_dec(x_101); +lean_dec(x_41); +lean_dec(x_26); +lean_dec(x_25); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +x_152 = lean_ctor_get(x_106, 0); +lean_inc(x_152); +x_153 = lean_ctor_get(x_106, 1); +lean_inc(x_153); +if (lean_is_exclusive(x_106)) { + lean_ctor_release(x_106, 0); + lean_ctor_release(x_106, 1); + x_154 = x_106; +} else { + lean_dec_ref(x_106); + x_154 = lean_box(0); +} +if (lean_is_scalar(x_154)) { + x_155 = lean_alloc_ctor(1, 2, 0); +} else { + x_155 = x_154; +} +lean_ctor_set(x_155, 0, x_152); +lean_ctor_set(x_155, 1, x_153); +return x_155; +} +} +else +{ +lean_object* x_156; lean_object* x_157; lean_object* x_158; lean_object* x_159; +lean_dec(x_103); +lean_dec(x_41); +x_156 = lean_box(0); +lean_inc(x_2); +x_157 = l_Array_forInUnsafe_loop___at___private_Lean_Meta_Match_MatchEqs_0__Lean_MVarId_contradictionQuick___spec__13___lambda__1(x_2, x_101, x_102, x_156, x_8, x_9, x_10, x_11, x_12); +x_158 = lean_ctor_get(x_157, 0); +lean_inc(x_158); +x_159 = lean_ctor_get(x_157, 1); +lean_inc(x_159); +lean_dec(x_157); +x_27 = x_158; +x_28 = x_159; +goto block_38; +} +} +} +block_24: +{ +if (lean_obj_tag(x_16) == 0) +{ +lean_object* x_18; lean_object* x_19; +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +x_18 = lean_ctor_get(x_16, 0); +lean_inc(x_18); +lean_dec(x_16); +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_object* x_20; size_t x_21; size_t x_22; +x_20 = lean_ctor_get(x_16, 0); +lean_inc(x_20); +lean_dec(x_16); +x_21 = 1; +x_22 = lean_usize_add(x_6, x_21); +x_6 = x_22; +x_7 = x_20; +x_12 = x_17; +goto _start; +} +} +block_38: +{ +if (lean_obj_tag(x_27) == 0) +{ +lean_object* x_29; lean_object* x_30; lean_object* x_31; +x_29 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_29, 0, x_27); +if (lean_is_scalar(x_26)) { + x_30 = lean_alloc_ctor(0, 2, 0); +} else { + x_30 = x_26; +} +lean_ctor_set(x_30, 0, x_29); +lean_ctor_set(x_30, 1, x_25); +x_31 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_31, 0, x_30); +x_16 = x_31; +x_17 = x_28; +goto block_24; +} +else +{ +uint8_t x_32; +lean_dec(x_25); +x_32 = !lean_is_exclusive(x_27); +if (x_32 == 0) +{ +lean_object* x_33; lean_object* x_34; +x_33 = lean_ctor_get(x_27, 0); +lean_inc(x_3); +if (lean_is_scalar(x_26)) { + x_34 = lean_alloc_ctor(0, 2, 0); +} else { + x_34 = x_26; +} +lean_ctor_set(x_34, 0, x_3); +lean_ctor_set(x_34, 1, x_33); +lean_ctor_set(x_27, 0, x_34); +x_16 = x_27; +x_17 = x_28; +goto block_24; +} +else +{ +lean_object* x_35; lean_object* x_36; lean_object* x_37; +x_35 = lean_ctor_get(x_27, 0); +lean_inc(x_35); +lean_dec(x_27); +lean_inc(x_3); +if (lean_is_scalar(x_26)) { + x_36 = lean_alloc_ctor(0, 2, 0); +} else { + x_36 = x_26; +} +lean_ctor_set(x_36, 0, x_3); +lean_ctor_set(x_36, 1, x_35); +x_37 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_37, 0, x_36); +x_16 = x_37; +x_17 = x_28; +goto block_24; +} +} +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_PersistentArray_forInAux___at___private_Lean_Meta_Match_MatchEqs_0__Lean_MVarId_contradictionQuick___spec__11___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) { +_start: +{ +lean_object* x_8; lean_object* x_9; +x_8 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_8, 0, x_1); +x_9 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_9, 0, x_8); +lean_ctor_set(x_9, 1, x_7); +return x_9; +} +} +LEAN_EXPORT lean_object* l_Lean_PersistentArray_forInAux___at___private_Lean_Meta_Match_MatchEqs_0__Lean_MVarId_contradictionQuick___spec__11(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: +{ +if (lean_obj_tag(x_4) == 0) +{ +lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; size_t x_15; size_t x_16; lean_object* x_17; +x_11 = lean_ctor_get(x_4, 0); +lean_inc(x_11); +lean_dec(x_4); +x_12 = lean_box(0); +x_13 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_13, 0, x_12); +lean_ctor_set(x_13, 1, x_5); +x_14 = lean_array_get_size(x_11); +x_15 = lean_usize_of_nat(x_14); +lean_dec(x_14); +x_16 = 0; +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_6); +x_17 = l_Array_forInUnsafe_loop___at___private_Lean_Meta_Match_MatchEqs_0__Lean_MVarId_contradictionQuick___spec__12(x_1, x_2, x_3, x_12, x_11, x_15, x_16, x_13, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_11); +if (lean_obj_tag(x_17) == 0) +{ +lean_object* x_18; lean_object* x_19; +x_18 = lean_ctor_get(x_17, 0); +lean_inc(x_18); +x_19 = lean_ctor_get(x_18, 0); +lean_inc(x_19); +if (lean_obj_tag(x_19) == 0) +{ +lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; +x_20 = lean_ctor_get(x_17, 1); +lean_inc(x_20); +lean_dec(x_17); +x_21 = lean_ctor_get(x_18, 1); +lean_inc(x_21); +lean_dec(x_18); +x_22 = lean_box(0); +x_23 = l_Lean_PersistentArray_forInAux___at___private_Lean_Meta_Match_MatchEqs_0__Lean_MVarId_contradictionQuick___spec__11___lambda__1(x_21, x_22, x_6, x_7, x_8, x_9, x_20); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +return x_23; +} +else +{ +uint8_t x_24; +lean_dec(x_18); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +x_24 = !lean_is_exclusive(x_17); +if (x_24 == 0) +{ +lean_object* x_25; lean_object* x_26; +x_25 = lean_ctor_get(x_17, 0); +lean_dec(x_25); +x_26 = lean_ctor_get(x_19, 0); +lean_inc(x_26); +lean_dec(x_19); +lean_ctor_set(x_17, 0, x_26); +return x_17; +} +else +{ +lean_object* x_27; lean_object* x_28; lean_object* x_29; +x_27 = lean_ctor_get(x_17, 1); +lean_inc(x_27); +lean_dec(x_17); +x_28 = lean_ctor_get(x_19, 0); +lean_inc(x_28); +lean_dec(x_19); +x_29 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_29, 0, x_28); +lean_ctor_set(x_29, 1, x_27); +return x_29; +} +} +} +else +{ +uint8_t x_30; +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +x_30 = !lean_is_exclusive(x_17); +if (x_30 == 0) +{ +return x_17; +} +else +{ +lean_object* x_31; lean_object* x_32; lean_object* x_33; +x_31 = lean_ctor_get(x_17, 0); +x_32 = lean_ctor_get(x_17, 1); +lean_inc(x_32); +lean_inc(x_31); +lean_dec(x_17); +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; +} +} +} +else +{ +lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; size_t x_38; size_t x_39; lean_object* x_40; +lean_dec(x_3); +x_34 = lean_ctor_get(x_4, 0); +lean_inc(x_34); +lean_dec(x_4); +x_35 = lean_box(0); +x_36 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_36, 0, x_35); +lean_ctor_set(x_36, 1, x_5); +x_37 = lean_array_get_size(x_34); +x_38 = lean_usize_of_nat(x_37); +lean_dec(x_37); +x_39 = 0; +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_6); +x_40 = l_Array_forInUnsafe_loop___at___private_Lean_Meta_Match_MatchEqs_0__Lean_MVarId_contradictionQuick___spec__13(x_1, x_2, x_35, x_34, x_38, x_39, x_36, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_34); +if (lean_obj_tag(x_40) == 0) +{ +lean_object* x_41; lean_object* x_42; +x_41 = lean_ctor_get(x_40, 0); +lean_inc(x_41); +x_42 = lean_ctor_get(x_41, 0); +lean_inc(x_42); +if (lean_obj_tag(x_42) == 0) +{ +lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; +x_43 = lean_ctor_get(x_40, 1); +lean_inc(x_43); +lean_dec(x_40); +x_44 = lean_ctor_get(x_41, 1); +lean_inc(x_44); +lean_dec(x_41); +x_45 = lean_box(0); +x_46 = l_Lean_PersistentArray_forInAux___at___private_Lean_Meta_Match_MatchEqs_0__Lean_MVarId_contradictionQuick___spec__11___lambda__1(x_44, x_45, x_6, x_7, x_8, x_9, x_43); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +return x_46; +} +else +{ +uint8_t x_47; +lean_dec(x_41); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +x_47 = !lean_is_exclusive(x_40); +if (x_47 == 0) +{ +lean_object* x_48; lean_object* x_49; +x_48 = lean_ctor_get(x_40, 0); +lean_dec(x_48); +x_49 = lean_ctor_get(x_42, 0); +lean_inc(x_49); +lean_dec(x_42); +lean_ctor_set(x_40, 0, x_49); +return x_40; +} +else +{ +lean_object* x_50; lean_object* x_51; lean_object* x_52; +x_50 = lean_ctor_get(x_40, 1); +lean_inc(x_50); +lean_dec(x_40); +x_51 = lean_ctor_get(x_42, 0); +lean_inc(x_51); +lean_dec(x_42); +x_52 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_52, 0, x_51); +lean_ctor_set(x_52, 1, x_50); +return x_52; +} +} +} +else +{ +uint8_t x_53; +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +x_53 = !lean_is_exclusive(x_40); +if (x_53 == 0) +{ +return x_40; +} +else +{ +lean_object* x_54; lean_object* x_55; lean_object* x_56; +x_54 = lean_ctor_get(x_40, 0); +x_55 = lean_ctor_get(x_40, 1); +lean_inc(x_55); +lean_inc(x_54); +lean_dec(x_40); +x_56 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_56, 0, x_54); +lean_ctor_set(x_56, 1, x_55); +return x_56; +} +} +} +} +} +LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Meta_Match_MatchEqs_0__Lean_MVarId_contradictionQuick___spec__14(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, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +_start: +{ +uint8_t x_13; +x_13 = lean_usize_dec_lt(x_6, x_5); +if (x_13 == 0) +{ +lean_object* x_14; +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +x_14 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_14, 0, x_7); +lean_ctor_set(x_14, 1, x_12); +return x_14; +} +else +{ +lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; +x_15 = lean_array_uget(x_4, x_6); +x_25 = lean_ctor_get(x_7, 1); +lean_inc(x_25); +if (lean_is_exclusive(x_7)) { + lean_ctor_release(x_7, 0); + lean_ctor_release(x_7, 1); + x_26 = x_7; +} else { + lean_dec_ref(x_7); + x_26 = lean_box(0); +} +if (lean_obj_tag(x_15) == 0) +{ +lean_object* x_44; +lean_inc(x_25); +x_44 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_44, 0, x_25); +x_27 = x_44; +x_28 = x_12; +goto block_43; +} +else +{ +lean_object* x_45; lean_object* x_46; uint8_t x_47; +x_45 = lean_ctor_get(x_25, 1); +lean_inc(x_45); +x_46 = lean_ctor_get(x_15, 0); +lean_inc(x_46); +lean_dec(x_15); +x_47 = !lean_is_exclusive(x_45); +if (x_47 == 0) +{ +lean_object* x_48; lean_object* x_49; lean_object* x_50; uint8_t x_51; +x_48 = lean_ctor_get(x_45, 0); +x_49 = lean_ctor_get(x_45, 1); +lean_inc(x_2); +x_50 = lean_alloc_closure((void*)(l_Array_forInUnsafe_loop___at___private_Lean_Meta_Match_MatchEqs_0__Lean_MVarId_contradictionQuick___spec__13___lambda__1___boxed), 9, 1); +lean_closure_set(x_50, 0, x_2); +x_51 = l_Lean_LocalDecl_isImplementationDetail(x_46); +if (x_51 == 0) +{ +lean_object* x_52; lean_object* x_53; +x_52 = l_Lean_LocalDecl_type(x_46); +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_52); +x_53 = l_Lean_Meta_matchNot_x3f(x_52, x_8, x_9, x_10, x_11, x_12); +if (lean_obj_tag(x_53) == 0) +{ +lean_object* x_54; +x_54 = lean_ctor_get(x_53, 0); +lean_inc(x_54); +if (lean_obj_tag(x_54) == 0) +{ +lean_object* x_55; lean_object* x_56; lean_object* x_57; +lean_free_object(x_45); +x_55 = lean_ctor_get(x_53, 1); +lean_inc(x_55); +lean_dec(x_53); +x_56 = lean_box(0); +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_1); +x_57 = l_Array_forInUnsafe_loop___at___private_Lean_Meta_Match_MatchEqs_0__Lean_MVarId_contradictionQuick___spec__13___lambda__3(x_52, x_50, x_46, x_1, x_48, x_49, x_56, x_8, x_9, x_10, x_11, x_55); +if (lean_obj_tag(x_57) == 0) +{ +lean_object* x_58; lean_object* x_59; +x_58 = lean_ctor_get(x_57, 0); +lean_inc(x_58); +x_59 = lean_ctor_get(x_57, 1); +lean_inc(x_59); +lean_dec(x_57); +x_27 = x_58; +x_28 = x_59; +goto block_43; +} +else +{ +uint8_t x_60; +lean_dec(x_26); +lean_dec(x_25); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +x_60 = !lean_is_exclusive(x_57); +if (x_60 == 0) +{ +return x_57; +} +else +{ +lean_object* x_61; lean_object* x_62; lean_object* x_63; +x_61 = lean_ctor_get(x_57, 0); +x_62 = lean_ctor_get(x_57, 1); +lean_inc(x_62); +lean_inc(x_61); +lean_dec(x_57); +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; +} +} +} +else +{ +lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; +x_64 = lean_ctor_get(x_53, 1); +lean_inc(x_64); +lean_dec(x_53); +x_65 = lean_ctor_get(x_54, 0); +lean_inc(x_65); +lean_dec(x_54); +lean_inc(x_1); +lean_inc(x_46); +x_66 = lean_alloc_closure((void*)(l_Array_forInUnsafe_loop___at___private_Lean_Meta_Match_MatchEqs_0__Lean_MVarId_contradictionQuick___spec__13___lambda__3), 12, 4); +lean_closure_set(x_66, 0, x_52); +lean_closure_set(x_66, 1, x_50); +lean_closure_set(x_66, 2, x_46); +lean_closure_set(x_66, 3, x_1); +lean_inc(x_65); +lean_inc(x_49); +x_67 = l_Lean_HashMapImp_find_x3f___at___private_Lean_Meta_Match_MatchEqs_0__Lean_MVarId_contradictionQuick___spec__8(x_49, x_65); +if (lean_obj_tag(x_67) == 0) +{ +lean_object* x_68; lean_object* x_69; +lean_free_object(x_45); +x_68 = lean_box(0); +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +x_69 = l_Array_forInUnsafe_loop___at___private_Lean_Meta_Match_MatchEqs_0__Lean_MVarId_contradictionQuick___spec__13___lambda__4(x_46, x_65, x_66, x_49, x_48, x_68, x_8, x_9, x_10, x_11, x_64); +lean_dec(x_46); +if (lean_obj_tag(x_69) == 0) +{ +lean_object* x_70; lean_object* x_71; +x_70 = lean_ctor_get(x_69, 0); +lean_inc(x_70); +x_71 = lean_ctor_get(x_69, 1); +lean_inc(x_71); +lean_dec(x_69); +x_27 = x_70; +x_28 = x_71; +goto block_43; +} +else +{ +uint8_t x_72; +lean_dec(x_26); +lean_dec(x_25); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +x_72 = !lean_is_exclusive(x_69); +if (x_72 == 0) +{ +return x_69; +} +else +{ +lean_object* x_73; lean_object* x_74; lean_object* x_75; +x_73 = lean_ctor_get(x_69, 0); +x_74 = lean_ctor_get(x_69, 1); +lean_inc(x_74); +lean_inc(x_73); +lean_dec(x_69); +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; +} +} +} +else +{ +lean_object* x_76; lean_object* x_77; +lean_dec(x_66); +lean_dec(x_65); +x_76 = lean_ctor_get(x_67, 0); +lean_inc(x_76); +lean_dec(x_67); +lean_inc(x_1); +x_77 = l_Lean_MVarId_getType(x_1, x_8, x_9, x_10, x_11, x_64); +if (lean_obj_tag(x_77) == 0) +{ +lean_object* x_78; lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; +x_78 = lean_ctor_get(x_77, 0); +lean_inc(x_78); +x_79 = lean_ctor_get(x_77, 1); +lean_inc(x_79); +lean_dec(x_77); +x_80 = l_Lean_Expr_fvar___override(x_76); +x_81 = l_Lean_LocalDecl_toExpr(x_46); +lean_dec(x_46); +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +x_82 = l_Lean_Meta_mkAbsurd(x_78, x_80, x_81, x_8, x_9, x_10, x_11, x_79); +if (lean_obj_tag(x_82) == 0) +{ +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; +x_83 = lean_ctor_get(x_82, 0); +lean_inc(x_83); +x_84 = lean_ctor_get(x_82, 1); +lean_inc(x_84); +lean_dec(x_82); +lean_inc(x_1); +x_85 = l_Lean_MVarId_assign___at_Lean_Meta_getLevel___spec__1(x_1, x_83, x_8, x_9, x_10, x_11, x_84); +x_86 = lean_ctor_get(x_85, 1); +lean_inc(x_86); +lean_dec(x_85); +x_87 = l_Array_forInUnsafe_loop___at___private_Lean_Meta_Match_MatchEqs_0__Lean_MVarId_contradictionQuick___spec__13___lambda__3___closed__1; +x_88 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_88, 0, x_87); +lean_ctor_set(x_88, 1, x_45); +x_89 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_89, 0, x_88); +x_27 = x_89; +x_28 = x_86; +goto block_43; +} +else +{ +uint8_t x_90; +lean_free_object(x_45); +lean_dec(x_49); +lean_dec(x_48); +lean_dec(x_26); +lean_dec(x_25); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +x_90 = !lean_is_exclusive(x_82); +if (x_90 == 0) +{ +return x_82; +} +else +{ +lean_object* x_91; lean_object* x_92; lean_object* x_93; +x_91 = lean_ctor_get(x_82, 0); +x_92 = lean_ctor_get(x_82, 1); +lean_inc(x_92); +lean_inc(x_91); +lean_dec(x_82); +x_93 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_93, 0, x_91); +lean_ctor_set(x_93, 1, x_92); +return x_93; +} +} +} +else +{ +uint8_t x_94; +lean_dec(x_76); +lean_free_object(x_45); +lean_dec(x_49); +lean_dec(x_48); +lean_dec(x_46); +lean_dec(x_26); +lean_dec(x_25); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +x_94 = !lean_is_exclusive(x_77); +if (x_94 == 0) +{ +return x_77; +} +else +{ +lean_object* x_95; lean_object* x_96; lean_object* x_97; +x_95 = lean_ctor_get(x_77, 0); +x_96 = lean_ctor_get(x_77, 1); +lean_inc(x_96); +lean_inc(x_95); +lean_dec(x_77); +x_97 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_97, 0, x_95); +lean_ctor_set(x_97, 1, x_96); +return x_97; +} +} +} +} +} +else +{ +uint8_t x_98; +lean_dec(x_52); +lean_dec(x_50); +lean_free_object(x_45); +lean_dec(x_49); +lean_dec(x_48); +lean_dec(x_46); +lean_dec(x_26); +lean_dec(x_25); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +x_98 = !lean_is_exclusive(x_53); +if (x_98 == 0) +{ +return x_53; +} +else +{ +lean_object* x_99; lean_object* x_100; lean_object* x_101; +x_99 = lean_ctor_get(x_53, 0); +x_100 = lean_ctor_get(x_53, 1); +lean_inc(x_100); +lean_inc(x_99); +lean_dec(x_53); +x_101 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_101, 0, x_99); +lean_ctor_set(x_101, 1, x_100); +return x_101; +} +} +} +else +{ +lean_object* x_102; lean_object* x_103; lean_object* x_104; lean_object* x_105; +lean_dec(x_50); +lean_free_object(x_45); +lean_dec(x_46); +x_102 = lean_box(0); +lean_inc(x_2); +x_103 = l_Array_forInUnsafe_loop___at___private_Lean_Meta_Match_MatchEqs_0__Lean_MVarId_contradictionQuick___spec__13___lambda__1(x_2, x_48, x_49, x_102, x_8, x_9, x_10, x_11, x_12); +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_27 = x_104; +x_28 = x_105; +goto block_43; +} +} +else +{ +lean_object* x_106; lean_object* x_107; lean_object* x_108; uint8_t x_109; +x_106 = lean_ctor_get(x_45, 0); +x_107 = lean_ctor_get(x_45, 1); +lean_inc(x_107); +lean_inc(x_106); +lean_dec(x_45); +lean_inc(x_2); +x_108 = lean_alloc_closure((void*)(l_Array_forInUnsafe_loop___at___private_Lean_Meta_Match_MatchEqs_0__Lean_MVarId_contradictionQuick___spec__13___lambda__1___boxed), 9, 1); +lean_closure_set(x_108, 0, x_2); +x_109 = l_Lean_LocalDecl_isImplementationDetail(x_46); +if (x_109 == 0) +{ +lean_object* x_110; lean_object* x_111; +x_110 = l_Lean_LocalDecl_type(x_46); +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_110); +x_111 = l_Lean_Meta_matchNot_x3f(x_110, x_8, x_9, x_10, x_11, x_12); +if (lean_obj_tag(x_111) == 0) +{ +lean_object* x_112; +x_112 = lean_ctor_get(x_111, 0); +lean_inc(x_112); +if (lean_obj_tag(x_112) == 0) +{ +lean_object* x_113; lean_object* x_114; lean_object* x_115; +x_113 = lean_ctor_get(x_111, 1); +lean_inc(x_113); +lean_dec(x_111); +x_114 = lean_box(0); +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_1); +x_115 = l_Array_forInUnsafe_loop___at___private_Lean_Meta_Match_MatchEqs_0__Lean_MVarId_contradictionQuick___spec__13___lambda__3(x_110, x_108, x_46, x_1, x_106, x_107, x_114, x_8, x_9, x_10, x_11, x_113); +if (lean_obj_tag(x_115) == 0) +{ +lean_object* x_116; lean_object* x_117; +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); +x_27 = x_116; +x_28 = x_117; +goto block_43; +} +else +{ +lean_object* x_118; lean_object* x_119; lean_object* x_120; lean_object* x_121; +lean_dec(x_26); +lean_dec(x_25); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +x_118 = lean_ctor_get(x_115, 0); +lean_inc(x_118); +x_119 = lean_ctor_get(x_115, 1); +lean_inc(x_119); +if (lean_is_exclusive(x_115)) { + lean_ctor_release(x_115, 0); + lean_ctor_release(x_115, 1); + x_120 = x_115; +} else { + lean_dec_ref(x_115); + x_120 = lean_box(0); +} +if (lean_is_scalar(x_120)) { + x_121 = lean_alloc_ctor(1, 2, 0); +} else { + x_121 = x_120; +} +lean_ctor_set(x_121, 0, x_118); +lean_ctor_set(x_121, 1, x_119); +return x_121; +} +} +else +{ +lean_object* x_122; lean_object* x_123; lean_object* x_124; lean_object* x_125; +x_122 = lean_ctor_get(x_111, 1); +lean_inc(x_122); +lean_dec(x_111); +x_123 = lean_ctor_get(x_112, 0); +lean_inc(x_123); +lean_dec(x_112); +lean_inc(x_1); +lean_inc(x_46); +x_124 = lean_alloc_closure((void*)(l_Array_forInUnsafe_loop___at___private_Lean_Meta_Match_MatchEqs_0__Lean_MVarId_contradictionQuick___spec__13___lambda__3), 12, 4); +lean_closure_set(x_124, 0, x_110); +lean_closure_set(x_124, 1, x_108); +lean_closure_set(x_124, 2, x_46); +lean_closure_set(x_124, 3, x_1); +lean_inc(x_123); +lean_inc(x_107); +x_125 = l_Lean_HashMapImp_find_x3f___at___private_Lean_Meta_Match_MatchEqs_0__Lean_MVarId_contradictionQuick___spec__8(x_107, x_123); +if (lean_obj_tag(x_125) == 0) +{ +lean_object* x_126; lean_object* x_127; +x_126 = lean_box(0); +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +x_127 = l_Array_forInUnsafe_loop___at___private_Lean_Meta_Match_MatchEqs_0__Lean_MVarId_contradictionQuick___spec__13___lambda__4(x_46, x_123, x_124, x_107, x_106, x_126, x_8, x_9, x_10, x_11, x_122); +lean_dec(x_46); +if (lean_obj_tag(x_127) == 0) +{ +lean_object* x_128; lean_object* x_129; +x_128 = lean_ctor_get(x_127, 0); +lean_inc(x_128); +x_129 = lean_ctor_get(x_127, 1); +lean_inc(x_129); +lean_dec(x_127); +x_27 = x_128; +x_28 = x_129; +goto block_43; +} +else +{ +lean_object* x_130; lean_object* x_131; lean_object* x_132; lean_object* x_133; +lean_dec(x_26); +lean_dec(x_25); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +x_130 = lean_ctor_get(x_127, 0); +lean_inc(x_130); +x_131 = lean_ctor_get(x_127, 1); +lean_inc(x_131); +if (lean_is_exclusive(x_127)) { + lean_ctor_release(x_127, 0); + lean_ctor_release(x_127, 1); + x_132 = x_127; +} else { + lean_dec_ref(x_127); + x_132 = lean_box(0); +} +if (lean_is_scalar(x_132)) { + x_133 = lean_alloc_ctor(1, 2, 0); +} else { + x_133 = x_132; +} +lean_ctor_set(x_133, 0, x_130); +lean_ctor_set(x_133, 1, x_131); +return x_133; +} +} +else +{ +lean_object* x_134; lean_object* x_135; +lean_dec(x_124); +lean_dec(x_123); +x_134 = lean_ctor_get(x_125, 0); +lean_inc(x_134); +lean_dec(x_125); +lean_inc(x_1); +x_135 = l_Lean_MVarId_getType(x_1, x_8, x_9, x_10, x_11, x_122); +if (lean_obj_tag(x_135) == 0) +{ +lean_object* x_136; lean_object* x_137; lean_object* x_138; lean_object* x_139; lean_object* x_140; +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); +x_138 = l_Lean_Expr_fvar___override(x_134); +x_139 = l_Lean_LocalDecl_toExpr(x_46); +lean_dec(x_46); +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +x_140 = l_Lean_Meta_mkAbsurd(x_136, x_138, x_139, x_8, x_9, x_10, x_11, x_137); +if (lean_obj_tag(x_140) == 0) +{ +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; +x_141 = lean_ctor_get(x_140, 0); +lean_inc(x_141); +x_142 = lean_ctor_get(x_140, 1); +lean_inc(x_142); +lean_dec(x_140); +lean_inc(x_1); +x_143 = l_Lean_MVarId_assign___at_Lean_Meta_getLevel___spec__1(x_1, x_141, x_8, x_9, x_10, x_11, x_142); +x_144 = lean_ctor_get(x_143, 1); +lean_inc(x_144); +lean_dec(x_143); +x_145 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_145, 0, x_106); +lean_ctor_set(x_145, 1, x_107); +x_146 = l_Array_forInUnsafe_loop___at___private_Lean_Meta_Match_MatchEqs_0__Lean_MVarId_contradictionQuick___spec__13___lambda__3___closed__1; +x_147 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_147, 0, x_146); +lean_ctor_set(x_147, 1, x_145); +x_148 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_148, 0, x_147); +x_27 = x_148; +x_28 = x_144; +goto block_43; +} +else +{ +lean_object* x_149; lean_object* x_150; lean_object* x_151; lean_object* x_152; +lean_dec(x_107); +lean_dec(x_106); +lean_dec(x_26); +lean_dec(x_25); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +x_149 = lean_ctor_get(x_140, 0); +lean_inc(x_149); +x_150 = lean_ctor_get(x_140, 1); +lean_inc(x_150); +if (lean_is_exclusive(x_140)) { + lean_ctor_release(x_140, 0); + lean_ctor_release(x_140, 1); + x_151 = x_140; +} else { + lean_dec_ref(x_140); + x_151 = lean_box(0); +} +if (lean_is_scalar(x_151)) { + x_152 = lean_alloc_ctor(1, 2, 0); +} else { + x_152 = x_151; +} +lean_ctor_set(x_152, 0, x_149); +lean_ctor_set(x_152, 1, x_150); +return x_152; +} +} +else +{ +lean_object* x_153; lean_object* x_154; lean_object* x_155; lean_object* x_156; +lean_dec(x_134); +lean_dec(x_107); +lean_dec(x_106); +lean_dec(x_46); +lean_dec(x_26); +lean_dec(x_25); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +x_153 = lean_ctor_get(x_135, 0); +lean_inc(x_153); +x_154 = lean_ctor_get(x_135, 1); +lean_inc(x_154); +if (lean_is_exclusive(x_135)) { + lean_ctor_release(x_135, 0); + lean_ctor_release(x_135, 1); + x_155 = x_135; +} else { + lean_dec_ref(x_135); + x_155 = lean_box(0); +} +if (lean_is_scalar(x_155)) { + x_156 = lean_alloc_ctor(1, 2, 0); +} else { + x_156 = x_155; +} +lean_ctor_set(x_156, 0, x_153); +lean_ctor_set(x_156, 1, x_154); +return x_156; +} +} +} +} +else +{ +lean_object* x_157; lean_object* x_158; lean_object* x_159; lean_object* x_160; +lean_dec(x_110); +lean_dec(x_108); +lean_dec(x_107); +lean_dec(x_106); +lean_dec(x_46); +lean_dec(x_26); +lean_dec(x_25); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +x_157 = lean_ctor_get(x_111, 0); +lean_inc(x_157); +x_158 = lean_ctor_get(x_111, 1); +lean_inc(x_158); +if (lean_is_exclusive(x_111)) { + lean_ctor_release(x_111, 0); + lean_ctor_release(x_111, 1); + x_159 = x_111; +} else { + lean_dec_ref(x_111); + x_159 = lean_box(0); +} +if (lean_is_scalar(x_159)) { + x_160 = lean_alloc_ctor(1, 2, 0); +} else { + x_160 = x_159; +} +lean_ctor_set(x_160, 0, x_157); +lean_ctor_set(x_160, 1, x_158); +return x_160; +} +} +else +{ +lean_object* x_161; lean_object* x_162; lean_object* x_163; lean_object* x_164; +lean_dec(x_108); +lean_dec(x_46); +x_161 = lean_box(0); +lean_inc(x_2); +x_162 = l_Array_forInUnsafe_loop___at___private_Lean_Meta_Match_MatchEqs_0__Lean_MVarId_contradictionQuick___spec__13___lambda__1(x_2, x_106, x_107, x_161, x_8, x_9, x_10, x_11, x_12); +x_163 = lean_ctor_get(x_162, 0); +lean_inc(x_163); +x_164 = lean_ctor_get(x_162, 1); +lean_inc(x_164); +lean_dec(x_162); +x_27 = x_163; +x_28 = x_164; +goto block_43; +} +} +} +block_24: +{ +if (lean_obj_tag(x_16) == 0) +{ +lean_object* x_18; lean_object* x_19; +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +x_18 = lean_ctor_get(x_16, 0); +lean_inc(x_18); +lean_dec(x_16); +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_object* x_20; size_t x_21; size_t x_22; +x_20 = lean_ctor_get(x_16, 0); +lean_inc(x_20); +lean_dec(x_16); +x_21 = 1; +x_22 = lean_usize_add(x_6, x_21); +x_6 = x_22; +x_7 = x_20; +x_12 = x_17; +goto _start; +} +} +block_43: +{ +if (lean_obj_tag(x_27) == 0) +{ +uint8_t x_29; +x_29 = !lean_is_exclusive(x_27); +if (x_29 == 0) +{ +lean_object* x_30; lean_object* x_31; lean_object* x_32; +x_30 = lean_ctor_get(x_27, 0); +x_31 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_31, 0, x_30); +if (lean_is_scalar(x_26)) { + x_32 = lean_alloc_ctor(0, 2, 0); +} else { + x_32 = x_26; +} +lean_ctor_set(x_32, 0, x_31); +lean_ctor_set(x_32, 1, x_25); +lean_ctor_set(x_27, 0, x_32); +x_16 = x_27; +x_17 = x_28; +goto block_24; +} +else +{ +lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; +x_33 = lean_ctor_get(x_27, 0); +lean_inc(x_33); +lean_dec(x_27); +x_34 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_34, 0, x_33); +if (lean_is_scalar(x_26)) { + x_35 = lean_alloc_ctor(0, 2, 0); +} else { + x_35 = x_26; +} +lean_ctor_set(x_35, 0, x_34); +lean_ctor_set(x_35, 1, x_25); +x_36 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_36, 0, x_35); +x_16 = x_36; +x_17 = x_28; +goto block_24; +} +} +else +{ +uint8_t x_37; +lean_dec(x_25); +x_37 = !lean_is_exclusive(x_27); +if (x_37 == 0) +{ +lean_object* x_38; lean_object* x_39; +x_38 = lean_ctor_get(x_27, 0); +lean_inc(x_3); +if (lean_is_scalar(x_26)) { + x_39 = lean_alloc_ctor(0, 2, 0); +} else { + x_39 = x_26; +} +lean_ctor_set(x_39, 0, x_3); +lean_ctor_set(x_39, 1, x_38); +lean_ctor_set(x_27, 0, x_39); +x_16 = x_27; +x_17 = x_28; +goto block_24; +} +else +{ +lean_object* x_40; lean_object* x_41; lean_object* x_42; +x_40 = lean_ctor_get(x_27, 0); +lean_inc(x_40); +lean_dec(x_27); +lean_inc(x_3); +if (lean_is_scalar(x_26)) { + x_41 = lean_alloc_ctor(0, 2, 0); +} else { + x_41 = x_26; +} +lean_ctor_set(x_41, 0, x_3); +lean_ctor_set(x_41, 1, x_40); +x_42 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_42, 0, x_41); +x_16 = x_42; +x_17 = x_28; +goto block_24; +} +} +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_PersistentArray_forIn___at___private_Lean_Meta_Match_MatchEqs_0__Lean_MVarId_contradictionQuick___spec__10___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) { +_start: +{ +lean_object* x_8; +x_8 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_8, 0, x_1); +lean_ctor_set(x_8, 1, x_7); +return x_8; +} +} +LEAN_EXPORT lean_object* l_Lean_PersistentArray_forIn___at___private_Lean_Meta_Match_MatchEqs_0__Lean_MVarId_contradictionQuick___spec__10(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 = lean_ctor_get(x_3, 0); +lean_inc(x_10); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_2); +lean_inc(x_1); +x_11 = l_Lean_PersistentArray_forInAux___at___private_Lean_Meta_Match_MatchEqs_0__Lean_MVarId_contradictionQuick___spec__11(x_1, x_2, x_4, x_10, x_4, 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); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +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_ctor_get(x_12, 0); +lean_inc(x_15); +lean_dec(x_12); +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_ctor_get(x_12, 0); +lean_inc(x_17); +lean_dec(x_12); +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; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; size_t x_25; size_t x_26; lean_object* x_27; +x_19 = lean_ctor_get(x_11, 1); +lean_inc(x_19); +lean_dec(x_11); +x_20 = lean_ctor_get(x_12, 0); +lean_inc(x_20); +lean_dec(x_12); +x_21 = lean_ctor_get(x_3, 1); +lean_inc(x_21); +lean_dec(x_3); +x_22 = lean_box(0); +x_23 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_23, 0, x_22); +lean_ctor_set(x_23, 1, x_20); +x_24 = lean_array_get_size(x_21); +x_25 = lean_usize_of_nat(x_24); +lean_dec(x_24); +x_26 = 0; +x_27 = l_Array_forInUnsafe_loop___at___private_Lean_Meta_Match_MatchEqs_0__Lean_MVarId_contradictionQuick___spec__14(x_1, x_2, x_22, x_21, x_25, x_26, x_23, x_5, x_6, x_7, x_8, x_19); +lean_dec(x_21); +if (lean_obj_tag(x_27) == 0) +{ +lean_object* x_28; lean_object* x_29; +x_28 = lean_ctor_get(x_27, 0); +lean_inc(x_28); +x_29 = lean_ctor_get(x_28, 0); +lean_inc(x_29); +if (lean_obj_tag(x_29) == 0) +{ +uint8_t x_30; +x_30 = !lean_is_exclusive(x_27); +if (x_30 == 0) +{ +lean_object* x_31; lean_object* x_32; +x_31 = lean_ctor_get(x_27, 0); +lean_dec(x_31); +x_32 = lean_ctor_get(x_28, 1); +lean_inc(x_32); +lean_dec(x_28); +lean_ctor_set(x_27, 0, x_32); +return x_27; +} +else +{ +lean_object* x_33; lean_object* x_34; lean_object* x_35; +x_33 = lean_ctor_get(x_27, 1); +lean_inc(x_33); +lean_dec(x_27); +x_34 = lean_ctor_get(x_28, 1); +lean_inc(x_34); +lean_dec(x_28); +x_35 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_35, 0, x_34); +lean_ctor_set(x_35, 1, x_33); +return x_35; +} +} +else +{ +uint8_t x_36; +lean_dec(x_28); +x_36 = !lean_is_exclusive(x_27); +if (x_36 == 0) +{ +lean_object* x_37; lean_object* x_38; +x_37 = lean_ctor_get(x_27, 0); +lean_dec(x_37); +x_38 = lean_ctor_get(x_29, 0); +lean_inc(x_38); +lean_dec(x_29); +lean_ctor_set(x_27, 0, x_38); +return x_27; +} +else +{ +lean_object* x_39; lean_object* x_40; lean_object* x_41; +x_39 = lean_ctor_get(x_27, 1); +lean_inc(x_39); +lean_dec(x_27); +x_40 = lean_ctor_get(x_29, 0); +lean_inc(x_40); +lean_dec(x_29); +x_41 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_41, 0, x_40); +lean_ctor_set(x_41, 1, x_39); +return x_41; +} +} +} +else +{ +uint8_t x_42; +x_42 = !lean_is_exclusive(x_27); +if (x_42 == 0) +{ +return x_27; +} +else +{ +lean_object* x_43; lean_object* x_44; lean_object* x_45; +x_43 = lean_ctor_get(x_27, 0); +x_44 = lean_ctor_get(x_27, 1); +lean_inc(x_44); +lean_inc(x_43); +lean_dec(x_27); +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 +{ +uint8_t x_46; +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +x_46 = !lean_is_exclusive(x_11); +if (x_46 == 0) +{ +return x_11; +} +else +{ +lean_object* x_47; lean_object* x_48; lean_object* x_49; +x_47 = lean_ctor_get(x_11, 0); +x_48 = lean_ctor_get(x_11, 1); +lean_inc(x_48); +lean_inc(x_47); +lean_dec(x_11); +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_EXPORT lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_MVarId_contradictionQuick___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: +{ +uint8_t x_7; lean_object* x_8; lean_object* x_9; +x_7 = 0; +x_8 = lean_box(x_7); +x_9 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_9, 0, x_8); +lean_ctor_set(x_9, 1, x_6); +return x_9; +} +} +static lean_object* _init_l___private_Lean_Meta_Match_MatchEqs_0__Lean_MVarId_contradictionQuick___lambda__2___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l___private_Lean_Meta_Match_MatchEqs_0__Lean_MVarId_contradictionQuick___lambda__1___boxed), 6, 0); +return x_1; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_MVarId_contradictionQuick___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_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; +x_8 = lean_ctor_get(x_3, 1); +lean_inc(x_8); +x_9 = lean_box(0); +lean_inc(x_1); +x_10 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_10, 0, x_1); +lean_ctor_set(x_10, 1, x_1); +x_11 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_11, 0, x_9); +lean_ctor_set(x_11, 1, x_10); +x_12 = lean_ctor_get(x_8, 1); +lean_inc(x_12); +lean_dec(x_8); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +x_13 = l_Lean_PersistentArray_forIn___at___private_Lean_Meta_Match_MatchEqs_0__Lean_MVarId_contradictionQuick___spec__10(x_2, x_9, x_12, x_11, x_3, x_4, x_5, x_6, x_7); +if (lean_obj_tag(x_13) == 0) +{ +lean_object* x_14; lean_object* x_15; +x_14 = lean_ctor_get(x_13, 0); +lean_inc(x_14); +x_15 = lean_ctor_get(x_14, 0); +lean_inc(x_15); +lean_dec(x_14); +if (lean_obj_tag(x_15) == 0) +{ +lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; +x_16 = lean_ctor_get(x_13, 1); +lean_inc(x_16); +lean_dec(x_13); +x_17 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_MVarId_contradictionQuick___lambda__2___closed__1; +x_18 = lean_box(0); +x_19 = lean_apply_6(x_17, x_18, x_3, x_4, x_5, x_6, x_16); +return x_19; +} +else +{ +uint8_t x_20; +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +x_20 = !lean_is_exclusive(x_13); +if (x_20 == 0) +{ +lean_object* x_21; lean_object* x_22; +x_21 = lean_ctor_get(x_13, 0); +lean_dec(x_21); +x_22 = lean_ctor_get(x_15, 0); +lean_inc(x_22); +lean_dec(x_15); +lean_ctor_set(x_13, 0, x_22); +return x_13; +} +else +{ +lean_object* x_23; lean_object* x_24; lean_object* x_25; +x_23 = lean_ctor_get(x_13, 1); +lean_inc(x_23); +lean_dec(x_13); +x_24 = lean_ctor_get(x_15, 0); +lean_inc(x_24); +lean_dec(x_15); +x_25 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_25, 0, x_24); +lean_ctor_set(x_25, 1, x_23); +return x_25; +} +} +} +else +{ +uint8_t x_26; +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +x_26 = !lean_is_exclusive(x_13); +if (x_26 == 0) +{ +return x_13; +} +else +{ +lean_object* x_27; lean_object* x_28; lean_object* x_29; +x_27 = lean_ctor_get(x_13, 0); +x_28 = lean_ctor_get(x_13, 1); +lean_inc(x_28); +lean_inc(x_27); +lean_dec(x_13); +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_EXPORT lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_MVarId_contradictionQuick(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; lean_object* x_8; lean_object* x_9; lean_object* x_10; +x_7 = lean_unsigned_to_nat(8u); +x_8 = l_Lean_mkHashMapImp___rarg(x_7); +lean_inc(x_1); +x_9 = lean_alloc_closure((void*)(l___private_Lean_Meta_Match_MatchEqs_0__Lean_MVarId_contradictionQuick___lambda__2), 7, 2); +lean_closure_set(x_9, 0, x_8); +lean_closure_set(x_9, 1, x_1); +x_10 = l_Lean_MVarId_withContext___at___private_Lean_Meta_SynthInstance_0__Lean_Meta_synthPendingImp___spec__2___rarg(x_1, x_9, x_2, x_3, x_4, x_5, x_6); +return x_10; +} +} +LEAN_EXPORT lean_object* l_Lean_mkHashMap___at___private_Lean_Meta_Match_MatchEqs_0__Lean_MVarId_contradictionQuick___spec__1___boxed(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = l_Lean_mkHashMap___at___private_Lean_Meta_Match_MatchEqs_0__Lean_MVarId_contradictionQuick___spec__1(x_1); +lean_dec(x_1); +return x_2; +} +} +LEAN_EXPORT lean_object* l_Lean_AssocList_contains___at___private_Lean_Meta_Match_MatchEqs_0__Lean_MVarId_contradictionQuick___spec__3___boxed(lean_object* x_1, lean_object* x_2) { +_start: +{ +uint8_t x_3; lean_object* x_4; +x_3 = l_Lean_AssocList_contains___at___private_Lean_Meta_Match_MatchEqs_0__Lean_MVarId_contradictionQuick___spec__3(x_1, x_2); +lean_dec(x_2); +lean_dec(x_1); +x_4 = lean_box(x_3); +return x_4; +} +} +LEAN_EXPORT lean_object* l_Lean_AssocList_find_x3f___at___private_Lean_Meta_Match_MatchEqs_0__Lean_MVarId_contradictionQuick___spec__9___boxed(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; +x_3 = l_Lean_AssocList_find_x3f___at___private_Lean_Meta_Match_MatchEqs_0__Lean_MVarId_contradictionQuick___spec__9(x_1, x_2); +lean_dec(x_2); +lean_dec(x_1); +return x_3; +} +} +LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Meta_Match_MatchEqs_0__Lean_MVarId_contradictionQuick___spec__12___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: +{ +size_t x_14; size_t x_15; lean_object* x_16; +x_14 = lean_unbox_usize(x_6); +lean_dec(x_6); +x_15 = lean_unbox_usize(x_7); +lean_dec(x_7); +x_16 = l_Array_forInUnsafe_loop___at___private_Lean_Meta_Match_MatchEqs_0__Lean_MVarId_contradictionQuick___spec__12(x_1, x_2, x_3, x_4, x_5, x_14, x_15, x_8, x_9, x_10, x_11, x_12, x_13); +lean_dec(x_5); +return x_16; +} +} +LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Meta_Match_MatchEqs_0__Lean_MVarId_contradictionQuick___spec__13___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) { +_start: +{ +lean_object* x_10; +x_10 = l_Array_forInUnsafe_loop___at___private_Lean_Meta_Match_MatchEqs_0__Lean_MVarId_contradictionQuick___spec__13___lambda__1(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); +return x_10; +} +} +LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Meta_Match_MatchEqs_0__Lean_MVarId_contradictionQuick___spec__13___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) { +_start: +{ +lean_object* x_12; +x_12 = l_Array_forInUnsafe_loop___at___private_Lean_Meta_Match_MatchEqs_0__Lean_MVarId_contradictionQuick___spec__13___lambda__2(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_6); +lean_dec(x_1); +return x_12; +} +} +LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Meta_Match_MatchEqs_0__Lean_MVarId_contradictionQuick___spec__13___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) { +_start: +{ +lean_object* x_12; +x_12 = l_Array_forInUnsafe_loop___at___private_Lean_Meta_Match_MatchEqs_0__Lean_MVarId_contradictionQuick___spec__13___lambda__4(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_6); +lean_dec(x_1); +return x_12; +} +} +LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Meta_Match_MatchEqs_0__Lean_MVarId_contradictionQuick___spec__13___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: +{ +size_t x_13; size_t x_14; lean_object* x_15; +x_13 = lean_unbox_usize(x_5); +lean_dec(x_5); +x_14 = lean_unbox_usize(x_6); +lean_dec(x_6); +x_15 = l_Array_forInUnsafe_loop___at___private_Lean_Meta_Match_MatchEqs_0__Lean_MVarId_contradictionQuick___spec__13(x_1, x_2, x_3, x_4, x_13, x_14, x_7, x_8, x_9, x_10, x_11, x_12); +lean_dec(x_4); +return x_15; +} +} +LEAN_EXPORT lean_object* l_Lean_PersistentArray_forInAux___at___private_Lean_Meta_Match_MatchEqs_0__Lean_MVarId_contradictionQuick___spec__11___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) { +_start: +{ +lean_object* x_8; +x_8 = l_Lean_PersistentArray_forInAux___at___private_Lean_Meta_Match_MatchEqs_0__Lean_MVarId_contradictionQuick___spec__11___lambda__1(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); +lean_dec(x_2); +return x_8; +} +} +LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Meta_Match_MatchEqs_0__Lean_MVarId_contradictionQuick___spec__14___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: +{ +size_t x_13; size_t x_14; lean_object* x_15; +x_13 = lean_unbox_usize(x_5); +lean_dec(x_5); +x_14 = lean_unbox_usize(x_6); +lean_dec(x_6); +x_15 = l_Array_forInUnsafe_loop___at___private_Lean_Meta_Match_MatchEqs_0__Lean_MVarId_contradictionQuick___spec__14(x_1, x_2, x_3, x_4, x_13, x_14, x_7, x_8, x_9, x_10, x_11, x_12); +lean_dec(x_4); +return x_15; +} +} +LEAN_EXPORT lean_object* l_Lean_PersistentArray_forIn___at___private_Lean_Meta_Match_MatchEqs_0__Lean_MVarId_contradictionQuick___spec__10___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) { +_start: +{ +lean_object* x_8; +x_8 = l_Lean_PersistentArray_forIn___at___private_Lean_Meta_Match_MatchEqs_0__Lean_MVarId_contradictionQuick___spec__10___lambda__1(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); +lean_dec(x_2); +return x_8; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_MVarId_contradictionQuick___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___private_Lean_Meta_Match_MatchEqs_0__Lean_MVarId_contradictionQuick___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); +lean_dec(x_1); +return x_7; +} +} LEAN_EXPORT lean_object* l_Lean_Meta_casesOnStuckLHS_findFVar_x3f___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) { _start: { @@ -2771,7 +6141,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_Match_forallAltTelescope_go___rarg___lambda__5___closed__1; x_2 = l_Lean_Meta_Match_forallAltTelescope_go___rarg___lambda__5___closed__2; -x_3 = lean_unsigned_to_nat(100u); +x_3 = lean_unsigned_to_nat(129u); x_4 = lean_unsigned_to_nat(47u); x_5 = l_Lean_Meta_Match_forallAltTelescope_go___rarg___lambda__5___closed__3; x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); @@ -2784,7 +6154,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_Match_forallAltTelescope_go___rarg___lambda__5___closed__1; x_2 = l_Lean_Meta_Match_forallAltTelescope_go___rarg___lambda__5___closed__2; -x_3 = lean_unsigned_to_nat(102u); +x_3 = lean_unsigned_to_nat(131u); x_4 = lean_unsigned_to_nat(49u); x_5 = l_Lean_Meta_Match_forallAltTelescope_go___rarg___lambda__5___closed__3; x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); @@ -5014,7 +8384,7 @@ static lean_object* _init_l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Matc _start: { lean_object* x_1; -x_1 = lean_mk_string_from_bytes("( __do_lift._@.Lean.Meta.Match.MatchEqs._hyg.1987.0 ).xs.contains rhs\n ", 72); +x_1 = lean_mk_string_from_bytes("( __do_lift._@.Lean.Meta.Match.MatchEqs._hyg.2675.0 ).xs.contains rhs\n ", 72); return x_1; } } @@ -5042,7 +8412,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_Match_forallAltTelescope_go___rarg___lambda__5___closed__1; x_2 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_SimpH_substRHS___closed__4; -x_3 = lean_unsigned_to_nat(169u); +x_3 = lean_unsigned_to_nat(198u); x_4 = lean_unsigned_to_nat(2u); x_5 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_SimpH_substRHS___closed__3; x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); @@ -8153,7 +11523,7 @@ lean_inc(x_5); lean_inc(x_4); lean_inc(x_3); lean_inc(x_1); -x_13 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_1, x_8, x_3, x_4, x_5, x_6, x_7); +x_13 = l_Lean_Meta_forallTelescope___at_Lean_Meta_mapForallTelescope_x27___spec__1___rarg(x_1, x_8, x_3, x_4, x_5, x_6, x_7); if (lean_obj_tag(x_13) == 0) { 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; uint8_t x_22; lean_object* x_23; @@ -8492,7 +11862,7 @@ lean_inc(x_5); lean_inc(x_4); lean_inc(x_3); lean_inc(x_1); -x_102 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_1, x_8, x_3, x_4, x_5, x_6, x_7); +x_102 = l_Lean_Meta_forallTelescope___at_Lean_Meta_mapForallTelescope_x27___spec__1___rarg(x_1, x_8, x_3, x_4, x_5, x_6, x_7); if (lean_obj_tag(x_102) == 0) { 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; uint8_t x_111; lean_object* x_112; @@ -8869,7 +12239,7 @@ lean_inc(x_5); lean_inc(x_4); lean_inc(x_196); lean_inc(x_1); -x_197 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_1, x_8, x_196, x_4, x_5, x_6, x_7); +x_197 = l_Lean_Meta_forallTelescope___at_Lean_Meta_mapForallTelescope_x27___spec__1___rarg(x_1, x_8, x_196, x_4, x_5, x_6, x_7); if (lean_obj_tag(x_197) == 0) { 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; uint8_t x_206; lean_object* x_207; @@ -9233,7 +12603,6 @@ lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); lean_dec(x_4); -lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); x_15 = lean_alloc_ctor(0, 2, 0); @@ -9257,10 +12626,10 @@ lean_inc(x_11); lean_inc(x_10); lean_inc(x_9); lean_inc(x_18); -lean_inc(x_3); lean_inc(x_2); lean_inc(x_1); x_20 = l_Lean_PersistentArray_forInAux___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_substSomeVar___spec__2(x_1, x_2, x_3, x_16, x_18, x_9, x_10, x_11, x_12, x_13); +lean_dec(x_16); if (lean_obj_tag(x_20) == 0) { lean_object* x_21; @@ -9274,7 +12643,6 @@ lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); lean_dec(x_4); -lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); x_22 = !lean_is_exclusive(x_20); @@ -9334,7 +12702,6 @@ lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); lean_dec(x_4); -lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); x_33 = !lean_is_exclusive(x_20); @@ -9368,10 +12735,10 @@ lean_inc(x_11); lean_inc(x_10); lean_inc(x_9); lean_inc(x_37); -lean_inc(x_3); lean_inc(x_2); lean_inc(x_1); x_38 = l_Lean_PersistentArray_forInAux___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_substSomeVar___spec__2(x_1, x_2, x_3, x_16, x_37, x_9, x_10, x_11, x_12, x_13); +lean_dec(x_16); if (lean_obj_tag(x_38) == 0) { lean_object* x_39; @@ -9385,7 +12752,6 @@ lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); lean_dec(x_4); -lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); x_40 = lean_ctor_get(x_38, 1); @@ -9443,7 +12809,6 @@ lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); lean_dec(x_4); -lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); x_51 = lean_ctor_get(x_38, 0); @@ -9794,18 +13159,6 @@ goto _start; } } } -LEAN_EXPORT lean_object* l_Lean_PersistentArray_forInAux___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_substSomeVar___spec__2___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) { -_start: -{ -lean_object* x_8; lean_object* x_9; -x_8 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_8, 0, x_1); -x_9 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_9, 0, x_8); -lean_ctor_set(x_9, 1, x_7); -return x_9; -} -} LEAN_EXPORT lean_object* l_Lean_PersistentArray_forInAux___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_substSomeVar___spec__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) { _start: { @@ -9813,8 +13166,6 @@ if (lean_obj_tag(x_4) == 0) { lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; size_t x_15; size_t x_16; lean_object* x_17; x_11 = lean_ctor_get(x_4, 0); -lean_inc(x_11); -lean_dec(x_4); x_12 = lean_box(0); x_13 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_13, 0, x_12); @@ -9828,7 +13179,6 @@ lean_inc(x_8); lean_inc(x_7); lean_inc(x_6); x_17 = l_Array_forInUnsafe_loop___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_substSomeVar___spec__3(x_1, x_2, x_3, x_12, x_11, x_15, x_16, x_13, x_6, x_7, x_8, x_9, x_10); -lean_dec(x_11); if (lean_obj_tag(x_17) == 0) { lean_object* x_18; lean_object* x_19; @@ -9846,7 +13196,7 @@ x_21 = lean_ctor_get(x_18, 1); lean_inc(x_21); lean_dec(x_18); x_22 = lean_box(0); -x_23 = l_Lean_PersistentArray_forInAux___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_substSomeVar___spec__2___lambda__1(x_21, x_22, x_6, x_7, x_8, x_9, x_20); +x_23 = l_Lean_PersistentArray_forInAux___at___private_Lean_Meta_Match_MatchEqs_0__Lean_MVarId_contradictionQuick___spec__11___lambda__1(x_21, x_22, x_6, x_7, x_8, x_9, x_20); lean_dec(x_9); lean_dec(x_8); lean_dec(x_7); @@ -9919,10 +13269,7 @@ return x_33; else { lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; size_t x_38; size_t x_39; lean_object* x_40; -lean_dec(x_3); x_34 = lean_ctor_get(x_4, 0); -lean_inc(x_34); -lean_dec(x_4); x_35 = lean_box(0); x_36 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_36, 0, x_35); @@ -9936,7 +13283,6 @@ lean_inc(x_8); lean_inc(x_7); lean_inc(x_6); x_40 = l_Array_forInUnsafe_loop___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_substSomeVar___spec__4(x_1, x_2, x_35, x_34, x_38, x_39, x_36, x_6, x_7, x_8, x_9, x_10); -lean_dec(x_34); if (lean_obj_tag(x_40) == 0) { lean_object* x_41; lean_object* x_42; @@ -9954,7 +13300,7 @@ x_44 = lean_ctor_get(x_41, 1); lean_inc(x_44); lean_dec(x_41); x_45 = lean_box(0); -x_46 = l_Lean_PersistentArray_forInAux___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_substSomeVar___spec__2___lambda__1(x_44, x_45, x_6, x_7, x_8, x_9, x_43); +x_46 = l_Lean_PersistentArray_forInAux___at___private_Lean_Meta_Match_MatchEqs_0__Lean_MVarId_contradictionQuick___spec__11___lambda__1(x_44, x_45, x_6, x_7, x_8, x_9, x_43); lean_dec(x_9); lean_dec(x_8); lean_dec(x_7); @@ -10352,22 +13698,11 @@ goto _start; } } } -LEAN_EXPORT lean_object* l_Lean_PersistentArray_forIn___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_substSomeVar___spec__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, lean_object* x_7) { -_start: -{ -lean_object* x_8; -x_8 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_8, 0, x_1); -lean_ctor_set(x_8, 1, x_7); -return x_8; -} -} LEAN_EXPORT lean_object* l_Lean_PersistentArray_forIn___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_substSomeVar___spec__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) { _start: { lean_object* x_10; lean_object* x_11; x_10 = lean_ctor_get(x_3, 0); -lean_inc(x_10); lean_inc(x_8); lean_inc(x_7); lean_inc(x_6); @@ -10376,6 +13711,7 @@ lean_inc(x_4); lean_inc(x_2); lean_inc(x_1); x_11 = l_Lean_PersistentArray_forInAux___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_substSomeVar___spec__2(x_1, x_2, x_4, x_10, x_4, x_5, x_6, x_7, x_8, x_9); +lean_dec(x_4); if (lean_obj_tag(x_11) == 0) { lean_object* x_12; @@ -10388,7 +13724,6 @@ lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); -lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); x_13 = !lean_is_exclusive(x_11); @@ -10428,8 +13763,6 @@ x_20 = lean_ctor_get(x_12, 0); lean_inc(x_20); lean_dec(x_12); x_21 = lean_ctor_get(x_3, 1); -lean_inc(x_21); -lean_dec(x_3); x_22 = lean_box(0); x_23 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_23, 0, x_22); @@ -10439,7 +13772,6 @@ x_25 = lean_usize_of_nat(x_24); lean_dec(x_24); x_26 = 0; x_27 = l_Array_forInUnsafe_loop___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_substSomeVar___spec__5(x_1, x_2, x_22, x_21, x_25, x_26, x_23, x_5, x_6, x_7, x_8, x_19); -lean_dec(x_21); if (lean_obj_tag(x_27) == 0) { lean_object* x_28; lean_object* x_29; @@ -10540,7 +13872,6 @@ lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); -lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); x_46 = !lean_is_exclusive(x_11); @@ -10625,6 +13956,7 @@ lean_inc(x_4); lean_inc(x_3); lean_inc(x_2); x_10 = l_Lean_PersistentArray_forIn___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_substSomeVar___spec__1(x_1, x_9, x_8, x_9, x_2, x_3, x_4, x_5, x_6); +lean_dec(x_8); if (lean_obj_tag(x_10) == 0) { lean_object* x_11; lean_object* x_12; @@ -10728,6 +14060,7 @@ x_15 = lean_unbox_usize(x_7); lean_dec(x_7); x_16 = l_Array_forInUnsafe_loop___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_substSomeVar___spec__3(x_1, x_2, x_3, x_4, x_5, x_14, x_15, x_8, x_9, x_10, x_11, x_12, x_13); lean_dec(x_5); +lean_dec(x_3); return x_16; } } @@ -10744,17 +14077,14 @@ lean_dec(x_4); return x_15; } } -LEAN_EXPORT lean_object* l_Lean_PersistentArray_forInAux___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_substSomeVar___spec__2___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_EXPORT lean_object* l_Lean_PersistentArray_forInAux___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_substSomeVar___spec__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) { _start: { -lean_object* x_8; -x_8 = l_Lean_PersistentArray_forInAux___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_substSomeVar___spec__2___lambda__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7); -lean_dec(x_6); -lean_dec(x_5); +lean_object* x_11; +x_11 = l_Lean_PersistentArray_forInAux___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_substSomeVar___spec__2(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); lean_dec(x_4); lean_dec(x_3); -lean_dec(x_2); -return x_8; +return x_11; } } LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_substSomeVar___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, lean_object* x_12) { @@ -10770,17 +14100,13 @@ lean_dec(x_4); return x_15; } } -LEAN_EXPORT lean_object* l_Lean_PersistentArray_forIn___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_substSomeVar___spec__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, lean_object* x_7) { +LEAN_EXPORT lean_object* l_Lean_PersistentArray_forIn___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_substSomeVar___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: { -lean_object* x_8; -x_8 = l_Lean_PersistentArray_forIn___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_substSomeVar___spec__1___lambda__1(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_object* x_10; +x_10 = l_Lean_PersistentArray_forIn___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_substSomeVar___spec__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); lean_dec(x_3); -lean_dec(x_2); -return x_8; +return x_10; } } LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_substSomeVar___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) { @@ -17648,7 +20974,7 @@ lean_inc(x_10); lean_dec(x_8); x_11 = lean_alloc_closure((void*)(l_Lean_Meta_Match_proveCondEqThm___lambda__3), 8, 1); lean_closure_set(x_11, 0, x_2); -x_12 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_9, x_11, x_3, x_4, x_5, x_6, x_10); +x_12 = l_Lean_Meta_forallTelescope___at_Lean_Meta_mapForallTelescope_x27___spec__1___rarg(x_9, x_11, x_3, x_4, x_5, x_6, x_10); return x_12; } } @@ -18903,7 +22229,7 @@ lean_inc(x_67); x_68 = lean_ctor_get(x_66, 1); lean_inc(x_68); lean_dec(x_66); -x_228 = l_Lean_Expr_isNatLit(x_64); +x_228 = l_Lean_Expr_isRawNatLit(x_64); lean_dec(x_64); if (x_228 == 0) { @@ -18916,7 +22242,7 @@ goto block_227; else { uint8_t x_230; -x_230 = l_Lean_Expr_isNatLit(x_67); +x_230 = l_Lean_Expr_isRawNatLit(x_67); lean_dec(x_67); if (x_230 == 0) { @@ -19970,7 +23296,7 @@ x_21 = lean_ctor_get(x_18, 1); lean_inc(x_21); lean_dec(x_18); x_22 = lean_box(0); -x_23 = l_Lean_PersistentArray_forInAux___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_substSomeVar___spec__2___lambda__1(x_21, x_22, x_6, x_7, x_8, x_9, x_20); +x_23 = l_Lean_PersistentArray_forInAux___at___private_Lean_Meta_Match_MatchEqs_0__Lean_MVarId_contradictionQuick___spec__11___lambda__1(x_21, x_22, x_6, x_7, x_8, x_9, x_20); lean_dec(x_9); lean_dec(x_8); lean_dec(x_7); @@ -20074,7 +23400,7 @@ x_44 = lean_ctor_get(x_41, 1); lean_inc(x_44); lean_dec(x_41); x_45 = lean_box(0); -x_46 = l_Lean_PersistentArray_forInAux___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_substSomeVar___spec__2___lambda__1(x_44, x_45, x_6, x_7, x_8, x_9, x_43); +x_46 = l_Lean_PersistentArray_forInAux___at___private_Lean_Meta_Match_MatchEqs_0__Lean_MVarId_contradictionQuick___spec__11___lambda__1(x_44, x_45, x_6, x_7, x_8, x_9, x_43); lean_dec(x_9); lean_dec(x_8); lean_dec(x_7); @@ -20281,7 +23607,7 @@ lean_inc(x_72); x_73 = lean_ctor_get(x_71, 1); lean_inc(x_73); lean_dec(x_71); -x_233 = l_Lean_Expr_isNatLit(x_69); +x_233 = l_Lean_Expr_isRawNatLit(x_69); lean_dec(x_69); if (x_233 == 0) { @@ -20294,7 +23620,7 @@ goto block_232; else { uint8_t x_235; -x_235 = l_Lean_Expr_isNatLit(x_72); +x_235 = l_Lean_Expr_isRawNatLit(x_72); lean_dec(x_72); if (x_235 == 0) { @@ -22846,19 +26172,8 @@ goto _start; static lean_object* _init_l_Subarray_forInUnsafe_loop___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_isCastEqRec___spec__2___closed__1() { _start: { -uint8_t x_1; lean_object* x_2; lean_object* x_3; -x_1 = 1; -x_2 = lean_box(x_1); -x_3 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_3, 0, x_2); -return x_3; -} -} -static lean_object* _init_l_Subarray_forInUnsafe_loop___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_isCastEqRec___spec__2___closed__2() { -_start: -{ lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Subarray_forInUnsafe_loop___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_isCastEqRec___spec__2___closed__1; +x_1 = l_Array_forInUnsafe_loop___at___private_Lean_Meta_Match_MatchEqs_0__Lean_MVarId_contradictionQuick___spec__13___lambda__3___closed__1; x_2 = lean_box(0); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -22927,7 +26242,7 @@ else lean_object* x_26; lean_object* x_27; lean_dec(x_22); lean_dec(x_1); -x_26 = l_Subarray_forInUnsafe_loop___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_isCastEqRec___spec__2___closed__2; +x_26 = l_Subarray_forInUnsafe_loop___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_isCastEqRec___spec__2___closed__1; x_27 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_27, 0, x_26); lean_ctor_set(x_27, 1, x_12); @@ -23895,7 +27210,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_Match_forallAltTelescope_go___rarg___lambda__5___closed__1; x_2 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_go___closed__3; -x_3 = lean_unsigned_to_nat(490u); +x_3 = lean_unsigned_to_nat(519u); x_4 = lean_unsigned_to_nat(12u); x_5 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_go___closed__2; x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); @@ -25142,7 +28457,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_Match_forallAltTelescope_go___rarg___lambda__5___closed__1; x_2 = l_Std_Range_forIn_loop___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec___spec__6___closed__1; -x_3 = lean_unsigned_to_nat(528u); +x_3 = lean_unsigned_to_nat(557u); x_4 = lean_unsigned_to_nat(70u); x_5 = l_Lean_Meta_Match_forallAltTelescope_go___rarg___lambda__5___closed__3; x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); @@ -26942,7 +30257,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_Match_forallAltTelescope_go___rarg___lambda__5___closed__1; x_2 = l_Std_Range_forIn_loop___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec___spec__6___closed__1; -x_3 = lean_unsigned_to_nat(517u); +x_3 = lean_unsigned_to_nat(546u); x_4 = lean_unsigned_to_nat(75u); x_5 = l_Lean_Meta_Match_forallAltTelescope_go___rarg___lambda__5___closed__3; x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); @@ -27320,7 +30635,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_Match_forallAltTelescope_go___rarg___lambda__5___closed__1; x_2 = l_Std_Range_forIn_loop___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec___spec__6___closed__1; -x_3 = lean_unsigned_to_nat(478u); +x_3 = lean_unsigned_to_nat(507u); x_4 = lean_unsigned_to_nat(6u); x_5 = l_Lean_Expr_withAppAux___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec___spec__8___closed__2; x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); @@ -30054,7 +33369,7 @@ static lean_object* _init_l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Matc _start: { lean_object* x_1; -x_1 = lean_mk_string_from_bytes("( __do_lift._@.Lean.Meta.Match.MatchEqs._hyg.6811.0 )\n ", 58); +x_1 = lean_mk_string_from_bytes("( __do_lift._@.Lean.Meta.Match.MatchEqs._hyg.7499.0 )\n ", 58); return x_1; } } @@ -30074,7 +33389,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_Match_forallAltTelescope_go___rarg___lambda__5___closed__1; x_2 = l_Std_Range_forIn_loop___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec___spec__6___closed__1; -x_3 = lean_unsigned_to_nat(460u); +x_3 = lean_unsigned_to_nat(489u); x_4 = lean_unsigned_to_nat(4u); x_5 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec___closed__3; x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); @@ -35272,6 +38587,97 @@ return x_50; } } } +LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_proveSubgoalLoop___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) { +_start: +{ +lean_object* x_9; +lean_dec(x_3); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_1); +x_9 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_MVarId_contradictionQuick(x_1, x_4, x_5, x_6, x_7, x_8); +if (lean_obj_tag(x_9) == 0) +{ +lean_object* x_10; uint8_t x_11; +x_10 = lean_ctor_get(x_9, 0); +lean_inc(x_10); +x_11 = lean_unbox(x_10); +lean_dec(x_10); +if (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___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_proveSubgoalLoop___lambda__2(x_1, x_2, x_13, x_4, x_5, x_6, x_7, x_12); +return x_14; +} +else +{ +uint8_t x_15; +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_2); +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_box(0); +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_box(0); +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_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_2); +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___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_proveSubgoalLoop___closed__1() { _start: { @@ -35306,7 +38712,7 @@ x_12 = lean_ctor_get(x_9, 1); lean_inc(x_12); lean_dec(x_9); x_13 = lean_box(0); -x_14 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_proveSubgoalLoop___lambda__2(x_2, x_1, x_13, x_3, x_4, x_5, x_6, x_12); +x_14 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_proveSubgoalLoop___lambda__3(x_2, x_1, x_13, x_3, x_4, x_5, x_6, x_12); return x_14; } else @@ -35332,7 +38738,7 @@ lean_inc(x_22); x_23 = lean_ctor_get(x_21, 1); lean_inc(x_23); lean_dec(x_21); -x_24 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_proveSubgoalLoop___lambda__2(x_2, x_1, x_22, x_3, x_4, x_5, x_6, x_23); +x_24 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_proveSubgoalLoop___lambda__3(x_2, x_1, x_22, x_3, x_4, x_5, x_6, x_23); return x_24; } } @@ -39936,7 +43342,7 @@ lean_dec(x_3); return x_5; } } -static lean_object* _init_l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_MatchEqs___hyg_12945____closed__1() { +static lean_object* _init_l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_MatchEqs___hyg_13691____closed__1() { _start: { lean_object* x_1; @@ -39944,37 +43350,37 @@ x_1 = lean_mk_string_from_bytes("Lean", 4); return x_1; } } -static lean_object* _init_l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_MatchEqs___hyg_12945____closed__2() { +static lean_object* _init_l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_MatchEqs___hyg_13691____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_MatchEqs___hyg_12945____closed__1; +x_2 = l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_MatchEqs___hyg_13691____closed__1; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_MatchEqs___hyg_12945____closed__3() { +static lean_object* _init_l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_MatchEqs___hyg_13691____closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_MatchEqs___hyg_12945____closed__2; +x_1 = l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_MatchEqs___hyg_13691____closed__2; x_2 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_simpH_x3f___lambda__3___closed__1; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_MatchEqs___hyg_12945____closed__4() { +static lean_object* _init_l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_MatchEqs___hyg_13691____closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_MatchEqs___hyg_12945____closed__3; +x_1 = l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_MatchEqs___hyg_13691____closed__3; x_2 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_simpH_x3f___lambda__3___closed__2; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_MatchEqs___hyg_12945____closed__5() { +static lean_object* _init_l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_MatchEqs___hyg_13691____closed__5() { _start: { lean_object* x_1; @@ -39982,17 +43388,17 @@ x_1 = lean_mk_string_from_bytes("initFn", 6); return x_1; } } -static lean_object* _init_l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_MatchEqs___hyg_12945____closed__6() { +static lean_object* _init_l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_MatchEqs___hyg_13691____closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_MatchEqs___hyg_12945____closed__4; -x_2 = l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_MatchEqs___hyg_12945____closed__5; +x_1 = l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_MatchEqs___hyg_13691____closed__4; +x_2 = l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_MatchEqs___hyg_13691____closed__5; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_MatchEqs___hyg_12945____closed__7() { +static lean_object* _init_l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_MatchEqs___hyg_13691____closed__7() { _start: { lean_object* x_1; @@ -40000,47 +43406,47 @@ x_1 = lean_mk_string_from_bytes("_@", 2); return x_1; } } -static lean_object* _init_l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_MatchEqs___hyg_12945____closed__8() { +static lean_object* _init_l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_MatchEqs___hyg_13691____closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_MatchEqs___hyg_12945____closed__6; -x_2 = l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_MatchEqs___hyg_12945____closed__7; +x_1 = l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_MatchEqs___hyg_13691____closed__6; +x_2 = l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_MatchEqs___hyg_13691____closed__7; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_MatchEqs___hyg_12945____closed__9() { +static lean_object* _init_l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_MatchEqs___hyg_13691____closed__9() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_MatchEqs___hyg_12945____closed__8; -x_2 = l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_MatchEqs___hyg_12945____closed__1; +x_1 = l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_MatchEqs___hyg_13691____closed__8; +x_2 = l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_MatchEqs___hyg_13691____closed__1; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_MatchEqs___hyg_12945____closed__10() { +static lean_object* _init_l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_MatchEqs___hyg_13691____closed__10() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_MatchEqs___hyg_12945____closed__9; +x_1 = l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_MatchEqs___hyg_13691____closed__9; x_2 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_simpH_x3f___lambda__3___closed__1; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_MatchEqs___hyg_12945____closed__11() { +static lean_object* _init_l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_MatchEqs___hyg_13691____closed__11() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_MatchEqs___hyg_12945____closed__10; +x_1 = l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_MatchEqs___hyg_13691____closed__10; x_2 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_simpH_x3f___lambda__3___closed__2; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_MatchEqs___hyg_12945____closed__12() { +static lean_object* _init_l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_MatchEqs___hyg_13691____closed__12() { _start: { lean_object* x_1; @@ -40048,17 +43454,17 @@ x_1 = lean_mk_string_from_bytes("MatchEqs", 8); return x_1; } } -static lean_object* _init_l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_MatchEqs___hyg_12945____closed__13() { +static lean_object* _init_l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_MatchEqs___hyg_13691____closed__13() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_MatchEqs___hyg_12945____closed__11; -x_2 = l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_MatchEqs___hyg_12945____closed__12; +x_1 = l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_MatchEqs___hyg_13691____closed__11; +x_2 = l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_MatchEqs___hyg_13691____closed__12; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_MatchEqs___hyg_12945____closed__14() { +static lean_object* _init_l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_MatchEqs___hyg_13691____closed__14() { _start: { lean_object* x_1; @@ -40066,33 +43472,33 @@ x_1 = lean_mk_string_from_bytes("_hyg", 4); return x_1; } } -static lean_object* _init_l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_MatchEqs___hyg_12945____closed__15() { +static lean_object* _init_l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_MatchEqs___hyg_13691____closed__15() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_MatchEqs___hyg_12945____closed__13; -x_2 = l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_MatchEqs___hyg_12945____closed__14; +x_1 = l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_MatchEqs___hyg_13691____closed__13; +x_2 = l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_MatchEqs___hyg_13691____closed__14; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_MatchEqs___hyg_12945____closed__16() { +static lean_object* _init_l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_MatchEqs___hyg_13691____closed__16() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_MatchEqs___hyg_12945____closed__15; -x_2 = lean_unsigned_to_nat(12945u); +x_1 = l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_MatchEqs___hyg_13691____closed__15; +x_2 = lean_unsigned_to_nat(13691u); x_3 = l_Lean_Name_num___override(x_1, x_2); return x_3; } } -LEAN_EXPORT lean_object* l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_MatchEqs___hyg_12945_(lean_object* x_1) { +LEAN_EXPORT lean_object* l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_MatchEqs___hyg_13691_(lean_object* x_1) { _start: { lean_object* x_2; uint8_t x_3; lean_object* x_4; lean_object* x_5; x_2 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_simpH_x3f___lambda__3___closed__4; x_3 = 0; -x_4 = l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_MatchEqs___hyg_12945____closed__16; +x_4 = l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_MatchEqs___hyg_13691____closed__16; x_5 = l_Lean_registerTraceClass(x_2, x_3, x_4, x_1); return x_5; } @@ -40134,6 +43540,10 @@ lean_dec_ref(res); res = initialize_Lean_Meta_Tactic_Contradiction(builtin, lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +l_Array_forInUnsafe_loop___at___private_Lean_Meta_Match_MatchEqs_0__Lean_MVarId_contradictionQuick___spec__13___lambda__3___closed__1 = _init_l_Array_forInUnsafe_loop___at___private_Lean_Meta_Match_MatchEqs_0__Lean_MVarId_contradictionQuick___spec__13___lambda__3___closed__1(); +lean_mark_persistent(l_Array_forInUnsafe_loop___at___private_Lean_Meta_Match_MatchEqs_0__Lean_MVarId_contradictionQuick___spec__13___lambda__3___closed__1); +l___private_Lean_Meta_Match_MatchEqs_0__Lean_MVarId_contradictionQuick___lambda__2___closed__1 = _init_l___private_Lean_Meta_Match_MatchEqs_0__Lean_MVarId_contradictionQuick___lambda__2___closed__1(); +lean_mark_persistent(l___private_Lean_Meta_Match_MatchEqs_0__Lean_MVarId_contradictionQuick___lambda__2___closed__1); l_Lean_Meta_casesOnStuckLHS_findFVar_x3f___closed__1 = _init_l_Lean_Meta_casesOnStuckLHS_findFVar_x3f___closed__1(); lean_mark_persistent(l_Lean_Meta_casesOnStuckLHS_findFVar_x3f___closed__1); l_Lean_Meta_casesOnStuckLHS___lambda__1___closed__1 = _init_l_Lean_Meta_casesOnStuckLHS___lambda__1___closed__1(); @@ -40320,8 +43730,6 @@ l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_injectionAny___lambda__2 lean_mark_persistent(l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_injectionAny___lambda__2___closed__1); l_Subarray_forInUnsafe_loop___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_isCastEqRec___spec__2___closed__1 = _init_l_Subarray_forInUnsafe_loop___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_isCastEqRec___spec__2___closed__1(); lean_mark_persistent(l_Subarray_forInUnsafe_loop___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_isCastEqRec___spec__2___closed__1); -l_Subarray_forInUnsafe_loop___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_isCastEqRec___spec__2___closed__2 = _init_l_Subarray_forInUnsafe_loop___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_isCastEqRec___spec__2___closed__2(); -lean_mark_persistent(l_Subarray_forInUnsafe_loop___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_isCastEqRec___spec__2___closed__2); l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_isCastEqRec___lambda__2___closed__1 = _init_l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_isCastEqRec___lambda__2___closed__1(); lean_mark_persistent(l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_isCastEqRec___lambda__2___closed__1); l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_isCastEqRec___closed__1 = _init_l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_isCastEqRec___closed__1(); @@ -40546,39 +43954,39 @@ l_Lean_PersistentHashMap_findAux___at_Lean_Meta_Match_getEquationsForImpl___spec l_Lean_PersistentHashMap_findAux___at_Lean_Meta_Match_getEquationsForImpl___spec__2___closed__2 = _init_l_Lean_PersistentHashMap_findAux___at_Lean_Meta_Match_getEquationsForImpl___spec__2___closed__2(); l_Lean_Meta_Match_getEquationsForImpl___closed__1 = _init_l_Lean_Meta_Match_getEquationsForImpl___closed__1(); lean_mark_persistent(l_Lean_Meta_Match_getEquationsForImpl___closed__1); -l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_MatchEqs___hyg_12945____closed__1 = _init_l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_MatchEqs___hyg_12945____closed__1(); -lean_mark_persistent(l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_MatchEqs___hyg_12945____closed__1); -l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_MatchEqs___hyg_12945____closed__2 = _init_l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_MatchEqs___hyg_12945____closed__2(); -lean_mark_persistent(l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_MatchEqs___hyg_12945____closed__2); -l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_MatchEqs___hyg_12945____closed__3 = _init_l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_MatchEqs___hyg_12945____closed__3(); -lean_mark_persistent(l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_MatchEqs___hyg_12945____closed__3); -l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_MatchEqs___hyg_12945____closed__4 = _init_l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_MatchEqs___hyg_12945____closed__4(); -lean_mark_persistent(l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_MatchEqs___hyg_12945____closed__4); -l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_MatchEqs___hyg_12945____closed__5 = _init_l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_MatchEqs___hyg_12945____closed__5(); -lean_mark_persistent(l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_MatchEqs___hyg_12945____closed__5); -l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_MatchEqs___hyg_12945____closed__6 = _init_l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_MatchEqs___hyg_12945____closed__6(); -lean_mark_persistent(l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_MatchEqs___hyg_12945____closed__6); -l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_MatchEqs___hyg_12945____closed__7 = _init_l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_MatchEqs___hyg_12945____closed__7(); -lean_mark_persistent(l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_MatchEqs___hyg_12945____closed__7); -l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_MatchEqs___hyg_12945____closed__8 = _init_l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_MatchEqs___hyg_12945____closed__8(); -lean_mark_persistent(l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_MatchEqs___hyg_12945____closed__8); -l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_MatchEqs___hyg_12945____closed__9 = _init_l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_MatchEqs___hyg_12945____closed__9(); -lean_mark_persistent(l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_MatchEqs___hyg_12945____closed__9); -l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_MatchEqs___hyg_12945____closed__10 = _init_l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_MatchEqs___hyg_12945____closed__10(); -lean_mark_persistent(l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_MatchEqs___hyg_12945____closed__10); -l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_MatchEqs___hyg_12945____closed__11 = _init_l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_MatchEqs___hyg_12945____closed__11(); -lean_mark_persistent(l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_MatchEqs___hyg_12945____closed__11); -l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_MatchEqs___hyg_12945____closed__12 = _init_l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_MatchEqs___hyg_12945____closed__12(); -lean_mark_persistent(l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_MatchEqs___hyg_12945____closed__12); -l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_MatchEqs___hyg_12945____closed__13 = _init_l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_MatchEqs___hyg_12945____closed__13(); -lean_mark_persistent(l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_MatchEqs___hyg_12945____closed__13); -l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_MatchEqs___hyg_12945____closed__14 = _init_l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_MatchEqs___hyg_12945____closed__14(); -lean_mark_persistent(l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_MatchEqs___hyg_12945____closed__14); -l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_MatchEqs___hyg_12945____closed__15 = _init_l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_MatchEqs___hyg_12945____closed__15(); -lean_mark_persistent(l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_MatchEqs___hyg_12945____closed__15); -l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_MatchEqs___hyg_12945____closed__16 = _init_l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_MatchEqs___hyg_12945____closed__16(); -lean_mark_persistent(l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_MatchEqs___hyg_12945____closed__16); -if (builtin) {res = l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_MatchEqs___hyg_12945_(lean_io_mk_world()); +l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_MatchEqs___hyg_13691____closed__1 = _init_l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_MatchEqs___hyg_13691____closed__1(); +lean_mark_persistent(l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_MatchEqs___hyg_13691____closed__1); +l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_MatchEqs___hyg_13691____closed__2 = _init_l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_MatchEqs___hyg_13691____closed__2(); +lean_mark_persistent(l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_MatchEqs___hyg_13691____closed__2); +l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_MatchEqs___hyg_13691____closed__3 = _init_l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_MatchEqs___hyg_13691____closed__3(); +lean_mark_persistent(l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_MatchEqs___hyg_13691____closed__3); +l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_MatchEqs___hyg_13691____closed__4 = _init_l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_MatchEqs___hyg_13691____closed__4(); +lean_mark_persistent(l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_MatchEqs___hyg_13691____closed__4); +l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_MatchEqs___hyg_13691____closed__5 = _init_l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_MatchEqs___hyg_13691____closed__5(); +lean_mark_persistent(l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_MatchEqs___hyg_13691____closed__5); +l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_MatchEqs___hyg_13691____closed__6 = _init_l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_MatchEqs___hyg_13691____closed__6(); +lean_mark_persistent(l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_MatchEqs___hyg_13691____closed__6); +l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_MatchEqs___hyg_13691____closed__7 = _init_l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_MatchEqs___hyg_13691____closed__7(); +lean_mark_persistent(l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_MatchEqs___hyg_13691____closed__7); +l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_MatchEqs___hyg_13691____closed__8 = _init_l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_MatchEqs___hyg_13691____closed__8(); +lean_mark_persistent(l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_MatchEqs___hyg_13691____closed__8); +l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_MatchEqs___hyg_13691____closed__9 = _init_l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_MatchEqs___hyg_13691____closed__9(); +lean_mark_persistent(l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_MatchEqs___hyg_13691____closed__9); +l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_MatchEqs___hyg_13691____closed__10 = _init_l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_MatchEqs___hyg_13691____closed__10(); +lean_mark_persistent(l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_MatchEqs___hyg_13691____closed__10); +l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_MatchEqs___hyg_13691____closed__11 = _init_l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_MatchEqs___hyg_13691____closed__11(); +lean_mark_persistent(l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_MatchEqs___hyg_13691____closed__11); +l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_MatchEqs___hyg_13691____closed__12 = _init_l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_MatchEqs___hyg_13691____closed__12(); +lean_mark_persistent(l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_MatchEqs___hyg_13691____closed__12); +l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_MatchEqs___hyg_13691____closed__13 = _init_l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_MatchEqs___hyg_13691____closed__13(); +lean_mark_persistent(l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_MatchEqs___hyg_13691____closed__13); +l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_MatchEqs___hyg_13691____closed__14 = _init_l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_MatchEqs___hyg_13691____closed__14(); +lean_mark_persistent(l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_MatchEqs___hyg_13691____closed__14); +l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_MatchEqs___hyg_13691____closed__15 = _init_l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_MatchEqs___hyg_13691____closed__15(); +lean_mark_persistent(l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_MatchEqs___hyg_13691____closed__15); +l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_MatchEqs___hyg_13691____closed__16 = _init_l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_MatchEqs___hyg_13691____closed__16(); +lean_mark_persistent(l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_MatchEqs___hyg_13691____closed__16); +if (builtin) {res = l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_MatchEqs___hyg_13691_(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)); diff --git a/stage0/stdlib/Lean/Meta/Match/MatcherApp.c b/stage0/stdlib/Lean/Meta/Match/MatcherApp.c new file mode 100644 index 0000000000..464480c727 --- /dev/null +++ b/stage0/stdlib/Lean/Meta/Match/MatcherApp.c @@ -0,0 +1,33 @@ +// Lean compiler output +// Module: Lean.Meta.Match.MatcherApp +// Imports: Lean.Meta.Match.MatcherApp.Basic Lean.Meta.Match.MatcherApp.Transform +#include +#if defined(__clang__) +#pragma clang diagnostic ignored "-Wunused-parameter" +#pragma clang diagnostic ignored "-Wunused-label" +#elif defined(__GNUC__) && !defined(__CLANG__) +#pragma GCC diagnostic ignored "-Wunused-parameter" +#pragma GCC diagnostic ignored "-Wunused-label" +#pragma GCC diagnostic ignored "-Wunused-but-set-variable" +#endif +#ifdef __cplusplus +extern "C" { +#endif +lean_object* initialize_Lean_Meta_Match_MatcherApp_Basic(uint8_t builtin, lean_object*); +lean_object* initialize_Lean_Meta_Match_MatcherApp_Transform(uint8_t builtin, lean_object*); +static bool _G_initialized = false; +LEAN_EXPORT lean_object* initialize_Lean_Meta_Match_MatcherApp(uint8_t builtin, lean_object* w) { +lean_object * res; +if (_G_initialized) return lean_io_result_mk_ok(lean_box(0)); +_G_initialized = true; +res = initialize_Lean_Meta_Match_MatcherApp_Basic(builtin, lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +res = initialize_Lean_Meta_Match_MatcherApp_Transform(builtin, lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +return lean_io_result_mk_ok(lean_box(0)); +} +#ifdef __cplusplus +} +#endif diff --git a/stage0/stdlib/Lean/Meta/Match/MatcherApp/Basic.c b/stage0/stdlib/Lean/Meta/Match/MatcherApp/Basic.c new file mode 100644 index 0000000000..bb4ff3fa7a --- /dev/null +++ b/stage0/stdlib/Lean/Meta/Match/MatcherApp/Basic.c @@ -0,0 +1,1318 @@ +// Lean compiler output +// Module: Lean.Meta.Match.MatcherApp.Basic +// Imports: Lean.Meta.Match.MatcherInfo +#include +#if defined(__clang__) +#pragma clang diagnostic ignored "-Wunused-parameter" +#pragma clang diagnostic ignored "-Wunused-label" +#elif defined(__GNUC__) && !defined(__CLANG__) +#pragma GCC diagnostic ignored "-Wunused-parameter" +#pragma GCC diagnostic ignored "-Wunused-label" +#pragma GCC diagnostic ignored "-Wunused-but-set-variable" +#endif +#ifdef __cplusplus +extern "C" { +#endif +lean_object* l_Lean_Expr_const___override(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_List_forIn_loop___at_Lean_Meta_matchMatcherApp_x3f___spec__8___rarg___lambda__2___boxed(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Init_Util_0__outOfBounds___rarg(lean_object*); +LEAN_EXPORT lean_object* l_List_forIn_loop___at_Lean_Meta_matchMatcherApp_x3f___spec__8(lean_object*); +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_Meta_matchMatcherApp_x3f___rarg(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t); +lean_object* l___private_Lean_Expr_0__Lean_Expr_getAppNumArgsAux(lean_object*, lean_object*); +static lean_object* l_List_forIn_loop___at_Lean_Meta_matchMatcherApp_x3f___spec__8___rarg___lambda__3___closed__4; +LEAN_EXPORT lean_object* l_Lean_Meta_matchMatcherApp_x3f___rarg___lambda__8___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_List_forIn_loop___at_Lean_Meta_matchMatcherApp_x3f___spec__8___rarg___lambda__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_List_forIn_loop___at_Lean_Meta_matchMatcherApp_x3f___spec__8___rarg___lambda__2(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Expr_sort___override(lean_object*); +lean_object* lean_array_push(lean_object*, lean_object*); +lean_object* l_Array_toSubarray___rarg(lean_object*, lean_object*, lean_object*); +lean_object* lean_mk_array(lean_object*, lean_object*); +lean_object* lean_array_fget(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_List_forIn_loop___at_Lean_Meta_matchMatcherApp_x3f___spec__8___rarg___lambda__1(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Meta_Match_MatcherInfo_arity(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_matchMatcherApp_x3f___rarg___lambda__5(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_panic___at_Lean_Meta_matchMatcherApp_x3f___spec__6___rarg(lean_object*, lean_object*); +static lean_object* l_List_forIn_loop___at_Lean_Meta_matchMatcherApp_x3f___spec__8___rarg___lambda__3___closed__2; +LEAN_EXPORT lean_object* l_Lean_Meta_matchMatcherApp_x3f___rarg___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l_instInhabitedPUnit; +LEAN_EXPORT lean_object* l_panic___at_Lean_Meta_matchMatcherApp_x3f___spec__2___rarg(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_panic___at_Lean_Meta_matchMatcherApp_x3f___spec__7___rarg(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_matchMatcherApp_x3f___rarg___lambda__3(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_Lean_Meta_matchMatcherApp_x3f___spec__5(lean_object*); +uint8_t lean_nat_dec_eq(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_matchMatcherApp_x3f___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_matchMatcherApp_x3f___rarg___lambda__7___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_panic___at_Lean_Meta_matchMatcherApp_x3f___spec__3___rarg(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_matchMatcherApp_x3f___rarg___lambda__8(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Name_getPrefix(lean_object*); +lean_object* l_Lean_Meta_Match_MatcherInfo_numAlts(lean_object*); +static lean_object* l_List_forIn_loop___at_Lean_Meta_matchMatcherApp_x3f___spec__8___rarg___lambda__3___closed__3; +lean_object* lean_array_to_list(lean_object*, lean_object*); +lean_object* l_instInhabited___rarg(lean_object*, lean_object*); +static lean_object* l_List_forIn_loop___at_Lean_Meta_matchMatcherApp_x3f___spec__8___rarg___lambda__3___closed__1; +LEAN_EXPORT lean_object* l_Lean_Meta_matchMatcherApp_x3f___rarg___lambda__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l_Lean_levelZero; +extern lean_object* l_Lean_instInhabitedExpr; +lean_object* l_List_lengthTRAux___rarg(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_List_forIn_loop___at_Lean_Meta_matchMatcherApp_x3f___spec__8___rarg___lambda__1___boxed(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_matchMatcherApp_x3f(lean_object*); +lean_object* l___private_Init_Util_0__mkPanicMessageWithDecl(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_matchMatcherApp_x3f___rarg___lambda__6(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_matchMatcherApp_x3f___rarg___lambda__1(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_List_forIn_loop___at_Lean_Meta_matchMatcherApp_x3f___spec__8___rarg___lambda__3(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_extract___rarg(lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Meta_matchMatcherApp_x3f___rarg___lambda__4___closed__1; +LEAN_EXPORT lean_object* l_List_forIn_loop___at_Lean_Meta_matchMatcherApp_x3f___spec__8___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_getConstInfo___rarg(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Expr_app___override(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_panic___at_Lean_Meta_matchMatcherApp_x3f___spec__1(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_matchMatcherApp_x3f___rarg___lambda__1___boxed(lean_object*, lean_object*); +uint8_t lean_nat_dec_lt(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_panic___at_Lean_Meta_matchMatcherApp_x3f___spec__2(lean_object*); +LEAN_EXPORT lean_object* l_panic___at_Lean_Meta_matchMatcherApp_x3f___spec__6(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_matchMatcherApp_x3f___rarg___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_Lean_Meta_matchMatcherApp_x3f___rarg___lambda__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_Meta_matchMatcherApp_x3f___rarg___lambda__3___closed__2; +LEAN_EXPORT lean_object* l_panic___at_Lean_Meta_matchMatcherApp_x3f___spec__5___rarg(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_toExpr(lean_object*); +lean_object* lean_panic_fn(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_panic___at_Lean_Meta_matchMatcherApp_x3f___spec__4___rarg(lean_object*, lean_object*); +lean_object* lean_nat_sub(lean_object*, lean_object*); +lean_object* l_Lean_Expr_getAppFn(lean_object*); +LEAN_EXPORT lean_object* l_panic___at_Lean_Meta_matchMatcherApp_x3f___spec__1___rarg(lean_object*, lean_object*); +lean_object* l_Array_ofSubarray___rarg(lean_object*); +LEAN_EXPORT lean_object* l_panic___at_Lean_Meta_matchMatcherApp_x3f___spec__4(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_matchMatcherApp_x3f___rarg___lambda__7(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_List_redLength___rarg(lean_object*); +lean_object* l___private_Lean_Expr_0__Lean_Expr_getAppArgsAux(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_panic___at_Lean_Meta_matchMatcherApp_x3f___spec__7(lean_object*); +lean_object* lean_array_get_size(lean_object*); +uint8_t lean_nat_dec_le(lean_object*, lean_object*); +lean_object* lean_nat_add(lean_object*, lean_object*); +static lean_object* l_Lean_Meta_matchMatcherApp_x3f___rarg___lambda__3___closed__1; +lean_object* l_Lean_InductiveVal_numCtors(lean_object*); +uint8_t l_Lean_isCasesOnRecursor(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_panic___at_Lean_Meta_matchMatcherApp_x3f___spec__3(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_matchMatcherApp_x3f___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* l_Lean_Meta_getMatcherInfo_x3f___rarg(lean_object*, lean_object*, lean_object*); +lean_object* l_List_toArrayAux___rarg(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_panic___at_Lean_Meta_matchMatcherApp_x3f___spec__1___rarg(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_3 = l_instInhabitedPUnit; +x_4 = l_instInhabited___rarg(x_1, x_3); +x_5 = lean_panic_fn(x_4, x_2); +return x_5; +} +} +LEAN_EXPORT lean_object* l_panic___at_Lean_Meta_matchMatcherApp_x3f___spec__1(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = lean_alloc_closure((void*)(l_panic___at_Lean_Meta_matchMatcherApp_x3f___spec__1___rarg), 2, 0); +return x_2; +} +} +LEAN_EXPORT lean_object* l_panic___at_Lean_Meta_matchMatcherApp_x3f___spec__2___rarg(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_3 = l_instInhabitedPUnit; +x_4 = l_instInhabited___rarg(x_1, x_3); +x_5 = lean_panic_fn(x_4, x_2); +return x_5; +} +} +LEAN_EXPORT lean_object* l_panic___at_Lean_Meta_matchMatcherApp_x3f___spec__2(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = lean_alloc_closure((void*)(l_panic___at_Lean_Meta_matchMatcherApp_x3f___spec__2___rarg), 2, 0); +return x_2; +} +} +LEAN_EXPORT lean_object* l_panic___at_Lean_Meta_matchMatcherApp_x3f___spec__3___rarg(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_3 = l_instInhabitedPUnit; +x_4 = l_instInhabited___rarg(x_1, x_3); +x_5 = lean_panic_fn(x_4, x_2); +return x_5; +} +} +LEAN_EXPORT lean_object* l_panic___at_Lean_Meta_matchMatcherApp_x3f___spec__3(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = lean_alloc_closure((void*)(l_panic___at_Lean_Meta_matchMatcherApp_x3f___spec__3___rarg), 2, 0); +return x_2; +} +} +LEAN_EXPORT lean_object* l_panic___at_Lean_Meta_matchMatcherApp_x3f___spec__4___rarg(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_3 = l_instInhabitedPUnit; +x_4 = l_instInhabited___rarg(x_1, x_3); +x_5 = lean_panic_fn(x_4, x_2); +return x_5; +} +} +LEAN_EXPORT lean_object* l_panic___at_Lean_Meta_matchMatcherApp_x3f___spec__4(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = lean_alloc_closure((void*)(l_panic___at_Lean_Meta_matchMatcherApp_x3f___spec__4___rarg), 2, 0); +return x_2; +} +} +LEAN_EXPORT lean_object* l_panic___at_Lean_Meta_matchMatcherApp_x3f___spec__5___rarg(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_3 = l_instInhabitedPUnit; +x_4 = l_instInhabited___rarg(x_1, x_3); +x_5 = lean_panic_fn(x_4, x_2); +return x_5; +} +} +LEAN_EXPORT lean_object* l_panic___at_Lean_Meta_matchMatcherApp_x3f___spec__5(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = lean_alloc_closure((void*)(l_panic___at_Lean_Meta_matchMatcherApp_x3f___spec__5___rarg), 2, 0); +return x_2; +} +} +LEAN_EXPORT lean_object* l_panic___at_Lean_Meta_matchMatcherApp_x3f___spec__6___rarg(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_3 = l_instInhabitedPUnit; +x_4 = l_instInhabited___rarg(x_1, x_3); +x_5 = lean_panic_fn(x_4, x_2); +return x_5; +} +} +LEAN_EXPORT lean_object* l_panic___at_Lean_Meta_matchMatcherApp_x3f___spec__6(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = lean_alloc_closure((void*)(l_panic___at_Lean_Meta_matchMatcherApp_x3f___spec__6___rarg), 2, 0); +return x_2; +} +} +LEAN_EXPORT lean_object* l_panic___at_Lean_Meta_matchMatcherApp_x3f___spec__7___rarg(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_3 = l_instInhabitedPUnit; +x_4 = l_instInhabited___rarg(x_1, x_3); +x_5 = lean_panic_fn(x_4, x_2); +return x_5; +} +} +LEAN_EXPORT lean_object* l_panic___at_Lean_Meta_matchMatcherApp_x3f___spec__7(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = lean_alloc_closure((void*)(l_panic___at_Lean_Meta_matchMatcherApp_x3f___spec__7___rarg), 2, 0); +return x_2; +} +} +LEAN_EXPORT lean_object* l_List_forIn_loop___at_Lean_Meta_matchMatcherApp_x3f___spec__8___rarg___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; +x_4 = lean_ctor_get(x_1, 0); +lean_inc(x_4); +lean_dec(x_1); +x_5 = lean_ctor_get(x_4, 1); +lean_inc(x_5); +lean_dec(x_4); +x_6 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_6, 0, x_2); +x_7 = lean_apply_2(x_5, lean_box(0), x_6); +return x_7; +} +} +LEAN_EXPORT lean_object* l_List_forIn_loop___at_Lean_Meta_matchMatcherApp_x3f___spec__8___rarg___lambda__2(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +lean_object* x_4; lean_object* x_5; +x_4 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_4, 0, x_1); +x_5 = lean_apply_2(x_2, lean_box(0), x_4); +return x_5; +} +} +static lean_object* _init_l_List_forIn_loop___at_Lean_Meta_matchMatcherApp_x3f___spec__8___rarg___lambda__3___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("Lean.Meta.Match.MatcherApp.Basic", 32); +return x_1; +} +} +static lean_object* _init_l_List_forIn_loop___at_Lean_Meta_matchMatcherApp_x3f___spec__8___rarg___lambda__3___closed__2() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("Lean.Meta.matchMatcherApp\?", 26); +return x_1; +} +} +static lean_object* _init_l_List_forIn_loop___at_Lean_Meta_matchMatcherApp_x3f___spec__8___rarg___lambda__3___closed__3() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("unreachable code has been reached", 33); +return x_1; +} +} +static lean_object* _init_l_List_forIn_loop___at_Lean_Meta_matchMatcherApp_x3f___spec__8___rarg___lambda__3___closed__4() { +_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_List_forIn_loop___at_Lean_Meta_matchMatcherApp_x3f___spec__8___rarg___lambda__3___closed__1; +x_2 = l_List_forIn_loop___at_Lean_Meta_matchMatcherApp_x3f___spec__8___rarg___lambda__3___closed__2; +x_3 = lean_unsigned_to_nat(63u); +x_4 = lean_unsigned_to_nat(53u); +x_5 = l_List_forIn_loop___at_Lean_Meta_matchMatcherApp_x3f___spec__8___rarg___lambda__3___closed__3; +x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); +return x_6; +} +} +LEAN_EXPORT lean_object* l_List_forIn_loop___at_Lean_Meta_matchMatcherApp_x3f___spec__8___rarg___lambda__3(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +_start: +{ +switch (lean_obj_tag(x_4)) { +case 0: +{ +lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; +lean_dec(x_4); +x_5 = l_List_forIn_loop___at_Lean_Meta_matchMatcherApp_x3f___spec__8___rarg___lambda__3___closed__4; +lean_inc(x_1); +x_6 = l_panic___at_Lean_Meta_matchMatcherApp_x3f___spec__1___rarg(x_1, x_5); +x_7 = lean_alloc_closure((void*)(l_List_forIn_loop___at_Lean_Meta_matchMatcherApp_x3f___spec__8___rarg___lambda__1___boxed), 3, 2); +lean_closure_set(x_7, 0, x_1); +lean_closure_set(x_7, 1, x_2); +x_8 = lean_apply_4(x_3, lean_box(0), lean_box(0), x_6, x_7); +return x_8; +} +case 1: +{ +lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; +lean_dec(x_4); +x_9 = l_List_forIn_loop___at_Lean_Meta_matchMatcherApp_x3f___spec__8___rarg___lambda__3___closed__4; +lean_inc(x_1); +x_10 = l_panic___at_Lean_Meta_matchMatcherApp_x3f___spec__2___rarg(x_1, x_9); +x_11 = lean_alloc_closure((void*)(l_List_forIn_loop___at_Lean_Meta_matchMatcherApp_x3f___spec__8___rarg___lambda__1___boxed), 3, 2); +lean_closure_set(x_11, 0, x_1); +lean_closure_set(x_11, 1, x_2); +x_12 = lean_apply_4(x_3, lean_box(0), lean_box(0), x_10, x_11); +return x_12; +} +case 2: +{ +lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; +lean_dec(x_4); +x_13 = l_List_forIn_loop___at_Lean_Meta_matchMatcherApp_x3f___spec__8___rarg___lambda__3___closed__4; +lean_inc(x_1); +x_14 = l_panic___at_Lean_Meta_matchMatcherApp_x3f___spec__3___rarg(x_1, x_13); +x_15 = lean_alloc_closure((void*)(l_List_forIn_loop___at_Lean_Meta_matchMatcherApp_x3f___spec__8___rarg___lambda__1___boxed), 3, 2); +lean_closure_set(x_15, 0, x_1); +lean_closure_set(x_15, 1, x_2); +x_16 = lean_apply_4(x_3, lean_box(0), lean_box(0), x_14, x_15); +return x_16; +} +case 3: +{ +lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; +lean_dec(x_4); +x_17 = l_List_forIn_loop___at_Lean_Meta_matchMatcherApp_x3f___spec__8___rarg___lambda__3___closed__4; +lean_inc(x_1); +x_18 = l_panic___at_Lean_Meta_matchMatcherApp_x3f___spec__4___rarg(x_1, x_17); +x_19 = lean_alloc_closure((void*)(l_List_forIn_loop___at_Lean_Meta_matchMatcherApp_x3f___spec__8___rarg___lambda__1___boxed), 3, 2); +lean_closure_set(x_19, 0, x_1); +lean_closure_set(x_19, 1, x_2); +x_20 = lean_apply_4(x_3, lean_box(0), lean_box(0), x_18, x_19); +return x_20; +} +case 4: +{ +lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; +lean_dec(x_4); +x_21 = l_List_forIn_loop___at_Lean_Meta_matchMatcherApp_x3f___spec__8___rarg___lambda__3___closed__4; +lean_inc(x_1); +x_22 = l_panic___at_Lean_Meta_matchMatcherApp_x3f___spec__5___rarg(x_1, x_21); +x_23 = lean_alloc_closure((void*)(l_List_forIn_loop___at_Lean_Meta_matchMatcherApp_x3f___spec__8___rarg___lambda__1___boxed), 3, 2); +lean_closure_set(x_23, 0, x_1); +lean_closure_set(x_23, 1, x_2); +x_24 = lean_apply_4(x_3, lean_box(0), lean_box(0), x_22, x_23); +return x_24; +} +case 5: +{ +lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; +lean_dec(x_4); +x_25 = l_List_forIn_loop___at_Lean_Meta_matchMatcherApp_x3f___spec__8___rarg___lambda__3___closed__4; +lean_inc(x_1); +x_26 = l_panic___at_Lean_Meta_matchMatcherApp_x3f___spec__6___rarg(x_1, x_25); +x_27 = lean_alloc_closure((void*)(l_List_forIn_loop___at_Lean_Meta_matchMatcherApp_x3f___spec__8___rarg___lambda__1___boxed), 3, 2); +lean_closure_set(x_27, 0, x_1); +lean_closure_set(x_27, 1, x_2); +x_28 = lean_apply_4(x_3, lean_box(0), lean_box(0), x_26, x_27); +return x_28; +} +case 6: +{ +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; +x_29 = lean_ctor_get(x_4, 0); +lean_inc(x_29); +lean_dec(x_4); +x_30 = lean_ctor_get(x_29, 4); +lean_inc(x_30); +lean_dec(x_29); +x_31 = lean_array_push(x_2, x_30); +x_32 = lean_ctor_get(x_1, 0); +lean_inc(x_32); +lean_dec(x_1); +x_33 = lean_ctor_get(x_32, 1); +lean_inc(x_33); +lean_dec(x_32); +x_34 = lean_box(0); +lean_inc(x_33); +x_35 = lean_apply_2(x_33, lean_box(0), x_34); +x_36 = lean_alloc_closure((void*)(l_List_forIn_loop___at_Lean_Meta_matchMatcherApp_x3f___spec__8___rarg___lambda__2___boxed), 3, 2); +lean_closure_set(x_36, 0, x_31); +lean_closure_set(x_36, 1, x_33); +x_37 = lean_apply_4(x_3, lean_box(0), lean_box(0), x_35, x_36); +return x_37; +} +default: +{ +lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; +lean_dec(x_4); +x_38 = l_List_forIn_loop___at_Lean_Meta_matchMatcherApp_x3f___spec__8___rarg___lambda__3___closed__4; +lean_inc(x_1); +x_39 = l_panic___at_Lean_Meta_matchMatcherApp_x3f___spec__7___rarg(x_1, x_38); +x_40 = lean_alloc_closure((void*)(l_List_forIn_loop___at_Lean_Meta_matchMatcherApp_x3f___spec__8___rarg___lambda__1___boxed), 3, 2); +lean_closure_set(x_40, 0, x_1); +lean_closure_set(x_40, 1, x_2); +x_41 = lean_apply_4(x_3, lean_box(0), lean_box(0), x_39, x_40); +return x_41; +} +} +} +} +LEAN_EXPORT lean_object* l_List_forIn_loop___at_Lean_Meta_matchMatcherApp_x3f___spec__8___rarg___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) { +_start: +{ +if (lean_obj_tag(x_6) == 0) +{ +lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_7 = lean_ctor_get(x_6, 0); +lean_inc(x_7); +lean_dec(x_6); +x_8 = lean_ctor_get(x_1, 0); +lean_inc(x_8); +lean_dec(x_1); +x_9 = lean_ctor_get(x_8, 1); +lean_inc(x_9); +lean_dec(x_8); +x_10 = lean_apply_2(x_9, lean_box(0), x_7); +return x_10; +} +else +{ +lean_object* x_11; lean_object* x_12; +x_11 = lean_ctor_get(x_6, 0); +lean_inc(x_11); +lean_dec(x_6); +x_12 = l_List_forIn_loop___at_Lean_Meta_matchMatcherApp_x3f___spec__8___rarg(x_1, x_2, x_3, x_4, x_5, x_11); +return x_12; +} +} +} +LEAN_EXPORT lean_object* l_List_forIn_loop___at_Lean_Meta_matchMatcherApp_x3f___spec__8___rarg(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: +{ +if (lean_obj_tag(x_5) == 0) +{ +lean_object* x_7; lean_object* x_8; lean_object* x_9; +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_7 = lean_ctor_get(x_1, 0); +lean_inc(x_7); +lean_dec(x_1); +x_8 = lean_ctor_get(x_7, 1); +lean_inc(x_8); +lean_dec(x_7); +x_9 = lean_apply_2(x_8, lean_box(0), x_6); +return x_9; +} +else +{ +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_10 = lean_ctor_get(x_5, 0); +lean_inc(x_10); +x_11 = lean_ctor_get(x_5, 1); +lean_inc(x_11); +lean_dec(x_5); +x_12 = lean_ctor_get(x_1, 1); +lean_inc(x_12); +lean_inc(x_3); +lean_inc(x_2); +lean_inc(x_1); +x_13 = l_Lean_getConstInfo___rarg(x_1, x_2, x_3, x_10); +lean_inc(x_4); +lean_inc(x_1); +x_14 = lean_alloc_closure((void*)(l_List_forIn_loop___at_Lean_Meta_matchMatcherApp_x3f___spec__8___rarg___lambda__3), 4, 3); +lean_closure_set(x_14, 0, x_1); +lean_closure_set(x_14, 1, x_6); +lean_closure_set(x_14, 2, x_4); +lean_inc(x_4); +x_15 = lean_apply_4(x_4, lean_box(0), lean_box(0), x_13, x_14); +x_16 = lean_alloc_closure((void*)(l_List_forIn_loop___at_Lean_Meta_matchMatcherApp_x3f___spec__8___rarg___lambda__4), 6, 5); +lean_closure_set(x_16, 0, x_1); +lean_closure_set(x_16, 1, x_2); +lean_closure_set(x_16, 2, x_3); +lean_closure_set(x_16, 3, x_4); +lean_closure_set(x_16, 4, x_11); +x_17 = lean_apply_4(x_12, lean_box(0), lean_box(0), x_15, x_16); +return x_17; +} +} +} +LEAN_EXPORT lean_object* l_List_forIn_loop___at_Lean_Meta_matchMatcherApp_x3f___spec__8(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = lean_alloc_closure((void*)(l_List_forIn_loop___at_Lean_Meta_matchMatcherApp_x3f___spec__8___rarg), 6, 0); +return x_2; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_matchMatcherApp_x3f___rarg___lambda__1(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; +x_3 = lean_ctor_get(x_1, 0); +lean_inc(x_3); +lean_dec(x_1); +x_4 = lean_ctor_get(x_3, 1); +lean_inc(x_4); +lean_dec(x_3); +x_5 = lean_box(0); +x_6 = lean_apply_2(x_4, lean_box(0), x_5); +return x_6; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_matchMatcherApp_x3f___rarg___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) { +_start: +{ +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; +x_12 = lean_ctor_get(x_1, 0); +lean_inc(x_12); +lean_dec(x_1); +x_13 = lean_ctor_get(x_12, 1); +lean_inc(x_13); +lean_dec(x_12); +x_14 = l_List_redLength___rarg(x_2); +x_15 = lean_mk_empty_array_with_capacity(x_14); +lean_dec(x_14); +x_16 = l_List_toArrayAux___rarg(x_2, x_15); +x_17 = l_Array_ofSubarray___rarg(x_3); +x_18 = l_Array_ofSubarray___rarg(x_4); +x_19 = l_Array_ofSubarray___rarg(x_5); +x_20 = l_Array_ofSubarray___rarg(x_6); +x_21 = lean_alloc_ctor(0, 10, 0); +lean_ctor_set(x_21, 0, x_7); +lean_ctor_set(x_21, 1, x_16); +lean_ctor_set(x_21, 2, x_8); +lean_ctor_set(x_21, 3, x_9); +lean_ctor_set(x_21, 4, x_17); +lean_ctor_set(x_21, 5, x_10); +lean_ctor_set(x_21, 6, x_18); +lean_ctor_set(x_21, 7, x_11); +lean_ctor_set(x_21, 8, x_19); +lean_ctor_set(x_21, 9, x_20); +x_22 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_22, 0, x_21); +x_23 = lean_apply_2(x_13, lean_box(0), x_22); +return x_23; +} +} +static lean_object* _init_l_Lean_Meta_matchMatcherApp_x3f___rarg___lambda__3___closed__1() { +_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_matchMatcherApp_x3f___rarg___lambda__3___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = lean_unsigned_to_nat(0u); +x_2 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_matchMatcherApp_x3f___rarg___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; 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; 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; uint8_t x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; +x_10 = lean_ctor_get(x_1, 1); +lean_inc(x_10); +x_11 = lean_unsigned_to_nat(0u); +lean_inc(x_10); +lean_inc(x_2); +x_12 = l_Array_toSubarray___rarg(x_2, x_11, x_10); +x_13 = lean_array_get_size(x_2); +x_14 = lean_nat_dec_lt(x_10, x_13); +lean_dec(x_13); +x_15 = lean_unsigned_to_nat(1u); +x_16 = lean_nat_add(x_10, x_15); +x_17 = lean_ctor_get(x_1, 2); +lean_inc(x_17); +x_18 = lean_nat_add(x_16, x_17); +x_19 = lean_nat_add(x_18, x_15); +lean_dec(x_18); +lean_inc(x_19); +lean_inc(x_2); +x_20 = l_Array_toSubarray___rarg(x_2, x_16, x_19); +x_21 = lean_nat_add(x_17, x_15); +lean_dec(x_17); +x_22 = lean_box(0); +x_23 = lean_mk_array(x_21, x_22); +x_24 = l_Lean_InductiveVal_numCtors(x_1); +x_25 = lean_nat_add(x_19, x_24); +lean_dec(x_24); +lean_inc(x_25); +lean_inc(x_2); +x_26 = l_Array_toSubarray___rarg(x_2, x_19, x_25); +x_27 = lean_array_get_size(x_2); +lean_inc(x_2); +x_28 = l_Array_toSubarray___rarg(x_2, x_25, x_27); +x_29 = lean_ctor_get(x_1, 0); +lean_inc(x_29); +x_30 = lean_ctor_get(x_29, 1); +lean_inc(x_30); +lean_dec(x_29); +x_31 = l_List_lengthTRAux___rarg(x_30, x_11); +lean_dec(x_30); +x_32 = l_List_lengthTRAux___rarg(x_3, x_11); +x_33 = lean_nat_dec_eq(x_31, x_32); +lean_dec(x_32); +lean_dec(x_31); +x_34 = lean_ctor_get(x_1, 4); +lean_inc(x_34); +lean_dec(x_1); +x_35 = l_Lean_Meta_matchMatcherApp_x3f___rarg___lambda__3___closed__1; +lean_inc(x_7); +lean_inc(x_4); +x_36 = l_List_forIn_loop___at_Lean_Meta_matchMatcherApp_x3f___spec__8___rarg(x_4, x_5, x_6, x_7, x_34, x_35); +if (x_14 == 0) +{ +lean_object* x_37; lean_object* x_38; +lean_dec(x_10); +lean_dec(x_2); +x_37 = l_Lean_instInhabitedExpr; +x_38 = l___private_Init_Util_0__outOfBounds___rarg(x_37); +if (x_33 == 0) +{ +lean_object* x_39; lean_object* x_40; lean_object* x_41; +x_39 = l_Lean_Meta_matchMatcherApp_x3f___rarg___lambda__3___closed__2; +x_40 = lean_alloc_closure((void*)(l_Lean_Meta_matchMatcherApp_x3f___rarg___lambda__2), 11, 10); +lean_closure_set(x_40, 0, x_4); +lean_closure_set(x_40, 1, x_3); +lean_closure_set(x_40, 2, x_12); +lean_closure_set(x_40, 3, x_20); +lean_closure_set(x_40, 4, x_26); +lean_closure_set(x_40, 5, x_28); +lean_closure_set(x_40, 6, x_8); +lean_closure_set(x_40, 7, x_39); +lean_closure_set(x_40, 8, x_23); +lean_closure_set(x_40, 9, x_38); +x_41 = lean_apply_4(x_7, lean_box(0), lean_box(0), x_36, x_40); +return x_41; +} +else +{ +lean_object* x_42; lean_object* x_43; +x_42 = lean_alloc_closure((void*)(l_Lean_Meta_matchMatcherApp_x3f___rarg___lambda__2), 11, 10); +lean_closure_set(x_42, 0, x_4); +lean_closure_set(x_42, 1, x_3); +lean_closure_set(x_42, 2, x_12); +lean_closure_set(x_42, 3, x_20); +lean_closure_set(x_42, 4, x_26); +lean_closure_set(x_42, 5, x_28); +lean_closure_set(x_42, 6, x_8); +lean_closure_set(x_42, 7, x_22); +lean_closure_set(x_42, 8, x_23); +lean_closure_set(x_42, 9, x_38); +x_43 = lean_apply_4(x_7, lean_box(0), lean_box(0), x_36, x_42); +return x_43; +} +} +else +{ +lean_object* x_44; +x_44 = lean_array_fget(x_2, x_10); +lean_dec(x_10); +lean_dec(x_2); +if (x_33 == 0) +{ +lean_object* x_45; lean_object* x_46; lean_object* x_47; +x_45 = l_Lean_Meta_matchMatcherApp_x3f___rarg___lambda__3___closed__2; +x_46 = lean_alloc_closure((void*)(l_Lean_Meta_matchMatcherApp_x3f___rarg___lambda__2), 11, 10); +lean_closure_set(x_46, 0, x_4); +lean_closure_set(x_46, 1, x_3); +lean_closure_set(x_46, 2, x_12); +lean_closure_set(x_46, 3, x_20); +lean_closure_set(x_46, 4, x_26); +lean_closure_set(x_46, 5, x_28); +lean_closure_set(x_46, 6, x_8); +lean_closure_set(x_46, 7, x_45); +lean_closure_set(x_46, 8, x_23); +lean_closure_set(x_46, 9, x_44); +x_47 = lean_apply_4(x_7, lean_box(0), lean_box(0), x_36, x_46); +return x_47; +} +else +{ +lean_object* x_48; lean_object* x_49; +x_48 = lean_alloc_closure((void*)(l_Lean_Meta_matchMatcherApp_x3f___rarg___lambda__2), 11, 10); +lean_closure_set(x_48, 0, x_4); +lean_closure_set(x_48, 1, x_3); +lean_closure_set(x_48, 2, x_12); +lean_closure_set(x_48, 3, x_20); +lean_closure_set(x_48, 4, x_26); +lean_closure_set(x_48, 5, x_28); +lean_closure_set(x_48, 6, x_8); +lean_closure_set(x_48, 7, x_22); +lean_closure_set(x_48, 8, x_23); +lean_closure_set(x_48, 9, x_44); +x_49 = lean_apply_4(x_7, lean_box(0), lean_box(0), x_36, x_48); +return x_49; +} +} +} +} +static lean_object* _init_l_Lean_Meta_matchMatcherApp_x3f___rarg___lambda__4___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_levelZero; +x_2 = l_Lean_Expr_sort___override(x_1); +return x_2; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_matchMatcherApp_x3f___rarg___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) { +_start: +{ +if (lean_obj_tag(x_8) == 5) +{ +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; uint8_t x_26; +x_9 = lean_ctor_get(x_8, 0); +lean_inc(x_9); +lean_dec(x_8); +x_10 = lean_unsigned_to_nat(0u); +x_11 = l___private_Lean_Expr_0__Lean_Expr_getAppNumArgsAux(x_2, x_10); +x_12 = l_Lean_Meta_matchMatcherApp_x3f___rarg___lambda__4___closed__1; +lean_inc(x_11); +x_13 = lean_mk_array(x_11, x_12); +x_14 = lean_unsigned_to_nat(1u); +x_15 = lean_nat_sub(x_11, x_14); +lean_dec(x_11); +x_16 = l___private_Lean_Expr_0__Lean_Expr_getAppArgsAux(x_2, x_13, x_15); +lean_inc(x_6); +lean_inc(x_1); +lean_inc(x_16); +lean_inc(x_9); +x_17 = lean_alloc_closure((void*)(l_Lean_Meta_matchMatcherApp_x3f___rarg___lambda__3___boxed), 9, 8); +lean_closure_set(x_17, 0, x_9); +lean_closure_set(x_17, 1, x_16); +lean_closure_set(x_17, 2, x_3); +lean_closure_set(x_17, 3, x_1); +lean_closure_set(x_17, 4, x_4); +lean_closure_set(x_17, 5, x_5); +lean_closure_set(x_17, 6, x_6); +lean_closure_set(x_17, 7, x_7); +x_18 = lean_ctor_get(x_9, 1); +lean_inc(x_18); +x_19 = lean_nat_add(x_18, x_14); +lean_dec(x_18); +x_20 = lean_ctor_get(x_9, 2); +lean_inc(x_20); +x_21 = lean_nat_add(x_19, x_20); +lean_dec(x_20); +lean_dec(x_19); +x_22 = lean_nat_add(x_21, x_14); +lean_dec(x_21); +x_23 = l_Lean_InductiveVal_numCtors(x_9); +lean_dec(x_9); +x_24 = lean_nat_add(x_22, x_23); +lean_dec(x_23); +lean_dec(x_22); +x_25 = lean_array_get_size(x_16); +lean_dec(x_16); +x_26 = lean_nat_dec_le(x_24, x_25); +lean_dec(x_25); +lean_dec(x_24); +if (x_26 == 0) +{ +lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; +lean_dec(x_17); +lean_dec(x_6); +x_27 = lean_ctor_get(x_1, 0); +lean_inc(x_27); +lean_dec(x_1); +x_28 = lean_ctor_get(x_27, 1); +lean_inc(x_28); +lean_dec(x_27); +x_29 = lean_box(0); +x_30 = lean_apply_2(x_28, lean_box(0), x_29); +return x_30; +} +else +{ +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_1, 0); +lean_inc(x_31); +lean_dec(x_1); +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_6, lean_box(0), lean_box(0), x_34, x_17); +return x_35; +} +} +else +{ +lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; +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); +x_36 = lean_ctor_get(x_1, 0); +lean_inc(x_36); +lean_dec(x_1); +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); +return x_39; +} +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_matchMatcherApp_x3f___rarg___lambda__5(uint8_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, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +_start: +{ +if (x_1 == 0) +{ +lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* 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); +x_11 = lean_ctor_get(x_2, 0); +lean_inc(x_11); +lean_dec(x_2); +x_12 = lean_ctor_get(x_11, 1); +lean_inc(x_12); +lean_dec(x_11); +x_13 = lean_box(0); +x_14 = lean_apply_2(x_12, lean_box(0), x_13); +x_15 = lean_apply_4(x_4, lean_box(0), lean_box(0), x_14, x_3); +return x_15; +} +else +{ +uint8_t x_16; +lean_inc(x_5); +x_16 = l_Lean_isCasesOnRecursor(x_10, x_5); +if (x_16 == 0) +{ +lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +x_17 = lean_ctor_get(x_2, 0); +lean_inc(x_17); +lean_dec(x_2); +x_18 = lean_ctor_get(x_17, 1); +lean_inc(x_18); +lean_dec(x_17); +x_19 = lean_box(0); +x_20 = lean_apply_2(x_18, lean_box(0), x_19); +x_21 = lean_apply_4(x_4, lean_box(0), lean_box(0), x_20, x_3); +return x_21; +} +else +{ +lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; +lean_dec(x_3); +x_22 = l_Lean_Name_getPrefix(x_5); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_2); +x_23 = l_Lean_getConstInfo___rarg(x_2, x_6, x_7, x_22); +lean_inc(x_4); +x_24 = lean_alloc_closure((void*)(l_Lean_Meta_matchMatcherApp_x3f___rarg___lambda__4), 8, 7); +lean_closure_set(x_24, 0, x_2); +lean_closure_set(x_24, 1, x_8); +lean_closure_set(x_24, 2, x_9); +lean_closure_set(x_24, 3, x_6); +lean_closure_set(x_24, 4, x_7); +lean_closure_set(x_24, 5, x_4); +lean_closure_set(x_24, 6, x_5); +x_25 = lean_apply_4(x_4, lean_box(0), lean_box(0), x_23, x_24); +return x_25; +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_matchMatcherApp_x3f___rarg___lambda__6(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) { +_start: +{ +lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; +x_11 = lean_ctor_get(x_1, 0); +lean_inc(x_11); +x_12 = lean_box(x_2); +lean_inc(x_5); +x_13 = lean_alloc_closure((void*)(l_Lean_Meta_matchMatcherApp_x3f___rarg___lambda__5___boxed), 10, 9); +lean_closure_set(x_13, 0, x_12); +lean_closure_set(x_13, 1, x_3); +lean_closure_set(x_13, 2, x_4); +lean_closure_set(x_13, 3, x_5); +lean_closure_set(x_13, 4, x_6); +lean_closure_set(x_13, 5, x_1); +lean_closure_set(x_13, 6, x_7); +lean_closure_set(x_13, 7, x_8); +lean_closure_set(x_13, 8, x_9); +x_14 = lean_apply_4(x_5, lean_box(0), lean_box(0), x_11, x_13); +return x_14; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_matchMatcherApp_x3f___rarg___lambda__7(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; 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; uint8_t 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; +x_7 = lean_ctor_get(x_1, 0); +lean_inc(x_7); +lean_dec(x_1); +x_8 = lean_ctor_get(x_7, 1); +lean_inc(x_8); +lean_dec(x_7); +x_9 = l_List_redLength___rarg(x_2); +x_10 = lean_mk_empty_array_with_capacity(x_9); +lean_dec(x_9); +x_11 = l_List_toArrayAux___rarg(x_2, x_10); +x_12 = lean_ctor_get(x_3, 3); +x_13 = lean_ctor_get(x_3, 4); +x_14 = lean_ctor_get(x_3, 0); +x_15 = lean_unsigned_to_nat(0u); +x_16 = l_Array_extract___rarg(x_4, x_15, x_14); +x_17 = lean_array_get_size(x_4); +x_18 = lean_nat_dec_lt(x_14, x_17); +x_19 = lean_unsigned_to_nat(1u); +x_20 = lean_nat_add(x_14, x_19); +x_21 = lean_ctor_get(x_3, 1); +x_22 = lean_nat_add(x_20, x_21); +lean_inc(x_22); +lean_inc(x_4); +x_23 = l_Array_toSubarray___rarg(x_4, x_20, x_22); +x_24 = l_Array_ofSubarray___rarg(x_23); +x_25 = lean_ctor_get(x_3, 2); +x_26 = l_Lean_Meta_Match_MatcherInfo_numAlts(x_3); +x_27 = lean_nat_add(x_22, x_26); +lean_dec(x_26); +lean_inc(x_27); +lean_inc(x_4); +x_28 = l_Array_toSubarray___rarg(x_4, x_22, x_27); +x_29 = l_Array_ofSubarray___rarg(x_28); +lean_inc(x_4); +x_30 = l_Array_toSubarray___rarg(x_4, x_27, x_17); +x_31 = l_Array_ofSubarray___rarg(x_30); +if (x_18 == 0) +{ +lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; +lean_dec(x_4); +x_32 = l_Lean_instInhabitedExpr; +x_33 = l___private_Init_Util_0__outOfBounds___rarg(x_32); +lean_inc(x_25); +lean_inc(x_13); +lean_inc(x_12); +x_34 = lean_alloc_ctor(0, 10, 0); +lean_ctor_set(x_34, 0, x_5); +lean_ctor_set(x_34, 1, x_11); +lean_ctor_set(x_34, 2, x_12); +lean_ctor_set(x_34, 3, x_13); +lean_ctor_set(x_34, 4, x_16); +lean_ctor_set(x_34, 5, x_33); +lean_ctor_set(x_34, 6, x_24); +lean_ctor_set(x_34, 7, x_25); +lean_ctor_set(x_34, 8, x_29); +lean_ctor_set(x_34, 9, x_31); +x_35 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_35, 0, x_34); +x_36 = lean_apply_2(x_8, lean_box(0), x_35); +return x_36; +} +else +{ +lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; +x_37 = lean_array_fget(x_4, x_14); +lean_dec(x_4); +lean_inc(x_25); +lean_inc(x_13); +lean_inc(x_12); +x_38 = lean_alloc_ctor(0, 10, 0); +lean_ctor_set(x_38, 0, x_5); +lean_ctor_set(x_38, 1, x_11); +lean_ctor_set(x_38, 2, x_12); +lean_ctor_set(x_38, 3, x_13); +lean_ctor_set(x_38, 4, x_16); +lean_ctor_set(x_38, 5, x_37); +lean_ctor_set(x_38, 6, x_24); +lean_ctor_set(x_38, 7, x_25); +lean_ctor_set(x_38, 8, x_29); +lean_ctor_set(x_38, 9, x_31); +x_39 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_39, 0, x_38); +x_40 = lean_apply_2(x_8, lean_box(0), x_39); +return x_40; +} +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_matchMatcherApp_x3f___rarg___lambda__8(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) { +_start: +{ +if (lean_obj_tag(x_10) == 0) +{ +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_11 = lean_box(x_2); +lean_inc(x_5); +lean_inc(x_3); +x_12 = lean_alloc_closure((void*)(l_Lean_Meta_matchMatcherApp_x3f___rarg___lambda__6___boxed), 10, 9); +lean_closure_set(x_12, 0, x_1); +lean_closure_set(x_12, 1, x_11); +lean_closure_set(x_12, 2, x_3); +lean_closure_set(x_12, 3, x_4); +lean_closure_set(x_12, 4, x_5); +lean_closure_set(x_12, 5, x_6); +lean_closure_set(x_12, 6, x_7); +lean_closure_set(x_12, 7, x_8); +lean_closure_set(x_12, 8, x_9); +x_13 = lean_ctor_get(x_3, 0); +lean_inc(x_13); +lean_dec(x_3); +x_14 = lean_ctor_get(x_13, 1); +lean_inc(x_14); +lean_dec(x_13); +x_15 = lean_box(0); +x_16 = lean_apply_2(x_14, lean_box(0), x_15); +x_17 = lean_apply_4(x_5, lean_box(0), lean_box(0), x_16, x_12); +return x_17; +} +else +{ +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; uint8_t x_29; +lean_dec(x_7); +lean_dec(x_4); +lean_dec(x_1); +x_18 = lean_ctor_get(x_10, 0); +lean_inc(x_18); +lean_dec(x_10); +x_19 = lean_unsigned_to_nat(0u); +x_20 = l___private_Lean_Expr_0__Lean_Expr_getAppNumArgsAux(x_8, x_19); +x_21 = l_Lean_Meta_matchMatcherApp_x3f___rarg___lambda__4___closed__1; +lean_inc(x_20); +x_22 = lean_mk_array(x_20, x_21); +x_23 = lean_unsigned_to_nat(1u); +x_24 = lean_nat_sub(x_20, x_23); +lean_dec(x_20); +x_25 = l___private_Lean_Expr_0__Lean_Expr_getAppArgsAux(x_8, x_22, x_24); +lean_inc(x_25); +lean_inc(x_18); +lean_inc(x_3); +x_26 = lean_alloc_closure((void*)(l_Lean_Meta_matchMatcherApp_x3f___rarg___lambda__7___boxed), 6, 5); +lean_closure_set(x_26, 0, x_3); +lean_closure_set(x_26, 1, x_9); +lean_closure_set(x_26, 2, x_18); +lean_closure_set(x_26, 3, x_25); +lean_closure_set(x_26, 4, x_6); +x_27 = lean_array_get_size(x_25); +lean_dec(x_25); +x_28 = l_Lean_Meta_Match_MatcherInfo_arity(x_18); +lean_dec(x_18); +x_29 = lean_nat_dec_lt(x_27, x_28); +lean_dec(x_28); +lean_dec(x_27); +if (x_29 == 0) +{ +lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; +x_30 = lean_ctor_get(x_3, 0); +lean_inc(x_30); +lean_dec(x_3); +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_5, lean_box(0), lean_box(0), x_33, x_26); +return x_34; +} +else +{ +lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; +lean_dec(x_26); +lean_dec(x_5); +x_35 = lean_ctor_get(x_3, 0); +lean_inc(x_35); +lean_dec(x_3); +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); +return x_38; +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_matchMatcherApp_x3f___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, uint8_t x_5) { +_start: +{ +lean_object* x_6; lean_object* x_7; +lean_inc(x_1); +x_6 = lean_alloc_closure((void*)(l_Lean_Meta_matchMatcherApp_x3f___rarg___lambda__1___boxed), 2, 1); +lean_closure_set(x_6, 0, x_1); +x_7 = l_Lean_Expr_getAppFn(x_4); +if (lean_obj_tag(x_7) == 4) +{ +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_8 = lean_ctor_get(x_7, 0); +lean_inc(x_8); +x_9 = lean_ctor_get(x_7, 1); +lean_inc(x_9); +lean_dec(x_7); +x_10 = lean_ctor_get(x_1, 1); +lean_inc(x_10); +lean_inc(x_8); +lean_inc(x_2); +lean_inc(x_1); +x_11 = l_Lean_Meta_getMatcherInfo_x3f___rarg(x_1, x_2, x_8); +x_12 = lean_box(x_5); +lean_inc(x_10); +x_13 = lean_alloc_closure((void*)(l_Lean_Meta_matchMatcherApp_x3f___rarg___lambda__8___boxed), 10, 9); +lean_closure_set(x_13, 0, x_2); +lean_closure_set(x_13, 1, x_12); +lean_closure_set(x_13, 2, x_1); +lean_closure_set(x_13, 3, x_6); +lean_closure_set(x_13, 4, x_10); +lean_closure_set(x_13, 5, x_8); +lean_closure_set(x_13, 6, x_3); +lean_closure_set(x_13, 7, x_4); +lean_closure_set(x_13, 8, x_9); +x_14 = lean_apply_4(x_10, lean_box(0), lean_box(0), x_11, x_13); +return x_14; +} +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_dec(x_7); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_15 = lean_ctor_get(x_1, 1); +lean_inc(x_15); +x_16 = lean_ctor_get(x_1, 0); +lean_inc(x_16); +lean_dec(x_1); +x_17 = lean_ctor_get(x_16, 1); +lean_inc(x_17); +lean_dec(x_16); +x_18 = lean_box(0); +x_19 = lean_apply_2(x_17, lean_box(0), x_18); +x_20 = lean_apply_4(x_15, lean_box(0), lean_box(0), x_19, x_6); +return x_20; +} +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_matchMatcherApp_x3f(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = lean_alloc_closure((void*)(l_Lean_Meta_matchMatcherApp_x3f___rarg___boxed), 5, 0); +return x_2; +} +} +LEAN_EXPORT lean_object* l_List_forIn_loop___at_Lean_Meta_matchMatcherApp_x3f___spec__8___rarg___lambda__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +lean_object* x_4; +x_4 = l_List_forIn_loop___at_Lean_Meta_matchMatcherApp_x3f___spec__8___rarg___lambda__1(x_1, x_2, x_3); +lean_dec(x_3); +return x_4; +} +} +LEAN_EXPORT lean_object* l_List_forIn_loop___at_Lean_Meta_matchMatcherApp_x3f___spec__8___rarg___lambda__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +lean_object* x_4; +x_4 = l_List_forIn_loop___at_Lean_Meta_matchMatcherApp_x3f___spec__8___rarg___lambda__2(x_1, x_2, x_3); +lean_dec(x_3); +return x_4; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_matchMatcherApp_x3f___rarg___lambda__1___boxed(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; +x_3 = l_Lean_Meta_matchMatcherApp_x3f___rarg___lambda__1(x_1, x_2); +lean_dec(x_2); +return x_3; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_matchMatcherApp_x3f___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) { +_start: +{ +lean_object* x_10; +x_10 = l_Lean_Meta_matchMatcherApp_x3f___rarg___lambda__3(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +lean_dec(x_9); +return x_10; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_matchMatcherApp_x3f___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) { +_start: +{ +uint8_t x_11; lean_object* x_12; +x_11 = lean_unbox(x_1); +lean_dec(x_1); +x_12 = l_Lean_Meta_matchMatcherApp_x3f___rarg___lambda__5(x_11, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +return x_12; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_matchMatcherApp_x3f___rarg___lambda__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, lean_object* x_10) { +_start: +{ +uint8_t x_11; lean_object* x_12; +x_11 = lean_unbox(x_2); +lean_dec(x_2); +x_12 = l_Lean_Meta_matchMatcherApp_x3f___rarg___lambda__6(x_1, x_11, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_10); +return x_12; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_matchMatcherApp_x3f___rarg___lambda__7___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_Lean_Meta_matchMatcherApp_x3f___rarg___lambda__7(x_1, x_2, x_3, x_4, x_5, x_6); +lean_dec(x_6); +lean_dec(x_3); +return x_7; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_matchMatcherApp_x3f___rarg___lambda__8___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_11; lean_object* x_12; +x_11 = lean_unbox(x_2); +lean_dec(x_2); +x_12 = l_Lean_Meta_matchMatcherApp_x3f___rarg___lambda__8(x_1, x_11, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +return x_12; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_matchMatcherApp_x3f___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +_start: +{ +uint8_t x_6; lean_object* x_7; +x_6 = lean_unbox(x_5); +lean_dec(x_5); +x_7 = l_Lean_Meta_matchMatcherApp_x3f___rarg(x_1, x_2, x_3, x_4, x_6); +return x_7; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_toExpr(lean_object* x_1) { +_start: +{ +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; +x_2 = lean_ctor_get(x_1, 0); +lean_inc(x_2); +x_3 = lean_ctor_get(x_1, 1); +lean_inc(x_3); +x_4 = lean_array_to_list(lean_box(0), x_3); +x_5 = l_Lean_Expr_const___override(x_2, x_4); +x_6 = lean_ctor_get(x_1, 4); +lean_inc(x_6); +x_7 = l_Lean_mkAppN(x_5, x_6); +x_8 = lean_ctor_get(x_1, 5); +lean_inc(x_8); +x_9 = l_Lean_Expr_app___override(x_7, x_8); +x_10 = lean_ctor_get(x_1, 6); +lean_inc(x_10); +x_11 = l_Lean_mkAppN(x_9, x_10); +x_12 = lean_ctor_get(x_1, 8); +lean_inc(x_12); +x_13 = l_Lean_mkAppN(x_11, x_12); +x_14 = lean_ctor_get(x_1, 9); +lean_inc(x_14); +lean_dec(x_1); +x_15 = l_Lean_mkAppN(x_13, x_14); +return x_15; +} +} +lean_object* initialize_Lean_Meta_Match_MatcherInfo(uint8_t builtin, lean_object*); +static bool _G_initialized = false; +LEAN_EXPORT lean_object* initialize_Lean_Meta_Match_MatcherApp_Basic(uint8_t builtin, lean_object* w) { +lean_object * res; +if (_G_initialized) return lean_io_result_mk_ok(lean_box(0)); +_G_initialized = true; +res = initialize_Lean_Meta_Match_MatcherInfo(builtin, lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +l_List_forIn_loop___at_Lean_Meta_matchMatcherApp_x3f___spec__8___rarg___lambda__3___closed__1 = _init_l_List_forIn_loop___at_Lean_Meta_matchMatcherApp_x3f___spec__8___rarg___lambda__3___closed__1(); +lean_mark_persistent(l_List_forIn_loop___at_Lean_Meta_matchMatcherApp_x3f___spec__8___rarg___lambda__3___closed__1); +l_List_forIn_loop___at_Lean_Meta_matchMatcherApp_x3f___spec__8___rarg___lambda__3___closed__2 = _init_l_List_forIn_loop___at_Lean_Meta_matchMatcherApp_x3f___spec__8___rarg___lambda__3___closed__2(); +lean_mark_persistent(l_List_forIn_loop___at_Lean_Meta_matchMatcherApp_x3f___spec__8___rarg___lambda__3___closed__2); +l_List_forIn_loop___at_Lean_Meta_matchMatcherApp_x3f___spec__8___rarg___lambda__3___closed__3 = _init_l_List_forIn_loop___at_Lean_Meta_matchMatcherApp_x3f___spec__8___rarg___lambda__3___closed__3(); +lean_mark_persistent(l_List_forIn_loop___at_Lean_Meta_matchMatcherApp_x3f___spec__8___rarg___lambda__3___closed__3); +l_List_forIn_loop___at_Lean_Meta_matchMatcherApp_x3f___spec__8___rarg___lambda__3___closed__4 = _init_l_List_forIn_loop___at_Lean_Meta_matchMatcherApp_x3f___spec__8___rarg___lambda__3___closed__4(); +lean_mark_persistent(l_List_forIn_loop___at_Lean_Meta_matchMatcherApp_x3f___spec__8___rarg___lambda__3___closed__4); +l_Lean_Meta_matchMatcherApp_x3f___rarg___lambda__3___closed__1 = _init_l_Lean_Meta_matchMatcherApp_x3f___rarg___lambda__3___closed__1(); +lean_mark_persistent(l_Lean_Meta_matchMatcherApp_x3f___rarg___lambda__3___closed__1); +l_Lean_Meta_matchMatcherApp_x3f___rarg___lambda__3___closed__2 = _init_l_Lean_Meta_matchMatcherApp_x3f___rarg___lambda__3___closed__2(); +lean_mark_persistent(l_Lean_Meta_matchMatcherApp_x3f___rarg___lambda__3___closed__2); +l_Lean_Meta_matchMatcherApp_x3f___rarg___lambda__4___closed__1 = _init_l_Lean_Meta_matchMatcherApp_x3f___rarg___lambda__4___closed__1(); +lean_mark_persistent(l_Lean_Meta_matchMatcherApp_x3f___rarg___lambda__4___closed__1); +return lean_io_result_mk_ok(lean_box(0)); +} +#ifdef __cplusplus +} +#endif diff --git a/stage0/stdlib/Lean/Meta/Match/MatcherApp/Transform.c b/stage0/stdlib/Lean/Meta/Match/MatcherApp/Transform.c new file mode 100644 index 0000000000..fe570f423a --- /dev/null +++ b/stage0/stdlib/Lean/Meta/Match/MatcherApp/Transform.c @@ -0,0 +1,3426 @@ +// Lean compiler output +// Module: Lean.Meta.Match.MatcherApp.Transform +// Imports: Lean.Meta.Match Lean.Meta.InferType Lean.Meta.Check Lean.Meta.Tactic.Split +#include +#if defined(__clang__) +#pragma clang diagnostic ignored "-Wunused-parameter" +#pragma clang diagnostic ignored "-Wunused-label" +#elif defined(__GNUC__) && !defined(__CLANG__) +#pragma GCC diagnostic ignored "-Wunused-parameter" +#pragma GCC diagnostic ignored "-Wunused-label" +#pragma GCC diagnostic ignored "-Wunused-but-set-variable" +#endif +#ifdef __cplusplus +extern "C" { +#endif +static lean_object* l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_updateAlts___lambda__3___closed__2; +lean_object* l_Lean_Expr_const___override(lean_object*, lean_object*); +lean_object* l___private_Init_Util_0__outOfBounds___rarg(lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_updateAlts(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_Array_mapMUnsafe_map___at_Lean_Meta_MatcherApp_refineThrough___spec__3___lambda__2___closed__2; +lean_object* lean_mk_empty_array_with_capacity(lean_object*); +lean_object* l_Lean_mkAppN(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Nat_foldRevM_loop___at_Lean_Meta_MatcherApp_refineThrough___spec__1(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_Meta_MatcherApp_refineThrough(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_updateAlts___closed__4; +lean_object* l_Lean_Meta_lambdaTelescope___at___private_Lean_Meta_Eqns_0__Lean_Meta_mkSimpleEqThm___spec__1___rarg(lean_object*, lean_object*, uint8_t, 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*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_updateAlts___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_array_push(lean_object*, lean_object*); +static lean_object* l_Lean_Meta_MatcherApp_addArg___lambda__1___closed__1; +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_addArg___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_array_fget(lean_object*, lean_object*); +lean_object* l_Lean_Meta_forallTelescope___at_Lean_Meta_mapForallTelescope_x27___spec__1___rarg(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*); +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Meta_MatcherApp_refineThrough___spec__3___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_MatcherApp_refineThrough___lambda__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Meta_MatcherApp_addArg___lambda__4___closed__4; +lean_object* l_Lean_stringToMessageData(lean_object*); +static lean_object* l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_updateAlts___lambda__2___closed__1; +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Meta_MatcherApp_refineThrough___spec__3___lambda__1___boxed(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_Meta_MatcherApp_refineThrough___spec__2(size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Meta_MatcherApp_refineThrough___spec__3___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_updateAlts___closed__1; +extern lean_object* l_instInhabitedNat; +lean_object* l_Lean_Meta_isTypeCorrect(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_addArg___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_object*); +size_t lean_usize_of_nat(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_addArg___lambda__4(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_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_updateAlts___lambda__3___closed__1; +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_Expr_getRevArg_x21(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_refineThrough___lambda__5(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_Array_zip___rarg(lean_object*, lean_object*); +static lean_object* l_Lean_Meta_MatcherApp_refineThrough___lambda__5___closed__1; +lean_object* l_Lean_Meta_kabstract(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Meta_getLevel(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Meta_MatcherApp_addArg___lambda__4___closed__2; +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Meta_MatcherApp_refineThrough___spec__3___lambda__2___boxed(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_object*); +lean_object* l_Lean_Meta_mkEq(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l_Lean_levelZero; +extern lean_object* l_Lean_instInhabitedExpr; +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_addArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_updateAlts___closed__2; +lean_object* l_Lean_Meta_whnfD(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_addArg___lambda__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_Nat_foldRevM_loop___at_Lean_Meta_MatcherApp_addArg___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Meta_forallBoundedTelescope___at___private_Lean_Meta_FunInfo_0__Lean_Meta_getFunInfoAux___spec__5___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Meta_MatcherApp_refineThrough___lambda__3___closed__2; +LEAN_EXPORT lean_object* l_Lean_throwError___at___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_updateAlts___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_refineThrough_x3f(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_updateAlts___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_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_updateAlts___lambda__1(lean_object*, 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_Meta_MatcherApp_addArg___lambda__2___closed__1; +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Meta_MatcherApp_refineThrough___spec__3___boxed(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_object* l_Lean_throwError___at_Lean_Meta_mkSimpCongrTheorem___spec__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_throwError___at___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_updateAlts___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Meta_MatcherApp_addArg___lambda__4___closed__1; +lean_object* l___private_Lean_Meta_Basic_0__Lean_Meta_instantiateLambdaAux(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_Meta_MatcherApp_refineThrough___spec__3(size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_refineThrough___lambda__2___boxed(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___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_updateAlts___lambda__2(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +uint8_t lean_nat_dec_eq(lean_object*, lean_object*); +uint8_t lean_nat_dec_lt(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_updateAlts___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_Meta_MatcherApp_addArg_x3f(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Meta_MatcherApp_addArg___lambda__4___closed__3; +static lean_object* l_Array_mapMUnsafe_map___at_Lean_Meta_MatcherApp_refineThrough___spec__3___lambda__2___closed__1; +lean_object* lean_array_set(lean_object*, 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*); +lean_object* lean_nat_sub(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_updateAlts___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* l_Lean_mkArrow(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_addArg___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_EXPORT lean_object* l_Nat_foldRevM_loop___at_Lean_Meta_MatcherApp_refineThrough___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___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_updateAlts___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +size_t lean_usize_add(size_t, size_t); +lean_object* lean_array_uget(lean_object*, size_t); +lean_object* lean_array_get_size(lean_object*); +static lean_object* l_Lean_Meta_MatcherApp_refineThrough___lambda__3___closed__1; +static lean_object* l_Lean_Meta_MatcherApp_refineThrough___lambda__5___closed__2; +lean_object* lean_infer_type(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +uint8_t lean_usize_dec_lt(size_t, size_t); +lean_object* l_Lean_Meta_mkLambdaFVars(lean_object*, lean_object*, 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*); +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_refineThrough___lambda__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +uint8_t l_Lean_Exception_isRuntime(lean_object*); +static lean_object* l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_updateAlts___closed__3; +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Meta_MatcherApp_refineThrough___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Meta_MatcherApp_addArg___lambda__2___closed__2; +lean_object* lean_array_uset(lean_object*, size_t, lean_object*); +lean_object* lean_expr_instantiate1(lean_object*, lean_object*); +lean_object* l_Nat_repr(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_refineThrough___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_refineThrough___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Nat_foldRevM_loop___at_Lean_Meta_MatcherApp_addArg___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_Lean_throwError___at___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_updateAlts___spec__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; lean_object* x_8; uint8_t x_9; +x_7 = lean_ctor_get(x_4, 5); +x_8 = l_Lean_addMessageContextFull___at_Lean_Meta_instAddMessageContextMetaM___spec__1(x_1, x_2, x_3, x_4, x_5, x_6); +x_9 = !lean_is_exclusive(x_8); +if (x_9 == 0) +{ +lean_object* x_10; lean_object* x_11; +x_10 = lean_ctor_get(x_8, 0); +lean_inc(x_7); +x_11 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_11, 0, x_7); +lean_ctor_set(x_11, 1, x_10); +lean_ctor_set_tag(x_8, 1); +lean_ctor_set(x_8, 0, x_11); +return x_8; +} +else +{ +lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; +x_12 = lean_ctor_get(x_8, 0); +x_13 = lean_ctor_get(x_8, 1); +lean_inc(x_13); +lean_inc(x_12); +lean_dec(x_8); +lean_inc(x_7); +x_14 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_14, 0, x_7); +lean_ctor_set(x_14, 1, x_12); +x_15 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_15, 0, x_14); +lean_ctor_set(x_15, 1, x_13); +return x_15; +} +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_updateAlts___lambda__1(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) { +_start: +{ +uint8_t x_12; uint8_t x_13; uint8_t x_14; lean_object* x_15; +x_12 = 0; +x_13 = 1; +x_14 = 1; +lean_inc(x_5); +x_15 = l_Lean_Meta_mkLambdaFVars(x_5, x_1, x_12, x_13, x_14, x_7, x_8, x_9, x_10, x_11); +if (lean_obj_tag(x_15) == 0) +{ +lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_75; lean_object* x_76; uint8_t x_77; +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); +x_75 = lean_array_get_size(x_5); +x_76 = lean_unsigned_to_nat(0u); +x_77 = lean_nat_dec_lt(x_76, x_75); +lean_dec(x_75); +if (x_77 == 0) +{ +lean_object* x_78; lean_object* x_79; +lean_dec(x_5); +x_78 = l_Lean_instInhabitedExpr; +x_79 = l___private_Init_Util_0__outOfBounds___rarg(x_78); +x_18 = x_79; +goto block_74; +} +else +{ +lean_object* x_80; +x_80 = lean_array_fget(x_5, x_76); +lean_dec(x_5); +x_18 = x_80; +goto block_74; +} +block_74: +{ +lean_object* x_19; +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +x_19 = lean_infer_type(x_18, x_7, x_8, x_9, x_10, x_17); +if (lean_obj_tag(x_19) == 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); +lean_dec(x_19); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +x_22 = l_Lean_Meta_isExprDefEq(x_2, x_20, x_7, x_8, x_9, x_10, x_21); +if (lean_obj_tag(x_22) == 0) +{ +lean_object* x_23; lean_object* x_24; lean_object* x_25; +x_23 = lean_ctor_get(x_22, 0); +lean_inc(x_23); +x_24 = lean_ctor_get(x_22, 1); +lean_inc(x_24); +lean_dec(x_22); +x_25 = l_Lean_Meta_mkLambdaFVars(x_3, x_16, x_12, x_13, x_14, x_7, x_8, x_9, x_10, x_24); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +if (x_4 == 0) +{ +uint8_t x_26; +x_26 = lean_unbox(x_23); +lean_dec(x_23); +if (x_26 == 0) +{ +if (lean_obj_tag(x_25) == 0) +{ +uint8_t x_27; +x_27 = !lean_is_exclusive(x_25); +if (x_27 == 0) +{ +lean_object* x_28; lean_object* x_29; lean_object* x_30; +x_28 = lean_ctor_get(x_25, 0); +x_29 = lean_box(x_13); +x_30 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_30, 0, x_28); +lean_ctor_set(x_30, 1, x_29); +lean_ctor_set(x_25, 0, x_30); +return x_25; +} +else +{ +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_25, 0); +x_32 = lean_ctor_get(x_25, 1); +lean_inc(x_32); +lean_inc(x_31); +lean_dec(x_25); +x_33 = lean_box(x_13); +x_34 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_34, 0, x_31); +lean_ctor_set(x_34, 1, x_33); +x_35 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_35, 0, x_34); +lean_ctor_set(x_35, 1, x_32); +return x_35; +} +} +else +{ +uint8_t x_36; +x_36 = !lean_is_exclusive(x_25); +if (x_36 == 0) +{ +return x_25; +} +else +{ +lean_object* x_37; lean_object* x_38; lean_object* x_39; +x_37 = lean_ctor_get(x_25, 0); +x_38 = lean_ctor_get(x_25, 1); +lean_inc(x_38); +lean_inc(x_37); +lean_dec(x_25); +x_39 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_39, 0, x_37); +lean_ctor_set(x_39, 1, x_38); +return x_39; +} +} +} +else +{ +if (lean_obj_tag(x_25) == 0) +{ +uint8_t x_40; +x_40 = !lean_is_exclusive(x_25); +if (x_40 == 0) +{ +lean_object* x_41; lean_object* x_42; lean_object* x_43; +x_41 = lean_ctor_get(x_25, 0); +x_42 = lean_box(x_12); +x_43 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_43, 0, x_41); +lean_ctor_set(x_43, 1, x_42); +lean_ctor_set(x_25, 0, x_43); +return x_25; +} +else +{ +lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; +x_44 = lean_ctor_get(x_25, 0); +x_45 = lean_ctor_get(x_25, 1); +lean_inc(x_45); +lean_inc(x_44); +lean_dec(x_25); +x_46 = lean_box(x_12); +x_47 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_47, 0, x_44); +lean_ctor_set(x_47, 1, x_46); +x_48 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_48, 0, x_47); +lean_ctor_set(x_48, 1, x_45); +return x_48; +} +} +else +{ +uint8_t x_49; +x_49 = !lean_is_exclusive(x_25); +if (x_49 == 0) +{ +return x_25; +} +else +{ +lean_object* x_50; lean_object* x_51; lean_object* x_52; +x_50 = lean_ctor_get(x_25, 0); +x_51 = lean_ctor_get(x_25, 1); +lean_inc(x_51); +lean_inc(x_50); +lean_dec(x_25); +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 +{ +lean_dec(x_23); +if (lean_obj_tag(x_25) == 0) +{ +uint8_t x_53; +x_53 = !lean_is_exclusive(x_25); +if (x_53 == 0) +{ +lean_object* x_54; lean_object* x_55; lean_object* x_56; +x_54 = lean_ctor_get(x_25, 0); +x_55 = lean_box(x_4); +x_56 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_56, 0, x_54); +lean_ctor_set(x_56, 1, x_55); +lean_ctor_set(x_25, 0, x_56); +return x_25; +} +else +{ +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_25, 0); +x_58 = lean_ctor_get(x_25, 1); +lean_inc(x_58); +lean_inc(x_57); +lean_dec(x_25); +x_59 = lean_box(x_4); +x_60 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_60, 0, x_57); +lean_ctor_set(x_60, 1, x_59); +x_61 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_61, 0, x_60); +lean_ctor_set(x_61, 1, x_58); +return x_61; +} +} +else +{ +uint8_t x_62; +x_62 = !lean_is_exclusive(x_25); +if (x_62 == 0) +{ +return x_25; +} +else +{ +lean_object* x_63; lean_object* x_64; lean_object* x_65; +x_63 = lean_ctor_get(x_25, 0); +x_64 = lean_ctor_get(x_25, 1); +lean_inc(x_64); +lean_inc(x_63); +lean_dec(x_25); +x_65 = lean_alloc_ctor(1, 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_66; +lean_dec(x_16); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_3); +x_66 = !lean_is_exclusive(x_22); +if (x_66 == 0) +{ +return x_22; +} +else +{ +lean_object* x_67; lean_object* x_68; lean_object* x_69; +x_67 = lean_ctor_get(x_22, 0); +x_68 = lean_ctor_get(x_22, 1); +lean_inc(x_68); +lean_inc(x_67); +lean_dec(x_22); +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 +{ +uint8_t x_70; +lean_dec(x_16); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_3); +lean_dec(x_2); +x_70 = !lean_is_exclusive(x_19); +if (x_70 == 0) +{ +return x_19; +} +else +{ +lean_object* x_71; lean_object* x_72; lean_object* x_73; +x_71 = lean_ctor_get(x_19, 0); +x_72 = lean_ctor_get(x_19, 1); +lean_inc(x_72); +lean_inc(x_71); +lean_dec(x_19); +x_73 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_73, 0, x_71); +lean_ctor_set(x_73, 1, x_72); +return x_73; +} +} +} +} +else +{ +uint8_t x_81; +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_5); +lean_dec(x_3); +lean_dec(x_2); +x_81 = !lean_is_exclusive(x_15); +if (x_81 == 0) +{ +return x_15; +} +else +{ +lean_object* x_82; lean_object* x_83; lean_object* x_84; +x_82 = lean_ctor_get(x_15, 0); +x_83 = lean_ctor_get(x_15, 1); +lean_inc(x_83); +lean_inc(x_82); +lean_dec(x_15); +x_84 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_84, 0, x_82); +lean_ctor_set(x_84, 1, x_83); +return x_84; +} +} +} +} +static lean_object* _init_l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_updateAlts___lambda__2___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = lean_unsigned_to_nat(1u); +x_2 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_updateAlts___lambda__2(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) { +_start: +{ +lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; +x_11 = lean_box(x_3); +x_12 = lean_alloc_closure((void*)(l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_updateAlts___lambda__1___boxed), 11, 4); +lean_closure_set(x_12, 0, x_5); +lean_closure_set(x_12, 1, x_1); +lean_closure_set(x_12, 2, x_2); +lean_closure_set(x_12, 3, x_11); +x_13 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_updateAlts___lambda__2___closed__1; +x_14 = l_Lean_Meta_forallBoundedTelescope___at___private_Lean_Meta_FunInfo_0__Lean_Meta_getFunInfoAux___spec__5___rarg(x_4, x_13, x_12, x_6, x_7, x_8, x_9, x_10); +return x_14; +} +} +static lean_object* _init_l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_updateAlts___lambda__3___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("unexpected matcher application, insufficient number of parameters in alternative", 80); +return x_1; +} +} +static lean_object* _init_l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_updateAlts___lambda__3___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_updateAlts___lambda__3___closed__1; +x_2 = l_Lean_stringToMessageData(x_1); +return x_2; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_updateAlts___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) { +_start: +{ +lean_object* x_11; lean_object* x_12; +x_11 = lean_unsigned_to_nat(0u); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_6); +x_12 = l___private_Lean_Meta_Basic_0__Lean_Meta_instantiateLambdaAux(x_4, x_11, x_3, x_6, x_7, x_8, x_9, x_10); +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_12, 0); +lean_inc(x_13); +x_14 = lean_ctor_get(x_12, 1); +lean_inc(x_14); +lean_dec(x_12); +x_15 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_updateAlts___lambda__2(x_1, x_4, x_2, x_5, x_13, x_6, x_7, x_8, x_9, x_14); +return x_15; +} +else +{ +uint8_t x_16; +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_1); +x_16 = !lean_is_exclusive(x_12); +if (x_16 == 0) +{ +lean_object* x_17; lean_object* x_18; uint8_t x_19; +x_17 = lean_ctor_get(x_12, 0); +x_18 = lean_ctor_get(x_12, 1); +x_19 = l_Lean_Exception_isRuntime(x_17); +if (x_19 == 0) +{ +lean_object* x_20; lean_object* x_21; uint8_t x_22; +lean_free_object(x_12); +lean_dec(x_17); +x_20 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_updateAlts___lambda__3___closed__2; +x_21 = l_Lean_throwError___at_Lean_Expr_abstractRangeM___spec__1(x_20, x_6, x_7, x_8, x_9, x_18); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +x_22 = !lean_is_exclusive(x_21); +if (x_22 == 0) +{ +return x_21; +} +else +{ +lean_object* x_23; lean_object* x_24; lean_object* x_25; +x_23 = lean_ctor_get(x_21, 0); +x_24 = lean_ctor_get(x_21, 1); +lean_inc(x_24); +lean_inc(x_23); +lean_dec(x_21); +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_ctor_get_uint8(x_8, sizeof(void*)*11); +if (x_26 == 0) +{ +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +return x_12; +} +else +{ +lean_object* x_27; lean_object* x_28; uint8_t x_29; +lean_free_object(x_12); +lean_dec(x_17); +x_27 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_updateAlts___lambda__3___closed__2; +x_28 = l_Lean_throwError___at_Lean_Expr_abstractRangeM___spec__1(x_27, x_6, x_7, x_8, x_9, x_18); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +x_29 = !lean_is_exclusive(x_28); +if (x_29 == 0) +{ +return x_28; +} +else +{ +lean_object* x_30; lean_object* x_31; lean_object* x_32; +x_30 = lean_ctor_get(x_28, 0); +x_31 = lean_ctor_get(x_28, 1); +lean_inc(x_31); +lean_inc(x_30); +lean_dec(x_28); +x_32 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_32, 0, x_30); +lean_ctor_set(x_32, 1, x_31); +return x_32; +} +} +} +} +else +{ +lean_object* x_33; lean_object* x_34; uint8_t x_35; +x_33 = lean_ctor_get(x_12, 0); +x_34 = lean_ctor_get(x_12, 1); +lean_inc(x_34); +lean_inc(x_33); +lean_dec(x_12); +x_35 = l_Lean_Exception_isRuntime(x_33); +if (x_35 == 0) +{ +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_33); +x_36 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_updateAlts___lambda__3___closed__2; +x_37 = l_Lean_throwError___at_Lean_Expr_abstractRangeM___spec__1(x_36, x_6, x_7, x_8, x_9, x_34); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +x_38 = lean_ctor_get(x_37, 0); +lean_inc(x_38); +x_39 = lean_ctor_get(x_37, 1); +lean_inc(x_39); +if (lean_is_exclusive(x_37)) { + lean_ctor_release(x_37, 0); + lean_ctor_release(x_37, 1); + x_40 = x_37; +} else { + lean_dec_ref(x_37); + x_40 = lean_box(0); +} +if (lean_is_scalar(x_40)) { + x_41 = lean_alloc_ctor(1, 2, 0); +} else { + x_41 = x_40; +} +lean_ctor_set(x_41, 0, x_38); +lean_ctor_set(x_41, 1, x_39); +return x_41; +} +else +{ +uint8_t x_42; +x_42 = lean_ctor_get_uint8(x_8, sizeof(void*)*11); +if (x_42 == 0) +{ +lean_object* x_43; +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +x_43 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_43, 0, x_33); +lean_ctor_set(x_43, 1, x_34); +return x_43; +} +else +{ +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_dec(x_33); +x_44 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_updateAlts___lambda__3___closed__2; +x_45 = l_Lean_throwError___at_Lean_Expr_abstractRangeM___spec__1(x_44, x_6, x_7, x_8, x_9, x_34); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +x_46 = lean_ctor_get(x_45, 0); +lean_inc(x_46); +x_47 = lean_ctor_get(x_45, 1); +lean_inc(x_47); +if (lean_is_exclusive(x_45)) { + lean_ctor_release(x_45, 0); + lean_ctor_release(x_45, 1); + x_48 = x_45; +} else { + lean_dec_ref(x_45); + 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___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_updateAlts___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("failed to add argument to matcher application, argument type was not refined by `casesOn`", 89); +return x_1; +} +} +static lean_object* _init_l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_updateAlts___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_updateAlts___closed__1; +x_2 = l_Lean_stringToMessageData(x_1); +return x_2; +} +} +static lean_object* _init_l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_updateAlts___closed__3() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("unexpected type at MatcherApp.addArg", 36); +return x_1; +} +} +static lean_object* _init_l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_updateAlts___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_updateAlts___closed__3; +x_2 = l_Lean_stringToMessageData(x_1); +return x_2; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_updateAlts(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) { +_start: +{ +lean_object* x_12; uint8_t x_13; +x_12 = lean_array_get_size(x_4); +x_13 = lean_nat_dec_lt(x_6, x_12); +lean_dec(x_12); +if (x_13 == 0) +{ +lean_dec(x_6); +lean_dec(x_2); +lean_dec(x_1); +if (x_5 == 0) +{ +lean_object* x_14; lean_object* x_15; +lean_dec(x_4); +lean_dec(x_3); +x_14 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_updateAlts___closed__2; +x_15 = l_Lean_throwError___at___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_updateAlts___spec__1(x_14, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +return x_15; +} +else +{ +lean_object* x_16; lean_object* x_17; +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +x_16 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_16, 0, x_3); +lean_ctor_set(x_16, 1, x_4); +x_17 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_17, 0, x_16); +lean_ctor_set(x_17, 1, x_11); +return x_17; +} +} +else +{ +lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_47; uint8_t x_48; lean_object* x_49; +x_18 = lean_array_fget(x_4, x_6); +x_47 = lean_array_get_size(x_3); +x_48 = lean_nat_dec_lt(x_6, x_47); +lean_dec(x_47); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +x_49 = l_Lean_Meta_whnfD(x_2, x_7, x_8, x_9, x_10, x_11); +if (x_48 == 0) +{ +if (lean_obj_tag(x_49) == 0) +{ +lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; +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 = l_instInhabitedNat; +x_53 = l___private_Init_Util_0__outOfBounds___rarg(x_52); +x_19 = x_53; +x_20 = x_50; +x_21 = x_51; +goto block_46; +} +else +{ +uint8_t x_54; +lean_dec(x_18); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_1); +x_54 = !lean_is_exclusive(x_49); +if (x_54 == 0) +{ +return x_49; +} +else +{ +lean_object* x_55; lean_object* x_56; lean_object* x_57; +x_55 = lean_ctor_get(x_49, 0); +x_56 = lean_ctor_get(x_49, 1); +lean_inc(x_56); +lean_inc(x_55); +lean_dec(x_49); +x_57 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_57, 0, x_55); +lean_ctor_set(x_57, 1, x_56); +return x_57; +} +} +} +else +{ +if (lean_obj_tag(x_49) == 0) +{ +lean_object* x_58; lean_object* x_59; lean_object* x_60; +x_58 = lean_ctor_get(x_49, 0); +lean_inc(x_58); +x_59 = lean_ctor_get(x_49, 1); +lean_inc(x_59); +lean_dec(x_49); +x_60 = lean_array_fget(x_3, x_6); +x_19 = x_60; +x_20 = x_58; +x_21 = x_59; +goto block_46; +} +else +{ +uint8_t x_61; +lean_dec(x_18); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_1); +x_61 = !lean_is_exclusive(x_49); +if (x_61 == 0) +{ +return x_49; +} +else +{ +lean_object* x_62; lean_object* x_63; lean_object* x_64; +x_62 = lean_ctor_get(x_49, 0); +x_63 = lean_ctor_get(x_49, 1); +lean_inc(x_63); +lean_inc(x_62); +lean_dec(x_49); +x_64 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_64, 0, x_62); +lean_ctor_set(x_64, 1, x_63); +return x_64; +} +} +} +block_46: +{ +if (lean_obj_tag(x_20) == 7) +{ +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_22 = lean_ctor_get(x_20, 1); +lean_inc(x_22); +x_23 = lean_ctor_get(x_20, 2); +lean_inc(x_23); +lean_dec(x_20); +lean_inc(x_19); +x_24 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_24, 0, x_19); +x_25 = lean_box(x_5); +lean_inc(x_1); +x_26 = lean_alloc_closure((void*)(l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_updateAlts___lambda__3___boxed), 10, 3); +lean_closure_set(x_26, 0, x_1); +lean_closure_set(x_26, 1, x_25); +lean_closure_set(x_26, 2, x_18); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +x_27 = l_Lean_Meta_forallBoundedTelescope___at___private_Lean_Meta_FunInfo_0__Lean_Meta_getFunInfoAux___spec__5___rarg(x_22, x_24, x_26, x_7, x_8, x_9, x_10, x_21); +if (lean_obj_tag(x_27) == 0) +{ +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; uint8_t x_38; +x_28 = lean_ctor_get(x_27, 0); +lean_inc(x_28); +x_29 = lean_ctor_get(x_27, 1); +lean_inc(x_29); +lean_dec(x_27); +x_30 = lean_ctor_get(x_28, 0); +lean_inc(x_30); +x_31 = lean_ctor_get(x_28, 1); +lean_inc(x_31); +lean_dec(x_28); +x_32 = lean_expr_instantiate1(x_23, x_30); +lean_dec(x_23); +x_33 = lean_unsigned_to_nat(1u); +x_34 = lean_nat_add(x_19, x_33); +lean_dec(x_19); +x_35 = lean_array_set(x_3, x_6, x_34); +x_36 = lean_array_fset(x_4, x_6, x_30); +x_37 = lean_nat_add(x_6, x_33); +lean_dec(x_6); +x_38 = lean_unbox(x_31); +lean_dec(x_31); +x_2 = x_32; +x_3 = x_35; +x_4 = x_36; +x_5 = x_38; +x_6 = x_37; +x_11 = x_29; +goto _start; +} +else +{ +uint8_t x_40; +lean_dec(x_23); +lean_dec(x_19); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_1); +x_40 = !lean_is_exclusive(x_27); +if (x_40 == 0) +{ +return x_27; +} +else +{ +lean_object* x_41; lean_object* x_42; lean_object* x_43; +x_41 = lean_ctor_get(x_27, 0); +x_42 = lean_ctor_get(x_27, 1); +lean_inc(x_42); +lean_inc(x_41); +lean_dec(x_27); +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; +} +} +} +else +{ +lean_object* x_44; lean_object* x_45; +lean_dec(x_20); +lean_dec(x_19); +lean_dec(x_18); +lean_dec(x_6); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_1); +x_44 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_updateAlts___closed__4; +x_45 = l_Lean_throwError___at___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_updateAlts___spec__1(x_44, x_7, x_8, x_9, x_10, x_21); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +return x_45; +} +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_throwError___at___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_updateAlts___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) { +_start: +{ +lean_object* x_7; +x_7 = l_Lean_throwError___at___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_updateAlts___spec__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___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_updateAlts___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, lean_object* x_11) { +_start: +{ +uint8_t x_12; lean_object* x_13; +x_12 = lean_unbox(x_4); +lean_dec(x_4); +x_13 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_updateAlts___lambda__1(x_1, x_2, x_3, x_12, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_6); +return x_13; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_updateAlts___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) { +_start: +{ +uint8_t x_11; lean_object* x_12; +x_11 = lean_unbox(x_3); +lean_dec(x_3); +x_12 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_updateAlts___lambda__2(x_1, x_2, x_11, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +return x_12; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_updateAlts___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_11; lean_object* x_12; +x_11 = lean_unbox(x_2); +lean_dec(x_2); +x_12 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_updateAlts___lambda__3(x_1, x_11, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +return x_12; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_updateAlts___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) { +_start: +{ +uint8_t x_12; lean_object* x_13; +x_12 = lean_unbox(x_5); +lean_dec(x_5); +x_13 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_updateAlts(x_1, x_2, x_3, x_4, x_12, x_6, x_7, x_8, x_9, x_10, x_11); +return x_13; +} +} +LEAN_EXPORT lean_object* l_Nat_foldRevM_loop___at_Lean_Meta_MatcherApp_addArg___spec__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) { +_start: +{ +lean_object* x_10; uint8_t x_11; +x_10 = lean_unsigned_to_nat(0u); +x_11 = lean_nat_dec_eq(x_3, x_10); +if (x_11 == 0) +{ +lean_object* x_12; lean_object* x_13; lean_object* x_14; uint8_t x_15; lean_object* x_16; lean_object* x_17; uint8_t x_18; +x_12 = lean_unsigned_to_nat(1u); +x_13 = lean_nat_sub(x_3, x_12); +lean_dec(x_3); +x_14 = lean_array_get_size(x_2); +x_15 = lean_nat_dec_lt(x_13, x_14); +lean_dec(x_14); +x_16 = lean_ctor_get(x_1, 6); +x_17 = lean_array_get_size(x_16); +x_18 = lean_nat_dec_lt(x_13, x_17); +lean_dec(x_17); +if (x_15 == 0) +{ +lean_object* x_19; lean_object* x_20; +x_19 = l_Lean_instInhabitedExpr; +x_20 = l___private_Init_Util_0__outOfBounds___rarg(x_19); +if (x_18 == 0) +{ +lean_object* x_21; lean_object* x_22; lean_object* x_23; +x_21 = l___private_Init_Util_0__outOfBounds___rarg(x_19); +x_22 = lean_box(0); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +x_23 = l_Lean_Meta_kabstract(x_4, x_21, x_22, x_5, x_6, x_7, x_8, x_9); +if (lean_obj_tag(x_23) == 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); +lean_dec(x_23); +x_26 = lean_expr_instantiate1(x_24, x_20); +lean_dec(x_20); +lean_dec(x_24); +x_3 = x_13; +x_4 = x_26; +x_9 = x_25; +goto _start; +} +else +{ +uint8_t x_28; +lean_dec(x_20); +lean_dec(x_13); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +x_28 = !lean_is_exclusive(x_23); +if (x_28 == 0) +{ +return x_23; +} +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; +} +} +} +else +{ +lean_object* x_32; lean_object* x_33; lean_object* x_34; +x_32 = lean_array_fget(x_16, x_13); +x_33 = lean_box(0); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +x_34 = l_Lean_Meta_kabstract(x_4, x_32, x_33, x_5, x_6, x_7, x_8, x_9); +if (lean_obj_tag(x_34) == 0) +{ +lean_object* x_35; lean_object* x_36; lean_object* x_37; +x_35 = lean_ctor_get(x_34, 0); +lean_inc(x_35); +x_36 = lean_ctor_get(x_34, 1); +lean_inc(x_36); +lean_dec(x_34); +x_37 = lean_expr_instantiate1(x_35, x_20); +lean_dec(x_20); +lean_dec(x_35); +x_3 = x_13; +x_4 = x_37; +x_9 = x_36; +goto _start; +} +else +{ +uint8_t x_39; +lean_dec(x_20); +lean_dec(x_13); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +x_39 = !lean_is_exclusive(x_34); +if (x_39 == 0) +{ +return x_34; +} +else +{ +lean_object* x_40; lean_object* x_41; lean_object* x_42; +x_40 = lean_ctor_get(x_34, 0); +x_41 = lean_ctor_get(x_34, 1); +lean_inc(x_41); +lean_inc(x_40); +lean_dec(x_34); +x_42 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_42, 0, x_40); +lean_ctor_set(x_42, 1, x_41); +return x_42; +} +} +} +} +else +{ +lean_object* x_43; +x_43 = lean_array_fget(x_2, x_13); +if (x_18 == 0) +{ +lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; +x_44 = l_Lean_instInhabitedExpr; +x_45 = l___private_Init_Util_0__outOfBounds___rarg(x_44); +x_46 = lean_box(0); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +x_47 = l_Lean_Meta_kabstract(x_4, x_45, x_46, x_5, x_6, x_7, x_8, x_9); +if (lean_obj_tag(x_47) == 0) +{ +lean_object* x_48; lean_object* x_49; lean_object* x_50; +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 = lean_expr_instantiate1(x_48, x_43); +lean_dec(x_43); +lean_dec(x_48); +x_3 = x_13; +x_4 = x_50; +x_9 = x_49; +goto _start; +} +else +{ +uint8_t x_52; +lean_dec(x_43); +lean_dec(x_13); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +x_52 = !lean_is_exclusive(x_47); +if (x_52 == 0) +{ +return x_47; +} +else +{ +lean_object* x_53; lean_object* x_54; lean_object* x_55; +x_53 = lean_ctor_get(x_47, 0); +x_54 = lean_ctor_get(x_47, 1); +lean_inc(x_54); +lean_inc(x_53); +lean_dec(x_47); +x_55 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_55, 0, x_53); +lean_ctor_set(x_55, 1, x_54); +return x_55; +} +} +} +else +{ +lean_object* x_56; lean_object* x_57; lean_object* x_58; +x_56 = lean_array_fget(x_16, x_13); +x_57 = lean_box(0); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +x_58 = l_Lean_Meta_kabstract(x_4, x_56, x_57, x_5, x_6, x_7, x_8, x_9); +if (lean_obj_tag(x_58) == 0) +{ +lean_object* x_59; lean_object* x_60; lean_object* x_61; +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_expr_instantiate1(x_59, x_43); +lean_dec(x_43); +lean_dec(x_59); +x_3 = x_13; +x_4 = x_61; +x_9 = x_60; +goto _start; +} +else +{ +uint8_t x_63; +lean_dec(x_43); +lean_dec(x_13); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +x_63 = !lean_is_exclusive(x_58); +if (x_63 == 0) +{ +return x_58; +} +else +{ +lean_object* x_64; lean_object* x_65; lean_object* x_66; +x_64 = lean_ctor_get(x_58, 0); +x_65 = lean_ctor_get(x_58, 1); +lean_inc(x_65); +lean_inc(x_64); +lean_dec(x_58); +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; +} +} +} +} +} +else +{ +lean_object* x_67; +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_3); +x_67 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_67, 0, x_4); +lean_ctor_set(x_67, 1, x_9); +return x_67; +} +} +} +static lean_object* _init_l_Lean_Meta_MatcherApp_addArg___lambda__1___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = lean_unsigned_to_nat(1u); +x_2 = lean_mk_empty_array_with_capacity(x_1); +return x_2; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_addArg___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, 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; +lean_inc(x_14); +lean_inc(x_13); +lean_inc(x_12); +lean_inc(x_11); +x_16 = lean_infer_type(x_1, x_11, x_12, x_13, x_14, x_15); +if (lean_obj_tag(x_16) == 0) +{ +lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; uint8_t x_21; lean_object* x_22; lean_object* x_23; +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_ctor_get(x_2, 7); +lean_inc(x_19); +x_20 = lean_ctor_get(x_2, 8); +lean_inc(x_20); +x_21 = 0; +x_22 = lean_unsigned_to_nat(0u); +x_23 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_updateAlts(x_3, x_17, x_19, x_20, x_21, x_22, x_11, x_12, x_13, x_14, 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; 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; +x_25 = lean_ctor_get(x_23, 0); +x_26 = lean_ctor_get(x_25, 0); +lean_inc(x_26); +x_27 = lean_ctor_get(x_25, 1); +lean_inc(x_27); +lean_dec(x_25); +x_28 = lean_ctor_get(x_2, 2); +lean_inc(x_28); +x_29 = lean_ctor_get(x_2, 3); +lean_inc(x_29); +x_30 = l_Lean_Meta_MatcherApp_addArg___lambda__1___closed__1; +x_31 = lean_array_push(x_30, x_4); +x_32 = lean_ctor_get(x_2, 9); +lean_inc(x_32); +lean_dec(x_2); +x_33 = l_Array_append___rarg(x_31, x_32); +x_34 = lean_alloc_ctor(0, 10, 0); +lean_ctor_set(x_34, 0, x_5); +lean_ctor_set(x_34, 1, x_6); +lean_ctor_set(x_34, 2, x_28); +lean_ctor_set(x_34, 3, x_29); +lean_ctor_set(x_34, 4, x_7); +lean_ctor_set(x_34, 5, x_8); +lean_ctor_set(x_34, 6, x_9); +lean_ctor_set(x_34, 7, x_26); +lean_ctor_set(x_34, 8, x_27); +lean_ctor_set(x_34, 9, x_33); +lean_ctor_set(x_23, 0, x_34); +return x_23; +} +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_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; +x_35 = lean_ctor_get(x_23, 0); +x_36 = lean_ctor_get(x_23, 1); +lean_inc(x_36); +lean_inc(x_35); +lean_dec(x_23); +x_37 = lean_ctor_get(x_35, 0); +lean_inc(x_37); +x_38 = lean_ctor_get(x_35, 1); +lean_inc(x_38); +lean_dec(x_35); +x_39 = lean_ctor_get(x_2, 2); +lean_inc(x_39); +x_40 = lean_ctor_get(x_2, 3); +lean_inc(x_40); +x_41 = l_Lean_Meta_MatcherApp_addArg___lambda__1___closed__1; +x_42 = lean_array_push(x_41, x_4); +x_43 = lean_ctor_get(x_2, 9); +lean_inc(x_43); +lean_dec(x_2); +x_44 = l_Array_append___rarg(x_42, x_43); +x_45 = lean_alloc_ctor(0, 10, 0); +lean_ctor_set(x_45, 0, x_5); +lean_ctor_set(x_45, 1, x_6); +lean_ctor_set(x_45, 2, x_39); +lean_ctor_set(x_45, 3, x_40); +lean_ctor_set(x_45, 4, x_7); +lean_ctor_set(x_45, 5, x_8); +lean_ctor_set(x_45, 6, x_9); +lean_ctor_set(x_45, 7, x_37); +lean_ctor_set(x_45, 8, x_38); +lean_ctor_set(x_45, 9, x_44); +x_46 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_46, 0, x_45); +lean_ctor_set(x_46, 1, x_36); +return x_46; +} +} +else +{ +uint8_t x_47; +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_2); +x_47 = !lean_is_exclusive(x_23); +if (x_47 == 0) +{ +return x_23; +} +else +{ +lean_object* x_48; lean_object* x_49; lean_object* x_50; +x_48 = lean_ctor_get(x_23, 0); +x_49 = lean_ctor_get(x_23, 1); +lean_inc(x_49); +lean_inc(x_48); +lean_dec(x_23); +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 +{ +uint8_t x_51; +lean_dec(x_14); +lean_dec(x_13); +lean_dec(x_12); +lean_dec(x_11); +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); +lean_dec(x_2); +x_51 = !lean_is_exclusive(x_16); +if (x_51 == 0) +{ +return x_16; +} +else +{ +lean_object* x_52; lean_object* x_53; lean_object* x_54; +x_52 = lean_ctor_get(x_16, 0); +x_53 = lean_ctor_get(x_16, 1); +lean_inc(x_53); +lean_inc(x_52); +lean_dec(x_16); +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; +} +} +} +} +static lean_object* _init_l_Lean_Meta_MatcherApp_addArg___lambda__2___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("failed to add argument to matcher application, type error when constructing the new motive", 90); +return x_1; +} +} +static lean_object* _init_l_Lean_Meta_MatcherApp_addArg___lambda__2___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Meta_MatcherApp_addArg___lambda__2___closed__1; +x_2 = l_Lean_stringToMessageData(x_1); +return x_2; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_addArg___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) { +_start: +{ +uint8_t x_13; uint8_t x_14; uint8_t x_15; lean_object* x_16; +x_13 = 0; +x_14 = 1; +x_15 = 1; +x_16 = l_Lean_Meta_mkLambdaFVars(x_1, x_2, x_13, x_14, x_15, x_8, x_9, x_10, x_11, x_12); +if (lean_obj_tag(x_16) == 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; lean_object* x_24; lean_object* x_25; lean_object* x_26; +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_ctor_get(x_3, 0); +lean_inc(x_19); +lean_inc(x_7); +x_20 = lean_array_to_list(lean_box(0), x_7); +lean_inc(x_19); +x_21 = l_Lean_Expr_const___override(x_19, x_20); +x_22 = lean_ctor_get(x_3, 4); +lean_inc(x_22); +lean_inc(x_22); +x_23 = l_Lean_mkAppN(x_21, x_22); +lean_inc(x_17); +x_24 = l_Lean_Expr_app___override(x_23, x_17); +lean_inc(x_4); +x_25 = l_Lean_mkAppN(x_24, x_4); +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_25); +x_26 = l_Lean_Meta_isTypeCorrect(x_25, x_8, x_9, x_10, x_11, x_18); +if (lean_obj_tag(x_26) == 0) +{ +lean_object* x_27; uint8_t x_28; +x_27 = lean_ctor_get(x_26, 0); +lean_inc(x_27); +x_28 = lean_unbox(x_27); +lean_dec(x_27); +if (x_28 == 0) +{ +lean_object* x_29; lean_object* x_30; lean_object* x_31; uint8_t x_32; +lean_dec(x_25); +lean_dec(x_22); +lean_dec(x_19); +lean_dec(x_17); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +x_29 = lean_ctor_get(x_26, 1); +lean_inc(x_29); +lean_dec(x_26); +x_30 = l_Lean_Meta_MatcherApp_addArg___lambda__2___closed__2; +x_31 = l_Lean_throwError___at_Lean_Meta_mkSimpCongrTheorem___spec__4(x_30, x_8, x_9, x_10, x_11, x_29); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +x_32 = !lean_is_exclusive(x_31); +if (x_32 == 0) +{ +return x_31; +} +else +{ +lean_object* x_33; lean_object* x_34; lean_object* x_35; +x_33 = lean_ctor_get(x_31, 0); +x_34 = lean_ctor_get(x_31, 1); +lean_inc(x_34); +lean_inc(x_33); +lean_dec(x_31); +x_35 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_35, 0, x_33); +lean_ctor_set(x_35, 1, x_34); +return x_35; +} +} +else +{ +lean_object* x_36; lean_object* x_37; lean_object* x_38; +x_36 = lean_ctor_get(x_26, 1); +lean_inc(x_36); +lean_dec(x_26); +x_37 = lean_box(0); +x_38 = l_Lean_Meta_MatcherApp_addArg___lambda__1(x_25, x_3, x_5, x_6, x_19, x_7, x_22, x_17, x_4, x_37, x_8, x_9, x_10, x_11, x_36); +return x_38; +} +} +else +{ +uint8_t x_39; +lean_dec(x_25); +lean_dec(x_22); +lean_dec(x_19); +lean_dec(x_17); +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_39 = !lean_is_exclusive(x_26); +if (x_39 == 0) +{ +return x_26; +} +else +{ +lean_object* x_40; lean_object* x_41; lean_object* x_42; +x_40 = lean_ctor_get(x_26, 0); +x_41 = lean_ctor_get(x_26, 1); +lean_inc(x_41); +lean_inc(x_40); +lean_dec(x_26); +x_42 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_42, 0, x_40); +lean_ctor_set(x_42, 1, x_41); +return x_42; +} +} +} +else +{ +uint8_t x_43; +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_43 = !lean_is_exclusive(x_16); +if (x_43 == 0) +{ +return x_16; +} +else +{ +lean_object* x_44; lean_object* x_45; lean_object* x_46; +x_44 = lean_ctor_get(x_16, 0); +x_45 = lean_ctor_get(x_16, 1); +lean_inc(x_45); +lean_inc(x_44); +lean_dec(x_16); +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_EXPORT lean_object* l_Lean_Meta_MatcherApp_addArg___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_11; +lean_dec(x_5); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_1); +x_11 = lean_infer_type(x_1, x_6, x_7, x_8, x_9, x_10); +if (lean_obj_tag(x_11) == 0) +{ +lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; +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); +x_14 = lean_ctor_get(x_2, 6); +lean_inc(x_14); +x_15 = lean_array_get_size(x_14); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_12); +x_16 = l_Nat_foldRevM_loop___at_Lean_Meta_MatcherApp_addArg___spec__1(x_2, x_3, x_15, x_12, x_6, x_7, x_8, x_9, x_13); +if (lean_obj_tag(x_16) == 0) +{ +lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; +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 = l_Lean_mkArrow(x_17, x_4, x_8, x_9, x_18); +x_20 = lean_ctor_get(x_2, 2); +lean_inc(x_20); +if (lean_obj_tag(x_20) == 0) +{ +lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; +x_21 = lean_ctor_get(x_19, 0); +lean_inc(x_21); +x_22 = lean_ctor_get(x_19, 1); +lean_inc(x_22); +lean_dec(x_19); +x_23 = lean_ctor_get(x_2, 1); +lean_inc(x_23); +x_24 = l_Lean_Meta_MatcherApp_addArg___lambda__2(x_3, x_21, x_2, x_14, x_12, x_1, x_23, x_6, x_7, x_8, x_9, x_22); +return x_24; +} +else +{ +lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; +x_25 = lean_ctor_get(x_19, 0); +lean_inc(x_25); +x_26 = lean_ctor_get(x_19, 1); +lean_inc(x_26); +lean_dec(x_19); +x_27 = lean_ctor_get(x_20, 0); +lean_inc(x_27); +lean_dec(x_20); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_25); +x_28 = l_Lean_Meta_getLevel(x_25, x_6, x_7, x_8, x_9, x_26); +if (lean_obj_tag(x_28) == 0) +{ +lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; +x_29 = lean_ctor_get(x_28, 0); +lean_inc(x_29); +x_30 = lean_ctor_get(x_28, 1); +lean_inc(x_30); +lean_dec(x_28); +x_31 = lean_ctor_get(x_2, 1); +lean_inc(x_31); +x_32 = lean_array_set(x_31, x_27, x_29); +lean_dec(x_27); +x_33 = l_Lean_Meta_MatcherApp_addArg___lambda__2(x_3, x_25, x_2, x_14, x_12, x_1, x_32, x_6, x_7, x_8, x_9, x_30); +return x_33; +} +else +{ +uint8_t x_34; +lean_dec(x_27); +lean_dec(x_25); +lean_dec(x_14); +lean_dec(x_12); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +x_34 = !lean_is_exclusive(x_28); +if (x_34 == 0) +{ +return x_28; +} +else +{ +lean_object* x_35; lean_object* x_36; lean_object* x_37; +x_35 = lean_ctor_get(x_28, 0); +x_36 = lean_ctor_get(x_28, 1); +lean_inc(x_36); +lean_inc(x_35); +lean_dec(x_28); +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_14); +lean_dec(x_12); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +x_38 = !lean_is_exclusive(x_16); +if (x_38 == 0) +{ +return x_16; +} +else +{ +lean_object* x_39; lean_object* x_40; lean_object* x_41; +x_39 = lean_ctor_get(x_16, 0); +x_40 = lean_ctor_get(x_16, 1); +lean_inc(x_40); +lean_inc(x_39); +lean_dec(x_16); +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; +} +} +} +else +{ +uint8_t x_42; +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +x_42 = !lean_is_exclusive(x_11); +if (x_42 == 0) +{ +return x_11; +} +else +{ +lean_object* x_43; lean_object* x_44; lean_object* x_45; +x_43 = lean_ctor_get(x_11, 0); +x_44 = lean_ctor_get(x_11, 1); +lean_inc(x_44); +lean_inc(x_43); +lean_dec(x_11); +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; +} +} +} +} +static lean_object* _init_l_Lean_Meta_MatcherApp_addArg___lambda__4___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("unexpected matcher application, motive must be lambda expression with #", 71); +return x_1; +} +} +static lean_object* _init_l_Lean_Meta_MatcherApp_addArg___lambda__4___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Meta_MatcherApp_addArg___lambda__4___closed__1; +x_2 = l_Lean_stringToMessageData(x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Meta_MatcherApp_addArg___lambda__4___closed__3() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes(" arguments", 10); +return x_1; +} +} +static lean_object* _init_l_Lean_Meta_MatcherApp_addArg___lambda__4___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Meta_MatcherApp_addArg___lambda__4___closed__3; +x_2 = l_Lean_stringToMessageData(x_1); +return x_2; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_addArg___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) { +_start: +{ +lean_object* x_10; lean_object* x_11; lean_object* x_12; uint8_t x_13; +x_10 = lean_array_get_size(x_3); +x_11 = lean_ctor_get(x_2, 6); +lean_inc(x_11); +x_12 = lean_array_get_size(x_11); +lean_dec(x_11); +x_13 = lean_nat_dec_eq(x_10, x_12); +lean_dec(x_10); +if (x_13 == 0) +{ +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; uint8_t x_22; +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +x_14 = l_Nat_repr(x_12); +x_15 = lean_alloc_ctor(3, 1, 0); +lean_ctor_set(x_15, 0, x_14); +x_16 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_16, 0, x_15); +x_17 = l_Lean_Meta_MatcherApp_addArg___lambda__4___closed__2; +x_18 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_18, 0, x_17); +lean_ctor_set(x_18, 1, x_16); +x_19 = l_Lean_Meta_MatcherApp_addArg___lambda__4___closed__4; +x_20 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_20, 0, x_18); +lean_ctor_set(x_20, 1, x_19); +x_21 = l_Lean_throwError___at_Lean_Meta_mkSimpCongrTheorem___spec__4(x_20, 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); +x_22 = !lean_is_exclusive(x_21); +if (x_22 == 0) +{ +return x_21; +} +else +{ +lean_object* x_23; lean_object* x_24; lean_object* x_25; +x_23 = lean_ctor_get(x_21, 0); +x_24 = lean_ctor_get(x_21, 1); +lean_inc(x_24); +lean_inc(x_23); +lean_dec(x_21); +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 +{ +lean_object* x_26; lean_object* x_27; +lean_dec(x_12); +x_26 = lean_box(0); +x_27 = l_Lean_Meta_MatcherApp_addArg___lambda__3(x_1, x_2, x_3, x_4, x_26, x_5, x_6, x_7, x_8, x_9); +return x_27; +} +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_addArg(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; uint8_t x_10; lean_object* x_11; +x_8 = lean_ctor_get(x_1, 5); +lean_inc(x_8); +x_9 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_addArg___lambda__4), 9, 2); +lean_closure_set(x_9, 0, x_2); +lean_closure_set(x_9, 1, x_1); +x_10 = 0; +x_11 = l_Lean_Meta_lambdaTelescope___at___private_Lean_Meta_Eqns_0__Lean_Meta_mkSimpleEqThm___spec__1___rarg(x_8, x_9, x_10, x_3, x_4, x_5, x_6, x_7); +return x_11; +} +} +LEAN_EXPORT lean_object* l_Nat_foldRevM_loop___at_Lean_Meta_MatcherApp_addArg___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: +{ +lean_object* x_10; +x_10 = l_Nat_foldRevM_loop___at_Lean_Meta_MatcherApp_addArg___spec__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +lean_dec(x_2); +lean_dec(x_1); +return x_10; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_addArg___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, 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_Meta_MatcherApp_addArg___lambda__1(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); +lean_dec(x_10); +return x_16; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_addArg_x3f(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_inc(x_5); +x_8 = l_Lean_Meta_MatcherApp_addArg(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +if (lean_obj_tag(x_8) == 0) +{ +uint8_t x_9; +lean_dec(x_5); +x_9 = !lean_is_exclusive(x_8); +if (x_9 == 0) +{ +lean_object* x_10; lean_object* x_11; +x_10 = lean_ctor_get(x_8, 0); +x_11 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_11, 0, x_10); +lean_ctor_set(x_8, 0, x_11); +return x_8; +} +else +{ +lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; +x_12 = lean_ctor_get(x_8, 0); +x_13 = lean_ctor_get(x_8, 1); +lean_inc(x_13); +lean_inc(x_12); +lean_dec(x_8); +x_14 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_14, 0, x_12); +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 +{ +uint8_t x_16; +x_16 = !lean_is_exclusive(x_8); +if (x_16 == 0) +{ +lean_object* x_17; uint8_t x_18; +x_17 = lean_ctor_get(x_8, 0); +x_18 = l_Lean_Exception_isRuntime(x_17); +if (x_18 == 0) +{ +lean_object* x_19; +lean_dec(x_17); +lean_dec(x_5); +x_19 = lean_box(0); +lean_ctor_set_tag(x_8, 0); +lean_ctor_set(x_8, 0, x_19); +return x_8; +} +else +{ +uint8_t x_20; +x_20 = lean_ctor_get_uint8(x_5, sizeof(void*)*11); +lean_dec(x_5); +if (x_20 == 0) +{ +return x_8; +} +else +{ +lean_object* x_21; +lean_dec(x_17); +x_21 = lean_box(0); +lean_ctor_set_tag(x_8, 0); +lean_ctor_set(x_8, 0, x_21); +return x_8; +} +} +} +else +{ +lean_object* x_22; lean_object* x_23; uint8_t x_24; +x_22 = lean_ctor_get(x_8, 0); +x_23 = lean_ctor_get(x_8, 1); +lean_inc(x_23); +lean_inc(x_22); +lean_dec(x_8); +x_24 = l_Lean_Exception_isRuntime(x_22); +if (x_24 == 0) +{ +lean_object* x_25; lean_object* x_26; +lean_dec(x_22); +lean_dec(x_5); +x_25 = lean_box(0); +x_26 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_26, 0, x_25); +lean_ctor_set(x_26, 1, x_23); +return x_26; +} +else +{ +uint8_t x_27; +x_27 = lean_ctor_get_uint8(x_5, sizeof(void*)*11); +lean_dec(x_5); +if (x_27 == 0) +{ +lean_object* x_28; +x_28 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_28, 0, x_22); +lean_ctor_set(x_28, 1, x_23); +return x_28; +} +else +{ +lean_object* x_29; lean_object* x_30; +lean_dec(x_22); +x_29 = lean_box(0); +x_30 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_30, 0, x_29); +lean_ctor_set(x_30, 1, x_23); +return x_30; +} +} +} +} +} +} +LEAN_EXPORT lean_object* l_Nat_foldRevM_loop___at_Lean_Meta_MatcherApp_refineThrough___spec__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) { +_start: +{ +lean_object* x_10; uint8_t x_11; +x_10 = lean_unsigned_to_nat(0u); +x_11 = lean_nat_dec_eq(x_3, x_10); +if (x_11 == 0) +{ +lean_object* x_12; lean_object* x_13; lean_object* x_14; uint8_t x_15; lean_object* x_16; lean_object* x_17; uint8_t x_18; +x_12 = lean_unsigned_to_nat(1u); +x_13 = lean_nat_sub(x_3, x_12); +lean_dec(x_3); +x_14 = lean_array_get_size(x_2); +x_15 = lean_nat_dec_lt(x_13, x_14); +lean_dec(x_14); +x_16 = lean_ctor_get(x_1, 6); +x_17 = lean_array_get_size(x_16); +x_18 = lean_nat_dec_lt(x_13, x_17); +lean_dec(x_17); +if (x_15 == 0) +{ +lean_object* x_19; lean_object* x_20; +x_19 = l_Lean_instInhabitedExpr; +x_20 = l___private_Init_Util_0__outOfBounds___rarg(x_19); +if (x_18 == 0) +{ +lean_object* x_21; lean_object* x_22; lean_object* x_23; +x_21 = l___private_Init_Util_0__outOfBounds___rarg(x_19); +x_22 = lean_box(0); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +x_23 = l_Lean_Meta_kabstract(x_4, x_21, x_22, x_5, x_6, x_7, x_8, x_9); +if (lean_obj_tag(x_23) == 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); +lean_dec(x_23); +x_26 = lean_expr_instantiate1(x_24, x_20); +lean_dec(x_20); +lean_dec(x_24); +x_3 = x_13; +x_4 = x_26; +x_9 = x_25; +goto _start; +} +else +{ +uint8_t x_28; +lean_dec(x_20); +lean_dec(x_13); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +x_28 = !lean_is_exclusive(x_23); +if (x_28 == 0) +{ +return x_23; +} +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; +} +} +} +else +{ +lean_object* x_32; lean_object* x_33; lean_object* x_34; +x_32 = lean_array_fget(x_16, x_13); +x_33 = lean_box(0); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +x_34 = l_Lean_Meta_kabstract(x_4, x_32, x_33, x_5, x_6, x_7, x_8, x_9); +if (lean_obj_tag(x_34) == 0) +{ +lean_object* x_35; lean_object* x_36; lean_object* x_37; +x_35 = lean_ctor_get(x_34, 0); +lean_inc(x_35); +x_36 = lean_ctor_get(x_34, 1); +lean_inc(x_36); +lean_dec(x_34); +x_37 = lean_expr_instantiate1(x_35, x_20); +lean_dec(x_20); +lean_dec(x_35); +x_3 = x_13; +x_4 = x_37; +x_9 = x_36; +goto _start; +} +else +{ +uint8_t x_39; +lean_dec(x_20); +lean_dec(x_13); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +x_39 = !lean_is_exclusive(x_34); +if (x_39 == 0) +{ +return x_34; +} +else +{ +lean_object* x_40; lean_object* x_41; lean_object* x_42; +x_40 = lean_ctor_get(x_34, 0); +x_41 = lean_ctor_get(x_34, 1); +lean_inc(x_41); +lean_inc(x_40); +lean_dec(x_34); +x_42 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_42, 0, x_40); +lean_ctor_set(x_42, 1, x_41); +return x_42; +} +} +} +} +else +{ +lean_object* x_43; +x_43 = lean_array_fget(x_2, x_13); +if (x_18 == 0) +{ +lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; +x_44 = l_Lean_instInhabitedExpr; +x_45 = l___private_Init_Util_0__outOfBounds___rarg(x_44); +x_46 = lean_box(0); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +x_47 = l_Lean_Meta_kabstract(x_4, x_45, x_46, x_5, x_6, x_7, x_8, x_9); +if (lean_obj_tag(x_47) == 0) +{ +lean_object* x_48; lean_object* x_49; lean_object* x_50; +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 = lean_expr_instantiate1(x_48, x_43); +lean_dec(x_43); +lean_dec(x_48); +x_3 = x_13; +x_4 = x_50; +x_9 = x_49; +goto _start; +} +else +{ +uint8_t x_52; +lean_dec(x_43); +lean_dec(x_13); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +x_52 = !lean_is_exclusive(x_47); +if (x_52 == 0) +{ +return x_47; +} +else +{ +lean_object* x_53; lean_object* x_54; lean_object* x_55; +x_53 = lean_ctor_get(x_47, 0); +x_54 = lean_ctor_get(x_47, 1); +lean_inc(x_54); +lean_inc(x_53); +lean_dec(x_47); +x_55 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_55, 0, x_53); +lean_ctor_set(x_55, 1, x_54); +return x_55; +} +} +} +else +{ +lean_object* x_56; lean_object* x_57; lean_object* x_58; +x_56 = lean_array_fget(x_16, x_13); +x_57 = lean_box(0); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +x_58 = l_Lean_Meta_kabstract(x_4, x_56, x_57, x_5, x_6, x_7, x_8, x_9); +if (lean_obj_tag(x_58) == 0) +{ +lean_object* x_59; lean_object* x_60; lean_object* x_61; +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_expr_instantiate1(x_59, x_43); +lean_dec(x_43); +lean_dec(x_59); +x_3 = x_13; +x_4 = x_61; +x_9 = x_60; +goto _start; +} +else +{ +uint8_t x_63; +lean_dec(x_43); +lean_dec(x_13); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +x_63 = !lean_is_exclusive(x_58); +if (x_63 == 0) +{ +return x_58; +} +else +{ +lean_object* x_64; lean_object* x_65; lean_object* x_66; +x_64 = lean_ctor_get(x_58, 0); +x_65 = lean_ctor_get(x_58, 1); +lean_inc(x_65); +lean_inc(x_64); +lean_dec(x_58); +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; +} +} +} +} +} +else +{ +lean_object* x_67; +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_3); +x_67 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_67, 0, x_4); +lean_ctor_set(x_67, 1, x_9); +return x_67; +} +} +} +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Meta_MatcherApp_refineThrough___spec__2(size_t x_1, size_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) { +_start: +{ +uint8_t x_9; +x_9 = lean_usize_dec_lt(x_2, x_1); +if (x_9 == 0) +{ +lean_object* x_10; +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +x_10 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_10, 0, x_3); +lean_ctor_set(x_10, 1, x_8); +return x_10; +} +else +{ +lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; +x_11 = lean_array_uget(x_3, x_2); +x_12 = lean_unsigned_to_nat(0u); +x_13 = lean_array_uset(x_3, x_2, x_12); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +x_14 = lean_infer_type(x_11, x_4, x_5, x_6, x_7, x_8); +if (lean_obj_tag(x_14) == 0) +{ +lean_object* x_15; lean_object* x_16; size_t x_17; size_t x_18; lean_object* x_19; +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 = 1; +x_18 = lean_usize_add(x_2, x_17); +x_19 = lean_array_uset(x_13, x_2, x_15); +x_2 = x_18; +x_3 = x_19; +x_8 = x_16; +goto _start; +} +else +{ +uint8_t x_21; +lean_dec(x_13); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +x_21 = !lean_is_exclusive(x_14); +if (x_21 == 0) +{ +return x_14; +} +else +{ +lean_object* x_22; lean_object* x_23; lean_object* x_24; +x_22 = lean_ctor_get(x_14, 0); +x_23 = lean_ctor_get(x_14, 1); +lean_inc(x_23); +lean_inc(x_22); +lean_dec(x_14); +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; +} +} +} +} +} +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Meta_MatcherApp_refineThrough___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, lean_object* x_7, lean_object* x_8) { +_start: +{ +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; uint8_t x_17; uint8_t x_18; lean_object* x_19; +x_9 = lean_unsigned_to_nat(0u); +x_10 = l___private_Lean_Expr_0__Lean_Expr_getAppNumArgsAux(x_1, x_9); +x_11 = lean_unsigned_to_nat(2u); +x_12 = lean_nat_sub(x_10, x_11); +lean_dec(x_10); +x_13 = lean_unsigned_to_nat(1u); +x_14 = lean_nat_sub(x_12, x_13); +lean_dec(x_12); +x_15 = l_Lean_Expr_getRevArg_x21(x_1, x_14); +x_16 = 0; +x_17 = 1; +x_18 = 1; +x_19 = l_Lean_Meta_mkLambdaFVars(x_2, x_15, x_16, x_17, x_18, x_4, x_5, x_6, x_7, x_8); +return x_19; +} +} +static lean_object* _init_l_Array_mapMUnsafe_map___at_Lean_Meta_MatcherApp_refineThrough___spec__3___lambda__2___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("failed to transfer argument through matcher application, alt type must be telescope with #", 90); +return x_1; +} +} +static lean_object* _init_l_Array_mapMUnsafe_map___at_Lean_Meta_MatcherApp_refineThrough___spec__3___lambda__2___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Array_mapMUnsafe_map___at_Lean_Meta_MatcherApp_refineThrough___spec__3___lambda__2___closed__1; +x_2 = l_Lean_stringToMessageData(x_1); +return x_2; +} +} +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Meta_MatcherApp_refineThrough___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, lean_object* x_8) { +_start: +{ +lean_object* x_9; uint8_t x_10; +x_9 = lean_array_get_size(x_2); +x_10 = lean_nat_dec_eq(x_9, x_1); +lean_dec(x_9); +if (x_10 == 0) +{ +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; uint8_t x_19; +lean_dec(x_3); +lean_dec(x_2); +x_11 = l_Nat_repr(x_1); +x_12 = lean_alloc_ctor(3, 1, 0); +lean_ctor_set(x_12, 0, x_11); +x_13 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_13, 0, x_12); +x_14 = l_Array_mapMUnsafe_map___at_Lean_Meta_MatcherApp_refineThrough___spec__3___lambda__2___closed__2; +x_15 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_15, 0, x_14); +lean_ctor_set(x_15, 1, x_13); +x_16 = l_Lean_Meta_MatcherApp_addArg___lambda__4___closed__4; +x_17 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_17, 0, x_15); +lean_ctor_set(x_17, 1, x_16); +x_18 = l_Lean_throwError___at_Lean_Meta_mkSimpCongrTheorem___spec__4(x_17, x_4, x_5, x_6, x_7, x_8); +x_19 = !lean_is_exclusive(x_18); +if (x_19 == 0) +{ +return x_18; +} +else +{ +lean_object* x_20; lean_object* x_21; lean_object* x_22; +x_20 = lean_ctor_get(x_18, 0); +x_21 = lean_ctor_get(x_18, 1); +lean_inc(x_21); +lean_inc(x_20); +lean_dec(x_18); +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; +} +} +else +{ +lean_object* x_23; lean_object* x_24; +lean_dec(x_1); +x_23 = lean_box(0); +x_24 = l_Array_mapMUnsafe_map___at_Lean_Meta_MatcherApp_refineThrough___spec__3___lambda__1(x_3, x_2, x_23, x_4, x_5, x_6, x_7, x_8); +lean_dec(x_3); +return x_24; +} +} +} +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Meta_MatcherApp_refineThrough___spec__3(size_t x_1, size_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) { +_start: +{ +uint8_t x_9; +x_9 = lean_usize_dec_lt(x_2, x_1); +if (x_9 == 0) +{ +lean_object* x_10; +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +x_10 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_10, 0, x_3); +lean_ctor_set(x_10, 1, x_8); +return x_10; +} +else +{ +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_11 = lean_array_uget(x_3, x_2); +x_12 = lean_unsigned_to_nat(0u); +x_13 = lean_array_uset(x_3, x_2, x_12); +x_14 = lean_ctor_get(x_11, 0); +lean_inc(x_14); +x_15 = lean_ctor_get(x_11, 1); +lean_inc(x_15); +lean_dec(x_11); +lean_inc(x_14); +x_16 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_16, 0, x_14); +x_17 = lean_alloc_closure((void*)(l_Array_mapMUnsafe_map___at_Lean_Meta_MatcherApp_refineThrough___spec__3___lambda__2___boxed), 8, 1); +lean_closure_set(x_17, 0, x_14); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +x_18 = l_Lean_Meta_forallBoundedTelescope___at___private_Lean_Meta_FunInfo_0__Lean_Meta_getFunInfoAux___spec__5___rarg(x_15, x_16, x_17, x_4, x_5, x_6, x_7, x_8); +if (lean_obj_tag(x_18) == 0) +{ +lean_object* x_19; lean_object* x_20; size_t x_21; size_t x_22; lean_object* x_23; +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 = 1; +x_22 = lean_usize_add(x_2, x_21); +x_23 = lean_array_uset(x_13, x_2, x_19); +x_2 = x_22; +x_3 = x_23; +x_8 = x_20; +goto _start; +} +else +{ +uint8_t x_25; +lean_dec(x_13); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +x_25 = !lean_is_exclusive(x_18); +if (x_25 == 0) +{ +return x_18; +} +else +{ +lean_object* x_26; lean_object* x_27; lean_object* x_28; +x_26 = lean_ctor_get(x_18, 0); +x_27 = lean_ctor_get(x_18, 1); +lean_inc(x_27); +lean_inc(x_26); +lean_dec(x_18); +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; +} +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_refineThrough___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) { +_start: +{ +lean_object* x_9; size_t x_10; size_t x_11; lean_object* x_12; +lean_dec(x_3); +x_9 = lean_array_get_size(x_2); +x_10 = lean_usize_of_nat(x_9); +lean_dec(x_9); +x_11 = 0; +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +x_12 = l_Array_mapMUnsafe_map___at_Lean_Meta_MatcherApp_refineThrough___spec__2(x_10, x_11, x_2, x_4, x_5, x_6, x_7, x_8); +if (lean_obj_tag(x_12) == 0) +{ +lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; size_t x_18; lean_object* x_19; +x_13 = lean_ctor_get(x_12, 0); +lean_inc(x_13); +x_14 = lean_ctor_get(x_12, 1); +lean_inc(x_14); +lean_dec(x_12); +x_15 = lean_ctor_get(x_1, 7); +lean_inc(x_15); +lean_dec(x_1); +x_16 = l_Array_zip___rarg(x_15, x_13); +lean_dec(x_13); +lean_dec(x_15); +x_17 = lean_array_get_size(x_16); +x_18 = lean_usize_of_nat(x_17); +lean_dec(x_17); +x_19 = l_Array_mapMUnsafe_map___at_Lean_Meta_MatcherApp_refineThrough___spec__3(x_18, x_11, x_16, x_4, x_5, x_6, x_7, x_14); +return x_19; +} +else +{ +uint8_t x_20; +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_1); +x_20 = !lean_is_exclusive(x_12); +if (x_20 == 0) +{ +return x_12; +} +else +{ +lean_object* x_21; lean_object* x_22; lean_object* x_23; +x_21 = lean_ctor_get(x_12, 0); +x_22 = lean_ctor_get(x_12, 1); +lean_inc(x_22); +lean_inc(x_21); +lean_dec(x_12); +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; +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_refineThrough___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) { +_start: +{ +lean_object* x_9; +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +x_9 = lean_infer_type(x_1, x_4, x_5, x_6, x_7, x_8); +if (lean_obj_tag(x_9) == 0) +{ +lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; +x_10 = lean_ctor_get(x_9, 0); +lean_inc(x_10); +x_11 = lean_ctor_get(x_9, 1); +lean_inc(x_11); +lean_dec(x_9); +x_12 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_refineThrough___lambda__1), 8, 1); +lean_closure_set(x_12, 0, x_2); +x_13 = l_Lean_Meta_forallTelescope___at_Lean_Meta_mapForallTelescope_x27___spec__1___rarg(x_10, x_12, x_4, x_5, x_6, x_7, x_11); +return x_13; +} +else +{ +uint8_t x_14; +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_2); +x_14 = !lean_is_exclusive(x_9); +if (x_14 == 0) +{ +return x_9; +} +else +{ +lean_object* x_15; lean_object* x_16; lean_object* x_17; +x_15 = lean_ctor_get(x_9, 0); +x_16 = lean_ctor_get(x_9, 1); +lean_inc(x_16); +lean_inc(x_15); +lean_dec(x_9); +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; +} +} +} +} +static lean_object* _init_l_Lean_Meta_MatcherApp_refineThrough___lambda__3___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("failed to transfer argument through matcher application, type error when constructing the new motive", 100); +return x_1; +} +} +static lean_object* _init_l_Lean_Meta_MatcherApp_refineThrough___lambda__3___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Meta_MatcherApp_refineThrough___lambda__3___closed__1; +x_2 = l_Lean_stringToMessageData(x_1); +return x_2; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_refineThrough___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: +{ +uint8_t x_11; uint8_t x_12; uint8_t x_13; lean_object* x_14; +x_11 = 0; +x_12 = 1; +x_13 = 1; +x_14 = l_Lean_Meta_mkLambdaFVars(x_1, x_2, x_11, x_12, x_13, x_6, x_7, x_8, x_9, x_10); +if (lean_obj_tag(x_14) == 0) +{ +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; +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_ctor_get(x_3, 0); +lean_inc(x_17); +x_18 = lean_array_to_list(lean_box(0), x_5); +x_19 = l_Lean_Expr_const___override(x_17, x_18); +x_20 = lean_ctor_get(x_3, 4); +lean_inc(x_20); +x_21 = l_Lean_mkAppN(x_19, x_20); +x_22 = l_Lean_Expr_app___override(x_21, x_15); +x_23 = l_Lean_mkAppN(x_22, x_4); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_23); +x_24 = l_Lean_Meta_isTypeCorrect(x_23, x_6, x_7, x_8, x_9, x_16); +if (lean_obj_tag(x_24) == 0) +{ +lean_object* x_25; uint8_t x_26; +x_25 = lean_ctor_get(x_24, 0); +lean_inc(x_25); +x_26 = lean_unbox(x_25); +lean_dec(x_25); +if (x_26 == 0) +{ +lean_object* x_27; lean_object* x_28; lean_object* x_29; uint8_t x_30; +lean_dec(x_23); +lean_dec(x_3); +x_27 = lean_ctor_get(x_24, 1); +lean_inc(x_27); +lean_dec(x_24); +x_28 = l_Lean_Meta_MatcherApp_refineThrough___lambda__3___closed__2; +x_29 = l_Lean_throwError___at_Lean_Meta_mkSimpCongrTheorem___spec__4(x_28, x_6, x_7, x_8, x_9, x_27); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +x_30 = !lean_is_exclusive(x_29); +if (x_30 == 0) +{ +return x_29; +} +else +{ +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(1, 2, 0); +lean_ctor_set(x_33, 0, x_31); +lean_ctor_set(x_33, 1, x_32); +return x_33; +} +} +else +{ +lean_object* x_34; lean_object* x_35; lean_object* x_36; +x_34 = lean_ctor_get(x_24, 1); +lean_inc(x_34); +lean_dec(x_24); +x_35 = lean_box(0); +x_36 = l_Lean_Meta_MatcherApp_refineThrough___lambda__2(x_23, x_3, x_35, x_6, x_7, x_8, x_9, x_34); +return x_36; +} +} +else +{ +uint8_t x_37; +lean_dec(x_23); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_3); +x_37 = !lean_is_exclusive(x_24); +if (x_37 == 0) +{ +return x_24; +} +else +{ +lean_object* x_38; lean_object* x_39; lean_object* x_40; +x_38 = lean_ctor_get(x_24, 0); +x_39 = lean_ctor_get(x_24, 1); +lean_inc(x_39); +lean_inc(x_38); +lean_dec(x_24); +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; +} +} +} +else +{ +uint8_t x_41; +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_41 = !lean_is_exclusive(x_14); +if (x_41 == 0) +{ +return x_14; +} +else +{ +lean_object* x_42; lean_object* x_43; lean_object* x_44; +x_42 = lean_ctor_get(x_14, 0); +x_43 = lean_ctor_get(x_14, 1); +lean_inc(x_43); +lean_inc(x_42); +lean_dec(x_14); +x_44 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_44, 0, x_42); +lean_ctor_set(x_44, 1, x_43); +return x_44; +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_refineThrough___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) { +_start: +{ +lean_object* x_10; lean_object* x_11; lean_object* x_12; +lean_dec(x_4); +x_10 = lean_ctor_get(x_1, 6); +lean_inc(x_10); +x_11 = lean_array_get_size(x_10); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +x_12 = l_Nat_foldRevM_loop___at_Lean_Meta_MatcherApp_refineThrough___spec__1(x_1, x_2, x_11, x_3, x_5, x_6, x_7, x_8, x_9); +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_12, 0); +lean_inc(x_13); +x_14 = lean_ctor_get(x_12, 1); +lean_inc(x_14); +lean_dec(x_12); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_13); +x_15 = l_Lean_Meta_mkEq(x_13, x_13, x_5, x_6, x_7, x_8, x_14); +if (lean_obj_tag(x_15) == 0) +{ +lean_object* x_16; +x_16 = lean_ctor_get(x_1, 2); +lean_inc(x_16); +if (lean_obj_tag(x_16) == 0) +{ +lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; +x_17 = lean_ctor_get(x_15, 0); +lean_inc(x_17); +x_18 = lean_ctor_get(x_15, 1); +lean_inc(x_18); +lean_dec(x_15); +x_19 = lean_ctor_get(x_1, 1); +lean_inc(x_19); +x_20 = l_Lean_Meta_MatcherApp_refineThrough___lambda__3(x_2, x_17, x_1, x_10, x_19, x_5, x_6, x_7, x_8, x_18); +return x_20; +} +else +{ +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_21 = lean_ctor_get(x_15, 0); +lean_inc(x_21); +x_22 = lean_ctor_get(x_15, 1); +lean_inc(x_22); +lean_dec(x_15); +x_23 = lean_ctor_get(x_16, 0); +lean_inc(x_23); +lean_dec(x_16); +x_24 = lean_ctor_get(x_1, 1); +lean_inc(x_24); +x_25 = l_Lean_levelZero; +x_26 = lean_array_set(x_24, x_23, x_25); +lean_dec(x_23); +x_27 = l_Lean_Meta_MatcherApp_refineThrough___lambda__3(x_2, x_21, x_1, x_10, x_26, x_5, x_6, x_7, x_8, x_22); +return x_27; +} +} +else +{ +uint8_t x_28; +lean_dec(x_10); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_2); +lean_dec(x_1); +x_28 = !lean_is_exclusive(x_15); +if (x_28 == 0) +{ +return x_15; +} +else +{ +lean_object* x_29; lean_object* x_30; lean_object* x_31; +x_29 = lean_ctor_get(x_15, 0); +x_30 = lean_ctor_get(x_15, 1); +lean_inc(x_30); +lean_inc(x_29); +lean_dec(x_15); +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; +} +} +} +else +{ +uint8_t x_32; +lean_dec(x_10); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_2); +lean_dec(x_1); +x_32 = !lean_is_exclusive(x_12); +if (x_32 == 0) +{ +return x_12; +} +else +{ +lean_object* x_33; lean_object* x_34; lean_object* x_35; +x_33 = lean_ctor_get(x_12, 0); +x_34 = lean_ctor_get(x_12, 1); +lean_inc(x_34); +lean_inc(x_33); +lean_dec(x_12); +x_35 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_35, 0, x_33); +lean_ctor_set(x_35, 1, x_34); +return x_35; +} +} +} +} +static lean_object* _init_l_Lean_Meta_MatcherApp_refineThrough___lambda__5___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("failed to transfer argument through matcher application, motive must be lambda expression with #", 96); +return x_1; +} +} +static lean_object* _init_l_Lean_Meta_MatcherApp_refineThrough___lambda__5___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Meta_MatcherApp_refineThrough___lambda__5___closed__1; +x_2 = l_Lean_stringToMessageData(x_1); +return x_2; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_refineThrough___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) { +_start: +{ +lean_object* x_10; lean_object* x_11; lean_object* x_12; uint8_t x_13; +lean_dec(x_4); +x_10 = lean_array_get_size(x_3); +x_11 = lean_ctor_get(x_1, 6); +lean_inc(x_11); +x_12 = lean_array_get_size(x_11); +lean_dec(x_11); +x_13 = lean_nat_dec_eq(x_10, x_12); +lean_dec(x_10); +if (x_13 == 0) +{ +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; uint8_t x_22; +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +x_14 = l_Nat_repr(x_12); +x_15 = lean_alloc_ctor(3, 1, 0); +lean_ctor_set(x_15, 0, x_14); +x_16 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_16, 0, x_15); +x_17 = l_Lean_Meta_MatcherApp_refineThrough___lambda__5___closed__2; +x_18 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_18, 0, x_17); +lean_ctor_set(x_18, 1, x_16); +x_19 = l_Lean_Meta_MatcherApp_addArg___lambda__4___closed__4; +x_20 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_20, 0, x_18); +lean_ctor_set(x_20, 1, x_19); +x_21 = l_Lean_throwError___at_Lean_Meta_mkSimpCongrTheorem___spec__4(x_20, 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); +x_22 = !lean_is_exclusive(x_21); +if (x_22 == 0) +{ +return x_21; +} +else +{ +lean_object* x_23; lean_object* x_24; lean_object* x_25; +x_23 = lean_ctor_get(x_21, 0); +x_24 = lean_ctor_get(x_21, 1); +lean_inc(x_24); +lean_inc(x_23); +lean_dec(x_21); +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 +{ +lean_object* x_26; lean_object* x_27; +lean_dec(x_12); +x_26 = lean_box(0); +x_27 = l_Lean_Meta_MatcherApp_refineThrough___lambda__4(x_1, x_3, x_2, x_26, x_5, x_6, x_7, x_8, x_9); +return x_27; +} +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_refineThrough(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; uint8_t x_10; lean_object* x_11; +x_8 = lean_ctor_get(x_1, 5); +lean_inc(x_8); +x_9 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_refineThrough___lambda__5), 9, 2); +lean_closure_set(x_9, 0, x_1); +lean_closure_set(x_9, 1, x_2); +x_10 = 0; +x_11 = l_Lean_Meta_lambdaTelescope___at___private_Lean_Meta_Eqns_0__Lean_Meta_mkSimpleEqThm___spec__1___rarg(x_8, x_9, x_10, x_3, x_4, x_5, x_6, x_7); +return x_11; +} +} +LEAN_EXPORT lean_object* l_Nat_foldRevM_loop___at_Lean_Meta_MatcherApp_refineThrough___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: +{ +lean_object* x_10; +x_10 = l_Nat_foldRevM_loop___at_Lean_Meta_MatcherApp_refineThrough___spec__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +lean_dec(x_2); +lean_dec(x_1); +return x_10; +} +} +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Meta_MatcherApp_refineThrough___spec__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) { +_start: +{ +size_t x_9; size_t x_10; lean_object* x_11; +x_9 = lean_unbox_usize(x_1); +lean_dec(x_1); +x_10 = lean_unbox_usize(x_2); +lean_dec(x_2); +x_11 = l_Array_mapMUnsafe_map___at_Lean_Meta_MatcherApp_refineThrough___spec__2(x_9, x_10, x_3, x_4, x_5, x_6, x_7, x_8); +return x_11; +} +} +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Meta_MatcherApp_refineThrough___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, lean_object* x_7, lean_object* x_8) { +_start: +{ +lean_object* x_9; +x_9 = l_Array_mapMUnsafe_map___at_Lean_Meta_MatcherApp_refineThrough___spec__3___lambda__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, 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_1); +return x_9; +} +} +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Meta_MatcherApp_refineThrough___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) { +_start: +{ +lean_object* x_9; +x_9 = l_Array_mapMUnsafe_map___at_Lean_Meta_MatcherApp_refineThrough___spec__3___lambda__2(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +return x_9; +} +} +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Meta_MatcherApp_refineThrough___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) { +_start: +{ +size_t x_9; size_t x_10; lean_object* x_11; +x_9 = lean_unbox_usize(x_1); +lean_dec(x_1); +x_10 = lean_unbox_usize(x_2); +lean_dec(x_2); +x_11 = l_Array_mapMUnsafe_map___at_Lean_Meta_MatcherApp_refineThrough___spec__3(x_9, x_10, x_3, x_4, x_5, x_6, x_7, x_8); +return x_11; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_refineThrough___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) { +_start: +{ +lean_object* x_9; +x_9 = l_Lean_Meta_MatcherApp_refineThrough___lambda__2(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +lean_dec(x_3); +return x_9; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_refineThrough_x3f(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_inc(x_5); +x_8 = l_Lean_Meta_MatcherApp_refineThrough(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +if (lean_obj_tag(x_8) == 0) +{ +uint8_t x_9; +lean_dec(x_5); +x_9 = !lean_is_exclusive(x_8); +if (x_9 == 0) +{ +lean_object* x_10; lean_object* x_11; +x_10 = lean_ctor_get(x_8, 0); +x_11 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_11, 0, x_10); +lean_ctor_set(x_8, 0, x_11); +return x_8; +} +else +{ +lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; +x_12 = lean_ctor_get(x_8, 0); +x_13 = lean_ctor_get(x_8, 1); +lean_inc(x_13); +lean_inc(x_12); +lean_dec(x_8); +x_14 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_14, 0, x_12); +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 +{ +uint8_t x_16; +x_16 = !lean_is_exclusive(x_8); +if (x_16 == 0) +{ +lean_object* x_17; uint8_t x_18; +x_17 = lean_ctor_get(x_8, 0); +x_18 = l_Lean_Exception_isRuntime(x_17); +if (x_18 == 0) +{ +lean_object* x_19; +lean_dec(x_17); +lean_dec(x_5); +x_19 = lean_box(0); +lean_ctor_set_tag(x_8, 0); +lean_ctor_set(x_8, 0, x_19); +return x_8; +} +else +{ +uint8_t x_20; +x_20 = lean_ctor_get_uint8(x_5, sizeof(void*)*11); +lean_dec(x_5); +if (x_20 == 0) +{ +return x_8; +} +else +{ +lean_object* x_21; +lean_dec(x_17); +x_21 = lean_box(0); +lean_ctor_set_tag(x_8, 0); +lean_ctor_set(x_8, 0, x_21); +return x_8; +} +} +} +else +{ +lean_object* x_22; lean_object* x_23; uint8_t x_24; +x_22 = lean_ctor_get(x_8, 0); +x_23 = lean_ctor_get(x_8, 1); +lean_inc(x_23); +lean_inc(x_22); +lean_dec(x_8); +x_24 = l_Lean_Exception_isRuntime(x_22); +if (x_24 == 0) +{ +lean_object* x_25; lean_object* x_26; +lean_dec(x_22); +lean_dec(x_5); +x_25 = lean_box(0); +x_26 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_26, 0, x_25); +lean_ctor_set(x_26, 1, x_23); +return x_26; +} +else +{ +uint8_t x_27; +x_27 = lean_ctor_get_uint8(x_5, sizeof(void*)*11); +lean_dec(x_5); +if (x_27 == 0) +{ +lean_object* x_28; +x_28 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_28, 0, x_22); +lean_ctor_set(x_28, 1, x_23); +return x_28; +} +else +{ +lean_object* x_29; lean_object* x_30; +lean_dec(x_22); +x_29 = lean_box(0); +x_30 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_30, 0, x_29); +lean_ctor_set(x_30, 1, x_23); +return x_30; +} +} +} +} +} +} +lean_object* initialize_Lean_Meta_Match(uint8_t builtin, lean_object*); +lean_object* initialize_Lean_Meta_InferType(uint8_t builtin, lean_object*); +lean_object* initialize_Lean_Meta_Check(uint8_t builtin, lean_object*); +lean_object* initialize_Lean_Meta_Tactic_Split(uint8_t builtin, lean_object*); +static bool _G_initialized = false; +LEAN_EXPORT lean_object* initialize_Lean_Meta_Match_MatcherApp_Transform(uint8_t builtin, lean_object* w) { +lean_object * res; +if (_G_initialized) return lean_io_result_mk_ok(lean_box(0)); +_G_initialized = true; +res = initialize_Lean_Meta_Match(builtin, lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +res = initialize_Lean_Meta_InferType(builtin, lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +res = initialize_Lean_Meta_Check(builtin, lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +res = initialize_Lean_Meta_Tactic_Split(builtin, lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_updateAlts___lambda__2___closed__1 = _init_l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_updateAlts___lambda__2___closed__1(); +lean_mark_persistent(l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_updateAlts___lambda__2___closed__1); +l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_updateAlts___lambda__3___closed__1 = _init_l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_updateAlts___lambda__3___closed__1(); +lean_mark_persistent(l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_updateAlts___lambda__3___closed__1); +l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_updateAlts___lambda__3___closed__2 = _init_l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_updateAlts___lambda__3___closed__2(); +lean_mark_persistent(l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_updateAlts___lambda__3___closed__2); +l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_updateAlts___closed__1 = _init_l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_updateAlts___closed__1(); +lean_mark_persistent(l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_updateAlts___closed__1); +l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_updateAlts___closed__2 = _init_l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_updateAlts___closed__2(); +lean_mark_persistent(l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_updateAlts___closed__2); +l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_updateAlts___closed__3 = _init_l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_updateAlts___closed__3(); +lean_mark_persistent(l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_updateAlts___closed__3); +l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_updateAlts___closed__4 = _init_l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_updateAlts___closed__4(); +lean_mark_persistent(l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_updateAlts___closed__4); +l_Lean_Meta_MatcherApp_addArg___lambda__1___closed__1 = _init_l_Lean_Meta_MatcherApp_addArg___lambda__1___closed__1(); +lean_mark_persistent(l_Lean_Meta_MatcherApp_addArg___lambda__1___closed__1); +l_Lean_Meta_MatcherApp_addArg___lambda__2___closed__1 = _init_l_Lean_Meta_MatcherApp_addArg___lambda__2___closed__1(); +lean_mark_persistent(l_Lean_Meta_MatcherApp_addArg___lambda__2___closed__1); +l_Lean_Meta_MatcherApp_addArg___lambda__2___closed__2 = _init_l_Lean_Meta_MatcherApp_addArg___lambda__2___closed__2(); +lean_mark_persistent(l_Lean_Meta_MatcherApp_addArg___lambda__2___closed__2); +l_Lean_Meta_MatcherApp_addArg___lambda__4___closed__1 = _init_l_Lean_Meta_MatcherApp_addArg___lambda__4___closed__1(); +lean_mark_persistent(l_Lean_Meta_MatcherApp_addArg___lambda__4___closed__1); +l_Lean_Meta_MatcherApp_addArg___lambda__4___closed__2 = _init_l_Lean_Meta_MatcherApp_addArg___lambda__4___closed__2(); +lean_mark_persistent(l_Lean_Meta_MatcherApp_addArg___lambda__4___closed__2); +l_Lean_Meta_MatcherApp_addArg___lambda__4___closed__3 = _init_l_Lean_Meta_MatcherApp_addArg___lambda__4___closed__3(); +lean_mark_persistent(l_Lean_Meta_MatcherApp_addArg___lambda__4___closed__3); +l_Lean_Meta_MatcherApp_addArg___lambda__4___closed__4 = _init_l_Lean_Meta_MatcherApp_addArg___lambda__4___closed__4(); +lean_mark_persistent(l_Lean_Meta_MatcherApp_addArg___lambda__4___closed__4); +l_Array_mapMUnsafe_map___at_Lean_Meta_MatcherApp_refineThrough___spec__3___lambda__2___closed__1 = _init_l_Array_mapMUnsafe_map___at_Lean_Meta_MatcherApp_refineThrough___spec__3___lambda__2___closed__1(); +lean_mark_persistent(l_Array_mapMUnsafe_map___at_Lean_Meta_MatcherApp_refineThrough___spec__3___lambda__2___closed__1); +l_Array_mapMUnsafe_map___at_Lean_Meta_MatcherApp_refineThrough___spec__3___lambda__2___closed__2 = _init_l_Array_mapMUnsafe_map___at_Lean_Meta_MatcherApp_refineThrough___spec__3___lambda__2___closed__2(); +lean_mark_persistent(l_Array_mapMUnsafe_map___at_Lean_Meta_MatcherApp_refineThrough___spec__3___lambda__2___closed__2); +l_Lean_Meta_MatcherApp_refineThrough___lambda__3___closed__1 = _init_l_Lean_Meta_MatcherApp_refineThrough___lambda__3___closed__1(); +lean_mark_persistent(l_Lean_Meta_MatcherApp_refineThrough___lambda__3___closed__1); +l_Lean_Meta_MatcherApp_refineThrough___lambda__3___closed__2 = _init_l_Lean_Meta_MatcherApp_refineThrough___lambda__3___closed__2(); +lean_mark_persistent(l_Lean_Meta_MatcherApp_refineThrough___lambda__3___closed__2); +l_Lean_Meta_MatcherApp_refineThrough___lambda__5___closed__1 = _init_l_Lean_Meta_MatcherApp_refineThrough___lambda__5___closed__1(); +lean_mark_persistent(l_Lean_Meta_MatcherApp_refineThrough___lambda__5___closed__1); +l_Lean_Meta_MatcherApp_refineThrough___lambda__5___closed__2 = _init_l_Lean_Meta_MatcherApp_refineThrough___lambda__5___closed__2(); +lean_mark_persistent(l_Lean_Meta_MatcherApp_refineThrough___lambda__5___closed__2); +return lean_io_result_mk_ok(lean_box(0)); +} +#ifdef __cplusplus +} +#endif diff --git a/stage0/stdlib/Lean/Meta/Match/MatcherInfo.c b/stage0/stdlib/Lean/Meta/Match/MatcherInfo.c index 0cf904fe28..3bdea7748b 100644 --- a/stage0/stdlib/Lean/Meta/Match/MatcherInfo.c +++ b/stage0/stdlib/Lean/Meta/Match/MatcherInfo.c @@ -15,34 +15,21 @@ extern "C" { #endif LEAN_EXPORT lean_object* l_Lean_SMap_switch___at_Lean_Meta_Match_Extension_State_switch___spec__1(lean_object*); static lean_object* l_Lean_Meta_Match_addMatcherInfo___closed__1; -lean_object* l_Lean_Expr_const___override(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_List_forIn_loop___at_Lean_Meta_matchMatcherApp_x3f___spec__8___rarg___lambda__2___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT uint8_t lean_is_matcher(lean_object*, lean_object*); -lean_object* l___private_Init_Util_0__outOfBounds___rarg(lean_object*); LEAN_EXPORT lean_object* l_Lean_mkStateFromImportedEntries___at_Lean_Meta_Match_Extension_initFn____x40_Lean_Meta_Match_MatcherInfo___hyg_350____spec__1(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_Match_MatcherInfo_getFirstDiscrPos___boxed(lean_object*); -LEAN_EXPORT lean_object* l_List_forIn_loop___at_Lean_Meta_matchMatcherApp_x3f___spec__8(lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_Match_addMatcherInfo___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_Match_MatcherInfo_getFirstAltPos(lean_object*); -lean_object* lean_mk_empty_array_with_capacity(lean_object*); -lean_object* l_Lean_mkAppN(lean_object*, lean_object*); size_t lean_usize_shift_right(size_t, size_t); LEAN_EXPORT lean_object* l_Lean_Meta_getMatcherInfoCore_x3f(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Meta_matchMatcherApp_x3f___rarg(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t); lean_object* l___private_Lean_Expr_0__Lean_Expr_getAppNumArgsAux(lean_object*, lean_object*); -static lean_object* l_List_forIn_loop___at_Lean_Meta_matchMatcherApp_x3f___spec__8___rarg___lambda__3___closed__4; -LEAN_EXPORT lean_object* l_Lean_Meta_matchMatcherApp_x3f___rarg___lambda__8___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_Meta_Match_addMatcherInfo___closed__10; -LEAN_EXPORT lean_object* l_List_forIn_loop___at_Lean_Meta_matchMatcherApp_x3f___spec__8___rarg___lambda__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t lean_usize_dec_le(size_t, size_t); -LEAN_EXPORT lean_object* l_List_forIn_loop___at_Lean_Meta_matchMatcherApp_x3f___spec__8___rarg___lambda__2(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Meta_Match_Extension_initFn____x40_Lean_Meta_Match_MatcherInfo___hyg_350____closed__7; LEAN_EXPORT lean_object* l_Lean_Meta_isMatcher___rarg(lean_object*, lean_object*, lean_object*); size_t lean_uint64_to_usize(uint64_t); LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Meta_Match_Extension_initFn____x40_Lean_Meta_Match_MatcherInfo___hyg_350____spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Expr_sort___override(lean_object*); lean_object* lean_array_push(lean_object*, lean_object*); -lean_object* l_Array_toSubarray___rarg(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_isMatcherApp___rarg___lambda__1___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_instBEqLocalInstance___boxed(lean_object*, lean_object*); size_t lean_usize_mul(size_t, size_t); @@ -52,11 +39,8 @@ LEAN_EXPORT lean_object* l_Lean_Meta_Match_MatcherInfo_getMotivePos___boxed(lean uint8_t lean_usize_dec_eq(size_t, size_t); lean_object* lean_array_fget(lean_object*, lean_object*); lean_object* lean_array_fset(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_List_forIn_loop___at_Lean_Meta_matchMatcherApp_x3f___spec__8___rarg___lambda__1(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_Match_MatcherInfo_arity(lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_isMatcherApp___rarg___lambda__1(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Meta_matchMatcherApp_x3f___rarg___lambda__5(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_panic___at_Lean_Meta_matchMatcherApp_x3f___spec__6___rarg(lean_object*, lean_object*); lean_object* l_Lean_Name_mkStr5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insert___at_Lean_Meta_Match_Extension_State_addEntry___spec__2(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_isMatcherApp(lean_object*); @@ -64,37 +48,24 @@ extern lean_object* l_Lean_Expr_instBEqExpr; LEAN_EXPORT lean_object* l_Lean_AssocList_find_x3f___at_Lean_Meta_Match_Extension_getMatcherInfo_x3f___spec__6___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_Match_Extension_instInhabitedState; LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux___at_Lean_Meta_Match_Extension_State_addEntry___spec__3(lean_object*, size_t, size_t, lean_object*, lean_object*); -static lean_object* l_List_forIn_loop___at_Lean_Meta_matchMatcherApp_x3f___spec__8___rarg___lambda__3___closed__2; LEAN_EXPORT lean_object* l_Lean_Meta_Match_Extension_State_addEntry(lean_object*, lean_object*); lean_object* l_instBEqProd___rarg(lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Meta_matchMatcherApp_x3f___rarg___lambda__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_Match_addMatcherInfo___closed__6; -extern lean_object* l_instInhabitedPUnit; LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux___at_Lean_Meta_Match_Extension_State_addEntry___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_instHashableArray___rarg___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_AssocList_find_x3f___at_Lean_Meta_Match_Extension_getMatcherInfo_x3f___spec__6(lean_object*, lean_object*); size_t lean_usize_of_nat(lean_object*); static lean_object* l_Lean_Meta_Match_Extension_State_map___default___closed__2; -LEAN_EXPORT lean_object* l_panic___at_Lean_Meta_matchMatcherApp_x3f___spec__2___rarg(lean_object*, lean_object*); static lean_object* l_Lean_Meta_Match_Extension_initFn____x40_Lean_Meta_Match_MatcherInfo___hyg_350____closed__5; -LEAN_EXPORT lean_object* l_panic___at_Lean_Meta_matchMatcherApp_x3f___spec__7___rarg(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Meta_matchMatcherApp_x3f___rarg___lambda__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_st_ref_take(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_panic___at_Lean_Meta_matchMatcherApp_x3f___spec__5(lean_object*); -uint8_t lean_nat_dec_eq(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Meta_matchMatcherApp_x3f___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_Match_Extension_getMatcherInfo_x3f(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_Match_MatcherInfo_getFirstAltPos___boxed(lean_object*); LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_Meta_Match_getNumEqsFromDiscrInfos___spec__1(lean_object*, size_t, size_t, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_Match_MatcherInfo_getMotivePos(lean_object*); -LEAN_EXPORT lean_object* l_Lean_Meta_matchMatcherApp_x3f___rarg___lambda__7___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_panic___at_Lean_Meta_matchMatcherApp_x3f___spec__3___rarg(lean_object*, lean_object*); static lean_object* l_Lean_Meta_Match_addMatcherInfo___closed__5; lean_object* l_Lean_PersistentEnvExtension_addEntry___rarg(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Meta_Match_addMatcherInfo___closed__13; -LEAN_EXPORT lean_object* l_Lean_Meta_matchMatcherApp_x3f___rarg___lambda__8(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_Match_MatcherInfo_getDiscrRange___boxed(lean_object*); -lean_object* l_Lean_Name_getPrefix(lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_Match_MatcherInfo_numAlts(lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_Match_MatcherInfo_getFirstDiscrPos(lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_Match_instInhabitedDiscrInfo; @@ -103,38 +74,25 @@ static lean_object* l_Lean_Meta_Match_addMatcherInfo___closed__12; LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_findAux___at_Lean_Meta_Match_Extension_getMatcherInfo_x3f___spec__3___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_Match_Extension_State_map___default; LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_findAtAux___at_Lean_Meta_Match_Extension_getMatcherInfo_x3f___spec__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_List_forIn_loop___at_Lean_Meta_matchMatcherApp_x3f___spec__8___rarg___lambda__3___closed__3; LEAN_EXPORT lean_object* l_Lean_Meta_Match_MatcherInfo_arity___boxed(lean_object*); -lean_object* lean_array_to_list(lean_object*, lean_object*); static lean_object* l_Lean_Meta_Match_addMatcherInfo___closed__15; LEAN_EXPORT lean_object* l_Lean_AssocList_foldlM___at_Lean_Meta_Match_Extension_State_addEntry___spec__10(lean_object*, lean_object*); lean_object* lean_list_to_array(lean_object*, lean_object*); static lean_object* l_Lean_Meta_Match_Extension_initFn____x40_Lean_Meta_Match_MatcherInfo___hyg_350____closed__2; -lean_object* l_instInhabited___rarg(lean_object*, lean_object*); -static lean_object* l_List_forIn_loop___at_Lean_Meta_matchMatcherApp_x3f___spec__8___rarg___lambda__3___closed__1; -LEAN_EXPORT lean_object* l_Lean_Meta_matchMatcherApp_x3f___rarg___lambda__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Expr_instHashableExpr; static lean_object* l_Lean_Meta_Match_addMatcherInfo___closed__16; -extern lean_object* l_Lean_levelZero; lean_object* l_Lean_Expr_constName_x21(lean_object*); LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux_traverse___at_Lean_Meta_Match_Extension_State_addEntry___spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -extern lean_object* l_Lean_instInhabitedExpr; static lean_object* l_Lean_Meta_Match_addMatcherInfo___closed__7; -lean_object* l_List_lengthTRAux___rarg(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_List_forIn_loop___at_Lean_Meta_matchMatcherApp_x3f___spec__8___rarg___lambda__1___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_instHashableLocalInstance___boxed(lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_Match_MatcherInfo_getAltRange___boxed(lean_object*); -LEAN_EXPORT lean_object* l_Lean_Meta_matchMatcherApp_x3f(lean_object*); lean_object* l_instHashableProd___rarg___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_Match_MatcherInfo_numAlts___boxed(lean_object*); uint8_t lean_name_eq(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_find_x3f___at_Lean_Meta_Match_Extension_getMatcherInfo_x3f___spec__2(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_Match_DiscrInfo_hName_x3f___default; -lean_object* l___private_Init_Util_0__mkPanicMessageWithDecl(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_registerSimplePersistentEnvExtension___rarg(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_isMatcherAppCore_x3f(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Meta_matchMatcherApp_x3f___rarg___lambda__6(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Meta_matchMatcherApp_x3f___rarg___lambda__1(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_AssocList_contains___at_Lean_Meta_Match_Extension_State_addEntry___spec__7___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_findAux___at_Lean_Meta_Match_Extension_getMatcherInfo_x3f___spec__3(lean_object*, size_t, lean_object*); static lean_object* l_Lean_Meta_Match_Extension_initFn____x40_Lean_Meta_Match_MatcherInfo___hyg_350____closed__6; @@ -143,53 +101,34 @@ lean_object* lean_usize_to_nat(size_t); size_t lean_hashmap_mk_idx(lean_object*, uint64_t); LEAN_EXPORT lean_object* l_Lean_Meta_Match_Extension_State_switch(lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_isMatcherCore___boxed(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_List_forIn_loop___at_Lean_Meta_matchMatcherApp_x3f___spec__8___rarg___lambda__3(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Meta_Match_Extension_addMatcherInfo___closed__1; -lean_object* l_Array_extract___rarg(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_isMatcherAppCore_x3f___boxed(lean_object*, lean_object*); static lean_object* l_Lean_Meta_Match_Extension_initFn____x40_Lean_Meta_Match_MatcherInfo___hyg_350____closed__1; LEAN_EXPORT lean_object* l_Lean_Meta_getMatcherInfo_x3f___rarg___lambda__1(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Meta_Match_Extension_initFn____x40_Lean_Meta_Match_MatcherInfo___hyg_350____spec__3(lean_object*, size_t, size_t, lean_object*); -static lean_object* l_Lean_Meta_matchMatcherApp_x3f___rarg___lambda__4___closed__1; static lean_object* l_Lean_Meta_Match_Extension_State_map___default___closed__3; -LEAN_EXPORT lean_object* l_List_forIn_loop___at_Lean_Meta_matchMatcherApp_x3f___spec__8___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Meta_Match_Extension_initFn____x40_Lean_Meta_Match_MatcherInfo___hyg_350____closed__8; LEAN_EXPORT lean_object* l_Lean_Meta_Match_Extension_addMatcherInfo(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Meta_Match_addMatcherInfo___closed__2; -lean_object* l_Lean_getConstInfo___rarg(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Meta_Match_addMatcherInfo___closed__4; static lean_object* l_Lean_Meta_Match_Extension_instInhabitedState___closed__1; LEAN_EXPORT lean_object* l_Lean_AssocList_replace___at_Lean_Meta_Match_Extension_State_addEntry___spec__11(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_HashMapImp_moveEntries___at_Lean_Meta_Match_Extension_State_addEntry___spec__9(lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Expr_app___override(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_panic___at_Lean_Meta_matchMatcherApp_x3f___spec__1(lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_isMatcher___rarg___lambda__1(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Meta_Match_addMatcherInfo___closed__8; -LEAN_EXPORT lean_object* l_Lean_Meta_matchMatcherApp_x3f___rarg___lambda__1___boxed(lean_object*, lean_object*); uint8_t lean_nat_dec_lt(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux_traverse___at_Lean_Meta_Match_Extension_State_addEntry___spec__4(size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_SMap_insert___at_Lean_Meta_Match_Extension_State_addEntry___spec__1(lean_object*, lean_object*, lean_object*); static size_t l_Lean_PersistentHashMap_insertAux___at_Lean_Meta_Match_Extension_State_addEntry___spec__3___closed__1; -LEAN_EXPORT lean_object* l_panic___at_Lean_Meta_matchMatcherApp_x3f___spec__2(lean_object*); LEAN_EXPORT uint8_t l_Lean_Meta_isMatcherAppCore(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_panic___at_Lean_Meta_matchMatcherApp_x3f___spec__6(lean_object*); -LEAN_EXPORT lean_object* l_Lean_Meta_matchMatcherApp_x3f___rarg___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_Lean_Meta_Match_getNumEqsFromDiscrInfos(lean_object*); lean_object* l_Lean_PersistentHashMap_mkEmptyEntries(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Meta_matchMatcherApp_x3f___rarg___lambda__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_Meta_Match_getNumEqsFromDiscrInfos___boxed(lean_object*); -static lean_object* l_Lean_Meta_matchMatcherApp_x3f___rarg___lambda__3___closed__2; -LEAN_EXPORT lean_object* l_panic___at_Lean_Meta_matchMatcherApp_x3f___spec__5___rarg(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_Match_MatcherInfo_getDiscrRange(lean_object*); uint64_t l_Lean_Name_hash___override(lean_object*); -LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_toExpr(lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_Match_addMatcherInfo(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_panic___at_Lean_Meta_matchMatcherApp_x3f___spec__4___rarg(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_findAtAux___at_Lean_Meta_Match_Extension_getMatcherInfo_x3f___spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* lean_nat_sub(lean_object*, lean_object*); lean_object* l_Lean_Expr_getAppFn(lean_object*); -LEAN_EXPORT lean_object* l_panic___at_Lean_Meta_matchMatcherApp_x3f___spec__1___rarg(lean_object*, lean_object*); lean_object* lean_nat_mul(lean_object*, lean_object*); lean_object* l_Lean_SimplePersistentEnvExtension_getState___rarg(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Meta_Match_addMatcherInfo___closed__14; @@ -197,7 +136,6 @@ lean_object* l_Lean_Meta_InfoCacheKey_instHashableInfoCacheKey___boxed(lean_obje lean_object* l_Lean_PersistentHashMap_mkCollisionNode___rarg(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Meta_Match_Extension_initFn____x40_Lean_Meta_Match_MatcherInfo___hyg_350____spec__2___boxed(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*); static size_t l_Lean_PersistentHashMap_insertAux___at_Lean_Meta_Match_Extension_State_addEntry___spec__3___closed__2; LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Meta_Match_Extension_initFn____x40_Lean_Meta_Match_MatcherInfo___hyg_350____spec__2(lean_object*, size_t, size_t, lean_object*); LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_Meta_Match_getNumEqsFromDiscrInfos___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); @@ -207,8 +145,6 @@ lean_object* l_Lean_mkHashMapImp___rarg(lean_object*); LEAN_EXPORT lean_object* l_Lean_HashMapImp_expand___at_Lean_Meta_Match_Extension_State_addEntry___spec__8(lean_object*, lean_object*); static lean_object* l_Lean_Meta_Match_Extension_instInhabitedState___closed__2; size_t lean_usize_add(size_t, size_t); -LEAN_EXPORT lean_object* l_panic___at_Lean_Meta_matchMatcherApp_x3f___spec__4(lean_object*); -LEAN_EXPORT lean_object* l_Lean_Meta_matchMatcherApp_x3f___rarg___lambda__7(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_array_uget(lean_object*, size_t); LEAN_EXPORT lean_object* l_Lean_Meta_isMatcher(lean_object*); static lean_object* l_Lean_Meta_Match_Extension_initFn____x40_Lean_Meta_Match_MatcherInfo___hyg_350____closed__9; @@ -219,11 +155,8 @@ LEAN_EXPORT lean_object* l_Lean_Meta_isMatcherAppCore___boxed(lean_object*, lean static lean_object* l_Lean_Meta_Match_addMatcherInfo___closed__3; LEAN_EXPORT lean_object* l_Lean_Meta_Match_MatcherInfo_getAltRange(lean_object*); size_t lean_usize_shift_left(size_t, size_t); -lean_object* l_List_redLength___rarg(lean_object*); -lean_object* l___private_Lean_Expr_0__Lean_Expr_getAppArgsAux(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_Match_MatcherInfo_getNumDiscrEqs(lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_Match_Extension_initFn____x40_Lean_Meta_Match_MatcherInfo___hyg_350_(lean_object*); -LEAN_EXPORT lean_object* l_panic___at_Lean_Meta_matchMatcherApp_x3f___spec__7(lean_object*); LEAN_EXPORT uint8_t l_Lean_AssocList_contains___at_Lean_Meta_Match_Extension_State_addEntry___spec__7(lean_object*, lean_object*); lean_object* lean_array_get_size(lean_object*); LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAtCollisionNodeAux___at_Lean_Meta_Match_Extension_State_addEntry___spec__5(lean_object*, lean_object*, lean_object*, lean_object*); @@ -236,22 +169,16 @@ static lean_object* l_Lean_Meta_Match_Extension_initFn____x40_Lean_Meta_Match_Ma lean_object* lean_nat_add(lean_object*, lean_object*); lean_object* l_Lean_PersistentHashMap_getCollisionNodeSize___rarg(lean_object*); uint8_t l_Lean_Expr_isConst(lean_object*); -static lean_object* l_Lean_Meta_matchMatcherApp_x3f___rarg___lambda__3___closed__1; lean_object* l_Array_instBEqArray___rarg___boxed(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Meta_Match_Extension_initFn____x40_Lean_Meta_Match_MatcherInfo___hyg_350____closed__4; LEAN_EXPORT lean_object* l_Lean_HashMap_insert___at_Lean_Meta_Match_Extension_State_addEntry___spec__6(lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_InductiveVal_numCtors(lean_object*); lean_object* lean_array_uset(lean_object*, size_t, lean_object*); -uint8_t l_Lean_isCasesOnRecursor(lean_object*, lean_object*); lean_object* lean_array_get(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_Match_Extension_initFn____x40_Lean_Meta_Match_MatcherInfo___hyg_350____lambda__1(lean_object*); LEAN_EXPORT lean_object* l_Lean_mkHashMap___at_Lean_Meta_Match_Extension_State_map___default___spec__1___boxed(lean_object*); -LEAN_EXPORT lean_object* l_panic___at_Lean_Meta_matchMatcherApp_x3f___spec__3(lean_object*); -LEAN_EXPORT lean_object* l_Lean_Meta_matchMatcherApp_x3f___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_EXPORT lean_object* l_Lean_Meta_getMatcherInfo_x3f___rarg(lean_object*, lean_object*, lean_object*); size_t lean_usize_land(size_t, size_t); static lean_object* l_Lean_Meta_Match_addMatcherInfo___closed__11; -lean_object* l_List_toArrayAux___rarg(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_Match_Extension_extension; lean_object* l___private_Lean_Data_HashMap_0__Lean_numBucketsForCapacity(lean_object*); static lean_object* l_Lean_Meta_Match_Extension_initFn____x40_Lean_Meta_Match_MatcherInfo___hyg_350____closed__10; @@ -2865,1196 +2792,6 @@ lean_dec(x_2); return x_4; } } -LEAN_EXPORT lean_object* l_panic___at_Lean_Meta_matchMatcherApp_x3f___spec__1___rarg(lean_object* x_1, lean_object* x_2) { -_start: -{ -lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_3 = l_instInhabitedPUnit; -x_4 = l_instInhabited___rarg(x_1, x_3); -x_5 = lean_panic_fn(x_4, x_2); -return x_5; -} -} -LEAN_EXPORT lean_object* l_panic___at_Lean_Meta_matchMatcherApp_x3f___spec__1(lean_object* x_1) { -_start: -{ -lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l_panic___at_Lean_Meta_matchMatcherApp_x3f___spec__1___rarg), 2, 0); -return x_2; -} -} -LEAN_EXPORT lean_object* l_panic___at_Lean_Meta_matchMatcherApp_x3f___spec__2___rarg(lean_object* x_1, lean_object* x_2) { -_start: -{ -lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_3 = l_instInhabitedPUnit; -x_4 = l_instInhabited___rarg(x_1, x_3); -x_5 = lean_panic_fn(x_4, x_2); -return x_5; -} -} -LEAN_EXPORT lean_object* l_panic___at_Lean_Meta_matchMatcherApp_x3f___spec__2(lean_object* x_1) { -_start: -{ -lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l_panic___at_Lean_Meta_matchMatcherApp_x3f___spec__2___rarg), 2, 0); -return x_2; -} -} -LEAN_EXPORT lean_object* l_panic___at_Lean_Meta_matchMatcherApp_x3f___spec__3___rarg(lean_object* x_1, lean_object* x_2) { -_start: -{ -lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_3 = l_instInhabitedPUnit; -x_4 = l_instInhabited___rarg(x_1, x_3); -x_5 = lean_panic_fn(x_4, x_2); -return x_5; -} -} -LEAN_EXPORT lean_object* l_panic___at_Lean_Meta_matchMatcherApp_x3f___spec__3(lean_object* x_1) { -_start: -{ -lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l_panic___at_Lean_Meta_matchMatcherApp_x3f___spec__3___rarg), 2, 0); -return x_2; -} -} -LEAN_EXPORT lean_object* l_panic___at_Lean_Meta_matchMatcherApp_x3f___spec__4___rarg(lean_object* x_1, lean_object* x_2) { -_start: -{ -lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_3 = l_instInhabitedPUnit; -x_4 = l_instInhabited___rarg(x_1, x_3); -x_5 = lean_panic_fn(x_4, x_2); -return x_5; -} -} -LEAN_EXPORT lean_object* l_panic___at_Lean_Meta_matchMatcherApp_x3f___spec__4(lean_object* x_1) { -_start: -{ -lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l_panic___at_Lean_Meta_matchMatcherApp_x3f___spec__4___rarg), 2, 0); -return x_2; -} -} -LEAN_EXPORT lean_object* l_panic___at_Lean_Meta_matchMatcherApp_x3f___spec__5___rarg(lean_object* x_1, lean_object* x_2) { -_start: -{ -lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_3 = l_instInhabitedPUnit; -x_4 = l_instInhabited___rarg(x_1, x_3); -x_5 = lean_panic_fn(x_4, x_2); -return x_5; -} -} -LEAN_EXPORT lean_object* l_panic___at_Lean_Meta_matchMatcherApp_x3f___spec__5(lean_object* x_1) { -_start: -{ -lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l_panic___at_Lean_Meta_matchMatcherApp_x3f___spec__5___rarg), 2, 0); -return x_2; -} -} -LEAN_EXPORT lean_object* l_panic___at_Lean_Meta_matchMatcherApp_x3f___spec__6___rarg(lean_object* x_1, lean_object* x_2) { -_start: -{ -lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_3 = l_instInhabitedPUnit; -x_4 = l_instInhabited___rarg(x_1, x_3); -x_5 = lean_panic_fn(x_4, x_2); -return x_5; -} -} -LEAN_EXPORT lean_object* l_panic___at_Lean_Meta_matchMatcherApp_x3f___spec__6(lean_object* x_1) { -_start: -{ -lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l_panic___at_Lean_Meta_matchMatcherApp_x3f___spec__6___rarg), 2, 0); -return x_2; -} -} -LEAN_EXPORT lean_object* l_panic___at_Lean_Meta_matchMatcherApp_x3f___spec__7___rarg(lean_object* x_1, lean_object* x_2) { -_start: -{ -lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_3 = l_instInhabitedPUnit; -x_4 = l_instInhabited___rarg(x_1, x_3); -x_5 = lean_panic_fn(x_4, x_2); -return x_5; -} -} -LEAN_EXPORT lean_object* l_panic___at_Lean_Meta_matchMatcherApp_x3f___spec__7(lean_object* x_1) { -_start: -{ -lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l_panic___at_Lean_Meta_matchMatcherApp_x3f___spec__7___rarg), 2, 0); -return x_2; -} -} -LEAN_EXPORT lean_object* l_List_forIn_loop___at_Lean_Meta_matchMatcherApp_x3f___spec__8___rarg___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; -x_4 = lean_ctor_get(x_1, 0); -lean_inc(x_4); -lean_dec(x_1); -x_5 = lean_ctor_get(x_4, 1); -lean_inc(x_5); -lean_dec(x_4); -x_6 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_6, 0, x_2); -x_7 = lean_apply_2(x_5, lean_box(0), x_6); -return x_7; -} -} -LEAN_EXPORT lean_object* l_List_forIn_loop___at_Lean_Meta_matchMatcherApp_x3f___spec__8___rarg___lambda__2(lean_object* x_1, lean_object* x_2, lean_object* x_3) { -_start: -{ -lean_object* x_4; lean_object* x_5; -x_4 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_4, 0, x_1); -x_5 = lean_apply_2(x_2, lean_box(0), x_4); -return x_5; -} -} -static lean_object* _init_l_List_forIn_loop___at_Lean_Meta_matchMatcherApp_x3f___spec__8___rarg___lambda__3___closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("Lean.Meta.Match.MatcherInfo", 27); -return x_1; -} -} -static lean_object* _init_l_List_forIn_loop___at_Lean_Meta_matchMatcherApp_x3f___spec__8___rarg___lambda__3___closed__2() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("Lean.Meta.matchMatcherApp\?", 26); -return x_1; -} -} -static lean_object* _init_l_List_forIn_loop___at_Lean_Meta_matchMatcherApp_x3f___spec__8___rarg___lambda__3___closed__3() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("unreachable code has been reached", 33); -return x_1; -} -} -static lean_object* _init_l_List_forIn_loop___at_Lean_Meta_matchMatcherApp_x3f___spec__8___rarg___lambda__3___closed__4() { -_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_List_forIn_loop___at_Lean_Meta_matchMatcherApp_x3f___spec__8___rarg___lambda__3___closed__1; -x_2 = l_List_forIn_loop___at_Lean_Meta_matchMatcherApp_x3f___spec__8___rarg___lambda__3___closed__2; -x_3 = lean_unsigned_to_nat(183u); -x_4 = lean_unsigned_to_nat(53u); -x_5 = l_List_forIn_loop___at_Lean_Meta_matchMatcherApp_x3f___spec__8___rarg___lambda__3___closed__3; -x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); -return x_6; -} -} -LEAN_EXPORT lean_object* l_List_forIn_loop___at_Lean_Meta_matchMatcherApp_x3f___spec__8___rarg___lambda__3(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { -_start: -{ -switch (lean_obj_tag(x_4)) { -case 0: -{ -lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; -lean_dec(x_4); -x_5 = l_List_forIn_loop___at_Lean_Meta_matchMatcherApp_x3f___spec__8___rarg___lambda__3___closed__4; -lean_inc(x_1); -x_6 = l_panic___at_Lean_Meta_matchMatcherApp_x3f___spec__1___rarg(x_1, x_5); -x_7 = lean_alloc_closure((void*)(l_List_forIn_loop___at_Lean_Meta_matchMatcherApp_x3f___spec__8___rarg___lambda__1___boxed), 3, 2); -lean_closure_set(x_7, 0, x_1); -lean_closure_set(x_7, 1, x_2); -x_8 = lean_apply_4(x_3, lean_box(0), lean_box(0), x_6, x_7); -return x_8; -} -case 1: -{ -lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; -lean_dec(x_4); -x_9 = l_List_forIn_loop___at_Lean_Meta_matchMatcherApp_x3f___spec__8___rarg___lambda__3___closed__4; -lean_inc(x_1); -x_10 = l_panic___at_Lean_Meta_matchMatcherApp_x3f___spec__2___rarg(x_1, x_9); -x_11 = lean_alloc_closure((void*)(l_List_forIn_loop___at_Lean_Meta_matchMatcherApp_x3f___spec__8___rarg___lambda__1___boxed), 3, 2); -lean_closure_set(x_11, 0, x_1); -lean_closure_set(x_11, 1, x_2); -x_12 = lean_apply_4(x_3, lean_box(0), lean_box(0), x_10, x_11); -return x_12; -} -case 2: -{ -lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; -lean_dec(x_4); -x_13 = l_List_forIn_loop___at_Lean_Meta_matchMatcherApp_x3f___spec__8___rarg___lambda__3___closed__4; -lean_inc(x_1); -x_14 = l_panic___at_Lean_Meta_matchMatcherApp_x3f___spec__3___rarg(x_1, x_13); -x_15 = lean_alloc_closure((void*)(l_List_forIn_loop___at_Lean_Meta_matchMatcherApp_x3f___spec__8___rarg___lambda__1___boxed), 3, 2); -lean_closure_set(x_15, 0, x_1); -lean_closure_set(x_15, 1, x_2); -x_16 = lean_apply_4(x_3, lean_box(0), lean_box(0), x_14, x_15); -return x_16; -} -case 3: -{ -lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; -lean_dec(x_4); -x_17 = l_List_forIn_loop___at_Lean_Meta_matchMatcherApp_x3f___spec__8___rarg___lambda__3___closed__4; -lean_inc(x_1); -x_18 = l_panic___at_Lean_Meta_matchMatcherApp_x3f___spec__4___rarg(x_1, x_17); -x_19 = lean_alloc_closure((void*)(l_List_forIn_loop___at_Lean_Meta_matchMatcherApp_x3f___spec__8___rarg___lambda__1___boxed), 3, 2); -lean_closure_set(x_19, 0, x_1); -lean_closure_set(x_19, 1, x_2); -x_20 = lean_apply_4(x_3, lean_box(0), lean_box(0), x_18, x_19); -return x_20; -} -case 4: -{ -lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; -lean_dec(x_4); -x_21 = l_List_forIn_loop___at_Lean_Meta_matchMatcherApp_x3f___spec__8___rarg___lambda__3___closed__4; -lean_inc(x_1); -x_22 = l_panic___at_Lean_Meta_matchMatcherApp_x3f___spec__5___rarg(x_1, x_21); -x_23 = lean_alloc_closure((void*)(l_List_forIn_loop___at_Lean_Meta_matchMatcherApp_x3f___spec__8___rarg___lambda__1___boxed), 3, 2); -lean_closure_set(x_23, 0, x_1); -lean_closure_set(x_23, 1, x_2); -x_24 = lean_apply_4(x_3, lean_box(0), lean_box(0), x_22, x_23); -return x_24; -} -case 5: -{ -lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; -lean_dec(x_4); -x_25 = l_List_forIn_loop___at_Lean_Meta_matchMatcherApp_x3f___spec__8___rarg___lambda__3___closed__4; -lean_inc(x_1); -x_26 = l_panic___at_Lean_Meta_matchMatcherApp_x3f___spec__6___rarg(x_1, x_25); -x_27 = lean_alloc_closure((void*)(l_List_forIn_loop___at_Lean_Meta_matchMatcherApp_x3f___spec__8___rarg___lambda__1___boxed), 3, 2); -lean_closure_set(x_27, 0, x_1); -lean_closure_set(x_27, 1, x_2); -x_28 = lean_apply_4(x_3, lean_box(0), lean_box(0), x_26, x_27); -return x_28; -} -case 6: -{ -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; -x_29 = lean_ctor_get(x_4, 0); -lean_inc(x_29); -lean_dec(x_4); -x_30 = lean_ctor_get(x_29, 4); -lean_inc(x_30); -lean_dec(x_29); -x_31 = lean_array_push(x_2, x_30); -x_32 = lean_ctor_get(x_1, 0); -lean_inc(x_32); -lean_dec(x_1); -x_33 = lean_ctor_get(x_32, 1); -lean_inc(x_33); -lean_dec(x_32); -x_34 = lean_box(0); -lean_inc(x_33); -x_35 = lean_apply_2(x_33, lean_box(0), x_34); -x_36 = lean_alloc_closure((void*)(l_List_forIn_loop___at_Lean_Meta_matchMatcherApp_x3f___spec__8___rarg___lambda__2___boxed), 3, 2); -lean_closure_set(x_36, 0, x_31); -lean_closure_set(x_36, 1, x_33); -x_37 = lean_apply_4(x_3, lean_box(0), lean_box(0), x_35, x_36); -return x_37; -} -default: -{ -lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; -lean_dec(x_4); -x_38 = l_List_forIn_loop___at_Lean_Meta_matchMatcherApp_x3f___spec__8___rarg___lambda__3___closed__4; -lean_inc(x_1); -x_39 = l_panic___at_Lean_Meta_matchMatcherApp_x3f___spec__7___rarg(x_1, x_38); -x_40 = lean_alloc_closure((void*)(l_List_forIn_loop___at_Lean_Meta_matchMatcherApp_x3f___spec__8___rarg___lambda__1___boxed), 3, 2); -lean_closure_set(x_40, 0, x_1); -lean_closure_set(x_40, 1, x_2); -x_41 = lean_apply_4(x_3, lean_box(0), lean_box(0), x_39, x_40); -return x_41; -} -} -} -} -LEAN_EXPORT lean_object* l_List_forIn_loop___at_Lean_Meta_matchMatcherApp_x3f___spec__8___rarg___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) { -_start: -{ -if (lean_obj_tag(x_6) == 0) -{ -lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -x_7 = lean_ctor_get(x_6, 0); -lean_inc(x_7); -lean_dec(x_6); -x_8 = lean_ctor_get(x_1, 0); -lean_inc(x_8); -lean_dec(x_1); -x_9 = lean_ctor_get(x_8, 1); -lean_inc(x_9); -lean_dec(x_8); -x_10 = lean_apply_2(x_9, lean_box(0), x_7); -return x_10; -} -else -{ -lean_object* x_11; lean_object* x_12; -x_11 = lean_ctor_get(x_6, 0); -lean_inc(x_11); -lean_dec(x_6); -x_12 = l_List_forIn_loop___at_Lean_Meta_matchMatcherApp_x3f___spec__8___rarg(x_1, x_2, x_3, x_4, x_5, x_11); -return x_12; -} -} -} -LEAN_EXPORT lean_object* l_List_forIn_loop___at_Lean_Meta_matchMatcherApp_x3f___spec__8___rarg(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: -{ -if (lean_obj_tag(x_5) == 0) -{ -lean_object* x_7; lean_object* x_8; lean_object* x_9; -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -x_7 = lean_ctor_get(x_1, 0); -lean_inc(x_7); -lean_dec(x_1); -x_8 = lean_ctor_get(x_7, 1); -lean_inc(x_8); -lean_dec(x_7); -x_9 = lean_apply_2(x_8, lean_box(0), x_6); -return x_9; -} -else -{ -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_10 = lean_ctor_get(x_5, 0); -lean_inc(x_10); -x_11 = lean_ctor_get(x_5, 1); -lean_inc(x_11); -lean_dec(x_5); -x_12 = lean_ctor_get(x_1, 1); -lean_inc(x_12); -lean_inc(x_3); -lean_inc(x_2); -lean_inc(x_1); -x_13 = l_Lean_getConstInfo___rarg(x_1, x_2, x_3, x_10); -lean_inc(x_4); -lean_inc(x_1); -x_14 = lean_alloc_closure((void*)(l_List_forIn_loop___at_Lean_Meta_matchMatcherApp_x3f___spec__8___rarg___lambda__3), 4, 3); -lean_closure_set(x_14, 0, x_1); -lean_closure_set(x_14, 1, x_6); -lean_closure_set(x_14, 2, x_4); -lean_inc(x_4); -x_15 = lean_apply_4(x_4, lean_box(0), lean_box(0), x_13, x_14); -x_16 = lean_alloc_closure((void*)(l_List_forIn_loop___at_Lean_Meta_matchMatcherApp_x3f___spec__8___rarg___lambda__4), 6, 5); -lean_closure_set(x_16, 0, x_1); -lean_closure_set(x_16, 1, x_2); -lean_closure_set(x_16, 2, x_3); -lean_closure_set(x_16, 3, x_4); -lean_closure_set(x_16, 4, x_11); -x_17 = lean_apply_4(x_12, lean_box(0), lean_box(0), x_15, x_16); -return x_17; -} -} -} -LEAN_EXPORT lean_object* l_List_forIn_loop___at_Lean_Meta_matchMatcherApp_x3f___spec__8(lean_object* x_1) { -_start: -{ -lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l_List_forIn_loop___at_Lean_Meta_matchMatcherApp_x3f___spec__8___rarg), 6, 0); -return x_2; -} -} -LEAN_EXPORT lean_object* l_Lean_Meta_matchMatcherApp_x3f___rarg___lambda__1(lean_object* x_1, lean_object* x_2) { -_start: -{ -lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; -x_3 = lean_ctor_get(x_1, 0); -lean_inc(x_3); -lean_dec(x_1); -x_4 = lean_ctor_get(x_3, 1); -lean_inc(x_4); -lean_dec(x_3); -x_5 = lean_box(0); -x_6 = lean_apply_2(x_4, lean_box(0), x_5); -return x_6; -} -} -LEAN_EXPORT lean_object* l_Lean_Meta_matchMatcherApp_x3f___rarg___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) { -_start: -{ -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; -x_12 = lean_ctor_get(x_1, 0); -lean_inc(x_12); -lean_dec(x_1); -x_13 = lean_ctor_get(x_12, 1); -lean_inc(x_13); -lean_dec(x_12); -x_14 = l_List_redLength___rarg(x_2); -x_15 = lean_mk_empty_array_with_capacity(x_14); -lean_dec(x_14); -x_16 = l_List_toArrayAux___rarg(x_2, x_15); -x_17 = l_Array_ofSubarray___rarg(x_3); -x_18 = l_Array_ofSubarray___rarg(x_4); -x_19 = l_Array_ofSubarray___rarg(x_5); -x_20 = l_Array_ofSubarray___rarg(x_6); -x_21 = lean_alloc_ctor(0, 10, 0); -lean_ctor_set(x_21, 0, x_7); -lean_ctor_set(x_21, 1, x_16); -lean_ctor_set(x_21, 2, x_8); -lean_ctor_set(x_21, 3, x_9); -lean_ctor_set(x_21, 4, x_17); -lean_ctor_set(x_21, 5, x_10); -lean_ctor_set(x_21, 6, x_18); -lean_ctor_set(x_21, 7, x_11); -lean_ctor_set(x_21, 8, x_19); -lean_ctor_set(x_21, 9, x_20); -x_22 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_22, 0, x_21); -x_23 = lean_apply_2(x_13, lean_box(0), x_22); -return x_23; -} -} -static lean_object* _init_l_Lean_Meta_matchMatcherApp_x3f___rarg___lambda__3___closed__1() { -_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_matchMatcherApp_x3f___rarg___lambda__3___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = lean_unsigned_to_nat(0u); -x_2 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_2, 0, x_1); -return x_2; -} -} -LEAN_EXPORT lean_object* l_Lean_Meta_matchMatcherApp_x3f___rarg___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; 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; 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; uint8_t x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; -x_10 = lean_ctor_get(x_1, 1); -lean_inc(x_10); -x_11 = lean_unsigned_to_nat(0u); -lean_inc(x_10); -lean_inc(x_2); -x_12 = l_Array_toSubarray___rarg(x_2, x_11, x_10); -x_13 = lean_array_get_size(x_2); -x_14 = lean_nat_dec_lt(x_10, x_13); -lean_dec(x_13); -x_15 = lean_unsigned_to_nat(1u); -x_16 = lean_nat_add(x_10, x_15); -x_17 = lean_ctor_get(x_1, 2); -lean_inc(x_17); -x_18 = lean_nat_add(x_16, x_17); -x_19 = lean_nat_add(x_18, x_15); -lean_dec(x_18); -lean_inc(x_19); -lean_inc(x_2); -x_20 = l_Array_toSubarray___rarg(x_2, x_16, x_19); -x_21 = lean_nat_add(x_17, x_15); -lean_dec(x_17); -x_22 = lean_box(0); -x_23 = lean_mk_array(x_21, x_22); -x_24 = l_Lean_InductiveVal_numCtors(x_1); -x_25 = lean_nat_add(x_19, x_24); -lean_dec(x_24); -lean_inc(x_25); -lean_inc(x_2); -x_26 = l_Array_toSubarray___rarg(x_2, x_19, x_25); -x_27 = lean_array_get_size(x_2); -lean_inc(x_2); -x_28 = l_Array_toSubarray___rarg(x_2, x_25, x_27); -x_29 = lean_ctor_get(x_1, 0); -lean_inc(x_29); -x_30 = lean_ctor_get(x_29, 1); -lean_inc(x_30); -lean_dec(x_29); -x_31 = l_List_lengthTRAux___rarg(x_30, x_11); -lean_dec(x_30); -x_32 = l_List_lengthTRAux___rarg(x_3, x_11); -x_33 = lean_nat_dec_eq(x_31, x_32); -lean_dec(x_32); -lean_dec(x_31); -x_34 = lean_ctor_get(x_1, 4); -lean_inc(x_34); -lean_dec(x_1); -x_35 = l_Lean_Meta_matchMatcherApp_x3f___rarg___lambda__3___closed__1; -lean_inc(x_7); -lean_inc(x_4); -x_36 = l_List_forIn_loop___at_Lean_Meta_matchMatcherApp_x3f___spec__8___rarg(x_4, x_5, x_6, x_7, x_34, x_35); -if (x_14 == 0) -{ -lean_object* x_37; lean_object* x_38; -lean_dec(x_10); -lean_dec(x_2); -x_37 = l_Lean_instInhabitedExpr; -x_38 = l___private_Init_Util_0__outOfBounds___rarg(x_37); -if (x_33 == 0) -{ -lean_object* x_39; lean_object* x_40; lean_object* x_41; -x_39 = l_Lean_Meta_matchMatcherApp_x3f___rarg___lambda__3___closed__2; -x_40 = lean_alloc_closure((void*)(l_Lean_Meta_matchMatcherApp_x3f___rarg___lambda__2), 11, 10); -lean_closure_set(x_40, 0, x_4); -lean_closure_set(x_40, 1, x_3); -lean_closure_set(x_40, 2, x_12); -lean_closure_set(x_40, 3, x_20); -lean_closure_set(x_40, 4, x_26); -lean_closure_set(x_40, 5, x_28); -lean_closure_set(x_40, 6, x_8); -lean_closure_set(x_40, 7, x_39); -lean_closure_set(x_40, 8, x_23); -lean_closure_set(x_40, 9, x_38); -x_41 = lean_apply_4(x_7, lean_box(0), lean_box(0), x_36, x_40); -return x_41; -} -else -{ -lean_object* x_42; lean_object* x_43; -x_42 = lean_alloc_closure((void*)(l_Lean_Meta_matchMatcherApp_x3f___rarg___lambda__2), 11, 10); -lean_closure_set(x_42, 0, x_4); -lean_closure_set(x_42, 1, x_3); -lean_closure_set(x_42, 2, x_12); -lean_closure_set(x_42, 3, x_20); -lean_closure_set(x_42, 4, x_26); -lean_closure_set(x_42, 5, x_28); -lean_closure_set(x_42, 6, x_8); -lean_closure_set(x_42, 7, x_22); -lean_closure_set(x_42, 8, x_23); -lean_closure_set(x_42, 9, x_38); -x_43 = lean_apply_4(x_7, lean_box(0), lean_box(0), x_36, x_42); -return x_43; -} -} -else -{ -lean_object* x_44; -x_44 = lean_array_fget(x_2, x_10); -lean_dec(x_10); -lean_dec(x_2); -if (x_33 == 0) -{ -lean_object* x_45; lean_object* x_46; lean_object* x_47; -x_45 = l_Lean_Meta_matchMatcherApp_x3f___rarg___lambda__3___closed__2; -x_46 = lean_alloc_closure((void*)(l_Lean_Meta_matchMatcherApp_x3f___rarg___lambda__2), 11, 10); -lean_closure_set(x_46, 0, x_4); -lean_closure_set(x_46, 1, x_3); -lean_closure_set(x_46, 2, x_12); -lean_closure_set(x_46, 3, x_20); -lean_closure_set(x_46, 4, x_26); -lean_closure_set(x_46, 5, x_28); -lean_closure_set(x_46, 6, x_8); -lean_closure_set(x_46, 7, x_45); -lean_closure_set(x_46, 8, x_23); -lean_closure_set(x_46, 9, x_44); -x_47 = lean_apply_4(x_7, lean_box(0), lean_box(0), x_36, x_46); -return x_47; -} -else -{ -lean_object* x_48; lean_object* x_49; -x_48 = lean_alloc_closure((void*)(l_Lean_Meta_matchMatcherApp_x3f___rarg___lambda__2), 11, 10); -lean_closure_set(x_48, 0, x_4); -lean_closure_set(x_48, 1, x_3); -lean_closure_set(x_48, 2, x_12); -lean_closure_set(x_48, 3, x_20); -lean_closure_set(x_48, 4, x_26); -lean_closure_set(x_48, 5, x_28); -lean_closure_set(x_48, 6, x_8); -lean_closure_set(x_48, 7, x_22); -lean_closure_set(x_48, 8, x_23); -lean_closure_set(x_48, 9, x_44); -x_49 = lean_apply_4(x_7, lean_box(0), lean_box(0), x_36, x_48); -return x_49; -} -} -} -} -static lean_object* _init_l_Lean_Meta_matchMatcherApp_x3f___rarg___lambda__4___closed__1() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_levelZero; -x_2 = l_Lean_Expr_sort___override(x_1); -return x_2; -} -} -LEAN_EXPORT lean_object* l_Lean_Meta_matchMatcherApp_x3f___rarg___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) { -_start: -{ -if (lean_obj_tag(x_8) == 5) -{ -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; uint8_t x_26; -x_9 = lean_ctor_get(x_8, 0); -lean_inc(x_9); -lean_dec(x_8); -x_10 = lean_unsigned_to_nat(0u); -x_11 = l___private_Lean_Expr_0__Lean_Expr_getAppNumArgsAux(x_2, x_10); -x_12 = l_Lean_Meta_matchMatcherApp_x3f___rarg___lambda__4___closed__1; -lean_inc(x_11); -x_13 = lean_mk_array(x_11, x_12); -x_14 = lean_unsigned_to_nat(1u); -x_15 = lean_nat_sub(x_11, x_14); -lean_dec(x_11); -x_16 = l___private_Lean_Expr_0__Lean_Expr_getAppArgsAux(x_2, x_13, x_15); -lean_inc(x_6); -lean_inc(x_1); -lean_inc(x_16); -lean_inc(x_9); -x_17 = lean_alloc_closure((void*)(l_Lean_Meta_matchMatcherApp_x3f___rarg___lambda__3___boxed), 9, 8); -lean_closure_set(x_17, 0, x_9); -lean_closure_set(x_17, 1, x_16); -lean_closure_set(x_17, 2, x_3); -lean_closure_set(x_17, 3, x_1); -lean_closure_set(x_17, 4, x_4); -lean_closure_set(x_17, 5, x_5); -lean_closure_set(x_17, 6, x_6); -lean_closure_set(x_17, 7, x_7); -x_18 = lean_ctor_get(x_9, 1); -lean_inc(x_18); -x_19 = lean_nat_add(x_18, x_14); -lean_dec(x_18); -x_20 = lean_ctor_get(x_9, 2); -lean_inc(x_20); -x_21 = lean_nat_add(x_19, x_20); -lean_dec(x_20); -lean_dec(x_19); -x_22 = lean_nat_add(x_21, x_14); -lean_dec(x_21); -x_23 = l_Lean_InductiveVal_numCtors(x_9); -lean_dec(x_9); -x_24 = lean_nat_add(x_22, x_23); -lean_dec(x_23); -lean_dec(x_22); -x_25 = lean_array_get_size(x_16); -lean_dec(x_16); -x_26 = lean_nat_dec_le(x_24, x_25); -lean_dec(x_25); -lean_dec(x_24); -if (x_26 == 0) -{ -lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; -lean_dec(x_17); -lean_dec(x_6); -x_27 = lean_ctor_get(x_1, 0); -lean_inc(x_27); -lean_dec(x_1); -x_28 = lean_ctor_get(x_27, 1); -lean_inc(x_28); -lean_dec(x_27); -x_29 = lean_box(0); -x_30 = lean_apply_2(x_28, lean_box(0), x_29); -return x_30; -} -else -{ -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_1, 0); -lean_inc(x_31); -lean_dec(x_1); -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_6, lean_box(0), lean_box(0), x_34, x_17); -return x_35; -} -} -else -{ -lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; -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); -x_36 = lean_ctor_get(x_1, 0); -lean_inc(x_36); -lean_dec(x_1); -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); -return x_39; -} -} -} -LEAN_EXPORT lean_object* l_Lean_Meta_matchMatcherApp_x3f___rarg___lambda__5(uint8_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, lean_object* x_8, lean_object* x_9, lean_object* x_10) { -_start: -{ -if (x_1 == 0) -{ -lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* 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); -x_11 = lean_ctor_get(x_2, 0); -lean_inc(x_11); -lean_dec(x_2); -x_12 = lean_ctor_get(x_11, 1); -lean_inc(x_12); -lean_dec(x_11); -x_13 = lean_box(0); -x_14 = lean_apply_2(x_12, lean_box(0), x_13); -x_15 = lean_apply_4(x_4, lean_box(0), lean_box(0), x_14, x_3); -return x_15; -} -else -{ -uint8_t x_16; -lean_inc(x_5); -x_16 = l_Lean_isCasesOnRecursor(x_10, x_5); -if (x_16 == 0) -{ -lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -x_17 = lean_ctor_get(x_2, 0); -lean_inc(x_17); -lean_dec(x_2); -x_18 = lean_ctor_get(x_17, 1); -lean_inc(x_18); -lean_dec(x_17); -x_19 = lean_box(0); -x_20 = lean_apply_2(x_18, lean_box(0), x_19); -x_21 = lean_apply_4(x_4, lean_box(0), lean_box(0), x_20, x_3); -return x_21; -} -else -{ -lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; -lean_dec(x_3); -x_22 = l_Lean_Name_getPrefix(x_5); -lean_inc(x_7); -lean_inc(x_6); -lean_inc(x_2); -x_23 = l_Lean_getConstInfo___rarg(x_2, x_6, x_7, x_22); -lean_inc(x_4); -x_24 = lean_alloc_closure((void*)(l_Lean_Meta_matchMatcherApp_x3f___rarg___lambda__4), 8, 7); -lean_closure_set(x_24, 0, x_2); -lean_closure_set(x_24, 1, x_8); -lean_closure_set(x_24, 2, x_9); -lean_closure_set(x_24, 3, x_6); -lean_closure_set(x_24, 4, x_7); -lean_closure_set(x_24, 5, x_4); -lean_closure_set(x_24, 6, x_5); -x_25 = lean_apply_4(x_4, lean_box(0), lean_box(0), x_23, x_24); -return x_25; -} -} -} -} -LEAN_EXPORT lean_object* l_Lean_Meta_matchMatcherApp_x3f___rarg___lambda__6(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) { -_start: -{ -lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; -x_11 = lean_ctor_get(x_1, 0); -lean_inc(x_11); -x_12 = lean_box(x_2); -lean_inc(x_5); -x_13 = lean_alloc_closure((void*)(l_Lean_Meta_matchMatcherApp_x3f___rarg___lambda__5___boxed), 10, 9); -lean_closure_set(x_13, 0, x_12); -lean_closure_set(x_13, 1, x_3); -lean_closure_set(x_13, 2, x_4); -lean_closure_set(x_13, 3, x_5); -lean_closure_set(x_13, 4, x_6); -lean_closure_set(x_13, 5, x_1); -lean_closure_set(x_13, 6, x_7); -lean_closure_set(x_13, 7, x_8); -lean_closure_set(x_13, 8, x_9); -x_14 = lean_apply_4(x_5, lean_box(0), lean_box(0), x_11, x_13); -return x_14; -} -} -LEAN_EXPORT lean_object* l_Lean_Meta_matchMatcherApp_x3f___rarg___lambda__7(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; 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; uint8_t 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; -x_7 = lean_ctor_get(x_1, 0); -lean_inc(x_7); -lean_dec(x_1); -x_8 = lean_ctor_get(x_7, 1); -lean_inc(x_8); -lean_dec(x_7); -x_9 = l_List_redLength___rarg(x_2); -x_10 = lean_mk_empty_array_with_capacity(x_9); -lean_dec(x_9); -x_11 = l_List_toArrayAux___rarg(x_2, x_10); -x_12 = lean_ctor_get(x_3, 3); -x_13 = lean_ctor_get(x_3, 4); -x_14 = lean_ctor_get(x_3, 0); -x_15 = lean_unsigned_to_nat(0u); -x_16 = l_Array_extract___rarg(x_4, x_15, x_14); -x_17 = lean_array_get_size(x_4); -x_18 = lean_nat_dec_lt(x_14, x_17); -x_19 = lean_unsigned_to_nat(1u); -x_20 = lean_nat_add(x_14, x_19); -x_21 = lean_ctor_get(x_3, 1); -x_22 = lean_nat_add(x_20, x_21); -lean_inc(x_22); -lean_inc(x_4); -x_23 = l_Array_toSubarray___rarg(x_4, x_20, x_22); -x_24 = l_Array_ofSubarray___rarg(x_23); -x_25 = lean_ctor_get(x_3, 2); -x_26 = l_Lean_Meta_Match_MatcherInfo_numAlts(x_3); -x_27 = lean_nat_add(x_22, x_26); -lean_dec(x_26); -lean_inc(x_27); -lean_inc(x_4); -x_28 = l_Array_toSubarray___rarg(x_4, x_22, x_27); -x_29 = l_Array_ofSubarray___rarg(x_28); -lean_inc(x_4); -x_30 = l_Array_toSubarray___rarg(x_4, x_27, x_17); -x_31 = l_Array_ofSubarray___rarg(x_30); -if (x_18 == 0) -{ -lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; -lean_dec(x_4); -x_32 = l_Lean_instInhabitedExpr; -x_33 = l___private_Init_Util_0__outOfBounds___rarg(x_32); -lean_inc(x_25); -lean_inc(x_13); -lean_inc(x_12); -x_34 = lean_alloc_ctor(0, 10, 0); -lean_ctor_set(x_34, 0, x_5); -lean_ctor_set(x_34, 1, x_11); -lean_ctor_set(x_34, 2, x_12); -lean_ctor_set(x_34, 3, x_13); -lean_ctor_set(x_34, 4, x_16); -lean_ctor_set(x_34, 5, x_33); -lean_ctor_set(x_34, 6, x_24); -lean_ctor_set(x_34, 7, x_25); -lean_ctor_set(x_34, 8, x_29); -lean_ctor_set(x_34, 9, x_31); -x_35 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_35, 0, x_34); -x_36 = lean_apply_2(x_8, lean_box(0), x_35); -return x_36; -} -else -{ -lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; -x_37 = lean_array_fget(x_4, x_14); -lean_dec(x_4); -lean_inc(x_25); -lean_inc(x_13); -lean_inc(x_12); -x_38 = lean_alloc_ctor(0, 10, 0); -lean_ctor_set(x_38, 0, x_5); -lean_ctor_set(x_38, 1, x_11); -lean_ctor_set(x_38, 2, x_12); -lean_ctor_set(x_38, 3, x_13); -lean_ctor_set(x_38, 4, x_16); -lean_ctor_set(x_38, 5, x_37); -lean_ctor_set(x_38, 6, x_24); -lean_ctor_set(x_38, 7, x_25); -lean_ctor_set(x_38, 8, x_29); -lean_ctor_set(x_38, 9, x_31); -x_39 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_39, 0, x_38); -x_40 = lean_apply_2(x_8, lean_box(0), x_39); -return x_40; -} -} -} -LEAN_EXPORT lean_object* l_Lean_Meta_matchMatcherApp_x3f___rarg___lambda__8(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) { -_start: -{ -if (lean_obj_tag(x_10) == 0) -{ -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_11 = lean_box(x_2); -lean_inc(x_5); -lean_inc(x_3); -x_12 = lean_alloc_closure((void*)(l_Lean_Meta_matchMatcherApp_x3f___rarg___lambda__6___boxed), 10, 9); -lean_closure_set(x_12, 0, x_1); -lean_closure_set(x_12, 1, x_11); -lean_closure_set(x_12, 2, x_3); -lean_closure_set(x_12, 3, x_4); -lean_closure_set(x_12, 4, x_5); -lean_closure_set(x_12, 5, x_6); -lean_closure_set(x_12, 6, x_7); -lean_closure_set(x_12, 7, x_8); -lean_closure_set(x_12, 8, x_9); -x_13 = lean_ctor_get(x_3, 0); -lean_inc(x_13); -lean_dec(x_3); -x_14 = lean_ctor_get(x_13, 1); -lean_inc(x_14); -lean_dec(x_13); -x_15 = lean_box(0); -x_16 = lean_apply_2(x_14, lean_box(0), x_15); -x_17 = lean_apply_4(x_5, lean_box(0), lean_box(0), x_16, x_12); -return x_17; -} -else -{ -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; uint8_t x_29; -lean_dec(x_7); -lean_dec(x_4); -lean_dec(x_1); -x_18 = lean_ctor_get(x_10, 0); -lean_inc(x_18); -lean_dec(x_10); -x_19 = lean_unsigned_to_nat(0u); -x_20 = l___private_Lean_Expr_0__Lean_Expr_getAppNumArgsAux(x_8, x_19); -x_21 = l_Lean_Meta_matchMatcherApp_x3f___rarg___lambda__4___closed__1; -lean_inc(x_20); -x_22 = lean_mk_array(x_20, x_21); -x_23 = lean_unsigned_to_nat(1u); -x_24 = lean_nat_sub(x_20, x_23); -lean_dec(x_20); -x_25 = l___private_Lean_Expr_0__Lean_Expr_getAppArgsAux(x_8, x_22, x_24); -lean_inc(x_25); -lean_inc(x_18); -lean_inc(x_3); -x_26 = lean_alloc_closure((void*)(l_Lean_Meta_matchMatcherApp_x3f___rarg___lambda__7___boxed), 6, 5); -lean_closure_set(x_26, 0, x_3); -lean_closure_set(x_26, 1, x_9); -lean_closure_set(x_26, 2, x_18); -lean_closure_set(x_26, 3, x_25); -lean_closure_set(x_26, 4, x_6); -x_27 = lean_array_get_size(x_25); -lean_dec(x_25); -x_28 = l_Lean_Meta_Match_MatcherInfo_arity(x_18); -lean_dec(x_18); -x_29 = lean_nat_dec_lt(x_27, x_28); -lean_dec(x_28); -lean_dec(x_27); -if (x_29 == 0) -{ -lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; -x_30 = lean_ctor_get(x_3, 0); -lean_inc(x_30); -lean_dec(x_3); -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_5, lean_box(0), lean_box(0), x_33, x_26); -return x_34; -} -else -{ -lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; -lean_dec(x_26); -lean_dec(x_5); -x_35 = lean_ctor_get(x_3, 0); -lean_inc(x_35); -lean_dec(x_3); -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); -return x_38; -} -} -} -} -LEAN_EXPORT lean_object* l_Lean_Meta_matchMatcherApp_x3f___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, uint8_t x_5) { -_start: -{ -lean_object* x_6; lean_object* x_7; -lean_inc(x_1); -x_6 = lean_alloc_closure((void*)(l_Lean_Meta_matchMatcherApp_x3f___rarg___lambda__1___boxed), 2, 1); -lean_closure_set(x_6, 0, x_1); -x_7 = l_Lean_Expr_getAppFn(x_4); -if (lean_obj_tag(x_7) == 4) -{ -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_8 = lean_ctor_get(x_7, 0); -lean_inc(x_8); -x_9 = lean_ctor_get(x_7, 1); -lean_inc(x_9); -lean_dec(x_7); -x_10 = lean_ctor_get(x_1, 1); -lean_inc(x_10); -lean_inc(x_8); -lean_inc(x_2); -lean_inc(x_1); -x_11 = l_Lean_Meta_getMatcherInfo_x3f___rarg(x_1, x_2, x_8); -x_12 = lean_box(x_5); -lean_inc(x_10); -x_13 = lean_alloc_closure((void*)(l_Lean_Meta_matchMatcherApp_x3f___rarg___lambda__8___boxed), 10, 9); -lean_closure_set(x_13, 0, x_2); -lean_closure_set(x_13, 1, x_12); -lean_closure_set(x_13, 2, x_1); -lean_closure_set(x_13, 3, x_6); -lean_closure_set(x_13, 4, x_10); -lean_closure_set(x_13, 5, x_8); -lean_closure_set(x_13, 6, x_3); -lean_closure_set(x_13, 7, x_4); -lean_closure_set(x_13, 8, x_9); -x_14 = lean_apply_4(x_10, lean_box(0), lean_box(0), x_11, x_13); -return x_14; -} -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_dec(x_7); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -x_15 = lean_ctor_get(x_1, 1); -lean_inc(x_15); -x_16 = lean_ctor_get(x_1, 0); -lean_inc(x_16); -lean_dec(x_1); -x_17 = lean_ctor_get(x_16, 1); -lean_inc(x_17); -lean_dec(x_16); -x_18 = lean_box(0); -x_19 = lean_apply_2(x_17, lean_box(0), x_18); -x_20 = lean_apply_4(x_15, lean_box(0), lean_box(0), x_19, x_6); -return x_20; -} -} -} -LEAN_EXPORT lean_object* l_Lean_Meta_matchMatcherApp_x3f(lean_object* x_1) { -_start: -{ -lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l_Lean_Meta_matchMatcherApp_x3f___rarg___boxed), 5, 0); -return x_2; -} -} -LEAN_EXPORT lean_object* l_List_forIn_loop___at_Lean_Meta_matchMatcherApp_x3f___spec__8___rarg___lambda__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { -_start: -{ -lean_object* x_4; -x_4 = l_List_forIn_loop___at_Lean_Meta_matchMatcherApp_x3f___spec__8___rarg___lambda__1(x_1, x_2, x_3); -lean_dec(x_3); -return x_4; -} -} -LEAN_EXPORT lean_object* l_List_forIn_loop___at_Lean_Meta_matchMatcherApp_x3f___spec__8___rarg___lambda__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { -_start: -{ -lean_object* x_4; -x_4 = l_List_forIn_loop___at_Lean_Meta_matchMatcherApp_x3f___spec__8___rarg___lambda__2(x_1, x_2, x_3); -lean_dec(x_3); -return x_4; -} -} -LEAN_EXPORT lean_object* l_Lean_Meta_matchMatcherApp_x3f___rarg___lambda__1___boxed(lean_object* x_1, lean_object* x_2) { -_start: -{ -lean_object* x_3; -x_3 = l_Lean_Meta_matchMatcherApp_x3f___rarg___lambda__1(x_1, x_2); -lean_dec(x_2); -return x_3; -} -} -LEAN_EXPORT lean_object* l_Lean_Meta_matchMatcherApp_x3f___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) { -_start: -{ -lean_object* x_10; -x_10 = l_Lean_Meta_matchMatcherApp_x3f___rarg___lambda__3(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); -lean_dec(x_9); -return x_10; -} -} -LEAN_EXPORT lean_object* l_Lean_Meta_matchMatcherApp_x3f___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) { -_start: -{ -uint8_t x_11; lean_object* x_12; -x_11 = lean_unbox(x_1); -lean_dec(x_1); -x_12 = l_Lean_Meta_matchMatcherApp_x3f___rarg___lambda__5(x_11, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -return x_12; -} -} -LEAN_EXPORT lean_object* l_Lean_Meta_matchMatcherApp_x3f___rarg___lambda__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, lean_object* x_10) { -_start: -{ -uint8_t x_11; lean_object* x_12; -x_11 = lean_unbox(x_2); -lean_dec(x_2); -x_12 = l_Lean_Meta_matchMatcherApp_x3f___rarg___lambda__6(x_1, x_11, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -lean_dec(x_10); -return x_12; -} -} -LEAN_EXPORT lean_object* l_Lean_Meta_matchMatcherApp_x3f___rarg___lambda__7___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_Lean_Meta_matchMatcherApp_x3f___rarg___lambda__7(x_1, x_2, x_3, x_4, x_5, x_6); -lean_dec(x_6); -lean_dec(x_3); -return x_7; -} -} -LEAN_EXPORT lean_object* l_Lean_Meta_matchMatcherApp_x3f___rarg___lambda__8___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_11; lean_object* x_12; -x_11 = lean_unbox(x_2); -lean_dec(x_2); -x_12 = l_Lean_Meta_matchMatcherApp_x3f___rarg___lambda__8(x_1, x_11, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -return x_12; -} -} -LEAN_EXPORT lean_object* l_Lean_Meta_matchMatcherApp_x3f___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { -_start: -{ -uint8_t x_6; lean_object* x_7; -x_6 = lean_unbox(x_5); -lean_dec(x_5); -x_7 = l_Lean_Meta_matchMatcherApp_x3f___rarg(x_1, x_2, x_3, x_4, x_6); -return x_7; -} -} -LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_toExpr(lean_object* x_1) { -_start: -{ -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; -x_2 = lean_ctor_get(x_1, 0); -lean_inc(x_2); -x_3 = lean_ctor_get(x_1, 1); -lean_inc(x_3); -x_4 = lean_array_to_list(lean_box(0), x_3); -x_5 = l_Lean_Expr_const___override(x_2, x_4); -x_6 = lean_ctor_get(x_1, 4); -lean_inc(x_6); -x_7 = l_Lean_mkAppN(x_5, x_6); -x_8 = lean_ctor_get(x_1, 5); -lean_inc(x_8); -x_9 = l_Lean_Expr_app___override(x_7, x_8); -x_10 = lean_ctor_get(x_1, 6); -lean_inc(x_10); -x_11 = l_Lean_mkAppN(x_9, x_10); -x_12 = lean_ctor_get(x_1, 8); -lean_inc(x_12); -x_13 = l_Lean_mkAppN(x_11, x_12); -x_14 = lean_ctor_get(x_1, 9); -lean_inc(x_14); -lean_dec(x_1); -x_15 = l_Lean_mkAppN(x_13, x_14); -return x_15; -} -} lean_object* initialize_Lean_Meta_Basic(uint8_t builtin, lean_object*); static bool _G_initialized = false; LEAN_EXPORT lean_object* initialize_Lean_Meta_Match_MatcherInfo(uint8_t builtin, lean_object* w) { @@ -4145,20 +2882,6 @@ l_Lean_Meta_Match_addMatcherInfo___closed__15 = _init_l_Lean_Meta_Match_addMatch lean_mark_persistent(l_Lean_Meta_Match_addMatcherInfo___closed__15); l_Lean_Meta_Match_addMatcherInfo___closed__16 = _init_l_Lean_Meta_Match_addMatcherInfo___closed__16(); lean_mark_persistent(l_Lean_Meta_Match_addMatcherInfo___closed__16); -l_List_forIn_loop___at_Lean_Meta_matchMatcherApp_x3f___spec__8___rarg___lambda__3___closed__1 = _init_l_List_forIn_loop___at_Lean_Meta_matchMatcherApp_x3f___spec__8___rarg___lambda__3___closed__1(); -lean_mark_persistent(l_List_forIn_loop___at_Lean_Meta_matchMatcherApp_x3f___spec__8___rarg___lambda__3___closed__1); -l_List_forIn_loop___at_Lean_Meta_matchMatcherApp_x3f___spec__8___rarg___lambda__3___closed__2 = _init_l_List_forIn_loop___at_Lean_Meta_matchMatcherApp_x3f___spec__8___rarg___lambda__3___closed__2(); -lean_mark_persistent(l_List_forIn_loop___at_Lean_Meta_matchMatcherApp_x3f___spec__8___rarg___lambda__3___closed__2); -l_List_forIn_loop___at_Lean_Meta_matchMatcherApp_x3f___spec__8___rarg___lambda__3___closed__3 = _init_l_List_forIn_loop___at_Lean_Meta_matchMatcherApp_x3f___spec__8___rarg___lambda__3___closed__3(); -lean_mark_persistent(l_List_forIn_loop___at_Lean_Meta_matchMatcherApp_x3f___spec__8___rarg___lambda__3___closed__3); -l_List_forIn_loop___at_Lean_Meta_matchMatcherApp_x3f___spec__8___rarg___lambda__3___closed__4 = _init_l_List_forIn_loop___at_Lean_Meta_matchMatcherApp_x3f___spec__8___rarg___lambda__3___closed__4(); -lean_mark_persistent(l_List_forIn_loop___at_Lean_Meta_matchMatcherApp_x3f___spec__8___rarg___lambda__3___closed__4); -l_Lean_Meta_matchMatcherApp_x3f___rarg___lambda__3___closed__1 = _init_l_Lean_Meta_matchMatcherApp_x3f___rarg___lambda__3___closed__1(); -lean_mark_persistent(l_Lean_Meta_matchMatcherApp_x3f___rarg___lambda__3___closed__1); -l_Lean_Meta_matchMatcherApp_x3f___rarg___lambda__3___closed__2 = _init_l_Lean_Meta_matchMatcherApp_x3f___rarg___lambda__3___closed__2(); -lean_mark_persistent(l_Lean_Meta_matchMatcherApp_x3f___rarg___lambda__3___closed__2); -l_Lean_Meta_matchMatcherApp_x3f___rarg___lambda__4___closed__1 = _init_l_Lean_Meta_matchMatcherApp_x3f___rarg___lambda__4___closed__1(); -lean_mark_persistent(l_Lean_Meta_matchMatcherApp_x3f___rarg___lambda__4___closed__1); return lean_io_result_mk_ok(lean_box(0)); } #ifdef __cplusplus diff --git a/stage0/stdlib/Lean/Meta/Match/Value.c b/stage0/stdlib/Lean/Meta/Match/Value.c index cada6960b1..fa9ddd657c 100644 --- a/stage0/stdlib/Lean/Meta/Match/Value.c +++ b/stage0/stdlib/Lean/Meta/Match/Value.c @@ -1,6 +1,6 @@ // Lean compiler output // Module: Lean.Meta.Match.Value -// Imports: Lean.Expr +// Imports: Lean.Meta.LitValues Lean.Expr #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -13,664 +13,991 @@ #ifdef __cplusplus extern "C" { #endif -lean_object* l_Lean_Expr_const___override(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Meta_isUIntPatLit___boxed(lean_object*); -static lean_object* l___private_Lean_Meta_Match_Value_0__Lean_Meta_UIntTypeNames___closed__7; -lean_object* lean_mk_empty_array_with_capacity(lean_object*); -LEAN_EXPORT uint8_t l_Array_anyMUnsafe_any___at___private_Lean_Meta_Match_Value_0__Lean_Meta_isUIntTypeName___spec__2(lean_object*, lean_object*, size_t, size_t); -static lean_object* l___private_Lean_Meta_Match_Value_0__Lean_Meta_UIntTypeNames___closed__11; -static lean_object* l_Lean_Meta_isFinPatLit___closed__2; -uint8_t l_Lean_Expr_isAppOfArity(lean_object*, lean_object*, lean_object*); -static lean_object* l___private_Lean_Meta_Match_Value_0__Lean_Meta_UIntTypeNames___closed__3; -lean_object* lean_array_push(lean_object*, lean_object*); -uint8_t l_Lean_Expr_isStringLit(lean_object*); -static lean_object* l___private_Lean_Meta_Match_Value_0__Lean_Meta_UIntTypeNames___closed__4; -uint8_t lean_usize_dec_eq(size_t, size_t); -uint8_t l_Lean_Expr_isCharLit(lean_object*); -static lean_object* l___private_Lean_Meta_Match_Value_0__Lean_Meta_UIntTypeNames___closed__10; -LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_Value_0__Lean_Meta_isUIntTypeName___boxed(lean_object*); -uint8_t l_Lean_Expr_isNatLit(lean_object*); -LEAN_EXPORT uint8_t l_Array_contains___at___private_Lean_Meta_Match_Value_0__Lean_Meta_isUIntTypeName___spec__1(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_Value_0__Lean_Meta_UIntTypeNames; -static lean_object* l___private_Lean_Meta_Match_Value_0__Lean_Meta_UIntTypeNames___closed__13; -uint8_t lean_string_dec_eq(lean_object*, lean_object*); -static lean_object* l___private_Lean_Meta_Match_Value_0__Lean_Meta_UIntTypeNames___closed__1; -lean_object* l_Lean_Expr_appArg_x21(lean_object*); -size_t lean_usize_of_nat(lean_object*); -LEAN_EXPORT uint8_t l___private_Lean_Meta_Match_Value_0__Lean_Meta_isUIntTypeName(lean_object*); -LEAN_EXPORT lean_object* l_Lean_Meta_isMatchValue___boxed(lean_object*); -LEAN_EXPORT uint8_t l_Lean_Meta_isFinPatLit(lean_object*); -static lean_object* l___private_Lean_Meta_Match_Value_0__Lean_Meta_UIntTypeNames___closed__2; -static lean_object* l___private_Lean_Meta_Match_Value_0__Lean_Meta_UIntTypeNames___closed__16; -LEAN_EXPORT lean_object* l_Array_anyMUnsafe_any___at___private_Lean_Meta_Match_Value_0__Lean_Meta_isUIntTypeName___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Meta_isUIntPatLit_x3f___closed__1; -LEAN_EXPORT lean_object* l_Lean_Meta_isUIntPatLit_x3f___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_Meta_foldPatValue___boxed(lean_object*); -static lean_object* l___private_Lean_Meta_Match_Value_0__Lean_Meta_UIntTypeNames___closed__9; -LEAN_EXPORT uint8_t l_Lean_Meta_isMatchValue(lean_object*); -static lean_object* l___private_Lean_Meta_Match_Value_0__Lean_Meta_UIntTypeNames___closed__5; -static lean_object* l___private_Lean_Meta_Match_Value_0__Lean_Meta_UIntTypeNames___closed__15; -static lean_object* l_Lean_Meta_isFinPatLit___closed__3; -static lean_object* l___private_Lean_Meta_Match_Value_0__Lean_Meta_UIntTypeNames___closed__6; -lean_object* l_Lean_Expr_app___override(lean_object*, lean_object*); -uint8_t lean_nat_dec_lt(lean_object*, lean_object*); -lean_object* l_Lean_Name_mkStr2(lean_object*, lean_object*); -LEAN_EXPORT uint8_t l_Lean_Meta_isUIntPatLit(lean_object*); -static lean_object* l___private_Lean_Meta_Match_Value_0__Lean_Meta_UIntTypeNames___closed__14; -LEAN_EXPORT lean_object* l_Lean_Meta_isUIntPatLit_x3f(lean_object*); -size_t lean_usize_add(size_t, size_t); -lean_object* lean_array_uget(lean_object*, size_t); -LEAN_EXPORT lean_object* l_Array_contains___at___private_Lean_Meta_Match_Value_0__Lean_Meta_isUIntTypeName___spec__1___boxed(lean_object*, lean_object*); -static lean_object* l___private_Lean_Meta_Match_Value_0__Lean_Meta_UIntTypeNames___closed__8; -static lean_object* l_Lean_Meta_isFinPatLit___closed__1; -lean_object* lean_array_get_size(lean_object*); -LEAN_EXPORT lean_object* l_Lean_Meta_isFinPatLit___boxed(lean_object*); -LEAN_EXPORT lean_object* l_Lean_Meta_foldPatValue(lean_object*); -static lean_object* l___private_Lean_Meta_Match_Value_0__Lean_Meta_UIntTypeNames___closed__12; -static lean_object* _init_l___private_Lean_Meta_Match_Value_0__Lean_Meta_UIntTypeNames___closed__1() { +lean_object* l_Lean_Meta_getCharValue_x3f(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Meta_isMatchValue___lambda__2___closed__1; +lean_object* l_Lean_Meta_getNatValue_x3f(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Meta_getUInt64Value_x3f(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Meta_getUInt32Value_x3f(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_isMatchValue___lambda__6(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_isMatchValue___lambda__8(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_isMatchValue___lambda__10___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_isMatchValue___lambda__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_isMatchValue___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_isMatchValue___lambda__7(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_isMatchValue___lambda__6___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Meta_getStringValue_x3f(lean_object*); +lean_object* l_Lean_Meta_getIntValue_x3f(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_isMatchValue___lambda__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_isMatchValue___lambda__5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Meta_getBitVecValue_x3f(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_isMatchValue___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Meta_getUInt8Value_x3f(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Meta_getUInt16Value_x3f(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_isMatchValue___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_isMatchValue___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_isMatchValue(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Meta_getFinValue_x3f(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_isMatchValue___lambda__10(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_isMatchValue___lambda__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_isMatchValue___lambda__9(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_isMatchValue___lambda__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +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_Meta_isMatchValue___lambda__8___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_isMatchValue___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_isMatchValue___lambda__9___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_isMatchValue___lambda__7___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_isMatchValue___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_1; -x_1 = lean_mk_string_from_bytes("UInt8", 5); -return x_1; -} -} -static lean_object* _init_l___private_Lean_Meta_Match_Value_0__Lean_Meta_UIntTypeNames___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___private_Lean_Meta_Match_Value_0__Lean_Meta_UIntTypeNames___closed__1; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___private_Lean_Meta_Match_Value_0__Lean_Meta_UIntTypeNames___closed__3() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("UInt16", 6); -return x_1; -} -} -static lean_object* _init_l___private_Lean_Meta_Match_Value_0__Lean_Meta_UIntTypeNames___closed__4() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___private_Lean_Meta_Match_Value_0__Lean_Meta_UIntTypeNames___closed__3; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___private_Lean_Meta_Match_Value_0__Lean_Meta_UIntTypeNames___closed__5() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("UInt32", 6); -return x_1; -} -} -static lean_object* _init_l___private_Lean_Meta_Match_Value_0__Lean_Meta_UIntTypeNames___closed__6() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___private_Lean_Meta_Match_Value_0__Lean_Meta_UIntTypeNames___closed__5; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___private_Lean_Meta_Match_Value_0__Lean_Meta_UIntTypeNames___closed__7() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("UInt64", 6); -return x_1; -} -} -static lean_object* _init_l___private_Lean_Meta_Match_Value_0__Lean_Meta_UIntTypeNames___closed__8() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___private_Lean_Meta_Match_Value_0__Lean_Meta_UIntTypeNames___closed__7; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___private_Lean_Meta_Match_Value_0__Lean_Meta_UIntTypeNames___closed__9() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("USize", 5); -return x_1; -} -} -static lean_object* _init_l___private_Lean_Meta_Match_Value_0__Lean_Meta_UIntTypeNames___closed__10() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___private_Lean_Meta_Match_Value_0__Lean_Meta_UIntTypeNames___closed__9; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___private_Lean_Meta_Match_Value_0__Lean_Meta_UIntTypeNames___closed__11() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = lean_unsigned_to_nat(5u); -x_2 = lean_mk_empty_array_with_capacity(x_1); -return x_2; -} -} -static lean_object* _init_l___private_Lean_Meta_Match_Value_0__Lean_Meta_UIntTypeNames___closed__12() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Lean_Meta_Match_Value_0__Lean_Meta_UIntTypeNames___closed__11; -x_2 = l___private_Lean_Meta_Match_Value_0__Lean_Meta_UIntTypeNames___closed__2; -x_3 = lean_array_push(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___private_Lean_Meta_Match_Value_0__Lean_Meta_UIntTypeNames___closed__13() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Lean_Meta_Match_Value_0__Lean_Meta_UIntTypeNames___closed__12; -x_2 = l___private_Lean_Meta_Match_Value_0__Lean_Meta_UIntTypeNames___closed__4; -x_3 = lean_array_push(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___private_Lean_Meta_Match_Value_0__Lean_Meta_UIntTypeNames___closed__14() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Lean_Meta_Match_Value_0__Lean_Meta_UIntTypeNames___closed__13; -x_2 = l___private_Lean_Meta_Match_Value_0__Lean_Meta_UIntTypeNames___closed__6; -x_3 = lean_array_push(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___private_Lean_Meta_Match_Value_0__Lean_Meta_UIntTypeNames___closed__15() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Lean_Meta_Match_Value_0__Lean_Meta_UIntTypeNames___closed__14; -x_2 = l___private_Lean_Meta_Match_Value_0__Lean_Meta_UIntTypeNames___closed__8; -x_3 = lean_array_push(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___private_Lean_Meta_Match_Value_0__Lean_Meta_UIntTypeNames___closed__16() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Lean_Meta_Match_Value_0__Lean_Meta_UIntTypeNames___closed__15; -x_2 = l___private_Lean_Meta_Match_Value_0__Lean_Meta_UIntTypeNames___closed__10; -x_3 = lean_array_push(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___private_Lean_Meta_Match_Value_0__Lean_Meta_UIntTypeNames() { -_start: -{ -lean_object* x_1; -x_1 = l___private_Lean_Meta_Match_Value_0__Lean_Meta_UIntTypeNames___closed__16; -return x_1; -} -} -LEAN_EXPORT uint8_t l_Array_anyMUnsafe_any___at___private_Lean_Meta_Match_Value_0__Lean_Meta_isUIntTypeName___spec__2(lean_object* x_1, lean_object* x_2, size_t x_3, size_t x_4) { -_start: -{ -uint8_t x_5; -x_5 = lean_usize_dec_eq(x_3, x_4); -if (x_5 == 0) -{ -lean_object* x_6; uint8_t x_7; -x_6 = lean_array_uget(x_2, x_3); -x_7 = lean_name_eq(x_1, x_6); -lean_dec(x_6); -if (x_7 == 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; -goto _start; -} -else -{ -uint8_t x_11; -x_11 = 1; -return x_11; -} -} -else -{ -uint8_t x_12; -x_12 = 0; -return x_12; -} -} -} -LEAN_EXPORT uint8_t l_Array_contains___at___private_Lean_Meta_Match_Value_0__Lean_Meta_isUIntTypeName___spec__1(lean_object* x_1, lean_object* x_2) { -_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) -{ -uint8_t x_6; -lean_dec(x_3); -x_6 = 0; -return x_6; -} -else -{ -size_t x_7; size_t x_8; uint8_t x_9; +uint8_t x_7; lean_object* x_8; lean_object* x_9; x_7 = 0; -x_8 = lean_usize_of_nat(x_3); -lean_dec(x_3); -x_9 = l_Array_anyMUnsafe_any___at___private_Lean_Meta_Match_Value_0__Lean_Meta_isUIntTypeName___spec__2(x_2, x_1, x_7, x_8); +x_8 = lean_box(x_7); +x_9 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_9, 0, x_8); +lean_ctor_set(x_9, 1, x_6); return x_9; } } -} -LEAN_EXPORT uint8_t l___private_Lean_Meta_Match_Value_0__Lean_Meta_isUIntTypeName(lean_object* x_1) { -_start: -{ -lean_object* x_2; uint8_t x_3; -x_2 = l___private_Lean_Meta_Match_Value_0__Lean_Meta_UIntTypeNames; -x_3 = l_Array_contains___at___private_Lean_Meta_Match_Value_0__Lean_Meta_isUIntTypeName___spec__1(x_2, x_1); -lean_dec(x_1); -return x_3; -} -} -LEAN_EXPORT lean_object* l_Array_anyMUnsafe_any___at___private_Lean_Meta_Match_Value_0__Lean_Meta_isUIntTypeName___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; 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___private_Lean_Meta_Match_Value_0__Lean_Meta_isUIntTypeName___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_EXPORT lean_object* l_Array_contains___at___private_Lean_Meta_Match_Value_0__Lean_Meta_isUIntTypeName___spec__1___boxed(lean_object* x_1, lean_object* x_2) { -_start: -{ -uint8_t x_3; lean_object* x_4; -x_3 = l_Array_contains___at___private_Lean_Meta_Match_Value_0__Lean_Meta_isUIntTypeName___spec__1(x_1, x_2); -lean_dec(x_2); -lean_dec(x_1); -x_4 = lean_box(x_3); -return x_4; -} -} -LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_Value_0__Lean_Meta_isUIntTypeName___boxed(lean_object* x_1) { -_start: -{ -uint8_t x_2; lean_object* x_3; -x_2 = l___private_Lean_Meta_Match_Value_0__Lean_Meta_isUIntTypeName(x_1); -x_3 = lean_box(x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Meta_isFinPatLit___closed__1() { +static lean_object* _init_l_Lean_Meta_isMatchValue___lambda__2___closed__1() { _start: { lean_object* x_1; -x_1 = lean_mk_string_from_bytes("Fin", 3); +x_1 = lean_alloc_closure((void*)(l_Lean_Meta_isMatchValue___lambda__1___boxed), 6, 0); return x_1; } } -static lean_object* _init_l_Lean_Meta_isFinPatLit___closed__2() { +LEAN_EXPORT lean_object* l_Lean_Meta_isMatchValue___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_1; -x_1 = lean_mk_string_from_bytes("ofNat", 5); -return x_1; -} -} -static lean_object* _init_l_Lean_Meta_isFinPatLit___closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Meta_isFinPatLit___closed__1; -x_2 = l_Lean_Meta_isFinPatLit___closed__2; -x_3 = l_Lean_Name_mkStr2(x_1, x_2); -return x_3; -} -} -LEAN_EXPORT uint8_t l_Lean_Meta_isFinPatLit(lean_object* x_1) { -_start: -{ -lean_object* x_2; lean_object* x_3; uint8_t x_4; -x_2 = l_Lean_Meta_isFinPatLit___closed__3; -x_3 = lean_unsigned_to_nat(2u); -x_4 = l_Lean_Expr_isAppOfArity(x_1, x_2, x_3); -if (x_4 == 0) -{ -uint8_t x_5; -x_5 = 0; -return x_5; -} -else -{ -lean_object* x_6; uint8_t x_7; -x_6 = l_Lean_Expr_appArg_x21(x_1); -x_7 = l_Lean_Expr_isNatLit(x_6); -lean_dec(x_6); -return x_7; -} -} -} -LEAN_EXPORT lean_object* l_Lean_Meta_isFinPatLit___boxed(lean_object* x_1) { -_start: -{ -uint8_t x_2; lean_object* x_3; -x_2 = l_Lean_Meta_isFinPatLit(x_1); -lean_dec(x_1); -x_3 = lean_box(x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Meta_isUIntPatLit_x3f___closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("mk", 2); -return x_1; -} -} -LEAN_EXPORT lean_object* l_Lean_Meta_isUIntPatLit_x3f(lean_object* x_1) { -_start: -{ -if (lean_obj_tag(x_1) == 5) -{ -lean_object* x_2; -x_2 = lean_ctor_get(x_1, 0); -if (lean_obj_tag(x_2) == 4) -{ -lean_object* x_3; -x_3 = lean_ctor_get(x_2, 0); -if (lean_obj_tag(x_3) == 1) -{ -lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; uint8_t x_8; -x_4 = lean_ctor_get(x_1, 1); -x_5 = lean_ctor_get(x_3, 0); -x_6 = lean_ctor_get(x_3, 1); -x_7 = l_Lean_Meta_isUIntPatLit_x3f___closed__1; -x_8 = lean_string_dec_eq(x_6, x_7); -if (x_8 == 0) +lean_object* x_8; +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +x_8 = l_Lean_Meta_getUInt64Value_x3f(x_1, x_3, x_4, x_5, x_6, x_7); +if (lean_obj_tag(x_8) == 0) { lean_object* x_9; -x_9 = lean_box(0); -return x_9; +x_9 = lean_ctor_get(x_8, 0); +lean_inc(x_9); +if (lean_obj_tag(x_9) == 0) +{ +lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; +x_10 = lean_ctor_get(x_8, 1); +lean_inc(x_10); +lean_dec(x_8); +x_11 = l_Lean_Meta_isMatchValue___lambda__2___closed__1; +x_12 = lean_box(0); +x_13 = lean_apply_6(x_11, x_12, x_3, x_4, x_5, x_6, x_10); +return x_13; } else { -lean_object* x_10; uint8_t x_11; -x_10 = l___private_Lean_Meta_Match_Value_0__Lean_Meta_UIntTypeNames; -x_11 = l_Array_contains___at___private_Lean_Meta_Match_Value_0__Lean_Meta_isUIntTypeName___spec__1(x_10, x_5); -if (x_11 == 0) +uint8_t x_14; +lean_dec(x_9); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +x_14 = !lean_is_exclusive(x_8); +if (x_14 == 0) { -lean_object* x_12; -x_12 = lean_box(0); +lean_object* x_15; uint8_t x_16; lean_object* x_17; +x_15 = lean_ctor_get(x_8, 0); +lean_dec(x_15); +x_16 = 1; +x_17 = lean_box(x_16); +lean_ctor_set(x_8, 0, x_17); +return x_8; +} +else +{ +lean_object* x_18; uint8_t x_19; lean_object* x_20; lean_object* x_21; +x_18 = lean_ctor_get(x_8, 1); +lean_inc(x_18); +lean_dec(x_8); +x_19 = 1; +x_20 = lean_box(x_19); +x_21 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_21, 0, x_20); +lean_ctor_set(x_21, 1, x_18); +return x_21; +} +} +} +else +{ +uint8_t x_22; +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +x_22 = !lean_is_exclusive(x_8); +if (x_22 == 0) +{ +return x_8; +} +else +{ +lean_object* x_23; lean_object* x_24; lean_object* x_25; +x_23 = lean_ctor_get(x_8, 0); +x_24 = lean_ctor_get(x_8, 1); +lean_inc(x_24); +lean_inc(x_23); +lean_dec(x_8); +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; +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_isMatchValue___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) { +_start: +{ +lean_object* x_8; +lean_dec(x_2); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +x_8 = l_Lean_Meta_getUInt32Value_x3f(x_1, x_3, x_4, x_5, x_6, x_7); +if (lean_obj_tag(x_8) == 0) +{ +lean_object* x_9; +x_9 = lean_ctor_get(x_8, 0); +lean_inc(x_9); +if (lean_obj_tag(x_9) == 0) +{ +lean_object* x_10; lean_object* x_11; lean_object* x_12; +x_10 = lean_ctor_get(x_8, 1); +lean_inc(x_10); +lean_dec(x_8); +x_11 = lean_box(0); +x_12 = l_Lean_Meta_isMatchValue___lambda__2(x_1, x_11, x_3, x_4, x_5, x_6, x_10); return x_12; } else { uint8_t x_13; -x_13 = l_Lean_Meta_isFinPatLit(x_4); +lean_dec(x_9); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +x_13 = !lean_is_exclusive(x_8); if (x_13 == 0) { -lean_object* x_14; -x_14 = lean_box(0); -return x_14; +lean_object* x_14; uint8_t x_15; lean_object* x_16; +x_14 = lean_ctor_get(x_8, 0); +lean_dec(x_14); +x_15 = 1; +x_16 = lean_box(x_15); +lean_ctor_set(x_8, 0, x_16); +return x_8; } else { -lean_object* x_15; lean_object* x_16; lean_object* x_17; -x_15 = l_Lean_Expr_appArg_x21(x_4); -lean_inc(x_5); -x_16 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_16, 0, x_5); -lean_ctor_set(x_16, 1, x_15); -x_17 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_17, 0, x_16); -return x_17; -} -} -} -} -else -{ -lean_object* x_18; -x_18 = lean_box(0); -return x_18; -} -} -else -{ -lean_object* x_19; -x_19 = lean_box(0); -return x_19; -} -} -else -{ -lean_object* x_20; -x_20 = lean_box(0); +lean_object* x_17; uint8_t x_18; lean_object* x_19; lean_object* x_20; +x_17 = lean_ctor_get(x_8, 1); +lean_inc(x_17); +lean_dec(x_8); +x_18 = 1; +x_19 = lean_box(x_18); +x_20 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_20, 0, x_19); +lean_ctor_set(x_20, 1, x_17); return x_20; } } } -LEAN_EXPORT lean_object* l_Lean_Meta_isUIntPatLit_x3f___boxed(lean_object* x_1) { -_start: -{ -lean_object* x_2; -x_2 = l_Lean_Meta_isUIntPatLit_x3f(x_1); -lean_dec(x_1); -return x_2; -} -} -LEAN_EXPORT uint8_t l_Lean_Meta_isUIntPatLit(lean_object* x_1) { -_start: -{ -lean_object* x_2; -x_2 = l_Lean_Meta_isUIntPatLit_x3f(x_1); -if (lean_obj_tag(x_2) == 0) -{ -uint8_t x_3; -x_3 = 0; -return x_3; -} else { -uint8_t x_4; -lean_dec(x_2); -x_4 = 1; -return x_4; -} -} -} -LEAN_EXPORT lean_object* l_Lean_Meta_isUIntPatLit___boxed(lean_object* x_1) { -_start: -{ -uint8_t x_2; lean_object* x_3; -x_2 = l_Lean_Meta_isUIntPatLit(x_1); -lean_dec(x_1); -x_3 = lean_box(x_2); -return x_3; -} -} -LEAN_EXPORT lean_object* l_Lean_Meta_foldPatValue(lean_object* x_1) { -_start: -{ -lean_object* x_2; -x_2 = l_Lean_Meta_isUIntPatLit_x3f(x_1); -if (lean_obj_tag(x_2) == 0) -{ -lean_inc(x_1); -return x_1; -} -else -{ -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; -x_3 = lean_ctor_get(x_2, 0); -lean_inc(x_3); -lean_dec(x_2); -x_4 = lean_ctor_get(x_3, 0); -lean_inc(x_4); -x_5 = lean_ctor_get(x_3, 1); -lean_inc(x_5); +uint8_t x_21; +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); lean_dec(x_3); -x_6 = l_Lean_Meta_isFinPatLit___closed__2; -x_7 = l_Lean_Name_str___override(x_4, x_6); -x_8 = lean_box(0); -x_9 = l_Lean_Expr_const___override(x_7, x_8); -x_10 = l_Lean_Expr_app___override(x_9, x_5); +x_21 = !lean_is_exclusive(x_8); +if (x_21 == 0) +{ +return x_8; +} +else +{ +lean_object* x_22; lean_object* x_23; lean_object* x_24; +x_22 = lean_ctor_get(x_8, 0); +x_23 = lean_ctor_get(x_8, 1); +lean_inc(x_23); +lean_inc(x_22); +lean_dec(x_8); +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; +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_isMatchValue___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) { +_start: +{ +lean_object* x_8; +lean_dec(x_2); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +x_8 = l_Lean_Meta_getUInt16Value_x3f(x_1, x_3, x_4, x_5, x_6, x_7); +if (lean_obj_tag(x_8) == 0) +{ +lean_object* x_9; +x_9 = lean_ctor_get(x_8, 0); +lean_inc(x_9); +if (lean_obj_tag(x_9) == 0) +{ +lean_object* x_10; lean_object* x_11; lean_object* x_12; +x_10 = lean_ctor_get(x_8, 1); +lean_inc(x_10); +lean_dec(x_8); +x_11 = lean_box(0); +x_12 = l_Lean_Meta_isMatchValue___lambda__3(x_1, x_11, x_3, x_4, x_5, x_6, x_10); +return x_12; +} +else +{ +uint8_t x_13; +lean_dec(x_9); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +x_13 = !lean_is_exclusive(x_8); +if (x_13 == 0) +{ +lean_object* x_14; uint8_t x_15; lean_object* x_16; +x_14 = lean_ctor_get(x_8, 0); +lean_dec(x_14); +x_15 = 1; +x_16 = lean_box(x_15); +lean_ctor_set(x_8, 0, x_16); +return x_8; +} +else +{ +lean_object* x_17; uint8_t x_18; lean_object* x_19; lean_object* x_20; +x_17 = lean_ctor_get(x_8, 1); +lean_inc(x_17); +lean_dec(x_8); +x_18 = 1; +x_19 = lean_box(x_18); +x_20 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_20, 0, x_19); +lean_ctor_set(x_20, 1, x_17); +return x_20; +} +} +} +else +{ +uint8_t x_21; +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +x_21 = !lean_is_exclusive(x_8); +if (x_21 == 0) +{ +return x_8; +} +else +{ +lean_object* x_22; lean_object* x_23; lean_object* x_24; +x_22 = lean_ctor_get(x_8, 0); +x_23 = lean_ctor_get(x_8, 1); +lean_inc(x_23); +lean_inc(x_22); +lean_dec(x_8); +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; +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_isMatchValue___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) { +_start: +{ +lean_object* x_8; +lean_dec(x_2); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +x_8 = l_Lean_Meta_getUInt8Value_x3f(x_1, x_3, x_4, x_5, x_6, x_7); +if (lean_obj_tag(x_8) == 0) +{ +lean_object* x_9; +x_9 = lean_ctor_get(x_8, 0); +lean_inc(x_9); +if (lean_obj_tag(x_9) == 0) +{ +lean_object* x_10; lean_object* x_11; lean_object* x_12; +x_10 = lean_ctor_get(x_8, 1); +lean_inc(x_10); +lean_dec(x_8); +x_11 = lean_box(0); +x_12 = l_Lean_Meta_isMatchValue___lambda__4(x_1, x_11, x_3, x_4, x_5, x_6, x_10); +return x_12; +} +else +{ +uint8_t x_13; +lean_dec(x_9); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +x_13 = !lean_is_exclusive(x_8); +if (x_13 == 0) +{ +lean_object* x_14; uint8_t x_15; lean_object* x_16; +x_14 = lean_ctor_get(x_8, 0); +lean_dec(x_14); +x_15 = 1; +x_16 = lean_box(x_15); +lean_ctor_set(x_8, 0, x_16); +return x_8; +} +else +{ +lean_object* x_17; uint8_t x_18; lean_object* x_19; lean_object* x_20; +x_17 = lean_ctor_get(x_8, 1); +lean_inc(x_17); +lean_dec(x_8); +x_18 = 1; +x_19 = lean_box(x_18); +x_20 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_20, 0, x_19); +lean_ctor_set(x_20, 1, x_17); +return x_20; +} +} +} +else +{ +uint8_t x_21; +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +x_21 = !lean_is_exclusive(x_8); +if (x_21 == 0) +{ +return x_8; +} +else +{ +lean_object* x_22; lean_object* x_23; lean_object* x_24; +x_22 = lean_ctor_get(x_8, 0); +x_23 = lean_ctor_get(x_8, 1); +lean_inc(x_23); +lean_inc(x_22); +lean_dec(x_8); +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; +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_isMatchValue___lambda__6(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_dec(x_2); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +x_8 = l_Lean_Meta_getCharValue_x3f(x_1, x_3, x_4, x_5, x_6, x_7); +if (lean_obj_tag(x_8) == 0) +{ +lean_object* x_9; +x_9 = lean_ctor_get(x_8, 0); +lean_inc(x_9); +if (lean_obj_tag(x_9) == 0) +{ +lean_object* x_10; lean_object* x_11; lean_object* x_12; +x_10 = lean_ctor_get(x_8, 1); +lean_inc(x_10); +lean_dec(x_8); +x_11 = lean_box(0); +x_12 = l_Lean_Meta_isMatchValue___lambda__5(x_1, x_11, x_3, x_4, x_5, x_6, x_10); +return x_12; +} +else +{ +uint8_t x_13; +lean_dec(x_9); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +x_13 = !lean_is_exclusive(x_8); +if (x_13 == 0) +{ +lean_object* x_14; uint8_t x_15; lean_object* x_16; +x_14 = lean_ctor_get(x_8, 0); +lean_dec(x_14); +x_15 = 1; +x_16 = lean_box(x_15); +lean_ctor_set(x_8, 0, x_16); +return x_8; +} +else +{ +lean_object* x_17; uint8_t x_18; lean_object* x_19; lean_object* x_20; +x_17 = lean_ctor_get(x_8, 1); +lean_inc(x_17); +lean_dec(x_8); +x_18 = 1; +x_19 = lean_box(x_18); +x_20 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_20, 0, x_19); +lean_ctor_set(x_20, 1, x_17); +return x_20; +} +} +} +else +{ +uint8_t x_21; +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +x_21 = !lean_is_exclusive(x_8); +if (x_21 == 0) +{ +return x_8; +} +else +{ +lean_object* x_22; lean_object* x_23; lean_object* x_24; +x_22 = lean_ctor_get(x_8, 0); +x_23 = lean_ctor_get(x_8, 1); +lean_inc(x_23); +lean_inc(x_22); +lean_dec(x_8); +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; +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_isMatchValue___lambda__7(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_dec(x_2); +x_8 = l_Lean_Meta_getStringValue_x3f(x_1); +if (lean_obj_tag(x_8) == 0) +{ +lean_object* x_9; lean_object* x_10; +x_9 = lean_box(0); +x_10 = l_Lean_Meta_isMatchValue___lambda__6(x_1, x_9, x_3, x_4, x_5, x_6, x_7); return x_10; } +else +{ +uint8_t x_11; lean_object* x_12; lean_object* x_13; +lean_dec(x_8); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +x_11 = 1; +x_12 = lean_box(x_11); +x_13 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_13, 0, x_12); +lean_ctor_set(x_13, 1, x_7); +return x_13; } } -LEAN_EXPORT lean_object* l_Lean_Meta_foldPatValue___boxed(lean_object* x_1) { +} +LEAN_EXPORT lean_object* l_Lean_Meta_isMatchValue___lambda__8(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_2; -x_2 = l_Lean_Meta_foldPatValue(x_1); -lean_dec(x_1); -return x_2; -} -} -LEAN_EXPORT uint8_t l_Lean_Meta_isMatchValue(lean_object* x_1) { -_start: +lean_object* x_8; +lean_dec(x_2); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +x_8 = l_Lean_Meta_getBitVecValue_x3f(x_1, x_3, x_4, x_5, x_6, x_7); +if (lean_obj_tag(x_8) == 0) { -uint8_t x_2; -x_2 = l_Lean_Expr_isNatLit(x_1); -if (x_2 == 0) +lean_object* x_9; +x_9 = lean_ctor_get(x_8, 0); +lean_inc(x_9); +if (lean_obj_tag(x_9) == 0) { -uint8_t x_3; -x_3 = l_Lean_Expr_isCharLit(x_1); -if (x_3 == 0) -{ -uint8_t x_4; -x_4 = l_Lean_Expr_isStringLit(x_1); -if (x_4 == 0) -{ -uint8_t x_5; -x_5 = l_Lean_Meta_isFinPatLit(x_1); -if (x_5 == 0) -{ -uint8_t x_6; -x_6 = l_Lean_Meta_isUIntPatLit(x_1); -return x_6; +lean_object* x_10; lean_object* x_11; lean_object* x_12; +x_10 = lean_ctor_get(x_8, 1); +lean_inc(x_10); +lean_dec(x_8); +x_11 = lean_box(0); +x_12 = l_Lean_Meta_isMatchValue___lambda__7(x_1, x_11, x_3, x_4, x_5, x_6, x_10); +return x_12; } else { -uint8_t x_7; -x_7 = 1; +uint8_t x_13; +lean_dec(x_9); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +x_13 = !lean_is_exclusive(x_8); +if (x_13 == 0) +{ +lean_object* x_14; uint8_t x_15; lean_object* x_16; +x_14 = lean_ctor_get(x_8, 0); +lean_dec(x_14); +x_15 = 1; +x_16 = lean_box(x_15); +lean_ctor_set(x_8, 0, x_16); +return x_8; +} +else +{ +lean_object* x_17; uint8_t x_18; lean_object* x_19; lean_object* x_20; +x_17 = lean_ctor_get(x_8, 1); +lean_inc(x_17); +lean_dec(x_8); +x_18 = 1; +x_19 = lean_box(x_18); +x_20 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_20, 0, x_19); +lean_ctor_set(x_20, 1, x_17); +return x_20; +} +} +} +else +{ +uint8_t x_21; +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +x_21 = !lean_is_exclusive(x_8); +if (x_21 == 0) +{ +return x_8; +} +else +{ +lean_object* x_22; lean_object* x_23; lean_object* x_24; +x_22 = lean_ctor_get(x_8, 0); +x_23 = lean_ctor_get(x_8, 1); +lean_inc(x_23); +lean_inc(x_22); +lean_dec(x_8); +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; +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_isMatchValue___lambda__9(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_dec(x_2); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +x_8 = l_Lean_Meta_getFinValue_x3f(x_1, x_3, x_4, x_5, x_6, x_7); +if (lean_obj_tag(x_8) == 0) +{ +lean_object* x_9; +x_9 = lean_ctor_get(x_8, 0); +lean_inc(x_9); +if (lean_obj_tag(x_9) == 0) +{ +lean_object* x_10; lean_object* x_11; lean_object* x_12; +x_10 = lean_ctor_get(x_8, 1); +lean_inc(x_10); +lean_dec(x_8); +x_11 = lean_box(0); +x_12 = l_Lean_Meta_isMatchValue___lambda__8(x_1, x_11, x_3, x_4, x_5, x_6, x_10); +return x_12; +} +else +{ +uint8_t x_13; +lean_dec(x_9); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +x_13 = !lean_is_exclusive(x_8); +if (x_13 == 0) +{ +lean_object* x_14; uint8_t x_15; lean_object* x_16; +x_14 = lean_ctor_get(x_8, 0); +lean_dec(x_14); +x_15 = 1; +x_16 = lean_box(x_15); +lean_ctor_set(x_8, 0, x_16); +return x_8; +} +else +{ +lean_object* x_17; uint8_t x_18; lean_object* x_19; lean_object* x_20; +x_17 = lean_ctor_get(x_8, 1); +lean_inc(x_17); +lean_dec(x_8); +x_18 = 1; +x_19 = lean_box(x_18); +x_20 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_20, 0, x_19); +lean_ctor_set(x_20, 1, x_17); +return x_20; +} +} +} +else +{ +uint8_t x_21; +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +x_21 = !lean_is_exclusive(x_8); +if (x_21 == 0) +{ +return x_8; +} +else +{ +lean_object* x_22; lean_object* x_23; lean_object* x_24; +x_22 = lean_ctor_get(x_8, 0); +x_23 = lean_ctor_get(x_8, 1); +lean_inc(x_23); +lean_inc(x_22); +lean_dec(x_8); +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; +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_isMatchValue___lambda__10(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_dec(x_2); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +x_8 = l_Lean_Meta_getIntValue_x3f(x_1, x_3, x_4, x_5, x_6, x_7); +if (lean_obj_tag(x_8) == 0) +{ +lean_object* x_9; +x_9 = lean_ctor_get(x_8, 0); +lean_inc(x_9); +if (lean_obj_tag(x_9) == 0) +{ +lean_object* x_10; lean_object* x_11; lean_object* x_12; +x_10 = lean_ctor_get(x_8, 1); +lean_inc(x_10); +lean_dec(x_8); +x_11 = lean_box(0); +x_12 = l_Lean_Meta_isMatchValue___lambda__9(x_1, x_11, x_3, x_4, x_5, x_6, x_10); +return x_12; +} +else +{ +uint8_t x_13; +lean_dec(x_9); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +x_13 = !lean_is_exclusive(x_8); +if (x_13 == 0) +{ +lean_object* x_14; uint8_t x_15; lean_object* x_16; +x_14 = lean_ctor_get(x_8, 0); +lean_dec(x_14); +x_15 = 1; +x_16 = lean_box(x_15); +lean_ctor_set(x_8, 0, x_16); +return x_8; +} +else +{ +lean_object* x_17; uint8_t x_18; lean_object* x_19; lean_object* x_20; +x_17 = lean_ctor_get(x_8, 1); +lean_inc(x_17); +lean_dec(x_8); +x_18 = 1; +x_19 = lean_box(x_18); +x_20 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_20, 0, x_19); +lean_ctor_set(x_20, 1, x_17); +return x_20; +} +} +} +else +{ +uint8_t x_21; +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +x_21 = !lean_is_exclusive(x_8); +if (x_21 == 0) +{ +return x_8; +} +else +{ +lean_object* x_22; lean_object* x_23; lean_object* x_24; +x_22 = lean_ctor_get(x_8, 0); +x_23 = lean_ctor_get(x_8, 1); +lean_inc(x_23); +lean_inc(x_22); +lean_dec(x_8); +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; +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_isMatchValue(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; lean_object* x_8; lean_object* x_9; lean_object* x_10; +x_7 = l_Lean_instantiateMVars___at___private_Lean_Meta_Basic_0__Lean_Meta_isClassApp_x3f___spec__1(x_1, x_2, x_3, x_4, x_5, x_6); +x_8 = lean_ctor_get(x_7, 0); +lean_inc(x_8); +x_9 = lean_ctor_get(x_7, 1); +lean_inc(x_9); +lean_dec(x_7); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +lean_inc(x_2); +lean_inc(x_8); +x_10 = l_Lean_Meta_getNatValue_x3f(x_8, x_2, x_3, x_4, x_5, x_9); +if (lean_obj_tag(x_10) == 0) +{ +lean_object* x_11; +x_11 = lean_ctor_get(x_10, 0); +lean_inc(x_11); +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_10, 1); +lean_inc(x_12); +lean_dec(x_10); +x_13 = lean_box(0); +x_14 = l_Lean_Meta_isMatchValue___lambda__10(x_8, x_13, x_2, x_3, x_4, x_5, x_12); +lean_dec(x_8); +return x_14; +} +else +{ +uint8_t x_15; +lean_dec(x_11); +lean_dec(x_8); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_15 = !lean_is_exclusive(x_10); +if (x_15 == 0) +{ +lean_object* x_16; uint8_t x_17; lean_object* x_18; +x_16 = lean_ctor_get(x_10, 0); +lean_dec(x_16); +x_17 = 1; +x_18 = lean_box(x_17); +lean_ctor_set(x_10, 0, x_18); +return x_10; +} +else +{ +lean_object* x_19; uint8_t x_20; lean_object* x_21; lean_object* x_22; +x_19 = lean_ctor_get(x_10, 1); +lean_inc(x_19); +lean_dec(x_10); +x_20 = 1; +x_21 = lean_box(x_20); +x_22 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_22, 0, x_21); +lean_ctor_set(x_22, 1, x_19); +return x_22; +} +} +} +else +{ +uint8_t x_23; +lean_dec(x_8); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_23 = !lean_is_exclusive(x_10); +if (x_23 == 0) +{ +return x_10; +} +else +{ +lean_object* x_24; lean_object* x_25; lean_object* x_26; +x_24 = lean_ctor_get(x_10, 0); +x_25 = lean_ctor_get(x_10, 1); +lean_inc(x_25); +lean_inc(x_24); +lean_dec(x_10); +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; +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_isMatchValue___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_Lean_Meta_isMatchValue___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); +lean_dec(x_1); return x_7; } } -else +LEAN_EXPORT lean_object* l_Lean_Meta_isMatchValue___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: { -uint8_t x_8; -x_8 = 1; +lean_object* x_8; +x_8 = l_Lean_Meta_isMatchValue___lambda__2(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +lean_dec(x_2); +lean_dec(x_1); return x_8; } } -else -{ -uint8_t x_9; -x_9 = 1; -return x_9; -} -} -else -{ -uint8_t x_10; -x_10 = 1; -return x_10; -} -} -} -LEAN_EXPORT lean_object* l_Lean_Meta_isMatchValue___boxed(lean_object* x_1) { +LEAN_EXPORT lean_object* l_Lean_Meta_isMatchValue___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) { _start: { -uint8_t x_2; lean_object* x_3; -x_2 = l_Lean_Meta_isMatchValue(x_1); +lean_object* x_8; +x_8 = l_Lean_Meta_isMatchValue___lambda__3(x_1, x_2, x_3, x_4, x_5, x_6, x_7); lean_dec(x_1); -x_3 = lean_box(x_2); -return x_3; +return x_8; } } +LEAN_EXPORT lean_object* l_Lean_Meta_isMatchValue___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) { +_start: +{ +lean_object* x_8; +x_8 = l_Lean_Meta_isMatchValue___lambda__4(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +lean_dec(x_1); +return x_8; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_isMatchValue___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) { +_start: +{ +lean_object* x_8; +x_8 = l_Lean_Meta_isMatchValue___lambda__5(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +lean_dec(x_1); +return x_8; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_isMatchValue___lambda__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) { +_start: +{ +lean_object* x_8; +x_8 = l_Lean_Meta_isMatchValue___lambda__6(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +lean_dec(x_1); +return x_8; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_isMatchValue___lambda__7___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_Lean_Meta_isMatchValue___lambda__7(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +lean_dec(x_1); +return x_8; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_isMatchValue___lambda__8___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_Lean_Meta_isMatchValue___lambda__8(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +lean_dec(x_1); +return x_8; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_isMatchValue___lambda__9___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_Lean_Meta_isMatchValue___lambda__9(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +lean_dec(x_1); +return x_8; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_isMatchValue___lambda__10___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_Lean_Meta_isMatchValue___lambda__10(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +lean_dec(x_1); +return x_8; +} +} +lean_object* initialize_Lean_Meta_LitValues(uint8_t builtin, lean_object*); lean_object* initialize_Lean_Expr(uint8_t builtin, lean_object*); static bool _G_initialized = false; LEAN_EXPORT lean_object* initialize_Lean_Meta_Match_Value(uint8_t builtin, lean_object* w) { lean_object * res; if (_G_initialized) return lean_io_result_mk_ok(lean_box(0)); _G_initialized = true; +res = initialize_Lean_Meta_LitValues(builtin, lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); res = initialize_Lean_Expr(builtin, lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -l___private_Lean_Meta_Match_Value_0__Lean_Meta_UIntTypeNames___closed__1 = _init_l___private_Lean_Meta_Match_Value_0__Lean_Meta_UIntTypeNames___closed__1(); -lean_mark_persistent(l___private_Lean_Meta_Match_Value_0__Lean_Meta_UIntTypeNames___closed__1); -l___private_Lean_Meta_Match_Value_0__Lean_Meta_UIntTypeNames___closed__2 = _init_l___private_Lean_Meta_Match_Value_0__Lean_Meta_UIntTypeNames___closed__2(); -lean_mark_persistent(l___private_Lean_Meta_Match_Value_0__Lean_Meta_UIntTypeNames___closed__2); -l___private_Lean_Meta_Match_Value_0__Lean_Meta_UIntTypeNames___closed__3 = _init_l___private_Lean_Meta_Match_Value_0__Lean_Meta_UIntTypeNames___closed__3(); -lean_mark_persistent(l___private_Lean_Meta_Match_Value_0__Lean_Meta_UIntTypeNames___closed__3); -l___private_Lean_Meta_Match_Value_0__Lean_Meta_UIntTypeNames___closed__4 = _init_l___private_Lean_Meta_Match_Value_0__Lean_Meta_UIntTypeNames___closed__4(); -lean_mark_persistent(l___private_Lean_Meta_Match_Value_0__Lean_Meta_UIntTypeNames___closed__4); -l___private_Lean_Meta_Match_Value_0__Lean_Meta_UIntTypeNames___closed__5 = _init_l___private_Lean_Meta_Match_Value_0__Lean_Meta_UIntTypeNames___closed__5(); -lean_mark_persistent(l___private_Lean_Meta_Match_Value_0__Lean_Meta_UIntTypeNames___closed__5); -l___private_Lean_Meta_Match_Value_0__Lean_Meta_UIntTypeNames___closed__6 = _init_l___private_Lean_Meta_Match_Value_0__Lean_Meta_UIntTypeNames___closed__6(); -lean_mark_persistent(l___private_Lean_Meta_Match_Value_0__Lean_Meta_UIntTypeNames___closed__6); -l___private_Lean_Meta_Match_Value_0__Lean_Meta_UIntTypeNames___closed__7 = _init_l___private_Lean_Meta_Match_Value_0__Lean_Meta_UIntTypeNames___closed__7(); -lean_mark_persistent(l___private_Lean_Meta_Match_Value_0__Lean_Meta_UIntTypeNames___closed__7); -l___private_Lean_Meta_Match_Value_0__Lean_Meta_UIntTypeNames___closed__8 = _init_l___private_Lean_Meta_Match_Value_0__Lean_Meta_UIntTypeNames___closed__8(); -lean_mark_persistent(l___private_Lean_Meta_Match_Value_0__Lean_Meta_UIntTypeNames___closed__8); -l___private_Lean_Meta_Match_Value_0__Lean_Meta_UIntTypeNames___closed__9 = _init_l___private_Lean_Meta_Match_Value_0__Lean_Meta_UIntTypeNames___closed__9(); -lean_mark_persistent(l___private_Lean_Meta_Match_Value_0__Lean_Meta_UIntTypeNames___closed__9); -l___private_Lean_Meta_Match_Value_0__Lean_Meta_UIntTypeNames___closed__10 = _init_l___private_Lean_Meta_Match_Value_0__Lean_Meta_UIntTypeNames___closed__10(); -lean_mark_persistent(l___private_Lean_Meta_Match_Value_0__Lean_Meta_UIntTypeNames___closed__10); -l___private_Lean_Meta_Match_Value_0__Lean_Meta_UIntTypeNames___closed__11 = _init_l___private_Lean_Meta_Match_Value_0__Lean_Meta_UIntTypeNames___closed__11(); -lean_mark_persistent(l___private_Lean_Meta_Match_Value_0__Lean_Meta_UIntTypeNames___closed__11); -l___private_Lean_Meta_Match_Value_0__Lean_Meta_UIntTypeNames___closed__12 = _init_l___private_Lean_Meta_Match_Value_0__Lean_Meta_UIntTypeNames___closed__12(); -lean_mark_persistent(l___private_Lean_Meta_Match_Value_0__Lean_Meta_UIntTypeNames___closed__12); -l___private_Lean_Meta_Match_Value_0__Lean_Meta_UIntTypeNames___closed__13 = _init_l___private_Lean_Meta_Match_Value_0__Lean_Meta_UIntTypeNames___closed__13(); -lean_mark_persistent(l___private_Lean_Meta_Match_Value_0__Lean_Meta_UIntTypeNames___closed__13); -l___private_Lean_Meta_Match_Value_0__Lean_Meta_UIntTypeNames___closed__14 = _init_l___private_Lean_Meta_Match_Value_0__Lean_Meta_UIntTypeNames___closed__14(); -lean_mark_persistent(l___private_Lean_Meta_Match_Value_0__Lean_Meta_UIntTypeNames___closed__14); -l___private_Lean_Meta_Match_Value_0__Lean_Meta_UIntTypeNames___closed__15 = _init_l___private_Lean_Meta_Match_Value_0__Lean_Meta_UIntTypeNames___closed__15(); -lean_mark_persistent(l___private_Lean_Meta_Match_Value_0__Lean_Meta_UIntTypeNames___closed__15); -l___private_Lean_Meta_Match_Value_0__Lean_Meta_UIntTypeNames___closed__16 = _init_l___private_Lean_Meta_Match_Value_0__Lean_Meta_UIntTypeNames___closed__16(); -lean_mark_persistent(l___private_Lean_Meta_Match_Value_0__Lean_Meta_UIntTypeNames___closed__16); -l___private_Lean_Meta_Match_Value_0__Lean_Meta_UIntTypeNames = _init_l___private_Lean_Meta_Match_Value_0__Lean_Meta_UIntTypeNames(); -lean_mark_persistent(l___private_Lean_Meta_Match_Value_0__Lean_Meta_UIntTypeNames); -l_Lean_Meta_isFinPatLit___closed__1 = _init_l_Lean_Meta_isFinPatLit___closed__1(); -lean_mark_persistent(l_Lean_Meta_isFinPatLit___closed__1); -l_Lean_Meta_isFinPatLit___closed__2 = _init_l_Lean_Meta_isFinPatLit___closed__2(); -lean_mark_persistent(l_Lean_Meta_isFinPatLit___closed__2); -l_Lean_Meta_isFinPatLit___closed__3 = _init_l_Lean_Meta_isFinPatLit___closed__3(); -lean_mark_persistent(l_Lean_Meta_isFinPatLit___closed__3); -l_Lean_Meta_isUIntPatLit_x3f___closed__1 = _init_l_Lean_Meta_isUIntPatLit_x3f___closed__1(); -lean_mark_persistent(l_Lean_Meta_isUIntPatLit_x3f___closed__1); +l_Lean_Meta_isMatchValue___lambda__2___closed__1 = _init_l_Lean_Meta_isMatchValue___lambda__2___closed__1(); +lean_mark_persistent(l_Lean_Meta_isMatchValue___lambda__2___closed__1); return lean_io_result_mk_ok(lean_box(0)); } #ifdef __cplusplus diff --git a/stage0/stdlib/Lean/Meta/Reduce.c b/stage0/stdlib/Lean/Meta/Reduce.c index f8945e32bc..1ce98e28cc 100644 --- a/stage0/stdlib/Lean/Meta/Reduce.c +++ b/stage0/stdlib/Lean/Meta/Reduce.c @@ -28,13 +28,13 @@ LEAN_EXPORT lean_object* l_Lean_Meta_reduce_visit(uint8_t, uint8_t, uint8_t, lea lean_object* lean_whnf(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_maxRecDepthErrorMessage; LEAN_EXPORT lean_object* l_Lean_Meta_reduce_visit___lambda__4(lean_object*, uint8_t, uint8_t, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +uint8_t l_Lean_Expr_isRawNatLit(lean_object*); lean_object* l_Lean_Expr_sort___override(lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_reduce_visit___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_mk_array(lean_object*, lean_object*); lean_object* l_Lean_Expr_proj___override(lean_object*, lean_object*, lean_object*); lean_object* lean_array_fget(lean_object*, lean_object*); lean_object* lean_array_fset(lean_object*, lean_object*, lean_object*); -uint8_t l_Lean_Expr_isNatLit(lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_reduce_visit___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_Meta_reduce_visit___lambda__1(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_HashMapImp_expand___at_Lean_Meta_reduce_visit___spec__12(lean_object*, lean_object*); @@ -1643,7 +1643,7 @@ if (x_70 == 0) lean_object* x_71; lean_object* x_72; uint8_t x_73; x_71 = l_Lean_instInhabitedExpr; x_72 = l___private_Init_Util_0__outOfBounds___rarg(x_71); -x_73 = l_Lean_Expr_isNatLit(x_72); +x_73 = l_Lean_Expr_isRawNatLit(x_72); lean_dec(x_72); if (x_73 == 0) { @@ -1668,7 +1668,7 @@ else { lean_object* x_76; uint8_t x_77; x_76 = lean_array_fget(x_34, x_21); -x_77 = l_Lean_Expr_isNatLit(x_76); +x_77 = l_Lean_Expr_isRawNatLit(x_76); lean_dec(x_76); if (x_77 == 0) { @@ -1885,7 +1885,7 @@ if (x_131 == 0) lean_object* x_132; lean_object* x_133; uint8_t x_134; x_132 = l_Lean_instInhabitedExpr; x_133 = l___private_Init_Util_0__outOfBounds___rarg(x_132); -x_134 = l_Lean_Expr_isNatLit(x_133); +x_134 = l_Lean_Expr_isRawNatLit(x_133); lean_dec(x_133); if (x_134 == 0) { @@ -1910,7 +1910,7 @@ else { lean_object* x_138; uint8_t x_139; x_138 = lean_array_fget(x_93, x_21); -x_139 = l_Lean_Expr_isNatLit(x_138); +x_139 = l_Lean_Expr_isRawNatLit(x_138); lean_dec(x_138); if (x_139 == 0) { diff --git a/stage0/stdlib/Lean/Meta/SynthInstance.c b/stage0/stdlib/Lean/Meta/SynthInstance.c index 8834187c0d..df4c1eae8c 100644 --- a/stage0/stdlib/Lean/Meta/SynthInstance.c +++ b/stage0/stdlib/Lean/Meta/SynthInstance.c @@ -143,6 +143,7 @@ lean_object* l_Lean_Expr_proj___override(lean_object*, lean_object*, lean_object lean_object* l_Lean_Expr_bvar___override(lean_object*); lean_object* lean_array_fget(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_SynthInstance_mkTableKey___rarg___lambda__1___boxed(lean_object*, lean_object*); +lean_object* l_Lean_Meta_forallTelescope___at_Lean_Meta_mapForallTelescope_x27___spec__1___rarg(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_Array_foldlMUnsafe_fold___at_Lean_Meta_SynthInstance_getInstances___spec__7___closed__3; static lean_object* l_Lean_Meta_synthInstance_x3f_assignOutParams___closed__3; @@ -416,7 +417,6 @@ static lean_object* l_Lean_Meta_SynthInstance_resume___lambda__1___closed__3; static lean_object* l_Lean_Meta_synthInstance_x3f_assignOutParams___closed__4; LEAN_EXPORT lean_object* l___private_Lean_Meta_SynthInstance_0__Lean_Meta_SynthInstance_removeUnusedArguments_x3f___lambda__3(lean_object*, 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_6____closed__4; -lean_object* l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_mkHashMap___at_Lean_Meta_SynthInstance_State_tableEntries___default___spec__1(lean_object*); static lean_object* l_Lean_Meta_SynthInstance_mkTableKeyFor___closed__1; lean_object* l___private_Init_Util_0__mkPanicMessageWithDecl(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -13486,7 +13486,7 @@ lean_free_object(x_10); lean_inc(x_12); x_16 = lean_alloc_closure((void*)(l___private_Lean_Meta_SynthInstance_0__Lean_Meta_SynthInstance_removeUnusedArguments_x3f___lambda__3), 8, 1); lean_closure_set(x_16, 0, x_12); -x_17 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_12, x_16, x_2, x_3, x_4, x_5, x_13); +x_17 = l_Lean_Meta_forallTelescope___at_Lean_Meta_mapForallTelescope_x27___spec__1___rarg(x_12, x_16, x_2, x_3, x_4, x_5, x_13); return x_17; } } @@ -13519,7 +13519,7 @@ lean_object* x_23; lean_object* x_24; lean_inc(x_18); x_23 = lean_alloc_closure((void*)(l___private_Lean_Meta_SynthInstance_0__Lean_Meta_SynthInstance_removeUnusedArguments_x3f___lambda__3), 8, 1); lean_closure_set(x_23, 0, x_18); -x_24 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_18, x_23, x_2, x_3, x_4, x_5, x_19); +x_24 = l_Lean_Meta_forallTelescope___at_Lean_Meta_mapForallTelescope_x27___spec__1___rarg(x_18, x_23, x_2, x_3, x_4, x_5, x_19); return x_24; } } @@ -21330,7 +21330,7 @@ lean_object* x_7; lean_object* x_8; lean_inc(x_1); x_7 = lean_alloc_closure((void*)(l___private_Lean_Meta_SynthInstance_0__Lean_Meta_preprocessOutParam___lambda__1), 8, 1); lean_closure_set(x_7, 0, x_1); -x_8 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_1, x_7, x_2, x_3, x_4, x_5, x_6); +x_8 = l_Lean_Meta_forallTelescope___at_Lean_Meta_mapForallTelescope_x27___spec__1___rarg(x_1, x_7, x_2, x_3, x_4, x_5, x_6); return x_8; } } diff --git a/stage0/stdlib/Lean/Meta/Tactic/Injection.c b/stage0/stdlib/Lean/Meta/Tactic/Injection.c index df7a1e4e0c..ba19176a68 100644 --- a/stage0/stdlib/Lean/Meta/Tactic/Injection.c +++ b/stage0/stdlib/Lean/Meta/Tactic/Injection.c @@ -24,13 +24,13 @@ lean_object* l_Lean_MVarId_checkNotAssigned(lean_object*, lean_object*, lean_obj lean_object* l_Lean_Meta_isExprDefEq(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*); lean_object* l_Lean_Meta_matchEqHEq_x3f(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +uint8_t l_Lean_Expr_isRawNatLit(lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_getCtorNumPropFields___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_array_push(lean_object*, lean_object*); static lean_object* l_Lean_Meta_injectionCore___lambda__1___closed__10; static lean_object* l_Lean_Meta_injectionCore___closed__2; lean_object* lean_array_fget(lean_object*, lean_object*); lean_object* l_Lean_MVarId_getTag(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -uint8_t l_Lean_Expr_isNatLit(lean_object*); lean_object* l_Lean_Meta_forallTelescopeReducing___at_Lean_Meta_getParamNames___spec__2___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_getCtorNumPropFields(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Meta_injections_go___closed__1; @@ -3278,7 +3278,7 @@ if (lean_is_exclusive(x_35)) { lean_dec_ref(x_35); x_38 = lean_box(0); } -x_89 = l_Lean_Expr_isNatLit(x_33); +x_89 = l_Lean_Expr_isRawNatLit(x_33); lean_dec(x_33); if (x_89 == 0) { @@ -3291,7 +3291,7 @@ goto block_88; else { uint8_t x_91; -x_91 = l_Lean_Expr_isNatLit(x_36); +x_91 = l_Lean_Expr_isRawNatLit(x_36); lean_dec(x_36); if (x_91 == 0) { diff --git a/stage0/stdlib/Lean/Meta/Tactic/LibrarySearch.c b/stage0/stdlib/Lean/Meta/Tactic/LibrarySearch.c new file mode 100644 index 0000000000..11680211e2 --- /dev/null +++ b/stage0/stdlib/Lean/Meta/Tactic/LibrarySearch.c @@ -0,0 +1,11851 @@ +// Lean compiler output +// Module: Lean.Meta.Tactic.LibrarySearch +// Imports: Init.Data.Nat.MinMax Lean.Meta.LazyDiscrTree Lean.Meta.Tactic.SolveByElim Lean.Util.Heartbeats +#include +#if defined(__clang__) +#pragma clang diagnostic ignored "-Wunused-parameter" +#pragma clang diagnostic ignored "-Wunused-label" +#elif defined(__GNUC__) && !defined(__CLANG__) +#pragma GCC diagnostic ignored "-Wunused-parameter" +#pragma GCC diagnostic ignored "-Wunused-label" +#pragma GCC diagnostic ignored "-Wunused-but-set-variable" +#endif +#ifdef __cplusplus +extern "C" { +#endif +lean_object* l___private_Lean_Meta_DiscrTree_0__Lean_Meta_DiscrTree_createNodes___rarg(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_LibrarySearch_initFn____x40_Lean_Meta_Tactic_LibrarySearch___hyg_1508____lambda__1(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_LibrarySearch_IncDiscrTreeFinder_mkImportFinder___elambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Init_Util_0__outOfBounds___rarg(lean_object*); +static lean_object* l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___spec__2___lambda__4___closed__1; +LEAN_EXPORT lean_object* l_Lean_Meta_LibrarySearch_tryOnEach___lambda__1___boxed(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_1420____closed__3; +LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearchEmoji___rarg___boxed(lean_object*); +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Meta_LibrarySearch_librarySearchSymm___spec__2(lean_object*, size_t, size_t, lean_object*); +LEAN_EXPORT lean_object* l___private_Init_Data_Array_BinSearch_0__Array_binInsertAux___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_updateTree___spec__13(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l_Lean_profiler; +lean_object* lean_mk_empty_array_with_capacity(lean_object*); +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*, lean_object*, lean_object*, 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_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearchLemma___lambda__1___closed__12; +size_t lean_usize_shift_right(size_t, size_t); +LEAN_EXPORT lean_object* l_Lean_Meta_LibrarySearch_initFn____x40_Lean_Meta_Tactic_LibrarySearch___hyg_1508_(lean_object*); +static lean_object* l_Lean_Meta_LibrarySearch_initFn____x40_Lean_Meta_Tactic_LibrarySearch___hyg_1378____closed__18; +uint8_t l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_beqKey____x40_Lean_Meta_LazyDiscrTree___hyg_99_(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_LibrarySearch_tryOnEach___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_DiscrTree_0__Lean_Meta_DiscrTree_insertAux___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_updateTree___spec__10(lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Meta_LibrarySearch_initFn____x40_Lean_Meta_Tactic_LibrarySearch___hyg_1378____closed__10; +lean_object* l_Lean_Meta_SolveByElim_solveByElim(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Meta_DiscrTree_insertCore___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_updateTree___spec__2___closed__1; +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___spec__2___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Meta_LibrarySearch_solveByElim___closed__2; +LEAN_EXPORT lean_object* l_Lean_Meta_LibrarySearch_DiscrTreeFinder_buildImportCache___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_ConstantInfo_type(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_LibrarySearch_solveByElim___lambda__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Meta_LibrarySearch_solveByElim___closed__4; +LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_addPath(lean_object*); +uint8_t lean_usize_dec_le(size_t, size_t); +LEAN_EXPORT lean_object* l_Lean_Meta_LibrarySearch_solveByElim(lean_object*, uint8_t, 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___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_LibrarySearch_librarySearch(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_qsort_sort___at_Lean_Meta_LibrarySearch_DiscrTreeFinder_buildImportCache___spec__2(lean_object*, lean_object*, lean_object*); +double lean_float_div(double, double); +static lean_object* l_Lean_Meta_LibrarySearch_initFn____x40_Lean_Meta_Tactic_LibrarySearch___hyg_1378____closed__12; +LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_addPath___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_updateTree___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_Meta_LibrarySearch_initFn____x40_Lean_Meta_Tactic_LibrarySearch___hyg_1378_(lean_object*); +static lean_object* l_Lean_Meta_LibrarySearch_tryOnEach___closed__1; +lean_object* l_Lean_Meta_DiscrTree_mapArraysM___at_Lean_Meta_DiscrTree_mapArrays___spec__1___rarg(lean_object*, lean_object*); +static lean_object* l_Lean_Meta_LibrarySearch_mkLibrarySearchLemma___lambda__1___closed__1; +size_t lean_uint64_to_usize(uint64_t); +lean_object* l_Lean_Meta_forallMetaTelescope(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Meta_LibrarySearch_IncDiscrTreeFinder_mkImportFinder___elambda__1___lambda__1___closed__1; +static lean_object* l_Lean_Meta_LibrarySearch_mkLibrarySearchLemma___lambda__2___closed__1; +lean_object* l_Lean_Name_toString(lean_object*, uint8_t); +static lean_object* l_Lean_Meta_LibrarySearch_initFn____x40_Lean_Meta_Tactic_LibrarySearch___hyg_2079____closed__1; +double l_Lean_trace_profiler_threshold_getSecs(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_LibrarySearch_initFn____x40_Lean_Meta_Tactic_LibrarySearch___hyg_2079_(lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_ext; +lean_object* l_Lean_Meta_LazyDiscrTree_createImportedEnvironment___rarg(lean_object*, lean_object*, lean_object*, lean_object*); +uint8_t lean_nat_dec_le(lean_object*, lean_object*); +lean_object* lean_array_push(lean_object*, lean_object*); +static lean_object* l_Lean_Meta_LibrarySearch_initFn____x40_Lean_Meta_Tactic_LibrarySearch___hyg_1378____closed__3; +lean_object* l_Array_qpartition___rarg(lean_object*, lean_object*, lean_object*, lean_object*); +size_t lean_usize_mul(size_t, size_t); +LEAN_EXPORT lean_object* l_Std_Range_forIn_x27_loop___at_Lean_Meta_LibrarySearch_interleaveWith___spec__1(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___lambda__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_EnvExtensionInterfaceUnsafe_registerExt___rarg(lean_object*, lean_object*); +static lean_object* l_Lean_Meta_LibrarySearch_instToStringDeclMod___closed__2; +LEAN_EXPORT lean_object* l_Lean_Meta_LibrarySearch_mkLibrarySearchLemma___lambda__2(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__13; +LEAN_EXPORT lean_object* l_Lean_Meta_LibrarySearch_mkHeartbeatCheck(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +uint8_t lean_usize_dec_eq(size_t, size_t); +LEAN_EXPORT lean_object* l_Lean_Meta_LibrarySearch_solveByElim___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_addPath___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_Meta_LibrarySearch_initFn____x40_Lean_Meta_Tactic_LibrarySearch___hyg_1420____closed__1; +LEAN_EXPORT lean_object* l_Lean_Meta_LibrarySearch_mkHeartbeatCheck___elambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Meta_LibrarySearch_initFn____x40_Lean_Meta_Tactic_LibrarySearch___hyg_1378____closed__4; +LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___lambda__7(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* lean_array_fget(lean_object*, lean_object*); +lean_object* l_Lean_Meta_forallTelescope___at_Lean_Meta_mapForallTelescope_x27___spec__1___rarg(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*); +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insert___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_updateTree___spec__6(lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Meta_LibrarySearch_initFn____x40_Lean_Meta_Tactic_LibrarySearch___hyg_2079____closed__3; +static lean_object* l_Lean_Meta_LibrarySearch_abortSpeculation___rarg___closed__2; +static lean_object* l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___spec__2___lambda__3___closed__3; +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Meta_LibrarySearch_interleaveWith___spec__3___rarg___boxed(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__6; +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Meta_LibrarySearch_DiscrTreeFinder_buildImportCache___spec__3(size_t, size_t, lean_object*); +uint8_t lean_float_decLt(double, double); +LEAN_EXPORT lean_object* l_Lean_Meta_LibrarySearch_abortSpeculation___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_LibrarySearch_isAbortSpeculation___boxed(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_LibrarySearch_DiscrTreeFinder_buildImportCache___lambda__1(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_LibrarySearch_DeclMod_ofNat___boxed(lean_object*); +static lean_object* l_Lean_Meta_LibrarySearch_initFn____x40_Lean_Meta_Tactic_LibrarySearch___hyg_2079____closed__2; +static lean_object* l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearchLemma___lambda__1___closed__11; +uint8_t l_Lean_ConstantInfo_isUnsafe(lean_object*); +lean_object* l_Lean_stringToMessageData(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_LibrarySearch_mkLibrarySearchLemma___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___spec__2___lambda__3___closed__1; +static lean_object* l_Lean_PersistentHashMap_insertAux___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_updateTree___spec__7___closed__1; +uint8_t l___private_Lean_Meta_DiscrTreeTypes_0__Lean_Meta_DiscrTree_beqKey____x40_Lean_Meta_DiscrTreeTypes___hyg_99_(lean_object*, lean_object*); +uint8_t lean_string_dec_eq(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_updateTree___spec__7(lean_object*, size_t, size_t, lean_object*, lean_object*); +static lean_object* l_Lean_Meta_DiscrTree_insertCore___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_updateTree___spec__2___closed__3; +static lean_object* l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___spec__2___lambda__4___closed__2; +LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_updateTree___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_panic___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_updateTree___spec__14___closed__1; +LEAN_EXPORT uint8_t l_Lean_Meta_LibrarySearch_instInhabitedDeclMod; +LEAN_EXPORT lean_object* l_Lean_Meta_LibrarySearch_defaultCandidateFinder; +lean_object* l_Lean_Meta_SolveByElim_SolveByElimConfig_requireUsingAll(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearchEmoji___rarg(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_LibrarySearch_mkHeartbeatCheck___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_findAtAux___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_updateTree___spec__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_qsort_sort___at_Lean_Meta_LibrarySearch_DiscrTreeFinder_buildImportCache___spec__2___lambda__1___boxed(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_LibrarySearch_solveByElim___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Meta_LibrarySearch_librarySearchSymm___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Meta_LibrarySearch_DiscrTreeFinder_buildImportCache___lambda__2___closed__1; +LEAN_EXPORT lean_object* l_Lean_Meta_LibrarySearch_mkLibrarySearchLemma(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_findAux___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_updateTree___spec__4(lean_object*, size_t, lean_object*); +lean_object* l_Lean_Name_mkStr3(lean_object*, lean_object*, lean_object*); +static lean_object* l_Array_forInUnsafe_loop___at_Lean_Meta_LibrarySearch_tryOnEach___spec__1___closed__1; +lean_object* l_Lean_EnvExtension_getState___rarg(lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Meta_LibrarySearch_initFn____x40_Lean_Meta_Tactic_LibrarySearch___hyg_1378____closed__5; +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_foldlM___at_Lean_Meta_LibrarySearch_DiscrTreeFinder_localMatches___spec__1(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_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___spec__2___lambda__3___closed__5; +size_t lean_usize_of_nat(lean_object*); +LEAN_EXPORT lean_object* l_panic___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_updateTree___spec__14(lean_object*); +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Meta_LibrarySearch_interleaveWith___spec__2___rarg(lean_object*, size_t, size_t, 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_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_Meta_LibrarySearch_tryOnEach___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* l_Array_reverse___rarg(lean_object*); +LEAN_EXPORT lean_object* l_Lean_withSeconds___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___spec__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_IncDiscrTreeFinder_addImport___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +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*); +static lean_object* l_Lean_Meta_LibrarySearch_initFn____x40_Lean_Meta_Tactic_LibrarySearch___hyg_1378____closed__15; +LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_emoji___rarg(lean_object*); +uint8_t lean_nat_dec_eq(lean_object*, lean_object*); +static lean_object* l_Lean_Meta_DiscrTree_insertCore___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_updateTree___spec__2___closed__2; +static lean_object* l_Lean_Meta_LibrarySearch_solveByElim___closed__3; +LEAN_EXPORT lean_object* l_Lean_Meta_LibrarySearch_DiscrTreeFinder_mkImportFinder(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_LibrarySearch_0__Lean_Meta_LibrarySearch_IncDiscrTreeFinder_addImport___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Meta_LibrarySearch_DiscrTreeFinder_buildImportCache___spec__3___boxed(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_Meta_LibrarySearch_tryOnEach___spec__1(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* l_Lean_PersistentHashMap_foldlMAux___at_Lean_Meta_DiscrTree_getUnify___spec__11___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +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*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, uint8_t, double, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +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*); +static lean_object* l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearchLemma___lambda__1___closed__2; +LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_Meta_LibrarySearch_tryOnEach___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_EXPORT lean_object* l_Lean_PersistentHashMap_insertAtCollisionNodeAux___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_updateTree___spec__9(lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_IncDiscrTreeFinder_addImport___lambda__1___closed__2; +lean_object* l_Lean_registerTraceClass(lean_object*, uint8_t, lean_object*, lean_object*); +lean_object* l_Lean_registerInternalExceptionId(lean_object*, lean_object*); +lean_object* l_Lean_Meta_SavedState_restore(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Meta_LibrarySearch_DiscrTreeFinder_buildImportCache___spec__5(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_Lean_Meta_DiscrTree_insertCore___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_updateTree___spec__2(lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Meta_LibrarySearch_initFn____x40_Lean_Meta_Tactic_LibrarySearch___hyg_1378____closed__6; +static lean_object* l_Lean_Meta_LibrarySearch_instToStringDeclMod___closed__1; +static lean_object* l_Lean_Meta_LibrarySearch_abortSpeculation___rarg___closed__1; +LEAN_EXPORT lean_object* l_Lean_Meta_LibrarySearch_defaultCandidateFinder_unsafe__1(lean_object*); +lean_object* l_Lean_PersistentArray_append___rarg(lean_object*, lean_object*); +lean_object* l_Lean_profileitM___at_Lean_Meta_synthInstance_x3f___spec__16___rarg(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_1378____closed__2; +LEAN_EXPORT uint8_t l_Array_qsort_sort___at_Lean_Meta_LibrarySearch_DiscrTreeFinder_buildImportCache___spec__2___lambda__1(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_LibrarySearch_DeclMod_noConfusion(lean_object*); +static lean_object* l_Lean_Meta_LibrarySearch_instToStringDeclMod___closed__3; +LEAN_EXPORT lean_object* l_Array_binInsertM___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_updateTree___spec__12___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static size_t l_Lean_PersistentHashMap_findAux___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_updateTree___spec__4___closed__2; +static lean_object* l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___spec__2___lambda__5___closed__1; +static lean_object* l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearchLemma___lambda__1___closed__9; +static lean_object* l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearchLemma___lambda__1___closed__4; +LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_IncDiscrTreeFinder_addImport(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l_Lean_bombEmoji; +extern lean_object* l_Lean_checkEmoji; +LEAN_EXPORT lean_object* l_Lean_Meta_LibrarySearch_interleaveWith___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* lean_st_ref_get(lean_object*, lean_object*); +LEAN_EXPORT uint8_t l_Lean_Meta_LibrarySearch_instDecidableEqDeclMod(uint8_t, uint8_t); +lean_object* l_Lean_Meta_mkAppM(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static size_t l_Lean_PersistentHashMap_findAux___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_updateTree___spec__4___closed__1; +uint8_t l_List_isEmpty___rarg(lean_object*); +lean_object* lean_st_mk_ref(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_DiscrTree_0__Lean_Meta_DiscrTree_insertAux___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_updateTree___spec__10___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Meta_LibrarySearch_initFn____x40_Lean_Meta_Tactic_LibrarySearch___hyg_1378____closed__19; +lean_object* l_Lean_Name_num___override(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_LibrarySearch_IncDiscrTreeFinder_mkImportFinder___elambda__1___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_IncDiscrTreeFinder_addImport___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_qsort_sort___at_Lean_Meta_LibrarySearch_DiscrTreeFinder_buildImportCache___spec__2___boxed(lean_object*, lean_object*, lean_object*); +uint8_t l_Lean_Meta_DiscrTree_Key_lt(lean_object*, lean_object*); +lean_object* l_Lean_getRemainingHeartbeats(lean_object*, lean_object*, lean_object*); +static double l_Lean_withSeconds___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___spec__3___closed__1; +LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Meta_LibrarySearch_DiscrTreeFinder_buildImportCache___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_io_mono_nanos_now(lean_object*); +lean_object* l_Lean_Meta_getTransparency(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_LibrarySearch_initFn____x40_Lean_Meta_Tactic_LibrarySearch___hyg_1420_(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_LibrarySearch_instToStringDeclMod___boxed(lean_object*); +lean_object* l_Lean_MVarId_applySymm(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__8; +static lean_object* l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearchLemma___lambda__1___closed__5; +LEAN_EXPORT lean_object* l_Lean_Meta_LibrarySearch_DeclMod_noConfusion___rarg___lambda__1(lean_object*); +static lean_object* l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_IncDiscrTreeFinder_addImport___lambda__1___closed__4; +LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___lambda__3(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_qsort_sort___at_Lean_Meta_LibrarySearch_DiscrTreeFinder_buildImportCache___spec__2___closed__1; +static lean_object* l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearchLemma___lambda__1___closed__7; +LEAN_EXPORT lean_object* l_Lean_Meta_LibrarySearch_IncDiscrTreeFinder_mkImportFinder(lean_object*); +LEAN_EXPORT lean_object* l___private_Init_Data_Array_BinSearch_0__Array_binInsertAux___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_updateTree___spec__13___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_LibrarySearch_abortSpeculation___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___spec__1(lean_object*, lean_object*, lean_object*, lean_object*); +uint8_t lean_name_eq(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_instInhabitedLibSearchState; +LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_updateTree(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Name_str___override(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_Meta_LibrarySearch_tryOnEach___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_EXPORT lean_object* l_Lean_Meta_LibrarySearch_interleaveWith___rarg(lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Std_Range_forIn_x27_loop___at_Lean_Meta_LibrarySearch_interleaveWith___spec__1___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_Array_mapMUnsafe_map___at_Lean_Meta_LibrarySearch_DiscrTreeFinder_buildImportCache___spec__1(size_t, size_t, 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_Meta_LibrarySearch_IncDiscrTreeFinder_mkImportFinder___elambda__1___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_emoji___rarg___boxed(lean_object*); +lean_object* l___private_Init_Util_0__mkPanicMessageWithDecl(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_findAtAux___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_updateTree___spec__5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___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___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___lambda__6(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_DiscrTree_0__Lean_Meta_DiscrTree_insertVal_loop___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_updateTree___spec__11(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Meta_saveState___rarg(lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT uint8_t l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_ordDeclMod____x40_Lean_Meta_Tactic_LibrarySearch___hyg_233_(uint8_t, uint8_t); +LEAN_EXPORT lean_object* l_Lean_Meta_LibrarySearch_mkHeartbeatCheck___elambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_LibrarySearch_initFn____x40_Lean_Meta_Tactic_LibrarySearch___hyg_1533_(lean_object*); +static lean_object* l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___lambda__6___closed__1; +lean_object* l_Lean_Meta_mapForallTelescope(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Meta_DiscrTree_mkPath(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___lambda__2(lean_object*, 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_DiscrTreeFinder_updateTree___lambda__1___closed__1; +lean_object* lean_usize_to_nat(size_t); +lean_object* l_Array_append___rarg(lean_object*, lean_object*); +lean_object* l_Lean_Meta_LazyDiscrTree_InitEntry_fromExpr___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_LibrarySearch_instOrdDeclMod; +lean_object* l_Lean_MessageData_ofExpr(lean_object*); +lean_object* l_Lean_throwError___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_LibrarySearch_DeclMod_noConfusion___rarg(uint8_t, uint8_t, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_LibrarySearch_librarySearchSymm___lambda__1(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_LibrarySearch_DiscrTreeFinder_localMatches(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_Array_mapMUnsafe_map___at_Lean_Meta_LibrarySearch_interleaveWith___spec__3(lean_object*, lean_object*); +extern lean_object* l_Lean_crossEmoji; +lean_object* l_Array_extract___rarg(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Meta_LazyDiscrTree_InitEntry_mkSubEntry___rarg(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_abortSpeculation___rarg(lean_object*); +lean_object* l___private_Lean_Util_Trace_0__Lean_addTraceNode___at_Lean_Meta_processPostponed___spec__4(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Meta_DiscrTree_insertCore___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_updateTree___spec__2___closed__4; +LEAN_EXPORT lean_object* l_Lean_Meta_LibrarySearch_DeclMod_toCtorIdx(uint8_t); +LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___lambda__5(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_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +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*); +static lean_object* l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_IncDiscrTreeFinder_addImport___lambda__1___closed__1; +LEAN_EXPORT lean_object* l_Lean_Meta_LibrarySearch_solveByElim___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Meta_LibrarySearch_DiscrTreeFinder_buildImportCache___lambda__2___closed__3; +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*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_MonadExcept_ofExcept___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___lambda__5___boxed(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_Meta_DiscrTree_instInhabitedKey; +uint8_t l_Lean_Meta_allowCompletion(lean_object*, lean_object*); +static lean_object* l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___spec__2___lambda__3___closed__4; +lean_object* lean_string_length(lean_object*); +static lean_object* l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearchLemma___lambda__1___closed__10; +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___spec__2___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_EXPORT lean_object* l_Lean_PersistentHashMap_find_x3f___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_updateTree___spec__3(lean_object*, lean_object*); +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*); +static lean_object* l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearchLemma___lambda__1___closed__1; +LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_updateTree___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_LibrarySearch_setDefaultCandidateFinder(lean_object*, lean_object*); +uint8_t lean_nat_dec_lt(lean_object*, lean_object*); +lean_object* lean_float_to_string(double); +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_withTraceNode___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___spec__2___lambda__3___closed__2; +LEAN_EXPORT lean_object* l_Lean_Meta_LibrarySearch_initFn____x40_Lean_Meta_Tactic_LibrarySearch___hyg_1469_(lean_object*); +lean_object* l_Lean_Meta_DiscrTree_instInhabitedDiscrTree(lean_object*); +lean_object* l_Lean_Name_mkStr2(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_updateTree___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_Lean_Meta_LibrarySearch_initFn____x40_Lean_Meta_Tactic_LibrarySearch___hyg_1378____closed__7; +LEAN_EXPORT lean_object* l_Lean_Meta_LibrarySearch_interleaveWith(lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Meta_LibrarySearch_initFn____x40_Lean_Meta_Tactic_LibrarySearch___hyg_1420____closed__2; +static lean_object* l_Lean_Meta_LibrarySearch_DeclMod_noConfusion___rarg___closed__1; +lean_object* l_Lean_PersistentHashMap_mkEmptyEntries(lean_object*, lean_object*); +static lean_object* l_Lean_Meta_LibrarySearch_solveByElim___closed__1; +LEAN_EXPORT lean_object* l_Lean_Meta_LibrarySearch_instToStringDeclMod(uint8_t); +static lean_object* l_Lean_Meta_LibrarySearch_IncDiscrTreeFinder_mkImportFinder___elambda__1___closed__1; +static lean_object* l_Lean_Meta_LibrarySearch_initFn____x40_Lean_Meta_Tactic_LibrarySearch___hyg_1378____closed__16; +LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearchLemma___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___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___spec__2___lambda__4(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, uint8_t, double, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_throwError___at_Lean_Meta_Tactic_Backtrack_BacktrackConfig_discharge___default___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_LibrarySearch_DeclMod_noConfusion___rarg___boxed(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_findAux___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_updateTree___spec__4___boxed(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_LibrarySearch_librarySearchSymm(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Meta_DiscrTree_insertCore___rarg(lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Meta_LibrarySearch_setDefaultCandidateFinder___closed__1; +static lean_object* l_Lean_Meta_LibrarySearch_mkHeartbeatCheck___closed__1; +LEAN_EXPORT lean_object* l_Lean_Meta_LibrarySearch_solveByElim___lambda__2(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_LibrarySearch_initFn____x40_Lean_Meta_Tactic_LibrarySearch___hyg_1378____closed__13; +static lean_object* l_Lean_Meta_LibrarySearch_DiscrTreeFinder_buildImportCache___closed__1; +lean_object* lean_nat_sub(lean_object*, lean_object*); +lean_object* l_Array_insertAt_x21___rarg(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_LibrarySearch_instDecidableEqDeclMod___boxed(lean_object*, lean_object*); +lean_object* lean_nat_mul(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_emoji(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_LibrarySearch_solveByElim___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_LibrarySearch_initFn____x40_Lean_Meta_Tactic_LibrarySearch___hyg_1378____closed__1; +LEAN_EXPORT lean_object* l_Lean_Meta_LibrarySearch_mkHeartbeatCheck___elambda__2(lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearchLemma(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_PersistentHashMap_mkCollisionNode___rarg(lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearchLemma___lambda__1(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Meta_LibrarySearch_mkLibrarySearchLemma___closed__1; +lean_object* l_Lean_PersistentHashMap_mkEmptyEntriesArray(lean_object*, lean_object*); +lean_object* l_Lean_MVarId_apply(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux_traverse___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_updateTree___spec__8(size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Meta_LibrarySearch_DiscrTreeFinder_buildImportCache___spec__1___boxed(lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Meta_LibrarySearch_solveByElim___closed__5; +lean_object* l_Array_back___rarg(lean_object*, lean_object*); +static lean_object* l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_instInhabitedLibSearchState___closed__1; +static lean_object* l_Lean_Meta_LibrarySearch_DiscrTreeFinder_buildImportCache___lambda__2___closed__2; +static lean_object* l_Lean_Meta_LibrarySearch_mkLibrarySearchLemma___closed__2; +static lean_object* l_Lean_Meta_LibrarySearch_initFn____x40_Lean_Meta_Tactic_LibrarySearch___hyg_1378____closed__11; +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___spec__2(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +size_t lean_usize_sub(size_t, size_t); +LEAN_EXPORT lean_object* l_Lean_Meta_LibrarySearch_abortSpeculation___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___spec__1___rarg(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_LibrarySearch_abortSpeculation(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_MonadExcept_ofExcept___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___spec__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +size_t lean_usize_add(size_t, size_t); +LEAN_EXPORT lean_object* l_Lean_observing_x3f___at_Lean_Meta_LibrarySearch_librarySearchSymm___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___private_Lean_Meta_DiscrTree_0__Lean_Meta_DiscrTree_insertAux___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_updateTree___spec__10___closed__1; +LEAN_EXPORT lean_object* l_Lean_Meta_LibrarySearch_mkHeartbeatCheck___elambda__1(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__5(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* lean_array_uget(lean_object*, size_t); +extern lean_object* l_Lean_trace_profiler; +lean_object* l_Lean_Meta_LazyDiscrTree_getMatch___rarg(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_1378____closed__17; +static lean_object* l_Lean_Meta_LibrarySearch_initFn____x40_Lean_Meta_Tactic_LibrarySearch___hyg_1378____closed__20; +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_updateTree___spec__7___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* lean_st_ref_set(lean_object*, 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___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearchLemma___lambda__1___closed__3; +LEAN_EXPORT uint8_t l_Lean_Meta_LibrarySearch_isAbortSpeculation(lean_object*); +LEAN_EXPORT lean_object* l_Std_Range_forIn_x27_loop___at_Lean_Meta_LibrarySearch_interleaveWith___spec__1___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*, lean_object*); +static lean_object* l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___lambda__5___closed__1; +lean_object* l_Lean_Expr_getAppFnArgs(lean_object*); +lean_object* l_Lean_Meta_SolveByElim_mkAssumptionSet(uint8_t, uint8_t, 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_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearchLemma___lambda__2(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___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_IncDiscrTreeFinder_constantsPerTask; +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___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_updateTree___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_array_get_size(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_LibrarySearch_DeclMod_toCtorIdx___boxed(lean_object*); +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_EXPORT lean_object* l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearchLemma___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Meta_LibrarySearch_DiscrTreeFinder_buildImportCache___closed__2; +uint8_t lean_nat_dec_le(lean_object*, lean_object*); +uint8_t lean_usize_dec_lt(size_t, size_t); +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Meta_LibrarySearch_interleaveWith___spec__2(lean_object*, lean_object*); +static lean_object* l_Lean_Meta_LibrarySearch_initFn____x40_Lean_Meta_Tactic_LibrarySearch___hyg_1378____closed__14; +lean_object* lean_nat_add(lean_object*, lean_object*); +lean_object* l_Lean_PersistentHashMap_getCollisionNodeSize___rarg(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_LibrarySearch_mkLibrarySearchLemma___boxed(lean_object*, 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_librarySearch_x27___lambda__2___closed__1; +uint8_t l_Lean_Exception_isRuntime(lean_object*); +static lean_object* l_Lean_Meta_LibrarySearch_solveByElim___lambda__3___closed__1; +lean_object* l_Lean_Meta_DiscrTree_getMatch___rarg(lean_object*, lean_object*, 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_IncDiscrTreeFinder_addImport___lambda__1___closed__3; +LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearchEmoji(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_LibrarySearch_DiscrTreeFinder_buildImportCache(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Meta_LibrarySearch_interleaveWith___spec__3___rarg(lean_object*, size_t, size_t, lean_object*); +lean_object* l_Lean_Meta_mkConstWithFreshMVarLevels(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_abortSpeculationId; +LEAN_EXPORT lean_object* l_Array_binInsertM___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_updateTree___spec__12(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_AssocList_foldlM___at_Lean_Meta_LibrarySearch_DiscrTreeFinder_buildImportCache___spec__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_LibrarySearch_tryOnEach(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*); +lean_object* l_Lean_MessageData_ofName(lean_object*); +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux_traverse___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_updateTree___spec__8___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* lean_array_get(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_getMaxHeartbeats(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_LibrarySearch_mkHeartbeatCheck___elambda__2___rarg(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_LibrarySearch_IncDiscrTreeFinder_mkImportFinder___elambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_ordDeclMod____x40_Lean_Meta_Tactic_LibrarySearch___hyg_233____boxed(lean_object*, lean_object*); +uint64_t l_Lean_Meta_DiscrTree_Key_hash(lean_object*); +LEAN_EXPORT uint8_t l_Lean_Meta_LibrarySearch_DeclMod_ofNat(lean_object*); +static lean_object* l_Lean_Meta_LibrarySearch_initFn____x40_Lean_Meta_Tactic_LibrarySearch___hyg_1378____closed__9; +LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_LibSearchState_default; +size_t lean_usize_land(size_t, size_t); +static lean_object* l_Lean_Meta_LibrarySearch_initFn____x40_Lean_Meta_Tactic_LibrarySearch___hyg_1378____closed__8; +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*); +uint8_t l_Array_isEmpty___rarg(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_LibrarySearch_solveByElim___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) { +_start: +{ +lean_object* x_8; lean_object* x_9; +x_8 = lean_box(0); +x_9 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_9, 0, x_8); +lean_ctor_set(x_9, 1, x_7); +return x_9; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_LibrarySearch_solveByElim___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) { +_start: +{ +uint8_t x_7; lean_object* x_8; lean_object* x_9; +x_7 = 0; +x_8 = lean_box(x_7); +x_9 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_9, 0, x_8); +lean_ctor_set(x_9, 1, x_6); +return x_9; +} +} +static lean_object* _init_l_Lean_Meta_LibrarySearch_solveByElim___lambda__3___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("failed", 6); +return x_1; +} +} +static lean_object* _init_l_Lean_Meta_LibrarySearch_solveByElim___lambda__3___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Meta_LibrarySearch_solveByElim___lambda__3___closed__1; +x_2 = l_Lean_stringToMessageData(x_1); +return x_2; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_LibrarySearch_solveByElim___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) { +_start: +{ +lean_object* x_7; lean_object* x_8; +x_7 = l_Lean_Meta_LibrarySearch_solveByElim___lambda__3___closed__2; +x_8 = l_Lean_throwError___at_Lean_Meta_Tactic_Backtrack_BacktrackConfig_discharge___default___spec__1(x_7, x_2, x_3, x_4, x_5, x_6); +return x_8; +} +} +static lean_object* _init_l_Lean_Meta_LibrarySearch_solveByElim___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Meta_LibrarySearch_solveByElim___lambda__1___boxed), 7, 0); +return x_1; +} +} +static lean_object* _init_l_Lean_Meta_LibrarySearch_solveByElim___closed__2() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Meta_LibrarySearch_solveByElim___lambda__2___boxed), 6, 0); +return x_1; +} +} +static lean_object* _init_l_Lean_Meta_LibrarySearch_solveByElim___closed__3() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Meta_LibrarySearch_solveByElim___lambda__3___boxed), 6, 0); +return x_1; +} +} +static lean_object* _init_l_Lean_Meta_LibrarySearch_solveByElim___closed__4() { +_start: +{ +uint8_t x_1; uint8_t x_2; uint8_t x_3; lean_object* x_4; +x_1 = 0; +x_2 = 1; +x_3 = 0; +x_4 = lean_alloc_ctor(0, 0, 4); +lean_ctor_set_uint8(x_4, 0, x_1); +lean_ctor_set_uint8(x_4, 1, x_2); +lean_ctor_set_uint8(x_4, 2, x_3); +lean_ctor_set_uint8(x_4, 3, x_2); +return x_4; +} +} +static lean_object* _init_l_Lean_Meta_LibrarySearch_solveByElim___closed__5() { +_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; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_LibrarySearch_solveByElim(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) { +_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; lean_object* x_17; lean_object* x_18; lean_object* x_19; uint8_t x_20; uint8_t x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; +x_10 = l_Lean_Meta_getTransparency(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_Lean_Meta_LibrarySearch_solveByElim___closed__1; +x_14 = l_Lean_Meta_LibrarySearch_solveByElim___closed__2; +x_15 = l_Lean_Meta_LibrarySearch_solveByElim___closed__3; +x_16 = 1; +x_17 = lean_alloc_ctor(0, 4, 1); +lean_ctor_set(x_17, 0, x_4); +lean_ctor_set(x_17, 1, x_13); +lean_ctor_set(x_17, 2, x_14); +lean_ctor_set(x_17, 3, x_15); +lean_ctor_set_uint8(x_17, sizeof(void*)*4, x_16); +x_18 = l_Lean_Meta_LibrarySearch_solveByElim___closed__4; +x_19 = lean_alloc_ctor(0, 2, 3); +lean_ctor_set(x_19, 0, x_17); +lean_ctor_set(x_19, 1, x_18); +x_20 = lean_unbox(x_11); +lean_dec(x_11); +lean_ctor_set_uint8(x_19, sizeof(void*)*2, x_20); +lean_ctor_set_uint8(x_19, sizeof(void*)*2 + 1, x_16); +lean_ctor_set_uint8(x_19, sizeof(void*)*2 + 2, x_2); +x_21 = 0; +x_22 = lean_alloc_ctor(0, 1, 3); +lean_ctor_set(x_22, 0, x_19); +lean_ctor_set_uint8(x_22, sizeof(void*)*1, x_16); +lean_ctor_set_uint8(x_22, sizeof(void*)*1 + 1, x_16); +lean_ctor_set_uint8(x_22, sizeof(void*)*1 + 2, x_21); +x_23 = lean_box(0); +x_24 = l_Lean_Meta_LibrarySearch_solveByElim___closed__5; +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +x_25 = l_Lean_Meta_SolveByElim_mkAssumptionSet(x_21, x_21, x_23, x_23, x_24, x_5, x_6, x_7, x_8, x_12); +if (lean_obj_tag(x_25) == 0) +{ +lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; uint8_t x_30; +x_26 = lean_ctor_get(x_25, 0); +lean_inc(x_26); +x_27 = lean_ctor_get(x_25, 1); +lean_inc(x_27); +lean_dec(x_25); +x_28 = lean_ctor_get(x_26, 0); +lean_inc(x_28); +x_29 = lean_ctor_get(x_26, 1); +lean_inc(x_29); +lean_dec(x_26); +x_30 = l_List_isEmpty___rarg(x_1); +if (x_30 == 0) +{ +lean_object* x_31; lean_object* x_32; +x_31 = l_Lean_Meta_SolveByElim_SolveByElimConfig_requireUsingAll(x_22, x_1); +x_32 = l_Lean_Meta_SolveByElim_solveByElim(x_31, x_28, x_29, x_3, x_5, x_6, x_7, x_8, x_27); +return x_32; +} +else +{ +lean_object* x_33; +lean_dec(x_1); +x_33 = l_Lean_Meta_SolveByElim_solveByElim(x_22, x_28, x_29, x_3, x_5, x_6, x_7, x_8, x_27); +return x_33; +} +} +else +{ +uint8_t x_34; +lean_dec(x_22); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_3); +lean_dec(x_1); +x_34 = !lean_is_exclusive(x_25); +if (x_34 == 0) +{ +return x_25; +} +else +{ +lean_object* x_35; lean_object* x_36; lean_object* x_37; +x_35 = lean_ctor_get(x_25, 0); +x_36 = lean_ctor_get(x_25, 1); +lean_inc(x_36); +lean_inc(x_35); +lean_dec(x_25); +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; +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_LibrarySearch_solveByElim___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) { +_start: +{ +lean_object* x_8; +x_8 = l_Lean_Meta_LibrarySearch_solveByElim___lambda__1(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); +lean_dec(x_2); +lean_dec(x_1); +return x_8; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_LibrarySearch_solveByElim___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) { +_start: +{ +lean_object* x_7; +x_7 = l_Lean_Meta_LibrarySearch_solveByElim___lambda__2(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); +lean_dec(x_1); +return x_7; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_LibrarySearch_solveByElim___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) { +_start: +{ +lean_object* x_7; +x_7 = l_Lean_Meta_LibrarySearch_solveByElim___lambda__3(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); +lean_dec(x_1); +return x_7; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_LibrarySearch_solveByElim___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: +{ +uint8_t x_10; lean_object* x_11; +x_10 = lean_unbox(x_2); +lean_dec(x_2); +x_11 = l_Lean_Meta_LibrarySearch_solveByElim(x_1, x_10, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +return x_11; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_LibrarySearch_DeclMod_toCtorIdx(uint8_t x_1) { +_start: +{ +switch (x_1) { +case 0: +{ +lean_object* x_2; +x_2 = lean_unsigned_to_nat(0u); +return x_2; +} +case 1: +{ +lean_object* x_3; +x_3 = lean_unsigned_to_nat(1u); +return x_3; +} +default: +{ +lean_object* x_4; +x_4 = lean_unsigned_to_nat(2u); +return x_4; +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_LibrarySearch_DeclMod_toCtorIdx___boxed(lean_object* x_1) { +_start: +{ +uint8_t x_2; lean_object* x_3; +x_2 = lean_unbox(x_1); +lean_dec(x_1); +x_3 = l_Lean_Meta_LibrarySearch_DeclMod_toCtorIdx(x_2); +return x_3; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_LibrarySearch_DeclMod_noConfusion___rarg___lambda__1(lean_object* x_1) { +_start: +{ +lean_inc(x_1); +return x_1; +} +} +static lean_object* _init_l_Lean_Meta_LibrarySearch_DeclMod_noConfusion___rarg___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Meta_LibrarySearch_DeclMod_noConfusion___rarg___lambda__1___boxed), 1, 0); +return x_1; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_LibrarySearch_DeclMod_noConfusion___rarg(uint8_t x_1, uint8_t x_2, lean_object* x_3) { +_start: +{ +lean_object* x_4; +x_4 = l_Lean_Meta_LibrarySearch_DeclMod_noConfusion___rarg___closed__1; +return x_4; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_LibrarySearch_DeclMod_noConfusion(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = lean_alloc_closure((void*)(l_Lean_Meta_LibrarySearch_DeclMod_noConfusion___rarg___boxed), 3, 0); +return x_2; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_LibrarySearch_DeclMod_noConfusion___rarg___lambda__1___boxed(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = l_Lean_Meta_LibrarySearch_DeclMod_noConfusion___rarg___lambda__1(x_1); +lean_dec(x_1); +return x_2; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_LibrarySearch_DeclMod_noConfusion___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +uint8_t x_4; uint8_t x_5; lean_object* x_6; +x_4 = lean_unbox(x_1); +lean_dec(x_1); +x_5 = lean_unbox(x_2); +lean_dec(x_2); +x_6 = l_Lean_Meta_LibrarySearch_DeclMod_noConfusion___rarg(x_4, x_5, x_3); +return x_6; +} +} +LEAN_EXPORT uint8_t l_Lean_Meta_LibrarySearch_DeclMod_ofNat(lean_object* x_1) { +_start: +{ +lean_object* x_2; uint8_t x_3; +x_2 = lean_unsigned_to_nat(1u); +x_3 = lean_nat_dec_le(x_2, x_1); +if (x_3 == 0) +{ +uint8_t x_4; +x_4 = 0; +return x_4; +} +else +{ +uint8_t x_5; +x_5 = lean_nat_dec_eq(x_1, x_2); +if (x_5 == 0) +{ +uint8_t x_6; +x_6 = 2; +return x_6; +} +else +{ +uint8_t x_7; +x_7 = 1; +return x_7; +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_LibrarySearch_DeclMod_ofNat___boxed(lean_object* x_1) { +_start: +{ +uint8_t x_2; lean_object* x_3; +x_2 = l_Lean_Meta_LibrarySearch_DeclMod_ofNat(x_1); +lean_dec(x_1); +x_3 = lean_box(x_2); +return x_3; +} +} +LEAN_EXPORT uint8_t l_Lean_Meta_LibrarySearch_instDecidableEqDeclMod(uint8_t x_1, uint8_t x_2) { +_start: +{ +lean_object* x_3; lean_object* x_4; uint8_t x_5; +x_3 = l_Lean_Meta_LibrarySearch_DeclMod_toCtorIdx(x_1); +x_4 = l_Lean_Meta_LibrarySearch_DeclMod_toCtorIdx(x_2); +x_5 = lean_nat_dec_eq(x_3, x_4); +lean_dec(x_4); +lean_dec(x_3); +return x_5; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_LibrarySearch_instDecidableEqDeclMod___boxed(lean_object* x_1, lean_object* x_2) { +_start: +{ +uint8_t x_3; uint8_t x_4; uint8_t x_5; lean_object* x_6; +x_3 = lean_unbox(x_1); +lean_dec(x_1); +x_4 = lean_unbox(x_2); +lean_dec(x_2); +x_5 = l_Lean_Meta_LibrarySearch_instDecidableEqDeclMod(x_3, x_4); +x_6 = lean_box(x_5); +return x_6; +} +} +static uint8_t _init_l_Lean_Meta_LibrarySearch_instInhabitedDeclMod() { +_start: +{ +uint8_t x_1; +x_1 = 0; +return x_1; +} +} +LEAN_EXPORT uint8_t l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_ordDeclMod____x40_Lean_Meta_Tactic_LibrarySearch___hyg_233_(uint8_t x_1, uint8_t x_2) { +_start: +{ +switch (x_1) { +case 0: +{ +lean_object* x_3; +x_3 = lean_box(x_2); +if (lean_obj_tag(x_3) == 0) +{ +uint8_t x_4; +x_4 = 1; +return x_4; +} +else +{ +uint8_t x_5; +lean_dec(x_3); +x_5 = 0; +return x_5; +} +} +case 1: +{ +switch (x_2) { +case 0: +{ +uint8_t x_6; +x_6 = 2; +return x_6; +} +case 1: +{ +uint8_t x_7; +x_7 = 1; +return x_7; +} +default: +{ +uint8_t x_8; +x_8 = 0; +return x_8; +} +} +} +default: +{ +lean_object* x_9; +x_9 = lean_box(x_2); +if (lean_obj_tag(x_9) == 2) +{ +uint8_t x_10; +x_10 = 1; +return x_10; +} +else +{ +uint8_t x_11; +lean_dec(x_9); +x_11 = 2; +return x_11; +} +} +} +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_ordDeclMod____x40_Lean_Meta_Tactic_LibrarySearch___hyg_233____boxed(lean_object* x_1, lean_object* x_2) { +_start: +{ +uint8_t x_3; uint8_t x_4; uint8_t x_5; lean_object* x_6; +x_3 = lean_unbox(x_1); +lean_dec(x_1); +x_4 = lean_unbox(x_2); +lean_dec(x_2); +x_5 = l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_ordDeclMod____x40_Lean_Meta_Tactic_LibrarySearch___hyg_233_(x_3, x_4); +x_6 = lean_box(x_5); +return x_6; +} +} +static lean_object* _init_l_Lean_Meta_LibrarySearch_instOrdDeclMod___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_ordDeclMod____x40_Lean_Meta_Tactic_LibrarySearch___hyg_233____boxed), 2, 0); +return x_1; +} +} +static lean_object* _init_l_Lean_Meta_LibrarySearch_instOrdDeclMod() { +_start: +{ +lean_object* x_1; +x_1 = l_Lean_Meta_LibrarySearch_instOrdDeclMod___closed__1; +return x_1; +} +} +static lean_object* _init_l_Lean_Meta_LibrarySearch_instToStringDeclMod___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("", 0); +return x_1; +} +} +static lean_object* _init_l_Lean_Meta_LibrarySearch_instToStringDeclMod___closed__2() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("mp", 2); +return x_1; +} +} +static lean_object* _init_l_Lean_Meta_LibrarySearch_instToStringDeclMod___closed__3() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("mpr", 3); +return x_1; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_LibrarySearch_instToStringDeclMod(uint8_t x_1) { +_start: +{ +switch (x_1) { +case 0: +{ +lean_object* x_2; +x_2 = l_Lean_Meta_LibrarySearch_instToStringDeclMod___closed__1; +return x_2; +} +case 1: +{ +lean_object* x_3; +x_3 = l_Lean_Meta_LibrarySearch_instToStringDeclMod___closed__2; +return x_3; +} +default: +{ +lean_object* x_4; +x_4 = l_Lean_Meta_LibrarySearch_instToStringDeclMod___closed__3; +return x_4; +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_LibrarySearch_instToStringDeclMod___boxed(lean_object* x_1) { +_start: +{ +uint8_t x_2; lean_object* x_3; +x_2 = lean_unbox(x_1); +lean_dec(x_1); +x_3 = l_Lean_Meta_LibrarySearch_instToStringDeclMod(x_2); +return x_3; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_addPath___rarg(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_11; lean_object* x_12; +x_11 = 0; +x_12 = l_Lean_Meta_DiscrTree_mkPath(x_4, x_2, x_11, x_6, x_7, x_8, x_9, x_10); +if (lean_obj_tag(x_12) == 0) +{ +uint8_t x_13; +x_13 = !lean_is_exclusive(x_12); +if (x_13 == 0) +{ +lean_object* x_14; lean_object* x_15; +x_14 = lean_ctor_get(x_12, 0); +x_15 = l_Lean_Meta_DiscrTree_insertCore___rarg(x_1, x_3, x_14, x_5); +lean_ctor_set(x_12, 0, x_15); +return x_12; +} +else +{ +lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; +x_16 = lean_ctor_get(x_12, 0); +x_17 = lean_ctor_get(x_12, 1); +lean_inc(x_17); +lean_inc(x_16); +lean_dec(x_12); +x_18 = l_Lean_Meta_DiscrTree_insertCore___rarg(x_1, x_3, x_16, x_5); +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 +{ +uint8_t x_20; +lean_dec(x_5); +lean_dec(x_3); +lean_dec(x_1); +x_20 = !lean_is_exclusive(x_12); +if (x_20 == 0) +{ +return x_12; +} +else +{ +lean_object* x_21; lean_object* x_22; lean_object* x_23; +x_21 = lean_ctor_get(x_12, 0); +x_22 = lean_ctor_get(x_12, 1); +lean_inc(x_22); +lean_inc(x_21); +lean_dec(x_12); +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; +} +} +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_addPath(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = lean_alloc_closure((void*)(l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_addPath___rarg), 10, 0); +return x_2; +} +} +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_findAtAux___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_updateTree___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_6; uint8_t x_7; +x_6 = lean_array_get_size(x_1); +x_7 = lean_nat_dec_lt(x_4, x_6); +lean_dec(x_6); +if (x_7 == 0) +{ +lean_object* x_8; +lean_dec(x_4); +x_8 = lean_box(0); +return x_8; +} +else +{ +lean_object* x_9; uint8_t x_10; +x_9 = lean_array_fget(x_1, x_4); +x_10 = l___private_Lean_Meta_DiscrTreeTypes_0__Lean_Meta_DiscrTree_beqKey____x40_Lean_Meta_DiscrTreeTypes___hyg_99_(x_5, x_9); +lean_dec(x_9); +if (x_10 == 0) +{ +lean_object* x_11; lean_object* x_12; +x_11 = lean_unsigned_to_nat(1u); +x_12 = lean_nat_add(x_4, x_11); +lean_dec(x_4); +x_3 = lean_box(0); +x_4 = x_12; +goto _start; +} +else +{ +lean_object* x_14; lean_object* x_15; +x_14 = lean_array_fget(x_2, x_4); +lean_dec(x_4); +x_15 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_15, 0, x_14); +return x_15; +} +} +} +} +static size_t _init_l_Lean_PersistentHashMap_findAux___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_updateTree___spec__4___closed__1() { +_start: +{ +size_t x_1; size_t x_2; size_t x_3; +x_1 = 1; +x_2 = 5; +x_3 = lean_usize_shift_left(x_1, x_2); +return x_3; +} +} +static size_t _init_l_Lean_PersistentHashMap_findAux___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_updateTree___spec__4___closed__2() { +_start: +{ +size_t x_1; size_t x_2; size_t x_3; +x_1 = 1; +x_2 = l_Lean_PersistentHashMap_findAux___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_updateTree___spec__4___closed__1; +x_3 = lean_usize_sub(x_2, x_1); +return x_3; +} +} +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_findAux___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_updateTree___spec__4(lean_object* x_1, size_t x_2, lean_object* x_3) { +_start: +{ +if (lean_obj_tag(x_1) == 0) +{ +lean_object* x_4; size_t x_5; size_t x_6; size_t x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; +x_4 = lean_ctor_get(x_1, 0); +lean_inc(x_4); +lean_dec(x_1); +x_5 = 5; +x_6 = l_Lean_PersistentHashMap_findAux___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_updateTree___spec__4___closed__2; +x_7 = lean_usize_land(x_2, x_6); +x_8 = lean_usize_to_nat(x_7); +x_9 = lean_box(2); +x_10 = lean_array_get(x_9, x_4, x_8); +lean_dec(x_8); +lean_dec(x_4); +switch (lean_obj_tag(x_10)) { +case 0: +{ +lean_object* x_11; lean_object* x_12; uint8_t x_13; +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___private_Lean_Meta_DiscrTreeTypes_0__Lean_Meta_DiscrTree_beqKey____x40_Lean_Meta_DiscrTreeTypes___hyg_99_(x_3, x_11); +lean_dec(x_11); +if (x_13 == 0) +{ +lean_object* x_14; +lean_dec(x_12); +x_14 = lean_box(0); +return x_14; +} +else +{ +lean_object* x_15; +x_15 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_15, 0, x_12); +return x_15; +} +} +case 1: +{ +lean_object* x_16; size_t x_17; +x_16 = lean_ctor_get(x_10, 0); +lean_inc(x_16); +lean_dec(x_10); +x_17 = lean_usize_shift_right(x_2, x_5); +x_1 = x_16; +x_2 = x_17; +goto _start; +} +default: +{ +lean_object* x_19; +x_19 = lean_box(0); +return x_19; +} +} +} +else +{ +lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; +x_20 = lean_ctor_get(x_1, 0); +lean_inc(x_20); +x_21 = lean_ctor_get(x_1, 1); +lean_inc(x_21); +lean_dec(x_1); +x_22 = lean_unsigned_to_nat(0u); +x_23 = l_Lean_PersistentHashMap_findAtAux___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_updateTree___spec__5(x_20, x_21, lean_box(0), x_22, x_3); +lean_dec(x_21); +lean_dec(x_20); +return x_23; +} +} +} +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_find_x3f___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_updateTree___spec__3(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; uint64_t x_4; size_t x_5; lean_object* x_6; +x_3 = lean_ctor_get(x_1, 0); +lean_inc(x_3); +lean_dec(x_1); +x_4 = l_Lean_Meta_DiscrTree_Key_hash(x_2); +x_5 = lean_uint64_to_usize(x_4); +x_6 = l_Lean_PersistentHashMap_findAux___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_updateTree___spec__4(x_3, x_5, x_2); +lean_dec(x_2); +return x_6; +} +} +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux_traverse___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_updateTree___spec__8(size_t 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; +x_7 = lean_array_get_size(x_2); +x_8 = lean_nat_dec_lt(x_5, x_7); +lean_dec(x_7); +if (x_8 == 0) +{ +lean_dec(x_5); +return x_6; +} +else +{ +lean_object* x_9; lean_object* x_10; uint64_t x_11; size_t x_12; size_t x_13; size_t x_14; size_t x_15; size_t x_16; size_t x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; +x_9 = lean_array_fget(x_2, x_5); +x_10 = lean_array_fget(x_3, x_5); +x_11 = l_Lean_Meta_DiscrTree_Key_hash(x_9); +x_12 = lean_uint64_to_usize(x_11); +x_13 = 1; +x_14 = lean_usize_sub(x_1, x_13); +x_15 = 5; +x_16 = lean_usize_mul(x_15, x_14); +x_17 = lean_usize_shift_right(x_12, x_16); +x_18 = lean_unsigned_to_nat(1u); +x_19 = lean_nat_add(x_5, x_18); +lean_dec(x_5); +x_20 = l_Lean_PersistentHashMap_insertAux___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_updateTree___spec__7(x_6, x_17, x_1, x_9, x_10); +x_4 = lean_box(0); +x_5 = x_19; +x_6 = x_20; +goto _start; +} +} +} +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAtCollisionNodeAux___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_updateTree___spec__9(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; lean_object* x_7; uint8_t x_8; +x_5 = lean_ctor_get(x_1, 0); +lean_inc(x_5); +x_6 = lean_ctor_get(x_1, 1); +lean_inc(x_6); +x_7 = lean_array_get_size(x_5); +x_8 = lean_nat_dec_lt(x_2, x_7); +lean_dec(x_7); +if (x_8 == 0) +{ +uint8_t x_9; +lean_dec(x_2); +x_9 = !lean_is_exclusive(x_1); +if (x_9 == 0) +{ +lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; +x_10 = lean_ctor_get(x_1, 1); +lean_dec(x_10); +x_11 = lean_ctor_get(x_1, 0); +lean_dec(x_11); +x_12 = lean_array_push(x_5, x_3); +x_13 = lean_array_push(x_6, x_4); +lean_ctor_set(x_1, 1, x_13); +lean_ctor_set(x_1, 0, x_12); +return x_1; +} +else +{ +lean_object* x_14; lean_object* x_15; lean_object* x_16; +lean_dec(x_1); +x_14 = lean_array_push(x_5, x_3); +x_15 = lean_array_push(x_6, x_4); +x_16 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_16, 0, x_14); +lean_ctor_set(x_16, 1, x_15); +return x_16; +} +} +else +{ +lean_object* x_17; uint8_t x_18; +x_17 = lean_array_fget(x_5, x_2); +x_18 = l___private_Lean_Meta_DiscrTreeTypes_0__Lean_Meta_DiscrTree_beqKey____x40_Lean_Meta_DiscrTreeTypes___hyg_99_(x_3, x_17); +lean_dec(x_17); +if (x_18 == 0) +{ +lean_object* x_19; lean_object* x_20; +lean_dec(x_6); +lean_dec(x_5); +x_19 = lean_unsigned_to_nat(1u); +x_20 = lean_nat_add(x_2, x_19); +lean_dec(x_2); +x_2 = x_20; +goto _start; +} +else +{ +uint8_t x_22; +x_22 = !lean_is_exclusive(x_1); +if (x_22 == 0) +{ +lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; +x_23 = lean_ctor_get(x_1, 1); +lean_dec(x_23); +x_24 = lean_ctor_get(x_1, 0); +lean_dec(x_24); +x_25 = lean_array_fset(x_5, x_2, x_3); +x_26 = lean_array_fset(x_6, x_2, x_4); +lean_dec(x_2); +lean_ctor_set(x_1, 1, x_26); +lean_ctor_set(x_1, 0, x_25); +return x_1; +} +else +{ +lean_object* x_27; lean_object* x_28; lean_object* x_29; +lean_dec(x_1); +x_27 = lean_array_fset(x_5, x_2, x_3); +x_28 = lean_array_fset(x_6, x_2, x_4); +lean_dec(x_2); +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; +} +} +} +} +} +static lean_object* _init_l_Lean_PersistentHashMap_insertAux___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_updateTree___spec__7___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = l_Lean_PersistentHashMap_mkEmptyEntries(lean_box(0), lean_box(0)); +return x_1; +} +} +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_updateTree___spec__7(lean_object* x_1, size_t x_2, size_t x_3, lean_object* x_4, lean_object* x_5) { +_start: +{ +if (lean_obj_tag(x_1) == 0) +{ +uint8_t x_6; +x_6 = !lean_is_exclusive(x_1); +if (x_6 == 0) +{ +lean_object* x_7; size_t x_8; size_t x_9; size_t x_10; size_t x_11; lean_object* x_12; lean_object* x_13; uint8_t x_14; +x_7 = lean_ctor_get(x_1, 0); +x_8 = 1; +x_9 = 5; +x_10 = l_Lean_PersistentHashMap_findAux___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_updateTree___spec__4___closed__2; +x_11 = lean_usize_land(x_2, x_10); +x_12 = lean_usize_to_nat(x_11); +x_13 = lean_array_get_size(x_7); +x_14 = lean_nat_dec_lt(x_12, x_13); +lean_dec(x_13); +if (x_14 == 0) +{ +lean_dec(x_12); +lean_dec(x_5); +lean_dec(x_4); +return x_1; +} +else +{ +lean_object* x_15; lean_object* x_16; lean_object* x_17; +x_15 = lean_array_fget(x_7, x_12); +x_16 = lean_box(0); +x_17 = lean_array_fset(x_7, x_12, x_16); +switch (lean_obj_tag(x_15)) { +case 0: +{ +uint8_t x_18; +x_18 = !lean_is_exclusive(x_15); +if (x_18 == 0) +{ +lean_object* x_19; lean_object* x_20; uint8_t x_21; +x_19 = lean_ctor_get(x_15, 0); +x_20 = lean_ctor_get(x_15, 1); +x_21 = l___private_Lean_Meta_DiscrTreeTypes_0__Lean_Meta_DiscrTree_beqKey____x40_Lean_Meta_DiscrTreeTypes___hyg_99_(x_4, x_19); +if (x_21 == 0) +{ +lean_object* x_22; lean_object* x_23; lean_object* x_24; +lean_free_object(x_15); +x_22 = l_Lean_PersistentHashMap_mkCollisionNode___rarg(x_19, x_20, x_4, x_5); +x_23 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_23, 0, x_22); +x_24 = lean_array_fset(x_17, x_12, x_23); +lean_dec(x_12); +lean_ctor_set(x_1, 0, x_24); +return x_1; +} +else +{ +lean_object* x_25; +lean_dec(x_20); +lean_dec(x_19); +lean_ctor_set(x_15, 1, x_5); +lean_ctor_set(x_15, 0, x_4); +x_25 = lean_array_fset(x_17, x_12, x_15); +lean_dec(x_12); +lean_ctor_set(x_1, 0, x_25); +return x_1; +} +} +else +{ +lean_object* x_26; lean_object* x_27; uint8_t x_28; +x_26 = lean_ctor_get(x_15, 0); +x_27 = lean_ctor_get(x_15, 1); +lean_inc(x_27); +lean_inc(x_26); +lean_dec(x_15); +x_28 = l___private_Lean_Meta_DiscrTreeTypes_0__Lean_Meta_DiscrTree_beqKey____x40_Lean_Meta_DiscrTreeTypes___hyg_99_(x_4, x_26); +if (x_28 == 0) +{ +lean_object* x_29; lean_object* x_30; lean_object* x_31; +x_29 = l_Lean_PersistentHashMap_mkCollisionNode___rarg(x_26, x_27, x_4, x_5); +x_30 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_30, 0, x_29); +x_31 = lean_array_fset(x_17, x_12, x_30); +lean_dec(x_12); +lean_ctor_set(x_1, 0, x_31); +return x_1; +} +else +{ +lean_object* x_32; lean_object* x_33; +lean_dec(x_27); +lean_dec(x_26); +x_32 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_32, 0, x_4); +lean_ctor_set(x_32, 1, x_5); +x_33 = lean_array_fset(x_17, x_12, x_32); +lean_dec(x_12); +lean_ctor_set(x_1, 0, x_33); +return x_1; +} +} +} +case 1: +{ +uint8_t x_34; +x_34 = !lean_is_exclusive(x_15); +if (x_34 == 0) +{ +lean_object* x_35; size_t x_36; size_t x_37; lean_object* x_38; lean_object* x_39; +x_35 = lean_ctor_get(x_15, 0); +x_36 = lean_usize_shift_right(x_2, x_9); +x_37 = lean_usize_add(x_3, x_8); +x_38 = l_Lean_PersistentHashMap_insertAux___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_updateTree___spec__7(x_35, x_36, x_37, x_4, x_5); +lean_ctor_set(x_15, 0, x_38); +x_39 = lean_array_fset(x_17, x_12, x_15); +lean_dec(x_12); +lean_ctor_set(x_1, 0, x_39); +return x_1; +} +else +{ +lean_object* x_40; size_t x_41; size_t x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; +x_40 = lean_ctor_get(x_15, 0); +lean_inc(x_40); +lean_dec(x_15); +x_41 = lean_usize_shift_right(x_2, x_9); +x_42 = lean_usize_add(x_3, x_8); +x_43 = l_Lean_PersistentHashMap_insertAux___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_updateTree___spec__7(x_40, x_41, x_42, x_4, x_5); +x_44 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_44, 0, x_43); +x_45 = lean_array_fset(x_17, x_12, x_44); +lean_dec(x_12); +lean_ctor_set(x_1, 0, x_45); +return x_1; +} +} +default: +{ +lean_object* x_46; lean_object* x_47; +x_46 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_46, 0, x_4); +lean_ctor_set(x_46, 1, x_5); +x_47 = lean_array_fset(x_17, x_12, x_46); +lean_dec(x_12); +lean_ctor_set(x_1, 0, x_47); +return x_1; +} +} +} +} +else +{ +lean_object* x_48; size_t x_49; size_t x_50; size_t x_51; size_t x_52; lean_object* x_53; lean_object* x_54; uint8_t x_55; +x_48 = lean_ctor_get(x_1, 0); +lean_inc(x_48); +lean_dec(x_1); +x_49 = 1; +x_50 = 5; +x_51 = l_Lean_PersistentHashMap_findAux___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_updateTree___spec__4___closed__2; +x_52 = lean_usize_land(x_2, x_51); +x_53 = lean_usize_to_nat(x_52); +x_54 = lean_array_get_size(x_48); +x_55 = lean_nat_dec_lt(x_53, x_54); +lean_dec(x_54); +if (x_55 == 0) +{ +lean_object* x_56; +lean_dec(x_53); +lean_dec(x_5); +lean_dec(x_4); +x_56 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_56, 0, x_48); +return x_56; +} +else +{ +lean_object* x_57; lean_object* x_58; lean_object* x_59; +x_57 = lean_array_fget(x_48, x_53); +x_58 = lean_box(0); +x_59 = lean_array_fset(x_48, x_53, x_58); +switch (lean_obj_tag(x_57)) { +case 0: +{ +lean_object* x_60; lean_object* x_61; lean_object* x_62; uint8_t x_63; +x_60 = lean_ctor_get(x_57, 0); +lean_inc(x_60); +x_61 = lean_ctor_get(x_57, 1); +lean_inc(x_61); +if (lean_is_exclusive(x_57)) { + lean_ctor_release(x_57, 0); + lean_ctor_release(x_57, 1); + x_62 = x_57; +} else { + lean_dec_ref(x_57); + x_62 = lean_box(0); +} +x_63 = l___private_Lean_Meta_DiscrTreeTypes_0__Lean_Meta_DiscrTree_beqKey____x40_Lean_Meta_DiscrTreeTypes___hyg_99_(x_4, x_60); +if (x_63 == 0) +{ +lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; +lean_dec(x_62); +x_64 = l_Lean_PersistentHashMap_mkCollisionNode___rarg(x_60, x_61, x_4, x_5); +x_65 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_65, 0, x_64); +x_66 = lean_array_fset(x_59, x_53, x_65); +lean_dec(x_53); +x_67 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_67, 0, x_66); +return x_67; +} +else +{ +lean_object* x_68; lean_object* x_69; lean_object* x_70; +lean_dec(x_61); +lean_dec(x_60); +if (lean_is_scalar(x_62)) { + x_68 = lean_alloc_ctor(0, 2, 0); +} else { + x_68 = x_62; +} +lean_ctor_set(x_68, 0, x_4); +lean_ctor_set(x_68, 1, x_5); +x_69 = lean_array_fset(x_59, x_53, x_68); +lean_dec(x_53); +x_70 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_70, 0, x_69); +return x_70; +} +} +case 1: +{ +lean_object* x_71; lean_object* x_72; size_t x_73; size_t x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; +x_71 = lean_ctor_get(x_57, 0); +lean_inc(x_71); +if (lean_is_exclusive(x_57)) { + lean_ctor_release(x_57, 0); + x_72 = x_57; +} else { + lean_dec_ref(x_57); + x_72 = lean_box(0); +} +x_73 = lean_usize_shift_right(x_2, x_50); +x_74 = lean_usize_add(x_3, x_49); +x_75 = l_Lean_PersistentHashMap_insertAux___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_updateTree___spec__7(x_71, x_73, x_74, x_4, x_5); +if (lean_is_scalar(x_72)) { + x_76 = lean_alloc_ctor(1, 1, 0); +} else { + x_76 = x_72; +} +lean_ctor_set(x_76, 0, x_75); +x_77 = lean_array_fset(x_59, x_53, x_76); +lean_dec(x_53); +x_78 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_78, 0, x_77); +return x_78; +} +default: +{ +lean_object* x_79; lean_object* x_80; lean_object* x_81; +x_79 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_79, 0, x_4); +lean_ctor_set(x_79, 1, x_5); +x_80 = lean_array_fset(x_59, x_53, x_79); +lean_dec(x_53); +x_81 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_81, 0, x_80); +return x_81; +} +} +} +} +} +else +{ +uint8_t x_82; +x_82 = !lean_is_exclusive(x_1); +if (x_82 == 0) +{ +lean_object* x_83; lean_object* x_84; size_t x_85; uint8_t x_86; +x_83 = lean_unsigned_to_nat(0u); +x_84 = l_Lean_PersistentHashMap_insertAtCollisionNodeAux___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_updateTree___spec__9(x_1, x_83, x_4, x_5); +x_85 = 7; +x_86 = lean_usize_dec_le(x_85, x_3); +if (x_86 == 0) +{ +lean_object* x_87; lean_object* x_88; uint8_t x_89; +x_87 = l_Lean_PersistentHashMap_getCollisionNodeSize___rarg(x_84); +x_88 = lean_unsigned_to_nat(4u); +x_89 = lean_nat_dec_lt(x_87, x_88); +lean_dec(x_87); +if (x_89 == 0) +{ +lean_object* x_90; lean_object* x_91; lean_object* x_92; lean_object* x_93; +x_90 = lean_ctor_get(x_84, 0); +lean_inc(x_90); +x_91 = lean_ctor_get(x_84, 1); +lean_inc(x_91); +lean_dec(x_84); +x_92 = l_Lean_PersistentHashMap_insertAux___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_updateTree___spec__7___closed__1; +x_93 = l_Lean_PersistentHashMap_insertAux_traverse___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_updateTree___spec__8(x_3, x_90, x_91, lean_box(0), x_83, x_92); +lean_dec(x_91); +lean_dec(x_90); +return x_93; +} +else +{ +return x_84; +} +} +else +{ +return x_84; +} +} +else +{ +lean_object* x_94; lean_object* x_95; lean_object* x_96; lean_object* x_97; lean_object* x_98; size_t x_99; uint8_t x_100; +x_94 = lean_ctor_get(x_1, 0); +x_95 = lean_ctor_get(x_1, 1); +lean_inc(x_95); +lean_inc(x_94); +lean_dec(x_1); +x_96 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_96, 0, x_94); +lean_ctor_set(x_96, 1, x_95); +x_97 = lean_unsigned_to_nat(0u); +x_98 = l_Lean_PersistentHashMap_insertAtCollisionNodeAux___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_updateTree___spec__9(x_96, x_97, x_4, x_5); +x_99 = 7; +x_100 = lean_usize_dec_le(x_99, x_3); +if (x_100 == 0) +{ +lean_object* x_101; lean_object* x_102; uint8_t x_103; +x_101 = l_Lean_PersistentHashMap_getCollisionNodeSize___rarg(x_98); +x_102 = lean_unsigned_to_nat(4u); +x_103 = lean_nat_dec_lt(x_101, x_102); +lean_dec(x_101); +if (x_103 == 0) +{ +lean_object* x_104; lean_object* x_105; lean_object* x_106; lean_object* x_107; +x_104 = lean_ctor_get(x_98, 0); +lean_inc(x_104); +x_105 = lean_ctor_get(x_98, 1); +lean_inc(x_105); +lean_dec(x_98); +x_106 = l_Lean_PersistentHashMap_insertAux___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_updateTree___spec__7___closed__1; +x_107 = l_Lean_PersistentHashMap_insertAux_traverse___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_updateTree___spec__8(x_3, x_104, x_105, lean_box(0), x_97, x_106); +lean_dec(x_105); +lean_dec(x_104); +return x_107; +} +else +{ +return x_98; +} +} +else +{ +return x_98; +} +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insert___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_updateTree___spec__6(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +uint8_t x_4; +x_4 = !lean_is_exclusive(x_1); +if (x_4 == 0) +{ +lean_object* x_5; lean_object* x_6; uint64_t x_7; size_t x_8; size_t x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; +x_5 = lean_ctor_get(x_1, 0); +x_6 = lean_ctor_get(x_1, 1); +x_7 = l_Lean_Meta_DiscrTree_Key_hash(x_2); +x_8 = lean_uint64_to_usize(x_7); +x_9 = 1; +x_10 = l_Lean_PersistentHashMap_insertAux___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_updateTree___spec__7(x_5, x_8, x_9, x_2, x_3); +x_11 = lean_unsigned_to_nat(1u); +x_12 = lean_nat_add(x_6, x_11); +lean_dec(x_6); +lean_ctor_set(x_1, 1, x_12); +lean_ctor_set(x_1, 0, x_10); +return x_1; +} +else +{ +lean_object* x_13; lean_object* x_14; uint64_t x_15; size_t x_16; size_t x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; +x_13 = lean_ctor_get(x_1, 0); +x_14 = lean_ctor_get(x_1, 1); +lean_inc(x_14); +lean_inc(x_13); +lean_dec(x_1); +x_15 = l_Lean_Meta_DiscrTree_Key_hash(x_2); +x_16 = lean_uint64_to_usize(x_15); +x_17 = 1; +x_18 = l_Lean_PersistentHashMap_insertAux___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_updateTree___spec__7(x_13, x_16, x_17, x_2, x_3); +x_19 = lean_unsigned_to_nat(1u); +x_20 = lean_nat_add(x_14, x_19); +lean_dec(x_14); +x_21 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_21, 0, x_18); +lean_ctor_set(x_21, 1, x_20); +return x_21; +} +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_DiscrTree_0__Lean_Meta_DiscrTree_insertVal_loop___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_updateTree___spec__11(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +lean_object* x_4; uint8_t x_5; +x_4 = lean_array_get_size(x_1); +x_5 = lean_nat_dec_lt(x_3, x_4); +lean_dec(x_4); +if (x_5 == 0) +{ +lean_object* x_6; +lean_dec(x_3); +x_6 = lean_array_push(x_1, x_2); +return x_6; +} +else +{ +lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; uint8_t x_12; +x_7 = lean_array_fget(x_1, x_3); +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_7, 0); +lean_inc(x_10); +x_11 = lean_ctor_get(x_7, 1); +lean_inc(x_11); +lean_dec(x_7); +x_12 = lean_name_eq(x_8, x_10); +lean_dec(x_10); +lean_dec(x_8); +if (x_12 == 0) +{ +lean_object* x_13; lean_object* x_14; +lean_dec(x_11); +lean_dec(x_9); +x_13 = lean_unsigned_to_nat(1u); +x_14 = lean_nat_add(x_3, x_13); +lean_dec(x_3); +x_3 = x_14; +goto _start; +} +else +{ +uint8_t x_16; uint8_t x_17; uint8_t x_18; +x_16 = lean_unbox(x_9); +lean_dec(x_9); +x_17 = lean_unbox(x_11); +lean_dec(x_11); +x_18 = l_Lean_Meta_LibrarySearch_instDecidableEqDeclMod(x_16, x_17); +if (x_18 == 0) +{ +lean_object* x_19; lean_object* x_20; +x_19 = lean_unsigned_to_nat(1u); +x_20 = lean_nat_add(x_3, x_19); +lean_dec(x_3); +x_3 = x_20; +goto _start; +} +else +{ +lean_object* x_22; +x_22 = lean_array_fset(x_1, x_3, x_2); +lean_dec(x_3); +return x_22; +} +} +} +} +} +LEAN_EXPORT lean_object* l___private_Init_Data_Array_BinSearch_0__Array_binInsertAux___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_updateTree___spec__13(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) { +_start: +{ +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; +x_9 = lean_nat_add(x_7, x_8); +x_10 = lean_unsigned_to_nat(2u); +x_11 = lean_nat_div(x_9, x_10); +lean_dec(x_9); +lean_inc(x_6); +x_12 = lean_array_get(x_6, x_5, x_11); +x_13 = lean_ctor_get(x_12, 0); +lean_inc(x_13); +lean_dec(x_12); +x_14 = lean_ctor_get(x_6, 0); +lean_inc(x_14); +x_15 = l_Lean_Meta_DiscrTree_Key_lt(x_13, x_14); +if (x_15 == 0) +{ +uint8_t x_16; +lean_dec(x_8); +x_16 = l_Lean_Meta_DiscrTree_Key_lt(x_14, x_13); +lean_dec(x_13); +lean_dec(x_14); +if (x_16 == 0) +{ +lean_object* x_17; uint8_t x_18; +lean_dec(x_7); +lean_dec(x_6); +x_17 = lean_array_get_size(x_5); +x_18 = lean_nat_dec_lt(x_11, x_17); +lean_dec(x_17); +if (x_18 == 0) +{ +lean_dec(x_11); +lean_dec(x_4); +lean_dec(x_2); +return x_5; +} +else +{ +lean_object* x_19; lean_object* x_20; lean_object* x_21; uint8_t x_22; +x_19 = lean_array_fget(x_5, x_11); +x_20 = lean_box(0); +x_21 = lean_array_fset(x_5, x_11, x_20); +x_22 = !lean_is_exclusive(x_19); +if (x_22 == 0) +{ +lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; +x_23 = lean_ctor_get(x_19, 1); +x_24 = lean_ctor_get(x_19, 0); +lean_dec(x_24); +x_25 = lean_unsigned_to_nat(1u); +x_26 = lean_nat_add(x_3, x_25); +x_27 = l___private_Lean_Meta_DiscrTree_0__Lean_Meta_DiscrTree_insertAux___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_updateTree___spec__10(x_1, x_2, x_26, x_23); +lean_dec(x_26); +lean_ctor_set(x_19, 1, x_27); +lean_ctor_set(x_19, 0, x_4); +x_28 = lean_array_fset(x_21, x_11, x_19); +lean_dec(x_11); +return x_28; +} +else +{ +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_29 = lean_ctor_get(x_19, 1); +lean_inc(x_29); +lean_dec(x_19); +x_30 = lean_unsigned_to_nat(1u); +x_31 = lean_nat_add(x_3, x_30); +x_32 = l___private_Lean_Meta_DiscrTree_0__Lean_Meta_DiscrTree_insertAux___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_updateTree___spec__10(x_1, x_2, x_31, x_29); +lean_dec(x_31); +x_33 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_33, 0, x_4); +lean_ctor_set(x_33, 1, x_32); +x_34 = lean_array_fset(x_21, x_11, x_33); +lean_dec(x_11); +return x_34; +} +} +} +else +{ +x_8 = x_11; +goto _start; +} +} +else +{ +uint8_t x_36; +lean_dec(x_14); +lean_dec(x_13); +x_36 = lean_nat_dec_eq(x_11, x_7); +if (x_36 == 0) +{ +lean_dec(x_7); +x_7 = x_11; +goto _start; +} +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_dec(x_11); +lean_dec(x_8); +lean_dec(x_6); +x_38 = lean_unsigned_to_nat(1u); +x_39 = lean_nat_add(x_3, x_38); +x_40 = l___private_Lean_Meta_DiscrTree_0__Lean_Meta_DiscrTree_createNodes___rarg(x_1, x_2, x_39); +lean_dec(x_39); +x_41 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_41, 0, x_4); +lean_ctor_set(x_41, 1, x_40); +x_42 = lean_nat_add(x_7, x_38); +lean_dec(x_7); +x_43 = l_Array_insertAt_x21___rarg(x_5, x_42, x_41); +lean_dec(x_42); +return x_43; +} +} +} +} +LEAN_EXPORT lean_object* l_Array_binInsertM___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_updateTree___spec__12(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_7; +x_7 = l_Array_isEmpty___rarg(x_5); +if (x_7 == 0) +{ +lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; uint8_t x_12; +x_8 = lean_unsigned_to_nat(0u); +lean_inc(x_6); +x_9 = lean_array_get(x_6, x_5, x_8); +x_10 = lean_ctor_get(x_6, 0); +lean_inc(x_10); +x_11 = lean_ctor_get(x_9, 0); +lean_inc(x_11); +lean_dec(x_9); +x_12 = l_Lean_Meta_DiscrTree_Key_lt(x_10, x_11); +if (x_12 == 0) +{ +uint8_t x_13; +x_13 = l_Lean_Meta_DiscrTree_Key_lt(x_11, x_10); +lean_dec(x_11); +if (x_13 == 0) +{ +lean_object* x_14; uint8_t x_15; +lean_dec(x_10); +lean_dec(x_6); +x_14 = lean_array_get_size(x_5); +x_15 = lean_nat_dec_lt(x_8, x_14); +lean_dec(x_14); +if (x_15 == 0) +{ +lean_dec(x_4); +lean_dec(x_2); +return x_5; +} +else +{ +lean_object* x_16; lean_object* x_17; lean_object* x_18; uint8_t x_19; +x_16 = lean_array_fget(x_5, x_8); +x_17 = lean_box(0); +x_18 = lean_array_fset(x_5, x_8, x_17); +x_19 = !lean_is_exclusive(x_16); +if (x_19 == 0) +{ +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_20 = lean_ctor_get(x_16, 1); +x_21 = lean_ctor_get(x_16, 0); +lean_dec(x_21); +x_22 = lean_unsigned_to_nat(1u); +x_23 = lean_nat_add(x_3, x_22); +x_24 = l___private_Lean_Meta_DiscrTree_0__Lean_Meta_DiscrTree_insertAux___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_updateTree___spec__10(x_1, x_2, x_23, x_20); +lean_dec(x_23); +lean_ctor_set(x_16, 1, x_24); +lean_ctor_set(x_16, 0, x_4); +x_25 = lean_array_fset(x_18, x_8, x_16); +return x_25; +} +else +{ +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_26 = lean_ctor_get(x_16, 1); +lean_inc(x_26); +lean_dec(x_16); +x_27 = lean_unsigned_to_nat(1u); +x_28 = lean_nat_add(x_3, x_27); +x_29 = l___private_Lean_Meta_DiscrTree_0__Lean_Meta_DiscrTree_insertAux___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_updateTree___spec__10(x_1, x_2, x_28, x_26); +lean_dec(x_28); +x_30 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_30, 0, x_4); +lean_ctor_set(x_30, 1, x_29); +x_31 = lean_array_fset(x_18, x_8, x_30); +return x_31; +} +} +} +else +{ +lean_object* x_32; lean_object* x_33; uint8_t x_34; +lean_inc(x_6); +x_32 = l_Array_back___rarg(x_6, x_5); +x_33 = lean_ctor_get(x_32, 0); +lean_inc(x_33); +lean_dec(x_32); +x_34 = l_Lean_Meta_DiscrTree_Key_lt(x_33, x_10); +if (x_34 == 0) +{ +uint8_t x_35; +x_35 = l_Lean_Meta_DiscrTree_Key_lt(x_10, x_33); +lean_dec(x_33); +lean_dec(x_10); +if (x_35 == 0) +{ +lean_object* x_36; lean_object* x_37; lean_object* x_38; uint8_t x_39; +lean_dec(x_6); +x_36 = lean_array_get_size(x_5); +x_37 = lean_unsigned_to_nat(1u); +x_38 = lean_nat_sub(x_36, x_37); +x_39 = lean_nat_dec_lt(x_38, x_36); +lean_dec(x_36); +if (x_39 == 0) +{ +lean_dec(x_38); +lean_dec(x_4); +lean_dec(x_2); +return x_5; +} +else +{ +lean_object* x_40; lean_object* x_41; lean_object* x_42; uint8_t x_43; +x_40 = lean_array_fget(x_5, x_38); +x_41 = lean_box(0); +x_42 = lean_array_fset(x_5, x_38, x_41); +x_43 = !lean_is_exclusive(x_40); +if (x_43 == 0) +{ +lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; +x_44 = lean_ctor_get(x_40, 1); +x_45 = lean_ctor_get(x_40, 0); +lean_dec(x_45); +x_46 = lean_nat_add(x_3, x_37); +x_47 = l___private_Lean_Meta_DiscrTree_0__Lean_Meta_DiscrTree_insertAux___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_updateTree___spec__10(x_1, x_2, x_46, x_44); +lean_dec(x_46); +lean_ctor_set(x_40, 1, x_47); +lean_ctor_set(x_40, 0, x_4); +x_48 = lean_array_fset(x_42, x_38, x_40); +lean_dec(x_38); +return x_48; +} +else +{ +lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; +x_49 = lean_ctor_get(x_40, 1); +lean_inc(x_49); +lean_dec(x_40); +x_50 = lean_nat_add(x_3, x_37); +x_51 = l___private_Lean_Meta_DiscrTree_0__Lean_Meta_DiscrTree_insertAux___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_updateTree___spec__10(x_1, x_2, x_50, x_49); +lean_dec(x_50); +x_52 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_52, 0, x_4); +lean_ctor_set(x_52, 1, x_51); +x_53 = lean_array_fset(x_42, x_38, x_52); +lean_dec(x_38); +return x_53; +} +} +} +else +{ +lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; +x_54 = lean_array_get_size(x_5); +x_55 = lean_unsigned_to_nat(1u); +x_56 = lean_nat_sub(x_54, x_55); +lean_dec(x_54); +x_57 = l___private_Init_Data_Array_BinSearch_0__Array_binInsertAux___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_updateTree___spec__13(x_1, x_2, x_3, x_4, x_5, x_6, x_8, x_56); +return x_57; +} +} +else +{ +lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; +lean_dec(x_33); +lean_dec(x_10); +lean_dec(x_6); +x_58 = lean_unsigned_to_nat(1u); +x_59 = lean_nat_add(x_3, x_58); +x_60 = l___private_Lean_Meta_DiscrTree_0__Lean_Meta_DiscrTree_createNodes___rarg(x_1, x_2, x_59); +lean_dec(x_59); +x_61 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_61, 0, x_4); +lean_ctor_set(x_61, 1, x_60); +x_62 = lean_array_push(x_5, x_61); +return x_62; +} +} +} +else +{ +lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_6); +x_63 = lean_unsigned_to_nat(1u); +x_64 = lean_nat_add(x_3, x_63); +x_65 = l___private_Lean_Meta_DiscrTree_0__Lean_Meta_DiscrTree_createNodes___rarg(x_1, x_2, x_64); +lean_dec(x_64); +x_66 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_66, 0, x_4); +lean_ctor_set(x_66, 1, x_65); +x_67 = l_Array_insertAt_x21___rarg(x_5, x_8, x_66); +return x_67; +} +} +else +{ +lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; +lean_dec(x_6); +x_68 = lean_unsigned_to_nat(1u); +x_69 = lean_nat_add(x_3, x_68); +x_70 = l___private_Lean_Meta_DiscrTree_0__Lean_Meta_DiscrTree_createNodes___rarg(x_1, x_2, x_69); +lean_dec(x_69); +x_71 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_71, 0, x_4); +lean_ctor_set(x_71, 1, x_70); +x_72 = lean_array_push(x_5, x_71); +return x_72; +} +} +} +static lean_object* _init_l___private_Lean_Meta_DiscrTree_0__Lean_Meta_DiscrTree_insertAux___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_updateTree___spec__10___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Meta_LibrarySearch_solveByElim___closed__5; +x_2 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_2, 0, x_1); +lean_ctor_set(x_2, 1, x_1); +return x_2; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_DiscrTree_0__Lean_Meta_DiscrTree_insertAux___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_updateTree___spec__10(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +_start: +{ +uint8_t x_5; +x_5 = !lean_is_exclusive(x_4); +if (x_5 == 0) +{ +lean_object* x_6; lean_object* x_7; lean_object* x_8; uint8_t x_9; +x_6 = lean_ctor_get(x_4, 0); +x_7 = lean_ctor_get(x_4, 1); +x_8 = lean_array_get_size(x_1); +x_9 = lean_nat_dec_lt(x_3, x_8); +lean_dec(x_8); +if (x_9 == 0) +{ +lean_object* x_10; lean_object* x_11; +x_10 = lean_unsigned_to_nat(0u); +x_11 = l___private_Lean_Meta_DiscrTree_0__Lean_Meta_DiscrTree_insertVal_loop___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_updateTree___spec__11(x_6, x_2, x_10); +lean_ctor_set(x_4, 0, x_11); +return x_4; +} +else +{ +lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; +x_12 = lean_array_fget(x_1, x_3); +x_13 = l___private_Lean_Meta_DiscrTree_0__Lean_Meta_DiscrTree_insertAux___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_updateTree___spec__10___closed__1; +lean_inc(x_12); +x_14 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_14, 0, x_12); +lean_ctor_set(x_14, 1, x_13); +x_15 = l_Array_binInsertM___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_updateTree___spec__12(x_1, x_2, x_3, x_12, x_7, x_14); +lean_ctor_set(x_4, 1, x_15); +return x_4; +} +} +else +{ +lean_object* x_16; lean_object* x_17; lean_object* x_18; uint8_t x_19; +x_16 = lean_ctor_get(x_4, 0); +x_17 = lean_ctor_get(x_4, 1); +lean_inc(x_17); +lean_inc(x_16); +lean_dec(x_4); +x_18 = lean_array_get_size(x_1); +x_19 = lean_nat_dec_lt(x_3, x_18); +lean_dec(x_18); +if (x_19 == 0) +{ +lean_object* x_20; lean_object* x_21; lean_object* x_22; +x_20 = lean_unsigned_to_nat(0u); +x_21 = l___private_Lean_Meta_DiscrTree_0__Lean_Meta_DiscrTree_insertVal_loop___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_updateTree___spec__11(x_16, x_2, x_20); +x_22 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_22, 0, x_21); +lean_ctor_set(x_22, 1, x_17); +return x_22; +} +else +{ +lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; +x_23 = lean_array_fget(x_1, x_3); +x_24 = l___private_Lean_Meta_DiscrTree_0__Lean_Meta_DiscrTree_insertAux___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_updateTree___spec__10___closed__1; +lean_inc(x_23); +x_25 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_25, 0, x_23); +lean_ctor_set(x_25, 1, x_24); +x_26 = l_Array_binInsertM___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_updateTree___spec__12(x_1, x_2, x_3, x_23, x_17, x_25); +x_27 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_27, 0, x_16); +lean_ctor_set(x_27, 1, x_26); +return x_27; +} +} +} +} +static lean_object* _init_l_panic___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_updateTree___spec__14___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = l_Lean_Meta_DiscrTree_instInhabitedDiscrTree(lean_box(0)); +return x_1; +} +} +LEAN_EXPORT lean_object* l_panic___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_updateTree___spec__14(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; +x_2 = l_panic___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_updateTree___spec__14___closed__1; +x_3 = lean_panic_fn(x_2, x_1); +return x_3; +} +} +static lean_object* _init_l_Lean_Meta_DiscrTree_insertCore___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_updateTree___spec__2___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("Lean.Meta.DiscrTree", 19); +return x_1; +} +} +static lean_object* _init_l_Lean_Meta_DiscrTree_insertCore___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_updateTree___spec__2___closed__2() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("Lean.Meta.DiscrTree.insertCore", 30); +return x_1; +} +} +static lean_object* _init_l_Lean_Meta_DiscrTree_insertCore___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_updateTree___spec__2___closed__3() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("invalid key sequence", 20); +return x_1; +} +} +static lean_object* _init_l_Lean_Meta_DiscrTree_insertCore___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_updateTree___spec__2___closed__4() { +_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_DiscrTree_insertCore___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_updateTree___spec__2___closed__1; +x_2 = l_Lean_Meta_DiscrTree_insertCore___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_updateTree___spec__2___closed__2; +x_3 = lean_unsigned_to_nat(463u); +x_4 = lean_unsigned_to_nat(23u); +x_5 = l_Lean_Meta_DiscrTree_insertCore___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_updateTree___spec__2___closed__3; +x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); +return x_6; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_DiscrTree_insertCore___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_updateTree___spec__2(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +uint8_t x_4; +x_4 = l_Array_isEmpty___rarg(x_2); +if (x_4 == 0) +{ +lean_object* x_5; lean_object* x_6; uint8_t x_7; +x_5 = lean_array_get_size(x_2); +x_6 = lean_unsigned_to_nat(0u); +x_7 = lean_nat_dec_lt(x_6, x_5); +lean_dec(x_5); +if (x_7 == 0) +{ +lean_object* x_8; lean_object* x_9; lean_object* x_10; +x_8 = l_Lean_Meta_DiscrTree_instInhabitedKey; +x_9 = l___private_Init_Util_0__outOfBounds___rarg(x_8); +lean_inc(x_9); +lean_inc(x_1); +x_10 = l_Lean_PersistentHashMap_find_x3f___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_updateTree___spec__3(x_1, x_9); +if (lean_obj_tag(x_10) == 0) +{ +lean_object* x_11; lean_object* x_12; lean_object* x_13; +x_11 = lean_unsigned_to_nat(1u); +x_12 = l___private_Lean_Meta_DiscrTree_0__Lean_Meta_DiscrTree_createNodes___rarg(x_2, x_3, x_11); +lean_dec(x_2); +x_13 = l_Lean_PersistentHashMap_insert___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_updateTree___spec__6(x_1, x_9, x_12); +return x_13; +} +else +{ +lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; +x_14 = lean_ctor_get(x_10, 0); +lean_inc(x_14); +lean_dec(x_10); +x_15 = lean_unsigned_to_nat(1u); +x_16 = l___private_Lean_Meta_DiscrTree_0__Lean_Meta_DiscrTree_insertAux___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_updateTree___spec__10(x_2, x_3, x_15, x_14); +lean_dec(x_2); +x_17 = l_Lean_PersistentHashMap_insert___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_updateTree___spec__6(x_1, x_9, x_16); +return x_17; +} +} +else +{ +lean_object* x_18; lean_object* x_19; +x_18 = lean_array_fget(x_2, x_6); +lean_inc(x_18); +lean_inc(x_1); +x_19 = l_Lean_PersistentHashMap_find_x3f___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_updateTree___spec__3(x_1, x_18); +if (lean_obj_tag(x_19) == 0) +{ +lean_object* x_20; lean_object* x_21; lean_object* x_22; +x_20 = lean_unsigned_to_nat(1u); +x_21 = l___private_Lean_Meta_DiscrTree_0__Lean_Meta_DiscrTree_createNodes___rarg(x_2, x_3, x_20); +lean_dec(x_2); +x_22 = l_Lean_PersistentHashMap_insert___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_updateTree___spec__6(x_1, x_18, x_21); +return x_22; +} +else +{ +lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; +x_23 = lean_ctor_get(x_19, 0); +lean_inc(x_23); +lean_dec(x_19); +x_24 = lean_unsigned_to_nat(1u); +x_25 = l___private_Lean_Meta_DiscrTree_0__Lean_Meta_DiscrTree_insertAux___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_updateTree___spec__10(x_2, x_3, x_24, x_23); +lean_dec(x_2); +x_26 = l_Lean_PersistentHashMap_insert___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_updateTree___spec__6(x_1, x_18, x_25); +return x_26; +} +} +} +else +{ +lean_object* x_27; lean_object* x_28; +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +x_27 = l_Lean_Meta_DiscrTree_insertCore___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_updateTree___spec__2___closed__4; +x_28 = l_panic___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_updateTree___spec__14(x_27); +return x_28; +} +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_addPath___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_updateTree___spec__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) { +_start: +{ +uint8_t x_10; lean_object* x_11; +x_10 = 0; +x_11 = l_Lean_Meta_DiscrTree_mkPath(x_3, x_1, x_10, x_5, x_6, x_7, x_8, x_9); +if (lean_obj_tag(x_11) == 0) +{ +uint8_t x_12; +x_12 = !lean_is_exclusive(x_11); +if (x_12 == 0) +{ +lean_object* x_13; lean_object* x_14; +x_13 = lean_ctor_get(x_11, 0); +x_14 = l_Lean_Meta_DiscrTree_insertCore___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_updateTree___spec__2(x_2, x_13, x_4); +lean_ctor_set(x_11, 0, x_14); +return x_11; +} +else +{ +lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; +x_15 = lean_ctor_get(x_11, 0); +x_16 = lean_ctor_get(x_11, 1); +lean_inc(x_16); +lean_inc(x_15); +lean_dec(x_11); +x_17 = l_Lean_Meta_DiscrTree_insertCore___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_updateTree___spec__2(x_2, x_15, x_4); +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; +lean_dec(x_4); +lean_dec(x_2); +x_19 = !lean_is_exclusive(x_11); +if (x_19 == 0) +{ +return x_11; +} +else +{ +lean_object* x_20; lean_object* x_21; lean_object* x_22; +x_20 = lean_ctor_get(x_11, 0); +x_21 = lean_ctor_get(x_11, 1); +lean_inc(x_21); +lean_inc(x_20); +lean_dec(x_11); +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; +} +} +} +} +static lean_object* _init_l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_updateTree___lambda__1___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("Iff", 3); +return x_1; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_updateTree___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; uint8_t x_12; +x_11 = l_Lean_ConstantInfo_type(x_1); +x_12 = !lean_is_exclusive(x_6); +if (x_12 == 0) +{ +lean_object* x_13; uint8_t x_14; +x_13 = lean_ctor_get(x_6, 0); +x_14 = !lean_is_exclusive(x_13); +if (x_14 == 0) +{ +uint8_t x_15; uint8_t x_16; lean_object* x_17; +x_15 = 2; +lean_ctor_set_uint8(x_13, 9, x_15); +x_16 = 0; +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_6); +x_17 = l_Lean_Meta_forallMetaTelescope(x_11, x_16, x_6, x_7, x_8, x_9, x_10); +if (lean_obj_tag(x_17) == 0) +{ +lean_object* x_18; uint8_t x_19; +x_18 = lean_ctor_get(x_17, 0); +lean_inc(x_18); +x_19 = !lean_is_exclusive(x_18); +if (x_19 == 0) +{ +lean_object* x_20; lean_object* x_21; lean_object* x_22; uint8_t x_23; +x_20 = lean_ctor_get(x_18, 1); +x_21 = lean_ctor_get(x_18, 0); +lean_dec(x_21); +x_22 = lean_ctor_get(x_17, 1); +lean_inc(x_22); +lean_dec(x_17); +x_23 = !lean_is_exclusive(x_20); +if (x_23 == 0) +{ +lean_object* x_24; lean_object* x_25; uint8_t x_26; lean_object* x_27; lean_object* x_28; +x_24 = lean_ctor_get(x_20, 1); +x_25 = lean_ctor_get(x_20, 0); +lean_dec(x_25); +x_26 = 0; +x_27 = lean_box(x_26); +lean_inc(x_2); +lean_ctor_set(x_20, 1, x_27); +lean_ctor_set(x_20, 0, x_2); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_24); +lean_inc(x_3); +x_28 = l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_addPath___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_updateTree___spec__1(x_3, x_4, x_24, x_20, x_6, x_7, x_8, x_9, x_22); +if (lean_obj_tag(x_28) == 0) +{ +uint8_t x_29; +x_29 = !lean_is_exclusive(x_28); +if (x_29 == 0) +{ +lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; +x_30 = lean_ctor_get(x_28, 0); +x_31 = lean_ctor_get(x_28, 1); +x_32 = l_Lean_Expr_getAppFnArgs(x_24); +x_33 = lean_ctor_get(x_32, 0); +lean_inc(x_33); +if (lean_obj_tag(x_33) == 1) +{ +lean_object* x_34; +x_34 = lean_ctor_get(x_33, 0); +lean_inc(x_34); +if (lean_obj_tag(x_34) == 0) +{ +uint8_t x_35; +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; uint8_t x_40; +x_36 = lean_ctor_get(x_32, 1); +x_37 = lean_ctor_get(x_32, 0); +lean_dec(x_37); +x_38 = lean_ctor_get(x_33, 1); +lean_inc(x_38); +lean_dec(x_33); +x_39 = l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_updateTree___lambda__1___closed__1; +x_40 = lean_string_dec_eq(x_38, x_39); +lean_dec(x_38); +if (x_40 == 0) +{ +lean_free_object(x_32); +lean_dec(x_36); +lean_free_object(x_18); +lean_dec(x_6); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_3); +lean_dec(x_2); +return x_28; +} +else +{ +lean_object* x_41; lean_object* x_42; uint8_t x_43; +x_41 = lean_array_get_size(x_36); +x_42 = lean_unsigned_to_nat(2u); +x_43 = lean_nat_dec_eq(x_41, x_42); +lean_dec(x_41); +if (x_43 == 0) +{ +lean_free_object(x_32); +lean_dec(x_36); +lean_free_object(x_18); +lean_dec(x_6); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_3); +lean_dec(x_2); +return x_28; +} +else +{ +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_free_object(x_28); +x_44 = lean_unsigned_to_nat(0u); +x_45 = lean_array_fget(x_36, x_44); +x_46 = lean_unsigned_to_nat(1u); +x_47 = lean_array_fget(x_36, x_46); +lean_dec(x_36); +x_48 = 1; +x_49 = lean_box(x_48); +lean_inc(x_2); +lean_ctor_set(x_32, 1, x_49); +lean_ctor_set(x_32, 0, x_2); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_3); +x_50 = l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_addPath___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_updateTree___spec__1(x_3, x_30, x_47, x_32, x_6, x_7, x_8, x_9, x_31); +if (lean_obj_tag(x_50) == 0) +{ +lean_object* x_51; lean_object* x_52; uint8_t x_53; lean_object* x_54; lean_object* x_55; +x_51 = lean_ctor_get(x_50, 0); +lean_inc(x_51); +x_52 = lean_ctor_get(x_50, 1); +lean_inc(x_52); +lean_dec(x_50); +x_53 = 2; +x_54 = lean_box(x_53); +lean_ctor_set(x_18, 1, x_54); +lean_ctor_set(x_18, 0, x_2); +x_55 = l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_addPath___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_updateTree___spec__1(x_3, x_51, x_45, x_18, x_6, x_7, x_8, x_9, x_52); +if (lean_obj_tag(x_55) == 0) +{ +uint8_t x_56; +x_56 = !lean_is_exclusive(x_55); +if (x_56 == 0) +{ +return x_55; +} +else +{ +lean_object* x_57; lean_object* x_58; lean_object* x_59; +x_57 = lean_ctor_get(x_55, 0); +x_58 = lean_ctor_get(x_55, 1); +lean_inc(x_58); +lean_inc(x_57); +lean_dec(x_55); +x_59 = lean_alloc_ctor(0, 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_60; +x_60 = !lean_is_exclusive(x_55); +if (x_60 == 0) +{ +return x_55; +} +else +{ +lean_object* x_61; lean_object* x_62; lean_object* x_63; +x_61 = lean_ctor_get(x_55, 0); +x_62 = lean_ctor_get(x_55, 1); +lean_inc(x_62); +lean_inc(x_61); +lean_dec(x_55); +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; +} +} +} +else +{ +uint8_t x_64; +lean_dec(x_45); +lean_free_object(x_18); +lean_dec(x_6); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_3); +lean_dec(x_2); +x_64 = !lean_is_exclusive(x_50); +if (x_64 == 0) +{ +return x_50; +} +else +{ +lean_object* x_65; lean_object* x_66; lean_object* x_67; +x_65 = lean_ctor_get(x_50, 0); +x_66 = lean_ctor_get(x_50, 1); +lean_inc(x_66); +lean_inc(x_65); +lean_dec(x_50); +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; +} +} +} +} +} +else +{ +lean_object* x_68; lean_object* x_69; lean_object* x_70; uint8_t x_71; +x_68 = lean_ctor_get(x_32, 1); +lean_inc(x_68); +lean_dec(x_32); +x_69 = lean_ctor_get(x_33, 1); +lean_inc(x_69); +lean_dec(x_33); +x_70 = l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_updateTree___lambda__1___closed__1; +x_71 = lean_string_dec_eq(x_69, x_70); +lean_dec(x_69); +if (x_71 == 0) +{ +lean_dec(x_68); +lean_free_object(x_18); +lean_dec(x_6); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_3); +lean_dec(x_2); +return x_28; +} +else +{ +lean_object* x_72; lean_object* x_73; uint8_t x_74; +x_72 = lean_array_get_size(x_68); +x_73 = lean_unsigned_to_nat(2u); +x_74 = lean_nat_dec_eq(x_72, x_73); +lean_dec(x_72); +if (x_74 == 0) +{ +lean_dec(x_68); +lean_free_object(x_18); +lean_dec(x_6); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_3); +lean_dec(x_2); +return x_28; +} +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; lean_object* x_82; +lean_free_object(x_28); +x_75 = lean_unsigned_to_nat(0u); +x_76 = lean_array_fget(x_68, x_75); +x_77 = lean_unsigned_to_nat(1u); +x_78 = lean_array_fget(x_68, x_77); +lean_dec(x_68); +x_79 = 1; +x_80 = lean_box(x_79); +lean_inc(x_2); +x_81 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_81, 0, x_2); +lean_ctor_set(x_81, 1, x_80); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_3); +x_82 = l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_addPath___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_updateTree___spec__1(x_3, x_30, x_78, x_81, x_6, x_7, x_8, x_9, x_31); +if (lean_obj_tag(x_82) == 0) +{ +lean_object* x_83; lean_object* x_84; uint8_t x_85; lean_object* x_86; lean_object* x_87; +x_83 = lean_ctor_get(x_82, 0); +lean_inc(x_83); +x_84 = lean_ctor_get(x_82, 1); +lean_inc(x_84); +lean_dec(x_82); +x_85 = 2; +x_86 = lean_box(x_85); +lean_ctor_set(x_18, 1, x_86); +lean_ctor_set(x_18, 0, x_2); +x_87 = l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_addPath___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_updateTree___spec__1(x_3, x_83, x_76, x_18, x_6, x_7, x_8, x_9, x_84); +if (lean_obj_tag(x_87) == 0) +{ +lean_object* x_88; lean_object* x_89; lean_object* x_90; lean_object* x_91; +x_88 = lean_ctor_get(x_87, 0); +lean_inc(x_88); +x_89 = lean_ctor_get(x_87, 1); +lean_inc(x_89); +if (lean_is_exclusive(x_87)) { + lean_ctor_release(x_87, 0); + lean_ctor_release(x_87, 1); + x_90 = x_87; +} else { + lean_dec_ref(x_87); + x_90 = lean_box(0); +} +if (lean_is_scalar(x_90)) { + x_91 = lean_alloc_ctor(0, 2, 0); +} else { + x_91 = x_90; +} +lean_ctor_set(x_91, 0, x_88); +lean_ctor_set(x_91, 1, x_89); +return x_91; +} +else +{ +lean_object* x_92; lean_object* x_93; lean_object* x_94; lean_object* x_95; +x_92 = lean_ctor_get(x_87, 0); +lean_inc(x_92); +x_93 = lean_ctor_get(x_87, 1); +lean_inc(x_93); +if (lean_is_exclusive(x_87)) { + lean_ctor_release(x_87, 0); + lean_ctor_release(x_87, 1); + x_94 = x_87; +} else { + lean_dec_ref(x_87); + x_94 = lean_box(0); +} +if (lean_is_scalar(x_94)) { + x_95 = lean_alloc_ctor(1, 2, 0); +} else { + x_95 = x_94; +} +lean_ctor_set(x_95, 0, x_92); +lean_ctor_set(x_95, 1, x_93); +return x_95; +} +} +else +{ +lean_object* x_96; lean_object* x_97; lean_object* x_98; lean_object* x_99; +lean_dec(x_76); +lean_free_object(x_18); +lean_dec(x_6); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_3); +lean_dec(x_2); +x_96 = lean_ctor_get(x_82, 0); +lean_inc(x_96); +x_97 = lean_ctor_get(x_82, 1); +lean_inc(x_97); +if (lean_is_exclusive(x_82)) { + lean_ctor_release(x_82, 0); + lean_ctor_release(x_82, 1); + x_98 = x_82; +} else { + lean_dec_ref(x_82); + x_98 = lean_box(0); +} +if (lean_is_scalar(x_98)) { + x_99 = lean_alloc_ctor(1, 2, 0); +} else { + x_99 = x_98; +} +lean_ctor_set(x_99, 0, x_96); +lean_ctor_set(x_99, 1, x_97); +return x_99; +} +} +} +} +} +else +{ +lean_dec(x_34); +lean_dec(x_33); +lean_dec(x_32); +lean_free_object(x_18); +lean_dec(x_6); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_3); +lean_dec(x_2); +return x_28; +} +} +else +{ +lean_dec(x_33); +lean_dec(x_32); +lean_free_object(x_18); +lean_dec(x_6); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_3); +lean_dec(x_2); +return x_28; +} +} +else +{ +lean_object* x_100; lean_object* x_101; lean_object* x_102; lean_object* x_103; +x_100 = lean_ctor_get(x_28, 0); +x_101 = lean_ctor_get(x_28, 1); +lean_inc(x_101); +lean_inc(x_100); +lean_dec(x_28); +x_102 = l_Lean_Expr_getAppFnArgs(x_24); +x_103 = lean_ctor_get(x_102, 0); +lean_inc(x_103); +if (lean_obj_tag(x_103) == 1) +{ +lean_object* x_104; +x_104 = lean_ctor_get(x_103, 0); +lean_inc(x_104); +if (lean_obj_tag(x_104) == 0) +{ +lean_object* x_105; lean_object* x_106; lean_object* x_107; lean_object* x_108; uint8_t x_109; +x_105 = lean_ctor_get(x_102, 1); +lean_inc(x_105); +if (lean_is_exclusive(x_102)) { + lean_ctor_release(x_102, 0); + lean_ctor_release(x_102, 1); + x_106 = x_102; +} else { + lean_dec_ref(x_102); + x_106 = lean_box(0); +} +x_107 = lean_ctor_get(x_103, 1); +lean_inc(x_107); +lean_dec(x_103); +x_108 = l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_updateTree___lambda__1___closed__1; +x_109 = lean_string_dec_eq(x_107, x_108); +lean_dec(x_107); +if (x_109 == 0) +{ +lean_object* x_110; +lean_dec(x_106); +lean_dec(x_105); +lean_free_object(x_18); +lean_dec(x_6); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_3); +lean_dec(x_2); +x_110 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_110, 0, x_100); +lean_ctor_set(x_110, 1, x_101); +return x_110; +} +else +{ +lean_object* x_111; lean_object* x_112; uint8_t x_113; +x_111 = lean_array_get_size(x_105); +x_112 = lean_unsigned_to_nat(2u); +x_113 = lean_nat_dec_eq(x_111, x_112); +lean_dec(x_111); +if (x_113 == 0) +{ +lean_object* x_114; +lean_dec(x_106); +lean_dec(x_105); +lean_free_object(x_18); +lean_dec(x_6); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_3); +lean_dec(x_2); +x_114 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_114, 0, x_100); +lean_ctor_set(x_114, 1, x_101); +return x_114; +} +else +{ +lean_object* x_115; lean_object* x_116; lean_object* x_117; lean_object* x_118; uint8_t x_119; lean_object* x_120; lean_object* x_121; lean_object* x_122; +x_115 = lean_unsigned_to_nat(0u); +x_116 = lean_array_fget(x_105, x_115); +x_117 = lean_unsigned_to_nat(1u); +x_118 = lean_array_fget(x_105, x_117); +lean_dec(x_105); +x_119 = 1; +x_120 = lean_box(x_119); +lean_inc(x_2); +if (lean_is_scalar(x_106)) { + x_121 = lean_alloc_ctor(0, 2, 0); +} else { + x_121 = x_106; +} +lean_ctor_set(x_121, 0, x_2); +lean_ctor_set(x_121, 1, x_120); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_3); +x_122 = l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_addPath___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_updateTree___spec__1(x_3, x_100, x_118, x_121, x_6, x_7, x_8, x_9, x_101); +if (lean_obj_tag(x_122) == 0) +{ +lean_object* x_123; lean_object* x_124; uint8_t x_125; lean_object* x_126; lean_object* x_127; +x_123 = lean_ctor_get(x_122, 0); +lean_inc(x_123); +x_124 = lean_ctor_get(x_122, 1); +lean_inc(x_124); +lean_dec(x_122); +x_125 = 2; +x_126 = lean_box(x_125); +lean_ctor_set(x_18, 1, x_126); +lean_ctor_set(x_18, 0, x_2); +x_127 = l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_addPath___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_updateTree___spec__1(x_3, x_123, x_116, x_18, x_6, x_7, x_8, x_9, x_124); +if (lean_obj_tag(x_127) == 0) +{ +lean_object* x_128; lean_object* x_129; lean_object* x_130; lean_object* x_131; +x_128 = lean_ctor_get(x_127, 0); +lean_inc(x_128); +x_129 = lean_ctor_get(x_127, 1); +lean_inc(x_129); +if (lean_is_exclusive(x_127)) { + lean_ctor_release(x_127, 0); + lean_ctor_release(x_127, 1); + x_130 = x_127; +} else { + lean_dec_ref(x_127); + x_130 = lean_box(0); +} +if (lean_is_scalar(x_130)) { + x_131 = lean_alloc_ctor(0, 2, 0); +} else { + x_131 = x_130; +} +lean_ctor_set(x_131, 0, x_128); +lean_ctor_set(x_131, 1, x_129); +return x_131; +} +else +{ +lean_object* x_132; lean_object* x_133; lean_object* x_134; lean_object* x_135; +x_132 = lean_ctor_get(x_127, 0); +lean_inc(x_132); +x_133 = lean_ctor_get(x_127, 1); +lean_inc(x_133); +if (lean_is_exclusive(x_127)) { + lean_ctor_release(x_127, 0); + lean_ctor_release(x_127, 1); + x_134 = x_127; +} else { + lean_dec_ref(x_127); + x_134 = lean_box(0); +} +if (lean_is_scalar(x_134)) { + x_135 = lean_alloc_ctor(1, 2, 0); +} else { + x_135 = x_134; +} +lean_ctor_set(x_135, 0, x_132); +lean_ctor_set(x_135, 1, x_133); +return x_135; +} +} +else +{ +lean_object* x_136; lean_object* x_137; lean_object* x_138; lean_object* x_139; +lean_dec(x_116); +lean_free_object(x_18); +lean_dec(x_6); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_3); +lean_dec(x_2); +x_136 = lean_ctor_get(x_122, 0); +lean_inc(x_136); +x_137 = lean_ctor_get(x_122, 1); +lean_inc(x_137); +if (lean_is_exclusive(x_122)) { + lean_ctor_release(x_122, 0); + lean_ctor_release(x_122, 1); + x_138 = x_122; +} else { + lean_dec_ref(x_122); + x_138 = lean_box(0); +} +if (lean_is_scalar(x_138)) { + x_139 = lean_alloc_ctor(1, 2, 0); +} else { + x_139 = x_138; +} +lean_ctor_set(x_139, 0, x_136); +lean_ctor_set(x_139, 1, x_137); +return x_139; +} +} +} +} +else +{ +lean_object* x_140; +lean_dec(x_104); +lean_dec(x_103); +lean_dec(x_102); +lean_free_object(x_18); +lean_dec(x_6); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_3); +lean_dec(x_2); +x_140 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_140, 0, x_100); +lean_ctor_set(x_140, 1, x_101); +return x_140; +} +} +else +{ +lean_object* x_141; +lean_dec(x_103); +lean_dec(x_102); +lean_free_object(x_18); +lean_dec(x_6); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_3); +lean_dec(x_2); +x_141 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_141, 0, x_100); +lean_ctor_set(x_141, 1, x_101); +return x_141; +} +} +} +else +{ +uint8_t x_142; +lean_dec(x_24); +lean_free_object(x_18); +lean_dec(x_6); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_3); +lean_dec(x_2); +x_142 = !lean_is_exclusive(x_28); +if (x_142 == 0) +{ +return x_28; +} +else +{ +lean_object* x_143; lean_object* x_144; lean_object* x_145; +x_143 = lean_ctor_get(x_28, 0); +x_144 = lean_ctor_get(x_28, 1); +lean_inc(x_144); +lean_inc(x_143); +lean_dec(x_28); +x_145 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_145, 0, x_143); +lean_ctor_set(x_145, 1, x_144); +return x_145; +} +} +} +else +{ +lean_object* x_146; uint8_t x_147; lean_object* x_148; lean_object* x_149; lean_object* x_150; +x_146 = lean_ctor_get(x_20, 1); +lean_inc(x_146); +lean_dec(x_20); +x_147 = 0; +x_148 = lean_box(x_147); +lean_inc(x_2); +x_149 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_149, 0, x_2); +lean_ctor_set(x_149, 1, x_148); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_146); +lean_inc(x_3); +x_150 = l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_addPath___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_updateTree___spec__1(x_3, x_4, x_146, x_149, x_6, x_7, x_8, x_9, x_22); +if (lean_obj_tag(x_150) == 0) +{ +lean_object* x_151; lean_object* x_152; lean_object* x_153; lean_object* x_154; lean_object* x_155; +x_151 = lean_ctor_get(x_150, 0); +lean_inc(x_151); +x_152 = lean_ctor_get(x_150, 1); +lean_inc(x_152); +if (lean_is_exclusive(x_150)) { + lean_ctor_release(x_150, 0); + lean_ctor_release(x_150, 1); + x_153 = x_150; +} else { + lean_dec_ref(x_150); + x_153 = lean_box(0); +} +x_154 = l_Lean_Expr_getAppFnArgs(x_146); +x_155 = lean_ctor_get(x_154, 0); +lean_inc(x_155); +if (lean_obj_tag(x_155) == 1) +{ +lean_object* x_156; +x_156 = lean_ctor_get(x_155, 0); +lean_inc(x_156); +if (lean_obj_tag(x_156) == 0) +{ +lean_object* x_157; lean_object* x_158; lean_object* x_159; lean_object* x_160; uint8_t x_161; +x_157 = lean_ctor_get(x_154, 1); +lean_inc(x_157); +if (lean_is_exclusive(x_154)) { + lean_ctor_release(x_154, 0); + lean_ctor_release(x_154, 1); + x_158 = x_154; +} else { + lean_dec_ref(x_154); + x_158 = lean_box(0); +} +x_159 = lean_ctor_get(x_155, 1); +lean_inc(x_159); +lean_dec(x_155); +x_160 = l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_updateTree___lambda__1___closed__1; +x_161 = lean_string_dec_eq(x_159, x_160); +lean_dec(x_159); +if (x_161 == 0) +{ +lean_object* x_162; +lean_dec(x_158); +lean_dec(x_157); +lean_free_object(x_18); +lean_dec(x_6); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_3); +lean_dec(x_2); +if (lean_is_scalar(x_153)) { + x_162 = lean_alloc_ctor(0, 2, 0); +} else { + x_162 = x_153; +} +lean_ctor_set(x_162, 0, x_151); +lean_ctor_set(x_162, 1, x_152); +return x_162; +} +else +{ +lean_object* x_163; lean_object* x_164; uint8_t x_165; +x_163 = lean_array_get_size(x_157); +x_164 = lean_unsigned_to_nat(2u); +x_165 = lean_nat_dec_eq(x_163, x_164); +lean_dec(x_163); +if (x_165 == 0) +{ +lean_object* x_166; +lean_dec(x_158); +lean_dec(x_157); +lean_free_object(x_18); +lean_dec(x_6); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_3); +lean_dec(x_2); +if (lean_is_scalar(x_153)) { + x_166 = lean_alloc_ctor(0, 2, 0); +} else { + x_166 = x_153; +} +lean_ctor_set(x_166, 0, x_151); +lean_ctor_set(x_166, 1, x_152); +return x_166; +} +else +{ +lean_object* x_167; lean_object* x_168; lean_object* x_169; lean_object* x_170; uint8_t x_171; lean_object* x_172; lean_object* x_173; lean_object* x_174; +lean_dec(x_153); +x_167 = lean_unsigned_to_nat(0u); +x_168 = lean_array_fget(x_157, x_167); +x_169 = lean_unsigned_to_nat(1u); +x_170 = lean_array_fget(x_157, x_169); +lean_dec(x_157); +x_171 = 1; +x_172 = lean_box(x_171); +lean_inc(x_2); +if (lean_is_scalar(x_158)) { + x_173 = lean_alloc_ctor(0, 2, 0); +} else { + x_173 = x_158; +} +lean_ctor_set(x_173, 0, x_2); +lean_ctor_set(x_173, 1, x_172); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_3); +x_174 = l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_addPath___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_updateTree___spec__1(x_3, x_151, x_170, x_173, x_6, x_7, x_8, x_9, x_152); +if (lean_obj_tag(x_174) == 0) +{ +lean_object* x_175; lean_object* x_176; uint8_t x_177; lean_object* x_178; lean_object* x_179; +x_175 = lean_ctor_get(x_174, 0); +lean_inc(x_175); +x_176 = lean_ctor_get(x_174, 1); +lean_inc(x_176); +lean_dec(x_174); +x_177 = 2; +x_178 = lean_box(x_177); +lean_ctor_set(x_18, 1, x_178); +lean_ctor_set(x_18, 0, x_2); +x_179 = l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_addPath___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_updateTree___spec__1(x_3, x_175, x_168, x_18, x_6, x_7, x_8, x_9, x_176); +if (lean_obj_tag(x_179) == 0) +{ +lean_object* x_180; lean_object* x_181; lean_object* x_182; lean_object* x_183; +x_180 = lean_ctor_get(x_179, 0); +lean_inc(x_180); +x_181 = lean_ctor_get(x_179, 1); +lean_inc(x_181); +if (lean_is_exclusive(x_179)) { + lean_ctor_release(x_179, 0); + lean_ctor_release(x_179, 1); + x_182 = x_179; +} else { + lean_dec_ref(x_179); + x_182 = lean_box(0); +} +if (lean_is_scalar(x_182)) { + x_183 = lean_alloc_ctor(0, 2, 0); +} else { + x_183 = x_182; +} +lean_ctor_set(x_183, 0, x_180); +lean_ctor_set(x_183, 1, x_181); +return x_183; +} +else +{ +lean_object* x_184; lean_object* x_185; lean_object* x_186; lean_object* x_187; +x_184 = lean_ctor_get(x_179, 0); +lean_inc(x_184); +x_185 = lean_ctor_get(x_179, 1); +lean_inc(x_185); +if (lean_is_exclusive(x_179)) { + lean_ctor_release(x_179, 0); + lean_ctor_release(x_179, 1); + x_186 = x_179; +} else { + lean_dec_ref(x_179); + x_186 = lean_box(0); +} +if (lean_is_scalar(x_186)) { + x_187 = lean_alloc_ctor(1, 2, 0); +} else { + x_187 = x_186; +} +lean_ctor_set(x_187, 0, x_184); +lean_ctor_set(x_187, 1, x_185); +return x_187; +} +} +else +{ +lean_object* x_188; lean_object* x_189; lean_object* x_190; lean_object* x_191; +lean_dec(x_168); +lean_free_object(x_18); +lean_dec(x_6); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_3); +lean_dec(x_2); +x_188 = lean_ctor_get(x_174, 0); +lean_inc(x_188); +x_189 = lean_ctor_get(x_174, 1); +lean_inc(x_189); +if (lean_is_exclusive(x_174)) { + lean_ctor_release(x_174, 0); + lean_ctor_release(x_174, 1); + x_190 = x_174; +} else { + lean_dec_ref(x_174); + x_190 = lean_box(0); +} +if (lean_is_scalar(x_190)) { + x_191 = lean_alloc_ctor(1, 2, 0); +} else { + x_191 = x_190; +} +lean_ctor_set(x_191, 0, x_188); +lean_ctor_set(x_191, 1, x_189); +return x_191; +} +} +} +} +else +{ +lean_object* x_192; +lean_dec(x_156); +lean_dec(x_155); +lean_dec(x_154); +lean_free_object(x_18); +lean_dec(x_6); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_3); +lean_dec(x_2); +if (lean_is_scalar(x_153)) { + x_192 = lean_alloc_ctor(0, 2, 0); +} else { + x_192 = x_153; +} +lean_ctor_set(x_192, 0, x_151); +lean_ctor_set(x_192, 1, x_152); +return x_192; +} +} +else +{ +lean_object* x_193; +lean_dec(x_155); +lean_dec(x_154); +lean_free_object(x_18); +lean_dec(x_6); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_3); +lean_dec(x_2); +if (lean_is_scalar(x_153)) { + x_193 = lean_alloc_ctor(0, 2, 0); +} else { + x_193 = x_153; +} +lean_ctor_set(x_193, 0, x_151); +lean_ctor_set(x_193, 1, x_152); +return x_193; +} +} +else +{ +lean_object* x_194; lean_object* x_195; lean_object* x_196; lean_object* x_197; +lean_dec(x_146); +lean_free_object(x_18); +lean_dec(x_6); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_3); +lean_dec(x_2); +x_194 = lean_ctor_get(x_150, 0); +lean_inc(x_194); +x_195 = lean_ctor_get(x_150, 1); +lean_inc(x_195); +if (lean_is_exclusive(x_150)) { + lean_ctor_release(x_150, 0); + lean_ctor_release(x_150, 1); + x_196 = x_150; +} else { + lean_dec_ref(x_150); + x_196 = lean_box(0); +} +if (lean_is_scalar(x_196)) { + x_197 = lean_alloc_ctor(1, 2, 0); +} else { + x_197 = x_196; +} +lean_ctor_set(x_197, 0, x_194); +lean_ctor_set(x_197, 1, x_195); +return x_197; +} +} +} +else +{ +lean_object* x_198; lean_object* x_199; lean_object* x_200; lean_object* x_201; uint8_t x_202; lean_object* x_203; lean_object* x_204; lean_object* x_205; +x_198 = lean_ctor_get(x_18, 1); +lean_inc(x_198); +lean_dec(x_18); +x_199 = lean_ctor_get(x_17, 1); +lean_inc(x_199); +lean_dec(x_17); +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_198); + x_201 = lean_box(0); +} +x_202 = 0; +x_203 = lean_box(x_202); +lean_inc(x_2); +if (lean_is_scalar(x_201)) { + x_204 = lean_alloc_ctor(0, 2, 0); +} else { + x_204 = x_201; +} +lean_ctor_set(x_204, 0, x_2); +lean_ctor_set(x_204, 1, x_203); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_200); +lean_inc(x_3); +x_205 = l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_addPath___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_updateTree___spec__1(x_3, x_4, x_200, x_204, x_6, x_7, x_8, x_9, x_199); +if (lean_obj_tag(x_205) == 0) +{ +lean_object* x_206; lean_object* x_207; lean_object* x_208; lean_object* x_209; lean_object* x_210; +x_206 = lean_ctor_get(x_205, 0); +lean_inc(x_206); +x_207 = lean_ctor_get(x_205, 1); +lean_inc(x_207); +if (lean_is_exclusive(x_205)) { + lean_ctor_release(x_205, 0); + lean_ctor_release(x_205, 1); + x_208 = x_205; +} else { + lean_dec_ref(x_205); + x_208 = lean_box(0); +} +x_209 = l_Lean_Expr_getAppFnArgs(x_200); +x_210 = lean_ctor_get(x_209, 0); +lean_inc(x_210); +if (lean_obj_tag(x_210) == 1) +{ +lean_object* x_211; +x_211 = lean_ctor_get(x_210, 0); +lean_inc(x_211); +if (lean_obj_tag(x_211) == 0) +{ +lean_object* x_212; lean_object* x_213; lean_object* x_214; lean_object* x_215; uint8_t x_216; +x_212 = lean_ctor_get(x_209, 1); +lean_inc(x_212); +if (lean_is_exclusive(x_209)) { + lean_ctor_release(x_209, 0); + lean_ctor_release(x_209, 1); + x_213 = x_209; +} else { + lean_dec_ref(x_209); + x_213 = lean_box(0); +} +x_214 = lean_ctor_get(x_210, 1); +lean_inc(x_214); +lean_dec(x_210); +x_215 = l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_updateTree___lambda__1___closed__1; +x_216 = lean_string_dec_eq(x_214, x_215); +lean_dec(x_214); +if (x_216 == 0) +{ +lean_object* x_217; +lean_dec(x_213); +lean_dec(x_212); +lean_dec(x_6); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_3); +lean_dec(x_2); +if (lean_is_scalar(x_208)) { + x_217 = lean_alloc_ctor(0, 2, 0); +} else { + x_217 = x_208; +} +lean_ctor_set(x_217, 0, x_206); +lean_ctor_set(x_217, 1, x_207); +return x_217; +} +else +{ +lean_object* x_218; lean_object* x_219; uint8_t x_220; +x_218 = lean_array_get_size(x_212); +x_219 = lean_unsigned_to_nat(2u); +x_220 = lean_nat_dec_eq(x_218, x_219); +lean_dec(x_218); +if (x_220 == 0) +{ +lean_object* x_221; +lean_dec(x_213); +lean_dec(x_212); +lean_dec(x_6); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_3); +lean_dec(x_2); +if (lean_is_scalar(x_208)) { + x_221 = lean_alloc_ctor(0, 2, 0); +} else { + x_221 = x_208; +} +lean_ctor_set(x_221, 0, x_206); +lean_ctor_set(x_221, 1, x_207); +return x_221; +} +else +{ +lean_object* x_222; lean_object* x_223; lean_object* x_224; lean_object* x_225; uint8_t x_226; lean_object* x_227; lean_object* x_228; lean_object* x_229; +lean_dec(x_208); +x_222 = lean_unsigned_to_nat(0u); +x_223 = lean_array_fget(x_212, x_222); +x_224 = lean_unsigned_to_nat(1u); +x_225 = lean_array_fget(x_212, x_224); +lean_dec(x_212); +x_226 = 1; +x_227 = lean_box(x_226); +lean_inc(x_2); +if (lean_is_scalar(x_213)) { + x_228 = lean_alloc_ctor(0, 2, 0); +} else { + x_228 = x_213; +} +lean_ctor_set(x_228, 0, x_2); +lean_ctor_set(x_228, 1, x_227); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_3); +x_229 = l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_addPath___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_updateTree___spec__1(x_3, x_206, x_225, x_228, x_6, x_7, x_8, x_9, x_207); +if (lean_obj_tag(x_229) == 0) +{ +lean_object* x_230; lean_object* x_231; uint8_t x_232; lean_object* x_233; lean_object* x_234; lean_object* x_235; +x_230 = lean_ctor_get(x_229, 0); +lean_inc(x_230); +x_231 = lean_ctor_get(x_229, 1); +lean_inc(x_231); +lean_dec(x_229); +x_232 = 2; +x_233 = lean_box(x_232); +x_234 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_234, 0, x_2); +lean_ctor_set(x_234, 1, x_233); +x_235 = l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_addPath___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_updateTree___spec__1(x_3, x_230, x_223, x_234, x_6, x_7, x_8, x_9, x_231); +if (lean_obj_tag(x_235) == 0) +{ +lean_object* x_236; lean_object* x_237; lean_object* x_238; lean_object* x_239; +x_236 = lean_ctor_get(x_235, 0); +lean_inc(x_236); +x_237 = lean_ctor_get(x_235, 1); +lean_inc(x_237); +if (lean_is_exclusive(x_235)) { + lean_ctor_release(x_235, 0); + lean_ctor_release(x_235, 1); + x_238 = x_235; +} else { + lean_dec_ref(x_235); + x_238 = lean_box(0); +} +if (lean_is_scalar(x_238)) { + x_239 = lean_alloc_ctor(0, 2, 0); +} else { + x_239 = x_238; +} +lean_ctor_set(x_239, 0, x_236); +lean_ctor_set(x_239, 1, x_237); +return x_239; +} +else +{ +lean_object* x_240; lean_object* x_241; lean_object* x_242; lean_object* x_243; +x_240 = lean_ctor_get(x_235, 0); +lean_inc(x_240); +x_241 = lean_ctor_get(x_235, 1); +lean_inc(x_241); +if (lean_is_exclusive(x_235)) { + lean_ctor_release(x_235, 0); + lean_ctor_release(x_235, 1); + x_242 = x_235; +} else { + lean_dec_ref(x_235); + x_242 = lean_box(0); +} +if (lean_is_scalar(x_242)) { + x_243 = lean_alloc_ctor(1, 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; +lean_dec(x_223); +lean_dec(x_6); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_3); +lean_dec(x_2); +x_244 = lean_ctor_get(x_229, 0); +lean_inc(x_244); +x_245 = lean_ctor_get(x_229, 1); +lean_inc(x_245); +if (lean_is_exclusive(x_229)) { + lean_ctor_release(x_229, 0); + lean_ctor_release(x_229, 1); + x_246 = x_229; +} else { + lean_dec_ref(x_229); + x_246 = lean_box(0); +} +if (lean_is_scalar(x_246)) { + x_247 = lean_alloc_ctor(1, 2, 0); +} else { + x_247 = x_246; +} +lean_ctor_set(x_247, 0, x_244); +lean_ctor_set(x_247, 1, x_245); +return x_247; +} +} +} +} +else +{ +lean_object* x_248; +lean_dec(x_211); +lean_dec(x_210); +lean_dec(x_209); +lean_dec(x_6); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_3); +lean_dec(x_2); +if (lean_is_scalar(x_208)) { + x_248 = lean_alloc_ctor(0, 2, 0); +} else { + x_248 = x_208; +} +lean_ctor_set(x_248, 0, x_206); +lean_ctor_set(x_248, 1, x_207); +return x_248; +} +} +else +{ +lean_object* x_249; +lean_dec(x_210); +lean_dec(x_209); +lean_dec(x_6); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_3); +lean_dec(x_2); +if (lean_is_scalar(x_208)) { + x_249 = lean_alloc_ctor(0, 2, 0); +} else { + x_249 = x_208; +} +lean_ctor_set(x_249, 0, x_206); +lean_ctor_set(x_249, 1, x_207); +return x_249; +} +} +else +{ +lean_object* x_250; lean_object* x_251; lean_object* x_252; lean_object* x_253; +lean_dec(x_200); +lean_dec(x_6); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_3); +lean_dec(x_2); +x_250 = lean_ctor_get(x_205, 0); +lean_inc(x_250); +x_251 = lean_ctor_get(x_205, 1); +lean_inc(x_251); +if (lean_is_exclusive(x_205)) { + lean_ctor_release(x_205, 0); + lean_ctor_release(x_205, 1); + x_252 = x_205; +} else { + lean_dec_ref(x_205); + 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 +{ +uint8_t x_254; +lean_dec(x_6); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_254 = !lean_is_exclusive(x_17); +if (x_254 == 0) +{ +return x_17; +} +else +{ +lean_object* x_255; lean_object* x_256; lean_object* x_257; +x_255 = lean_ctor_get(x_17, 0); +x_256 = lean_ctor_get(x_17, 1); +lean_inc(x_256); +lean_inc(x_255); +lean_dec(x_17); +x_257 = lean_alloc_ctor(1, 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; uint8_t x_259; uint8_t x_260; uint8_t x_261; uint8_t x_262; uint8_t x_263; uint8_t x_264; uint8_t x_265; uint8_t x_266; uint8_t x_267; uint8_t x_268; uint8_t x_269; lean_object* x_270; uint8_t x_271; lean_object* x_272; +x_258 = lean_ctor_get_uint8(x_13, 0); +x_259 = lean_ctor_get_uint8(x_13, 1); +x_260 = lean_ctor_get_uint8(x_13, 2); +x_261 = lean_ctor_get_uint8(x_13, 3); +x_262 = lean_ctor_get_uint8(x_13, 4); +x_263 = lean_ctor_get_uint8(x_13, 5); +x_264 = lean_ctor_get_uint8(x_13, 6); +x_265 = lean_ctor_get_uint8(x_13, 7); +x_266 = lean_ctor_get_uint8(x_13, 8); +x_267 = lean_ctor_get_uint8(x_13, 10); +x_268 = lean_ctor_get_uint8(x_13, 11); +lean_dec(x_13); +x_269 = 2; +x_270 = lean_alloc_ctor(0, 0, 12); +lean_ctor_set_uint8(x_270, 0, x_258); +lean_ctor_set_uint8(x_270, 1, x_259); +lean_ctor_set_uint8(x_270, 2, x_260); +lean_ctor_set_uint8(x_270, 3, x_261); +lean_ctor_set_uint8(x_270, 4, x_262); +lean_ctor_set_uint8(x_270, 5, x_263); +lean_ctor_set_uint8(x_270, 6, x_264); +lean_ctor_set_uint8(x_270, 7, x_265); +lean_ctor_set_uint8(x_270, 8, x_266); +lean_ctor_set_uint8(x_270, 9, x_269); +lean_ctor_set_uint8(x_270, 10, x_267); +lean_ctor_set_uint8(x_270, 11, x_268); +lean_ctor_set(x_6, 0, x_270); +x_271 = 0; +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_6); +x_272 = l_Lean_Meta_forallMetaTelescope(x_11, x_271, x_6, x_7, x_8, x_9, x_10); +if (lean_obj_tag(x_272) == 0) +{ +lean_object* x_273; lean_object* x_274; lean_object* x_275; lean_object* x_276; lean_object* x_277; lean_object* x_278; uint8_t x_279; lean_object* x_280; lean_object* x_281; lean_object* x_282; +x_273 = lean_ctor_get(x_272, 0); +lean_inc(x_273); +x_274 = lean_ctor_get(x_273, 1); +lean_inc(x_274); +if (lean_is_exclusive(x_273)) { + lean_ctor_release(x_273, 0); + lean_ctor_release(x_273, 1); + x_275 = x_273; +} else { + lean_dec_ref(x_273); + x_275 = lean_box(0); +} +x_276 = lean_ctor_get(x_272, 1); +lean_inc(x_276); +lean_dec(x_272); +x_277 = lean_ctor_get(x_274, 1); +lean_inc(x_277); +if (lean_is_exclusive(x_274)) { + lean_ctor_release(x_274, 0); + lean_ctor_release(x_274, 1); + x_278 = x_274; +} else { + lean_dec_ref(x_274); + x_278 = lean_box(0); +} +x_279 = 0; +x_280 = lean_box(x_279); +lean_inc(x_2); +if (lean_is_scalar(x_278)) { + x_281 = lean_alloc_ctor(0, 2, 0); +} else { + x_281 = x_278; +} +lean_ctor_set(x_281, 0, x_2); +lean_ctor_set(x_281, 1, x_280); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_277); +lean_inc(x_3); +x_282 = l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_addPath___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_updateTree___spec__1(x_3, x_4, x_277, x_281, x_6, x_7, x_8, x_9, x_276); +if (lean_obj_tag(x_282) == 0) +{ +lean_object* x_283; lean_object* x_284; lean_object* x_285; lean_object* x_286; lean_object* x_287; +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); +} +x_286 = l_Lean_Expr_getAppFnArgs(x_277); +x_287 = lean_ctor_get(x_286, 0); +lean_inc(x_287); +if (lean_obj_tag(x_287) == 1) +{ +lean_object* x_288; +x_288 = lean_ctor_get(x_287, 0); +lean_inc(x_288); +if (lean_obj_tag(x_288) == 0) +{ +lean_object* x_289; lean_object* x_290; lean_object* x_291; lean_object* x_292; uint8_t x_293; +x_289 = lean_ctor_get(x_286, 1); +lean_inc(x_289); +if (lean_is_exclusive(x_286)) { + lean_ctor_release(x_286, 0); + lean_ctor_release(x_286, 1); + x_290 = x_286; +} else { + lean_dec_ref(x_286); + x_290 = lean_box(0); +} +x_291 = lean_ctor_get(x_287, 1); +lean_inc(x_291); +lean_dec(x_287); +x_292 = l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_updateTree___lambda__1___closed__1; +x_293 = lean_string_dec_eq(x_291, x_292); +lean_dec(x_291); +if (x_293 == 0) +{ +lean_object* x_294; +lean_dec(x_290); +lean_dec(x_289); +lean_dec(x_275); +lean_dec(x_6); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_3); +lean_dec(x_2); +if (lean_is_scalar(x_285)) { + x_294 = lean_alloc_ctor(0, 2, 0); +} else { + x_294 = x_285; +} +lean_ctor_set(x_294, 0, x_283); +lean_ctor_set(x_294, 1, x_284); +return x_294; +} +else +{ +lean_object* x_295; lean_object* x_296; uint8_t x_297; +x_295 = lean_array_get_size(x_289); +x_296 = lean_unsigned_to_nat(2u); +x_297 = lean_nat_dec_eq(x_295, x_296); +lean_dec(x_295); +if (x_297 == 0) +{ +lean_object* x_298; +lean_dec(x_290); +lean_dec(x_289); +lean_dec(x_275); +lean_dec(x_6); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_3); +lean_dec(x_2); +if (lean_is_scalar(x_285)) { + x_298 = lean_alloc_ctor(0, 2, 0); +} else { + x_298 = x_285; +} +lean_ctor_set(x_298, 0, x_283); +lean_ctor_set(x_298, 1, x_284); +return x_298; +} +else +{ +lean_object* x_299; lean_object* x_300; lean_object* x_301; lean_object* x_302; uint8_t x_303; lean_object* x_304; lean_object* x_305; lean_object* x_306; +lean_dec(x_285); +x_299 = lean_unsigned_to_nat(0u); +x_300 = lean_array_fget(x_289, x_299); +x_301 = lean_unsigned_to_nat(1u); +x_302 = lean_array_fget(x_289, x_301); +lean_dec(x_289); +x_303 = 1; +x_304 = lean_box(x_303); +lean_inc(x_2); +if (lean_is_scalar(x_290)) { + x_305 = lean_alloc_ctor(0, 2, 0); +} else { + x_305 = x_290; +} +lean_ctor_set(x_305, 0, x_2); +lean_ctor_set(x_305, 1, x_304); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_3); +x_306 = l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_addPath___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_updateTree___spec__1(x_3, x_283, x_302, x_305, x_6, x_7, x_8, x_9, x_284); +if (lean_obj_tag(x_306) == 0) +{ +lean_object* x_307; lean_object* x_308; uint8_t x_309; lean_object* x_310; lean_object* x_311; lean_object* x_312; +x_307 = lean_ctor_get(x_306, 0); +lean_inc(x_307); +x_308 = lean_ctor_get(x_306, 1); +lean_inc(x_308); +lean_dec(x_306); +x_309 = 2; +x_310 = lean_box(x_309); +if (lean_is_scalar(x_275)) { + x_311 = lean_alloc_ctor(0, 2, 0); +} else { + x_311 = x_275; +} +lean_ctor_set(x_311, 0, x_2); +lean_ctor_set(x_311, 1, x_310); +x_312 = l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_addPath___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_updateTree___spec__1(x_3, x_307, x_300, x_311, x_6, x_7, x_8, x_9, x_308); +if (lean_obj_tag(x_312) == 0) +{ +lean_object* x_313; lean_object* x_314; lean_object* x_315; lean_object* x_316; +x_313 = lean_ctor_get(x_312, 0); +lean_inc(x_313); +x_314 = lean_ctor_get(x_312, 1); +lean_inc(x_314); +if (lean_is_exclusive(x_312)) { + lean_ctor_release(x_312, 0); + lean_ctor_release(x_312, 1); + x_315 = x_312; +} else { + lean_dec_ref(x_312); + x_315 = lean_box(0); +} +if (lean_is_scalar(x_315)) { + x_316 = lean_alloc_ctor(0, 2, 0); +} else { + x_316 = x_315; +} +lean_ctor_set(x_316, 0, x_313); +lean_ctor_set(x_316, 1, x_314); +return x_316; +} +else +{ +lean_object* x_317; lean_object* x_318; lean_object* x_319; lean_object* x_320; +x_317 = lean_ctor_get(x_312, 0); +lean_inc(x_317); +x_318 = lean_ctor_get(x_312, 1); +lean_inc(x_318); +if (lean_is_exclusive(x_312)) { + lean_ctor_release(x_312, 0); + lean_ctor_release(x_312, 1); + x_319 = x_312; +} else { + lean_dec_ref(x_312); + x_319 = lean_box(0); +} +if (lean_is_scalar(x_319)) { + x_320 = lean_alloc_ctor(1, 2, 0); +} else { + x_320 = x_319; +} +lean_ctor_set(x_320, 0, x_317); +lean_ctor_set(x_320, 1, x_318); +return x_320; +} +} +else +{ +lean_object* x_321; lean_object* x_322; lean_object* x_323; lean_object* x_324; +lean_dec(x_300); +lean_dec(x_275); +lean_dec(x_6); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_3); +lean_dec(x_2); +x_321 = lean_ctor_get(x_306, 0); +lean_inc(x_321); +x_322 = lean_ctor_get(x_306, 1); +lean_inc(x_322); +if (lean_is_exclusive(x_306)) { + lean_ctor_release(x_306, 0); + lean_ctor_release(x_306, 1); + x_323 = x_306; +} else { + lean_dec_ref(x_306); + x_323 = lean_box(0); +} +if (lean_is_scalar(x_323)) { + x_324 = lean_alloc_ctor(1, 2, 0); +} else { + x_324 = x_323; +} +lean_ctor_set(x_324, 0, x_321); +lean_ctor_set(x_324, 1, x_322); +return x_324; +} +} +} +} +else +{ +lean_object* x_325; +lean_dec(x_288); +lean_dec(x_287); +lean_dec(x_286); +lean_dec(x_275); +lean_dec(x_6); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_3); +lean_dec(x_2); +if (lean_is_scalar(x_285)) { + x_325 = lean_alloc_ctor(0, 2, 0); +} else { + x_325 = x_285; +} +lean_ctor_set(x_325, 0, x_283); +lean_ctor_set(x_325, 1, x_284); +return x_325; +} +} +else +{ +lean_object* x_326; +lean_dec(x_287); +lean_dec(x_286); +lean_dec(x_275); +lean_dec(x_6); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_3); +lean_dec(x_2); +if (lean_is_scalar(x_285)) { + x_326 = lean_alloc_ctor(0, 2, 0); +} else { + x_326 = x_285; +} +lean_ctor_set(x_326, 0, x_283); +lean_ctor_set(x_326, 1, x_284); +return x_326; +} +} +else +{ +lean_object* x_327; lean_object* x_328; lean_object* x_329; lean_object* x_330; +lean_dec(x_277); +lean_dec(x_275); +lean_dec(x_6); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_3); +lean_dec(x_2); +x_327 = lean_ctor_get(x_282, 0); +lean_inc(x_327); +x_328 = lean_ctor_get(x_282, 1); +lean_inc(x_328); +if (lean_is_exclusive(x_282)) { + lean_ctor_release(x_282, 0); + lean_ctor_release(x_282, 1); + x_329 = x_282; +} else { + lean_dec_ref(x_282); + x_329 = lean_box(0); +} +if (lean_is_scalar(x_329)) { + x_330 = lean_alloc_ctor(1, 2, 0); +} else { + x_330 = x_329; +} +lean_ctor_set(x_330, 0, x_327); +lean_ctor_set(x_330, 1, x_328); +return x_330; +} +} +else +{ +lean_object* x_331; lean_object* x_332; lean_object* x_333; lean_object* x_334; +lean_dec(x_6); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_331 = lean_ctor_get(x_272, 0); +lean_inc(x_331); +x_332 = lean_ctor_get(x_272, 1); +lean_inc(x_332); +if (lean_is_exclusive(x_272)) { + lean_ctor_release(x_272, 0); + lean_ctor_release(x_272, 1); + x_333 = x_272; +} else { + lean_dec_ref(x_272); + x_333 = lean_box(0); +} +if (lean_is_scalar(x_333)) { + x_334 = lean_alloc_ctor(1, 2, 0); +} else { + x_334 = x_333; +} +lean_ctor_set(x_334, 0, x_331); +lean_ctor_set(x_334, 1, x_332); +return x_334; +} +} +} +else +{ +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; uint8_t x_342; uint8_t x_343; uint8_t x_344; uint8_t x_345; uint8_t x_346; uint8_t x_347; uint8_t x_348; uint8_t x_349; uint8_t x_350; uint8_t x_351; lean_object* x_352; uint8_t x_353; lean_object* x_354; lean_object* x_355; uint8_t x_356; lean_object* x_357; +x_335 = lean_ctor_get(x_6, 0); +x_336 = lean_ctor_get(x_6, 1); +x_337 = lean_ctor_get(x_6, 2); +x_338 = lean_ctor_get(x_6, 3); +x_339 = lean_ctor_get(x_6, 4); +x_340 = lean_ctor_get(x_6, 5); +lean_inc(x_340); +lean_inc(x_339); +lean_inc(x_338); +lean_inc(x_337); +lean_inc(x_336); +lean_inc(x_335); +lean_dec(x_6); +x_341 = lean_ctor_get_uint8(x_335, 0); +x_342 = lean_ctor_get_uint8(x_335, 1); +x_343 = lean_ctor_get_uint8(x_335, 2); +x_344 = lean_ctor_get_uint8(x_335, 3); +x_345 = lean_ctor_get_uint8(x_335, 4); +x_346 = lean_ctor_get_uint8(x_335, 5); +x_347 = lean_ctor_get_uint8(x_335, 6); +x_348 = lean_ctor_get_uint8(x_335, 7); +x_349 = lean_ctor_get_uint8(x_335, 8); +x_350 = lean_ctor_get_uint8(x_335, 10); +x_351 = lean_ctor_get_uint8(x_335, 11); +if (lean_is_exclusive(x_335)) { + x_352 = x_335; +} else { + lean_dec_ref(x_335); + x_352 = lean_box(0); +} +x_353 = 2; +if (lean_is_scalar(x_352)) { + x_354 = lean_alloc_ctor(0, 0, 12); +} else { + x_354 = x_352; +} +lean_ctor_set_uint8(x_354, 0, x_341); +lean_ctor_set_uint8(x_354, 1, x_342); +lean_ctor_set_uint8(x_354, 2, x_343); +lean_ctor_set_uint8(x_354, 3, x_344); +lean_ctor_set_uint8(x_354, 4, x_345); +lean_ctor_set_uint8(x_354, 5, x_346); +lean_ctor_set_uint8(x_354, 6, x_347); +lean_ctor_set_uint8(x_354, 7, x_348); +lean_ctor_set_uint8(x_354, 8, x_349); +lean_ctor_set_uint8(x_354, 9, x_353); +lean_ctor_set_uint8(x_354, 10, x_350); +lean_ctor_set_uint8(x_354, 11, x_351); +x_355 = lean_alloc_ctor(0, 6, 0); +lean_ctor_set(x_355, 0, x_354); +lean_ctor_set(x_355, 1, x_336); +lean_ctor_set(x_355, 2, x_337); +lean_ctor_set(x_355, 3, x_338); +lean_ctor_set(x_355, 4, x_339); +lean_ctor_set(x_355, 5, x_340); +x_356 = 0; +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_355); +x_357 = l_Lean_Meta_forallMetaTelescope(x_11, x_356, x_355, x_7, x_8, x_9, x_10); +if (lean_obj_tag(x_357) == 0) +{ +lean_object* x_358; lean_object* x_359; lean_object* x_360; lean_object* x_361; lean_object* x_362; lean_object* x_363; uint8_t x_364; lean_object* x_365; lean_object* x_366; lean_object* x_367; +x_358 = lean_ctor_get(x_357, 0); +lean_inc(x_358); +x_359 = lean_ctor_get(x_358, 1); +lean_inc(x_359); +if (lean_is_exclusive(x_358)) { + lean_ctor_release(x_358, 0); + lean_ctor_release(x_358, 1); + x_360 = x_358; +} else { + lean_dec_ref(x_358); + x_360 = lean_box(0); +} +x_361 = lean_ctor_get(x_357, 1); +lean_inc(x_361); +lean_dec(x_357); +x_362 = lean_ctor_get(x_359, 1); +lean_inc(x_362); +if (lean_is_exclusive(x_359)) { + lean_ctor_release(x_359, 0); + lean_ctor_release(x_359, 1); + x_363 = x_359; +} else { + lean_dec_ref(x_359); + x_363 = lean_box(0); +} +x_364 = 0; +x_365 = lean_box(x_364); +lean_inc(x_2); +if (lean_is_scalar(x_363)) { + x_366 = lean_alloc_ctor(0, 2, 0); +} else { + x_366 = x_363; +} +lean_ctor_set(x_366, 0, x_2); +lean_ctor_set(x_366, 1, x_365); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_355); +lean_inc(x_362); +lean_inc(x_3); +x_367 = l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_addPath___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_updateTree___spec__1(x_3, x_4, x_362, x_366, x_355, x_7, x_8, x_9, x_361); +if (lean_obj_tag(x_367) == 0) +{ +lean_object* x_368; lean_object* x_369; lean_object* x_370; lean_object* x_371; lean_object* x_372; +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); +} +x_371 = l_Lean_Expr_getAppFnArgs(x_362); +x_372 = lean_ctor_get(x_371, 0); +lean_inc(x_372); +if (lean_obj_tag(x_372) == 1) +{ +lean_object* x_373; +x_373 = lean_ctor_get(x_372, 0); +lean_inc(x_373); +if (lean_obj_tag(x_373) == 0) +{ +lean_object* x_374; lean_object* x_375; lean_object* x_376; lean_object* x_377; uint8_t x_378; +x_374 = lean_ctor_get(x_371, 1); +lean_inc(x_374); +if (lean_is_exclusive(x_371)) { + lean_ctor_release(x_371, 0); + lean_ctor_release(x_371, 1); + x_375 = x_371; +} else { + lean_dec_ref(x_371); + x_375 = lean_box(0); +} +x_376 = lean_ctor_get(x_372, 1); +lean_inc(x_376); +lean_dec(x_372); +x_377 = l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_updateTree___lambda__1___closed__1; +x_378 = lean_string_dec_eq(x_376, x_377); +lean_dec(x_376); +if (x_378 == 0) +{ +lean_object* x_379; +lean_dec(x_375); +lean_dec(x_374); +lean_dec(x_360); +lean_dec(x_355); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_3); +lean_dec(x_2); +if (lean_is_scalar(x_370)) { + x_379 = lean_alloc_ctor(0, 2, 0); +} else { + x_379 = x_370; +} +lean_ctor_set(x_379, 0, x_368); +lean_ctor_set(x_379, 1, x_369); +return x_379; +} +else +{ +lean_object* x_380; lean_object* x_381; uint8_t x_382; +x_380 = lean_array_get_size(x_374); +x_381 = lean_unsigned_to_nat(2u); +x_382 = lean_nat_dec_eq(x_380, x_381); +lean_dec(x_380); +if (x_382 == 0) +{ +lean_object* x_383; +lean_dec(x_375); +lean_dec(x_374); +lean_dec(x_360); +lean_dec(x_355); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_3); +lean_dec(x_2); +if (lean_is_scalar(x_370)) { + x_383 = lean_alloc_ctor(0, 2, 0); +} else { + x_383 = x_370; +} +lean_ctor_set(x_383, 0, x_368); +lean_ctor_set(x_383, 1, x_369); +return x_383; +} +else +{ +lean_object* x_384; lean_object* x_385; lean_object* x_386; lean_object* x_387; uint8_t x_388; lean_object* x_389; lean_object* x_390; lean_object* x_391; +lean_dec(x_370); +x_384 = lean_unsigned_to_nat(0u); +x_385 = lean_array_fget(x_374, x_384); +x_386 = lean_unsigned_to_nat(1u); +x_387 = lean_array_fget(x_374, x_386); +lean_dec(x_374); +x_388 = 1; +x_389 = lean_box(x_388); +lean_inc(x_2); +if (lean_is_scalar(x_375)) { + x_390 = lean_alloc_ctor(0, 2, 0); +} else { + x_390 = x_375; +} +lean_ctor_set(x_390, 0, x_2); +lean_ctor_set(x_390, 1, x_389); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_355); +lean_inc(x_3); +x_391 = l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_addPath___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_updateTree___spec__1(x_3, x_368, x_387, x_390, x_355, x_7, x_8, x_9, x_369); +if (lean_obj_tag(x_391) == 0) +{ +lean_object* x_392; lean_object* x_393; uint8_t x_394; lean_object* x_395; lean_object* x_396; lean_object* x_397; +x_392 = lean_ctor_get(x_391, 0); +lean_inc(x_392); +x_393 = lean_ctor_get(x_391, 1); +lean_inc(x_393); +lean_dec(x_391); +x_394 = 2; +x_395 = lean_box(x_394); +if (lean_is_scalar(x_360)) { + x_396 = lean_alloc_ctor(0, 2, 0); +} else { + x_396 = x_360; +} +lean_ctor_set(x_396, 0, x_2); +lean_ctor_set(x_396, 1, x_395); +x_397 = l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_addPath___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_updateTree___spec__1(x_3, x_392, x_385, x_396, x_355, x_7, x_8, x_9, x_393); +if (lean_obj_tag(x_397) == 0) +{ +lean_object* x_398; lean_object* x_399; lean_object* x_400; lean_object* x_401; +x_398 = lean_ctor_get(x_397, 0); +lean_inc(x_398); +x_399 = lean_ctor_get(x_397, 1); +lean_inc(x_399); +if (lean_is_exclusive(x_397)) { + lean_ctor_release(x_397, 0); + lean_ctor_release(x_397, 1); + x_400 = x_397; +} else { + lean_dec_ref(x_397); + x_400 = lean_box(0); +} +if (lean_is_scalar(x_400)) { + x_401 = lean_alloc_ctor(0, 2, 0); +} else { + x_401 = x_400; +} +lean_ctor_set(x_401, 0, x_398); +lean_ctor_set(x_401, 1, x_399); +return x_401; +} +else +{ +lean_object* x_402; lean_object* x_403; lean_object* x_404; lean_object* x_405; +x_402 = lean_ctor_get(x_397, 0); +lean_inc(x_402); +x_403 = lean_ctor_get(x_397, 1); +lean_inc(x_403); +if (lean_is_exclusive(x_397)) { + lean_ctor_release(x_397, 0); + lean_ctor_release(x_397, 1); + x_404 = x_397; +} else { + lean_dec_ref(x_397); + x_404 = lean_box(0); +} +if (lean_is_scalar(x_404)) { + x_405 = lean_alloc_ctor(1, 2, 0); +} else { + x_405 = x_404; +} +lean_ctor_set(x_405, 0, x_402); +lean_ctor_set(x_405, 1, x_403); +return x_405; +} +} +else +{ +lean_object* x_406; lean_object* x_407; lean_object* x_408; lean_object* x_409; +lean_dec(x_385); +lean_dec(x_360); +lean_dec(x_355); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_3); +lean_dec(x_2); +x_406 = lean_ctor_get(x_391, 0); +lean_inc(x_406); +x_407 = lean_ctor_get(x_391, 1); +lean_inc(x_407); +if (lean_is_exclusive(x_391)) { + lean_ctor_release(x_391, 0); + lean_ctor_release(x_391, 1); + x_408 = x_391; +} else { + lean_dec_ref(x_391); + x_408 = lean_box(0); +} +if (lean_is_scalar(x_408)) { + x_409 = lean_alloc_ctor(1, 2, 0); +} else { + x_409 = x_408; +} +lean_ctor_set(x_409, 0, x_406); +lean_ctor_set(x_409, 1, x_407); +return x_409; +} +} +} +} +else +{ +lean_object* x_410; +lean_dec(x_373); +lean_dec(x_372); +lean_dec(x_371); +lean_dec(x_360); +lean_dec(x_355); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_3); +lean_dec(x_2); +if (lean_is_scalar(x_370)) { + x_410 = lean_alloc_ctor(0, 2, 0); +} else { + x_410 = x_370; +} +lean_ctor_set(x_410, 0, x_368); +lean_ctor_set(x_410, 1, x_369); +return x_410; +} +} +else +{ +lean_object* x_411; +lean_dec(x_372); +lean_dec(x_371); +lean_dec(x_360); +lean_dec(x_355); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_3); +lean_dec(x_2); +if (lean_is_scalar(x_370)) { + x_411 = lean_alloc_ctor(0, 2, 0); +} else { + x_411 = x_370; +} +lean_ctor_set(x_411, 0, x_368); +lean_ctor_set(x_411, 1, x_369); +return x_411; +} +} +else +{ +lean_object* x_412; lean_object* x_413; lean_object* x_414; lean_object* x_415; +lean_dec(x_362); +lean_dec(x_360); +lean_dec(x_355); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_3); +lean_dec(x_2); +x_412 = lean_ctor_get(x_367, 0); +lean_inc(x_412); +x_413 = lean_ctor_get(x_367, 1); +lean_inc(x_413); +if (lean_is_exclusive(x_367)) { + lean_ctor_release(x_367, 0); + lean_ctor_release(x_367, 1); + x_414 = x_367; +} else { + lean_dec_ref(x_367); + x_414 = lean_box(0); +} +if (lean_is_scalar(x_414)) { + x_415 = lean_alloc_ctor(1, 2, 0); +} else { + x_415 = x_414; +} +lean_ctor_set(x_415, 0, x_412); +lean_ctor_set(x_415, 1, x_413); +return x_415; +} +} +else +{ +lean_object* x_416; lean_object* x_417; lean_object* x_418; lean_object* x_419; +lean_dec(x_355); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_416 = lean_ctor_get(x_357, 0); +lean_inc(x_416); +x_417 = lean_ctor_get(x_357, 1); +lean_inc(x_417); +if (lean_is_exclusive(x_357)) { + lean_ctor_release(x_357, 0); + lean_ctor_release(x_357, 1); + x_418 = x_357; +} else { + lean_dec_ref(x_357); + x_418 = lean_box(0); +} +if (lean_is_scalar(x_418)) { + x_419 = lean_alloc_ctor(1, 2, 0); +} else { + x_419 = x_418; +} +lean_ctor_set(x_419, 0, x_416); +lean_ctor_set(x_419, 1, x_417); +return x_419; +} +} +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_updateTree___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) { +_start: +{ +lean_object* x_11; uint8_t x_12; +lean_dec(x_5); +x_11 = lean_st_ref_get(x_9, x_10); +x_12 = !lean_is_exclusive(x_11); +if (x_12 == 0) +{ +lean_object* x_13; lean_object* x_14; lean_object* x_15; uint8_t x_16; +x_13 = lean_ctor_get(x_11, 0); +x_14 = lean_ctor_get(x_11, 1); +x_15 = lean_ctor_get(x_13, 0); +lean_inc(x_15); +lean_dec(x_13); +lean_inc(x_2); +x_16 = l_Lean_Meta_allowCompletion(x_15, x_2); +if (x_16 == 0) +{ +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_3); +lean_dec(x_2); +lean_ctor_set(x_11, 0, x_4); +return x_11; +} +else +{ +lean_object* x_17; lean_object* x_18; +lean_free_object(x_11); +x_17 = lean_box(0); +x_18 = l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_updateTree___lambda__1(x_1, x_2, x_3, x_4, x_17, x_6, x_7, x_8, x_9, x_14); +return x_18; +} +} +else +{ +lean_object* x_19; lean_object* x_20; lean_object* x_21; uint8_t x_22; +x_19 = lean_ctor_get(x_11, 0); +x_20 = lean_ctor_get(x_11, 1); +lean_inc(x_20); +lean_inc(x_19); +lean_dec(x_11); +x_21 = lean_ctor_get(x_19, 0); +lean_inc(x_21); +lean_dec(x_19); +lean_inc(x_2); +x_22 = l_Lean_Meta_allowCompletion(x_21, x_2); +if (x_22 == 0) +{ +lean_object* x_23; +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_3); +lean_dec(x_2); +x_23 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_23, 0, x_4); +lean_ctor_set(x_23, 1, x_20); +return x_23; +} +else +{ +lean_object* x_24; lean_object* x_25; +x_24 = lean_box(0); +x_25 = l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_updateTree___lambda__1(x_1, x_2, x_3, x_4, x_24, x_6, x_7, x_8, x_9, x_20); +return x_25; +} +} +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_updateTree(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: +{ +uint8_t x_10; +x_10 = l_Lean_ConstantInfo_isUnsafe(x_4); +if (x_10 == 0) +{ +lean_object* x_11; lean_object* x_12; +x_11 = lean_box(0); +x_12 = l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_updateTree___lambda__2(x_4, x_3, x_1, x_2, x_11, x_5, x_6, x_7, x_8, x_9); +lean_dec(x_4); +return x_12; +} +else +{ +lean_object* x_13; +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_1); +x_13 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_13, 0, x_2); +lean_ctor_set(x_13, 1, x_9); +return x_13; +} +} +} +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_findAtAux___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_updateTree___spec__5___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +_start: +{ +lean_object* x_6; +x_6 = l_Lean_PersistentHashMap_findAtAux___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_updateTree___spec__5(x_1, x_2, x_3, x_4, x_5); +lean_dec(x_5); +lean_dec(x_2); +lean_dec(x_1); +return x_6; +} +} +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_findAux___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_updateTree___spec__4___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +size_t x_4; lean_object* x_5; +x_4 = lean_unbox_usize(x_2); +lean_dec(x_2); +x_5 = l_Lean_PersistentHashMap_findAux___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_updateTree___spec__4(x_1, x_4, x_3); +lean_dec(x_3); +return x_5; +} +} +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux_traverse___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_updateTree___spec__8___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: +{ +size_t x_7; lean_object* x_8; +x_7 = lean_unbox_usize(x_1); +lean_dec(x_1); +x_8 = l_Lean_PersistentHashMap_insertAux_traverse___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_updateTree___spec__8(x_7, x_2, x_3, x_4, x_5, x_6); +lean_dec(x_3); +lean_dec(x_2); +return x_8; +} +} +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_updateTree___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; +x_6 = lean_unbox_usize(x_2); +lean_dec(x_2); +x_7 = lean_unbox_usize(x_3); +lean_dec(x_3); +x_8 = l_Lean_PersistentHashMap_insertAux___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_updateTree___spec__7(x_1, x_6, x_7, x_4, x_5); +return x_8; +} +} +LEAN_EXPORT lean_object* l___private_Init_Data_Array_BinSearch_0__Array_binInsertAux___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_updateTree___spec__13___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) { +_start: +{ +lean_object* x_9; +x_9 = l___private_Init_Data_Array_BinSearch_0__Array_binInsertAux___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_updateTree___spec__13(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +lean_dec(x_3); +lean_dec(x_1); +return x_9; +} +} +LEAN_EXPORT lean_object* l_Array_binInsertM___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_updateTree___spec__12___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_binInsertM___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_updateTree___spec__12(x_1, x_2, x_3, x_4, x_5, x_6); +lean_dec(x_3); +lean_dec(x_1); +return x_7; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_DiscrTree_0__Lean_Meta_DiscrTree_insertAux___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_updateTree___spec__10___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___private_Lean_Meta_DiscrTree_0__Lean_Meta_DiscrTree_insertAux___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_updateTree___spec__10(x_1, x_2, x_3, x_4); +lean_dec(x_3); +lean_dec(x_1); +return x_5; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_updateTree___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___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_updateTree___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_1); +return x_11; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_updateTree___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) { +_start: +{ +lean_object* x_11; +x_11 = l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_updateTree___lambda__2(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_1); +return x_11; +} +} +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Meta_LibrarySearch_DiscrTreeFinder_buildImportCache___spec__1(size_t x_1, size_t x_2, lean_object* x_3) { +_start: +{ +uint8_t x_4; +x_4 = lean_usize_dec_lt(x_2, x_1); +if (x_4 == 0) +{ +return x_3; +} +else +{ +lean_object* x_5; lean_object* x_6; lean_object* x_7; size_t x_8; size_t x_9; uint8_t x_10; +x_5 = lean_array_uget(x_3, x_2); +x_6 = lean_unsigned_to_nat(0u); +x_7 = lean_array_uset(x_3, x_2, x_6); +x_8 = 1; +x_9 = lean_usize_add(x_2, x_8); +x_10 = !lean_is_exclusive(x_5); +if (x_10 == 0) +{ +lean_object* x_11; uint8_t x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; +x_11 = lean_ctor_get(x_5, 0); +x_12 = 1; +lean_inc(x_11); +x_13 = l_Lean_Name_toString(x_11, x_12); +x_14 = lean_string_length(x_13); +lean_dec(x_13); +x_15 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_15, 0, x_14); +lean_ctor_set(x_15, 1, x_5); +x_16 = lean_array_uset(x_7, x_2, x_15); +x_2 = x_9; +x_3 = x_16; +goto _start; +} +else +{ +lean_object* x_18; lean_object* x_19; uint8_t x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; +x_18 = lean_ctor_get(x_5, 0); +x_19 = lean_ctor_get(x_5, 1); +lean_inc(x_19); +lean_inc(x_18); +lean_dec(x_5); +x_20 = 1; +lean_inc(x_18); +x_21 = l_Lean_Name_toString(x_18, x_20); +x_22 = lean_string_length(x_21); +lean_dec(x_21); +x_23 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_23, 0, x_18); +lean_ctor_set(x_23, 1, x_19); +x_24 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_24, 0, x_22); +lean_ctor_set(x_24, 1, x_23); +x_25 = lean_array_uset(x_7, x_2, x_24); +x_2 = x_9; +x_3 = x_25; +goto _start; +} +} +} +} +LEAN_EXPORT uint8_t l_Array_qsort_sort___at_Lean_Meta_LibrarySearch_DiscrTreeFinder_buildImportCache___spec__2___lambda__1(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; lean_object* x_4; uint8_t x_5; +x_3 = lean_ctor_get(x_2, 0); +x_4 = lean_ctor_get(x_1, 0); +x_5 = lean_nat_dec_lt(x_3, x_4); +return x_5; +} +} +static lean_object* _init_l_Array_qsort_sort___at_Lean_Meta_LibrarySearch_DiscrTreeFinder_buildImportCache___spec__2___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Array_qsort_sort___at_Lean_Meta_LibrarySearch_DiscrTreeFinder_buildImportCache___spec__2___lambda__1___boxed), 2, 0); +return x_1; +} +} +LEAN_EXPORT lean_object* l_Array_qsort_sort___at_Lean_Meta_LibrarySearch_DiscrTreeFinder_buildImportCache___spec__2(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_dec(x_2); +return x_1; +} +else +{ +lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; uint8_t x_9; +x_5 = l_Array_qsort_sort___at_Lean_Meta_LibrarySearch_DiscrTreeFinder_buildImportCache___spec__2___closed__1; +lean_inc(x_2); +x_6 = l_Array_qpartition___rarg(x_1, x_5, x_2, x_3); +x_7 = lean_ctor_get(x_6, 0); +lean_inc(x_7); +x_8 = lean_ctor_get(x_6, 1); +lean_inc(x_8); +lean_dec(x_6); +x_9 = lean_nat_dec_le(x_3, x_7); +if (x_9 == 0) +{ +lean_object* x_10; lean_object* x_11; lean_object* x_12; +x_10 = l_Array_qsort_sort___at_Lean_Meta_LibrarySearch_DiscrTreeFinder_buildImportCache___spec__2(x_8, x_2, x_7); +x_11 = lean_unsigned_to_nat(1u); +x_12 = lean_nat_add(x_7, x_11); +lean_dec(x_7); +x_1 = x_10; +x_2 = x_12; +goto _start; +} +else +{ +lean_dec(x_7); +lean_dec(x_2); +return x_8; +} +} +} +} +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Meta_LibrarySearch_DiscrTreeFinder_buildImportCache___spec__3(size_t x_1, size_t x_2, lean_object* x_3) { +_start: +{ +uint8_t x_4; +x_4 = lean_usize_dec_lt(x_2, x_1); +if (x_4 == 0) +{ +return x_3; +} +else +{ +lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; size_t x_9; size_t x_10; lean_object* x_11; +x_5 = lean_array_uget(x_3, x_2); +x_6 = lean_unsigned_to_nat(0u); +x_7 = lean_array_uset(x_3, x_2, x_6); +x_8 = lean_ctor_get(x_5, 1); +lean_inc(x_8); +lean_dec(x_5); +x_9 = 1; +x_10 = lean_usize_add(x_2, x_9); +x_11 = lean_array_uset(x_7, x_2, x_8); +x_2 = x_10; +x_3 = x_11; +goto _start; +} +} +} +LEAN_EXPORT lean_object* l_Lean_AssocList_foldlM___at_Lean_Meta_LibrarySearch_DiscrTreeFinder_buildImportCache___spec__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) { +_start: +{ +if (lean_obj_tag(x_3) == 0) +{ +lean_object* x_9; +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_1); +x_9 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_9, 0, x_2); +lean_ctor_set(x_9, 1, x_8); +return x_9; +} +else +{ +lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; +x_10 = lean_ctor_get(x_3, 0); +lean_inc(x_10); +x_11 = lean_ctor_get(x_3, 1); +lean_inc(x_11); +x_12 = lean_ctor_get(x_3, 2); +lean_inc(x_12); +lean_dec(x_3); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_1); +x_13 = l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_updateTree(x_1, x_2, x_10, x_11, x_4, x_5, x_6, x_7, x_8); +if (lean_obj_tag(x_13) == 0) +{ +lean_object* x_14; lean_object* x_15; +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_2 = x_14; +x_3 = x_12; +x_8 = x_15; +goto _start; +} +else +{ +uint8_t x_17; +lean_dec(x_12); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_1); +x_17 = !lean_is_exclusive(x_13); +if (x_17 == 0) +{ +return x_13; +} +else +{ +lean_object* x_18; lean_object* x_19; lean_object* x_20; +x_18 = lean_ctor_get(x_13, 0); +x_19 = lean_ctor_get(x_13, 1); +lean_inc(x_19); +lean_inc(x_18); +lean_dec(x_13); +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_Array_foldlMUnsafe_fold___at_Lean_Meta_LibrarySearch_DiscrTreeFinder_buildImportCache___spec__5(lean_object* x_1, lean_object* x_2, size_t x_3, size_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) { +_start: +{ +uint8_t x_11; +x_11 = lean_usize_dec_eq(x_3, x_4); +if (x_11 == 0) +{ +lean_object* x_12; lean_object* x_13; +x_12 = lean_array_uget(x_2, x_3); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_1); +x_13 = l_Lean_AssocList_foldlM___at_Lean_Meta_LibrarySearch_DiscrTreeFinder_buildImportCache___spec__4(x_1, x_5, 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; size_t x_16; size_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); +x_16 = 1; +x_17 = lean_usize_add(x_3, x_16); +x_3 = x_17; +x_5 = x_14; +x_10 = x_15; +goto _start; +} +else +{ +uint8_t x_19; +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_1); +x_19 = !lean_is_exclusive(x_13); +if (x_19 == 0) +{ +return x_13; +} +else +{ +lean_object* x_20; lean_object* x_21; lean_object* x_22; +x_20 = lean_ctor_get(x_13, 0); +x_21 = lean_ctor_get(x_13, 1); +lean_inc(x_21); +lean_inc(x_20); +lean_dec(x_13); +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; +} +} +} +else +{ +lean_object* x_23; +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_1); +x_23 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_23, 0, x_5); +lean_ctor_set(x_23, 1, x_10); +return x_23; +} +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_LibrarySearch_DiscrTreeFinder_buildImportCache___lambda__1(lean_object* x_1) { +_start: +{ +lean_object* x_2; size_t x_3; size_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; size_t x_12; lean_object* x_13; +x_2 = lean_array_get_size(x_1); +x_3 = lean_usize_of_nat(x_2); +lean_dec(x_2); +x_4 = 0; +x_5 = l_Array_mapMUnsafe_map___at_Lean_Meta_LibrarySearch_DiscrTreeFinder_buildImportCache___spec__1(x_3, x_4, x_1); +x_6 = lean_array_get_size(x_5); +x_7 = lean_unsigned_to_nat(1u); +x_8 = lean_nat_sub(x_6, x_7); +lean_dec(x_6); +x_9 = lean_unsigned_to_nat(0u); +x_10 = l_Array_qsort_sort___at_Lean_Meta_LibrarySearch_DiscrTreeFinder_buildImportCache___spec__2(x_5, x_9, x_8); +lean_dec(x_8); +x_11 = lean_array_get_size(x_10); +x_12 = lean_usize_of_nat(x_11); +lean_dec(x_11); +x_13 = l_Array_mapMUnsafe_map___at_Lean_Meta_LibrarySearch_DiscrTreeFinder_buildImportCache___spec__3(x_12, x_4, x_10); +return x_13; +} +} +static lean_object* _init_l_Lean_Meta_LibrarySearch_DiscrTreeFinder_buildImportCache___lambda__2___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = l_Lean_PersistentHashMap_mkEmptyEntriesArray(lean_box(0), lean_box(0)); +return x_1; +} +} +static lean_object* _init_l_Lean_Meta_LibrarySearch_DiscrTreeFinder_buildImportCache___lambda__2___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Meta_LibrarySearch_DiscrTreeFinder_buildImportCache___lambda__2___closed__1; +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_LibrarySearch_DiscrTreeFinder_buildImportCache___lambda__2___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Meta_LibrarySearch_DiscrTreeFinder_buildImportCache___lambda__2___closed__2; +x_2 = lean_unsigned_to_nat(0u); +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_Meta_LibrarySearch_DiscrTreeFinder_buildImportCache___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; uint8_t x_9; +x_8 = lean_st_ref_get(x_6, x_7); +x_9 = !lean_is_exclusive(x_8); +if (x_9 == 0) +{ +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; uint8_t x_18; +x_10 = lean_ctor_get(x_8, 0); +x_11 = lean_ctor_get(x_8, 1); +x_12 = lean_ctor_get(x_10, 0); +lean_inc(x_12); +lean_dec(x_10); +x_13 = lean_ctor_get(x_12, 1); +lean_inc(x_13); +lean_dec(x_12); +x_14 = lean_ctor_get(x_13, 0); +lean_inc(x_14); +lean_dec(x_13); +x_15 = lean_ctor_get(x_14, 1); +lean_inc(x_15); +lean_dec(x_14); +x_16 = lean_array_get_size(x_15); +x_17 = lean_unsigned_to_nat(0u); +x_18 = lean_nat_dec_lt(x_17, x_16); +if (x_18 == 0) +{ +lean_object* x_19; lean_object* x_20; +lean_dec(x_16); +lean_dec(x_15); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_19 = l_Lean_Meta_LibrarySearch_DiscrTreeFinder_buildImportCache___lambda__2___closed__3; +x_20 = l_Lean_Meta_DiscrTree_mapArraysM___at_Lean_Meta_DiscrTree_mapArrays___spec__1___rarg(x_19, x_1); +lean_ctor_set(x_8, 0, x_20); +return x_8; +} +else +{ +uint8_t x_21; +x_21 = lean_nat_dec_le(x_16, x_16); +if (x_21 == 0) +{ +lean_object* x_22; lean_object* x_23; +lean_dec(x_16); +lean_dec(x_15); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_22 = l_Lean_Meta_LibrarySearch_DiscrTreeFinder_buildImportCache___lambda__2___closed__3; +x_23 = l_Lean_Meta_DiscrTree_mapArraysM___at_Lean_Meta_DiscrTree_mapArrays___spec__1___rarg(x_22, x_1); +lean_ctor_set(x_8, 0, x_23); +return x_8; +} +else +{ +size_t x_24; size_t x_25; lean_object* x_26; lean_object* x_27; +lean_free_object(x_8); +x_24 = 0; +x_25 = lean_usize_of_nat(x_16); +lean_dec(x_16); +x_26 = l_Lean_Meta_LibrarySearch_DiscrTreeFinder_buildImportCache___lambda__2___closed__3; +x_27 = l_Array_foldlMUnsafe_fold___at_Lean_Meta_LibrarySearch_DiscrTreeFinder_buildImportCache___spec__5(x_2, x_15, x_24, x_25, x_26, x_3, x_4, x_5, x_6, x_11); +lean_dec(x_15); +if (lean_obj_tag(x_27) == 0) +{ +uint8_t x_28; +x_28 = !lean_is_exclusive(x_27); +if (x_28 == 0) +{ +lean_object* x_29; lean_object* x_30; +x_29 = lean_ctor_get(x_27, 0); +x_30 = l_Lean_Meta_DiscrTree_mapArraysM___at_Lean_Meta_DiscrTree_mapArrays___spec__1___rarg(x_29, x_1); +lean_ctor_set(x_27, 0, x_30); +return x_27; +} +else +{ +lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; +x_31 = lean_ctor_get(x_27, 0); +x_32 = lean_ctor_get(x_27, 1); +lean_inc(x_32); +lean_inc(x_31); +lean_dec(x_27); +x_33 = l_Lean_Meta_DiscrTree_mapArraysM___at_Lean_Meta_DiscrTree_mapArrays___spec__1___rarg(x_31, x_1); +x_34 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_34, 0, x_33); +lean_ctor_set(x_34, 1, x_32); +return x_34; +} +} +else +{ +uint8_t x_35; +lean_dec(x_1); +x_35 = !lean_is_exclusive(x_27); +if (x_35 == 0) +{ +return x_27; +} +else +{ +lean_object* x_36; lean_object* x_37; lean_object* x_38; +x_36 = lean_ctor_get(x_27, 0); +x_37 = lean_ctor_get(x_27, 1); +lean_inc(x_37); +lean_inc(x_36); +lean_dec(x_27); +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; +} +} +} +} +} +else +{ +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; +x_39 = lean_ctor_get(x_8, 0); +x_40 = lean_ctor_get(x_8, 1); +lean_inc(x_40); +lean_inc(x_39); +lean_dec(x_8); +x_41 = lean_ctor_get(x_39, 0); +lean_inc(x_41); +lean_dec(x_39); +x_42 = lean_ctor_get(x_41, 1); +lean_inc(x_42); +lean_dec(x_41); +x_43 = lean_ctor_get(x_42, 0); +lean_inc(x_43); +lean_dec(x_42); +x_44 = lean_ctor_get(x_43, 1); +lean_inc(x_44); +lean_dec(x_43); +x_45 = lean_array_get_size(x_44); +x_46 = lean_unsigned_to_nat(0u); +x_47 = lean_nat_dec_lt(x_46, x_45); +if (x_47 == 0) +{ +lean_object* x_48; lean_object* x_49; lean_object* x_50; +lean_dec(x_45); +lean_dec(x_44); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_48 = l_Lean_Meta_LibrarySearch_DiscrTreeFinder_buildImportCache___lambda__2___closed__3; +x_49 = l_Lean_Meta_DiscrTree_mapArraysM___at_Lean_Meta_DiscrTree_mapArrays___spec__1___rarg(x_48, x_1); +x_50 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_50, 0, x_49); +lean_ctor_set(x_50, 1, x_40); +return x_50; +} +else +{ +uint8_t x_51; +x_51 = lean_nat_dec_le(x_45, x_45); +if (x_51 == 0) +{ +lean_object* x_52; lean_object* x_53; lean_object* x_54; +lean_dec(x_45); +lean_dec(x_44); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_52 = l_Lean_Meta_LibrarySearch_DiscrTreeFinder_buildImportCache___lambda__2___closed__3; +x_53 = l_Lean_Meta_DiscrTree_mapArraysM___at_Lean_Meta_DiscrTree_mapArrays___spec__1___rarg(x_52, x_1); +x_54 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_54, 0, x_53); +lean_ctor_set(x_54, 1, x_40); +return x_54; +} +else +{ +size_t x_55; size_t x_56; lean_object* x_57; lean_object* x_58; +x_55 = 0; +x_56 = lean_usize_of_nat(x_45); +lean_dec(x_45); +x_57 = l_Lean_Meta_LibrarySearch_DiscrTreeFinder_buildImportCache___lambda__2___closed__3; +x_58 = l_Array_foldlMUnsafe_fold___at_Lean_Meta_LibrarySearch_DiscrTreeFinder_buildImportCache___spec__5(x_2, x_44, x_55, x_56, x_57, x_3, x_4, x_5, x_6, x_40); +lean_dec(x_44); +if (lean_obj_tag(x_58) == 0) +{ +lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; +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_58); + x_61 = lean_box(0); +} +x_62 = l_Lean_Meta_DiscrTree_mapArraysM___at_Lean_Meta_DiscrTree_mapArrays___spec__1___rarg(x_59, x_1); +if (lean_is_scalar(x_61)) { + x_63 = lean_alloc_ctor(0, 2, 0); +} else { + x_63 = x_61; +} +lean_ctor_set(x_63, 0, x_62); +lean_ctor_set(x_63, 1, x_60); +return x_63; +} +else +{ +lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; +lean_dec(x_1); +x_64 = lean_ctor_get(x_58, 0); +lean_inc(x_64); +x_65 = lean_ctor_get(x_58, 1); +lean_inc(x_65); +if (lean_is_exclusive(x_58)) { + lean_ctor_release(x_58, 0); + lean_ctor_release(x_58, 1); + x_66 = x_58; +} else { + lean_dec_ref(x_58); + x_66 = lean_box(0); +} +if (lean_is_scalar(x_66)) { + x_67 = lean_alloc_ctor(1, 2, 0); +} else { + x_67 = x_66; +} +lean_ctor_set(x_67, 0, x_64); +lean_ctor_set(x_67, 1, x_65); +return x_67; +} +} +} +} +} +} +static lean_object* _init_l_Lean_Meta_LibrarySearch_DiscrTreeFinder_buildImportCache___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Meta_LibrarySearch_DiscrTreeFinder_buildImportCache___lambda__1), 1, 0); +return x_1; +} +} +static lean_object* _init_l_Lean_Meta_LibrarySearch_DiscrTreeFinder_buildImportCache___closed__2() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("apply\?: init cache", 18); +return x_1; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_LibrarySearch_DiscrTreeFinder_buildImportCache(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; lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; +x_7 = lean_ctor_get(x_4, 2); +lean_inc(x_7); +x_8 = l_Lean_Meta_LibrarySearch_DiscrTreeFinder_buildImportCache___closed__1; +x_9 = lean_alloc_closure((void*)(l_Lean_Meta_LibrarySearch_DiscrTreeFinder_buildImportCache___lambda__2), 7, 2); +lean_closure_set(x_9, 0, x_8); +lean_closure_set(x_9, 1, x_1); +x_10 = l_Lean_Meta_LibrarySearch_DiscrTreeFinder_buildImportCache___closed__2; +x_11 = lean_box(0); +x_12 = l_Lean_profileitM___at_Lean_Meta_synthInstance_x3f___spec__16___rarg(x_10, x_7, x_9, x_11, x_2, x_3, x_4, x_5, x_6); +lean_dec(x_7); +return x_12; +} +} +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Meta_LibrarySearch_DiscrTreeFinder_buildImportCache___spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +size_t x_4; size_t x_5; lean_object* x_6; +x_4 = lean_unbox_usize(x_1); +lean_dec(x_1); +x_5 = lean_unbox_usize(x_2); +lean_dec(x_2); +x_6 = l_Array_mapMUnsafe_map___at_Lean_Meta_LibrarySearch_DiscrTreeFinder_buildImportCache___spec__1(x_4, x_5, x_3); +return x_6; +} +} +LEAN_EXPORT lean_object* l_Array_qsort_sort___at_Lean_Meta_LibrarySearch_DiscrTreeFinder_buildImportCache___spec__2___lambda__1___boxed(lean_object* x_1, lean_object* x_2) { +_start: +{ +uint8_t x_3; lean_object* x_4; +x_3 = l_Array_qsort_sort___at_Lean_Meta_LibrarySearch_DiscrTreeFinder_buildImportCache___spec__2___lambda__1(x_1, x_2); +lean_dec(x_2); +lean_dec(x_1); +x_4 = lean_box(x_3); +return x_4; +} +} +LEAN_EXPORT lean_object* l_Array_qsort_sort___at_Lean_Meta_LibrarySearch_DiscrTreeFinder_buildImportCache___spec__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +lean_object* x_4; +x_4 = l_Array_qsort_sort___at_Lean_Meta_LibrarySearch_DiscrTreeFinder_buildImportCache___spec__2(x_1, x_2, x_3); +lean_dec(x_3); +return x_4; +} +} +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Meta_LibrarySearch_DiscrTreeFinder_buildImportCache___spec__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +size_t x_4; size_t x_5; lean_object* x_6; +x_4 = lean_unbox_usize(x_1); +lean_dec(x_1); +x_5 = lean_unbox_usize(x_2); +lean_dec(x_2); +x_6 = l_Array_mapMUnsafe_map___at_Lean_Meta_LibrarySearch_DiscrTreeFinder_buildImportCache___spec__3(x_4, x_5, x_3); +return x_6; +} +} +LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Meta_LibrarySearch_DiscrTreeFinder_buildImportCache___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) { +_start: +{ +size_t x_11; size_t x_12; lean_object* x_13; +x_11 = lean_unbox_usize(x_3); +lean_dec(x_3); +x_12 = lean_unbox_usize(x_4); +lean_dec(x_4); +x_13 = l_Array_foldlMUnsafe_fold___at_Lean_Meta_LibrarySearch_DiscrTreeFinder_buildImportCache___spec__5(x_1, x_2, x_11, x_12, x_5, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_2); +return x_13; +} +} +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_foldlM___at_Lean_Meta_LibrarySearch_DiscrTreeFinder_localMatches___spec__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) { +_start: +{ +lean_object* x_9; lean_object* x_10; +x_9 = lean_ctor_get(x_1, 0); +lean_inc(x_9); +lean_dec(x_1); +x_10 = l_Lean_PersistentHashMap_foldlMAux___at_Lean_Meta_DiscrTree_getUnify___spec__11___rarg(x_2, x_9, x_3, x_4, x_5, x_6, x_7, x_8); +return x_10; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_LibrarySearch_DiscrTreeFinder_localMatches(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_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; +x_8 = lean_st_ref_get(x_6, x_7); +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_ctor_get(x_9, 0); +lean_inc(x_11); +lean_dec(x_9); +x_12 = lean_ctor_get(x_11, 1); +lean_inc(x_12); +lean_dec(x_11); +x_13 = lean_ctor_get(x_12, 1); +lean_inc(x_13); +lean_dec(x_12); +lean_inc(x_1); +x_14 = lean_alloc_closure((void*)(l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_updateTree), 9, 1); +lean_closure_set(x_14, 0, x_1); +x_15 = l_Lean_Meta_LibrarySearch_DiscrTreeFinder_buildImportCache___lambda__2___closed__3; +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +x_16 = l_Lean_PersistentHashMap_foldlM___at_Lean_Meta_LibrarySearch_DiscrTreeFinder_localMatches___spec__1(x_13, x_14, x_15, x_3, x_4, x_5, x_6, x_10); +if (lean_obj_tag(x_16) == 0) +{ +lean_object* x_17; lean_object* x_18; lean_object* x_19; +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 = l_Lean_Meta_DiscrTree_getMatch___rarg(x_17, x_2, x_1, x_3, x_4, x_5, x_6, x_18); +if (lean_obj_tag(x_19) == 0) +{ +uint8_t x_20; +x_20 = !lean_is_exclusive(x_19); +if (x_20 == 0) +{ +lean_object* x_21; lean_object* x_22; +x_21 = lean_ctor_get(x_19, 0); +x_22 = l_Array_reverse___rarg(x_21); +lean_ctor_set(x_19, 0, x_22); +return x_19; +} +else +{ +lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; +x_23 = lean_ctor_get(x_19, 0); +x_24 = lean_ctor_get(x_19, 1); +lean_inc(x_24); +lean_inc(x_23); +lean_dec(x_19); +x_25 = l_Array_reverse___rarg(x_23); +x_26 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_26, 0, x_25); +lean_ctor_set(x_26, 1, x_24); +return x_26; +} +} +else +{ +uint8_t x_27; +x_27 = !lean_is_exclusive(x_19); +if (x_27 == 0) +{ +return x_19; +} +else +{ +lean_object* x_28; lean_object* x_29; lean_object* x_30; +x_28 = lean_ctor_get(x_19, 0); +x_29 = lean_ctor_get(x_19, 1); +lean_inc(x_29); +lean_inc(x_28); +lean_dec(x_19); +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; +} +} +} +else +{ +uint8_t x_31; +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +x_31 = !lean_is_exclusive(x_16); +if (x_31 == 0) +{ +return x_16; +} +else +{ +lean_object* x_32; lean_object* x_33; lean_object* x_34; +x_32 = lean_ctor_get(x_16, 0); +x_33 = lean_ctor_get(x_16, 1); +lean_inc(x_33); +lean_inc(x_32); +lean_dec(x_16); +x_34 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_34, 0, x_32); +lean_ctor_set(x_34, 1, x_33); +return x_34; +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_LibrarySearch_DiscrTreeFinder_mkImportFinder(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) { +_start: +{ +lean_object* x_9; +x_9 = l_Lean_Meta_DiscrTree_getMatch___rarg(x_2, x_3, x_1, x_4, x_5, x_6, x_7, x_8); +if (lean_obj_tag(x_9) == 0) +{ +uint8_t x_10; +x_10 = !lean_is_exclusive(x_9); +if (x_10 == 0) +{ +lean_object* x_11; lean_object* x_12; +x_11 = lean_ctor_get(x_9, 0); +x_12 = l_Array_reverse___rarg(x_11); +lean_ctor_set(x_9, 0, x_12); +return x_9; +} +else +{ +lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; +x_13 = lean_ctor_get(x_9, 0); +x_14 = lean_ctor_get(x_9, 1); +lean_inc(x_14); +lean_inc(x_13); +lean_dec(x_9); +x_15 = l_Array_reverse___rarg(x_13); +x_16 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_16, 0, x_15); +lean_ctor_set(x_16, 1, x_14); +return x_16; +} +} +else +{ +uint8_t x_17; +x_17 = !lean_is_exclusive(x_9); +if (x_17 == 0) +{ +return x_9; +} +else +{ +lean_object* x_18; lean_object* x_19; lean_object* x_20; +x_18 = lean_ctor_get(x_9, 0); +x_19 = lean_ctor_get(x_9, 1); +lean_inc(x_19); +lean_inc(x_18); +lean_dec(x_9); +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; +} +} +} +} +static lean_object* _init_l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_IncDiscrTreeFinder_constantsPerTask() { +_start: +{ +lean_object* x_1; +x_1 = lean_unsigned_to_nat(6500u); +return x_1; +} +} +static lean_object* _init_l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_IncDiscrTreeFinder_addImport___lambda__1___closed__1() { +_start: +{ +uint8_t x_1; uint8_t x_2; lean_object* x_3; +x_1 = 1; +x_2 = 2; +x_3 = lean_alloc_ctor(0, 0, 5); +lean_ctor_set_uint8(x_3, 0, x_1); +lean_ctor_set_uint8(x_3, 1, x_1); +lean_ctor_set_uint8(x_3, 2, x_2); +lean_ctor_set_uint8(x_3, 3, x_1); +lean_ctor_set_uint8(x_3, 4, x_1); +return x_3; +} +} +static lean_object* _init_l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_IncDiscrTreeFinder_addImport___lambda__1___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = lean_unsigned_to_nat(1u); +x_2 = lean_mk_empty_array_with_capacity(x_1); +return x_2; +} +} +static lean_object* _init_l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_IncDiscrTreeFinder_addImport___lambda__1___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_updateTree___lambda__1___closed__1; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_IncDiscrTreeFinder_addImport___lambda__1___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_IncDiscrTreeFinder_addImport___lambda__1___closed__3; +x_2 = lean_unsigned_to_nat(2u); +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___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_IncDiscrTreeFinder_addImport___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) { +_start: +{ +uint8_t x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; +x_9 = 0; +x_10 = lean_box(x_9); +lean_inc(x_1); +x_11 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_11, 0, x_1); +lean_ctor_set(x_11, 1, x_10); +x_12 = l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_IncDiscrTreeFinder_addImport___lambda__1___closed__1; +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +x_13 = l_Lean_Meta_LazyDiscrTree_InitEntry_fromExpr___rarg(x_3, x_11, x_12, x_4, x_5, x_6, x_7, x_8); +if (lean_obj_tag(x_13) == 0) +{ +uint8_t x_14; +x_14 = !lean_is_exclusive(x_13); +if (x_14 == 0) +{ +lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; uint8_t x_21; +x_15 = lean_ctor_get(x_13, 0); +x_16 = lean_ctor_get(x_13, 1); +x_17 = l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_IncDiscrTreeFinder_addImport___lambda__1___closed__2; +lean_inc(x_15); +x_18 = lean_array_push(x_17, x_15); +x_19 = lean_ctor_get(x_15, 0); +lean_inc(x_19); +x_20 = l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_IncDiscrTreeFinder_addImport___lambda__1___closed__4; +x_21 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_beqKey____x40_Lean_Meta_LazyDiscrTree___hyg_99_(x_19, x_20); +lean_dec(x_19); +if (x_21 == 0) +{ +lean_dec(x_15); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_1); +lean_ctor_set(x_13, 0, x_18); +return x_13; +} +else +{ +uint8_t x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; +lean_free_object(x_13); +x_22 = 1; +x_23 = lean_box(x_22); +lean_inc(x_1); +x_24 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_24, 0, x_1); +lean_ctor_set(x_24, 1, x_23); +x_25 = lean_unsigned_to_nat(0u); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_15); +x_26 = l_Lean_Meta_LazyDiscrTree_InitEntry_mkSubEntry___rarg(x_15, x_25, x_24, x_12, x_4, x_5, x_6, x_7, x_16); +if (lean_obj_tag(x_26) == 0) +{ +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; lean_object* x_34; +x_27 = lean_ctor_get(x_26, 0); +lean_inc(x_27); +x_28 = lean_ctor_get(x_26, 1); +lean_inc(x_28); +lean_dec(x_26); +x_29 = lean_array_push(x_18, x_27); +x_30 = 2; +x_31 = lean_box(x_30); +x_32 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_32, 0, x_1); +lean_ctor_set(x_32, 1, x_31); +x_33 = lean_unsigned_to_nat(1u); +x_34 = l_Lean_Meta_LazyDiscrTree_InitEntry_mkSubEntry___rarg(x_15, x_33, x_32, x_12, x_4, x_5, x_6, x_7, x_28); +if (lean_obj_tag(x_34) == 0) +{ +uint8_t x_35; +x_35 = !lean_is_exclusive(x_34); +if (x_35 == 0) +{ +lean_object* x_36; lean_object* x_37; +x_36 = lean_ctor_get(x_34, 0); +x_37 = lean_array_push(x_29, x_36); +lean_ctor_set(x_34, 0, x_37); +return x_34; +} +else +{ +lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; +x_38 = lean_ctor_get(x_34, 0); +x_39 = lean_ctor_get(x_34, 1); +lean_inc(x_39); +lean_inc(x_38); +lean_dec(x_34); +x_40 = lean_array_push(x_29, x_38); +x_41 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_41, 0, x_40); +lean_ctor_set(x_41, 1, x_39); +return x_41; +} +} +else +{ +uint8_t x_42; +lean_dec(x_29); +x_42 = !lean_is_exclusive(x_34); +if (x_42 == 0) +{ +return x_34; +} +else +{ +lean_object* x_43; lean_object* x_44; lean_object* x_45; +x_43 = lean_ctor_get(x_34, 0); +x_44 = lean_ctor_get(x_34, 1); +lean_inc(x_44); +lean_inc(x_43); +lean_dec(x_34); +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 +{ +uint8_t x_46; +lean_dec(x_18); +lean_dec(x_15); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_1); +x_46 = !lean_is_exclusive(x_26); +if (x_46 == 0) +{ +return x_26; +} +else +{ +lean_object* x_47; lean_object* x_48; lean_object* x_49; +x_47 = lean_ctor_get(x_26, 0); +x_48 = lean_ctor_get(x_26, 1); +lean_inc(x_48); +lean_inc(x_47); +lean_dec(x_26); +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 +{ +lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; uint8_t x_56; +x_50 = lean_ctor_get(x_13, 0); +x_51 = lean_ctor_get(x_13, 1); +lean_inc(x_51); +lean_inc(x_50); +lean_dec(x_13); +x_52 = l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_IncDiscrTreeFinder_addImport___lambda__1___closed__2; +lean_inc(x_50); +x_53 = lean_array_push(x_52, x_50); +x_54 = lean_ctor_get(x_50, 0); +lean_inc(x_54); +x_55 = l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_IncDiscrTreeFinder_addImport___lambda__1___closed__4; +x_56 = l___private_Lean_Meta_LazyDiscrTree_0__Lean_Meta_LazyDiscrTree_MatchClone_beqKey____x40_Lean_Meta_LazyDiscrTree___hyg_99_(x_54, x_55); +lean_dec(x_54); +if (x_56 == 0) +{ +lean_object* x_57; +lean_dec(x_50); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_1); +x_57 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_57, 0, x_53); +lean_ctor_set(x_57, 1, x_51); +return x_57; +} +else +{ +uint8_t x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; +x_58 = 1; +x_59 = lean_box(x_58); +lean_inc(x_1); +x_60 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_60, 0, x_1); +lean_ctor_set(x_60, 1, x_59); +x_61 = lean_unsigned_to_nat(0u); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_50); +x_62 = l_Lean_Meta_LazyDiscrTree_InitEntry_mkSubEntry___rarg(x_50, x_61, x_60, x_12, x_4, x_5, x_6, x_7, x_51); +if (lean_obj_tag(x_62) == 0) +{ +lean_object* x_63; lean_object* x_64; lean_object* x_65; uint8_t x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; +x_63 = lean_ctor_get(x_62, 0); +lean_inc(x_63); +x_64 = lean_ctor_get(x_62, 1); +lean_inc(x_64); +lean_dec(x_62); +x_65 = lean_array_push(x_53, x_63); +x_66 = 2; +x_67 = lean_box(x_66); +x_68 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_68, 0, x_1); +lean_ctor_set(x_68, 1, x_67); +x_69 = lean_unsigned_to_nat(1u); +x_70 = l_Lean_Meta_LazyDiscrTree_InitEntry_mkSubEntry___rarg(x_50, x_69, x_68, x_12, x_4, x_5, x_6, x_7, x_64); +if (lean_obj_tag(x_70) == 0) +{ +lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; +x_71 = lean_ctor_get(x_70, 0); +lean_inc(x_71); +x_72 = lean_ctor_get(x_70, 1); +lean_inc(x_72); +if (lean_is_exclusive(x_70)) { + lean_ctor_release(x_70, 0); + lean_ctor_release(x_70, 1); + x_73 = x_70; +} else { + lean_dec_ref(x_70); + x_73 = lean_box(0); +} +x_74 = lean_array_push(x_65, x_71); +if (lean_is_scalar(x_73)) { + x_75 = lean_alloc_ctor(0, 2, 0); +} else { + x_75 = x_73; +} +lean_ctor_set(x_75, 0, x_74); +lean_ctor_set(x_75, 1, x_72); +return x_75; +} +else +{ +lean_object* x_76; lean_object* x_77; lean_object* x_78; lean_object* x_79; +lean_dec(x_65); +x_76 = lean_ctor_get(x_70, 0); +lean_inc(x_76); +x_77 = lean_ctor_get(x_70, 1); +lean_inc(x_77); +if (lean_is_exclusive(x_70)) { + lean_ctor_release(x_70, 0); + lean_ctor_release(x_70, 1); + x_78 = x_70; +} else { + lean_dec_ref(x_70); + x_78 = lean_box(0); +} +if (lean_is_scalar(x_78)) { + x_79 = lean_alloc_ctor(1, 2, 0); +} else { + x_79 = x_78; +} +lean_ctor_set(x_79, 0, x_76); +lean_ctor_set(x_79, 1, x_77); +return x_79; +} +} +else +{ +lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; +lean_dec(x_53); +lean_dec(x_50); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_1); +x_80 = lean_ctor_get(x_62, 0); +lean_inc(x_80); +x_81 = lean_ctor_get(x_62, 1); +lean_inc(x_81); +if (lean_is_exclusive(x_62)) { + lean_ctor_release(x_62, 0); + lean_ctor_release(x_62, 1); + x_82 = x_62; +} else { + lean_dec_ref(x_62); + x_82 = lean_box(0); +} +if (lean_is_scalar(x_82)) { + x_83 = lean_alloc_ctor(1, 2, 0); +} else { + x_83 = x_82; +} +lean_ctor_set(x_83, 0, x_80); +lean_ctor_set(x_83, 1, x_81); +return x_83; +} +} +} +} +else +{ +uint8_t x_84; +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_1); +x_84 = !lean_is_exclusive(x_13); +if (x_84 == 0) +{ +return x_13; +} +else +{ +lean_object* x_85; lean_object* x_86; lean_object* x_87; +x_85 = lean_ctor_get(x_13, 0); +x_86 = lean_ctor_get(x_13, 1); +lean_inc(x_86); +lean_inc(x_85); +lean_dec(x_13); +x_87 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_87, 0, x_85); +lean_ctor_set(x_87, 1, x_86); +return x_87; +} +} +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_IncDiscrTreeFinder_addImport(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_object* x_10; +x_8 = l_Lean_ConstantInfo_type(x_2); +x_9 = lean_alloc_closure((void*)(l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_IncDiscrTreeFinder_addImport___lambda__1___boxed), 8, 1); +lean_closure_set(x_9, 0, x_1); +x_10 = l_Lean_Meta_forallTelescope___at_Lean_Meta_mapForallTelescope_x27___spec__1___rarg(x_8, x_9, x_3, x_4, x_5, x_6, x_7); +return x_10; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_IncDiscrTreeFinder_addImport___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) { +_start: +{ +lean_object* x_9; +x_9 = l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_IncDiscrTreeFinder_addImport___lambda__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +lean_dec(x_2); +return x_9; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_IncDiscrTreeFinder_addImport___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___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_IncDiscrTreeFinder_addImport(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +lean_dec(x_2); +return x_8; +} +} +static lean_object* _init_l_Lean_Meta_LibrarySearch_IncDiscrTreeFinder_mkImportFinder___elambda__1___lambda__1___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_IncDiscrTreeFinder_addImport___boxed), 7, 0); +return x_1; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_LibrarySearch_IncDiscrTreeFinder_mkImportFinder___elambda__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; lean_object* x_8; lean_object* x_9; +x_7 = l_Lean_Meta_LibrarySearch_IncDiscrTreeFinder_mkImportFinder___elambda__1___lambda__1___closed__1; +x_8 = l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_IncDiscrTreeFinder_constantsPerTask; +x_9 = l_Lean_Meta_LazyDiscrTree_createImportedEnvironment___rarg(x_1, x_7, x_8, x_6); +return x_9; +} +} +static lean_object* _init_l_Lean_Meta_LibrarySearch_IncDiscrTreeFinder_mkImportFinder___elambda__1___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("librarySearch launch", 20); +return x_1; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_LibrarySearch_IncDiscrTreeFinder_mkImportFinder___elambda__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) { +_start: +{ +lean_object* x_8; lean_object* x_9; +x_8 = lean_st_ref_get(x_1, x_7); +x_9 = lean_ctor_get(x_8, 0); +lean_inc(x_9); +if (lean_obj_tag(x_9) == 0) +{ +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; +x_10 = lean_ctor_get(x_8, 1); +lean_inc(x_10); +lean_dec(x_8); +x_11 = lean_ctor_get(x_5, 2); +lean_inc(x_11); +x_12 = lean_st_ref_get(x_6, x_10); +x_13 = lean_ctor_get(x_12, 0); +lean_inc(x_13); +x_14 = lean_ctor_get(x_12, 1); +lean_inc(x_14); +lean_dec(x_12); +x_15 = lean_ctor_get(x_13, 0); +lean_inc(x_15); +lean_dec(x_13); +x_16 = lean_alloc_closure((void*)(l_Lean_Meta_LibrarySearch_IncDiscrTreeFinder_mkImportFinder___elambda__1___lambda__1___boxed), 6, 1); +lean_closure_set(x_16, 0, x_15); +x_17 = l_Lean_Meta_LibrarySearch_IncDiscrTreeFinder_mkImportFinder___elambda__1___closed__1; +x_18 = lean_box(0); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +x_19 = l_Lean_profileitM___at_Lean_Meta_synthInstance_x3f___spec__16___rarg(x_17, x_11, x_16, x_18, x_3, x_4, x_5, x_6, x_14); +lean_dec(x_11); +if (lean_obj_tag(x_19) == 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); +lean_dec(x_19); +x_22 = l_Lean_Meta_LazyDiscrTree_getMatch___rarg(x_20, x_2, x_3, x_4, x_5, x_6, x_21); +if (lean_obj_tag(x_22) == 0) +{ +lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; uint8_t x_29; +x_23 = lean_ctor_get(x_22, 0); +lean_inc(x_23); +x_24 = lean_ctor_get(x_22, 1); +lean_inc(x_24); +lean_dec(x_22); +x_25 = lean_ctor_get(x_23, 0); +lean_inc(x_25); +x_26 = lean_ctor_get(x_23, 1); +lean_inc(x_26); +lean_dec(x_23); +x_27 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_27, 0, x_26); +x_28 = lean_st_ref_set(x_1, x_27, x_24); +x_29 = !lean_is_exclusive(x_28); +if (x_29 == 0) +{ +lean_object* x_30; +x_30 = lean_ctor_get(x_28, 0); +lean_dec(x_30); +lean_ctor_set(x_28, 0, x_25); +return x_28; +} +else +{ +lean_object* x_31; lean_object* x_32; +x_31 = lean_ctor_get(x_28, 1); +lean_inc(x_31); +lean_dec(x_28); +x_32 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_32, 0, x_25); +lean_ctor_set(x_32, 1, x_31); +return x_32; +} +} +else +{ +uint8_t x_33; +x_33 = !lean_is_exclusive(x_22); +if (x_33 == 0) +{ +return x_22; +} +else +{ +lean_object* x_34; lean_object* x_35; lean_object* x_36; +x_34 = lean_ctor_get(x_22, 0); +x_35 = lean_ctor_get(x_22, 1); +lean_inc(x_35); +lean_inc(x_34); +lean_dec(x_22); +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 +{ +uint8_t x_37; +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_37 = !lean_is_exclusive(x_19); +if (x_37 == 0) +{ +return x_19; +} +else +{ +lean_object* x_38; lean_object* x_39; lean_object* x_40; +x_38 = lean_ctor_get(x_19, 0); +x_39 = lean_ctor_get(x_19, 1); +lean_inc(x_39); +lean_inc(x_38); +lean_dec(x_19); +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; +} +} +} +else +{ +lean_object* x_41; uint8_t x_42; +x_41 = lean_ctor_get(x_8, 1); +lean_inc(x_41); +lean_dec(x_8); +x_42 = !lean_is_exclusive(x_9); +if (x_42 == 0) +{ +lean_object* x_43; lean_object* x_44; +x_43 = lean_ctor_get(x_9, 0); +x_44 = l_Lean_Meta_LazyDiscrTree_getMatch___rarg(x_43, x_2, x_3, x_4, x_5, x_6, x_41); +if (lean_obj_tag(x_44) == 0) +{ +lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; uint8_t x_50; +x_45 = lean_ctor_get(x_44, 0); +lean_inc(x_45); +x_46 = lean_ctor_get(x_44, 1); +lean_inc(x_46); +lean_dec(x_44); +x_47 = lean_ctor_get(x_45, 0); +lean_inc(x_47); +x_48 = lean_ctor_get(x_45, 1); +lean_inc(x_48); +lean_dec(x_45); +lean_ctor_set(x_9, 0, x_48); +x_49 = lean_st_ref_set(x_1, x_9, x_46); +x_50 = !lean_is_exclusive(x_49); +if (x_50 == 0) +{ +lean_object* x_51; +x_51 = lean_ctor_get(x_49, 0); +lean_dec(x_51); +lean_ctor_set(x_49, 0, x_47); +return x_49; +} +else +{ +lean_object* x_52; lean_object* x_53; +x_52 = lean_ctor_get(x_49, 1); +lean_inc(x_52); +lean_dec(x_49); +x_53 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_53, 0, x_47); +lean_ctor_set(x_53, 1, x_52); +return x_53; +} +} +else +{ +uint8_t x_54; +lean_free_object(x_9); +x_54 = !lean_is_exclusive(x_44); +if (x_54 == 0) +{ +return x_44; +} +else +{ +lean_object* x_55; lean_object* x_56; lean_object* x_57; +x_55 = lean_ctor_get(x_44, 0); +x_56 = lean_ctor_get(x_44, 1); +lean_inc(x_56); +lean_inc(x_55); +lean_dec(x_44); +x_57 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_57, 0, x_55); +lean_ctor_set(x_57, 1, x_56); +return x_57; +} +} +} +else +{ +lean_object* x_58; lean_object* x_59; +x_58 = lean_ctor_get(x_9, 0); +lean_inc(x_58); +lean_dec(x_9); +x_59 = l_Lean_Meta_LazyDiscrTree_getMatch___rarg(x_58, x_2, x_3, x_4, x_5, x_6, x_41); +if (lean_obj_tag(x_59) == 0) +{ +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; +x_60 = lean_ctor_get(x_59, 0); +lean_inc(x_60); +x_61 = lean_ctor_get(x_59, 1); +lean_inc(x_61); +lean_dec(x_59); +x_62 = lean_ctor_get(x_60, 0); +lean_inc(x_62); +x_63 = lean_ctor_get(x_60, 1); +lean_inc(x_63); +lean_dec(x_60); +x_64 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_64, 0, x_63); +x_65 = lean_st_ref_set(x_1, x_64, x_61); +x_66 = lean_ctor_get(x_65, 1); +lean_inc(x_66); +if (lean_is_exclusive(x_65)) { + lean_ctor_release(x_65, 0); + lean_ctor_release(x_65, 1); + x_67 = x_65; +} else { + lean_dec_ref(x_65); + x_67 = lean_box(0); +} +if (lean_is_scalar(x_67)) { + x_68 = lean_alloc_ctor(0, 2, 0); +} else { + x_68 = x_67; +} +lean_ctor_set(x_68, 0, x_62); +lean_ctor_set(x_68, 1, x_66); +return x_68; +} +else +{ +lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; +x_69 = lean_ctor_get(x_59, 0); +lean_inc(x_69); +x_70 = lean_ctor_get(x_59, 1); +lean_inc(x_70); +if (lean_is_exclusive(x_59)) { + lean_ctor_release(x_59, 0); + lean_ctor_release(x_59, 1); + x_71 = x_59; +} else { + lean_dec_ref(x_59); + x_71 = lean_box(0); +} +if (lean_is_scalar(x_71)) { + x_72 = lean_alloc_ctor(1, 2, 0); +} else { + x_72 = x_71; +} +lean_ctor_set(x_72, 0, x_69); +lean_ctor_set(x_72, 1, x_70); +return x_72; +} +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_LibrarySearch_IncDiscrTreeFinder_mkImportFinder(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; uint8_t x_4; +x_2 = lean_box(0); +x_3 = lean_st_mk_ref(x_2, x_1); +x_4 = !lean_is_exclusive(x_3); +if (x_4 == 0) +{ +lean_object* x_5; lean_object* x_6; +x_5 = lean_ctor_get(x_3, 0); +x_6 = lean_alloc_closure((void*)(l_Lean_Meta_LibrarySearch_IncDiscrTreeFinder_mkImportFinder___elambda__1___boxed), 7, 1); +lean_closure_set(x_6, 0, x_5); +lean_ctor_set(x_3, 0, x_6); +return x_3; +} +else +{ +lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; +x_7 = lean_ctor_get(x_3, 0); +x_8 = lean_ctor_get(x_3, 1); +lean_inc(x_8); +lean_inc(x_7); +lean_dec(x_3); +x_9 = lean_alloc_closure((void*)(l_Lean_Meta_LibrarySearch_IncDiscrTreeFinder_mkImportFinder___elambda__1___boxed), 7, 1); +lean_closure_set(x_9, 0, x_7); +x_10 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_10, 0, x_9); +lean_ctor_set(x_10, 1, x_8); +return x_10; +} +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_LibrarySearch_IncDiscrTreeFinder_mkImportFinder___elambda__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: +{ +lean_object* x_7; +x_7 = l_Lean_Meta_LibrarySearch_IncDiscrTreeFinder_mkImportFinder___elambda__1___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_Lean_Meta_LibrarySearch_IncDiscrTreeFinder_mkImportFinder___elambda__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) { +_start: +{ +lean_object* x_8; +x_8 = l_Lean_Meta_LibrarySearch_IncDiscrTreeFinder_mkImportFinder___elambda__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +lean_dec(x_1); +return x_8; +} +} +static lean_object* _init_l_Lean_Meta_LibrarySearch_initFn____x40_Lean_Meta_Tactic_LibrarySearch___hyg_1378____closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("Tactic", 6); +return x_1; +} +} +static lean_object* _init_l_Lean_Meta_LibrarySearch_initFn____x40_Lean_Meta_Tactic_LibrarySearch___hyg_1378____closed__2() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("librarySearch", 13); +return x_1; +} +} +static lean_object* _init_l_Lean_Meta_LibrarySearch_initFn____x40_Lean_Meta_Tactic_LibrarySearch___hyg_1378____closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Meta_LibrarySearch_initFn____x40_Lean_Meta_Tactic_LibrarySearch___hyg_1378____closed__1; +x_2 = l_Lean_Meta_LibrarySearch_initFn____x40_Lean_Meta_Tactic_LibrarySearch___hyg_1378____closed__2; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Meta_LibrarySearch_initFn____x40_Lean_Meta_Tactic_LibrarySearch___hyg_1378____closed__4() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("Lean", 4); +return x_1; +} +} +static lean_object* _init_l_Lean_Meta_LibrarySearch_initFn____x40_Lean_Meta_Tactic_LibrarySearch___hyg_1378____closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Meta_LibrarySearch_initFn____x40_Lean_Meta_Tactic_LibrarySearch___hyg_1378____closed__4; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Meta_LibrarySearch_initFn____x40_Lean_Meta_Tactic_LibrarySearch___hyg_1378____closed__6() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("Meta", 4); +return x_1; +} +} +static lean_object* _init_l_Lean_Meta_LibrarySearch_initFn____x40_Lean_Meta_Tactic_LibrarySearch___hyg_1378____closed__7() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Meta_LibrarySearch_initFn____x40_Lean_Meta_Tactic_LibrarySearch___hyg_1378____closed__5; +x_2 = l_Lean_Meta_LibrarySearch_initFn____x40_Lean_Meta_Tactic_LibrarySearch___hyg_1378____closed__6; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Meta_LibrarySearch_initFn____x40_Lean_Meta_Tactic_LibrarySearch___hyg_1378____closed__8() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("LibrarySearch", 13); +return x_1; +} +} +static lean_object* _init_l_Lean_Meta_LibrarySearch_initFn____x40_Lean_Meta_Tactic_LibrarySearch___hyg_1378____closed__9() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Meta_LibrarySearch_initFn____x40_Lean_Meta_Tactic_LibrarySearch___hyg_1378____closed__7; +x_2 = l_Lean_Meta_LibrarySearch_initFn____x40_Lean_Meta_Tactic_LibrarySearch___hyg_1378____closed__8; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Meta_LibrarySearch_initFn____x40_Lean_Meta_Tactic_LibrarySearch___hyg_1378____closed__10() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("initFn", 6); +return x_1; +} +} +static lean_object* _init_l_Lean_Meta_LibrarySearch_initFn____x40_Lean_Meta_Tactic_LibrarySearch___hyg_1378____closed__11() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Meta_LibrarySearch_initFn____x40_Lean_Meta_Tactic_LibrarySearch___hyg_1378____closed__9; +x_2 = l_Lean_Meta_LibrarySearch_initFn____x40_Lean_Meta_Tactic_LibrarySearch___hyg_1378____closed__10; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Meta_LibrarySearch_initFn____x40_Lean_Meta_Tactic_LibrarySearch___hyg_1378____closed__12() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("_@", 2); +return x_1; +} +} +static lean_object* _init_l_Lean_Meta_LibrarySearch_initFn____x40_Lean_Meta_Tactic_LibrarySearch___hyg_1378____closed__13() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Meta_LibrarySearch_initFn____x40_Lean_Meta_Tactic_LibrarySearch___hyg_1378____closed__11; +x_2 = l_Lean_Meta_LibrarySearch_initFn____x40_Lean_Meta_Tactic_LibrarySearch___hyg_1378____closed__12; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Meta_LibrarySearch_initFn____x40_Lean_Meta_Tactic_LibrarySearch___hyg_1378____closed__14() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Meta_LibrarySearch_initFn____x40_Lean_Meta_Tactic_LibrarySearch___hyg_1378____closed__13; +x_2 = l_Lean_Meta_LibrarySearch_initFn____x40_Lean_Meta_Tactic_LibrarySearch___hyg_1378____closed__4; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Meta_LibrarySearch_initFn____x40_Lean_Meta_Tactic_LibrarySearch___hyg_1378____closed__15() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Meta_LibrarySearch_initFn____x40_Lean_Meta_Tactic_LibrarySearch___hyg_1378____closed__14; +x_2 = l_Lean_Meta_LibrarySearch_initFn____x40_Lean_Meta_Tactic_LibrarySearch___hyg_1378____closed__6; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Meta_LibrarySearch_initFn____x40_Lean_Meta_Tactic_LibrarySearch___hyg_1378____closed__16() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Meta_LibrarySearch_initFn____x40_Lean_Meta_Tactic_LibrarySearch___hyg_1378____closed__15; +x_2 = l_Lean_Meta_LibrarySearch_initFn____x40_Lean_Meta_Tactic_LibrarySearch___hyg_1378____closed__1; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Meta_LibrarySearch_initFn____x40_Lean_Meta_Tactic_LibrarySearch___hyg_1378____closed__17() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Meta_LibrarySearch_initFn____x40_Lean_Meta_Tactic_LibrarySearch___hyg_1378____closed__16; +x_2 = l_Lean_Meta_LibrarySearch_initFn____x40_Lean_Meta_Tactic_LibrarySearch___hyg_1378____closed__8; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Meta_LibrarySearch_initFn____x40_Lean_Meta_Tactic_LibrarySearch___hyg_1378____closed__18() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("_hyg", 4); +return x_1; +} +} +static lean_object* _init_l_Lean_Meta_LibrarySearch_initFn____x40_Lean_Meta_Tactic_LibrarySearch___hyg_1378____closed__19() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Meta_LibrarySearch_initFn____x40_Lean_Meta_Tactic_LibrarySearch___hyg_1378____closed__17; +x_2 = l_Lean_Meta_LibrarySearch_initFn____x40_Lean_Meta_Tactic_LibrarySearch___hyg_1378____closed__18; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Meta_LibrarySearch_initFn____x40_Lean_Meta_Tactic_LibrarySearch___hyg_1378____closed__20() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Meta_LibrarySearch_initFn____x40_Lean_Meta_Tactic_LibrarySearch___hyg_1378____closed__19; +x_2 = lean_unsigned_to_nat(1378u); +x_3 = l_Lean_Name_num___override(x_1, x_2); +return x_3; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_LibrarySearch_initFn____x40_Lean_Meta_Tactic_LibrarySearch___hyg_1378_(lean_object* x_1) { +_start: +{ +lean_object* x_2; uint8_t x_3; lean_object* x_4; lean_object* x_5; +x_2 = l_Lean_Meta_LibrarySearch_initFn____x40_Lean_Meta_Tactic_LibrarySearch___hyg_1378____closed__3; +x_3 = 0; +x_4 = l_Lean_Meta_LibrarySearch_initFn____x40_Lean_Meta_Tactic_LibrarySearch___hyg_1378____closed__20; +x_5 = l_Lean_registerTraceClass(x_2, x_3, x_4, x_1); +return x_5; +} +} +static lean_object* _init_l_Lean_Meta_LibrarySearch_initFn____x40_Lean_Meta_Tactic_LibrarySearch___hyg_1420____closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("lemmas", 6); +return x_1; +} +} +static lean_object* _init_l_Lean_Meta_LibrarySearch_initFn____x40_Lean_Meta_Tactic_LibrarySearch___hyg_1420____closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Meta_LibrarySearch_initFn____x40_Lean_Meta_Tactic_LibrarySearch___hyg_1378____closed__1; +x_2 = l_Lean_Meta_LibrarySearch_initFn____x40_Lean_Meta_Tactic_LibrarySearch___hyg_1378____closed__2; +x_3 = l_Lean_Meta_LibrarySearch_initFn____x40_Lean_Meta_Tactic_LibrarySearch___hyg_1420____closed__1; +x_4 = l_Lean_Name_mkStr3(x_1, x_2, x_3); +return x_4; +} +} +static lean_object* _init_l_Lean_Meta_LibrarySearch_initFn____x40_Lean_Meta_Tactic_LibrarySearch___hyg_1420____closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Meta_LibrarySearch_initFn____x40_Lean_Meta_Tactic_LibrarySearch___hyg_1378____closed__19; +x_2 = lean_unsigned_to_nat(1420u); +x_3 = l_Lean_Name_num___override(x_1, x_2); +return x_3; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_LibrarySearch_initFn____x40_Lean_Meta_Tactic_LibrarySearch___hyg_1420_(lean_object* x_1) { +_start: +{ +lean_object* x_2; uint8_t x_3; lean_object* x_4; lean_object* x_5; +x_2 = l_Lean_Meta_LibrarySearch_initFn____x40_Lean_Meta_Tactic_LibrarySearch___hyg_1420____closed__2; +x_3 = 0; +x_4 = l_Lean_Meta_LibrarySearch_initFn____x40_Lean_Meta_Tactic_LibrarySearch___hyg_1420____closed__3; +x_5 = l_Lean_registerTraceClass(x_2, x_3, x_4, x_1); +return x_5; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_LibrarySearch_initFn____x40_Lean_Meta_Tactic_LibrarySearch___hyg_1469_(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; uint8_t x_4; +x_2 = lean_box(0); +x_3 = lean_st_mk_ref(x_2, x_1); +x_4 = !lean_is_exclusive(x_3); +if (x_4 == 0) +{ +return x_3; +} +else +{ +lean_object* x_5; lean_object* x_6; lean_object* x_7; +x_5 = lean_ctor_get(x_3, 0); +x_6 = lean_ctor_get(x_3, 1); +lean_inc(x_6); +lean_inc(x_5); +lean_dec(x_3); +x_7 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_7, 0, x_5); +lean_ctor_set(x_7, 1, x_6); +return x_7; +} +} +} +static lean_object* _init_l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_instInhabitedLibSearchState___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_LibSearchState_default; +return x_1; +} +} +static lean_object* _init_l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_instInhabitedLibSearchState() { +_start: +{ +lean_object* x_1; +x_1 = l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_instInhabitedLibSearchState___closed__1; +return x_1; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_LibrarySearch_initFn____x40_Lean_Meta_Tactic_LibrarySearch___hyg_1508____lambda__1(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; uint8_t x_4; +x_3 = lean_st_mk_ref(x_1, x_2); +x_4 = !lean_is_exclusive(x_3); +if (x_4 == 0) +{ +return x_3; +} +else +{ +lean_object* x_5; lean_object* x_6; lean_object* x_7; +x_5 = lean_ctor_get(x_3, 0); +x_6 = lean_ctor_get(x_3, 1); +lean_inc(x_6); +lean_inc(x_5); +lean_dec(x_3); +x_7 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_7, 0, x_5); +lean_ctor_set(x_7, 1, x_6); +return x_7; +} +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_LibrarySearch_initFn____x40_Lean_Meta_Tactic_LibrarySearch___hyg_1508_(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_2 = lean_box(0); +x_3 = lean_alloc_closure((void*)(l_Lean_Meta_LibrarySearch_initFn____x40_Lean_Meta_Tactic_LibrarySearch___hyg_1508____lambda__1), 2, 1); +lean_closure_set(x_3, 0, x_2); +x_4 = l_Lean_EnvExtensionInterfaceUnsafe_registerExt___rarg(x_3, x_1); +return x_4; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_LibrarySearch_defaultCandidateFinder_unsafe__1(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; uint8_t x_6; +x_2 = l_Lean_Meta_LibrarySearch_IncDiscrTreeFinder_mkImportFinder(x_1); +x_3 = lean_ctor_get(x_2, 0); +lean_inc(x_3); +x_4 = lean_ctor_get(x_2, 1); +lean_inc(x_4); +lean_dec(x_2); +x_5 = lean_st_mk_ref(x_3, x_4); +x_6 = !lean_is_exclusive(x_5); +if (x_6 == 0) +{ +return x_5; +} +else +{ +lean_object* x_7; lean_object* x_8; lean_object* x_9; +x_7 = lean_ctor_get(x_5, 0); +x_8 = lean_ctor_get(x_5, 1); +lean_inc(x_8); +lean_inc(x_7); +lean_dec(x_5); +x_9 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_9, 0, x_7); +lean_ctor_set(x_9, 1, x_8); +return x_9; +} +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_LibrarySearch_initFn____x40_Lean_Meta_Tactic_LibrarySearch___hyg_1533_(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = l_Lean_Meta_LibrarySearch_defaultCandidateFinder_unsafe__1(x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Meta_LibrarySearch_setDefaultCandidateFinder___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = l_Lean_Meta_LibrarySearch_defaultCandidateFinder; +return x_1; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_LibrarySearch_setDefaultCandidateFinder(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; lean_object* x_4; uint8_t x_5; +x_3 = l_Lean_Meta_LibrarySearch_setDefaultCandidateFinder___closed__1; +x_4 = lean_st_ref_set(x_3, x_1, x_2); +x_5 = !lean_is_exclusive(x_4); +if (x_5 == 0) +{ +return x_4; +} +else +{ +lean_object* x_6; lean_object* x_7; lean_object* x_8; +x_6 = lean_ctor_get(x_4, 0); +x_7 = lean_ctor_get(x_4, 1); +lean_inc(x_7); +lean_inc(x_6); +lean_dec(x_4); +x_8 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_8, 0, x_6); +lean_ctor_set(x_8, 1, x_7); +return x_8; +} +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_LibrarySearch_mkHeartbeatCheck___elambda__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; +x_7 = l_Lean_getRemainingHeartbeats(x_4, x_5, x_6); +x_8 = !lean_is_exclusive(x_7); +if (x_8 == 0) +{ +lean_object* x_9; uint8_t x_10; lean_object* x_11; +x_9 = lean_ctor_get(x_7, 0); +x_10 = lean_nat_dec_lt(x_9, x_1); +lean_dec(x_9); +x_11 = lean_box(x_10); +lean_ctor_set(x_7, 0, x_11); +return x_7; +} +else +{ +lean_object* x_12; lean_object* x_13; uint8_t x_14; lean_object* x_15; lean_object* x_16; +x_12 = lean_ctor_get(x_7, 0); +x_13 = lean_ctor_get(x_7, 1); +lean_inc(x_13); +lean_inc(x_12); +lean_dec(x_7); +x_14 = lean_nat_dec_lt(x_12, x_1); +lean_dec(x_12); +x_15 = lean_box(x_14); +x_16 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_16, 0, x_15); +lean_ctor_set(x_16, 1, x_13); +return x_16; +} +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_LibrarySearch_mkHeartbeatCheck___elambda__2___rarg(lean_object* x_1) { +_start: +{ +uint8_t x_2; lean_object* x_3; lean_object* x_4; +x_2 = 0; +x_3 = lean_box(x_2); +x_4 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_4, 0, x_3); +lean_ctor_set(x_4, 1, x_1); +return x_4; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_LibrarySearch_mkHeartbeatCheck___elambda__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +_start: +{ +lean_object* x_5; +x_5 = lean_alloc_closure((void*)(l_Lean_Meta_LibrarySearch_mkHeartbeatCheck___elambda__2___rarg), 1, 0); +return x_5; +} +} +static lean_object* _init_l_Lean_Meta_LibrarySearch_mkHeartbeatCheck___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Meta_LibrarySearch_mkHeartbeatCheck___elambda__2___boxed), 4, 0); +return x_1; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_LibrarySearch_mkHeartbeatCheck(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; lean_object* x_8; lean_object* x_9; lean_object* x_10; uint8_t x_11; +x_7 = l_Lean_getMaxHeartbeats(x_4, x_5, x_6); +x_8 = lean_ctor_get(x_7, 0); +lean_inc(x_8); +x_9 = lean_ctor_get(x_7, 1); +lean_inc(x_9); +lean_dec(x_7); +x_10 = l_Lean_getRemainingHeartbeats(x_4, x_5, x_9); +x_11 = !lean_is_exclusive(x_10); +if (x_11 == 0) +{ +lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; uint8_t x_17; +x_12 = lean_ctor_get(x_10, 0); +x_13 = lean_nat_mul(x_12, x_1); +lean_dec(x_12); +x_14 = lean_unsigned_to_nat(100u); +x_15 = lean_nat_div(x_13, x_14); +lean_dec(x_13); +x_16 = lean_unsigned_to_nat(0u); +x_17 = lean_nat_dec_eq(x_8, x_16); +lean_dec(x_8); +if (x_17 == 0) +{ +lean_object* x_18; +x_18 = lean_alloc_closure((void*)(l_Lean_Meta_LibrarySearch_mkHeartbeatCheck___elambda__1___boxed), 6, 1); +lean_closure_set(x_18, 0, x_15); +lean_ctor_set(x_10, 0, x_18); +return x_10; +} +else +{ +lean_object* x_19; +lean_dec(x_15); +x_19 = l_Lean_Meta_LibrarySearch_mkHeartbeatCheck___closed__1; +lean_ctor_set(x_10, 0, x_19); +return x_10; +} +} +else +{ +lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; uint8_t x_26; +x_20 = lean_ctor_get(x_10, 0); +x_21 = lean_ctor_get(x_10, 1); +lean_inc(x_21); +lean_inc(x_20); +lean_dec(x_10); +x_22 = lean_nat_mul(x_20, x_1); +lean_dec(x_20); +x_23 = lean_unsigned_to_nat(100u); +x_24 = lean_nat_div(x_22, x_23); +lean_dec(x_22); +x_25 = lean_unsigned_to_nat(0u); +x_26 = lean_nat_dec_eq(x_8, x_25); +lean_dec(x_8); +if (x_26 == 0) +{ +lean_object* x_27; lean_object* x_28; +x_27 = lean_alloc_closure((void*)(l_Lean_Meta_LibrarySearch_mkHeartbeatCheck___elambda__1___boxed), 6, 1); +lean_closure_set(x_27, 0, x_24); +x_28 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_28, 0, x_27); +lean_ctor_set(x_28, 1, x_21); +return x_28; +} +else +{ +lean_object* x_29; lean_object* x_30; +lean_dec(x_24); +x_29 = l_Lean_Meta_LibrarySearch_mkHeartbeatCheck___closed__1; +x_30 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_30, 0, x_29); +lean_ctor_set(x_30, 1, x_21); +return x_30; +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_LibrarySearch_mkHeartbeatCheck___elambda__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_Lean_Meta_LibrarySearch_mkHeartbeatCheck___elambda__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); +lean_dec(x_1); +return x_7; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_LibrarySearch_mkHeartbeatCheck___elambda__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_Lean_Meta_LibrarySearch_mkHeartbeatCheck___elambda__2(x_1, x_2, x_3, x_4); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +return x_5; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_LibrarySearch_mkHeartbeatCheck___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_Lean_Meta_LibrarySearch_mkHeartbeatCheck(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); +lean_dec(x_1); +return x_7; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearchEmoji___rarg(lean_object* x_1) { +_start: +{ +if (lean_obj_tag(x_1) == 0) +{ +lean_object* x_2; +x_2 = l_Lean_bombEmoji; +return x_2; +} +else +{ +lean_object* x_3; +x_3 = lean_ctor_get(x_1, 0); +if (lean_obj_tag(x_3) == 0) +{ +lean_object* x_4; +x_4 = l_Lean_checkEmoji; +return x_4; +} +else +{ +lean_object* x_5; +x_5 = l_Lean_crossEmoji; +return x_5; +} +} +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearchEmoji(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; +x_3 = lean_alloc_closure((void*)(l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearchEmoji___rarg___boxed), 1, 0); +return x_3; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearchEmoji___rarg___boxed(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearchEmoji___rarg(x_1); +lean_dec(x_1); +return x_2; +} +} +LEAN_EXPORT lean_object* l_Std_Range_forIn_x27_loop___at_Lean_Meta_LibrarySearch_interleaveWith___spec__1___rarg(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; +x_15 = lean_nat_dec_lt(x_12, x_9); +if (x_15 == 0) +{ +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_3); +lean_dec(x_1); +return x_14; +} +else +{ +lean_object* x_16; uint8_t x_17; +x_16 = lean_unsigned_to_nat(0u); +x_17 = lean_nat_dec_eq(x_11, x_16); +if (x_17 == 0) +{ +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_unsigned_to_nat(1u); +x_19 = lean_nat_sub(x_11, x_18); +lean_dec(x_11); +x_20 = lean_array_fget(x_2, x_12); +lean_inc(x_1); +x_21 = lean_apply_1(x_1, x_20); +x_22 = lean_array_push(x_14, x_21); +x_23 = lean_array_fget(x_4, x_12); +lean_inc(x_3); +x_24 = lean_apply_1(x_3, x_23); +x_25 = lean_array_push(x_22, x_24); +x_26 = lean_nat_add(x_12, x_10); +lean_dec(x_12); +x_11 = x_19; +x_12 = x_26; +x_13 = lean_box(0); +x_14 = x_25; +goto _start; +} +else +{ +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_3); +lean_dec(x_1); +return x_14; +} +} +} +} +LEAN_EXPORT lean_object* l_Std_Range_forIn_x27_loop___at_Lean_Meta_LibrarySearch_interleaveWith___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +lean_object* x_4; +x_4 = lean_alloc_closure((void*)(l_Std_Range_forIn_x27_loop___at_Lean_Meta_LibrarySearch_interleaveWith___spec__1___rarg___boxed), 14, 0); +return x_4; +} +} +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Meta_LibrarySearch_interleaveWith___spec__2___rarg(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_lt(x_3, x_2); +if (x_5 == 0) +{ +lean_dec(x_1); +return x_4; +} +else +{ +lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; size_t x_10; size_t x_11; lean_object* x_12; +x_6 = lean_array_uget(x_4, x_3); +x_7 = lean_unsigned_to_nat(0u); +x_8 = lean_array_uset(x_4, x_3, x_7); +lean_inc(x_1); +x_9 = lean_apply_1(x_1, x_6); +x_10 = 1; +x_11 = lean_usize_add(x_3, x_10); +x_12 = lean_array_uset(x_8, x_3, x_9); +x_3 = x_11; +x_4 = x_12; +goto _start; +} +} +} +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Meta_LibrarySearch_interleaveWith___spec__2(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; +x_3 = lean_alloc_closure((void*)(l_Array_mapMUnsafe_map___at_Lean_Meta_LibrarySearch_interleaveWith___spec__2___rarg___boxed), 4, 0); +return x_3; +} +} +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Meta_LibrarySearch_interleaveWith___spec__3___rarg(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_lt(x_3, x_2); +if (x_5 == 0) +{ +lean_dec(x_1); +return x_4; +} +else +{ +lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; size_t x_10; size_t x_11; lean_object* x_12; +x_6 = lean_array_uget(x_4, x_3); +x_7 = lean_unsigned_to_nat(0u); +x_8 = lean_array_uset(x_4, x_3, x_7); +lean_inc(x_1); +x_9 = lean_apply_1(x_1, x_6); +x_10 = 1; +x_11 = lean_usize_add(x_3, x_10); +x_12 = lean_array_uset(x_8, x_3, x_9); +x_3 = x_11; +x_4 = x_12; +goto _start; +} +} +} +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Meta_LibrarySearch_interleaveWith___spec__3(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; +x_3 = lean_alloc_closure((void*)(l_Array_mapMUnsafe_map___at_Lean_Meta_LibrarySearch_interleaveWith___spec__3___rarg___boxed), 4, 0); +return x_3; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_LibrarySearch_interleaveWith___rarg(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; lean_object* x_7; lean_object* x_8; lean_object* x_9; uint8_t x_28; +x_5 = lean_array_get_size(x_2); +x_6 = lean_array_get_size(x_4); +x_7 = lean_nat_add(x_5, x_6); +x_8 = lean_mk_empty_array_with_capacity(x_7); +lean_dec(x_7); +x_28 = lean_nat_dec_le(x_5, x_6); +if (x_28 == 0) +{ +lean_inc(x_6); +x_9 = x_6; +goto block_27; +} +else +{ +lean_inc(x_5); +x_9 = x_5; +goto block_27; +} +block_27: +{ +lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; uint8_t x_14; +x_10 = lean_unsigned_to_nat(0u); +x_11 = lean_unsigned_to_nat(1u); +lean_inc(x_9); +x_12 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_12, 0, x_10); +lean_ctor_set(x_12, 1, x_9); +lean_ctor_set(x_12, 2, x_11); +lean_inc(x_9); +lean_inc(x_3); +lean_inc(x_1); +x_13 = l_Std_Range_forIn_x27_loop___at_Lean_Meta_LibrarySearch_interleaveWith___spec__1___rarg(x_1, x_2, x_3, x_4, x_5, x_6, x_12, x_10, x_9, x_11, x_9, x_10, lean_box(0), x_8); +lean_dec(x_12); +x_14 = lean_nat_dec_lt(x_9, x_5); +if (x_14 == 0) +{ +lean_object* x_15; lean_object* x_16; size_t x_17; size_t x_18; lean_object* x_19; lean_object* x_20; +lean_dec(x_5); +lean_dec(x_1); +x_15 = l_Array_extract___rarg(x_4, x_9, x_6); +lean_dec(x_6); +x_16 = lean_array_get_size(x_15); +x_17 = lean_usize_of_nat(x_16); +lean_dec(x_16); +x_18 = 0; +x_19 = l_Array_mapMUnsafe_map___at_Lean_Meta_LibrarySearch_interleaveWith___spec__2___rarg(x_3, x_17, x_18, x_15); +x_20 = l_Array_append___rarg(x_13, x_19); +return x_20; +} +else +{ +lean_object* x_21; lean_object* x_22; size_t x_23; size_t x_24; lean_object* x_25; lean_object* x_26; +lean_dec(x_6); +lean_dec(x_3); +x_21 = l_Array_extract___rarg(x_2, x_9, x_5); +lean_dec(x_5); +x_22 = lean_array_get_size(x_21); +x_23 = lean_usize_of_nat(x_22); +lean_dec(x_22); +x_24 = 0; +x_25 = l_Array_mapMUnsafe_map___at_Lean_Meta_LibrarySearch_interleaveWith___spec__3___rarg(x_1, x_23, x_24, x_21); +x_26 = l_Array_append___rarg(x_13, x_25); +return x_26; +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_LibrarySearch_interleaveWith(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +lean_object* x_4; +x_4 = lean_alloc_closure((void*)(l_Lean_Meta_LibrarySearch_interleaveWith___rarg___boxed), 4, 0); +return x_4; +} +} +LEAN_EXPORT lean_object* l_Std_Range_forIn_x27_loop___at_Lean_Meta_LibrarySearch_interleaveWith___spec__1___rarg___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: +{ +lean_object* x_15; +x_15 = l_Std_Range_forIn_x27_loop___at_Lean_Meta_LibrarySearch_interleaveWith___spec__1___rarg(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); +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_2); +return x_15; +} +} +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Meta_LibrarySearch_interleaveWith___spec__2___rarg___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_mapMUnsafe_map___at_Lean_Meta_LibrarySearch_interleaveWith___spec__2___rarg(x_1, x_5, x_6, x_4); +return x_7; +} +} +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Meta_LibrarySearch_interleaveWith___spec__3___rarg___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_mapMUnsafe_map___at_Lean_Meta_LibrarySearch_interleaveWith___spec__3___rarg(x_1, x_5, x_6, x_4); +return x_7; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_LibrarySearch_interleaveWith___rarg___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_Meta_LibrarySearch_interleaveWith___rarg(x_1, x_2, x_3, x_4); +lean_dec(x_4); +lean_dec(x_2); +return x_5; +} +} +static lean_object* _init_l_Lean_Meta_LibrarySearch_initFn____x40_Lean_Meta_Tactic_LibrarySearch___hyg_2079____closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("Std", 3); +return x_1; +} +} +static lean_object* _init_l_Lean_Meta_LibrarySearch_initFn____x40_Lean_Meta_Tactic_LibrarySearch___hyg_2079____closed__2() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("abortSpeculation", 16); +return x_1; +} +} +static lean_object* _init_l_Lean_Meta_LibrarySearch_initFn____x40_Lean_Meta_Tactic_LibrarySearch___hyg_2079____closed__3() { +_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_Meta_LibrarySearch_initFn____x40_Lean_Meta_Tactic_LibrarySearch___hyg_2079____closed__1; +x_2 = l_Lean_Meta_LibrarySearch_initFn____x40_Lean_Meta_Tactic_LibrarySearch___hyg_1378____closed__1; +x_3 = l_Lean_Meta_LibrarySearch_initFn____x40_Lean_Meta_Tactic_LibrarySearch___hyg_1378____closed__8; +x_4 = l_Lean_Meta_LibrarySearch_initFn____x40_Lean_Meta_Tactic_LibrarySearch___hyg_2079____closed__2; +x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); +return x_5; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_LibrarySearch_initFn____x40_Lean_Meta_Tactic_LibrarySearch___hyg_2079_(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; +x_2 = l_Lean_Meta_LibrarySearch_initFn____x40_Lean_Meta_Tactic_LibrarySearch___hyg_2079____closed__3; +x_3 = l_Lean_registerInternalExceptionId(x_2, x_1); +return x_3; +} +} +static lean_object* _init_l_Lean_Meta_LibrarySearch_abortSpeculation___rarg___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_abortSpeculationId; +return x_1; +} +} +static lean_object* _init_l_Lean_Meta_LibrarySearch_abortSpeculation___rarg___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Meta_LibrarySearch_abortSpeculation___rarg___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; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_LibrarySearch_abortSpeculation___rarg(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_2 = lean_ctor_get(x_1, 0); +lean_inc(x_2); +lean_dec(x_1); +x_3 = l_Lean_Meta_LibrarySearch_abortSpeculation___rarg___closed__2; +x_4 = lean_apply_2(x_2, lean_box(0), x_3); +return x_4; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_LibrarySearch_abortSpeculation(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; +x_3 = lean_alloc_closure((void*)(l_Lean_Meta_LibrarySearch_abortSpeculation___rarg), 1, 0); +return x_3; +} +} +LEAN_EXPORT uint8_t l_Lean_Meta_LibrarySearch_isAbortSpeculation(lean_object* x_1) { +_start: +{ +if (lean_obj_tag(x_1) == 0) +{ +uint8_t x_2; +x_2 = 0; +return x_2; +} +else +{ +lean_object* x_3; lean_object* x_4; uint8_t x_5; +x_3 = lean_ctor_get(x_1, 0); +x_4 = l_Lean_Meta_LibrarySearch_abortSpeculation___rarg___closed__1; +x_5 = lean_nat_dec_eq(x_3, x_4); +return x_5; +} +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_LibrarySearch_isAbortSpeculation___boxed(lean_object* x_1) { +_start: +{ +uint8_t x_2; lean_object* x_3; +x_2 = l_Lean_Meta_LibrarySearch_isAbortSpeculation(x_1); +lean_dec(x_1); +x_3 = lean_box(x_2); +return x_3; +} +} +LEAN_EXPORT lean_object* l_Lean_observing_x3f___at_Lean_Meta_LibrarySearch_librarySearchSymm___spec__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; lean_object* x_8; lean_object* x_9; lean_object* x_10; +x_7 = l_Lean_Meta_saveState___rarg(x_3, x_4, x_5, x_6); +x_8 = lean_ctor_get(x_7, 0); +lean_inc(x_8); +x_9 = lean_ctor_get(x_7, 1); +lean_inc(x_9); +lean_dec(x_7); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +lean_inc(x_2); +x_10 = lean_apply_5(x_1, x_2, x_3, x_4, x_5, x_9); +if (lean_obj_tag(x_10) == 0) +{ +uint8_t x_11; +lean_dec(x_8); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_11 = !lean_is_exclusive(x_10); +if (x_11 == 0) +{ +lean_object* x_12; lean_object* x_13; +x_12 = lean_ctor_get(x_10, 0); +x_13 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_13, 0, x_12); +lean_ctor_set(x_10, 0, x_13); +return x_10; +} +else +{ +lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; +x_14 = lean_ctor_get(x_10, 0); +x_15 = lean_ctor_get(x_10, 1); +lean_inc(x_15); +lean_inc(x_14); +lean_dec(x_10); +x_16 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_16, 0, x_14); +x_17 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_17, 0, x_16); +lean_ctor_set(x_17, 1, x_15); +return x_17; +} +} +else +{ +uint8_t x_18; +x_18 = !lean_is_exclusive(x_10); +if (x_18 == 0) +{ +lean_object* x_19; lean_object* x_20; uint8_t x_21; +x_19 = lean_ctor_get(x_10, 0); +x_20 = lean_ctor_get(x_10, 1); +x_21 = l_Lean_Exception_isRuntime(x_19); +if (x_21 == 0) +{ +lean_object* x_22; uint8_t x_23; +lean_free_object(x_10); +lean_dec(x_19); +x_22 = l_Lean_Meta_SavedState_restore(x_8, x_2, x_3, x_4, x_5, x_20); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_8); +x_23 = !lean_is_exclusive(x_22); +if (x_23 == 0) +{ +lean_object* x_24; lean_object* x_25; +x_24 = lean_ctor_get(x_22, 0); +lean_dec(x_24); +x_25 = lean_box(0); +lean_ctor_set(x_22, 0, x_25); +return x_22; +} +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 = lean_box(0); +x_28 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_28, 0, x_27); +lean_ctor_set(x_28, 1, x_26); +return x_28; +} +} +else +{ +uint8_t x_29; +x_29 = lean_ctor_get_uint8(x_4, sizeof(void*)*11); +if (x_29 == 0) +{ +lean_dec(x_8); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +return x_10; +} +else +{ +lean_object* x_30; uint8_t x_31; +lean_free_object(x_10); +lean_dec(x_19); +x_30 = l_Lean_Meta_SavedState_restore(x_8, x_2, x_3, x_4, x_5, x_20); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_8); +x_31 = !lean_is_exclusive(x_30); +if (x_31 == 0) +{ +lean_object* x_32; lean_object* x_33; +x_32 = lean_ctor_get(x_30, 0); +lean_dec(x_32); +x_33 = lean_box(0); +lean_ctor_set(x_30, 0, x_33); +return x_30; +} +else +{ +lean_object* x_34; lean_object* x_35; lean_object* x_36; +x_34 = lean_ctor_get(x_30, 1); +lean_inc(x_34); +lean_dec(x_30); +x_35 = lean_box(0); +x_36 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_36, 0, x_35); +lean_ctor_set(x_36, 1, x_34); +return x_36; +} +} +} +} +else +{ +lean_object* x_37; lean_object* x_38; uint8_t x_39; +x_37 = lean_ctor_get(x_10, 0); +x_38 = lean_ctor_get(x_10, 1); +lean_inc(x_38); +lean_inc(x_37); +lean_dec(x_10); +x_39 = l_Lean_Exception_isRuntime(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_dec(x_37); +x_40 = l_Lean_Meta_SavedState_restore(x_8, x_2, x_3, x_4, x_5, x_38); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_8); +x_41 = lean_ctor_get(x_40, 1); +lean_inc(x_41); +if (lean_is_exclusive(x_40)) { + lean_ctor_release(x_40, 0); + lean_ctor_release(x_40, 1); + x_42 = x_40; +} else { + lean_dec_ref(x_40); + x_42 = lean_box(0); +} +x_43 = lean_box(0); +if (lean_is_scalar(x_42)) { + x_44 = lean_alloc_ctor(0, 2, 0); +} else { + x_44 = x_42; +} +lean_ctor_set(x_44, 0, x_43); +lean_ctor_set(x_44, 1, x_41); +return x_44; +} +else +{ +uint8_t x_45; +x_45 = lean_ctor_get_uint8(x_4, sizeof(void*)*11); +if (x_45 == 0) +{ +lean_object* x_46; +lean_dec(x_8); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_46 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_46, 0, x_37); +lean_ctor_set(x_46, 1, x_38); +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_dec(x_37); +x_47 = l_Lean_Meta_SavedState_restore(x_8, x_2, x_3, x_4, x_5, x_38); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_8); +x_48 = lean_ctor_get(x_47, 1); +lean_inc(x_48); +if (lean_is_exclusive(x_47)) { + lean_ctor_release(x_47, 0); + lean_ctor_release(x_47, 1); + x_49 = x_47; +} else { + lean_dec_ref(x_47); + x_49 = lean_box(0); +} +x_50 = lean_box(0); +if (lean_is_scalar(x_49)) { + x_51 = lean_alloc_ctor(0, 2, 0); +} else { + x_51 = x_49; +} +lean_ctor_set(x_51, 0, x_50); +lean_ctor_set(x_51, 1, x_48); +return x_51; +} +} +} +} +} +} +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Meta_LibrarySearch_librarySearchSymm___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_lt(x_3, x_2); +if (x_5 == 0) +{ +lean_dec(x_1); +return x_4; +} +else +{ +lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; size_t x_10; size_t x_11; lean_object* x_12; +x_6 = lean_array_uget(x_4, x_3); +x_7 = lean_unsigned_to_nat(0u); +x_8 = lean_array_uset(x_4, x_3, x_7); +lean_inc(x_1); +x_9 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_9, 0, x_1); +lean_ctor_set(x_9, 1, x_6); +x_10 = 1; +x_11 = lean_usize_add(x_3, x_10); +x_12 = lean_array_uset(x_8, x_3, x_9); +x_3 = x_11; +x_4 = x_12; +goto _start; +} +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_LibrarySearch_librarySearchSymm___lambda__1(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; +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_Meta_LibrarySearch_librarySearchSymm(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_inc(x_2); +x_8 = l_Lean_MVarId_getType(x_2, x_3, x_4, x_5, x_6, x_7); +if (lean_obj_tag(x_8) == 0) +{ +lean_object* x_9; lean_object* x_10; lean_object* x_11; +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); +lean_inc(x_1); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +x_11 = lean_apply_6(x_1, x_9, x_3, x_4, x_5, x_6, x_10); +if (lean_obj_tag(x_11) == 0) +{ +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; +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); +x_14 = lean_st_ref_get(x_4, 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); +x_17 = lean_ctor_get(x_15, 0); +lean_inc(x_17); +lean_dec(x_15); +lean_inc(x_17); +lean_inc(x_2); +x_18 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_18, 0, x_2); +lean_ctor_set(x_18, 1, x_17); +x_19 = lean_alloc_closure((void*)(l_Lean_MVarId_applySymm), 6, 1); +lean_closure_set(x_19, 0, x_2); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +x_20 = l_Lean_observing_x3f___at_Lean_Meta_LibrarySearch_librarySearchSymm___spec__1(x_19, x_3, x_4, x_5, x_6, x_16); +if (lean_obj_tag(x_20) == 0) +{ +lean_object* x_21; +x_21 = lean_ctor_get(x_20, 0); +lean_inc(x_21); +if (lean_obj_tag(x_21) == 0) +{ +uint8_t x_22; +lean_dec(x_17); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_1); +x_22 = !lean_is_exclusive(x_20); +if (x_22 == 0) +{ +lean_object* x_23; lean_object* x_24; size_t x_25; size_t x_26; lean_object* x_27; +x_23 = lean_ctor_get(x_20, 0); +lean_dec(x_23); +x_24 = lean_array_get_size(x_12); +x_25 = lean_usize_of_nat(x_24); +lean_dec(x_24); +x_26 = 0; +x_27 = l_Array_mapMUnsafe_map___at_Lean_Meta_LibrarySearch_librarySearchSymm___spec__2(x_18, x_25, x_26, x_12); +lean_ctor_set(x_20, 0, x_27); +return x_20; +} +else +{ +lean_object* x_28; lean_object* x_29; size_t x_30; size_t x_31; lean_object* x_32; lean_object* x_33; +x_28 = lean_ctor_get(x_20, 1); +lean_inc(x_28); +lean_dec(x_20); +x_29 = lean_array_get_size(x_12); +x_30 = lean_usize_of_nat(x_29); +lean_dec(x_29); +x_31 = 0; +x_32 = l_Array_mapMUnsafe_map___at_Lean_Meta_LibrarySearch_librarySearchSymm___spec__2(x_18, x_30, x_31, x_12); +x_33 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_33, 0, x_32); +lean_ctor_set(x_33, 1, x_28); +return x_33; +} +} +else +{ +lean_object* x_34; lean_object* x_35; lean_object* x_36; +x_34 = lean_ctor_get(x_20, 1); +lean_inc(x_34); +lean_dec(x_20); +x_35 = lean_ctor_get(x_21, 0); +lean_inc(x_35); +lean_dec(x_21); +lean_inc(x_35); +x_36 = l_Lean_MVarId_getType(x_35, x_3, x_4, x_5, x_6, x_34); +if (lean_obj_tag(x_36) == 0) +{ +lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; +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_instantiateMVars___at___private_Lean_Meta_Basic_0__Lean_Meta_isClassApp_x3f___spec__1(x_37, x_3, x_4, x_5, x_6, x_38); +x_40 = lean_ctor_get(x_39, 0); +lean_inc(x_40); +x_41 = lean_ctor_get(x_39, 1); +lean_inc(x_41); +lean_dec(x_39); +lean_inc(x_4); +x_42 = lean_apply_6(x_1, x_40, x_3, x_4, x_5, x_6, x_41); +if (lean_obj_tag(x_42) == 0) +{ +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; uint8_t x_53; +x_43 = lean_ctor_get(x_42, 0); +lean_inc(x_43); +x_44 = lean_ctor_get(x_42, 1); +lean_inc(x_44); +lean_dec(x_42); +x_45 = lean_st_ref_get(x_4, x_44); +x_46 = lean_ctor_get(x_45, 0); +lean_inc(x_46); +x_47 = lean_ctor_get(x_45, 1); +lean_inc(x_47); +lean_dec(x_45); +x_48 = lean_ctor_get(x_46, 0); +lean_inc(x_48); +lean_dec(x_46); +x_49 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_49, 0, x_35); +lean_ctor_set(x_49, 1, x_48); +x_50 = lean_st_ref_take(x_4, x_47); +x_51 = lean_ctor_get(x_50, 0); +lean_inc(x_51); +x_52 = lean_ctor_get(x_50, 1); +lean_inc(x_52); +lean_dec(x_50); +x_53 = !lean_is_exclusive(x_51); +if (x_53 == 0) +{ +lean_object* x_54; lean_object* x_55; uint8_t x_56; +x_54 = lean_ctor_get(x_51, 0); +lean_dec(x_54); +lean_ctor_set(x_51, 0, x_17); +x_55 = lean_st_ref_set(x_4, x_51, x_52); +lean_dec(x_4); +x_56 = !lean_is_exclusive(x_55); +if (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_55, 0); +lean_dec(x_57); +x_58 = lean_alloc_closure((void*)(l_Lean_Meta_LibrarySearch_librarySearchSymm___lambda__1), 2, 1); +lean_closure_set(x_58, 0, x_18); +x_59 = lean_alloc_closure((void*)(l_Lean_Meta_LibrarySearch_librarySearchSymm___lambda__1), 2, 1); +lean_closure_set(x_59, 0, x_49); +x_60 = l_Lean_Meta_LibrarySearch_interleaveWith___rarg(x_58, x_12, x_59, x_43); +lean_dec(x_43); +lean_dec(x_12); +lean_ctor_set(x_55, 0, x_60); +return x_55; +} +else +{ +lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; +x_61 = lean_ctor_get(x_55, 1); +lean_inc(x_61); +lean_dec(x_55); +x_62 = lean_alloc_closure((void*)(l_Lean_Meta_LibrarySearch_librarySearchSymm___lambda__1), 2, 1); +lean_closure_set(x_62, 0, x_18); +x_63 = lean_alloc_closure((void*)(l_Lean_Meta_LibrarySearch_librarySearchSymm___lambda__1), 2, 1); +lean_closure_set(x_63, 0, x_49); +x_64 = l_Lean_Meta_LibrarySearch_interleaveWith___rarg(x_62, x_12, x_63, x_43); +lean_dec(x_43); +lean_dec(x_12); +x_65 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_65, 0, x_64); +lean_ctor_set(x_65, 1, x_61); +return x_65; +} +} +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; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; +x_66 = lean_ctor_get(x_51, 1); +x_67 = lean_ctor_get(x_51, 2); +x_68 = lean_ctor_get(x_51, 3); +lean_inc(x_68); +lean_inc(x_67); +lean_inc(x_66); +lean_dec(x_51); +x_69 = lean_alloc_ctor(0, 4, 0); +lean_ctor_set(x_69, 0, x_17); +lean_ctor_set(x_69, 1, x_66); +lean_ctor_set(x_69, 2, x_67); +lean_ctor_set(x_69, 3, x_68); +x_70 = lean_st_ref_set(x_4, x_69, x_52); +lean_dec(x_4); +x_71 = lean_ctor_get(x_70, 1); +lean_inc(x_71); +if (lean_is_exclusive(x_70)) { + lean_ctor_release(x_70, 0); + lean_ctor_release(x_70, 1); + x_72 = x_70; +} else { + lean_dec_ref(x_70); + x_72 = lean_box(0); +} +x_73 = lean_alloc_closure((void*)(l_Lean_Meta_LibrarySearch_librarySearchSymm___lambda__1), 2, 1); +lean_closure_set(x_73, 0, x_18); +x_74 = lean_alloc_closure((void*)(l_Lean_Meta_LibrarySearch_librarySearchSymm___lambda__1), 2, 1); +lean_closure_set(x_74, 0, x_49); +x_75 = l_Lean_Meta_LibrarySearch_interleaveWith___rarg(x_73, x_12, x_74, x_43); +lean_dec(x_43); +lean_dec(x_12); +if (lean_is_scalar(x_72)) { + x_76 = lean_alloc_ctor(0, 2, 0); +} else { + x_76 = x_72; +} +lean_ctor_set(x_76, 0, x_75); +lean_ctor_set(x_76, 1, x_71); +return x_76; +} +} +else +{ +uint8_t x_77; +lean_dec(x_35); +lean_dec(x_18); +lean_dec(x_17); +lean_dec(x_12); +lean_dec(x_4); +x_77 = !lean_is_exclusive(x_42); +if (x_77 == 0) +{ +return x_42; +} +else +{ +lean_object* x_78; lean_object* x_79; lean_object* x_80; +x_78 = lean_ctor_get(x_42, 0); +x_79 = lean_ctor_get(x_42, 1); +lean_inc(x_79); +lean_inc(x_78); +lean_dec(x_42); +x_80 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_80, 0, x_78); +lean_ctor_set(x_80, 1, x_79); +return x_80; +} +} +} +else +{ +uint8_t x_81; +lean_dec(x_35); +lean_dec(x_18); +lean_dec(x_17); +lean_dec(x_12); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_1); +x_81 = !lean_is_exclusive(x_36); +if (x_81 == 0) +{ +return x_36; +} +else +{ +lean_object* x_82; lean_object* x_83; lean_object* x_84; +x_82 = lean_ctor_get(x_36, 0); +x_83 = lean_ctor_get(x_36, 1); +lean_inc(x_83); +lean_inc(x_82); +lean_dec(x_36); +x_84 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_84, 0, x_82); +lean_ctor_set(x_84, 1, x_83); +return x_84; +} +} +} +} +else +{ +uint8_t x_85; +lean_dec(x_18); +lean_dec(x_17); +lean_dec(x_12); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_1); +x_85 = !lean_is_exclusive(x_20); +if (x_85 == 0) +{ +return x_20; +} +else +{ +lean_object* x_86; lean_object* x_87; lean_object* x_88; +x_86 = lean_ctor_get(x_20, 0); +x_87 = lean_ctor_get(x_20, 1); +lean_inc(x_87); +lean_inc(x_86); +lean_dec(x_20); +x_88 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_88, 0, x_86); +lean_ctor_set(x_88, 1, x_87); +return x_88; +} +} +} +else +{ +uint8_t x_89; +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +x_89 = !lean_is_exclusive(x_11); +if (x_89 == 0) +{ +return x_11; +} +else +{ +lean_object* x_90; lean_object* x_91; lean_object* x_92; +x_90 = lean_ctor_get(x_11, 0); +x_91 = lean_ctor_get(x_11, 1); +lean_inc(x_91); +lean_inc(x_90); +lean_dec(x_11); +x_92 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_92, 0, x_90); +lean_ctor_set(x_92, 1, x_91); +return x_92; +} +} +} +else +{ +uint8_t x_93; +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +x_93 = !lean_is_exclusive(x_8); +if (x_93 == 0) +{ +return x_8; +} +else +{ +lean_object* x_94; lean_object* x_95; lean_object* x_96; +x_94 = lean_ctor_get(x_8, 0); +x_95 = lean_ctor_get(x_8, 1); +lean_inc(x_95); +lean_inc(x_94); +lean_dec(x_8); +x_96 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_96, 0, x_94); +lean_ctor_set(x_96, 1, x_95); +return x_96; +} +} +} +} +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Meta_LibrarySearch_librarySearchSymm___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_mapMUnsafe_map___at_Lean_Meta_LibrarySearch_librarySearchSymm___spec__2(x_1, x_5, x_6, x_4); +return x_7; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_emoji___rarg(lean_object* x_1) { +_start: +{ +if (lean_obj_tag(x_1) == 0) +{ +lean_object* x_2; +x_2 = l_Lean_crossEmoji; +return x_2; +} +else +{ +lean_object* x_3; +x_3 = l_Lean_checkEmoji; +return x_3; +} +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_emoji(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; +x_3 = lean_alloc_closure((void*)(l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_emoji___rarg___boxed), 1, 0); +return x_3; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_emoji___rarg___boxed(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_emoji___rarg(x_1); +lean_dec(x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Meta_LibrarySearch_mkLibrarySearchLemma___lambda__1___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_updateTree___lambda__1___closed__1; +x_2 = l_Lean_Meta_LibrarySearch_instToStringDeclMod___closed__2; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_LibrarySearch_mkLibrarySearchLemma___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; lean_object* x_8; lean_object* x_9; lean_object* x_10; +x_7 = l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_IncDiscrTreeFinder_addImport___lambda__1___closed__2; +x_8 = lean_array_push(x_7, x_1); +x_9 = l_Lean_Meta_LibrarySearch_mkLibrarySearchLemma___lambda__1___closed__1; +x_10 = l_Lean_Meta_mkAppM(x_9, x_8, x_2, x_3, x_4, x_5, x_6); +return x_10; +} +} +static lean_object* _init_l_Lean_Meta_LibrarySearch_mkLibrarySearchLemma___lambda__2___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_updateTree___lambda__1___closed__1; +x_2 = l_Lean_Meta_LibrarySearch_instToStringDeclMod___closed__3; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_LibrarySearch_mkLibrarySearchLemma___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) { +_start: +{ +lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; +x_7 = l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_IncDiscrTreeFinder_addImport___lambda__1___closed__2; +x_8 = lean_array_push(x_7, x_1); +x_9 = l_Lean_Meta_LibrarySearch_mkLibrarySearchLemma___lambda__2___closed__1; +x_10 = l_Lean_Meta_mkAppM(x_9, x_8, x_2, x_3, x_4, x_5, x_6); +return x_10; +} +} +static lean_object* _init_l_Lean_Meta_LibrarySearch_mkLibrarySearchLemma___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Meta_LibrarySearch_mkLibrarySearchLemma___lambda__1), 6, 0); +return x_1; +} +} +static lean_object* _init_l_Lean_Meta_LibrarySearch_mkLibrarySearchLemma___closed__2() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Meta_LibrarySearch_mkLibrarySearchLemma___lambda__2), 6, 0); +return x_1; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_LibrarySearch_mkLibrarySearchLemma(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) { +_start: +{ +lean_object* x_8; +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +x_8 = l_Lean_Meta_mkConstWithFreshMVarLevels(x_1, x_3, x_4, x_5, x_6, x_7); +if (lean_obj_tag(x_8) == 0) +{ +switch (x_2) { +case 0: +{ +uint8_t x_9; +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +x_9 = !lean_is_exclusive(x_8); +if (x_9 == 0) +{ +return x_8; +} +else +{ +lean_object* x_10; lean_object* x_11; lean_object* x_12; +x_10 = lean_ctor_get(x_8, 0); +x_11 = lean_ctor_get(x_8, 1); +lean_inc(x_11); +lean_inc(x_10); +lean_dec(x_8); +x_12 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_12, 0, x_10); +lean_ctor_set(x_12, 1, x_11); +return x_12; +} +} +case 1: +{ +lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; +x_13 = lean_ctor_get(x_8, 0); +lean_inc(x_13); +x_14 = lean_ctor_get(x_8, 1); +lean_inc(x_14); +lean_dec(x_8); +x_15 = l_Lean_Meta_LibrarySearch_mkLibrarySearchLemma___closed__1; +x_16 = l_Lean_Meta_mapForallTelescope(x_15, x_13, x_3, x_4, x_5, x_6, x_14); +return x_16; +} +default: +{ +lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; +x_17 = lean_ctor_get(x_8, 0); +lean_inc(x_17); +x_18 = lean_ctor_get(x_8, 1); +lean_inc(x_18); +lean_dec(x_8); +x_19 = l_Lean_Meta_LibrarySearch_mkLibrarySearchLemma___closed__2; +x_20 = l_Lean_Meta_mapForallTelescope(x_19, x_17, x_3, x_4, x_5, x_6, x_18); +return x_20; +} +} +} +else +{ +uint8_t x_21; +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +x_21 = !lean_is_exclusive(x_8); +if (x_21 == 0) +{ +return x_8; +} +else +{ +lean_object* x_22; lean_object* x_23; lean_object* x_24; +x_22 = lean_ctor_get(x_8, 0); +x_23 = lean_ctor_get(x_8, 1); +lean_inc(x_23); +lean_inc(x_22); +lean_dec(x_8); +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; +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_LibrarySearch_mkLibrarySearchLemma___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: +{ +uint8_t x_8; lean_object* x_9; +x_8 = lean_unbox(x_2); +lean_dec(x_2); +x_9 = l_Lean_Meta_LibrarySearch_mkLibrarySearchLemma(x_1, x_8, x_3, x_4, x_5, x_6, x_7); +return x_9; +} +} +static lean_object* _init_l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearchLemma___lambda__1___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Meta_LibrarySearch_instToStringDeclMod___closed__1; +x_2 = l_Lean_stringToMessageData(x_1); +return x_2; +} +} +static lean_object* _init_l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearchLemma___lambda__1___closed__2() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes(" trying ", 8); +return x_1; +} +} +static lean_object* _init_l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearchLemma___lambda__1___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearchLemma___lambda__1___closed__2; +x_2 = l_Lean_stringToMessageData(x_1); +return x_2; +} +} +static lean_object* _init_l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearchLemma___lambda__1___closed__4() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes(" with ", 6); +return x_1; +} +} +static lean_object* _init_l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearchLemma___lambda__1___closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearchLemma___lambda__1___closed__4; +x_2 = l_Lean_stringToMessageData(x_1); +return x_2; +} +} +static lean_object* _init_l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearchLemma___lambda__1___closed__6() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes(" ", 1); +return x_1; +} +} +static lean_object* _init_l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearchLemma___lambda__1___closed__7() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearchLemma___lambda__1___closed__6; +x_2 = l_Lean_stringToMessageData(x_1); +return x_2; +} +} +static lean_object* _init_l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearchLemma___lambda__1___closed__8() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Meta_LibrarySearch_instToStringDeclMod___closed__1; +x_2 = lean_alloc_ctor(3, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; +} +} +static lean_object* _init_l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearchLemma___lambda__1___closed__9() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearchLemma___lambda__1___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___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearchLemma___lambda__1___closed__10() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Meta_LibrarySearch_instToStringDeclMod___closed__2; +x_2 = lean_alloc_ctor(3, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; +} +} +static lean_object* _init_l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearchLemma___lambda__1___closed__11() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearchLemma___lambda__1___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___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearchLemma___lambda__1___closed__12() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Meta_LibrarySearch_instToStringDeclMod___closed__3; +x_2 = lean_alloc_ctor(3, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; +} +} +static lean_object* _init_l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearchLemma___lambda__1___closed__13() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearchLemma___lambda__1___closed__12; +x_2 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearchLemma___lambda__1(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) { +_start: +{ +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_9 = l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_emoji___rarg(x_3); +x_10 = l_Lean_stringToMessageData(x_9); +lean_dec(x_9); +x_11 = l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearchLemma___lambda__1___closed__1; +x_12 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_12, 0, x_11); +lean_ctor_set(x_12, 1, x_10); +x_13 = l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearchLemma___lambda__1___closed__3; +x_14 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_14, 0, x_12); +lean_ctor_set(x_14, 1, x_13); +x_15 = l_Lean_MessageData_ofName(x_1); +x_16 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_16, 0, x_14); +lean_ctor_set(x_16, 1, x_15); +x_17 = l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearchLemma___lambda__1___closed__5; +x_18 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_18, 0, x_16); +lean_ctor_set(x_18, 1, x_17); +switch (x_2) { +case 0: +{ +lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; +x_19 = l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearchLemma___lambda__1___closed__9; +x_20 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_20, 0, x_18); +lean_ctor_set(x_20, 1, x_19); +x_21 = l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearchLemma___lambda__1___closed__7; +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(0, 2, 0); +lean_ctor_set(x_23, 0, x_22); +lean_ctor_set(x_23, 1, x_8); +return x_23; +} +case 1: +{ +lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; +x_24 = l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearchLemma___lambda__1___closed__11; +x_25 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_25, 0, x_18); +lean_ctor_set(x_25, 1, x_24); +x_26 = l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearchLemma___lambda__1___closed__7; +x_27 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_27, 0, x_25); +lean_ctor_set(x_27, 1, x_26); +x_28 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_28, 0, x_27); +lean_ctor_set(x_28, 1, x_8); +return x_28; +} +default: +{ +lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; +x_29 = l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearchLemma___lambda__1___closed__13; +x_30 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_30, 0, x_18); +lean_ctor_set(x_30, 1, x_29); +x_31 = l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearchLemma___lambda__1___closed__7; +x_32 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_32, 0, x_30); +lean_ctor_set(x_32, 1, 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_8); +return x_33; +} +} +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearchLemma___lambda__2(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) { +_start: +{ +lean_object* x_13; lean_object* x_14; lean_object* x_15; uint8_t x_16; +x_13 = lean_st_ref_take(x_9, 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_is_exclusive(x_14); +if (x_16 == 0) +{ +lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; +x_17 = lean_ctor_get(x_14, 0); +lean_dec(x_17); +lean_ctor_set(x_14, 0, x_1); +x_18 = lean_st_ref_set(x_9, x_14, x_15); +x_19 = lean_ctor_get(x_18, 1); +lean_inc(x_19); +lean_dec(x_18); +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +x_20 = l_Lean_Meta_LibrarySearch_mkLibrarySearchLemma(x_2, x_3, x_8, x_9, x_10, x_11, x_19); +if (lean_obj_tag(x_20) == 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); +lean_dec(x_20); +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_4); +x_23 = l_Lean_MVarId_apply(x_4, x_21, x_5, x_8, x_9, x_10, x_11, x_22); +if (lean_obj_tag(x_23) == 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); +lean_dec(x_23); +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_24); +x_26 = lean_apply_6(x_6, x_24, x_8, x_9, x_10, x_11, x_25); +if (lean_obj_tag(x_26) == 0) +{ +lean_dec(x_24); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_4); +return x_26; +} +else +{ +uint8_t x_27; +x_27 = !lean_is_exclusive(x_26); +if (x_27 == 0) +{ +lean_object* x_28; lean_object* x_29; uint8_t x_30; +x_28 = lean_ctor_get(x_26, 0); +x_29 = lean_ctor_get(x_26, 1); +x_30 = l_Lean_Exception_isRuntime(x_28); +if (x_30 == 0) +{ +lean_object* x_31; +lean_free_object(x_26); +lean_dec(x_28); +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +x_31 = lean_apply_6(x_7, x_4, x_8, x_9, x_10, x_11, x_29); +if (lean_obj_tag(x_31) == 0) +{ +lean_object* x_32; uint8_t x_33; +x_32 = lean_ctor_get(x_31, 0); +lean_inc(x_32); +x_33 = lean_unbox(x_32); +lean_dec(x_32); +if (x_33 == 0) +{ +lean_object* x_34; lean_object* x_35; lean_object* x_36; +lean_dec(x_24); +x_34 = lean_ctor_get(x_31, 1); +lean_inc(x_34); +lean_dec(x_31); +x_35 = l_Lean_Meta_LibrarySearch_solveByElim___lambda__3___closed__2; +x_36 = l_Lean_throwError___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__1(x_35, x_8, x_9, x_10, x_11, x_34); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +return x_36; +} +else +{ +uint8_t x_37; +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +x_37 = !lean_is_exclusive(x_31); +if (x_37 == 0) +{ +lean_object* x_38; +x_38 = lean_ctor_get(x_31, 0); +lean_dec(x_38); +lean_ctor_set(x_31, 0, x_24); +return x_31; +} +else +{ +lean_object* x_39; lean_object* x_40; +x_39 = lean_ctor_get(x_31, 1); +lean_inc(x_39); +lean_dec(x_31); +x_40 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_40, 0, x_24); +lean_ctor_set(x_40, 1, x_39); +return x_40; +} +} +} +else +{ +uint8_t x_41; +lean_dec(x_24); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +x_41 = !lean_is_exclusive(x_31); +if (x_41 == 0) +{ +return x_31; +} +else +{ +lean_object* x_42; lean_object* x_43; lean_object* x_44; +x_42 = lean_ctor_get(x_31, 0); +x_43 = lean_ctor_get(x_31, 1); +lean_inc(x_43); +lean_inc(x_42); +lean_dec(x_31); +x_44 = lean_alloc_ctor(1, 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_45; +x_45 = lean_ctor_get_uint8(x_10, sizeof(void*)*11); +if (x_45 == 0) +{ +lean_dec(x_24); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_4); +return x_26; +} +else +{ +lean_object* x_46; +lean_free_object(x_26); +lean_dec(x_28); +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +x_46 = lean_apply_6(x_7, x_4, x_8, x_9, x_10, x_11, x_29); +if (lean_obj_tag(x_46) == 0) +{ +lean_object* x_47; uint8_t x_48; +x_47 = lean_ctor_get(x_46, 0); +lean_inc(x_47); +x_48 = lean_unbox(x_47); +lean_dec(x_47); +if (x_48 == 0) +{ +lean_object* x_49; lean_object* x_50; lean_object* x_51; +lean_dec(x_24); +x_49 = lean_ctor_get(x_46, 1); +lean_inc(x_49); +lean_dec(x_46); +x_50 = l_Lean_Meta_LibrarySearch_solveByElim___lambda__3___closed__2; +x_51 = l_Lean_throwError___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__1(x_50, x_8, x_9, x_10, x_11, x_49); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +return x_51; +} +else +{ +uint8_t x_52; +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +x_52 = !lean_is_exclusive(x_46); +if (x_52 == 0) +{ +lean_object* x_53; +x_53 = lean_ctor_get(x_46, 0); +lean_dec(x_53); +lean_ctor_set(x_46, 0, x_24); +return x_46; +} +else +{ +lean_object* x_54; lean_object* x_55; +x_54 = lean_ctor_get(x_46, 1); +lean_inc(x_54); +lean_dec(x_46); +x_55 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_55, 0, x_24); +lean_ctor_set(x_55, 1, x_54); +return x_55; +} +} +} +else +{ +uint8_t x_56; +lean_dec(x_24); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +x_56 = !lean_is_exclusive(x_46); +if (x_56 == 0) +{ +return x_46; +} +else +{ +lean_object* x_57; lean_object* x_58; lean_object* x_59; +x_57 = lean_ctor_get(x_46, 0); +x_58 = lean_ctor_get(x_46, 1); +lean_inc(x_58); +lean_inc(x_57); +lean_dec(x_46); +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 +{ +lean_object* x_60; lean_object* x_61; uint8_t x_62; +x_60 = lean_ctor_get(x_26, 0); +x_61 = lean_ctor_get(x_26, 1); +lean_inc(x_61); +lean_inc(x_60); +lean_dec(x_26); +x_62 = l_Lean_Exception_isRuntime(x_60); +if (x_62 == 0) +{ +lean_object* x_63; +lean_dec(x_60); +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +x_63 = lean_apply_6(x_7, x_4, x_8, x_9, x_10, x_11, x_61); +if (lean_obj_tag(x_63) == 0) +{ +lean_object* x_64; uint8_t x_65; +x_64 = lean_ctor_get(x_63, 0); +lean_inc(x_64); +x_65 = lean_unbox(x_64); +lean_dec(x_64); +if (x_65 == 0) +{ +lean_object* x_66; lean_object* x_67; lean_object* x_68; +lean_dec(x_24); +x_66 = lean_ctor_get(x_63, 1); +lean_inc(x_66); +lean_dec(x_63); +x_67 = l_Lean_Meta_LibrarySearch_solveByElim___lambda__3___closed__2; +x_68 = l_Lean_throwError___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__1(x_67, x_8, x_9, x_10, x_11, x_66); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +return x_68; +} +else +{ +lean_object* x_69; lean_object* x_70; lean_object* x_71; +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +x_69 = lean_ctor_get(x_63, 1); +lean_inc(x_69); +if (lean_is_exclusive(x_63)) { + lean_ctor_release(x_63, 0); + lean_ctor_release(x_63, 1); + x_70 = x_63; +} else { + lean_dec_ref(x_63); + x_70 = lean_box(0); +} +if (lean_is_scalar(x_70)) { + x_71 = lean_alloc_ctor(0, 2, 0); +} else { + x_71 = x_70; +} +lean_ctor_set(x_71, 0, x_24); +lean_ctor_set(x_71, 1, x_69); +return x_71; +} +} +else +{ +lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; +lean_dec(x_24); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +x_72 = lean_ctor_get(x_63, 0); +lean_inc(x_72); +x_73 = lean_ctor_get(x_63, 1); +lean_inc(x_73); +if (lean_is_exclusive(x_63)) { + lean_ctor_release(x_63, 0); + lean_ctor_release(x_63, 1); + x_74 = x_63; +} else { + lean_dec_ref(x_63); + x_74 = lean_box(0); +} +if (lean_is_scalar(x_74)) { + x_75 = lean_alloc_ctor(1, 2, 0); +} else { + x_75 = x_74; +} +lean_ctor_set(x_75, 0, x_72); +lean_ctor_set(x_75, 1, x_73); +return x_75; +} +} +else +{ +uint8_t x_76; +x_76 = lean_ctor_get_uint8(x_10, sizeof(void*)*11); +if (x_76 == 0) +{ +lean_object* x_77; +lean_dec(x_24); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_4); +x_77 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_77, 0, x_60); +lean_ctor_set(x_77, 1, x_61); +return x_77; +} +else +{ +lean_object* x_78; +lean_dec(x_60); +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +x_78 = lean_apply_6(x_7, x_4, x_8, x_9, x_10, x_11, x_61); +if (lean_obj_tag(x_78) == 0) +{ +lean_object* x_79; uint8_t x_80; +x_79 = lean_ctor_get(x_78, 0); +lean_inc(x_79); +x_80 = lean_unbox(x_79); +lean_dec(x_79); +if (x_80 == 0) +{ +lean_object* x_81; lean_object* x_82; lean_object* x_83; +lean_dec(x_24); +x_81 = lean_ctor_get(x_78, 1); +lean_inc(x_81); +lean_dec(x_78); +x_82 = l_Lean_Meta_LibrarySearch_solveByElim___lambda__3___closed__2; +x_83 = l_Lean_throwError___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__1(x_82, x_8, x_9, x_10, x_11, x_81); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +return x_83; +} +else +{ +lean_object* x_84; lean_object* x_85; lean_object* x_86; +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +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_78); + x_85 = lean_box(0); +} +if (lean_is_scalar(x_85)) { + x_86 = lean_alloc_ctor(0, 2, 0); +} else { + x_86 = x_85; +} +lean_ctor_set(x_86, 0, x_24); +lean_ctor_set(x_86, 1, x_84); +return x_86; +} +} +else +{ +lean_object* x_87; lean_object* x_88; lean_object* x_89; lean_object* x_90; +lean_dec(x_24); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +x_87 = lean_ctor_get(x_78, 0); +lean_inc(x_87); +x_88 = lean_ctor_get(x_78, 1); +lean_inc(x_88); +if (lean_is_exclusive(x_78)) { + lean_ctor_release(x_78, 0); + lean_ctor_release(x_78, 1); + x_89 = x_78; +} else { + lean_dec_ref(x_78); + x_89 = lean_box(0); +} +if (lean_is_scalar(x_89)) { + x_90 = lean_alloc_ctor(1, 2, 0); +} else { + x_90 = x_89; +} +lean_ctor_set(x_90, 0, x_87); +lean_ctor_set(x_90, 1, x_88); +return x_90; +} +} +} +} +} +} +else +{ +uint8_t x_91; +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_4); +x_91 = !lean_is_exclusive(x_23); +if (x_91 == 0) +{ +return x_23; +} +else +{ +lean_object* x_92; lean_object* x_93; lean_object* x_94; +x_92 = lean_ctor_get(x_23, 0); +x_93 = lean_ctor_get(x_23, 1); +lean_inc(x_93); +lean_inc(x_92); +lean_dec(x_23); +x_94 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_94, 0, x_92); +lean_ctor_set(x_94, 1, x_93); +return x_94; +} +} +} +else +{ +uint8_t x_95; +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); +x_95 = !lean_is_exclusive(x_20); +if (x_95 == 0) +{ +return x_20; +} +else +{ +lean_object* x_96; lean_object* x_97; lean_object* x_98; +x_96 = lean_ctor_get(x_20, 0); +x_97 = lean_ctor_get(x_20, 1); +lean_inc(x_97); +lean_inc(x_96); +lean_dec(x_20); +x_98 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_98, 0, x_96); +lean_ctor_set(x_98, 1, x_97); +return x_98; +} +} +} +else +{ +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_99 = lean_ctor_get(x_14, 1); +x_100 = lean_ctor_get(x_14, 2); +x_101 = lean_ctor_get(x_14, 3); +lean_inc(x_101); +lean_inc(x_100); +lean_inc(x_99); +lean_dec(x_14); +x_102 = lean_alloc_ctor(0, 4, 0); +lean_ctor_set(x_102, 0, x_1); +lean_ctor_set(x_102, 1, x_99); +lean_ctor_set(x_102, 2, x_100); +lean_ctor_set(x_102, 3, x_101); +x_103 = lean_st_ref_set(x_9, x_102, x_15); +x_104 = lean_ctor_get(x_103, 1); +lean_inc(x_104); +lean_dec(x_103); +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +x_105 = l_Lean_Meta_LibrarySearch_mkLibrarySearchLemma(x_2, x_3, x_8, x_9, x_10, x_11, x_104); +if (lean_obj_tag(x_105) == 0) +{ +lean_object* x_106; lean_object* x_107; lean_object* x_108; +x_106 = lean_ctor_get(x_105, 0); +lean_inc(x_106); +x_107 = lean_ctor_get(x_105, 1); +lean_inc(x_107); +lean_dec(x_105); +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_4); +x_108 = l_Lean_MVarId_apply(x_4, x_106, x_5, x_8, x_9, x_10, x_11, x_107); +if (lean_obj_tag(x_108) == 0) +{ +lean_object* x_109; lean_object* x_110; lean_object* x_111; +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_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_109); +x_111 = lean_apply_6(x_6, x_109, x_8, x_9, x_10, x_11, x_110); +if (lean_obj_tag(x_111) == 0) +{ +lean_dec(x_109); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_4); +return x_111; +} +else +{ +lean_object* x_112; lean_object* x_113; lean_object* x_114; uint8_t x_115; +x_112 = lean_ctor_get(x_111, 0); +lean_inc(x_112); +x_113 = lean_ctor_get(x_111, 1); +lean_inc(x_113); +if (lean_is_exclusive(x_111)) { + lean_ctor_release(x_111, 0); + lean_ctor_release(x_111, 1); + x_114 = x_111; +} else { + lean_dec_ref(x_111); + x_114 = lean_box(0); +} +x_115 = l_Lean_Exception_isRuntime(x_112); +if (x_115 == 0) +{ +lean_object* x_116; +lean_dec(x_114); +lean_dec(x_112); +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +x_116 = lean_apply_6(x_7, x_4, x_8, x_9, x_10, x_11, x_113); +if (lean_obj_tag(x_116) == 0) +{ +lean_object* x_117; uint8_t x_118; +x_117 = lean_ctor_get(x_116, 0); +lean_inc(x_117); +x_118 = lean_unbox(x_117); +lean_dec(x_117); +if (x_118 == 0) +{ +lean_object* x_119; lean_object* x_120; lean_object* x_121; +lean_dec(x_109); +x_119 = lean_ctor_get(x_116, 1); +lean_inc(x_119); +lean_dec(x_116); +x_120 = l_Lean_Meta_LibrarySearch_solveByElim___lambda__3___closed__2; +x_121 = l_Lean_throwError___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__1(x_120, x_8, x_9, x_10, x_11, x_119); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +return x_121; +} +else +{ +lean_object* x_122; lean_object* x_123; lean_object* x_124; +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +x_122 = lean_ctor_get(x_116, 1); +lean_inc(x_122); +if (lean_is_exclusive(x_116)) { + lean_ctor_release(x_116, 0); + lean_ctor_release(x_116, 1); + x_123 = x_116; +} else { + lean_dec_ref(x_116); + x_123 = lean_box(0); +} +if (lean_is_scalar(x_123)) { + x_124 = lean_alloc_ctor(0, 2, 0); +} else { + x_124 = x_123; +} +lean_ctor_set(x_124, 0, x_109); +lean_ctor_set(x_124, 1, x_122); +return x_124; +} +} +else +{ +lean_object* x_125; lean_object* x_126; lean_object* x_127; lean_object* x_128; +lean_dec(x_109); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +x_125 = lean_ctor_get(x_116, 0); +lean_inc(x_125); +x_126 = lean_ctor_get(x_116, 1); +lean_inc(x_126); +if (lean_is_exclusive(x_116)) { + lean_ctor_release(x_116, 0); + lean_ctor_release(x_116, 1); + x_127 = x_116; +} else { + lean_dec_ref(x_116); + x_127 = lean_box(0); +} +if (lean_is_scalar(x_127)) { + x_128 = lean_alloc_ctor(1, 2, 0); +} else { + x_128 = x_127; +} +lean_ctor_set(x_128, 0, x_125); +lean_ctor_set(x_128, 1, x_126); +return x_128; +} +} +else +{ +uint8_t x_129; +x_129 = lean_ctor_get_uint8(x_10, sizeof(void*)*11); +if (x_129 == 0) +{ +lean_object* x_130; +lean_dec(x_109); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_4); +if (lean_is_scalar(x_114)) { + x_130 = lean_alloc_ctor(1, 2, 0); +} else { + x_130 = x_114; +} +lean_ctor_set(x_130, 0, x_112); +lean_ctor_set(x_130, 1, x_113); +return x_130; +} +else +{ +lean_object* x_131; +lean_dec(x_114); +lean_dec(x_112); +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +x_131 = lean_apply_6(x_7, x_4, x_8, x_9, x_10, x_11, x_113); +if (lean_obj_tag(x_131) == 0) +{ +lean_object* x_132; uint8_t x_133; +x_132 = lean_ctor_get(x_131, 0); +lean_inc(x_132); +x_133 = lean_unbox(x_132); +lean_dec(x_132); +if (x_133 == 0) +{ +lean_object* x_134; lean_object* x_135; lean_object* x_136; +lean_dec(x_109); +x_134 = lean_ctor_get(x_131, 1); +lean_inc(x_134); +lean_dec(x_131); +x_135 = l_Lean_Meta_LibrarySearch_solveByElim___lambda__3___closed__2; +x_136 = l_Lean_throwError___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__1(x_135, x_8, x_9, x_10, x_11, x_134); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +return x_136; +} +else +{ +lean_object* x_137; lean_object* x_138; lean_object* x_139; +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +x_137 = lean_ctor_get(x_131, 1); +lean_inc(x_137); +if (lean_is_exclusive(x_131)) { + lean_ctor_release(x_131, 0); + lean_ctor_release(x_131, 1); + x_138 = x_131; +} else { + lean_dec_ref(x_131); + x_138 = lean_box(0); +} +if (lean_is_scalar(x_138)) { + x_139 = lean_alloc_ctor(0, 2, 0); +} else { + x_139 = x_138; +} +lean_ctor_set(x_139, 0, x_109); +lean_ctor_set(x_139, 1, x_137); +return x_139; +} +} +else +{ +lean_object* x_140; lean_object* x_141; lean_object* x_142; lean_object* x_143; +lean_dec(x_109); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +x_140 = lean_ctor_get(x_131, 0); +lean_inc(x_140); +x_141 = lean_ctor_get(x_131, 1); +lean_inc(x_141); +if (lean_is_exclusive(x_131)) { + lean_ctor_release(x_131, 0); + lean_ctor_release(x_131, 1); + x_142 = x_131; +} else { + lean_dec_ref(x_131); + x_142 = lean_box(0); +} +if (lean_is_scalar(x_142)) { + x_143 = lean_alloc_ctor(1, 2, 0); +} else { + x_143 = x_142; +} +lean_ctor_set(x_143, 0, x_140); +lean_ctor_set(x_143, 1, x_141); +return x_143; +} +} +} +} +} +else +{ +lean_object* x_144; lean_object* x_145; lean_object* x_146; lean_object* x_147; +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_4); +x_144 = lean_ctor_get(x_108, 0); +lean_inc(x_144); +x_145 = lean_ctor_get(x_108, 1); +lean_inc(x_145); +if (lean_is_exclusive(x_108)) { + lean_ctor_release(x_108, 0); + lean_ctor_release(x_108, 1); + x_146 = x_108; +} else { + lean_dec_ref(x_108); + x_146 = lean_box(0); +} +if (lean_is_scalar(x_146)) { + x_147 = lean_alloc_ctor(1, 2, 0); +} else { + x_147 = x_146; +} +lean_ctor_set(x_147, 0, x_144); +lean_ctor_set(x_147, 1, x_145); +return x_147; +} +} +else +{ +lean_object* x_148; lean_object* x_149; lean_object* x_150; lean_object* x_151; +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); +x_148 = lean_ctor_get(x_105, 0); +lean_inc(x_148); +x_149 = lean_ctor_get(x_105, 1); +lean_inc(x_149); +if (lean_is_exclusive(x_105)) { + lean_ctor_release(x_105, 0); + lean_ctor_release(x_105, 1); + x_150 = x_105; +} else { + lean_dec_ref(x_105); + x_150 = lean_box(0); +} +if (lean_is_scalar(x_150)) { + x_151 = lean_alloc_ctor(1, 2, 0); +} else { + x_151 = x_150; +} +lean_ctor_set(x_151, 0, x_148); +lean_ctor_set(x_151, 1, x_149); +return x_151; +} +} +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearchLemma(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; lean_object* x_16; lean_object* x_17; lean_object* x_18; uint8_t x_19; lean_object* x_20; +x_10 = lean_ctor_get(x_4, 0); +lean_inc(x_10); +x_11 = lean_ctor_get(x_4, 1); +lean_inc(x_11); +lean_dec(x_4); +x_12 = lean_ctor_get(x_10, 0); +lean_inc(x_12); +x_13 = lean_ctor_get(x_10, 1); +lean_inc(x_13); +lean_dec(x_10); +x_14 = lean_ctor_get(x_11, 0); +lean_inc(x_14); +x_15 = lean_ctor_get(x_11, 1); +lean_inc(x_15); +lean_dec(x_11); +lean_inc(x_15); +lean_inc(x_14); +x_16 = lean_alloc_closure((void*)(l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearchLemma___lambda__1___boxed), 8, 2); +lean_closure_set(x_16, 0, x_14); +lean_closure_set(x_16, 1, x_15); +x_17 = lean_alloc_closure((void*)(l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearchLemma___lambda__2___boxed), 12, 7); +lean_closure_set(x_17, 0, x_13); +lean_closure_set(x_17, 1, x_14); +lean_closure_set(x_17, 2, x_15); +lean_closure_set(x_17, 3, x_12); +lean_closure_set(x_17, 4, x_1); +lean_closure_set(x_17, 5, x_2); +lean_closure_set(x_17, 6, x_3); +x_18 = l_Lean_Meta_LibrarySearch_initFn____x40_Lean_Meta_Tactic_LibrarySearch___hyg_1378____closed__3; +x_19 = 1; +x_20 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3(x_18, x_16, x_17, x_19, x_5, x_6, x_7, x_8, x_9); +return x_20; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearchLemma___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) { +_start: +{ +uint8_t x_9; lean_object* x_10; +x_9 = lean_unbox(x_2); +lean_dec(x_2); +x_10 = l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearchLemma___lambda__1(x_1, x_9, x_3, x_4, x_5, x_6, x_7, x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +return x_10; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearchLemma___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) { +_start: +{ +uint8_t x_13; lean_object* x_14; +x_13 = lean_unbox(x_3); +lean_dec(x_3); +x_14 = l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearchLemma___lambda__2(x_1, x_2, x_13, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +return x_14; +} +} +LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_Meta_LibrarySearch_tryOnEach___spec__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, 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; lean_object* x_14; lean_object* x_15; uint8_t x_16; +x_11 = lean_st_ref_get(x_7, x_10); +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); +x_14 = lean_ctor_get(x_12, 0); +lean_inc(x_14); +lean_dec(x_12); +x_15 = l_Lean_Meta_SavedState_restore(x_1, x_6, x_7, x_8, x_9, x_13); +x_16 = !lean_is_exclusive(x_15); +if (x_16 == 0) +{ +lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; +x_17 = lean_ctor_get(x_15, 0); +lean_dec(x_17); +x_18 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_18, 0, x_2); +lean_ctor_set(x_18, 1, x_14); +x_19 = lean_array_push(x_4, x_18); +x_20 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_20, 0, x_3); +lean_ctor_set(x_20, 1, x_19); +x_21 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_21, 0, x_20); +lean_ctor_set(x_15, 0, x_21); +return x_15; +} +else +{ +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_22 = lean_ctor_get(x_15, 1); +lean_inc(x_22); +lean_dec(x_15); +x_23 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_23, 0, x_2); +lean_ctor_set(x_23, 1, x_14); +x_24 = lean_array_push(x_4, x_23); +x_25 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_25, 0, x_3); +lean_ctor_set(x_25, 1, x_24); +x_26 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_26, 0, x_25); +x_27 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_27, 0, x_26); +lean_ctor_set(x_27, 1, x_22); +return x_27; +} +} +} +static lean_object* _init_l_Array_forInUnsafe_loop___at_Lean_Meta_LibrarySearch_tryOnEach___spec__1___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = lean_box(0); +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_forInUnsafe_loop___at_Lean_Meta_LibrarySearch_tryOnEach___spec__1(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, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +_start: +{ +uint8_t x_13; +x_13 = lean_usize_dec_lt(x_6, x_5); +if (x_13 == 0) +{ +lean_object* x_14; +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_3); +lean_dec(x_1); +x_14 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_14, 0, x_7); +lean_ctor_set(x_14, 1, x_12); +return x_14; +} +else +{ +lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_47; +x_15 = lean_array_uget(x_4, x_6); +x_25 = lean_ctor_get(x_7, 1); +lean_inc(x_25); +if (lean_is_exclusive(x_7)) { + lean_ctor_release(x_7, 0); + lean_ctor_release(x_7, 1); + x_26 = x_7; +} else { + lean_dec_ref(x_7); + x_26 = lean_box(0); +} +lean_inc(x_1); +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +x_47 = lean_apply_6(x_1, x_15, x_8, x_9, x_10, x_11, x_12); +if (lean_obj_tag(x_47) == 0) +{ +lean_object* x_48; lean_object* x_49; lean_object* x_50; +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 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_50, 0, x_48); +x_27 = x_50; +x_28 = x_49; +goto block_46; +} +else +{ +uint8_t x_51; +x_51 = !lean_is_exclusive(x_47); +if (x_51 == 0) +{ +lean_object* x_52; lean_object* x_53; uint8_t x_54; +x_52 = lean_ctor_get(x_47, 0); +x_53 = lean_ctor_get(x_47, 1); +x_54 = l_Lean_Exception_isRuntime(x_52); +if (x_54 == 0) +{ +lean_object* x_55; +lean_free_object(x_47); +x_55 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_55, 0, x_52); +x_27 = x_55; +x_28 = x_53; +goto block_46; +} +else +{ +uint8_t x_56; +x_56 = lean_ctor_get_uint8(x_10, sizeof(void*)*11); +if (x_56 == 0) +{ +lean_dec(x_26); +lean_dec(x_25); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_3); +lean_dec(x_1); +return x_47; +} +else +{ +lean_object* x_57; +lean_free_object(x_47); +x_57 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_57, 0, x_52); +x_27 = x_57; +x_28 = x_53; +goto block_46; +} +} +} +else +{ +lean_object* x_58; lean_object* x_59; uint8_t x_60; +x_58 = lean_ctor_get(x_47, 0); +x_59 = lean_ctor_get(x_47, 1); +lean_inc(x_59); +lean_inc(x_58); +lean_dec(x_47); +x_60 = l_Lean_Exception_isRuntime(x_58); +if (x_60 == 0) +{ +lean_object* x_61; +x_61 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_61, 0, x_58); +x_27 = x_61; +x_28 = x_59; +goto block_46; +} +else +{ +uint8_t x_62; +x_62 = lean_ctor_get_uint8(x_10, sizeof(void*)*11); +if (x_62 == 0) +{ +lean_object* x_63; +lean_dec(x_26); +lean_dec(x_25); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_3); +lean_dec(x_1); +x_63 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_63, 0, x_58); +lean_ctor_set(x_63, 1, x_59); +return x_63; +} +else +{ +lean_object* x_64; +x_64 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_64, 0, x_58); +x_27 = x_64; +x_28 = x_59; +goto block_46; +} +} +} +} +block_24: +{ +if (lean_obj_tag(x_16) == 0) +{ +lean_object* x_18; lean_object* x_19; +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_3); +lean_dec(x_1); +x_18 = lean_ctor_get(x_16, 0); +lean_inc(x_18); +lean_dec(x_16); +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_object* x_20; size_t x_21; size_t x_22; +x_20 = lean_ctor_get(x_16, 0); +lean_inc(x_20); +lean_dec(x_16); +x_21 = 1; +x_22 = lean_usize_add(x_6, x_21); +x_6 = x_22; +x_7 = x_20; +x_12 = x_17; +goto _start; +} +} +block_46: +{ +if (lean_obj_tag(x_27) == 0) +{ +lean_object* x_29; lean_object* x_30; lean_object* x_31; uint8_t x_32; +x_29 = lean_ctor_get(x_27, 0); +lean_inc(x_29); +lean_dec(x_27); +x_30 = l_Lean_Meta_SavedState_restore(x_2, x_8, x_9, x_10, x_11, x_28); +x_31 = lean_ctor_get(x_30, 1); +lean_inc(x_31); +lean_dec(x_30); +x_32 = l_Lean_Meta_LibrarySearch_isAbortSpeculation(x_29); +lean_dec(x_29); +if (x_32 == 0) +{ +lean_object* x_33; lean_object* x_34; +lean_inc(x_3); +if (lean_is_scalar(x_26)) { + x_33 = lean_alloc_ctor(0, 2, 0); +} else { + x_33 = x_26; +} +lean_ctor_set(x_33, 0, x_3); +lean_ctor_set(x_33, 1, x_25); +x_34 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_34, 0, x_33); +x_16 = x_34; +x_17 = x_31; +goto block_24; +} +else +{ +lean_object* x_35; lean_object* x_36; +lean_inc(x_3); +if (lean_is_scalar(x_26)) { + x_35 = lean_alloc_ctor(0, 2, 0); +} else { + x_35 = x_26; +} +lean_ctor_set(x_35, 0, x_3); +lean_ctor_set(x_35, 1, x_25); +x_36 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_36, 0, x_35); +x_16 = x_36; +x_17 = x_31; +goto block_24; +} +} +else +{ +lean_object* x_37; uint8_t x_38; +x_37 = lean_ctor_get(x_27, 0); +lean_inc(x_37); +lean_dec(x_27); +x_38 = l_List_isEmpty___rarg(x_37); +if (x_38 == 0) +{ +lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; +lean_dec(x_26); +x_39 = lean_box(0); +lean_inc(x_3); +x_40 = l_Array_forInUnsafe_loop___at_Lean_Meta_LibrarySearch_tryOnEach___spec__1___lambda__1(x_2, x_37, x_3, x_25, x_39, x_8, x_9, x_10, x_11, x_28); +x_41 = lean_ctor_get(x_40, 0); +lean_inc(x_41); +x_42 = lean_ctor_get(x_40, 1); +lean_inc(x_42); +lean_dec(x_40); +x_16 = x_41; +x_17 = x_42; +goto block_24; +} +else +{ +lean_object* x_43; lean_object* x_44; lean_object* x_45; +lean_dec(x_37); +x_43 = l_Array_forInUnsafe_loop___at_Lean_Meta_LibrarySearch_tryOnEach___spec__1___closed__1; +if (lean_is_scalar(x_26)) { + x_44 = lean_alloc_ctor(0, 2, 0); +} else { + x_44 = x_26; +} +lean_ctor_set(x_44, 0, x_43); +lean_ctor_set(x_44, 1, x_25); +x_45 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_45, 0, x_44); +x_16 = x_45; +x_17 = x_28; +goto block_24; +} +} +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_LibrarySearch_tryOnEach___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) { +_start: +{ +lean_object* x_8; lean_object* x_9; +x_8 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_8, 0, x_1); +x_9 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_9, 0, x_8); +lean_ctor_set(x_9, 1, x_7); +return x_9; +} +} +static lean_object* _init_l_Lean_Meta_LibrarySearch_tryOnEach___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Meta_LibrarySearch_solveByElim___closed__5; +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_Meta_LibrarySearch_tryOnEach(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_object* x_10; lean_object* x_11; lean_object* x_12; size_t x_13; size_t x_14; lean_object* x_15; lean_object* x_16; +x_8 = l_Lean_Meta_saveState___rarg(x_4, x_5, x_6, x_7); +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_get_size(x_2); +x_13 = lean_usize_of_nat(x_12); +lean_dec(x_12); +x_14 = 0; +x_15 = l_Lean_Meta_LibrarySearch_tryOnEach___closed__1; +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +x_16 = l_Array_forInUnsafe_loop___at_Lean_Meta_LibrarySearch_tryOnEach___spec__1(x_1, x_9, x_11, x_2, x_13, x_14, x_15, x_3, x_4, x_5, x_6, x_10); +lean_dec(x_2); +lean_dec(x_9); +if (lean_obj_tag(x_16) == 0) +{ +lean_object* x_17; lean_object* x_18; +x_17 = lean_ctor_get(x_16, 0); +lean_inc(x_17); +x_18 = lean_ctor_get(x_17, 0); +lean_inc(x_18); +if (lean_obj_tag(x_18) == 0) +{ +lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; +x_19 = lean_ctor_get(x_16, 1); +lean_inc(x_19); +lean_dec(x_16); +x_20 = lean_ctor_get(x_17, 1); +lean_inc(x_20); +lean_dec(x_17); +x_21 = lean_box(0); +x_22 = l_Lean_Meta_LibrarySearch_tryOnEach___lambda__1(x_20, x_21, x_3, x_4, x_5, x_6, x_19); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +return x_22; +} +else +{ +uint8_t x_23; +lean_dec(x_17); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +x_23 = !lean_is_exclusive(x_16); +if (x_23 == 0) +{ +lean_object* x_24; lean_object* x_25; +x_24 = lean_ctor_get(x_16, 0); +lean_dec(x_24); +x_25 = lean_ctor_get(x_18, 0); +lean_inc(x_25); +lean_dec(x_18); +lean_ctor_set(x_16, 0, x_25); +return x_16; +} +else +{ +lean_object* x_26; lean_object* x_27; lean_object* x_28; +x_26 = lean_ctor_get(x_16, 1); +lean_inc(x_26); +lean_dec(x_16); +x_27 = lean_ctor_get(x_18, 0); +lean_inc(x_27); +lean_dec(x_18); +x_28 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_28, 0, x_27); +lean_ctor_set(x_28, 1, x_26); +return x_28; +} +} +} +else +{ +uint8_t x_29; +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +x_29 = !lean_is_exclusive(x_16); +if (x_29 == 0) +{ +return x_16; +} +else +{ +lean_object* x_30; lean_object* x_31; lean_object* x_32; +x_30 = lean_ctor_get(x_16, 0); +x_31 = lean_ctor_get(x_16, 1); +lean_inc(x_31); +lean_inc(x_30); +lean_dec(x_16); +x_32 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_32, 0, x_30); +lean_ctor_set(x_32, 1, x_31); +return x_32; +} +} +} +} +LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_Meta_LibrarySearch_tryOnEach___spec__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, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +_start: +{ +lean_object* x_11; +x_11 = l_Array_forInUnsafe_loop___at_Lean_Meta_LibrarySearch_tryOnEach___spec__1___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_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_1); +return x_11; +} +} +LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_Meta_LibrarySearch_tryOnEach___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, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +_start: +{ +size_t x_13; size_t x_14; lean_object* x_15; +x_13 = lean_unbox_usize(x_5); +lean_dec(x_5); +x_14 = lean_unbox_usize(x_6); +lean_dec(x_6); +x_15 = l_Array_forInUnsafe_loop___at_Lean_Meta_LibrarySearch_tryOnEach___spec__1(x_1, x_2, x_3, x_4, x_13, x_14, x_7, x_8, x_9, x_10, x_11, x_12); +lean_dec(x_4); +lean_dec(x_2); +return x_15; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_LibrarySearch_tryOnEach___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) { +_start: +{ +lean_object* x_8; +x_8 = l_Lean_Meta_LibrarySearch_tryOnEach___lambda__1(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); +lean_dec(x_2); +return x_8; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_LibrarySearch_abortSpeculation___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___spec__1___rarg(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; +x_2 = l_Lean_Meta_LibrarySearch_abortSpeculation___rarg___closed__2; +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; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_LibrarySearch_abortSpeculation___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +_start: +{ +lean_object* x_5; +x_5 = lean_alloc_closure((void*)(l_Lean_Meta_LibrarySearch_abortSpeculation___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___spec__1___rarg), 1, 0); +return x_5; +} +} +static double _init_l_Lean_withSeconds___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___spec__3___closed__1() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; double x_4; +x_1 = lean_unsigned_to_nat(1000000000u); +x_2 = 0; +x_3 = lean_unsigned_to_nat(0u); +x_4 = l_Float_ofScientific(x_1, x_2, x_3); +return x_4; +} +} +LEAN_EXPORT lean_object* l_Lean_withSeconds___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___spec__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) { +_start: +{ +lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; +x_7 = lean_io_mono_nanos_now(x_6); +x_8 = lean_ctor_get(x_7, 0); +lean_inc(x_8); +x_9 = lean_ctor_get(x_7, 1); +lean_inc(x_9); +lean_dec(x_7); +x_10 = lean_apply_5(x_1, x_2, x_3, x_4, x_5, x_9); +if (lean_obj_tag(x_10) == 0) +{ +lean_object* x_11; lean_object* x_12; lean_object* x_13; uint8_t x_14; +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 = lean_io_mono_nanos_now(x_12); +x_14 = !lean_is_exclusive(x_13); +if (x_14 == 0) +{ +lean_object* x_15; lean_object* x_16; uint8_t x_17; lean_object* x_18; double x_19; double x_20; double x_21; lean_object* x_22; lean_object* x_23; +x_15 = lean_ctor_get(x_13, 0); +x_16 = lean_nat_sub(x_15, x_8); +lean_dec(x_8); +lean_dec(x_15); +x_17 = 0; +x_18 = lean_unsigned_to_nat(0u); +x_19 = l_Float_ofScientific(x_16, x_17, x_18); +lean_dec(x_16); +x_20 = l_Lean_withSeconds___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___spec__3___closed__1; +x_21 = lean_float_div(x_19, x_20); +x_22 = lean_box_float(x_21); +x_23 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_23, 0, x_11); +lean_ctor_set(x_23, 1, x_22); +lean_ctor_set(x_13, 0, x_23); +return x_13; +} +else +{ +lean_object* x_24; lean_object* x_25; lean_object* x_26; uint8_t x_27; lean_object* x_28; double x_29; double x_30; double x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; +x_24 = lean_ctor_get(x_13, 0); +x_25 = lean_ctor_get(x_13, 1); +lean_inc(x_25); +lean_inc(x_24); +lean_dec(x_13); +x_26 = lean_nat_sub(x_24, x_8); +lean_dec(x_8); +lean_dec(x_24); +x_27 = 0; +x_28 = lean_unsigned_to_nat(0u); +x_29 = l_Float_ofScientific(x_26, x_27, x_28); +lean_dec(x_26); +x_30 = l_Lean_withSeconds___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___spec__3___closed__1; +x_31 = lean_float_div(x_29, x_30); +x_32 = lean_box_float(x_31); +x_33 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_33, 0, x_11); +lean_ctor_set(x_33, 1, x_32); +x_34 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_34, 0, x_33); +lean_ctor_set(x_34, 1, x_25); +return x_34; +} +} +else +{ +uint8_t x_35; +lean_dec(x_8); +x_35 = !lean_is_exclusive(x_10); +if (x_35 == 0) +{ +return x_10; +} +else +{ +lean_object* x_36; lean_object* x_37; lean_object* x_38; +x_36 = lean_ctor_get(x_10, 0); +x_37 = lean_ctor_get(x_10, 1); +lean_inc(x_37); +lean_inc(x_36); +lean_dec(x_10); +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_MonadExcept_ofExcept___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___spec__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) { +_start: +{ +if (lean_obj_tag(x_1) == 0) +{ +lean_object* x_7; lean_object* x_8; +x_7 = lean_ctor_get(x_1, 0); +lean_inc(x_7); +x_8 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_8, 0, x_7); +lean_ctor_set(x_8, 1, x_6); +return x_8; +} +else +{ +lean_object* x_9; lean_object* x_10; +x_9 = lean_ctor_get(x_1, 0); +lean_inc(x_9); +x_10 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_10, 0, x_9); +lean_ctor_set(x_10, 1, x_6); +return x_10; +} +} +} +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___spec__2___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; +x_7 = lean_apply_5(x_1, x_2, x_3, x_4, x_5, x_6); +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); +x_10 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_10, 0, x_9); +lean_ctor_set(x_7, 0, x_10); +return x_7; +} +else +{ +lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; +x_11 = lean_ctor_get(x_7, 0); +x_12 = lean_ctor_get(x_7, 1); +lean_inc(x_12); +lean_inc(x_11); +lean_dec(x_7); +x_13 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_13, 0, x_11); +x_14 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_14, 0, x_13); +lean_ctor_set(x_14, 1, x_12); +return x_14; +} +} +else +{ +uint8_t x_15; +x_15 = !lean_is_exclusive(x_7); +if (x_15 == 0) +{ +lean_object* x_16; lean_object* x_17; +x_16 = lean_ctor_get(x_7, 0); +x_17 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_17, 0, x_16); +lean_ctor_set_tag(x_7, 0); +lean_ctor_set(x_7, 0, x_17); +return x_7; +} +else +{ +lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; +x_18 = lean_ctor_get(x_7, 0); +x_19 = lean_ctor_get(x_7, 1); +lean_inc(x_19); +lean_inc(x_18); +lean_dec(x_7); +x_20 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_20, 0, x_18); +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; +} +} +} +} +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, 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) { +_start: +{ +lean_object* x_13; lean_object* x_14; lean_object* x_15; +lean_inc(x_10); +x_13 = l___private_Lean_Util_Trace_0__Lean_addTraceNode___at_Lean_Meta_processPostponed___spec__4(x_1, x_2, x_3, x_6, x_4, x_8, x_9, x_10, x_11, x_12); +x_14 = lean_ctor_get(x_13, 1); +lean_inc(x_14); +lean_dec(x_13); +x_15 = l_MonadExcept_ofExcept___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___spec__4(x_5, x_8, x_9, x_10, x_11, x_14); +lean_dec(x_10); +return x_15; +} +} +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() { +_start: +{ +lean_object* x_1; +x_1 = l_Lean_profiler; +return x_1; +} +} +static lean_object* _init_l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___spec__2___lambda__3___closed__2() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("[", 1); +return x_1; +} +} +static lean_object* _init_l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___spec__2___lambda__3___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___spec__2___lambda__3___closed__2; +x_2 = l_Lean_stringToMessageData(x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___spec__2___lambda__3___closed__4() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("s] ", 3); +return x_1; +} +} +static lean_object* _init_l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___spec__2___lambda__3___closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___spec__2___lambda__3___closed__4; +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, lean_object* x_2, lean_object* x_3, uint8_t x_4, lean_object* x_5, lean_object* x_6, uint8_t 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_16; uint8_t x_17; +x_16 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___spec__2___lambda__3___closed__1; +x_17 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_6, x_16); +lean_dec(x_6); +if (x_17 == 0) +{ +if (x_7 == 0) +{ +lean_object* x_18; lean_object* x_19; +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__2(x_1, x_2, x_3, x_4, x_5, x_10, x_18, x_11, x_12, x_13, x_14, x_15); +lean_dec(x_12); +return x_19; +} +else +{ +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; +x_20 = lean_float_to_string(x_8); +x_21 = lean_alloc_ctor(3, 1, 0); +lean_ctor_set(x_21, 0, x_20); +x_22 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_22, 0, x_21); +x_23 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___spec__2___lambda__3___closed__3; +x_24 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_24, 0, x_23); +lean_ctor_set(x_24, 1, x_22); +x_25 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___spec__2___lambda__3___closed__5; +x_26 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_26, 0, x_24); +lean_ctor_set(x_26, 1, x_25); +x_27 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_27, 0, x_26); +lean_ctor_set(x_27, 1, x_10); +x_28 = l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearchLemma___lambda__1___closed__1; +x_29 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_29, 0, x_27); +lean_ctor_set(x_29, 1, x_28); +x_30 = lean_box(0); +x_31 = 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_5, x_29, x_30, x_11, x_12, x_13, x_14, x_15); +lean_dec(x_12); +return x_31; +} +} +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; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; +x_32 = lean_float_to_string(x_8); +x_33 = lean_alloc_ctor(3, 1, 0); +lean_ctor_set(x_33, 0, x_32); +x_34 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_34, 0, x_33); +x_35 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___spec__2___lambda__3___closed__3; +x_36 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_36, 0, x_35); +lean_ctor_set(x_36, 1, x_34); +x_37 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___spec__2___lambda__3___closed__5; +x_38 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_38, 0, x_36); +lean_ctor_set(x_38, 1, x_37); +x_39 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_39, 0, x_38); +lean_ctor_set(x_39, 1, x_10); +x_40 = l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearchLemma___lambda__1___closed__1; +x_41 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_41, 0, x_39); +lean_ctor_set(x_41, 1, x_40); +x_42 = lean_box(0); +x_43 = 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_5, x_41, x_42, x_11, x_12, x_13, x_14, x_15); +lean_dec(x_12); +return x_43; +} +} +} +static lean_object* _init_l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___spec__2___lambda__4___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("", 53); +return x_1; +} +} +static lean_object* _init_l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___spec__2___lambda__4___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___spec__2___lambda__4___closed__1; +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__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, double 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; lean_object* x_17; +lean_dec(x_10); +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_4); +x_17 = lean_apply_6(x_8, x_4, x_11, x_12, x_13, x_14, x_15); +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___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___spec__2___lambda__3(x_1, x_2, x_16, x_3, x_4, x_5, x_6, x_7, lean_box(0), x_18, x_11, x_12, x_13, x_14, x_19); +lean_dec(x_14); +lean_dec(x_11); +lean_dec(x_4); +return x_20; +} +else +{ +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__4___closed__2; +x_23 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___spec__2___lambda__3(x_1, x_2, x_16, x_3, x_4, x_5, x_6, x_7, lean_box(0), x_22, x_11, x_12, x_13, x_14, x_21); +lean_dec(x_14); +lean_dec(x_11); +lean_dec(x_4); +return x_23; +} +} +} +static lean_object* _init_l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___spec__2___lambda__5___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = l_Lean_trace_profiler; +return x_1; +} +} +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___spec__2___lambda__5(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, 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; lean_object* x_18; +lean_dec(x_8); +x_14 = l___private_Lean_Util_Trace_0__Lean_getResetTraces___at_Lean_Meta_processPostponed___spec__2___rarg(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); +x_17 = lean_alloc_closure((void*)(l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___spec__2___lambda__1), 6, 1); +lean_closure_set(x_17, 0, x_1); +lean_inc(x_12); +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +x_18 = l_Lean_withSeconds___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___spec__3(x_17, x_9, x_10, x_11, x_12, x_16); +if (lean_obj_tag(x_18) == 0) +{ +lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; uint8_t x_23; lean_object* x_68; uint8_t x_69; +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 = lean_ctor_get(x_19, 0); +lean_inc(x_21); +x_22 = lean_ctor_get(x_19, 1); +lean_inc(x_22); +lean_dec(x_19); +x_68 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___spec__2___lambda__5___closed__1; +x_69 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_4, x_68); +if (x_69 == 0) +{ +uint8_t x_70; +x_70 = 0; +x_23 = x_70; +goto block_67; +} +else +{ +double x_71; double x_72; uint8_t x_73; +x_71 = l_Lean_trace_profiler_threshold_getSecs(x_4); +x_72 = lean_unbox_float(x_22); +x_73 = lean_float_decLt(x_71, x_72); +x_23 = x_73; +goto block_67; +} +block_67: +{ +if (x_6 == 0) +{ +if (x_23 == 0) +{ +lean_object* x_24; lean_object* x_25; lean_object* x_26; uint8_t x_27; +lean_dec(x_22); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_2); +x_24 = lean_st_ref_take(x_12, x_20); +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 = !lean_is_exclusive(x_25); +if (x_27 == 0) +{ +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_25, 3); +x_29 = l_Lean_PersistentArray_append___rarg(x_15, x_28); +lean_ctor_set(x_25, 3, x_29); +x_30 = lean_st_ref_set(x_12, x_25, x_26); +x_31 = lean_ctor_get(x_30, 1); +lean_inc(x_31); +lean_dec(x_30); +x_32 = l_MonadExcept_ofExcept___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___spec__4(x_21, x_9, x_10, x_11, x_12, x_31); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_21); +if (lean_obj_tag(x_32) == 0) +{ +uint8_t x_33; +x_33 = !lean_is_exclusive(x_32); +if (x_33 == 0) +{ +return x_32; +} +else +{ +lean_object* x_34; lean_object* x_35; lean_object* x_36; +x_34 = lean_ctor_get(x_32, 0); +x_35 = lean_ctor_get(x_32, 1); +lean_inc(x_35); +lean_inc(x_34); +lean_dec(x_32); +x_36 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_36, 0, x_34); +lean_ctor_set(x_36, 1, x_35); +return x_36; +} +} +else +{ +uint8_t x_37; +x_37 = !lean_is_exclusive(x_32); +if (x_37 == 0) +{ +return x_32; +} +else +{ +lean_object* x_38; lean_object* x_39; lean_object* x_40; +x_38 = lean_ctor_get(x_32, 0); +x_39 = lean_ctor_get(x_32, 1); +lean_inc(x_39); +lean_inc(x_38); +lean_dec(x_32); +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; +} +} +} +else +{ +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; +x_41 = lean_ctor_get(x_25, 0); +x_42 = lean_ctor_get(x_25, 1); +x_43 = lean_ctor_get(x_25, 2); +x_44 = lean_ctor_get(x_25, 3); +x_45 = lean_ctor_get(x_25, 4); +x_46 = lean_ctor_get(x_25, 5); +x_47 = lean_ctor_get(x_25, 6); +lean_inc(x_47); +lean_inc(x_46); +lean_inc(x_45); +lean_inc(x_44); +lean_inc(x_43); +lean_inc(x_42); +lean_inc(x_41); +lean_dec(x_25); +x_48 = l_Lean_PersistentArray_append___rarg(x_15, x_44); +x_49 = lean_alloc_ctor(0, 7, 0); +lean_ctor_set(x_49, 0, x_41); +lean_ctor_set(x_49, 1, x_42); +lean_ctor_set(x_49, 2, x_43); +lean_ctor_set(x_49, 3, x_48); +lean_ctor_set(x_49, 4, x_45); +lean_ctor_set(x_49, 5, x_46); +lean_ctor_set(x_49, 6, x_47); +x_50 = lean_st_ref_set(x_12, x_49, x_26); +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__4(x_21, 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_21); +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_52); + x_55 = lean_box(0); +} +if (lean_is_scalar(x_55)) { + x_56 = lean_alloc_ctor(0, 2, 0); +} else { + x_56 = x_55; +} +lean_ctor_set(x_56, 0, x_53); +lean_ctor_set(x_56, 1, x_54); +return x_56; +} +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; +} else { + lean_dec_ref(x_52); + x_59 = lean_box(0); +} +if (lean_is_scalar(x_59)) { + x_60 = lean_alloc_ctor(1, 2, 0); +} else { + x_60 = x_59; +} +lean_ctor_set(x_60, 0, x_57); +lean_ctor_set(x_60, 1, x_58); +return x_60; +} +} +} +else +{ +lean_object* x_61; double x_62; lean_object* x_63; +x_61 = lean_box(0); +x_62 = lean_unbox_float(x_22); +lean_dec(x_22); +x_63 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___spec__2___lambda__4(x_15, x_2, x_3, x_21, x_4, x_23, x_62, x_5, lean_box(0), x_61, x_9, x_10, x_11, x_12, x_20); +return x_63; +} +} +else +{ +lean_object* x_64; double x_65; lean_object* x_66; +x_64 = lean_box(0); +x_65 = lean_unbox_float(x_22); +lean_dec(x_22); +x_66 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___spec__2___lambda__4(x_15, x_2, x_3, x_21, x_4, x_23, x_65, x_5, lean_box(0), x_64, x_9, x_10, x_11, x_12, x_20); +return x_66; +} +} +} +else +{ +uint8_t x_74; +lean_dec(x_15); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_2); +x_74 = !lean_is_exclusive(x_18); +if (x_74 == 0) +{ +return x_18; +} +else +{ +lean_object* x_75; lean_object* x_76; lean_object* x_77; +x_75 = lean_ctor_get(x_18, 0); +x_76 = lean_ctor_get(x_18, 1); +lean_inc(x_76); +lean_inc(x_75); +lean_dec(x_18); +x_77 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_77, 0, x_75); +lean_ctor_set(x_77, 1, x_76); +return x_77; +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___spec__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, lean_object* x_9) { +_start: +{ +lean_object* x_10; lean_object* x_11; lean_object* x_12; uint8_t x_13; +x_10 = lean_ctor_get(x_7, 2); +lean_inc(x_10); +lean_inc(x_1); +x_11 = l_Lean_isTracingEnabledFor___at_Lean_Meta_processPostponed_loop___spec__1(x_1, x_5, x_6, x_7, x_8, x_9); +x_12 = lean_ctor_get(x_11, 0); +lean_inc(x_12); +x_13 = lean_unbox(x_12); +if (x_13 == 0) +{ +lean_object* x_14; lean_object* x_15; uint8_t x_16; +x_14 = lean_ctor_get(x_11, 1); +lean_inc(x_14); +lean_dec(x_11); +x_15 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___spec__2___lambda__5___closed__1; +x_16 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_10, x_15); +if (x_16 == 0) +{ +lean_object* x_17; +lean_dec(x_12); +lean_dec(x_10); +lean_dec(x_2); +lean_dec(x_1); +x_17 = lean_apply_5(x_3, x_5, x_6, x_7, x_8, x_14); +if (lean_obj_tag(x_17) == 0) +{ +uint8_t x_18; +x_18 = !lean_is_exclusive(x_17); +if (x_18 == 0) +{ +return x_17; +} +else +{ +lean_object* x_19; lean_object* x_20; lean_object* x_21; +x_19 = lean_ctor_get(x_17, 0); +x_20 = lean_ctor_get(x_17, 1); +lean_inc(x_20); +lean_inc(x_19); +lean_dec(x_17); +x_21 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_21, 0, x_19); +lean_ctor_set(x_21, 1, x_20); +return x_21; +} +} +else +{ +uint8_t x_22; +x_22 = !lean_is_exclusive(x_17); +if (x_22 == 0) +{ +return x_17; +} +else +{ +lean_object* x_23; lean_object* x_24; lean_object* x_25; +x_23 = lean_ctor_get(x_17, 0); +x_24 = lean_ctor_get(x_17, 1); +lean_inc(x_24); +lean_inc(x_23); +lean_dec(x_17); +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 +{ +lean_object* x_26; uint8_t x_27; lean_object* x_28; +x_26 = lean_box(0); +x_27 = lean_unbox(x_12); +lean_dec(x_12); +x_28 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___spec__2___lambda__5(x_3, x_1, x_4, x_10, x_2, x_27, lean_box(0), x_26, x_5, x_6, x_7, x_8, x_14); +return x_28; +} +} +else +{ +lean_object* x_29; lean_object* x_30; uint8_t x_31; lean_object* x_32; +x_29 = lean_ctor_get(x_11, 1); +lean_inc(x_29); +lean_dec(x_11); +x_30 = lean_box(0); +x_31 = lean_unbox(x_12); +lean_dec(x_12); +x_32 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___spec__2___lambda__5(x_3, x_1, x_4, x_10, x_2, x_31, lean_box(0), x_30, x_5, x_6, x_7, x_8, x_29); +return x_32; +} +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___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) { +_start: +{ +lean_object* x_8; +x_8 = l_Lean_MVarId_getType(x_1, x_3, x_4, x_5, x_6, x_7); +if (lean_obj_tag(x_8) == 0) +{ +uint8_t x_9; +x_9 = !lean_is_exclusive(x_8); +if (x_9 == 0) +{ +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; +x_10 = lean_ctor_get(x_8, 0); +x_11 = l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearchEmoji___rarg(x_2); +x_12 = l_Lean_stringToMessageData(x_11); +lean_dec(x_11); +x_13 = l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearchLemma___lambda__1___closed__1; +x_14 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_14, 0, x_13); +lean_ctor_set(x_14, 1, x_12); +x_15 = l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearchLemma___lambda__1___closed__7; +x_16 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_16, 0, x_14); +lean_ctor_set(x_16, 1, x_15); +x_17 = l_Lean_MessageData_ofExpr(x_10); +x_18 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_18, 0, x_16); +lean_ctor_set(x_18, 1, x_17); +x_19 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_19, 0, x_18); +lean_ctor_set(x_19, 1, x_13); +lean_ctor_set(x_8, 0, x_19); +return x_8; +} +else +{ +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; +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_22 = l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearchEmoji___rarg(x_2); +x_23 = l_Lean_stringToMessageData(x_22); +lean_dec(x_22); +x_24 = l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearchLemma___lambda__1___closed__1; +x_25 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_25, 0, x_24); +lean_ctor_set(x_25, 1, x_23); +x_26 = l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearchLemma___lambda__1___closed__7; +x_27 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_27, 0, x_25); +lean_ctor_set(x_27, 1, x_26); +x_28 = l_Lean_MessageData_ofExpr(x_20); +x_29 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_29, 0, x_27); +lean_ctor_set(x_29, 1, x_28); +x_30 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_30, 0, x_29); +lean_ctor_set(x_30, 1, x_24); +x_31 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_31, 0, x_30); +lean_ctor_set(x_31, 1, x_21); +return x_31; +} +} +else +{ +uint8_t x_32; +x_32 = !lean_is_exclusive(x_8); +if (x_32 == 0) +{ +return x_8; +} +else +{ +lean_object* x_33; lean_object* x_34; lean_object* x_35; +x_33 = lean_ctor_get(x_8, 0); +x_34 = lean_ctor_get(x_8, 1); +lean_inc(x_34); +lean_inc(x_33); +lean_dec(x_8); +x_35 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_35, 0, x_33); +lean_ctor_set(x_35, 1, x_34); +return x_35; +} +} +} +} +static lean_object* _init_l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___lambda__2___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_IncDiscrTreeFinder_addImport___lambda__1___closed__1; +x_2 = lean_alloc_closure((void*)(l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_updateTree), 9, 1); +lean_closure_set(x_2, 0, x_1); +return x_2; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___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_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; +x_8 = lean_st_ref_get(x_6, x_7); +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_ctor_get(x_9, 0); +lean_inc(x_11); +lean_dec(x_9); +x_12 = lean_ctor_get(x_11, 1); +lean_inc(x_12); +lean_dec(x_11); +x_13 = lean_ctor_get(x_12, 1); +lean_inc(x_13); +lean_dec(x_12); +x_14 = l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___lambda__2___closed__1; +x_15 = l_Lean_Meta_LibrarySearch_DiscrTreeFinder_buildImportCache___lambda__2___closed__3; +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +x_16 = l_Lean_PersistentHashMap_foldlM___at_Lean_Meta_LibrarySearch_DiscrTreeFinder_localMatches___spec__1(x_13, x_14, x_15, x_3, x_4, x_5, x_6, x_10); +if (lean_obj_tag(x_16) == 0) +{ +lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; +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 = l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_IncDiscrTreeFinder_addImport___lambda__1___closed__1; +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +lean_inc(x_2); +x_20 = l_Lean_Meta_DiscrTree_getMatch___rarg(x_17, x_2, x_19, x_3, x_4, x_5, x_6, x_18); +if (lean_obj_tag(x_20) == 0) +{ +lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; +x_21 = lean_ctor_get(x_20, 0); +lean_inc(x_21); +x_22 = lean_ctor_get(x_20, 1); +lean_inc(x_22); +lean_dec(x_20); +x_23 = l_Array_reverse___rarg(x_21); +x_24 = lean_apply_6(x_1, x_2, x_3, x_4, x_5, x_6, x_22); +if (lean_obj_tag(x_24) == 0) +{ +uint8_t x_25; +x_25 = !lean_is_exclusive(x_24); +if (x_25 == 0) +{ +lean_object* x_26; lean_object* x_27; +x_26 = lean_ctor_get(x_24, 0); +x_27 = l_Array_append___rarg(x_23, x_26); +lean_ctor_set(x_24, 0, x_27); +return x_24; +} +else +{ +lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; +x_28 = lean_ctor_get(x_24, 0); +x_29 = lean_ctor_get(x_24, 1); +lean_inc(x_29); +lean_inc(x_28); +lean_dec(x_24); +x_30 = l_Array_append___rarg(x_23, x_28); +x_31 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_31, 0, x_30); +lean_ctor_set(x_31, 1, x_29); +return x_31; +} +} +else +{ +uint8_t x_32; +lean_dec(x_23); +x_32 = !lean_is_exclusive(x_24); +if (x_32 == 0) +{ +return x_24; +} +else +{ +lean_object* x_33; lean_object* x_34; lean_object* x_35; +x_33 = lean_ctor_get(x_24, 0); +x_34 = lean_ctor_get(x_24, 1); +lean_inc(x_34); +lean_inc(x_33); +lean_dec(x_24); +x_35 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_35, 0, x_33); +lean_ctor_set(x_35, 1, x_34); +return x_35; +} +} +} +else +{ +uint8_t x_36; +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +x_36 = !lean_is_exclusive(x_20); +if (x_36 == 0) +{ +return x_20; +} +else +{ +lean_object* x_37; lean_object* x_38; lean_object* x_39; +x_37 = lean_ctor_get(x_20, 0); +x_38 = lean_ctor_get(x_20, 1); +lean_inc(x_38); +lean_inc(x_37); +lean_dec(x_20); +x_39 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_39, 0, x_37); +lean_ctor_set(x_39, 1, x_38); +return x_39; +} +} +} +else +{ +uint8_t x_40; +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +x_40 = !lean_is_exclusive(x_16); +if (x_40 == 0) +{ +return x_16; +} +else +{ +lean_object* x_41; lean_object* x_42; lean_object* x_43; +x_41 = lean_ctor_get(x_16, 0); +x_42 = lean_ctor_get(x_16, 1); +lean_inc(x_42); +lean_inc(x_41); +lean_dec(x_16); +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___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___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_11; +x_11 = l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearchLemma(x_1, x_2, x_3, x_4, x_6, x_7, x_8, x_9, x_10); +return x_11; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___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) { +_start: +{ +lean_object* x_11; +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_6); +x_11 = lean_apply_5(x_1, x_6, x_7, x_8, x_9, x_10); +if (lean_obj_tag(x_11) == 0) +{ +lean_object* x_12; uint8_t x_13; +x_12 = lean_ctor_get(x_11, 0); +lean_inc(x_12); +x_13 = lean_unbox(x_12); +lean_dec(x_12); +if (x_13 == 0) +{ +lean_object* x_14; lean_object* x_15; +x_14 = lean_ctor_get(x_11, 1); +lean_inc(x_14); +lean_dec(x_11); +x_15 = l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearchLemma(x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_14); +return x_15; +} +else +{ +lean_object* x_16; lean_object* x_17; uint8_t x_18; +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); +lean_dec(x_2); +x_16 = lean_ctor_get(x_11, 1); +lean_inc(x_16); +lean_dec(x_11); +x_17 = l_Lean_Meta_LibrarySearch_abortSpeculation___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___spec__1___rarg(x_16); +x_18 = !lean_is_exclusive(x_17); +if (x_18 == 0) +{ +return x_17; +} +else +{ +lean_object* x_19; lean_object* x_20; lean_object* x_21; +x_19 = lean_ctor_get(x_17, 0); +x_20 = lean_ctor_get(x_17, 1); +lean_inc(x_20); +lean_inc(x_19); +lean_dec(x_17); +x_21 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_21, 0, x_19); +lean_ctor_set(x_21, 1, x_20); +return x_21; +} +} +} +else +{ +uint8_t x_22; +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); +lean_dec(x_2); +x_22 = !lean_is_exclusive(x_11); +if (x_22 == 0) +{ +return x_11; +} +else +{ +lean_object* x_23; lean_object* x_24; lean_object* x_25; +x_23 = lean_ctor_get(x_11, 0); +x_24 = lean_ctor_get(x_11, 1); +lean_inc(x_24); +lean_inc(x_23); +lean_dec(x_11); +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___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___lambda__5___closed__1() { +_start: +{ +uint8_t x_1; uint8_t x_2; lean_object* x_3; +x_1 = 0; +x_2 = 1; +x_3 = lean_alloc_ctor(0, 0, 4); +lean_ctor_set_uint8(x_3, 0, x_1); +lean_ctor_set_uint8(x_3, 1, x_2); +lean_ctor_set_uint8(x_3, 2, x_2); +lean_ctor_set_uint8(x_3, 3, x_2); +return x_3; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___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) { +_start: +{ +lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; +x_11 = lean_alloc_closure((void*)(l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___lambda__2), 7, 1); +lean_closure_set(x_11, 0, x_5); +x_12 = l_Lean_Meta_LibrarySearch_mkHeartbeatCheck(x_1, x_6, x_7, x_8, x_9, x_10); +x_13 = lean_ctor_get(x_12, 0); +lean_inc(x_13); +x_14 = lean_ctor_get(x_12, 1); +lean_inc(x_14); +lean_dec(x_12); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_6); +x_15 = l_Lean_Meta_LibrarySearch_librarySearchSymm(x_11, x_2, x_6, x_7, x_8, x_9, x_14); +if (lean_obj_tag(x_15) == 0) +{ +lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; +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); +x_18 = l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___lambda__5___closed__1; +x_19 = lean_alloc_closure((void*)(l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___lambda__4), 10, 4); +lean_closure_set(x_19, 0, x_13); +lean_closure_set(x_19, 1, x_18); +lean_closure_set(x_19, 2, x_3); +lean_closure_set(x_19, 3, x_4); +x_20 = l_Lean_Meta_LibrarySearch_tryOnEach(x_19, x_16, x_6, x_7, x_8, x_9, x_17); +return x_20; +} +else +{ +uint8_t x_21; +lean_dec(x_13); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_4); +lean_dec(x_3); +x_21 = !lean_is_exclusive(x_15); +if (x_21 == 0) +{ +return x_15; +} +else +{ +lean_object* x_22; lean_object* x_23; lean_object* x_24; +x_22 = lean_ctor_get(x_15, 0); +x_23 = lean_ctor_get(x_15, 1); +lean_inc(x_23); +lean_inc(x_22); +lean_dec(x_15); +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___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___lambda__6___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_ext; +return x_1; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___lambda__6(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; 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; +x_7 = lean_st_ref_get(x_5, x_6); +x_8 = lean_ctor_get(x_7, 0); +lean_inc(x_8); +x_9 = lean_ctor_get(x_7, 1); +lean_inc(x_9); +lean_dec(x_7); +x_10 = lean_ctor_get(x_8, 0); +lean_inc(x_10); +lean_dec(x_8); +x_11 = l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_instInhabitedLibSearchState; +x_12 = l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___lambda__6___closed__1; +x_13 = l_Lean_EnvExtension_getState___rarg(x_11, x_12, x_10); +lean_dec(x_10); +x_14 = lean_st_ref_get(x_13, x_9); +x_15 = lean_ctor_get(x_14, 0); +lean_inc(x_15); +if (lean_obj_tag(x_15) == 0) +{ +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; +x_16 = lean_ctor_get(x_14, 1); +lean_inc(x_16); +lean_dec(x_14); +x_17 = l_Lean_Meta_LibrarySearch_setDefaultCandidateFinder___closed__1; +x_18 = lean_st_ref_get(x_17, x_16); +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); +lean_inc(x_19); +x_21 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_21, 0, x_19); +x_22 = lean_st_ref_set(x_13, x_21, x_20); +lean_dec(x_13); +x_23 = lean_ctor_get(x_22, 1); +lean_inc(x_23); +lean_dec(x_22); +x_24 = lean_apply_6(x_1, x_19, x_2, x_3, x_4, x_5, x_23); +return x_24; +} +else +{ +lean_object* x_25; lean_object* x_26; lean_object* x_27; +lean_dec(x_13); +x_25 = lean_ctor_get(x_14, 1); +lean_inc(x_25); +lean_dec(x_14); +x_26 = lean_ctor_get(x_15, 0); +lean_inc(x_26); +lean_dec(x_15); +x_27 = lean_apply_6(x_1, x_26, x_2, x_3, x_4, x_5, x_25); +return x_27; +} +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___lambda__7(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; +x_10 = lean_ctor_get(x_7, 2); +lean_inc(x_10); +x_11 = lean_alloc_closure((void*)(l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___lambda__5___boxed), 10, 4); +lean_closure_set(x_11, 0, x_1); +lean_closure_set(x_11, 1, x_2); +lean_closure_set(x_11, 2, x_3); +lean_closure_set(x_11, 3, x_4); +x_12 = lean_alloc_closure((void*)(l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___lambda__6), 6, 1); +lean_closure_set(x_12, 0, x_11); +x_13 = l_Lean_Meta_LibrarySearch_initFn____x40_Lean_Meta_Tactic_LibrarySearch___hyg_1378____closed__2; +x_14 = lean_box(0); +x_15 = l_Lean_profileitM___at_Lean_Meta_synthInstance_x3f___spec__16___rarg(x_13, x_10, x_12, x_14, x_5, x_6, x_7, x_8, x_9); +lean_dec(x_10); +return x_15; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27(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; uint8_t x_13; lean_object* x_14; +lean_inc(x_1); +x_10 = lean_alloc_closure((void*)(l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___lambda__1___boxed), 7, 1); +lean_closure_set(x_10, 0, x_1); +x_11 = lean_alloc_closure((void*)(l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___lambda__7), 9, 4); +lean_closure_set(x_11, 0, x_4); +lean_closure_set(x_11, 1, x_1); +lean_closure_set(x_11, 2, x_2); +lean_closure_set(x_11, 3, x_3); +x_12 = l_Lean_Meta_LibrarySearch_initFn____x40_Lean_Meta_Tactic_LibrarySearch___hyg_1378____closed__3; +x_13 = 1; +x_14 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___spec__2(x_12, x_10, x_11, x_13, x_5, x_6, x_7, x_8, x_9); +return x_14; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_LibrarySearch_abortSpeculation___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___spec__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_Meta_LibrarySearch_abortSpeculation___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___spec__1(x_1, x_2, x_3, x_4); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +return x_5; +} +} +LEAN_EXPORT lean_object* l_MonadExcept_ofExcept___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___spec__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) { +_start: +{ +lean_object* x_7; +x_7 = l_MonadExcept_ofExcept___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___spec__4(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); +lean_dec(x_1); +return x_7; +} +} +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) { +_start: +{ +uint8_t x_13; lean_object* x_14; +x_13 = lean_unbox(x_4); +lean_dec(x_4); +x_14 = 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_13, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +lean_dec(x_11); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_5); +return x_14; +} +} +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_16; uint8_t x_17; double x_18; lean_object* x_19; +x_16 = lean_unbox(x_4); +lean_dec(x_4); +x_17 = lean_unbox(x_7); +lean_dec(x_7); +x_18 = lean_unbox_float(x_8); +lean_dec(x_8); +x_19 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___spec__2___lambda__3(x_1, x_2, x_3, x_16, x_5, x_6, x_17, x_18, x_9, x_10, x_11, x_12, x_13, x_14, x_15); +lean_dec(x_14); +lean_dec(x_11); +lean_dec(x_5); +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__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; uint8_t x_17; double x_18; lean_object* x_19; +x_16 = lean_unbox(x_3); +lean_dec(x_3); +x_17 = lean_unbox(x_6); +lean_dec(x_6); +x_18 = lean_unbox_float(x_7); +lean_dec(x_7); +x_19 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___spec__2___lambda__4(x_1, x_2, x_16, x_4, x_5, x_17, x_18, x_8, x_9, x_10, 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__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) { +_start: +{ +uint8_t x_14; uint8_t x_15; lean_object* x_16; +x_14 = lean_unbox(x_3); +lean_dec(x_3); +x_15 = lean_unbox(x_6); +lean_dec(x_6); +x_16 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___spec__2___lambda__5(x_1, x_2, x_14, x_4, x_5, x_15, x_7, x_8, x_9, x_10, x_11, x_12, x_13); +return x_16; +} +} +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___spec__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: +{ +uint8_t x_10; lean_object* x_11; +x_10 = lean_unbox(x_4); +lean_dec(x_4); +x_11 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___spec__2(x_1, x_2, x_3, x_10, x_5, x_6, x_7, x_8, x_9); +return x_11; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___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) { +_start: +{ +lean_object* x_8; +x_8 = l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___lambda__1(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); +lean_dec(x_2); +return x_8; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___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: +{ +lean_object* x_11; +x_11 = l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___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_5); +return x_11; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___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) { +_start: +{ +lean_object* x_11; +x_11 = l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___lambda__5(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_1); +return x_11; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_LibrarySearch_librarySearch(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; uint8_t x_15; lean_object* x_16; lean_object* x_17; +x_10 = lean_box(0); +lean_inc(x_1); +x_11 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_11, 0, x_1); +lean_ctor_set(x_11, 1, x_10); +x_12 = l_Lean_Meta_saveState___rarg(x_6, x_7, x_8, x_9); +x_13 = lean_ctor_get(x_12, 0); +lean_inc(x_13); +x_14 = lean_ctor_get(x_12, 1); +lean_inc(x_14); +lean_dec(x_12); +x_15 = 1; +x_16 = lean_box(x_15); +lean_inc(x_2); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +x_17 = lean_apply_7(x_2, x_16, x_11, x_5, x_6, x_7, x_8, x_14); +if (lean_obj_tag(x_17) == 0) +{ +uint8_t x_18; +lean_dec(x_13); +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); +x_18 = !lean_is_exclusive(x_17); +if (x_18 == 0) +{ +lean_object* x_19; lean_object* x_20; +x_19 = lean_ctor_get(x_17, 0); +lean_dec(x_19); +x_20 = lean_box(0); +lean_ctor_set(x_17, 0, x_20); +return x_17; +} +else +{ +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 = lean_box(0); +x_23 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_23, 0, x_22); +lean_ctor_set(x_23, 1, x_21); +return x_23; +} +} +else +{ +uint8_t x_24; +x_24 = !lean_is_exclusive(x_17); +if (x_24 == 0) +{ +lean_object* x_25; lean_object* x_26; uint8_t x_27; +x_25 = lean_ctor_get(x_17, 0); +x_26 = lean_ctor_get(x_17, 1); +x_27 = l_Lean_Exception_isRuntime(x_25); +if (x_27 == 0) +{ +lean_object* x_28; lean_object* x_29; uint8_t x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; +lean_free_object(x_17); +lean_dec(x_25); +x_28 = l_Lean_Meta_SavedState_restore(x_13, x_5, x_6, x_7, x_8, x_26); +lean_dec(x_13); +x_29 = lean_ctor_get(x_28, 1); +lean_inc(x_29); +lean_dec(x_28); +x_30 = 0; +x_31 = lean_box(x_30); +x_32 = lean_apply_1(x_2, x_31); +x_33 = l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27(x_1, x_32, x_3, x_4, x_5, x_6, x_7, x_8, x_29); +return x_33; +} +else +{ +uint8_t x_34; +x_34 = lean_ctor_get_uint8(x_7, sizeof(void*)*11); +if (x_34 == 0) +{ +lean_dec(x_13); +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_17; +} +else +{ +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_free_object(x_17); +lean_dec(x_25); +x_35 = l_Lean_Meta_SavedState_restore(x_13, x_5, x_6, x_7, x_8, x_26); +lean_dec(x_13); +x_36 = lean_ctor_get(x_35, 1); +lean_inc(x_36); +lean_dec(x_35); +x_37 = 0; +x_38 = lean_box(x_37); +x_39 = lean_apply_1(x_2, x_38); +x_40 = l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27(x_1, x_39, x_3, x_4, x_5, x_6, x_7, x_8, x_36); +return x_40; +} +} +} +else +{ +lean_object* x_41; lean_object* x_42; uint8_t x_43; +x_41 = lean_ctor_get(x_17, 0); +x_42 = lean_ctor_get(x_17, 1); +lean_inc(x_42); +lean_inc(x_41); +lean_dec(x_17); +x_43 = l_Lean_Exception_isRuntime(x_41); +if (x_43 == 0) +{ +lean_object* x_44; lean_object* x_45; uint8_t x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; +lean_dec(x_41); +x_44 = l_Lean_Meta_SavedState_restore(x_13, x_5, x_6, x_7, x_8, x_42); +lean_dec(x_13); +x_45 = lean_ctor_get(x_44, 1); +lean_inc(x_45); +lean_dec(x_44); +x_46 = 0; +x_47 = lean_box(x_46); +x_48 = lean_apply_1(x_2, x_47); +x_49 = l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27(x_1, x_48, x_3, x_4, x_5, x_6, x_7, x_8, x_45); +return x_49; +} +else +{ +uint8_t x_50; +x_50 = lean_ctor_get_uint8(x_7, sizeof(void*)*11); +if (x_50 == 0) +{ +lean_object* x_51; +lean_dec(x_13); +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); +x_51 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_51, 0, x_41); +lean_ctor_set(x_51, 1, x_42); +return x_51; +} +else +{ +lean_object* x_52; lean_object* x_53; uint8_t x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; +lean_dec(x_41); +x_52 = l_Lean_Meta_SavedState_restore(x_13, x_5, x_6, x_7, x_8, x_42); +lean_dec(x_13); +x_53 = lean_ctor_get(x_52, 1); +lean_inc(x_53); +lean_dec(x_52); +x_54 = 0; +x_55 = lean_box(x_54); +x_56 = lean_apply_1(x_2, x_55); +x_57 = l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27(x_1, x_56, x_3, x_4, x_5, x_6, x_7, x_8, x_53); +return x_57; +} +} +} +} +} +} +lean_object* initialize_Init_Data_Nat_MinMax(uint8_t builtin, lean_object*); +lean_object* initialize_Lean_Meta_LazyDiscrTree(uint8_t builtin, lean_object*); +lean_object* initialize_Lean_Meta_Tactic_SolveByElim(uint8_t builtin, lean_object*); +lean_object* initialize_Lean_Util_Heartbeats(uint8_t builtin, lean_object*); +static bool _G_initialized = false; +LEAN_EXPORT lean_object* initialize_Lean_Meta_Tactic_LibrarySearch(uint8_t builtin, lean_object* w) { +lean_object * res; +if (_G_initialized) return lean_io_result_mk_ok(lean_box(0)); +_G_initialized = true; +res = initialize_Init_Data_Nat_MinMax(builtin, lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +res = initialize_Lean_Meta_LazyDiscrTree(builtin, lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +res = initialize_Lean_Meta_Tactic_SolveByElim(builtin, lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +res = initialize_Lean_Util_Heartbeats(builtin, lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +l_Lean_Meta_LibrarySearch_solveByElim___lambda__3___closed__1 = _init_l_Lean_Meta_LibrarySearch_solveByElim___lambda__3___closed__1(); +lean_mark_persistent(l_Lean_Meta_LibrarySearch_solveByElim___lambda__3___closed__1); +l_Lean_Meta_LibrarySearch_solveByElim___lambda__3___closed__2 = _init_l_Lean_Meta_LibrarySearch_solveByElim___lambda__3___closed__2(); +lean_mark_persistent(l_Lean_Meta_LibrarySearch_solveByElim___lambda__3___closed__2); +l_Lean_Meta_LibrarySearch_solveByElim___closed__1 = _init_l_Lean_Meta_LibrarySearch_solveByElim___closed__1(); +lean_mark_persistent(l_Lean_Meta_LibrarySearch_solveByElim___closed__1); +l_Lean_Meta_LibrarySearch_solveByElim___closed__2 = _init_l_Lean_Meta_LibrarySearch_solveByElim___closed__2(); +lean_mark_persistent(l_Lean_Meta_LibrarySearch_solveByElim___closed__2); +l_Lean_Meta_LibrarySearch_solveByElim___closed__3 = _init_l_Lean_Meta_LibrarySearch_solveByElim___closed__3(); +lean_mark_persistent(l_Lean_Meta_LibrarySearch_solveByElim___closed__3); +l_Lean_Meta_LibrarySearch_solveByElim___closed__4 = _init_l_Lean_Meta_LibrarySearch_solveByElim___closed__4(); +lean_mark_persistent(l_Lean_Meta_LibrarySearch_solveByElim___closed__4); +l_Lean_Meta_LibrarySearch_solveByElim___closed__5 = _init_l_Lean_Meta_LibrarySearch_solveByElim___closed__5(); +lean_mark_persistent(l_Lean_Meta_LibrarySearch_solveByElim___closed__5); +l_Lean_Meta_LibrarySearch_DeclMod_noConfusion___rarg___closed__1 = _init_l_Lean_Meta_LibrarySearch_DeclMod_noConfusion___rarg___closed__1(); +lean_mark_persistent(l_Lean_Meta_LibrarySearch_DeclMod_noConfusion___rarg___closed__1); +l_Lean_Meta_LibrarySearch_instInhabitedDeclMod = _init_l_Lean_Meta_LibrarySearch_instInhabitedDeclMod(); +l_Lean_Meta_LibrarySearch_instOrdDeclMod___closed__1 = _init_l_Lean_Meta_LibrarySearch_instOrdDeclMod___closed__1(); +lean_mark_persistent(l_Lean_Meta_LibrarySearch_instOrdDeclMod___closed__1); +l_Lean_Meta_LibrarySearch_instOrdDeclMod = _init_l_Lean_Meta_LibrarySearch_instOrdDeclMod(); +lean_mark_persistent(l_Lean_Meta_LibrarySearch_instOrdDeclMod); +l_Lean_Meta_LibrarySearch_instToStringDeclMod___closed__1 = _init_l_Lean_Meta_LibrarySearch_instToStringDeclMod___closed__1(); +lean_mark_persistent(l_Lean_Meta_LibrarySearch_instToStringDeclMod___closed__1); +l_Lean_Meta_LibrarySearch_instToStringDeclMod___closed__2 = _init_l_Lean_Meta_LibrarySearch_instToStringDeclMod___closed__2(); +lean_mark_persistent(l_Lean_Meta_LibrarySearch_instToStringDeclMod___closed__2); +l_Lean_Meta_LibrarySearch_instToStringDeclMod___closed__3 = _init_l_Lean_Meta_LibrarySearch_instToStringDeclMod___closed__3(); +lean_mark_persistent(l_Lean_Meta_LibrarySearch_instToStringDeclMod___closed__3); +l_Lean_PersistentHashMap_findAux___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_updateTree___spec__4___closed__1 = _init_l_Lean_PersistentHashMap_findAux___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_updateTree___spec__4___closed__1(); +l_Lean_PersistentHashMap_findAux___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_updateTree___spec__4___closed__2 = _init_l_Lean_PersistentHashMap_findAux___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_updateTree___spec__4___closed__2(); +l_Lean_PersistentHashMap_insertAux___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_updateTree___spec__7___closed__1 = _init_l_Lean_PersistentHashMap_insertAux___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_updateTree___spec__7___closed__1(); +lean_mark_persistent(l_Lean_PersistentHashMap_insertAux___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_updateTree___spec__7___closed__1); +l___private_Lean_Meta_DiscrTree_0__Lean_Meta_DiscrTree_insertAux___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_updateTree___spec__10___closed__1 = _init_l___private_Lean_Meta_DiscrTree_0__Lean_Meta_DiscrTree_insertAux___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_updateTree___spec__10___closed__1(); +lean_mark_persistent(l___private_Lean_Meta_DiscrTree_0__Lean_Meta_DiscrTree_insertAux___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_updateTree___spec__10___closed__1); +l_panic___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_updateTree___spec__14___closed__1 = _init_l_panic___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_updateTree___spec__14___closed__1(); +lean_mark_persistent(l_panic___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_updateTree___spec__14___closed__1); +l_Lean_Meta_DiscrTree_insertCore___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_updateTree___spec__2___closed__1 = _init_l_Lean_Meta_DiscrTree_insertCore___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_updateTree___spec__2___closed__1(); +lean_mark_persistent(l_Lean_Meta_DiscrTree_insertCore___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_updateTree___spec__2___closed__1); +l_Lean_Meta_DiscrTree_insertCore___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_updateTree___spec__2___closed__2 = _init_l_Lean_Meta_DiscrTree_insertCore___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_updateTree___spec__2___closed__2(); +lean_mark_persistent(l_Lean_Meta_DiscrTree_insertCore___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_updateTree___spec__2___closed__2); +l_Lean_Meta_DiscrTree_insertCore___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_updateTree___spec__2___closed__3 = _init_l_Lean_Meta_DiscrTree_insertCore___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_updateTree___spec__2___closed__3(); +lean_mark_persistent(l_Lean_Meta_DiscrTree_insertCore___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_updateTree___spec__2___closed__3); +l_Lean_Meta_DiscrTree_insertCore___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_updateTree___spec__2___closed__4 = _init_l_Lean_Meta_DiscrTree_insertCore___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_updateTree___spec__2___closed__4(); +lean_mark_persistent(l_Lean_Meta_DiscrTree_insertCore___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_updateTree___spec__2___closed__4); +l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_updateTree___lambda__1___closed__1 = _init_l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_updateTree___lambda__1___closed__1(); +lean_mark_persistent(l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_DiscrTreeFinder_updateTree___lambda__1___closed__1); +l_Array_qsort_sort___at_Lean_Meta_LibrarySearch_DiscrTreeFinder_buildImportCache___spec__2___closed__1 = _init_l_Array_qsort_sort___at_Lean_Meta_LibrarySearch_DiscrTreeFinder_buildImportCache___spec__2___closed__1(); +lean_mark_persistent(l_Array_qsort_sort___at_Lean_Meta_LibrarySearch_DiscrTreeFinder_buildImportCache___spec__2___closed__1); +l_Lean_Meta_LibrarySearch_DiscrTreeFinder_buildImportCache___lambda__2___closed__1 = _init_l_Lean_Meta_LibrarySearch_DiscrTreeFinder_buildImportCache___lambda__2___closed__1(); +lean_mark_persistent(l_Lean_Meta_LibrarySearch_DiscrTreeFinder_buildImportCache___lambda__2___closed__1); +l_Lean_Meta_LibrarySearch_DiscrTreeFinder_buildImportCache___lambda__2___closed__2 = _init_l_Lean_Meta_LibrarySearch_DiscrTreeFinder_buildImportCache___lambda__2___closed__2(); +lean_mark_persistent(l_Lean_Meta_LibrarySearch_DiscrTreeFinder_buildImportCache___lambda__2___closed__2); +l_Lean_Meta_LibrarySearch_DiscrTreeFinder_buildImportCache___lambda__2___closed__3 = _init_l_Lean_Meta_LibrarySearch_DiscrTreeFinder_buildImportCache___lambda__2___closed__3(); +lean_mark_persistent(l_Lean_Meta_LibrarySearch_DiscrTreeFinder_buildImportCache___lambda__2___closed__3); +l_Lean_Meta_LibrarySearch_DiscrTreeFinder_buildImportCache___closed__1 = _init_l_Lean_Meta_LibrarySearch_DiscrTreeFinder_buildImportCache___closed__1(); +lean_mark_persistent(l_Lean_Meta_LibrarySearch_DiscrTreeFinder_buildImportCache___closed__1); +l_Lean_Meta_LibrarySearch_DiscrTreeFinder_buildImportCache___closed__2 = _init_l_Lean_Meta_LibrarySearch_DiscrTreeFinder_buildImportCache___closed__2(); +lean_mark_persistent(l_Lean_Meta_LibrarySearch_DiscrTreeFinder_buildImportCache___closed__2); +l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_IncDiscrTreeFinder_constantsPerTask = _init_l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_IncDiscrTreeFinder_constantsPerTask(); +lean_mark_persistent(l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_IncDiscrTreeFinder_constantsPerTask); +l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_IncDiscrTreeFinder_addImport___lambda__1___closed__1 = _init_l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_IncDiscrTreeFinder_addImport___lambda__1___closed__1(); +lean_mark_persistent(l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_IncDiscrTreeFinder_addImport___lambda__1___closed__1); +l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_IncDiscrTreeFinder_addImport___lambda__1___closed__2 = _init_l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_IncDiscrTreeFinder_addImport___lambda__1___closed__2(); +lean_mark_persistent(l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_IncDiscrTreeFinder_addImport___lambda__1___closed__2); +l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_IncDiscrTreeFinder_addImport___lambda__1___closed__3 = _init_l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_IncDiscrTreeFinder_addImport___lambda__1___closed__3(); +lean_mark_persistent(l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_IncDiscrTreeFinder_addImport___lambda__1___closed__3); +l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_IncDiscrTreeFinder_addImport___lambda__1___closed__4 = _init_l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_IncDiscrTreeFinder_addImport___lambda__1___closed__4(); +lean_mark_persistent(l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_IncDiscrTreeFinder_addImport___lambda__1___closed__4); +l_Lean_Meta_LibrarySearch_IncDiscrTreeFinder_mkImportFinder___elambda__1___lambda__1___closed__1 = _init_l_Lean_Meta_LibrarySearch_IncDiscrTreeFinder_mkImportFinder___elambda__1___lambda__1___closed__1(); +lean_mark_persistent(l_Lean_Meta_LibrarySearch_IncDiscrTreeFinder_mkImportFinder___elambda__1___lambda__1___closed__1); +l_Lean_Meta_LibrarySearch_IncDiscrTreeFinder_mkImportFinder___elambda__1___closed__1 = _init_l_Lean_Meta_LibrarySearch_IncDiscrTreeFinder_mkImportFinder___elambda__1___closed__1(); +lean_mark_persistent(l_Lean_Meta_LibrarySearch_IncDiscrTreeFinder_mkImportFinder___elambda__1___closed__1); +l_Lean_Meta_LibrarySearch_initFn____x40_Lean_Meta_Tactic_LibrarySearch___hyg_1378____closed__1 = _init_l_Lean_Meta_LibrarySearch_initFn____x40_Lean_Meta_Tactic_LibrarySearch___hyg_1378____closed__1(); +lean_mark_persistent(l_Lean_Meta_LibrarySearch_initFn____x40_Lean_Meta_Tactic_LibrarySearch___hyg_1378____closed__1); +l_Lean_Meta_LibrarySearch_initFn____x40_Lean_Meta_Tactic_LibrarySearch___hyg_1378____closed__2 = _init_l_Lean_Meta_LibrarySearch_initFn____x40_Lean_Meta_Tactic_LibrarySearch___hyg_1378____closed__2(); +lean_mark_persistent(l_Lean_Meta_LibrarySearch_initFn____x40_Lean_Meta_Tactic_LibrarySearch___hyg_1378____closed__2); +l_Lean_Meta_LibrarySearch_initFn____x40_Lean_Meta_Tactic_LibrarySearch___hyg_1378____closed__3 = _init_l_Lean_Meta_LibrarySearch_initFn____x40_Lean_Meta_Tactic_LibrarySearch___hyg_1378____closed__3(); +lean_mark_persistent(l_Lean_Meta_LibrarySearch_initFn____x40_Lean_Meta_Tactic_LibrarySearch___hyg_1378____closed__3); +l_Lean_Meta_LibrarySearch_initFn____x40_Lean_Meta_Tactic_LibrarySearch___hyg_1378____closed__4 = _init_l_Lean_Meta_LibrarySearch_initFn____x40_Lean_Meta_Tactic_LibrarySearch___hyg_1378____closed__4(); +lean_mark_persistent(l_Lean_Meta_LibrarySearch_initFn____x40_Lean_Meta_Tactic_LibrarySearch___hyg_1378____closed__4); +l_Lean_Meta_LibrarySearch_initFn____x40_Lean_Meta_Tactic_LibrarySearch___hyg_1378____closed__5 = _init_l_Lean_Meta_LibrarySearch_initFn____x40_Lean_Meta_Tactic_LibrarySearch___hyg_1378____closed__5(); +lean_mark_persistent(l_Lean_Meta_LibrarySearch_initFn____x40_Lean_Meta_Tactic_LibrarySearch___hyg_1378____closed__5); +l_Lean_Meta_LibrarySearch_initFn____x40_Lean_Meta_Tactic_LibrarySearch___hyg_1378____closed__6 = _init_l_Lean_Meta_LibrarySearch_initFn____x40_Lean_Meta_Tactic_LibrarySearch___hyg_1378____closed__6(); +lean_mark_persistent(l_Lean_Meta_LibrarySearch_initFn____x40_Lean_Meta_Tactic_LibrarySearch___hyg_1378____closed__6); +l_Lean_Meta_LibrarySearch_initFn____x40_Lean_Meta_Tactic_LibrarySearch___hyg_1378____closed__7 = _init_l_Lean_Meta_LibrarySearch_initFn____x40_Lean_Meta_Tactic_LibrarySearch___hyg_1378____closed__7(); +lean_mark_persistent(l_Lean_Meta_LibrarySearch_initFn____x40_Lean_Meta_Tactic_LibrarySearch___hyg_1378____closed__7); +l_Lean_Meta_LibrarySearch_initFn____x40_Lean_Meta_Tactic_LibrarySearch___hyg_1378____closed__8 = _init_l_Lean_Meta_LibrarySearch_initFn____x40_Lean_Meta_Tactic_LibrarySearch___hyg_1378____closed__8(); +lean_mark_persistent(l_Lean_Meta_LibrarySearch_initFn____x40_Lean_Meta_Tactic_LibrarySearch___hyg_1378____closed__8); +l_Lean_Meta_LibrarySearch_initFn____x40_Lean_Meta_Tactic_LibrarySearch___hyg_1378____closed__9 = _init_l_Lean_Meta_LibrarySearch_initFn____x40_Lean_Meta_Tactic_LibrarySearch___hyg_1378____closed__9(); +lean_mark_persistent(l_Lean_Meta_LibrarySearch_initFn____x40_Lean_Meta_Tactic_LibrarySearch___hyg_1378____closed__9); +l_Lean_Meta_LibrarySearch_initFn____x40_Lean_Meta_Tactic_LibrarySearch___hyg_1378____closed__10 = _init_l_Lean_Meta_LibrarySearch_initFn____x40_Lean_Meta_Tactic_LibrarySearch___hyg_1378____closed__10(); +lean_mark_persistent(l_Lean_Meta_LibrarySearch_initFn____x40_Lean_Meta_Tactic_LibrarySearch___hyg_1378____closed__10); +l_Lean_Meta_LibrarySearch_initFn____x40_Lean_Meta_Tactic_LibrarySearch___hyg_1378____closed__11 = _init_l_Lean_Meta_LibrarySearch_initFn____x40_Lean_Meta_Tactic_LibrarySearch___hyg_1378____closed__11(); +lean_mark_persistent(l_Lean_Meta_LibrarySearch_initFn____x40_Lean_Meta_Tactic_LibrarySearch___hyg_1378____closed__11); +l_Lean_Meta_LibrarySearch_initFn____x40_Lean_Meta_Tactic_LibrarySearch___hyg_1378____closed__12 = _init_l_Lean_Meta_LibrarySearch_initFn____x40_Lean_Meta_Tactic_LibrarySearch___hyg_1378____closed__12(); +lean_mark_persistent(l_Lean_Meta_LibrarySearch_initFn____x40_Lean_Meta_Tactic_LibrarySearch___hyg_1378____closed__12); +l_Lean_Meta_LibrarySearch_initFn____x40_Lean_Meta_Tactic_LibrarySearch___hyg_1378____closed__13 = _init_l_Lean_Meta_LibrarySearch_initFn____x40_Lean_Meta_Tactic_LibrarySearch___hyg_1378____closed__13(); +lean_mark_persistent(l_Lean_Meta_LibrarySearch_initFn____x40_Lean_Meta_Tactic_LibrarySearch___hyg_1378____closed__13); +l_Lean_Meta_LibrarySearch_initFn____x40_Lean_Meta_Tactic_LibrarySearch___hyg_1378____closed__14 = _init_l_Lean_Meta_LibrarySearch_initFn____x40_Lean_Meta_Tactic_LibrarySearch___hyg_1378____closed__14(); +lean_mark_persistent(l_Lean_Meta_LibrarySearch_initFn____x40_Lean_Meta_Tactic_LibrarySearch___hyg_1378____closed__14); +l_Lean_Meta_LibrarySearch_initFn____x40_Lean_Meta_Tactic_LibrarySearch___hyg_1378____closed__15 = _init_l_Lean_Meta_LibrarySearch_initFn____x40_Lean_Meta_Tactic_LibrarySearch___hyg_1378____closed__15(); +lean_mark_persistent(l_Lean_Meta_LibrarySearch_initFn____x40_Lean_Meta_Tactic_LibrarySearch___hyg_1378____closed__15); +l_Lean_Meta_LibrarySearch_initFn____x40_Lean_Meta_Tactic_LibrarySearch___hyg_1378____closed__16 = _init_l_Lean_Meta_LibrarySearch_initFn____x40_Lean_Meta_Tactic_LibrarySearch___hyg_1378____closed__16(); +lean_mark_persistent(l_Lean_Meta_LibrarySearch_initFn____x40_Lean_Meta_Tactic_LibrarySearch___hyg_1378____closed__16); +l_Lean_Meta_LibrarySearch_initFn____x40_Lean_Meta_Tactic_LibrarySearch___hyg_1378____closed__17 = _init_l_Lean_Meta_LibrarySearch_initFn____x40_Lean_Meta_Tactic_LibrarySearch___hyg_1378____closed__17(); +lean_mark_persistent(l_Lean_Meta_LibrarySearch_initFn____x40_Lean_Meta_Tactic_LibrarySearch___hyg_1378____closed__17); +l_Lean_Meta_LibrarySearch_initFn____x40_Lean_Meta_Tactic_LibrarySearch___hyg_1378____closed__18 = _init_l_Lean_Meta_LibrarySearch_initFn____x40_Lean_Meta_Tactic_LibrarySearch___hyg_1378____closed__18(); +lean_mark_persistent(l_Lean_Meta_LibrarySearch_initFn____x40_Lean_Meta_Tactic_LibrarySearch___hyg_1378____closed__18); +l_Lean_Meta_LibrarySearch_initFn____x40_Lean_Meta_Tactic_LibrarySearch___hyg_1378____closed__19 = _init_l_Lean_Meta_LibrarySearch_initFn____x40_Lean_Meta_Tactic_LibrarySearch___hyg_1378____closed__19(); +lean_mark_persistent(l_Lean_Meta_LibrarySearch_initFn____x40_Lean_Meta_Tactic_LibrarySearch___hyg_1378____closed__19); +l_Lean_Meta_LibrarySearch_initFn____x40_Lean_Meta_Tactic_LibrarySearch___hyg_1378____closed__20 = _init_l_Lean_Meta_LibrarySearch_initFn____x40_Lean_Meta_Tactic_LibrarySearch___hyg_1378____closed__20(); +lean_mark_persistent(l_Lean_Meta_LibrarySearch_initFn____x40_Lean_Meta_Tactic_LibrarySearch___hyg_1378____closed__20); +res = l_Lean_Meta_LibrarySearch_initFn____x40_Lean_Meta_Tactic_LibrarySearch___hyg_1378_(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +l_Lean_Meta_LibrarySearch_initFn____x40_Lean_Meta_Tactic_LibrarySearch___hyg_1420____closed__1 = _init_l_Lean_Meta_LibrarySearch_initFn____x40_Lean_Meta_Tactic_LibrarySearch___hyg_1420____closed__1(); +lean_mark_persistent(l_Lean_Meta_LibrarySearch_initFn____x40_Lean_Meta_Tactic_LibrarySearch___hyg_1420____closed__1); +l_Lean_Meta_LibrarySearch_initFn____x40_Lean_Meta_Tactic_LibrarySearch___hyg_1420____closed__2 = _init_l_Lean_Meta_LibrarySearch_initFn____x40_Lean_Meta_Tactic_LibrarySearch___hyg_1420____closed__2(); +lean_mark_persistent(l_Lean_Meta_LibrarySearch_initFn____x40_Lean_Meta_Tactic_LibrarySearch___hyg_1420____closed__2); +l_Lean_Meta_LibrarySearch_initFn____x40_Lean_Meta_Tactic_LibrarySearch___hyg_1420____closed__3 = _init_l_Lean_Meta_LibrarySearch_initFn____x40_Lean_Meta_Tactic_LibrarySearch___hyg_1420____closed__3(); +lean_mark_persistent(l_Lean_Meta_LibrarySearch_initFn____x40_Lean_Meta_Tactic_LibrarySearch___hyg_1420____closed__3); +res = l_Lean_Meta_LibrarySearch_initFn____x40_Lean_Meta_Tactic_LibrarySearch___hyg_1420_(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +res = l_Lean_Meta_LibrarySearch_initFn____x40_Lean_Meta_Tactic_LibrarySearch___hyg_1469_(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_LibSearchState_default = lean_io_result_get_value(res); +lean_mark_persistent(l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_LibSearchState_default); +lean_dec_ref(res); +l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_instInhabitedLibSearchState___closed__1 = _init_l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_instInhabitedLibSearchState___closed__1(); +lean_mark_persistent(l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_instInhabitedLibSearchState___closed__1); +l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_instInhabitedLibSearchState = _init_l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_instInhabitedLibSearchState(); +lean_mark_persistent(l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_instInhabitedLibSearchState); +res = l_Lean_Meta_LibrarySearch_initFn____x40_Lean_Meta_Tactic_LibrarySearch___hyg_1508_(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_ext = lean_io_result_get_value(res); +lean_mark_persistent(l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_ext); +lean_dec_ref(res); +res = l_Lean_Meta_LibrarySearch_initFn____x40_Lean_Meta_Tactic_LibrarySearch___hyg_1533_(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +l_Lean_Meta_LibrarySearch_defaultCandidateFinder = lean_io_result_get_value(res); +lean_mark_persistent(l_Lean_Meta_LibrarySearch_defaultCandidateFinder); +lean_dec_ref(res); +l_Lean_Meta_LibrarySearch_setDefaultCandidateFinder___closed__1 = _init_l_Lean_Meta_LibrarySearch_setDefaultCandidateFinder___closed__1(); +lean_mark_persistent(l_Lean_Meta_LibrarySearch_setDefaultCandidateFinder___closed__1); +l_Lean_Meta_LibrarySearch_mkHeartbeatCheck___closed__1 = _init_l_Lean_Meta_LibrarySearch_mkHeartbeatCheck___closed__1(); +lean_mark_persistent(l_Lean_Meta_LibrarySearch_mkHeartbeatCheck___closed__1); +l_Lean_Meta_LibrarySearch_initFn____x40_Lean_Meta_Tactic_LibrarySearch___hyg_2079____closed__1 = _init_l_Lean_Meta_LibrarySearch_initFn____x40_Lean_Meta_Tactic_LibrarySearch___hyg_2079____closed__1(); +lean_mark_persistent(l_Lean_Meta_LibrarySearch_initFn____x40_Lean_Meta_Tactic_LibrarySearch___hyg_2079____closed__1); +l_Lean_Meta_LibrarySearch_initFn____x40_Lean_Meta_Tactic_LibrarySearch___hyg_2079____closed__2 = _init_l_Lean_Meta_LibrarySearch_initFn____x40_Lean_Meta_Tactic_LibrarySearch___hyg_2079____closed__2(); +lean_mark_persistent(l_Lean_Meta_LibrarySearch_initFn____x40_Lean_Meta_Tactic_LibrarySearch___hyg_2079____closed__2); +l_Lean_Meta_LibrarySearch_initFn____x40_Lean_Meta_Tactic_LibrarySearch___hyg_2079____closed__3 = _init_l_Lean_Meta_LibrarySearch_initFn____x40_Lean_Meta_Tactic_LibrarySearch___hyg_2079____closed__3(); +lean_mark_persistent(l_Lean_Meta_LibrarySearch_initFn____x40_Lean_Meta_Tactic_LibrarySearch___hyg_2079____closed__3); +res = l_Lean_Meta_LibrarySearch_initFn____x40_Lean_Meta_Tactic_LibrarySearch___hyg_2079_(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_abortSpeculationId = lean_io_result_get_value(res); +lean_mark_persistent(l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_abortSpeculationId); +lean_dec_ref(res); +l_Lean_Meta_LibrarySearch_abortSpeculation___rarg___closed__1 = _init_l_Lean_Meta_LibrarySearch_abortSpeculation___rarg___closed__1(); +lean_mark_persistent(l_Lean_Meta_LibrarySearch_abortSpeculation___rarg___closed__1); +l_Lean_Meta_LibrarySearch_abortSpeculation___rarg___closed__2 = _init_l_Lean_Meta_LibrarySearch_abortSpeculation___rarg___closed__2(); +lean_mark_persistent(l_Lean_Meta_LibrarySearch_abortSpeculation___rarg___closed__2); +l_Lean_Meta_LibrarySearch_mkLibrarySearchLemma___lambda__1___closed__1 = _init_l_Lean_Meta_LibrarySearch_mkLibrarySearchLemma___lambda__1___closed__1(); +lean_mark_persistent(l_Lean_Meta_LibrarySearch_mkLibrarySearchLemma___lambda__1___closed__1); +l_Lean_Meta_LibrarySearch_mkLibrarySearchLemma___lambda__2___closed__1 = _init_l_Lean_Meta_LibrarySearch_mkLibrarySearchLemma___lambda__2___closed__1(); +lean_mark_persistent(l_Lean_Meta_LibrarySearch_mkLibrarySearchLemma___lambda__2___closed__1); +l_Lean_Meta_LibrarySearch_mkLibrarySearchLemma___closed__1 = _init_l_Lean_Meta_LibrarySearch_mkLibrarySearchLemma___closed__1(); +lean_mark_persistent(l_Lean_Meta_LibrarySearch_mkLibrarySearchLemma___closed__1); +l_Lean_Meta_LibrarySearch_mkLibrarySearchLemma___closed__2 = _init_l_Lean_Meta_LibrarySearch_mkLibrarySearchLemma___closed__2(); +lean_mark_persistent(l_Lean_Meta_LibrarySearch_mkLibrarySearchLemma___closed__2); +l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearchLemma___lambda__1___closed__1 = _init_l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearchLemma___lambda__1___closed__1(); +lean_mark_persistent(l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearchLemma___lambda__1___closed__1); +l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearchLemma___lambda__1___closed__2 = _init_l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearchLemma___lambda__1___closed__2(); +lean_mark_persistent(l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearchLemma___lambda__1___closed__2); +l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearchLemma___lambda__1___closed__3 = _init_l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearchLemma___lambda__1___closed__3(); +lean_mark_persistent(l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearchLemma___lambda__1___closed__3); +l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearchLemma___lambda__1___closed__4 = _init_l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearchLemma___lambda__1___closed__4(); +lean_mark_persistent(l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearchLemma___lambda__1___closed__4); +l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearchLemma___lambda__1___closed__5 = _init_l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearchLemma___lambda__1___closed__5(); +lean_mark_persistent(l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearchLemma___lambda__1___closed__5); +l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearchLemma___lambda__1___closed__6 = _init_l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearchLemma___lambda__1___closed__6(); +lean_mark_persistent(l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearchLemma___lambda__1___closed__6); +l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearchLemma___lambda__1___closed__7 = _init_l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearchLemma___lambda__1___closed__7(); +lean_mark_persistent(l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearchLemma___lambda__1___closed__7); +l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearchLemma___lambda__1___closed__8 = _init_l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearchLemma___lambda__1___closed__8(); +lean_mark_persistent(l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearchLemma___lambda__1___closed__8); +l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearchLemma___lambda__1___closed__9 = _init_l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearchLemma___lambda__1___closed__9(); +lean_mark_persistent(l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearchLemma___lambda__1___closed__9); +l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearchLemma___lambda__1___closed__10 = _init_l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearchLemma___lambda__1___closed__10(); +lean_mark_persistent(l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearchLemma___lambda__1___closed__10); +l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearchLemma___lambda__1___closed__11 = _init_l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearchLemma___lambda__1___closed__11(); +lean_mark_persistent(l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearchLemma___lambda__1___closed__11); +l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearchLemma___lambda__1___closed__12 = _init_l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearchLemma___lambda__1___closed__12(); +lean_mark_persistent(l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearchLemma___lambda__1___closed__12); +l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearchLemma___lambda__1___closed__13 = _init_l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearchLemma___lambda__1___closed__13(); +lean_mark_persistent(l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearchLemma___lambda__1___closed__13); +l_Array_forInUnsafe_loop___at_Lean_Meta_LibrarySearch_tryOnEach___spec__1___closed__1 = _init_l_Array_forInUnsafe_loop___at_Lean_Meta_LibrarySearch_tryOnEach___spec__1___closed__1(); +lean_mark_persistent(l_Array_forInUnsafe_loop___at_Lean_Meta_LibrarySearch_tryOnEach___spec__1___closed__1); +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_withSeconds___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___spec__3___closed__1 = _init_l_Lean_withSeconds___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___spec__3___closed__1(); +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(); +lean_mark_persistent(l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___spec__2___lambda__3___closed__2); +l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___spec__2___lambda__3___closed__3 = _init_l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___spec__2___lambda__3___closed__3(); +lean_mark_persistent(l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___spec__2___lambda__3___closed__3); +l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___spec__2___lambda__3___closed__4 = _init_l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___spec__2___lambda__3___closed__4(); +lean_mark_persistent(l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___spec__2___lambda__3___closed__4); +l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___spec__2___lambda__3___closed__5 = _init_l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___spec__2___lambda__3___closed__5(); +lean_mark_persistent(l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___spec__2___lambda__3___closed__5); +l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___spec__2___lambda__4___closed__1 = _init_l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___spec__2___lambda__4___closed__1(); +lean_mark_persistent(l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___spec__2___lambda__4___closed__1); +l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___spec__2___lambda__4___closed__2 = _init_l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___spec__2___lambda__4___closed__2(); +lean_mark_persistent(l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___spec__2___lambda__4___closed__2); +l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___spec__2___lambda__5___closed__1 = _init_l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___spec__2___lambda__5___closed__1(); +lean_mark_persistent(l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___spec__2___lambda__5___closed__1); +l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___lambda__2___closed__1 = _init_l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___lambda__2___closed__1(); +lean_mark_persistent(l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___lambda__2___closed__1); +l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___lambda__5___closed__1 = _init_l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___lambda__5___closed__1(); +lean_mark_persistent(l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___lambda__5___closed__1); +l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___lambda__6___closed__1 = _init_l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___lambda__6___closed__1(); +lean_mark_persistent(l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___lambda__6___closed__1); +return lean_io_result_mk_ok(lean_box(0)); +} +#ifdef __cplusplus +} +#endif diff --git a/stage0/stdlib/Lean/Meta/Tactic/NormCast.c b/stage0/stdlib/Lean/Meta/Tactic/NormCast.c index aeb067e51b..935417b139 100644 --- a/stage0/stdlib/Lean/Meta/Tactic/NormCast.c +++ b/stage0/stdlib/Lean/Meta/Tactic/NormCast.c @@ -1,6 +1,6 @@ // Lean compiler output // Module: Lean.Meta.Tactic.NormCast -// Imports: Init Lean.Meta.CongrTheorems Lean.Meta.Tactic.Simp.SimpTheorems Lean.Meta.CoeAttr +// Imports: Lean.Meta.CongrTheorems Lean.Meta.Tactic.Simp.SimpTheorems Lean.Meta.CoeAttr #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -4143,7 +4143,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_NormCast_initFn____x40_Lean_Meta_Tactic_NormCast___hyg_1997____lambda__1___closed__3; x_2 = l_Lean_Meta_NormCast_initFn____x40_Lean_Meta_Tactic_NormCast___hyg_1997____lambda__1___closed__4; -x_3 = lean_unsigned_to_nat(160u); +x_3 = lean_unsigned_to_nat(161u); x_4 = lean_unsigned_to_nat(11u); x_5 = l_Lean_Meta_NormCast_initFn____x40_Lean_Meta_Tactic_NormCast___hyg_1997____lambda__1___closed__5; x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); @@ -4410,7 +4410,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_NormCast_initFn____x40_Lean_Meta_Tactic_NormCast___hyg_1997____lambda__1___closed__3; x_2 = l_Lean_Meta_NormCast_initFn____x40_Lean_Meta_Tactic_NormCast___hyg_1997____lambda__1___closed__4; -x_3 = lean_unsigned_to_nat(153u); +x_3 = lean_unsigned_to_nat(154u); x_4 = lean_unsigned_to_nat(71u); x_5 = l_Lean_Meta_NormCast_initFn____x40_Lean_Meta_Tactic_NormCast___hyg_1997____lambda__1___closed__5; x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); @@ -5555,7 +5555,6 @@ lean_dec(x_1); return x_5; } } -lean_object* initialize_Init(uint8_t builtin, lean_object*); lean_object* initialize_Lean_Meta_CongrTheorems(uint8_t builtin, lean_object*); lean_object* initialize_Lean_Meta_Tactic_Simp_SimpTheorems(uint8_t builtin, lean_object*); lean_object* initialize_Lean_Meta_CoeAttr(uint8_t builtin, lean_object*); @@ -5564,9 +5563,6 @@ LEAN_EXPORT lean_object* initialize_Lean_Meta_Tactic_NormCast(uint8_t builtin, l lean_object * res; if (_G_initialized) return lean_io_result_mk_ok(lean_box(0)); _G_initialized = true; -res = initialize_Init(builtin, lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); res = initialize_Lean_Meta_CongrTheorems(builtin, lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); diff --git a/stage0/stdlib/Lean/Meta/Tactic/Simp/BuiltinSimprocs/BitVec.c b/stage0/stdlib/Lean/Meta/Tactic/Simp/BuiltinSimprocs/BitVec.c index 7bfdfd65a9..a28b3fe99d 100644 --- a/stage0/stdlib/Lean/Meta/Tactic/Simp/BuiltinSimprocs/BitVec.c +++ b/stage0/stdlib/Lean/Meta/Tactic/Simp/BuiltinSimprocs/BitVec.c @@ -1,6 +1,6 @@ // Lean compiler output // Module: Lean.Meta.Tactic.Simp.BuiltinSimprocs.BitVec -// Imports: Lean.Meta.Tactic.Simp.BuiltinSimprocs.Nat Lean.Meta.Tactic.Simp.BuiltinSimprocs.Int Init.Data.BitVec.Basic +// Imports: Lean.Meta.LitValues Lean.Meta.Tactic.Simp.BuiltinSimprocs.Nat Lean.Meta.Tactic.Simp.BuiltinSimprocs.Int Init.Data.BitVec.Basic #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -13,2062 +13,1162 @@ #ifdef __cplusplus extern "C" { #endif -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceShiftLeftZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3689_(lean_object*); -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4058_(lean_object*); -static lean_object* l___regBuiltin_Std_BitVec_reduceSMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1869____closed__3; -static lean_object* l___regBuiltin_Std_BitVec_reduceZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4058____closed__5; +static lean_object* l___regBuiltin_BitVec_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1206____closed__3; +static lean_object* l___regBuiltin_BitVec_reduceSMTUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1620____closed__2; +lean_object* l_BitVec_abs(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceRotateRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1964_(lean_object*); lean_object* l_Lean_Expr_const___override(lean_object*, lean_object*); -static lean_object* l___regBuiltin_Std_BitVec_reduceSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1921____closed__5; -static lean_object* l___regBuiltin_Std_BitVec_reduceZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4058____closed__4; -static lean_object* l___regBuiltin_Std_BitVec_reduceGetMsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1989____closed__5; -static lean_object* l___regBuiltin_Std_BitVec_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1597____closed__12; -static lean_object* l___regBuiltin_Std_BitVec_reduceSLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3350____closed__4; -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3172_(lean_object*); -static lean_object* l___regBuiltin_Std_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1471____closed__12; +static lean_object* l_BitVec_reduceGetMsb___closed__1; +static lean_object* l___regBuiltin_BitVec_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1500____closed__12; +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceNot_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1189_(lean_object*); +LEAN_EXPORT lean_object* l_BitVec_reduceSLE___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_BitVec_reduceXOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1332____closed__5; +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceULT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3028_(lean_object*); +static lean_object* l___regBuiltin_BitVec_reduceShiftLeftZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3414____closed__5; +LEAN_EXPORT lean_object* l_BitVec_reduceSMod(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_BitVec_reduceMul___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*); +static lean_object* l___regBuiltin_BitVec_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1458____closed__10; +static lean_object* l___regBuiltin_BitVec_reduceHShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1874____closed__8; +LEAN_EXPORT lean_object* l_BitVec_reduceGetLsb___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_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1148____closed__5; lean_object* lean_format_pretty(lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___regBuiltin_Std_BitVec_reduceGetMsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1989____closed__3; -LEAN_EXPORT lean_object* l_Std_BitVec_reduceZeroExtend(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceShiftLeftZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3691_(lean_object*); -static lean_object* l___regBuiltin_Std_BitVec_reduceNot_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1408____closed__2; -static lean_object* l_Std_BitVec_reduceBin___lambda__2___closed__8; -static lean_object* l_Std_BitVec_reduceCast___closed__1; -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3174_(lean_object*); -LEAN_EXPORT lean_object* l_Std_BitVec_reduceToNat___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_Std_BitVec_reduceRotateRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2183____closed__3; -static lean_object* l___regBuiltin_Std_BitVec_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1681____closed__2; -lean_object* l_Std_BitVec_smtSDiv(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Std_BitVec_reduceSDiv___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*); -static lean_object* l_Std_BitVec_reduceMod___closed__3; -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceNot_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1412_(lean_object*); +static lean_object* l___regBuiltin_BitVec_reduceZeroExtend_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3266____closed__8; +LEAN_EXPORT lean_object* l_BitVec_reduceMul___lambda__2(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_BitVec_reduceOfNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2829____closed__4; +static lean_object* l_BitVec_reduceGT___closed__1; +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceOfInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2631_(lean_object*); +static lean_object* l___regBuiltin_BitVec_reduceExtracLsb_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3600____closed__1; +static lean_object* l___regBuiltin_BitVec_reduceExtracLsb_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3600____closed__9; +static lean_object* l___regBuiltin_BitVec_reduceUMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1568____closed__8; +static lean_object* l_BitVec_reduceSShiftRight___closed__1; +static lean_object* l___regBuiltin_BitVec_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1416____closed__3; +LEAN_EXPORT lean_object* l_BitVec_reduceToNat(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___regBuiltin_BitVec_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1500____closed__3; +static lean_object* l___regBuiltin_BitVec_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1206____closed__8; +static lean_object* l___regBuiltin_BitVec_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1416____closed__10; +static lean_object* l_BitVec_reduceExtracLsb_x27___closed__1; +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1596_(lean_object*); +static lean_object* l___regBuiltin_BitVec_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1542____closed__14; lean_object* l_Lean_mkNatLit(lean_object*); -lean_object* l_Std_BitVec_signExtend(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Std_BitVec_reduceLE(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___regBuiltin_Std_BitVec_reduceOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1513____closed__6; -static lean_object* l___regBuiltin_Std_BitVec_reduceZeroExtend_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3529____closed__7; -LEAN_EXPORT lean_object* l_Std_BitVec_reduceHShiftLeft___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_BitVec_reduceUnary___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_Std_BitVec_reduceUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1817____closed__5; -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceSShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2059_(lean_object*); -static lean_object* l___regBuiltin_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1371____closed__11; -static lean_object* l___regBuiltin_Std_BitVec_reduceUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1817____closed__3; -static lean_object* l___regBuiltin_Std_BitVec_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1429____closed__8; -static lean_object* l___regBuiltin_Std_BitVec_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1681____closed__11; +static lean_object* l___regBuiltin_BitVec_reduceShiftLeftZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3414____closed__3; +static lean_object* l___regBuiltin_BitVec_reduceZeroExtend_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3266____closed__3; +static lean_object* l_BitVec_reduceGetBit___lambda__1___closed__9; +static lean_object* l___regBuiltin_BitVec_reduceOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1290____closed__3; +static lean_object* l___regBuiltin_BitVec_reduceULT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3024____closed__5; +LEAN_EXPORT lean_object* l_BitVec_reduceOfNat___lambda__2(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_BitVec_reduceSShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1832____closed__2; +static lean_object* l_BitVec_reduceShiftLeft___closed__2; +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2919_(lean_object*); +static lean_object* l_BitVec_reduceLT___closed__1; +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceZeroExtend_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3268_(lean_object*); +static lean_object* l_BitVec_reduceAllOnes___closed__2; +LEAN_EXPORT lean_object* l_BitVec_reduceNot(lean_object*, 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*); -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceRotateLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2163_(lean_object*); -static lean_object* l_Std_BitVec_reduceXOr___closed__1; -static lean_object* l_Std_BitVec_reduceNot___closed__1; -LEAN_EXPORT lean_object* l_Std_BitVec_fromExpr_x3f(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___regBuiltin_Std_BitVec_reduceZeroExtend_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3529____closed__5; -static lean_object* l___regBuiltin_Std_BitVec_reduceSMTUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1843____closed__8; -LEAN_EXPORT lean_object* l_Std_BitVec_reduceZeroExtend_x27___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_Std_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1475_(lean_object*); -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1683_(lean_object*); -static lean_object* l_Std_BitVec_reduceBin___lambda__2___closed__14; -static lean_object* l___regBuiltin_Std_BitVec_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3129____closed__5; -static lean_object* l___regBuiltin_Std_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1471____closed__15; -static lean_object* l___regBuiltin_Std_BitVec_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2613____closed__7; -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceOfInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2878_(lean_object*); -LEAN_EXPORT lean_object* l_Std_BitVec_reduceSDiv(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___regBuiltin_Std_BitVec_reduceZeroExtend_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3529____closed__9; -static lean_object* l___regBuiltin_Std_BitVec_reduceSRem_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1895____closed__5; -static lean_object* l___regBuiltin_Std_BitVec_reduceSMTSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1947____closed__7; -static lean_object* l___regBuiltin_Std_BitVec_reduceXOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1555____closed__14; -static lean_object* l___regBuiltin_Std_BitVec_reduceSLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3350____closed__1; -static lean_object* l___regBuiltin_Std_BitVec_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3172____closed__6; -static lean_object* l_Std_BitVec_reduceNot___closed__3; -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3133_(lean_object*); -LEAN_EXPORT lean_object* l_Std_BitVec_reduceNeg___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___regBuiltin_Std_BitVec_reduceUMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1791_(lean_object*); -static lean_object* l_Std_BitVec_reduceAdd___closed__1; -static lean_object* l___regBuiltin_Std_BitVec_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1639____closed__5; -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1817_(lean_object*); -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3129_(lean_object*); -static lean_object* l_Std_BitVec_reduceGetMsb___closed__2; -static lean_object* l___regBuiltin_Std_BitVec_reduceRotateLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2161____closed__4; -LEAN_EXPORT lean_object* l_Std_BitVec_reduceDiv___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_Std_BitVec_reduceBin(lean_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_BitVec_reduceDiv___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_Std_BitVec_reduceSub___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* l_Std_BitVec_ofInt(lean_object*, lean_object*); -lean_object* lean_whnf(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Std_BitVec_reduceBin___lambda__2___closed__7; -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1375_(lean_object*); -static lean_object* l___regBuiltin_Std_BitVec_reduceOfInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2878____closed__3; -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceOfNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3090_(lean_object*); -static lean_object* l___regBuiltin_Std_BitVec_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1597____closed__7; -lean_object* l_Std_BitVec_rotateLeft(lean_object*, lean_object*, lean_object*); -static lean_object* l___regBuiltin_Std_BitVec_reduceSignExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4079____closed__8; -static lean_object* l___regBuiltin_Std_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1471____closed__1; -LEAN_EXPORT lean_object* l_Std_BitVec_reduceUShiftRight(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceHShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2139_(lean_object*); -static lean_object* l___regBuiltin_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1371____closed__1; -LEAN_EXPORT lean_object* l_Std_BitVec_reduceSub(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___regBuiltin_Std_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1471____closed__9; -static lean_object* l___regBuiltin_Std_BitVec_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1597____closed__11; +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceGetLsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1749_(lean_object*); +LEAN_EXPORT lean_object* l_BitVec_reduceULE___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_BitVec_reduceShiftLeftZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3414____closed__1; +LEAN_EXPORT lean_object* l_BitVec_reduceAbs___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_BitVec_reduceToInt(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___regBuiltin_BitVec_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1416____closed__4; +static lean_object* l___regBuiltin_BitVec_reduceHShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1916____closed__3; +LEAN_EXPORT lean_object* l_BitVec_reduceAllOnes(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___regBuiltin_BitVec_reduceZeroExtend_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3266____closed__2; +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2119_(lean_object*); +static lean_object* l___regBuiltin_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1248____closed__11; +static lean_object* l___regBuiltin_BitVec_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1458____closed__14; +static lean_object* l___regBuiltin_BitVec_reduceRotateLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1938____closed__8; +LEAN_EXPORT lean_object* l_BitVec_reduceLT___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_BitVec_reduceAllOnes___closed__1; +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1542_(lean_object*); +static lean_object* l_BitVec_reduceSub___closed__1; +static lean_object* l___regBuiltin_BitVec_reduceNot_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1185____closed__9; +static lean_object* l___regBuiltin_BitVec_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2374____closed__3; +lean_object* l_Lean_Meta_getNatValue_x3f(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_BitVec_reduceGetMsb(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___regBuiltin_BitVec_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1458____closed__5; +static lean_object* l___regBuiltin_BitVec_reduceULE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3047____closed__3; +static lean_object* l___regBuiltin_BitVec_reduceSRem_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1672____closed__1; +static lean_object* l___regBuiltin_BitVec_reduceUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1594____closed__4; +static lean_object* l_BitVec_reduceHShiftLeft___closed__1; +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1788_(lean_object*); +static lean_object* l_BitVec_reduceHShiftRight___closed__1; +static lean_object* l___regBuiltin_BitVec_reduceUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1594____closed__8; +static lean_object* l___regBuiltin_BitVec_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1458____closed__6; +static lean_object* l___regBuiltin_BitVec_reduceSMTSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1724____closed__3; +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceUShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1812_(lean_object*); +LEAN_EXPORT lean_object* l_BitVec_reduceUMod(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___regBuiltin_BitVec_reduceZeroExtend_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3266____closed__5; +static lean_object* l___regBuiltin_BitVec_reduceNot_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1185____closed__6; +static lean_object* l___regBuiltin_BitVec_reduceHShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1916____closed__9; +LEAN_EXPORT lean_object* l_BitVec_reduceShiftLeftZeroExtend(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_BitVec_reduceSMTSDiv___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_BitVec_reduceOr___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_BitVec_reduceLT(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2374_(lean_object*); +lean_object* l_BitVec_replicate(lean_object*, lean_object*, lean_object*); +static lean_object* l_BitVec_reduceGetBit___lambda__1___closed__10; +LEAN_EXPORT lean_object* l_BitVec_reduceAllOnes___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_BitVec_reduceSMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1646____closed__7; +static lean_object* l___regBuiltin_BitVec_reduceUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1594____closed__1; +LEAN_EXPORT lean_object* l_BitVec_reduceAnd___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_BitVec_reduceZeroExtend_x27(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___regBuiltin_BitVec_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1542____closed__2; +static lean_object* l_BitVec_reduceGetBit___lambda__1___closed__5; +LEAN_EXPORT lean_object* l_BitVec_reduceUnary___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_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1148____closed__3; +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2876_(lean_object*); +static lean_object* l___regBuiltin_BitVec_reduceExtracLsb_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3600____closed__7; +static lean_object* l___regBuiltin_BitVec_reduceZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3769____closed__4; +static lean_object* l___regBuiltin_BitVec_reduceSMTSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1724____closed__5; +static lean_object* l_BitVec_reduceToInt___lambda__1___closed__7; +LEAN_EXPORT lean_object* l_BitVec_reduceToInt___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_BitVec_reduceXOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1334_(lean_object*); +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceXOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1336_(lean_object*); +static lean_object* l___regBuiltin_BitVec_reduceRotateRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1960____closed__6; +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1500_(lean_object*); lean_object* l_Lean_mkAppB(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2352_(lean_object*); -static lean_object* l___regBuiltin_Std_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1471____closed__3; -static lean_object* l___regBuiltin_Std_BitVec_reduceSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1921____closed__8; -static lean_object* l___regBuiltin_Std_BitVec_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1639____closed__4; -LEAN_EXPORT lean_object* l_Std_BitVec_reduceOr___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*); -static lean_object* l_Std_BitVec_reduceOr___closed__1; -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceNot_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1410_(lean_object*); -LEAN_EXPORT lean_object* l_Std_BitVec_reduceAppend(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___regBuiltin_Std_BitVec_reduceShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2011____closed__2; -LEAN_EXPORT lean_object* l_Std_BitVec_reduceSLE___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_BitVec_reduceNeg___closed__2; +static lean_object* l___regBuiltin_BitVec_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1458____closed__1; +static lean_object* l_BitVec_reduceGetLsb___closed__2; +static lean_object* l___regBuiltin_BitVec_reduceOfInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2631____closed__3; +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceSLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3093_(lean_object*); +static lean_object* l___regBuiltin_BitVec_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2872____closed__10; +static lean_object* l___regBuiltin_BitVec_reduceGetMsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1766____closed__7; +static lean_object* l___regBuiltin_BitVec_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1374____closed__13; +static lean_object* l___regBuiltin_BitVec_reduceRotateRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1960____closed__1; +static lean_object* l___regBuiltin_BitVec_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1416____closed__1; +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceReplicate_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3752_(lean_object*); +static lean_object* l___regBuiltin_BitVec_reduceAllOnes_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3901____closed__5; uint8_t l_Lean_Expr_isAppOfArity(lean_object*, lean_object*, lean_object*); -static lean_object* l___regBuiltin_Std_BitVec_reduceSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1921____closed__7; -static lean_object* l___regBuiltin_Std_BitVec_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1765____closed__6; -LEAN_EXPORT lean_object* l_Std_BitVec_reduceSMod(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___regBuiltin_Std_BitVec_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1765____closed__7; -LEAN_EXPORT lean_object* l_Std_BitVec_reduceBinPred(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_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2617_(lean_object*); -static lean_object* l_Std_BitVec_reduceSMTUDiv___closed__1; -LEAN_EXPORT lean_object* l_Std_BitVec_reduceShiftLeftZeroExtend___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_Std_BitVec_reduceSMTSDiv___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_Std_BitVec_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___regBuiltin_Std_BitVec_reduceSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1921____closed__2; -LEAN_EXPORT lean_object* l_Std_BitVec_reduceGE(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___regBuiltin_Std_BitVec_reduceRotateLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2161____closed__7; -static lean_object* l_Std_BitVec_reduceBin___lambda__2___closed__13; -static lean_object* l_Std_BitVec_reduceGetLsb___closed__1; -static lean_object* l___regBuiltin_Std_BitVec_reduceExtracLsb_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3879____closed__2; -static lean_object* l___regBuiltin_Std_BitVec_reduceUMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1791____closed__3; +LEAN_EXPORT lean_object* l_BitVec_reduceSDiv___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*); +static lean_object* l_BitVec_reduceGetBit___lambda__1___closed__8; +LEAN_EXPORT lean_object* l_BitVec_reduceHShiftRight(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceUMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1568_(lean_object*); +static lean_object* l___regBuiltin_BitVec_reduceHShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1916____closed__6; +static lean_object* l___regBuiltin_BitVec_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1542____closed__6; +static lean_object* l___regBuiltin_BitVec_reduceHShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1874____closed__4; +static lean_object* l_BitVec_reduceULE___closed__2; +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1462_(lean_object*); +static lean_object* l___regBuiltin_BitVec_reduceHShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1916____closed__10; +static lean_object* l___regBuiltin_BitVec_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2915____closed__2; +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceSMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1650_(lean_object*); lean_object* lean_array_push(lean_object*, lean_object*); -static lean_object* l___regBuiltin_Std_BitVec_reduceZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4058____closed__8; -static lean_object* l___regBuiltin_Std_BitVec_reduceOfNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3086____closed__5; -static lean_object* l_Std_BitVec_reduceGetBit___lambda__1___closed__6; -static lean_object* l___regBuiltin_Std_BitVec_reduceCast_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2505____closed__6; -static lean_object* l___regBuiltin_Std_BitVec_reduceExtracLsb_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3879____closed__3; -static lean_object* l___regBuiltin_Std_BitVec_reduceUShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2033____closed__3; -static lean_object* l_Std_BitVec_reduceLE___closed__1; -static lean_object* l___regBuiltin_Std_BitVec_reduceHShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2097____closed__6; -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceRotateLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2165_(lean_object*); -LEAN_EXPORT lean_object* l_Std_BitVec_reduceExtracLsb_x27___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_Std_BitVec_reduceOfNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3086____closed__7; -static lean_object* l_Std_BitVec_reduceGetBit___lambda__1___closed__8; -static lean_object* l___regBuiltin_Std_BitVec_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2350____closed__5; -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1819_(lean_object*); -static lean_object* l_Std_BitVec_reduceDiv___closed__3; -static lean_object* l___regBuiltin_Std_BitVec_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3129____closed__10; -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceXOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1557_(lean_object*); -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceSMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1873_(lean_object*); -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceULT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3285_(lean_object*); -static lean_object* l_Std_BitVec_reduceUnary___lambda__1___closed__1; -LEAN_EXPORT lean_object* l_Std_BitVec_reduceAllOnes(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___regBuiltin_Std_BitVec_reduceShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2011____closed__6; -static lean_object* l_Std_BitVec_reduceDiv___closed__1; -LEAN_EXPORT lean_object* l_Std_BitVec_reduceSub___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___regBuiltin_Std_BitVec_reduceHShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2101_(lean_object*); -LEAN_EXPORT lean_object* l_Std_BitVec_reduceRotateRight___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_Std_BitVec_reduceOfNat___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_Std_BitVec_reduceToNat___closed__1; -static lean_object* l___regBuiltin_Std_BitVec_reduceSShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2055____closed__1; -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1599_(lean_object*); -static lean_object* l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f___closed__1; -LEAN_EXPORT lean_object* l_Std_BitVec_reduceSMTUDiv___lambda__2(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_BitVec_reduceUShiftRight___closed__2; -static lean_object* l___regBuiltin_Std_BitVec_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1765____closed__10; -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceZeroExtend_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3531_(lean_object*); -static lean_object* l___regBuiltin_Std_BitVec_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3258____closed__3; -static lean_object* l_Std_BitVec_reduceSShiftRight___closed__2; -static lean_object* l___regBuiltin_Std_BitVec_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1597____closed__8; -static lean_object* l___regBuiltin_Std_BitVec_reduceNot_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1408____closed__5; -LEAN_EXPORT lean_object* l_Std_BitVec_reduceGetMsb___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_Std_BitVec_reduceUMod___closed__2; -LEAN_EXPORT lean_object* l_Std_BitVec_reduceSShiftRight___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* l_Std_BitVec_srem(lean_object*, lean_object*, lean_object*); -static lean_object* l___regBuiltin_Std_BitVec_reduceHShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2139____closed__1; -static lean_object* l___regBuiltin_Std_BitVec_reduceShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2011____closed__1; -LEAN_EXPORT lean_object* l_Std_BitVec_reduceULT___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_Std_BitVec_reduceReplicate___closed__1; -static lean_object* l___regBuiltin_Std_BitVec_reduceSRem_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1895____closed__3; -static lean_object* l___regBuiltin_Std_BitVec_reduceOfNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3086____closed__2; -static lean_object* l___regBuiltin_Std_BitVec_reduceZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4058____closed__3; -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceCast_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2509_(lean_object*); -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceRotateRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2183_(lean_object*); -static lean_object* l_Std_BitVec_reduceLE___closed__2; -LEAN_EXPORT lean_object* l_Std_BitVec_reduceGetBit___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_Std_BitVec_reduceGetMsb___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___regBuiltin_Std_BitVec_reduceSignExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4081_(lean_object*); -static lean_object* l___regBuiltin_Std_BitVec_reduceHShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2139____closed__10; -static lean_object* l_Std_BitVec_reduceUShiftRight___closed__1; -static lean_object* l___regBuiltin_Std_BitVec_reduceShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2011____closed__8; -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3258_(lean_object*); -static lean_object* l___regBuiltin_Std_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1471____closed__7; -static lean_object* l___regBuiltin_Std_BitVec_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1681____closed__10; -static lean_object* l___regBuiltin_Std_BitVec_reduceOfInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2878____closed__7; -LEAN_EXPORT lean_object* l_Std_BitVec_reduceSLT___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_Std_BitVec_reduceOfNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3086____closed__6; -static lean_object* l___regBuiltin_Std_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1471____closed__11; -static lean_object* l___regBuiltin_Std_BitVec_reduceSMTUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1843____closed__4; -static lean_object* l___regBuiltin_Std_BitVec_reduceToInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2721____closed__3; -LEAN_EXPORT lean_object* l_Std_BitVec_reduceSignExtend___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_Std_BitVec_reduceOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1513____closed__11; -static lean_object* l___regBuiltin_Std_BitVec_reduceSMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1869____closed__2; -static lean_object* l_Std_BitVec_reduceToInt___closed__2; -LEAN_EXPORT lean_object* l_Std_BitVec_reduceNot___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_Std_BitVec_reduceULT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3281____closed__2; -static lean_object* l___regBuiltin_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1373____closed__1; -static lean_object* l___regBuiltin_Std_BitVec_reduceOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1513____closed__3; -static lean_object* l_Std_BitVec_reduceUDiv___closed__1; +static lean_object* l___regBuiltin_BitVec_reduceZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3769____closed__6; +static lean_object* l___regBuiltin_BitVec_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2374____closed__6; +static lean_object* l___regBuiltin_BitVec_reduceUShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1810____closed__8; +static lean_object* l___regBuiltin_BitVec_reduceNot_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1185____closed__8; +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceNot_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1185_(lean_object*); +static lean_object* l___regBuiltin_BitVec_reduceUShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1810____closed__2; +static lean_object* l___regBuiltin_BitVec_reduceToInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2482____closed__4; +static lean_object* l___regBuiltin_BitVec_reduceOfInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2631____closed__7; +static lean_object* l___regBuiltin_BitVec_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1500____closed__11; +LEAN_EXPORT lean_object* l_BitVec_reduceHShiftRight___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_BitVec_reduceXOr___closed__1; +static lean_object* l___regBuiltin_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1248____closed__1; +static lean_object* l___regBuiltin_BitVec_reduceCast_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2266____closed__9; +LEAN_EXPORT lean_object* l_BitVec_reduceAdd(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___regBuiltin_BitVec_reduceXOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1332____closed__3; +static lean_object* l___regBuiltin_BitVec_reduceSignExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3790____closed__2; +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceReplicate_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3750_(lean_object*); +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1152_(lean_object*); +static lean_object* l_BitVec_reduceUShiftRight___closed__1; +static lean_object* l___regBuiltin_BitVec_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1206____closed__6; +static lean_object* l_BitVec_reduceAppend___closed__2; +static lean_object* l___regBuiltin_BitVec_reduceSignExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3790____closed__7; +static lean_object* l___regBuiltin_BitVec_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1542____closed__8; +LEAN_EXPORT lean_object* l_BitVec_reduceLE(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_BitVec_reduceBin___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___regBuiltin_BitVec_reduceUShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1814_(lean_object*); +static lean_object* l_BitVec_reduceLT___closed__3; +static lean_object* l___regBuiltin_BitVec_reduceULT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3024____closed__7; +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3769_(lean_object*); +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceHShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1918_(lean_object*); +static lean_object* l_BitVec_reduceBin___lambda__2___closed__10; +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceSignExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3792_(lean_object*); +static lean_object* l___regBuiltin_BitVec_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1374____closed__3; +static lean_object* l___regBuiltin_BitVec_reduceGetLsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1745____closed__4; +static lean_object* l_BitVec_reduceRotateRight___closed__2; +static lean_object* l_BitVec_reduceUMod___closed__2; +LEAN_EXPORT lean_object* l_BitVec_reduceBinPred___lambda__1(lean_object*, 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___regBuiltin_BitVec_reduceSignExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3790____closed__8; +static lean_object* l_BitVec_reduceGetBit___lambda__1___closed__1; +static lean_object* l_BitVec_reduceBin___lambda__2___closed__2; +LEAN_EXPORT lean_object* l_BitVec_fromExpr_x3f(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceAllOnes_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3903_(lean_object*); +static lean_object* l_BitVec_reduceReplicate___closed__1; +static lean_object* l___regBuiltin_BitVec_reduceGetLsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1745____closed__6; +static lean_object* l___regBuiltin_BitVec_reduceSMTSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1724____closed__8; +static lean_object* l_BitVec_reduceCast___closed__1; +static lean_object* l___regBuiltin_BitVec_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1374____closed__6; +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1792_(lean_object*); +static lean_object* l___regBuiltin_BitVec_reduceSShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1832____closed__4; +LEAN_EXPORT lean_object* l_BitVec_reduceExtracLsb_x27___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_BitVec_reduceSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1698____closed__6; +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceAllOnes_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3901_(lean_object*); +static lean_object* l_BitVec_reduceOfInt___closed__1; +LEAN_EXPORT lean_object* l_BitVec_fromExpr_x3f___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_BitVec_reduceNot___closed__1; +static lean_object* l___regBuiltin_BitVec_reduceSMTUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1620____closed__1; +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1150_(lean_object*); +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1292_(lean_object*); +LEAN_EXPORT lean_object* l_BitVec_reduceGT___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_BitVec_reduceGE___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_BitVec_reduceXOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1332____closed__9; +LEAN_EXPORT lean_object* l_BitVec_reduceZeroExtend(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_BitVec_reduceOfInt___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_BitVec_reduceOfNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2829____closed__3; +static lean_object* l___regBuiltin_BitVec_reduceUShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1810____closed__3; lean_object* l_Lean_Meta_Simp_evalPropStep(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___regBuiltin_Std_BitVec_reduceUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1817____closed__6; -static lean_object* l___regBuiltin_Std_BitVec_reduceULE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3304____closed__8; -static lean_object* l_Std_BitVec_reduceToNat___closed__2; -static lean_object* l___regBuiltin_Std_BitVec_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1639____closed__12; -LEAN_EXPORT lean_object* l_Std_BitVec_reduceAbs(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___regBuiltin_Std_BitVec_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1681____closed__12; -static lean_object* l___regBuiltin_Std_BitVec_reduceExtracLsb_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3879____closed__7; -static lean_object* l_Std_BitVec_reduceHShiftLeft___closed__1; -lean_object* l_Std_BitVec_toHex(lean_object*, lean_object*); -static lean_object* l___regBuiltin_Std_BitVec_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2613____closed__1; -static lean_object* l___regBuiltin_Std_BitVec_reduceExtracLsb_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3879____closed__8; -static lean_object* l___regBuiltin_Std_BitVec_reduceSMTSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1947____closed__4; -lean_object* l_Std_BitVec_extractLsb_x27___rarg(lean_object*, lean_object*, lean_object*); -static lean_object* l___regBuiltin_Std_BitVec_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1765____closed__9; -static lean_object* l___regBuiltin_Std_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1471____closed__4; +static lean_object* l___regBuiltin_BitVec_reduceUMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1568____closed__1; +static lean_object* l___regBuiltin_BitVec_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1374____closed__9; +LEAN_EXPORT lean_object* l_BitVec_reduceZeroExtend___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_BitVec_reduceBin___lambda__2___closed__14; +static lean_object* l___regBuiltin_BitVec_reduceHShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1874____closed__5; +lean_object* l_BitVec_extractLsb_x27___rarg(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_BitVec_reduceSShiftRight___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_BitVec_reduceSShiftRight(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_BitVec_reduceDiv___lambda__2(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_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1150____closed__1; +static lean_object* l_BitVec_reduceDiv___closed__3; lean_object* l_Lean_stringToMessageData(lean_object*); -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceULT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3281_(lean_object*); -static lean_object* l_Std_BitVec_reduceGE___closed__1; -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceCast_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2507_(lean_object*); -LEAN_EXPORT lean_object* l_Std_BitVec_reduceShiftLeft(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___regBuiltin_Std_BitVec_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3129____closed__4; -static lean_object* l___regBuiltin_Std_BitVec_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1681____closed__14; -static lean_object* l___regBuiltin_Std_BitVec_reduceSLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3327____closed__8; -static lean_object* l_Std_BitVec_reduceOfInt___closed__1; -static lean_object* l___regBuiltin_Std_BitVec_reduceReplicate_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4037____closed__4; -lean_object* l_Std_BitVec_allOnes(lean_object*); -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceSMTSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1949_(lean_object*); -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceGetMsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1991_(lean_object*); -static lean_object* l___regBuiltin_Std_BitVec_reduceReplicate_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4037____closed__5; -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceRotateRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2187_(lean_object*); -static lean_object* l___regBuiltin_Std_BitVec_reduceUMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1791____closed__5; -static lean_object* l___regBuiltin_Std_BitVec_reduceRotateLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2161____closed__8; -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3215_(lean_object*); -static lean_object* l___regBuiltin_Std_BitVec_reduceULT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3281____closed__8; -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1371_(lean_object*); -static lean_object* l___regBuiltin_Std_BitVec_reduceULE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3304____closed__5; -lean_object* l_Std_BitVec_append___rarg(lean_object*, lean_object*, lean_object*); +static lean_object* l___regBuiltin_BitVec_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1542____closed__12; +static lean_object* l___regBuiltin_BitVec_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1416____closed__6; +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1504_(lean_object*); +static lean_object* l___regBuiltin_BitVec_reduceSignExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3790____closed__3; +static lean_object* l_BitVec_reduceUMod___closed__1; +LEAN_EXPORT lean_object* l_BitVec_reduceSMTUDiv___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*); +static lean_object* l___regBuiltin_BitVec_reduceRotateLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1938____closed__6; +LEAN_EXPORT lean_object* l_BitVec_reduceAnd(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_BitVec_reduceAdd___lambda__2(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_BitVec_reduceSMTUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1620____closed__5; +LEAN_EXPORT lean_object* l_BitVec_reduceCast___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_BitVec_reduceHShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1874____closed__6; +LEAN_EXPORT lean_object* l_BitVec_reduceSMod___lambda__2(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_BitVec_reduceGetLsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1745____closed__3; +static lean_object* l___regBuiltin_BitVec_reduceUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1594____closed__6; +LEAN_EXPORT lean_object* l_BitVec_reduceOfNat(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1210_(lean_object*); +static lean_object* l___regBuiltin_BitVec_reduceGetMsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1766____closed__3; +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1544_(lean_object*); +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceULE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3051_(lean_object*); +static lean_object* l___regBuiltin_BitVec_reduceGetLsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1745____closed__1; +static lean_object* l___regBuiltin_BitVec_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1500____closed__2; +static lean_object* l_BitVec_reduceGetBit___lambda__1___closed__2; +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceShiftLeftZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3414_(lean_object*); +static lean_object* l___regBuiltin_BitVec_reduceSShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1832____closed__3; +static lean_object* l___regBuiltin_BitVec_reduceXOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1332____closed__6; +lean_object* l_BitVec_shiftLeft(lean_object*, lean_object*, lean_object*); +static lean_object* l___regBuiltin_BitVec_reduceSignExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3790____closed__5; +uint8_t lean_int_dec_le(lean_object*, lean_object*); +static lean_object* l_BitVec_reduceAnd___closed__3; lean_object* lean_nat_shiftr(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Std_BitVec_reduceNot___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_BitVec_reduceSMTUDiv___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*); -static lean_object* l_Std_BitVec_reduceZeroExtend_x27___closed__2; -static lean_object* l___regBuiltin_Std_BitVec_reduceULE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3304____closed__4; -static lean_object* l___regBuiltin_Std_BitVec_reduceOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1513____closed__1; -static lean_object* l___regBuiltin_Std_BitVec_reduceSLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3327____closed__1; -static lean_object* l_Std_BitVec_reduceDiv___closed__2; -uint8_t l_Std_BitVec_sle(lean_object*, lean_object*, lean_object*); -static lean_object* l___regBuiltin_Std_BitVec_reduceRotateLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2161____closed__6; -static lean_object* l___regBuiltin_Std_BitVec_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1765____closed__5; -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceZeroExtend_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3533_(lean_object*); +LEAN_EXPORT lean_object* l_BitVec_reduceXOr___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___regBuiltin_BitVec_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2874_(lean_object*); +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1698_(lean_object*); +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceSMTSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1728_(lean_object*); +static lean_object* l___regBuiltin_BitVec_reduceCast_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2266____closed__6; +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceCast_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2266_(lean_object*); +static lean_object* l___regBuiltin_BitVec_reduceOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1290____closed__14; +static lean_object* l_BitVec_reduceSLE___closed__1; +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceSLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3095_(lean_object*); +static lean_object* l___regBuiltin_BitVec_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2872____closed__7; +lean_object* l_Lean_Level_ofNat(lean_object*); lean_object* l_Lean_Expr_appArg_x21(lean_object*); -static lean_object* l___regBuiltin_Std_BitVec_reduceHShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2097____closed__10; -LEAN_EXPORT lean_object* l_Std_BitVec_reduceNeg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___regBuiltin_Std_BitVec_reduceGetMsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1989____closed__8; -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceUMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1795_(lean_object*); -static lean_object* l___regBuiltin_Std_BitVec_reduceRotateRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2183____closed__1; -LEAN_EXPORT lean_object* l_Std_BitVec_reduceToInt___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_Std_BitVec_reduceHShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2143_(lean_object*); -LEAN_EXPORT lean_object* l_Std_BitVec_reduceReplicate(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceReplicate_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4037_(lean_object*); -static lean_object* l___regBuiltin_Std_BitVec_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1765____closed__13; -static lean_object* l___regBuiltin_Std_BitVec_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3172____closed__9; -static lean_object* l___regBuiltin_Std_BitVec_reduceRotateLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2161____closed__5; -LEAN_EXPORT lean_object* l_Std_BitVec_reduceULE(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Std_BitVec_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_object*, lean_object*); -static lean_object* l___regBuiltin_Std_BitVec_reduceZeroExtend_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3529____closed__6; -static lean_object* l_Std_BitVec_reduceHShiftLeft___closed__2; -static lean_object* l___regBuiltin_Std_BitVec_reduceSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1921____closed__6; -static lean_object* l_Std_BitVec_reduceGT___closed__3; -LEAN_EXPORT lean_object* l_Std_BitVec_reduceExtend(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_Std_BitVec_reduceCast_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2505____closed__9; -lean_object* l_Int_toExpr(lean_object*); -static lean_object* l___regBuiltin_Std_BitVec_reduceExtracLsb_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3879____closed__9; -static lean_object* l___regBuiltin_Std_BitVec_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1639____closed__11; -static lean_object* l___regBuiltin_Std_BitVec_reduceToInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2721____closed__7; -static lean_object* l_Std_BitVec_reduceGT___closed__2; -static lean_object* l___regBuiltin_Std_BitVec_reduceULE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3304____closed__6; -LEAN_EXPORT lean_object* l_Std_BitVec_reduceRotateRight(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Std_BitVec_reduceUnary___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_Std_BitVec_reduceSRem___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*); -static lean_object* l_Std_BitVec_reduceHShiftRight___closed__2; -static lean_object* l_Std_BitVec_reduceBin___lambda__2___closed__11; -static lean_object* l_Std_BitVec_reduceGetBit___lambda__1___closed__2; -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceSRem_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1899_(lean_object*); -static lean_object* l___regBuiltin_Std_BitVec_reduceSRem_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1895____closed__7; -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceSignExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4083_(lean_object*); -lean_object* l_Lean_Name_mkStr3(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceAllOnes_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4200_(lean_object*); -static lean_object* l___regBuiltin_Std_BitVec_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1765____closed__3; -static lean_object* l___regBuiltin_Std_BitVec_reduceHShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2139____closed__9; -static lean_object* l_Std_BitVec_reduceULT___closed__1; -static lean_object* l___regBuiltin_Std_BitVec_reduceSignExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4079____closed__5; -static lean_object* l___regBuiltin_Std_BitVec_reduceUMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1791____closed__2; -LEAN_EXPORT lean_object* l_Std_BitVec_reduceSLT(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Std_BitVec_reduceRotateLeft___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_Std_BitVec_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3217_(lean_object*); -static lean_object* l___regBuiltin_Std_BitVec_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1597____closed__2; -uint8_t l_Std_BitVec_slt(lean_object*, lean_object*, lean_object*); -static lean_object* l___regBuiltin_Std_BitVec_reduceZeroExtend_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3529____closed__2; -static lean_object* l___regBuiltin_Std_BitVec_reduceSLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3327____closed__5; -static lean_object* l___regBuiltin_Std_BitVec_reduceHShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2139____closed__2; -static lean_object* l___regBuiltin_Std_BitVec_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3172____closed__4; -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1685_(lean_object*); -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceShiftLeftZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3687_(lean_object*); -LEAN_EXPORT lean_object* l_Std_BitVec_reduceGT(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Std_BitVec_reduceAdd___closed__3; -static lean_object* l___regBuiltin_Std_BitVec_reduceSignExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4079____closed__6; -static lean_object* l___regBuiltin_Std_BitVec_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1723____closed__7; -LEAN_EXPORT lean_object* l_Std_BitVec_reduceMul___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* l_Std_BitVec_sshiftRight(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceSMTSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1951_(lean_object*); -static lean_object* l___regBuiltin_Std_BitVec_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3172____closed__10; -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1723_(lean_object*); -static lean_object* l_Std_BitVec_reduceMod___closed__2; -static lean_object* l___regBuiltin_Std_BitVec_reduceGetLsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1968____closed__2; -static lean_object* l___regBuiltin_Std_BitVec_reduceUShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2033____closed__6; +static lean_object* l_BitVec_reduceAbs___closed__1; +static lean_object* l_BitVec_reduceBin___lambda__2___closed__11; +static lean_object* l___regBuiltin_BitVec_reduceZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3769____closed__1; +static lean_object* l___regBuiltin_BitVec_reduceAllOnes_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3901____closed__1; +static lean_object* l___regBuiltin_BitVec_reduceSLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3093____closed__1; +lean_object* l_BitVec_smtUDiv(lean_object*, lean_object*, lean_object*); +static lean_object* l_BitVec_reduceMul___closed__1; +static lean_object* l___regBuiltin_BitVec_reduceGetLsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1745____closed__8; +static lean_object* l___regBuiltin_BitVec_reduceOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1290____closed__5; +static lean_object* l_BitVec_reduceGetBit___lambda__1___closed__7; +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceGetMsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1766_(lean_object*); +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3005_(lean_object*); +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceExtracLsb_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3604_(lean_object*); +static lean_object* l_BitVec_reduceSignExtend___closed__2; +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1416_(lean_object*); +static lean_object* l___regBuiltin_BitVec_reduceHShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1874____closed__12; +static lean_object* l___regBuiltin_BitVec_reduceSRem_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1672____closed__2; +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceHShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1874_(lean_object*); +LEAN_EXPORT lean_object* l_BitVec_reduceAbs(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_BitVec_allOnes(lean_object*); +static lean_object* l_BitVec_reduceShiftLeftZeroExtend___closed__2; +static lean_object* l___regBuiltin_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1248____closed__6; +static lean_object* l___regBuiltin_BitVec_reduceSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1698____closed__2; +static lean_object* l___regBuiltin_BitVec_reduceXOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1332____closed__8; +static lean_object* l___regBuiltin_BitVec_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1542____closed__11; +static lean_object* l___regBuiltin_BitVec_reduceAllOnes_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3901____closed__7; +LEAN_EXPORT lean_object* l_BitVec_reduceNot___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___regBuiltin_BitVec_reduceExtracLsb_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3600____closed__2; +static lean_object* l___regBuiltin_BitVec_reduceSMTSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1724____closed__1; +static lean_object* l___regBuiltin_BitVec_reduceUShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1810____closed__7; +static lean_object* l___regBuiltin_BitVec_reduceUMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1568____closed__3; +static lean_object* l___regBuiltin_BitVec_reduceSLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3093____closed__4; +static lean_object* l___regBuiltin_BitVec_reduceUMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1568____closed__7; +LEAN_EXPORT lean_object* l_BitVec_reduceGetBit(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_BitVec_reduceSMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1646____closed__2; +static lean_object* l___regBuiltin_BitVec_reduceRotateLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1938____closed__4; +static lean_object* l_BitVec_reduceGetBit___lambda__1___closed__3; +LEAN_EXPORT lean_object* l_BitVec_reduceOfInt(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___regBuiltin_BitVec_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1374____closed__5; +static lean_object* l___regBuiltin_BitVec_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1416____closed__14; +static lean_object* l___regBuiltin_BitVec_reduceSMTUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1620____closed__4; +static lean_object* l_BitVec_reduceDiv___closed__2; +LEAN_EXPORT lean_object* l_BitVec_reduceSRem___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*); +static lean_object* l___regBuiltin_BitVec_reduceOfNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2829____closed__2; +static lean_object* l___regBuiltin_BitVec_reduceGetMsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1766____closed__6; +static lean_object* l___regBuiltin_BitVec_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1500____closed__4; +static lean_object* l___regBuiltin_BitVec_reduceXOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1332____closed__4; +static lean_object* l___regBuiltin_BitVec_reduceUMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1568____closed__5; +static lean_object* l___regBuiltin_BitVec_reduceShiftLeftZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3414____closed__2; +static lean_object* l___regBuiltin_BitVec_reduceCast_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2266____closed__4; +static lean_object* l_BitVec_reduceHShiftRight___closed__2; +static lean_object* l___regBuiltin_BitVec_reduceZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3769____closed__7; +static lean_object* l___regBuiltin_BitVec_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2117____closed__9; +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceGetMsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1770_(lean_object*); +LEAN_EXPORT lean_object* l_BitVec_reduceRotateLeft___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_BitVec_reduceReplicate___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___regBuiltin_BitVec_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1378_(lean_object*); +static lean_object* l_BitVec_reduceOr___closed__1; +static lean_object* l___regBuiltin_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1148____closed__8; +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3771_(lean_object*); +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2958_(lean_object*); +static lean_object* l___regBuiltin_BitVec_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1500____closed__13; +static lean_object* l___regBuiltin_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1148____closed__7; +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceAllOnes_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3905_(lean_object*); +static lean_object* l_BitVec_reduceULT___closed__1; +LEAN_EXPORT lean_object* l_BitVec_reduceSDiv___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_BitVec_reduceAnd___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*); +static lean_object* l___regBuiltin_BitVec_reduceShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1788____closed__7; +static lean_object* l___regBuiltin_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1248____closed__13; +static lean_object* l___regBuiltin_BitVec_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2374____closed__2; +static lean_object* l___regBuiltin_BitVec_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2117____closed__2; +static lean_object* l___regBuiltin_BitVec_reduceXOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1332____closed__10; +static lean_object* l_BitVec_reduceExtracLsb_x27___closed__2; +static lean_object* l___regBuiltin_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1148____closed__4; +LEAN_EXPORT lean_object* l_BitVec_reduceMod___lambda__2(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_Meta_Simp_builtinSimprocsRef; -static lean_object* l___regBuiltin_Std_BitVec_reduceSMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1869____closed__6; -static lean_object* l___regBuiltin_Std_BitVec_reduceSRem_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1895____closed__6; -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1597_(lean_object*); -static lean_object* l_Std_BitVec_reduceGetBit___lambda__1___closed__7; -static lean_object* l_Std_BitVec_reduceXOr___closed__3; -LEAN_EXPORT lean_object* l_Std_BitVec_reduceAllOnes___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* l_Std_BitVec_not(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Std_BitVec_reduceUnary(lean_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_Std_BitVec_reduceSLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3327_(lean_object*); -LEAN_EXPORT lean_object* l_Std_BitVec_reduceULT___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_Std_BitVec_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1681____closed__4; -static lean_object* l___regBuiltin_Std_BitVec_reduceCast_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2505____closed__8; -static lean_object* l___regBuiltin_Std_BitVec_reduceNot_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1408____closed__3; -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1473_(lean_object*); +lean_object* l_BitVec_neg(lean_object*, lean_object*); +static lean_object* l___regBuiltin_BitVec_reduceUMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1568____closed__2; +static lean_object* l___regBuiltin_BitVec_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1500____closed__14; +static lean_object* l___regBuiltin_BitVec_reduceZeroExtend_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3266____closed__9; +LEAN_EXPORT lean_object* l_BitVec_reduceSDiv(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___regBuiltin_BitVec_reduceOfInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2631____closed__6; +static lean_object* l___regBuiltin_BitVec_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2117____closed__3; +lean_object* l_Lean_Meta_getIntValue_x3f(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___regBuiltin_BitVec_reduceSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1698____closed__3; uint8_t lean_nat_dec_eq(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Std_BitVec_reduceAdd(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1431_(lean_object*); -LEAN_EXPORT lean_object* l_Std_BitVec_reduceAnd(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Std_BitVec_reduceAnd___closed__1; -static lean_object* l___regBuiltin_Std_BitVec_reduceExtracLsb_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3879____closed__5; -static lean_object* l_Std_BitVec_reduceExtracLsb_x27___closed__2; -static lean_object* l_Std_BitVec_reduceMul___closed__3; -static lean_object* l_Std_BitVec_reduceUDiv___closed__2; -static lean_object* l___regBuiltin_Std_BitVec_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1429____closed__1; -static lean_object* l___regBuiltin_Std_BitVec_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1597____closed__5; -static lean_object* l___regBuiltin_Std_BitVec_reduceUShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2033____closed__4; -static lean_object* l___regBuiltin_Std_BitVec_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2350____closed__3; -static lean_object* l_Std_BitVec_reduceSDiv___closed__1; -static lean_object* l___regBuiltin_Std_BitVec_reduceSMTUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1843____closed__6; -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2354_(lean_object*); -static lean_object* l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f___closed__3; -static lean_object* l___regBuiltin_Std_BitVec_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1597____closed__10; -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceExtracLsb_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3881_(lean_object*); -static lean_object* l_Std_BitVec_reduceLT___closed__1; -static lean_object* l___regBuiltin_Std_BitVec_reduceHShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2097____closed__7; -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2613_(lean_object*); -static lean_object* l___regBuiltin_Std_BitVec_reduceHShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2139____closed__11; -static lean_object* l___regBuiltin_Std_BitVec_reduceOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1513____closed__7; -static lean_object* l___regBuiltin_Std_BitVec_reduceSMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1869____closed__7; -static lean_object* l_Std_BitVec_reduceRotateRight___closed__1; -LEAN_EXPORT lean_object* l_Std_BitVec_reduceOr___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*); -static lean_object* l___regBuiltin_Std_BitVec_reduceCast_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2505____closed__4; +static lean_object* l___regBuiltin_BitVec_reduceHShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1874____closed__7; +static lean_object* l___regBuiltin_BitVec_reduceXOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1332____closed__7; +static lean_object* l_BitVec_reduceHShiftRight___closed__3; +static lean_object* l___regBuiltin_BitVec_reduceSLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3070____closed__4; +static lean_object* l___regBuiltin_BitVec_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2915____closed__3; +LEAN_EXPORT lean_object* l_BitVec_reduceUShiftRight___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_BitVec_reduceBin___lambda__2___closed__9; +LEAN_EXPORT lean_object* l_BitVec_reduceBin(lean_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_BitVec_reduceSShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1832_(lean_object*); +static lean_object* l___regBuiltin_BitVec_reduceOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1290____closed__2; +static lean_object* l___regBuiltin_BitVec_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2872____closed__5; +static lean_object* l_BitVec_reduceBin___lambda__2___closed__15; +static lean_object* l___regBuiltin_BitVec_reduceReplicate_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3748____closed__1; +LEAN_EXPORT lean_object* l_BitVec_reduceSMTUDiv___lambda__2(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_BitVec_reduceXOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1332____closed__13; +static lean_object* l___regBuiltin_BitVec_reduceXOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1332____closed__11; +static lean_object* l___regBuiltin_BitVec_reduceOfNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2829____closed__1; +static lean_object* l___regBuiltin_BitVec_reduceShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1788____closed__1; +static lean_object* l___regBuiltin_BitVec_reduceHShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1874____closed__11; +lean_object* l_BitVec_ofInt(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1208_(lean_object*); +LEAN_EXPORT lean_object* l_BitVec_reduceDiv___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___regBuiltin_BitVec_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1502_(lean_object*); +LEAN_EXPORT lean_object* l_BitVec_reduceAnd___lambda__2(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_BitVec_reduceSMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1646____closed__5; +lean_object* l_BitVec_not(lean_object*, lean_object*); +lean_object* lean_nat_to_int(lean_object*); +static lean_object* l_BitVec_reduceToInt___lambda__1___closed__9; +static lean_object* l___regBuiltin_BitVec_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2915____closed__6; +LEAN_EXPORT lean_object* l_BitVec_reduceULT(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*); -LEAN_EXPORT lean_object* l_Std_BitVec_reduceULE___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_Std_BitVec_reduceOfNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3086_(lean_object*); -static lean_object* l___regBuiltin_Std_BitVec_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1723____closed__13; -static lean_object* l_Std_BitVec_reduceGetMsb___closed__1; -LEAN_EXPORT lean_object* l_Std_BitVec_reduceToNat___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___regBuiltin_Std_BitVec_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1429____closed__2; -static lean_object* l_Std_BitVec_reduceGetBit___lambda__1___closed__4; -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceOfInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2882_(lean_object*); -static lean_object* l___regBuiltin_Std_BitVec_reduceHShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2139____closed__5; -static lean_object* l___regBuiltin_Std_BitVec_reduceUMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1791____closed__7; -static lean_object* l___regBuiltin_Std_BitVec_reduceToInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2721____closed__5; -static lean_object* l___regBuiltin_Std_BitVec_reduceXOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1555____closed__8; -static lean_object* l___regBuiltin_Std_BitVec_reduceSLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3327____closed__7; -static lean_object* l___regBuiltin_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1371____closed__10; -LEAN_EXPORT lean_object* l_Std_BitVec_reduceBinPred___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___regBuiltin_Std_BitVec_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2350____closed__9; -LEAN_EXPORT lean_object* l_Std_BitVec_reduceToNat(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___regBuiltin_Std_BitVec_reduceZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4058____closed__1; -lean_object* l_Lean_Meta_SavedState_restore(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Std_BitVec_reduceHShiftRight___closed__1; -static lean_object* l___regBuiltin_Std_BitVec_reduceGetLsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1968____closed__1; -static lean_object* l___regBuiltin_Std_BitVec_reduceRotateLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2161____closed__3; -static lean_object* l___regBuiltin_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1375____closed__1; -static lean_object* l___regBuiltin_Std_BitVec_reduceXOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1555____closed__10; -static lean_object* l_Std_BitVec_reduceGetBit___lambda__1___closed__11; -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceULE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3304_(lean_object*); -LEAN_EXPORT lean_object* l_Std_BitVec_reduceRotateRight___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_Std_BitVec_reduceToInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2721____closed__1; -static lean_object* l___regBuiltin_Std_BitVec_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1765____closed__11; -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2015_(lean_object*); -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1601_(lean_object*); -static lean_object* l___regBuiltin_Std_BitVec_reduceSLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3327____closed__4; -static lean_object* l_Std_BitVec_reduceBin___lambda__2___closed__3; -LEAN_EXPORT lean_object* l_Std_BitVec_reduceSMod___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___regBuiltin_Std_BitVec_reduceZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4060_(lean_object*); -static lean_object* l___regBuiltin_Std_BitVec_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1723____closed__14; -LEAN_EXPORT lean_object* l_Std_BitVec_reduceUDiv(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Std_BitVec_reduceMul(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Std_BitVec_reduceShiftLeftZeroExtend___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_Std_BitVec_sdiv(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Std_BitVec_reduceRotateLeft___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_Std_BitVec_reduceGetBit___lambda__1___closed__1; -static lean_object* l___regBuiltin_Std_BitVec_reduceSMTSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1947____closed__5; -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3131_(lean_object*); -LEAN_EXPORT lean_object* l_Std_BitVec_reduceExtend___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_Std_BitVec_reduceLT___closed__3; -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceExtracLsb_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3883_(lean_object*); -static lean_object* l___regBuiltin_Std_BitVec_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3172____closed__8; -static lean_object* l___regBuiltin_Std_BitVec_reduceSMTSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1947____closed__1; -static lean_object* l___regBuiltin_Std_BitVec_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3129____closed__6; -static lean_object* l___regBuiltin_Std_BitVec_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3172____closed__3; -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3260_(lean_object*); -static lean_object* l___regBuiltin_Std_BitVec_reduceReplicate_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4037____closed__2; -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceReplicate_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4041_(lean_object*); -lean_object* l_Std_BitVec_toInt(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceUMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1793_(lean_object*); -static lean_object* l___regBuiltin_Std_BitVec_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2350____closed__11; -LEAN_EXPORT lean_object* l_Std_BitVec_reduceULE___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_Std_BitVec_reduceDiv(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___regBuiltin_Std_BitVec_reduceGetLsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1968____closed__7; -static lean_object* l___regBuiltin_Std_BitVec_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1723____closed__9; -static lean_object* l_Std_BitVec_reduceSLE___closed__1; -static lean_object* l___regBuiltin_Std_BitVec_reduceHShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2139____closed__3; -static lean_object* l___regBuiltin_Std_BitVec_reduceHShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2097____closed__11; -LEAN_EXPORT lean_object* l_Std_BitVec_reduceSLE(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___regBuiltin_Std_BitVec_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3215____closed__1; -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceToInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2721_(lean_object*); -static lean_object* l___regBuiltin_Std_BitVec_reduceShiftLeftZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3687____closed__8; -static lean_object* l_Std_BitVec_reduceSub___closed__3; -LEAN_EXPORT lean_object* l_Std_BitVec_reduceUMod(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___regBuiltin_Std_BitVec_reduceOfInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2878____closed__4; -static lean_object* l___regBuiltin_Std_BitVec_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1639____closed__6; -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceSignExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4079_(lean_object*); -static lean_object* l_Std_BitVec_reduceOfInt___closed__2; -static lean_object* l___regBuiltin_Std_BitVec_reduceSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1921____closed__3; -static lean_object* l___regBuiltin_Std_BitVec_reduceXOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1555____closed__13; -static lean_object* l_Std_BitVec_reduceHShiftLeft___closed__3; -static lean_object* l___regBuiltin_Std_BitVec_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1597____closed__6; -static lean_object* l___regBuiltin_Std_BitVec_reduceSMTUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1843____closed__3; -static lean_object* l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromBitVecExpr_x3f___closed__1; -static lean_object* l___regBuiltin_Std_BitVec_reduceOfNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3086____closed__1; -static lean_object* l___regBuiltin_Std_BitVec_reduceAllOnes_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4198____closed__3; -static lean_object* l___regBuiltin_Std_BitVec_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3129____closed__3; -static lean_object* l___regBuiltin_Std_BitVec_reduceXOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1555____closed__4; -static lean_object* l_Std_BitVec_reduceSMod___closed__2; -static lean_object* l___regBuiltin_Std_BitVec_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3172____closed__7; -static lean_object* l___regBuiltin_Std_BitVec_reduceGetLsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1968____closed__6; -static lean_object* l___regBuiltin_Std_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1471____closed__13; -LEAN_EXPORT lean_object* l_Std_BitVec_reduceLE___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_Std_BitVec_reduceToInt(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceSRem_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1897_(lean_object*); -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1725_(lean_object*); -static lean_object* l___regBuiltin_Std_BitVec_reduceAllOnes_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4198____closed__7; -static lean_object* l_Std_BitVec_reduceSMTSDiv___closed__2; -static lean_object* l___regBuiltin_Std_BitVec_reduceUShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2033____closed__1; -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1513_(lean_object*); -static lean_object* l___regBuiltin_Std_BitVec_reduceSShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2055____closed__4; -static lean_object* l___regBuiltin_Std_BitVec_reduceGetLsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1968____closed__8; -LEAN_EXPORT lean_object* l_Std_BitVec_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_object*, lean_object*); -static lean_object* l_Std_BitVec_reduceGetLsb___closed__2; -LEAN_EXPORT lean_object* l_Std_BitVec_reduceNeg___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_Std_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1471____closed__10; +static lean_object* l_BitVec_reduceXOr___closed__2; +static lean_object* l___regBuiltin_BitVec_reduceXOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1332____closed__2; +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceSignExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3790_(lean_object*); +static lean_object* l___regBuiltin_BitVec_reduceHShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1916____closed__1; +static lean_object* l_BitVec_reduceSMTSDiv___closed__1; +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceHShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1920_(lean_object*); +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceSLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3074_(lean_object*); +static lean_object* l___regBuiltin_BitVec_reduceReplicate_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3748____closed__5; +static lean_object* l___regBuiltin_BitVec_reduceSMTUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1620____closed__3; +static lean_object* l_BitVec_reduceDiv___closed__1; +static lean_object* l___regBuiltin_BitVec_reduceOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1290____closed__1; +static lean_object* l_BitVec_reduceZeroExtend_x27___closed__2; +LEAN_EXPORT lean_object* l_BitVec_reduceAllOnes___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_BitVec_reduceOfNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2829____closed__7; +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2915_(lean_object*); +static lean_object* l___regBuiltin_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1248____closed__5; +static lean_object* l___regBuiltin_BitVec_reduceHShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1874____closed__13; +static lean_object* l___regBuiltin_BitVec_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2872____closed__11; +LEAN_EXPORT lean_object* l_BitVec_reduceBinPred(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*); +static lean_object* l___regBuiltin_BitVec_reduceToInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2482____closed__3; +static lean_object* l_BitVec_reduceZeroExtend___closed__2; +static lean_object* l_BitVec_reduceXOr___closed__3; +static lean_object* l_BitVec_reduceGetMsb___closed__2; +static lean_object* l___regBuiltin_BitVec_reduceExtracLsb_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3600____closed__8; +static lean_object* l___regBuiltin_BitVec_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2872____closed__1; +static lean_object* l_BitVec_reduceShiftLeft___closed__1; +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceSLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3072_(lean_object*); +LEAN_EXPORT lean_object* l_BitVec_reduceSignExtend___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_BitVec_smtSDiv(lean_object*, lean_object*, lean_object*); +static lean_object* l___regBuiltin_BitVec_reduceULE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3047____closed__1; +static lean_object* l_BitVec_reduceRotateLeft___closed__1; +LEAN_EXPORT lean_object* l_BitVec_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_object*, lean_object*); +static lean_object* l_BitVec_reduceULE___closed__1; +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1546_(lean_object*); +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceNot_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1187_(lean_object*); +static lean_object* l___regBuiltin_BitVec_reduceHShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1916____closed__11; +static lean_object* l___regBuiltin_BitVec_reduceSShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1832____closed__8; +LEAN_EXPORT lean_object* l_BitVec_reduceMod___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_BitVec_reduceShiftLeft(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___regBuiltin_BitVec_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1458____closed__12; +LEAN_EXPORT lean_object* l_BitVec_reduceToInt___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___regBuiltin_BitVec_reduceSMTUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1620____closed__7; +LEAN_EXPORT lean_object* l_BitVec_reduceSMTUDiv___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*); +static lean_object* l___regBuiltin_BitVec_reduceGetLsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1745____closed__2; +static lean_object* l_BitVec_reduceGT___closed__3; +static lean_object* l___regBuiltin_BitVec_reduceSLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3093____closed__8; +lean_object* l_Lean_Meta_getBitVecValue_x3f(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_BitVec_ofNat(lean_object*, lean_object*); +static lean_object* l___regBuiltin_BitVec_reduceRotateRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1960____closed__2; +static lean_object* l_BitVec_reduceUnary___lambda__1___closed__3; +static lean_object* l___regBuiltin_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1248____closed__7; +static lean_object* l___regBuiltin_BitVec_reduceSignExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3790____closed__1; +static lean_object* l___regBuiltin_BitVec_reduceOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1290____closed__12; +static lean_object* l___regBuiltin_BitVec_reduceCast_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2266____closed__3; +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceSMTSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1724_(lean_object*); +static lean_object* l___regBuiltin_BitVec_reduceSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1698____closed__4; +static lean_object* l___regBuiltin_BitVec_reduceSRem_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1672____closed__8; +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3773_(lean_object*); +static lean_object* l_BitVec_reduceMul___closed__2; +static lean_object* l_BitVec_reduceBin___lambda__2___closed__3; +static lean_object* l_BitVec_reduceLT___closed__2; +static lean_object* l_BitVec_reduceToInt___closed__1; +static lean_object* l___regBuiltin_BitVec_reduceAllOnes_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3901____closed__2; +LEAN_EXPORT lean_object* l_BitVec_reduceSMTSDiv___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*); +static lean_object* l___regBuiltin_BitVec_reduceSMTSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1724____closed__2; +static lean_object* l___regBuiltin_BitVec_reduceSLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3093____closed__3; +LEAN_EXPORT lean_object* l_BitVec_reduceAppend___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_BitVec_reduceSMod___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*); +static lean_object* l_BitVec_reduceSDiv___closed__1; +static lean_object* l___regBuiltin_BitVec_reduceExtracLsb_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3600____closed__5; +LEAN_EXPORT lean_object* l_BitVec_reduceToNat___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___regBuiltin_BitVec_reduceSignExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3790____closed__4; +static lean_object* l___regBuiltin_BitVec_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2374____closed__5; +static lean_object* l___regBuiltin_BitVec_reduceSShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1832____closed__5; +static lean_object* l___regBuiltin_BitVec_reduceNot_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1185____closed__7; +LEAN_EXPORT lean_object* l_BitVec_reduceAdd___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_BitVec_reduceNeg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___regBuiltin_BitVec_reduceRotateRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1960____closed__8; +static lean_object* l___regBuiltin_BitVec_reduceToInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2482____closed__2; +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceSMTSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1726_(lean_object*); +static lean_object* l_BitVec_reduceBin___lambda__2___closed__13; +LEAN_EXPORT lean_object* l_BitVec_reduceGT___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___regBuiltin_BitVec_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1418_(lean_object*); +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceShiftLeftZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3416_(lean_object*); +static lean_object* l_BitVec_reduceSignExtend___closed__1; +LEAN_EXPORT lean_object* l_BitVec_reduceAbs___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_BitVec_reduceGE___closed__2; +static lean_object* l___regBuiltin_BitVec_reduceNot_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1185____closed__3; +static lean_object* l___regBuiltin_BitVec_reduceSLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3070____closed__3; +LEAN_EXPORT lean_object* l_BitVec_reduceUShiftRight(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___regBuiltin_BitVec_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1206____closed__4; +static lean_object* l___regBuiltin_BitVec_reduceUMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1568____closed__6; +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1252_(lean_object*); +lean_object* l_BitVec_srem(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_BitVec_reduceULT___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_BitVec_reduceXOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1332_(lean_object*); +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceOfNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2833_(lean_object*); +static lean_object* l___regBuiltin_BitVec_reduceCast_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2266____closed__2; +static lean_object* l___regBuiltin_BitVec_reduceGetMsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1766____closed__2; +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceHShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1916_(lean_object*); +static lean_object* l___regBuiltin_BitVec_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2958____closed__3; +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1790_(lean_object*); +static lean_object* l___regBuiltin_BitVec_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2915____closed__7; +LEAN_EXPORT lean_object* l_BitVec_reduceSMod___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* 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*); -static lean_object* l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f___closed__2; -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceUShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2033_(lean_object*); -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1515_(lean_object*); -static lean_object* l_Std_BitVec_reduceAppend___closed__1; -LEAN_EXPORT lean_object* l_Std_BitVec_reduceGetBit(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_BitVec_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_Std_BitVec_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1765____closed__12; -static lean_object* l___regBuiltin_Std_BitVec_reduceSMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1869____closed__8; -static lean_object* l___regBuiltin_Std_BitVec_reduceZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4058____closed__7; -LEAN_EXPORT lean_object* l_Std_BitVec_reduceBin___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___regBuiltin_Std_BitVec_reduceShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2011_(lean_object*); -static lean_object* l_Std_BitVec_reduceBin___lambda__2___closed__5; -LEAN_EXPORT lean_object* l_Std_BitVec_reduceUShiftRight___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_Std_BitVec_reduceNot_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1408____closed__1; -static lean_object* l___regBuiltin_Std_BitVec_reduceAllOnes_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4198____closed__2; -LEAN_EXPORT lean_object* l_Std_BitVec_reduceBinPred___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_Std_BitVec_reduceAdd___lambda__2(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_BitVec_reduceSMod___closed__1; -static lean_object* l___regBuiltin_Std_BitVec_reduceShiftLeftZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3687____closed__1; -static lean_object* l___regBuiltin_Std_BitVec_reduceSShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2055____closed__3; -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1681_(lean_object*); -static lean_object* l___regBuiltin_Std_BitVec_reduceSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1921____closed__1; -LEAN_EXPORT lean_object* l_Std_BitVec_reduceMul___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*); -static lean_object* l___regBuiltin_Std_BitVec_reduceShiftLeftZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3687____closed__2; -LEAN_EXPORT lean_object* l_Std_BitVec_reduceXOr___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*); -static lean_object* l___regBuiltin_Std_BitVec_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1429____closed__4; -static lean_object* l___regBuiltin_Std_BitVec_reduceHShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2097____closed__4; -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceGetLsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1972_(lean_object*); -static lean_object* l_Std_BitVec_reduceAnd___closed__2; -static lean_object* l___regBuiltin_Std_BitVec_reduceHShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2139____closed__7; -static lean_object* l___regBuiltin_Std_BitVec_reduceUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1817____closed__2; -LEAN_EXPORT lean_object* l_Std_BitVec_reduceShift___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_Std_BitVec_reduceSignExtend(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___regBuiltin_Std_BitVec_reduceSRem_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1895____closed__2; -LEAN_EXPORT lean_object* l_Std_BitVec_reduceShiftLeft___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_Std_BitVec_reduceCast_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2505____closed__2; -LEAN_EXPORT lean_object* l_Std_BitVec_reduceHShiftRight___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___regBuiltin_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1371____closed__2; -static lean_object* l___regBuiltin_Std_BitVec_reduceShiftLeftZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3687____closed__7; -static lean_object* l___regBuiltin_Std_BitVec_reduceHShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2097____closed__9; -static lean_object* l___regBuiltin_Std_BitVec_reduceHShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2097____closed__8; -static lean_object* l___regBuiltin_Std_BitVec_reduceOfInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2878____closed__1; -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceULE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3306_(lean_object*); -lean_object* l_Int_fromExpr_x3f(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Std_BitVec_reduceToInt___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_BitVec_sdiv(lean_object*, lean_object*, lean_object*); +static lean_object* l___regBuiltin_BitVec_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1542____closed__7; +static lean_object* l___regBuiltin_BitVec_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1500____closed__7; +LEAN_EXPORT lean_object* l_BitVec_reduceRotateRight___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_BitVec_reduceHShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1874____closed__2; +static lean_object* l___regBuiltin_BitVec_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2915____closed__5; +static lean_object* l___regBuiltin_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1148____closed__2; +static lean_object* l___regBuiltin_BitVec_reduceSLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3093____closed__6; +LEAN_EXPORT lean_object* l_BitVec_reduceAppend(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___regBuiltin_BitVec_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1500____closed__5; +LEAN_EXPORT lean_object* l_BitVec_reduceShift___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_BitVec_reduceShiftLeft___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_BitVec_reduceZeroExtend_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3266_(lean_object*); +static lean_object* l___regBuiltin_BitVec_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2872____closed__2; +static lean_object* l___regBuiltin_BitVec_reduceOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1290____closed__6; +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceSRem_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1674_(lean_object*); +LEAN_EXPORT lean_object* l_BitVec_reduceOr___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___regBuiltin_BitVec_reduceSShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1834_(lean_object*); +LEAN_EXPORT lean_object* l_BitVec_reduceULT___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_BitVec_reduceCast_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2266____closed__8; +static lean_object* l___regBuiltin_BitVec_reduceSRem_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1672____closed__7; +static lean_object* l_BitVec_reduceAppend___closed__1; +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceRotateLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1938_(lean_object*); +static lean_object* l_BitVec_reduceUShiftRight___closed__2; +static lean_object* l___regBuiltin_BitVec_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1458____closed__4; +static lean_object* l___regBuiltin_BitVec_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1500____closed__1; +static lean_object* l___regBuiltin_BitVec_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1374____closed__12; +static lean_object* l___regBuiltin_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1152____closed__1; +static lean_object* l___regBuiltin_BitVec_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3001____closed__1; +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1700_(lean_object*); +static lean_object* l___regBuiltin_BitVec_reduceOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1290____closed__13; +lean_object* l_BitVec_add(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_BitVec_reduceSignExtend___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_BitVec_reduceGetBit___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___regBuiltin_BitVec_reduceULE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3049_(lean_object*); +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceGetLsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1745_(lean_object*); +static lean_object* l___regBuiltin_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1248____closed__14; +LEAN_EXPORT lean_object* l_BitVec_reduceMul(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_nat_land(lean_object*, lean_object*); -static lean_object* l___regBuiltin_Std_BitVec_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1723____closed__3; -static lean_object* l_Std_BitVec_reduceSub___closed__2; -LEAN_EXPORT lean_object* l_Std_BitVec_reduceShift(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___regBuiltin_Std_BitVec_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1639____closed__3; -static lean_object* l_Std_BitVec_reduceExtracLsb_x27___closed__1; -LEAN_EXPORT lean_object* l_Std_BitVec_reduceAbs___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___regBuiltin_Std_BitVec_reduceGetLsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1968____closed__4; -static lean_object* l___regBuiltin_Std_BitVec_reduceShiftLeftZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3687____closed__5; -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceOfInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2880_(lean_object*); -static lean_object* l_Std_BitVec_reduceAdd___closed__2; -static lean_object* l_Std_BitVec_reduceShiftLeft___closed__2; -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceSRem_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1895_(lean_object*); -static lean_object* l___regBuiltin_Std_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1471____closed__8; -static lean_object* l___regBuiltin_Std_BitVec_reduceSLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3350____closed__3; -static lean_object* l___regBuiltin_Std_BitVec_reduceULE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3304____closed__2; -static lean_object* l___regBuiltin_Std_BitVec_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1639____closed__9; -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceUShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2035_(lean_object*); -static lean_object* l___regBuiltin_Std_BitVec_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1723____closed__8; -LEAN_EXPORT lean_object* l_Std_BitVec_reduceBinPred___lambda__1(lean_object*, 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___regBuiltin_Std_BitVec_reduceExtracLsb_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3879____closed__6; -static lean_object* l_Std_BitVec_reduceSLT___closed__2; -static lean_object* l_Std_BitVec_reduceNot___closed__2; -static lean_object* l___regBuiltin_Std_BitVec_reduceNot_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1408____closed__6; -static lean_object* l_Std_BitVec_reduceAllOnes___closed__2; -LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromBitVecExpr_x3f___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___regBuiltin_Std_BitVec_reduceHShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2097____closed__12; -LEAN_EXPORT lean_object* l_Std_BitVec_reduceOfNat(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Std_BitVec_reduceZeroExtend_x27___closed__1; -static lean_object* l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f___closed__6; -static lean_object* l___regBuiltin_Std_BitVec_reduceSignExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4079____closed__3; -static lean_object* l___regBuiltin_Std_BitVec_reduceXOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1555____closed__9; -static lean_object* l___regBuiltin_Std_BitVec_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1765____closed__4; -static lean_object* l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f___closed__4; -static lean_object* l___regBuiltin_Std_BitVec_reduceShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2011____closed__4; -static lean_object* l_Std_BitVec_reduceZeroExtend___closed__2; -lean_object* l_Lean_Meta_saveState___rarg(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Std_BitVec_abs(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceRotateRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2185_(lean_object*); -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1727_(lean_object*); -static lean_object* l_Std_BitVec_reduceMul___closed__1; -LEAN_EXPORT lean_object* l_Std_BitVec_reduceShiftLeft___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_Std_BitVec_reduceXOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1555____closed__2; -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceSLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3329_(lean_object*); -static lean_object* l___regBuiltin_Std_BitVec_reduceSMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1869____closed__1; -static lean_object* l___regBuiltin_Std_BitVec_reduceReplicate_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4037____closed__1; -LEAN_EXPORT lean_object* l_Std_BitVec_reduceGetLsb(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___regBuiltin_BitVec_reduceReplicate_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3748____closed__2; +static lean_object* l___regBuiltin_BitVec_reduceNot_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1185____closed__1; +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceOfInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2635_(lean_object*); +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceCast_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2270_(lean_object*); +static lean_object* l___regBuiltin_BitVec_reduceULT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3024____closed__4; +static lean_object* l_BitVec_reduceAnd___closed__2; +lean_object* l_Lean_Name_str___override(lean_object*, lean_object*); +static lean_object* l___regBuiltin_BitVec_reduceSMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1646____closed__4; +LEAN_EXPORT lean_object* l_BitVec_reduceSub(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_BitVec_reduceToNat___closed__2; +static lean_object* l___regBuiltin_BitVec_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2117____closed__5; +static lean_object* l_BitVec_reduceBin___lambda__2___closed__1; +static lean_object* l_BitVec_reduceGT___closed__2; +lean_object* l_BitVec_zeroExtend(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceOfNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2829_(lean_object*); +LEAN_EXPORT lean_object* l_BitVec_reduceBinPred___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___regBuiltin_BitVec_reduceNot_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1185____closed__4; +static lean_object* l___regBuiltin_BitVec_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2872____closed__9; +static lean_object* l___regBuiltin_BitVec_reduceHShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1916____closed__12; +static lean_object* l_BitVec_reduceMul___closed__3; +LEAN_EXPORT lean_object* l_BitVec_reduceUnary(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___regBuiltin_BitVec_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1206____closed__2; +static lean_object* l_BitVec_reduceSub___closed__3; +static lean_object* l___regBuiltin_BitVec_reduceRotateLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1938____closed__7; +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceOfInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2633_(lean_object*); +static lean_object* l___regBuiltin_BitVec_reduceGetLsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1745____closed__5; +static lean_object* l_BitVec_reduceLE___closed__1; +static lean_object* l___regBuiltin_BitVec_reduceULE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3047____closed__5; +static lean_object* l___regBuiltin_BitVec_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1416____closed__5; +static lean_object* l___regBuiltin_BitVec_reduceGetMsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1766____closed__4; +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceHShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1878_(lean_object*); +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceULT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3024_(lean_object*); +static lean_object* l___regBuiltin_BitVec_reduceSLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3070____closed__6; +static lean_object* l___regBuiltin_BitVec_reduceUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1594____closed__5; +static lean_object* l___regBuiltin_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1248____closed__10; +static lean_object* l___regBuiltin_BitVec_reduceUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1594____closed__7; +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceSRem_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1676_(lean_object*); +LEAN_EXPORT lean_object* l_BitVec_reduceDiv(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___regBuiltin_BitVec_reduceExtracLsb_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3600____closed__3; +static lean_object* l_BitVec_reduceSMTUDiv___closed__2; +static lean_object* l_BitVec_reduceZeroExtend_x27___closed__1; +static lean_object* l_BitVec_reduceBin___lambda__2___closed__4; +static lean_object* l___regBuiltin_BitVec_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2872____closed__8; +static lean_object* l___regBuiltin_BitVec_reduceReplicate_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3748____closed__8; +static lean_object* l_BitVec_reduceAppend___closed__3; +static lean_object* l___regBuiltin_BitVec_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1458____closed__9; +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceToInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2484_(lean_object*); +LEAN_EXPORT lean_object* l_BitVec_reduceGetBit___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_BitVec_reduceRotateRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1960_(lean_object*); +LEAN_EXPORT lean_object* l_BitVec_reduceMul___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*); +static lean_object* l___regBuiltin_BitVec_reduceHShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1916____closed__8; +static lean_object* l_BitVec_reduceCast___closed__2; +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2378_(lean_object*); lean_object* l_Lean_Expr_appFn_x21(lean_object*); -static lean_object* l___regBuiltin_Std_BitVec_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3129____closed__9; -static lean_object* l___regBuiltin_Std_BitVec_reduceOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1513____closed__8; -LEAN_EXPORT lean_object* l_Std_BitVec_reduceAdd___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*); -static lean_object* l___regBuiltin_Std_BitVec_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3215____closed__3; -static lean_object* l___regBuiltin_Std_BitVec_reduceToInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2721____closed__6; -static lean_object* l___regBuiltin_Std_BitVec_reduceGetMsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1989____closed__2; -LEAN_EXPORT lean_object* l_Std_BitVec_reduceSRem___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_Std_BitVec_reduceGetMsb(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___regBuiltin_Std_BitVec_reduceHShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2097____closed__1; +static lean_object* l___regBuiltin_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1148____closed__12; +static lean_object* l_BitVec_reduceLE___closed__3; +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1248_(lean_object*); +static lean_object* l_BitVec_reduceUnary___lambda__1___closed__4; +static lean_object* l___regBuiltin_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1148____closed__10; +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceSignExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3794_(lean_object*); +static lean_object* l___regBuiltin_BitVec_reduceUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1594____closed__3; +LEAN_EXPORT lean_object* l_BitVec_reduceSub___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_BitVec_reduceGetLsb___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_BitVec_reduceOfInt___closed__2; +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2872_(lean_object*); +static lean_object* l___regBuiltin_BitVec_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1206____closed__1; extern lean_object* l_Std_Format_defWidth; -static lean_object* l___regBuiltin_Std_BitVec_reduceSRem_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1895____closed__1; -static lean_object* l___regBuiltin_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1371____closed__3; -static lean_object* l___regBuiltin_Std_BitVec_reduceGetMsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1989____closed__7; -static lean_object* l___regBuiltin_Std_BitVec_reduceShiftLeftZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3687____closed__6; -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceSMTSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1947_(lean_object*); -static lean_object* l___regBuiltin_Std_BitVec_reduceULT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3281____closed__6; -static lean_object* l___regBuiltin_Std_BitVec_reduceHShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2139____closed__6; -static lean_object* l___regBuiltin_Std_BitVec_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3215____closed__2; -LEAN_EXPORT lean_object* l_Std_BitVec_reduceAnd___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*); -static lean_object* l___regBuiltin_Std_BitVec_reduceOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1513____closed__10; -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2350_(lean_object*); -static lean_object* l___regBuiltin_Std_BitVec_reduceOfNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3086____closed__3; -static lean_object* l___regBuiltin_Std_BitVec_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2613____closed__5; -static lean_object* l___regBuiltin_Std_BitVec_reduceCast_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2505____closed__3; -lean_object* l_Std_BitVec_zeroExtend(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Std_BitVec_reduceExtend___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_Std_BitVec_reduceXOr(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Std_BitVec_reduceAllOnes___closed__1; -static lean_object* l___regBuiltin_Std_BitVec_reduceSMTUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1843____closed__5; -static lean_object* l___regBuiltin_Std_BitVec_reduceOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1513____closed__12; -static lean_object* l___regBuiltin_Std_BitVec_reduceZeroExtend_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3529____closed__4; -LEAN_EXPORT lean_object* l_Std_BitVec_reduceNeg___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_Std_BitVec_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1767_(lean_object*); -static lean_object* l_Std_BitVec_reduceSDiv___closed__2; -static lean_object* l_Std_BitVec_reduceUMod___closed__1; -static lean_object* l___regBuiltin_Std_BitVec_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1681____closed__6; -static lean_object* l___regBuiltin_Std_BitVec_reduceSLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3327____closed__3; -static lean_object* l___regBuiltin_Std_BitVec_reduceRotateRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2183____closed__8; -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceULT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3283_(lean_object*); -static lean_object* l___regBuiltin_Std_BitVec_reduceUMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1791____closed__8; -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceSLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3350_(lean_object*); -static lean_object* l___regBuiltin_Std_BitVec_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1681____closed__8; -LEAN_EXPORT lean_object* l_Std_BitVec_reduceMod___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*); -static lean_object* l___regBuiltin_Std_BitVec_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1723____closed__6; -LEAN_EXPORT lean_object* l_Std_BitVec_reduceMod(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___regBuiltin_Std_BitVec_reduceSShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2055____closed__8; -static lean_object* l___regBuiltin_Std_BitVec_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1723____closed__11; -static lean_object* l___regBuiltin_Std_BitVec_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1639____closed__8; -static lean_object* l___regBuiltin_Std_BitVec_reduceSignExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4079____closed__1; -static lean_object* l___regBuiltin_Std_BitVec_reduceNot_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1408____closed__7; -static lean_object* l___regBuiltin_Std_BitVec_reduceSMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1869____closed__4; -static lean_object* l_Std_BitVec_reduceGetBit___lambda__1___closed__5; -static lean_object* l___regBuiltin_Std_BitVec_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2350____closed__8; -static lean_object* l___regBuiltin_Std_BitVec_reduceToInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2721____closed__2; -LEAN_EXPORT lean_object* l_Std_BitVec_reduceSLE___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_Std_BitVec_reduceAnd___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_Std_BitVec_reduceNot___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_Std_BitVec_ofNat(lean_object*, lean_object*); -static lean_object* l_Std_BitVec_reduceRotateLeft___closed__2; -static lean_object* l___regBuiltin_Std_BitVec_reduceUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1817____closed__4; -lean_object* l_Std_BitVec_add(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Std_BitVec_reduceLT(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___regBuiltin_Std_BitVec_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2613____closed__6; -static lean_object* l_Std_BitVec_reduceBin___lambda__2___closed__4; -static lean_object* l___regBuiltin_Std_BitVec_reduceGetLsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1968____closed__3; -static lean_object* l___regBuiltin_Std_BitVec_reduceZeroExtend_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3529____closed__8; -LEAN_EXPORT lean_object* l_Std_BitVec_fromExpr_x3f___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_BitVec_reduceAppend___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_Std_BitVec_reduceXOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1555____closed__12; -static lean_object* l___regBuiltin_Std_BitVec_reduceSLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3350____closed__7; -LEAN_EXPORT lean_object* l_Std_BitVec_reduceShiftLeftZeroExtend(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Std_BitVec_reduceShift___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___regBuiltin_Std_BitVec_reduceHShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2139____closed__4; -static lean_object* l_Std_BitVec_reduceSub___closed__1; -static lean_object* l_Std_BitVec_reduceBin___lambda__2___closed__2; -LEAN_EXPORT lean_object* l_Std_BitVec_reduceBin___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*); -static lean_object* l___regBuiltin_Std_BitVec_reduceSMTUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1843____closed__2; -LEAN_EXPORT lean_object* l_Std_BitVec_reduceCast___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_Std_BitVec_reduceShiftLeftZeroExtend___closed__2; -static lean_object* l___regBuiltin_Std_BitVec_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1639____closed__1; -static lean_object* l___regBuiltin_Std_BitVec_reduceOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1513____closed__2; -static lean_object* l_Std_BitVec_reduceShiftLeft___closed__1; -static lean_object* l_Std_BitVec_reduceRotateRight___closed__2; -static lean_object* l___regBuiltin_Std_BitVec_reduceNot_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1408____closed__4; -static lean_object* l___regBuiltin_Std_BitVec_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1639____closed__13; -static lean_object* l___regBuiltin_Std_BitVec_reduceULE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3304____closed__7; -static lean_object* l___regBuiltin_Std_BitVec_reduceUMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1791____closed__6; -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceSMTUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1847_(lean_object*); -LEAN_EXPORT lean_object* l_Std_BitVec_reduceSMTSDiv___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*); +static lean_object* l___regBuiltin_BitVec_reduceZeroExtend_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3266____closed__7; +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceToInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2482_(lean_object*); +static lean_object* l___regBuiltin_BitVec_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2374____closed__4; +static lean_object* l_BitVec_reduceToInt___lambda__1___closed__4; +LEAN_EXPORT lean_object* l_BitVec_reduceGE___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_BitVec_reduceShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1788____closed__2; +lean_object* l_BitVec_sshiftRight(lean_object*, lean_object*, lean_object*); +static lean_object* l___regBuiltin_BitVec_reduceSShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1832____closed__6; +static lean_object* l___regBuiltin_BitVec_reduceULE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3047____closed__7; +LEAN_EXPORT lean_object* l_BitVec_reduceNot___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_BitVec_reduceZeroExtend_x27___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_BitVec_reduceReplicate(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_BitVec_reduceToInt___lambda__1___closed__1; +LEAN_EXPORT lean_object* l_BitVec_reduceGT(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___regBuiltin_BitVec_reduceSMTSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1724____closed__7; +static lean_object* l___regBuiltin_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1248____closed__4; +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1458_(lean_object*); +static lean_object* l___regBuiltin_BitVec_reduceULT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3024____closed__2; +static lean_object* l_BitVec_reduceSLE___closed__2; +static lean_object* l___regBuiltin_BitVec_reduceExtracLsb_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3600____closed__4; +uint8_t l_BitVec_slt(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_BitVec_reduceOfNat___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_BitVec_reduceUnary___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_BitVec_reduceMod___closed__2; +static lean_object* l___regBuiltin_BitVec_reduceULT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3024____closed__8; +static lean_object* l_BitVec_reduceSRem___closed__2; +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1598_(lean_object*); +static lean_object* l___regBuiltin_BitVec_reduceOfInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2631____closed__1; +static lean_object* l___regBuiltin_BitVec_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1458____closed__2; +static lean_object* l___regBuiltin_BitVec_reduceSLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3070____closed__8; +static lean_object* l___regBuiltin_BitVec_reduceOfInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2631____closed__5; +static lean_object* l_BitVec_reduceNot___closed__3; +static lean_object* l_BitVec_reduceAbs___closed__2; +static lean_object* l___regBuiltin_BitVec_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1374____closed__14; +static lean_object* l___regBuiltin_BitVec_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1416____closed__11; +static lean_object* l___regBuiltin_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1248____closed__8; +static lean_object* l_BitVec_reduceOr___closed__3; +static lean_object* l___regBuiltin_BitVec_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2117____closed__1; +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceUMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1570_(lean_object*); +lean_object* l_BitVec_append___rarg(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2117_(lean_object*); +LEAN_EXPORT lean_object* l_BitVec_reduceCast(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1376_(lean_object*); +lean_object* l_BitVec_rotateRight(lean_object*, lean_object*, lean_object*); +static lean_object* l_BitVec_reduceUnary___lambda__1___closed__1; +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceRotateLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1940_(lean_object*); +LEAN_EXPORT lean_object* l_BitVec_reduceGE(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___regBuiltin_BitVec_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1374____closed__7; +static lean_object* l___regBuiltin_BitVec_reduceUShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1810____closed__1; +static lean_object* l___regBuiltin_BitVec_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1458____closed__3; +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceSLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3070_(lean_object*); +static lean_object* l___regBuiltin_BitVec_reduceHShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1874____closed__9; +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceRotateRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1962_(lean_object*); +static lean_object* l___regBuiltin_BitVec_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1458____closed__8; +LEAN_EXPORT lean_object* l_BitVec_reduceBin___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_EXPORT lean_object* l___regBuiltin_BitVec_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2960_(lean_object*); +LEAN_EXPORT lean_object* l_BitVec_reduceOfNat___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_BitVec_reduceExtracLsb_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3600_(lean_object*); +static lean_object* l___regBuiltin_BitVec_reduceOfNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2829____closed__6; +LEAN_EXPORT lean_object* l_BitVec_reduceAppend___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_BitVec_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_BitVec_reduceGetBit___lambda__1___closed__6; +static lean_object* l___regBuiltin_BitVec_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1542____closed__13; +static lean_object* l___regBuiltin_BitVec_reduceShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1788____closed__8; +static lean_object* l_BitVec_reduceMod___closed__1; +static lean_object* l___regBuiltin_BitVec_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3001____closed__2; +LEAN_EXPORT lean_object* l_BitVec_reduceOr___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*); +static lean_object* l___regBuiltin_BitVec_reduceSMTSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1724____closed__4; +static lean_object* l___regBuiltin_BitVec_reduceSLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3070____closed__7; +LEAN_EXPORT lean_object* l_BitVec_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___regBuiltin_BitVec_reduceSShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1832____closed__1; +static lean_object* l___regBuiltin_BitVec_reduceXOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1332____closed__14; +static lean_object* l___regBuiltin_BitVec_reduceGetLsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1745____closed__7; +static lean_object* l___regBuiltin_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1248____closed__3; +static lean_object* l___regBuiltin_BitVec_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2117____closed__10; +static lean_object* l___regBuiltin_BitVec_reduceUShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1810____closed__6; +static lean_object* l___regBuiltin_BitVec_reduceXOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1332____closed__12; +static lean_object* l_BitVec_reduceReplicate___closed__2; +LEAN_EXPORT lean_object* l_BitVec_reduceNeg___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_BitVec_reduceToInt___lambda__1___closed__10; +static lean_object* l___regBuiltin_BitVec_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1500____closed__8; +static lean_object* l___regBuiltin_BitVec_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1458____closed__7; lean_object* lean_nat_lxor(lean_object*, lean_object*); +static lean_object* l___regBuiltin_BitVec_reduceAllOnes_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3901____closed__6; uint8_t l_Nat_testBit(lean_object*, lean_object*); -static lean_object* l___regBuiltin_Std_BitVec_reduceReplicate_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4037____closed__3; -static lean_object* l___regBuiltin_Std_BitVec_reduceAllOnes_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4198____closed__4; -static lean_object* l_Std_BitVec_reduceLT___closed__2; -static lean_object* l___regBuiltin_Std_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1471____closed__2; -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2013_(lean_object*); -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceAllOnes_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4198_(lean_object*); -static lean_object* l___regBuiltin_Std_BitVec_reduceExtracLsb_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3879____closed__1; -static lean_object* l___regBuiltin_Std_BitVec_reduceULT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3281____closed__5; -LEAN_EXPORT lean_object* l_Std_BitVec_reduceAppend___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_Std_BitVec_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2613____closed__2; -static lean_object* l___regBuiltin_Std_BitVec_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1681____closed__3; -static lean_object* l___regBuiltin_Std_BitVec_reduceOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1513____closed__14; -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceGetLsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1970_(lean_object*); -static lean_object* l___regBuiltin_Std_BitVec_reduceCast_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2505____closed__5; -LEAN_EXPORT lean_object* l_Std_BitVec_reduceSMod___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*); -static lean_object* l_Std_BitVec_reduceShiftLeftZeroExtend___closed__1; -static lean_object* l_Std_BitVec_reduceSRem___closed__1; -static lean_object* l___regBuiltin_Std_BitVec_reduceUMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1791____closed__4; -LEAN_EXPORT lean_object* l_Std_BitVec_reduceOfNat___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_Std_BitVec_neg(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceExtracLsb_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3879_(lean_object*); -static lean_object* l_Std_BitVec_reduceGetBit___lambda__1___closed__9; -static lean_object* l___regBuiltin_Std_BitVec_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1429____closed__6; -static lean_object* l___regBuiltin_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1371____closed__8; -static lean_object* l___regBuiltin_Std_BitVec_reduceHShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2097____closed__5; -static lean_object* l_Std_BitVec_reduceAppend___closed__2; -static lean_object* l___regBuiltin_Std_BitVec_reduceHShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2139____closed__8; +static lean_object* l___regBuiltin_BitVec_reduceUShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1810____closed__4; +static lean_object* l___regBuiltin_BitVec_reduceToInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2482____closed__7; +LEAN_EXPORT lean_object* l_BitVec_reduceXOr___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*); +static lean_object* l_BitVec_reduceToInt___lambda__1___closed__8; +static lean_object* l_BitVec_reduceNot___closed__2; +LEAN_EXPORT lean_object* l_BitVec_reduceULE___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_BitVec_reduceToInt___closed__2; +static lean_object* l___regBuiltin_BitVec_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1542____closed__4; +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceSMTUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1620_(lean_object*); +static lean_object* l___regBuiltin_BitVec_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2915____closed__4; +static lean_object* l___regBuiltin_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1148____closed__9; +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceReplicate_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3748_(lean_object*); +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceUShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1810_(lean_object*); +static lean_object* l___regBuiltin_BitVec_reduceSignExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3790____closed__6; +static lean_object* l_BitVec_reduceToInt___lambda__1___closed__2; +LEAN_EXPORT lean_object* l_BitVec_reduceExtend___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_BitVec_reduceULE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3047____closed__2; +static lean_object* l_BitVec_reduceAnd___closed__1; +LEAN_EXPORT lean_object* l_BitVec_reduceExtracLsb_x27(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___regBuiltin_BitVec_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2915____closed__10; +static lean_object* l_BitVec_reduceAdd___closed__3; +LEAN_EXPORT lean_object* l_BitVec_reduceToNat___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_BitVec_reduceUDiv___closed__1; +static lean_object* l_BitVec_reduceToInt___lambda__1___closed__6; +static lean_object* l___regBuiltin_BitVec_reduceSRem_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1672____closed__3; +static lean_object* l_BitVec_reduceBin___lambda__2___closed__12; +static lean_object* l___regBuiltin_BitVec_reduceSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1698____closed__8; +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1294_(lean_object*); +lean_object* l_BitVec_signExtend(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_BitVec_reduceBin___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* l_Lean_Meta_Simp_registerBuiltinSimproc(lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___regBuiltin_Std_BitVec_reduceSMTSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1947____closed__6; -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1641_(lean_object*); -static lean_object* l___regBuiltin_Std_BitVec_reduceXOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1555____closed__6; -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1769_(lean_object*); -LEAN_EXPORT lean_object* l_Std_BitVec_reduceAllOnes___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___regBuiltin_BitVec_reduceSMTUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1622_(lean_object*); +static lean_object* l_BitVec_reduceGetBit___lambda__1___closed__11; +static lean_object* l_BitVec_reduceHShiftLeft___closed__2; +LEAN_EXPORT lean_object* l_BitVec_reduceExtend___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___regBuiltin_BitVec_reduceSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1698____closed__5; uint8_t lean_nat_dec_eq(lean_object*, lean_object*); -static lean_object* l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f___closed__5; -static lean_object* l___regBuiltin_Std_BitVec_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2613____closed__3; -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceSLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3331_(lean_object*); -static lean_object* l_Std_BitVec_reduceNeg___closed__1; -static lean_object* l___regBuiltin_Std_BitVec_reduceOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1513____closed__4; -static lean_object* l___regBuiltin_Std_BitVec_reduceULE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3304____closed__1; -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceGetMsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1989_(lean_object*); -static lean_object* l_Std_BitVec_reduceBin___lambda__2___closed__9; -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceRotateLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2161_(lean_object*); -static lean_object* l___regBuiltin_Std_BitVec_reduceSMTUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1843____closed__1; -LEAN_EXPORT lean_object* l_Std_BitVec_reduceUShiftRight___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_Std_BitVec_reduceSMTSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1947____closed__8; +static lean_object* l_BitVec_reduceOr___closed__2; +lean_object* l_Lean_mkApp3(lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_BitVec_reduceUShiftRight___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_BitVec_reduceRotateRight___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_BitVec_reduceHShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1916____closed__7; +static lean_object* l_BitVec_reduceLE___closed__2; +LEAN_EXPORT lean_object* l_BitVec_reduceZeroExtend_x27___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_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1248____closed__15; +static lean_object* l___regBuiltin_BitVec_reduceRotateRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1960____closed__7; uint8_t lean_nat_dec_lt(lean_object*, lean_object*); -static lean_object* l___regBuiltin_Std_BitVec_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1429____closed__3; +static lean_object* l___regBuiltin_BitVec_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1374____closed__10; +static lean_object* l_BitVec_reduceNeg___closed__3; lean_object* lean_nat_mod(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Std_BitVec_reduceToInt___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_Std_BitVec_reduceOr___closed__3; -static lean_object* l___regBuiltin_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1371____closed__6; -static lean_object* l_Std_BitVec_reduceSignExtend___closed__2; -static lean_object* l___regBuiltin_Std_BitVec_reduceOfNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3086____closed__4; -static lean_object* l_Std_BitVec_reduceSRem___closed__2; -LEAN_EXPORT lean_object* l_Std_BitVec_reduceSMod___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_Std_BitVec_reduceGetLsb___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___regBuiltin_Std_BitVec_reduceToInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2725_(lean_object*); -static lean_object* l___regBuiltin_Std_BitVec_reduceSignExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4079____closed__2; -static lean_object* l_Std_BitVec_reduceMod___closed__1; -static lean_object* l___regBuiltin_Std_BitVec_reduceOfInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2878____closed__5; -static lean_object* l_Std_BitVec_reduceULE___closed__2; +LEAN_EXPORT lean_object* l_BitVec_reduceSDiv___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*); +static lean_object* l___regBuiltin_BitVec_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3001____closed__3; +static lean_object* l___regBuiltin_BitVec_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1374____closed__2; +static lean_object* l___regBuiltin_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1148____closed__6; +LEAN_EXPORT lean_object* l_BitVec_reduceSMTSDiv___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___regBuiltin_BitVec_reduceSRem_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1672_(lean_object*); +static lean_object* l___regBuiltin_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1148____closed__1; +LEAN_EXPORT lean_object* l_BitVec_reduceSignExtend(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___regBuiltin_BitVec_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1374____closed__11; +static lean_object* l_BitVec_reduceAdd___closed__2; +static lean_object* l___regBuiltin_BitVec_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1416____closed__12; +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceShiftLeftZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3418_(lean_object*); +static lean_object* l_BitVec_reduceSRem___closed__1; lean_object* l_Lean_Name_mkStr2(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Std_BitVec_reduceZeroExtend___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_Std_BitVec_reduceOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1513____closed__5; -LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f(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_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___regBuiltin_Std_BitVec_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2350____closed__12; +LEAN_EXPORT lean_object* l_BitVec_reduceToInt___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_BitVec_reduceOfNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2829____closed__5; +static lean_object* l___regBuiltin_BitVec_reduceOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1290____closed__7; +lean_object* l_BitVec_rotateLeft(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_Simp_addSimprocBuiltinAttrCore(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*); -static lean_object* l___regBuiltin_Std_BitVec_reduceUShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2033____closed__7; -static lean_object* l___regBuiltin_Std_BitVec_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1723____closed__2; -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceSMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1871_(lean_object*); -static lean_object* l_Std_BitVec_reduceZeroExtend___closed__1; -lean_object* l_Std_BitVec_smod(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Std_BitVec_reduceCast___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___regBuiltin_Std_BitVec_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2615_(lean_object*); -static lean_object* l___regBuiltin_Std_BitVec_reduceUShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2033____closed__5; -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1765_(lean_object*); -static lean_object* l_Std_BitVec_reduceGE___closed__3; -static lean_object* l___regBuiltin_Std_BitVec_reduceRotateLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2161____closed__1; -static lean_object* l___regBuiltin_Std_BitVec_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1429____closed__5; -static lean_object* l___regBuiltin_Std_BitVec_reduceToInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2721____closed__4; -static lean_object* l___regBuiltin_Std_BitVec_reduceShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2011____closed__7; -static lean_object* l___regBuiltin_Std_BitVec_reduceOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1513____closed__13; -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceHShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2141_(lean_object*); -LEAN_EXPORT lean_object* l_Std_BitVec_reduceSMTSDiv(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___regBuiltin_Std_BitVec_reduceZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4058____closed__6; -LEAN_EXPORT lean_object* l_Std_BitVec_reduceMod___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___regBuiltin_Std_BitVec_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1639_(lean_object*); -LEAN_EXPORT lean_object* l_Std_BitVec_reduceLT___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_Std_BitVec_reduceULT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3281____closed__7; -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceSLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3352_(lean_object*); -static lean_object* l___regBuiltin_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1371____closed__5; -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1433_(lean_object*); -LEAN_EXPORT lean_object* l_Std_BitVec_reduceOfInt___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_Std_BitVec_reduceZeroExtend_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3529____closed__3; -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1925_(lean_object*); -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceGetMsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1993_(lean_object*); +LEAN_EXPORT lean_object* l_BitVec_reduceSMTSDiv(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_BitVec_reduceSLT___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_BitVec_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2915____closed__8; +static lean_object* l_BitVec_reduceToInt___lambda__1___closed__5; +static lean_object* l___regBuiltin_BitVec_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1500____closed__6; +static lean_object* l___regBuiltin_BitVec_reduceReplicate_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3748____closed__4; +static lean_object* l_BitVec_reduceUDiv___closed__2; +static lean_object* l___regBuiltin_BitVec_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2872____closed__6; +static lean_object* l___regBuiltin_BitVec_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1374____closed__1; +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceULT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3026_(lean_object*); +static lean_object* l___regBuiltin_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1248____closed__2; +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1206_(lean_object*); +static lean_object* l___regBuiltin_BitVec_reduceNot_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1185____closed__5; +static lean_object* l___regBuiltin_BitVec_reduceShiftLeftZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3414____closed__4; +LEAN_EXPORT lean_object* l_BitVec_reduceZeroExtend___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_BitVec_reduceShift(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___regBuiltin_BitVec_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1542____closed__9; +static lean_object* l___regBuiltin_BitVec_reduceGetMsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1766____closed__5; +static lean_object* l___regBuiltin_BitVec_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2117____closed__8; +static lean_object* l___regBuiltin_BitVec_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1374____closed__8; +static lean_object* l_BitVec_reduceNeg___closed__1; +LEAN_EXPORT lean_object* l_BitVec_reduceSShiftRight___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_BitVec_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1542____closed__5; +static lean_object* l_BitVec_reduceToNat___closed__1; +static lean_object* l___regBuiltin_BitVec_reduceReplicate_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3748____closed__7; +static lean_object* l___regBuiltin_BitVec_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2117____closed__11; +static lean_object* l___regBuiltin_BitVec_reduceShiftLeftZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3414____closed__7; +lean_object* l_BitVec_toInt(lean_object*, lean_object*); +static lean_object* l___regBuiltin_BitVec_reduceRotateLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1938____closed__5; +static lean_object* l___regBuiltin_BitVec_reduceULT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3024____closed__3; +static lean_object* l___regBuiltin_BitVec_reduceHShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1916____closed__4; +lean_object* l_Int_toNat(lean_object*); +static lean_object* l_BitVec_reduceSShiftRight___closed__2; +static lean_object* l___regBuiltin_BitVec_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1416____closed__2; +static lean_object* l___regBuiltin_BitVec_reduceSRem_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1672____closed__4; +static lean_object* l___regBuiltin_BitVec_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1500____closed__9; +static lean_object* l_BitVec_reduceBin___lambda__2___closed__7; +LEAN_EXPORT lean_object* l_BitVec_reduceRotateLeft___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_BitVec_reduceSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1698____closed__7; +static lean_object* l___regBuiltin_BitVec_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2915____closed__1; lean_object* lean_nat_shiftl(lean_object*, lean_object*); -static lean_object* l___regBuiltin_Std_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1471____closed__14; -static lean_object* l___regBuiltin_Std_BitVec_reduceULT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3281____closed__1; +LEAN_EXPORT lean_object* l_BitVec_reduceMod(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_BitVec_reduceBin___lambda__2___closed__6; +LEAN_EXPORT lean_object* l_BitVec_reduceGetMsb___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_Lean_addTrace___at_Lean_Meta_Simp_congrArgs___spec__2(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_Std_BitVec_reduceCast_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2505____closed__1; -static lean_object* l___regBuiltin_Std_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1471____closed__5; +LEAN_EXPORT lean_object* l_BitVec_reduceXOr(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceGetMsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1768_(lean_object*); +LEAN_EXPORT lean_object* l_BitVec_reduceOfInt___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_BitVec_reduceGetLsb(lean_object*, 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_Std_BitVec_reduceSignExtend___closed__1; -static lean_object* l___regBuiltin_Std_BitVec_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1597____closed__13; -static lean_object* l___regBuiltin_Std_BitVec_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3129____closed__11; -static lean_object* l___regBuiltin_Std_BitVec_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1639____closed__14; +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceRotateLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1942_(lean_object*); +static lean_object* l___regBuiltin_BitVec_reduceToInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2482____closed__5; +static lean_object* l___regBuiltin_BitVec_reduceSLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3070____closed__1; +static lean_object* l___regBuiltin_BitVec_reduceULE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3047____closed__8; +static lean_object* l___regBuiltin_BitVec_reduceSRem_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1672____closed__5; +static lean_object* l___regBuiltin_BitVec_reduceSLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3070____closed__5; +LEAN_EXPORT lean_object* l_BitVec_reduceShift___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_BitVec_reduceOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1290____closed__10; lean_object* lean_nat_mul(lean_object*, lean_object*); -static lean_object* l___regBuiltin_Std_BitVec_reduceSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1921____closed__4; -static lean_object* l___regBuiltin_Std_BitVec_reduceULE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3304____closed__3; -static lean_object* l_Std_BitVec_reduceSShiftRight___closed__1; -static lean_object* l___regBuiltin_Std_BitVec_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1681____closed__7; -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3262_(lean_object*); -static lean_object* l_Std_BitVec_reduceBin___lambda__2___closed__1; -static lean_object* l___regBuiltin_Std_BitVec_reduceXOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1555____closed__5; -static lean_object* l___regBuiltin_Std_BitVec_reduceXOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1555____closed__11; -static lean_object* l___regBuiltin_Std_BitVec_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1765____closed__2; -static lean_object* l_Std_BitVec_reduceSMTSDiv___closed__1; -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1517_(lean_object*); -static lean_object* l_Std_BitVec_reduceULT___closed__2; -LEAN_EXPORT lean_object* l_Std_BitVec_reduceAnd___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*); -static lean_object* l___regBuiltin_Std_BitVec_reduceXOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1555____closed__7; -LEAN_EXPORT lean_object* l_Std_BitVec_reduceSMTUDiv(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___regBuiltin_Std_BitVec_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3172____closed__5; -static lean_object* l___regBuiltin_Std_BitVec_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1681____closed__9; -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceSShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2057_(lean_object*); -LEAN_EXPORT lean_object* l_Std_BitVec_reduceMul___lambda__2(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_Std_BitVec_reduceUShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2033____closed__2; -static lean_object* l___regBuiltin_Std_BitVec_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1597____closed__9; -static lean_object* l___regBuiltin_Std_BitVec_reduceRotateLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2161____closed__2; -static lean_object* l___regBuiltin_Std_BitVec_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2613____closed__4; -static lean_object* l___regBuiltin_Std_BitVec_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1639____closed__7; -static lean_object* l___regBuiltin_Std_BitVec_reduceSMTUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1843____closed__7; -static lean_object* l_Std_BitVec_reduceCast___closed__2; -static lean_object* l___regBuiltin_Std_BitVec_reduceReplicate_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4037____closed__7; -static lean_object* l___regBuiltin_Std_BitVec_reduceCast_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2505____closed__7; -LEAN_EXPORT lean_object* l_Std_BitVec_reduceSRem___lambda__2(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_Std_BitVec_reduceSLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3350____closed__2; -static lean_object* l___regBuiltin_Std_BitVec_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1681____closed__13; -LEAN_EXPORT lean_object* l_Std_BitVec_reduceRotateLeft(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Std_BitVec_sub(lean_object*, lean_object*, lean_object*); -static lean_object* l_Std_BitVec_reduceReplicate___closed__2; -static lean_object* l___regBuiltin_Std_BitVec_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1597____closed__14; -static lean_object* l___regBuiltin_Std_BitVec_reduceUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1817____closed__8; -static lean_object* l___regBuiltin_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1371____closed__9; -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1643_(lean_object*); -static lean_object* l___regBuiltin_Std_BitVec_reduceSShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2055____closed__7; -LEAN_EXPORT lean_object* l_Std_BitVec_reduceAllOnes___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_BitVec_reduceZeroExtend_x27___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_Std_BitVec_reduceUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1817____closed__1; -LEAN_EXPORT lean_object* l_Std_BitVec_reduceSDiv___lambda__2(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_Std_BitVec_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3129____closed__7; -LEAN_EXPORT lean_object* l_Std_BitVec_reduceSMTSDiv___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_Std_BitVec_reduceSRem(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___regBuiltin_Std_BitVec_reduceShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2011____closed__3; -LEAN_EXPORT lean_object* l_Std_BitVec_reduceOfNat___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_Std_BitVec_reduceSMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1869_(lean_object*); -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceXOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1555_(lean_object*); -LEAN_EXPORT lean_object* l_Std_BitVec_reduceCast(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Std_BitVec_reduceOr___closed__2; -static lean_object* l___regBuiltin_Std_BitVec_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1639____closed__2; -static lean_object* l___regBuiltin_Std_BitVec_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3172____closed__1; -lean_object* l_Std_BitVec_mul(lean_object*, lean_object*, lean_object*); -static lean_object* l___regBuiltin_Std_BitVec_reduceHShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2097____closed__2; -LEAN_EXPORT lean_object* l_Std_BitVec_reduceBin___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*); -static lean_object* l___regBuiltin_Std_BitVec_reduceRotateRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2183____closed__4; -static lean_object* l_Std_BitVec_reduceGetBit___lambda__1___closed__10; -static lean_object* l___regBuiltin_Std_BitVec_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1765____closed__1; -static lean_object* l___regBuiltin_Std_BitVec_reduceSLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3327____closed__6; -static lean_object* l___regBuiltin_Std_BitVec_reduceZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4058____closed__2; -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceZeroExtend_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3529_(lean_object*); -LEAN_EXPORT lean_object* l_Std_BitVec_reduceGetBit___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___regBuiltin_Std_BitVec_reduceHShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2097____closed__13; -static lean_object* l___regBuiltin_Std_BitVec_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3129____closed__1; -static lean_object* l___regBuiltin_Std_BitVec_reduceSLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3350____closed__5; -static lean_object* l_Std_BitVec_reduceRotateLeft___closed__1; -LEAN_EXPORT lean_object* l_Std_BitVec_reduceReplicate___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_Std_BitVec_reduceZeroExtend_x27(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___regBuiltin_Std_BitVec_reduceSLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3350____closed__8; -static lean_object* l___regBuiltin_Std_BitVec_reduceRotateRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2183____closed__6; -LEAN_EXPORT lean_object* l_Std_BitVec_reduceOfInt(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___regBuiltin_Std_BitVec_reduceShiftLeftZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3687____closed__3; -LEAN_EXPORT lean_object* l_Std_BitVec_reduceHShiftRight(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Std_BitVec_reduceLE___closed__3; -static lean_object* l___regBuiltin_Std_BitVec_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1597____closed__4; -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceCast_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2505_(lean_object*); -static lean_object* l_Std_BitVec_reduceSMTUDiv___closed__2; -static lean_object* l___regBuiltin_Std_BitVec_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1723____closed__10; -LEAN_EXPORT lean_object* l_Std_BitVec_reduceSignExtend___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_Std_BitVec_reduceBin___lambda__2___closed__15; -LEAN_EXPORT lean_object* l_Std_BitVec_reduceXOr___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_Std_BitVec_reduceHShiftLeft(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___regBuiltin_Std_BitVec_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2350____closed__10; -static lean_object* l___regBuiltin_Std_BitVec_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1723____closed__12; -static lean_object* l___regBuiltin_Std_BitVec_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3258____closed__1; -static lean_object* l_Std_BitVec_reduceSLE___closed__2; -static lean_object* l___regBuiltin_Std_BitVec_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2350____closed__1; -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceNot_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1408_(lean_object*); -LEAN_EXPORT lean_object* l_Std_BitVec_reduceGetBit___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* l_Nat_fromExpr_x3f(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Std_BitVec_reduceDiv___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_Std_BitVec_reduceOfInt___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___regBuiltin_Std_BitVec_reduceSMTUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1843_(lean_object*); -LEAN_EXPORT lean_object* l_Std_BitVec_reduceOr(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___regBuiltin_Std_BitVec_reduceHShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2097____closed__3; -LEAN_EXPORT lean_object* l_Std_BitVec_reduceGE___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_Std_BitVec_reduceSignExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4079____closed__7; -static lean_object* l___regBuiltin_Std_BitVec_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1429____closed__7; -static lean_object* l___regBuiltin_Std_BitVec_reduceSRem_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1895____closed__8; -static lean_object* l___regBuiltin_Std_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1471____closed__6; -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceSLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3354_(lean_object*); -LEAN_EXPORT lean_object* l_Std_BitVec_reduceGT___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_Std_BitVec_reduceNeg___closed__3; -LEAN_EXPORT lean_object* l_Std_BitVec_reduceAbs___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_Std_BitVec_reduceReplicate_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4039_(lean_object*); -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceOfNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3088_(lean_object*); -static lean_object* l___regBuiltin_Std_BitVec_reduceOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1513____closed__9; -static lean_object* l___regBuiltin_Std_BitVec_reduceGetMsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1989____closed__6; -LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromBitVecExpr_x3f(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___regBuiltin_Std_BitVec_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1597____closed__3; -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3219_(lean_object*); -lean_object* l_Std_BitVec_replicate(lean_object*, lean_object*, lean_object*); -lean_object* l_Std_BitVec_shiftLeft(lean_object*, lean_object*, lean_object*); -static lean_object* l___regBuiltin_Std_BitVec_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3172____closed__2; -static lean_object* l___regBuiltin_Std_BitVec_reduceExtracLsb_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3879____closed__4; -static lean_object* l___regBuiltin_Std_BitVec_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3258____closed__2; -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceToInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2723_(lean_object*); -static lean_object* l___regBuiltin_Std_BitVec_reduceUMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1791____closed__9; -static lean_object* l_Std_BitVec_reduceAbs___closed__1; -lean_object* l_Std_BitVec_rotateRight(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Std_BitVec_reduceAbs___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_Std_BitVec_reduceShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2011____closed__5; -static lean_object* l___regBuiltin_Std_BitVec_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1723____closed__1; -LEAN_EXPORT lean_object* l_Std_BitVec_reduceGetLsb___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_Std_BitVec_reduceGetBit___lambda__1___closed__3; -static lean_object* l___regBuiltin_Std_BitVec_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3129____closed__2; -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceXOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1559_(lean_object*); -static lean_object* l___regBuiltin_Std_BitVec_reduceNot_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1408____closed__8; -static lean_object* l___regBuiltin_Std_BitVec_reduceNot_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1408____closed__9; -static lean_object* l___regBuiltin_Std_BitVec_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1723____closed__5; -static lean_object* l_Std_BitVec_reduceToInt___closed__1; -static lean_object* l___regBuiltin_Std_BitVec_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1765____closed__8; +LEAN_EXPORT lean_object* l_BitVec_reduceExtend(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_BitVec_reduceShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1788____closed__6; +static lean_object* l___regBuiltin_BitVec_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2374____closed__1; +static lean_object* l___regBuiltin_BitVec_reduceZeroExtend_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3266____closed__1; +static lean_object* l___regBuiltin_BitVec_reduceULE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3047____closed__6; +static lean_object* l___regBuiltin_BitVec_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1416____closed__8; +static lean_object* l___regBuiltin_BitVec_reduceShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1788____closed__5; +static lean_object* l_BitVec_reduceSub___closed__2; +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceSMTUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1624_(lean_object*); +static lean_object* l_BitVec_reduceBin___lambda__2___closed__8; +LEAN_EXPORT lean_object* l_BitVec_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_object*, lean_object*); +static lean_object* l___regBuiltin_BitVec_reduceUShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1810____closed__5; +LEAN_EXPORT lean_object* l_BitVec_reduceRotateLeft(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_BitVec_reduceSRem(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_BitVec_reduceSLT___closed__2; +static lean_object* l_BitVec_reduceSMod___closed__2; +static lean_object* l___regBuiltin_BitVec_reduceZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3769____closed__3; +static lean_object* l___regBuiltin_BitVec_reduceSLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3093____closed__7; +LEAN_EXPORT lean_object* l_BitVec_reduceSLT___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___regBuiltin_BitVec_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2917_(lean_object*); +static lean_object* l___regBuiltin_BitVec_reduceOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1290____closed__9; +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1290_(lean_object*); +static lean_object* l___regBuiltin_BitVec_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2117____closed__6; +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3001_(lean_object*); +static lean_object* l___regBuiltin_BitVec_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1458____closed__11; +static lean_object* l___regBuiltin_BitVec_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2117____closed__12; +static lean_object* l___regBuiltin_BitVec_reduceUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1594____closed__2; +static lean_object* l___regBuiltin_BitVec_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1542____closed__10; +static lean_object* l___regBuiltin_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1248____closed__9; +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2962_(lean_object*); +static lean_object* l___regBuiltin_BitVec_reduceHShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1874____closed__3; +static lean_object* l___regBuiltin_BitVec_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1416____closed__9; +static lean_object* l___regBuiltin_BitVec_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2374____closed__7; +LEAN_EXPORT lean_object* l_BitVec_reduceOr(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_BitVec_reduceULT___closed__2; +static lean_object* l___regBuiltin_BitVec_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1416____closed__7; +LEAN_EXPORT lean_object* l_BitVec_reduceBinPred___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_BitVec_reduceSRem___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_BitVec_reduceLE___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_BitVec_reduceToInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2482____closed__6; +static lean_object* l___regBuiltin_BitVec_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1542____closed__1; +lean_object* l_BitVec_smod(lean_object*, lean_object*, lean_object*); +static lean_object* l___regBuiltin_BitVec_reduceSMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1646____closed__3; +static lean_object* l___regBuiltin_BitVec_reduceSMTUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1620____closed__6; +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceOfNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2831_(lean_object*); +LEAN_EXPORT lean_object* l_BitVec_reduceSLE(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_BitVec_reduceGE___closed__3; +LEAN_EXPORT lean_object* l_BitVec_reduceNot___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_BitVec_reduceSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1702_(lean_object*); +static lean_object* l___regBuiltin_BitVec_reduceShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1788____closed__3; +static lean_object* l___regBuiltin_BitVec_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2117____closed__7; +static lean_object* l___regBuiltin_BitVec_reduceOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1290____closed__4; +LEAN_EXPORT lean_object* l_BitVec_reduceExtend___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___regBuiltin_BitVec_reduceZeroExtend_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3266____closed__4; +static lean_object* l_BitVec_reduceUnary___lambda__1___closed__5; +static lean_object* l_BitVec_reduceSMTSDiv___closed__2; +static lean_object* l___regBuiltin_BitVec_reduceULE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3047____closed__4; +static lean_object* l___regBuiltin_BitVec_reduceRotateLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1938____closed__2; +static lean_object* l___regBuiltin_BitVec_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2958____closed__2; +lean_object* l_BitVec_mul(lean_object*, lean_object*, lean_object*); +static lean_object* l_BitVec_reduceGE___closed__1; +static lean_object* l___regBuiltin_BitVec_reduceSMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1646____closed__1; +static lean_object* l___regBuiltin_BitVec_reduceUMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1568____closed__4; +static lean_object* l_BitVec_reduceMod___closed__3; +static lean_object* l___regBuiltin_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1248____closed__12; +static lean_object* l_BitVec_reduceToInt___lambda__1___closed__3; +LEAN_EXPORT lean_object* l_BitVec_reduceShiftLeftZeroExtend___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_BitVec_reduceNot_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1185____closed__2; +lean_object* l_Lean_instToExprInt_mkNat(lean_object*); +static lean_object* l_BitVec_reduceRotateRight___closed__1; +static lean_object* l___regBuiltin_BitVec_reduceSLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3093____closed__2; +static lean_object* l___regBuiltin_BitVec_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1458____closed__13; +static lean_object* l_BitVec_reduceZeroExtend___closed__1; +static lean_object* l___regBuiltin_BitVec_reduceCast_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2266____closed__1; +static lean_object* l___regBuiltin_BitVec_reduceHShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1916____closed__5; +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceZeroExtend_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3270_(lean_object*); +LEAN_EXPORT lean_object* l_BitVec_reduceSRem___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*); +static lean_object* l_BitVec_reduceShiftLeftZeroExtend___closed__1; +static lean_object* l___regBuiltin_BitVec_reduceSShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1832____closed__7; +static lean_object* l_BitVec_reduceRotateLeft___closed__2; +LEAN_EXPORT lean_object* l_BitVec_reduceSLT(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_BitVec_reduceAdd___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*); +static lean_object* l___regBuiltin_BitVec_reduceOfInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2631____closed__2; +static lean_object* l___regBuiltin_BitVec_reduceHShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1874____closed__10; +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceSMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1648_(lean_object*); +static lean_object* l___regBuiltin_BitVec_reduceToInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2482____closed__1; +static lean_object* l_BitVec_reduceAdd___closed__1; +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceCast_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2268_(lean_object*); +static lean_object* l___regBuiltin_BitVec_reduceCast_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2266____closed__7; +static lean_object* l___regBuiltin_BitVec_reduceGetMsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1766____closed__1; +static lean_object* l___regBuiltin_BitVec_reduceHShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1916____closed__2; +static lean_object* l___regBuiltin_BitVec_reduceRotateRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1960____closed__3; +lean_object* l_BitVec_toHex(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_BitVec_reduceToNat___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_BitVec_reduceShiftLeftZeroExtend___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_BitVec_reduceHShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1876_(lean_object*); +static lean_object* l___regBuiltin_BitVec_reduceOfInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2631____closed__4; +static lean_object* l___regBuiltin_BitVec_reduceSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1698____closed__1; +LEAN_EXPORT lean_object* l_BitVec_reduceExtracLsb_x27___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_BitVec_reduceHShiftLeft___closed__3; +LEAN_EXPORT lean_object* l_BitVec_reduceDiv___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___regBuiltin_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1148_(lean_object*); +static lean_object* l___regBuiltin_BitVec_reduceExtracLsb_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3600____closed__6; +static lean_object* l_BitVec_reduceSLT___closed__1; +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceSLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3097_(lean_object*); +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1374_(lean_object*); +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceSShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1836_(lean_object*); +static lean_object* l___regBuiltin_BitVec_reduceSMTSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1724____closed__6; +static lean_object* l___regBuiltin_BitVec_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1542____closed__3; +static lean_object* l___regBuiltin_BitVec_reduceGetMsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1766____closed__8; +static lean_object* l___regBuiltin_BitVec_reduceUMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1568____closed__9; +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2121_(lean_object*); +static lean_object* l___regBuiltin_BitVec_reduceHShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1874____closed__1; +static lean_object* l_BitVec_reduceSMod___closed__1; +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceGetLsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1747_(lean_object*); +static lean_object* l___regBuiltin_BitVec_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1374____closed__4; +static lean_object* l___regBuiltin_BitVec_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2872____closed__4; +static lean_object* l___regBuiltin_BitVec_reduceSLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3070____closed__2; +static lean_object* l___regBuiltin_BitVec_reduceULT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3024____closed__1; +LEAN_EXPORT lean_object* l_BitVec_reduceHShiftLeft(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___regBuiltin_BitVec_reduceOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1290____closed__11; +static lean_object* l___regBuiltin_BitVec_reduceAllOnes_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3901____closed__3; +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3003_(lean_object*); +static lean_object* l___regBuiltin_BitVec_reduceShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1788____closed__4; +LEAN_EXPORT lean_object* l_BitVec_reduceRotateRight(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___regBuiltin_BitVec_reduceZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3769____closed__8; +lean_object* lean_int_neg(lean_object*); +LEAN_EXPORT lean_object* l_BitVec_reduceAllOnes___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_BitVec_reduceCast___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_BitVec_reduceNeg___lambda__1(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_Meta_Simp_builtinSEvalprocsRef; -LEAN_EXPORT lean_object* l_Std_BitVec_reduceSShiftRight___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_Std_BitVec_reduceAllOnes_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4198____closed__5; -static lean_object* l___regBuiltin_Std_BitVec_reduceAllOnes_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4198____closed__6; uint8_t lean_nat_dec_le(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1373_(lean_object*); -LEAN_EXPORT lean_object* l_Std_BitVec_reduceXOr___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___regBuiltin_Std_BitVec_reduceGetLsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1968_(lean_object*); -static lean_object* l___regBuiltin_Std_BitVec_reduceGetMsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1989____closed__4; -static lean_object* l_Std_BitVec_reduceULE___closed__1; -static lean_object* l___regBuiltin_Std_BitVec_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3129____closed__8; -static lean_object* l_Std_BitVec_reduceGE___closed__2; -LEAN_EXPORT lean_object* l_Std_BitVec_reduceZeroExtend___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_Std_BitVec_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1681____closed__5; -static lean_object* l___regBuiltin_Std_BitVec_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1681____closed__1; -static lean_object* l___regBuiltin_Std_BitVec_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2350____closed__2; -static lean_object* l_Std_BitVec_reduceBin___lambda__2___closed__12; -static lean_object* l_Std_BitVec_reduceBin___lambda__2___closed__10; -LEAN_EXPORT lean_object* l_Std_BitVec_reduceGE___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___regBuiltin_Std_BitVec_reduceHShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2097_(lean_object*); -static lean_object* l___regBuiltin_Std_BitVec_reduceRotateRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2183____closed__2; +LEAN_EXPORT lean_object* l_BitVec_reduceShiftLeft___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_BitVec_reduceZeroExtend_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3266____closed__6; +static lean_object* l_BitVec_reduceGetBit___lambda__1___closed__4; +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceSMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1646_(lean_object*); +static lean_object* l___regBuiltin_BitVec_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2958____closed__1; +LEAN_EXPORT lean_object* l_BitVec_reduceAbs___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_BitVec_reduceULT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3024____closed__6; +static lean_object* l___regBuiltin_BitVec_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1206____closed__5; lean_object* lean_nat_add(lean_object*, lean_object*); -static lean_object* l___regBuiltin_Std_BitVec_reduceOfInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2878____closed__2; -static lean_object* l___regBuiltin_Std_BitVec_reduceSShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2055____closed__5; -static lean_object* l___regBuiltin_Std_BitVec_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1723____closed__4; -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceSShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2055_(lean_object*); -static lean_object* l_Std_BitVec_reduceHShiftRight___closed__3; -LEAN_EXPORT lean_object* l_Std_BitVec_reduceSLT___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_Std_BitVec_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_Std_BitVec_reduceShiftLeftZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3687____closed__4; -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1429_(lean_object*); -static lean_object* l_Std_BitVec_Literal_toExpr___closed__1; -static lean_object* l___regBuiltin_Std_BitVec_reduceGetLsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1968____closed__5; -uint8_t l_Lean_Exception_isRuntime(lean_object*); -static lean_object* l___regBuiltin_Std_BitVec_reduceULT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3281____closed__4; -static lean_object* l___regBuiltin_Std_BitVec_reduceXOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1555____closed__1; -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1923_(lean_object*); -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3176_(lean_object*); -static lean_object* l___regBuiltin_Std_BitVec_reduceReplicate_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4037____closed__8; -static lean_object* l_Std_BitVec_reduceSLT___closed__1; -static lean_object* l___regBuiltin_Std_BitVec_reduceSMTSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1947____closed__3; -static lean_object* l___regBuiltin_Std_BitVec_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2350____closed__7; -static lean_object* l___regBuiltin_Std_BitVec_reduceHShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2139____closed__12; -static lean_object* l___regBuiltin_Std_BitVec_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1765____closed__14; -static lean_object* l___regBuiltin_Std_BitVec_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1597____closed__1; -static lean_object* l___regBuiltin_Std_BitVec_reduceSignExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4079____closed__4; -static lean_object* l___regBuiltin_Std_BitVec_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2350____closed__4; -static lean_object* l___regBuiltin_Std_BitVec_reduceSShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2055____closed__6; -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceULE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3308_(lean_object*); -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceSMTUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1845_(lean_object*); -static lean_object* l___regBuiltin_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1371____closed__7; -static lean_object* l___regBuiltin_Std_BitVec_reduceRotateRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2183____closed__5; -LEAN_EXPORT lean_object* l_Std_BitVec_reduceNot(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Std_BitVec_smtUDiv(lean_object*, lean_object*, lean_object*); -static lean_object* l___regBuiltin_Std_BitVec_reduceSRem_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1895____closed__4; -static lean_object* l_Std_BitVec_reduceMul___closed__2; -static lean_object* l_Std_BitVec_reduceGT___closed__1; -LEAN_EXPORT lean_object* l_Std_BitVec_Literal_toExpr(lean_object*); -static lean_object* l___regBuiltin_Std_BitVec_reduceSLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3350____closed__6; -static lean_object* l___regBuiltin_Std_BitVec_reduceZeroExtend_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3529____closed__1; +static lean_object* l___regBuiltin_BitVec_reduceShiftLeftZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3414____closed__6; +static lean_object* l___regBuiltin_BitVec_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2915____closed__9; +static lean_object* l___regBuiltin_BitVec_reduceRotateRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1960____closed__5; +LEAN_EXPORT lean_object* l_BitVec_reduceSMTUDiv(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2376_(lean_object*); +static lean_object* l___regBuiltin_BitVec_reduceReplicate_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3748____closed__3; +static lean_object* l___regBuiltin_BitVec_reduceSMTUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1620____closed__8; +static lean_object* l___regBuiltin_BitVec_reduceSRem_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1672____closed__6; +LEAN_EXPORT lean_object* l_BitVec_reduceNeg___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_BitVec_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1420_(lean_object*); +static lean_object* l___regBuiltin_BitVec_reduceSMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1646____closed__6; +static lean_object* l___regBuiltin_BitVec_reduceXOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1332____closed__1; +static lean_object* l___regBuiltin_BitVec_reduceOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1290____closed__8; +LEAN_EXPORT lean_object* l_BitVec_reduceGetMsb___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_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1148____closed__11; +static lean_object* l___regBuiltin_BitVec_reduceZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3769____closed__5; +LEAN_EXPORT lean_object* l_BitVec_reduceXOr___lambda__2(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_BitVec_reduceReplicate_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3748____closed__6; +LEAN_EXPORT lean_object* l_BitVec_reduceSLE___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_BitVec_reduceHShiftLeft___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_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1250_(lean_object*); +static lean_object* l_BitVec_reduceGetLsb___closed__1; +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceExtracLsb_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3602_(lean_object*); +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1594_(lean_object*); lean_object* l_Lean_MessageData_ofName(lean_object*); -static lean_object* l_Std_BitVec_reduceNeg___closed__2; -static lean_object* l___regBuiltin_Std_BitVec_reduceUMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1791____closed__1; -static lean_object* l_Std_BitVec_reduceAnd___closed__3; -static lean_object* l___regBuiltin_Std_BitVec_reduceOfInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2878____closed__6; -LEAN_EXPORT lean_object* l_Std_BitVec_reduceSMTUDiv___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_Std_BitVec_reduceExtend___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_Std_BitVec_reduceOr___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_Std_BitVec_reduceExtracLsb_x27___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_Std_BitVec_reduceUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1821_(lean_object*); -static lean_object* l___regBuiltin_Std_BitVec_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1639____closed__10; +static lean_object* l___regBuiltin_BitVec_reduceRotateLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1938____closed__1; +static lean_object* l___regBuiltin_BitVec_reduceSMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1646____closed__8; +LEAN_EXPORT lean_object* l_BitVec_reduceReplicate___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_BitVec_reduceBin___lambda__2___closed__5; +LEAN_EXPORT lean_object* l_BitVec_reduceUDiv(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___regBuiltin_BitVec_reduceShiftLeftZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3414____closed__8; lean_object* lean_nat_lor(lean_object*, lean_object*); -static lean_object* l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f___closed__7; -LEAN_EXPORT lean_object* l_Std_BitVec_reduceExtracLsb_x27(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___regBuiltin_Std_BitVec_reduceRotateRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2183____closed__7; -LEAN_EXPORT lean_object* l_Std_BitVec_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_Std_BitVec_reduceULT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3281____closed__3; -static lean_object* l___regBuiltin_Std_BitVec_reduceSShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2055____closed__2; +LEAN_EXPORT lean_object* l_BitVec_reduceULE(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_BitVec_reduceSDiv___closed__2; +static lean_object* l___regBuiltin_BitVec_reduceZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3769____closed__2; +static lean_object* l___regBuiltin_BitVec_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2117____closed__4; lean_object* l_Nat_repr(lean_object*); -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4062_(lean_object*); -static lean_object* l_Std_BitVec_reduceBin___lambda__2___closed__6; -LEAN_EXPORT lean_object* l_Std_BitVec_reduceSShiftRight(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceAllOnes_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4202_(lean_object*); -LEAN_EXPORT lean_object* l_Std_BitVec_reduceAdd___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*); -static lean_object* l___regBuiltin_Std_BitVec_reduceAllOnes_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4198____closed__1; -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1471_(lean_object*); -static lean_object* l___regBuiltin_Std_BitVec_reduceUShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2033____closed__8; -static lean_object* l___regBuiltin_Std_BitVec_reduceSLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3327____closed__2; -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceUShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2037_(lean_object*); -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1921_(lean_object*); -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceHShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2099_(lean_object*); -static lean_object* l___regBuiltin_Std_BitVec_reduceSMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1869____closed__5; -static lean_object* l_Std_BitVec_reduceAppend___closed__3; -LEAN_EXPORT lean_object* l_Std_BitVec_reduceSDiv___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*); -static lean_object* l___regBuiltin_Std_BitVec_reduceReplicate_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4037____closed__6; -static lean_object* l_Std_BitVec_reduceAbs___closed__2; -static lean_object* l___regBuiltin_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1371____closed__4; -static lean_object* l___regBuiltin_Std_BitVec_reduceSMTSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1947____closed__2; -static lean_object* l_Std_BitVec_reduceXOr___closed__2; -LEAN_EXPORT lean_object* l_Std_BitVec_reduceULT(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___regBuiltin_Std_BitVec_reduceUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1817____closed__7; -static lean_object* l___regBuiltin_Std_BitVec_reduceGetMsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1989____closed__1; -static lean_object* l___regBuiltin_Std_BitVec_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2350____closed__6; -LEAN_EXPORT lean_object* l_Std_BitVec_reduceReplicate___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_Std_BitVec_reduceXOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1555____closed__3; -static lean_object* _init_l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f___closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("OfNat", 5); -return x_1; -} -} -static lean_object* _init_l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f___closed__2() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("ofNat", 5); -return x_1; -} -} -static lean_object* _init_l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f___closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f___closed__1; -x_2 = l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f___closed__2; -x_3 = l_Lean_Name_mkStr2(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f___closed__4() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("Std", 3); -return x_1; -} -} -static lean_object* _init_l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f___closed__5() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("BitVec", 6); -return x_1; -} -} -static lean_object* _init_l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f___closed__6() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f___closed__4; -x_2 = l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f___closed__5; -x_3 = l_Lean_Name_mkStr2(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f___closed__7() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = lean_box(0); -x_2 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_2, 0, x_1); -return x_2; -} -} -LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f(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; uint8_t x_12; lean_object* x_13; lean_object* x_14; -x_10 = l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f___closed__3; -x_11 = lean_unsigned_to_nat(3u); -x_12 = l_Lean_Expr_isAppOfArity(x_1, x_10, x_11); -if (x_12 == 0) -{ -lean_object* x_117; -x_117 = lean_box(0); -x_13 = x_117; -x_14 = x_9; -goto block_116; -} -else -{ -lean_object* x_118; -x_118 = l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f___closed__7; -x_13 = x_118; -x_14 = x_9; -goto block_116; -} -block_116: -{ -if (lean_obj_tag(x_13) == 0) -{ -lean_object* x_15; lean_object* x_16; -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_1); -x_15 = lean_box(0); -x_16 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_16, 0, x_15); -lean_ctor_set(x_16, 1, x_14); -return x_16; -} -else -{ -lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; -lean_dec(x_13); -x_17 = l_Lean_Expr_appFn_x21(x_1); -lean_inc(x_17); -x_18 = l_Lean_Expr_appFn_x21(x_17); -x_19 = l_Lean_Expr_appArg_x21(x_18); -lean_dec(x_18); -lean_inc(x_8); -lean_inc(x_7); -lean_inc(x_6); -lean_inc(x_5); -x_20 = lean_whnf(x_19, x_5, x_6, x_7, x_8, x_14); -if (lean_obj_tag(x_20) == 0) -{ -uint8_t x_21; -x_21 = !lean_is_exclusive(x_20); -if (x_21 == 0) -{ -lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; uint8_t x_26; -x_22 = lean_ctor_get(x_20, 0); -x_23 = lean_ctor_get(x_20, 1); -x_24 = l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f___closed__6; -x_25 = lean_unsigned_to_nat(1u); -x_26 = l_Lean_Expr_isAppOfArity(x_22, x_24, x_25); -if (x_26 == 0) -{ -lean_object* x_27; -lean_dec(x_22); -lean_dec(x_17); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -x_27 = lean_box(0); -lean_ctor_set(x_20, 0, x_27); -return x_20; -} -else -{ -lean_object* x_28; lean_object* x_29; -lean_free_object(x_20); -x_28 = l_Lean_Expr_appArg_x21(x_22); -lean_dec(x_22); -lean_inc(x_8); -lean_inc(x_7); -lean_inc(x_6); -x_29 = l_Nat_fromExpr_x3f(x_28, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_23); -if (lean_obj_tag(x_29) == 0) -{ -lean_object* x_30; -x_30 = lean_ctor_get(x_29, 0); -lean_inc(x_30); -if (lean_obj_tag(x_30) == 0) -{ -uint8_t x_31; -lean_dec(x_17); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -x_31 = !lean_is_exclusive(x_29); -if (x_31 == 0) -{ -lean_object* x_32; lean_object* x_33; -x_32 = lean_ctor_get(x_29, 0); -lean_dec(x_32); -x_33 = lean_box(0); -lean_ctor_set(x_29, 0, x_33); -return x_29; -} -else -{ -lean_object* x_34; lean_object* x_35; lean_object* x_36; -x_34 = lean_ctor_get(x_29, 1); -lean_inc(x_34); -lean_dec(x_29); -x_35 = lean_box(0); -x_36 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_36, 0, x_35); -lean_ctor_set(x_36, 1, x_34); -return x_36; -} -} -else -{ -lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; -x_37 = lean_ctor_get(x_29, 1); -lean_inc(x_37); -lean_dec(x_29); -x_38 = lean_ctor_get(x_30, 0); -lean_inc(x_38); -lean_dec(x_30); -x_39 = l_Lean_Expr_appArg_x21(x_17); -lean_dec(x_17); -x_40 = l_Nat_fromExpr_x3f(x_39, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_37); -lean_dec(x_5); -if (lean_obj_tag(x_40) == 0) -{ -lean_object* x_41; -x_41 = lean_ctor_get(x_40, 0); -lean_inc(x_41); -if (lean_obj_tag(x_41) == 0) -{ -uint8_t x_42; -lean_dec(x_38); -x_42 = !lean_is_exclusive(x_40); -if (x_42 == 0) -{ -lean_object* x_43; lean_object* x_44; -x_43 = lean_ctor_get(x_40, 0); -lean_dec(x_43); -x_44 = lean_box(0); -lean_ctor_set(x_40, 0, x_44); -return x_40; -} -else -{ -lean_object* x_45; lean_object* x_46; lean_object* x_47; -x_45 = lean_ctor_get(x_40, 1); -lean_inc(x_45); -lean_dec(x_40); -x_46 = lean_box(0); -x_47 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_47, 0, x_46); -lean_ctor_set(x_47, 1, x_45); -return x_47; -} -} -else -{ -uint8_t x_48; -x_48 = !lean_is_exclusive(x_40); -if (x_48 == 0) -{ -lean_object* x_49; uint8_t x_50; -x_49 = lean_ctor_get(x_40, 0); -lean_dec(x_49); -x_50 = !lean_is_exclusive(x_41); -if (x_50 == 0) -{ -lean_object* x_51; lean_object* x_52; lean_object* x_53; -x_51 = lean_ctor_get(x_41, 0); -x_52 = l_Std_BitVec_ofNat(x_38, x_51); -lean_dec(x_51); -x_53 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_53, 0, x_38); -lean_ctor_set(x_53, 1, x_52); -lean_ctor_set(x_41, 0, x_53); -return x_40; -} -else -{ -lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; -x_54 = lean_ctor_get(x_41, 0); -lean_inc(x_54); -lean_dec(x_41); -x_55 = l_Std_BitVec_ofNat(x_38, x_54); -lean_dec(x_54); -x_56 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_56, 0, x_38); -lean_ctor_set(x_56, 1, x_55); -x_57 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_57, 0, x_56); -lean_ctor_set(x_40, 0, x_57); -return x_40; -} -} -else -{ -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; -x_58 = lean_ctor_get(x_40, 1); -lean_inc(x_58); -lean_dec(x_40); -x_59 = lean_ctor_get(x_41, 0); -lean_inc(x_59); -if (lean_is_exclusive(x_41)) { - lean_ctor_release(x_41, 0); - x_60 = x_41; -} else { - lean_dec_ref(x_41); - x_60 = lean_box(0); -} -x_61 = l_Std_BitVec_ofNat(x_38, x_59); -lean_dec(x_59); -x_62 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_62, 0, x_38); -lean_ctor_set(x_62, 1, x_61); -if (lean_is_scalar(x_60)) { - x_63 = lean_alloc_ctor(1, 1, 0); -} else { - x_63 = x_60; -} -lean_ctor_set(x_63, 0, x_62); -x_64 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_64, 0, x_63); -lean_ctor_set(x_64, 1, x_58); -return x_64; -} -} -} -else -{ -uint8_t x_65; -lean_dec(x_38); -x_65 = !lean_is_exclusive(x_40); -if (x_65 == 0) -{ -return x_40; -} -else -{ -lean_object* x_66; lean_object* x_67; lean_object* x_68; -x_66 = lean_ctor_get(x_40, 0); -x_67 = lean_ctor_get(x_40, 1); -lean_inc(x_67); -lean_inc(x_66); -lean_dec(x_40); -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; -} -} -} -} -else -{ -uint8_t x_69; -lean_dec(x_17); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -x_69 = !lean_is_exclusive(x_29); -if (x_69 == 0) -{ -return x_29; -} -else -{ -lean_object* x_70; lean_object* x_71; lean_object* x_72; -x_70 = lean_ctor_get(x_29, 0); -x_71 = lean_ctor_get(x_29, 1); -lean_inc(x_71); -lean_inc(x_70); -lean_dec(x_29); -x_72 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_72, 0, x_70); -lean_ctor_set(x_72, 1, x_71); -return x_72; -} -} -} -} -else -{ -lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; uint8_t x_77; -x_73 = lean_ctor_get(x_20, 0); -x_74 = lean_ctor_get(x_20, 1); -lean_inc(x_74); -lean_inc(x_73); -lean_dec(x_20); -x_75 = l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f___closed__6; -x_76 = lean_unsigned_to_nat(1u); -x_77 = l_Lean_Expr_isAppOfArity(x_73, x_75, x_76); -if (x_77 == 0) -{ -lean_object* x_78; lean_object* x_79; -lean_dec(x_73); -lean_dec(x_17); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -x_78 = lean_box(0); -x_79 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_79, 0, x_78); -lean_ctor_set(x_79, 1, x_74); -return x_79; -} -else -{ -lean_object* x_80; lean_object* x_81; -x_80 = l_Lean_Expr_appArg_x21(x_73); -lean_dec(x_73); -lean_inc(x_8); -lean_inc(x_7); -lean_inc(x_6); -x_81 = l_Nat_fromExpr_x3f(x_80, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_74); -if (lean_obj_tag(x_81) == 0) -{ -lean_object* x_82; -x_82 = lean_ctor_get(x_81, 0); -lean_inc(x_82); -if (lean_obj_tag(x_82) == 0) -{ -lean_object* x_83; lean_object* x_84; lean_object* x_85; lean_object* x_86; -lean_dec(x_17); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -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_81); - x_84 = lean_box(0); -} -x_85 = lean_box(0); -if (lean_is_scalar(x_84)) { - x_86 = lean_alloc_ctor(0, 2, 0); -} else { - x_86 = x_84; -} -lean_ctor_set(x_86, 0, x_85); -lean_ctor_set(x_86, 1, x_83); -return x_86; -} -else -{ -lean_object* x_87; lean_object* x_88; lean_object* x_89; lean_object* x_90; -x_87 = lean_ctor_get(x_81, 1); -lean_inc(x_87); -lean_dec(x_81); -x_88 = lean_ctor_get(x_82, 0); -lean_inc(x_88); -lean_dec(x_82); -x_89 = l_Lean_Expr_appArg_x21(x_17); -lean_dec(x_17); -x_90 = l_Nat_fromExpr_x3f(x_89, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_87); -lean_dec(x_5); -if (lean_obj_tag(x_90) == 0) -{ -lean_object* x_91; -x_91 = lean_ctor_get(x_90, 0); -lean_inc(x_91); -if (lean_obj_tag(x_91) == 0) -{ -lean_object* x_92; lean_object* x_93; lean_object* x_94; lean_object* x_95; -lean_dec(x_88); -x_92 = lean_ctor_get(x_90, 1); -lean_inc(x_92); -if (lean_is_exclusive(x_90)) { - lean_ctor_release(x_90, 0); - lean_ctor_release(x_90, 1); - x_93 = x_90; -} else { - lean_dec_ref(x_90); - x_93 = lean_box(0); -} -x_94 = lean_box(0); -if (lean_is_scalar(x_93)) { - x_95 = lean_alloc_ctor(0, 2, 0); -} else { - x_95 = x_93; -} -lean_ctor_set(x_95, 0, x_94); -lean_ctor_set(x_95, 1, x_92); -return x_95; -} -else -{ -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_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 { - lean_dec_ref(x_90); - x_97 = lean_box(0); -} -x_98 = lean_ctor_get(x_91, 0); -lean_inc(x_98); -if (lean_is_exclusive(x_91)) { - lean_ctor_release(x_91, 0); - x_99 = x_91; -} else { - lean_dec_ref(x_91); - x_99 = lean_box(0); -} -x_100 = l_Std_BitVec_ofNat(x_88, x_98); -lean_dec(x_98); -x_101 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_101, 0, x_88); -lean_ctor_set(x_101, 1, x_100); -if (lean_is_scalar(x_99)) { - x_102 = lean_alloc_ctor(1, 1, 0); -} else { - x_102 = x_99; -} -lean_ctor_set(x_102, 0, x_101); -if (lean_is_scalar(x_97)) { - x_103 = lean_alloc_ctor(0, 2, 0); -} else { - x_103 = x_97; -} -lean_ctor_set(x_103, 0, x_102); -lean_ctor_set(x_103, 1, x_96); -return x_103; -} -} -else -{ -lean_object* x_104; lean_object* x_105; lean_object* x_106; lean_object* x_107; -lean_dec(x_88); -x_104 = lean_ctor_get(x_90, 0); -lean_inc(x_104); -x_105 = lean_ctor_get(x_90, 1); -lean_inc(x_105); -if (lean_is_exclusive(x_90)) { - lean_ctor_release(x_90, 0); - lean_ctor_release(x_90, 1); - x_106 = x_90; -} else { - lean_dec_ref(x_90); - x_106 = lean_box(0); -} -if (lean_is_scalar(x_106)) { - x_107 = lean_alloc_ctor(1, 2, 0); -} else { - x_107 = x_106; -} -lean_ctor_set(x_107, 0, x_104); -lean_ctor_set(x_107, 1, x_105); -return x_107; -} -} -} -else -{ -lean_object* x_108; lean_object* x_109; lean_object* x_110; lean_object* x_111; -lean_dec(x_17); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -x_108 = lean_ctor_get(x_81, 0); -lean_inc(x_108); -x_109 = lean_ctor_get(x_81, 1); -lean_inc(x_109); -if (lean_is_exclusive(x_81)) { - lean_ctor_release(x_81, 0); - lean_ctor_release(x_81, 1); - x_110 = x_81; -} else { - lean_dec_ref(x_81); - x_110 = lean_box(0); -} -if (lean_is_scalar(x_110)) { - x_111 = lean_alloc_ctor(1, 2, 0); -} else { - x_111 = x_110; -} -lean_ctor_set(x_111, 0, x_108); -lean_ctor_set(x_111, 1, x_109); -return x_111; -} -} -} -} -else -{ -uint8_t x_112; -lean_dec(x_17); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -x_112 = !lean_is_exclusive(x_20); -if (x_112 == 0) -{ -return x_20; -} -else -{ -lean_object* x_113; lean_object* x_114; lean_object* x_115; -x_113 = lean_ctor_get(x_20, 0); -x_114 = lean_ctor_get(x_20, 1); -lean_inc(x_114); -lean_inc(x_113); -lean_dec(x_20); -x_115 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_115, 0, x_113); -lean_ctor_set(x_115, 1, x_114); -return x_115; -} -} -} -} -} -} -LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f___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* l_BitVec_sub(lean_object*, lean_object*, lean_object*); +static lean_object* l_BitVec_reduceUnary___lambda__1___closed__2; +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceToInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2486_(lean_object*); +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1460_(lean_object*); +static lean_object* l___regBuiltin_BitVec_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2872____closed__3; +LEAN_EXPORT lean_object* l_BitVec_reduceGetBit___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___regBuiltin_BitVec_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1416____closed__13; +LEAN_EXPORT lean_object* l_BitVec_reduceSub___lambda__2(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_BitVec_sle(lean_object*, lean_object*, lean_object*); +static lean_object* l___regBuiltin_BitVec_reduceCast_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2266____closed__5; +static lean_object* l___regBuiltin_BitVec_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1500____closed__10; +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceULE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3047_(lean_object*); +static lean_object* l___regBuiltin_BitVec_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1206____closed__7; +static lean_object* l___regBuiltin_BitVec_reduceRotateLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1938____closed__3; +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceUMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1572_(lean_object*); +static lean_object* l___regBuiltin_BitVec_reduceAllOnes_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3901____closed__4; +static lean_object* l_BitVec_reduceSMTUDiv___closed__1; +static lean_object* l___regBuiltin_BitVec_reduceRotateRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1960____closed__4; +static lean_object* l___regBuiltin_BitVec_reduceSLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3093____closed__5; +LEAN_EXPORT lean_object* l_BitVec_fromExpr_x3f(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___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f(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___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromBitVecExpr_x3f___closed__1() { -_start: +x_10 = l_Lean_Meta_getBitVecValue_x3f(x_1, x_5, x_6, x_7, x_8, x_9); +if (lean_obj_tag(x_10) == 0) { -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f___closed__4; -x_2 = l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f___closed__5; -x_3 = l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f___closed__2; -x_4 = l_Lean_Name_mkStr3(x_1, x_2, x_3); -return x_4; -} -} -LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromBitVecExpr_x3f(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; uint8_t x_12; lean_object* x_13; lean_object* x_14; -x_10 = l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromBitVecExpr_x3f___closed__1; -x_11 = lean_unsigned_to_nat(2u); -x_12 = l_Lean_Expr_isAppOfArity(x_1, x_10, x_11); -if (x_12 == 0) -{ -lean_object* x_64; -x_64 = lean_box(0); -x_13 = x_64; -x_14 = x_9; -goto block_63; -} -else -{ -lean_object* x_65; -x_65 = l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f___closed__7; -x_13 = x_65; -x_14 = x_9; -goto block_63; -} -block_63: -{ -if (lean_obj_tag(x_13) == 0) -{ -lean_object* x_15; lean_object* x_16; -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_1); -x_15 = lean_box(0); -x_16 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_16, 0, x_15); -lean_ctor_set(x_16, 1, x_14); -return x_16; -} -else -{ -lean_object* x_17; lean_object* x_18; lean_object* x_19; -lean_dec(x_13); -lean_inc(x_1); -x_17 = l_Lean_Expr_appFn_x21(x_1); -x_18 = l_Lean_Expr_appArg_x21(x_17); -lean_dec(x_17); -lean_inc(x_8); -lean_inc(x_7); -lean_inc(x_6); -x_19 = l_Nat_fromExpr_x3f(x_18, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_14); -if (lean_obj_tag(x_19) == 0) -{ -lean_object* x_20; -x_20 = lean_ctor_get(x_19, 0); -lean_inc(x_20); -if (lean_obj_tag(x_20) == 0) -{ -uint8_t x_21; -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_1); -x_21 = !lean_is_exclusive(x_19); -if (x_21 == 0) -{ -lean_object* x_22; lean_object* x_23; -x_22 = lean_ctor_get(x_19, 0); -lean_dec(x_22); -x_23 = lean_box(0); -lean_ctor_set(x_19, 0, x_23); -return x_19; -} -else -{ -lean_object* x_24; lean_object* x_25; lean_object* x_26; -x_24 = lean_ctor_get(x_19, 1); -lean_inc(x_24); -lean_dec(x_19); -x_25 = lean_box(0); -x_26 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_26, 0, x_25); -lean_ctor_set(x_26, 1, x_24); -return x_26; -} -} -else -{ -lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; -x_27 = lean_ctor_get(x_19, 1); -lean_inc(x_27); -lean_dec(x_19); -x_28 = lean_ctor_get(x_20, 0); -lean_inc(x_28); -lean_dec(x_20); -x_29 = l_Lean_Expr_appArg_x21(x_1); -lean_dec(x_1); -x_30 = l_Nat_fromExpr_x3f(x_29, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_27); -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_28); -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_box(0); -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_box(0); -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 -{ -uint8_t x_38; -x_38 = !lean_is_exclusive(x_30); -if (x_38 == 0) -{ -lean_object* x_39; uint8_t x_40; -x_39 = lean_ctor_get(x_30, 0); -lean_dec(x_39); -x_40 = !lean_is_exclusive(x_31); -if (x_40 == 0) -{ -lean_object* x_41; lean_object* x_42; lean_object* x_43; -x_41 = lean_ctor_get(x_31, 0); -x_42 = l_Std_BitVec_ofNat(x_28, x_41); -lean_dec(x_41); -x_43 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_43, 0, x_28); -lean_ctor_set(x_43, 1, x_42); -lean_ctor_set(x_31, 0, x_43); -return x_30; -} -else -{ -lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; -x_44 = lean_ctor_get(x_31, 0); -lean_inc(x_44); -lean_dec(x_31); -x_45 = l_Std_BitVec_ofNat(x_28, x_44); -lean_dec(x_44); -x_46 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_46, 0, x_28); -lean_ctor_set(x_46, 1, x_45); -x_47 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_47, 0, x_46); -lean_ctor_set(x_30, 0, x_47); -return x_30; -} -} -else -{ -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; -x_48 = lean_ctor_get(x_30, 1); -lean_inc(x_48); -lean_dec(x_30); -x_49 = lean_ctor_get(x_31, 0); -lean_inc(x_49); -if (lean_is_exclusive(x_31)) { - lean_ctor_release(x_31, 0); - x_50 = x_31; -} else { - lean_dec_ref(x_31); - x_50 = lean_box(0); -} -x_51 = l_Std_BitVec_ofNat(x_28, x_49); -lean_dec(x_49); -x_52 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_52, 0, x_28); -lean_ctor_set(x_52, 1, x_51); -if (lean_is_scalar(x_50)) { - x_53 = lean_alloc_ctor(1, 1, 0); -} else { - x_53 = x_50; -} -lean_ctor_set(x_53, 0, x_52); -x_54 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_54, 0, x_53); -lean_ctor_set(x_54, 1, x_48); -return x_54; -} -} -} -else -{ -uint8_t x_55; -lean_dec(x_28); -x_55 = !lean_is_exclusive(x_30); -if (x_55 == 0) -{ -return x_30; -} -else -{ -lean_object* x_56; lean_object* x_57; lean_object* x_58; -x_56 = lean_ctor_get(x_30, 0); -x_57 = lean_ctor_get(x_30, 1); -lean_inc(x_57); -lean_inc(x_56); -lean_dec(x_30); -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; -} -} -} -} -else -{ -uint8_t x_59; -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_1); -x_59 = !lean_is_exclusive(x_19); -if (x_59 == 0) -{ -return x_19; -} -else -{ -lean_object* x_60; lean_object* x_61; lean_object* x_62; -x_60 = lean_ctor_get(x_19, 0); -x_61 = lean_ctor_get(x_19, 1); -lean_inc(x_61); -lean_inc(x_60); -lean_dec(x_19); -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; -} -} -} -} -} -} -LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromBitVecExpr_x3f___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___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromBitVecExpr_x3f(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -return x_10; -} -} -LEAN_EXPORT lean_object* l_Std_BitVec_fromExpr_x3f(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; -x_10 = l_Lean_Meta_saveState___rarg(x_6, x_7, x_8, x_9); +lean_object* x_11; 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); -lean_inc(x_8); -lean_inc(x_7); -lean_inc(x_6); -lean_inc(x_1); -x_13 = l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromBitVecExpr_x3f(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_12); -if (lean_obj_tag(x_13) == 0) +if (lean_obj_tag(x_11) == 0) { -lean_dec(x_11); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_1); -return x_13; -} -else +uint8_t x_12; +x_12 = !lean_is_exclusive(x_10); +if (x_12 == 0) { -uint8_t x_14; -x_14 = !lean_is_exclusive(x_13); -if (x_14 == 0) -{ -lean_object* x_15; lean_object* x_16; uint8_t x_17; -x_15 = lean_ctor_get(x_13, 0); -x_16 = lean_ctor_get(x_13, 1); -x_17 = l_Lean_Exception_isRuntime(x_15); -if (x_17 == 0) -{ -lean_object* x_18; lean_object* x_19; lean_object* x_20; -lean_free_object(x_13); -lean_dec(x_15); -x_18 = l_Lean_Meta_SavedState_restore(x_11, x_5, x_6, x_7, x_8, x_16); -lean_dec(x_11); -x_19 = lean_ctor_get(x_18, 1); -lean_inc(x_19); -lean_dec(x_18); -x_20 = l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_19); -return x_20; -} -else -{ -uint8_t x_21; -x_21 = lean_ctor_get_uint8(x_7, sizeof(void*)*11); -if (x_21 == 0) -{ -lean_dec(x_11); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_1); -return x_13; -} -else -{ -lean_object* x_22; lean_object* x_23; lean_object* x_24; -lean_free_object(x_13); -lean_dec(x_15); -x_22 = l_Lean_Meta_SavedState_restore(x_11, x_5, x_6, x_7, x_8, x_16); -lean_dec(x_11); -x_23 = lean_ctor_get(x_22, 1); -lean_inc(x_23); -lean_dec(x_22); -x_24 = l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_23); -return x_24; -} -} -} -else -{ -lean_object* x_25; lean_object* x_26; uint8_t x_27; -x_25 = lean_ctor_get(x_13, 0); -x_26 = lean_ctor_get(x_13, 1); -lean_inc(x_26); -lean_inc(x_25); +lean_object* x_13; lean_object* x_14; +x_13 = lean_ctor_get(x_10, 0); lean_dec(x_13); -x_27 = l_Lean_Exception_isRuntime(x_25); -if (x_27 == 0) +x_14 = lean_box(0); +lean_ctor_set(x_10, 0, x_14); +return x_10; +} +else { -lean_object* x_28; lean_object* x_29; lean_object* x_30; +lean_object* x_15; lean_object* x_16; lean_object* x_17; +x_15 = lean_ctor_get(x_10, 1); +lean_inc(x_15); +lean_dec(x_10); +x_16 = lean_box(0); +x_17 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_17, 0, x_16); +lean_ctor_set(x_17, 1, x_15); +return x_17; +} +} +else +{ +uint8_t x_18; +x_18 = !lean_is_exclusive(x_11); +if (x_18 == 0) +{ +uint8_t x_19; +x_19 = !lean_is_exclusive(x_10); +if (x_19 == 0) +{ +lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; +x_20 = lean_ctor_get(x_11, 0); +x_21 = lean_ctor_get(x_10, 0); +lean_dec(x_21); +x_22 = lean_ctor_get(x_20, 0); +lean_inc(x_22); +x_23 = lean_ctor_get(x_20, 1); +lean_inc(x_23); +lean_dec(x_20); +x_24 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_24, 0, x_22); +lean_ctor_set(x_24, 1, x_23); +lean_ctor_set(x_11, 0, x_24); +return x_10; +} +else +{ +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_25 = lean_ctor_get(x_11, 0); +x_26 = lean_ctor_get(x_10, 1); +lean_inc(x_26); +lean_dec(x_10); +x_27 = lean_ctor_get(x_25, 0); +lean_inc(x_27); +x_28 = lean_ctor_get(x_25, 1); +lean_inc(x_28); lean_dec(x_25); -x_28 = l_Lean_Meta_SavedState_restore(x_11, x_5, x_6, x_7, x_8, x_26); -lean_dec(x_11); -x_29 = lean_ctor_get(x_28, 1); -lean_inc(x_29); -lean_dec(x_28); -x_30 = l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_29); +x_29 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_29, 0, x_27); +lean_ctor_set(x_29, 1, x_28); +lean_ctor_set(x_11, 0, x_29); +x_30 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_30, 0, x_11); +lean_ctor_set(x_30, 1, x_26); return x_30; } -else -{ -uint8_t x_31; -x_31 = lean_ctor_get_uint8(x_7, sizeof(void*)*11); -if (x_31 == 0) -{ -lean_object* x_32; -lean_dec(x_11); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_1); -x_32 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_32, 0, x_25); -lean_ctor_set(x_32, 1, x_26); -return x_32; } else { -lean_object* x_33; lean_object* x_34; lean_object* x_35; -lean_dec(x_25); -x_33 = l_Lean_Meta_SavedState_restore(x_11, x_5, x_6, x_7, x_8, x_26); +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; +x_31 = lean_ctor_get(x_11, 0); +lean_inc(x_31); lean_dec(x_11); -x_34 = lean_ctor_get(x_33, 1); +x_32 = lean_ctor_get(x_10, 1); +lean_inc(x_32); +if (lean_is_exclusive(x_10)) { + lean_ctor_release(x_10, 0); + lean_ctor_release(x_10, 1); + x_33 = x_10; +} else { + lean_dec_ref(x_10); + x_33 = lean_box(0); +} +x_34 = lean_ctor_get(x_31, 0); lean_inc(x_34); -lean_dec(x_33); -x_35 = l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_34); -return x_35; +x_35 = lean_ctor_get(x_31, 1); +lean_inc(x_35); +lean_dec(x_31); +x_36 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_36, 0, x_34); +lean_ctor_set(x_36, 1, x_35); +x_37 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_37, 0, x_36); +if (lean_is_scalar(x_33)) { + x_38 = lean_alloc_ctor(0, 2, 0); +} else { + x_38 = x_33; +} +lean_ctor_set(x_38, 0, x_37); +lean_ctor_set(x_38, 1, x_32); +return x_38; +} +} +} +else +{ +uint8_t x_39; +x_39 = !lean_is_exclusive(x_10); +if (x_39 == 0) +{ +return x_10; +} +else +{ +lean_object* x_40; lean_object* x_41; lean_object* x_42; +x_40 = lean_ctor_get(x_10, 0); +x_41 = lean_ctor_get(x_10, 1); +lean_inc(x_41); +lean_inc(x_40); +lean_dec(x_10); +x_42 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_42, 0, x_40); +lean_ctor_set(x_42, 1, x_41); +return x_42; } } } } -} -} -LEAN_EXPORT lean_object* l_Std_BitVec_fromExpr_x3f___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_EXPORT lean_object* l_BitVec_fromExpr_x3f___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_Std_BitVec_fromExpr_x3f(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_10 = l_BitVec_fromExpr_x3f(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); +lean_dec(x_1); return x_10; } } -static lean_object* _init_l_Std_BitVec_Literal_toExpr___closed__1() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromBitVecExpr_x3f___closed__1; -x_3 = l_Lean_Expr_const___override(x_2, x_1); -return x_3; -} -} -LEAN_EXPORT lean_object* l_Std_BitVec_Literal_toExpr(lean_object* x_1) { -_start: -{ -lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; -x_2 = lean_ctor_get(x_1, 0); -lean_inc(x_2); -x_3 = l_Lean_mkNatLit(x_2); -x_4 = lean_ctor_get(x_1, 1); -lean_inc(x_4); -lean_dec(x_1); -x_5 = l_Lean_mkNatLit(x_4); -x_6 = l_Std_BitVec_Literal_toExpr___closed__1; -x_7 = l_Lean_mkAppB(x_6, x_3, x_5); -return x_7; -} -} -static lean_object* _init_l_Std_BitVec_reduceUnary___lambda__1___closed__1() { +static lean_object* _init_l_BitVec_reduceUnary___lambda__1___closed__1() { _start: { lean_object* x_1; lean_object* x_2; @@ -2078,12 +1178,49 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -LEAN_EXPORT lean_object* l_Std_BitVec_reduceUnary___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, lean_object* x_11) { +static lean_object* _init_l_BitVec_reduceUnary___lambda__1___closed__2() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("BitVec", 6); +return x_1; +} +} +static lean_object* _init_l_BitVec_reduceUnary___lambda__1___closed__3() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("ofNat", 5); +return x_1; +} +} +static lean_object* _init_l_BitVec_reduceUnary___lambda__1___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_BitVec_reduceUnary___lambda__1___closed__2; +x_2 = l_BitVec_reduceUnary___lambda__1___closed__3; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_BitVec_reduceUnary___lambda__1___closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_BitVec_reduceUnary___lambda__1___closed__4; +x_3 = l_Lean_Expr_const___override(x_2, x_1); +return x_3; +} +} +LEAN_EXPORT lean_object* l_BitVec_reduceUnary___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, lean_object* x_11) { _start: { lean_object* x_12; lean_object* x_13; x_12 = l_Lean_Expr_appArg_x21(x_1); -x_13 = l_Std_BitVec_fromExpr_x3f(x_12, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +x_13 = l_BitVec_fromExpr_x3f(x_12, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_12); if (lean_obj_tag(x_13) == 0) { lean_object* x_14; @@ -2099,7 +1236,7 @@ if (x_15 == 0) lean_object* x_16; lean_object* x_17; x_16 = lean_ctor_get(x_13, 0); lean_dec(x_16); -x_17 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_17 = l_BitVec_reduceUnary___lambda__1___closed__1; lean_ctor_set(x_13, 0, x_17); return x_13; } @@ -2109,7 +1246,7 @@ lean_object* x_18; lean_object* x_19; lean_object* x_20; x_18 = lean_ctor_get(x_13, 1); lean_inc(x_18); lean_dec(x_13); -x_19 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_19 = l_BitVec_reduceUnary___lambda__1___closed__1; x_20 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_20, 0, x_19); lean_ctor_set(x_20, 1, x_18); @@ -2118,138 +1255,103 @@ return x_20; } else { -lean_object* x_21; uint8_t x_22; -x_21 = lean_ctor_get(x_14, 0); -lean_inc(x_21); +uint8_t x_21; +x_21 = !lean_is_exclusive(x_13); +if (x_21 == 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_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; uint32_t x_32; uint8_t x_33; lean_object* x_34; lean_object* x_35; +x_22 = lean_ctor_get(x_13, 0); +lean_dec(x_22); +x_23 = lean_ctor_get(x_14, 0); +lean_inc(x_23); lean_dec(x_14); -x_22 = !lean_is_exclusive(x_13); -if (x_22 == 0) -{ -lean_object* x_23; uint8_t x_24; -x_23 = lean_ctor_get(x_13, 0); -lean_dec(x_23); -x_24 = !lean_is_exclusive(x_21); -if (x_24 == 0) -{ -lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; uint32_t x_30; uint8_t x_31; lean_object* x_32; lean_object* x_33; -x_25 = lean_ctor_get(x_21, 0); -x_26 = lean_ctor_get(x_21, 1); +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_27 = lean_apply_2(x_2, x_25, x_26); -lean_ctor_set(x_21, 1, x_27); -x_28 = l_Std_BitVec_Literal_toExpr(x_21); -x_29 = lean_box(0); -x_30 = 0; -x_31 = 1; -x_32 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_32, 0, x_28); -lean_ctor_set(x_32, 1, x_29); -lean_ctor_set_uint32(x_32, sizeof(void*)*2, x_30); -lean_ctor_set_uint8(x_32, sizeof(void*)*2 + 4, x_31); -x_33 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_33, 0, x_32); -lean_ctor_set(x_13, 0, x_33); +lean_dec(x_23); +lean_inc(x_24); +x_26 = lean_apply_2(x_2, x_24, x_25); +x_27 = l_Lean_mkNatLit(x_24); +x_28 = l_Lean_mkNatLit(x_26); +x_29 = l_BitVec_reduceUnary___lambda__1___closed__5; +x_30 = l_Lean_mkAppB(x_29, x_27, x_28); +x_31 = lean_box(0); +x_32 = 0; +x_33 = 1; +x_34 = lean_alloc_ctor(0, 2, 5); +lean_ctor_set(x_34, 0, x_30); +lean_ctor_set(x_34, 1, x_31); +lean_ctor_set_uint32(x_34, sizeof(void*)*2, x_32); +lean_ctor_set_uint8(x_34, sizeof(void*)*2 + 4, x_33); +x_35 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_35, 0, x_34); +lean_ctor_set(x_13, 0, x_35); return x_13; } else { -lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; uint32_t x_40; uint8_t x_41; lean_object* x_42; lean_object* x_43; -x_34 = lean_ctor_get(x_21, 0); -x_35 = lean_ctor_get(x_21, 1); -lean_inc(x_35); -lean_inc(x_34); -lean_dec(x_21); -lean_inc(x_34); -x_36 = lean_apply_2(x_2, x_34, x_35); -x_37 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_37, 0, x_34); -lean_ctor_set(x_37, 1, x_36); -x_38 = l_Std_BitVec_Literal_toExpr(x_37); -x_39 = lean_box(0); -x_40 = 0; -x_41 = 1; -x_42 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_42, 0, x_38); -lean_ctor_set(x_42, 1, x_39); -lean_ctor_set_uint32(x_42, sizeof(void*)*2, x_40); -lean_ctor_set_uint8(x_42, sizeof(void*)*2 + 4, x_41); -x_43 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_43, 0, x_42); -lean_ctor_set(x_13, 0, x_43); -return x_13; -} -} -else -{ -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; uint32_t x_52; uint8_t x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; -x_44 = lean_ctor_get(x_13, 1); -lean_inc(x_44); +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; uint32_t x_46; uint8_t x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; +x_36 = lean_ctor_get(x_13, 1); +lean_inc(x_36); lean_dec(x_13); -x_45 = lean_ctor_get(x_21, 0); -lean_inc(x_45); -x_46 = lean_ctor_get(x_21, 1); -lean_inc(x_46); -if (lean_is_exclusive(x_21)) { - lean_ctor_release(x_21, 0); - lean_ctor_release(x_21, 1); - x_47 = x_21; -} else { - lean_dec_ref(x_21); - x_47 = lean_box(0); -} -lean_inc(x_45); -x_48 = lean_apply_2(x_2, x_45, x_46); -if (lean_is_scalar(x_47)) { - x_49 = lean_alloc_ctor(0, 2, 0); -} else { - x_49 = x_47; -} -lean_ctor_set(x_49, 0, x_45); -lean_ctor_set(x_49, 1, x_48); -x_50 = l_Std_BitVec_Literal_toExpr(x_49); -x_51 = lean_box(0); -x_52 = 0; -x_53 = 1; -x_54 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_54, 0, x_50); -lean_ctor_set(x_54, 1, x_51); -lean_ctor_set_uint32(x_54, sizeof(void*)*2, x_52); -lean_ctor_set_uint8(x_54, sizeof(void*)*2 + 4, x_53); -x_55 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_55, 0, x_54); -x_56 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_56, 0, x_55); -lean_ctor_set(x_56, 1, x_44); -return x_56; +x_37 = lean_ctor_get(x_14, 0); +lean_inc(x_37); +lean_dec(x_14); +x_38 = lean_ctor_get(x_37, 0); +lean_inc(x_38); +x_39 = lean_ctor_get(x_37, 1); +lean_inc(x_39); +lean_dec(x_37); +lean_inc(x_38); +x_40 = lean_apply_2(x_2, x_38, x_39); +x_41 = l_Lean_mkNatLit(x_38); +x_42 = l_Lean_mkNatLit(x_40); +x_43 = l_BitVec_reduceUnary___lambda__1___closed__5; +x_44 = l_Lean_mkAppB(x_43, x_41, x_42); +x_45 = lean_box(0); +x_46 = 0; +x_47 = 1; +x_48 = lean_alloc_ctor(0, 2, 5); +lean_ctor_set(x_48, 0, x_44); +lean_ctor_set(x_48, 1, x_45); +lean_ctor_set_uint32(x_48, sizeof(void*)*2, x_46); +lean_ctor_set_uint8(x_48, sizeof(void*)*2 + 4, x_47); +x_49 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_49, 0, x_48); +x_50 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_50, 0, x_49); +lean_ctor_set(x_50, 1, x_36); +return x_50; } } } else { -uint8_t x_57; +uint8_t x_51; lean_dec(x_2); -x_57 = !lean_is_exclusive(x_13); -if (x_57 == 0) +x_51 = !lean_is_exclusive(x_13); +if (x_51 == 0) { return x_13; } else { -lean_object* x_58; lean_object* x_59; lean_object* x_60; -x_58 = lean_ctor_get(x_13, 0); -x_59 = lean_ctor_get(x_13, 1); -lean_inc(x_59); -lean_inc(x_58); +lean_object* x_52; lean_object* x_53; lean_object* x_54; +x_52 = lean_ctor_get(x_13, 0); +x_53 = lean_ctor_get(x_13, 1); +lean_inc(x_53); +lean_inc(x_52); lean_dec(x_13); -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; +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; } } } } -LEAN_EXPORT lean_object* l_Std_BitVec_reduceUnary(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_EXPORT lean_object* l_BitVec_reduceUnary(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: { uint8_t x_13; @@ -2267,7 +1369,7 @@ lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); -x_14 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_14 = l_BitVec_reduceUnary___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_12); @@ -2277,7 +1379,7 @@ else { lean_object* x_16; lean_object* x_17; x_16 = lean_box(0); -x_17 = l_Std_BitVec_reduceUnary___lambda__1(x_4, x_3, x_16, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +x_17 = l_BitVec_reduceUnary___lambda__1(x_4, x_3, x_16, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); @@ -2286,11 +1388,11 @@ return x_17; } } } -LEAN_EXPORT lean_object* l_Std_BitVec_reduceUnary___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, lean_object* x_11) { +LEAN_EXPORT lean_object* l_BitVec_reduceUnary___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, lean_object* x_11) { _start: { lean_object* x_12; -x_12 = l_Std_BitVec_reduceUnary___lambda__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +x_12 = l_BitVec_reduceUnary___lambda__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); @@ -2299,36 +1401,39 @@ lean_dec(x_1); return x_12; } } -LEAN_EXPORT lean_object* l_Std_BitVec_reduceBin___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, lean_object* x_11, lean_object* x_12, lean_object* x_13) { +LEAN_EXPORT lean_object* l_BitVec_reduceBin___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, 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; lean_object* x_18; uint32_t x_19; uint8_t x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; +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; uint32_t x_22; uint8_t x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; x_14 = lean_ctor_get(x_1, 1); lean_inc(x_14); lean_dec(x_1); -lean_inc(x_3); -x_15 = lean_apply_3(x_2, x_3, x_4, x_14); -x_16 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_16, 0, x_3); -lean_ctor_set(x_16, 1, x_15); -x_17 = l_Std_BitVec_Literal_toExpr(x_16); -x_18 = lean_box(0); -x_19 = 0; -x_20 = 1; -x_21 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_21, 0, x_17); -lean_ctor_set(x_21, 1, x_18); -lean_ctor_set_uint32(x_21, sizeof(void*)*2, x_19); -lean_ctor_set_uint8(x_21, sizeof(void*)*2 + 4, x_20); -x_22 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_22, 0, x_21); -x_23 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_23, 0, x_22); -lean_ctor_set(x_23, 1, x_13); -return x_23; +x_15 = lean_ctor_get(x_2, 1); +lean_inc(x_15); +lean_dec(x_2); +lean_inc(x_4); +x_16 = lean_apply_3(x_3, x_4, x_14, x_15); +x_17 = l_Lean_mkNatLit(x_4); +x_18 = l_Lean_mkNatLit(x_16); +x_19 = l_BitVec_reduceUnary___lambda__1___closed__5; +x_20 = l_Lean_mkAppB(x_19, x_17, x_18); +x_21 = lean_box(0); +x_22 = 0; +x_23 = 1; +x_24 = lean_alloc_ctor(0, 2, 5); +lean_ctor_set(x_24, 0, x_20); +lean_ctor_set(x_24, 1, x_21); +lean_ctor_set_uint32(x_24, sizeof(void*)*2, x_22); +lean_ctor_set_uint8(x_24, sizeof(void*)*2 + 4, x_23); +x_25 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_25, 0, x_24); +x_26 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_26, 0, x_25); +lean_ctor_set(x_26, 1, x_13); +return x_26; } } -static lean_object* _init_l_Std_BitVec_reduceBin___lambda__2___closed__1() { +static lean_object* _init_l_BitVec_reduceBin___lambda__2___closed__1() { _start: { lean_object* x_1; @@ -2336,7 +1441,7 @@ x_1 = lean_mk_string_from_bytes("Meta", 4); return x_1; } } -static lean_object* _init_l_Std_BitVec_reduceBin___lambda__2___closed__2() { +static lean_object* _init_l_BitVec_reduceBin___lambda__2___closed__2() { _start: { lean_object* x_1; @@ -2344,17 +1449,17 @@ x_1 = lean_mk_string_from_bytes("debug", 5); return x_1; } } -static lean_object* _init_l_Std_BitVec_reduceBin___lambda__2___closed__3() { +static lean_object* _init_l_BitVec_reduceBin___lambda__2___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Std_BitVec_reduceBin___lambda__2___closed__1; -x_2 = l_Std_BitVec_reduceBin___lambda__2___closed__2; +x_1 = l_BitVec_reduceBin___lambda__2___closed__1; +x_2 = l_BitVec_reduceBin___lambda__2___closed__2; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } -static lean_object* _init_l_Std_BitVec_reduceBin___lambda__2___closed__4() { +static lean_object* _init_l_BitVec_reduceBin___lambda__2___closed__4() { _start: { lean_object* x_1; @@ -2362,16 +1467,16 @@ x_1 = lean_mk_string_from_bytes("reduce [", 8); return x_1; } } -static lean_object* _init_l_Std_BitVec_reduceBin___lambda__2___closed__5() { +static lean_object* _init_l_BitVec_reduceBin___lambda__2___closed__5() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Std_BitVec_reduceBin___lambda__2___closed__4; +x_1 = l_BitVec_reduceBin___lambda__2___closed__4; x_2 = l_Lean_stringToMessageData(x_1); return x_2; } } -static lean_object* _init_l_Std_BitVec_reduceBin___lambda__2___closed__6() { +static lean_object* _init_l_BitVec_reduceBin___lambda__2___closed__6() { _start: { lean_object* x_1; @@ -2379,16 +1484,16 @@ x_1 = lean_mk_string_from_bytes("] ", 2); return x_1; } } -static lean_object* _init_l_Std_BitVec_reduceBin___lambda__2___closed__7() { +static lean_object* _init_l_BitVec_reduceBin___lambda__2___closed__7() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Std_BitVec_reduceBin___lambda__2___closed__6; +x_1 = l_BitVec_reduceBin___lambda__2___closed__6; x_2 = l_Lean_stringToMessageData(x_1); return x_2; } } -static lean_object* _init_l_Std_BitVec_reduceBin___lambda__2___closed__8() { +static lean_object* _init_l_BitVec_reduceBin___lambda__2___closed__8() { _start: { lean_object* x_1; @@ -2396,17 +1501,17 @@ x_1 = lean_mk_string_from_bytes("0x", 2); return x_1; } } -static lean_object* _init_l_Std_BitVec_reduceBin___lambda__2___closed__9() { +static lean_object* _init_l_BitVec_reduceBin___lambda__2___closed__9() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Std_BitVec_reduceBin___lambda__2___closed__8; +x_1 = l_BitVec_reduceBin___lambda__2___closed__8; x_2 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Std_BitVec_reduceBin___lambda__2___closed__10() { +static lean_object* _init_l_BitVec_reduceBin___lambda__2___closed__10() { _start: { lean_object* x_1; @@ -2414,17 +1519,17 @@ x_1 = lean_mk_string_from_bytes("#", 1); return x_1; } } -static lean_object* _init_l_Std_BitVec_reduceBin___lambda__2___closed__11() { +static lean_object* _init_l_BitVec_reduceBin___lambda__2___closed__11() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Std_BitVec_reduceBin___lambda__2___closed__10; +x_1 = l_BitVec_reduceBin___lambda__2___closed__10; x_2 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Std_BitVec_reduceBin___lambda__2___closed__12() { +static lean_object* _init_l_BitVec_reduceBin___lambda__2___closed__12() { _start: { lean_object* x_1; @@ -2432,16 +1537,16 @@ x_1 = lean_mk_string_from_bytes(", ", 2); return x_1; } } -static lean_object* _init_l_Std_BitVec_reduceBin___lambda__2___closed__13() { +static lean_object* _init_l_BitVec_reduceBin___lambda__2___closed__13() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Std_BitVec_reduceBin___lambda__2___closed__12; +x_1 = l_BitVec_reduceBin___lambda__2___closed__12; x_2 = l_Lean_stringToMessageData(x_1); return x_2; } } -static lean_object* _init_l_Std_BitVec_reduceBin___lambda__2___closed__14() { +static lean_object* _init_l_BitVec_reduceBin___lambda__2___closed__14() { _start: { lean_object* x_1; @@ -2449,16 +1554,16 @@ x_1 = lean_mk_string_from_bytes("", 0); return x_1; } } -static lean_object* _init_l_Std_BitVec_reduceBin___lambda__2___closed__15() { +static lean_object* _init_l_BitVec_reduceBin___lambda__2___closed__15() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Std_BitVec_reduceBin___lambda__2___closed__14; +x_1 = l_BitVec_reduceBin___lambda__2___closed__14; x_2 = l_Lean_stringToMessageData(x_1); return x_2; } } -LEAN_EXPORT lean_object* l_Std_BitVec_reduceBin___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_EXPORT lean_object* l_BitVec_reduceBin___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) { _start: { lean_object* x_13; lean_object* x_14; lean_object* x_15; @@ -2471,7 +1576,8 @@ lean_inc(x_11); lean_inc(x_10); lean_inc(x_9); lean_inc(x_8); -x_15 = l_Std_BitVec_fromExpr_x3f(x_14, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +x_15 = l_BitVec_fromExpr_x3f(x_14, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +lean_dec(x_14); if (lean_obj_tag(x_15) == 0) { lean_object* x_16; @@ -2496,7 +1602,7 @@ if (x_17 == 0) lean_object* x_18; lean_object* x_19; x_18 = lean_ctor_get(x_15, 0); lean_dec(x_18); -x_19 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_19 = l_BitVec_reduceUnary___lambda__1___closed__1; lean_ctor_set(x_15, 0, x_19); return x_15; } @@ -2506,7 +1612,7 @@ lean_object* x_20; lean_object* x_21; lean_object* x_22; x_20 = lean_ctor_get(x_15, 1); lean_inc(x_20); lean_dec(x_15); -x_21 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_21 = l_BitVec_reduceUnary___lambda__1___closed__1; x_22 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_22, 0, x_21); lean_ctor_set(x_22, 1, x_20); @@ -2528,7 +1634,8 @@ lean_inc(x_11); lean_inc(x_10); lean_inc(x_9); lean_inc(x_8); -x_26 = l_Std_BitVec_fromExpr_x3f(x_25, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_23); +x_26 = l_BitVec_fromExpr_x3f(x_25, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_23); +lean_dec(x_25); if (lean_obj_tag(x_26) == 0) { lean_object* x_27; @@ -2553,7 +1660,7 @@ if (x_28 == 0) lean_object* x_29; lean_object* x_30; x_29 = lean_ctor_get(x_26, 0); lean_dec(x_29); -x_30 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_30 = l_BitVec_reduceUnary___lambda__1___closed__1; lean_ctor_set(x_26, 0, x_30); return x_26; } @@ -2563,7 +1670,7 @@ lean_object* x_31; lean_object* x_32; lean_object* x_33; x_31 = lean_ctor_get(x_26, 1); lean_inc(x_31); lean_dec(x_26); -x_32 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_32 = l_BitVec_reduceUnary___lambda__1___closed__1; x_33 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_33, 0, x_32); lean_ctor_set(x_33, 1, x_31); @@ -2576,7 +1683,7 @@ uint8_t x_34; x_34 = !lean_is_exclusive(x_26); if (x_34 == 0) { -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_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; uint8_t x_40; x_35 = lean_ctor_get(x_26, 1); x_36 = lean_ctor_get(x_26, 0); lean_dec(x_36); @@ -2585,19 +1692,16 @@ lean_inc(x_37); lean_dec(x_27); x_38 = lean_ctor_get(x_24, 0); lean_inc(x_38); -x_39 = lean_ctor_get(x_24, 1); +x_39 = lean_ctor_get(x_37, 0); lean_inc(x_39); -lean_dec(x_24); -x_40 = lean_ctor_get(x_37, 0); -lean_inc(x_40); -x_41 = lean_nat_dec_eq(x_38, x_40); -if (x_41 == 0) +x_40 = lean_nat_dec_eq(x_38, x_39); +if (x_40 == 0) { -lean_object* x_42; -lean_dec(x_40); +lean_object* x_41; lean_dec(x_39); lean_dec(x_38); lean_dec(x_37); +lean_dec(x_24); lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); @@ -2607,30 +1711,30 @@ lean_dec(x_6); lean_dec(x_5); lean_dec(x_3); lean_dec(x_2); -x_42 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; -lean_ctor_set(x_26, 0, x_42); +x_41 = l_BitVec_reduceUnary___lambda__1___closed__1; +lean_ctor_set(x_26, 0, x_41); return x_26; } else { -lean_object* x_43; lean_object* x_44; lean_object* x_45; uint8_t x_46; +lean_object* x_42; lean_object* x_43; lean_object* x_44; uint8_t x_45; lean_free_object(x_26); -x_43 = l_Std_BitVec_reduceBin___lambda__2___closed__3; -x_44 = l_Lean_isTracingEnabledFor___at_Lean_Meta_Simp_congrArgs___spec__1(x_43, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_35); -x_45 = lean_ctor_get(x_44, 0); -lean_inc(x_45); -x_46 = lean_unbox(x_45); -lean_dec(x_45); -if (x_46 == 0) -{ -lean_object* x_47; lean_object* x_48; lean_object* x_49; -lean_dec(x_40); -lean_dec(x_3); -x_47 = lean_ctor_get(x_44, 1); -lean_inc(x_47); +x_42 = l_BitVec_reduceBin___lambda__2___closed__3; +x_43 = l_Lean_isTracingEnabledFor___at_Lean_Meta_Simp_congrArgs___spec__1(x_42, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_35); +x_44 = lean_ctor_get(x_43, 0); +lean_inc(x_44); +x_45 = lean_unbox(x_44); lean_dec(x_44); -x_48 = lean_box(0); -x_49 = l_Std_BitVec_reduceBin___lambda__1(x_37, x_2, x_38, x_39, x_48, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_47); +if (x_45 == 0) +{ +lean_object* x_46; lean_object* x_47; lean_object* x_48; +lean_dec(x_39); +lean_dec(x_3); +x_46 = lean_ctor_get(x_43, 1); +lean_inc(x_46); +lean_dec(x_43); +x_47 = lean_box(0); +x_48 = l_BitVec_reduceBin___lambda__1(x_24, x_37, x_2, x_38, x_47, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_46); lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); @@ -2638,32 +1742,33 @@ lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); -return x_49; +return x_48; } 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; 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; -x_50 = lean_ctor_get(x_44, 1); -lean_inc(x_50); -lean_dec(x_44); -x_51 = l_Lean_MessageData_ofName(x_3); -x_52 = l_Std_BitVec_reduceBin___lambda__2___closed__5; -x_53 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_53, 0, x_52); -lean_ctor_set(x_53, 1, x_51); -x_54 = l_Std_BitVec_reduceBin___lambda__2___closed__7; -x_55 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_55, 0, x_53); -lean_ctor_set(x_55, 1, x_54); -lean_inc(x_39); -x_56 = l_Std_BitVec_toHex(x_38, x_39); +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; +x_49 = lean_ctor_get(x_43, 1); +lean_inc(x_49); +lean_dec(x_43); +x_50 = l_Lean_MessageData_ofName(x_3); +x_51 = l_BitVec_reduceBin___lambda__2___closed__5; +x_52 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_52, 0, x_51); +lean_ctor_set(x_52, 1, x_50); +x_53 = l_BitVec_reduceBin___lambda__2___closed__7; +x_54 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_54, 0, x_52); +lean_ctor_set(x_54, 1, x_53); +x_55 = lean_ctor_get(x_24, 1); +lean_inc(x_55); +x_56 = l_BitVec_toHex(x_38, x_55); x_57 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_57, 0, x_56); -x_58 = l_Std_BitVec_reduceBin___lambda__2___closed__9; +x_58 = l_BitVec_reduceBin___lambda__2___closed__9; x_59 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_59, 0, x_58); lean_ctor_set(x_59, 1, x_57); -x_60 = l_Std_BitVec_reduceBin___lambda__2___closed__11; +x_60 = l_BitVec_reduceBin___lambda__2___closed__11; x_61 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_61, 0, x_59); lean_ctor_set(x_61, 1, x_60); @@ -2682,15 +1787,15 @@ lean_ctor_set(x_68, 0, x_67); x_69 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_69, 0, x_68); x_70 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_70, 0, x_55); +lean_ctor_set(x_70, 0, x_54); lean_ctor_set(x_70, 1, x_69); -x_71 = l_Std_BitVec_reduceBin___lambda__2___closed__13; +x_71 = l_BitVec_reduceBin___lambda__2___closed__13; x_72 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_72, 0, x_70); lean_ctor_set(x_72, 1, x_71); x_73 = lean_ctor_get(x_37, 1); lean_inc(x_73); -x_74 = l_Std_BitVec_toHex(x_40, x_73); +x_74 = l_BitVec_toHex(x_39, x_73); x_75 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_75, 0, x_74); x_76 = lean_alloc_ctor(5, 2, 0); @@ -2699,7 +1804,7 @@ lean_ctor_set(x_76, 1, x_75); x_77 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_77, 0, x_76); lean_ctor_set(x_77, 1, x_60); -x_78 = l_Nat_repr(x_40); +x_78 = l_Nat_repr(x_39); x_79 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_79, 0, x_78); x_80 = lean_alloc_ctor(5, 2, 0); @@ -2713,17 +1818,17 @@ lean_ctor_set(x_83, 0, x_82); x_84 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_84, 0, x_72); lean_ctor_set(x_84, 1, x_83); -x_85 = l_Std_BitVec_reduceBin___lambda__2___closed__15; +x_85 = l_BitVec_reduceBin___lambda__2___closed__15; x_86 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_86, 0, x_84); lean_ctor_set(x_86, 1, x_85); -x_87 = l_Lean_addTrace___at_Lean_Meta_Simp_congrArgs___spec__2(x_43, x_86, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_50); +x_87 = l_Lean_addTrace___at_Lean_Meta_Simp_congrArgs___spec__2(x_42, x_86, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_49); x_88 = lean_ctor_get(x_87, 0); lean_inc(x_88); x_89 = lean_ctor_get(x_87, 1); lean_inc(x_89); lean_dec(x_87); -x_90 = l_Std_BitVec_reduceBin___lambda__1(x_37, x_2, x_38, x_39, x_88, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_89); +x_90 = l_BitVec_reduceBin___lambda__1(x_24, x_37, x_2, x_38, x_88, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_89); lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); @@ -2738,7 +1843,7 @@ return x_90; } else { -lean_object* x_91; lean_object* x_92; lean_object* x_93; lean_object* x_94; lean_object* x_95; uint8_t x_96; +lean_object* x_91; lean_object* x_92; lean_object* x_93; lean_object* x_94; uint8_t x_95; x_91 = lean_ctor_get(x_26, 1); lean_inc(x_91); lean_dec(x_26); @@ -2747,19 +1852,16 @@ lean_inc(x_92); lean_dec(x_27); x_93 = lean_ctor_get(x_24, 0); lean_inc(x_93); -x_94 = lean_ctor_get(x_24, 1); +x_94 = lean_ctor_get(x_92, 0); lean_inc(x_94); -lean_dec(x_24); -x_95 = lean_ctor_get(x_92, 0); -lean_inc(x_95); -x_96 = lean_nat_dec_eq(x_93, x_95); -if (x_96 == 0) +x_95 = lean_nat_dec_eq(x_93, x_94); +if (x_95 == 0) { -lean_object* x_97; lean_object* x_98; -lean_dec(x_95); +lean_object* x_96; lean_object* x_97; lean_dec(x_94); lean_dec(x_93); lean_dec(x_92); +lean_dec(x_24); lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); @@ -2769,31 +1871,31 @@ lean_dec(x_6); lean_dec(x_5); lean_dec(x_3); lean_dec(x_2); -x_97 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; -x_98 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_98, 0, x_97); -lean_ctor_set(x_98, 1, x_91); -return x_98; +x_96 = l_BitVec_reduceUnary___lambda__1___closed__1; +x_97 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_97, 0, x_96); +lean_ctor_set(x_97, 1, x_91); +return x_97; } else { -lean_object* x_99; lean_object* x_100; lean_object* x_101; uint8_t x_102; -x_99 = l_Std_BitVec_reduceBin___lambda__2___closed__3; -x_100 = l_Lean_isTracingEnabledFor___at_Lean_Meta_Simp_congrArgs___spec__1(x_99, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_91); -x_101 = lean_ctor_get(x_100, 0); -lean_inc(x_101); -x_102 = lean_unbox(x_101); -lean_dec(x_101); -if (x_102 == 0) -{ -lean_object* x_103; lean_object* x_104; lean_object* x_105; -lean_dec(x_95); -lean_dec(x_3); -x_103 = lean_ctor_get(x_100, 1); -lean_inc(x_103); +lean_object* x_98; lean_object* x_99; lean_object* x_100; uint8_t x_101; +x_98 = l_BitVec_reduceBin___lambda__2___closed__3; +x_99 = l_Lean_isTracingEnabledFor___at_Lean_Meta_Simp_congrArgs___spec__1(x_98, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_91); +x_100 = lean_ctor_get(x_99, 0); +lean_inc(x_100); +x_101 = lean_unbox(x_100); lean_dec(x_100); -x_104 = lean_box(0); -x_105 = l_Std_BitVec_reduceBin___lambda__1(x_92, x_2, x_93, x_94, x_104, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_103); +if (x_101 == 0) +{ +lean_object* x_102; lean_object* x_103; lean_object* x_104; +lean_dec(x_94); +lean_dec(x_3); +x_102 = lean_ctor_get(x_99, 1); +lean_inc(x_102); +lean_dec(x_99); +x_103 = lean_box(0); +x_104 = l_BitVec_reduceBin___lambda__1(x_24, x_92, x_2, x_93, x_103, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_102); lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); @@ -2801,32 +1903,33 @@ lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); -return x_105; +return x_104; } else { -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; -x_106 = lean_ctor_get(x_100, 1); -lean_inc(x_106); -lean_dec(x_100); -x_107 = l_Lean_MessageData_ofName(x_3); -x_108 = l_Std_BitVec_reduceBin___lambda__2___closed__5; -x_109 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_109, 0, x_108); -lean_ctor_set(x_109, 1, x_107); -x_110 = l_Std_BitVec_reduceBin___lambda__2___closed__7; -x_111 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_111, 0, x_109); -lean_ctor_set(x_111, 1, x_110); -lean_inc(x_94); -x_112 = l_Std_BitVec_toHex(x_93, x_94); +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; +x_105 = lean_ctor_get(x_99, 1); +lean_inc(x_105); +lean_dec(x_99); +x_106 = l_Lean_MessageData_ofName(x_3); +x_107 = l_BitVec_reduceBin___lambda__2___closed__5; +x_108 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_108, 0, x_107); +lean_ctor_set(x_108, 1, x_106); +x_109 = l_BitVec_reduceBin___lambda__2___closed__7; +x_110 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_110, 0, x_108); +lean_ctor_set(x_110, 1, x_109); +x_111 = lean_ctor_get(x_24, 1); +lean_inc(x_111); +x_112 = l_BitVec_toHex(x_93, x_111); x_113 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_113, 0, x_112); -x_114 = l_Std_BitVec_reduceBin___lambda__2___closed__9; +x_114 = l_BitVec_reduceBin___lambda__2___closed__9; x_115 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_115, 0, x_114); lean_ctor_set(x_115, 1, x_113); -x_116 = l_Std_BitVec_reduceBin___lambda__2___closed__11; +x_116 = l_BitVec_reduceBin___lambda__2___closed__11; x_117 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_117, 0, x_115); lean_ctor_set(x_117, 1, x_116); @@ -2845,15 +1948,15 @@ lean_ctor_set(x_124, 0, x_123); x_125 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_125, 0, x_124); x_126 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_126, 0, x_111); +lean_ctor_set(x_126, 0, x_110); lean_ctor_set(x_126, 1, x_125); -x_127 = l_Std_BitVec_reduceBin___lambda__2___closed__13; +x_127 = l_BitVec_reduceBin___lambda__2___closed__13; x_128 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_128, 0, x_126); lean_ctor_set(x_128, 1, x_127); x_129 = lean_ctor_get(x_92, 1); lean_inc(x_129); -x_130 = l_Std_BitVec_toHex(x_95, x_129); +x_130 = l_BitVec_toHex(x_94, x_129); x_131 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_131, 0, x_130); x_132 = lean_alloc_ctor(5, 2, 0); @@ -2862,7 +1965,7 @@ lean_ctor_set(x_132, 1, x_131); x_133 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_133, 0, x_132); lean_ctor_set(x_133, 1, x_116); -x_134 = l_Nat_repr(x_95); +x_134 = l_Nat_repr(x_94); x_135 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_135, 0, x_134); x_136 = lean_alloc_ctor(5, 2, 0); @@ -2876,17 +1979,17 @@ lean_ctor_set(x_139, 0, x_138); x_140 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_140, 0, x_128); lean_ctor_set(x_140, 1, x_139); -x_141 = l_Std_BitVec_reduceBin___lambda__2___closed__15; +x_141 = l_BitVec_reduceBin___lambda__2___closed__15; x_142 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_142, 0, x_140); lean_ctor_set(x_142, 1, x_141); -x_143 = l_Lean_addTrace___at_Lean_Meta_Simp_congrArgs___spec__2(x_99, x_142, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_106); +x_143 = l_Lean_addTrace___at_Lean_Meta_Simp_congrArgs___spec__2(x_98, x_142, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_105); x_144 = lean_ctor_get(x_143, 0); lean_inc(x_144); x_145 = lean_ctor_get(x_143, 1); lean_inc(x_145); lean_dec(x_143); -x_146 = l_Std_BitVec_reduceBin___lambda__1(x_92, x_2, x_93, x_94, x_144, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_145); +x_146 = l_BitVec_reduceBin___lambda__1(x_24, x_92, x_2, x_93, x_144, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_145); lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); @@ -2969,7 +2072,7 @@ return x_154; } } } -LEAN_EXPORT lean_object* l_Std_BitVec_reduceBin(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_EXPORT lean_object* l_BitVec_reduceBin(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: { uint8_t x_13; @@ -2987,7 +2090,7 @@ lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_1); -x_14 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_14 = l_BitVec_reduceUnary___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_12); @@ -2997,16 +2100,16 @@ else { lean_object* x_16; lean_object* x_17; x_16 = lean_box(0); -x_17 = l_Std_BitVec_reduceBin___lambda__2(x_4, x_3, x_1, x_16, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +x_17 = l_BitVec_reduceBin___lambda__2(x_4, x_3, x_1, x_16, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); return x_17; } } } -LEAN_EXPORT lean_object* l_Std_BitVec_reduceBin___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, lean_object* x_11, lean_object* x_12, lean_object* x_13) { +LEAN_EXPORT lean_object* l_BitVec_reduceBin___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, lean_object* x_11, lean_object* x_12, lean_object* x_13) { _start: { lean_object* x_14; -x_14 = l_Std_BitVec_reduceBin___lambda__1(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 = l_BitVec_reduceBin___lambda__1(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); lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); @@ -3018,7 +2121,7 @@ lean_dec(x_5); return x_14; } } -LEAN_EXPORT lean_object* l_Std_BitVec_reduceExtend___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, lean_object* x_11) { +LEAN_EXPORT lean_object* l_BitVec_reduceExtend___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, lean_object* x_11) { _start: { lean_object* x_12; lean_object* x_13; @@ -3027,7 +2130,8 @@ lean_inc(x_10); lean_inc(x_9); lean_inc(x_8); lean_inc(x_7); -x_13 = l_Std_BitVec_fromExpr_x3f(x_12, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +x_13 = l_BitVec_fromExpr_x3f(x_12, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_12); if (lean_obj_tag(x_13) == 0) { lean_object* x_14; @@ -3048,7 +2152,7 @@ if (x_15 == 0) lean_object* x_16; lean_object* x_17; x_16 = lean_ctor_get(x_13, 0); lean_dec(x_16); -x_17 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_17 = l_BitVec_reduceUnary___lambda__1___closed__1; lean_ctor_set(x_13, 0, x_17); return x_13; } @@ -3058,7 +2162,7 @@ lean_object* x_18; lean_object* x_19; lean_object* x_20; x_18 = lean_ctor_get(x_13, 1); lean_inc(x_18); lean_dec(x_13); -x_19 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_19 = l_BitVec_reduceUnary___lambda__1___closed__1; x_20 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_20, 0, x_19); lean_ctor_set(x_20, 1, x_18); @@ -3077,8 +2181,7 @@ lean_dec(x_14); x_23 = l_Lean_Expr_appFn_x21(x_1); x_24 = l_Lean_Expr_appArg_x21(x_23); lean_dec(x_23); -x_25 = l_Nat_fromExpr_x3f(x_24, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_21); -lean_dec(x_7); +x_25 = l_Lean_Meta_getNatValue_x3f(x_24, x_7, x_8, x_9, x_10, x_21); if (lean_obj_tag(x_25) == 0) { lean_object* x_26; @@ -3095,7 +2198,7 @@ if (x_27 == 0) lean_object* x_28; lean_object* x_29; x_28 = lean_ctor_get(x_25, 0); lean_dec(x_28); -x_29 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_29 = l_BitVec_reduceUnary___lambda__1___closed__1; lean_ctor_set(x_25, 0, x_29); return x_25; } @@ -3105,7 +2208,7 @@ lean_object* x_30; lean_object* x_31; lean_object* x_32; x_30 = lean_ctor_get(x_25, 1); lean_inc(x_30); lean_dec(x_25); -x_31 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_31 = l_BitVec_reduceUnary___lambda__1___closed__1; x_32 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_32, 0, x_31); lean_ctor_set(x_32, 1, x_30); @@ -3118,7 +2221,7 @@ uint8_t x_33; x_33 = !lean_is_exclusive(x_25); if (x_33 == 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; lean_object* x_41; uint32_t x_42; uint8_t x_43; lean_object* x_44; lean_object* x_45; +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; uint32_t x_44; uint8_t x_45; lean_object* x_46; lean_object* x_47; x_34 = lean_ctor_get(x_25, 0); lean_dec(x_34); x_35 = lean_ctor_get(x_26, 0); @@ -3131,108 +2234,78 @@ lean_inc(x_37); lean_dec(x_22); lean_inc(x_35); x_38 = lean_apply_3(x_2, x_36, x_35, x_37); -x_39 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_39, 0, x_35); -lean_ctor_set(x_39, 1, x_38); -x_40 = l_Std_BitVec_Literal_toExpr(x_39); -x_41 = lean_box(0); -x_42 = 0; -x_43 = 1; -x_44 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_44, 0, x_40); -lean_ctor_set(x_44, 1, x_41); -lean_ctor_set_uint32(x_44, sizeof(void*)*2, x_42); -lean_ctor_set_uint8(x_44, sizeof(void*)*2 + 4, x_43); -x_45 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_45, 0, x_44); -lean_ctor_set(x_25, 0, x_45); +x_39 = l_Lean_mkNatLit(x_35); +x_40 = l_Lean_mkNatLit(x_38); +x_41 = l_BitVec_reduceUnary___lambda__1___closed__5; +x_42 = l_Lean_mkAppB(x_41, x_39, x_40); +x_43 = lean_box(0); +x_44 = 0; +x_45 = 1; +x_46 = lean_alloc_ctor(0, 2, 5); +lean_ctor_set(x_46, 0, x_42); +lean_ctor_set(x_46, 1, x_43); +lean_ctor_set_uint32(x_46, sizeof(void*)*2, x_44); +lean_ctor_set_uint8(x_46, sizeof(void*)*2 + 4, x_45); +x_47 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_47, 0, x_46); +lean_ctor_set(x_25, 0, x_47); return x_25; } else { -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; uint32_t x_54; uint8_t x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; -x_46 = lean_ctor_get(x_25, 1); -lean_inc(x_46); -lean_dec(x_25); -x_47 = lean_ctor_get(x_26, 0); -lean_inc(x_47); -lean_dec(x_26); -x_48 = lean_ctor_get(x_22, 0); +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; uint32_t x_58; uint8_t x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; +x_48 = lean_ctor_get(x_25, 1); lean_inc(x_48); -x_49 = lean_ctor_get(x_22, 1); -lean_inc(x_49); -lean_dec(x_22); -lean_inc(x_47); -x_50 = lean_apply_3(x_2, x_48, x_47, x_49); -x_51 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_51, 0, x_47); -lean_ctor_set(x_51, 1, x_50); -x_52 = l_Std_BitVec_Literal_toExpr(x_51); -x_53 = lean_box(0); -x_54 = 0; -x_55 = 1; -x_56 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_56, 0, x_52); -lean_ctor_set(x_56, 1, x_53); -lean_ctor_set_uint32(x_56, sizeof(void*)*2, x_54); -lean_ctor_set_uint8(x_56, sizeof(void*)*2 + 4, x_55); -x_57 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_57, 0, x_56); -x_58 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_58, 0, x_57); -lean_ctor_set(x_58, 1, x_46); -return x_58; -} -} -} -else -{ -uint8_t x_59; -lean_dec(x_22); -lean_dec(x_2); -x_59 = !lean_is_exclusive(x_25); -if (x_59 == 0) -{ -return x_25; -} -else -{ -lean_object* x_60; lean_object* x_61; lean_object* x_62; -x_60 = lean_ctor_get(x_25, 0); -x_61 = lean_ctor_get(x_25, 1); -lean_inc(x_61); -lean_inc(x_60); lean_dec(x_25); -x_62 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_62, 0, x_60); -lean_ctor_set(x_62, 1, x_61); +x_49 = lean_ctor_get(x_26, 0); +lean_inc(x_49); +lean_dec(x_26); +x_50 = lean_ctor_get(x_22, 0); +lean_inc(x_50); +x_51 = lean_ctor_get(x_22, 1); +lean_inc(x_51); +lean_dec(x_22); +lean_inc(x_49); +x_52 = lean_apply_3(x_2, x_50, x_49, x_51); +x_53 = l_Lean_mkNatLit(x_49); +x_54 = l_Lean_mkNatLit(x_52); +x_55 = l_BitVec_reduceUnary___lambda__1___closed__5; +x_56 = l_Lean_mkAppB(x_55, x_53, x_54); +x_57 = lean_box(0); +x_58 = 0; +x_59 = 1; +x_60 = lean_alloc_ctor(0, 2, 5); +lean_ctor_set(x_60, 0, x_56); +lean_ctor_set(x_60, 1, x_57); +lean_ctor_set_uint32(x_60, sizeof(void*)*2, x_58); +lean_ctor_set_uint8(x_60, sizeof(void*)*2 + 4, x_59); +x_61 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_61, 0, x_60); +x_62 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_62, 0, x_61); +lean_ctor_set(x_62, 1, x_48); return x_62; } } } -} else { uint8_t x_63; -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); +lean_dec(x_22); lean_dec(x_2); -lean_dec(x_1); -x_63 = !lean_is_exclusive(x_13); +x_63 = !lean_is_exclusive(x_25); if (x_63 == 0) { -return x_13; +return x_25; } else { lean_object* x_64; lean_object* x_65; lean_object* x_66; -x_64 = lean_ctor_get(x_13, 0); -x_65 = lean_ctor_get(x_13, 1); +x_64 = lean_ctor_get(x_25, 0); +x_65 = lean_ctor_get(x_25, 1); lean_inc(x_65); lean_inc(x_64); -lean_dec(x_13); +lean_dec(x_25); x_66 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_66, 0, x_64); lean_ctor_set(x_66, 1, x_65); @@ -3241,7 +2314,37 @@ return x_66; } } } -LEAN_EXPORT lean_object* l_Std_BitVec_reduceExtend(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) { +else +{ +uint8_t x_67; +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_2); +lean_dec(x_1); +x_67 = !lean_is_exclusive(x_13); +if (x_67 == 0) +{ +return x_13; +} +else +{ +lean_object* x_68; lean_object* x_69; lean_object* x_70; +x_68 = lean_ctor_get(x_13, 0); +x_69 = lean_ctor_get(x_13, 1); +lean_inc(x_69); +lean_inc(x_68); +lean_dec(x_13); +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; +} +} +} +} +LEAN_EXPORT lean_object* l_BitVec_reduceExtend(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) { _start: { lean_object* x_12; uint8_t x_13; @@ -3257,7 +2360,7 @@ lean_dec(x_8); lean_dec(x_7); lean_dec(x_3); lean_dec(x_2); -x_14 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_14 = l_BitVec_reduceUnary___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_11); @@ -3267,16 +2370,16 @@ else { lean_object* x_16; lean_object* x_17; x_16 = lean_box(0); -x_17 = l_Std_BitVec_reduceExtend___lambda__1(x_3, x_2, x_16, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +x_17 = l_BitVec_reduceExtend___lambda__1(x_3, x_2, x_16, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); return x_17; } } } -LEAN_EXPORT lean_object* l_Std_BitVec_reduceExtend___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, lean_object* x_11) { +LEAN_EXPORT lean_object* l_BitVec_reduceExtend___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, lean_object* x_11) { _start: { lean_object* x_12; -x_12 = l_Std_BitVec_reduceExtend___lambda__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +x_12 = l_BitVec_reduceExtend___lambda__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); @@ -3284,18 +2387,18 @@ lean_dec(x_3); return x_12; } } -LEAN_EXPORT lean_object* l_Std_BitVec_reduceExtend___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_EXPORT lean_object* l_BitVec_reduceExtend___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) { _start: { lean_object* x_12; -x_12 = l_Std_BitVec_reduceExtend(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +x_12 = l_BitVec_reduceExtend(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); return x_12; } } -static lean_object* _init_l_Std_BitVec_reduceGetBit___lambda__1___closed__1() { +static lean_object* _init_l_BitVec_reduceGetBit___lambda__1___closed__1() { _start: { lean_object* x_1; @@ -3303,7 +2406,7 @@ x_1 = lean_mk_string_from_bytes("Bool", 4); return x_1; } } -static lean_object* _init_l_Std_BitVec_reduceGetBit___lambda__1___closed__2() { +static lean_object* _init_l_BitVec_reduceGetBit___lambda__1___closed__2() { _start: { lean_object* x_1; @@ -3311,33 +2414,33 @@ x_1 = lean_mk_string_from_bytes("false", 5); return x_1; } } -static lean_object* _init_l_Std_BitVec_reduceGetBit___lambda__1___closed__3() { +static lean_object* _init_l_BitVec_reduceGetBit___lambda__1___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Std_BitVec_reduceGetBit___lambda__1___closed__1; -x_2 = l_Std_BitVec_reduceGetBit___lambda__1___closed__2; +x_1 = l_BitVec_reduceGetBit___lambda__1___closed__1; +x_2 = l_BitVec_reduceGetBit___lambda__1___closed__2; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } -static lean_object* _init_l_Std_BitVec_reduceGetBit___lambda__1___closed__4() { +static lean_object* _init_l_BitVec_reduceGetBit___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_Std_BitVec_reduceGetBit___lambda__1___closed__3; +x_2 = l_BitVec_reduceGetBit___lambda__1___closed__3; x_3 = l_Lean_Expr_const___override(x_2, x_1); return x_3; } } -static lean_object* _init_l_Std_BitVec_reduceGetBit___lambda__1___closed__5() { +static lean_object* _init_l_BitVec_reduceGetBit___lambda__1___closed__5() { _start: { lean_object* x_1; uint32_t x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; x_1 = lean_box(0); x_2 = 0; -x_3 = l_Std_BitVec_reduceGetBit___lambda__1___closed__4; +x_3 = l_BitVec_reduceGetBit___lambda__1___closed__4; x_4 = 1; x_5 = lean_alloc_ctor(0, 2, 5); lean_ctor_set(x_5, 0, x_3); @@ -3347,17 +2450,17 @@ lean_ctor_set_uint8(x_5, sizeof(void*)*2 + 4, x_4); return x_5; } } -static lean_object* _init_l_Std_BitVec_reduceGetBit___lambda__1___closed__6() { +static lean_object* _init_l_BitVec_reduceGetBit___lambda__1___closed__6() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Std_BitVec_reduceGetBit___lambda__1___closed__5; +x_1 = l_BitVec_reduceGetBit___lambda__1___closed__5; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Std_BitVec_reduceGetBit___lambda__1___closed__7() { +static lean_object* _init_l_BitVec_reduceGetBit___lambda__1___closed__7() { _start: { lean_object* x_1; @@ -3365,33 +2468,33 @@ x_1 = lean_mk_string_from_bytes("true", 4); return x_1; } } -static lean_object* _init_l_Std_BitVec_reduceGetBit___lambda__1___closed__8() { +static lean_object* _init_l_BitVec_reduceGetBit___lambda__1___closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Std_BitVec_reduceGetBit___lambda__1___closed__1; -x_2 = l_Std_BitVec_reduceGetBit___lambda__1___closed__7; +x_1 = l_BitVec_reduceGetBit___lambda__1___closed__1; +x_2 = l_BitVec_reduceGetBit___lambda__1___closed__7; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } -static lean_object* _init_l_Std_BitVec_reduceGetBit___lambda__1___closed__9() { +static lean_object* _init_l_BitVec_reduceGetBit___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_Std_BitVec_reduceGetBit___lambda__1___closed__8; +x_2 = l_BitVec_reduceGetBit___lambda__1___closed__8; x_3 = l_Lean_Expr_const___override(x_2, x_1); return x_3; } } -static lean_object* _init_l_Std_BitVec_reduceGetBit___lambda__1___closed__10() { +static lean_object* _init_l_BitVec_reduceGetBit___lambda__1___closed__10() { _start: { lean_object* x_1; uint32_t x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; x_1 = lean_box(0); x_2 = 0; -x_3 = l_Std_BitVec_reduceGetBit___lambda__1___closed__9; +x_3 = l_BitVec_reduceGetBit___lambda__1___closed__9; x_4 = 1; x_5 = lean_alloc_ctor(0, 2, 5); lean_ctor_set(x_5, 0, x_3); @@ -3401,17 +2504,17 @@ lean_ctor_set_uint8(x_5, sizeof(void*)*2 + 4, x_4); return x_5; } } -static lean_object* _init_l_Std_BitVec_reduceGetBit___lambda__1___closed__11() { +static lean_object* _init_l_BitVec_reduceGetBit___lambda__1___closed__11() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Std_BitVec_reduceGetBit___lambda__1___closed__10; +x_1 = l_BitVec_reduceGetBit___lambda__1___closed__10; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -LEAN_EXPORT lean_object* l_Std_BitVec_reduceGetBit___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, lean_object* x_11) { +LEAN_EXPORT lean_object* l_BitVec_reduceGetBit___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, lean_object* x_11) { _start: { lean_object* x_12; lean_object* x_13; lean_object* x_14; @@ -3423,7 +2526,8 @@ lean_inc(x_10); lean_inc(x_9); lean_inc(x_8); lean_inc(x_7); -x_14 = l_Std_BitVec_fromExpr_x3f(x_13, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +x_14 = l_BitVec_fromExpr_x3f(x_13, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_13); if (lean_obj_tag(x_14) == 0) { lean_object* x_15; @@ -3444,7 +2548,7 @@ if (x_16 == 0) lean_object* x_17; lean_object* x_18; x_17 = lean_ctor_get(x_14, 0); lean_dec(x_17); -x_18 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_18 = l_BitVec_reduceUnary___lambda__1___closed__1; lean_ctor_set(x_14, 0, x_18); return x_14; } @@ -3454,7 +2558,7 @@ lean_object* x_19; lean_object* x_20; lean_object* x_21; x_19 = lean_ctor_get(x_14, 1); lean_inc(x_19); lean_dec(x_14); -x_20 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_20 = l_BitVec_reduceUnary___lambda__1___closed__1; x_21 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_21, 0, x_20); lean_ctor_set(x_21, 1, x_19); @@ -3472,8 +2576,7 @@ lean_inc(x_23); lean_dec(x_15); x_24 = l_Lean_Expr_appArg_x21(x_1); lean_dec(x_1); -x_25 = l_Nat_fromExpr_x3f(x_24, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_22); -lean_dec(x_7); +x_25 = l_Lean_Meta_getNatValue_x3f(x_24, x_7, x_8, x_9, x_10, x_22); if (lean_obj_tag(x_25) == 0) { lean_object* x_26; @@ -3490,7 +2593,7 @@ if (x_27 == 0) lean_object* x_28; lean_object* x_29; x_28 = lean_ctor_get(x_25, 0); lean_dec(x_28); -x_29 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_29 = l_BitVec_reduceUnary___lambda__1___closed__1; lean_ctor_set(x_25, 0, x_29); return x_25; } @@ -3500,7 +2603,7 @@ lean_object* x_30; lean_object* x_31; lean_object* x_32; x_30 = lean_ctor_get(x_25, 1); lean_inc(x_30); lean_dec(x_25); -x_31 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_31 = l_BitVec_reduceUnary___lambda__1___closed__1; x_32 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_32, 0, x_31); lean_ctor_set(x_32, 1, x_30); @@ -3530,14 +2633,14 @@ lean_dec(x_38); if (x_39 == 0) { lean_object* x_40; -x_40 = l_Std_BitVec_reduceGetBit___lambda__1___closed__6; +x_40 = l_BitVec_reduceGetBit___lambda__1___closed__6; lean_ctor_set(x_25, 0, x_40); return x_25; } else { lean_object* x_41; -x_41 = l_Std_BitVec_reduceGetBit___lambda__1___closed__11; +x_41 = l_BitVec_reduceGetBit___lambda__1___closed__11; lean_ctor_set(x_25, 0, x_41); return x_25; } @@ -3562,7 +2665,7 @@ lean_dec(x_46); if (x_47 == 0) { lean_object* x_48; lean_object* x_49; -x_48 = l_Std_BitVec_reduceGetBit___lambda__1___closed__6; +x_48 = l_BitVec_reduceGetBit___lambda__1___closed__6; x_49 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_49, 0, x_48); lean_ctor_set(x_49, 1, x_42); @@ -3571,7 +2674,7 @@ return x_49; else { lean_object* x_50; lean_object* x_51; -x_50 = l_Std_BitVec_reduceGetBit___lambda__1___closed__11; +x_50 = l_BitVec_reduceGetBit___lambda__1___closed__11; x_51 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_51, 0, x_50); lean_ctor_set(x_51, 1, x_42); @@ -3636,7 +2739,7 @@ return x_59; } } } -LEAN_EXPORT lean_object* l_Std_BitVec_reduceGetBit(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_EXPORT lean_object* l_BitVec_reduceGetBit(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) { _start: { lean_object* x_12; uint8_t x_13; @@ -3652,7 +2755,7 @@ lean_dec(x_8); lean_dec(x_7); lean_dec(x_3); lean_dec(x_2); -x_14 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_14 = l_BitVec_reduceUnary___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_11); @@ -3662,16 +2765,16 @@ else { lean_object* x_16; lean_object* x_17; x_16 = lean_box(0); -x_17 = l_Std_BitVec_reduceGetBit___lambda__1(x_3, x_2, x_16, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +x_17 = l_BitVec_reduceGetBit___lambda__1(x_3, x_2, x_16, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); return x_17; } } } -LEAN_EXPORT lean_object* l_Std_BitVec_reduceGetBit___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, lean_object* x_11) { +LEAN_EXPORT lean_object* l_BitVec_reduceGetBit___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, lean_object* x_11) { _start: { lean_object* x_12; -x_12 = l_Std_BitVec_reduceGetBit___lambda__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +x_12 = l_BitVec_reduceGetBit___lambda__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); @@ -3679,18 +2782,18 @@ lean_dec(x_3); return x_12; } } -LEAN_EXPORT lean_object* l_Std_BitVec_reduceGetBit___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_EXPORT lean_object* l_BitVec_reduceGetBit___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) { _start: { lean_object* x_12; -x_12 = l_Std_BitVec_reduceGetBit(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +x_12 = l_BitVec_reduceGetBit(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); return x_12; } } -LEAN_EXPORT lean_object* l_Std_BitVec_reduceShift___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, lean_object* x_11) { +LEAN_EXPORT lean_object* l_BitVec_reduceShift___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, lean_object* x_11) { _start: { lean_object* x_12; lean_object* x_13; lean_object* x_14; @@ -3702,7 +2805,8 @@ lean_inc(x_10); lean_inc(x_9); lean_inc(x_8); lean_inc(x_7); -x_14 = l_Std_BitVec_fromExpr_x3f(x_13, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +x_14 = l_BitVec_fromExpr_x3f(x_13, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_13); if (lean_obj_tag(x_14) == 0) { lean_object* x_15; @@ -3723,7 +2827,7 @@ if (x_16 == 0) lean_object* x_17; lean_object* x_18; x_17 = lean_ctor_get(x_14, 0); lean_dec(x_17); -x_18 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_18 = l_BitVec_reduceUnary___lambda__1___closed__1; lean_ctor_set(x_14, 0, x_18); return x_14; } @@ -3733,7 +2837,7 @@ lean_object* x_19; lean_object* x_20; lean_object* x_21; x_19 = lean_ctor_get(x_14, 1); lean_inc(x_19); lean_dec(x_14); -x_20 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_20 = l_BitVec_reduceUnary___lambda__1___closed__1; x_21 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_21, 0, x_20); lean_ctor_set(x_21, 1, x_19); @@ -3751,8 +2855,7 @@ lean_inc(x_23); lean_dec(x_15); x_24 = l_Lean_Expr_appArg_x21(x_1); lean_dec(x_1); -x_25 = l_Nat_fromExpr_x3f(x_24, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_22); -lean_dec(x_7); +x_25 = l_Lean_Meta_getNatValue_x3f(x_24, x_7, x_8, x_9, x_10, x_22); if (lean_obj_tag(x_25) == 0) { lean_object* x_26; @@ -3769,7 +2872,7 @@ if (x_27 == 0) lean_object* x_28; lean_object* x_29; x_28 = lean_ctor_get(x_25, 0); lean_dec(x_28); -x_29 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_29 = l_BitVec_reduceUnary___lambda__1___closed__1; lean_ctor_set(x_25, 0, x_29); return x_25; } @@ -3779,7 +2882,7 @@ lean_object* x_30; lean_object* x_31; lean_object* x_32; x_30 = lean_ctor_get(x_25, 1); lean_inc(x_30); lean_dec(x_25); -x_31 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_31 = l_BitVec_reduceUnary___lambda__1___closed__1; x_32 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_32, 0, x_31); lean_ctor_set(x_32, 1, x_30); @@ -3792,168 +2895,130 @@ uint8_t x_33; x_33 = !lean_is_exclusive(x_25); if (x_33 == 0) { -lean_object* x_34; lean_object* x_35; uint8_t x_36; +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; uint32_t x_44; uint8_t x_45; lean_object* x_46; lean_object* x_47; x_34 = lean_ctor_get(x_25, 0); lean_dec(x_34); x_35 = lean_ctor_get(x_26, 0); lean_inc(x_35); lean_dec(x_26); -x_36 = !lean_is_exclusive(x_23); -if (x_36 == 0) -{ -lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; uint32_t x_42; uint8_t x_43; lean_object* x_44; lean_object* x_45; -x_37 = lean_ctor_get(x_23, 0); -x_38 = lean_ctor_get(x_23, 1); +x_36 = lean_ctor_get(x_23, 0); +lean_inc(x_36); +x_37 = lean_ctor_get(x_23, 1); lean_inc(x_37); -x_39 = lean_apply_3(x_2, x_37, x_38, x_35); -lean_ctor_set(x_23, 1, x_39); -x_40 = l_Std_BitVec_Literal_toExpr(x_23); -x_41 = lean_box(0); -x_42 = 0; -x_43 = 1; -x_44 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_44, 0, x_40); -lean_ctor_set(x_44, 1, x_41); -lean_ctor_set_uint32(x_44, sizeof(void*)*2, x_42); -lean_ctor_set_uint8(x_44, sizeof(void*)*2 + 4, x_43); -x_45 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_45, 0, x_44); -lean_ctor_set(x_25, 0, x_45); -return x_25; -} -else -{ -lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; uint32_t x_52; uint8_t x_53; lean_object* x_54; lean_object* x_55; -x_46 = lean_ctor_get(x_23, 0); -x_47 = lean_ctor_get(x_23, 1); -lean_inc(x_47); -lean_inc(x_46); lean_dec(x_23); -lean_inc(x_46); -x_48 = lean_apply_3(x_2, x_46, x_47, x_35); -x_49 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_49, 0, x_46); -lean_ctor_set(x_49, 1, x_48); -x_50 = l_Std_BitVec_Literal_toExpr(x_49); -x_51 = lean_box(0); -x_52 = 0; -x_53 = 1; -x_54 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_54, 0, x_50); -lean_ctor_set(x_54, 1, x_51); -lean_ctor_set_uint32(x_54, sizeof(void*)*2, x_52); -lean_ctor_set_uint8(x_54, sizeof(void*)*2 + 4, x_53); -x_55 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_55, 0, x_54); -lean_ctor_set(x_25, 0, x_55); +lean_inc(x_36); +x_38 = lean_apply_3(x_2, x_36, x_37, x_35); +x_39 = l_Lean_mkNatLit(x_36); +x_40 = l_Lean_mkNatLit(x_38); +x_41 = l_BitVec_reduceUnary___lambda__1___closed__5; +x_42 = l_Lean_mkAppB(x_41, x_39, x_40); +x_43 = lean_box(0); +x_44 = 0; +x_45 = 1; +x_46 = lean_alloc_ctor(0, 2, 5); +lean_ctor_set(x_46, 0, x_42); +lean_ctor_set(x_46, 1, x_43); +lean_ctor_set_uint32(x_46, sizeof(void*)*2, x_44); +lean_ctor_set_uint8(x_46, sizeof(void*)*2 + 4, x_45); +x_47 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_47, 0, x_46); +lean_ctor_set(x_25, 0, x_47); return x_25; } -} else { -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; uint32_t x_65; uint8_t x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; -x_56 = lean_ctor_get(x_25, 1); -lean_inc(x_56); +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; uint32_t x_58; uint8_t x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; +x_48 = lean_ctor_get(x_25, 1); +lean_inc(x_48); lean_dec(x_25); -x_57 = lean_ctor_get(x_26, 0); -lean_inc(x_57); +x_49 = lean_ctor_get(x_26, 0); +lean_inc(x_49); lean_dec(x_26); -x_58 = lean_ctor_get(x_23, 0); -lean_inc(x_58); -x_59 = lean_ctor_get(x_23, 1); -lean_inc(x_59); -if (lean_is_exclusive(x_23)) { - lean_ctor_release(x_23, 0); - lean_ctor_release(x_23, 1); - x_60 = x_23; -} else { - lean_dec_ref(x_23); - x_60 = lean_box(0); -} -lean_inc(x_58); -x_61 = lean_apply_3(x_2, x_58, x_59, x_57); -if (lean_is_scalar(x_60)) { - x_62 = lean_alloc_ctor(0, 2, 0); -} else { - x_62 = x_60; -} -lean_ctor_set(x_62, 0, x_58); -lean_ctor_set(x_62, 1, x_61); -x_63 = l_Std_BitVec_Literal_toExpr(x_62); -x_64 = lean_box(0); -x_65 = 0; -x_66 = 1; -x_67 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_67, 0, x_63); -lean_ctor_set(x_67, 1, x_64); -lean_ctor_set_uint32(x_67, sizeof(void*)*2, x_65); -lean_ctor_set_uint8(x_67, sizeof(void*)*2 + 4, x_66); -x_68 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_68, 0, x_67); -x_69 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_69, 0, x_68); -lean_ctor_set(x_69, 1, x_56); -return x_69; +x_50 = lean_ctor_get(x_23, 0); +lean_inc(x_50); +x_51 = lean_ctor_get(x_23, 1); +lean_inc(x_51); +lean_dec(x_23); +lean_inc(x_50); +x_52 = lean_apply_3(x_2, x_50, x_51, x_49); +x_53 = l_Lean_mkNatLit(x_50); +x_54 = l_Lean_mkNatLit(x_52); +x_55 = l_BitVec_reduceUnary___lambda__1___closed__5; +x_56 = l_Lean_mkAppB(x_55, x_53, x_54); +x_57 = lean_box(0); +x_58 = 0; +x_59 = 1; +x_60 = lean_alloc_ctor(0, 2, 5); +lean_ctor_set(x_60, 0, x_56); +lean_ctor_set(x_60, 1, x_57); +lean_ctor_set_uint32(x_60, sizeof(void*)*2, x_58); +lean_ctor_set_uint8(x_60, sizeof(void*)*2 + 4, x_59); +x_61 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_61, 0, x_60); +x_62 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_62, 0, x_61); +lean_ctor_set(x_62, 1, x_48); +return x_62; } } } else { -uint8_t x_70; +uint8_t x_63; lean_dec(x_23); lean_dec(x_2); -x_70 = !lean_is_exclusive(x_25); -if (x_70 == 0) +x_63 = !lean_is_exclusive(x_25); +if (x_63 == 0) { return x_25; } else { -lean_object* x_71; lean_object* x_72; lean_object* x_73; -x_71 = lean_ctor_get(x_25, 0); -x_72 = lean_ctor_get(x_25, 1); -lean_inc(x_72); -lean_inc(x_71); +lean_object* x_64; lean_object* x_65; lean_object* x_66; +x_64 = lean_ctor_get(x_25, 0); +x_65 = lean_ctor_get(x_25, 1); +lean_inc(x_65); +lean_inc(x_64); lean_dec(x_25); -x_73 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_73, 0, x_71); -lean_ctor_set(x_73, 1, x_72); -return x_73; +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; } } } } else { -uint8_t x_74; +uint8_t x_67; lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); lean_dec(x_7); lean_dec(x_2); lean_dec(x_1); -x_74 = !lean_is_exclusive(x_14); -if (x_74 == 0) +x_67 = !lean_is_exclusive(x_14); +if (x_67 == 0) { return x_14; } else { -lean_object* x_75; lean_object* x_76; lean_object* x_77; -x_75 = lean_ctor_get(x_14, 0); -x_76 = lean_ctor_get(x_14, 1); -lean_inc(x_76); -lean_inc(x_75); +lean_object* x_68; lean_object* x_69; lean_object* x_70; +x_68 = lean_ctor_get(x_14, 0); +x_69 = lean_ctor_get(x_14, 1); +lean_inc(x_69); +lean_inc(x_68); lean_dec(x_14); -x_77 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_77, 0, x_75); -lean_ctor_set(x_77, 1, x_76); -return x_77; +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; } } } } -LEAN_EXPORT lean_object* l_Std_BitVec_reduceShift(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_EXPORT lean_object* l_BitVec_reduceShift(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: { uint8_t x_13; @@ -3971,7 +3036,7 @@ lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); -x_14 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_14 = l_BitVec_reduceUnary___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_12); @@ -3981,7 +3046,7 @@ else { lean_object* x_16; lean_object* x_17; x_16 = lean_box(0); -x_17 = l_Std_BitVec_reduceShift___lambda__1(x_4, x_3, x_16, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +x_17 = l_BitVec_reduceShift___lambda__1(x_4, x_3, x_16, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); @@ -3989,11 +3054,11 @@ return x_17; } } } -LEAN_EXPORT lean_object* l_Std_BitVec_reduceShift___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, lean_object* x_11) { +LEAN_EXPORT lean_object* l_BitVec_reduceShift___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, lean_object* x_11) { _start: { lean_object* x_12; -x_12 = l_Std_BitVec_reduceShift___lambda__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +x_12 = l_BitVec_reduceShift___lambda__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); @@ -4001,7 +3066,7 @@ lean_dec(x_3); return x_12; } } -LEAN_EXPORT lean_object* l_Std_BitVec_reduceBinPred___lambda__1(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_EXPORT lean_object* l_BitVec_reduceBinPred___lambda__1(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) { _start: { lean_object* x_13; lean_object* x_14; lean_object* x_15; @@ -4013,7 +3078,8 @@ lean_inc(x_11); lean_inc(x_10); lean_inc(x_9); lean_inc(x_8); -x_15 = l_Std_BitVec_fromExpr_x3f(x_14, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +x_15 = l_BitVec_fromExpr_x3f(x_14, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +lean_dec(x_14); if (lean_obj_tag(x_15) == 0) { lean_object* x_16; @@ -4034,7 +3100,7 @@ if (x_17 == 0) lean_object* x_18; lean_object* x_19; x_18 = lean_ctor_get(x_15, 0); lean_dec(x_18); -x_19 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_19 = l_BitVec_reduceUnary___lambda__1___closed__1; lean_ctor_set(x_15, 0, x_19); return x_15; } @@ -4044,7 +3110,7 @@ lean_object* x_20; lean_object* x_21; lean_object* x_22; x_20 = lean_ctor_get(x_15, 1); lean_inc(x_20); lean_dec(x_15); -x_21 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_21 = l_BitVec_reduceUnary___lambda__1___closed__1; x_22 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_22, 0, x_21); lean_ctor_set(x_22, 1, x_20); @@ -4065,7 +3131,8 @@ lean_inc(x_11); lean_inc(x_10); lean_inc(x_9); lean_inc(x_8); -x_26 = l_Std_BitVec_fromExpr_x3f(x_25, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_23); +x_26 = l_BitVec_fromExpr_x3f(x_25, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_23); +lean_dec(x_25); if (lean_obj_tag(x_26) == 0) { lean_object* x_27; @@ -4087,7 +3154,7 @@ if (x_28 == 0) lean_object* x_29; lean_object* x_30; x_29 = lean_ctor_get(x_26, 0); lean_dec(x_29); -x_30 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_30 = l_BitVec_reduceUnary___lambda__1___closed__1; lean_ctor_set(x_26, 0, x_30); return x_26; } @@ -4097,7 +3164,7 @@ lean_object* x_31; lean_object* x_32; lean_object* x_33; x_31 = lean_ctor_get(x_26, 1); lean_inc(x_31); lean_dec(x_26); -x_32 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_32 = l_BitVec_reduceUnary___lambda__1___closed__1; x_33 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_33, 0, x_32); lean_ctor_set(x_33, 1, x_31); @@ -4135,7 +3202,7 @@ lean_dec(x_9); lean_dec(x_8); lean_dec(x_2); lean_dec(x_1); -x_41 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_41 = l_BitVec_reduceUnary___lambda__1___closed__1; lean_ctor_set(x_26, 0, x_41); return x_26; } @@ -4161,14 +3228,14 @@ lean_dec(x_1); if (x_45 == 0) { lean_object* x_46; -x_46 = l_Std_BitVec_reduceGetBit___lambda__1___closed__6; +x_46 = l_BitVec_reduceGetBit___lambda__1___closed__6; lean_ctor_set(x_26, 0, x_46); return x_26; } else { lean_object* x_47; -x_47 = l_Std_BitVec_reduceGetBit___lambda__1___closed__11; +x_47 = l_BitVec_reduceGetBit___lambda__1___closed__11; lean_ctor_set(x_26, 0, x_47); return x_26; } @@ -4209,7 +3276,7 @@ lean_dec(x_9); lean_dec(x_8); lean_dec(x_2); lean_dec(x_1); -x_54 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_54 = l_BitVec_reduceUnary___lambda__1___closed__1; x_55 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_55, 0, x_54); lean_ctor_set(x_55, 1, x_49); @@ -4237,7 +3304,7 @@ lean_dec(x_1); if (x_59 == 0) { lean_object* x_60; lean_object* x_61; -x_60 = l_Std_BitVec_reduceGetBit___lambda__1___closed__6; +x_60 = l_BitVec_reduceGetBit___lambda__1___closed__6; x_61 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_61, 0, x_60); lean_ctor_set(x_61, 1, x_49); @@ -4246,7 +3313,7 @@ return x_61; else { lean_object* x_62; lean_object* x_63; -x_62 = l_Std_BitVec_reduceGetBit___lambda__1___closed__11; +x_62 = l_BitVec_reduceGetBit___lambda__1___closed__11; x_63 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_63, 0, x_62); lean_ctor_set(x_63, 1, x_49); @@ -4324,7 +3391,7 @@ return x_72; } } } -LEAN_EXPORT lean_object* l_Std_BitVec_reduceBinPred(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_EXPORT lean_object* l_BitVec_reduceBinPred(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) { _start: { uint8_t x_14; @@ -4342,7 +3409,7 @@ lean_dec(x_7); lean_dec(x_6); lean_dec(x_4); lean_dec(x_3); -x_15 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_15 = l_BitVec_reduceUnary___lambda__1___closed__1; x_16 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_16, 0, x_15); lean_ctor_set(x_16, 1, x_13); @@ -4352,7 +3419,7 @@ else { lean_object* x_17; lean_object* x_18; x_17 = lean_box(0); -x_18 = l_Std_BitVec_reduceBinPred___lambda__1(x_4, x_3, x_5, x_17, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); +x_18 = l_BitVec_reduceBinPred___lambda__1(x_4, x_3, x_5, x_17, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); @@ -4360,13 +3427,13 @@ return x_18; } } } -LEAN_EXPORT lean_object* l_Std_BitVec_reduceBinPred___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, lean_object* x_11, lean_object* x_12) { +LEAN_EXPORT lean_object* l_BitVec_reduceBinPred___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, lean_object* x_11, lean_object* x_12) { _start: { uint8_t x_13; lean_object* x_14; x_13 = lean_unbox(x_3); lean_dec(x_3); -x_14 = l_Std_BitVec_reduceBinPred___lambda__1(x_1, x_2, x_13, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +x_14 = l_BitVec_reduceBinPred___lambda__1(x_1, x_2, x_13, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); @@ -4374,22 +3441,23 @@ lean_dec(x_4); return x_14; } } -LEAN_EXPORT lean_object* l_Std_BitVec_reduceBinPred___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_BitVec_reduceBinPred___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_14; lean_object* x_15; x_14 = lean_unbox(x_5); lean_dec(x_5); -x_15 = l_Std_BitVec_reduceBinPred(x_1, x_2, x_3, x_4, x_14, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); +x_15 = l_BitVec_reduceBinPred(x_1, x_2, x_3, x_4, x_14, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); return x_15; } } -LEAN_EXPORT lean_object* l_Std_BitVec_reduceNeg___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) { +LEAN_EXPORT lean_object* l_BitVec_reduceNeg___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; x_11 = l_Lean_Expr_appArg_x21(x_1); -x_12 = l_Std_BitVec_fromExpr_x3f(x_11, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_12 = l_BitVec_fromExpr_x3f(x_11, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_11); if (lean_obj_tag(x_12) == 0) { lean_object* x_13; @@ -4404,7 +3472,7 @@ if (x_14 == 0) lean_object* x_15; lean_object* x_16; x_15 = lean_ctor_get(x_12, 0); lean_dec(x_15); -x_16 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_16 = l_BitVec_reduceUnary___lambda__1___closed__1; lean_ctor_set(x_12, 0, x_16); return x_12; } @@ -4414,7 +3482,7 @@ lean_object* x_17; lean_object* x_18; lean_object* x_19; x_17 = lean_ctor_get(x_12, 1); lean_inc(x_17); lean_dec(x_12); -x_18 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_18 = l_BitVec_reduceUnary___lambda__1___closed__1; x_19 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_19, 0, x_18); lean_ctor_set(x_19, 1, x_17); @@ -4423,137 +3491,102 @@ return x_19; } else { -lean_object* x_20; uint8_t x_21; -x_20 = lean_ctor_get(x_13, 0); -lean_inc(x_20); +uint8_t x_20; +x_20 = !lean_is_exclusive(x_12); +if (x_20 == 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_object* x_28; lean_object* x_29; lean_object* x_30; uint32_t x_31; uint8_t x_32; lean_object* x_33; lean_object* x_34; +x_21 = lean_ctor_get(x_12, 0); +lean_dec(x_21); +x_22 = lean_ctor_get(x_13, 0); +lean_inc(x_22); lean_dec(x_13); -x_21 = !lean_is_exclusive(x_12); -if (x_21 == 0) -{ -lean_object* x_22; uint8_t x_23; -x_22 = lean_ctor_get(x_12, 0); +x_23 = lean_ctor_get(x_22, 0); +lean_inc(x_23); +x_24 = lean_ctor_get(x_22, 1); +lean_inc(x_24); lean_dec(x_22); -x_23 = !lean_is_exclusive(x_20); -if (x_23 == 0) -{ -lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; uint32_t x_29; uint8_t x_30; lean_object* x_31; lean_object* x_32; -x_24 = lean_ctor_get(x_20, 0); -x_25 = lean_ctor_get(x_20, 1); -x_26 = l_Std_BitVec_neg(x_24, x_25); -lean_dec(x_25); -lean_ctor_set(x_20, 1, x_26); -x_27 = l_Std_BitVec_Literal_toExpr(x_20); -x_28 = lean_box(0); -x_29 = 0; -x_30 = 1; -x_31 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_31, 0, x_27); -lean_ctor_set(x_31, 1, x_28); -lean_ctor_set_uint32(x_31, sizeof(void*)*2, x_29); -lean_ctor_set_uint8(x_31, sizeof(void*)*2 + 4, x_30); -x_32 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_32, 0, x_31); -lean_ctor_set(x_12, 0, x_32); +x_25 = l_BitVec_neg(x_23, x_24); +lean_dec(x_24); +x_26 = l_Lean_mkNatLit(x_23); +x_27 = l_Lean_mkNatLit(x_25); +x_28 = l_BitVec_reduceUnary___lambda__1___closed__5; +x_29 = l_Lean_mkAppB(x_28, x_26, x_27); +x_30 = lean_box(0); +x_31 = 0; +x_32 = 1; +x_33 = lean_alloc_ctor(0, 2, 5); +lean_ctor_set(x_33, 0, x_29); +lean_ctor_set(x_33, 1, x_30); +lean_ctor_set_uint32(x_33, sizeof(void*)*2, x_31); +lean_ctor_set_uint8(x_33, sizeof(void*)*2 + 4, x_32); +x_34 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_34, 0, x_33); +lean_ctor_set(x_12, 0, x_34); return x_12; } else { -lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; uint32_t x_39; uint8_t x_40; lean_object* x_41; lean_object* x_42; -x_33 = lean_ctor_get(x_20, 0); -x_34 = lean_ctor_get(x_20, 1); -lean_inc(x_34); -lean_inc(x_33); -lean_dec(x_20); -x_35 = l_Std_BitVec_neg(x_33, x_34); -lean_dec(x_34); -x_36 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_36, 0, x_33); -lean_ctor_set(x_36, 1, x_35); -x_37 = l_Std_BitVec_Literal_toExpr(x_36); -x_38 = lean_box(0); -x_39 = 0; -x_40 = 1; -x_41 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_41, 0, x_37); -lean_ctor_set(x_41, 1, x_38); -lean_ctor_set_uint32(x_41, sizeof(void*)*2, x_39); -lean_ctor_set_uint8(x_41, sizeof(void*)*2 + 4, x_40); -x_42 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_42, 0, x_41); -lean_ctor_set(x_12, 0, x_42); -return x_12; -} -} -else -{ -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; uint32_t x_51; uint8_t x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; -x_43 = lean_ctor_get(x_12, 1); -lean_inc(x_43); +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; uint32_t x_45; uint8_t x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; +x_35 = lean_ctor_get(x_12, 1); +lean_inc(x_35); lean_dec(x_12); -x_44 = lean_ctor_get(x_20, 0); -lean_inc(x_44); -x_45 = lean_ctor_get(x_20, 1); -lean_inc(x_45); -if (lean_is_exclusive(x_20)) { - lean_ctor_release(x_20, 0); - lean_ctor_release(x_20, 1); - x_46 = x_20; -} else { - lean_dec_ref(x_20); - x_46 = lean_box(0); -} -x_47 = l_Std_BitVec_neg(x_44, x_45); -lean_dec(x_45); -if (lean_is_scalar(x_46)) { - x_48 = lean_alloc_ctor(0, 2, 0); -} else { - x_48 = x_46; -} -lean_ctor_set(x_48, 0, x_44); -lean_ctor_set(x_48, 1, x_47); -x_49 = l_Std_BitVec_Literal_toExpr(x_48); -x_50 = lean_box(0); -x_51 = 0; -x_52 = 1; -x_53 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_53, 0, x_49); -lean_ctor_set(x_53, 1, x_50); -lean_ctor_set_uint32(x_53, sizeof(void*)*2, x_51); -lean_ctor_set_uint8(x_53, sizeof(void*)*2 + 4, x_52); -x_54 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_54, 0, x_53); -x_55 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_55, 0, x_54); -lean_ctor_set(x_55, 1, x_43); -return x_55; +x_36 = lean_ctor_get(x_13, 0); +lean_inc(x_36); +lean_dec(x_13); +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_BitVec_neg(x_37, x_38); +lean_dec(x_38); +x_40 = l_Lean_mkNatLit(x_37); +x_41 = l_Lean_mkNatLit(x_39); +x_42 = l_BitVec_reduceUnary___lambda__1___closed__5; +x_43 = l_Lean_mkAppB(x_42, x_40, x_41); +x_44 = lean_box(0); +x_45 = 0; +x_46 = 1; +x_47 = lean_alloc_ctor(0, 2, 5); +lean_ctor_set(x_47, 0, x_43); +lean_ctor_set(x_47, 1, x_44); +lean_ctor_set_uint32(x_47, sizeof(void*)*2, x_45); +lean_ctor_set_uint8(x_47, sizeof(void*)*2 + 4, x_46); +x_48 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_48, 0, x_47); +x_49 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_49, 0, x_48); +lean_ctor_set(x_49, 1, x_35); +return x_49; } } } else { -uint8_t x_56; -x_56 = !lean_is_exclusive(x_12); -if (x_56 == 0) +uint8_t x_50; +x_50 = !lean_is_exclusive(x_12); +if (x_50 == 0) { return x_12; } else { -lean_object* x_57; lean_object* x_58; lean_object* x_59; -x_57 = lean_ctor_get(x_12, 0); -x_58 = lean_ctor_get(x_12, 1); -lean_inc(x_58); -lean_inc(x_57); +lean_object* x_51; lean_object* x_52; lean_object* x_53; +x_51 = lean_ctor_get(x_12, 0); +x_52 = lean_ctor_get(x_12, 1); +lean_inc(x_52); +lean_inc(x_51); lean_dec(x_12); -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; +x_53 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_53, 0, x_51); +lean_ctor_set(x_53, 1, x_52); +return x_53; } } } } -static lean_object* _init_l_Std_BitVec_reduceNeg___closed__1() { +static lean_object* _init_l_BitVec_reduceNeg___closed__1() { _start: { lean_object* x_1; @@ -4561,7 +3594,7 @@ x_1 = lean_mk_string_from_bytes("Neg", 3); return x_1; } } -static lean_object* _init_l_Std_BitVec_reduceNeg___closed__2() { +static lean_object* _init_l_BitVec_reduceNeg___closed__2() { _start: { lean_object* x_1; @@ -4569,21 +3602,21 @@ x_1 = lean_mk_string_from_bytes("neg", 3); return x_1; } } -static lean_object* _init_l_Std_BitVec_reduceNeg___closed__3() { +static lean_object* _init_l_BitVec_reduceNeg___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Std_BitVec_reduceNeg___closed__1; -x_2 = l_Std_BitVec_reduceNeg___closed__2; +x_1 = l_BitVec_reduceNeg___closed__1; +x_2 = l_BitVec_reduceNeg___closed__2; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } -LEAN_EXPORT lean_object* l_Std_BitVec_reduceNeg(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_EXPORT lean_object* l_BitVec_reduceNeg(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; uint8_t x_12; -x_10 = l_Std_BitVec_reduceNeg___closed__3; +x_10 = l_BitVec_reduceNeg___closed__3; x_11 = lean_unsigned_to_nat(3u); x_12 = l_Lean_Expr_isAppOfArity(x_1, x_10, x_11); if (x_12 == 0) @@ -4596,7 +3629,7 @@ lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); -x_13 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_13 = l_BitVec_reduceUnary___lambda__1___closed__1; x_14 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_14, 0, x_13); lean_ctor_set(x_14, 1, x_9); @@ -4606,7 +3639,7 @@ else { lean_object* x_15; lean_object* x_16; x_15 = lean_box(0); -x_16 = l_Std_BitVec_reduceNeg___lambda__1(x_1, x_15, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_16 = l_BitVec_reduceNeg___lambda__1(x_1, x_15, 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); @@ -4614,11 +3647,11 @@ return x_16; } } } -LEAN_EXPORT lean_object* l_Std_BitVec_reduceNeg___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) { +LEAN_EXPORT lean_object* l_BitVec_reduceNeg___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_Std_BitVec_reduceNeg___lambda__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_11 = l_BitVec_reduceNeg___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); @@ -4627,16 +3660,16 @@ lean_dec(x_1); return x_11; } } -LEAN_EXPORT lean_object* l_Std_BitVec_reduceNeg___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_EXPORT lean_object* l_BitVec_reduceNeg___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_Std_BitVec_reduceNeg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_10 = l_BitVec_reduceNeg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); lean_dec(x_1); return x_10; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1371____closed__1() { +static lean_object* _init_l___regBuiltin_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1148____closed__1() { _start: { lean_object* x_1; @@ -4644,22 +3677,21 @@ x_1 = lean_mk_string_from_bytes("reduceNeg", 9); return x_1; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1371____closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f___closed__4; -x_2 = l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f___closed__5; -x_3 = l___regBuiltin_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1371____closed__1; -x_4 = l_Lean_Name_mkStr3(x_1, x_2, x_3); -return x_4; -} -} -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1371____closed__3() { +static lean_object* _init_l___regBuiltin_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1148____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Std_BitVec_reduceNeg___closed__3; +x_1 = l_BitVec_reduceUnary___lambda__1___closed__2; +x_2 = l___regBuiltin_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1148____closed__1; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___regBuiltin_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1148____closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_BitVec_reduceNeg___closed__3; x_2 = lean_unsigned_to_nat(3u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -4667,11 +3699,21 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1371____closed__4() { +static lean_object* _init_l___regBuiltin_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1148____closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f___closed__6; +x_1 = lean_box(0); +x_2 = l_BitVec_reduceUnary___lambda__1___closed__2; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___regBuiltin_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1148____closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___regBuiltin_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1148____closed__4; x_2 = lean_unsigned_to_nat(1u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -4679,7 +3721,7 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1371____closed__5() { +static lean_object* _init_l___regBuiltin_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1148____closed__6() { _start: { lean_object* x_1; lean_object* x_2; @@ -4688,76 +3730,76 @@ x_2 = lean_mk_empty_array_with_capacity(x_1); return x_2; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1371____closed__6() { +static lean_object* _init_l___regBuiltin_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1148____closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1371____closed__5; -x_2 = l___regBuiltin_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1371____closed__3; +x_1 = l___regBuiltin_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1148____closed__6; +x_2 = l___regBuiltin_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1148____closed__3; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1371____closed__7() { +static lean_object* _init_l___regBuiltin_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1148____closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1371____closed__6; -x_2 = l___regBuiltin_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1371____closed__4; +x_1 = l___regBuiltin_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1148____closed__7; +x_2 = l___regBuiltin_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1148____closed__5; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1371____closed__8() { +static lean_object* _init_l___regBuiltin_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1148____closed__9() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1371____closed__7; +x_1 = l___regBuiltin_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1148____closed__8; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1371____closed__9() { +static lean_object* _init_l___regBuiltin_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1148____closed__10() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1371____closed__8; +x_1 = l___regBuiltin_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1148____closed__9; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1371____closed__10() { +static lean_object* _init_l___regBuiltin_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1148____closed__11() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1371____closed__9; +x_1 = l___regBuiltin_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1148____closed__10; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1371____closed__11() { +static lean_object* _init_l___regBuiltin_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1148____closed__12() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Std_BitVec_reduceNeg___boxed), 9, 0); +x_1 = lean_alloc_closure((void*)(l_BitVec_reduceNeg___boxed), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1371_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1148_(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_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1371____closed__2; -x_3 = l___regBuiltin_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1371____closed__10; -x_4 = l___regBuiltin_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1371____closed__11; +x_2 = l___regBuiltin_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1148____closed__2; +x_3 = l___regBuiltin_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1148____closed__11; +x_4 = l___regBuiltin_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1148____closed__12; x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); return x_5; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1373____closed__1() { +static lean_object* _init_l___regBuiltin_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1150____closed__1() { _start: { lean_object* x_1; @@ -4765,19 +3807,19 @@ x_1 = l_Lean_Meta_Simp_builtinSimprocsRef; return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1373_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1150_(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_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1373____closed__1; -x_3 = l___regBuiltin_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1371____closed__2; +x_2 = l___regBuiltin_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1150____closed__1; +x_3 = l___regBuiltin_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1148____closed__2; x_4 = 1; -x_5 = l___regBuiltin_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1371____closed__11; +x_5 = l___regBuiltin_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1148____closed__12; 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___regBuiltin_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1375____closed__1() { +static lean_object* _init_l___regBuiltin_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1152____closed__1() { _start: { lean_object* x_1; @@ -4785,24 +3827,25 @@ x_1 = l_Lean_Meta_Simp_builtinSEvalprocsRef; return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1375_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1152_(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_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1375____closed__1; -x_3 = l___regBuiltin_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1371____closed__2; +x_2 = l___regBuiltin_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1152____closed__1; +x_3 = l___regBuiltin_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1148____closed__2; x_4 = 1; -x_5 = l___regBuiltin_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1371____closed__11; +x_5 = l___regBuiltin_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1148____closed__12; 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_Std_BitVec_reduceNot___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) { +LEAN_EXPORT lean_object* l_BitVec_reduceNot___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; x_11 = l_Lean_Expr_appArg_x21(x_1); -x_12 = l_Std_BitVec_fromExpr_x3f(x_11, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_12 = l_BitVec_fromExpr_x3f(x_11, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_11); if (lean_obj_tag(x_12) == 0) { lean_object* x_13; @@ -4817,7 +3860,7 @@ if (x_14 == 0) lean_object* x_15; lean_object* x_16; x_15 = lean_ctor_get(x_12, 0); lean_dec(x_15); -x_16 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_16 = l_BitVec_reduceUnary___lambda__1___closed__1; lean_ctor_set(x_12, 0, x_16); return x_12; } @@ -4827,7 +3870,7 @@ lean_object* x_17; lean_object* x_18; lean_object* x_19; x_17 = lean_ctor_get(x_12, 1); lean_inc(x_17); lean_dec(x_12); -x_18 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_18 = l_BitVec_reduceUnary___lambda__1___closed__1; x_19 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_19, 0, x_18); lean_ctor_set(x_19, 1, x_17); @@ -4836,137 +3879,102 @@ return x_19; } else { -lean_object* x_20; uint8_t x_21; -x_20 = lean_ctor_get(x_13, 0); -lean_inc(x_20); +uint8_t x_20; +x_20 = !lean_is_exclusive(x_12); +if (x_20 == 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_object* x_28; lean_object* x_29; lean_object* x_30; uint32_t x_31; uint8_t x_32; lean_object* x_33; lean_object* x_34; +x_21 = lean_ctor_get(x_12, 0); +lean_dec(x_21); +x_22 = lean_ctor_get(x_13, 0); +lean_inc(x_22); lean_dec(x_13); -x_21 = !lean_is_exclusive(x_12); -if (x_21 == 0) -{ -lean_object* x_22; uint8_t x_23; -x_22 = lean_ctor_get(x_12, 0); +x_23 = lean_ctor_get(x_22, 0); +lean_inc(x_23); +x_24 = lean_ctor_get(x_22, 1); +lean_inc(x_24); lean_dec(x_22); -x_23 = !lean_is_exclusive(x_20); -if (x_23 == 0) -{ -lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; uint32_t x_29; uint8_t x_30; lean_object* x_31; lean_object* x_32; -x_24 = lean_ctor_get(x_20, 0); -x_25 = lean_ctor_get(x_20, 1); -x_26 = l_Std_BitVec_not(x_24, x_25); -lean_dec(x_25); -lean_ctor_set(x_20, 1, x_26); -x_27 = l_Std_BitVec_Literal_toExpr(x_20); -x_28 = lean_box(0); -x_29 = 0; -x_30 = 1; -x_31 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_31, 0, x_27); -lean_ctor_set(x_31, 1, x_28); -lean_ctor_set_uint32(x_31, sizeof(void*)*2, x_29); -lean_ctor_set_uint8(x_31, sizeof(void*)*2 + 4, x_30); -x_32 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_32, 0, x_31); -lean_ctor_set(x_12, 0, x_32); +x_25 = l_BitVec_not(x_23, x_24); +lean_dec(x_24); +x_26 = l_Lean_mkNatLit(x_23); +x_27 = l_Lean_mkNatLit(x_25); +x_28 = l_BitVec_reduceUnary___lambda__1___closed__5; +x_29 = l_Lean_mkAppB(x_28, x_26, x_27); +x_30 = lean_box(0); +x_31 = 0; +x_32 = 1; +x_33 = lean_alloc_ctor(0, 2, 5); +lean_ctor_set(x_33, 0, x_29); +lean_ctor_set(x_33, 1, x_30); +lean_ctor_set_uint32(x_33, sizeof(void*)*2, x_31); +lean_ctor_set_uint8(x_33, sizeof(void*)*2 + 4, x_32); +x_34 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_34, 0, x_33); +lean_ctor_set(x_12, 0, x_34); return x_12; } else { -lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; uint32_t x_39; uint8_t x_40; lean_object* x_41; lean_object* x_42; -x_33 = lean_ctor_get(x_20, 0); -x_34 = lean_ctor_get(x_20, 1); -lean_inc(x_34); -lean_inc(x_33); -lean_dec(x_20); -x_35 = l_Std_BitVec_not(x_33, x_34); -lean_dec(x_34); -x_36 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_36, 0, x_33); -lean_ctor_set(x_36, 1, x_35); -x_37 = l_Std_BitVec_Literal_toExpr(x_36); -x_38 = lean_box(0); -x_39 = 0; -x_40 = 1; -x_41 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_41, 0, x_37); -lean_ctor_set(x_41, 1, x_38); -lean_ctor_set_uint32(x_41, sizeof(void*)*2, x_39); -lean_ctor_set_uint8(x_41, sizeof(void*)*2 + 4, x_40); -x_42 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_42, 0, x_41); -lean_ctor_set(x_12, 0, x_42); -return x_12; -} -} -else -{ -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; uint32_t x_51; uint8_t x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; -x_43 = lean_ctor_get(x_12, 1); -lean_inc(x_43); +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; uint32_t x_45; uint8_t x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; +x_35 = lean_ctor_get(x_12, 1); +lean_inc(x_35); lean_dec(x_12); -x_44 = lean_ctor_get(x_20, 0); -lean_inc(x_44); -x_45 = lean_ctor_get(x_20, 1); -lean_inc(x_45); -if (lean_is_exclusive(x_20)) { - lean_ctor_release(x_20, 0); - lean_ctor_release(x_20, 1); - x_46 = x_20; -} else { - lean_dec_ref(x_20); - x_46 = lean_box(0); -} -x_47 = l_Std_BitVec_not(x_44, x_45); -lean_dec(x_45); -if (lean_is_scalar(x_46)) { - x_48 = lean_alloc_ctor(0, 2, 0); -} else { - x_48 = x_46; -} -lean_ctor_set(x_48, 0, x_44); -lean_ctor_set(x_48, 1, x_47); -x_49 = l_Std_BitVec_Literal_toExpr(x_48); -x_50 = lean_box(0); -x_51 = 0; -x_52 = 1; -x_53 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_53, 0, x_49); -lean_ctor_set(x_53, 1, x_50); -lean_ctor_set_uint32(x_53, sizeof(void*)*2, x_51); -lean_ctor_set_uint8(x_53, sizeof(void*)*2 + 4, x_52); -x_54 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_54, 0, x_53); -x_55 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_55, 0, x_54); -lean_ctor_set(x_55, 1, x_43); -return x_55; +x_36 = lean_ctor_get(x_13, 0); +lean_inc(x_36); +lean_dec(x_13); +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_BitVec_not(x_37, x_38); +lean_dec(x_38); +x_40 = l_Lean_mkNatLit(x_37); +x_41 = l_Lean_mkNatLit(x_39); +x_42 = l_BitVec_reduceUnary___lambda__1___closed__5; +x_43 = l_Lean_mkAppB(x_42, x_40, x_41); +x_44 = lean_box(0); +x_45 = 0; +x_46 = 1; +x_47 = lean_alloc_ctor(0, 2, 5); +lean_ctor_set(x_47, 0, x_43); +lean_ctor_set(x_47, 1, x_44); +lean_ctor_set_uint32(x_47, sizeof(void*)*2, x_45); +lean_ctor_set_uint8(x_47, sizeof(void*)*2 + 4, x_46); +x_48 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_48, 0, x_47); +x_49 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_49, 0, x_48); +lean_ctor_set(x_49, 1, x_35); +return x_49; } } } else { -uint8_t x_56; -x_56 = !lean_is_exclusive(x_12); -if (x_56 == 0) +uint8_t x_50; +x_50 = !lean_is_exclusive(x_12); +if (x_50 == 0) { return x_12; } else { -lean_object* x_57; lean_object* x_58; lean_object* x_59; -x_57 = lean_ctor_get(x_12, 0); -x_58 = lean_ctor_get(x_12, 1); -lean_inc(x_58); -lean_inc(x_57); +lean_object* x_51; lean_object* x_52; lean_object* x_53; +x_51 = lean_ctor_get(x_12, 0); +x_52 = lean_ctor_get(x_12, 1); +lean_inc(x_52); +lean_inc(x_51); lean_dec(x_12); -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; +x_53 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_53, 0, x_51); +lean_ctor_set(x_53, 1, x_52); +return x_53; } } } } -static lean_object* _init_l_Std_BitVec_reduceNot___closed__1() { +static lean_object* _init_l_BitVec_reduceNot___closed__1() { _start: { lean_object* x_1; @@ -4974,7 +3982,7 @@ x_1 = lean_mk_string_from_bytes("Complement", 10); return x_1; } } -static lean_object* _init_l_Std_BitVec_reduceNot___closed__2() { +static lean_object* _init_l_BitVec_reduceNot___closed__2() { _start: { lean_object* x_1; @@ -4982,21 +3990,21 @@ x_1 = lean_mk_string_from_bytes("complement", 10); return x_1; } } -static lean_object* _init_l_Std_BitVec_reduceNot___closed__3() { +static lean_object* _init_l_BitVec_reduceNot___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Std_BitVec_reduceNot___closed__1; -x_2 = l_Std_BitVec_reduceNot___closed__2; +x_1 = l_BitVec_reduceNot___closed__1; +x_2 = l_BitVec_reduceNot___closed__2; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } -LEAN_EXPORT lean_object* l_Std_BitVec_reduceNot(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_EXPORT lean_object* l_BitVec_reduceNot(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; uint8_t x_12; -x_10 = l_Std_BitVec_reduceNot___closed__3; +x_10 = l_BitVec_reduceNot___closed__3; x_11 = lean_unsigned_to_nat(3u); x_12 = l_Lean_Expr_isAppOfArity(x_1, x_10, x_11); if (x_12 == 0) @@ -5009,7 +4017,7 @@ lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); -x_13 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_13 = l_BitVec_reduceUnary___lambda__1___closed__1; x_14 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_14, 0, x_13); lean_ctor_set(x_14, 1, x_9); @@ -5019,7 +4027,7 @@ else { lean_object* x_15; lean_object* x_16; x_15 = lean_box(0); -x_16 = l_Std_BitVec_reduceNot___lambda__1(x_1, x_15, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_16 = l_BitVec_reduceNot___lambda__1(x_1, x_15, 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); @@ -5027,11 +4035,11 @@ return x_16; } } } -LEAN_EXPORT lean_object* l_Std_BitVec_reduceNot___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) { +LEAN_EXPORT lean_object* l_BitVec_reduceNot___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_Std_BitVec_reduceNot___lambda__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_11 = l_BitVec_reduceNot___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); @@ -5040,16 +4048,16 @@ lean_dec(x_1); return x_11; } } -LEAN_EXPORT lean_object* l_Std_BitVec_reduceNot___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_EXPORT lean_object* l_BitVec_reduceNot___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_Std_BitVec_reduceNot(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_10 = l_BitVec_reduceNot(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); lean_dec(x_1); return x_10; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceNot_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1408____closed__1() { +static lean_object* _init_l___regBuiltin_BitVec_reduceNot_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1185____closed__1() { _start: { lean_object* x_1; @@ -5057,22 +4065,21 @@ x_1 = lean_mk_string_from_bytes("reduceNot", 9); return x_1; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceNot_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1408____closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f___closed__4; -x_2 = l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f___closed__5; -x_3 = l___regBuiltin_Std_BitVec_reduceNot_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1408____closed__1; -x_4 = l_Lean_Name_mkStr3(x_1, x_2, x_3); -return x_4; -} -} -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceNot_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1408____closed__3() { +static lean_object* _init_l___regBuiltin_BitVec_reduceNot_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1185____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Std_BitVec_reduceNot___closed__3; +x_1 = l_BitVec_reduceUnary___lambda__1___closed__2; +x_2 = l___regBuiltin_BitVec_reduceNot_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1185____closed__1; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___regBuiltin_BitVec_reduceNot_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1185____closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_BitVec_reduceNot___closed__3; x_2 = lean_unsigned_to_nat(3u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -5080,105 +4087,106 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceNot_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1408____closed__4() { +static lean_object* _init_l___regBuiltin_BitVec_reduceNot_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1185____closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1371____closed__5; -x_2 = l___regBuiltin_Std_BitVec_reduceNot_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1408____closed__3; +x_1 = l___regBuiltin_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1148____closed__6; +x_2 = l___regBuiltin_BitVec_reduceNot_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1185____closed__3; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceNot_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1408____closed__5() { +static lean_object* _init_l___regBuiltin_BitVec_reduceNot_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1185____closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceNot_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1408____closed__4; -x_2 = l___regBuiltin_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1371____closed__4; +x_1 = l___regBuiltin_BitVec_reduceNot_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1185____closed__4; +x_2 = l___regBuiltin_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1148____closed__5; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceNot_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1408____closed__6() { +static lean_object* _init_l___regBuiltin_BitVec_reduceNot_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1185____closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceNot_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1408____closed__5; +x_1 = l___regBuiltin_BitVec_reduceNot_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1185____closed__5; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceNot_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1408____closed__7() { +static lean_object* _init_l___regBuiltin_BitVec_reduceNot_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1185____closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceNot_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1408____closed__6; +x_1 = l___regBuiltin_BitVec_reduceNot_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1185____closed__6; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceNot_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1408____closed__8() { +static lean_object* _init_l___regBuiltin_BitVec_reduceNot_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1185____closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceNot_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1408____closed__7; +x_1 = l___regBuiltin_BitVec_reduceNot_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1185____closed__7; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceNot_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1408____closed__9() { +static lean_object* _init_l___regBuiltin_BitVec_reduceNot_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1185____closed__9() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Std_BitVec_reduceNot___boxed), 9, 0); +x_1 = lean_alloc_closure((void*)(l_BitVec_reduceNot___boxed), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceNot_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1408_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceNot_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1185_(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_Std_BitVec_reduceNot_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1408____closed__2; -x_3 = l___regBuiltin_Std_BitVec_reduceNot_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1408____closed__8; -x_4 = l___regBuiltin_Std_BitVec_reduceNot_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1408____closed__9; +x_2 = l___regBuiltin_BitVec_reduceNot_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1185____closed__2; +x_3 = l___regBuiltin_BitVec_reduceNot_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1185____closed__8; +x_4 = l___regBuiltin_BitVec_reduceNot_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1185____closed__9; x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); return x_5; } } -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceNot_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1410_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceNot_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1187_(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_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1373____closed__1; -x_3 = l___regBuiltin_Std_BitVec_reduceNot_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1408____closed__2; +x_2 = l___regBuiltin_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1150____closed__1; +x_3 = l___regBuiltin_BitVec_reduceNot_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1185____closed__2; x_4 = 1; -x_5 = l___regBuiltin_Std_BitVec_reduceNot_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1408____closed__9; +x_5 = l___regBuiltin_BitVec_reduceNot_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1185____closed__9; 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_Std_BitVec_reduceNot_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1412_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceNot_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1189_(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_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1375____closed__1; -x_3 = l___regBuiltin_Std_BitVec_reduceNot_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1408____closed__2; +x_2 = l___regBuiltin_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1152____closed__1; +x_3 = l___regBuiltin_BitVec_reduceNot_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1185____closed__2; x_4 = 1; -x_5 = l___regBuiltin_Std_BitVec_reduceNot_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1408____closed__9; +x_5 = l___regBuiltin_BitVec_reduceNot_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1185____closed__9; 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_Std_BitVec_reduceAbs___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) { +LEAN_EXPORT lean_object* l_BitVec_reduceAbs___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; x_11 = l_Lean_Expr_appArg_x21(x_1); -x_12 = l_Std_BitVec_fromExpr_x3f(x_11, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_12 = l_BitVec_fromExpr_x3f(x_11, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_11); if (lean_obj_tag(x_12) == 0) { lean_object* x_13; @@ -5193,7 +4201,7 @@ if (x_14 == 0) lean_object* x_15; lean_object* x_16; x_15 = lean_ctor_get(x_12, 0); lean_dec(x_15); -x_16 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_16 = l_BitVec_reduceUnary___lambda__1___closed__1; lean_ctor_set(x_12, 0, x_16); return x_12; } @@ -5203,7 +4211,7 @@ lean_object* x_17; lean_object* x_18; lean_object* x_19; x_17 = lean_ctor_get(x_12, 1); lean_inc(x_17); lean_dec(x_12); -x_18 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_18 = l_BitVec_reduceUnary___lambda__1___closed__1; x_19 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_19, 0, x_18); lean_ctor_set(x_19, 1, x_17); @@ -5212,137 +4220,102 @@ return x_19; } else { -lean_object* x_20; uint8_t x_21; -x_20 = lean_ctor_get(x_13, 0); -lean_inc(x_20); +uint8_t x_20; +x_20 = !lean_is_exclusive(x_12); +if (x_20 == 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_object* x_28; lean_object* x_29; lean_object* x_30; uint32_t x_31; uint8_t x_32; lean_object* x_33; lean_object* x_34; +x_21 = lean_ctor_get(x_12, 0); +lean_dec(x_21); +x_22 = lean_ctor_get(x_13, 0); +lean_inc(x_22); lean_dec(x_13); -x_21 = !lean_is_exclusive(x_12); -if (x_21 == 0) -{ -lean_object* x_22; uint8_t x_23; -x_22 = lean_ctor_get(x_12, 0); +x_23 = lean_ctor_get(x_22, 0); +lean_inc(x_23); +x_24 = lean_ctor_get(x_22, 1); +lean_inc(x_24); lean_dec(x_22); -x_23 = !lean_is_exclusive(x_20); -if (x_23 == 0) -{ -lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; uint32_t x_29; uint8_t x_30; lean_object* x_31; lean_object* x_32; -x_24 = lean_ctor_get(x_20, 0); -x_25 = lean_ctor_get(x_20, 1); -x_26 = l_Std_BitVec_abs(x_24, x_25); -lean_dec(x_25); -lean_ctor_set(x_20, 1, x_26); -x_27 = l_Std_BitVec_Literal_toExpr(x_20); -x_28 = lean_box(0); -x_29 = 0; -x_30 = 1; -x_31 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_31, 0, x_27); -lean_ctor_set(x_31, 1, x_28); -lean_ctor_set_uint32(x_31, sizeof(void*)*2, x_29); -lean_ctor_set_uint8(x_31, sizeof(void*)*2 + 4, x_30); -x_32 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_32, 0, x_31); -lean_ctor_set(x_12, 0, x_32); +x_25 = l_BitVec_abs(x_23, x_24); +lean_dec(x_24); +x_26 = l_Lean_mkNatLit(x_23); +x_27 = l_Lean_mkNatLit(x_25); +x_28 = l_BitVec_reduceUnary___lambda__1___closed__5; +x_29 = l_Lean_mkAppB(x_28, x_26, x_27); +x_30 = lean_box(0); +x_31 = 0; +x_32 = 1; +x_33 = lean_alloc_ctor(0, 2, 5); +lean_ctor_set(x_33, 0, x_29); +lean_ctor_set(x_33, 1, x_30); +lean_ctor_set_uint32(x_33, sizeof(void*)*2, x_31); +lean_ctor_set_uint8(x_33, sizeof(void*)*2 + 4, x_32); +x_34 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_34, 0, x_33); +lean_ctor_set(x_12, 0, x_34); return x_12; } else { -lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; uint32_t x_39; uint8_t x_40; lean_object* x_41; lean_object* x_42; -x_33 = lean_ctor_get(x_20, 0); -x_34 = lean_ctor_get(x_20, 1); -lean_inc(x_34); -lean_inc(x_33); -lean_dec(x_20); -x_35 = l_Std_BitVec_abs(x_33, x_34); -lean_dec(x_34); -x_36 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_36, 0, x_33); -lean_ctor_set(x_36, 1, x_35); -x_37 = l_Std_BitVec_Literal_toExpr(x_36); -x_38 = lean_box(0); -x_39 = 0; -x_40 = 1; -x_41 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_41, 0, x_37); -lean_ctor_set(x_41, 1, x_38); -lean_ctor_set_uint32(x_41, sizeof(void*)*2, x_39); -lean_ctor_set_uint8(x_41, sizeof(void*)*2 + 4, x_40); -x_42 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_42, 0, x_41); -lean_ctor_set(x_12, 0, x_42); -return x_12; -} -} -else -{ -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; uint32_t x_51; uint8_t x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; -x_43 = lean_ctor_get(x_12, 1); -lean_inc(x_43); +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; uint32_t x_45; uint8_t x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; +x_35 = lean_ctor_get(x_12, 1); +lean_inc(x_35); lean_dec(x_12); -x_44 = lean_ctor_get(x_20, 0); -lean_inc(x_44); -x_45 = lean_ctor_get(x_20, 1); -lean_inc(x_45); -if (lean_is_exclusive(x_20)) { - lean_ctor_release(x_20, 0); - lean_ctor_release(x_20, 1); - x_46 = x_20; -} else { - lean_dec_ref(x_20); - x_46 = lean_box(0); -} -x_47 = l_Std_BitVec_abs(x_44, x_45); -lean_dec(x_45); -if (lean_is_scalar(x_46)) { - x_48 = lean_alloc_ctor(0, 2, 0); -} else { - x_48 = x_46; -} -lean_ctor_set(x_48, 0, x_44); -lean_ctor_set(x_48, 1, x_47); -x_49 = l_Std_BitVec_Literal_toExpr(x_48); -x_50 = lean_box(0); -x_51 = 0; -x_52 = 1; -x_53 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_53, 0, x_49); -lean_ctor_set(x_53, 1, x_50); -lean_ctor_set_uint32(x_53, sizeof(void*)*2, x_51); -lean_ctor_set_uint8(x_53, sizeof(void*)*2 + 4, x_52); -x_54 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_54, 0, x_53); -x_55 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_55, 0, x_54); -lean_ctor_set(x_55, 1, x_43); -return x_55; +x_36 = lean_ctor_get(x_13, 0); +lean_inc(x_36); +lean_dec(x_13); +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_BitVec_abs(x_37, x_38); +lean_dec(x_38); +x_40 = l_Lean_mkNatLit(x_37); +x_41 = l_Lean_mkNatLit(x_39); +x_42 = l_BitVec_reduceUnary___lambda__1___closed__5; +x_43 = l_Lean_mkAppB(x_42, x_40, x_41); +x_44 = lean_box(0); +x_45 = 0; +x_46 = 1; +x_47 = lean_alloc_ctor(0, 2, 5); +lean_ctor_set(x_47, 0, x_43); +lean_ctor_set(x_47, 1, x_44); +lean_ctor_set_uint32(x_47, sizeof(void*)*2, x_45); +lean_ctor_set_uint8(x_47, sizeof(void*)*2 + 4, x_46); +x_48 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_48, 0, x_47); +x_49 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_49, 0, x_48); +lean_ctor_set(x_49, 1, x_35); +return x_49; } } } else { -uint8_t x_56; -x_56 = !lean_is_exclusive(x_12); -if (x_56 == 0) +uint8_t x_50; +x_50 = !lean_is_exclusive(x_12); +if (x_50 == 0) { return x_12; } else { -lean_object* x_57; lean_object* x_58; lean_object* x_59; -x_57 = lean_ctor_get(x_12, 0); -x_58 = lean_ctor_get(x_12, 1); -lean_inc(x_58); -lean_inc(x_57); +lean_object* x_51; lean_object* x_52; lean_object* x_53; +x_51 = lean_ctor_get(x_12, 0); +x_52 = lean_ctor_get(x_12, 1); +lean_inc(x_52); +lean_inc(x_51); lean_dec(x_12); -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; +x_53 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_53, 0, x_51); +lean_ctor_set(x_53, 1, x_52); +return x_53; } } } } -static lean_object* _init_l_Std_BitVec_reduceAbs___closed__1() { +static lean_object* _init_l_BitVec_reduceAbs___closed__1() { _start: { lean_object* x_1; @@ -5350,22 +4323,21 @@ x_1 = lean_mk_string_from_bytes("abs", 3); return x_1; } } -static lean_object* _init_l_Std_BitVec_reduceAbs___closed__2() { +static lean_object* _init_l_BitVec_reduceAbs___closed__2() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f___closed__4; -x_2 = l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f___closed__5; -x_3 = l_Std_BitVec_reduceAbs___closed__1; -x_4 = l_Lean_Name_mkStr3(x_1, x_2, x_3); -return x_4; +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_BitVec_reduceUnary___lambda__1___closed__2; +x_2 = l_BitVec_reduceAbs___closed__1; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; } } -LEAN_EXPORT lean_object* l_Std_BitVec_reduceAbs(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_EXPORT lean_object* l_BitVec_reduceAbs(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; uint8_t x_12; -x_10 = l_Std_BitVec_reduceAbs___closed__2; +x_10 = l_BitVec_reduceAbs___closed__2; x_11 = lean_unsigned_to_nat(2u); x_12 = l_Lean_Expr_isAppOfArity(x_1, x_10, x_11); if (x_12 == 0) @@ -5378,7 +4350,7 @@ lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); -x_13 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_13 = l_BitVec_reduceUnary___lambda__1___closed__1; x_14 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_14, 0, x_13); lean_ctor_set(x_14, 1, x_9); @@ -5388,7 +4360,7 @@ else { lean_object* x_15; lean_object* x_16; x_15 = lean_box(0); -x_16 = l_Std_BitVec_reduceAbs___lambda__1(x_1, x_15, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_16 = l_BitVec_reduceAbs___lambda__1(x_1, x_15, 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); @@ -5396,11 +4368,11 @@ return x_16; } } } -LEAN_EXPORT lean_object* l_Std_BitVec_reduceAbs___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) { +LEAN_EXPORT lean_object* l_BitVec_reduceAbs___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_Std_BitVec_reduceAbs___lambda__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_11 = l_BitVec_reduceAbs___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); @@ -5409,16 +4381,16 @@ lean_dec(x_1); return x_11; } } -LEAN_EXPORT lean_object* l_Std_BitVec_reduceAbs___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_EXPORT lean_object* l_BitVec_reduceAbs___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_Std_BitVec_reduceAbs(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_10 = l_BitVec_reduceAbs(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); lean_dec(x_1); return x_10; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1429____closed__1() { +static lean_object* _init_l___regBuiltin_BitVec_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1206____closed__1() { _start: { lean_object* x_1; @@ -5426,22 +4398,21 @@ x_1 = lean_mk_string_from_bytes("reduceAbs", 9); return x_1; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1429____closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f___closed__4; -x_2 = l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f___closed__5; -x_3 = l___regBuiltin_Std_BitVec_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1429____closed__1; -x_4 = l_Lean_Name_mkStr3(x_1, x_2, x_3); -return x_4; -} -} -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1429____closed__3() { +static lean_object* _init_l___regBuiltin_BitVec_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1206____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Std_BitVec_reduceAbs___closed__2; +x_1 = l_BitVec_reduceUnary___lambda__1___closed__2; +x_2 = l___regBuiltin_BitVec_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1206____closed__1; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___regBuiltin_BitVec_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1206____closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_BitVec_reduceAbs___closed__2; x_2 = lean_unsigned_to_nat(2u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -5449,7 +4420,7 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1429____closed__4() { +static lean_object* _init_l___regBuiltin_BitVec_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1206____closed__4() { _start: { lean_object* x_1; lean_object* x_2; @@ -5458,106 +4429,107 @@ x_2 = lean_mk_empty_array_with_capacity(x_1); return x_2; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1429____closed__5() { +static lean_object* _init_l___regBuiltin_BitVec_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1206____closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1429____closed__4; -x_2 = l___regBuiltin_Std_BitVec_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1429____closed__3; +x_1 = l___regBuiltin_BitVec_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1206____closed__4; +x_2 = l___regBuiltin_BitVec_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1206____closed__3; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1429____closed__6() { +static lean_object* _init_l___regBuiltin_BitVec_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1206____closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1429____closed__5; +x_1 = l___regBuiltin_BitVec_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1206____closed__5; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1429____closed__7() { +static lean_object* _init_l___regBuiltin_BitVec_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1206____closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1429____closed__6; +x_1 = l___regBuiltin_BitVec_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1206____closed__6; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1429____closed__8() { +static lean_object* _init_l___regBuiltin_BitVec_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1206____closed__8() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Std_BitVec_reduceAbs___boxed), 9, 0); +x_1 = lean_alloc_closure((void*)(l_BitVec_reduceAbs___boxed), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1429_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1206_(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_Std_BitVec_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1429____closed__2; -x_3 = l___regBuiltin_Std_BitVec_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1429____closed__7; -x_4 = l___regBuiltin_Std_BitVec_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1429____closed__8; +x_2 = l___regBuiltin_BitVec_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1206____closed__2; +x_3 = l___regBuiltin_BitVec_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1206____closed__7; +x_4 = l___regBuiltin_BitVec_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1206____closed__8; x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); return x_5; } } -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1431_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1208_(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_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1373____closed__1; -x_3 = l___regBuiltin_Std_BitVec_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1429____closed__2; +x_2 = l___regBuiltin_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1150____closed__1; +x_3 = l___regBuiltin_BitVec_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1206____closed__2; x_4 = 1; -x_5 = l___regBuiltin_Std_BitVec_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1429____closed__8; +x_5 = l___regBuiltin_BitVec_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1206____closed__8; 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_Std_BitVec_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1433_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1210_(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_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1375____closed__1; -x_3 = l___regBuiltin_Std_BitVec_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1429____closed__2; +x_2 = l___regBuiltin_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1152____closed__1; +x_3 = l___regBuiltin_BitVec_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1206____closed__2; x_4 = 1; -x_5 = l___regBuiltin_Std_BitVec_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1429____closed__8; +x_5 = l___regBuiltin_BitVec_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1206____closed__8; 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_Std_BitVec_reduceAnd___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, lean_object* x_11, lean_object* x_12) { +LEAN_EXPORT lean_object* l_BitVec_reduceAnd___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, lean_object* x_11, lean_object* x_12) { _start: { -lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; uint32_t x_18; uint8_t x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; +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; uint32_t x_21; uint8_t x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; x_13 = lean_ctor_get(x_1, 1); -x_14 = lean_nat_land(x_2, x_13); -x_15 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_15, 0, x_3); -lean_ctor_set(x_15, 1, x_14); -x_16 = l_Std_BitVec_Literal_toExpr(x_15); -x_17 = lean_box(0); -x_18 = 0; -x_19 = 1; -x_20 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_20, 0, x_16); -lean_ctor_set(x_20, 1, x_17); -lean_ctor_set_uint32(x_20, sizeof(void*)*2, x_18); -lean_ctor_set_uint8(x_20, sizeof(void*)*2 + 4, x_19); -x_21 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_21, 0, x_20); -x_22 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_22, 0, x_21); -lean_ctor_set(x_22, 1, x_12); -return x_22; +x_14 = lean_ctor_get(x_2, 1); +x_15 = lean_nat_land(x_13, x_14); +x_16 = l_Lean_mkNatLit(x_3); +x_17 = l_Lean_mkNatLit(x_15); +x_18 = l_BitVec_reduceUnary___lambda__1___closed__5; +x_19 = l_Lean_mkAppB(x_18, x_16, x_17); +x_20 = lean_box(0); +x_21 = 0; +x_22 = 1; +x_23 = lean_alloc_ctor(0, 2, 5); +lean_ctor_set(x_23, 0, x_19); +lean_ctor_set(x_23, 1, x_20); +lean_ctor_set_uint32(x_23, sizeof(void*)*2, x_21); +lean_ctor_set_uint8(x_23, sizeof(void*)*2 + 4, x_22); +x_24 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_24, 0, x_23); +x_25 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_25, 0, x_24); +lean_ctor_set(x_25, 1, x_12); +return x_25; } } -LEAN_EXPORT lean_object* l_Std_BitVec_reduceAnd___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_EXPORT lean_object* l_BitVec_reduceAnd___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) { _start: { lean_object* x_12; lean_object* x_13; lean_object* x_14; @@ -5570,7 +4542,8 @@ lean_inc(x_10); lean_inc(x_9); lean_inc(x_8); lean_inc(x_7); -x_14 = l_Std_BitVec_fromExpr_x3f(x_13, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +x_14 = l_BitVec_fromExpr_x3f(x_13, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_13); if (lean_obj_tag(x_14) == 0) { lean_object* x_15; @@ -5594,7 +4567,7 @@ if (x_16 == 0) lean_object* x_17; lean_object* x_18; x_17 = lean_ctor_get(x_14, 0); lean_dec(x_17); -x_18 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_18 = l_BitVec_reduceUnary___lambda__1___closed__1; lean_ctor_set(x_14, 0, x_18); return x_14; } @@ -5604,7 +4577,7 @@ lean_object* x_19; lean_object* x_20; lean_object* x_21; x_19 = lean_ctor_get(x_14, 1); lean_inc(x_19); lean_dec(x_14); -x_20 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_20 = l_BitVec_reduceUnary___lambda__1___closed__1; x_21 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_21, 0, x_20); lean_ctor_set(x_21, 1, x_19); @@ -5626,7 +4599,8 @@ lean_inc(x_10); lean_inc(x_9); lean_inc(x_8); lean_inc(x_7); -x_25 = l_Std_BitVec_fromExpr_x3f(x_24, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_22); +x_25 = l_BitVec_fromExpr_x3f(x_24, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_22); +lean_dec(x_24); if (lean_obj_tag(x_25) == 0) { lean_object* x_26; @@ -5650,7 +4624,7 @@ if (x_27 == 0) lean_object* x_28; lean_object* x_29; x_28 = lean_ctor_get(x_25, 0); lean_dec(x_28); -x_29 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_29 = l_BitVec_reduceUnary___lambda__1___closed__1; lean_ctor_set(x_25, 0, x_29); return x_25; } @@ -5660,7 +4634,7 @@ lean_object* x_30; lean_object* x_31; lean_object* x_32; x_30 = lean_ctor_get(x_25, 1); lean_inc(x_30); lean_dec(x_25); -x_31 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_31 = l_BitVec_reduceUnary___lambda__1___closed__1; x_32 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_32, 0, x_31); lean_ctor_set(x_32, 1, x_30); @@ -5673,7 +4647,7 @@ uint8_t x_33; x_33 = !lean_is_exclusive(x_25); if (x_33 == 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; uint8_t x_40; +lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; uint8_t x_39; x_34 = lean_ctor_get(x_25, 1); x_35 = lean_ctor_get(x_25, 0); lean_dec(x_35); @@ -5682,19 +4656,16 @@ lean_inc(x_36); lean_dec(x_26); x_37 = lean_ctor_get(x_23, 0); lean_inc(x_37); -x_38 = lean_ctor_get(x_23, 1); +x_38 = lean_ctor_get(x_36, 0); lean_inc(x_38); -lean_dec(x_23); -x_39 = lean_ctor_get(x_36, 0); -lean_inc(x_39); -x_40 = lean_nat_dec_eq(x_37, x_39); -if (x_40 == 0) +x_39 = lean_nat_dec_eq(x_37, x_38); +if (x_39 == 0) { -lean_object* x_41; -lean_dec(x_39); +lean_object* x_40; lean_dec(x_38); lean_dec(x_37); lean_dec(x_36); +lean_dec(x_23); lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); @@ -5703,30 +4674,30 @@ lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_2); -x_41 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; -lean_ctor_set(x_25, 0, x_41); +x_40 = l_BitVec_reduceUnary___lambda__1___closed__1; +lean_ctor_set(x_25, 0, x_40); return x_25; } else { -lean_object* x_42; lean_object* x_43; lean_object* x_44; uint8_t x_45; +lean_object* x_41; lean_object* x_42; lean_object* x_43; uint8_t x_44; lean_free_object(x_25); -x_42 = l_Std_BitVec_reduceBin___lambda__2___closed__3; -x_43 = l_Lean_isTracingEnabledFor___at_Lean_Meta_Simp_congrArgs___spec__1(x_42, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_34); -x_44 = lean_ctor_get(x_43, 0); -lean_inc(x_44); -x_45 = lean_unbox(x_44); -lean_dec(x_44); -if (x_45 == 0) -{ -lean_object* x_46; lean_object* x_47; lean_object* x_48; -lean_dec(x_39); -lean_dec(x_2); -x_46 = lean_ctor_get(x_43, 1); -lean_inc(x_46); +x_41 = l_BitVec_reduceBin___lambda__2___closed__3; +x_42 = l_Lean_isTracingEnabledFor___at_Lean_Meta_Simp_congrArgs___spec__1(x_41, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_34); +x_43 = lean_ctor_get(x_42, 0); +lean_inc(x_43); +x_44 = lean_unbox(x_43); lean_dec(x_43); -x_47 = lean_box(0); -x_48 = l_Std_BitVec_reduceAnd___lambda__1(x_36, x_38, x_37, x_47, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_46); +if (x_44 == 0) +{ +lean_object* x_45; lean_object* x_46; lean_object* x_47; +lean_dec(x_38); +lean_dec(x_2); +x_45 = lean_ctor_get(x_42, 1); +lean_inc(x_45); +lean_dec(x_42); +x_46 = lean_box(0); +x_47 = l_BitVec_reduceAnd___lambda__1(x_23, x_36, x_37, x_46, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_45); lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); @@ -5734,34 +4705,35 @@ lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); -lean_dec(x_38); lean_dec(x_36); -return x_48; +lean_dec(x_23); +return x_47; } else { -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; -x_49 = lean_ctor_get(x_43, 1); -lean_inc(x_49); -lean_dec(x_43); -x_50 = l_Lean_MessageData_ofName(x_2); -x_51 = l_Std_BitVec_reduceBin___lambda__2___closed__5; -x_52 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_52, 0, x_51); -lean_ctor_set(x_52, 1, x_50); -x_53 = l_Std_BitVec_reduceBin___lambda__2___closed__7; -x_54 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_54, 0, x_52); -lean_ctor_set(x_54, 1, x_53); -lean_inc(x_38); -x_55 = l_Std_BitVec_toHex(x_37, x_38); +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; +x_48 = lean_ctor_get(x_42, 1); +lean_inc(x_48); +lean_dec(x_42); +x_49 = l_Lean_MessageData_ofName(x_2); +x_50 = l_BitVec_reduceBin___lambda__2___closed__5; +x_51 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_51, 0, x_50); +lean_ctor_set(x_51, 1, x_49); +x_52 = l_BitVec_reduceBin___lambda__2___closed__7; +x_53 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_53, 0, x_51); +lean_ctor_set(x_53, 1, x_52); +x_54 = lean_ctor_get(x_23, 1); +lean_inc(x_54); +x_55 = l_BitVec_toHex(x_37, x_54); x_56 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_56, 0, x_55); -x_57 = l_Std_BitVec_reduceBin___lambda__2___closed__9; +x_57 = l_BitVec_reduceBin___lambda__2___closed__9; x_58 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_58, 0, x_57); lean_ctor_set(x_58, 1, x_56); -x_59 = l_Std_BitVec_reduceBin___lambda__2___closed__11; +x_59 = l_BitVec_reduceBin___lambda__2___closed__11; x_60 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_60, 0, x_58); lean_ctor_set(x_60, 1, x_59); @@ -5780,15 +4752,15 @@ lean_ctor_set(x_67, 0, x_66); x_68 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_68, 0, x_67); x_69 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_69, 0, x_54); +lean_ctor_set(x_69, 0, x_53); lean_ctor_set(x_69, 1, x_68); -x_70 = l_Std_BitVec_reduceBin___lambda__2___closed__13; +x_70 = l_BitVec_reduceBin___lambda__2___closed__13; x_71 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_71, 0, x_69); lean_ctor_set(x_71, 1, x_70); x_72 = lean_ctor_get(x_36, 1); lean_inc(x_72); -x_73 = l_Std_BitVec_toHex(x_39, x_72); +x_73 = l_BitVec_toHex(x_38, x_72); x_74 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_74, 0, x_73); x_75 = lean_alloc_ctor(5, 2, 0); @@ -5797,7 +4769,7 @@ lean_ctor_set(x_75, 1, x_74); x_76 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_76, 0, x_75); lean_ctor_set(x_76, 1, x_59); -x_77 = l_Nat_repr(x_39); +x_77 = l_Nat_repr(x_38); x_78 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_78, 0, x_77); x_79 = lean_alloc_ctor(5, 2, 0); @@ -5811,17 +4783,17 @@ lean_ctor_set(x_82, 0, x_81); x_83 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_83, 0, x_71); lean_ctor_set(x_83, 1, x_82); -x_84 = l_Std_BitVec_reduceBin___lambda__2___closed__15; +x_84 = l_BitVec_reduceBin___lambda__2___closed__15; x_85 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_85, 0, x_83); lean_ctor_set(x_85, 1, x_84); -x_86 = l_Lean_addTrace___at_Lean_Meta_Simp_congrArgs___spec__2(x_42, x_85, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_49); +x_86 = l_Lean_addTrace___at_Lean_Meta_Simp_congrArgs___spec__2(x_41, x_85, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_48); 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 = l_Std_BitVec_reduceAnd___lambda__1(x_36, x_38, x_37, x_87, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_88); +x_89 = l_BitVec_reduceAnd___lambda__1(x_23, x_36, x_37, x_87, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_88); lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); @@ -5830,15 +4802,15 @@ lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_87); -lean_dec(x_38); lean_dec(x_36); +lean_dec(x_23); return x_89; } } } else { -lean_object* x_90; lean_object* x_91; lean_object* x_92; lean_object* x_93; lean_object* x_94; uint8_t x_95; +lean_object* x_90; lean_object* x_91; lean_object* x_92; lean_object* x_93; uint8_t x_94; x_90 = lean_ctor_get(x_25, 1); lean_inc(x_90); lean_dec(x_25); @@ -5847,19 +4819,16 @@ lean_inc(x_91); lean_dec(x_26); x_92 = lean_ctor_get(x_23, 0); lean_inc(x_92); -x_93 = lean_ctor_get(x_23, 1); +x_93 = lean_ctor_get(x_91, 0); lean_inc(x_93); -lean_dec(x_23); -x_94 = lean_ctor_get(x_91, 0); -lean_inc(x_94); -x_95 = lean_nat_dec_eq(x_92, x_94); -if (x_95 == 0) +x_94 = lean_nat_dec_eq(x_92, x_93); +if (x_94 == 0) { -lean_object* x_96; lean_object* x_97; -lean_dec(x_94); +lean_object* x_95; lean_object* x_96; lean_dec(x_93); lean_dec(x_92); lean_dec(x_91); +lean_dec(x_23); lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); @@ -5868,66 +4837,67 @@ lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_2); -x_96 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; -x_97 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_97, 0, x_96); -lean_ctor_set(x_97, 1, x_90); -return x_97; +x_95 = l_BitVec_reduceUnary___lambda__1___closed__1; +x_96 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_96, 0, x_95); +lean_ctor_set(x_96, 1, x_90); +return x_96; } else { -lean_object* x_98; lean_object* x_99; lean_object* x_100; uint8_t x_101; -x_98 = l_Std_BitVec_reduceBin___lambda__2___closed__3; -x_99 = l_Lean_isTracingEnabledFor___at_Lean_Meta_Simp_congrArgs___spec__1(x_98, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_90); -x_100 = lean_ctor_get(x_99, 0); -lean_inc(x_100); -x_101 = lean_unbox(x_100); -lean_dec(x_100); -if (x_101 == 0) -{ -lean_object* x_102; lean_object* x_103; lean_object* x_104; -lean_dec(x_94); -lean_dec(x_2); -x_102 = lean_ctor_get(x_99, 1); -lean_inc(x_102); +lean_object* x_97; lean_object* x_98; lean_object* x_99; uint8_t x_100; +x_97 = l_BitVec_reduceBin___lambda__2___closed__3; +x_98 = l_Lean_isTracingEnabledFor___at_Lean_Meta_Simp_congrArgs___spec__1(x_97, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_90); +x_99 = lean_ctor_get(x_98, 0); +lean_inc(x_99); +x_100 = lean_unbox(x_99); lean_dec(x_99); -x_103 = lean_box(0); -x_104 = l_Std_BitVec_reduceAnd___lambda__1(x_91, x_93, x_92, x_103, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_102); -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); +if (x_100 == 0) +{ +lean_object* x_101; lean_object* x_102; lean_object* x_103; lean_dec(x_93); +lean_dec(x_2); +x_101 = lean_ctor_get(x_98, 1); +lean_inc(x_101); +lean_dec(x_98); +x_102 = lean_box(0); +x_103 = l_BitVec_reduceAnd___lambda__1(x_23, x_91, x_92, x_102, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_101); +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_91); -return x_104; +lean_dec(x_23); +return x_103; } else { -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; -x_105 = lean_ctor_get(x_99, 1); -lean_inc(x_105); -lean_dec(x_99); -x_106 = l_Lean_MessageData_ofName(x_2); -x_107 = l_Std_BitVec_reduceBin___lambda__2___closed__5; -x_108 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_108, 0, x_107); -lean_ctor_set(x_108, 1, x_106); -x_109 = l_Std_BitVec_reduceBin___lambda__2___closed__7; -x_110 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_110, 0, x_108); -lean_ctor_set(x_110, 1, x_109); -lean_inc(x_93); -x_111 = l_Std_BitVec_toHex(x_92, x_93); +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; +x_104 = lean_ctor_get(x_98, 1); +lean_inc(x_104); +lean_dec(x_98); +x_105 = l_Lean_MessageData_ofName(x_2); +x_106 = l_BitVec_reduceBin___lambda__2___closed__5; +x_107 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_107, 0, x_106); +lean_ctor_set(x_107, 1, x_105); +x_108 = l_BitVec_reduceBin___lambda__2___closed__7; +x_109 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_109, 0, x_107); +lean_ctor_set(x_109, 1, x_108); +x_110 = lean_ctor_get(x_23, 1); +lean_inc(x_110); +x_111 = l_BitVec_toHex(x_92, x_110); x_112 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_112, 0, x_111); -x_113 = l_Std_BitVec_reduceBin___lambda__2___closed__9; +x_113 = l_BitVec_reduceBin___lambda__2___closed__9; x_114 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_114, 0, x_113); lean_ctor_set(x_114, 1, x_112); -x_115 = l_Std_BitVec_reduceBin___lambda__2___closed__11; +x_115 = l_BitVec_reduceBin___lambda__2___closed__11; x_116 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_116, 0, x_114); lean_ctor_set(x_116, 1, x_115); @@ -5946,15 +4916,15 @@ lean_ctor_set(x_123, 0, x_122); x_124 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_124, 0, x_123); x_125 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_125, 0, x_110); +lean_ctor_set(x_125, 0, x_109); lean_ctor_set(x_125, 1, x_124); -x_126 = l_Std_BitVec_reduceBin___lambda__2___closed__13; +x_126 = l_BitVec_reduceBin___lambda__2___closed__13; x_127 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_127, 0, x_125); lean_ctor_set(x_127, 1, x_126); x_128 = lean_ctor_get(x_91, 1); lean_inc(x_128); -x_129 = l_Std_BitVec_toHex(x_94, x_128); +x_129 = l_BitVec_toHex(x_93, x_128); x_130 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_130, 0, x_129); x_131 = lean_alloc_ctor(5, 2, 0); @@ -5963,7 +4933,7 @@ lean_ctor_set(x_131, 1, x_130); x_132 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_132, 0, x_131); lean_ctor_set(x_132, 1, x_115); -x_133 = l_Nat_repr(x_94); +x_133 = l_Nat_repr(x_93); x_134 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_134, 0, x_133); x_135 = lean_alloc_ctor(5, 2, 0); @@ -5977,17 +4947,17 @@ lean_ctor_set(x_138, 0, x_137); x_139 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_139, 0, x_127); lean_ctor_set(x_139, 1, x_138); -x_140 = l_Std_BitVec_reduceBin___lambda__2___closed__15; +x_140 = l_BitVec_reduceBin___lambda__2___closed__15; x_141 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_141, 0, x_139); lean_ctor_set(x_141, 1, x_140); -x_142 = l_Lean_addTrace___at_Lean_Meta_Simp_congrArgs___spec__2(x_98, x_141, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_105); +x_142 = l_Lean_addTrace___at_Lean_Meta_Simp_congrArgs___spec__2(x_97, x_141, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_104); x_143 = lean_ctor_get(x_142, 0); lean_inc(x_143); x_144 = lean_ctor_get(x_142, 1); lean_inc(x_144); lean_dec(x_142); -x_145 = l_Std_BitVec_reduceAnd___lambda__1(x_91, x_93, x_92, x_143, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_144); +x_145 = l_BitVec_reduceAnd___lambda__1(x_23, x_91, x_92, x_143, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_144); lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); @@ -5996,8 +4966,8 @@ lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_143); -lean_dec(x_93); lean_dec(x_91); +lean_dec(x_23); return x_145; } } @@ -6070,7 +5040,7 @@ return x_153; } } } -static lean_object* _init_l_Std_BitVec_reduceAnd___closed__1() { +static lean_object* _init_l_BitVec_reduceAnd___closed__1() { _start: { lean_object* x_1; @@ -6078,7 +5048,7 @@ x_1 = lean_mk_string_from_bytes("HAnd", 4); return x_1; } } -static lean_object* _init_l_Std_BitVec_reduceAnd___closed__2() { +static lean_object* _init_l_BitVec_reduceAnd___closed__2() { _start: { lean_object* x_1; @@ -6086,21 +5056,21 @@ x_1 = lean_mk_string_from_bytes("hAnd", 4); return x_1; } } -static lean_object* _init_l_Std_BitVec_reduceAnd___closed__3() { +static lean_object* _init_l_BitVec_reduceAnd___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Std_BitVec_reduceAnd___closed__1; -x_2 = l_Std_BitVec_reduceAnd___closed__2; +x_1 = l_BitVec_reduceAnd___closed__1; +x_2 = l_BitVec_reduceAnd___closed__2; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } -LEAN_EXPORT lean_object* l_Std_BitVec_reduceAnd(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_EXPORT lean_object* l_BitVec_reduceAnd(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; uint8_t x_12; -x_10 = l_Std_BitVec_reduceAnd___closed__3; +x_10 = l_BitVec_reduceAnd___closed__3; x_11 = lean_unsigned_to_nat(6u); x_12 = l_Lean_Expr_isAppOfArity(x_1, x_10, x_11); if (x_12 == 0) @@ -6114,7 +5084,7 @@ lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_13 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_13 = l_BitVec_reduceUnary___lambda__1___closed__1; x_14 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_14, 0, x_13); lean_ctor_set(x_14, 1, x_9); @@ -6124,16 +5094,16 @@ else { lean_object* x_15; lean_object* x_16; x_15 = lean_box(0); -x_16 = l_Std_BitVec_reduceAnd___lambda__2(x_1, x_10, x_15, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_16 = l_BitVec_reduceAnd___lambda__2(x_1, x_10, x_15, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); return x_16; } } } -LEAN_EXPORT lean_object* l_Std_BitVec_reduceAnd___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, lean_object* x_11, lean_object* x_12) { +LEAN_EXPORT lean_object* l_BitVec_reduceAnd___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, lean_object* x_11, lean_object* x_12) { _start: { lean_object* x_13; -x_13 = l_Std_BitVec_reduceAnd___lambda__1(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 = l_BitVec_reduceAnd___lambda__1(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_9); @@ -6147,7 +5117,7 @@ lean_dec(x_1); return x_13; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1471____closed__1() { +static lean_object* _init_l___regBuiltin_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1248____closed__1() { _start: { lean_object* x_1; @@ -6155,22 +5125,21 @@ x_1 = lean_mk_string_from_bytes("reduceAnd", 9); return x_1; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1471____closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f___closed__4; -x_2 = l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f___closed__5; -x_3 = l___regBuiltin_Std_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1471____closed__1; -x_4 = l_Lean_Name_mkStr3(x_1, x_2, x_3); -return x_4; -} -} -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1471____closed__3() { +static lean_object* _init_l___regBuiltin_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1248____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Std_BitVec_reduceAnd___closed__3; +x_1 = l_BitVec_reduceUnary___lambda__1___closed__2; +x_2 = l___regBuiltin_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1248____closed__1; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___regBuiltin_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1248____closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_BitVec_reduceAnd___closed__3; x_2 = lean_unsigned_to_nat(6u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -6178,7 +5147,7 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1471____closed__4() { +static lean_object* _init_l___regBuiltin_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1248____closed__4() { _start: { lean_object* x_1; lean_object* x_2; @@ -6187,176 +5156,177 @@ x_2 = lean_mk_empty_array_with_capacity(x_1); return x_2; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1471____closed__5() { +static lean_object* _init_l___regBuiltin_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1248____closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1471____closed__4; -x_2 = l___regBuiltin_Std_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1471____closed__3; +x_1 = l___regBuiltin_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1248____closed__4; +x_2 = l___regBuiltin_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1248____closed__3; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1471____closed__6() { +static lean_object* _init_l___regBuiltin_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1248____closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1471____closed__5; -x_2 = l___regBuiltin_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1371____closed__4; +x_1 = l___regBuiltin_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1248____closed__5; +x_2 = l___regBuiltin_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1148____closed__5; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1471____closed__7() { +static lean_object* _init_l___regBuiltin_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1248____closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1471____closed__6; +x_1 = l___regBuiltin_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1248____closed__6; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1471____closed__8() { +static lean_object* _init_l___regBuiltin_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1248____closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1471____closed__7; -x_2 = l___regBuiltin_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1371____closed__4; +x_1 = l___regBuiltin_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1248____closed__7; +x_2 = l___regBuiltin_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1148____closed__5; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1471____closed__9() { +static lean_object* _init_l___regBuiltin_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1248____closed__9() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1471____closed__8; +x_1 = l___regBuiltin_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1248____closed__8; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1471____closed__10() { +static lean_object* _init_l___regBuiltin_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1248____closed__10() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1471____closed__9; -x_2 = l___regBuiltin_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1371____closed__4; +x_1 = l___regBuiltin_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1248____closed__9; +x_2 = l___regBuiltin_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1148____closed__5; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1471____closed__11() { +static lean_object* _init_l___regBuiltin_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1248____closed__11() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1471____closed__10; +x_1 = l___regBuiltin_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1248____closed__10; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1471____closed__12() { +static lean_object* _init_l___regBuiltin_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1248____closed__12() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1471____closed__11; +x_1 = l___regBuiltin_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1248____closed__11; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1471____closed__13() { +static lean_object* _init_l___regBuiltin_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1248____closed__13() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1471____closed__12; +x_1 = l___regBuiltin_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1248____closed__12; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1471____closed__14() { +static lean_object* _init_l___regBuiltin_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1248____closed__14() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1471____closed__13; +x_1 = l___regBuiltin_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1248____closed__13; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1471____closed__15() { +static lean_object* _init_l___regBuiltin_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1248____closed__15() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Std_BitVec_reduceAnd), 9, 0); +x_1 = lean_alloc_closure((void*)(l_BitVec_reduceAnd), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1471_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1248_(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_Std_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1471____closed__2; -x_3 = l___regBuiltin_Std_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1471____closed__14; -x_4 = l___regBuiltin_Std_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1471____closed__15; +x_2 = l___regBuiltin_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1248____closed__2; +x_3 = l___regBuiltin_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1248____closed__14; +x_4 = l___regBuiltin_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1248____closed__15; x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); return x_5; } } -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1473_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1250_(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_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1373____closed__1; -x_3 = l___regBuiltin_Std_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1471____closed__2; +x_2 = l___regBuiltin_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1150____closed__1; +x_3 = l___regBuiltin_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1248____closed__2; x_4 = 1; -x_5 = l___regBuiltin_Std_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1471____closed__15; +x_5 = l___regBuiltin_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1248____closed__15; 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_Std_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1475_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1252_(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_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1375____closed__1; -x_3 = l___regBuiltin_Std_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1471____closed__2; +x_2 = l___regBuiltin_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1152____closed__1; +x_3 = l___regBuiltin_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1248____closed__2; x_4 = 1; -x_5 = l___regBuiltin_Std_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1471____closed__15; +x_5 = l___regBuiltin_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1248____closed__15; 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_Std_BitVec_reduceOr___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, lean_object* x_11, lean_object* x_12) { +LEAN_EXPORT lean_object* l_BitVec_reduceOr___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, lean_object* x_11, lean_object* x_12) { _start: { -lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; uint32_t x_18; uint8_t x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; +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; uint32_t x_21; uint8_t x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; x_13 = lean_ctor_get(x_1, 1); -x_14 = lean_nat_lor(x_2, x_13); -x_15 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_15, 0, x_3); -lean_ctor_set(x_15, 1, x_14); -x_16 = l_Std_BitVec_Literal_toExpr(x_15); -x_17 = lean_box(0); -x_18 = 0; -x_19 = 1; -x_20 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_20, 0, x_16); -lean_ctor_set(x_20, 1, x_17); -lean_ctor_set_uint32(x_20, sizeof(void*)*2, x_18); -lean_ctor_set_uint8(x_20, sizeof(void*)*2 + 4, x_19); -x_21 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_21, 0, x_20); -x_22 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_22, 0, x_21); -lean_ctor_set(x_22, 1, x_12); -return x_22; +x_14 = lean_ctor_get(x_2, 1); +x_15 = lean_nat_lor(x_13, x_14); +x_16 = l_Lean_mkNatLit(x_3); +x_17 = l_Lean_mkNatLit(x_15); +x_18 = l_BitVec_reduceUnary___lambda__1___closed__5; +x_19 = l_Lean_mkAppB(x_18, x_16, x_17); +x_20 = lean_box(0); +x_21 = 0; +x_22 = 1; +x_23 = lean_alloc_ctor(0, 2, 5); +lean_ctor_set(x_23, 0, x_19); +lean_ctor_set(x_23, 1, x_20); +lean_ctor_set_uint32(x_23, sizeof(void*)*2, x_21); +lean_ctor_set_uint8(x_23, sizeof(void*)*2 + 4, x_22); +x_24 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_24, 0, x_23); +x_25 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_25, 0, x_24); +lean_ctor_set(x_25, 1, x_12); +return x_25; } } -LEAN_EXPORT lean_object* l_Std_BitVec_reduceOr___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_EXPORT lean_object* l_BitVec_reduceOr___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) { _start: { lean_object* x_12; lean_object* x_13; lean_object* x_14; @@ -6369,7 +5339,8 @@ lean_inc(x_10); lean_inc(x_9); lean_inc(x_8); lean_inc(x_7); -x_14 = l_Std_BitVec_fromExpr_x3f(x_13, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +x_14 = l_BitVec_fromExpr_x3f(x_13, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_13); if (lean_obj_tag(x_14) == 0) { lean_object* x_15; @@ -6393,7 +5364,7 @@ if (x_16 == 0) lean_object* x_17; lean_object* x_18; x_17 = lean_ctor_get(x_14, 0); lean_dec(x_17); -x_18 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_18 = l_BitVec_reduceUnary___lambda__1___closed__1; lean_ctor_set(x_14, 0, x_18); return x_14; } @@ -6403,7 +5374,7 @@ lean_object* x_19; lean_object* x_20; lean_object* x_21; x_19 = lean_ctor_get(x_14, 1); lean_inc(x_19); lean_dec(x_14); -x_20 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_20 = l_BitVec_reduceUnary___lambda__1___closed__1; x_21 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_21, 0, x_20); lean_ctor_set(x_21, 1, x_19); @@ -6425,7 +5396,8 @@ lean_inc(x_10); lean_inc(x_9); lean_inc(x_8); lean_inc(x_7); -x_25 = l_Std_BitVec_fromExpr_x3f(x_24, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_22); +x_25 = l_BitVec_fromExpr_x3f(x_24, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_22); +lean_dec(x_24); if (lean_obj_tag(x_25) == 0) { lean_object* x_26; @@ -6449,7 +5421,7 @@ if (x_27 == 0) lean_object* x_28; lean_object* x_29; x_28 = lean_ctor_get(x_25, 0); lean_dec(x_28); -x_29 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_29 = l_BitVec_reduceUnary___lambda__1___closed__1; lean_ctor_set(x_25, 0, x_29); return x_25; } @@ -6459,7 +5431,7 @@ lean_object* x_30; lean_object* x_31; lean_object* x_32; x_30 = lean_ctor_get(x_25, 1); lean_inc(x_30); lean_dec(x_25); -x_31 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_31 = l_BitVec_reduceUnary___lambda__1___closed__1; x_32 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_32, 0, x_31); lean_ctor_set(x_32, 1, x_30); @@ -6472,7 +5444,7 @@ uint8_t x_33; x_33 = !lean_is_exclusive(x_25); if (x_33 == 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; uint8_t x_40; +lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; uint8_t x_39; x_34 = lean_ctor_get(x_25, 1); x_35 = lean_ctor_get(x_25, 0); lean_dec(x_35); @@ -6481,19 +5453,16 @@ lean_inc(x_36); lean_dec(x_26); x_37 = lean_ctor_get(x_23, 0); lean_inc(x_37); -x_38 = lean_ctor_get(x_23, 1); +x_38 = lean_ctor_get(x_36, 0); lean_inc(x_38); -lean_dec(x_23); -x_39 = lean_ctor_get(x_36, 0); -lean_inc(x_39); -x_40 = lean_nat_dec_eq(x_37, x_39); -if (x_40 == 0) +x_39 = lean_nat_dec_eq(x_37, x_38); +if (x_39 == 0) { -lean_object* x_41; -lean_dec(x_39); +lean_object* x_40; lean_dec(x_38); lean_dec(x_37); lean_dec(x_36); +lean_dec(x_23); lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); @@ -6502,30 +5471,30 @@ lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_2); -x_41 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; -lean_ctor_set(x_25, 0, x_41); +x_40 = l_BitVec_reduceUnary___lambda__1___closed__1; +lean_ctor_set(x_25, 0, x_40); return x_25; } else { -lean_object* x_42; lean_object* x_43; lean_object* x_44; uint8_t x_45; +lean_object* x_41; lean_object* x_42; lean_object* x_43; uint8_t x_44; lean_free_object(x_25); -x_42 = l_Std_BitVec_reduceBin___lambda__2___closed__3; -x_43 = l_Lean_isTracingEnabledFor___at_Lean_Meta_Simp_congrArgs___spec__1(x_42, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_34); -x_44 = lean_ctor_get(x_43, 0); -lean_inc(x_44); -x_45 = lean_unbox(x_44); -lean_dec(x_44); -if (x_45 == 0) -{ -lean_object* x_46; lean_object* x_47; lean_object* x_48; -lean_dec(x_39); -lean_dec(x_2); -x_46 = lean_ctor_get(x_43, 1); -lean_inc(x_46); +x_41 = l_BitVec_reduceBin___lambda__2___closed__3; +x_42 = l_Lean_isTracingEnabledFor___at_Lean_Meta_Simp_congrArgs___spec__1(x_41, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_34); +x_43 = lean_ctor_get(x_42, 0); +lean_inc(x_43); +x_44 = lean_unbox(x_43); lean_dec(x_43); -x_47 = lean_box(0); -x_48 = l_Std_BitVec_reduceOr___lambda__1(x_36, x_38, x_37, x_47, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_46); +if (x_44 == 0) +{ +lean_object* x_45; lean_object* x_46; lean_object* x_47; +lean_dec(x_38); +lean_dec(x_2); +x_45 = lean_ctor_get(x_42, 1); +lean_inc(x_45); +lean_dec(x_42); +x_46 = lean_box(0); +x_47 = l_BitVec_reduceOr___lambda__1(x_23, x_36, x_37, x_46, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_45); lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); @@ -6533,34 +5502,35 @@ lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); -lean_dec(x_38); lean_dec(x_36); -return x_48; +lean_dec(x_23); +return x_47; } else { -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; -x_49 = lean_ctor_get(x_43, 1); -lean_inc(x_49); -lean_dec(x_43); -x_50 = l_Lean_MessageData_ofName(x_2); -x_51 = l_Std_BitVec_reduceBin___lambda__2___closed__5; -x_52 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_52, 0, x_51); -lean_ctor_set(x_52, 1, x_50); -x_53 = l_Std_BitVec_reduceBin___lambda__2___closed__7; -x_54 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_54, 0, x_52); -lean_ctor_set(x_54, 1, x_53); -lean_inc(x_38); -x_55 = l_Std_BitVec_toHex(x_37, x_38); +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; +x_48 = lean_ctor_get(x_42, 1); +lean_inc(x_48); +lean_dec(x_42); +x_49 = l_Lean_MessageData_ofName(x_2); +x_50 = l_BitVec_reduceBin___lambda__2___closed__5; +x_51 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_51, 0, x_50); +lean_ctor_set(x_51, 1, x_49); +x_52 = l_BitVec_reduceBin___lambda__2___closed__7; +x_53 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_53, 0, x_51); +lean_ctor_set(x_53, 1, x_52); +x_54 = lean_ctor_get(x_23, 1); +lean_inc(x_54); +x_55 = l_BitVec_toHex(x_37, x_54); x_56 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_56, 0, x_55); -x_57 = l_Std_BitVec_reduceBin___lambda__2___closed__9; +x_57 = l_BitVec_reduceBin___lambda__2___closed__9; x_58 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_58, 0, x_57); lean_ctor_set(x_58, 1, x_56); -x_59 = l_Std_BitVec_reduceBin___lambda__2___closed__11; +x_59 = l_BitVec_reduceBin___lambda__2___closed__11; x_60 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_60, 0, x_58); lean_ctor_set(x_60, 1, x_59); @@ -6579,15 +5549,15 @@ lean_ctor_set(x_67, 0, x_66); x_68 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_68, 0, x_67); x_69 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_69, 0, x_54); +lean_ctor_set(x_69, 0, x_53); lean_ctor_set(x_69, 1, x_68); -x_70 = l_Std_BitVec_reduceBin___lambda__2___closed__13; +x_70 = l_BitVec_reduceBin___lambda__2___closed__13; x_71 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_71, 0, x_69); lean_ctor_set(x_71, 1, x_70); x_72 = lean_ctor_get(x_36, 1); lean_inc(x_72); -x_73 = l_Std_BitVec_toHex(x_39, x_72); +x_73 = l_BitVec_toHex(x_38, x_72); x_74 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_74, 0, x_73); x_75 = lean_alloc_ctor(5, 2, 0); @@ -6596,7 +5566,7 @@ lean_ctor_set(x_75, 1, x_74); x_76 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_76, 0, x_75); lean_ctor_set(x_76, 1, x_59); -x_77 = l_Nat_repr(x_39); +x_77 = l_Nat_repr(x_38); x_78 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_78, 0, x_77); x_79 = lean_alloc_ctor(5, 2, 0); @@ -6610,17 +5580,17 @@ lean_ctor_set(x_82, 0, x_81); x_83 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_83, 0, x_71); lean_ctor_set(x_83, 1, x_82); -x_84 = l_Std_BitVec_reduceBin___lambda__2___closed__15; +x_84 = l_BitVec_reduceBin___lambda__2___closed__15; x_85 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_85, 0, x_83); lean_ctor_set(x_85, 1, x_84); -x_86 = l_Lean_addTrace___at_Lean_Meta_Simp_congrArgs___spec__2(x_42, x_85, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_49); +x_86 = l_Lean_addTrace___at_Lean_Meta_Simp_congrArgs___spec__2(x_41, x_85, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_48); 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 = l_Std_BitVec_reduceOr___lambda__1(x_36, x_38, x_37, x_87, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_88); +x_89 = l_BitVec_reduceOr___lambda__1(x_23, x_36, x_37, x_87, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_88); lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); @@ -6629,15 +5599,15 @@ lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_87); -lean_dec(x_38); lean_dec(x_36); +lean_dec(x_23); return x_89; } } } else { -lean_object* x_90; lean_object* x_91; lean_object* x_92; lean_object* x_93; lean_object* x_94; uint8_t x_95; +lean_object* x_90; lean_object* x_91; lean_object* x_92; lean_object* x_93; uint8_t x_94; x_90 = lean_ctor_get(x_25, 1); lean_inc(x_90); lean_dec(x_25); @@ -6646,19 +5616,16 @@ lean_inc(x_91); lean_dec(x_26); x_92 = lean_ctor_get(x_23, 0); lean_inc(x_92); -x_93 = lean_ctor_get(x_23, 1); +x_93 = lean_ctor_get(x_91, 0); lean_inc(x_93); -lean_dec(x_23); -x_94 = lean_ctor_get(x_91, 0); -lean_inc(x_94); -x_95 = lean_nat_dec_eq(x_92, x_94); -if (x_95 == 0) +x_94 = lean_nat_dec_eq(x_92, x_93); +if (x_94 == 0) { -lean_object* x_96; lean_object* x_97; -lean_dec(x_94); +lean_object* x_95; lean_object* x_96; lean_dec(x_93); lean_dec(x_92); lean_dec(x_91); +lean_dec(x_23); lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); @@ -6667,66 +5634,67 @@ lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_2); -x_96 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; -x_97 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_97, 0, x_96); -lean_ctor_set(x_97, 1, x_90); -return x_97; +x_95 = l_BitVec_reduceUnary___lambda__1___closed__1; +x_96 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_96, 0, x_95); +lean_ctor_set(x_96, 1, x_90); +return x_96; } else { -lean_object* x_98; lean_object* x_99; lean_object* x_100; uint8_t x_101; -x_98 = l_Std_BitVec_reduceBin___lambda__2___closed__3; -x_99 = l_Lean_isTracingEnabledFor___at_Lean_Meta_Simp_congrArgs___spec__1(x_98, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_90); -x_100 = lean_ctor_get(x_99, 0); -lean_inc(x_100); -x_101 = lean_unbox(x_100); -lean_dec(x_100); -if (x_101 == 0) -{ -lean_object* x_102; lean_object* x_103; lean_object* x_104; -lean_dec(x_94); -lean_dec(x_2); -x_102 = lean_ctor_get(x_99, 1); -lean_inc(x_102); +lean_object* x_97; lean_object* x_98; lean_object* x_99; uint8_t x_100; +x_97 = l_BitVec_reduceBin___lambda__2___closed__3; +x_98 = l_Lean_isTracingEnabledFor___at_Lean_Meta_Simp_congrArgs___spec__1(x_97, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_90); +x_99 = lean_ctor_get(x_98, 0); +lean_inc(x_99); +x_100 = lean_unbox(x_99); lean_dec(x_99); -x_103 = lean_box(0); -x_104 = l_Std_BitVec_reduceOr___lambda__1(x_91, x_93, x_92, x_103, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_102); -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); +if (x_100 == 0) +{ +lean_object* x_101; lean_object* x_102; lean_object* x_103; lean_dec(x_93); +lean_dec(x_2); +x_101 = lean_ctor_get(x_98, 1); +lean_inc(x_101); +lean_dec(x_98); +x_102 = lean_box(0); +x_103 = l_BitVec_reduceOr___lambda__1(x_23, x_91, x_92, x_102, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_101); +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_91); -return x_104; +lean_dec(x_23); +return x_103; } else { -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; -x_105 = lean_ctor_get(x_99, 1); -lean_inc(x_105); -lean_dec(x_99); -x_106 = l_Lean_MessageData_ofName(x_2); -x_107 = l_Std_BitVec_reduceBin___lambda__2___closed__5; -x_108 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_108, 0, x_107); -lean_ctor_set(x_108, 1, x_106); -x_109 = l_Std_BitVec_reduceBin___lambda__2___closed__7; -x_110 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_110, 0, x_108); -lean_ctor_set(x_110, 1, x_109); -lean_inc(x_93); -x_111 = l_Std_BitVec_toHex(x_92, x_93); +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; +x_104 = lean_ctor_get(x_98, 1); +lean_inc(x_104); +lean_dec(x_98); +x_105 = l_Lean_MessageData_ofName(x_2); +x_106 = l_BitVec_reduceBin___lambda__2___closed__5; +x_107 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_107, 0, x_106); +lean_ctor_set(x_107, 1, x_105); +x_108 = l_BitVec_reduceBin___lambda__2___closed__7; +x_109 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_109, 0, x_107); +lean_ctor_set(x_109, 1, x_108); +x_110 = lean_ctor_get(x_23, 1); +lean_inc(x_110); +x_111 = l_BitVec_toHex(x_92, x_110); x_112 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_112, 0, x_111); -x_113 = l_Std_BitVec_reduceBin___lambda__2___closed__9; +x_113 = l_BitVec_reduceBin___lambda__2___closed__9; x_114 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_114, 0, x_113); lean_ctor_set(x_114, 1, x_112); -x_115 = l_Std_BitVec_reduceBin___lambda__2___closed__11; +x_115 = l_BitVec_reduceBin___lambda__2___closed__11; x_116 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_116, 0, x_114); lean_ctor_set(x_116, 1, x_115); @@ -6745,15 +5713,15 @@ lean_ctor_set(x_123, 0, x_122); x_124 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_124, 0, x_123); x_125 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_125, 0, x_110); +lean_ctor_set(x_125, 0, x_109); lean_ctor_set(x_125, 1, x_124); -x_126 = l_Std_BitVec_reduceBin___lambda__2___closed__13; +x_126 = l_BitVec_reduceBin___lambda__2___closed__13; x_127 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_127, 0, x_125); lean_ctor_set(x_127, 1, x_126); x_128 = lean_ctor_get(x_91, 1); lean_inc(x_128); -x_129 = l_Std_BitVec_toHex(x_94, x_128); +x_129 = l_BitVec_toHex(x_93, x_128); x_130 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_130, 0, x_129); x_131 = lean_alloc_ctor(5, 2, 0); @@ -6762,7 +5730,7 @@ lean_ctor_set(x_131, 1, x_130); x_132 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_132, 0, x_131); lean_ctor_set(x_132, 1, x_115); -x_133 = l_Nat_repr(x_94); +x_133 = l_Nat_repr(x_93); x_134 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_134, 0, x_133); x_135 = lean_alloc_ctor(5, 2, 0); @@ -6776,17 +5744,17 @@ lean_ctor_set(x_138, 0, x_137); x_139 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_139, 0, x_127); lean_ctor_set(x_139, 1, x_138); -x_140 = l_Std_BitVec_reduceBin___lambda__2___closed__15; +x_140 = l_BitVec_reduceBin___lambda__2___closed__15; x_141 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_141, 0, x_139); lean_ctor_set(x_141, 1, x_140); -x_142 = l_Lean_addTrace___at_Lean_Meta_Simp_congrArgs___spec__2(x_98, x_141, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_105); +x_142 = l_Lean_addTrace___at_Lean_Meta_Simp_congrArgs___spec__2(x_97, x_141, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_104); x_143 = lean_ctor_get(x_142, 0); lean_inc(x_143); x_144 = lean_ctor_get(x_142, 1); lean_inc(x_144); lean_dec(x_142); -x_145 = l_Std_BitVec_reduceOr___lambda__1(x_91, x_93, x_92, x_143, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_144); +x_145 = l_BitVec_reduceOr___lambda__1(x_23, x_91, x_92, x_143, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_144); lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); @@ -6795,8 +5763,8 @@ lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_143); -lean_dec(x_93); lean_dec(x_91); +lean_dec(x_23); return x_145; } } @@ -6869,7 +5837,7 @@ return x_153; } } } -static lean_object* _init_l_Std_BitVec_reduceOr___closed__1() { +static lean_object* _init_l_BitVec_reduceOr___closed__1() { _start: { lean_object* x_1; @@ -6877,7 +5845,7 @@ x_1 = lean_mk_string_from_bytes("HOr", 3); return x_1; } } -static lean_object* _init_l_Std_BitVec_reduceOr___closed__2() { +static lean_object* _init_l_BitVec_reduceOr___closed__2() { _start: { lean_object* x_1; @@ -6885,21 +5853,21 @@ x_1 = lean_mk_string_from_bytes("hOr", 3); return x_1; } } -static lean_object* _init_l_Std_BitVec_reduceOr___closed__3() { +static lean_object* _init_l_BitVec_reduceOr___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Std_BitVec_reduceOr___closed__1; -x_2 = l_Std_BitVec_reduceOr___closed__2; +x_1 = l_BitVec_reduceOr___closed__1; +x_2 = l_BitVec_reduceOr___closed__2; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } -LEAN_EXPORT lean_object* l_Std_BitVec_reduceOr(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_EXPORT lean_object* l_BitVec_reduceOr(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; uint8_t x_12; -x_10 = l_Std_BitVec_reduceOr___closed__3; +x_10 = l_BitVec_reduceOr___closed__3; x_11 = lean_unsigned_to_nat(6u); x_12 = l_Lean_Expr_isAppOfArity(x_1, x_10, x_11); if (x_12 == 0) @@ -6913,7 +5881,7 @@ lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_13 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_13 = l_BitVec_reduceUnary___lambda__1___closed__1; x_14 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_14, 0, x_13); lean_ctor_set(x_14, 1, x_9); @@ -6923,16 +5891,16 @@ else { lean_object* x_15; lean_object* x_16; x_15 = lean_box(0); -x_16 = l_Std_BitVec_reduceOr___lambda__2(x_1, x_10, x_15, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_16 = l_BitVec_reduceOr___lambda__2(x_1, x_10, x_15, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); return x_16; } } } -LEAN_EXPORT lean_object* l_Std_BitVec_reduceOr___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, lean_object* x_11, lean_object* x_12) { +LEAN_EXPORT lean_object* l_BitVec_reduceOr___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, lean_object* x_11, lean_object* x_12) { _start: { lean_object* x_13; -x_13 = l_Std_BitVec_reduceOr___lambda__1(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 = l_BitVec_reduceOr___lambda__1(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_9); @@ -6946,7 +5914,7 @@ lean_dec(x_1); return x_13; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1513____closed__1() { +static lean_object* _init_l___regBuiltin_BitVec_reduceOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1290____closed__1() { _start: { lean_object* x_1; @@ -6954,22 +5922,21 @@ x_1 = lean_mk_string_from_bytes("reduceOr", 8); return x_1; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1513____closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f___closed__4; -x_2 = l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f___closed__5; -x_3 = l___regBuiltin_Std_BitVec_reduceOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1513____closed__1; -x_4 = l_Lean_Name_mkStr3(x_1, x_2, x_3); -return x_4; -} -} -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1513____closed__3() { +static lean_object* _init_l___regBuiltin_BitVec_reduceOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1290____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Std_BitVec_reduceOr___closed__3; +x_1 = l_BitVec_reduceUnary___lambda__1___closed__2; +x_2 = l___regBuiltin_BitVec_reduceOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1290____closed__1; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___regBuiltin_BitVec_reduceOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1290____closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_BitVec_reduceOr___closed__3; x_2 = lean_unsigned_to_nat(6u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -6977,176 +5944,177 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1513____closed__4() { +static lean_object* _init_l___regBuiltin_BitVec_reduceOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1290____closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1471____closed__4; -x_2 = l___regBuiltin_Std_BitVec_reduceOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1513____closed__3; +x_1 = l___regBuiltin_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1248____closed__4; +x_2 = l___regBuiltin_BitVec_reduceOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1290____closed__3; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1513____closed__5() { +static lean_object* _init_l___regBuiltin_BitVec_reduceOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1290____closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1513____closed__4; -x_2 = l___regBuiltin_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1371____closed__4; +x_1 = l___regBuiltin_BitVec_reduceOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1290____closed__4; +x_2 = l___regBuiltin_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1148____closed__5; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1513____closed__6() { +static lean_object* _init_l___regBuiltin_BitVec_reduceOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1290____closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1513____closed__5; +x_1 = l___regBuiltin_BitVec_reduceOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1290____closed__5; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1513____closed__7() { +static lean_object* _init_l___regBuiltin_BitVec_reduceOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1290____closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1513____closed__6; -x_2 = l___regBuiltin_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1371____closed__4; +x_1 = l___regBuiltin_BitVec_reduceOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1290____closed__6; +x_2 = l___regBuiltin_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1148____closed__5; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1513____closed__8() { +static lean_object* _init_l___regBuiltin_BitVec_reduceOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1290____closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1513____closed__7; +x_1 = l___regBuiltin_BitVec_reduceOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1290____closed__7; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1513____closed__9() { +static lean_object* _init_l___regBuiltin_BitVec_reduceOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1290____closed__9() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1513____closed__8; -x_2 = l___regBuiltin_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1371____closed__4; +x_1 = l___regBuiltin_BitVec_reduceOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1290____closed__8; +x_2 = l___regBuiltin_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1148____closed__5; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1513____closed__10() { +static lean_object* _init_l___regBuiltin_BitVec_reduceOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1290____closed__10() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1513____closed__9; +x_1 = l___regBuiltin_BitVec_reduceOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1290____closed__9; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1513____closed__11() { +static lean_object* _init_l___regBuiltin_BitVec_reduceOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1290____closed__11() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1513____closed__10; +x_1 = l___regBuiltin_BitVec_reduceOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1290____closed__10; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1513____closed__12() { +static lean_object* _init_l___regBuiltin_BitVec_reduceOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1290____closed__12() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1513____closed__11; +x_1 = l___regBuiltin_BitVec_reduceOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1290____closed__11; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1513____closed__13() { +static lean_object* _init_l___regBuiltin_BitVec_reduceOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1290____closed__13() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1513____closed__12; +x_1 = l___regBuiltin_BitVec_reduceOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1290____closed__12; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1513____closed__14() { +static lean_object* _init_l___regBuiltin_BitVec_reduceOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1290____closed__14() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Std_BitVec_reduceOr), 9, 0); +x_1 = lean_alloc_closure((void*)(l_BitVec_reduceOr), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1513_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1290_(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_Std_BitVec_reduceOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1513____closed__2; -x_3 = l___regBuiltin_Std_BitVec_reduceOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1513____closed__13; -x_4 = l___regBuiltin_Std_BitVec_reduceOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1513____closed__14; +x_2 = l___regBuiltin_BitVec_reduceOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1290____closed__2; +x_3 = l___regBuiltin_BitVec_reduceOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1290____closed__13; +x_4 = l___regBuiltin_BitVec_reduceOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1290____closed__14; x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); return x_5; } } -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1515_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1292_(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_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1373____closed__1; -x_3 = l___regBuiltin_Std_BitVec_reduceOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1513____closed__2; +x_2 = l___regBuiltin_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1150____closed__1; +x_3 = l___regBuiltin_BitVec_reduceOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1290____closed__2; x_4 = 1; -x_5 = l___regBuiltin_Std_BitVec_reduceOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1513____closed__14; +x_5 = l___regBuiltin_BitVec_reduceOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1290____closed__14; 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_Std_BitVec_reduceOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1517_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1294_(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_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1375____closed__1; -x_3 = l___regBuiltin_Std_BitVec_reduceOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1513____closed__2; +x_2 = l___regBuiltin_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1152____closed__1; +x_3 = l___regBuiltin_BitVec_reduceOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1290____closed__2; x_4 = 1; -x_5 = l___regBuiltin_Std_BitVec_reduceOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1513____closed__14; +x_5 = l___regBuiltin_BitVec_reduceOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1290____closed__14; 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_Std_BitVec_reduceXOr___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, lean_object* x_11, lean_object* x_12) { +LEAN_EXPORT lean_object* l_BitVec_reduceXOr___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, lean_object* x_11, lean_object* x_12) { _start: { -lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; uint32_t x_18; uint8_t x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; +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; uint32_t x_21; uint8_t x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; x_13 = lean_ctor_get(x_1, 1); -x_14 = lean_nat_lxor(x_2, x_13); -x_15 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_15, 0, x_3); -lean_ctor_set(x_15, 1, x_14); -x_16 = l_Std_BitVec_Literal_toExpr(x_15); -x_17 = lean_box(0); -x_18 = 0; -x_19 = 1; -x_20 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_20, 0, x_16); -lean_ctor_set(x_20, 1, x_17); -lean_ctor_set_uint32(x_20, sizeof(void*)*2, x_18); -lean_ctor_set_uint8(x_20, sizeof(void*)*2 + 4, x_19); -x_21 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_21, 0, x_20); -x_22 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_22, 0, x_21); -lean_ctor_set(x_22, 1, x_12); -return x_22; +x_14 = lean_ctor_get(x_2, 1); +x_15 = lean_nat_lxor(x_13, x_14); +x_16 = l_Lean_mkNatLit(x_3); +x_17 = l_Lean_mkNatLit(x_15); +x_18 = l_BitVec_reduceUnary___lambda__1___closed__5; +x_19 = l_Lean_mkAppB(x_18, x_16, x_17); +x_20 = lean_box(0); +x_21 = 0; +x_22 = 1; +x_23 = lean_alloc_ctor(0, 2, 5); +lean_ctor_set(x_23, 0, x_19); +lean_ctor_set(x_23, 1, x_20); +lean_ctor_set_uint32(x_23, sizeof(void*)*2, x_21); +lean_ctor_set_uint8(x_23, sizeof(void*)*2 + 4, x_22); +x_24 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_24, 0, x_23); +x_25 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_25, 0, x_24); +lean_ctor_set(x_25, 1, x_12); +return x_25; } } -LEAN_EXPORT lean_object* l_Std_BitVec_reduceXOr___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_EXPORT lean_object* l_BitVec_reduceXOr___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) { _start: { lean_object* x_12; lean_object* x_13; lean_object* x_14; @@ -7159,7 +6127,8 @@ lean_inc(x_10); lean_inc(x_9); lean_inc(x_8); lean_inc(x_7); -x_14 = l_Std_BitVec_fromExpr_x3f(x_13, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +x_14 = l_BitVec_fromExpr_x3f(x_13, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_13); if (lean_obj_tag(x_14) == 0) { lean_object* x_15; @@ -7183,7 +6152,7 @@ if (x_16 == 0) lean_object* x_17; lean_object* x_18; x_17 = lean_ctor_get(x_14, 0); lean_dec(x_17); -x_18 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_18 = l_BitVec_reduceUnary___lambda__1___closed__1; lean_ctor_set(x_14, 0, x_18); return x_14; } @@ -7193,7 +6162,7 @@ lean_object* x_19; lean_object* x_20; lean_object* x_21; x_19 = lean_ctor_get(x_14, 1); lean_inc(x_19); lean_dec(x_14); -x_20 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_20 = l_BitVec_reduceUnary___lambda__1___closed__1; x_21 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_21, 0, x_20); lean_ctor_set(x_21, 1, x_19); @@ -7215,7 +6184,8 @@ lean_inc(x_10); lean_inc(x_9); lean_inc(x_8); lean_inc(x_7); -x_25 = l_Std_BitVec_fromExpr_x3f(x_24, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_22); +x_25 = l_BitVec_fromExpr_x3f(x_24, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_22); +lean_dec(x_24); if (lean_obj_tag(x_25) == 0) { lean_object* x_26; @@ -7239,7 +6209,7 @@ if (x_27 == 0) lean_object* x_28; lean_object* x_29; x_28 = lean_ctor_get(x_25, 0); lean_dec(x_28); -x_29 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_29 = l_BitVec_reduceUnary___lambda__1___closed__1; lean_ctor_set(x_25, 0, x_29); return x_25; } @@ -7249,7 +6219,7 @@ lean_object* x_30; lean_object* x_31; lean_object* x_32; x_30 = lean_ctor_get(x_25, 1); lean_inc(x_30); lean_dec(x_25); -x_31 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_31 = l_BitVec_reduceUnary___lambda__1___closed__1; x_32 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_32, 0, x_31); lean_ctor_set(x_32, 1, x_30); @@ -7262,7 +6232,7 @@ uint8_t x_33; x_33 = !lean_is_exclusive(x_25); if (x_33 == 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; uint8_t x_40; +lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; uint8_t x_39; x_34 = lean_ctor_get(x_25, 1); x_35 = lean_ctor_get(x_25, 0); lean_dec(x_35); @@ -7271,19 +6241,16 @@ lean_inc(x_36); lean_dec(x_26); x_37 = lean_ctor_get(x_23, 0); lean_inc(x_37); -x_38 = lean_ctor_get(x_23, 1); +x_38 = lean_ctor_get(x_36, 0); lean_inc(x_38); -lean_dec(x_23); -x_39 = lean_ctor_get(x_36, 0); -lean_inc(x_39); -x_40 = lean_nat_dec_eq(x_37, x_39); -if (x_40 == 0) +x_39 = lean_nat_dec_eq(x_37, x_38); +if (x_39 == 0) { -lean_object* x_41; -lean_dec(x_39); +lean_object* x_40; lean_dec(x_38); lean_dec(x_37); lean_dec(x_36); +lean_dec(x_23); lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); @@ -7292,30 +6259,30 @@ lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_2); -x_41 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; -lean_ctor_set(x_25, 0, x_41); +x_40 = l_BitVec_reduceUnary___lambda__1___closed__1; +lean_ctor_set(x_25, 0, x_40); return x_25; } else { -lean_object* x_42; lean_object* x_43; lean_object* x_44; uint8_t x_45; +lean_object* x_41; lean_object* x_42; lean_object* x_43; uint8_t x_44; lean_free_object(x_25); -x_42 = l_Std_BitVec_reduceBin___lambda__2___closed__3; -x_43 = l_Lean_isTracingEnabledFor___at_Lean_Meta_Simp_congrArgs___spec__1(x_42, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_34); -x_44 = lean_ctor_get(x_43, 0); -lean_inc(x_44); -x_45 = lean_unbox(x_44); -lean_dec(x_44); -if (x_45 == 0) -{ -lean_object* x_46; lean_object* x_47; lean_object* x_48; -lean_dec(x_39); -lean_dec(x_2); -x_46 = lean_ctor_get(x_43, 1); -lean_inc(x_46); +x_41 = l_BitVec_reduceBin___lambda__2___closed__3; +x_42 = l_Lean_isTracingEnabledFor___at_Lean_Meta_Simp_congrArgs___spec__1(x_41, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_34); +x_43 = lean_ctor_get(x_42, 0); +lean_inc(x_43); +x_44 = lean_unbox(x_43); lean_dec(x_43); -x_47 = lean_box(0); -x_48 = l_Std_BitVec_reduceXOr___lambda__1(x_36, x_38, x_37, x_47, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_46); +if (x_44 == 0) +{ +lean_object* x_45; lean_object* x_46; lean_object* x_47; +lean_dec(x_38); +lean_dec(x_2); +x_45 = lean_ctor_get(x_42, 1); +lean_inc(x_45); +lean_dec(x_42); +x_46 = lean_box(0); +x_47 = l_BitVec_reduceXOr___lambda__1(x_23, x_36, x_37, x_46, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_45); lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); @@ -7323,34 +6290,35 @@ lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); -lean_dec(x_38); lean_dec(x_36); -return x_48; +lean_dec(x_23); +return x_47; } else { -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; -x_49 = lean_ctor_get(x_43, 1); -lean_inc(x_49); -lean_dec(x_43); -x_50 = l_Lean_MessageData_ofName(x_2); -x_51 = l_Std_BitVec_reduceBin___lambda__2___closed__5; -x_52 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_52, 0, x_51); -lean_ctor_set(x_52, 1, x_50); -x_53 = l_Std_BitVec_reduceBin___lambda__2___closed__7; -x_54 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_54, 0, x_52); -lean_ctor_set(x_54, 1, x_53); -lean_inc(x_38); -x_55 = l_Std_BitVec_toHex(x_37, x_38); +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; +x_48 = lean_ctor_get(x_42, 1); +lean_inc(x_48); +lean_dec(x_42); +x_49 = l_Lean_MessageData_ofName(x_2); +x_50 = l_BitVec_reduceBin___lambda__2___closed__5; +x_51 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_51, 0, x_50); +lean_ctor_set(x_51, 1, x_49); +x_52 = l_BitVec_reduceBin___lambda__2___closed__7; +x_53 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_53, 0, x_51); +lean_ctor_set(x_53, 1, x_52); +x_54 = lean_ctor_get(x_23, 1); +lean_inc(x_54); +x_55 = l_BitVec_toHex(x_37, x_54); x_56 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_56, 0, x_55); -x_57 = l_Std_BitVec_reduceBin___lambda__2___closed__9; +x_57 = l_BitVec_reduceBin___lambda__2___closed__9; x_58 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_58, 0, x_57); lean_ctor_set(x_58, 1, x_56); -x_59 = l_Std_BitVec_reduceBin___lambda__2___closed__11; +x_59 = l_BitVec_reduceBin___lambda__2___closed__11; x_60 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_60, 0, x_58); lean_ctor_set(x_60, 1, x_59); @@ -7369,15 +6337,15 @@ lean_ctor_set(x_67, 0, x_66); x_68 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_68, 0, x_67); x_69 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_69, 0, x_54); +lean_ctor_set(x_69, 0, x_53); lean_ctor_set(x_69, 1, x_68); -x_70 = l_Std_BitVec_reduceBin___lambda__2___closed__13; +x_70 = l_BitVec_reduceBin___lambda__2___closed__13; x_71 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_71, 0, x_69); lean_ctor_set(x_71, 1, x_70); x_72 = lean_ctor_get(x_36, 1); lean_inc(x_72); -x_73 = l_Std_BitVec_toHex(x_39, x_72); +x_73 = l_BitVec_toHex(x_38, x_72); x_74 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_74, 0, x_73); x_75 = lean_alloc_ctor(5, 2, 0); @@ -7386,7 +6354,7 @@ lean_ctor_set(x_75, 1, x_74); x_76 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_76, 0, x_75); lean_ctor_set(x_76, 1, x_59); -x_77 = l_Nat_repr(x_39); +x_77 = l_Nat_repr(x_38); x_78 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_78, 0, x_77); x_79 = lean_alloc_ctor(5, 2, 0); @@ -7400,17 +6368,17 @@ lean_ctor_set(x_82, 0, x_81); x_83 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_83, 0, x_71); lean_ctor_set(x_83, 1, x_82); -x_84 = l_Std_BitVec_reduceBin___lambda__2___closed__15; +x_84 = l_BitVec_reduceBin___lambda__2___closed__15; x_85 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_85, 0, x_83); lean_ctor_set(x_85, 1, x_84); -x_86 = l_Lean_addTrace___at_Lean_Meta_Simp_congrArgs___spec__2(x_42, x_85, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_49); +x_86 = l_Lean_addTrace___at_Lean_Meta_Simp_congrArgs___spec__2(x_41, x_85, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_48); 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 = l_Std_BitVec_reduceXOr___lambda__1(x_36, x_38, x_37, x_87, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_88); +x_89 = l_BitVec_reduceXOr___lambda__1(x_23, x_36, x_37, x_87, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_88); lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); @@ -7419,15 +6387,15 @@ lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_87); -lean_dec(x_38); lean_dec(x_36); +lean_dec(x_23); return x_89; } } } else { -lean_object* x_90; lean_object* x_91; lean_object* x_92; lean_object* x_93; lean_object* x_94; uint8_t x_95; +lean_object* x_90; lean_object* x_91; lean_object* x_92; lean_object* x_93; uint8_t x_94; x_90 = lean_ctor_get(x_25, 1); lean_inc(x_90); lean_dec(x_25); @@ -7436,19 +6404,16 @@ lean_inc(x_91); lean_dec(x_26); x_92 = lean_ctor_get(x_23, 0); lean_inc(x_92); -x_93 = lean_ctor_get(x_23, 1); +x_93 = lean_ctor_get(x_91, 0); lean_inc(x_93); -lean_dec(x_23); -x_94 = lean_ctor_get(x_91, 0); -lean_inc(x_94); -x_95 = lean_nat_dec_eq(x_92, x_94); -if (x_95 == 0) +x_94 = lean_nat_dec_eq(x_92, x_93); +if (x_94 == 0) { -lean_object* x_96; lean_object* x_97; -lean_dec(x_94); +lean_object* x_95; lean_object* x_96; lean_dec(x_93); lean_dec(x_92); lean_dec(x_91); +lean_dec(x_23); lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); @@ -7457,66 +6422,67 @@ lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_2); -x_96 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; -x_97 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_97, 0, x_96); -lean_ctor_set(x_97, 1, x_90); -return x_97; +x_95 = l_BitVec_reduceUnary___lambda__1___closed__1; +x_96 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_96, 0, x_95); +lean_ctor_set(x_96, 1, x_90); +return x_96; } else { -lean_object* x_98; lean_object* x_99; lean_object* x_100; uint8_t x_101; -x_98 = l_Std_BitVec_reduceBin___lambda__2___closed__3; -x_99 = l_Lean_isTracingEnabledFor___at_Lean_Meta_Simp_congrArgs___spec__1(x_98, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_90); -x_100 = lean_ctor_get(x_99, 0); -lean_inc(x_100); -x_101 = lean_unbox(x_100); -lean_dec(x_100); -if (x_101 == 0) -{ -lean_object* x_102; lean_object* x_103; lean_object* x_104; -lean_dec(x_94); -lean_dec(x_2); -x_102 = lean_ctor_get(x_99, 1); -lean_inc(x_102); +lean_object* x_97; lean_object* x_98; lean_object* x_99; uint8_t x_100; +x_97 = l_BitVec_reduceBin___lambda__2___closed__3; +x_98 = l_Lean_isTracingEnabledFor___at_Lean_Meta_Simp_congrArgs___spec__1(x_97, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_90); +x_99 = lean_ctor_get(x_98, 0); +lean_inc(x_99); +x_100 = lean_unbox(x_99); lean_dec(x_99); -x_103 = lean_box(0); -x_104 = l_Std_BitVec_reduceXOr___lambda__1(x_91, x_93, x_92, x_103, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_102); -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); +if (x_100 == 0) +{ +lean_object* x_101; lean_object* x_102; lean_object* x_103; lean_dec(x_93); +lean_dec(x_2); +x_101 = lean_ctor_get(x_98, 1); +lean_inc(x_101); +lean_dec(x_98); +x_102 = lean_box(0); +x_103 = l_BitVec_reduceXOr___lambda__1(x_23, x_91, x_92, x_102, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_101); +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_91); -return x_104; +lean_dec(x_23); +return x_103; } else { -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; -x_105 = lean_ctor_get(x_99, 1); -lean_inc(x_105); -lean_dec(x_99); -x_106 = l_Lean_MessageData_ofName(x_2); -x_107 = l_Std_BitVec_reduceBin___lambda__2___closed__5; -x_108 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_108, 0, x_107); -lean_ctor_set(x_108, 1, x_106); -x_109 = l_Std_BitVec_reduceBin___lambda__2___closed__7; -x_110 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_110, 0, x_108); -lean_ctor_set(x_110, 1, x_109); -lean_inc(x_93); -x_111 = l_Std_BitVec_toHex(x_92, x_93); +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; +x_104 = lean_ctor_get(x_98, 1); +lean_inc(x_104); +lean_dec(x_98); +x_105 = l_Lean_MessageData_ofName(x_2); +x_106 = l_BitVec_reduceBin___lambda__2___closed__5; +x_107 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_107, 0, x_106); +lean_ctor_set(x_107, 1, x_105); +x_108 = l_BitVec_reduceBin___lambda__2___closed__7; +x_109 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_109, 0, x_107); +lean_ctor_set(x_109, 1, x_108); +x_110 = lean_ctor_get(x_23, 1); +lean_inc(x_110); +x_111 = l_BitVec_toHex(x_92, x_110); x_112 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_112, 0, x_111); -x_113 = l_Std_BitVec_reduceBin___lambda__2___closed__9; +x_113 = l_BitVec_reduceBin___lambda__2___closed__9; x_114 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_114, 0, x_113); lean_ctor_set(x_114, 1, x_112); -x_115 = l_Std_BitVec_reduceBin___lambda__2___closed__11; +x_115 = l_BitVec_reduceBin___lambda__2___closed__11; x_116 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_116, 0, x_114); lean_ctor_set(x_116, 1, x_115); @@ -7535,15 +6501,15 @@ lean_ctor_set(x_123, 0, x_122); x_124 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_124, 0, x_123); x_125 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_125, 0, x_110); +lean_ctor_set(x_125, 0, x_109); lean_ctor_set(x_125, 1, x_124); -x_126 = l_Std_BitVec_reduceBin___lambda__2___closed__13; +x_126 = l_BitVec_reduceBin___lambda__2___closed__13; x_127 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_127, 0, x_125); lean_ctor_set(x_127, 1, x_126); x_128 = lean_ctor_get(x_91, 1); lean_inc(x_128); -x_129 = l_Std_BitVec_toHex(x_94, x_128); +x_129 = l_BitVec_toHex(x_93, x_128); x_130 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_130, 0, x_129); x_131 = lean_alloc_ctor(5, 2, 0); @@ -7552,7 +6518,7 @@ lean_ctor_set(x_131, 1, x_130); x_132 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_132, 0, x_131); lean_ctor_set(x_132, 1, x_115); -x_133 = l_Nat_repr(x_94); +x_133 = l_Nat_repr(x_93); x_134 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_134, 0, x_133); x_135 = lean_alloc_ctor(5, 2, 0); @@ -7566,17 +6532,17 @@ lean_ctor_set(x_138, 0, x_137); x_139 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_139, 0, x_127); lean_ctor_set(x_139, 1, x_138); -x_140 = l_Std_BitVec_reduceBin___lambda__2___closed__15; +x_140 = l_BitVec_reduceBin___lambda__2___closed__15; x_141 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_141, 0, x_139); lean_ctor_set(x_141, 1, x_140); -x_142 = l_Lean_addTrace___at_Lean_Meta_Simp_congrArgs___spec__2(x_98, x_141, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_105); +x_142 = l_Lean_addTrace___at_Lean_Meta_Simp_congrArgs___spec__2(x_97, x_141, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_104); x_143 = lean_ctor_get(x_142, 0); lean_inc(x_143); x_144 = lean_ctor_get(x_142, 1); lean_inc(x_144); lean_dec(x_142); -x_145 = l_Std_BitVec_reduceXOr___lambda__1(x_91, x_93, x_92, x_143, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_144); +x_145 = l_BitVec_reduceXOr___lambda__1(x_23, x_91, x_92, x_143, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_144); lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); @@ -7585,8 +6551,8 @@ lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_143); -lean_dec(x_93); lean_dec(x_91); +lean_dec(x_23); return x_145; } } @@ -7659,7 +6625,7 @@ return x_153; } } } -static lean_object* _init_l_Std_BitVec_reduceXOr___closed__1() { +static lean_object* _init_l_BitVec_reduceXOr___closed__1() { _start: { lean_object* x_1; @@ -7667,7 +6633,7 @@ x_1 = lean_mk_string_from_bytes("HXor", 4); return x_1; } } -static lean_object* _init_l_Std_BitVec_reduceXOr___closed__2() { +static lean_object* _init_l_BitVec_reduceXOr___closed__2() { _start: { lean_object* x_1; @@ -7675,21 +6641,21 @@ x_1 = lean_mk_string_from_bytes("hXor", 4); return x_1; } } -static lean_object* _init_l_Std_BitVec_reduceXOr___closed__3() { +static lean_object* _init_l_BitVec_reduceXOr___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Std_BitVec_reduceXOr___closed__1; -x_2 = l_Std_BitVec_reduceXOr___closed__2; +x_1 = l_BitVec_reduceXOr___closed__1; +x_2 = l_BitVec_reduceXOr___closed__2; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } -LEAN_EXPORT lean_object* l_Std_BitVec_reduceXOr(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_EXPORT lean_object* l_BitVec_reduceXOr(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; uint8_t x_12; -x_10 = l_Std_BitVec_reduceXOr___closed__3; +x_10 = l_BitVec_reduceXOr___closed__3; x_11 = lean_unsigned_to_nat(6u); x_12 = l_Lean_Expr_isAppOfArity(x_1, x_10, x_11); if (x_12 == 0) @@ -7703,7 +6669,7 @@ lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_13 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_13 = l_BitVec_reduceUnary___lambda__1___closed__1; x_14 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_14, 0, x_13); lean_ctor_set(x_14, 1, x_9); @@ -7713,16 +6679,16 @@ else { lean_object* x_15; lean_object* x_16; x_15 = lean_box(0); -x_16 = l_Std_BitVec_reduceXOr___lambda__2(x_1, x_10, x_15, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_16 = l_BitVec_reduceXOr___lambda__2(x_1, x_10, x_15, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); return x_16; } } } -LEAN_EXPORT lean_object* l_Std_BitVec_reduceXOr___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, lean_object* x_11, lean_object* x_12) { +LEAN_EXPORT lean_object* l_BitVec_reduceXOr___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, lean_object* x_11, lean_object* x_12) { _start: { lean_object* x_13; -x_13 = l_Std_BitVec_reduceXOr___lambda__1(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 = l_BitVec_reduceXOr___lambda__1(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_9); @@ -7736,7 +6702,7 @@ lean_dec(x_1); return x_13; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceXOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1555____closed__1() { +static lean_object* _init_l___regBuiltin_BitVec_reduceXOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1332____closed__1() { _start: { lean_object* x_1; @@ -7744,22 +6710,21 @@ x_1 = lean_mk_string_from_bytes("reduceXOr", 9); return x_1; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceXOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1555____closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f___closed__4; -x_2 = l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f___closed__5; -x_3 = l___regBuiltin_Std_BitVec_reduceXOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1555____closed__1; -x_4 = l_Lean_Name_mkStr3(x_1, x_2, x_3); -return x_4; -} -} -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceXOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1555____closed__3() { +static lean_object* _init_l___regBuiltin_BitVec_reduceXOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1332____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Std_BitVec_reduceXOr___closed__3; +x_1 = l_BitVec_reduceUnary___lambda__1___closed__2; +x_2 = l___regBuiltin_BitVec_reduceXOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1332____closed__1; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___regBuiltin_BitVec_reduceXOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1332____closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_BitVec_reduceXOr___closed__3; x_2 = lean_unsigned_to_nat(6u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -7767,176 +6732,177 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceXOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1555____closed__4() { +static lean_object* _init_l___regBuiltin_BitVec_reduceXOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1332____closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1471____closed__4; -x_2 = l___regBuiltin_Std_BitVec_reduceXOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1555____closed__3; +x_1 = l___regBuiltin_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1248____closed__4; +x_2 = l___regBuiltin_BitVec_reduceXOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1332____closed__3; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceXOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1555____closed__5() { +static lean_object* _init_l___regBuiltin_BitVec_reduceXOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1332____closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceXOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1555____closed__4; -x_2 = l___regBuiltin_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1371____closed__4; +x_1 = l___regBuiltin_BitVec_reduceXOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1332____closed__4; +x_2 = l___regBuiltin_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1148____closed__5; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceXOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1555____closed__6() { +static lean_object* _init_l___regBuiltin_BitVec_reduceXOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1332____closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceXOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1555____closed__5; +x_1 = l___regBuiltin_BitVec_reduceXOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1332____closed__5; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceXOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1555____closed__7() { +static lean_object* _init_l___regBuiltin_BitVec_reduceXOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1332____closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceXOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1555____closed__6; -x_2 = l___regBuiltin_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1371____closed__4; +x_1 = l___regBuiltin_BitVec_reduceXOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1332____closed__6; +x_2 = l___regBuiltin_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1148____closed__5; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceXOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1555____closed__8() { +static lean_object* _init_l___regBuiltin_BitVec_reduceXOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1332____closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceXOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1555____closed__7; +x_1 = l___regBuiltin_BitVec_reduceXOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1332____closed__7; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceXOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1555____closed__9() { +static lean_object* _init_l___regBuiltin_BitVec_reduceXOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1332____closed__9() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceXOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1555____closed__8; -x_2 = l___regBuiltin_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1371____closed__4; +x_1 = l___regBuiltin_BitVec_reduceXOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1332____closed__8; +x_2 = l___regBuiltin_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1148____closed__5; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceXOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1555____closed__10() { +static lean_object* _init_l___regBuiltin_BitVec_reduceXOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1332____closed__10() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceXOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1555____closed__9; +x_1 = l___regBuiltin_BitVec_reduceXOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1332____closed__9; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceXOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1555____closed__11() { +static lean_object* _init_l___regBuiltin_BitVec_reduceXOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1332____closed__11() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceXOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1555____closed__10; +x_1 = l___regBuiltin_BitVec_reduceXOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1332____closed__10; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceXOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1555____closed__12() { +static lean_object* _init_l___regBuiltin_BitVec_reduceXOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1332____closed__12() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceXOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1555____closed__11; +x_1 = l___regBuiltin_BitVec_reduceXOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1332____closed__11; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceXOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1555____closed__13() { +static lean_object* _init_l___regBuiltin_BitVec_reduceXOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1332____closed__13() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceXOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1555____closed__12; +x_1 = l___regBuiltin_BitVec_reduceXOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1332____closed__12; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceXOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1555____closed__14() { +static lean_object* _init_l___regBuiltin_BitVec_reduceXOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1332____closed__14() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Std_BitVec_reduceXOr), 9, 0); +x_1 = lean_alloc_closure((void*)(l_BitVec_reduceXOr), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceXOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1555_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceXOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1332_(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_Std_BitVec_reduceXOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1555____closed__2; -x_3 = l___regBuiltin_Std_BitVec_reduceXOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1555____closed__13; -x_4 = l___regBuiltin_Std_BitVec_reduceXOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1555____closed__14; +x_2 = l___regBuiltin_BitVec_reduceXOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1332____closed__2; +x_3 = l___regBuiltin_BitVec_reduceXOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1332____closed__13; +x_4 = l___regBuiltin_BitVec_reduceXOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1332____closed__14; x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); return x_5; } } -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceXOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1557_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceXOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1334_(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_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1373____closed__1; -x_3 = l___regBuiltin_Std_BitVec_reduceXOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1555____closed__2; +x_2 = l___regBuiltin_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1150____closed__1; +x_3 = l___regBuiltin_BitVec_reduceXOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1332____closed__2; x_4 = 1; -x_5 = l___regBuiltin_Std_BitVec_reduceXOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1555____closed__14; +x_5 = l___regBuiltin_BitVec_reduceXOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1332____closed__14; 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_Std_BitVec_reduceXOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1559_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceXOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1336_(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_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1375____closed__1; -x_3 = l___regBuiltin_Std_BitVec_reduceXOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1555____closed__2; +x_2 = l___regBuiltin_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1152____closed__1; +x_3 = l___regBuiltin_BitVec_reduceXOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1332____closed__2; x_4 = 1; -x_5 = l___regBuiltin_Std_BitVec_reduceXOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1555____closed__14; +x_5 = l___regBuiltin_BitVec_reduceXOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1332____closed__14; 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_Std_BitVec_reduceAdd___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, lean_object* x_11, lean_object* x_12) { +LEAN_EXPORT lean_object* l_BitVec_reduceAdd___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, lean_object* x_11, lean_object* x_12) { _start: { -lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; uint32_t x_18; uint8_t x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; +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; uint32_t x_21; uint8_t x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; x_13 = lean_ctor_get(x_1, 1); -x_14 = l_Std_BitVec_add(x_2, x_3, x_13); -x_15 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_15, 0, x_2); -lean_ctor_set(x_15, 1, x_14); -x_16 = l_Std_BitVec_Literal_toExpr(x_15); -x_17 = lean_box(0); -x_18 = 0; -x_19 = 1; -x_20 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_20, 0, x_16); -lean_ctor_set(x_20, 1, x_17); -lean_ctor_set_uint32(x_20, sizeof(void*)*2, x_18); -lean_ctor_set_uint8(x_20, sizeof(void*)*2 + 4, x_19); -x_21 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_21, 0, x_20); -x_22 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_22, 0, x_21); -lean_ctor_set(x_22, 1, x_12); -return x_22; +x_14 = lean_ctor_get(x_2, 1); +x_15 = l_BitVec_add(x_3, x_13, x_14); +x_16 = l_Lean_mkNatLit(x_3); +x_17 = l_Lean_mkNatLit(x_15); +x_18 = l_BitVec_reduceUnary___lambda__1___closed__5; +x_19 = l_Lean_mkAppB(x_18, x_16, x_17); +x_20 = lean_box(0); +x_21 = 0; +x_22 = 1; +x_23 = lean_alloc_ctor(0, 2, 5); +lean_ctor_set(x_23, 0, x_19); +lean_ctor_set(x_23, 1, x_20); +lean_ctor_set_uint32(x_23, sizeof(void*)*2, x_21); +lean_ctor_set_uint8(x_23, sizeof(void*)*2 + 4, x_22); +x_24 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_24, 0, x_23); +x_25 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_25, 0, x_24); +lean_ctor_set(x_25, 1, x_12); +return x_25; } } -LEAN_EXPORT lean_object* l_Std_BitVec_reduceAdd___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_EXPORT lean_object* l_BitVec_reduceAdd___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) { _start: { lean_object* x_12; lean_object* x_13; lean_object* x_14; @@ -7949,7 +6915,8 @@ lean_inc(x_10); lean_inc(x_9); lean_inc(x_8); lean_inc(x_7); -x_14 = l_Std_BitVec_fromExpr_x3f(x_13, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +x_14 = l_BitVec_fromExpr_x3f(x_13, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_13); if (lean_obj_tag(x_14) == 0) { lean_object* x_15; @@ -7973,7 +6940,7 @@ if (x_16 == 0) lean_object* x_17; lean_object* x_18; x_17 = lean_ctor_get(x_14, 0); lean_dec(x_17); -x_18 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_18 = l_BitVec_reduceUnary___lambda__1___closed__1; lean_ctor_set(x_14, 0, x_18); return x_14; } @@ -7983,7 +6950,7 @@ lean_object* x_19; lean_object* x_20; lean_object* x_21; x_19 = lean_ctor_get(x_14, 1); lean_inc(x_19); lean_dec(x_14); -x_20 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_20 = l_BitVec_reduceUnary___lambda__1___closed__1; x_21 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_21, 0, x_20); lean_ctor_set(x_21, 1, x_19); @@ -8005,7 +6972,8 @@ lean_inc(x_10); lean_inc(x_9); lean_inc(x_8); lean_inc(x_7); -x_25 = l_Std_BitVec_fromExpr_x3f(x_24, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_22); +x_25 = l_BitVec_fromExpr_x3f(x_24, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_22); +lean_dec(x_24); if (lean_obj_tag(x_25) == 0) { lean_object* x_26; @@ -8029,7 +6997,7 @@ if (x_27 == 0) lean_object* x_28; lean_object* x_29; x_28 = lean_ctor_get(x_25, 0); lean_dec(x_28); -x_29 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_29 = l_BitVec_reduceUnary___lambda__1___closed__1; lean_ctor_set(x_25, 0, x_29); return x_25; } @@ -8039,7 +7007,7 @@ lean_object* x_30; lean_object* x_31; lean_object* x_32; x_30 = lean_ctor_get(x_25, 1); lean_inc(x_30); lean_dec(x_25); -x_31 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_31 = l_BitVec_reduceUnary___lambda__1___closed__1; x_32 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_32, 0, x_31); lean_ctor_set(x_32, 1, x_30); @@ -8052,7 +7020,7 @@ uint8_t x_33; x_33 = !lean_is_exclusive(x_25); if (x_33 == 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; uint8_t x_40; +lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; uint8_t x_39; x_34 = lean_ctor_get(x_25, 1); x_35 = lean_ctor_get(x_25, 0); lean_dec(x_35); @@ -8061,19 +7029,16 @@ lean_inc(x_36); lean_dec(x_26); x_37 = lean_ctor_get(x_23, 0); lean_inc(x_37); -x_38 = lean_ctor_get(x_23, 1); +x_38 = lean_ctor_get(x_36, 0); lean_inc(x_38); -lean_dec(x_23); -x_39 = lean_ctor_get(x_36, 0); -lean_inc(x_39); -x_40 = lean_nat_dec_eq(x_37, x_39); -if (x_40 == 0) +x_39 = lean_nat_dec_eq(x_37, x_38); +if (x_39 == 0) { -lean_object* x_41; -lean_dec(x_39); +lean_object* x_40; lean_dec(x_38); lean_dec(x_37); lean_dec(x_36); +lean_dec(x_23); lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); @@ -8082,30 +7047,30 @@ lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_2); -x_41 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; -lean_ctor_set(x_25, 0, x_41); +x_40 = l_BitVec_reduceUnary___lambda__1___closed__1; +lean_ctor_set(x_25, 0, x_40); return x_25; } else { -lean_object* x_42; lean_object* x_43; lean_object* x_44; uint8_t x_45; +lean_object* x_41; lean_object* x_42; lean_object* x_43; uint8_t x_44; lean_free_object(x_25); -x_42 = l_Std_BitVec_reduceBin___lambda__2___closed__3; -x_43 = l_Lean_isTracingEnabledFor___at_Lean_Meta_Simp_congrArgs___spec__1(x_42, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_34); -x_44 = lean_ctor_get(x_43, 0); -lean_inc(x_44); -x_45 = lean_unbox(x_44); -lean_dec(x_44); -if (x_45 == 0) -{ -lean_object* x_46; lean_object* x_47; lean_object* x_48; -lean_dec(x_39); -lean_dec(x_2); -x_46 = lean_ctor_get(x_43, 1); -lean_inc(x_46); +x_41 = l_BitVec_reduceBin___lambda__2___closed__3; +x_42 = l_Lean_isTracingEnabledFor___at_Lean_Meta_Simp_congrArgs___spec__1(x_41, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_34); +x_43 = lean_ctor_get(x_42, 0); +lean_inc(x_43); +x_44 = lean_unbox(x_43); lean_dec(x_43); -x_47 = lean_box(0); -x_48 = l_Std_BitVec_reduceAdd___lambda__1(x_36, x_37, x_38, x_47, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_46); +if (x_44 == 0) +{ +lean_object* x_45; lean_object* x_46; lean_object* x_47; +lean_dec(x_38); +lean_dec(x_2); +x_45 = lean_ctor_get(x_42, 1); +lean_inc(x_45); +lean_dec(x_42); +x_46 = lean_box(0); +x_47 = l_BitVec_reduceAdd___lambda__1(x_23, x_36, x_37, x_46, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_45); lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); @@ -8113,34 +7078,35 @@ lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); -lean_dec(x_38); lean_dec(x_36); -return x_48; +lean_dec(x_23); +return x_47; } else { -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; -x_49 = lean_ctor_get(x_43, 1); -lean_inc(x_49); -lean_dec(x_43); -x_50 = l_Lean_MessageData_ofName(x_2); -x_51 = l_Std_BitVec_reduceBin___lambda__2___closed__5; -x_52 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_52, 0, x_51); -lean_ctor_set(x_52, 1, x_50); -x_53 = l_Std_BitVec_reduceBin___lambda__2___closed__7; -x_54 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_54, 0, x_52); -lean_ctor_set(x_54, 1, x_53); -lean_inc(x_38); -x_55 = l_Std_BitVec_toHex(x_37, x_38); +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; +x_48 = lean_ctor_get(x_42, 1); +lean_inc(x_48); +lean_dec(x_42); +x_49 = l_Lean_MessageData_ofName(x_2); +x_50 = l_BitVec_reduceBin___lambda__2___closed__5; +x_51 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_51, 0, x_50); +lean_ctor_set(x_51, 1, x_49); +x_52 = l_BitVec_reduceBin___lambda__2___closed__7; +x_53 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_53, 0, x_51); +lean_ctor_set(x_53, 1, x_52); +x_54 = lean_ctor_get(x_23, 1); +lean_inc(x_54); +x_55 = l_BitVec_toHex(x_37, x_54); x_56 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_56, 0, x_55); -x_57 = l_Std_BitVec_reduceBin___lambda__2___closed__9; +x_57 = l_BitVec_reduceBin___lambda__2___closed__9; x_58 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_58, 0, x_57); lean_ctor_set(x_58, 1, x_56); -x_59 = l_Std_BitVec_reduceBin___lambda__2___closed__11; +x_59 = l_BitVec_reduceBin___lambda__2___closed__11; x_60 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_60, 0, x_58); lean_ctor_set(x_60, 1, x_59); @@ -8159,15 +7125,15 @@ lean_ctor_set(x_67, 0, x_66); x_68 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_68, 0, x_67); x_69 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_69, 0, x_54); +lean_ctor_set(x_69, 0, x_53); lean_ctor_set(x_69, 1, x_68); -x_70 = l_Std_BitVec_reduceBin___lambda__2___closed__13; +x_70 = l_BitVec_reduceBin___lambda__2___closed__13; x_71 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_71, 0, x_69); lean_ctor_set(x_71, 1, x_70); x_72 = lean_ctor_get(x_36, 1); lean_inc(x_72); -x_73 = l_Std_BitVec_toHex(x_39, x_72); +x_73 = l_BitVec_toHex(x_38, x_72); x_74 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_74, 0, x_73); x_75 = lean_alloc_ctor(5, 2, 0); @@ -8176,7 +7142,7 @@ lean_ctor_set(x_75, 1, x_74); x_76 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_76, 0, x_75); lean_ctor_set(x_76, 1, x_59); -x_77 = l_Nat_repr(x_39); +x_77 = l_Nat_repr(x_38); x_78 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_78, 0, x_77); x_79 = lean_alloc_ctor(5, 2, 0); @@ -8190,17 +7156,17 @@ lean_ctor_set(x_82, 0, x_81); x_83 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_83, 0, x_71); lean_ctor_set(x_83, 1, x_82); -x_84 = l_Std_BitVec_reduceBin___lambda__2___closed__15; +x_84 = l_BitVec_reduceBin___lambda__2___closed__15; x_85 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_85, 0, x_83); lean_ctor_set(x_85, 1, x_84); -x_86 = l_Lean_addTrace___at_Lean_Meta_Simp_congrArgs___spec__2(x_42, x_85, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_49); +x_86 = l_Lean_addTrace___at_Lean_Meta_Simp_congrArgs___spec__2(x_41, x_85, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_48); 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 = l_Std_BitVec_reduceAdd___lambda__1(x_36, x_37, x_38, x_87, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_88); +x_89 = l_BitVec_reduceAdd___lambda__1(x_23, x_36, x_37, x_87, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_88); lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); @@ -8209,15 +7175,15 @@ lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_87); -lean_dec(x_38); lean_dec(x_36); +lean_dec(x_23); return x_89; } } } else { -lean_object* x_90; lean_object* x_91; lean_object* x_92; lean_object* x_93; lean_object* x_94; uint8_t x_95; +lean_object* x_90; lean_object* x_91; lean_object* x_92; lean_object* x_93; uint8_t x_94; x_90 = lean_ctor_get(x_25, 1); lean_inc(x_90); lean_dec(x_25); @@ -8226,19 +7192,16 @@ lean_inc(x_91); lean_dec(x_26); x_92 = lean_ctor_get(x_23, 0); lean_inc(x_92); -x_93 = lean_ctor_get(x_23, 1); +x_93 = lean_ctor_get(x_91, 0); lean_inc(x_93); -lean_dec(x_23); -x_94 = lean_ctor_get(x_91, 0); -lean_inc(x_94); -x_95 = lean_nat_dec_eq(x_92, x_94); -if (x_95 == 0) +x_94 = lean_nat_dec_eq(x_92, x_93); +if (x_94 == 0) { -lean_object* x_96; lean_object* x_97; -lean_dec(x_94); +lean_object* x_95; lean_object* x_96; lean_dec(x_93); lean_dec(x_92); lean_dec(x_91); +lean_dec(x_23); lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); @@ -8247,66 +7210,67 @@ lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_2); -x_96 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; -x_97 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_97, 0, x_96); -lean_ctor_set(x_97, 1, x_90); -return x_97; +x_95 = l_BitVec_reduceUnary___lambda__1___closed__1; +x_96 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_96, 0, x_95); +lean_ctor_set(x_96, 1, x_90); +return x_96; } else { -lean_object* x_98; lean_object* x_99; lean_object* x_100; uint8_t x_101; -x_98 = l_Std_BitVec_reduceBin___lambda__2___closed__3; -x_99 = l_Lean_isTracingEnabledFor___at_Lean_Meta_Simp_congrArgs___spec__1(x_98, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_90); -x_100 = lean_ctor_get(x_99, 0); -lean_inc(x_100); -x_101 = lean_unbox(x_100); -lean_dec(x_100); -if (x_101 == 0) -{ -lean_object* x_102; lean_object* x_103; lean_object* x_104; -lean_dec(x_94); -lean_dec(x_2); -x_102 = lean_ctor_get(x_99, 1); -lean_inc(x_102); +lean_object* x_97; lean_object* x_98; lean_object* x_99; uint8_t x_100; +x_97 = l_BitVec_reduceBin___lambda__2___closed__3; +x_98 = l_Lean_isTracingEnabledFor___at_Lean_Meta_Simp_congrArgs___spec__1(x_97, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_90); +x_99 = lean_ctor_get(x_98, 0); +lean_inc(x_99); +x_100 = lean_unbox(x_99); lean_dec(x_99); -x_103 = lean_box(0); -x_104 = l_Std_BitVec_reduceAdd___lambda__1(x_91, x_92, x_93, x_103, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_102); -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); +if (x_100 == 0) +{ +lean_object* x_101; lean_object* x_102; lean_object* x_103; lean_dec(x_93); +lean_dec(x_2); +x_101 = lean_ctor_get(x_98, 1); +lean_inc(x_101); +lean_dec(x_98); +x_102 = lean_box(0); +x_103 = l_BitVec_reduceAdd___lambda__1(x_23, x_91, x_92, x_102, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_101); +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_91); -return x_104; +lean_dec(x_23); +return x_103; } else { -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; -x_105 = lean_ctor_get(x_99, 1); -lean_inc(x_105); -lean_dec(x_99); -x_106 = l_Lean_MessageData_ofName(x_2); -x_107 = l_Std_BitVec_reduceBin___lambda__2___closed__5; -x_108 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_108, 0, x_107); -lean_ctor_set(x_108, 1, x_106); -x_109 = l_Std_BitVec_reduceBin___lambda__2___closed__7; -x_110 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_110, 0, x_108); -lean_ctor_set(x_110, 1, x_109); -lean_inc(x_93); -x_111 = l_Std_BitVec_toHex(x_92, x_93); +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; +x_104 = lean_ctor_get(x_98, 1); +lean_inc(x_104); +lean_dec(x_98); +x_105 = l_Lean_MessageData_ofName(x_2); +x_106 = l_BitVec_reduceBin___lambda__2___closed__5; +x_107 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_107, 0, x_106); +lean_ctor_set(x_107, 1, x_105); +x_108 = l_BitVec_reduceBin___lambda__2___closed__7; +x_109 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_109, 0, x_107); +lean_ctor_set(x_109, 1, x_108); +x_110 = lean_ctor_get(x_23, 1); +lean_inc(x_110); +x_111 = l_BitVec_toHex(x_92, x_110); x_112 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_112, 0, x_111); -x_113 = l_Std_BitVec_reduceBin___lambda__2___closed__9; +x_113 = l_BitVec_reduceBin___lambda__2___closed__9; x_114 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_114, 0, x_113); lean_ctor_set(x_114, 1, x_112); -x_115 = l_Std_BitVec_reduceBin___lambda__2___closed__11; +x_115 = l_BitVec_reduceBin___lambda__2___closed__11; x_116 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_116, 0, x_114); lean_ctor_set(x_116, 1, x_115); @@ -8325,15 +7289,15 @@ lean_ctor_set(x_123, 0, x_122); x_124 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_124, 0, x_123); x_125 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_125, 0, x_110); +lean_ctor_set(x_125, 0, x_109); lean_ctor_set(x_125, 1, x_124); -x_126 = l_Std_BitVec_reduceBin___lambda__2___closed__13; +x_126 = l_BitVec_reduceBin___lambda__2___closed__13; x_127 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_127, 0, x_125); lean_ctor_set(x_127, 1, x_126); x_128 = lean_ctor_get(x_91, 1); lean_inc(x_128); -x_129 = l_Std_BitVec_toHex(x_94, x_128); +x_129 = l_BitVec_toHex(x_93, x_128); x_130 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_130, 0, x_129); x_131 = lean_alloc_ctor(5, 2, 0); @@ -8342,7 +7306,7 @@ lean_ctor_set(x_131, 1, x_130); x_132 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_132, 0, x_131); lean_ctor_set(x_132, 1, x_115); -x_133 = l_Nat_repr(x_94); +x_133 = l_Nat_repr(x_93); x_134 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_134, 0, x_133); x_135 = lean_alloc_ctor(5, 2, 0); @@ -8356,17 +7320,17 @@ lean_ctor_set(x_138, 0, x_137); x_139 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_139, 0, x_127); lean_ctor_set(x_139, 1, x_138); -x_140 = l_Std_BitVec_reduceBin___lambda__2___closed__15; +x_140 = l_BitVec_reduceBin___lambda__2___closed__15; x_141 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_141, 0, x_139); lean_ctor_set(x_141, 1, x_140); -x_142 = l_Lean_addTrace___at_Lean_Meta_Simp_congrArgs___spec__2(x_98, x_141, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_105); +x_142 = l_Lean_addTrace___at_Lean_Meta_Simp_congrArgs___spec__2(x_97, x_141, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_104); x_143 = lean_ctor_get(x_142, 0); lean_inc(x_143); x_144 = lean_ctor_get(x_142, 1); lean_inc(x_144); lean_dec(x_142); -x_145 = l_Std_BitVec_reduceAdd___lambda__1(x_91, x_92, x_93, x_143, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_144); +x_145 = l_BitVec_reduceAdd___lambda__1(x_23, x_91, x_92, x_143, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_144); lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); @@ -8375,8 +7339,8 @@ lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_143); -lean_dec(x_93); lean_dec(x_91); +lean_dec(x_23); return x_145; } } @@ -8449,7 +7413,7 @@ return x_153; } } } -static lean_object* _init_l_Std_BitVec_reduceAdd___closed__1() { +static lean_object* _init_l_BitVec_reduceAdd___closed__1() { _start: { lean_object* x_1; @@ -8457,7 +7421,7 @@ x_1 = lean_mk_string_from_bytes("HAdd", 4); return x_1; } } -static lean_object* _init_l_Std_BitVec_reduceAdd___closed__2() { +static lean_object* _init_l_BitVec_reduceAdd___closed__2() { _start: { lean_object* x_1; @@ -8465,21 +7429,21 @@ x_1 = lean_mk_string_from_bytes("hAdd", 4); return x_1; } } -static lean_object* _init_l_Std_BitVec_reduceAdd___closed__3() { +static lean_object* _init_l_BitVec_reduceAdd___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Std_BitVec_reduceAdd___closed__1; -x_2 = l_Std_BitVec_reduceAdd___closed__2; +x_1 = l_BitVec_reduceAdd___closed__1; +x_2 = l_BitVec_reduceAdd___closed__2; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } -LEAN_EXPORT lean_object* l_Std_BitVec_reduceAdd(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_EXPORT lean_object* l_BitVec_reduceAdd(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; uint8_t x_12; -x_10 = l_Std_BitVec_reduceAdd___closed__3; +x_10 = l_BitVec_reduceAdd___closed__3; x_11 = lean_unsigned_to_nat(6u); x_12 = l_Lean_Expr_isAppOfArity(x_1, x_10, x_11); if (x_12 == 0) @@ -8493,7 +7457,7 @@ lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_13 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_13 = l_BitVec_reduceUnary___lambda__1___closed__1; x_14 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_14, 0, x_13); lean_ctor_set(x_14, 1, x_9); @@ -8503,16 +7467,16 @@ else { lean_object* x_15; lean_object* x_16; x_15 = lean_box(0); -x_16 = l_Std_BitVec_reduceAdd___lambda__2(x_1, x_10, x_15, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_16 = l_BitVec_reduceAdd___lambda__2(x_1, x_10, x_15, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); return x_16; } } } -LEAN_EXPORT lean_object* l_Std_BitVec_reduceAdd___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, lean_object* x_11, lean_object* x_12) { +LEAN_EXPORT lean_object* l_BitVec_reduceAdd___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, lean_object* x_11, lean_object* x_12) { _start: { lean_object* x_13; -x_13 = l_Std_BitVec_reduceAdd___lambda__1(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 = l_BitVec_reduceAdd___lambda__1(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_9); @@ -8521,12 +7485,12 @@ 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_13; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1597____closed__1() { +static lean_object* _init_l___regBuiltin_BitVec_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1374____closed__1() { _start: { lean_object* x_1; @@ -8534,22 +7498,21 @@ x_1 = lean_mk_string_from_bytes("reduceAdd", 9); return x_1; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1597____closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f___closed__4; -x_2 = l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f___closed__5; -x_3 = l___regBuiltin_Std_BitVec_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1597____closed__1; -x_4 = l_Lean_Name_mkStr3(x_1, x_2, x_3); -return x_4; -} -} -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1597____closed__3() { +static lean_object* _init_l___regBuiltin_BitVec_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1374____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Std_BitVec_reduceAdd___closed__3; +x_1 = l_BitVec_reduceUnary___lambda__1___closed__2; +x_2 = l___regBuiltin_BitVec_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1374____closed__1; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___regBuiltin_BitVec_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1374____closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_BitVec_reduceAdd___closed__3; x_2 = lean_unsigned_to_nat(6u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -8557,176 +7520,177 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1597____closed__4() { +static lean_object* _init_l___regBuiltin_BitVec_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1374____closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1471____closed__4; -x_2 = l___regBuiltin_Std_BitVec_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1597____closed__3; +x_1 = l___regBuiltin_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1248____closed__4; +x_2 = l___regBuiltin_BitVec_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1374____closed__3; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1597____closed__5() { +static lean_object* _init_l___regBuiltin_BitVec_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1374____closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1597____closed__4; -x_2 = l___regBuiltin_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1371____closed__4; +x_1 = l___regBuiltin_BitVec_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1374____closed__4; +x_2 = l___regBuiltin_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1148____closed__5; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1597____closed__6() { +static lean_object* _init_l___regBuiltin_BitVec_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1374____closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1597____closed__5; +x_1 = l___regBuiltin_BitVec_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1374____closed__5; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1597____closed__7() { +static lean_object* _init_l___regBuiltin_BitVec_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1374____closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1597____closed__6; -x_2 = l___regBuiltin_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1371____closed__4; +x_1 = l___regBuiltin_BitVec_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1374____closed__6; +x_2 = l___regBuiltin_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1148____closed__5; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1597____closed__8() { +static lean_object* _init_l___regBuiltin_BitVec_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1374____closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1597____closed__7; +x_1 = l___regBuiltin_BitVec_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1374____closed__7; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1597____closed__9() { +static lean_object* _init_l___regBuiltin_BitVec_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1374____closed__9() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1597____closed__8; -x_2 = l___regBuiltin_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1371____closed__4; +x_1 = l___regBuiltin_BitVec_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1374____closed__8; +x_2 = l___regBuiltin_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1148____closed__5; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1597____closed__10() { +static lean_object* _init_l___regBuiltin_BitVec_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1374____closed__10() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1597____closed__9; +x_1 = l___regBuiltin_BitVec_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1374____closed__9; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1597____closed__11() { +static lean_object* _init_l___regBuiltin_BitVec_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1374____closed__11() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1597____closed__10; +x_1 = l___regBuiltin_BitVec_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1374____closed__10; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1597____closed__12() { +static lean_object* _init_l___regBuiltin_BitVec_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1374____closed__12() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1597____closed__11; +x_1 = l___regBuiltin_BitVec_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1374____closed__11; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1597____closed__13() { +static lean_object* _init_l___regBuiltin_BitVec_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1374____closed__13() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1597____closed__12; +x_1 = l___regBuiltin_BitVec_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1374____closed__12; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1597____closed__14() { +static lean_object* _init_l___regBuiltin_BitVec_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1374____closed__14() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Std_BitVec_reduceAdd), 9, 0); +x_1 = lean_alloc_closure((void*)(l_BitVec_reduceAdd), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1597_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1374_(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_Std_BitVec_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1597____closed__2; -x_3 = l___regBuiltin_Std_BitVec_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1597____closed__13; -x_4 = l___regBuiltin_Std_BitVec_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1597____closed__14; +x_2 = l___regBuiltin_BitVec_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1374____closed__2; +x_3 = l___regBuiltin_BitVec_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1374____closed__13; +x_4 = l___regBuiltin_BitVec_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1374____closed__14; x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); return x_5; } } -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1599_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1376_(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_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1373____closed__1; -x_3 = l___regBuiltin_Std_BitVec_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1597____closed__2; +x_2 = l___regBuiltin_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1150____closed__1; +x_3 = l___regBuiltin_BitVec_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1374____closed__2; x_4 = 1; -x_5 = l___regBuiltin_Std_BitVec_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1597____closed__14; +x_5 = l___regBuiltin_BitVec_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1374____closed__14; 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_Std_BitVec_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1601_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1378_(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_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1375____closed__1; -x_3 = l___regBuiltin_Std_BitVec_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1597____closed__2; +x_2 = l___regBuiltin_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1152____closed__1; +x_3 = l___regBuiltin_BitVec_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1374____closed__2; x_4 = 1; -x_5 = l___regBuiltin_Std_BitVec_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1597____closed__14; +x_5 = l___regBuiltin_BitVec_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1374____closed__14; 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_Std_BitVec_reduceMul___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, lean_object* x_11, lean_object* x_12) { +LEAN_EXPORT lean_object* l_BitVec_reduceMul___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, lean_object* x_11, lean_object* x_12) { _start: { -lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; uint32_t x_18; uint8_t x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; +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; uint32_t x_21; uint8_t x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; x_13 = lean_ctor_get(x_1, 1); -x_14 = l_Std_BitVec_mul(x_2, x_3, x_13); -x_15 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_15, 0, x_2); -lean_ctor_set(x_15, 1, x_14); -x_16 = l_Std_BitVec_Literal_toExpr(x_15); -x_17 = lean_box(0); -x_18 = 0; -x_19 = 1; -x_20 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_20, 0, x_16); -lean_ctor_set(x_20, 1, x_17); -lean_ctor_set_uint32(x_20, sizeof(void*)*2, x_18); -lean_ctor_set_uint8(x_20, sizeof(void*)*2 + 4, x_19); -x_21 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_21, 0, x_20); -x_22 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_22, 0, x_21); -lean_ctor_set(x_22, 1, x_12); -return x_22; +x_14 = lean_ctor_get(x_2, 1); +x_15 = l_BitVec_mul(x_3, x_13, x_14); +x_16 = l_Lean_mkNatLit(x_3); +x_17 = l_Lean_mkNatLit(x_15); +x_18 = l_BitVec_reduceUnary___lambda__1___closed__5; +x_19 = l_Lean_mkAppB(x_18, x_16, x_17); +x_20 = lean_box(0); +x_21 = 0; +x_22 = 1; +x_23 = lean_alloc_ctor(0, 2, 5); +lean_ctor_set(x_23, 0, x_19); +lean_ctor_set(x_23, 1, x_20); +lean_ctor_set_uint32(x_23, sizeof(void*)*2, x_21); +lean_ctor_set_uint8(x_23, sizeof(void*)*2 + 4, x_22); +x_24 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_24, 0, x_23); +x_25 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_25, 0, x_24); +lean_ctor_set(x_25, 1, x_12); +return x_25; } } -LEAN_EXPORT lean_object* l_Std_BitVec_reduceMul___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_EXPORT lean_object* l_BitVec_reduceMul___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) { _start: { lean_object* x_12; lean_object* x_13; lean_object* x_14; @@ -8739,7 +7703,8 @@ lean_inc(x_10); lean_inc(x_9); lean_inc(x_8); lean_inc(x_7); -x_14 = l_Std_BitVec_fromExpr_x3f(x_13, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +x_14 = l_BitVec_fromExpr_x3f(x_13, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_13); if (lean_obj_tag(x_14) == 0) { lean_object* x_15; @@ -8763,7 +7728,7 @@ if (x_16 == 0) lean_object* x_17; lean_object* x_18; x_17 = lean_ctor_get(x_14, 0); lean_dec(x_17); -x_18 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_18 = l_BitVec_reduceUnary___lambda__1___closed__1; lean_ctor_set(x_14, 0, x_18); return x_14; } @@ -8773,7 +7738,7 @@ lean_object* x_19; lean_object* x_20; lean_object* x_21; x_19 = lean_ctor_get(x_14, 1); lean_inc(x_19); lean_dec(x_14); -x_20 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_20 = l_BitVec_reduceUnary___lambda__1___closed__1; x_21 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_21, 0, x_20); lean_ctor_set(x_21, 1, x_19); @@ -8795,7 +7760,8 @@ lean_inc(x_10); lean_inc(x_9); lean_inc(x_8); lean_inc(x_7); -x_25 = l_Std_BitVec_fromExpr_x3f(x_24, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_22); +x_25 = l_BitVec_fromExpr_x3f(x_24, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_22); +lean_dec(x_24); if (lean_obj_tag(x_25) == 0) { lean_object* x_26; @@ -8819,7 +7785,7 @@ if (x_27 == 0) lean_object* x_28; lean_object* x_29; x_28 = lean_ctor_get(x_25, 0); lean_dec(x_28); -x_29 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_29 = l_BitVec_reduceUnary___lambda__1___closed__1; lean_ctor_set(x_25, 0, x_29); return x_25; } @@ -8829,7 +7795,7 @@ lean_object* x_30; lean_object* x_31; lean_object* x_32; x_30 = lean_ctor_get(x_25, 1); lean_inc(x_30); lean_dec(x_25); -x_31 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_31 = l_BitVec_reduceUnary___lambda__1___closed__1; x_32 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_32, 0, x_31); lean_ctor_set(x_32, 1, x_30); @@ -8842,7 +7808,7 @@ uint8_t x_33; x_33 = !lean_is_exclusive(x_25); if (x_33 == 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; uint8_t x_40; +lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; uint8_t x_39; x_34 = lean_ctor_get(x_25, 1); x_35 = lean_ctor_get(x_25, 0); lean_dec(x_35); @@ -8851,19 +7817,16 @@ lean_inc(x_36); lean_dec(x_26); x_37 = lean_ctor_get(x_23, 0); lean_inc(x_37); -x_38 = lean_ctor_get(x_23, 1); +x_38 = lean_ctor_get(x_36, 0); lean_inc(x_38); -lean_dec(x_23); -x_39 = lean_ctor_get(x_36, 0); -lean_inc(x_39); -x_40 = lean_nat_dec_eq(x_37, x_39); -if (x_40 == 0) +x_39 = lean_nat_dec_eq(x_37, x_38); +if (x_39 == 0) { -lean_object* x_41; -lean_dec(x_39); +lean_object* x_40; lean_dec(x_38); lean_dec(x_37); lean_dec(x_36); +lean_dec(x_23); lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); @@ -8872,30 +7835,30 @@ lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_2); -x_41 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; -lean_ctor_set(x_25, 0, x_41); +x_40 = l_BitVec_reduceUnary___lambda__1___closed__1; +lean_ctor_set(x_25, 0, x_40); return x_25; } else { -lean_object* x_42; lean_object* x_43; lean_object* x_44; uint8_t x_45; +lean_object* x_41; lean_object* x_42; lean_object* x_43; uint8_t x_44; lean_free_object(x_25); -x_42 = l_Std_BitVec_reduceBin___lambda__2___closed__3; -x_43 = l_Lean_isTracingEnabledFor___at_Lean_Meta_Simp_congrArgs___spec__1(x_42, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_34); -x_44 = lean_ctor_get(x_43, 0); -lean_inc(x_44); -x_45 = lean_unbox(x_44); -lean_dec(x_44); -if (x_45 == 0) -{ -lean_object* x_46; lean_object* x_47; lean_object* x_48; -lean_dec(x_39); -lean_dec(x_2); -x_46 = lean_ctor_get(x_43, 1); -lean_inc(x_46); +x_41 = l_BitVec_reduceBin___lambda__2___closed__3; +x_42 = l_Lean_isTracingEnabledFor___at_Lean_Meta_Simp_congrArgs___spec__1(x_41, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_34); +x_43 = lean_ctor_get(x_42, 0); +lean_inc(x_43); +x_44 = lean_unbox(x_43); lean_dec(x_43); -x_47 = lean_box(0); -x_48 = l_Std_BitVec_reduceMul___lambda__1(x_36, x_37, x_38, x_47, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_46); +if (x_44 == 0) +{ +lean_object* x_45; lean_object* x_46; lean_object* x_47; +lean_dec(x_38); +lean_dec(x_2); +x_45 = lean_ctor_get(x_42, 1); +lean_inc(x_45); +lean_dec(x_42); +x_46 = lean_box(0); +x_47 = l_BitVec_reduceMul___lambda__1(x_23, x_36, x_37, x_46, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_45); lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); @@ -8903,34 +7866,35 @@ lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); -lean_dec(x_38); lean_dec(x_36); -return x_48; +lean_dec(x_23); +return x_47; } else { -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; -x_49 = lean_ctor_get(x_43, 1); -lean_inc(x_49); -lean_dec(x_43); -x_50 = l_Lean_MessageData_ofName(x_2); -x_51 = l_Std_BitVec_reduceBin___lambda__2___closed__5; -x_52 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_52, 0, x_51); -lean_ctor_set(x_52, 1, x_50); -x_53 = l_Std_BitVec_reduceBin___lambda__2___closed__7; -x_54 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_54, 0, x_52); -lean_ctor_set(x_54, 1, x_53); -lean_inc(x_38); -x_55 = l_Std_BitVec_toHex(x_37, x_38); +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; +x_48 = lean_ctor_get(x_42, 1); +lean_inc(x_48); +lean_dec(x_42); +x_49 = l_Lean_MessageData_ofName(x_2); +x_50 = l_BitVec_reduceBin___lambda__2___closed__5; +x_51 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_51, 0, x_50); +lean_ctor_set(x_51, 1, x_49); +x_52 = l_BitVec_reduceBin___lambda__2___closed__7; +x_53 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_53, 0, x_51); +lean_ctor_set(x_53, 1, x_52); +x_54 = lean_ctor_get(x_23, 1); +lean_inc(x_54); +x_55 = l_BitVec_toHex(x_37, x_54); x_56 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_56, 0, x_55); -x_57 = l_Std_BitVec_reduceBin___lambda__2___closed__9; +x_57 = l_BitVec_reduceBin___lambda__2___closed__9; x_58 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_58, 0, x_57); lean_ctor_set(x_58, 1, x_56); -x_59 = l_Std_BitVec_reduceBin___lambda__2___closed__11; +x_59 = l_BitVec_reduceBin___lambda__2___closed__11; x_60 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_60, 0, x_58); lean_ctor_set(x_60, 1, x_59); @@ -8949,15 +7913,15 @@ lean_ctor_set(x_67, 0, x_66); x_68 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_68, 0, x_67); x_69 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_69, 0, x_54); +lean_ctor_set(x_69, 0, x_53); lean_ctor_set(x_69, 1, x_68); -x_70 = l_Std_BitVec_reduceBin___lambda__2___closed__13; +x_70 = l_BitVec_reduceBin___lambda__2___closed__13; x_71 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_71, 0, x_69); lean_ctor_set(x_71, 1, x_70); x_72 = lean_ctor_get(x_36, 1); lean_inc(x_72); -x_73 = l_Std_BitVec_toHex(x_39, x_72); +x_73 = l_BitVec_toHex(x_38, x_72); x_74 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_74, 0, x_73); x_75 = lean_alloc_ctor(5, 2, 0); @@ -8966,7 +7930,7 @@ lean_ctor_set(x_75, 1, x_74); x_76 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_76, 0, x_75); lean_ctor_set(x_76, 1, x_59); -x_77 = l_Nat_repr(x_39); +x_77 = l_Nat_repr(x_38); x_78 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_78, 0, x_77); x_79 = lean_alloc_ctor(5, 2, 0); @@ -8980,17 +7944,17 @@ lean_ctor_set(x_82, 0, x_81); x_83 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_83, 0, x_71); lean_ctor_set(x_83, 1, x_82); -x_84 = l_Std_BitVec_reduceBin___lambda__2___closed__15; +x_84 = l_BitVec_reduceBin___lambda__2___closed__15; x_85 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_85, 0, x_83); lean_ctor_set(x_85, 1, x_84); -x_86 = l_Lean_addTrace___at_Lean_Meta_Simp_congrArgs___spec__2(x_42, x_85, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_49); +x_86 = l_Lean_addTrace___at_Lean_Meta_Simp_congrArgs___spec__2(x_41, x_85, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_48); 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 = l_Std_BitVec_reduceMul___lambda__1(x_36, x_37, x_38, x_87, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_88); +x_89 = l_BitVec_reduceMul___lambda__1(x_23, x_36, x_37, x_87, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_88); lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); @@ -8999,15 +7963,15 @@ lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_87); -lean_dec(x_38); lean_dec(x_36); +lean_dec(x_23); return x_89; } } } else { -lean_object* x_90; lean_object* x_91; lean_object* x_92; lean_object* x_93; lean_object* x_94; uint8_t x_95; +lean_object* x_90; lean_object* x_91; lean_object* x_92; lean_object* x_93; uint8_t x_94; x_90 = lean_ctor_get(x_25, 1); lean_inc(x_90); lean_dec(x_25); @@ -9016,19 +7980,16 @@ lean_inc(x_91); lean_dec(x_26); x_92 = lean_ctor_get(x_23, 0); lean_inc(x_92); -x_93 = lean_ctor_get(x_23, 1); +x_93 = lean_ctor_get(x_91, 0); lean_inc(x_93); -lean_dec(x_23); -x_94 = lean_ctor_get(x_91, 0); -lean_inc(x_94); -x_95 = lean_nat_dec_eq(x_92, x_94); -if (x_95 == 0) +x_94 = lean_nat_dec_eq(x_92, x_93); +if (x_94 == 0) { -lean_object* x_96; lean_object* x_97; -lean_dec(x_94); +lean_object* x_95; lean_object* x_96; lean_dec(x_93); lean_dec(x_92); lean_dec(x_91); +lean_dec(x_23); lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); @@ -9037,66 +7998,67 @@ lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_2); -x_96 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; -x_97 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_97, 0, x_96); -lean_ctor_set(x_97, 1, x_90); -return x_97; +x_95 = l_BitVec_reduceUnary___lambda__1___closed__1; +x_96 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_96, 0, x_95); +lean_ctor_set(x_96, 1, x_90); +return x_96; } else { -lean_object* x_98; lean_object* x_99; lean_object* x_100; uint8_t x_101; -x_98 = l_Std_BitVec_reduceBin___lambda__2___closed__3; -x_99 = l_Lean_isTracingEnabledFor___at_Lean_Meta_Simp_congrArgs___spec__1(x_98, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_90); -x_100 = lean_ctor_get(x_99, 0); -lean_inc(x_100); -x_101 = lean_unbox(x_100); -lean_dec(x_100); -if (x_101 == 0) -{ -lean_object* x_102; lean_object* x_103; lean_object* x_104; -lean_dec(x_94); -lean_dec(x_2); -x_102 = lean_ctor_get(x_99, 1); -lean_inc(x_102); +lean_object* x_97; lean_object* x_98; lean_object* x_99; uint8_t x_100; +x_97 = l_BitVec_reduceBin___lambda__2___closed__3; +x_98 = l_Lean_isTracingEnabledFor___at_Lean_Meta_Simp_congrArgs___spec__1(x_97, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_90); +x_99 = lean_ctor_get(x_98, 0); +lean_inc(x_99); +x_100 = lean_unbox(x_99); lean_dec(x_99); -x_103 = lean_box(0); -x_104 = l_Std_BitVec_reduceMul___lambda__1(x_91, x_92, x_93, x_103, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_102); -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); +if (x_100 == 0) +{ +lean_object* x_101; lean_object* x_102; lean_object* x_103; lean_dec(x_93); +lean_dec(x_2); +x_101 = lean_ctor_get(x_98, 1); +lean_inc(x_101); +lean_dec(x_98); +x_102 = lean_box(0); +x_103 = l_BitVec_reduceMul___lambda__1(x_23, x_91, x_92, x_102, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_101); +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_91); -return x_104; +lean_dec(x_23); +return x_103; } else { -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; -x_105 = lean_ctor_get(x_99, 1); -lean_inc(x_105); -lean_dec(x_99); -x_106 = l_Lean_MessageData_ofName(x_2); -x_107 = l_Std_BitVec_reduceBin___lambda__2___closed__5; -x_108 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_108, 0, x_107); -lean_ctor_set(x_108, 1, x_106); -x_109 = l_Std_BitVec_reduceBin___lambda__2___closed__7; -x_110 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_110, 0, x_108); -lean_ctor_set(x_110, 1, x_109); -lean_inc(x_93); -x_111 = l_Std_BitVec_toHex(x_92, x_93); +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; +x_104 = lean_ctor_get(x_98, 1); +lean_inc(x_104); +lean_dec(x_98); +x_105 = l_Lean_MessageData_ofName(x_2); +x_106 = l_BitVec_reduceBin___lambda__2___closed__5; +x_107 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_107, 0, x_106); +lean_ctor_set(x_107, 1, x_105); +x_108 = l_BitVec_reduceBin___lambda__2___closed__7; +x_109 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_109, 0, x_107); +lean_ctor_set(x_109, 1, x_108); +x_110 = lean_ctor_get(x_23, 1); +lean_inc(x_110); +x_111 = l_BitVec_toHex(x_92, x_110); x_112 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_112, 0, x_111); -x_113 = l_Std_BitVec_reduceBin___lambda__2___closed__9; +x_113 = l_BitVec_reduceBin___lambda__2___closed__9; x_114 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_114, 0, x_113); lean_ctor_set(x_114, 1, x_112); -x_115 = l_Std_BitVec_reduceBin___lambda__2___closed__11; +x_115 = l_BitVec_reduceBin___lambda__2___closed__11; x_116 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_116, 0, x_114); lean_ctor_set(x_116, 1, x_115); @@ -9115,15 +8077,15 @@ lean_ctor_set(x_123, 0, x_122); x_124 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_124, 0, x_123); x_125 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_125, 0, x_110); +lean_ctor_set(x_125, 0, x_109); lean_ctor_set(x_125, 1, x_124); -x_126 = l_Std_BitVec_reduceBin___lambda__2___closed__13; +x_126 = l_BitVec_reduceBin___lambda__2___closed__13; x_127 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_127, 0, x_125); lean_ctor_set(x_127, 1, x_126); x_128 = lean_ctor_get(x_91, 1); lean_inc(x_128); -x_129 = l_Std_BitVec_toHex(x_94, x_128); +x_129 = l_BitVec_toHex(x_93, x_128); x_130 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_130, 0, x_129); x_131 = lean_alloc_ctor(5, 2, 0); @@ -9132,7 +8094,7 @@ lean_ctor_set(x_131, 1, x_130); x_132 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_132, 0, x_131); lean_ctor_set(x_132, 1, x_115); -x_133 = l_Nat_repr(x_94); +x_133 = l_Nat_repr(x_93); x_134 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_134, 0, x_133); x_135 = lean_alloc_ctor(5, 2, 0); @@ -9146,17 +8108,17 @@ lean_ctor_set(x_138, 0, x_137); x_139 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_139, 0, x_127); lean_ctor_set(x_139, 1, x_138); -x_140 = l_Std_BitVec_reduceBin___lambda__2___closed__15; +x_140 = l_BitVec_reduceBin___lambda__2___closed__15; x_141 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_141, 0, x_139); lean_ctor_set(x_141, 1, x_140); -x_142 = l_Lean_addTrace___at_Lean_Meta_Simp_congrArgs___spec__2(x_98, x_141, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_105); +x_142 = l_Lean_addTrace___at_Lean_Meta_Simp_congrArgs___spec__2(x_97, x_141, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_104); x_143 = lean_ctor_get(x_142, 0); lean_inc(x_143); x_144 = lean_ctor_get(x_142, 1); lean_inc(x_144); lean_dec(x_142); -x_145 = l_Std_BitVec_reduceMul___lambda__1(x_91, x_92, x_93, x_143, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_144); +x_145 = l_BitVec_reduceMul___lambda__1(x_23, x_91, x_92, x_143, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_144); lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); @@ -9165,8 +8127,8 @@ lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_143); -lean_dec(x_93); lean_dec(x_91); +lean_dec(x_23); return x_145; } } @@ -9239,7 +8201,7 @@ return x_153; } } } -static lean_object* _init_l_Std_BitVec_reduceMul___closed__1() { +static lean_object* _init_l_BitVec_reduceMul___closed__1() { _start: { lean_object* x_1; @@ -9247,7 +8209,7 @@ x_1 = lean_mk_string_from_bytes("HMul", 4); return x_1; } } -static lean_object* _init_l_Std_BitVec_reduceMul___closed__2() { +static lean_object* _init_l_BitVec_reduceMul___closed__2() { _start: { lean_object* x_1; @@ -9255,21 +8217,21 @@ x_1 = lean_mk_string_from_bytes("hMul", 4); return x_1; } } -static lean_object* _init_l_Std_BitVec_reduceMul___closed__3() { +static lean_object* _init_l_BitVec_reduceMul___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Std_BitVec_reduceMul___closed__1; -x_2 = l_Std_BitVec_reduceMul___closed__2; +x_1 = l_BitVec_reduceMul___closed__1; +x_2 = l_BitVec_reduceMul___closed__2; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } -LEAN_EXPORT lean_object* l_Std_BitVec_reduceMul(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_EXPORT lean_object* l_BitVec_reduceMul(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; uint8_t x_12; -x_10 = l_Std_BitVec_reduceMul___closed__3; +x_10 = l_BitVec_reduceMul___closed__3; x_11 = lean_unsigned_to_nat(6u); x_12 = l_Lean_Expr_isAppOfArity(x_1, x_10, x_11); if (x_12 == 0) @@ -9283,7 +8245,7 @@ lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_13 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_13 = l_BitVec_reduceUnary___lambda__1___closed__1; x_14 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_14, 0, x_13); lean_ctor_set(x_14, 1, x_9); @@ -9293,16 +8255,16 @@ else { lean_object* x_15; lean_object* x_16; x_15 = lean_box(0); -x_16 = l_Std_BitVec_reduceMul___lambda__2(x_1, x_10, x_15, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_16 = l_BitVec_reduceMul___lambda__2(x_1, x_10, x_15, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); return x_16; } } } -LEAN_EXPORT lean_object* l_Std_BitVec_reduceMul___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, lean_object* x_11, lean_object* x_12) { +LEAN_EXPORT lean_object* l_BitVec_reduceMul___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, lean_object* x_11, lean_object* x_12) { _start: { lean_object* x_13; -x_13 = l_Std_BitVec_reduceMul___lambda__1(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 = l_BitVec_reduceMul___lambda__1(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_9); @@ -9311,12 +8273,12 @@ 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_13; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1639____closed__1() { +static lean_object* _init_l___regBuiltin_BitVec_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1416____closed__1() { _start: { lean_object* x_1; @@ -9324,22 +8286,21 @@ x_1 = lean_mk_string_from_bytes("reduceMul", 9); return x_1; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1639____closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f___closed__4; -x_2 = l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f___closed__5; -x_3 = l___regBuiltin_Std_BitVec_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1639____closed__1; -x_4 = l_Lean_Name_mkStr3(x_1, x_2, x_3); -return x_4; -} -} -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1639____closed__3() { +static lean_object* _init_l___regBuiltin_BitVec_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1416____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Std_BitVec_reduceMul___closed__3; +x_1 = l_BitVec_reduceUnary___lambda__1___closed__2; +x_2 = l___regBuiltin_BitVec_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1416____closed__1; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___regBuiltin_BitVec_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1416____closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_BitVec_reduceMul___closed__3; x_2 = lean_unsigned_to_nat(6u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -9347,176 +8308,177 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1639____closed__4() { +static lean_object* _init_l___regBuiltin_BitVec_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1416____closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1471____closed__4; -x_2 = l___regBuiltin_Std_BitVec_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1639____closed__3; +x_1 = l___regBuiltin_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1248____closed__4; +x_2 = l___regBuiltin_BitVec_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1416____closed__3; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1639____closed__5() { +static lean_object* _init_l___regBuiltin_BitVec_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1416____closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1639____closed__4; -x_2 = l___regBuiltin_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1371____closed__4; +x_1 = l___regBuiltin_BitVec_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1416____closed__4; +x_2 = l___regBuiltin_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1148____closed__5; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1639____closed__6() { +static lean_object* _init_l___regBuiltin_BitVec_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1416____closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1639____closed__5; +x_1 = l___regBuiltin_BitVec_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1416____closed__5; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1639____closed__7() { +static lean_object* _init_l___regBuiltin_BitVec_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1416____closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1639____closed__6; -x_2 = l___regBuiltin_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1371____closed__4; +x_1 = l___regBuiltin_BitVec_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1416____closed__6; +x_2 = l___regBuiltin_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1148____closed__5; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1639____closed__8() { +static lean_object* _init_l___regBuiltin_BitVec_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1416____closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1639____closed__7; +x_1 = l___regBuiltin_BitVec_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1416____closed__7; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1639____closed__9() { +static lean_object* _init_l___regBuiltin_BitVec_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1416____closed__9() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1639____closed__8; -x_2 = l___regBuiltin_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1371____closed__4; +x_1 = l___regBuiltin_BitVec_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1416____closed__8; +x_2 = l___regBuiltin_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1148____closed__5; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1639____closed__10() { +static lean_object* _init_l___regBuiltin_BitVec_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1416____closed__10() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1639____closed__9; +x_1 = l___regBuiltin_BitVec_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1416____closed__9; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1639____closed__11() { +static lean_object* _init_l___regBuiltin_BitVec_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1416____closed__11() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1639____closed__10; +x_1 = l___regBuiltin_BitVec_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1416____closed__10; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1639____closed__12() { +static lean_object* _init_l___regBuiltin_BitVec_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1416____closed__12() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1639____closed__11; +x_1 = l___regBuiltin_BitVec_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1416____closed__11; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1639____closed__13() { +static lean_object* _init_l___regBuiltin_BitVec_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1416____closed__13() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1639____closed__12; +x_1 = l___regBuiltin_BitVec_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1416____closed__12; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1639____closed__14() { +static lean_object* _init_l___regBuiltin_BitVec_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1416____closed__14() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Std_BitVec_reduceMul), 9, 0); +x_1 = lean_alloc_closure((void*)(l_BitVec_reduceMul), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1639_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1416_(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_Std_BitVec_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1639____closed__2; -x_3 = l___regBuiltin_Std_BitVec_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1639____closed__13; -x_4 = l___regBuiltin_Std_BitVec_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1639____closed__14; +x_2 = l___regBuiltin_BitVec_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1416____closed__2; +x_3 = l___regBuiltin_BitVec_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1416____closed__13; +x_4 = l___regBuiltin_BitVec_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1416____closed__14; x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); return x_5; } } -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1641_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1418_(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_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1373____closed__1; -x_3 = l___regBuiltin_Std_BitVec_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1639____closed__2; +x_2 = l___regBuiltin_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1150____closed__1; +x_3 = l___regBuiltin_BitVec_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1416____closed__2; x_4 = 1; -x_5 = l___regBuiltin_Std_BitVec_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1639____closed__14; +x_5 = l___regBuiltin_BitVec_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1416____closed__14; 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_Std_BitVec_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1643_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1420_(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_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1375____closed__1; -x_3 = l___regBuiltin_Std_BitVec_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1639____closed__2; +x_2 = l___regBuiltin_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1152____closed__1; +x_3 = l___regBuiltin_BitVec_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1416____closed__2; x_4 = 1; -x_5 = l___regBuiltin_Std_BitVec_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1639____closed__14; +x_5 = l___regBuiltin_BitVec_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1416____closed__14; 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_Std_BitVec_reduceSub___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, lean_object* x_11, lean_object* x_12) { +LEAN_EXPORT lean_object* l_BitVec_reduceSub___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, lean_object* x_11, lean_object* x_12) { _start: { -lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; uint32_t x_18; uint8_t x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; +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; uint32_t x_21; uint8_t x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; x_13 = lean_ctor_get(x_1, 1); -x_14 = l_Std_BitVec_sub(x_2, x_3, x_13); -x_15 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_15, 0, x_2); -lean_ctor_set(x_15, 1, x_14); -x_16 = l_Std_BitVec_Literal_toExpr(x_15); -x_17 = lean_box(0); -x_18 = 0; -x_19 = 1; -x_20 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_20, 0, x_16); -lean_ctor_set(x_20, 1, x_17); -lean_ctor_set_uint32(x_20, sizeof(void*)*2, x_18); -lean_ctor_set_uint8(x_20, sizeof(void*)*2 + 4, x_19); -x_21 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_21, 0, x_20); -x_22 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_22, 0, x_21); -lean_ctor_set(x_22, 1, x_12); -return x_22; +x_14 = lean_ctor_get(x_2, 1); +x_15 = l_BitVec_sub(x_3, x_13, x_14); +x_16 = l_Lean_mkNatLit(x_3); +x_17 = l_Lean_mkNatLit(x_15); +x_18 = l_BitVec_reduceUnary___lambda__1___closed__5; +x_19 = l_Lean_mkAppB(x_18, x_16, x_17); +x_20 = lean_box(0); +x_21 = 0; +x_22 = 1; +x_23 = lean_alloc_ctor(0, 2, 5); +lean_ctor_set(x_23, 0, x_19); +lean_ctor_set(x_23, 1, x_20); +lean_ctor_set_uint32(x_23, sizeof(void*)*2, x_21); +lean_ctor_set_uint8(x_23, sizeof(void*)*2 + 4, x_22); +x_24 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_24, 0, x_23); +x_25 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_25, 0, x_24); +lean_ctor_set(x_25, 1, x_12); +return x_25; } } -LEAN_EXPORT lean_object* l_Std_BitVec_reduceSub___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_EXPORT lean_object* l_BitVec_reduceSub___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) { _start: { lean_object* x_12; lean_object* x_13; lean_object* x_14; @@ -9529,7 +8491,8 @@ lean_inc(x_10); lean_inc(x_9); lean_inc(x_8); lean_inc(x_7); -x_14 = l_Std_BitVec_fromExpr_x3f(x_13, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +x_14 = l_BitVec_fromExpr_x3f(x_13, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_13); if (lean_obj_tag(x_14) == 0) { lean_object* x_15; @@ -9553,7 +8516,7 @@ if (x_16 == 0) lean_object* x_17; lean_object* x_18; x_17 = lean_ctor_get(x_14, 0); lean_dec(x_17); -x_18 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_18 = l_BitVec_reduceUnary___lambda__1___closed__1; lean_ctor_set(x_14, 0, x_18); return x_14; } @@ -9563,7 +8526,7 @@ lean_object* x_19; lean_object* x_20; lean_object* x_21; x_19 = lean_ctor_get(x_14, 1); lean_inc(x_19); lean_dec(x_14); -x_20 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_20 = l_BitVec_reduceUnary___lambda__1___closed__1; x_21 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_21, 0, x_20); lean_ctor_set(x_21, 1, x_19); @@ -9585,7 +8548,8 @@ lean_inc(x_10); lean_inc(x_9); lean_inc(x_8); lean_inc(x_7); -x_25 = l_Std_BitVec_fromExpr_x3f(x_24, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_22); +x_25 = l_BitVec_fromExpr_x3f(x_24, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_22); +lean_dec(x_24); if (lean_obj_tag(x_25) == 0) { lean_object* x_26; @@ -9609,7 +8573,7 @@ if (x_27 == 0) lean_object* x_28; lean_object* x_29; x_28 = lean_ctor_get(x_25, 0); lean_dec(x_28); -x_29 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_29 = l_BitVec_reduceUnary___lambda__1___closed__1; lean_ctor_set(x_25, 0, x_29); return x_25; } @@ -9619,7 +8583,7 @@ lean_object* x_30; lean_object* x_31; lean_object* x_32; x_30 = lean_ctor_get(x_25, 1); lean_inc(x_30); lean_dec(x_25); -x_31 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_31 = l_BitVec_reduceUnary___lambda__1___closed__1; x_32 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_32, 0, x_31); lean_ctor_set(x_32, 1, x_30); @@ -9632,7 +8596,7 @@ uint8_t x_33; x_33 = !lean_is_exclusive(x_25); if (x_33 == 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; uint8_t x_40; +lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; uint8_t x_39; x_34 = lean_ctor_get(x_25, 1); x_35 = lean_ctor_get(x_25, 0); lean_dec(x_35); @@ -9641,19 +8605,16 @@ lean_inc(x_36); lean_dec(x_26); x_37 = lean_ctor_get(x_23, 0); lean_inc(x_37); -x_38 = lean_ctor_get(x_23, 1); +x_38 = lean_ctor_get(x_36, 0); lean_inc(x_38); -lean_dec(x_23); -x_39 = lean_ctor_get(x_36, 0); -lean_inc(x_39); -x_40 = lean_nat_dec_eq(x_37, x_39); -if (x_40 == 0) +x_39 = lean_nat_dec_eq(x_37, x_38); +if (x_39 == 0) { -lean_object* x_41; -lean_dec(x_39); +lean_object* x_40; lean_dec(x_38); lean_dec(x_37); lean_dec(x_36); +lean_dec(x_23); lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); @@ -9662,30 +8623,30 @@ lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_2); -x_41 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; -lean_ctor_set(x_25, 0, x_41); +x_40 = l_BitVec_reduceUnary___lambda__1___closed__1; +lean_ctor_set(x_25, 0, x_40); return x_25; } else { -lean_object* x_42; lean_object* x_43; lean_object* x_44; uint8_t x_45; +lean_object* x_41; lean_object* x_42; lean_object* x_43; uint8_t x_44; lean_free_object(x_25); -x_42 = l_Std_BitVec_reduceBin___lambda__2___closed__3; -x_43 = l_Lean_isTracingEnabledFor___at_Lean_Meta_Simp_congrArgs___spec__1(x_42, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_34); -x_44 = lean_ctor_get(x_43, 0); -lean_inc(x_44); -x_45 = lean_unbox(x_44); -lean_dec(x_44); -if (x_45 == 0) -{ -lean_object* x_46; lean_object* x_47; lean_object* x_48; -lean_dec(x_39); -lean_dec(x_2); -x_46 = lean_ctor_get(x_43, 1); -lean_inc(x_46); +x_41 = l_BitVec_reduceBin___lambda__2___closed__3; +x_42 = l_Lean_isTracingEnabledFor___at_Lean_Meta_Simp_congrArgs___spec__1(x_41, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_34); +x_43 = lean_ctor_get(x_42, 0); +lean_inc(x_43); +x_44 = lean_unbox(x_43); lean_dec(x_43); -x_47 = lean_box(0); -x_48 = l_Std_BitVec_reduceSub___lambda__1(x_36, x_37, x_38, x_47, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_46); +if (x_44 == 0) +{ +lean_object* x_45; lean_object* x_46; lean_object* x_47; +lean_dec(x_38); +lean_dec(x_2); +x_45 = lean_ctor_get(x_42, 1); +lean_inc(x_45); +lean_dec(x_42); +x_46 = lean_box(0); +x_47 = l_BitVec_reduceSub___lambda__1(x_23, x_36, x_37, x_46, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_45); lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); @@ -9693,34 +8654,35 @@ lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); -lean_dec(x_38); lean_dec(x_36); -return x_48; +lean_dec(x_23); +return x_47; } else { -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; -x_49 = lean_ctor_get(x_43, 1); -lean_inc(x_49); -lean_dec(x_43); -x_50 = l_Lean_MessageData_ofName(x_2); -x_51 = l_Std_BitVec_reduceBin___lambda__2___closed__5; -x_52 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_52, 0, x_51); -lean_ctor_set(x_52, 1, x_50); -x_53 = l_Std_BitVec_reduceBin___lambda__2___closed__7; -x_54 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_54, 0, x_52); -lean_ctor_set(x_54, 1, x_53); -lean_inc(x_38); -x_55 = l_Std_BitVec_toHex(x_37, x_38); +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; +x_48 = lean_ctor_get(x_42, 1); +lean_inc(x_48); +lean_dec(x_42); +x_49 = l_Lean_MessageData_ofName(x_2); +x_50 = l_BitVec_reduceBin___lambda__2___closed__5; +x_51 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_51, 0, x_50); +lean_ctor_set(x_51, 1, x_49); +x_52 = l_BitVec_reduceBin___lambda__2___closed__7; +x_53 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_53, 0, x_51); +lean_ctor_set(x_53, 1, x_52); +x_54 = lean_ctor_get(x_23, 1); +lean_inc(x_54); +x_55 = l_BitVec_toHex(x_37, x_54); x_56 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_56, 0, x_55); -x_57 = l_Std_BitVec_reduceBin___lambda__2___closed__9; +x_57 = l_BitVec_reduceBin___lambda__2___closed__9; x_58 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_58, 0, x_57); lean_ctor_set(x_58, 1, x_56); -x_59 = l_Std_BitVec_reduceBin___lambda__2___closed__11; +x_59 = l_BitVec_reduceBin___lambda__2___closed__11; x_60 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_60, 0, x_58); lean_ctor_set(x_60, 1, x_59); @@ -9739,15 +8701,15 @@ lean_ctor_set(x_67, 0, x_66); x_68 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_68, 0, x_67); x_69 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_69, 0, x_54); +lean_ctor_set(x_69, 0, x_53); lean_ctor_set(x_69, 1, x_68); -x_70 = l_Std_BitVec_reduceBin___lambda__2___closed__13; +x_70 = l_BitVec_reduceBin___lambda__2___closed__13; x_71 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_71, 0, x_69); lean_ctor_set(x_71, 1, x_70); x_72 = lean_ctor_get(x_36, 1); lean_inc(x_72); -x_73 = l_Std_BitVec_toHex(x_39, x_72); +x_73 = l_BitVec_toHex(x_38, x_72); x_74 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_74, 0, x_73); x_75 = lean_alloc_ctor(5, 2, 0); @@ -9756,7 +8718,7 @@ lean_ctor_set(x_75, 1, x_74); x_76 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_76, 0, x_75); lean_ctor_set(x_76, 1, x_59); -x_77 = l_Nat_repr(x_39); +x_77 = l_Nat_repr(x_38); x_78 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_78, 0, x_77); x_79 = lean_alloc_ctor(5, 2, 0); @@ -9770,17 +8732,17 @@ lean_ctor_set(x_82, 0, x_81); x_83 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_83, 0, x_71); lean_ctor_set(x_83, 1, x_82); -x_84 = l_Std_BitVec_reduceBin___lambda__2___closed__15; +x_84 = l_BitVec_reduceBin___lambda__2___closed__15; x_85 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_85, 0, x_83); lean_ctor_set(x_85, 1, x_84); -x_86 = l_Lean_addTrace___at_Lean_Meta_Simp_congrArgs___spec__2(x_42, x_85, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_49); +x_86 = l_Lean_addTrace___at_Lean_Meta_Simp_congrArgs___spec__2(x_41, x_85, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_48); 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 = l_Std_BitVec_reduceSub___lambda__1(x_36, x_37, x_38, x_87, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_88); +x_89 = l_BitVec_reduceSub___lambda__1(x_23, x_36, x_37, x_87, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_88); lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); @@ -9789,15 +8751,15 @@ lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_87); -lean_dec(x_38); lean_dec(x_36); +lean_dec(x_23); return x_89; } } } else { -lean_object* x_90; lean_object* x_91; lean_object* x_92; lean_object* x_93; lean_object* x_94; uint8_t x_95; +lean_object* x_90; lean_object* x_91; lean_object* x_92; lean_object* x_93; uint8_t x_94; x_90 = lean_ctor_get(x_25, 1); lean_inc(x_90); lean_dec(x_25); @@ -9806,19 +8768,16 @@ lean_inc(x_91); lean_dec(x_26); x_92 = lean_ctor_get(x_23, 0); lean_inc(x_92); -x_93 = lean_ctor_get(x_23, 1); +x_93 = lean_ctor_get(x_91, 0); lean_inc(x_93); -lean_dec(x_23); -x_94 = lean_ctor_get(x_91, 0); -lean_inc(x_94); -x_95 = lean_nat_dec_eq(x_92, x_94); -if (x_95 == 0) +x_94 = lean_nat_dec_eq(x_92, x_93); +if (x_94 == 0) { -lean_object* x_96; lean_object* x_97; -lean_dec(x_94); +lean_object* x_95; lean_object* x_96; lean_dec(x_93); lean_dec(x_92); lean_dec(x_91); +lean_dec(x_23); lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); @@ -9827,66 +8786,67 @@ lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_2); -x_96 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; -x_97 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_97, 0, x_96); -lean_ctor_set(x_97, 1, x_90); -return x_97; +x_95 = l_BitVec_reduceUnary___lambda__1___closed__1; +x_96 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_96, 0, x_95); +lean_ctor_set(x_96, 1, x_90); +return x_96; } else { -lean_object* x_98; lean_object* x_99; lean_object* x_100; uint8_t x_101; -x_98 = l_Std_BitVec_reduceBin___lambda__2___closed__3; -x_99 = l_Lean_isTracingEnabledFor___at_Lean_Meta_Simp_congrArgs___spec__1(x_98, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_90); -x_100 = lean_ctor_get(x_99, 0); -lean_inc(x_100); -x_101 = lean_unbox(x_100); -lean_dec(x_100); -if (x_101 == 0) -{ -lean_object* x_102; lean_object* x_103; lean_object* x_104; -lean_dec(x_94); -lean_dec(x_2); -x_102 = lean_ctor_get(x_99, 1); -lean_inc(x_102); +lean_object* x_97; lean_object* x_98; lean_object* x_99; uint8_t x_100; +x_97 = l_BitVec_reduceBin___lambda__2___closed__3; +x_98 = l_Lean_isTracingEnabledFor___at_Lean_Meta_Simp_congrArgs___spec__1(x_97, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_90); +x_99 = lean_ctor_get(x_98, 0); +lean_inc(x_99); +x_100 = lean_unbox(x_99); lean_dec(x_99); -x_103 = lean_box(0); -x_104 = l_Std_BitVec_reduceSub___lambda__1(x_91, x_92, x_93, x_103, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_102); -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); +if (x_100 == 0) +{ +lean_object* x_101; lean_object* x_102; lean_object* x_103; lean_dec(x_93); +lean_dec(x_2); +x_101 = lean_ctor_get(x_98, 1); +lean_inc(x_101); +lean_dec(x_98); +x_102 = lean_box(0); +x_103 = l_BitVec_reduceSub___lambda__1(x_23, x_91, x_92, x_102, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_101); +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_91); -return x_104; +lean_dec(x_23); +return x_103; } else { -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; -x_105 = lean_ctor_get(x_99, 1); -lean_inc(x_105); -lean_dec(x_99); -x_106 = l_Lean_MessageData_ofName(x_2); -x_107 = l_Std_BitVec_reduceBin___lambda__2___closed__5; -x_108 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_108, 0, x_107); -lean_ctor_set(x_108, 1, x_106); -x_109 = l_Std_BitVec_reduceBin___lambda__2___closed__7; -x_110 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_110, 0, x_108); -lean_ctor_set(x_110, 1, x_109); -lean_inc(x_93); -x_111 = l_Std_BitVec_toHex(x_92, x_93); +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; +x_104 = lean_ctor_get(x_98, 1); +lean_inc(x_104); +lean_dec(x_98); +x_105 = l_Lean_MessageData_ofName(x_2); +x_106 = l_BitVec_reduceBin___lambda__2___closed__5; +x_107 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_107, 0, x_106); +lean_ctor_set(x_107, 1, x_105); +x_108 = l_BitVec_reduceBin___lambda__2___closed__7; +x_109 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_109, 0, x_107); +lean_ctor_set(x_109, 1, x_108); +x_110 = lean_ctor_get(x_23, 1); +lean_inc(x_110); +x_111 = l_BitVec_toHex(x_92, x_110); x_112 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_112, 0, x_111); -x_113 = l_Std_BitVec_reduceBin___lambda__2___closed__9; +x_113 = l_BitVec_reduceBin___lambda__2___closed__9; x_114 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_114, 0, x_113); lean_ctor_set(x_114, 1, x_112); -x_115 = l_Std_BitVec_reduceBin___lambda__2___closed__11; +x_115 = l_BitVec_reduceBin___lambda__2___closed__11; x_116 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_116, 0, x_114); lean_ctor_set(x_116, 1, x_115); @@ -9905,15 +8865,15 @@ lean_ctor_set(x_123, 0, x_122); x_124 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_124, 0, x_123); x_125 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_125, 0, x_110); +lean_ctor_set(x_125, 0, x_109); lean_ctor_set(x_125, 1, x_124); -x_126 = l_Std_BitVec_reduceBin___lambda__2___closed__13; +x_126 = l_BitVec_reduceBin___lambda__2___closed__13; x_127 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_127, 0, x_125); lean_ctor_set(x_127, 1, x_126); x_128 = lean_ctor_get(x_91, 1); lean_inc(x_128); -x_129 = l_Std_BitVec_toHex(x_94, x_128); +x_129 = l_BitVec_toHex(x_93, x_128); x_130 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_130, 0, x_129); x_131 = lean_alloc_ctor(5, 2, 0); @@ -9922,7 +8882,7 @@ lean_ctor_set(x_131, 1, x_130); x_132 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_132, 0, x_131); lean_ctor_set(x_132, 1, x_115); -x_133 = l_Nat_repr(x_94); +x_133 = l_Nat_repr(x_93); x_134 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_134, 0, x_133); x_135 = lean_alloc_ctor(5, 2, 0); @@ -9936,17 +8896,17 @@ lean_ctor_set(x_138, 0, x_137); x_139 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_139, 0, x_127); lean_ctor_set(x_139, 1, x_138); -x_140 = l_Std_BitVec_reduceBin___lambda__2___closed__15; +x_140 = l_BitVec_reduceBin___lambda__2___closed__15; x_141 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_141, 0, x_139); lean_ctor_set(x_141, 1, x_140); -x_142 = l_Lean_addTrace___at_Lean_Meta_Simp_congrArgs___spec__2(x_98, x_141, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_105); +x_142 = l_Lean_addTrace___at_Lean_Meta_Simp_congrArgs___spec__2(x_97, x_141, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_104); x_143 = lean_ctor_get(x_142, 0); lean_inc(x_143); x_144 = lean_ctor_get(x_142, 1); lean_inc(x_144); lean_dec(x_142); -x_145 = l_Std_BitVec_reduceSub___lambda__1(x_91, x_92, x_93, x_143, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_144); +x_145 = l_BitVec_reduceSub___lambda__1(x_23, x_91, x_92, x_143, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_144); lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); @@ -9955,8 +8915,8 @@ lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_143); -lean_dec(x_93); lean_dec(x_91); +lean_dec(x_23); return x_145; } } @@ -10029,7 +8989,7 @@ return x_153; } } } -static lean_object* _init_l_Std_BitVec_reduceSub___closed__1() { +static lean_object* _init_l_BitVec_reduceSub___closed__1() { _start: { lean_object* x_1; @@ -10037,7 +8997,7 @@ x_1 = lean_mk_string_from_bytes("HSub", 4); return x_1; } } -static lean_object* _init_l_Std_BitVec_reduceSub___closed__2() { +static lean_object* _init_l_BitVec_reduceSub___closed__2() { _start: { lean_object* x_1; @@ -10045,21 +9005,21 @@ x_1 = lean_mk_string_from_bytes("hSub", 4); return x_1; } } -static lean_object* _init_l_Std_BitVec_reduceSub___closed__3() { +static lean_object* _init_l_BitVec_reduceSub___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Std_BitVec_reduceSub___closed__1; -x_2 = l_Std_BitVec_reduceSub___closed__2; +x_1 = l_BitVec_reduceSub___closed__1; +x_2 = l_BitVec_reduceSub___closed__2; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } -LEAN_EXPORT lean_object* l_Std_BitVec_reduceSub(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_EXPORT lean_object* l_BitVec_reduceSub(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; uint8_t x_12; -x_10 = l_Std_BitVec_reduceSub___closed__3; +x_10 = l_BitVec_reduceSub___closed__3; x_11 = lean_unsigned_to_nat(6u); x_12 = l_Lean_Expr_isAppOfArity(x_1, x_10, x_11); if (x_12 == 0) @@ -10073,7 +9033,7 @@ lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_13 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_13 = l_BitVec_reduceUnary___lambda__1___closed__1; x_14 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_14, 0, x_13); lean_ctor_set(x_14, 1, x_9); @@ -10083,16 +9043,16 @@ else { lean_object* x_15; lean_object* x_16; x_15 = lean_box(0); -x_16 = l_Std_BitVec_reduceSub___lambda__2(x_1, x_10, x_15, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_16 = l_BitVec_reduceSub___lambda__2(x_1, x_10, x_15, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); return x_16; } } } -LEAN_EXPORT lean_object* l_Std_BitVec_reduceSub___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, lean_object* x_11, lean_object* x_12) { +LEAN_EXPORT lean_object* l_BitVec_reduceSub___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, lean_object* x_11, lean_object* x_12) { _start: { lean_object* x_13; -x_13 = l_Std_BitVec_reduceSub___lambda__1(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 = l_BitVec_reduceSub___lambda__1(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_9); @@ -10101,12 +9061,12 @@ 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_13; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1681____closed__1() { +static lean_object* _init_l___regBuiltin_BitVec_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1458____closed__1() { _start: { lean_object* x_1; @@ -10114,22 +9074,21 @@ x_1 = lean_mk_string_from_bytes("reduceSub", 9); return x_1; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1681____closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f___closed__4; -x_2 = l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f___closed__5; -x_3 = l___regBuiltin_Std_BitVec_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1681____closed__1; -x_4 = l_Lean_Name_mkStr3(x_1, x_2, x_3); -return x_4; -} -} -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1681____closed__3() { +static lean_object* _init_l___regBuiltin_BitVec_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1458____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Std_BitVec_reduceSub___closed__3; +x_1 = l_BitVec_reduceUnary___lambda__1___closed__2; +x_2 = l___regBuiltin_BitVec_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1458____closed__1; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___regBuiltin_BitVec_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1458____closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_BitVec_reduceSub___closed__3; x_2 = lean_unsigned_to_nat(6u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -10137,176 +9096,177 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1681____closed__4() { +static lean_object* _init_l___regBuiltin_BitVec_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1458____closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1471____closed__4; -x_2 = l___regBuiltin_Std_BitVec_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1681____closed__3; +x_1 = l___regBuiltin_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1248____closed__4; +x_2 = l___regBuiltin_BitVec_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1458____closed__3; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1681____closed__5() { +static lean_object* _init_l___regBuiltin_BitVec_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1458____closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1681____closed__4; -x_2 = l___regBuiltin_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1371____closed__4; +x_1 = l___regBuiltin_BitVec_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1458____closed__4; +x_2 = l___regBuiltin_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1148____closed__5; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1681____closed__6() { +static lean_object* _init_l___regBuiltin_BitVec_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1458____closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1681____closed__5; +x_1 = l___regBuiltin_BitVec_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1458____closed__5; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1681____closed__7() { +static lean_object* _init_l___regBuiltin_BitVec_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1458____closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1681____closed__6; -x_2 = l___regBuiltin_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1371____closed__4; +x_1 = l___regBuiltin_BitVec_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1458____closed__6; +x_2 = l___regBuiltin_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1148____closed__5; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1681____closed__8() { +static lean_object* _init_l___regBuiltin_BitVec_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1458____closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1681____closed__7; +x_1 = l___regBuiltin_BitVec_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1458____closed__7; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1681____closed__9() { +static lean_object* _init_l___regBuiltin_BitVec_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1458____closed__9() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1681____closed__8; -x_2 = l___regBuiltin_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1371____closed__4; +x_1 = l___regBuiltin_BitVec_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1458____closed__8; +x_2 = l___regBuiltin_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1148____closed__5; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1681____closed__10() { +static lean_object* _init_l___regBuiltin_BitVec_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1458____closed__10() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1681____closed__9; +x_1 = l___regBuiltin_BitVec_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1458____closed__9; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1681____closed__11() { +static lean_object* _init_l___regBuiltin_BitVec_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1458____closed__11() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1681____closed__10; +x_1 = l___regBuiltin_BitVec_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1458____closed__10; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1681____closed__12() { +static lean_object* _init_l___regBuiltin_BitVec_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1458____closed__12() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1681____closed__11; +x_1 = l___regBuiltin_BitVec_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1458____closed__11; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1681____closed__13() { +static lean_object* _init_l___regBuiltin_BitVec_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1458____closed__13() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1681____closed__12; +x_1 = l___regBuiltin_BitVec_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1458____closed__12; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1681____closed__14() { +static lean_object* _init_l___regBuiltin_BitVec_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1458____closed__14() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Std_BitVec_reduceSub), 9, 0); +x_1 = lean_alloc_closure((void*)(l_BitVec_reduceSub), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1681_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1458_(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_Std_BitVec_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1681____closed__2; -x_3 = l___regBuiltin_Std_BitVec_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1681____closed__13; -x_4 = l___regBuiltin_Std_BitVec_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1681____closed__14; +x_2 = l___regBuiltin_BitVec_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1458____closed__2; +x_3 = l___regBuiltin_BitVec_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1458____closed__13; +x_4 = l___regBuiltin_BitVec_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1458____closed__14; x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); return x_5; } } -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1683_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1460_(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_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1373____closed__1; -x_3 = l___regBuiltin_Std_BitVec_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1681____closed__2; +x_2 = l___regBuiltin_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1150____closed__1; +x_3 = l___regBuiltin_BitVec_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1458____closed__2; x_4 = 1; -x_5 = l___regBuiltin_Std_BitVec_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1681____closed__14; +x_5 = l___regBuiltin_BitVec_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1458____closed__14; 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_Std_BitVec_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1685_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1462_(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_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1375____closed__1; -x_3 = l___regBuiltin_Std_BitVec_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1681____closed__2; +x_2 = l___regBuiltin_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1152____closed__1; +x_3 = l___regBuiltin_BitVec_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1458____closed__2; x_4 = 1; -x_5 = l___regBuiltin_Std_BitVec_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1681____closed__14; +x_5 = l___regBuiltin_BitVec_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1458____closed__14; 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_Std_BitVec_reduceDiv___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, lean_object* x_11, lean_object* x_12) { +LEAN_EXPORT lean_object* l_BitVec_reduceDiv___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, lean_object* x_11, lean_object* x_12) { _start: { -lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; uint32_t x_18; uint8_t x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; +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; uint32_t x_21; uint8_t x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; x_13 = lean_ctor_get(x_1, 1); -x_14 = lean_nat_div(x_2, x_13); -x_15 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_15, 0, x_3); -lean_ctor_set(x_15, 1, x_14); -x_16 = l_Std_BitVec_Literal_toExpr(x_15); -x_17 = lean_box(0); -x_18 = 0; -x_19 = 1; -x_20 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_20, 0, x_16); -lean_ctor_set(x_20, 1, x_17); -lean_ctor_set_uint32(x_20, sizeof(void*)*2, x_18); -lean_ctor_set_uint8(x_20, sizeof(void*)*2 + 4, x_19); -x_21 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_21, 0, x_20); -x_22 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_22, 0, x_21); -lean_ctor_set(x_22, 1, x_12); -return x_22; +x_14 = lean_ctor_get(x_2, 1); +x_15 = lean_nat_div(x_13, x_14); +x_16 = l_Lean_mkNatLit(x_3); +x_17 = l_Lean_mkNatLit(x_15); +x_18 = l_BitVec_reduceUnary___lambda__1___closed__5; +x_19 = l_Lean_mkAppB(x_18, x_16, x_17); +x_20 = lean_box(0); +x_21 = 0; +x_22 = 1; +x_23 = lean_alloc_ctor(0, 2, 5); +lean_ctor_set(x_23, 0, x_19); +lean_ctor_set(x_23, 1, x_20); +lean_ctor_set_uint32(x_23, sizeof(void*)*2, x_21); +lean_ctor_set_uint8(x_23, sizeof(void*)*2 + 4, x_22); +x_24 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_24, 0, x_23); +x_25 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_25, 0, x_24); +lean_ctor_set(x_25, 1, x_12); +return x_25; } } -LEAN_EXPORT lean_object* l_Std_BitVec_reduceDiv___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_EXPORT lean_object* l_BitVec_reduceDiv___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) { _start: { lean_object* x_12; lean_object* x_13; lean_object* x_14; @@ -10319,7 +9279,8 @@ lean_inc(x_10); lean_inc(x_9); lean_inc(x_8); lean_inc(x_7); -x_14 = l_Std_BitVec_fromExpr_x3f(x_13, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +x_14 = l_BitVec_fromExpr_x3f(x_13, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_13); if (lean_obj_tag(x_14) == 0) { lean_object* x_15; @@ -10343,7 +9304,7 @@ if (x_16 == 0) lean_object* x_17; lean_object* x_18; x_17 = lean_ctor_get(x_14, 0); lean_dec(x_17); -x_18 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_18 = l_BitVec_reduceUnary___lambda__1___closed__1; lean_ctor_set(x_14, 0, x_18); return x_14; } @@ -10353,7 +9314,7 @@ lean_object* x_19; lean_object* x_20; lean_object* x_21; x_19 = lean_ctor_get(x_14, 1); lean_inc(x_19); lean_dec(x_14); -x_20 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_20 = l_BitVec_reduceUnary___lambda__1___closed__1; x_21 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_21, 0, x_20); lean_ctor_set(x_21, 1, x_19); @@ -10375,7 +9336,8 @@ lean_inc(x_10); lean_inc(x_9); lean_inc(x_8); lean_inc(x_7); -x_25 = l_Std_BitVec_fromExpr_x3f(x_24, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_22); +x_25 = l_BitVec_fromExpr_x3f(x_24, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_22); +lean_dec(x_24); if (lean_obj_tag(x_25) == 0) { lean_object* x_26; @@ -10399,7 +9361,7 @@ if (x_27 == 0) lean_object* x_28; lean_object* x_29; x_28 = lean_ctor_get(x_25, 0); lean_dec(x_28); -x_29 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_29 = l_BitVec_reduceUnary___lambda__1___closed__1; lean_ctor_set(x_25, 0, x_29); return x_25; } @@ -10409,7 +9371,7 @@ lean_object* x_30; lean_object* x_31; lean_object* x_32; x_30 = lean_ctor_get(x_25, 1); lean_inc(x_30); lean_dec(x_25); -x_31 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_31 = l_BitVec_reduceUnary___lambda__1___closed__1; x_32 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_32, 0, x_31); lean_ctor_set(x_32, 1, x_30); @@ -10422,7 +9384,7 @@ uint8_t x_33; x_33 = !lean_is_exclusive(x_25); if (x_33 == 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; uint8_t x_40; +lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; uint8_t x_39; x_34 = lean_ctor_get(x_25, 1); x_35 = lean_ctor_get(x_25, 0); lean_dec(x_35); @@ -10431,19 +9393,16 @@ lean_inc(x_36); lean_dec(x_26); x_37 = lean_ctor_get(x_23, 0); lean_inc(x_37); -x_38 = lean_ctor_get(x_23, 1); +x_38 = lean_ctor_get(x_36, 0); lean_inc(x_38); -lean_dec(x_23); -x_39 = lean_ctor_get(x_36, 0); -lean_inc(x_39); -x_40 = lean_nat_dec_eq(x_37, x_39); -if (x_40 == 0) +x_39 = lean_nat_dec_eq(x_37, x_38); +if (x_39 == 0) { -lean_object* x_41; -lean_dec(x_39); +lean_object* x_40; lean_dec(x_38); lean_dec(x_37); lean_dec(x_36); +lean_dec(x_23); lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); @@ -10452,30 +9411,30 @@ lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_2); -x_41 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; -lean_ctor_set(x_25, 0, x_41); +x_40 = l_BitVec_reduceUnary___lambda__1___closed__1; +lean_ctor_set(x_25, 0, x_40); return x_25; } else { -lean_object* x_42; lean_object* x_43; lean_object* x_44; uint8_t x_45; +lean_object* x_41; lean_object* x_42; lean_object* x_43; uint8_t x_44; lean_free_object(x_25); -x_42 = l_Std_BitVec_reduceBin___lambda__2___closed__3; -x_43 = l_Lean_isTracingEnabledFor___at_Lean_Meta_Simp_congrArgs___spec__1(x_42, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_34); -x_44 = lean_ctor_get(x_43, 0); -lean_inc(x_44); -x_45 = lean_unbox(x_44); -lean_dec(x_44); -if (x_45 == 0) -{ -lean_object* x_46; lean_object* x_47; lean_object* x_48; -lean_dec(x_39); -lean_dec(x_2); -x_46 = lean_ctor_get(x_43, 1); -lean_inc(x_46); +x_41 = l_BitVec_reduceBin___lambda__2___closed__3; +x_42 = l_Lean_isTracingEnabledFor___at_Lean_Meta_Simp_congrArgs___spec__1(x_41, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_34); +x_43 = lean_ctor_get(x_42, 0); +lean_inc(x_43); +x_44 = lean_unbox(x_43); lean_dec(x_43); -x_47 = lean_box(0); -x_48 = l_Std_BitVec_reduceDiv___lambda__1(x_36, x_38, x_37, x_47, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_46); +if (x_44 == 0) +{ +lean_object* x_45; lean_object* x_46; lean_object* x_47; +lean_dec(x_38); +lean_dec(x_2); +x_45 = lean_ctor_get(x_42, 1); +lean_inc(x_45); +lean_dec(x_42); +x_46 = lean_box(0); +x_47 = l_BitVec_reduceDiv___lambda__1(x_23, x_36, x_37, x_46, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_45); lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); @@ -10483,34 +9442,35 @@ lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); -lean_dec(x_38); lean_dec(x_36); -return x_48; +lean_dec(x_23); +return x_47; } else { -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; -x_49 = lean_ctor_get(x_43, 1); -lean_inc(x_49); -lean_dec(x_43); -x_50 = l_Lean_MessageData_ofName(x_2); -x_51 = l_Std_BitVec_reduceBin___lambda__2___closed__5; -x_52 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_52, 0, x_51); -lean_ctor_set(x_52, 1, x_50); -x_53 = l_Std_BitVec_reduceBin___lambda__2___closed__7; -x_54 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_54, 0, x_52); -lean_ctor_set(x_54, 1, x_53); -lean_inc(x_38); -x_55 = l_Std_BitVec_toHex(x_37, x_38); +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; +x_48 = lean_ctor_get(x_42, 1); +lean_inc(x_48); +lean_dec(x_42); +x_49 = l_Lean_MessageData_ofName(x_2); +x_50 = l_BitVec_reduceBin___lambda__2___closed__5; +x_51 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_51, 0, x_50); +lean_ctor_set(x_51, 1, x_49); +x_52 = l_BitVec_reduceBin___lambda__2___closed__7; +x_53 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_53, 0, x_51); +lean_ctor_set(x_53, 1, x_52); +x_54 = lean_ctor_get(x_23, 1); +lean_inc(x_54); +x_55 = l_BitVec_toHex(x_37, x_54); x_56 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_56, 0, x_55); -x_57 = l_Std_BitVec_reduceBin___lambda__2___closed__9; +x_57 = l_BitVec_reduceBin___lambda__2___closed__9; x_58 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_58, 0, x_57); lean_ctor_set(x_58, 1, x_56); -x_59 = l_Std_BitVec_reduceBin___lambda__2___closed__11; +x_59 = l_BitVec_reduceBin___lambda__2___closed__11; x_60 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_60, 0, x_58); lean_ctor_set(x_60, 1, x_59); @@ -10529,15 +9489,15 @@ lean_ctor_set(x_67, 0, x_66); x_68 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_68, 0, x_67); x_69 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_69, 0, x_54); +lean_ctor_set(x_69, 0, x_53); lean_ctor_set(x_69, 1, x_68); -x_70 = l_Std_BitVec_reduceBin___lambda__2___closed__13; +x_70 = l_BitVec_reduceBin___lambda__2___closed__13; x_71 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_71, 0, x_69); lean_ctor_set(x_71, 1, x_70); x_72 = lean_ctor_get(x_36, 1); lean_inc(x_72); -x_73 = l_Std_BitVec_toHex(x_39, x_72); +x_73 = l_BitVec_toHex(x_38, x_72); x_74 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_74, 0, x_73); x_75 = lean_alloc_ctor(5, 2, 0); @@ -10546,7 +9506,7 @@ lean_ctor_set(x_75, 1, x_74); x_76 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_76, 0, x_75); lean_ctor_set(x_76, 1, x_59); -x_77 = l_Nat_repr(x_39); +x_77 = l_Nat_repr(x_38); x_78 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_78, 0, x_77); x_79 = lean_alloc_ctor(5, 2, 0); @@ -10560,17 +9520,17 @@ lean_ctor_set(x_82, 0, x_81); x_83 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_83, 0, x_71); lean_ctor_set(x_83, 1, x_82); -x_84 = l_Std_BitVec_reduceBin___lambda__2___closed__15; +x_84 = l_BitVec_reduceBin___lambda__2___closed__15; x_85 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_85, 0, x_83); lean_ctor_set(x_85, 1, x_84); -x_86 = l_Lean_addTrace___at_Lean_Meta_Simp_congrArgs___spec__2(x_42, x_85, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_49); +x_86 = l_Lean_addTrace___at_Lean_Meta_Simp_congrArgs___spec__2(x_41, x_85, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_48); 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 = l_Std_BitVec_reduceDiv___lambda__1(x_36, x_38, x_37, x_87, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_88); +x_89 = l_BitVec_reduceDiv___lambda__1(x_23, x_36, x_37, x_87, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_88); lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); @@ -10579,15 +9539,15 @@ lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_87); -lean_dec(x_38); lean_dec(x_36); +lean_dec(x_23); return x_89; } } } else { -lean_object* x_90; lean_object* x_91; lean_object* x_92; lean_object* x_93; lean_object* x_94; uint8_t x_95; +lean_object* x_90; lean_object* x_91; lean_object* x_92; lean_object* x_93; uint8_t x_94; x_90 = lean_ctor_get(x_25, 1); lean_inc(x_90); lean_dec(x_25); @@ -10596,19 +9556,16 @@ lean_inc(x_91); lean_dec(x_26); x_92 = lean_ctor_get(x_23, 0); lean_inc(x_92); -x_93 = lean_ctor_get(x_23, 1); +x_93 = lean_ctor_get(x_91, 0); lean_inc(x_93); -lean_dec(x_23); -x_94 = lean_ctor_get(x_91, 0); -lean_inc(x_94); -x_95 = lean_nat_dec_eq(x_92, x_94); -if (x_95 == 0) +x_94 = lean_nat_dec_eq(x_92, x_93); +if (x_94 == 0) { -lean_object* x_96; lean_object* x_97; -lean_dec(x_94); +lean_object* x_95; lean_object* x_96; lean_dec(x_93); lean_dec(x_92); lean_dec(x_91); +lean_dec(x_23); lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); @@ -10617,66 +9574,67 @@ lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_2); -x_96 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; -x_97 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_97, 0, x_96); -lean_ctor_set(x_97, 1, x_90); -return x_97; +x_95 = l_BitVec_reduceUnary___lambda__1___closed__1; +x_96 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_96, 0, x_95); +lean_ctor_set(x_96, 1, x_90); +return x_96; } else { -lean_object* x_98; lean_object* x_99; lean_object* x_100; uint8_t x_101; -x_98 = l_Std_BitVec_reduceBin___lambda__2___closed__3; -x_99 = l_Lean_isTracingEnabledFor___at_Lean_Meta_Simp_congrArgs___spec__1(x_98, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_90); -x_100 = lean_ctor_get(x_99, 0); -lean_inc(x_100); -x_101 = lean_unbox(x_100); -lean_dec(x_100); -if (x_101 == 0) -{ -lean_object* x_102; lean_object* x_103; lean_object* x_104; -lean_dec(x_94); -lean_dec(x_2); -x_102 = lean_ctor_get(x_99, 1); -lean_inc(x_102); +lean_object* x_97; lean_object* x_98; lean_object* x_99; uint8_t x_100; +x_97 = l_BitVec_reduceBin___lambda__2___closed__3; +x_98 = l_Lean_isTracingEnabledFor___at_Lean_Meta_Simp_congrArgs___spec__1(x_97, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_90); +x_99 = lean_ctor_get(x_98, 0); +lean_inc(x_99); +x_100 = lean_unbox(x_99); lean_dec(x_99); -x_103 = lean_box(0); -x_104 = l_Std_BitVec_reduceDiv___lambda__1(x_91, x_93, x_92, x_103, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_102); -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); +if (x_100 == 0) +{ +lean_object* x_101; lean_object* x_102; lean_object* x_103; lean_dec(x_93); +lean_dec(x_2); +x_101 = lean_ctor_get(x_98, 1); +lean_inc(x_101); +lean_dec(x_98); +x_102 = lean_box(0); +x_103 = l_BitVec_reduceDiv___lambda__1(x_23, x_91, x_92, x_102, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_101); +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_91); -return x_104; +lean_dec(x_23); +return x_103; } else { -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; -x_105 = lean_ctor_get(x_99, 1); -lean_inc(x_105); -lean_dec(x_99); -x_106 = l_Lean_MessageData_ofName(x_2); -x_107 = l_Std_BitVec_reduceBin___lambda__2___closed__5; -x_108 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_108, 0, x_107); -lean_ctor_set(x_108, 1, x_106); -x_109 = l_Std_BitVec_reduceBin___lambda__2___closed__7; -x_110 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_110, 0, x_108); -lean_ctor_set(x_110, 1, x_109); -lean_inc(x_93); -x_111 = l_Std_BitVec_toHex(x_92, x_93); +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; +x_104 = lean_ctor_get(x_98, 1); +lean_inc(x_104); +lean_dec(x_98); +x_105 = l_Lean_MessageData_ofName(x_2); +x_106 = l_BitVec_reduceBin___lambda__2___closed__5; +x_107 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_107, 0, x_106); +lean_ctor_set(x_107, 1, x_105); +x_108 = l_BitVec_reduceBin___lambda__2___closed__7; +x_109 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_109, 0, x_107); +lean_ctor_set(x_109, 1, x_108); +x_110 = lean_ctor_get(x_23, 1); +lean_inc(x_110); +x_111 = l_BitVec_toHex(x_92, x_110); x_112 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_112, 0, x_111); -x_113 = l_Std_BitVec_reduceBin___lambda__2___closed__9; +x_113 = l_BitVec_reduceBin___lambda__2___closed__9; x_114 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_114, 0, x_113); lean_ctor_set(x_114, 1, x_112); -x_115 = l_Std_BitVec_reduceBin___lambda__2___closed__11; +x_115 = l_BitVec_reduceBin___lambda__2___closed__11; x_116 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_116, 0, x_114); lean_ctor_set(x_116, 1, x_115); @@ -10695,15 +9653,15 @@ lean_ctor_set(x_123, 0, x_122); x_124 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_124, 0, x_123); x_125 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_125, 0, x_110); +lean_ctor_set(x_125, 0, x_109); lean_ctor_set(x_125, 1, x_124); -x_126 = l_Std_BitVec_reduceBin___lambda__2___closed__13; +x_126 = l_BitVec_reduceBin___lambda__2___closed__13; x_127 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_127, 0, x_125); lean_ctor_set(x_127, 1, x_126); x_128 = lean_ctor_get(x_91, 1); lean_inc(x_128); -x_129 = l_Std_BitVec_toHex(x_94, x_128); +x_129 = l_BitVec_toHex(x_93, x_128); x_130 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_130, 0, x_129); x_131 = lean_alloc_ctor(5, 2, 0); @@ -10712,7 +9670,7 @@ lean_ctor_set(x_131, 1, x_130); x_132 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_132, 0, x_131); lean_ctor_set(x_132, 1, x_115); -x_133 = l_Nat_repr(x_94); +x_133 = l_Nat_repr(x_93); x_134 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_134, 0, x_133); x_135 = lean_alloc_ctor(5, 2, 0); @@ -10726,17 +9684,17 @@ lean_ctor_set(x_138, 0, x_137); x_139 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_139, 0, x_127); lean_ctor_set(x_139, 1, x_138); -x_140 = l_Std_BitVec_reduceBin___lambda__2___closed__15; +x_140 = l_BitVec_reduceBin___lambda__2___closed__15; x_141 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_141, 0, x_139); lean_ctor_set(x_141, 1, x_140); -x_142 = l_Lean_addTrace___at_Lean_Meta_Simp_congrArgs___spec__2(x_98, x_141, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_105); +x_142 = l_Lean_addTrace___at_Lean_Meta_Simp_congrArgs___spec__2(x_97, x_141, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_104); x_143 = lean_ctor_get(x_142, 0); lean_inc(x_143); x_144 = lean_ctor_get(x_142, 1); lean_inc(x_144); lean_dec(x_142); -x_145 = l_Std_BitVec_reduceDiv___lambda__1(x_91, x_93, x_92, x_143, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_144); +x_145 = l_BitVec_reduceDiv___lambda__1(x_23, x_91, x_92, x_143, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_144); lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); @@ -10745,8 +9703,8 @@ lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_143); -lean_dec(x_93); lean_dec(x_91); +lean_dec(x_23); return x_145; } } @@ -10819,7 +9777,7 @@ return x_153; } } } -static lean_object* _init_l_Std_BitVec_reduceDiv___closed__1() { +static lean_object* _init_l_BitVec_reduceDiv___closed__1() { _start: { lean_object* x_1; @@ -10827,7 +9785,7 @@ x_1 = lean_mk_string_from_bytes("HDiv", 4); return x_1; } } -static lean_object* _init_l_Std_BitVec_reduceDiv___closed__2() { +static lean_object* _init_l_BitVec_reduceDiv___closed__2() { _start: { lean_object* x_1; @@ -10835,21 +9793,21 @@ x_1 = lean_mk_string_from_bytes("hDiv", 4); return x_1; } } -static lean_object* _init_l_Std_BitVec_reduceDiv___closed__3() { +static lean_object* _init_l_BitVec_reduceDiv___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Std_BitVec_reduceDiv___closed__1; -x_2 = l_Std_BitVec_reduceDiv___closed__2; +x_1 = l_BitVec_reduceDiv___closed__1; +x_2 = l_BitVec_reduceDiv___closed__2; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } -LEAN_EXPORT lean_object* l_Std_BitVec_reduceDiv(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_EXPORT lean_object* l_BitVec_reduceDiv(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; uint8_t x_12; -x_10 = l_Std_BitVec_reduceDiv___closed__3; +x_10 = l_BitVec_reduceDiv___closed__3; x_11 = lean_unsigned_to_nat(6u); x_12 = l_Lean_Expr_isAppOfArity(x_1, x_10, x_11); if (x_12 == 0) @@ -10863,7 +9821,7 @@ lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_13 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_13 = l_BitVec_reduceUnary___lambda__1___closed__1; x_14 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_14, 0, x_13); lean_ctor_set(x_14, 1, x_9); @@ -10873,16 +9831,16 @@ else { lean_object* x_15; lean_object* x_16; x_15 = lean_box(0); -x_16 = l_Std_BitVec_reduceDiv___lambda__2(x_1, x_10, x_15, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_16 = l_BitVec_reduceDiv___lambda__2(x_1, x_10, x_15, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); return x_16; } } } -LEAN_EXPORT lean_object* l_Std_BitVec_reduceDiv___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, lean_object* x_11, lean_object* x_12) { +LEAN_EXPORT lean_object* l_BitVec_reduceDiv___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, lean_object* x_11, lean_object* x_12) { _start: { lean_object* x_13; -x_13 = l_Std_BitVec_reduceDiv___lambda__1(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 = l_BitVec_reduceDiv___lambda__1(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_9); @@ -10896,7 +9854,7 @@ lean_dec(x_1); return x_13; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1723____closed__1() { +static lean_object* _init_l___regBuiltin_BitVec_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1500____closed__1() { _start: { lean_object* x_1; @@ -10904,22 +9862,21 @@ x_1 = lean_mk_string_from_bytes("reduceDiv", 9); return x_1; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1723____closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f___closed__4; -x_2 = l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f___closed__5; -x_3 = l___regBuiltin_Std_BitVec_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1723____closed__1; -x_4 = l_Lean_Name_mkStr3(x_1, x_2, x_3); -return x_4; -} -} -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1723____closed__3() { +static lean_object* _init_l___regBuiltin_BitVec_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1500____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Std_BitVec_reduceDiv___closed__3; +x_1 = l_BitVec_reduceUnary___lambda__1___closed__2; +x_2 = l___regBuiltin_BitVec_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1500____closed__1; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___regBuiltin_BitVec_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1500____closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_BitVec_reduceDiv___closed__3; x_2 = lean_unsigned_to_nat(6u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -10927,176 +9884,177 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1723____closed__4() { +static lean_object* _init_l___regBuiltin_BitVec_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1500____closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1471____closed__4; -x_2 = l___regBuiltin_Std_BitVec_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1723____closed__3; +x_1 = l___regBuiltin_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1248____closed__4; +x_2 = l___regBuiltin_BitVec_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1500____closed__3; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1723____closed__5() { +static lean_object* _init_l___regBuiltin_BitVec_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1500____closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1723____closed__4; -x_2 = l___regBuiltin_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1371____closed__4; +x_1 = l___regBuiltin_BitVec_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1500____closed__4; +x_2 = l___regBuiltin_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1148____closed__5; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1723____closed__6() { +static lean_object* _init_l___regBuiltin_BitVec_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1500____closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1723____closed__5; +x_1 = l___regBuiltin_BitVec_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1500____closed__5; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1723____closed__7() { +static lean_object* _init_l___regBuiltin_BitVec_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1500____closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1723____closed__6; -x_2 = l___regBuiltin_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1371____closed__4; +x_1 = l___regBuiltin_BitVec_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1500____closed__6; +x_2 = l___regBuiltin_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1148____closed__5; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1723____closed__8() { +static lean_object* _init_l___regBuiltin_BitVec_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1500____closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1723____closed__7; +x_1 = l___regBuiltin_BitVec_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1500____closed__7; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1723____closed__9() { +static lean_object* _init_l___regBuiltin_BitVec_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1500____closed__9() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1723____closed__8; -x_2 = l___regBuiltin_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1371____closed__4; +x_1 = l___regBuiltin_BitVec_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1500____closed__8; +x_2 = l___regBuiltin_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1148____closed__5; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1723____closed__10() { +static lean_object* _init_l___regBuiltin_BitVec_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1500____closed__10() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1723____closed__9; +x_1 = l___regBuiltin_BitVec_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1500____closed__9; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1723____closed__11() { +static lean_object* _init_l___regBuiltin_BitVec_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1500____closed__11() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1723____closed__10; +x_1 = l___regBuiltin_BitVec_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1500____closed__10; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1723____closed__12() { +static lean_object* _init_l___regBuiltin_BitVec_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1500____closed__12() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1723____closed__11; +x_1 = l___regBuiltin_BitVec_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1500____closed__11; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1723____closed__13() { +static lean_object* _init_l___regBuiltin_BitVec_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1500____closed__13() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1723____closed__12; +x_1 = l___regBuiltin_BitVec_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1500____closed__12; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1723____closed__14() { +static lean_object* _init_l___regBuiltin_BitVec_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1500____closed__14() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Std_BitVec_reduceDiv), 9, 0); +x_1 = lean_alloc_closure((void*)(l_BitVec_reduceDiv), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1723_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1500_(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_Std_BitVec_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1723____closed__2; -x_3 = l___regBuiltin_Std_BitVec_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1723____closed__13; -x_4 = l___regBuiltin_Std_BitVec_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1723____closed__14; +x_2 = l___regBuiltin_BitVec_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1500____closed__2; +x_3 = l___regBuiltin_BitVec_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1500____closed__13; +x_4 = l___regBuiltin_BitVec_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1500____closed__14; x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); return x_5; } } -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1725_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1502_(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_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1373____closed__1; -x_3 = l___regBuiltin_Std_BitVec_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1723____closed__2; +x_2 = l___regBuiltin_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1150____closed__1; +x_3 = l___regBuiltin_BitVec_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1500____closed__2; x_4 = 1; -x_5 = l___regBuiltin_Std_BitVec_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1723____closed__14; +x_5 = l___regBuiltin_BitVec_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1500____closed__14; 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_Std_BitVec_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1727_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1504_(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_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1375____closed__1; -x_3 = l___regBuiltin_Std_BitVec_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1723____closed__2; +x_2 = l___regBuiltin_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1152____closed__1; +x_3 = l___regBuiltin_BitVec_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1500____closed__2; x_4 = 1; -x_5 = l___regBuiltin_Std_BitVec_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1723____closed__14; +x_5 = l___regBuiltin_BitVec_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1500____closed__14; 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_Std_BitVec_reduceMod___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, lean_object* x_11, lean_object* x_12) { +LEAN_EXPORT lean_object* l_BitVec_reduceMod___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, lean_object* x_11, lean_object* x_12) { _start: { -lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; uint32_t x_18; uint8_t x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; +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; uint32_t x_21; uint8_t x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; x_13 = lean_ctor_get(x_1, 1); -x_14 = lean_nat_mod(x_2, x_13); -x_15 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_15, 0, x_3); -lean_ctor_set(x_15, 1, x_14); -x_16 = l_Std_BitVec_Literal_toExpr(x_15); -x_17 = lean_box(0); -x_18 = 0; -x_19 = 1; -x_20 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_20, 0, x_16); -lean_ctor_set(x_20, 1, x_17); -lean_ctor_set_uint32(x_20, sizeof(void*)*2, x_18); -lean_ctor_set_uint8(x_20, sizeof(void*)*2 + 4, x_19); -x_21 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_21, 0, x_20); -x_22 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_22, 0, x_21); -lean_ctor_set(x_22, 1, x_12); -return x_22; +x_14 = lean_ctor_get(x_2, 1); +x_15 = lean_nat_mod(x_13, x_14); +x_16 = l_Lean_mkNatLit(x_3); +x_17 = l_Lean_mkNatLit(x_15); +x_18 = l_BitVec_reduceUnary___lambda__1___closed__5; +x_19 = l_Lean_mkAppB(x_18, x_16, x_17); +x_20 = lean_box(0); +x_21 = 0; +x_22 = 1; +x_23 = lean_alloc_ctor(0, 2, 5); +lean_ctor_set(x_23, 0, x_19); +lean_ctor_set(x_23, 1, x_20); +lean_ctor_set_uint32(x_23, sizeof(void*)*2, x_21); +lean_ctor_set_uint8(x_23, sizeof(void*)*2 + 4, x_22); +x_24 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_24, 0, x_23); +x_25 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_25, 0, x_24); +lean_ctor_set(x_25, 1, x_12); +return x_25; } } -LEAN_EXPORT lean_object* l_Std_BitVec_reduceMod___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_EXPORT lean_object* l_BitVec_reduceMod___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) { _start: { lean_object* x_12; lean_object* x_13; lean_object* x_14; @@ -11109,7 +10067,8 @@ lean_inc(x_10); lean_inc(x_9); lean_inc(x_8); lean_inc(x_7); -x_14 = l_Std_BitVec_fromExpr_x3f(x_13, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +x_14 = l_BitVec_fromExpr_x3f(x_13, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_13); if (lean_obj_tag(x_14) == 0) { lean_object* x_15; @@ -11133,7 +10092,7 @@ if (x_16 == 0) lean_object* x_17; lean_object* x_18; x_17 = lean_ctor_get(x_14, 0); lean_dec(x_17); -x_18 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_18 = l_BitVec_reduceUnary___lambda__1___closed__1; lean_ctor_set(x_14, 0, x_18); return x_14; } @@ -11143,7 +10102,7 @@ lean_object* x_19; lean_object* x_20; lean_object* x_21; x_19 = lean_ctor_get(x_14, 1); lean_inc(x_19); lean_dec(x_14); -x_20 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_20 = l_BitVec_reduceUnary___lambda__1___closed__1; x_21 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_21, 0, x_20); lean_ctor_set(x_21, 1, x_19); @@ -11165,7 +10124,8 @@ lean_inc(x_10); lean_inc(x_9); lean_inc(x_8); lean_inc(x_7); -x_25 = l_Std_BitVec_fromExpr_x3f(x_24, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_22); +x_25 = l_BitVec_fromExpr_x3f(x_24, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_22); +lean_dec(x_24); if (lean_obj_tag(x_25) == 0) { lean_object* x_26; @@ -11189,7 +10149,7 @@ if (x_27 == 0) lean_object* x_28; lean_object* x_29; x_28 = lean_ctor_get(x_25, 0); lean_dec(x_28); -x_29 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_29 = l_BitVec_reduceUnary___lambda__1___closed__1; lean_ctor_set(x_25, 0, x_29); return x_25; } @@ -11199,7 +10159,7 @@ lean_object* x_30; lean_object* x_31; lean_object* x_32; x_30 = lean_ctor_get(x_25, 1); lean_inc(x_30); lean_dec(x_25); -x_31 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_31 = l_BitVec_reduceUnary___lambda__1___closed__1; x_32 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_32, 0, x_31); lean_ctor_set(x_32, 1, x_30); @@ -11212,7 +10172,7 @@ uint8_t x_33; x_33 = !lean_is_exclusive(x_25); if (x_33 == 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; uint8_t x_40; +lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; uint8_t x_39; x_34 = lean_ctor_get(x_25, 1); x_35 = lean_ctor_get(x_25, 0); lean_dec(x_35); @@ -11221,19 +10181,16 @@ lean_inc(x_36); lean_dec(x_26); x_37 = lean_ctor_get(x_23, 0); lean_inc(x_37); -x_38 = lean_ctor_get(x_23, 1); +x_38 = lean_ctor_get(x_36, 0); lean_inc(x_38); -lean_dec(x_23); -x_39 = lean_ctor_get(x_36, 0); -lean_inc(x_39); -x_40 = lean_nat_dec_eq(x_37, x_39); -if (x_40 == 0) +x_39 = lean_nat_dec_eq(x_37, x_38); +if (x_39 == 0) { -lean_object* x_41; -lean_dec(x_39); +lean_object* x_40; lean_dec(x_38); lean_dec(x_37); lean_dec(x_36); +lean_dec(x_23); lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); @@ -11242,30 +10199,30 @@ lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_2); -x_41 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; -lean_ctor_set(x_25, 0, x_41); +x_40 = l_BitVec_reduceUnary___lambda__1___closed__1; +lean_ctor_set(x_25, 0, x_40); return x_25; } else { -lean_object* x_42; lean_object* x_43; lean_object* x_44; uint8_t x_45; +lean_object* x_41; lean_object* x_42; lean_object* x_43; uint8_t x_44; lean_free_object(x_25); -x_42 = l_Std_BitVec_reduceBin___lambda__2___closed__3; -x_43 = l_Lean_isTracingEnabledFor___at_Lean_Meta_Simp_congrArgs___spec__1(x_42, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_34); -x_44 = lean_ctor_get(x_43, 0); -lean_inc(x_44); -x_45 = lean_unbox(x_44); -lean_dec(x_44); -if (x_45 == 0) -{ -lean_object* x_46; lean_object* x_47; lean_object* x_48; -lean_dec(x_39); -lean_dec(x_2); -x_46 = lean_ctor_get(x_43, 1); -lean_inc(x_46); +x_41 = l_BitVec_reduceBin___lambda__2___closed__3; +x_42 = l_Lean_isTracingEnabledFor___at_Lean_Meta_Simp_congrArgs___spec__1(x_41, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_34); +x_43 = lean_ctor_get(x_42, 0); +lean_inc(x_43); +x_44 = lean_unbox(x_43); lean_dec(x_43); -x_47 = lean_box(0); -x_48 = l_Std_BitVec_reduceMod___lambda__1(x_36, x_38, x_37, x_47, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_46); +if (x_44 == 0) +{ +lean_object* x_45; lean_object* x_46; lean_object* x_47; +lean_dec(x_38); +lean_dec(x_2); +x_45 = lean_ctor_get(x_42, 1); +lean_inc(x_45); +lean_dec(x_42); +x_46 = lean_box(0); +x_47 = l_BitVec_reduceMod___lambda__1(x_23, x_36, x_37, x_46, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_45); lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); @@ -11273,34 +10230,35 @@ lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); -lean_dec(x_38); lean_dec(x_36); -return x_48; +lean_dec(x_23); +return x_47; } else { -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; -x_49 = lean_ctor_get(x_43, 1); -lean_inc(x_49); -lean_dec(x_43); -x_50 = l_Lean_MessageData_ofName(x_2); -x_51 = l_Std_BitVec_reduceBin___lambda__2___closed__5; -x_52 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_52, 0, x_51); -lean_ctor_set(x_52, 1, x_50); -x_53 = l_Std_BitVec_reduceBin___lambda__2___closed__7; -x_54 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_54, 0, x_52); -lean_ctor_set(x_54, 1, x_53); -lean_inc(x_38); -x_55 = l_Std_BitVec_toHex(x_37, x_38); +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; +x_48 = lean_ctor_get(x_42, 1); +lean_inc(x_48); +lean_dec(x_42); +x_49 = l_Lean_MessageData_ofName(x_2); +x_50 = l_BitVec_reduceBin___lambda__2___closed__5; +x_51 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_51, 0, x_50); +lean_ctor_set(x_51, 1, x_49); +x_52 = l_BitVec_reduceBin___lambda__2___closed__7; +x_53 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_53, 0, x_51); +lean_ctor_set(x_53, 1, x_52); +x_54 = lean_ctor_get(x_23, 1); +lean_inc(x_54); +x_55 = l_BitVec_toHex(x_37, x_54); x_56 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_56, 0, x_55); -x_57 = l_Std_BitVec_reduceBin___lambda__2___closed__9; +x_57 = l_BitVec_reduceBin___lambda__2___closed__9; x_58 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_58, 0, x_57); lean_ctor_set(x_58, 1, x_56); -x_59 = l_Std_BitVec_reduceBin___lambda__2___closed__11; +x_59 = l_BitVec_reduceBin___lambda__2___closed__11; x_60 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_60, 0, x_58); lean_ctor_set(x_60, 1, x_59); @@ -11319,15 +10277,15 @@ lean_ctor_set(x_67, 0, x_66); x_68 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_68, 0, x_67); x_69 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_69, 0, x_54); +lean_ctor_set(x_69, 0, x_53); lean_ctor_set(x_69, 1, x_68); -x_70 = l_Std_BitVec_reduceBin___lambda__2___closed__13; +x_70 = l_BitVec_reduceBin___lambda__2___closed__13; x_71 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_71, 0, x_69); lean_ctor_set(x_71, 1, x_70); x_72 = lean_ctor_get(x_36, 1); lean_inc(x_72); -x_73 = l_Std_BitVec_toHex(x_39, x_72); +x_73 = l_BitVec_toHex(x_38, x_72); x_74 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_74, 0, x_73); x_75 = lean_alloc_ctor(5, 2, 0); @@ -11336,7 +10294,7 @@ lean_ctor_set(x_75, 1, x_74); x_76 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_76, 0, x_75); lean_ctor_set(x_76, 1, x_59); -x_77 = l_Nat_repr(x_39); +x_77 = l_Nat_repr(x_38); x_78 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_78, 0, x_77); x_79 = lean_alloc_ctor(5, 2, 0); @@ -11350,17 +10308,17 @@ lean_ctor_set(x_82, 0, x_81); x_83 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_83, 0, x_71); lean_ctor_set(x_83, 1, x_82); -x_84 = l_Std_BitVec_reduceBin___lambda__2___closed__15; +x_84 = l_BitVec_reduceBin___lambda__2___closed__15; x_85 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_85, 0, x_83); lean_ctor_set(x_85, 1, x_84); -x_86 = l_Lean_addTrace___at_Lean_Meta_Simp_congrArgs___spec__2(x_42, x_85, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_49); +x_86 = l_Lean_addTrace___at_Lean_Meta_Simp_congrArgs___spec__2(x_41, x_85, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_48); 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 = l_Std_BitVec_reduceMod___lambda__1(x_36, x_38, x_37, x_87, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_88); +x_89 = l_BitVec_reduceMod___lambda__1(x_23, x_36, x_37, x_87, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_88); lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); @@ -11369,15 +10327,15 @@ lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_87); -lean_dec(x_38); lean_dec(x_36); +lean_dec(x_23); return x_89; } } } else { -lean_object* x_90; lean_object* x_91; lean_object* x_92; lean_object* x_93; lean_object* x_94; uint8_t x_95; +lean_object* x_90; lean_object* x_91; lean_object* x_92; lean_object* x_93; uint8_t x_94; x_90 = lean_ctor_get(x_25, 1); lean_inc(x_90); lean_dec(x_25); @@ -11386,19 +10344,16 @@ lean_inc(x_91); lean_dec(x_26); x_92 = lean_ctor_get(x_23, 0); lean_inc(x_92); -x_93 = lean_ctor_get(x_23, 1); +x_93 = lean_ctor_get(x_91, 0); lean_inc(x_93); -lean_dec(x_23); -x_94 = lean_ctor_get(x_91, 0); -lean_inc(x_94); -x_95 = lean_nat_dec_eq(x_92, x_94); -if (x_95 == 0) +x_94 = lean_nat_dec_eq(x_92, x_93); +if (x_94 == 0) { -lean_object* x_96; lean_object* x_97; -lean_dec(x_94); +lean_object* x_95; lean_object* x_96; lean_dec(x_93); lean_dec(x_92); lean_dec(x_91); +lean_dec(x_23); lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); @@ -11407,66 +10362,67 @@ lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_2); -x_96 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; -x_97 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_97, 0, x_96); -lean_ctor_set(x_97, 1, x_90); -return x_97; +x_95 = l_BitVec_reduceUnary___lambda__1___closed__1; +x_96 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_96, 0, x_95); +lean_ctor_set(x_96, 1, x_90); +return x_96; } else { -lean_object* x_98; lean_object* x_99; lean_object* x_100; uint8_t x_101; -x_98 = l_Std_BitVec_reduceBin___lambda__2___closed__3; -x_99 = l_Lean_isTracingEnabledFor___at_Lean_Meta_Simp_congrArgs___spec__1(x_98, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_90); -x_100 = lean_ctor_get(x_99, 0); -lean_inc(x_100); -x_101 = lean_unbox(x_100); -lean_dec(x_100); -if (x_101 == 0) -{ -lean_object* x_102; lean_object* x_103; lean_object* x_104; -lean_dec(x_94); -lean_dec(x_2); -x_102 = lean_ctor_get(x_99, 1); -lean_inc(x_102); +lean_object* x_97; lean_object* x_98; lean_object* x_99; uint8_t x_100; +x_97 = l_BitVec_reduceBin___lambda__2___closed__3; +x_98 = l_Lean_isTracingEnabledFor___at_Lean_Meta_Simp_congrArgs___spec__1(x_97, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_90); +x_99 = lean_ctor_get(x_98, 0); +lean_inc(x_99); +x_100 = lean_unbox(x_99); lean_dec(x_99); -x_103 = lean_box(0); -x_104 = l_Std_BitVec_reduceMod___lambda__1(x_91, x_93, x_92, x_103, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_102); -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); +if (x_100 == 0) +{ +lean_object* x_101; lean_object* x_102; lean_object* x_103; lean_dec(x_93); +lean_dec(x_2); +x_101 = lean_ctor_get(x_98, 1); +lean_inc(x_101); +lean_dec(x_98); +x_102 = lean_box(0); +x_103 = l_BitVec_reduceMod___lambda__1(x_23, x_91, x_92, x_102, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_101); +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_91); -return x_104; +lean_dec(x_23); +return x_103; } else { -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; -x_105 = lean_ctor_get(x_99, 1); -lean_inc(x_105); -lean_dec(x_99); -x_106 = l_Lean_MessageData_ofName(x_2); -x_107 = l_Std_BitVec_reduceBin___lambda__2___closed__5; -x_108 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_108, 0, x_107); -lean_ctor_set(x_108, 1, x_106); -x_109 = l_Std_BitVec_reduceBin___lambda__2___closed__7; -x_110 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_110, 0, x_108); -lean_ctor_set(x_110, 1, x_109); -lean_inc(x_93); -x_111 = l_Std_BitVec_toHex(x_92, x_93); +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; +x_104 = lean_ctor_get(x_98, 1); +lean_inc(x_104); +lean_dec(x_98); +x_105 = l_Lean_MessageData_ofName(x_2); +x_106 = l_BitVec_reduceBin___lambda__2___closed__5; +x_107 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_107, 0, x_106); +lean_ctor_set(x_107, 1, x_105); +x_108 = l_BitVec_reduceBin___lambda__2___closed__7; +x_109 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_109, 0, x_107); +lean_ctor_set(x_109, 1, x_108); +x_110 = lean_ctor_get(x_23, 1); +lean_inc(x_110); +x_111 = l_BitVec_toHex(x_92, x_110); x_112 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_112, 0, x_111); -x_113 = l_Std_BitVec_reduceBin___lambda__2___closed__9; +x_113 = l_BitVec_reduceBin___lambda__2___closed__9; x_114 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_114, 0, x_113); lean_ctor_set(x_114, 1, x_112); -x_115 = l_Std_BitVec_reduceBin___lambda__2___closed__11; +x_115 = l_BitVec_reduceBin___lambda__2___closed__11; x_116 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_116, 0, x_114); lean_ctor_set(x_116, 1, x_115); @@ -11485,15 +10441,15 @@ lean_ctor_set(x_123, 0, x_122); x_124 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_124, 0, x_123); x_125 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_125, 0, x_110); +lean_ctor_set(x_125, 0, x_109); lean_ctor_set(x_125, 1, x_124); -x_126 = l_Std_BitVec_reduceBin___lambda__2___closed__13; +x_126 = l_BitVec_reduceBin___lambda__2___closed__13; x_127 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_127, 0, x_125); lean_ctor_set(x_127, 1, x_126); x_128 = lean_ctor_get(x_91, 1); lean_inc(x_128); -x_129 = l_Std_BitVec_toHex(x_94, x_128); +x_129 = l_BitVec_toHex(x_93, x_128); x_130 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_130, 0, x_129); x_131 = lean_alloc_ctor(5, 2, 0); @@ -11502,7 +10458,7 @@ lean_ctor_set(x_131, 1, x_130); x_132 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_132, 0, x_131); lean_ctor_set(x_132, 1, x_115); -x_133 = l_Nat_repr(x_94); +x_133 = l_Nat_repr(x_93); x_134 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_134, 0, x_133); x_135 = lean_alloc_ctor(5, 2, 0); @@ -11516,17 +10472,17 @@ lean_ctor_set(x_138, 0, x_137); x_139 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_139, 0, x_127); lean_ctor_set(x_139, 1, x_138); -x_140 = l_Std_BitVec_reduceBin___lambda__2___closed__15; +x_140 = l_BitVec_reduceBin___lambda__2___closed__15; x_141 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_141, 0, x_139); lean_ctor_set(x_141, 1, x_140); -x_142 = l_Lean_addTrace___at_Lean_Meta_Simp_congrArgs___spec__2(x_98, x_141, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_105); +x_142 = l_Lean_addTrace___at_Lean_Meta_Simp_congrArgs___spec__2(x_97, x_141, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_104); x_143 = lean_ctor_get(x_142, 0); lean_inc(x_143); x_144 = lean_ctor_get(x_142, 1); lean_inc(x_144); lean_dec(x_142); -x_145 = l_Std_BitVec_reduceMod___lambda__1(x_91, x_93, x_92, x_143, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_144); +x_145 = l_BitVec_reduceMod___lambda__1(x_23, x_91, x_92, x_143, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_144); lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); @@ -11535,8 +10491,8 @@ lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_143); -lean_dec(x_93); lean_dec(x_91); +lean_dec(x_23); return x_145; } } @@ -11609,7 +10565,7 @@ return x_153; } } } -static lean_object* _init_l_Std_BitVec_reduceMod___closed__1() { +static lean_object* _init_l_BitVec_reduceMod___closed__1() { _start: { lean_object* x_1; @@ -11617,7 +10573,7 @@ x_1 = lean_mk_string_from_bytes("HMod", 4); return x_1; } } -static lean_object* _init_l_Std_BitVec_reduceMod___closed__2() { +static lean_object* _init_l_BitVec_reduceMod___closed__2() { _start: { lean_object* x_1; @@ -11625,21 +10581,21 @@ x_1 = lean_mk_string_from_bytes("hMod", 4); return x_1; } } -static lean_object* _init_l_Std_BitVec_reduceMod___closed__3() { +static lean_object* _init_l_BitVec_reduceMod___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Std_BitVec_reduceMod___closed__1; -x_2 = l_Std_BitVec_reduceMod___closed__2; +x_1 = l_BitVec_reduceMod___closed__1; +x_2 = l_BitVec_reduceMod___closed__2; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } -LEAN_EXPORT lean_object* l_Std_BitVec_reduceMod(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_EXPORT lean_object* l_BitVec_reduceMod(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; uint8_t x_12; -x_10 = l_Std_BitVec_reduceMod___closed__3; +x_10 = l_BitVec_reduceMod___closed__3; x_11 = lean_unsigned_to_nat(6u); x_12 = l_Lean_Expr_isAppOfArity(x_1, x_10, x_11); if (x_12 == 0) @@ -11653,7 +10609,7 @@ lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_13 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_13 = l_BitVec_reduceUnary___lambda__1___closed__1; x_14 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_14, 0, x_13); lean_ctor_set(x_14, 1, x_9); @@ -11663,16 +10619,16 @@ else { lean_object* x_15; lean_object* x_16; x_15 = lean_box(0); -x_16 = l_Std_BitVec_reduceMod___lambda__2(x_1, x_10, x_15, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_16 = l_BitVec_reduceMod___lambda__2(x_1, x_10, x_15, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); return x_16; } } } -LEAN_EXPORT lean_object* l_Std_BitVec_reduceMod___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, lean_object* x_11, lean_object* x_12) { +LEAN_EXPORT lean_object* l_BitVec_reduceMod___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, lean_object* x_11, lean_object* x_12) { _start: { lean_object* x_13; -x_13 = l_Std_BitVec_reduceMod___lambda__1(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 = l_BitVec_reduceMod___lambda__1(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_9); @@ -11686,7 +10642,7 @@ lean_dec(x_1); return x_13; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1765____closed__1() { +static lean_object* _init_l___regBuiltin_BitVec_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1542____closed__1() { _start: { lean_object* x_1; @@ -11694,22 +10650,21 @@ x_1 = lean_mk_string_from_bytes("reduceMod", 9); return x_1; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1765____closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f___closed__4; -x_2 = l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f___closed__5; -x_3 = l___regBuiltin_Std_BitVec_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1765____closed__1; -x_4 = l_Lean_Name_mkStr3(x_1, x_2, x_3); -return x_4; -} -} -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1765____closed__3() { +static lean_object* _init_l___regBuiltin_BitVec_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1542____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Std_BitVec_reduceMod___closed__3; +x_1 = l_BitVec_reduceUnary___lambda__1___closed__2; +x_2 = l___regBuiltin_BitVec_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1542____closed__1; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___regBuiltin_BitVec_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1542____closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_BitVec_reduceMod___closed__3; x_2 = lean_unsigned_to_nat(6u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -11717,150 +10672,150 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1765____closed__4() { +static lean_object* _init_l___regBuiltin_BitVec_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1542____closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1471____closed__4; -x_2 = l___regBuiltin_Std_BitVec_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1765____closed__3; +x_1 = l___regBuiltin_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1248____closed__4; +x_2 = l___regBuiltin_BitVec_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1542____closed__3; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1765____closed__5() { +static lean_object* _init_l___regBuiltin_BitVec_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1542____closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1765____closed__4; -x_2 = l___regBuiltin_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1371____closed__4; +x_1 = l___regBuiltin_BitVec_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1542____closed__4; +x_2 = l___regBuiltin_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1148____closed__5; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1765____closed__6() { +static lean_object* _init_l___regBuiltin_BitVec_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1542____closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1765____closed__5; +x_1 = l___regBuiltin_BitVec_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1542____closed__5; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1765____closed__7() { +static lean_object* _init_l___regBuiltin_BitVec_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1542____closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1765____closed__6; -x_2 = l___regBuiltin_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1371____closed__4; +x_1 = l___regBuiltin_BitVec_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1542____closed__6; +x_2 = l___regBuiltin_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1148____closed__5; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1765____closed__8() { +static lean_object* _init_l___regBuiltin_BitVec_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1542____closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1765____closed__7; +x_1 = l___regBuiltin_BitVec_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1542____closed__7; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1765____closed__9() { +static lean_object* _init_l___regBuiltin_BitVec_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1542____closed__9() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1765____closed__8; -x_2 = l___regBuiltin_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1371____closed__4; +x_1 = l___regBuiltin_BitVec_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1542____closed__8; +x_2 = l___regBuiltin_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1148____closed__5; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1765____closed__10() { +static lean_object* _init_l___regBuiltin_BitVec_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1542____closed__10() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1765____closed__9; +x_1 = l___regBuiltin_BitVec_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1542____closed__9; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1765____closed__11() { +static lean_object* _init_l___regBuiltin_BitVec_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1542____closed__11() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1765____closed__10; +x_1 = l___regBuiltin_BitVec_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1542____closed__10; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1765____closed__12() { +static lean_object* _init_l___regBuiltin_BitVec_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1542____closed__12() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1765____closed__11; +x_1 = l___regBuiltin_BitVec_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1542____closed__11; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1765____closed__13() { +static lean_object* _init_l___regBuiltin_BitVec_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1542____closed__13() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1765____closed__12; +x_1 = l___regBuiltin_BitVec_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1542____closed__12; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1765____closed__14() { +static lean_object* _init_l___regBuiltin_BitVec_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1542____closed__14() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Std_BitVec_reduceMod), 9, 0); +x_1 = lean_alloc_closure((void*)(l_BitVec_reduceMod), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1765_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1542_(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_Std_BitVec_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1765____closed__2; -x_3 = l___regBuiltin_Std_BitVec_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1765____closed__13; -x_4 = l___regBuiltin_Std_BitVec_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1765____closed__14; +x_2 = l___regBuiltin_BitVec_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1542____closed__2; +x_3 = l___regBuiltin_BitVec_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1542____closed__13; +x_4 = l___regBuiltin_BitVec_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1542____closed__14; x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); return x_5; } } -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1767_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1544_(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_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1373____closed__1; -x_3 = l___regBuiltin_Std_BitVec_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1765____closed__2; +x_2 = l___regBuiltin_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1150____closed__1; +x_3 = l___regBuiltin_BitVec_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1542____closed__2; x_4 = 1; -x_5 = l___regBuiltin_Std_BitVec_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1765____closed__14; +x_5 = l___regBuiltin_BitVec_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1542____closed__14; 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_Std_BitVec_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1769_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1546_(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_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1375____closed__1; -x_3 = l___regBuiltin_Std_BitVec_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1765____closed__2; +x_2 = l___regBuiltin_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1152____closed__1; +x_3 = l___regBuiltin_BitVec_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1542____closed__2; x_4 = 1; -x_5 = l___regBuiltin_Std_BitVec_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1765____closed__14; +x_5 = l___regBuiltin_BitVec_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1542____closed__14; 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_Std_BitVec_reduceUMod___closed__1() { +static lean_object* _init_l_BitVec_reduceUMod___closed__1() { _start: { lean_object* x_1; @@ -11868,22 +10823,21 @@ x_1 = lean_mk_string_from_bytes("umod", 4); return x_1; } } -static lean_object* _init_l_Std_BitVec_reduceUMod___closed__2() { +static lean_object* _init_l_BitVec_reduceUMod___closed__2() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f___closed__4; -x_2 = l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f___closed__5; -x_3 = l_Std_BitVec_reduceUMod___closed__1; -x_4 = l_Lean_Name_mkStr3(x_1, x_2, x_3); -return x_4; +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_BitVec_reduceUnary___lambda__1___closed__2; +x_2 = l_BitVec_reduceUMod___closed__1; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; } } -LEAN_EXPORT lean_object* l_Std_BitVec_reduceUMod(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_EXPORT lean_object* l_BitVec_reduceUMod(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; uint8_t x_12; -x_10 = l_Std_BitVec_reduceUMod___closed__2; +x_10 = l_BitVec_reduceUMod___closed__2; x_11 = lean_unsigned_to_nat(3u); x_12 = l_Lean_Expr_isAppOfArity(x_1, x_10, x_11); if (x_12 == 0) @@ -11897,7 +10851,7 @@ lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_13 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_13 = l_BitVec_reduceUnary___lambda__1___closed__1; x_14 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_14, 0, x_13); lean_ctor_set(x_14, 1, x_9); @@ -11907,12 +10861,12 @@ else { lean_object* x_15; lean_object* x_16; x_15 = lean_box(0); -x_16 = l_Std_BitVec_reduceMod___lambda__2(x_1, x_10, x_15, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_16 = l_BitVec_reduceMod___lambda__2(x_1, x_10, x_15, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); return x_16; } } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceUMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1791____closed__1() { +static lean_object* _init_l___regBuiltin_BitVec_reduceUMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1568____closed__1() { _start: { lean_object* x_1; @@ -11920,22 +10874,21 @@ x_1 = lean_mk_string_from_bytes("reduceUMod", 10); return x_1; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceUMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1791____closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f___closed__4; -x_2 = l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f___closed__5; -x_3 = l___regBuiltin_Std_BitVec_reduceUMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1791____closed__1; -x_4 = l_Lean_Name_mkStr3(x_1, x_2, x_3); -return x_4; -} -} -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceUMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1791____closed__3() { +static lean_object* _init_l___regBuiltin_BitVec_reduceUMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1568____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Std_BitVec_reduceUMod___closed__2; +x_1 = l_BitVec_reduceUnary___lambda__1___closed__2; +x_2 = l___regBuiltin_BitVec_reduceUMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1568____closed__1; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___regBuiltin_BitVec_reduceUMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1568____closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_BitVec_reduceUMod___closed__2; x_2 = lean_unsigned_to_nat(3u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -11943,7 +10896,7 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceUMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1791____closed__4() { +static lean_object* _init_l___regBuiltin_BitVec_reduceUMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1568____closed__4() { _start: { lean_object* x_1; lean_object* x_2; @@ -11952,90 +10905,90 @@ x_2 = lean_mk_empty_array_with_capacity(x_1); return x_2; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceUMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1791____closed__5() { +static lean_object* _init_l___regBuiltin_BitVec_reduceUMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1568____closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceUMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1791____closed__4; -x_2 = l___regBuiltin_Std_BitVec_reduceUMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1791____closed__3; +x_1 = l___regBuiltin_BitVec_reduceUMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1568____closed__4; +x_2 = l___regBuiltin_BitVec_reduceUMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1568____closed__3; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceUMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1791____closed__6() { +static lean_object* _init_l___regBuiltin_BitVec_reduceUMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1568____closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceUMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1791____closed__5; +x_1 = l___regBuiltin_BitVec_reduceUMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1568____closed__5; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceUMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1791____closed__7() { +static lean_object* _init_l___regBuiltin_BitVec_reduceUMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1568____closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceUMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1791____closed__6; +x_1 = l___regBuiltin_BitVec_reduceUMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1568____closed__6; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceUMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1791____closed__8() { +static lean_object* _init_l___regBuiltin_BitVec_reduceUMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1568____closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceUMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1791____closed__7; +x_1 = l___regBuiltin_BitVec_reduceUMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1568____closed__7; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceUMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1791____closed__9() { +static lean_object* _init_l___regBuiltin_BitVec_reduceUMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1568____closed__9() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Std_BitVec_reduceUMod), 9, 0); +x_1 = lean_alloc_closure((void*)(l_BitVec_reduceUMod), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceUMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1791_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceUMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1568_(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_Std_BitVec_reduceUMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1791____closed__2; -x_3 = l___regBuiltin_Std_BitVec_reduceUMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1791____closed__8; -x_4 = l___regBuiltin_Std_BitVec_reduceUMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1791____closed__9; +x_2 = l___regBuiltin_BitVec_reduceUMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1568____closed__2; +x_3 = l___regBuiltin_BitVec_reduceUMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1568____closed__8; +x_4 = l___regBuiltin_BitVec_reduceUMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1568____closed__9; x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); return x_5; } } -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceUMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1793_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceUMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1570_(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_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1373____closed__1; -x_3 = l___regBuiltin_Std_BitVec_reduceUMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1791____closed__2; +x_2 = l___regBuiltin_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1150____closed__1; +x_3 = l___regBuiltin_BitVec_reduceUMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1568____closed__2; x_4 = 1; -x_5 = l___regBuiltin_Std_BitVec_reduceUMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1791____closed__9; +x_5 = l___regBuiltin_BitVec_reduceUMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1568____closed__9; 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_Std_BitVec_reduceUMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1795_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceUMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1572_(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_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1375____closed__1; -x_3 = l___regBuiltin_Std_BitVec_reduceUMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1791____closed__2; +x_2 = l___regBuiltin_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1152____closed__1; +x_3 = l___regBuiltin_BitVec_reduceUMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1568____closed__2; x_4 = 1; -x_5 = l___regBuiltin_Std_BitVec_reduceUMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1791____closed__9; +x_5 = l___regBuiltin_BitVec_reduceUMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1568____closed__9; 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_Std_BitVec_reduceUDiv___closed__1() { +static lean_object* _init_l_BitVec_reduceUDiv___closed__1() { _start: { lean_object* x_1; @@ -12043,22 +10996,21 @@ x_1 = lean_mk_string_from_bytes("udiv", 4); return x_1; } } -static lean_object* _init_l_Std_BitVec_reduceUDiv___closed__2() { +static lean_object* _init_l_BitVec_reduceUDiv___closed__2() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f___closed__4; -x_2 = l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f___closed__5; -x_3 = l_Std_BitVec_reduceUDiv___closed__1; -x_4 = l_Lean_Name_mkStr3(x_1, x_2, x_3); -return x_4; +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_BitVec_reduceUnary___lambda__1___closed__2; +x_2 = l_BitVec_reduceUDiv___closed__1; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; } } -LEAN_EXPORT lean_object* l_Std_BitVec_reduceUDiv(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_EXPORT lean_object* l_BitVec_reduceUDiv(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; uint8_t x_12; -x_10 = l_Std_BitVec_reduceUDiv___closed__2; +x_10 = l_BitVec_reduceUDiv___closed__2; x_11 = lean_unsigned_to_nat(3u); x_12 = l_Lean_Expr_isAppOfArity(x_1, x_10, x_11); if (x_12 == 0) @@ -12072,7 +11024,7 @@ lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_13 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_13 = l_BitVec_reduceUnary___lambda__1___closed__1; x_14 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_14, 0, x_13); lean_ctor_set(x_14, 1, x_9); @@ -12082,12 +11034,12 @@ else { lean_object* x_15; lean_object* x_16; x_15 = lean_box(0); -x_16 = l_Std_BitVec_reduceDiv___lambda__2(x_1, x_10, x_15, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_16 = l_BitVec_reduceDiv___lambda__2(x_1, x_10, x_15, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); return x_16; } } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1817____closed__1() { +static lean_object* _init_l___regBuiltin_BitVec_reduceUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1594____closed__1() { _start: { lean_object* x_1; @@ -12095,22 +11047,21 @@ x_1 = lean_mk_string_from_bytes("reduceUDiv", 10); return x_1; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1817____closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f___closed__4; -x_2 = l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f___closed__5; -x_3 = l___regBuiltin_Std_BitVec_reduceUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1817____closed__1; -x_4 = l_Lean_Name_mkStr3(x_1, x_2, x_3); -return x_4; -} -} -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1817____closed__3() { +static lean_object* _init_l___regBuiltin_BitVec_reduceUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1594____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Std_BitVec_reduceUDiv___closed__2; +x_1 = l_BitVec_reduceUnary___lambda__1___closed__2; +x_2 = l___regBuiltin_BitVec_reduceUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1594____closed__1; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___regBuiltin_BitVec_reduceUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1594____closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_BitVec_reduceUDiv___closed__2; x_2 = lean_unsigned_to_nat(3u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -12118,116 +11069,117 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1817____closed__4() { +static lean_object* _init_l___regBuiltin_BitVec_reduceUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1594____closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceUMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1791____closed__4; -x_2 = l___regBuiltin_Std_BitVec_reduceUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1817____closed__3; +x_1 = l___regBuiltin_BitVec_reduceUMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1568____closed__4; +x_2 = l___regBuiltin_BitVec_reduceUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1594____closed__3; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1817____closed__5() { +static lean_object* _init_l___regBuiltin_BitVec_reduceUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1594____closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1817____closed__4; +x_1 = l___regBuiltin_BitVec_reduceUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1594____closed__4; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1817____closed__6() { +static lean_object* _init_l___regBuiltin_BitVec_reduceUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1594____closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1817____closed__5; +x_1 = l___regBuiltin_BitVec_reduceUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1594____closed__5; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1817____closed__7() { +static lean_object* _init_l___regBuiltin_BitVec_reduceUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1594____closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1817____closed__6; +x_1 = l___regBuiltin_BitVec_reduceUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1594____closed__6; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1817____closed__8() { +static lean_object* _init_l___regBuiltin_BitVec_reduceUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1594____closed__8() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Std_BitVec_reduceUDiv), 9, 0); +x_1 = lean_alloc_closure((void*)(l_BitVec_reduceUDiv), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1817_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1594_(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_Std_BitVec_reduceUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1817____closed__2; -x_3 = l___regBuiltin_Std_BitVec_reduceUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1817____closed__7; -x_4 = l___regBuiltin_Std_BitVec_reduceUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1817____closed__8; +x_2 = l___regBuiltin_BitVec_reduceUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1594____closed__2; +x_3 = l___regBuiltin_BitVec_reduceUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1594____closed__7; +x_4 = l___regBuiltin_BitVec_reduceUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1594____closed__8; x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); return x_5; } } -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1819_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1596_(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_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1373____closed__1; -x_3 = l___regBuiltin_Std_BitVec_reduceUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1817____closed__2; +x_2 = l___regBuiltin_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1150____closed__1; +x_3 = l___regBuiltin_BitVec_reduceUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1594____closed__2; x_4 = 1; -x_5 = l___regBuiltin_Std_BitVec_reduceUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1817____closed__8; +x_5 = l___regBuiltin_BitVec_reduceUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1594____closed__8; 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_Std_BitVec_reduceUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1821_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1598_(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_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1375____closed__1; -x_3 = l___regBuiltin_Std_BitVec_reduceUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1817____closed__2; +x_2 = l___regBuiltin_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1152____closed__1; +x_3 = l___regBuiltin_BitVec_reduceUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1594____closed__2; x_4 = 1; -x_5 = l___regBuiltin_Std_BitVec_reduceUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1817____closed__8; +x_5 = l___regBuiltin_BitVec_reduceUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1594____closed__8; 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_Std_BitVec_reduceSMTUDiv___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, lean_object* x_11, lean_object* x_12) { +LEAN_EXPORT lean_object* l_BitVec_reduceSMTUDiv___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, lean_object* x_11, lean_object* x_12) { _start: { -lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; uint32_t x_18; uint8_t x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; +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; uint32_t x_21; uint8_t x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; x_13 = lean_ctor_get(x_1, 1); -x_14 = l_Std_BitVec_smtUDiv(x_2, x_3, x_13); -x_15 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_15, 0, x_2); -lean_ctor_set(x_15, 1, x_14); -x_16 = l_Std_BitVec_Literal_toExpr(x_15); -x_17 = lean_box(0); -x_18 = 0; -x_19 = 1; -x_20 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_20, 0, x_16); -lean_ctor_set(x_20, 1, x_17); -lean_ctor_set_uint32(x_20, sizeof(void*)*2, x_18); -lean_ctor_set_uint8(x_20, sizeof(void*)*2 + 4, x_19); -x_21 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_21, 0, x_20); -x_22 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_22, 0, x_21); -lean_ctor_set(x_22, 1, x_12); -return x_22; +x_14 = lean_ctor_get(x_2, 1); +x_15 = l_BitVec_smtUDiv(x_3, x_13, x_14); +x_16 = l_Lean_mkNatLit(x_3); +x_17 = l_Lean_mkNatLit(x_15); +x_18 = l_BitVec_reduceUnary___lambda__1___closed__5; +x_19 = l_Lean_mkAppB(x_18, x_16, x_17); +x_20 = lean_box(0); +x_21 = 0; +x_22 = 1; +x_23 = lean_alloc_ctor(0, 2, 5); +lean_ctor_set(x_23, 0, x_19); +lean_ctor_set(x_23, 1, x_20); +lean_ctor_set_uint32(x_23, sizeof(void*)*2, x_21); +lean_ctor_set_uint8(x_23, sizeof(void*)*2 + 4, x_22); +x_24 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_24, 0, x_23); +x_25 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_25, 0, x_24); +lean_ctor_set(x_25, 1, x_12); +return x_25; } } -LEAN_EXPORT lean_object* l_Std_BitVec_reduceSMTUDiv___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_EXPORT lean_object* l_BitVec_reduceSMTUDiv___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) { _start: { lean_object* x_12; lean_object* x_13; lean_object* x_14; @@ -12240,7 +11192,8 @@ lean_inc(x_10); lean_inc(x_9); lean_inc(x_8); lean_inc(x_7); -x_14 = l_Std_BitVec_fromExpr_x3f(x_13, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +x_14 = l_BitVec_fromExpr_x3f(x_13, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_13); if (lean_obj_tag(x_14) == 0) { lean_object* x_15; @@ -12264,7 +11217,7 @@ if (x_16 == 0) lean_object* x_17; lean_object* x_18; x_17 = lean_ctor_get(x_14, 0); lean_dec(x_17); -x_18 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_18 = l_BitVec_reduceUnary___lambda__1___closed__1; lean_ctor_set(x_14, 0, x_18); return x_14; } @@ -12274,7 +11227,7 @@ lean_object* x_19; lean_object* x_20; lean_object* x_21; x_19 = lean_ctor_get(x_14, 1); lean_inc(x_19); lean_dec(x_14); -x_20 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_20 = l_BitVec_reduceUnary___lambda__1___closed__1; x_21 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_21, 0, x_20); lean_ctor_set(x_21, 1, x_19); @@ -12296,7 +11249,8 @@ lean_inc(x_10); lean_inc(x_9); lean_inc(x_8); lean_inc(x_7); -x_25 = l_Std_BitVec_fromExpr_x3f(x_24, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_22); +x_25 = l_BitVec_fromExpr_x3f(x_24, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_22); +lean_dec(x_24); if (lean_obj_tag(x_25) == 0) { lean_object* x_26; @@ -12320,7 +11274,7 @@ if (x_27 == 0) lean_object* x_28; lean_object* x_29; x_28 = lean_ctor_get(x_25, 0); lean_dec(x_28); -x_29 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_29 = l_BitVec_reduceUnary___lambda__1___closed__1; lean_ctor_set(x_25, 0, x_29); return x_25; } @@ -12330,7 +11284,7 @@ lean_object* x_30; lean_object* x_31; lean_object* x_32; x_30 = lean_ctor_get(x_25, 1); lean_inc(x_30); lean_dec(x_25); -x_31 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_31 = l_BitVec_reduceUnary___lambda__1___closed__1; x_32 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_32, 0, x_31); lean_ctor_set(x_32, 1, x_30); @@ -12343,7 +11297,7 @@ uint8_t x_33; x_33 = !lean_is_exclusive(x_25); if (x_33 == 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; uint8_t x_40; +lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; uint8_t x_39; x_34 = lean_ctor_get(x_25, 1); x_35 = lean_ctor_get(x_25, 0); lean_dec(x_35); @@ -12352,19 +11306,16 @@ lean_inc(x_36); lean_dec(x_26); x_37 = lean_ctor_get(x_23, 0); lean_inc(x_37); -x_38 = lean_ctor_get(x_23, 1); +x_38 = lean_ctor_get(x_36, 0); lean_inc(x_38); -lean_dec(x_23); -x_39 = lean_ctor_get(x_36, 0); -lean_inc(x_39); -x_40 = lean_nat_dec_eq(x_37, x_39); -if (x_40 == 0) +x_39 = lean_nat_dec_eq(x_37, x_38); +if (x_39 == 0) { -lean_object* x_41; -lean_dec(x_39); +lean_object* x_40; lean_dec(x_38); lean_dec(x_37); lean_dec(x_36); +lean_dec(x_23); lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); @@ -12373,30 +11324,30 @@ lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_2); -x_41 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; -lean_ctor_set(x_25, 0, x_41); +x_40 = l_BitVec_reduceUnary___lambda__1___closed__1; +lean_ctor_set(x_25, 0, x_40); return x_25; } else { -lean_object* x_42; lean_object* x_43; lean_object* x_44; uint8_t x_45; +lean_object* x_41; lean_object* x_42; lean_object* x_43; uint8_t x_44; lean_free_object(x_25); -x_42 = l_Std_BitVec_reduceBin___lambda__2___closed__3; -x_43 = l_Lean_isTracingEnabledFor___at_Lean_Meta_Simp_congrArgs___spec__1(x_42, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_34); -x_44 = lean_ctor_get(x_43, 0); -lean_inc(x_44); -x_45 = lean_unbox(x_44); -lean_dec(x_44); -if (x_45 == 0) -{ -lean_object* x_46; lean_object* x_47; lean_object* x_48; -lean_dec(x_39); -lean_dec(x_2); -x_46 = lean_ctor_get(x_43, 1); -lean_inc(x_46); +x_41 = l_BitVec_reduceBin___lambda__2___closed__3; +x_42 = l_Lean_isTracingEnabledFor___at_Lean_Meta_Simp_congrArgs___spec__1(x_41, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_34); +x_43 = lean_ctor_get(x_42, 0); +lean_inc(x_43); +x_44 = lean_unbox(x_43); lean_dec(x_43); -x_47 = lean_box(0); -x_48 = l_Std_BitVec_reduceSMTUDiv___lambda__1(x_36, x_37, x_38, x_47, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_46); +if (x_44 == 0) +{ +lean_object* x_45; lean_object* x_46; lean_object* x_47; +lean_dec(x_38); +lean_dec(x_2); +x_45 = lean_ctor_get(x_42, 1); +lean_inc(x_45); +lean_dec(x_42); +x_46 = lean_box(0); +x_47 = l_BitVec_reduceSMTUDiv___lambda__1(x_23, x_36, x_37, x_46, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_45); lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); @@ -12404,34 +11355,35 @@ lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); -lean_dec(x_38); lean_dec(x_36); -return x_48; +lean_dec(x_23); +return x_47; } else { -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; -x_49 = lean_ctor_get(x_43, 1); -lean_inc(x_49); -lean_dec(x_43); -x_50 = l_Lean_MessageData_ofName(x_2); -x_51 = l_Std_BitVec_reduceBin___lambda__2___closed__5; -x_52 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_52, 0, x_51); -lean_ctor_set(x_52, 1, x_50); -x_53 = l_Std_BitVec_reduceBin___lambda__2___closed__7; -x_54 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_54, 0, x_52); -lean_ctor_set(x_54, 1, x_53); -lean_inc(x_38); -x_55 = l_Std_BitVec_toHex(x_37, x_38); +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; +x_48 = lean_ctor_get(x_42, 1); +lean_inc(x_48); +lean_dec(x_42); +x_49 = l_Lean_MessageData_ofName(x_2); +x_50 = l_BitVec_reduceBin___lambda__2___closed__5; +x_51 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_51, 0, x_50); +lean_ctor_set(x_51, 1, x_49); +x_52 = l_BitVec_reduceBin___lambda__2___closed__7; +x_53 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_53, 0, x_51); +lean_ctor_set(x_53, 1, x_52); +x_54 = lean_ctor_get(x_23, 1); +lean_inc(x_54); +x_55 = l_BitVec_toHex(x_37, x_54); x_56 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_56, 0, x_55); -x_57 = l_Std_BitVec_reduceBin___lambda__2___closed__9; +x_57 = l_BitVec_reduceBin___lambda__2___closed__9; x_58 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_58, 0, x_57); lean_ctor_set(x_58, 1, x_56); -x_59 = l_Std_BitVec_reduceBin___lambda__2___closed__11; +x_59 = l_BitVec_reduceBin___lambda__2___closed__11; x_60 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_60, 0, x_58); lean_ctor_set(x_60, 1, x_59); @@ -12450,15 +11402,15 @@ lean_ctor_set(x_67, 0, x_66); x_68 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_68, 0, x_67); x_69 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_69, 0, x_54); +lean_ctor_set(x_69, 0, x_53); lean_ctor_set(x_69, 1, x_68); -x_70 = l_Std_BitVec_reduceBin___lambda__2___closed__13; +x_70 = l_BitVec_reduceBin___lambda__2___closed__13; x_71 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_71, 0, x_69); lean_ctor_set(x_71, 1, x_70); x_72 = lean_ctor_get(x_36, 1); lean_inc(x_72); -x_73 = l_Std_BitVec_toHex(x_39, x_72); +x_73 = l_BitVec_toHex(x_38, x_72); x_74 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_74, 0, x_73); x_75 = lean_alloc_ctor(5, 2, 0); @@ -12467,7 +11419,7 @@ lean_ctor_set(x_75, 1, x_74); x_76 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_76, 0, x_75); lean_ctor_set(x_76, 1, x_59); -x_77 = l_Nat_repr(x_39); +x_77 = l_Nat_repr(x_38); x_78 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_78, 0, x_77); x_79 = lean_alloc_ctor(5, 2, 0); @@ -12481,17 +11433,17 @@ lean_ctor_set(x_82, 0, x_81); x_83 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_83, 0, x_71); lean_ctor_set(x_83, 1, x_82); -x_84 = l_Std_BitVec_reduceBin___lambda__2___closed__15; +x_84 = l_BitVec_reduceBin___lambda__2___closed__15; x_85 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_85, 0, x_83); lean_ctor_set(x_85, 1, x_84); -x_86 = l_Lean_addTrace___at_Lean_Meta_Simp_congrArgs___spec__2(x_42, x_85, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_49); +x_86 = l_Lean_addTrace___at_Lean_Meta_Simp_congrArgs___spec__2(x_41, x_85, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_48); 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 = l_Std_BitVec_reduceSMTUDiv___lambda__1(x_36, x_37, x_38, x_87, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_88); +x_89 = l_BitVec_reduceSMTUDiv___lambda__1(x_23, x_36, x_37, x_87, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_88); lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); @@ -12500,15 +11452,15 @@ lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_87); -lean_dec(x_38); lean_dec(x_36); +lean_dec(x_23); return x_89; } } } else { -lean_object* x_90; lean_object* x_91; lean_object* x_92; lean_object* x_93; lean_object* x_94; uint8_t x_95; +lean_object* x_90; lean_object* x_91; lean_object* x_92; lean_object* x_93; uint8_t x_94; x_90 = lean_ctor_get(x_25, 1); lean_inc(x_90); lean_dec(x_25); @@ -12517,19 +11469,16 @@ lean_inc(x_91); lean_dec(x_26); x_92 = lean_ctor_get(x_23, 0); lean_inc(x_92); -x_93 = lean_ctor_get(x_23, 1); +x_93 = lean_ctor_get(x_91, 0); lean_inc(x_93); -lean_dec(x_23); -x_94 = lean_ctor_get(x_91, 0); -lean_inc(x_94); -x_95 = lean_nat_dec_eq(x_92, x_94); -if (x_95 == 0) +x_94 = lean_nat_dec_eq(x_92, x_93); +if (x_94 == 0) { -lean_object* x_96; lean_object* x_97; -lean_dec(x_94); +lean_object* x_95; lean_object* x_96; lean_dec(x_93); lean_dec(x_92); lean_dec(x_91); +lean_dec(x_23); lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); @@ -12538,66 +11487,67 @@ lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_2); -x_96 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; -x_97 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_97, 0, x_96); -lean_ctor_set(x_97, 1, x_90); -return x_97; +x_95 = l_BitVec_reduceUnary___lambda__1___closed__1; +x_96 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_96, 0, x_95); +lean_ctor_set(x_96, 1, x_90); +return x_96; } else { -lean_object* x_98; lean_object* x_99; lean_object* x_100; uint8_t x_101; -x_98 = l_Std_BitVec_reduceBin___lambda__2___closed__3; -x_99 = l_Lean_isTracingEnabledFor___at_Lean_Meta_Simp_congrArgs___spec__1(x_98, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_90); -x_100 = lean_ctor_get(x_99, 0); -lean_inc(x_100); -x_101 = lean_unbox(x_100); -lean_dec(x_100); -if (x_101 == 0) -{ -lean_object* x_102; lean_object* x_103; lean_object* x_104; -lean_dec(x_94); -lean_dec(x_2); -x_102 = lean_ctor_get(x_99, 1); -lean_inc(x_102); +lean_object* x_97; lean_object* x_98; lean_object* x_99; uint8_t x_100; +x_97 = l_BitVec_reduceBin___lambda__2___closed__3; +x_98 = l_Lean_isTracingEnabledFor___at_Lean_Meta_Simp_congrArgs___spec__1(x_97, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_90); +x_99 = lean_ctor_get(x_98, 0); +lean_inc(x_99); +x_100 = lean_unbox(x_99); lean_dec(x_99); -x_103 = lean_box(0); -x_104 = l_Std_BitVec_reduceSMTUDiv___lambda__1(x_91, x_92, x_93, x_103, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_102); -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); +if (x_100 == 0) +{ +lean_object* x_101; lean_object* x_102; lean_object* x_103; lean_dec(x_93); +lean_dec(x_2); +x_101 = lean_ctor_get(x_98, 1); +lean_inc(x_101); +lean_dec(x_98); +x_102 = lean_box(0); +x_103 = l_BitVec_reduceSMTUDiv___lambda__1(x_23, x_91, x_92, x_102, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_101); +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_91); -return x_104; +lean_dec(x_23); +return x_103; } else { -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; -x_105 = lean_ctor_get(x_99, 1); -lean_inc(x_105); -lean_dec(x_99); -x_106 = l_Lean_MessageData_ofName(x_2); -x_107 = l_Std_BitVec_reduceBin___lambda__2___closed__5; -x_108 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_108, 0, x_107); -lean_ctor_set(x_108, 1, x_106); -x_109 = l_Std_BitVec_reduceBin___lambda__2___closed__7; -x_110 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_110, 0, x_108); -lean_ctor_set(x_110, 1, x_109); -lean_inc(x_93); -x_111 = l_Std_BitVec_toHex(x_92, x_93); +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; +x_104 = lean_ctor_get(x_98, 1); +lean_inc(x_104); +lean_dec(x_98); +x_105 = l_Lean_MessageData_ofName(x_2); +x_106 = l_BitVec_reduceBin___lambda__2___closed__5; +x_107 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_107, 0, x_106); +lean_ctor_set(x_107, 1, x_105); +x_108 = l_BitVec_reduceBin___lambda__2___closed__7; +x_109 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_109, 0, x_107); +lean_ctor_set(x_109, 1, x_108); +x_110 = lean_ctor_get(x_23, 1); +lean_inc(x_110); +x_111 = l_BitVec_toHex(x_92, x_110); x_112 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_112, 0, x_111); -x_113 = l_Std_BitVec_reduceBin___lambda__2___closed__9; +x_113 = l_BitVec_reduceBin___lambda__2___closed__9; x_114 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_114, 0, x_113); lean_ctor_set(x_114, 1, x_112); -x_115 = l_Std_BitVec_reduceBin___lambda__2___closed__11; +x_115 = l_BitVec_reduceBin___lambda__2___closed__11; x_116 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_116, 0, x_114); lean_ctor_set(x_116, 1, x_115); @@ -12616,15 +11566,15 @@ lean_ctor_set(x_123, 0, x_122); x_124 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_124, 0, x_123); x_125 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_125, 0, x_110); +lean_ctor_set(x_125, 0, x_109); lean_ctor_set(x_125, 1, x_124); -x_126 = l_Std_BitVec_reduceBin___lambda__2___closed__13; +x_126 = l_BitVec_reduceBin___lambda__2___closed__13; x_127 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_127, 0, x_125); lean_ctor_set(x_127, 1, x_126); x_128 = lean_ctor_get(x_91, 1); lean_inc(x_128); -x_129 = l_Std_BitVec_toHex(x_94, x_128); +x_129 = l_BitVec_toHex(x_93, x_128); x_130 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_130, 0, x_129); x_131 = lean_alloc_ctor(5, 2, 0); @@ -12633,7 +11583,7 @@ lean_ctor_set(x_131, 1, x_130); x_132 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_132, 0, x_131); lean_ctor_set(x_132, 1, x_115); -x_133 = l_Nat_repr(x_94); +x_133 = l_Nat_repr(x_93); x_134 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_134, 0, x_133); x_135 = lean_alloc_ctor(5, 2, 0); @@ -12647,17 +11597,17 @@ lean_ctor_set(x_138, 0, x_137); x_139 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_139, 0, x_127); lean_ctor_set(x_139, 1, x_138); -x_140 = l_Std_BitVec_reduceBin___lambda__2___closed__15; +x_140 = l_BitVec_reduceBin___lambda__2___closed__15; x_141 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_141, 0, x_139); lean_ctor_set(x_141, 1, x_140); -x_142 = l_Lean_addTrace___at_Lean_Meta_Simp_congrArgs___spec__2(x_98, x_141, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_105); +x_142 = l_Lean_addTrace___at_Lean_Meta_Simp_congrArgs___spec__2(x_97, x_141, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_104); x_143 = lean_ctor_get(x_142, 0); lean_inc(x_143); x_144 = lean_ctor_get(x_142, 1); lean_inc(x_144); lean_dec(x_142); -x_145 = l_Std_BitVec_reduceSMTUDiv___lambda__1(x_91, x_92, x_93, x_143, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_144); +x_145 = l_BitVec_reduceSMTUDiv___lambda__1(x_23, x_91, x_92, x_143, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_144); lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); @@ -12666,8 +11616,8 @@ lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_143); -lean_dec(x_93); lean_dec(x_91); +lean_dec(x_23); return x_145; } } @@ -12740,7 +11690,7 @@ return x_153; } } } -static lean_object* _init_l_Std_BitVec_reduceSMTUDiv___closed__1() { +static lean_object* _init_l_BitVec_reduceSMTUDiv___closed__1() { _start: { lean_object* x_1; @@ -12748,22 +11698,21 @@ x_1 = lean_mk_string_from_bytes("smtUDiv", 7); return x_1; } } -static lean_object* _init_l_Std_BitVec_reduceSMTUDiv___closed__2() { +static lean_object* _init_l_BitVec_reduceSMTUDiv___closed__2() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f___closed__4; -x_2 = l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f___closed__5; -x_3 = l_Std_BitVec_reduceSMTUDiv___closed__1; -x_4 = l_Lean_Name_mkStr3(x_1, x_2, x_3); -return x_4; +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_BitVec_reduceUnary___lambda__1___closed__2; +x_2 = l_BitVec_reduceSMTUDiv___closed__1; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; } } -LEAN_EXPORT lean_object* l_Std_BitVec_reduceSMTUDiv(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_EXPORT lean_object* l_BitVec_reduceSMTUDiv(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; uint8_t x_12; -x_10 = l_Std_BitVec_reduceSMTUDiv___closed__2; +x_10 = l_BitVec_reduceSMTUDiv___closed__2; x_11 = lean_unsigned_to_nat(3u); x_12 = l_Lean_Expr_isAppOfArity(x_1, x_10, x_11); if (x_12 == 0) @@ -12777,7 +11726,7 @@ lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_13 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_13 = l_BitVec_reduceUnary___lambda__1___closed__1; x_14 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_14, 0, x_13); lean_ctor_set(x_14, 1, x_9); @@ -12787,16 +11736,16 @@ else { lean_object* x_15; lean_object* x_16; x_15 = lean_box(0); -x_16 = l_Std_BitVec_reduceSMTUDiv___lambda__2(x_1, x_10, x_15, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_16 = l_BitVec_reduceSMTUDiv___lambda__2(x_1, x_10, x_15, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); return x_16; } } } -LEAN_EXPORT lean_object* l_Std_BitVec_reduceSMTUDiv___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, lean_object* x_11, lean_object* x_12) { +LEAN_EXPORT lean_object* l_BitVec_reduceSMTUDiv___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, lean_object* x_11, lean_object* x_12) { _start: { lean_object* x_13; -x_13 = l_Std_BitVec_reduceSMTUDiv___lambda__1(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 = l_BitVec_reduceSMTUDiv___lambda__1(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_9); @@ -12805,12 +11754,12 @@ 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_13; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceSMTUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1843____closed__1() { +static lean_object* _init_l___regBuiltin_BitVec_reduceSMTUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1620____closed__1() { _start: { lean_object* x_1; @@ -12818,22 +11767,21 @@ x_1 = lean_mk_string_from_bytes("reduceSMTUDiv", 13); return x_1; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceSMTUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1843____closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f___closed__4; -x_2 = l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f___closed__5; -x_3 = l___regBuiltin_Std_BitVec_reduceSMTUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1843____closed__1; -x_4 = l_Lean_Name_mkStr3(x_1, x_2, x_3); -return x_4; -} -} -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceSMTUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1843____closed__3() { +static lean_object* _init_l___regBuiltin_BitVec_reduceSMTUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1620____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Std_BitVec_reduceSMTUDiv___closed__2; +x_1 = l_BitVec_reduceUnary___lambda__1___closed__2; +x_2 = l___regBuiltin_BitVec_reduceSMTUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1620____closed__1; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___regBuiltin_BitVec_reduceSMTUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1620____closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_BitVec_reduceSMTUDiv___closed__2; x_2 = lean_unsigned_to_nat(3u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -12841,116 +11789,117 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceSMTUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1843____closed__4() { +static lean_object* _init_l___regBuiltin_BitVec_reduceSMTUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1620____closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceUMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1791____closed__4; -x_2 = l___regBuiltin_Std_BitVec_reduceSMTUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1843____closed__3; +x_1 = l___regBuiltin_BitVec_reduceUMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1568____closed__4; +x_2 = l___regBuiltin_BitVec_reduceSMTUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1620____closed__3; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceSMTUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1843____closed__5() { +static lean_object* _init_l___regBuiltin_BitVec_reduceSMTUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1620____closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceSMTUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1843____closed__4; +x_1 = l___regBuiltin_BitVec_reduceSMTUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1620____closed__4; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceSMTUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1843____closed__6() { +static lean_object* _init_l___regBuiltin_BitVec_reduceSMTUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1620____closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceSMTUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1843____closed__5; +x_1 = l___regBuiltin_BitVec_reduceSMTUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1620____closed__5; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceSMTUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1843____closed__7() { +static lean_object* _init_l___regBuiltin_BitVec_reduceSMTUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1620____closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceSMTUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1843____closed__6; +x_1 = l___regBuiltin_BitVec_reduceSMTUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1620____closed__6; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceSMTUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1843____closed__8() { +static lean_object* _init_l___regBuiltin_BitVec_reduceSMTUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1620____closed__8() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Std_BitVec_reduceSMTUDiv), 9, 0); +x_1 = lean_alloc_closure((void*)(l_BitVec_reduceSMTUDiv), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceSMTUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1843_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceSMTUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1620_(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_Std_BitVec_reduceSMTUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1843____closed__2; -x_3 = l___regBuiltin_Std_BitVec_reduceSMTUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1843____closed__7; -x_4 = l___regBuiltin_Std_BitVec_reduceSMTUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1843____closed__8; +x_2 = l___regBuiltin_BitVec_reduceSMTUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1620____closed__2; +x_3 = l___regBuiltin_BitVec_reduceSMTUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1620____closed__7; +x_4 = l___regBuiltin_BitVec_reduceSMTUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1620____closed__8; x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); return x_5; } } -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceSMTUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1845_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceSMTUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1622_(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_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1373____closed__1; -x_3 = l___regBuiltin_Std_BitVec_reduceSMTUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1843____closed__2; +x_2 = l___regBuiltin_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1150____closed__1; +x_3 = l___regBuiltin_BitVec_reduceSMTUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1620____closed__2; x_4 = 1; -x_5 = l___regBuiltin_Std_BitVec_reduceSMTUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1843____closed__8; +x_5 = l___regBuiltin_BitVec_reduceSMTUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1620____closed__8; 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_Std_BitVec_reduceSMTUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1847_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceSMTUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1624_(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_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1375____closed__1; -x_3 = l___regBuiltin_Std_BitVec_reduceSMTUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1843____closed__2; +x_2 = l___regBuiltin_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1152____closed__1; +x_3 = l___regBuiltin_BitVec_reduceSMTUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1620____closed__2; x_4 = 1; -x_5 = l___regBuiltin_Std_BitVec_reduceSMTUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1843____closed__8; +x_5 = l___regBuiltin_BitVec_reduceSMTUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1620____closed__8; 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_Std_BitVec_reduceSMod___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, lean_object* x_11, lean_object* x_12) { +LEAN_EXPORT lean_object* l_BitVec_reduceSMod___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, lean_object* x_11, lean_object* x_12) { _start: { -lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; uint32_t x_18; uint8_t x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; +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; uint32_t x_21; uint8_t x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; x_13 = lean_ctor_get(x_1, 1); -x_14 = l_Std_BitVec_smod(x_2, x_3, x_13); -x_15 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_15, 0, x_2); -lean_ctor_set(x_15, 1, x_14); -x_16 = l_Std_BitVec_Literal_toExpr(x_15); -x_17 = lean_box(0); -x_18 = 0; -x_19 = 1; -x_20 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_20, 0, x_16); -lean_ctor_set(x_20, 1, x_17); -lean_ctor_set_uint32(x_20, sizeof(void*)*2, x_18); -lean_ctor_set_uint8(x_20, sizeof(void*)*2 + 4, x_19); -x_21 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_21, 0, x_20); -x_22 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_22, 0, x_21); -lean_ctor_set(x_22, 1, x_12); -return x_22; +x_14 = lean_ctor_get(x_2, 1); +x_15 = l_BitVec_smod(x_3, x_13, x_14); +x_16 = l_Lean_mkNatLit(x_3); +x_17 = l_Lean_mkNatLit(x_15); +x_18 = l_BitVec_reduceUnary___lambda__1___closed__5; +x_19 = l_Lean_mkAppB(x_18, x_16, x_17); +x_20 = lean_box(0); +x_21 = 0; +x_22 = 1; +x_23 = lean_alloc_ctor(0, 2, 5); +lean_ctor_set(x_23, 0, x_19); +lean_ctor_set(x_23, 1, x_20); +lean_ctor_set_uint32(x_23, sizeof(void*)*2, x_21); +lean_ctor_set_uint8(x_23, sizeof(void*)*2 + 4, x_22); +x_24 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_24, 0, x_23); +x_25 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_25, 0, x_24); +lean_ctor_set(x_25, 1, x_12); +return x_25; } } -LEAN_EXPORT lean_object* l_Std_BitVec_reduceSMod___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_EXPORT lean_object* l_BitVec_reduceSMod___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) { _start: { lean_object* x_12; lean_object* x_13; lean_object* x_14; @@ -12963,7 +11912,8 @@ lean_inc(x_10); lean_inc(x_9); lean_inc(x_8); lean_inc(x_7); -x_14 = l_Std_BitVec_fromExpr_x3f(x_13, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +x_14 = l_BitVec_fromExpr_x3f(x_13, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_13); if (lean_obj_tag(x_14) == 0) { lean_object* x_15; @@ -12987,7 +11937,7 @@ if (x_16 == 0) lean_object* x_17; lean_object* x_18; x_17 = lean_ctor_get(x_14, 0); lean_dec(x_17); -x_18 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_18 = l_BitVec_reduceUnary___lambda__1___closed__1; lean_ctor_set(x_14, 0, x_18); return x_14; } @@ -12997,7 +11947,7 @@ lean_object* x_19; lean_object* x_20; lean_object* x_21; x_19 = lean_ctor_get(x_14, 1); lean_inc(x_19); lean_dec(x_14); -x_20 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_20 = l_BitVec_reduceUnary___lambda__1___closed__1; x_21 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_21, 0, x_20); lean_ctor_set(x_21, 1, x_19); @@ -13019,7 +11969,8 @@ lean_inc(x_10); lean_inc(x_9); lean_inc(x_8); lean_inc(x_7); -x_25 = l_Std_BitVec_fromExpr_x3f(x_24, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_22); +x_25 = l_BitVec_fromExpr_x3f(x_24, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_22); +lean_dec(x_24); if (lean_obj_tag(x_25) == 0) { lean_object* x_26; @@ -13043,7 +11994,7 @@ if (x_27 == 0) lean_object* x_28; lean_object* x_29; x_28 = lean_ctor_get(x_25, 0); lean_dec(x_28); -x_29 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_29 = l_BitVec_reduceUnary___lambda__1___closed__1; lean_ctor_set(x_25, 0, x_29); return x_25; } @@ -13053,7 +12004,7 @@ lean_object* x_30; lean_object* x_31; lean_object* x_32; x_30 = lean_ctor_get(x_25, 1); lean_inc(x_30); lean_dec(x_25); -x_31 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_31 = l_BitVec_reduceUnary___lambda__1___closed__1; x_32 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_32, 0, x_31); lean_ctor_set(x_32, 1, x_30); @@ -13066,7 +12017,7 @@ uint8_t x_33; x_33 = !lean_is_exclusive(x_25); if (x_33 == 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; uint8_t x_40; +lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; uint8_t x_39; x_34 = lean_ctor_get(x_25, 1); x_35 = lean_ctor_get(x_25, 0); lean_dec(x_35); @@ -13075,19 +12026,16 @@ lean_inc(x_36); lean_dec(x_26); x_37 = lean_ctor_get(x_23, 0); lean_inc(x_37); -x_38 = lean_ctor_get(x_23, 1); +x_38 = lean_ctor_get(x_36, 0); lean_inc(x_38); -lean_dec(x_23); -x_39 = lean_ctor_get(x_36, 0); -lean_inc(x_39); -x_40 = lean_nat_dec_eq(x_37, x_39); -if (x_40 == 0) +x_39 = lean_nat_dec_eq(x_37, x_38); +if (x_39 == 0) { -lean_object* x_41; -lean_dec(x_39); +lean_object* x_40; lean_dec(x_38); lean_dec(x_37); lean_dec(x_36); +lean_dec(x_23); lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); @@ -13096,30 +12044,30 @@ lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_2); -x_41 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; -lean_ctor_set(x_25, 0, x_41); +x_40 = l_BitVec_reduceUnary___lambda__1___closed__1; +lean_ctor_set(x_25, 0, x_40); return x_25; } else { -lean_object* x_42; lean_object* x_43; lean_object* x_44; uint8_t x_45; +lean_object* x_41; lean_object* x_42; lean_object* x_43; uint8_t x_44; lean_free_object(x_25); -x_42 = l_Std_BitVec_reduceBin___lambda__2___closed__3; -x_43 = l_Lean_isTracingEnabledFor___at_Lean_Meta_Simp_congrArgs___spec__1(x_42, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_34); -x_44 = lean_ctor_get(x_43, 0); -lean_inc(x_44); -x_45 = lean_unbox(x_44); -lean_dec(x_44); -if (x_45 == 0) -{ -lean_object* x_46; lean_object* x_47; lean_object* x_48; -lean_dec(x_39); -lean_dec(x_2); -x_46 = lean_ctor_get(x_43, 1); -lean_inc(x_46); +x_41 = l_BitVec_reduceBin___lambda__2___closed__3; +x_42 = l_Lean_isTracingEnabledFor___at_Lean_Meta_Simp_congrArgs___spec__1(x_41, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_34); +x_43 = lean_ctor_get(x_42, 0); +lean_inc(x_43); +x_44 = lean_unbox(x_43); lean_dec(x_43); -x_47 = lean_box(0); -x_48 = l_Std_BitVec_reduceSMod___lambda__1(x_36, x_37, x_38, x_47, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_46); +if (x_44 == 0) +{ +lean_object* x_45; lean_object* x_46; lean_object* x_47; +lean_dec(x_38); +lean_dec(x_2); +x_45 = lean_ctor_get(x_42, 1); +lean_inc(x_45); +lean_dec(x_42); +x_46 = lean_box(0); +x_47 = l_BitVec_reduceSMod___lambda__1(x_23, x_36, x_37, x_46, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_45); lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); @@ -13127,34 +12075,35 @@ lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); -lean_dec(x_38); lean_dec(x_36); -return x_48; +lean_dec(x_23); +return x_47; } else { -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; -x_49 = lean_ctor_get(x_43, 1); -lean_inc(x_49); -lean_dec(x_43); -x_50 = l_Lean_MessageData_ofName(x_2); -x_51 = l_Std_BitVec_reduceBin___lambda__2___closed__5; -x_52 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_52, 0, x_51); -lean_ctor_set(x_52, 1, x_50); -x_53 = l_Std_BitVec_reduceBin___lambda__2___closed__7; -x_54 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_54, 0, x_52); -lean_ctor_set(x_54, 1, x_53); -lean_inc(x_38); -x_55 = l_Std_BitVec_toHex(x_37, x_38); +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; +x_48 = lean_ctor_get(x_42, 1); +lean_inc(x_48); +lean_dec(x_42); +x_49 = l_Lean_MessageData_ofName(x_2); +x_50 = l_BitVec_reduceBin___lambda__2___closed__5; +x_51 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_51, 0, x_50); +lean_ctor_set(x_51, 1, x_49); +x_52 = l_BitVec_reduceBin___lambda__2___closed__7; +x_53 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_53, 0, x_51); +lean_ctor_set(x_53, 1, x_52); +x_54 = lean_ctor_get(x_23, 1); +lean_inc(x_54); +x_55 = l_BitVec_toHex(x_37, x_54); x_56 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_56, 0, x_55); -x_57 = l_Std_BitVec_reduceBin___lambda__2___closed__9; +x_57 = l_BitVec_reduceBin___lambda__2___closed__9; x_58 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_58, 0, x_57); lean_ctor_set(x_58, 1, x_56); -x_59 = l_Std_BitVec_reduceBin___lambda__2___closed__11; +x_59 = l_BitVec_reduceBin___lambda__2___closed__11; x_60 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_60, 0, x_58); lean_ctor_set(x_60, 1, x_59); @@ -13173,15 +12122,15 @@ lean_ctor_set(x_67, 0, x_66); x_68 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_68, 0, x_67); x_69 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_69, 0, x_54); +lean_ctor_set(x_69, 0, x_53); lean_ctor_set(x_69, 1, x_68); -x_70 = l_Std_BitVec_reduceBin___lambda__2___closed__13; +x_70 = l_BitVec_reduceBin___lambda__2___closed__13; x_71 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_71, 0, x_69); lean_ctor_set(x_71, 1, x_70); x_72 = lean_ctor_get(x_36, 1); lean_inc(x_72); -x_73 = l_Std_BitVec_toHex(x_39, x_72); +x_73 = l_BitVec_toHex(x_38, x_72); x_74 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_74, 0, x_73); x_75 = lean_alloc_ctor(5, 2, 0); @@ -13190,7 +12139,7 @@ lean_ctor_set(x_75, 1, x_74); x_76 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_76, 0, x_75); lean_ctor_set(x_76, 1, x_59); -x_77 = l_Nat_repr(x_39); +x_77 = l_Nat_repr(x_38); x_78 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_78, 0, x_77); x_79 = lean_alloc_ctor(5, 2, 0); @@ -13204,17 +12153,17 @@ lean_ctor_set(x_82, 0, x_81); x_83 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_83, 0, x_71); lean_ctor_set(x_83, 1, x_82); -x_84 = l_Std_BitVec_reduceBin___lambda__2___closed__15; +x_84 = l_BitVec_reduceBin___lambda__2___closed__15; x_85 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_85, 0, x_83); lean_ctor_set(x_85, 1, x_84); -x_86 = l_Lean_addTrace___at_Lean_Meta_Simp_congrArgs___spec__2(x_42, x_85, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_49); +x_86 = l_Lean_addTrace___at_Lean_Meta_Simp_congrArgs___spec__2(x_41, x_85, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_48); 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 = l_Std_BitVec_reduceSMod___lambda__1(x_36, x_37, x_38, x_87, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_88); +x_89 = l_BitVec_reduceSMod___lambda__1(x_23, x_36, x_37, x_87, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_88); lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); @@ -13223,15 +12172,15 @@ lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_87); -lean_dec(x_38); lean_dec(x_36); +lean_dec(x_23); return x_89; } } } else { -lean_object* x_90; lean_object* x_91; lean_object* x_92; lean_object* x_93; lean_object* x_94; uint8_t x_95; +lean_object* x_90; lean_object* x_91; lean_object* x_92; lean_object* x_93; uint8_t x_94; x_90 = lean_ctor_get(x_25, 1); lean_inc(x_90); lean_dec(x_25); @@ -13240,19 +12189,16 @@ lean_inc(x_91); lean_dec(x_26); x_92 = lean_ctor_get(x_23, 0); lean_inc(x_92); -x_93 = lean_ctor_get(x_23, 1); +x_93 = lean_ctor_get(x_91, 0); lean_inc(x_93); -lean_dec(x_23); -x_94 = lean_ctor_get(x_91, 0); -lean_inc(x_94); -x_95 = lean_nat_dec_eq(x_92, x_94); -if (x_95 == 0) +x_94 = lean_nat_dec_eq(x_92, x_93); +if (x_94 == 0) { -lean_object* x_96; lean_object* x_97; -lean_dec(x_94); +lean_object* x_95; lean_object* x_96; lean_dec(x_93); lean_dec(x_92); lean_dec(x_91); +lean_dec(x_23); lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); @@ -13261,66 +12207,67 @@ lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_2); -x_96 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; -x_97 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_97, 0, x_96); -lean_ctor_set(x_97, 1, x_90); -return x_97; +x_95 = l_BitVec_reduceUnary___lambda__1___closed__1; +x_96 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_96, 0, x_95); +lean_ctor_set(x_96, 1, x_90); +return x_96; } else { -lean_object* x_98; lean_object* x_99; lean_object* x_100; uint8_t x_101; -x_98 = l_Std_BitVec_reduceBin___lambda__2___closed__3; -x_99 = l_Lean_isTracingEnabledFor___at_Lean_Meta_Simp_congrArgs___spec__1(x_98, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_90); -x_100 = lean_ctor_get(x_99, 0); -lean_inc(x_100); -x_101 = lean_unbox(x_100); -lean_dec(x_100); -if (x_101 == 0) -{ -lean_object* x_102; lean_object* x_103; lean_object* x_104; -lean_dec(x_94); -lean_dec(x_2); -x_102 = lean_ctor_get(x_99, 1); -lean_inc(x_102); +lean_object* x_97; lean_object* x_98; lean_object* x_99; uint8_t x_100; +x_97 = l_BitVec_reduceBin___lambda__2___closed__3; +x_98 = l_Lean_isTracingEnabledFor___at_Lean_Meta_Simp_congrArgs___spec__1(x_97, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_90); +x_99 = lean_ctor_get(x_98, 0); +lean_inc(x_99); +x_100 = lean_unbox(x_99); lean_dec(x_99); -x_103 = lean_box(0); -x_104 = l_Std_BitVec_reduceSMod___lambda__1(x_91, x_92, x_93, x_103, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_102); -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); +if (x_100 == 0) +{ +lean_object* x_101; lean_object* x_102; lean_object* x_103; lean_dec(x_93); +lean_dec(x_2); +x_101 = lean_ctor_get(x_98, 1); +lean_inc(x_101); +lean_dec(x_98); +x_102 = lean_box(0); +x_103 = l_BitVec_reduceSMod___lambda__1(x_23, x_91, x_92, x_102, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_101); +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_91); -return x_104; +lean_dec(x_23); +return x_103; } else { -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; -x_105 = lean_ctor_get(x_99, 1); -lean_inc(x_105); -lean_dec(x_99); -x_106 = l_Lean_MessageData_ofName(x_2); -x_107 = l_Std_BitVec_reduceBin___lambda__2___closed__5; -x_108 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_108, 0, x_107); -lean_ctor_set(x_108, 1, x_106); -x_109 = l_Std_BitVec_reduceBin___lambda__2___closed__7; -x_110 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_110, 0, x_108); -lean_ctor_set(x_110, 1, x_109); -lean_inc(x_93); -x_111 = l_Std_BitVec_toHex(x_92, x_93); +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; +x_104 = lean_ctor_get(x_98, 1); +lean_inc(x_104); +lean_dec(x_98); +x_105 = l_Lean_MessageData_ofName(x_2); +x_106 = l_BitVec_reduceBin___lambda__2___closed__5; +x_107 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_107, 0, x_106); +lean_ctor_set(x_107, 1, x_105); +x_108 = l_BitVec_reduceBin___lambda__2___closed__7; +x_109 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_109, 0, x_107); +lean_ctor_set(x_109, 1, x_108); +x_110 = lean_ctor_get(x_23, 1); +lean_inc(x_110); +x_111 = l_BitVec_toHex(x_92, x_110); x_112 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_112, 0, x_111); -x_113 = l_Std_BitVec_reduceBin___lambda__2___closed__9; +x_113 = l_BitVec_reduceBin___lambda__2___closed__9; x_114 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_114, 0, x_113); lean_ctor_set(x_114, 1, x_112); -x_115 = l_Std_BitVec_reduceBin___lambda__2___closed__11; +x_115 = l_BitVec_reduceBin___lambda__2___closed__11; x_116 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_116, 0, x_114); lean_ctor_set(x_116, 1, x_115); @@ -13339,15 +12286,15 @@ lean_ctor_set(x_123, 0, x_122); x_124 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_124, 0, x_123); x_125 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_125, 0, x_110); +lean_ctor_set(x_125, 0, x_109); lean_ctor_set(x_125, 1, x_124); -x_126 = l_Std_BitVec_reduceBin___lambda__2___closed__13; +x_126 = l_BitVec_reduceBin___lambda__2___closed__13; x_127 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_127, 0, x_125); lean_ctor_set(x_127, 1, x_126); x_128 = lean_ctor_get(x_91, 1); lean_inc(x_128); -x_129 = l_Std_BitVec_toHex(x_94, x_128); +x_129 = l_BitVec_toHex(x_93, x_128); x_130 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_130, 0, x_129); x_131 = lean_alloc_ctor(5, 2, 0); @@ -13356,7 +12303,7 @@ lean_ctor_set(x_131, 1, x_130); x_132 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_132, 0, x_131); lean_ctor_set(x_132, 1, x_115); -x_133 = l_Nat_repr(x_94); +x_133 = l_Nat_repr(x_93); x_134 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_134, 0, x_133); x_135 = lean_alloc_ctor(5, 2, 0); @@ -13370,17 +12317,17 @@ lean_ctor_set(x_138, 0, x_137); x_139 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_139, 0, x_127); lean_ctor_set(x_139, 1, x_138); -x_140 = l_Std_BitVec_reduceBin___lambda__2___closed__15; +x_140 = l_BitVec_reduceBin___lambda__2___closed__15; x_141 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_141, 0, x_139); lean_ctor_set(x_141, 1, x_140); -x_142 = l_Lean_addTrace___at_Lean_Meta_Simp_congrArgs___spec__2(x_98, x_141, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_105); +x_142 = l_Lean_addTrace___at_Lean_Meta_Simp_congrArgs___spec__2(x_97, x_141, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_104); x_143 = lean_ctor_get(x_142, 0); lean_inc(x_143); x_144 = lean_ctor_get(x_142, 1); lean_inc(x_144); lean_dec(x_142); -x_145 = l_Std_BitVec_reduceSMod___lambda__1(x_91, x_92, x_93, x_143, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_144); +x_145 = l_BitVec_reduceSMod___lambda__1(x_23, x_91, x_92, x_143, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_144); lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); @@ -13389,8 +12336,8 @@ lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_143); -lean_dec(x_93); lean_dec(x_91); +lean_dec(x_23); return x_145; } } @@ -13463,7 +12410,7 @@ return x_153; } } } -static lean_object* _init_l_Std_BitVec_reduceSMod___closed__1() { +static lean_object* _init_l_BitVec_reduceSMod___closed__1() { _start: { lean_object* x_1; @@ -13471,22 +12418,21 @@ x_1 = lean_mk_string_from_bytes("smod", 4); return x_1; } } -static lean_object* _init_l_Std_BitVec_reduceSMod___closed__2() { +static lean_object* _init_l_BitVec_reduceSMod___closed__2() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f___closed__4; -x_2 = l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f___closed__5; -x_3 = l_Std_BitVec_reduceSMod___closed__1; -x_4 = l_Lean_Name_mkStr3(x_1, x_2, x_3); -return x_4; +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_BitVec_reduceUnary___lambda__1___closed__2; +x_2 = l_BitVec_reduceSMod___closed__1; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; } } -LEAN_EXPORT lean_object* l_Std_BitVec_reduceSMod(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_EXPORT lean_object* l_BitVec_reduceSMod(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; uint8_t x_12; -x_10 = l_Std_BitVec_reduceSMod___closed__2; +x_10 = l_BitVec_reduceSMod___closed__2; x_11 = lean_unsigned_to_nat(3u); x_12 = l_Lean_Expr_isAppOfArity(x_1, x_10, x_11); if (x_12 == 0) @@ -13500,7 +12446,7 @@ lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_13 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_13 = l_BitVec_reduceUnary___lambda__1___closed__1; x_14 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_14, 0, x_13); lean_ctor_set(x_14, 1, x_9); @@ -13510,16 +12456,16 @@ else { lean_object* x_15; lean_object* x_16; x_15 = lean_box(0); -x_16 = l_Std_BitVec_reduceSMod___lambda__2(x_1, x_10, x_15, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_16 = l_BitVec_reduceSMod___lambda__2(x_1, x_10, x_15, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); return x_16; } } } -LEAN_EXPORT lean_object* l_Std_BitVec_reduceSMod___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, lean_object* x_11, lean_object* x_12) { +LEAN_EXPORT lean_object* l_BitVec_reduceSMod___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, lean_object* x_11, lean_object* x_12) { _start: { lean_object* x_13; -x_13 = l_Std_BitVec_reduceSMod___lambda__1(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 = l_BitVec_reduceSMod___lambda__1(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_9); @@ -13528,12 +12474,12 @@ 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_13; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceSMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1869____closed__1() { +static lean_object* _init_l___regBuiltin_BitVec_reduceSMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1646____closed__1() { _start: { lean_object* x_1; @@ -13541,22 +12487,21 @@ x_1 = lean_mk_string_from_bytes("reduceSMod", 10); return x_1; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceSMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1869____closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f___closed__4; -x_2 = l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f___closed__5; -x_3 = l___regBuiltin_Std_BitVec_reduceSMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1869____closed__1; -x_4 = l_Lean_Name_mkStr3(x_1, x_2, x_3); -return x_4; -} -} -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceSMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1869____closed__3() { +static lean_object* _init_l___regBuiltin_BitVec_reduceSMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1646____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Std_BitVec_reduceSMod___closed__2; +x_1 = l_BitVec_reduceUnary___lambda__1___closed__2; +x_2 = l___regBuiltin_BitVec_reduceSMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1646____closed__1; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___regBuiltin_BitVec_reduceSMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1646____closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_BitVec_reduceSMod___closed__2; x_2 = lean_unsigned_to_nat(3u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -13564,116 +12509,117 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceSMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1869____closed__4() { +static lean_object* _init_l___regBuiltin_BitVec_reduceSMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1646____closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceUMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1791____closed__4; -x_2 = l___regBuiltin_Std_BitVec_reduceSMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1869____closed__3; +x_1 = l___regBuiltin_BitVec_reduceUMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1568____closed__4; +x_2 = l___regBuiltin_BitVec_reduceSMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1646____closed__3; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceSMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1869____closed__5() { +static lean_object* _init_l___regBuiltin_BitVec_reduceSMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1646____closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceSMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1869____closed__4; +x_1 = l___regBuiltin_BitVec_reduceSMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1646____closed__4; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceSMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1869____closed__6() { +static lean_object* _init_l___regBuiltin_BitVec_reduceSMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1646____closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceSMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1869____closed__5; +x_1 = l___regBuiltin_BitVec_reduceSMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1646____closed__5; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceSMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1869____closed__7() { +static lean_object* _init_l___regBuiltin_BitVec_reduceSMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1646____closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceSMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1869____closed__6; +x_1 = l___regBuiltin_BitVec_reduceSMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1646____closed__6; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceSMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1869____closed__8() { +static lean_object* _init_l___regBuiltin_BitVec_reduceSMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1646____closed__8() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Std_BitVec_reduceSMod), 9, 0); +x_1 = lean_alloc_closure((void*)(l_BitVec_reduceSMod), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceSMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1869_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceSMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1646_(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_Std_BitVec_reduceSMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1869____closed__2; -x_3 = l___regBuiltin_Std_BitVec_reduceSMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1869____closed__7; -x_4 = l___regBuiltin_Std_BitVec_reduceSMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1869____closed__8; +x_2 = l___regBuiltin_BitVec_reduceSMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1646____closed__2; +x_3 = l___regBuiltin_BitVec_reduceSMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1646____closed__7; +x_4 = l___regBuiltin_BitVec_reduceSMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1646____closed__8; x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); return x_5; } } -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceSMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1871_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceSMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1648_(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_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1373____closed__1; -x_3 = l___regBuiltin_Std_BitVec_reduceSMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1869____closed__2; +x_2 = l___regBuiltin_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1150____closed__1; +x_3 = l___regBuiltin_BitVec_reduceSMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1646____closed__2; x_4 = 1; -x_5 = l___regBuiltin_Std_BitVec_reduceSMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1869____closed__8; +x_5 = l___regBuiltin_BitVec_reduceSMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1646____closed__8; 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_Std_BitVec_reduceSMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1873_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceSMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1650_(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_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1375____closed__1; -x_3 = l___regBuiltin_Std_BitVec_reduceSMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1869____closed__2; +x_2 = l___regBuiltin_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1152____closed__1; +x_3 = l___regBuiltin_BitVec_reduceSMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1646____closed__2; x_4 = 1; -x_5 = l___regBuiltin_Std_BitVec_reduceSMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1869____closed__8; +x_5 = l___regBuiltin_BitVec_reduceSMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1646____closed__8; 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_Std_BitVec_reduceSRem___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, lean_object* x_11, lean_object* x_12) { +LEAN_EXPORT lean_object* l_BitVec_reduceSRem___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, lean_object* x_11, lean_object* x_12) { _start: { -lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; uint32_t x_18; uint8_t x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; +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; uint32_t x_21; uint8_t x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; x_13 = lean_ctor_get(x_1, 1); -x_14 = l_Std_BitVec_srem(x_2, x_3, x_13); -x_15 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_15, 0, x_2); -lean_ctor_set(x_15, 1, x_14); -x_16 = l_Std_BitVec_Literal_toExpr(x_15); -x_17 = lean_box(0); -x_18 = 0; -x_19 = 1; -x_20 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_20, 0, x_16); -lean_ctor_set(x_20, 1, x_17); -lean_ctor_set_uint32(x_20, sizeof(void*)*2, x_18); -lean_ctor_set_uint8(x_20, sizeof(void*)*2 + 4, x_19); -x_21 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_21, 0, x_20); -x_22 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_22, 0, x_21); -lean_ctor_set(x_22, 1, x_12); -return x_22; +x_14 = lean_ctor_get(x_2, 1); +x_15 = l_BitVec_srem(x_3, x_13, x_14); +x_16 = l_Lean_mkNatLit(x_3); +x_17 = l_Lean_mkNatLit(x_15); +x_18 = l_BitVec_reduceUnary___lambda__1___closed__5; +x_19 = l_Lean_mkAppB(x_18, x_16, x_17); +x_20 = lean_box(0); +x_21 = 0; +x_22 = 1; +x_23 = lean_alloc_ctor(0, 2, 5); +lean_ctor_set(x_23, 0, x_19); +lean_ctor_set(x_23, 1, x_20); +lean_ctor_set_uint32(x_23, sizeof(void*)*2, x_21); +lean_ctor_set_uint8(x_23, sizeof(void*)*2 + 4, x_22); +x_24 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_24, 0, x_23); +x_25 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_25, 0, x_24); +lean_ctor_set(x_25, 1, x_12); +return x_25; } } -LEAN_EXPORT lean_object* l_Std_BitVec_reduceSRem___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_EXPORT lean_object* l_BitVec_reduceSRem___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) { _start: { lean_object* x_12; lean_object* x_13; lean_object* x_14; @@ -13686,7 +12632,8 @@ lean_inc(x_10); lean_inc(x_9); lean_inc(x_8); lean_inc(x_7); -x_14 = l_Std_BitVec_fromExpr_x3f(x_13, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +x_14 = l_BitVec_fromExpr_x3f(x_13, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_13); if (lean_obj_tag(x_14) == 0) { lean_object* x_15; @@ -13710,7 +12657,7 @@ if (x_16 == 0) lean_object* x_17; lean_object* x_18; x_17 = lean_ctor_get(x_14, 0); lean_dec(x_17); -x_18 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_18 = l_BitVec_reduceUnary___lambda__1___closed__1; lean_ctor_set(x_14, 0, x_18); return x_14; } @@ -13720,7 +12667,7 @@ lean_object* x_19; lean_object* x_20; lean_object* x_21; x_19 = lean_ctor_get(x_14, 1); lean_inc(x_19); lean_dec(x_14); -x_20 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_20 = l_BitVec_reduceUnary___lambda__1___closed__1; x_21 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_21, 0, x_20); lean_ctor_set(x_21, 1, x_19); @@ -13742,7 +12689,8 @@ lean_inc(x_10); lean_inc(x_9); lean_inc(x_8); lean_inc(x_7); -x_25 = l_Std_BitVec_fromExpr_x3f(x_24, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_22); +x_25 = l_BitVec_fromExpr_x3f(x_24, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_22); +lean_dec(x_24); if (lean_obj_tag(x_25) == 0) { lean_object* x_26; @@ -13766,7 +12714,7 @@ if (x_27 == 0) lean_object* x_28; lean_object* x_29; x_28 = lean_ctor_get(x_25, 0); lean_dec(x_28); -x_29 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_29 = l_BitVec_reduceUnary___lambda__1___closed__1; lean_ctor_set(x_25, 0, x_29); return x_25; } @@ -13776,7 +12724,7 @@ lean_object* x_30; lean_object* x_31; lean_object* x_32; x_30 = lean_ctor_get(x_25, 1); lean_inc(x_30); lean_dec(x_25); -x_31 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_31 = l_BitVec_reduceUnary___lambda__1___closed__1; x_32 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_32, 0, x_31); lean_ctor_set(x_32, 1, x_30); @@ -13789,7 +12737,7 @@ uint8_t x_33; x_33 = !lean_is_exclusive(x_25); if (x_33 == 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; uint8_t x_40; +lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; uint8_t x_39; x_34 = lean_ctor_get(x_25, 1); x_35 = lean_ctor_get(x_25, 0); lean_dec(x_35); @@ -13798,19 +12746,16 @@ lean_inc(x_36); lean_dec(x_26); x_37 = lean_ctor_get(x_23, 0); lean_inc(x_37); -x_38 = lean_ctor_get(x_23, 1); +x_38 = lean_ctor_get(x_36, 0); lean_inc(x_38); -lean_dec(x_23); -x_39 = lean_ctor_get(x_36, 0); -lean_inc(x_39); -x_40 = lean_nat_dec_eq(x_37, x_39); -if (x_40 == 0) +x_39 = lean_nat_dec_eq(x_37, x_38); +if (x_39 == 0) { -lean_object* x_41; -lean_dec(x_39); +lean_object* x_40; lean_dec(x_38); lean_dec(x_37); lean_dec(x_36); +lean_dec(x_23); lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); @@ -13819,30 +12764,30 @@ lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_2); -x_41 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; -lean_ctor_set(x_25, 0, x_41); +x_40 = l_BitVec_reduceUnary___lambda__1___closed__1; +lean_ctor_set(x_25, 0, x_40); return x_25; } else { -lean_object* x_42; lean_object* x_43; lean_object* x_44; uint8_t x_45; +lean_object* x_41; lean_object* x_42; lean_object* x_43; uint8_t x_44; lean_free_object(x_25); -x_42 = l_Std_BitVec_reduceBin___lambda__2___closed__3; -x_43 = l_Lean_isTracingEnabledFor___at_Lean_Meta_Simp_congrArgs___spec__1(x_42, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_34); -x_44 = lean_ctor_get(x_43, 0); -lean_inc(x_44); -x_45 = lean_unbox(x_44); -lean_dec(x_44); -if (x_45 == 0) -{ -lean_object* x_46; lean_object* x_47; lean_object* x_48; -lean_dec(x_39); -lean_dec(x_2); -x_46 = lean_ctor_get(x_43, 1); -lean_inc(x_46); +x_41 = l_BitVec_reduceBin___lambda__2___closed__3; +x_42 = l_Lean_isTracingEnabledFor___at_Lean_Meta_Simp_congrArgs___spec__1(x_41, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_34); +x_43 = lean_ctor_get(x_42, 0); +lean_inc(x_43); +x_44 = lean_unbox(x_43); lean_dec(x_43); -x_47 = lean_box(0); -x_48 = l_Std_BitVec_reduceSRem___lambda__1(x_36, x_37, x_38, x_47, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_46); +if (x_44 == 0) +{ +lean_object* x_45; lean_object* x_46; lean_object* x_47; +lean_dec(x_38); +lean_dec(x_2); +x_45 = lean_ctor_get(x_42, 1); +lean_inc(x_45); +lean_dec(x_42); +x_46 = lean_box(0); +x_47 = l_BitVec_reduceSRem___lambda__1(x_23, x_36, x_37, x_46, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_45); lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); @@ -13850,34 +12795,35 @@ lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); -lean_dec(x_38); lean_dec(x_36); -return x_48; +lean_dec(x_23); +return x_47; } else { -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; -x_49 = lean_ctor_get(x_43, 1); -lean_inc(x_49); -lean_dec(x_43); -x_50 = l_Lean_MessageData_ofName(x_2); -x_51 = l_Std_BitVec_reduceBin___lambda__2___closed__5; -x_52 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_52, 0, x_51); -lean_ctor_set(x_52, 1, x_50); -x_53 = l_Std_BitVec_reduceBin___lambda__2___closed__7; -x_54 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_54, 0, x_52); -lean_ctor_set(x_54, 1, x_53); -lean_inc(x_38); -x_55 = l_Std_BitVec_toHex(x_37, x_38); +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; +x_48 = lean_ctor_get(x_42, 1); +lean_inc(x_48); +lean_dec(x_42); +x_49 = l_Lean_MessageData_ofName(x_2); +x_50 = l_BitVec_reduceBin___lambda__2___closed__5; +x_51 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_51, 0, x_50); +lean_ctor_set(x_51, 1, x_49); +x_52 = l_BitVec_reduceBin___lambda__2___closed__7; +x_53 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_53, 0, x_51); +lean_ctor_set(x_53, 1, x_52); +x_54 = lean_ctor_get(x_23, 1); +lean_inc(x_54); +x_55 = l_BitVec_toHex(x_37, x_54); x_56 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_56, 0, x_55); -x_57 = l_Std_BitVec_reduceBin___lambda__2___closed__9; +x_57 = l_BitVec_reduceBin___lambda__2___closed__9; x_58 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_58, 0, x_57); lean_ctor_set(x_58, 1, x_56); -x_59 = l_Std_BitVec_reduceBin___lambda__2___closed__11; +x_59 = l_BitVec_reduceBin___lambda__2___closed__11; x_60 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_60, 0, x_58); lean_ctor_set(x_60, 1, x_59); @@ -13896,15 +12842,15 @@ lean_ctor_set(x_67, 0, x_66); x_68 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_68, 0, x_67); x_69 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_69, 0, x_54); +lean_ctor_set(x_69, 0, x_53); lean_ctor_set(x_69, 1, x_68); -x_70 = l_Std_BitVec_reduceBin___lambda__2___closed__13; +x_70 = l_BitVec_reduceBin___lambda__2___closed__13; x_71 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_71, 0, x_69); lean_ctor_set(x_71, 1, x_70); x_72 = lean_ctor_get(x_36, 1); lean_inc(x_72); -x_73 = l_Std_BitVec_toHex(x_39, x_72); +x_73 = l_BitVec_toHex(x_38, x_72); x_74 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_74, 0, x_73); x_75 = lean_alloc_ctor(5, 2, 0); @@ -13913,7 +12859,7 @@ lean_ctor_set(x_75, 1, x_74); x_76 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_76, 0, x_75); lean_ctor_set(x_76, 1, x_59); -x_77 = l_Nat_repr(x_39); +x_77 = l_Nat_repr(x_38); x_78 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_78, 0, x_77); x_79 = lean_alloc_ctor(5, 2, 0); @@ -13927,17 +12873,17 @@ lean_ctor_set(x_82, 0, x_81); x_83 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_83, 0, x_71); lean_ctor_set(x_83, 1, x_82); -x_84 = l_Std_BitVec_reduceBin___lambda__2___closed__15; +x_84 = l_BitVec_reduceBin___lambda__2___closed__15; x_85 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_85, 0, x_83); lean_ctor_set(x_85, 1, x_84); -x_86 = l_Lean_addTrace___at_Lean_Meta_Simp_congrArgs___spec__2(x_42, x_85, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_49); +x_86 = l_Lean_addTrace___at_Lean_Meta_Simp_congrArgs___spec__2(x_41, x_85, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_48); 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 = l_Std_BitVec_reduceSRem___lambda__1(x_36, x_37, x_38, x_87, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_88); +x_89 = l_BitVec_reduceSRem___lambda__1(x_23, x_36, x_37, x_87, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_88); lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); @@ -13946,15 +12892,15 @@ lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_87); -lean_dec(x_38); lean_dec(x_36); +lean_dec(x_23); return x_89; } } } else { -lean_object* x_90; lean_object* x_91; lean_object* x_92; lean_object* x_93; lean_object* x_94; uint8_t x_95; +lean_object* x_90; lean_object* x_91; lean_object* x_92; lean_object* x_93; uint8_t x_94; x_90 = lean_ctor_get(x_25, 1); lean_inc(x_90); lean_dec(x_25); @@ -13963,19 +12909,16 @@ lean_inc(x_91); lean_dec(x_26); x_92 = lean_ctor_get(x_23, 0); lean_inc(x_92); -x_93 = lean_ctor_get(x_23, 1); +x_93 = lean_ctor_get(x_91, 0); lean_inc(x_93); -lean_dec(x_23); -x_94 = lean_ctor_get(x_91, 0); -lean_inc(x_94); -x_95 = lean_nat_dec_eq(x_92, x_94); -if (x_95 == 0) +x_94 = lean_nat_dec_eq(x_92, x_93); +if (x_94 == 0) { -lean_object* x_96; lean_object* x_97; -lean_dec(x_94); +lean_object* x_95; lean_object* x_96; lean_dec(x_93); lean_dec(x_92); lean_dec(x_91); +lean_dec(x_23); lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); @@ -13984,66 +12927,67 @@ lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_2); -x_96 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; -x_97 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_97, 0, x_96); -lean_ctor_set(x_97, 1, x_90); -return x_97; +x_95 = l_BitVec_reduceUnary___lambda__1___closed__1; +x_96 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_96, 0, x_95); +lean_ctor_set(x_96, 1, x_90); +return x_96; } else { -lean_object* x_98; lean_object* x_99; lean_object* x_100; uint8_t x_101; -x_98 = l_Std_BitVec_reduceBin___lambda__2___closed__3; -x_99 = l_Lean_isTracingEnabledFor___at_Lean_Meta_Simp_congrArgs___spec__1(x_98, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_90); -x_100 = lean_ctor_get(x_99, 0); -lean_inc(x_100); -x_101 = lean_unbox(x_100); -lean_dec(x_100); -if (x_101 == 0) -{ -lean_object* x_102; lean_object* x_103; lean_object* x_104; -lean_dec(x_94); -lean_dec(x_2); -x_102 = lean_ctor_get(x_99, 1); -lean_inc(x_102); +lean_object* x_97; lean_object* x_98; lean_object* x_99; uint8_t x_100; +x_97 = l_BitVec_reduceBin___lambda__2___closed__3; +x_98 = l_Lean_isTracingEnabledFor___at_Lean_Meta_Simp_congrArgs___spec__1(x_97, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_90); +x_99 = lean_ctor_get(x_98, 0); +lean_inc(x_99); +x_100 = lean_unbox(x_99); lean_dec(x_99); -x_103 = lean_box(0); -x_104 = l_Std_BitVec_reduceSRem___lambda__1(x_91, x_92, x_93, x_103, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_102); -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); +if (x_100 == 0) +{ +lean_object* x_101; lean_object* x_102; lean_object* x_103; lean_dec(x_93); +lean_dec(x_2); +x_101 = lean_ctor_get(x_98, 1); +lean_inc(x_101); +lean_dec(x_98); +x_102 = lean_box(0); +x_103 = l_BitVec_reduceSRem___lambda__1(x_23, x_91, x_92, x_102, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_101); +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_91); -return x_104; +lean_dec(x_23); +return x_103; } else { -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; -x_105 = lean_ctor_get(x_99, 1); -lean_inc(x_105); -lean_dec(x_99); -x_106 = l_Lean_MessageData_ofName(x_2); -x_107 = l_Std_BitVec_reduceBin___lambda__2___closed__5; -x_108 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_108, 0, x_107); -lean_ctor_set(x_108, 1, x_106); -x_109 = l_Std_BitVec_reduceBin___lambda__2___closed__7; -x_110 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_110, 0, x_108); -lean_ctor_set(x_110, 1, x_109); -lean_inc(x_93); -x_111 = l_Std_BitVec_toHex(x_92, x_93); +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; +x_104 = lean_ctor_get(x_98, 1); +lean_inc(x_104); +lean_dec(x_98); +x_105 = l_Lean_MessageData_ofName(x_2); +x_106 = l_BitVec_reduceBin___lambda__2___closed__5; +x_107 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_107, 0, x_106); +lean_ctor_set(x_107, 1, x_105); +x_108 = l_BitVec_reduceBin___lambda__2___closed__7; +x_109 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_109, 0, x_107); +lean_ctor_set(x_109, 1, x_108); +x_110 = lean_ctor_get(x_23, 1); +lean_inc(x_110); +x_111 = l_BitVec_toHex(x_92, x_110); x_112 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_112, 0, x_111); -x_113 = l_Std_BitVec_reduceBin___lambda__2___closed__9; +x_113 = l_BitVec_reduceBin___lambda__2___closed__9; x_114 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_114, 0, x_113); lean_ctor_set(x_114, 1, x_112); -x_115 = l_Std_BitVec_reduceBin___lambda__2___closed__11; +x_115 = l_BitVec_reduceBin___lambda__2___closed__11; x_116 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_116, 0, x_114); lean_ctor_set(x_116, 1, x_115); @@ -14062,15 +13006,15 @@ lean_ctor_set(x_123, 0, x_122); x_124 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_124, 0, x_123); x_125 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_125, 0, x_110); +lean_ctor_set(x_125, 0, x_109); lean_ctor_set(x_125, 1, x_124); -x_126 = l_Std_BitVec_reduceBin___lambda__2___closed__13; +x_126 = l_BitVec_reduceBin___lambda__2___closed__13; x_127 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_127, 0, x_125); lean_ctor_set(x_127, 1, x_126); x_128 = lean_ctor_get(x_91, 1); lean_inc(x_128); -x_129 = l_Std_BitVec_toHex(x_94, x_128); +x_129 = l_BitVec_toHex(x_93, x_128); x_130 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_130, 0, x_129); x_131 = lean_alloc_ctor(5, 2, 0); @@ -14079,7 +13023,7 @@ lean_ctor_set(x_131, 1, x_130); x_132 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_132, 0, x_131); lean_ctor_set(x_132, 1, x_115); -x_133 = l_Nat_repr(x_94); +x_133 = l_Nat_repr(x_93); x_134 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_134, 0, x_133); x_135 = lean_alloc_ctor(5, 2, 0); @@ -14093,17 +13037,17 @@ lean_ctor_set(x_138, 0, x_137); x_139 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_139, 0, x_127); lean_ctor_set(x_139, 1, x_138); -x_140 = l_Std_BitVec_reduceBin___lambda__2___closed__15; +x_140 = l_BitVec_reduceBin___lambda__2___closed__15; x_141 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_141, 0, x_139); lean_ctor_set(x_141, 1, x_140); -x_142 = l_Lean_addTrace___at_Lean_Meta_Simp_congrArgs___spec__2(x_98, x_141, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_105); +x_142 = l_Lean_addTrace___at_Lean_Meta_Simp_congrArgs___spec__2(x_97, x_141, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_104); x_143 = lean_ctor_get(x_142, 0); lean_inc(x_143); x_144 = lean_ctor_get(x_142, 1); lean_inc(x_144); lean_dec(x_142); -x_145 = l_Std_BitVec_reduceSRem___lambda__1(x_91, x_92, x_93, x_143, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_144); +x_145 = l_BitVec_reduceSRem___lambda__1(x_23, x_91, x_92, x_143, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_144); lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); @@ -14112,8 +13056,8 @@ lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_143); -lean_dec(x_93); lean_dec(x_91); +lean_dec(x_23); return x_145; } } @@ -14186,7 +13130,7 @@ return x_153; } } } -static lean_object* _init_l_Std_BitVec_reduceSRem___closed__1() { +static lean_object* _init_l_BitVec_reduceSRem___closed__1() { _start: { lean_object* x_1; @@ -14194,22 +13138,21 @@ x_1 = lean_mk_string_from_bytes("srem", 4); return x_1; } } -static lean_object* _init_l_Std_BitVec_reduceSRem___closed__2() { +static lean_object* _init_l_BitVec_reduceSRem___closed__2() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f___closed__4; -x_2 = l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f___closed__5; -x_3 = l_Std_BitVec_reduceSRem___closed__1; -x_4 = l_Lean_Name_mkStr3(x_1, x_2, x_3); -return x_4; +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_BitVec_reduceUnary___lambda__1___closed__2; +x_2 = l_BitVec_reduceSRem___closed__1; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; } } -LEAN_EXPORT lean_object* l_Std_BitVec_reduceSRem(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_EXPORT lean_object* l_BitVec_reduceSRem(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; uint8_t x_12; -x_10 = l_Std_BitVec_reduceSRem___closed__2; +x_10 = l_BitVec_reduceSRem___closed__2; x_11 = lean_unsigned_to_nat(3u); x_12 = l_Lean_Expr_isAppOfArity(x_1, x_10, x_11); if (x_12 == 0) @@ -14223,7 +13166,7 @@ lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_13 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_13 = l_BitVec_reduceUnary___lambda__1___closed__1; x_14 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_14, 0, x_13); lean_ctor_set(x_14, 1, x_9); @@ -14233,16 +13176,16 @@ else { lean_object* x_15; lean_object* x_16; x_15 = lean_box(0); -x_16 = l_Std_BitVec_reduceSRem___lambda__2(x_1, x_10, x_15, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_16 = l_BitVec_reduceSRem___lambda__2(x_1, x_10, x_15, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); return x_16; } } } -LEAN_EXPORT lean_object* l_Std_BitVec_reduceSRem___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, lean_object* x_11, lean_object* x_12) { +LEAN_EXPORT lean_object* l_BitVec_reduceSRem___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, lean_object* x_11, lean_object* x_12) { _start: { lean_object* x_13; -x_13 = l_Std_BitVec_reduceSRem___lambda__1(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 = l_BitVec_reduceSRem___lambda__1(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_9); @@ -14251,12 +13194,12 @@ 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_13; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceSRem_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1895____closed__1() { +static lean_object* _init_l___regBuiltin_BitVec_reduceSRem_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1672____closed__1() { _start: { lean_object* x_1; @@ -14264,22 +13207,21 @@ x_1 = lean_mk_string_from_bytes("reduceSRem", 10); return x_1; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceSRem_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1895____closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f___closed__4; -x_2 = l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f___closed__5; -x_3 = l___regBuiltin_Std_BitVec_reduceSRem_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1895____closed__1; -x_4 = l_Lean_Name_mkStr3(x_1, x_2, x_3); -return x_4; -} -} -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceSRem_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1895____closed__3() { +static lean_object* _init_l___regBuiltin_BitVec_reduceSRem_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1672____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Std_BitVec_reduceSRem___closed__2; +x_1 = l_BitVec_reduceUnary___lambda__1___closed__2; +x_2 = l___regBuiltin_BitVec_reduceSRem_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1672____closed__1; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___regBuiltin_BitVec_reduceSRem_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1672____closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_BitVec_reduceSRem___closed__2; x_2 = lean_unsigned_to_nat(3u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -14287,116 +13229,117 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceSRem_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1895____closed__4() { +static lean_object* _init_l___regBuiltin_BitVec_reduceSRem_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1672____closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceUMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1791____closed__4; -x_2 = l___regBuiltin_Std_BitVec_reduceSRem_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1895____closed__3; +x_1 = l___regBuiltin_BitVec_reduceUMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1568____closed__4; +x_2 = l___regBuiltin_BitVec_reduceSRem_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1672____closed__3; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceSRem_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1895____closed__5() { +static lean_object* _init_l___regBuiltin_BitVec_reduceSRem_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1672____closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceSRem_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1895____closed__4; +x_1 = l___regBuiltin_BitVec_reduceSRem_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1672____closed__4; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceSRem_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1895____closed__6() { +static lean_object* _init_l___regBuiltin_BitVec_reduceSRem_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1672____closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceSRem_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1895____closed__5; +x_1 = l___regBuiltin_BitVec_reduceSRem_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1672____closed__5; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceSRem_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1895____closed__7() { +static lean_object* _init_l___regBuiltin_BitVec_reduceSRem_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1672____closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceSRem_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1895____closed__6; +x_1 = l___regBuiltin_BitVec_reduceSRem_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1672____closed__6; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceSRem_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1895____closed__8() { +static lean_object* _init_l___regBuiltin_BitVec_reduceSRem_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1672____closed__8() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Std_BitVec_reduceSRem), 9, 0); +x_1 = lean_alloc_closure((void*)(l_BitVec_reduceSRem), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceSRem_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1895_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceSRem_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1672_(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_Std_BitVec_reduceSRem_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1895____closed__2; -x_3 = l___regBuiltin_Std_BitVec_reduceSRem_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1895____closed__7; -x_4 = l___regBuiltin_Std_BitVec_reduceSRem_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1895____closed__8; +x_2 = l___regBuiltin_BitVec_reduceSRem_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1672____closed__2; +x_3 = l___regBuiltin_BitVec_reduceSRem_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1672____closed__7; +x_4 = l___regBuiltin_BitVec_reduceSRem_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1672____closed__8; x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); return x_5; } } -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceSRem_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1897_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceSRem_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1674_(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_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1373____closed__1; -x_3 = l___regBuiltin_Std_BitVec_reduceSRem_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1895____closed__2; +x_2 = l___regBuiltin_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1150____closed__1; +x_3 = l___regBuiltin_BitVec_reduceSRem_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1672____closed__2; x_4 = 1; -x_5 = l___regBuiltin_Std_BitVec_reduceSRem_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1895____closed__8; +x_5 = l___regBuiltin_BitVec_reduceSRem_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1672____closed__8; 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_Std_BitVec_reduceSRem_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1899_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceSRem_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1676_(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_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1375____closed__1; -x_3 = l___regBuiltin_Std_BitVec_reduceSRem_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1895____closed__2; +x_2 = l___regBuiltin_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1152____closed__1; +x_3 = l___regBuiltin_BitVec_reduceSRem_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1672____closed__2; x_4 = 1; -x_5 = l___regBuiltin_Std_BitVec_reduceSRem_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1895____closed__8; +x_5 = l___regBuiltin_BitVec_reduceSRem_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1672____closed__8; 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_Std_BitVec_reduceSDiv___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, lean_object* x_11, lean_object* x_12) { +LEAN_EXPORT lean_object* l_BitVec_reduceSDiv___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, lean_object* x_11, lean_object* x_12) { _start: { -lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; uint32_t x_18; uint8_t x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; +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; uint32_t x_21; uint8_t x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; x_13 = lean_ctor_get(x_1, 1); -x_14 = l_Std_BitVec_sdiv(x_2, x_3, x_13); -x_15 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_15, 0, x_2); -lean_ctor_set(x_15, 1, x_14); -x_16 = l_Std_BitVec_Literal_toExpr(x_15); -x_17 = lean_box(0); -x_18 = 0; -x_19 = 1; -x_20 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_20, 0, x_16); -lean_ctor_set(x_20, 1, x_17); -lean_ctor_set_uint32(x_20, sizeof(void*)*2, x_18); -lean_ctor_set_uint8(x_20, sizeof(void*)*2 + 4, x_19); -x_21 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_21, 0, x_20); -x_22 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_22, 0, x_21); -lean_ctor_set(x_22, 1, x_12); -return x_22; +x_14 = lean_ctor_get(x_2, 1); +x_15 = l_BitVec_sdiv(x_3, x_13, x_14); +x_16 = l_Lean_mkNatLit(x_3); +x_17 = l_Lean_mkNatLit(x_15); +x_18 = l_BitVec_reduceUnary___lambda__1___closed__5; +x_19 = l_Lean_mkAppB(x_18, x_16, x_17); +x_20 = lean_box(0); +x_21 = 0; +x_22 = 1; +x_23 = lean_alloc_ctor(0, 2, 5); +lean_ctor_set(x_23, 0, x_19); +lean_ctor_set(x_23, 1, x_20); +lean_ctor_set_uint32(x_23, sizeof(void*)*2, x_21); +lean_ctor_set_uint8(x_23, sizeof(void*)*2 + 4, x_22); +x_24 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_24, 0, x_23); +x_25 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_25, 0, x_24); +lean_ctor_set(x_25, 1, x_12); +return x_25; } } -LEAN_EXPORT lean_object* l_Std_BitVec_reduceSDiv___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_EXPORT lean_object* l_BitVec_reduceSDiv___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) { _start: { lean_object* x_12; lean_object* x_13; lean_object* x_14; @@ -14409,7 +13352,8 @@ lean_inc(x_10); lean_inc(x_9); lean_inc(x_8); lean_inc(x_7); -x_14 = l_Std_BitVec_fromExpr_x3f(x_13, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +x_14 = l_BitVec_fromExpr_x3f(x_13, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_13); if (lean_obj_tag(x_14) == 0) { lean_object* x_15; @@ -14433,7 +13377,7 @@ if (x_16 == 0) lean_object* x_17; lean_object* x_18; x_17 = lean_ctor_get(x_14, 0); lean_dec(x_17); -x_18 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_18 = l_BitVec_reduceUnary___lambda__1___closed__1; lean_ctor_set(x_14, 0, x_18); return x_14; } @@ -14443,7 +13387,7 @@ lean_object* x_19; lean_object* x_20; lean_object* x_21; x_19 = lean_ctor_get(x_14, 1); lean_inc(x_19); lean_dec(x_14); -x_20 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_20 = l_BitVec_reduceUnary___lambda__1___closed__1; x_21 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_21, 0, x_20); lean_ctor_set(x_21, 1, x_19); @@ -14465,7 +13409,8 @@ lean_inc(x_10); lean_inc(x_9); lean_inc(x_8); lean_inc(x_7); -x_25 = l_Std_BitVec_fromExpr_x3f(x_24, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_22); +x_25 = l_BitVec_fromExpr_x3f(x_24, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_22); +lean_dec(x_24); if (lean_obj_tag(x_25) == 0) { lean_object* x_26; @@ -14489,7 +13434,7 @@ if (x_27 == 0) lean_object* x_28; lean_object* x_29; x_28 = lean_ctor_get(x_25, 0); lean_dec(x_28); -x_29 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_29 = l_BitVec_reduceUnary___lambda__1___closed__1; lean_ctor_set(x_25, 0, x_29); return x_25; } @@ -14499,7 +13444,7 @@ lean_object* x_30; lean_object* x_31; lean_object* x_32; x_30 = lean_ctor_get(x_25, 1); lean_inc(x_30); lean_dec(x_25); -x_31 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_31 = l_BitVec_reduceUnary___lambda__1___closed__1; x_32 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_32, 0, x_31); lean_ctor_set(x_32, 1, x_30); @@ -14512,7 +13457,7 @@ uint8_t x_33; x_33 = !lean_is_exclusive(x_25); if (x_33 == 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; uint8_t x_40; +lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; uint8_t x_39; x_34 = lean_ctor_get(x_25, 1); x_35 = lean_ctor_get(x_25, 0); lean_dec(x_35); @@ -14521,19 +13466,16 @@ lean_inc(x_36); lean_dec(x_26); x_37 = lean_ctor_get(x_23, 0); lean_inc(x_37); -x_38 = lean_ctor_get(x_23, 1); +x_38 = lean_ctor_get(x_36, 0); lean_inc(x_38); -lean_dec(x_23); -x_39 = lean_ctor_get(x_36, 0); -lean_inc(x_39); -x_40 = lean_nat_dec_eq(x_37, x_39); -if (x_40 == 0) +x_39 = lean_nat_dec_eq(x_37, x_38); +if (x_39 == 0) { -lean_object* x_41; -lean_dec(x_39); +lean_object* x_40; lean_dec(x_38); lean_dec(x_37); lean_dec(x_36); +lean_dec(x_23); lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); @@ -14542,30 +13484,30 @@ lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_2); -x_41 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; -lean_ctor_set(x_25, 0, x_41); +x_40 = l_BitVec_reduceUnary___lambda__1___closed__1; +lean_ctor_set(x_25, 0, x_40); return x_25; } else { -lean_object* x_42; lean_object* x_43; lean_object* x_44; uint8_t x_45; +lean_object* x_41; lean_object* x_42; lean_object* x_43; uint8_t x_44; lean_free_object(x_25); -x_42 = l_Std_BitVec_reduceBin___lambda__2___closed__3; -x_43 = l_Lean_isTracingEnabledFor___at_Lean_Meta_Simp_congrArgs___spec__1(x_42, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_34); -x_44 = lean_ctor_get(x_43, 0); -lean_inc(x_44); -x_45 = lean_unbox(x_44); -lean_dec(x_44); -if (x_45 == 0) -{ -lean_object* x_46; lean_object* x_47; lean_object* x_48; -lean_dec(x_39); -lean_dec(x_2); -x_46 = lean_ctor_get(x_43, 1); -lean_inc(x_46); +x_41 = l_BitVec_reduceBin___lambda__2___closed__3; +x_42 = l_Lean_isTracingEnabledFor___at_Lean_Meta_Simp_congrArgs___spec__1(x_41, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_34); +x_43 = lean_ctor_get(x_42, 0); +lean_inc(x_43); +x_44 = lean_unbox(x_43); lean_dec(x_43); -x_47 = lean_box(0); -x_48 = l_Std_BitVec_reduceSDiv___lambda__1(x_36, x_37, x_38, x_47, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_46); +if (x_44 == 0) +{ +lean_object* x_45; lean_object* x_46; lean_object* x_47; +lean_dec(x_38); +lean_dec(x_2); +x_45 = lean_ctor_get(x_42, 1); +lean_inc(x_45); +lean_dec(x_42); +x_46 = lean_box(0); +x_47 = l_BitVec_reduceSDiv___lambda__1(x_23, x_36, x_37, x_46, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_45); lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); @@ -14573,34 +13515,35 @@ lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); -lean_dec(x_38); lean_dec(x_36); -return x_48; +lean_dec(x_23); +return x_47; } else { -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; -x_49 = lean_ctor_get(x_43, 1); -lean_inc(x_49); -lean_dec(x_43); -x_50 = l_Lean_MessageData_ofName(x_2); -x_51 = l_Std_BitVec_reduceBin___lambda__2___closed__5; -x_52 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_52, 0, x_51); -lean_ctor_set(x_52, 1, x_50); -x_53 = l_Std_BitVec_reduceBin___lambda__2___closed__7; -x_54 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_54, 0, x_52); -lean_ctor_set(x_54, 1, x_53); -lean_inc(x_38); -x_55 = l_Std_BitVec_toHex(x_37, x_38); +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; +x_48 = lean_ctor_get(x_42, 1); +lean_inc(x_48); +lean_dec(x_42); +x_49 = l_Lean_MessageData_ofName(x_2); +x_50 = l_BitVec_reduceBin___lambda__2___closed__5; +x_51 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_51, 0, x_50); +lean_ctor_set(x_51, 1, x_49); +x_52 = l_BitVec_reduceBin___lambda__2___closed__7; +x_53 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_53, 0, x_51); +lean_ctor_set(x_53, 1, x_52); +x_54 = lean_ctor_get(x_23, 1); +lean_inc(x_54); +x_55 = l_BitVec_toHex(x_37, x_54); x_56 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_56, 0, x_55); -x_57 = l_Std_BitVec_reduceBin___lambda__2___closed__9; +x_57 = l_BitVec_reduceBin___lambda__2___closed__9; x_58 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_58, 0, x_57); lean_ctor_set(x_58, 1, x_56); -x_59 = l_Std_BitVec_reduceBin___lambda__2___closed__11; +x_59 = l_BitVec_reduceBin___lambda__2___closed__11; x_60 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_60, 0, x_58); lean_ctor_set(x_60, 1, x_59); @@ -14619,15 +13562,15 @@ lean_ctor_set(x_67, 0, x_66); x_68 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_68, 0, x_67); x_69 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_69, 0, x_54); +lean_ctor_set(x_69, 0, x_53); lean_ctor_set(x_69, 1, x_68); -x_70 = l_Std_BitVec_reduceBin___lambda__2___closed__13; +x_70 = l_BitVec_reduceBin___lambda__2___closed__13; x_71 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_71, 0, x_69); lean_ctor_set(x_71, 1, x_70); x_72 = lean_ctor_get(x_36, 1); lean_inc(x_72); -x_73 = l_Std_BitVec_toHex(x_39, x_72); +x_73 = l_BitVec_toHex(x_38, x_72); x_74 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_74, 0, x_73); x_75 = lean_alloc_ctor(5, 2, 0); @@ -14636,7 +13579,7 @@ lean_ctor_set(x_75, 1, x_74); x_76 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_76, 0, x_75); lean_ctor_set(x_76, 1, x_59); -x_77 = l_Nat_repr(x_39); +x_77 = l_Nat_repr(x_38); x_78 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_78, 0, x_77); x_79 = lean_alloc_ctor(5, 2, 0); @@ -14650,17 +13593,17 @@ lean_ctor_set(x_82, 0, x_81); x_83 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_83, 0, x_71); lean_ctor_set(x_83, 1, x_82); -x_84 = l_Std_BitVec_reduceBin___lambda__2___closed__15; +x_84 = l_BitVec_reduceBin___lambda__2___closed__15; x_85 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_85, 0, x_83); lean_ctor_set(x_85, 1, x_84); -x_86 = l_Lean_addTrace___at_Lean_Meta_Simp_congrArgs___spec__2(x_42, x_85, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_49); +x_86 = l_Lean_addTrace___at_Lean_Meta_Simp_congrArgs___spec__2(x_41, x_85, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_48); 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 = l_Std_BitVec_reduceSDiv___lambda__1(x_36, x_37, x_38, x_87, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_88); +x_89 = l_BitVec_reduceSDiv___lambda__1(x_23, x_36, x_37, x_87, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_88); lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); @@ -14669,15 +13612,15 @@ lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_87); -lean_dec(x_38); lean_dec(x_36); +lean_dec(x_23); return x_89; } } } else { -lean_object* x_90; lean_object* x_91; lean_object* x_92; lean_object* x_93; lean_object* x_94; uint8_t x_95; +lean_object* x_90; lean_object* x_91; lean_object* x_92; lean_object* x_93; uint8_t x_94; x_90 = lean_ctor_get(x_25, 1); lean_inc(x_90); lean_dec(x_25); @@ -14686,19 +13629,16 @@ lean_inc(x_91); lean_dec(x_26); x_92 = lean_ctor_get(x_23, 0); lean_inc(x_92); -x_93 = lean_ctor_get(x_23, 1); +x_93 = lean_ctor_get(x_91, 0); lean_inc(x_93); -lean_dec(x_23); -x_94 = lean_ctor_get(x_91, 0); -lean_inc(x_94); -x_95 = lean_nat_dec_eq(x_92, x_94); -if (x_95 == 0) +x_94 = lean_nat_dec_eq(x_92, x_93); +if (x_94 == 0) { -lean_object* x_96; lean_object* x_97; -lean_dec(x_94); +lean_object* x_95; lean_object* x_96; lean_dec(x_93); lean_dec(x_92); lean_dec(x_91); +lean_dec(x_23); lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); @@ -14707,66 +13647,67 @@ lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_2); -x_96 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; -x_97 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_97, 0, x_96); -lean_ctor_set(x_97, 1, x_90); -return x_97; +x_95 = l_BitVec_reduceUnary___lambda__1___closed__1; +x_96 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_96, 0, x_95); +lean_ctor_set(x_96, 1, x_90); +return x_96; } else { -lean_object* x_98; lean_object* x_99; lean_object* x_100; uint8_t x_101; -x_98 = l_Std_BitVec_reduceBin___lambda__2___closed__3; -x_99 = l_Lean_isTracingEnabledFor___at_Lean_Meta_Simp_congrArgs___spec__1(x_98, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_90); -x_100 = lean_ctor_get(x_99, 0); -lean_inc(x_100); -x_101 = lean_unbox(x_100); -lean_dec(x_100); -if (x_101 == 0) -{ -lean_object* x_102; lean_object* x_103; lean_object* x_104; -lean_dec(x_94); -lean_dec(x_2); -x_102 = lean_ctor_get(x_99, 1); -lean_inc(x_102); +lean_object* x_97; lean_object* x_98; lean_object* x_99; uint8_t x_100; +x_97 = l_BitVec_reduceBin___lambda__2___closed__3; +x_98 = l_Lean_isTracingEnabledFor___at_Lean_Meta_Simp_congrArgs___spec__1(x_97, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_90); +x_99 = lean_ctor_get(x_98, 0); +lean_inc(x_99); +x_100 = lean_unbox(x_99); lean_dec(x_99); -x_103 = lean_box(0); -x_104 = l_Std_BitVec_reduceSDiv___lambda__1(x_91, x_92, x_93, x_103, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_102); -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); +if (x_100 == 0) +{ +lean_object* x_101; lean_object* x_102; lean_object* x_103; lean_dec(x_93); +lean_dec(x_2); +x_101 = lean_ctor_get(x_98, 1); +lean_inc(x_101); +lean_dec(x_98); +x_102 = lean_box(0); +x_103 = l_BitVec_reduceSDiv___lambda__1(x_23, x_91, x_92, x_102, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_101); +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_91); -return x_104; +lean_dec(x_23); +return x_103; } else { -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; -x_105 = lean_ctor_get(x_99, 1); -lean_inc(x_105); -lean_dec(x_99); -x_106 = l_Lean_MessageData_ofName(x_2); -x_107 = l_Std_BitVec_reduceBin___lambda__2___closed__5; -x_108 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_108, 0, x_107); -lean_ctor_set(x_108, 1, x_106); -x_109 = l_Std_BitVec_reduceBin___lambda__2___closed__7; -x_110 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_110, 0, x_108); -lean_ctor_set(x_110, 1, x_109); -lean_inc(x_93); -x_111 = l_Std_BitVec_toHex(x_92, x_93); +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; +x_104 = lean_ctor_get(x_98, 1); +lean_inc(x_104); +lean_dec(x_98); +x_105 = l_Lean_MessageData_ofName(x_2); +x_106 = l_BitVec_reduceBin___lambda__2___closed__5; +x_107 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_107, 0, x_106); +lean_ctor_set(x_107, 1, x_105); +x_108 = l_BitVec_reduceBin___lambda__2___closed__7; +x_109 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_109, 0, x_107); +lean_ctor_set(x_109, 1, x_108); +x_110 = lean_ctor_get(x_23, 1); +lean_inc(x_110); +x_111 = l_BitVec_toHex(x_92, x_110); x_112 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_112, 0, x_111); -x_113 = l_Std_BitVec_reduceBin___lambda__2___closed__9; +x_113 = l_BitVec_reduceBin___lambda__2___closed__9; x_114 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_114, 0, x_113); lean_ctor_set(x_114, 1, x_112); -x_115 = l_Std_BitVec_reduceBin___lambda__2___closed__11; +x_115 = l_BitVec_reduceBin___lambda__2___closed__11; x_116 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_116, 0, x_114); lean_ctor_set(x_116, 1, x_115); @@ -14785,15 +13726,15 @@ lean_ctor_set(x_123, 0, x_122); x_124 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_124, 0, x_123); x_125 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_125, 0, x_110); +lean_ctor_set(x_125, 0, x_109); lean_ctor_set(x_125, 1, x_124); -x_126 = l_Std_BitVec_reduceBin___lambda__2___closed__13; +x_126 = l_BitVec_reduceBin___lambda__2___closed__13; x_127 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_127, 0, x_125); lean_ctor_set(x_127, 1, x_126); x_128 = lean_ctor_get(x_91, 1); lean_inc(x_128); -x_129 = l_Std_BitVec_toHex(x_94, x_128); +x_129 = l_BitVec_toHex(x_93, x_128); x_130 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_130, 0, x_129); x_131 = lean_alloc_ctor(5, 2, 0); @@ -14802,7 +13743,7 @@ lean_ctor_set(x_131, 1, x_130); x_132 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_132, 0, x_131); lean_ctor_set(x_132, 1, x_115); -x_133 = l_Nat_repr(x_94); +x_133 = l_Nat_repr(x_93); x_134 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_134, 0, x_133); x_135 = lean_alloc_ctor(5, 2, 0); @@ -14816,17 +13757,17 @@ lean_ctor_set(x_138, 0, x_137); x_139 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_139, 0, x_127); lean_ctor_set(x_139, 1, x_138); -x_140 = l_Std_BitVec_reduceBin___lambda__2___closed__15; +x_140 = l_BitVec_reduceBin___lambda__2___closed__15; x_141 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_141, 0, x_139); lean_ctor_set(x_141, 1, x_140); -x_142 = l_Lean_addTrace___at_Lean_Meta_Simp_congrArgs___spec__2(x_98, x_141, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_105); +x_142 = l_Lean_addTrace___at_Lean_Meta_Simp_congrArgs___spec__2(x_97, x_141, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_104); x_143 = lean_ctor_get(x_142, 0); lean_inc(x_143); x_144 = lean_ctor_get(x_142, 1); lean_inc(x_144); lean_dec(x_142); -x_145 = l_Std_BitVec_reduceSDiv___lambda__1(x_91, x_92, x_93, x_143, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_144); +x_145 = l_BitVec_reduceSDiv___lambda__1(x_23, x_91, x_92, x_143, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_144); lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); @@ -14835,8 +13776,8 @@ lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_143); -lean_dec(x_93); lean_dec(x_91); +lean_dec(x_23); return x_145; } } @@ -14909,7 +13850,7 @@ return x_153; } } } -static lean_object* _init_l_Std_BitVec_reduceSDiv___closed__1() { +static lean_object* _init_l_BitVec_reduceSDiv___closed__1() { _start: { lean_object* x_1; @@ -14917,22 +13858,21 @@ x_1 = lean_mk_string_from_bytes("sdiv", 4); return x_1; } } -static lean_object* _init_l_Std_BitVec_reduceSDiv___closed__2() { +static lean_object* _init_l_BitVec_reduceSDiv___closed__2() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f___closed__4; -x_2 = l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f___closed__5; -x_3 = l_Std_BitVec_reduceSDiv___closed__1; -x_4 = l_Lean_Name_mkStr3(x_1, x_2, x_3); -return x_4; +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_BitVec_reduceUnary___lambda__1___closed__2; +x_2 = l_BitVec_reduceSDiv___closed__1; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; } } -LEAN_EXPORT lean_object* l_Std_BitVec_reduceSDiv(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_EXPORT lean_object* l_BitVec_reduceSDiv(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; uint8_t x_12; -x_10 = l_Std_BitVec_reduceSDiv___closed__2; +x_10 = l_BitVec_reduceSDiv___closed__2; x_11 = lean_unsigned_to_nat(3u); x_12 = l_Lean_Expr_isAppOfArity(x_1, x_10, x_11); if (x_12 == 0) @@ -14946,7 +13886,7 @@ lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_13 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_13 = l_BitVec_reduceUnary___lambda__1___closed__1; x_14 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_14, 0, x_13); lean_ctor_set(x_14, 1, x_9); @@ -14956,16 +13896,16 @@ else { lean_object* x_15; lean_object* x_16; x_15 = lean_box(0); -x_16 = l_Std_BitVec_reduceSDiv___lambda__2(x_1, x_10, x_15, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_16 = l_BitVec_reduceSDiv___lambda__2(x_1, x_10, x_15, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); return x_16; } } } -LEAN_EXPORT lean_object* l_Std_BitVec_reduceSDiv___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, lean_object* x_11, lean_object* x_12) { +LEAN_EXPORT lean_object* l_BitVec_reduceSDiv___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, lean_object* x_11, lean_object* x_12) { _start: { lean_object* x_13; -x_13 = l_Std_BitVec_reduceSDiv___lambda__1(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 = l_BitVec_reduceSDiv___lambda__1(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_9); @@ -14974,12 +13914,12 @@ 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_13; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1921____closed__1() { +static lean_object* _init_l___regBuiltin_BitVec_reduceSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1698____closed__1() { _start: { lean_object* x_1; @@ -14987,22 +13927,21 @@ x_1 = lean_mk_string_from_bytes("reduceSDiv", 10); return x_1; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1921____closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f___closed__4; -x_2 = l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f___closed__5; -x_3 = l___regBuiltin_Std_BitVec_reduceSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1921____closed__1; -x_4 = l_Lean_Name_mkStr3(x_1, x_2, x_3); -return x_4; -} -} -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1921____closed__3() { +static lean_object* _init_l___regBuiltin_BitVec_reduceSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1698____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Std_BitVec_reduceSDiv___closed__2; +x_1 = l_BitVec_reduceUnary___lambda__1___closed__2; +x_2 = l___regBuiltin_BitVec_reduceSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1698____closed__1; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___regBuiltin_BitVec_reduceSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1698____closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_BitVec_reduceSDiv___closed__2; x_2 = lean_unsigned_to_nat(3u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -15010,116 +13949,117 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1921____closed__4() { +static lean_object* _init_l___regBuiltin_BitVec_reduceSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1698____closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceUMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1791____closed__4; -x_2 = l___regBuiltin_Std_BitVec_reduceSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1921____closed__3; +x_1 = l___regBuiltin_BitVec_reduceUMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1568____closed__4; +x_2 = l___regBuiltin_BitVec_reduceSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1698____closed__3; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1921____closed__5() { +static lean_object* _init_l___regBuiltin_BitVec_reduceSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1698____closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1921____closed__4; +x_1 = l___regBuiltin_BitVec_reduceSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1698____closed__4; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1921____closed__6() { +static lean_object* _init_l___regBuiltin_BitVec_reduceSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1698____closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1921____closed__5; +x_1 = l___regBuiltin_BitVec_reduceSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1698____closed__5; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1921____closed__7() { +static lean_object* _init_l___regBuiltin_BitVec_reduceSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1698____closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1921____closed__6; +x_1 = l___regBuiltin_BitVec_reduceSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1698____closed__6; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1921____closed__8() { +static lean_object* _init_l___regBuiltin_BitVec_reduceSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1698____closed__8() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Std_BitVec_reduceSDiv), 9, 0); +x_1 = lean_alloc_closure((void*)(l_BitVec_reduceSDiv), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1921_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1698_(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_Std_BitVec_reduceSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1921____closed__2; -x_3 = l___regBuiltin_Std_BitVec_reduceSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1921____closed__7; -x_4 = l___regBuiltin_Std_BitVec_reduceSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1921____closed__8; +x_2 = l___regBuiltin_BitVec_reduceSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1698____closed__2; +x_3 = l___regBuiltin_BitVec_reduceSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1698____closed__7; +x_4 = l___regBuiltin_BitVec_reduceSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1698____closed__8; x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); return x_5; } } -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1923_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1700_(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_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1373____closed__1; -x_3 = l___regBuiltin_Std_BitVec_reduceSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1921____closed__2; +x_2 = l___regBuiltin_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1150____closed__1; +x_3 = l___regBuiltin_BitVec_reduceSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1698____closed__2; x_4 = 1; -x_5 = l___regBuiltin_Std_BitVec_reduceSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1921____closed__8; +x_5 = l___regBuiltin_BitVec_reduceSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1698____closed__8; 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_Std_BitVec_reduceSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1925_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1702_(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_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1375____closed__1; -x_3 = l___regBuiltin_Std_BitVec_reduceSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1921____closed__2; +x_2 = l___regBuiltin_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1152____closed__1; +x_3 = l___regBuiltin_BitVec_reduceSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1698____closed__2; x_4 = 1; -x_5 = l___regBuiltin_Std_BitVec_reduceSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1921____closed__8; +x_5 = l___regBuiltin_BitVec_reduceSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1698____closed__8; 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_Std_BitVec_reduceSMTSDiv___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, lean_object* x_11, lean_object* x_12) { +LEAN_EXPORT lean_object* l_BitVec_reduceSMTSDiv___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, lean_object* x_11, lean_object* x_12) { _start: { -lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; uint32_t x_18; uint8_t x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; +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; uint32_t x_21; uint8_t x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; x_13 = lean_ctor_get(x_1, 1); -x_14 = l_Std_BitVec_smtSDiv(x_2, x_3, x_13); -x_15 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_15, 0, x_2); -lean_ctor_set(x_15, 1, x_14); -x_16 = l_Std_BitVec_Literal_toExpr(x_15); -x_17 = lean_box(0); -x_18 = 0; -x_19 = 1; -x_20 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_20, 0, x_16); -lean_ctor_set(x_20, 1, x_17); -lean_ctor_set_uint32(x_20, sizeof(void*)*2, x_18); -lean_ctor_set_uint8(x_20, sizeof(void*)*2 + 4, x_19); -x_21 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_21, 0, x_20); -x_22 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_22, 0, x_21); -lean_ctor_set(x_22, 1, x_12); -return x_22; +x_14 = lean_ctor_get(x_2, 1); +x_15 = l_BitVec_smtSDiv(x_3, x_13, x_14); +x_16 = l_Lean_mkNatLit(x_3); +x_17 = l_Lean_mkNatLit(x_15); +x_18 = l_BitVec_reduceUnary___lambda__1___closed__5; +x_19 = l_Lean_mkAppB(x_18, x_16, x_17); +x_20 = lean_box(0); +x_21 = 0; +x_22 = 1; +x_23 = lean_alloc_ctor(0, 2, 5); +lean_ctor_set(x_23, 0, x_19); +lean_ctor_set(x_23, 1, x_20); +lean_ctor_set_uint32(x_23, sizeof(void*)*2, x_21); +lean_ctor_set_uint8(x_23, sizeof(void*)*2 + 4, x_22); +x_24 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_24, 0, x_23); +x_25 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_25, 0, x_24); +lean_ctor_set(x_25, 1, x_12); +return x_25; } } -LEAN_EXPORT lean_object* l_Std_BitVec_reduceSMTSDiv___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_EXPORT lean_object* l_BitVec_reduceSMTSDiv___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) { _start: { lean_object* x_12; lean_object* x_13; lean_object* x_14; @@ -15132,7 +14072,8 @@ lean_inc(x_10); lean_inc(x_9); lean_inc(x_8); lean_inc(x_7); -x_14 = l_Std_BitVec_fromExpr_x3f(x_13, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +x_14 = l_BitVec_fromExpr_x3f(x_13, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_13); if (lean_obj_tag(x_14) == 0) { lean_object* x_15; @@ -15156,7 +14097,7 @@ if (x_16 == 0) lean_object* x_17; lean_object* x_18; x_17 = lean_ctor_get(x_14, 0); lean_dec(x_17); -x_18 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_18 = l_BitVec_reduceUnary___lambda__1___closed__1; lean_ctor_set(x_14, 0, x_18); return x_14; } @@ -15166,7 +14107,7 @@ lean_object* x_19; lean_object* x_20; lean_object* x_21; x_19 = lean_ctor_get(x_14, 1); lean_inc(x_19); lean_dec(x_14); -x_20 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_20 = l_BitVec_reduceUnary___lambda__1___closed__1; x_21 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_21, 0, x_20); lean_ctor_set(x_21, 1, x_19); @@ -15188,7 +14129,8 @@ lean_inc(x_10); lean_inc(x_9); lean_inc(x_8); lean_inc(x_7); -x_25 = l_Std_BitVec_fromExpr_x3f(x_24, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_22); +x_25 = l_BitVec_fromExpr_x3f(x_24, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_22); +lean_dec(x_24); if (lean_obj_tag(x_25) == 0) { lean_object* x_26; @@ -15212,7 +14154,7 @@ if (x_27 == 0) lean_object* x_28; lean_object* x_29; x_28 = lean_ctor_get(x_25, 0); lean_dec(x_28); -x_29 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_29 = l_BitVec_reduceUnary___lambda__1___closed__1; lean_ctor_set(x_25, 0, x_29); return x_25; } @@ -15222,7 +14164,7 @@ lean_object* x_30; lean_object* x_31; lean_object* x_32; x_30 = lean_ctor_get(x_25, 1); lean_inc(x_30); lean_dec(x_25); -x_31 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_31 = l_BitVec_reduceUnary___lambda__1___closed__1; x_32 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_32, 0, x_31); lean_ctor_set(x_32, 1, x_30); @@ -15235,7 +14177,7 @@ uint8_t x_33; x_33 = !lean_is_exclusive(x_25); if (x_33 == 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; uint8_t x_40; +lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; uint8_t x_39; x_34 = lean_ctor_get(x_25, 1); x_35 = lean_ctor_get(x_25, 0); lean_dec(x_35); @@ -15244,19 +14186,16 @@ lean_inc(x_36); lean_dec(x_26); x_37 = lean_ctor_get(x_23, 0); lean_inc(x_37); -x_38 = lean_ctor_get(x_23, 1); +x_38 = lean_ctor_get(x_36, 0); lean_inc(x_38); -lean_dec(x_23); -x_39 = lean_ctor_get(x_36, 0); -lean_inc(x_39); -x_40 = lean_nat_dec_eq(x_37, x_39); -if (x_40 == 0) +x_39 = lean_nat_dec_eq(x_37, x_38); +if (x_39 == 0) { -lean_object* x_41; -lean_dec(x_39); +lean_object* x_40; lean_dec(x_38); lean_dec(x_37); lean_dec(x_36); +lean_dec(x_23); lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); @@ -15265,30 +14204,30 @@ lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_2); -x_41 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; -lean_ctor_set(x_25, 0, x_41); +x_40 = l_BitVec_reduceUnary___lambda__1___closed__1; +lean_ctor_set(x_25, 0, x_40); return x_25; } else { -lean_object* x_42; lean_object* x_43; lean_object* x_44; uint8_t x_45; +lean_object* x_41; lean_object* x_42; lean_object* x_43; uint8_t x_44; lean_free_object(x_25); -x_42 = l_Std_BitVec_reduceBin___lambda__2___closed__3; -x_43 = l_Lean_isTracingEnabledFor___at_Lean_Meta_Simp_congrArgs___spec__1(x_42, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_34); -x_44 = lean_ctor_get(x_43, 0); -lean_inc(x_44); -x_45 = lean_unbox(x_44); -lean_dec(x_44); -if (x_45 == 0) -{ -lean_object* x_46; lean_object* x_47; lean_object* x_48; -lean_dec(x_39); -lean_dec(x_2); -x_46 = lean_ctor_get(x_43, 1); -lean_inc(x_46); +x_41 = l_BitVec_reduceBin___lambda__2___closed__3; +x_42 = l_Lean_isTracingEnabledFor___at_Lean_Meta_Simp_congrArgs___spec__1(x_41, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_34); +x_43 = lean_ctor_get(x_42, 0); +lean_inc(x_43); +x_44 = lean_unbox(x_43); lean_dec(x_43); -x_47 = lean_box(0); -x_48 = l_Std_BitVec_reduceSMTSDiv___lambda__1(x_36, x_37, x_38, x_47, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_46); +if (x_44 == 0) +{ +lean_object* x_45; lean_object* x_46; lean_object* x_47; +lean_dec(x_38); +lean_dec(x_2); +x_45 = lean_ctor_get(x_42, 1); +lean_inc(x_45); +lean_dec(x_42); +x_46 = lean_box(0); +x_47 = l_BitVec_reduceSMTSDiv___lambda__1(x_23, x_36, x_37, x_46, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_45); lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); @@ -15296,34 +14235,35 @@ lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); -lean_dec(x_38); lean_dec(x_36); -return x_48; +lean_dec(x_23); +return x_47; } else { -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; -x_49 = lean_ctor_get(x_43, 1); -lean_inc(x_49); -lean_dec(x_43); -x_50 = l_Lean_MessageData_ofName(x_2); -x_51 = l_Std_BitVec_reduceBin___lambda__2___closed__5; -x_52 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_52, 0, x_51); -lean_ctor_set(x_52, 1, x_50); -x_53 = l_Std_BitVec_reduceBin___lambda__2___closed__7; -x_54 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_54, 0, x_52); -lean_ctor_set(x_54, 1, x_53); -lean_inc(x_38); -x_55 = l_Std_BitVec_toHex(x_37, x_38); +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; +x_48 = lean_ctor_get(x_42, 1); +lean_inc(x_48); +lean_dec(x_42); +x_49 = l_Lean_MessageData_ofName(x_2); +x_50 = l_BitVec_reduceBin___lambda__2___closed__5; +x_51 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_51, 0, x_50); +lean_ctor_set(x_51, 1, x_49); +x_52 = l_BitVec_reduceBin___lambda__2___closed__7; +x_53 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_53, 0, x_51); +lean_ctor_set(x_53, 1, x_52); +x_54 = lean_ctor_get(x_23, 1); +lean_inc(x_54); +x_55 = l_BitVec_toHex(x_37, x_54); x_56 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_56, 0, x_55); -x_57 = l_Std_BitVec_reduceBin___lambda__2___closed__9; +x_57 = l_BitVec_reduceBin___lambda__2___closed__9; x_58 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_58, 0, x_57); lean_ctor_set(x_58, 1, x_56); -x_59 = l_Std_BitVec_reduceBin___lambda__2___closed__11; +x_59 = l_BitVec_reduceBin___lambda__2___closed__11; x_60 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_60, 0, x_58); lean_ctor_set(x_60, 1, x_59); @@ -15342,15 +14282,15 @@ lean_ctor_set(x_67, 0, x_66); x_68 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_68, 0, x_67); x_69 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_69, 0, x_54); +lean_ctor_set(x_69, 0, x_53); lean_ctor_set(x_69, 1, x_68); -x_70 = l_Std_BitVec_reduceBin___lambda__2___closed__13; +x_70 = l_BitVec_reduceBin___lambda__2___closed__13; x_71 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_71, 0, x_69); lean_ctor_set(x_71, 1, x_70); x_72 = lean_ctor_get(x_36, 1); lean_inc(x_72); -x_73 = l_Std_BitVec_toHex(x_39, x_72); +x_73 = l_BitVec_toHex(x_38, x_72); x_74 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_74, 0, x_73); x_75 = lean_alloc_ctor(5, 2, 0); @@ -15359,7 +14299,7 @@ lean_ctor_set(x_75, 1, x_74); x_76 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_76, 0, x_75); lean_ctor_set(x_76, 1, x_59); -x_77 = l_Nat_repr(x_39); +x_77 = l_Nat_repr(x_38); x_78 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_78, 0, x_77); x_79 = lean_alloc_ctor(5, 2, 0); @@ -15373,17 +14313,17 @@ lean_ctor_set(x_82, 0, x_81); x_83 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_83, 0, x_71); lean_ctor_set(x_83, 1, x_82); -x_84 = l_Std_BitVec_reduceBin___lambda__2___closed__15; +x_84 = l_BitVec_reduceBin___lambda__2___closed__15; x_85 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_85, 0, x_83); lean_ctor_set(x_85, 1, x_84); -x_86 = l_Lean_addTrace___at_Lean_Meta_Simp_congrArgs___spec__2(x_42, x_85, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_49); +x_86 = l_Lean_addTrace___at_Lean_Meta_Simp_congrArgs___spec__2(x_41, x_85, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_48); 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 = l_Std_BitVec_reduceSMTSDiv___lambda__1(x_36, x_37, x_38, x_87, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_88); +x_89 = l_BitVec_reduceSMTSDiv___lambda__1(x_23, x_36, x_37, x_87, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_88); lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); @@ -15392,15 +14332,15 @@ lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_87); -lean_dec(x_38); lean_dec(x_36); +lean_dec(x_23); return x_89; } } } else { -lean_object* x_90; lean_object* x_91; lean_object* x_92; lean_object* x_93; lean_object* x_94; uint8_t x_95; +lean_object* x_90; lean_object* x_91; lean_object* x_92; lean_object* x_93; uint8_t x_94; x_90 = lean_ctor_get(x_25, 1); lean_inc(x_90); lean_dec(x_25); @@ -15409,19 +14349,16 @@ lean_inc(x_91); lean_dec(x_26); x_92 = lean_ctor_get(x_23, 0); lean_inc(x_92); -x_93 = lean_ctor_get(x_23, 1); +x_93 = lean_ctor_get(x_91, 0); lean_inc(x_93); -lean_dec(x_23); -x_94 = lean_ctor_get(x_91, 0); -lean_inc(x_94); -x_95 = lean_nat_dec_eq(x_92, x_94); -if (x_95 == 0) +x_94 = lean_nat_dec_eq(x_92, x_93); +if (x_94 == 0) { -lean_object* x_96; lean_object* x_97; -lean_dec(x_94); +lean_object* x_95; lean_object* x_96; lean_dec(x_93); lean_dec(x_92); lean_dec(x_91); +lean_dec(x_23); lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); @@ -15430,66 +14367,67 @@ lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_2); -x_96 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; -x_97 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_97, 0, x_96); -lean_ctor_set(x_97, 1, x_90); -return x_97; +x_95 = l_BitVec_reduceUnary___lambda__1___closed__1; +x_96 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_96, 0, x_95); +lean_ctor_set(x_96, 1, x_90); +return x_96; } else { -lean_object* x_98; lean_object* x_99; lean_object* x_100; uint8_t x_101; -x_98 = l_Std_BitVec_reduceBin___lambda__2___closed__3; -x_99 = l_Lean_isTracingEnabledFor___at_Lean_Meta_Simp_congrArgs___spec__1(x_98, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_90); -x_100 = lean_ctor_get(x_99, 0); -lean_inc(x_100); -x_101 = lean_unbox(x_100); -lean_dec(x_100); -if (x_101 == 0) -{ -lean_object* x_102; lean_object* x_103; lean_object* x_104; -lean_dec(x_94); -lean_dec(x_2); -x_102 = lean_ctor_get(x_99, 1); -lean_inc(x_102); +lean_object* x_97; lean_object* x_98; lean_object* x_99; uint8_t x_100; +x_97 = l_BitVec_reduceBin___lambda__2___closed__3; +x_98 = l_Lean_isTracingEnabledFor___at_Lean_Meta_Simp_congrArgs___spec__1(x_97, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_90); +x_99 = lean_ctor_get(x_98, 0); +lean_inc(x_99); +x_100 = lean_unbox(x_99); lean_dec(x_99); -x_103 = lean_box(0); -x_104 = l_Std_BitVec_reduceSMTSDiv___lambda__1(x_91, x_92, x_93, x_103, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_102); -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); +if (x_100 == 0) +{ +lean_object* x_101; lean_object* x_102; lean_object* x_103; lean_dec(x_93); +lean_dec(x_2); +x_101 = lean_ctor_get(x_98, 1); +lean_inc(x_101); +lean_dec(x_98); +x_102 = lean_box(0); +x_103 = l_BitVec_reduceSMTSDiv___lambda__1(x_23, x_91, x_92, x_102, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_101); +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_91); -return x_104; +lean_dec(x_23); +return x_103; } else { -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; -x_105 = lean_ctor_get(x_99, 1); -lean_inc(x_105); -lean_dec(x_99); -x_106 = l_Lean_MessageData_ofName(x_2); -x_107 = l_Std_BitVec_reduceBin___lambda__2___closed__5; -x_108 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_108, 0, x_107); -lean_ctor_set(x_108, 1, x_106); -x_109 = l_Std_BitVec_reduceBin___lambda__2___closed__7; -x_110 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_110, 0, x_108); -lean_ctor_set(x_110, 1, x_109); -lean_inc(x_93); -x_111 = l_Std_BitVec_toHex(x_92, x_93); +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; +x_104 = lean_ctor_get(x_98, 1); +lean_inc(x_104); +lean_dec(x_98); +x_105 = l_Lean_MessageData_ofName(x_2); +x_106 = l_BitVec_reduceBin___lambda__2___closed__5; +x_107 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_107, 0, x_106); +lean_ctor_set(x_107, 1, x_105); +x_108 = l_BitVec_reduceBin___lambda__2___closed__7; +x_109 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_109, 0, x_107); +lean_ctor_set(x_109, 1, x_108); +x_110 = lean_ctor_get(x_23, 1); +lean_inc(x_110); +x_111 = l_BitVec_toHex(x_92, x_110); x_112 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_112, 0, x_111); -x_113 = l_Std_BitVec_reduceBin___lambda__2___closed__9; +x_113 = l_BitVec_reduceBin___lambda__2___closed__9; x_114 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_114, 0, x_113); lean_ctor_set(x_114, 1, x_112); -x_115 = l_Std_BitVec_reduceBin___lambda__2___closed__11; +x_115 = l_BitVec_reduceBin___lambda__2___closed__11; x_116 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_116, 0, x_114); lean_ctor_set(x_116, 1, x_115); @@ -15508,15 +14446,15 @@ lean_ctor_set(x_123, 0, x_122); x_124 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_124, 0, x_123); x_125 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_125, 0, x_110); +lean_ctor_set(x_125, 0, x_109); lean_ctor_set(x_125, 1, x_124); -x_126 = l_Std_BitVec_reduceBin___lambda__2___closed__13; +x_126 = l_BitVec_reduceBin___lambda__2___closed__13; x_127 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_127, 0, x_125); lean_ctor_set(x_127, 1, x_126); x_128 = lean_ctor_get(x_91, 1); lean_inc(x_128); -x_129 = l_Std_BitVec_toHex(x_94, x_128); +x_129 = l_BitVec_toHex(x_93, x_128); x_130 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_130, 0, x_129); x_131 = lean_alloc_ctor(5, 2, 0); @@ -15525,7 +14463,7 @@ lean_ctor_set(x_131, 1, x_130); x_132 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_132, 0, x_131); lean_ctor_set(x_132, 1, x_115); -x_133 = l_Nat_repr(x_94); +x_133 = l_Nat_repr(x_93); x_134 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_134, 0, x_133); x_135 = lean_alloc_ctor(5, 2, 0); @@ -15539,17 +14477,17 @@ lean_ctor_set(x_138, 0, x_137); x_139 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_139, 0, x_127); lean_ctor_set(x_139, 1, x_138); -x_140 = l_Std_BitVec_reduceBin___lambda__2___closed__15; +x_140 = l_BitVec_reduceBin___lambda__2___closed__15; x_141 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_141, 0, x_139); lean_ctor_set(x_141, 1, x_140); -x_142 = l_Lean_addTrace___at_Lean_Meta_Simp_congrArgs___spec__2(x_98, x_141, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_105); +x_142 = l_Lean_addTrace___at_Lean_Meta_Simp_congrArgs___spec__2(x_97, x_141, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_104); x_143 = lean_ctor_get(x_142, 0); lean_inc(x_143); x_144 = lean_ctor_get(x_142, 1); lean_inc(x_144); lean_dec(x_142); -x_145 = l_Std_BitVec_reduceSMTSDiv___lambda__1(x_91, x_92, x_93, x_143, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_144); +x_145 = l_BitVec_reduceSMTSDiv___lambda__1(x_23, x_91, x_92, x_143, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_144); lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); @@ -15558,8 +14496,8 @@ lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_143); -lean_dec(x_93); lean_dec(x_91); +lean_dec(x_23); return x_145; } } @@ -15632,7 +14570,7 @@ return x_153; } } } -static lean_object* _init_l_Std_BitVec_reduceSMTSDiv___closed__1() { +static lean_object* _init_l_BitVec_reduceSMTSDiv___closed__1() { _start: { lean_object* x_1; @@ -15640,22 +14578,21 @@ x_1 = lean_mk_string_from_bytes("smtSDiv", 7); return x_1; } } -static lean_object* _init_l_Std_BitVec_reduceSMTSDiv___closed__2() { +static lean_object* _init_l_BitVec_reduceSMTSDiv___closed__2() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f___closed__4; -x_2 = l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f___closed__5; -x_3 = l_Std_BitVec_reduceSMTSDiv___closed__1; -x_4 = l_Lean_Name_mkStr3(x_1, x_2, x_3); -return x_4; +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_BitVec_reduceUnary___lambda__1___closed__2; +x_2 = l_BitVec_reduceSMTSDiv___closed__1; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; } } -LEAN_EXPORT lean_object* l_Std_BitVec_reduceSMTSDiv(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_EXPORT lean_object* l_BitVec_reduceSMTSDiv(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; uint8_t x_12; -x_10 = l_Std_BitVec_reduceSMTSDiv___closed__2; +x_10 = l_BitVec_reduceSMTSDiv___closed__2; x_11 = lean_unsigned_to_nat(3u); x_12 = l_Lean_Expr_isAppOfArity(x_1, x_10, x_11); if (x_12 == 0) @@ -15669,7 +14606,7 @@ lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_13 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_13 = l_BitVec_reduceUnary___lambda__1___closed__1; x_14 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_14, 0, x_13); lean_ctor_set(x_14, 1, x_9); @@ -15679,16 +14616,16 @@ else { lean_object* x_15; lean_object* x_16; x_15 = lean_box(0); -x_16 = l_Std_BitVec_reduceSMTSDiv___lambda__2(x_1, x_10, x_15, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_16 = l_BitVec_reduceSMTSDiv___lambda__2(x_1, x_10, x_15, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); return x_16; } } } -LEAN_EXPORT lean_object* l_Std_BitVec_reduceSMTSDiv___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, lean_object* x_11, lean_object* x_12) { +LEAN_EXPORT lean_object* l_BitVec_reduceSMTSDiv___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, lean_object* x_11, lean_object* x_12) { _start: { lean_object* x_13; -x_13 = l_Std_BitVec_reduceSMTSDiv___lambda__1(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 = l_BitVec_reduceSMTSDiv___lambda__1(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_9); @@ -15697,12 +14634,12 @@ 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_13; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceSMTSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1947____closed__1() { +static lean_object* _init_l___regBuiltin_BitVec_reduceSMTSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1724____closed__1() { _start: { lean_object* x_1; @@ -15710,22 +14647,21 @@ x_1 = lean_mk_string_from_bytes("reduceSMTSDiv", 13); return x_1; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceSMTSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1947____closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f___closed__4; -x_2 = l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f___closed__5; -x_3 = l___regBuiltin_Std_BitVec_reduceSMTSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1947____closed__1; -x_4 = l_Lean_Name_mkStr3(x_1, x_2, x_3); -return x_4; -} -} -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceSMTSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1947____closed__3() { +static lean_object* _init_l___regBuiltin_BitVec_reduceSMTSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1724____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Std_BitVec_reduceSMTSDiv___closed__2; +x_1 = l_BitVec_reduceUnary___lambda__1___closed__2; +x_2 = l___regBuiltin_BitVec_reduceSMTSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1724____closed__1; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___regBuiltin_BitVec_reduceSMTSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1724____closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_BitVec_reduceSMTSDiv___closed__2; x_2 = lean_unsigned_to_nat(3u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -15733,90 +14669,90 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceSMTSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1947____closed__4() { +static lean_object* _init_l___regBuiltin_BitVec_reduceSMTSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1724____closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceUMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1791____closed__4; -x_2 = l___regBuiltin_Std_BitVec_reduceSMTSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1947____closed__3; +x_1 = l___regBuiltin_BitVec_reduceUMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1568____closed__4; +x_2 = l___regBuiltin_BitVec_reduceSMTSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1724____closed__3; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceSMTSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1947____closed__5() { +static lean_object* _init_l___regBuiltin_BitVec_reduceSMTSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1724____closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceSMTSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1947____closed__4; +x_1 = l___regBuiltin_BitVec_reduceSMTSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1724____closed__4; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceSMTSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1947____closed__6() { +static lean_object* _init_l___regBuiltin_BitVec_reduceSMTSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1724____closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceSMTSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1947____closed__5; +x_1 = l___regBuiltin_BitVec_reduceSMTSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1724____closed__5; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceSMTSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1947____closed__7() { +static lean_object* _init_l___regBuiltin_BitVec_reduceSMTSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1724____closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceSMTSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1947____closed__6; +x_1 = l___regBuiltin_BitVec_reduceSMTSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1724____closed__6; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceSMTSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1947____closed__8() { +static lean_object* _init_l___regBuiltin_BitVec_reduceSMTSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1724____closed__8() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Std_BitVec_reduceSMTSDiv), 9, 0); +x_1 = lean_alloc_closure((void*)(l_BitVec_reduceSMTSDiv), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceSMTSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1947_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceSMTSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1724_(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_Std_BitVec_reduceSMTSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1947____closed__2; -x_3 = l___regBuiltin_Std_BitVec_reduceSMTSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1947____closed__7; -x_4 = l___regBuiltin_Std_BitVec_reduceSMTSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1947____closed__8; +x_2 = l___regBuiltin_BitVec_reduceSMTSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1724____closed__2; +x_3 = l___regBuiltin_BitVec_reduceSMTSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1724____closed__7; +x_4 = l___regBuiltin_BitVec_reduceSMTSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1724____closed__8; x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); return x_5; } } -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceSMTSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1949_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceSMTSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1726_(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_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1373____closed__1; -x_3 = l___regBuiltin_Std_BitVec_reduceSMTSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1947____closed__2; +x_2 = l___regBuiltin_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1150____closed__1; +x_3 = l___regBuiltin_BitVec_reduceSMTSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1724____closed__2; x_4 = 1; -x_5 = l___regBuiltin_Std_BitVec_reduceSMTSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1947____closed__8; +x_5 = l___regBuiltin_BitVec_reduceSMTSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1724____closed__8; 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_Std_BitVec_reduceSMTSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1951_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceSMTSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1728_(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_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1375____closed__1; -x_3 = l___regBuiltin_Std_BitVec_reduceSMTSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1947____closed__2; +x_2 = l___regBuiltin_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1152____closed__1; +x_3 = l___regBuiltin_BitVec_reduceSMTSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1724____closed__2; x_4 = 1; -x_5 = l___regBuiltin_Std_BitVec_reduceSMTSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1947____closed__8; +x_5 = l___regBuiltin_BitVec_reduceSMTSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1724____closed__8; 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_Std_BitVec_reduceGetLsb___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) { +LEAN_EXPORT lean_object* l_BitVec_reduceGetLsb___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; @@ -15828,7 +14764,8 @@ lean_inc(x_9); lean_inc(x_8); lean_inc(x_7); lean_inc(x_6); -x_13 = l_Std_BitVec_fromExpr_x3f(x_12, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_13 = l_BitVec_fromExpr_x3f(x_12, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_12); if (lean_obj_tag(x_13) == 0) { lean_object* x_14; @@ -15848,7 +14785,7 @@ if (x_15 == 0) lean_object* x_16; lean_object* x_17; x_16 = lean_ctor_get(x_13, 0); lean_dec(x_16); -x_17 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_17 = l_BitVec_reduceUnary___lambda__1___closed__1; lean_ctor_set(x_13, 0, x_17); return x_13; } @@ -15858,7 +14795,7 @@ lean_object* x_18; lean_object* x_19; lean_object* x_20; x_18 = lean_ctor_get(x_13, 1); lean_inc(x_18); lean_dec(x_13); -x_19 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_19 = l_BitVec_reduceUnary___lambda__1___closed__1; x_20 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_20, 0, x_19); lean_ctor_set(x_20, 1, x_18); @@ -15876,8 +14813,7 @@ lean_inc(x_22); lean_dec(x_14); x_23 = l_Lean_Expr_appArg_x21(x_1); lean_dec(x_1); -x_24 = l_Nat_fromExpr_x3f(x_23, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_21); -lean_dec(x_6); +x_24 = l_Lean_Meta_getNatValue_x3f(x_23, x_6, x_7, x_8, x_9, x_21); if (lean_obj_tag(x_24) == 0) { lean_object* x_25; @@ -15893,7 +14829,7 @@ if (x_26 == 0) lean_object* x_27; lean_object* x_28; x_27 = lean_ctor_get(x_24, 0); lean_dec(x_27); -x_28 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_28 = l_BitVec_reduceUnary___lambda__1___closed__1; lean_ctor_set(x_24, 0, x_28); return x_24; } @@ -15903,7 +14839,7 @@ lean_object* x_29; lean_object* x_30; lean_object* x_31; x_29 = lean_ctor_get(x_24, 1); lean_inc(x_29); lean_dec(x_24); -x_30 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_30 = l_BitVec_reduceUnary___lambda__1___closed__1; x_31 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_31, 0, x_30); lean_ctor_set(x_31, 1, x_29); @@ -15931,14 +14867,14 @@ lean_dec(x_35); if (x_36 == 0) { lean_object* x_37; -x_37 = l_Std_BitVec_reduceGetBit___lambda__1___closed__6; +x_37 = l_BitVec_reduceGetBit___lambda__1___closed__6; lean_ctor_set(x_24, 0, x_37); return x_24; } else { lean_object* x_38; -x_38 = l_Std_BitVec_reduceGetBit___lambda__1___closed__11; +x_38 = l_BitVec_reduceGetBit___lambda__1___closed__11; lean_ctor_set(x_24, 0, x_38); return x_24; } @@ -15961,7 +14897,7 @@ lean_dec(x_41); if (x_42 == 0) { lean_object* x_43; lean_object* x_44; -x_43 = l_Std_BitVec_reduceGetBit___lambda__1___closed__6; +x_43 = l_BitVec_reduceGetBit___lambda__1___closed__6; x_44 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_44, 0, x_43); lean_ctor_set(x_44, 1, x_39); @@ -15970,7 +14906,7 @@ return x_44; else { lean_object* x_45; lean_object* x_46; -x_45 = l_Std_BitVec_reduceGetBit___lambda__1___closed__11; +x_45 = l_BitVec_reduceGetBit___lambda__1___closed__11; x_46 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_46, 0, x_45); lean_ctor_set(x_46, 1, x_39); @@ -16033,7 +14969,7 @@ return x_54; } } } -static lean_object* _init_l_Std_BitVec_reduceGetLsb___closed__1() { +static lean_object* _init_l_BitVec_reduceGetLsb___closed__1() { _start: { lean_object* x_1; @@ -16041,22 +14977,21 @@ x_1 = lean_mk_string_from_bytes("getLsb", 6); return x_1; } } -static lean_object* _init_l_Std_BitVec_reduceGetLsb___closed__2() { +static lean_object* _init_l_BitVec_reduceGetLsb___closed__2() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f___closed__4; -x_2 = l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f___closed__5; -x_3 = l_Std_BitVec_reduceGetLsb___closed__1; -x_4 = l_Lean_Name_mkStr3(x_1, x_2, x_3); -return x_4; +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_BitVec_reduceUnary___lambda__1___closed__2; +x_2 = l_BitVec_reduceGetLsb___closed__1; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; } } -LEAN_EXPORT lean_object* l_Std_BitVec_reduceGetLsb(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_EXPORT lean_object* l_BitVec_reduceGetLsb(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; uint8_t x_12; -x_10 = l_Std_BitVec_reduceGetLsb___closed__2; +x_10 = l_BitVec_reduceGetLsb___closed__2; x_11 = lean_unsigned_to_nat(3u); x_12 = l_Lean_Expr_isAppOfArity(x_1, x_10, x_11); if (x_12 == 0) @@ -16070,7 +15005,7 @@ lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_13 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_13 = l_BitVec_reduceUnary___lambda__1___closed__1; x_14 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_14, 0, x_13); lean_ctor_set(x_14, 1, x_9); @@ -16080,7 +15015,7 @@ else { lean_object* x_15; lean_object* x_16; x_15 = lean_box(0); -x_16 = l_Std_BitVec_reduceGetLsb___lambda__1(x_1, x_15, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_16 = l_BitVec_reduceGetLsb___lambda__1(x_1, x_15, 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); @@ -16088,11 +15023,11 @@ return x_16; } } } -LEAN_EXPORT lean_object* l_Std_BitVec_reduceGetLsb___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) { +LEAN_EXPORT lean_object* l_BitVec_reduceGetLsb___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_Std_BitVec_reduceGetLsb___lambda__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_11 = l_BitVec_reduceGetLsb___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); @@ -16100,7 +15035,7 @@ lean_dec(x_2); return x_11; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceGetLsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1968____closed__1() { +static lean_object* _init_l___regBuiltin_BitVec_reduceGetLsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1745____closed__1() { _start: { lean_object* x_1; @@ -16108,22 +15043,21 @@ x_1 = lean_mk_string_from_bytes("reduceGetLsb", 12); return x_1; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceGetLsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1968____closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f___closed__4; -x_2 = l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f___closed__5; -x_3 = l___regBuiltin_Std_BitVec_reduceGetLsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1968____closed__1; -x_4 = l_Lean_Name_mkStr3(x_1, x_2, x_3); -return x_4; -} -} -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceGetLsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1968____closed__3() { +static lean_object* _init_l___regBuiltin_BitVec_reduceGetLsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1745____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Std_BitVec_reduceGetLsb___closed__2; +x_1 = l_BitVec_reduceUnary___lambda__1___closed__2; +x_2 = l___regBuiltin_BitVec_reduceGetLsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1745____closed__1; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___regBuiltin_BitVec_reduceGetLsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1745____closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_BitVec_reduceGetLsb___closed__2; x_2 = lean_unsigned_to_nat(3u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -16131,90 +15065,90 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceGetLsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1968____closed__4() { +static lean_object* _init_l___regBuiltin_BitVec_reduceGetLsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1745____closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceUMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1791____closed__4; -x_2 = l___regBuiltin_Std_BitVec_reduceGetLsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1968____closed__3; +x_1 = l___regBuiltin_BitVec_reduceUMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1568____closed__4; +x_2 = l___regBuiltin_BitVec_reduceGetLsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1745____closed__3; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceGetLsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1968____closed__5() { +static lean_object* _init_l___regBuiltin_BitVec_reduceGetLsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1745____closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceGetLsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1968____closed__4; +x_1 = l___regBuiltin_BitVec_reduceGetLsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1745____closed__4; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceGetLsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1968____closed__6() { +static lean_object* _init_l___regBuiltin_BitVec_reduceGetLsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1745____closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceGetLsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1968____closed__5; +x_1 = l___regBuiltin_BitVec_reduceGetLsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1745____closed__5; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceGetLsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1968____closed__7() { +static lean_object* _init_l___regBuiltin_BitVec_reduceGetLsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1745____closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceGetLsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1968____closed__6; +x_1 = l___regBuiltin_BitVec_reduceGetLsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1745____closed__6; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceGetLsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1968____closed__8() { +static lean_object* _init_l___regBuiltin_BitVec_reduceGetLsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1745____closed__8() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Std_BitVec_reduceGetLsb), 9, 0); +x_1 = lean_alloc_closure((void*)(l_BitVec_reduceGetLsb), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceGetLsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1968_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceGetLsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1745_(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_Std_BitVec_reduceGetLsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1968____closed__2; -x_3 = l___regBuiltin_Std_BitVec_reduceGetLsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1968____closed__7; -x_4 = l___regBuiltin_Std_BitVec_reduceGetLsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1968____closed__8; +x_2 = l___regBuiltin_BitVec_reduceGetLsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1745____closed__2; +x_3 = l___regBuiltin_BitVec_reduceGetLsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1745____closed__7; +x_4 = l___regBuiltin_BitVec_reduceGetLsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1745____closed__8; x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); return x_5; } } -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceGetLsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1970_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceGetLsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1747_(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_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1373____closed__1; -x_3 = l___regBuiltin_Std_BitVec_reduceGetLsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1968____closed__2; +x_2 = l___regBuiltin_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1150____closed__1; +x_3 = l___regBuiltin_BitVec_reduceGetLsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1745____closed__2; x_4 = 1; -x_5 = l___regBuiltin_Std_BitVec_reduceGetLsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1968____closed__8; +x_5 = l___regBuiltin_BitVec_reduceGetLsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1745____closed__8; 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_Std_BitVec_reduceGetLsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1972_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceGetLsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1749_(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_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1375____closed__1; -x_3 = l___regBuiltin_Std_BitVec_reduceGetLsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1968____closed__2; +x_2 = l___regBuiltin_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1152____closed__1; +x_3 = l___regBuiltin_BitVec_reduceGetLsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1745____closed__2; x_4 = 1; -x_5 = l___regBuiltin_Std_BitVec_reduceGetLsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1968____closed__8; +x_5 = l___regBuiltin_BitVec_reduceGetLsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1745____closed__8; 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_Std_BitVec_reduceGetMsb___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) { +LEAN_EXPORT lean_object* l_BitVec_reduceGetMsb___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; @@ -16226,7 +15160,8 @@ lean_inc(x_9); lean_inc(x_8); lean_inc(x_7); lean_inc(x_6); -x_13 = l_Std_BitVec_fromExpr_x3f(x_12, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_13 = l_BitVec_fromExpr_x3f(x_12, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_12); if (lean_obj_tag(x_13) == 0) { lean_object* x_14; @@ -16246,7 +15181,7 @@ if (x_15 == 0) lean_object* x_16; lean_object* x_17; x_16 = lean_ctor_get(x_13, 0); lean_dec(x_16); -x_17 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_17 = l_BitVec_reduceUnary___lambda__1___closed__1; lean_ctor_set(x_13, 0, x_17); return x_13; } @@ -16256,7 +15191,7 @@ lean_object* x_18; lean_object* x_19; lean_object* x_20; x_18 = lean_ctor_get(x_13, 1); lean_inc(x_18); lean_dec(x_13); -x_19 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_19 = l_BitVec_reduceUnary___lambda__1___closed__1; x_20 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_20, 0, x_19); lean_ctor_set(x_20, 1, x_18); @@ -16274,8 +15209,7 @@ lean_inc(x_22); lean_dec(x_14); x_23 = l_Lean_Expr_appArg_x21(x_1); lean_dec(x_1); -x_24 = l_Nat_fromExpr_x3f(x_23, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_21); -lean_dec(x_6); +x_24 = l_Lean_Meta_getNatValue_x3f(x_23, x_6, x_7, x_8, x_9, x_21); if (lean_obj_tag(x_24) == 0) { lean_object* x_25; @@ -16291,7 +15225,7 @@ if (x_26 == 0) lean_object* x_27; lean_object* x_28; x_27 = lean_ctor_get(x_24, 0); lean_dec(x_27); -x_28 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_28 = l_BitVec_reduceUnary___lambda__1___closed__1; lean_ctor_set(x_24, 0, x_28); return x_24; } @@ -16301,7 +15235,7 @@ lean_object* x_29; lean_object* x_30; lean_object* x_31; x_29 = lean_ctor_get(x_24, 1); lean_inc(x_29); lean_dec(x_24); -x_30 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_30 = l_BitVec_reduceUnary___lambda__1___closed__1; x_31 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_31, 0, x_30); lean_ctor_set(x_31, 1, x_29); @@ -16332,7 +15266,7 @@ lean_object* x_38; lean_dec(x_36); lean_dec(x_35); lean_dec(x_34); -x_38 = l_Std_BitVec_reduceGetBit___lambda__1___closed__6; +x_38 = l_BitVec_reduceGetBit___lambda__1___closed__6; lean_ctor_set(x_24, 0, x_38); return x_24; } @@ -16351,14 +15285,14 @@ lean_dec(x_36); if (x_42 == 0) { lean_object* x_43; -x_43 = l_Std_BitVec_reduceGetBit___lambda__1___closed__6; +x_43 = l_BitVec_reduceGetBit___lambda__1___closed__6; lean_ctor_set(x_24, 0, x_43); return x_24; } else { lean_object* x_44; -x_44 = l_Std_BitVec_reduceGetBit___lambda__1___closed__11; +x_44 = l_BitVec_reduceGetBit___lambda__1___closed__11; lean_ctor_set(x_24, 0, x_44); return x_24; } @@ -16385,7 +15319,7 @@ lean_object* x_50; lean_object* x_51; lean_dec(x_48); lean_dec(x_47); lean_dec(x_46); -x_50 = l_Std_BitVec_reduceGetBit___lambda__1___closed__6; +x_50 = l_BitVec_reduceGetBit___lambda__1___closed__6; x_51 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_51, 0, x_50); lean_ctor_set(x_51, 1, x_45); @@ -16406,7 +15340,7 @@ lean_dec(x_48); if (x_55 == 0) { lean_object* x_56; lean_object* x_57; -x_56 = l_Std_BitVec_reduceGetBit___lambda__1___closed__6; +x_56 = l_BitVec_reduceGetBit___lambda__1___closed__6; x_57 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_57, 0, x_56); lean_ctor_set(x_57, 1, x_45); @@ -16415,7 +15349,7 @@ return x_57; else { lean_object* x_58; lean_object* x_59; -x_58 = l_Std_BitVec_reduceGetBit___lambda__1___closed__11; +x_58 = l_BitVec_reduceGetBit___lambda__1___closed__11; x_59 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_59, 0, x_58); lean_ctor_set(x_59, 1, x_45); @@ -16479,7 +15413,7 @@ return x_67; } } } -static lean_object* _init_l_Std_BitVec_reduceGetMsb___closed__1() { +static lean_object* _init_l_BitVec_reduceGetMsb___closed__1() { _start: { lean_object* x_1; @@ -16487,22 +15421,21 @@ x_1 = lean_mk_string_from_bytes("getMsb", 6); return x_1; } } -static lean_object* _init_l_Std_BitVec_reduceGetMsb___closed__2() { +static lean_object* _init_l_BitVec_reduceGetMsb___closed__2() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f___closed__4; -x_2 = l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f___closed__5; -x_3 = l_Std_BitVec_reduceGetMsb___closed__1; -x_4 = l_Lean_Name_mkStr3(x_1, x_2, x_3); -return x_4; +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_BitVec_reduceUnary___lambda__1___closed__2; +x_2 = l_BitVec_reduceGetMsb___closed__1; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; } } -LEAN_EXPORT lean_object* l_Std_BitVec_reduceGetMsb(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_EXPORT lean_object* l_BitVec_reduceGetMsb(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; uint8_t x_12; -x_10 = l_Std_BitVec_reduceGetMsb___closed__2; +x_10 = l_BitVec_reduceGetMsb___closed__2; x_11 = lean_unsigned_to_nat(3u); x_12 = l_Lean_Expr_isAppOfArity(x_1, x_10, x_11); if (x_12 == 0) @@ -16516,7 +15449,7 @@ lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_13 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_13 = l_BitVec_reduceUnary___lambda__1___closed__1; x_14 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_14, 0, x_13); lean_ctor_set(x_14, 1, x_9); @@ -16526,7 +15459,7 @@ else { lean_object* x_15; lean_object* x_16; x_15 = lean_box(0); -x_16 = l_Std_BitVec_reduceGetMsb___lambda__1(x_1, x_15, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_16 = l_BitVec_reduceGetMsb___lambda__1(x_1, x_15, 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); @@ -16534,11 +15467,11 @@ return x_16; } } } -LEAN_EXPORT lean_object* l_Std_BitVec_reduceGetMsb___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) { +LEAN_EXPORT lean_object* l_BitVec_reduceGetMsb___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_Std_BitVec_reduceGetMsb___lambda__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_11 = l_BitVec_reduceGetMsb___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); @@ -16546,7 +15479,7 @@ lean_dec(x_2); return x_11; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceGetMsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1989____closed__1() { +static lean_object* _init_l___regBuiltin_BitVec_reduceGetMsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1766____closed__1() { _start: { lean_object* x_1; @@ -16554,22 +15487,21 @@ x_1 = lean_mk_string_from_bytes("reduceGetMsb", 12); return x_1; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceGetMsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1989____closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f___closed__4; -x_2 = l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f___closed__5; -x_3 = l___regBuiltin_Std_BitVec_reduceGetMsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1989____closed__1; -x_4 = l_Lean_Name_mkStr3(x_1, x_2, x_3); -return x_4; -} -} -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceGetMsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1989____closed__3() { +static lean_object* _init_l___regBuiltin_BitVec_reduceGetMsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1766____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Std_BitVec_reduceGetMsb___closed__2; +x_1 = l_BitVec_reduceUnary___lambda__1___closed__2; +x_2 = l___regBuiltin_BitVec_reduceGetMsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1766____closed__1; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___regBuiltin_BitVec_reduceGetMsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1766____closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_BitVec_reduceGetMsb___closed__2; x_2 = lean_unsigned_to_nat(3u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -16577,90 +15509,90 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceGetMsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1989____closed__4() { +static lean_object* _init_l___regBuiltin_BitVec_reduceGetMsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1766____closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceUMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1791____closed__4; -x_2 = l___regBuiltin_Std_BitVec_reduceGetMsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1989____closed__3; +x_1 = l___regBuiltin_BitVec_reduceUMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1568____closed__4; +x_2 = l___regBuiltin_BitVec_reduceGetMsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1766____closed__3; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceGetMsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1989____closed__5() { +static lean_object* _init_l___regBuiltin_BitVec_reduceGetMsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1766____closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceGetMsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1989____closed__4; +x_1 = l___regBuiltin_BitVec_reduceGetMsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1766____closed__4; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceGetMsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1989____closed__6() { +static lean_object* _init_l___regBuiltin_BitVec_reduceGetMsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1766____closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceGetMsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1989____closed__5; +x_1 = l___regBuiltin_BitVec_reduceGetMsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1766____closed__5; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceGetMsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1989____closed__7() { +static lean_object* _init_l___regBuiltin_BitVec_reduceGetMsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1766____closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceGetMsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1989____closed__6; +x_1 = l___regBuiltin_BitVec_reduceGetMsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1766____closed__6; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceGetMsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1989____closed__8() { +static lean_object* _init_l___regBuiltin_BitVec_reduceGetMsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1766____closed__8() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Std_BitVec_reduceGetMsb), 9, 0); +x_1 = lean_alloc_closure((void*)(l_BitVec_reduceGetMsb), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceGetMsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1989_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceGetMsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1766_(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_Std_BitVec_reduceGetMsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1989____closed__2; -x_3 = l___regBuiltin_Std_BitVec_reduceGetMsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1989____closed__7; -x_4 = l___regBuiltin_Std_BitVec_reduceGetMsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1989____closed__8; +x_2 = l___regBuiltin_BitVec_reduceGetMsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1766____closed__2; +x_3 = l___regBuiltin_BitVec_reduceGetMsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1766____closed__7; +x_4 = l___regBuiltin_BitVec_reduceGetMsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1766____closed__8; x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); return x_5; } } -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceGetMsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1991_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceGetMsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1768_(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_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1373____closed__1; -x_3 = l___regBuiltin_Std_BitVec_reduceGetMsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1989____closed__2; +x_2 = l___regBuiltin_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1150____closed__1; +x_3 = l___regBuiltin_BitVec_reduceGetMsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1766____closed__2; x_4 = 1; -x_5 = l___regBuiltin_Std_BitVec_reduceGetMsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1989____closed__8; +x_5 = l___regBuiltin_BitVec_reduceGetMsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1766____closed__8; 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_Std_BitVec_reduceGetMsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1993_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceGetMsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1770_(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_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1375____closed__1; -x_3 = l___regBuiltin_Std_BitVec_reduceGetMsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1989____closed__2; +x_2 = l___regBuiltin_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1152____closed__1; +x_3 = l___regBuiltin_BitVec_reduceGetMsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1766____closed__2; x_4 = 1; -x_5 = l___regBuiltin_Std_BitVec_reduceGetMsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1989____closed__8; +x_5 = l___regBuiltin_BitVec_reduceGetMsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1766____closed__8; 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_Std_BitVec_reduceShiftLeft___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) { +LEAN_EXPORT lean_object* l_BitVec_reduceShiftLeft___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; @@ -16672,7 +15604,8 @@ lean_inc(x_9); lean_inc(x_8); lean_inc(x_7); lean_inc(x_6); -x_13 = l_Std_BitVec_fromExpr_x3f(x_12, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_13 = l_BitVec_fromExpr_x3f(x_12, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_12); if (lean_obj_tag(x_13) == 0) { lean_object* x_14; @@ -16692,7 +15625,7 @@ if (x_15 == 0) lean_object* x_16; lean_object* x_17; x_16 = lean_ctor_get(x_13, 0); lean_dec(x_16); -x_17 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_17 = l_BitVec_reduceUnary___lambda__1___closed__1; lean_ctor_set(x_13, 0, x_17); return x_13; } @@ -16702,7 +15635,7 @@ lean_object* x_18; lean_object* x_19; lean_object* x_20; x_18 = lean_ctor_get(x_13, 1); lean_inc(x_18); lean_dec(x_13); -x_19 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_19 = l_BitVec_reduceUnary___lambda__1___closed__1; x_20 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_20, 0, x_19); lean_ctor_set(x_20, 1, x_18); @@ -16720,8 +15653,7 @@ lean_inc(x_22); lean_dec(x_14); x_23 = l_Lean_Expr_appArg_x21(x_1); lean_dec(x_1); -x_24 = l_Nat_fromExpr_x3f(x_23, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_21); -lean_dec(x_6); +x_24 = l_Lean_Meta_getNatValue_x3f(x_23, x_6, x_7, x_8, x_9, x_21); if (lean_obj_tag(x_24) == 0) { lean_object* x_25; @@ -16737,7 +15669,7 @@ if (x_26 == 0) lean_object* x_27; lean_object* x_28; x_27 = lean_ctor_get(x_24, 0); lean_dec(x_27); -x_28 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_28 = l_BitVec_reduceUnary___lambda__1___closed__1; lean_ctor_set(x_24, 0, x_28); return x_24; } @@ -16747,7 +15679,7 @@ lean_object* x_29; lean_object* x_30; lean_object* x_31; x_29 = lean_ctor_get(x_24, 1); lean_inc(x_29); lean_dec(x_24); -x_30 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_30 = l_BitVec_reduceUnary___lambda__1___closed__1; x_31 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_31, 0, x_30); lean_ctor_set(x_31, 1, x_29); @@ -16760,169 +15692,130 @@ uint8_t x_32; x_32 = !lean_is_exclusive(x_24); if (x_32 == 0) { -lean_object* x_33; lean_object* x_34; uint8_t x_35; +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; uint32_t x_43; uint8_t x_44; lean_object* x_45; lean_object* x_46; x_33 = lean_ctor_get(x_24, 0); lean_dec(x_33); x_34 = lean_ctor_get(x_25, 0); lean_inc(x_34); lean_dec(x_25); -x_35 = !lean_is_exclusive(x_22); -if (x_35 == 0) -{ -lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; uint32_t x_41; uint8_t x_42; lean_object* x_43; lean_object* x_44; -x_36 = lean_ctor_get(x_22, 0); -x_37 = lean_ctor_get(x_22, 1); -x_38 = l_Std_BitVec_shiftLeft(x_36, x_37, x_34); -lean_dec(x_34); -lean_dec(x_37); -lean_ctor_set(x_22, 1, x_38); -x_39 = l_Std_BitVec_Literal_toExpr(x_22); -x_40 = lean_box(0); -x_41 = 0; -x_42 = 1; -x_43 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_43, 0, x_39); -lean_ctor_set(x_43, 1, x_40); -lean_ctor_set_uint32(x_43, sizeof(void*)*2, x_41); -lean_ctor_set_uint8(x_43, sizeof(void*)*2 + 4, x_42); -x_44 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_44, 0, x_43); -lean_ctor_set(x_24, 0, x_44); -return x_24; -} -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; uint32_t x_51; uint8_t x_52; lean_object* x_53; lean_object* x_54; -x_45 = lean_ctor_get(x_22, 0); -x_46 = lean_ctor_get(x_22, 1); -lean_inc(x_46); -lean_inc(x_45); +x_35 = lean_ctor_get(x_22, 0); +lean_inc(x_35); +x_36 = lean_ctor_get(x_22, 1); +lean_inc(x_36); lean_dec(x_22); -x_47 = l_Std_BitVec_shiftLeft(x_45, x_46, x_34); +x_37 = l_BitVec_shiftLeft(x_35, x_36, x_34); lean_dec(x_34); -lean_dec(x_46); -x_48 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_48, 0, x_45); -lean_ctor_set(x_48, 1, x_47); -x_49 = l_Std_BitVec_Literal_toExpr(x_48); -x_50 = lean_box(0); -x_51 = 0; -x_52 = 1; -x_53 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_53, 0, x_49); -lean_ctor_set(x_53, 1, x_50); -lean_ctor_set_uint32(x_53, sizeof(void*)*2, x_51); -lean_ctor_set_uint8(x_53, sizeof(void*)*2 + 4, x_52); -x_54 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_54, 0, x_53); -lean_ctor_set(x_24, 0, x_54); +lean_dec(x_36); +x_38 = l_Lean_mkNatLit(x_35); +x_39 = l_Lean_mkNatLit(x_37); +x_40 = l_BitVec_reduceUnary___lambda__1___closed__5; +x_41 = l_Lean_mkAppB(x_40, x_38, x_39); +x_42 = lean_box(0); +x_43 = 0; +x_44 = 1; +x_45 = lean_alloc_ctor(0, 2, 5); +lean_ctor_set(x_45, 0, x_41); +lean_ctor_set(x_45, 1, x_42); +lean_ctor_set_uint32(x_45, sizeof(void*)*2, x_43); +lean_ctor_set_uint8(x_45, sizeof(void*)*2 + 4, x_44); +x_46 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_46, 0, x_45); +lean_ctor_set(x_24, 0, x_46); return x_24; } -} else { -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; uint32_t x_64; uint8_t x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; -x_55 = lean_ctor_get(x_24, 1); -lean_inc(x_55); +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; uint32_t x_57; uint8_t x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; +x_47 = lean_ctor_get(x_24, 1); +lean_inc(x_47); lean_dec(x_24); -x_56 = lean_ctor_get(x_25, 0); -lean_inc(x_56); +x_48 = lean_ctor_get(x_25, 0); +lean_inc(x_48); lean_dec(x_25); -x_57 = lean_ctor_get(x_22, 0); -lean_inc(x_57); -x_58 = lean_ctor_get(x_22, 1); -lean_inc(x_58); -if (lean_is_exclusive(x_22)) { - lean_ctor_release(x_22, 0); - lean_ctor_release(x_22, 1); - x_59 = x_22; -} else { - lean_dec_ref(x_22); - x_59 = lean_box(0); -} -x_60 = l_Std_BitVec_shiftLeft(x_57, x_58, x_56); -lean_dec(x_56); -lean_dec(x_58); -if (lean_is_scalar(x_59)) { - x_61 = lean_alloc_ctor(0, 2, 0); -} else { - x_61 = x_59; -} -lean_ctor_set(x_61, 0, x_57); -lean_ctor_set(x_61, 1, x_60); -x_62 = l_Std_BitVec_Literal_toExpr(x_61); -x_63 = lean_box(0); -x_64 = 0; -x_65 = 1; -x_66 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_66, 0, x_62); -lean_ctor_set(x_66, 1, x_63); -lean_ctor_set_uint32(x_66, sizeof(void*)*2, x_64); -lean_ctor_set_uint8(x_66, sizeof(void*)*2 + 4, x_65); -x_67 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_67, 0, x_66); -x_68 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_68, 0, x_67); -lean_ctor_set(x_68, 1, x_55); -return x_68; +x_49 = lean_ctor_get(x_22, 0); +lean_inc(x_49); +x_50 = lean_ctor_get(x_22, 1); +lean_inc(x_50); +lean_dec(x_22); +x_51 = l_BitVec_shiftLeft(x_49, x_50, x_48); +lean_dec(x_48); +lean_dec(x_50); +x_52 = l_Lean_mkNatLit(x_49); +x_53 = l_Lean_mkNatLit(x_51); +x_54 = l_BitVec_reduceUnary___lambda__1___closed__5; +x_55 = l_Lean_mkAppB(x_54, x_52, x_53); +x_56 = lean_box(0); +x_57 = 0; +x_58 = 1; +x_59 = lean_alloc_ctor(0, 2, 5); +lean_ctor_set(x_59, 0, x_55); +lean_ctor_set(x_59, 1, x_56); +lean_ctor_set_uint32(x_59, sizeof(void*)*2, x_57); +lean_ctor_set_uint8(x_59, sizeof(void*)*2 + 4, x_58); +x_60 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_60, 0, x_59); +x_61 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_61, 0, x_60); +lean_ctor_set(x_61, 1, x_47); +return x_61; } } } else { -uint8_t x_69; +uint8_t x_62; lean_dec(x_22); -x_69 = !lean_is_exclusive(x_24); -if (x_69 == 0) +x_62 = !lean_is_exclusive(x_24); +if (x_62 == 0) { return x_24; } else { -lean_object* x_70; lean_object* x_71; lean_object* x_72; -x_70 = lean_ctor_get(x_24, 0); -x_71 = lean_ctor_get(x_24, 1); -lean_inc(x_71); -lean_inc(x_70); +lean_object* x_63; lean_object* x_64; lean_object* x_65; +x_63 = lean_ctor_get(x_24, 0); +x_64 = lean_ctor_get(x_24, 1); +lean_inc(x_64); +lean_inc(x_63); lean_dec(x_24); -x_72 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_72, 0, x_70); -lean_ctor_set(x_72, 1, x_71); -return x_72; +x_65 = lean_alloc_ctor(1, 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_73; +uint8_t x_66; lean_dec(x_9); lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_1); -x_73 = !lean_is_exclusive(x_13); -if (x_73 == 0) +x_66 = !lean_is_exclusive(x_13); +if (x_66 == 0) { return x_13; } else { -lean_object* x_74; lean_object* x_75; lean_object* x_76; -x_74 = lean_ctor_get(x_13, 0); -x_75 = lean_ctor_get(x_13, 1); -lean_inc(x_75); -lean_inc(x_74); +lean_object* x_67; lean_object* x_68; lean_object* x_69; +x_67 = lean_ctor_get(x_13, 0); +x_68 = lean_ctor_get(x_13, 1); +lean_inc(x_68); +lean_inc(x_67); lean_dec(x_13); -x_76 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_76, 0, x_74); -lean_ctor_set(x_76, 1, x_75); -return x_76; +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; } } } } -static lean_object* _init_l_Std_BitVec_reduceShiftLeft___closed__1() { +static lean_object* _init_l_BitVec_reduceShiftLeft___closed__1() { _start: { lean_object* x_1; @@ -16930,22 +15823,21 @@ x_1 = lean_mk_string_from_bytes("shiftLeft", 9); return x_1; } } -static lean_object* _init_l_Std_BitVec_reduceShiftLeft___closed__2() { +static lean_object* _init_l_BitVec_reduceShiftLeft___closed__2() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f___closed__4; -x_2 = l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f___closed__5; -x_3 = l_Std_BitVec_reduceShiftLeft___closed__1; -x_4 = l_Lean_Name_mkStr3(x_1, x_2, x_3); -return x_4; +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_BitVec_reduceUnary___lambda__1___closed__2; +x_2 = l_BitVec_reduceShiftLeft___closed__1; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; } } -LEAN_EXPORT lean_object* l_Std_BitVec_reduceShiftLeft(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_EXPORT lean_object* l_BitVec_reduceShiftLeft(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; uint8_t x_12; -x_10 = l_Std_BitVec_reduceShiftLeft___closed__2; +x_10 = l_BitVec_reduceShiftLeft___closed__2; x_11 = lean_unsigned_to_nat(3u); x_12 = l_Lean_Expr_isAppOfArity(x_1, x_10, x_11); if (x_12 == 0) @@ -16959,7 +15851,7 @@ lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_13 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_13 = l_BitVec_reduceUnary___lambda__1___closed__1; x_14 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_14, 0, x_13); lean_ctor_set(x_14, 1, x_9); @@ -16969,7 +15861,7 @@ else { lean_object* x_15; lean_object* x_16; x_15 = lean_box(0); -x_16 = l_Std_BitVec_reduceShiftLeft___lambda__1(x_1, x_15, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_16 = l_BitVec_reduceShiftLeft___lambda__1(x_1, x_15, 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); @@ -16977,11 +15869,11 @@ return x_16; } } } -LEAN_EXPORT lean_object* l_Std_BitVec_reduceShiftLeft___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) { +LEAN_EXPORT lean_object* l_BitVec_reduceShiftLeft___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_Std_BitVec_reduceShiftLeft___lambda__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_11 = l_BitVec_reduceShiftLeft___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); @@ -16989,7 +15881,7 @@ lean_dec(x_2); return x_11; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2011____closed__1() { +static lean_object* _init_l___regBuiltin_BitVec_reduceShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1788____closed__1() { _start: { lean_object* x_1; @@ -16997,22 +15889,21 @@ x_1 = lean_mk_string_from_bytes("reduceShiftLeft", 15); return x_1; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2011____closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f___closed__4; -x_2 = l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f___closed__5; -x_3 = l___regBuiltin_Std_BitVec_reduceShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2011____closed__1; -x_4 = l_Lean_Name_mkStr3(x_1, x_2, x_3); -return x_4; -} -} -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2011____closed__3() { +static lean_object* _init_l___regBuiltin_BitVec_reduceShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1788____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Std_BitVec_reduceShiftLeft___closed__2; +x_1 = l_BitVec_reduceUnary___lambda__1___closed__2; +x_2 = l___regBuiltin_BitVec_reduceShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1788____closed__1; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___regBuiltin_BitVec_reduceShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1788____closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_BitVec_reduceShiftLeft___closed__2; x_2 = lean_unsigned_to_nat(3u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -17020,90 +15911,90 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2011____closed__4() { +static lean_object* _init_l___regBuiltin_BitVec_reduceShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1788____closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceUMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1791____closed__4; -x_2 = l___regBuiltin_Std_BitVec_reduceShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2011____closed__3; +x_1 = l___regBuiltin_BitVec_reduceUMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1568____closed__4; +x_2 = l___regBuiltin_BitVec_reduceShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1788____closed__3; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2011____closed__5() { +static lean_object* _init_l___regBuiltin_BitVec_reduceShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1788____closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2011____closed__4; +x_1 = l___regBuiltin_BitVec_reduceShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1788____closed__4; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2011____closed__6() { +static lean_object* _init_l___regBuiltin_BitVec_reduceShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1788____closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2011____closed__5; +x_1 = l___regBuiltin_BitVec_reduceShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1788____closed__5; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2011____closed__7() { +static lean_object* _init_l___regBuiltin_BitVec_reduceShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1788____closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2011____closed__6; +x_1 = l___regBuiltin_BitVec_reduceShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1788____closed__6; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2011____closed__8() { +static lean_object* _init_l___regBuiltin_BitVec_reduceShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1788____closed__8() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Std_BitVec_reduceShiftLeft), 9, 0); +x_1 = lean_alloc_closure((void*)(l_BitVec_reduceShiftLeft), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2011_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1788_(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_Std_BitVec_reduceShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2011____closed__2; -x_3 = l___regBuiltin_Std_BitVec_reduceShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2011____closed__7; -x_4 = l___regBuiltin_Std_BitVec_reduceShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2011____closed__8; +x_2 = l___regBuiltin_BitVec_reduceShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1788____closed__2; +x_3 = l___regBuiltin_BitVec_reduceShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1788____closed__7; +x_4 = l___regBuiltin_BitVec_reduceShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1788____closed__8; x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); return x_5; } } -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2013_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1790_(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_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1373____closed__1; -x_3 = l___regBuiltin_Std_BitVec_reduceShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2011____closed__2; +x_2 = l___regBuiltin_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1150____closed__1; +x_3 = l___regBuiltin_BitVec_reduceShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1788____closed__2; x_4 = 1; -x_5 = l___regBuiltin_Std_BitVec_reduceShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2011____closed__8; +x_5 = l___regBuiltin_BitVec_reduceShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1788____closed__8; 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_Std_BitVec_reduceShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2015_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1792_(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_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1375____closed__1; -x_3 = l___regBuiltin_Std_BitVec_reduceShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2011____closed__2; +x_2 = l___regBuiltin_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1152____closed__1; +x_3 = l___regBuiltin_BitVec_reduceShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1788____closed__2; x_4 = 1; -x_5 = l___regBuiltin_Std_BitVec_reduceShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2011____closed__8; +x_5 = l___regBuiltin_BitVec_reduceShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1788____closed__8; 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_Std_BitVec_reduceUShiftRight___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) { +LEAN_EXPORT lean_object* l_BitVec_reduceUShiftRight___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; @@ -17115,7 +16006,8 @@ lean_inc(x_9); lean_inc(x_8); lean_inc(x_7); lean_inc(x_6); -x_13 = l_Std_BitVec_fromExpr_x3f(x_12, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_13 = l_BitVec_fromExpr_x3f(x_12, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_12); if (lean_obj_tag(x_13) == 0) { lean_object* x_14; @@ -17135,7 +16027,7 @@ if (x_15 == 0) lean_object* x_16; lean_object* x_17; x_16 = lean_ctor_get(x_13, 0); lean_dec(x_16); -x_17 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_17 = l_BitVec_reduceUnary___lambda__1___closed__1; lean_ctor_set(x_13, 0, x_17); return x_13; } @@ -17145,7 +16037,7 @@ lean_object* x_18; lean_object* x_19; lean_object* x_20; x_18 = lean_ctor_get(x_13, 1); lean_inc(x_18); lean_dec(x_13); -x_19 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_19 = l_BitVec_reduceUnary___lambda__1___closed__1; x_20 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_20, 0, x_19); lean_ctor_set(x_20, 1, x_18); @@ -17163,8 +16055,7 @@ lean_inc(x_22); lean_dec(x_14); x_23 = l_Lean_Expr_appArg_x21(x_1); lean_dec(x_1); -x_24 = l_Nat_fromExpr_x3f(x_23, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_21); -lean_dec(x_6); +x_24 = l_Lean_Meta_getNatValue_x3f(x_23, x_6, x_7, x_8, x_9, x_21); if (lean_obj_tag(x_24) == 0) { lean_object* x_25; @@ -17180,7 +16071,7 @@ if (x_26 == 0) lean_object* x_27; lean_object* x_28; x_27 = lean_ctor_get(x_24, 0); lean_dec(x_27); -x_28 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_28 = l_BitVec_reduceUnary___lambda__1___closed__1; lean_ctor_set(x_24, 0, x_28); return x_24; } @@ -17190,7 +16081,7 @@ lean_object* x_29; lean_object* x_30; lean_object* x_31; x_29 = lean_ctor_get(x_24, 1); lean_inc(x_29); lean_dec(x_24); -x_30 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_30 = l_BitVec_reduceUnary___lambda__1___closed__1; x_31 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_31, 0, x_30); lean_ctor_set(x_31, 1, x_29); @@ -17203,96 +16094,2130 @@ uint8_t x_32; x_32 = !lean_is_exclusive(x_24); if (x_32 == 0) { -lean_object* x_33; lean_object* x_34; uint8_t x_35; +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; uint32_t x_43; uint8_t x_44; lean_object* x_45; lean_object* x_46; x_33 = lean_ctor_get(x_24, 0); lean_dec(x_33); x_34 = lean_ctor_get(x_25, 0); lean_inc(x_34); lean_dec(x_25); -x_35 = !lean_is_exclusive(x_22); -if (x_35 == 0) -{ -lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; uint32_t x_40; uint8_t x_41; lean_object* x_42; lean_object* x_43; +x_35 = lean_ctor_get(x_22, 0); +lean_inc(x_35); x_36 = lean_ctor_get(x_22, 1); +lean_inc(x_36); +lean_dec(x_22); x_37 = lean_nat_shiftr(x_36, x_34); lean_dec(x_34); lean_dec(x_36); -lean_ctor_set(x_22, 1, x_37); -x_38 = l_Std_BitVec_Literal_toExpr(x_22); -x_39 = lean_box(0); -x_40 = 0; -x_41 = 1; -x_42 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_42, 0, x_38); -lean_ctor_set(x_42, 1, x_39); -lean_ctor_set_uint32(x_42, sizeof(void*)*2, x_40); -lean_ctor_set_uint8(x_42, sizeof(void*)*2 + 4, x_41); -x_43 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_43, 0, x_42); -lean_ctor_set(x_24, 0, x_43); +x_38 = l_Lean_mkNatLit(x_35); +x_39 = l_Lean_mkNatLit(x_37); +x_40 = l_BitVec_reduceUnary___lambda__1___closed__5; +x_41 = l_Lean_mkAppB(x_40, x_38, x_39); +x_42 = lean_box(0); +x_43 = 0; +x_44 = 1; +x_45 = lean_alloc_ctor(0, 2, 5); +lean_ctor_set(x_45, 0, x_41); +lean_ctor_set(x_45, 1, x_42); +lean_ctor_set_uint32(x_45, sizeof(void*)*2, x_43); +lean_ctor_set_uint8(x_45, sizeof(void*)*2 + 4, x_44); +x_46 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_46, 0, x_45); +lean_ctor_set(x_24, 0, x_46); return x_24; } else { -lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; uint32_t x_50; uint8_t x_51; lean_object* x_52; lean_object* x_53; -x_44 = lean_ctor_get(x_22, 0); -x_45 = lean_ctor_get(x_22, 1); -lean_inc(x_45); -lean_inc(x_44); -lean_dec(x_22); -x_46 = lean_nat_shiftr(x_45, x_34); -lean_dec(x_34); -lean_dec(x_45); -x_47 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_47, 0, x_44); -lean_ctor_set(x_47, 1, x_46); -x_48 = l_Std_BitVec_Literal_toExpr(x_47); -x_49 = lean_box(0); -x_50 = 0; -x_51 = 1; -x_52 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_52, 0, x_48); -lean_ctor_set(x_52, 1, x_49); -lean_ctor_set_uint32(x_52, sizeof(void*)*2, x_50); -lean_ctor_set_uint8(x_52, sizeof(void*)*2 + 4, x_51); -x_53 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_53, 0, x_52); -lean_ctor_set(x_24, 0, x_53); -return x_24; -} -} -else -{ -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; uint32_t x_63; uint8_t x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; -x_54 = lean_ctor_get(x_24, 1); -lean_inc(x_54); +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; uint32_t x_57; uint8_t x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; +x_47 = lean_ctor_get(x_24, 1); +lean_inc(x_47); lean_dec(x_24); -x_55 = lean_ctor_get(x_25, 0); -lean_inc(x_55); +x_48 = lean_ctor_get(x_25, 0); +lean_inc(x_48); lean_dec(x_25); -x_56 = lean_ctor_get(x_22, 0); +x_49 = lean_ctor_get(x_22, 0); +lean_inc(x_49); +x_50 = lean_ctor_get(x_22, 1); +lean_inc(x_50); +lean_dec(x_22); +x_51 = lean_nat_shiftr(x_50, x_48); +lean_dec(x_48); +lean_dec(x_50); +x_52 = l_Lean_mkNatLit(x_49); +x_53 = l_Lean_mkNatLit(x_51); +x_54 = l_BitVec_reduceUnary___lambda__1___closed__5; +x_55 = l_Lean_mkAppB(x_54, x_52, x_53); +x_56 = lean_box(0); +x_57 = 0; +x_58 = 1; +x_59 = lean_alloc_ctor(0, 2, 5); +lean_ctor_set(x_59, 0, x_55); +lean_ctor_set(x_59, 1, x_56); +lean_ctor_set_uint32(x_59, sizeof(void*)*2, x_57); +lean_ctor_set_uint8(x_59, sizeof(void*)*2 + 4, x_58); +x_60 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_60, 0, x_59); +x_61 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_61, 0, x_60); +lean_ctor_set(x_61, 1, x_47); +return x_61; +} +} +} +else +{ +uint8_t x_62; +lean_dec(x_22); +x_62 = !lean_is_exclusive(x_24); +if (x_62 == 0) +{ +return x_24; +} +else +{ +lean_object* x_63; lean_object* x_64; lean_object* x_65; +x_63 = lean_ctor_get(x_24, 0); +x_64 = lean_ctor_get(x_24, 1); +lean_inc(x_64); +lean_inc(x_63); +lean_dec(x_24); +x_65 = lean_alloc_ctor(1, 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_66; +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_1); +x_66 = !lean_is_exclusive(x_13); +if (x_66 == 0) +{ +return x_13; +} +else +{ +lean_object* x_67; lean_object* x_68; lean_object* x_69; +x_67 = lean_ctor_get(x_13, 0); +x_68 = lean_ctor_get(x_13, 1); +lean_inc(x_68); +lean_inc(x_67); +lean_dec(x_13); +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; +} +} +} +} +static lean_object* _init_l_BitVec_reduceUShiftRight___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("ushiftRight", 11); +return x_1; +} +} +static lean_object* _init_l_BitVec_reduceUShiftRight___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_BitVec_reduceUnary___lambda__1___closed__2; +x_2 = l_BitVec_reduceUShiftRight___closed__1; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; +} +} +LEAN_EXPORT lean_object* l_BitVec_reduceUShiftRight(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; uint8_t x_12; +x_10 = l_BitVec_reduceUShiftRight___closed__2; +x_11 = lean_unsigned_to_nat(3u); +x_12 = l_Lean_Expr_isAppOfArity(x_1, x_10, x_11); +if (x_12 == 0) +{ +lean_object* x_13; lean_object* x_14; +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); +x_13 = l_BitVec_reduceUnary___lambda__1___closed__1; +x_14 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_14, 0, x_13); +lean_ctor_set(x_14, 1, x_9); +return x_14; +} +else +{ +lean_object* x_15; lean_object* x_16; +x_15 = lean_box(0); +x_16 = l_BitVec_reduceUShiftRight___lambda__1(x_1, x_15, 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_16; +} +} +} +LEAN_EXPORT lean_object* l_BitVec_reduceUShiftRight___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_BitVec_reduceUShiftRight___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; +} +} +static lean_object* _init_l___regBuiltin_BitVec_reduceUShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1810____closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("reduceUShiftRight", 17); +return x_1; +} +} +static lean_object* _init_l___regBuiltin_BitVec_reduceUShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1810____closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_BitVec_reduceUnary___lambda__1___closed__2; +x_2 = l___regBuiltin_BitVec_reduceUShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1810____closed__1; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___regBuiltin_BitVec_reduceUShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1810____closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_BitVec_reduceUShiftRight___closed__2; +x_2 = lean_unsigned_to_nat(3u); +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_BitVec_reduceUShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1810____closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___regBuiltin_BitVec_reduceUMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1568____closed__4; +x_2 = l___regBuiltin_BitVec_reduceUShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1810____closed__3; +x_3 = lean_array_push(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___regBuiltin_BitVec_reduceUShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1810____closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___regBuiltin_BitVec_reduceUShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1810____closed__4; +x_2 = lean_box(3); +x_3 = lean_array_push(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___regBuiltin_BitVec_reduceUShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1810____closed__6() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___regBuiltin_BitVec_reduceUShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1810____closed__5; +x_2 = lean_box(3); +x_3 = lean_array_push(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___regBuiltin_BitVec_reduceUShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1810____closed__7() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___regBuiltin_BitVec_reduceUShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1810____closed__6; +x_2 = lean_box(3); +x_3 = lean_array_push(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___regBuiltin_BitVec_reduceUShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1810____closed__8() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_BitVec_reduceUShiftRight), 9, 0); +return x_1; +} +} +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceUShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1810_(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_BitVec_reduceUShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1810____closed__2; +x_3 = l___regBuiltin_BitVec_reduceUShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1810____closed__7; +x_4 = l___regBuiltin_BitVec_reduceUShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1810____closed__8; +x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); +return x_5; +} +} +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceUShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1812_(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_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1150____closed__1; +x_3 = l___regBuiltin_BitVec_reduceUShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1810____closed__2; +x_4 = 1; +x_5 = l___regBuiltin_BitVec_reduceUShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1810____closed__8; +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_BitVec_reduceUShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1814_(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_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1152____closed__1; +x_3 = l___regBuiltin_BitVec_reduceUShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1810____closed__2; +x_4 = 1; +x_5 = l___regBuiltin_BitVec_reduceUShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1810____closed__8; +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_BitVec_reduceSShiftRight___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; +lean_inc(x_1); +x_11 = l_Lean_Expr_appFn_x21(x_1); +x_12 = l_Lean_Expr_appArg_x21(x_11); +lean_dec(x_11); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_6); +x_13 = l_BitVec_fromExpr_x3f(x_12, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_12); +if (lean_obj_tag(x_13) == 0) +{ +lean_object* x_14; +x_14 = lean_ctor_get(x_13, 0); +lean_inc(x_14); +if (lean_obj_tag(x_14) == 0) +{ +uint8_t x_15; +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_1); +x_15 = !lean_is_exclusive(x_13); +if (x_15 == 0) +{ +lean_object* x_16; lean_object* x_17; +x_16 = lean_ctor_get(x_13, 0); +lean_dec(x_16); +x_17 = l_BitVec_reduceUnary___lambda__1___closed__1; +lean_ctor_set(x_13, 0, x_17); +return x_13; +} +else +{ +lean_object* x_18; lean_object* x_19; lean_object* x_20; +x_18 = lean_ctor_get(x_13, 1); +lean_inc(x_18); +lean_dec(x_13); +x_19 = l_BitVec_reduceUnary___lambda__1___closed__1; +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 +{ +lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; +x_21 = lean_ctor_get(x_13, 1); +lean_inc(x_21); +lean_dec(x_13); +x_22 = lean_ctor_get(x_14, 0); +lean_inc(x_22); +lean_dec(x_14); +x_23 = l_Lean_Expr_appArg_x21(x_1); +lean_dec(x_1); +x_24 = l_Lean_Meta_getNatValue_x3f(x_23, x_6, x_7, x_8, x_9, x_21); +if (lean_obj_tag(x_24) == 0) +{ +lean_object* x_25; +x_25 = lean_ctor_get(x_24, 0); +lean_inc(x_25); +if (lean_obj_tag(x_25) == 0) +{ +uint8_t x_26; +lean_dec(x_22); +x_26 = !lean_is_exclusive(x_24); +if (x_26 == 0) +{ +lean_object* x_27; lean_object* x_28; +x_27 = lean_ctor_get(x_24, 0); +lean_dec(x_27); +x_28 = l_BitVec_reduceUnary___lambda__1___closed__1; +lean_ctor_set(x_24, 0, x_28); +return x_24; +} +else +{ +lean_object* x_29; lean_object* x_30; lean_object* x_31; +x_29 = lean_ctor_get(x_24, 1); +lean_inc(x_29); +lean_dec(x_24); +x_30 = l_BitVec_reduceUnary___lambda__1___closed__1; +x_31 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_31, 0, x_30); +lean_ctor_set(x_31, 1, x_29); +return x_31; +} +} +else +{ +uint8_t x_32; +x_32 = !lean_is_exclusive(x_24); +if (x_32 == 0) +{ +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; uint32_t x_43; uint8_t x_44; lean_object* x_45; lean_object* x_46; +x_33 = lean_ctor_get(x_24, 0); +lean_dec(x_33); +x_34 = lean_ctor_get(x_25, 0); +lean_inc(x_34); +lean_dec(x_25); +x_35 = lean_ctor_get(x_22, 0); +lean_inc(x_35); +x_36 = lean_ctor_get(x_22, 1); +lean_inc(x_36); +lean_dec(x_22); +x_37 = l_BitVec_sshiftRight(x_35, x_36, x_34); +lean_dec(x_34); +x_38 = l_Lean_mkNatLit(x_35); +x_39 = l_Lean_mkNatLit(x_37); +x_40 = l_BitVec_reduceUnary___lambda__1___closed__5; +x_41 = l_Lean_mkAppB(x_40, x_38, x_39); +x_42 = lean_box(0); +x_43 = 0; +x_44 = 1; +x_45 = lean_alloc_ctor(0, 2, 5); +lean_ctor_set(x_45, 0, x_41); +lean_ctor_set(x_45, 1, x_42); +lean_ctor_set_uint32(x_45, sizeof(void*)*2, x_43); +lean_ctor_set_uint8(x_45, sizeof(void*)*2 + 4, x_44); +x_46 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_46, 0, x_45); +lean_ctor_set(x_24, 0, x_46); +return x_24; +} +else +{ +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; uint32_t x_57; uint8_t x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; +x_47 = lean_ctor_get(x_24, 1); +lean_inc(x_47); +lean_dec(x_24); +x_48 = lean_ctor_get(x_25, 0); +lean_inc(x_48); +lean_dec(x_25); +x_49 = lean_ctor_get(x_22, 0); +lean_inc(x_49); +x_50 = lean_ctor_get(x_22, 1); +lean_inc(x_50); +lean_dec(x_22); +x_51 = l_BitVec_sshiftRight(x_49, x_50, x_48); +lean_dec(x_48); +x_52 = l_Lean_mkNatLit(x_49); +x_53 = l_Lean_mkNatLit(x_51); +x_54 = l_BitVec_reduceUnary___lambda__1___closed__5; +x_55 = l_Lean_mkAppB(x_54, x_52, x_53); +x_56 = lean_box(0); +x_57 = 0; +x_58 = 1; +x_59 = lean_alloc_ctor(0, 2, 5); +lean_ctor_set(x_59, 0, x_55); +lean_ctor_set(x_59, 1, x_56); +lean_ctor_set_uint32(x_59, sizeof(void*)*2, x_57); +lean_ctor_set_uint8(x_59, sizeof(void*)*2 + 4, x_58); +x_60 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_60, 0, x_59); +x_61 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_61, 0, x_60); +lean_ctor_set(x_61, 1, x_47); +return x_61; +} +} +} +else +{ +uint8_t x_62; +lean_dec(x_22); +x_62 = !lean_is_exclusive(x_24); +if (x_62 == 0) +{ +return x_24; +} +else +{ +lean_object* x_63; lean_object* x_64; lean_object* x_65; +x_63 = lean_ctor_get(x_24, 0); +x_64 = lean_ctor_get(x_24, 1); +lean_inc(x_64); +lean_inc(x_63); +lean_dec(x_24); +x_65 = lean_alloc_ctor(1, 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_66; +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_1); +x_66 = !lean_is_exclusive(x_13); +if (x_66 == 0) +{ +return x_13; +} +else +{ +lean_object* x_67; lean_object* x_68; lean_object* x_69; +x_67 = lean_ctor_get(x_13, 0); +x_68 = lean_ctor_get(x_13, 1); +lean_inc(x_68); +lean_inc(x_67); +lean_dec(x_13); +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; +} +} +} +} +static lean_object* _init_l_BitVec_reduceSShiftRight___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("sshiftRight", 11); +return x_1; +} +} +static lean_object* _init_l_BitVec_reduceSShiftRight___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_BitVec_reduceUnary___lambda__1___closed__2; +x_2 = l_BitVec_reduceSShiftRight___closed__1; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; +} +} +LEAN_EXPORT lean_object* l_BitVec_reduceSShiftRight(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; uint8_t x_12; +x_10 = l_BitVec_reduceSShiftRight___closed__2; +x_11 = lean_unsigned_to_nat(3u); +x_12 = l_Lean_Expr_isAppOfArity(x_1, x_10, x_11); +if (x_12 == 0) +{ +lean_object* x_13; lean_object* x_14; +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); +x_13 = l_BitVec_reduceUnary___lambda__1___closed__1; +x_14 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_14, 0, x_13); +lean_ctor_set(x_14, 1, x_9); +return x_14; +} +else +{ +lean_object* x_15; lean_object* x_16; +x_15 = lean_box(0); +x_16 = l_BitVec_reduceSShiftRight___lambda__1(x_1, x_15, 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_16; +} +} +} +LEAN_EXPORT lean_object* l_BitVec_reduceSShiftRight___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_BitVec_reduceSShiftRight___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; +} +} +static lean_object* _init_l___regBuiltin_BitVec_reduceSShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1832____closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("reduceSShiftRight", 17); +return x_1; +} +} +static lean_object* _init_l___regBuiltin_BitVec_reduceSShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1832____closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_BitVec_reduceUnary___lambda__1___closed__2; +x_2 = l___regBuiltin_BitVec_reduceSShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1832____closed__1; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___regBuiltin_BitVec_reduceSShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1832____closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_BitVec_reduceSShiftRight___closed__2; +x_2 = lean_unsigned_to_nat(3u); +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_BitVec_reduceSShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1832____closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___regBuiltin_BitVec_reduceUMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1568____closed__4; +x_2 = l___regBuiltin_BitVec_reduceSShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1832____closed__3; +x_3 = lean_array_push(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___regBuiltin_BitVec_reduceSShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1832____closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___regBuiltin_BitVec_reduceSShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1832____closed__4; +x_2 = lean_box(3); +x_3 = lean_array_push(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___regBuiltin_BitVec_reduceSShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1832____closed__6() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___regBuiltin_BitVec_reduceSShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1832____closed__5; +x_2 = lean_box(3); +x_3 = lean_array_push(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___regBuiltin_BitVec_reduceSShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1832____closed__7() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___regBuiltin_BitVec_reduceSShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1832____closed__6; +x_2 = lean_box(3); +x_3 = lean_array_push(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___regBuiltin_BitVec_reduceSShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1832____closed__8() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_BitVec_reduceSShiftRight), 9, 0); +return x_1; +} +} +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceSShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1832_(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_BitVec_reduceSShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1832____closed__2; +x_3 = l___regBuiltin_BitVec_reduceSShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1832____closed__7; +x_4 = l___regBuiltin_BitVec_reduceSShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1832____closed__8; +x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); +return x_5; +} +} +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceSShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1834_(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_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1150____closed__1; +x_3 = l___regBuiltin_BitVec_reduceSShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1832____closed__2; +x_4 = 1; +x_5 = l___regBuiltin_BitVec_reduceSShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1832____closed__8; +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_BitVec_reduceSShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1836_(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_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1152____closed__1; +x_3 = l___regBuiltin_BitVec_reduceSShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1832____closed__2; +x_4 = 1; +x_5 = l___regBuiltin_BitVec_reduceSShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1832____closed__8; +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_BitVec_reduceHShiftLeft___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("HShiftLeft", 10); +return x_1; +} +} +static lean_object* _init_l_BitVec_reduceHShiftLeft___closed__2() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("hShiftLeft", 10); +return x_1; +} +} +static lean_object* _init_l_BitVec_reduceHShiftLeft___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_BitVec_reduceHShiftLeft___closed__1; +x_2 = l_BitVec_reduceHShiftLeft___closed__2; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; +} +} +LEAN_EXPORT lean_object* l_BitVec_reduceHShiftLeft(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; uint8_t x_12; +x_10 = l_BitVec_reduceHShiftLeft___closed__3; +x_11 = lean_unsigned_to_nat(6u); +x_12 = l_Lean_Expr_isAppOfArity(x_1, x_10, x_11); +if (x_12 == 0) +{ +lean_object* x_13; lean_object* x_14; +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_1); +x_13 = l_BitVec_reduceUnary___lambda__1___closed__1; +x_14 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_14, 0, x_13); +lean_ctor_set(x_14, 1, x_9); +return x_14; +} +else +{ +lean_object* x_15; lean_object* x_16; +x_15 = lean_box(0); +x_16 = l_BitVec_reduceShiftLeft___lambda__1(x_1, x_15, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +return x_16; +} +} +} +LEAN_EXPORT lean_object* l_BitVec_reduceHShiftLeft___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_BitVec_reduceHShiftLeft(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___regBuiltin_BitVec_reduceHShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1874____closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("reduceHShiftLeft", 16); +return x_1; +} +} +static lean_object* _init_l___regBuiltin_BitVec_reduceHShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1874____closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_BitVec_reduceUnary___lambda__1___closed__2; +x_2 = l___regBuiltin_BitVec_reduceHShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1874____closed__1; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___regBuiltin_BitVec_reduceHShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1874____closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_BitVec_reduceHShiftLeft___closed__3; +x_2 = lean_unsigned_to_nat(6u); +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_BitVec_reduceHShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1874____closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = lean_unsigned_to_nat(8u); +x_2 = lean_mk_empty_array_with_capacity(x_1); +return x_2; +} +} +static lean_object* _init_l___regBuiltin_BitVec_reduceHShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1874____closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___regBuiltin_BitVec_reduceHShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1874____closed__4; +x_2 = l___regBuiltin_BitVec_reduceHShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1874____closed__3; +x_3 = lean_array_push(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___regBuiltin_BitVec_reduceHShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1874____closed__6() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___regBuiltin_BitVec_reduceHShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1874____closed__5; +x_2 = lean_box(3); +x_3 = lean_array_push(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___regBuiltin_BitVec_reduceHShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1874____closed__7() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___regBuiltin_BitVec_reduceHShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1874____closed__6; +x_2 = lean_box(3); +x_3 = lean_array_push(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___regBuiltin_BitVec_reduceHShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1874____closed__8() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___regBuiltin_BitVec_reduceHShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1874____closed__7; +x_2 = l___regBuiltin_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1148____closed__5; +x_3 = lean_array_push(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___regBuiltin_BitVec_reduceHShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1874____closed__9() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___regBuiltin_BitVec_reduceHShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1874____closed__8; +x_2 = lean_box(3); +x_3 = lean_array_push(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___regBuiltin_BitVec_reduceHShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1874____closed__10() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___regBuiltin_BitVec_reduceHShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1874____closed__9; +x_2 = lean_box(3); +x_3 = lean_array_push(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___regBuiltin_BitVec_reduceHShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1874____closed__11() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___regBuiltin_BitVec_reduceHShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1874____closed__10; +x_2 = lean_box(3); +x_3 = lean_array_push(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___regBuiltin_BitVec_reduceHShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1874____closed__12() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___regBuiltin_BitVec_reduceHShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1874____closed__11; +x_2 = lean_box(3); +x_3 = lean_array_push(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___regBuiltin_BitVec_reduceHShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1874____closed__13() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_BitVec_reduceHShiftLeft___boxed), 9, 0); +return x_1; +} +} +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceHShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1874_(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_BitVec_reduceHShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1874____closed__2; +x_3 = l___regBuiltin_BitVec_reduceHShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1874____closed__12; +x_4 = l___regBuiltin_BitVec_reduceHShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1874____closed__13; +x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); +return x_5; +} +} +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceHShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1876_(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_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1150____closed__1; +x_3 = l___regBuiltin_BitVec_reduceHShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1874____closed__2; +x_4 = 1; +x_5 = l___regBuiltin_BitVec_reduceHShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1874____closed__13; +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_BitVec_reduceHShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1878_(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_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1152____closed__1; +x_3 = l___regBuiltin_BitVec_reduceHShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1874____closed__2; +x_4 = 1; +x_5 = l___regBuiltin_BitVec_reduceHShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1874____closed__13; +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_BitVec_reduceHShiftRight___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("HShiftRight", 11); +return x_1; +} +} +static lean_object* _init_l_BitVec_reduceHShiftRight___closed__2() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("hShiftRight", 11); +return x_1; +} +} +static lean_object* _init_l_BitVec_reduceHShiftRight___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_BitVec_reduceHShiftRight___closed__1; +x_2 = l_BitVec_reduceHShiftRight___closed__2; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; +} +} +LEAN_EXPORT lean_object* l_BitVec_reduceHShiftRight(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; uint8_t x_12; +x_10 = l_BitVec_reduceHShiftRight___closed__3; +x_11 = lean_unsigned_to_nat(6u); +x_12 = l_Lean_Expr_isAppOfArity(x_1, x_10, x_11); +if (x_12 == 0) +{ +lean_object* x_13; lean_object* x_14; +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_1); +x_13 = l_BitVec_reduceUnary___lambda__1___closed__1; +x_14 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_14, 0, x_13); +lean_ctor_set(x_14, 1, x_9); +return x_14; +} +else +{ +lean_object* x_15; lean_object* x_16; +x_15 = lean_box(0); +x_16 = l_BitVec_reduceUShiftRight___lambda__1(x_1, x_15, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +return x_16; +} +} +} +LEAN_EXPORT lean_object* l_BitVec_reduceHShiftRight___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_BitVec_reduceHShiftRight(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___regBuiltin_BitVec_reduceHShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1916____closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("reduceHShiftRight", 17); +return x_1; +} +} +static lean_object* _init_l___regBuiltin_BitVec_reduceHShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1916____closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_BitVec_reduceUnary___lambda__1___closed__2; +x_2 = l___regBuiltin_BitVec_reduceHShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1916____closed__1; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___regBuiltin_BitVec_reduceHShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1916____closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_BitVec_reduceHShiftRight___closed__3; +x_2 = lean_unsigned_to_nat(6u); +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_BitVec_reduceHShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1916____closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___regBuiltin_BitVec_reduceHShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1874____closed__4; +x_2 = l___regBuiltin_BitVec_reduceHShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1916____closed__3; +x_3 = lean_array_push(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___regBuiltin_BitVec_reduceHShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1916____closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___regBuiltin_BitVec_reduceHShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1916____closed__4; +x_2 = lean_box(3); +x_3 = lean_array_push(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___regBuiltin_BitVec_reduceHShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1916____closed__6() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___regBuiltin_BitVec_reduceHShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1916____closed__5; +x_2 = lean_box(3); +x_3 = lean_array_push(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___regBuiltin_BitVec_reduceHShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1916____closed__7() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___regBuiltin_BitVec_reduceHShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1916____closed__6; +x_2 = l___regBuiltin_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1148____closed__5; +x_3 = lean_array_push(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___regBuiltin_BitVec_reduceHShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1916____closed__8() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___regBuiltin_BitVec_reduceHShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1916____closed__7; +x_2 = lean_box(3); +x_3 = lean_array_push(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___regBuiltin_BitVec_reduceHShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1916____closed__9() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___regBuiltin_BitVec_reduceHShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1916____closed__8; +x_2 = lean_box(3); +x_3 = lean_array_push(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___regBuiltin_BitVec_reduceHShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1916____closed__10() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___regBuiltin_BitVec_reduceHShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1916____closed__9; +x_2 = lean_box(3); +x_3 = lean_array_push(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___regBuiltin_BitVec_reduceHShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1916____closed__11() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___regBuiltin_BitVec_reduceHShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1916____closed__10; +x_2 = lean_box(3); +x_3 = lean_array_push(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___regBuiltin_BitVec_reduceHShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1916____closed__12() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_BitVec_reduceHShiftRight___boxed), 9, 0); +return x_1; +} +} +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceHShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1916_(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_BitVec_reduceHShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1916____closed__2; +x_3 = l___regBuiltin_BitVec_reduceHShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1916____closed__11; +x_4 = l___regBuiltin_BitVec_reduceHShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1916____closed__12; +x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); +return x_5; +} +} +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceHShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1918_(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_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1150____closed__1; +x_3 = l___regBuiltin_BitVec_reduceHShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1916____closed__2; +x_4 = 1; +x_5 = l___regBuiltin_BitVec_reduceHShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1916____closed__12; +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_BitVec_reduceHShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1920_(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_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1152____closed__1; +x_3 = l___regBuiltin_BitVec_reduceHShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1916____closed__2; +x_4 = 1; +x_5 = l___regBuiltin_BitVec_reduceHShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1916____closed__12; +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_BitVec_reduceRotateLeft___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; +lean_inc(x_1); +x_11 = l_Lean_Expr_appFn_x21(x_1); +x_12 = l_Lean_Expr_appArg_x21(x_11); +lean_dec(x_11); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_6); +x_13 = l_BitVec_fromExpr_x3f(x_12, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_12); +if (lean_obj_tag(x_13) == 0) +{ +lean_object* x_14; +x_14 = lean_ctor_get(x_13, 0); +lean_inc(x_14); +if (lean_obj_tag(x_14) == 0) +{ +uint8_t x_15; +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_1); +x_15 = !lean_is_exclusive(x_13); +if (x_15 == 0) +{ +lean_object* x_16; lean_object* x_17; +x_16 = lean_ctor_get(x_13, 0); +lean_dec(x_16); +x_17 = l_BitVec_reduceUnary___lambda__1___closed__1; +lean_ctor_set(x_13, 0, x_17); +return x_13; +} +else +{ +lean_object* x_18; lean_object* x_19; lean_object* x_20; +x_18 = lean_ctor_get(x_13, 1); +lean_inc(x_18); +lean_dec(x_13); +x_19 = l_BitVec_reduceUnary___lambda__1___closed__1; +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 +{ +lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; +x_21 = lean_ctor_get(x_13, 1); +lean_inc(x_21); +lean_dec(x_13); +x_22 = lean_ctor_get(x_14, 0); +lean_inc(x_22); +lean_dec(x_14); +x_23 = l_Lean_Expr_appArg_x21(x_1); +lean_dec(x_1); +x_24 = l_Lean_Meta_getNatValue_x3f(x_23, x_6, x_7, x_8, x_9, x_21); +if (lean_obj_tag(x_24) == 0) +{ +lean_object* x_25; +x_25 = lean_ctor_get(x_24, 0); +lean_inc(x_25); +if (lean_obj_tag(x_25) == 0) +{ +uint8_t x_26; +lean_dec(x_22); +x_26 = !lean_is_exclusive(x_24); +if (x_26 == 0) +{ +lean_object* x_27; lean_object* x_28; +x_27 = lean_ctor_get(x_24, 0); +lean_dec(x_27); +x_28 = l_BitVec_reduceUnary___lambda__1___closed__1; +lean_ctor_set(x_24, 0, x_28); +return x_24; +} +else +{ +lean_object* x_29; lean_object* x_30; lean_object* x_31; +x_29 = lean_ctor_get(x_24, 1); +lean_inc(x_29); +lean_dec(x_24); +x_30 = l_BitVec_reduceUnary___lambda__1___closed__1; +x_31 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_31, 0, x_30); +lean_ctor_set(x_31, 1, x_29); +return x_31; +} +} +else +{ +uint8_t x_32; +x_32 = !lean_is_exclusive(x_24); +if (x_32 == 0) +{ +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; uint32_t x_43; uint8_t x_44; lean_object* x_45; lean_object* x_46; +x_33 = lean_ctor_get(x_24, 0); +lean_dec(x_33); +x_34 = lean_ctor_get(x_25, 0); +lean_inc(x_34); +lean_dec(x_25); +x_35 = lean_ctor_get(x_22, 0); +lean_inc(x_35); +x_36 = lean_ctor_get(x_22, 1); +lean_inc(x_36); +lean_dec(x_22); +x_37 = l_BitVec_rotateLeft(x_35, x_36, x_34); +lean_dec(x_34); +lean_dec(x_36); +x_38 = l_Lean_mkNatLit(x_35); +x_39 = l_Lean_mkNatLit(x_37); +x_40 = l_BitVec_reduceUnary___lambda__1___closed__5; +x_41 = l_Lean_mkAppB(x_40, x_38, x_39); +x_42 = lean_box(0); +x_43 = 0; +x_44 = 1; +x_45 = lean_alloc_ctor(0, 2, 5); +lean_ctor_set(x_45, 0, x_41); +lean_ctor_set(x_45, 1, x_42); +lean_ctor_set_uint32(x_45, sizeof(void*)*2, x_43); +lean_ctor_set_uint8(x_45, sizeof(void*)*2 + 4, x_44); +x_46 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_46, 0, x_45); +lean_ctor_set(x_24, 0, x_46); +return x_24; +} +else +{ +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; uint32_t x_57; uint8_t x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; +x_47 = lean_ctor_get(x_24, 1); +lean_inc(x_47); +lean_dec(x_24); +x_48 = lean_ctor_get(x_25, 0); +lean_inc(x_48); +lean_dec(x_25); +x_49 = lean_ctor_get(x_22, 0); +lean_inc(x_49); +x_50 = lean_ctor_get(x_22, 1); +lean_inc(x_50); +lean_dec(x_22); +x_51 = l_BitVec_rotateLeft(x_49, x_50, x_48); +lean_dec(x_48); +lean_dec(x_50); +x_52 = l_Lean_mkNatLit(x_49); +x_53 = l_Lean_mkNatLit(x_51); +x_54 = l_BitVec_reduceUnary___lambda__1___closed__5; +x_55 = l_Lean_mkAppB(x_54, x_52, x_53); +x_56 = lean_box(0); +x_57 = 0; +x_58 = 1; +x_59 = lean_alloc_ctor(0, 2, 5); +lean_ctor_set(x_59, 0, x_55); +lean_ctor_set(x_59, 1, x_56); +lean_ctor_set_uint32(x_59, sizeof(void*)*2, x_57); +lean_ctor_set_uint8(x_59, sizeof(void*)*2 + 4, x_58); +x_60 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_60, 0, x_59); +x_61 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_61, 0, x_60); +lean_ctor_set(x_61, 1, x_47); +return x_61; +} +} +} +else +{ +uint8_t x_62; +lean_dec(x_22); +x_62 = !lean_is_exclusive(x_24); +if (x_62 == 0) +{ +return x_24; +} +else +{ +lean_object* x_63; lean_object* x_64; lean_object* x_65; +x_63 = lean_ctor_get(x_24, 0); +x_64 = lean_ctor_get(x_24, 1); +lean_inc(x_64); +lean_inc(x_63); +lean_dec(x_24); +x_65 = lean_alloc_ctor(1, 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_66; +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_1); +x_66 = !lean_is_exclusive(x_13); +if (x_66 == 0) +{ +return x_13; +} +else +{ +lean_object* x_67; lean_object* x_68; lean_object* x_69; +x_67 = lean_ctor_get(x_13, 0); +x_68 = lean_ctor_get(x_13, 1); +lean_inc(x_68); +lean_inc(x_67); +lean_dec(x_13); +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; +} +} +} +} +static lean_object* _init_l_BitVec_reduceRotateLeft___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("rotateLeft", 10); +return x_1; +} +} +static lean_object* _init_l_BitVec_reduceRotateLeft___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_BitVec_reduceUnary___lambda__1___closed__2; +x_2 = l_BitVec_reduceRotateLeft___closed__1; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; +} +} +LEAN_EXPORT lean_object* l_BitVec_reduceRotateLeft(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; uint8_t x_12; +x_10 = l_BitVec_reduceRotateLeft___closed__2; +x_11 = lean_unsigned_to_nat(3u); +x_12 = l_Lean_Expr_isAppOfArity(x_1, x_10, x_11); +if (x_12 == 0) +{ +lean_object* x_13; lean_object* x_14; +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); +x_13 = l_BitVec_reduceUnary___lambda__1___closed__1; +x_14 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_14, 0, x_13); +lean_ctor_set(x_14, 1, x_9); +return x_14; +} +else +{ +lean_object* x_15; lean_object* x_16; +x_15 = lean_box(0); +x_16 = l_BitVec_reduceRotateLeft___lambda__1(x_1, x_15, 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_16; +} +} +} +LEAN_EXPORT lean_object* l_BitVec_reduceRotateLeft___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_BitVec_reduceRotateLeft___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; +} +} +static lean_object* _init_l___regBuiltin_BitVec_reduceRotateLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1938____closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("reduceRotateLeft", 16); +return x_1; +} +} +static lean_object* _init_l___regBuiltin_BitVec_reduceRotateLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1938____closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_BitVec_reduceUnary___lambda__1___closed__2; +x_2 = l___regBuiltin_BitVec_reduceRotateLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1938____closed__1; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___regBuiltin_BitVec_reduceRotateLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1938____closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_BitVec_reduceRotateLeft___closed__2; +x_2 = lean_unsigned_to_nat(3u); +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_BitVec_reduceRotateLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1938____closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___regBuiltin_BitVec_reduceUMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1568____closed__4; +x_2 = l___regBuiltin_BitVec_reduceRotateLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1938____closed__3; +x_3 = lean_array_push(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___regBuiltin_BitVec_reduceRotateLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1938____closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___regBuiltin_BitVec_reduceRotateLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1938____closed__4; +x_2 = lean_box(3); +x_3 = lean_array_push(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___regBuiltin_BitVec_reduceRotateLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1938____closed__6() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___regBuiltin_BitVec_reduceRotateLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1938____closed__5; +x_2 = lean_box(3); +x_3 = lean_array_push(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___regBuiltin_BitVec_reduceRotateLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1938____closed__7() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___regBuiltin_BitVec_reduceRotateLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1938____closed__6; +x_2 = lean_box(3); +x_3 = lean_array_push(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___regBuiltin_BitVec_reduceRotateLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1938____closed__8() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_BitVec_reduceRotateLeft), 9, 0); +return x_1; +} +} +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceRotateLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1938_(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_BitVec_reduceRotateLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1938____closed__2; +x_3 = l___regBuiltin_BitVec_reduceRotateLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1938____closed__7; +x_4 = l___regBuiltin_BitVec_reduceRotateLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1938____closed__8; +x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); +return x_5; +} +} +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceRotateLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1940_(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_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1150____closed__1; +x_3 = l___regBuiltin_BitVec_reduceRotateLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1938____closed__2; +x_4 = 1; +x_5 = l___regBuiltin_BitVec_reduceRotateLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1938____closed__8; +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_BitVec_reduceRotateLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1942_(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_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1152____closed__1; +x_3 = l___regBuiltin_BitVec_reduceRotateLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1938____closed__2; +x_4 = 1; +x_5 = l___regBuiltin_BitVec_reduceRotateLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1938____closed__8; +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_BitVec_reduceRotateRight___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; +lean_inc(x_1); +x_11 = l_Lean_Expr_appFn_x21(x_1); +x_12 = l_Lean_Expr_appArg_x21(x_11); +lean_dec(x_11); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_6); +x_13 = l_BitVec_fromExpr_x3f(x_12, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_12); +if (lean_obj_tag(x_13) == 0) +{ +lean_object* x_14; +x_14 = lean_ctor_get(x_13, 0); +lean_inc(x_14); +if (lean_obj_tag(x_14) == 0) +{ +uint8_t x_15; +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_1); +x_15 = !lean_is_exclusive(x_13); +if (x_15 == 0) +{ +lean_object* x_16; lean_object* x_17; +x_16 = lean_ctor_get(x_13, 0); +lean_dec(x_16); +x_17 = l_BitVec_reduceUnary___lambda__1___closed__1; +lean_ctor_set(x_13, 0, x_17); +return x_13; +} +else +{ +lean_object* x_18; lean_object* x_19; lean_object* x_20; +x_18 = lean_ctor_get(x_13, 1); +lean_inc(x_18); +lean_dec(x_13); +x_19 = l_BitVec_reduceUnary___lambda__1___closed__1; +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 +{ +lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; +x_21 = lean_ctor_get(x_13, 1); +lean_inc(x_21); +lean_dec(x_13); +x_22 = lean_ctor_get(x_14, 0); +lean_inc(x_22); +lean_dec(x_14); +x_23 = l_Lean_Expr_appArg_x21(x_1); +lean_dec(x_1); +x_24 = l_Lean_Meta_getNatValue_x3f(x_23, x_6, x_7, x_8, x_9, x_21); +if (lean_obj_tag(x_24) == 0) +{ +lean_object* x_25; +x_25 = lean_ctor_get(x_24, 0); +lean_inc(x_25); +if (lean_obj_tag(x_25) == 0) +{ +uint8_t x_26; +lean_dec(x_22); +x_26 = !lean_is_exclusive(x_24); +if (x_26 == 0) +{ +lean_object* x_27; lean_object* x_28; +x_27 = lean_ctor_get(x_24, 0); +lean_dec(x_27); +x_28 = l_BitVec_reduceUnary___lambda__1___closed__1; +lean_ctor_set(x_24, 0, x_28); +return x_24; +} +else +{ +lean_object* x_29; lean_object* x_30; lean_object* x_31; +x_29 = lean_ctor_get(x_24, 1); +lean_inc(x_29); +lean_dec(x_24); +x_30 = l_BitVec_reduceUnary___lambda__1___closed__1; +x_31 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_31, 0, x_30); +lean_ctor_set(x_31, 1, x_29); +return x_31; +} +} +else +{ +uint8_t x_32; +x_32 = !lean_is_exclusive(x_24); +if (x_32 == 0) +{ +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; uint32_t x_43; uint8_t x_44; lean_object* x_45; lean_object* x_46; +x_33 = lean_ctor_get(x_24, 0); +lean_dec(x_33); +x_34 = lean_ctor_get(x_25, 0); +lean_inc(x_34); +lean_dec(x_25); +x_35 = lean_ctor_get(x_22, 0); +lean_inc(x_35); +x_36 = lean_ctor_get(x_22, 1); +lean_inc(x_36); +lean_dec(x_22); +x_37 = l_BitVec_rotateRight(x_35, x_36, x_34); +lean_dec(x_34); +lean_dec(x_36); +x_38 = l_Lean_mkNatLit(x_35); +x_39 = l_Lean_mkNatLit(x_37); +x_40 = l_BitVec_reduceUnary___lambda__1___closed__5; +x_41 = l_Lean_mkAppB(x_40, x_38, x_39); +x_42 = lean_box(0); +x_43 = 0; +x_44 = 1; +x_45 = lean_alloc_ctor(0, 2, 5); +lean_ctor_set(x_45, 0, x_41); +lean_ctor_set(x_45, 1, x_42); +lean_ctor_set_uint32(x_45, sizeof(void*)*2, x_43); +lean_ctor_set_uint8(x_45, sizeof(void*)*2 + 4, x_44); +x_46 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_46, 0, x_45); +lean_ctor_set(x_24, 0, x_46); +return x_24; +} +else +{ +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; uint32_t x_57; uint8_t x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; +x_47 = lean_ctor_get(x_24, 1); +lean_inc(x_47); +lean_dec(x_24); +x_48 = lean_ctor_get(x_25, 0); +lean_inc(x_48); +lean_dec(x_25); +x_49 = lean_ctor_get(x_22, 0); +lean_inc(x_49); +x_50 = lean_ctor_get(x_22, 1); +lean_inc(x_50); +lean_dec(x_22); +x_51 = l_BitVec_rotateRight(x_49, x_50, x_48); +lean_dec(x_48); +lean_dec(x_50); +x_52 = l_Lean_mkNatLit(x_49); +x_53 = l_Lean_mkNatLit(x_51); +x_54 = l_BitVec_reduceUnary___lambda__1___closed__5; +x_55 = l_Lean_mkAppB(x_54, x_52, x_53); +x_56 = lean_box(0); +x_57 = 0; +x_58 = 1; +x_59 = lean_alloc_ctor(0, 2, 5); +lean_ctor_set(x_59, 0, x_55); +lean_ctor_set(x_59, 1, x_56); +lean_ctor_set_uint32(x_59, sizeof(void*)*2, x_57); +lean_ctor_set_uint8(x_59, sizeof(void*)*2 + 4, x_58); +x_60 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_60, 0, x_59); +x_61 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_61, 0, x_60); +lean_ctor_set(x_61, 1, x_47); +return x_61; +} +} +} +else +{ +uint8_t x_62; +lean_dec(x_22); +x_62 = !lean_is_exclusive(x_24); +if (x_62 == 0) +{ +return x_24; +} +else +{ +lean_object* x_63; lean_object* x_64; lean_object* x_65; +x_63 = lean_ctor_get(x_24, 0); +x_64 = lean_ctor_get(x_24, 1); +lean_inc(x_64); +lean_inc(x_63); +lean_dec(x_24); +x_65 = lean_alloc_ctor(1, 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_66; +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_1); +x_66 = !lean_is_exclusive(x_13); +if (x_66 == 0) +{ +return x_13; +} +else +{ +lean_object* x_67; lean_object* x_68; lean_object* x_69; +x_67 = lean_ctor_get(x_13, 0); +x_68 = lean_ctor_get(x_13, 1); +lean_inc(x_68); +lean_inc(x_67); +lean_dec(x_13); +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; +} +} +} +} +static lean_object* _init_l_BitVec_reduceRotateRight___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("rotateRight", 11); +return x_1; +} +} +static lean_object* _init_l_BitVec_reduceRotateRight___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_BitVec_reduceUnary___lambda__1___closed__2; +x_2 = l_BitVec_reduceRotateRight___closed__1; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; +} +} +LEAN_EXPORT lean_object* l_BitVec_reduceRotateRight(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; uint8_t x_12; +x_10 = l_BitVec_reduceRotateRight___closed__2; +x_11 = lean_unsigned_to_nat(3u); +x_12 = l_Lean_Expr_isAppOfArity(x_1, x_10, x_11); +if (x_12 == 0) +{ +lean_object* x_13; lean_object* x_14; +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); +x_13 = l_BitVec_reduceUnary___lambda__1___closed__1; +x_14 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_14, 0, x_13); +lean_ctor_set(x_14, 1, x_9); +return x_14; +} +else +{ +lean_object* x_15; lean_object* x_16; +x_15 = lean_box(0); +x_16 = l_BitVec_reduceRotateRight___lambda__1(x_1, x_15, 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_16; +} +} +} +LEAN_EXPORT lean_object* l_BitVec_reduceRotateRight___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_BitVec_reduceRotateRight___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; +} +} +static lean_object* _init_l___regBuiltin_BitVec_reduceRotateRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1960____closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("reduceRotateRight", 17); +return x_1; +} +} +static lean_object* _init_l___regBuiltin_BitVec_reduceRotateRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1960____closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_BitVec_reduceUnary___lambda__1___closed__2; +x_2 = l___regBuiltin_BitVec_reduceRotateRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1960____closed__1; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___regBuiltin_BitVec_reduceRotateRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1960____closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_BitVec_reduceRotateRight___closed__2; +x_2 = lean_unsigned_to_nat(3u); +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_BitVec_reduceRotateRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1960____closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___regBuiltin_BitVec_reduceUMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1568____closed__4; +x_2 = l___regBuiltin_BitVec_reduceRotateRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1960____closed__3; +x_3 = lean_array_push(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___regBuiltin_BitVec_reduceRotateRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1960____closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___regBuiltin_BitVec_reduceRotateRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1960____closed__4; +x_2 = lean_box(3); +x_3 = lean_array_push(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___regBuiltin_BitVec_reduceRotateRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1960____closed__6() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___regBuiltin_BitVec_reduceRotateRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1960____closed__5; +x_2 = lean_box(3); +x_3 = lean_array_push(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___regBuiltin_BitVec_reduceRotateRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1960____closed__7() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___regBuiltin_BitVec_reduceRotateRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1960____closed__6; +x_2 = lean_box(3); +x_3 = lean_array_push(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___regBuiltin_BitVec_reduceRotateRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1960____closed__8() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_BitVec_reduceRotateRight), 9, 0); +return x_1; +} +} +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceRotateRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1960_(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_BitVec_reduceRotateRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1960____closed__2; +x_3 = l___regBuiltin_BitVec_reduceRotateRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1960____closed__7; +x_4 = l___regBuiltin_BitVec_reduceRotateRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1960____closed__8; +x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); +return x_5; +} +} +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceRotateRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1962_(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_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1150____closed__1; +x_3 = l___regBuiltin_BitVec_reduceRotateRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1960____closed__2; +x_4 = 1; +x_5 = l___regBuiltin_BitVec_reduceRotateRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1960____closed__8; +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_BitVec_reduceRotateRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1964_(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_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1152____closed__1; +x_3 = l___regBuiltin_BitVec_reduceRotateRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1960____closed__2; +x_4 = 1; +x_5 = l___regBuiltin_BitVec_reduceRotateRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1960____closed__8; +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_BitVec_reduceAppend___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; +lean_inc(x_1); +x_11 = l_Lean_Expr_appFn_x21(x_1); +x_12 = l_Lean_Expr_appArg_x21(x_11); +lean_dec(x_11); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_6); +x_13 = l_BitVec_fromExpr_x3f(x_12, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_12); +if (lean_obj_tag(x_13) == 0) +{ +lean_object* x_14; +x_14 = lean_ctor_get(x_13, 0); +lean_inc(x_14); +if (lean_obj_tag(x_14) == 0) +{ +uint8_t x_15; +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_1); +x_15 = !lean_is_exclusive(x_13); +if (x_15 == 0) +{ +lean_object* x_16; lean_object* x_17; +x_16 = lean_ctor_get(x_13, 0); +lean_dec(x_16); +x_17 = l_BitVec_reduceUnary___lambda__1___closed__1; +lean_ctor_set(x_13, 0, x_17); +return x_13; +} +else +{ +lean_object* x_18; lean_object* x_19; lean_object* x_20; +x_18 = lean_ctor_get(x_13, 1); +lean_inc(x_18); +lean_dec(x_13); +x_19 = l_BitVec_reduceUnary___lambda__1___closed__1; +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 +{ +lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; +x_21 = lean_ctor_get(x_13, 1); +lean_inc(x_21); +lean_dec(x_13); +x_22 = lean_ctor_get(x_14, 0); +lean_inc(x_22); +lean_dec(x_14); +x_23 = l_Lean_Expr_appArg_x21(x_1); +lean_dec(x_1); +x_24 = l_BitVec_fromExpr_x3f(x_23, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_21); +lean_dec(x_23); +if (lean_obj_tag(x_24) == 0) +{ +lean_object* x_25; +x_25 = lean_ctor_get(x_24, 0); +lean_inc(x_25); +if (lean_obj_tag(x_25) == 0) +{ +uint8_t x_26; +lean_dec(x_22); +x_26 = !lean_is_exclusive(x_24); +if (x_26 == 0) +{ +lean_object* x_27; lean_object* x_28; +x_27 = lean_ctor_get(x_24, 0); +lean_dec(x_27); +x_28 = l_BitVec_reduceUnary___lambda__1___closed__1; +lean_ctor_set(x_24, 0, x_28); +return x_24; +} +else +{ +lean_object* x_29; lean_object* x_30; lean_object* x_31; +x_29 = lean_ctor_get(x_24, 1); +lean_inc(x_29); +lean_dec(x_24); +x_30 = l_BitVec_reduceUnary___lambda__1___closed__1; +x_31 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_31, 0, x_30); +lean_ctor_set(x_31, 1, x_29); +return x_31; +} +} +else +{ +uint8_t x_32; +x_32 = !lean_is_exclusive(x_24); +if (x_32 == 0) +{ +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; uint32_t x_46; uint8_t x_47; lean_object* x_48; lean_object* x_49; +x_33 = lean_ctor_get(x_24, 0); +lean_dec(x_33); +x_34 = lean_ctor_get(x_25, 0); +lean_inc(x_34); +lean_dec(x_25); +x_35 = lean_ctor_get(x_22, 0); +lean_inc(x_35); +x_36 = lean_ctor_get(x_34, 0); +lean_inc(x_36); +x_37 = lean_nat_add(x_35, x_36); +lean_dec(x_35); +x_38 = lean_ctor_get(x_22, 1); +lean_inc(x_38); +lean_dec(x_22); +x_39 = lean_ctor_get(x_34, 1); +lean_inc(x_39); +lean_dec(x_34); +x_40 = l_BitVec_append___rarg(x_36, x_38, x_39); +lean_dec(x_39); +lean_dec(x_38); +lean_dec(x_36); +x_41 = l_Lean_mkNatLit(x_37); +x_42 = l_Lean_mkNatLit(x_40); +x_43 = l_BitVec_reduceUnary___lambda__1___closed__5; +x_44 = l_Lean_mkAppB(x_43, x_41, x_42); +x_45 = lean_box(0); +x_46 = 0; +x_47 = 1; +x_48 = lean_alloc_ctor(0, 2, 5); +lean_ctor_set(x_48, 0, x_44); +lean_ctor_set(x_48, 1, x_45); +lean_ctor_set_uint32(x_48, sizeof(void*)*2, x_46); +lean_ctor_set_uint8(x_48, sizeof(void*)*2 + 4, x_47); +x_49 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_49, 0, x_48); +lean_ctor_set(x_24, 0, x_49); +return x_24; +} +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; lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; uint32_t x_63; uint8_t x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; +x_50 = lean_ctor_get(x_24, 1); +lean_inc(x_50); +lean_dec(x_24); +x_51 = lean_ctor_get(x_25, 0); +lean_inc(x_51); +lean_dec(x_25); +x_52 = lean_ctor_get(x_22, 0); +lean_inc(x_52); +x_53 = lean_ctor_get(x_51, 0); +lean_inc(x_53); +x_54 = lean_nat_add(x_52, x_53); +lean_dec(x_52); +x_55 = lean_ctor_get(x_22, 1); +lean_inc(x_55); +lean_dec(x_22); +x_56 = lean_ctor_get(x_51, 1); lean_inc(x_56); -x_57 = lean_ctor_get(x_22, 1); -lean_inc(x_57); -if (lean_is_exclusive(x_22)) { - lean_ctor_release(x_22, 0); - lean_ctor_release(x_22, 1); - x_58 = x_22; -} else { - lean_dec_ref(x_22); - x_58 = lean_box(0); -} -x_59 = lean_nat_shiftr(x_57, x_55); +lean_dec(x_51); +x_57 = l_BitVec_append___rarg(x_53, x_55, x_56); +lean_dec(x_56); lean_dec(x_55); -lean_dec(x_57); -if (lean_is_scalar(x_58)) { - x_60 = lean_alloc_ctor(0, 2, 0); -} else { - x_60 = x_58; -} -lean_ctor_set(x_60, 0, x_56); -lean_ctor_set(x_60, 1, x_59); -x_61 = l_Std_BitVec_Literal_toExpr(x_60); +lean_dec(x_53); +x_58 = l_Lean_mkNatLit(x_54); +x_59 = l_Lean_mkNatLit(x_57); +x_60 = l_BitVec_reduceUnary___lambda__1___closed__5; +x_61 = l_Lean_mkAppB(x_60, x_58, x_59); x_62 = lean_box(0); x_63 = 0; x_64 = 1; @@ -17305,7 +18230,7 @@ x_66 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_66, 0, x_65); x_67 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_67, 0, x_66); -lean_ctor_set(x_67, 1, x_54); +lean_ctor_set(x_67, 1, x_50); return x_67; } } @@ -17364,2203 +18289,7 @@ return x_75; } } } -static lean_object* _init_l_Std_BitVec_reduceUShiftRight___closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("ushiftRight", 11); -return x_1; -} -} -static lean_object* _init_l_Std_BitVec_reduceUShiftRight___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f___closed__4; -x_2 = l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f___closed__5; -x_3 = l_Std_BitVec_reduceUShiftRight___closed__1; -x_4 = l_Lean_Name_mkStr3(x_1, x_2, x_3); -return x_4; -} -} -LEAN_EXPORT lean_object* l_Std_BitVec_reduceUShiftRight(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; uint8_t x_12; -x_10 = l_Std_BitVec_reduceUShiftRight___closed__2; -x_11 = lean_unsigned_to_nat(3u); -x_12 = l_Lean_Expr_isAppOfArity(x_1, x_10, x_11); -if (x_12 == 0) -{ -lean_object* x_13; lean_object* x_14; -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); -x_13 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; -x_14 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_14, 0, x_13); -lean_ctor_set(x_14, 1, x_9); -return x_14; -} -else -{ -lean_object* x_15; lean_object* x_16; -x_15 = lean_box(0); -x_16 = l_Std_BitVec_reduceUShiftRight___lambda__1(x_1, x_15, 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_16; -} -} -} -LEAN_EXPORT lean_object* l_Std_BitVec_reduceUShiftRight___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_Std_BitVec_reduceUShiftRight___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; -} -} -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceUShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2033____closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("reduceUShiftRight", 17); -return x_1; -} -} -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceUShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2033____closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f___closed__4; -x_2 = l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f___closed__5; -x_3 = l___regBuiltin_Std_BitVec_reduceUShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2033____closed__1; -x_4 = l_Lean_Name_mkStr3(x_1, x_2, x_3); -return x_4; -} -} -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceUShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2033____closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Std_BitVec_reduceUShiftRight___closed__2; -x_2 = lean_unsigned_to_nat(3u); -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_Std_BitVec_reduceUShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2033____closed__4() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceUMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1791____closed__4; -x_2 = l___regBuiltin_Std_BitVec_reduceUShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2033____closed__3; -x_3 = lean_array_push(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceUShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2033____closed__5() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceUShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2033____closed__4; -x_2 = lean_box(3); -x_3 = lean_array_push(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceUShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2033____closed__6() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceUShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2033____closed__5; -x_2 = lean_box(3); -x_3 = lean_array_push(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceUShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2033____closed__7() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceUShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2033____closed__6; -x_2 = lean_box(3); -x_3 = lean_array_push(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceUShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2033____closed__8() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Std_BitVec_reduceUShiftRight), 9, 0); -return x_1; -} -} -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceUShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2033_(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_Std_BitVec_reduceUShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2033____closed__2; -x_3 = l___regBuiltin_Std_BitVec_reduceUShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2033____closed__7; -x_4 = l___regBuiltin_Std_BitVec_reduceUShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2033____closed__8; -x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); -return x_5; -} -} -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceUShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2035_(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_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1373____closed__1; -x_3 = l___regBuiltin_Std_BitVec_reduceUShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2033____closed__2; -x_4 = 1; -x_5 = l___regBuiltin_Std_BitVec_reduceUShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2033____closed__8; -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_Std_BitVec_reduceUShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2037_(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_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1375____closed__1; -x_3 = l___regBuiltin_Std_BitVec_reduceUShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2033____closed__2; -x_4 = 1; -x_5 = l___regBuiltin_Std_BitVec_reduceUShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2033____closed__8; -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_Std_BitVec_reduceSShiftRight___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; -lean_inc(x_1); -x_11 = l_Lean_Expr_appFn_x21(x_1); -x_12 = l_Lean_Expr_appArg_x21(x_11); -lean_dec(x_11); -lean_inc(x_9); -lean_inc(x_8); -lean_inc(x_7); -lean_inc(x_6); -x_13 = l_Std_BitVec_fromExpr_x3f(x_12, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -if (lean_obj_tag(x_13) == 0) -{ -lean_object* x_14; -x_14 = lean_ctor_get(x_13, 0); -lean_inc(x_14); -if (lean_obj_tag(x_14) == 0) -{ -uint8_t x_15; -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_1); -x_15 = !lean_is_exclusive(x_13); -if (x_15 == 0) -{ -lean_object* x_16; lean_object* x_17; -x_16 = lean_ctor_get(x_13, 0); -lean_dec(x_16); -x_17 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; -lean_ctor_set(x_13, 0, x_17); -return x_13; -} -else -{ -lean_object* x_18; lean_object* x_19; lean_object* x_20; -x_18 = lean_ctor_get(x_13, 1); -lean_inc(x_18); -lean_dec(x_13); -x_19 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; -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 -{ -lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; -x_21 = lean_ctor_get(x_13, 1); -lean_inc(x_21); -lean_dec(x_13); -x_22 = lean_ctor_get(x_14, 0); -lean_inc(x_22); -lean_dec(x_14); -x_23 = l_Lean_Expr_appArg_x21(x_1); -lean_dec(x_1); -x_24 = l_Nat_fromExpr_x3f(x_23, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_21); -lean_dec(x_6); -if (lean_obj_tag(x_24) == 0) -{ -lean_object* x_25; -x_25 = lean_ctor_get(x_24, 0); -lean_inc(x_25); -if (lean_obj_tag(x_25) == 0) -{ -uint8_t x_26; -lean_dec(x_22); -x_26 = !lean_is_exclusive(x_24); -if (x_26 == 0) -{ -lean_object* x_27; lean_object* x_28; -x_27 = lean_ctor_get(x_24, 0); -lean_dec(x_27); -x_28 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; -lean_ctor_set(x_24, 0, x_28); -return x_24; -} -else -{ -lean_object* x_29; lean_object* x_30; lean_object* x_31; -x_29 = lean_ctor_get(x_24, 1); -lean_inc(x_29); -lean_dec(x_24); -x_30 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; -x_31 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_31, 0, x_30); -lean_ctor_set(x_31, 1, x_29); -return x_31; -} -} -else -{ -uint8_t x_32; -x_32 = !lean_is_exclusive(x_24); -if (x_32 == 0) -{ -lean_object* x_33; lean_object* x_34; uint8_t x_35; -x_33 = lean_ctor_get(x_24, 0); -lean_dec(x_33); -x_34 = lean_ctor_get(x_25, 0); -lean_inc(x_34); -lean_dec(x_25); -x_35 = !lean_is_exclusive(x_22); -if (x_35 == 0) -{ -lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; uint32_t x_41; uint8_t x_42; lean_object* x_43; lean_object* x_44; -x_36 = lean_ctor_get(x_22, 0); -x_37 = lean_ctor_get(x_22, 1); -x_38 = l_Std_BitVec_sshiftRight(x_36, x_37, x_34); -lean_dec(x_34); -lean_ctor_set(x_22, 1, x_38); -x_39 = l_Std_BitVec_Literal_toExpr(x_22); -x_40 = lean_box(0); -x_41 = 0; -x_42 = 1; -x_43 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_43, 0, x_39); -lean_ctor_set(x_43, 1, x_40); -lean_ctor_set_uint32(x_43, sizeof(void*)*2, x_41); -lean_ctor_set_uint8(x_43, sizeof(void*)*2 + 4, x_42); -x_44 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_44, 0, x_43); -lean_ctor_set(x_24, 0, x_44); -return x_24; -} -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; uint32_t x_51; uint8_t x_52; lean_object* x_53; lean_object* x_54; -x_45 = lean_ctor_get(x_22, 0); -x_46 = lean_ctor_get(x_22, 1); -lean_inc(x_46); -lean_inc(x_45); -lean_dec(x_22); -x_47 = l_Std_BitVec_sshiftRight(x_45, x_46, x_34); -lean_dec(x_34); -x_48 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_48, 0, x_45); -lean_ctor_set(x_48, 1, x_47); -x_49 = l_Std_BitVec_Literal_toExpr(x_48); -x_50 = lean_box(0); -x_51 = 0; -x_52 = 1; -x_53 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_53, 0, x_49); -lean_ctor_set(x_53, 1, x_50); -lean_ctor_set_uint32(x_53, sizeof(void*)*2, x_51); -lean_ctor_set_uint8(x_53, sizeof(void*)*2 + 4, x_52); -x_54 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_54, 0, x_53); -lean_ctor_set(x_24, 0, x_54); -return x_24; -} -} -else -{ -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; uint32_t x_64; uint8_t x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; -x_55 = lean_ctor_get(x_24, 1); -lean_inc(x_55); -lean_dec(x_24); -x_56 = lean_ctor_get(x_25, 0); -lean_inc(x_56); -lean_dec(x_25); -x_57 = lean_ctor_get(x_22, 0); -lean_inc(x_57); -x_58 = lean_ctor_get(x_22, 1); -lean_inc(x_58); -if (lean_is_exclusive(x_22)) { - lean_ctor_release(x_22, 0); - lean_ctor_release(x_22, 1); - x_59 = x_22; -} else { - lean_dec_ref(x_22); - x_59 = lean_box(0); -} -x_60 = l_Std_BitVec_sshiftRight(x_57, x_58, x_56); -lean_dec(x_56); -if (lean_is_scalar(x_59)) { - x_61 = lean_alloc_ctor(0, 2, 0); -} else { - x_61 = x_59; -} -lean_ctor_set(x_61, 0, x_57); -lean_ctor_set(x_61, 1, x_60); -x_62 = l_Std_BitVec_Literal_toExpr(x_61); -x_63 = lean_box(0); -x_64 = 0; -x_65 = 1; -x_66 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_66, 0, x_62); -lean_ctor_set(x_66, 1, x_63); -lean_ctor_set_uint32(x_66, sizeof(void*)*2, x_64); -lean_ctor_set_uint8(x_66, sizeof(void*)*2 + 4, x_65); -x_67 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_67, 0, x_66); -x_68 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_68, 0, x_67); -lean_ctor_set(x_68, 1, x_55); -return x_68; -} -} -} -else -{ -uint8_t x_69; -lean_dec(x_22); -x_69 = !lean_is_exclusive(x_24); -if (x_69 == 0) -{ -return x_24; -} -else -{ -lean_object* x_70; lean_object* x_71; lean_object* x_72; -x_70 = lean_ctor_get(x_24, 0); -x_71 = lean_ctor_get(x_24, 1); -lean_inc(x_71); -lean_inc(x_70); -lean_dec(x_24); -x_72 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_72, 0, x_70); -lean_ctor_set(x_72, 1, x_71); -return x_72; -} -} -} -} -else -{ -uint8_t x_73; -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_1); -x_73 = !lean_is_exclusive(x_13); -if (x_73 == 0) -{ -return x_13; -} -else -{ -lean_object* x_74; lean_object* x_75; lean_object* x_76; -x_74 = lean_ctor_get(x_13, 0); -x_75 = lean_ctor_get(x_13, 1); -lean_inc(x_75); -lean_inc(x_74); -lean_dec(x_13); -x_76 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_76, 0, x_74); -lean_ctor_set(x_76, 1, x_75); -return x_76; -} -} -} -} -static lean_object* _init_l_Std_BitVec_reduceSShiftRight___closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("sshiftRight", 11); -return x_1; -} -} -static lean_object* _init_l_Std_BitVec_reduceSShiftRight___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f___closed__4; -x_2 = l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f___closed__5; -x_3 = l_Std_BitVec_reduceSShiftRight___closed__1; -x_4 = l_Lean_Name_mkStr3(x_1, x_2, x_3); -return x_4; -} -} -LEAN_EXPORT lean_object* l_Std_BitVec_reduceSShiftRight(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; uint8_t x_12; -x_10 = l_Std_BitVec_reduceSShiftRight___closed__2; -x_11 = lean_unsigned_to_nat(3u); -x_12 = l_Lean_Expr_isAppOfArity(x_1, x_10, x_11); -if (x_12 == 0) -{ -lean_object* x_13; lean_object* x_14; -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); -x_13 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; -x_14 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_14, 0, x_13); -lean_ctor_set(x_14, 1, x_9); -return x_14; -} -else -{ -lean_object* x_15; lean_object* x_16; -x_15 = lean_box(0); -x_16 = l_Std_BitVec_reduceSShiftRight___lambda__1(x_1, x_15, 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_16; -} -} -} -LEAN_EXPORT lean_object* l_Std_BitVec_reduceSShiftRight___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_Std_BitVec_reduceSShiftRight___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; -} -} -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceSShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2055____closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("reduceSShiftRight", 17); -return x_1; -} -} -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceSShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2055____closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f___closed__4; -x_2 = l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f___closed__5; -x_3 = l___regBuiltin_Std_BitVec_reduceSShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2055____closed__1; -x_4 = l_Lean_Name_mkStr3(x_1, x_2, x_3); -return x_4; -} -} -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceSShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2055____closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Std_BitVec_reduceSShiftRight___closed__2; -x_2 = lean_unsigned_to_nat(3u); -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_Std_BitVec_reduceSShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2055____closed__4() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceUMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1791____closed__4; -x_2 = l___regBuiltin_Std_BitVec_reduceSShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2055____closed__3; -x_3 = lean_array_push(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceSShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2055____closed__5() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceSShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2055____closed__4; -x_2 = lean_box(3); -x_3 = lean_array_push(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceSShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2055____closed__6() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceSShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2055____closed__5; -x_2 = lean_box(3); -x_3 = lean_array_push(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceSShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2055____closed__7() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceSShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2055____closed__6; -x_2 = lean_box(3); -x_3 = lean_array_push(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceSShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2055____closed__8() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Std_BitVec_reduceSShiftRight), 9, 0); -return x_1; -} -} -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceSShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2055_(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_Std_BitVec_reduceSShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2055____closed__2; -x_3 = l___regBuiltin_Std_BitVec_reduceSShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2055____closed__7; -x_4 = l___regBuiltin_Std_BitVec_reduceSShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2055____closed__8; -x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); -return x_5; -} -} -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceSShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2057_(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_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1373____closed__1; -x_3 = l___regBuiltin_Std_BitVec_reduceSShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2055____closed__2; -x_4 = 1; -x_5 = l___regBuiltin_Std_BitVec_reduceSShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2055____closed__8; -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_Std_BitVec_reduceSShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2059_(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_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1375____closed__1; -x_3 = l___regBuiltin_Std_BitVec_reduceSShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2055____closed__2; -x_4 = 1; -x_5 = l___regBuiltin_Std_BitVec_reduceSShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2055____closed__8; -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_Std_BitVec_reduceHShiftLeft___closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("HShiftLeft", 10); -return x_1; -} -} -static lean_object* _init_l_Std_BitVec_reduceHShiftLeft___closed__2() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("hShiftLeft", 10); -return x_1; -} -} -static lean_object* _init_l_Std_BitVec_reduceHShiftLeft___closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Std_BitVec_reduceHShiftLeft___closed__1; -x_2 = l_Std_BitVec_reduceHShiftLeft___closed__2; -x_3 = l_Lean_Name_mkStr2(x_1, x_2); -return x_3; -} -} -LEAN_EXPORT lean_object* l_Std_BitVec_reduceHShiftLeft(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; uint8_t x_12; -x_10 = l_Std_BitVec_reduceHShiftLeft___closed__3; -x_11 = lean_unsigned_to_nat(6u); -x_12 = l_Lean_Expr_isAppOfArity(x_1, x_10, x_11); -if (x_12 == 0) -{ -lean_object* x_13; lean_object* x_14; -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_1); -x_13 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; -x_14 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_14, 0, x_13); -lean_ctor_set(x_14, 1, x_9); -return x_14; -} -else -{ -lean_object* x_15; lean_object* x_16; -x_15 = lean_box(0); -x_16 = l_Std_BitVec_reduceShiftLeft___lambda__1(x_1, x_15, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); -return x_16; -} -} -} -LEAN_EXPORT lean_object* l_Std_BitVec_reduceHShiftLeft___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_Std_BitVec_reduceHShiftLeft(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___regBuiltin_Std_BitVec_reduceHShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2097____closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("reduceHShiftLeft", 16); -return x_1; -} -} -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceHShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2097____closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f___closed__4; -x_2 = l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f___closed__5; -x_3 = l___regBuiltin_Std_BitVec_reduceHShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2097____closed__1; -x_4 = l_Lean_Name_mkStr3(x_1, x_2, x_3); -return x_4; -} -} -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceHShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2097____closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Std_BitVec_reduceHShiftLeft___closed__3; -x_2 = lean_unsigned_to_nat(6u); -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_Std_BitVec_reduceHShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2097____closed__4() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = lean_unsigned_to_nat(8u); -x_2 = lean_mk_empty_array_with_capacity(x_1); -return x_2; -} -} -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceHShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2097____closed__5() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceHShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2097____closed__4; -x_2 = l___regBuiltin_Std_BitVec_reduceHShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2097____closed__3; -x_3 = lean_array_push(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceHShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2097____closed__6() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceHShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2097____closed__5; -x_2 = lean_box(3); -x_3 = lean_array_push(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceHShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2097____closed__7() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceHShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2097____closed__6; -x_2 = lean_box(3); -x_3 = lean_array_push(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceHShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2097____closed__8() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceHShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2097____closed__7; -x_2 = l___regBuiltin_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1371____closed__4; -x_3 = lean_array_push(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceHShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2097____closed__9() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceHShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2097____closed__8; -x_2 = lean_box(3); -x_3 = lean_array_push(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceHShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2097____closed__10() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceHShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2097____closed__9; -x_2 = lean_box(3); -x_3 = lean_array_push(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceHShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2097____closed__11() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceHShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2097____closed__10; -x_2 = lean_box(3); -x_3 = lean_array_push(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceHShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2097____closed__12() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceHShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2097____closed__11; -x_2 = lean_box(3); -x_3 = lean_array_push(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceHShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2097____closed__13() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Std_BitVec_reduceHShiftLeft___boxed), 9, 0); -return x_1; -} -} -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceHShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2097_(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_Std_BitVec_reduceHShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2097____closed__2; -x_3 = l___regBuiltin_Std_BitVec_reduceHShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2097____closed__12; -x_4 = l___regBuiltin_Std_BitVec_reduceHShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2097____closed__13; -x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); -return x_5; -} -} -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceHShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2099_(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_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1373____closed__1; -x_3 = l___regBuiltin_Std_BitVec_reduceHShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2097____closed__2; -x_4 = 1; -x_5 = l___regBuiltin_Std_BitVec_reduceHShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2097____closed__13; -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_Std_BitVec_reduceHShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2101_(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_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1375____closed__1; -x_3 = l___regBuiltin_Std_BitVec_reduceHShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2097____closed__2; -x_4 = 1; -x_5 = l___regBuiltin_Std_BitVec_reduceHShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2097____closed__13; -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_Std_BitVec_reduceHShiftRight___closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("HShiftRight", 11); -return x_1; -} -} -static lean_object* _init_l_Std_BitVec_reduceHShiftRight___closed__2() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("hShiftRight", 11); -return x_1; -} -} -static lean_object* _init_l_Std_BitVec_reduceHShiftRight___closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Std_BitVec_reduceHShiftRight___closed__1; -x_2 = l_Std_BitVec_reduceHShiftRight___closed__2; -x_3 = l_Lean_Name_mkStr2(x_1, x_2); -return x_3; -} -} -LEAN_EXPORT lean_object* l_Std_BitVec_reduceHShiftRight(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; uint8_t x_12; -x_10 = l_Std_BitVec_reduceHShiftRight___closed__3; -x_11 = lean_unsigned_to_nat(6u); -x_12 = l_Lean_Expr_isAppOfArity(x_1, x_10, x_11); -if (x_12 == 0) -{ -lean_object* x_13; lean_object* x_14; -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_1); -x_13 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; -x_14 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_14, 0, x_13); -lean_ctor_set(x_14, 1, x_9); -return x_14; -} -else -{ -lean_object* x_15; lean_object* x_16; -x_15 = lean_box(0); -x_16 = l_Std_BitVec_reduceUShiftRight___lambda__1(x_1, x_15, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); -return x_16; -} -} -} -LEAN_EXPORT lean_object* l_Std_BitVec_reduceHShiftRight___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_Std_BitVec_reduceHShiftRight(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___regBuiltin_Std_BitVec_reduceHShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2139____closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("reduceHShiftRight", 17); -return x_1; -} -} -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceHShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2139____closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f___closed__4; -x_2 = l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f___closed__5; -x_3 = l___regBuiltin_Std_BitVec_reduceHShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2139____closed__1; -x_4 = l_Lean_Name_mkStr3(x_1, x_2, x_3); -return x_4; -} -} -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceHShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2139____closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Std_BitVec_reduceHShiftRight___closed__3; -x_2 = lean_unsigned_to_nat(6u); -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_Std_BitVec_reduceHShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2139____closed__4() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceHShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2097____closed__4; -x_2 = l___regBuiltin_Std_BitVec_reduceHShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2139____closed__3; -x_3 = lean_array_push(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceHShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2139____closed__5() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceHShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2139____closed__4; -x_2 = lean_box(3); -x_3 = lean_array_push(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceHShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2139____closed__6() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceHShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2139____closed__5; -x_2 = lean_box(3); -x_3 = lean_array_push(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceHShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2139____closed__7() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceHShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2139____closed__6; -x_2 = l___regBuiltin_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1371____closed__4; -x_3 = lean_array_push(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceHShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2139____closed__8() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceHShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2139____closed__7; -x_2 = lean_box(3); -x_3 = lean_array_push(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceHShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2139____closed__9() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceHShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2139____closed__8; -x_2 = lean_box(3); -x_3 = lean_array_push(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceHShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2139____closed__10() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceHShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2139____closed__9; -x_2 = lean_box(3); -x_3 = lean_array_push(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceHShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2139____closed__11() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceHShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2139____closed__10; -x_2 = lean_box(3); -x_3 = lean_array_push(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceHShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2139____closed__12() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Std_BitVec_reduceHShiftRight___boxed), 9, 0); -return x_1; -} -} -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceHShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2139_(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_Std_BitVec_reduceHShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2139____closed__2; -x_3 = l___regBuiltin_Std_BitVec_reduceHShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2139____closed__11; -x_4 = l___regBuiltin_Std_BitVec_reduceHShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2139____closed__12; -x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); -return x_5; -} -} -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceHShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2141_(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_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1373____closed__1; -x_3 = l___regBuiltin_Std_BitVec_reduceHShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2139____closed__2; -x_4 = 1; -x_5 = l___regBuiltin_Std_BitVec_reduceHShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2139____closed__12; -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_Std_BitVec_reduceHShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2143_(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_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1375____closed__1; -x_3 = l___regBuiltin_Std_BitVec_reduceHShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2139____closed__2; -x_4 = 1; -x_5 = l___regBuiltin_Std_BitVec_reduceHShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2139____closed__12; -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_Std_BitVec_reduceRotateLeft___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; -lean_inc(x_1); -x_11 = l_Lean_Expr_appFn_x21(x_1); -x_12 = l_Lean_Expr_appArg_x21(x_11); -lean_dec(x_11); -lean_inc(x_9); -lean_inc(x_8); -lean_inc(x_7); -lean_inc(x_6); -x_13 = l_Std_BitVec_fromExpr_x3f(x_12, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -if (lean_obj_tag(x_13) == 0) -{ -lean_object* x_14; -x_14 = lean_ctor_get(x_13, 0); -lean_inc(x_14); -if (lean_obj_tag(x_14) == 0) -{ -uint8_t x_15; -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_1); -x_15 = !lean_is_exclusive(x_13); -if (x_15 == 0) -{ -lean_object* x_16; lean_object* x_17; -x_16 = lean_ctor_get(x_13, 0); -lean_dec(x_16); -x_17 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; -lean_ctor_set(x_13, 0, x_17); -return x_13; -} -else -{ -lean_object* x_18; lean_object* x_19; lean_object* x_20; -x_18 = lean_ctor_get(x_13, 1); -lean_inc(x_18); -lean_dec(x_13); -x_19 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; -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 -{ -lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; -x_21 = lean_ctor_get(x_13, 1); -lean_inc(x_21); -lean_dec(x_13); -x_22 = lean_ctor_get(x_14, 0); -lean_inc(x_22); -lean_dec(x_14); -x_23 = l_Lean_Expr_appArg_x21(x_1); -lean_dec(x_1); -x_24 = l_Nat_fromExpr_x3f(x_23, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_21); -lean_dec(x_6); -if (lean_obj_tag(x_24) == 0) -{ -lean_object* x_25; -x_25 = lean_ctor_get(x_24, 0); -lean_inc(x_25); -if (lean_obj_tag(x_25) == 0) -{ -uint8_t x_26; -lean_dec(x_22); -x_26 = !lean_is_exclusive(x_24); -if (x_26 == 0) -{ -lean_object* x_27; lean_object* x_28; -x_27 = lean_ctor_get(x_24, 0); -lean_dec(x_27); -x_28 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; -lean_ctor_set(x_24, 0, x_28); -return x_24; -} -else -{ -lean_object* x_29; lean_object* x_30; lean_object* x_31; -x_29 = lean_ctor_get(x_24, 1); -lean_inc(x_29); -lean_dec(x_24); -x_30 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; -x_31 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_31, 0, x_30); -lean_ctor_set(x_31, 1, x_29); -return x_31; -} -} -else -{ -uint8_t x_32; -x_32 = !lean_is_exclusive(x_24); -if (x_32 == 0) -{ -lean_object* x_33; lean_object* x_34; uint8_t x_35; -x_33 = lean_ctor_get(x_24, 0); -lean_dec(x_33); -x_34 = lean_ctor_get(x_25, 0); -lean_inc(x_34); -lean_dec(x_25); -x_35 = !lean_is_exclusive(x_22); -if (x_35 == 0) -{ -lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; uint32_t x_41; uint8_t x_42; lean_object* x_43; lean_object* x_44; -x_36 = lean_ctor_get(x_22, 0); -x_37 = lean_ctor_get(x_22, 1); -x_38 = l_Std_BitVec_rotateLeft(x_36, x_37, x_34); -lean_dec(x_34); -lean_dec(x_37); -lean_ctor_set(x_22, 1, x_38); -x_39 = l_Std_BitVec_Literal_toExpr(x_22); -x_40 = lean_box(0); -x_41 = 0; -x_42 = 1; -x_43 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_43, 0, x_39); -lean_ctor_set(x_43, 1, x_40); -lean_ctor_set_uint32(x_43, sizeof(void*)*2, x_41); -lean_ctor_set_uint8(x_43, sizeof(void*)*2 + 4, x_42); -x_44 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_44, 0, x_43); -lean_ctor_set(x_24, 0, x_44); -return x_24; -} -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; uint32_t x_51; uint8_t x_52; lean_object* x_53; lean_object* x_54; -x_45 = lean_ctor_get(x_22, 0); -x_46 = lean_ctor_get(x_22, 1); -lean_inc(x_46); -lean_inc(x_45); -lean_dec(x_22); -x_47 = l_Std_BitVec_rotateLeft(x_45, x_46, x_34); -lean_dec(x_34); -lean_dec(x_46); -x_48 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_48, 0, x_45); -lean_ctor_set(x_48, 1, x_47); -x_49 = l_Std_BitVec_Literal_toExpr(x_48); -x_50 = lean_box(0); -x_51 = 0; -x_52 = 1; -x_53 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_53, 0, x_49); -lean_ctor_set(x_53, 1, x_50); -lean_ctor_set_uint32(x_53, sizeof(void*)*2, x_51); -lean_ctor_set_uint8(x_53, sizeof(void*)*2 + 4, x_52); -x_54 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_54, 0, x_53); -lean_ctor_set(x_24, 0, x_54); -return x_24; -} -} -else -{ -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; uint32_t x_64; uint8_t x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; -x_55 = lean_ctor_get(x_24, 1); -lean_inc(x_55); -lean_dec(x_24); -x_56 = lean_ctor_get(x_25, 0); -lean_inc(x_56); -lean_dec(x_25); -x_57 = lean_ctor_get(x_22, 0); -lean_inc(x_57); -x_58 = lean_ctor_get(x_22, 1); -lean_inc(x_58); -if (lean_is_exclusive(x_22)) { - lean_ctor_release(x_22, 0); - lean_ctor_release(x_22, 1); - x_59 = x_22; -} else { - lean_dec_ref(x_22); - x_59 = lean_box(0); -} -x_60 = l_Std_BitVec_rotateLeft(x_57, x_58, x_56); -lean_dec(x_56); -lean_dec(x_58); -if (lean_is_scalar(x_59)) { - x_61 = lean_alloc_ctor(0, 2, 0); -} else { - x_61 = x_59; -} -lean_ctor_set(x_61, 0, x_57); -lean_ctor_set(x_61, 1, x_60); -x_62 = l_Std_BitVec_Literal_toExpr(x_61); -x_63 = lean_box(0); -x_64 = 0; -x_65 = 1; -x_66 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_66, 0, x_62); -lean_ctor_set(x_66, 1, x_63); -lean_ctor_set_uint32(x_66, sizeof(void*)*2, x_64); -lean_ctor_set_uint8(x_66, sizeof(void*)*2 + 4, x_65); -x_67 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_67, 0, x_66); -x_68 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_68, 0, x_67); -lean_ctor_set(x_68, 1, x_55); -return x_68; -} -} -} -else -{ -uint8_t x_69; -lean_dec(x_22); -x_69 = !lean_is_exclusive(x_24); -if (x_69 == 0) -{ -return x_24; -} -else -{ -lean_object* x_70; lean_object* x_71; lean_object* x_72; -x_70 = lean_ctor_get(x_24, 0); -x_71 = lean_ctor_get(x_24, 1); -lean_inc(x_71); -lean_inc(x_70); -lean_dec(x_24); -x_72 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_72, 0, x_70); -lean_ctor_set(x_72, 1, x_71); -return x_72; -} -} -} -} -else -{ -uint8_t x_73; -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_1); -x_73 = !lean_is_exclusive(x_13); -if (x_73 == 0) -{ -return x_13; -} -else -{ -lean_object* x_74; lean_object* x_75; lean_object* x_76; -x_74 = lean_ctor_get(x_13, 0); -x_75 = lean_ctor_get(x_13, 1); -lean_inc(x_75); -lean_inc(x_74); -lean_dec(x_13); -x_76 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_76, 0, x_74); -lean_ctor_set(x_76, 1, x_75); -return x_76; -} -} -} -} -static lean_object* _init_l_Std_BitVec_reduceRotateLeft___closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("rotateLeft", 10); -return x_1; -} -} -static lean_object* _init_l_Std_BitVec_reduceRotateLeft___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f___closed__4; -x_2 = l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f___closed__5; -x_3 = l_Std_BitVec_reduceRotateLeft___closed__1; -x_4 = l_Lean_Name_mkStr3(x_1, x_2, x_3); -return x_4; -} -} -LEAN_EXPORT lean_object* l_Std_BitVec_reduceRotateLeft(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; uint8_t x_12; -x_10 = l_Std_BitVec_reduceRotateLeft___closed__2; -x_11 = lean_unsigned_to_nat(3u); -x_12 = l_Lean_Expr_isAppOfArity(x_1, x_10, x_11); -if (x_12 == 0) -{ -lean_object* x_13; lean_object* x_14; -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); -x_13 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; -x_14 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_14, 0, x_13); -lean_ctor_set(x_14, 1, x_9); -return x_14; -} -else -{ -lean_object* x_15; lean_object* x_16; -x_15 = lean_box(0); -x_16 = l_Std_BitVec_reduceRotateLeft___lambda__1(x_1, x_15, 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_16; -} -} -} -LEAN_EXPORT lean_object* l_Std_BitVec_reduceRotateLeft___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_Std_BitVec_reduceRotateLeft___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; -} -} -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceRotateLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2161____closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("reduceRotateLeft", 16); -return x_1; -} -} -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceRotateLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2161____closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f___closed__4; -x_2 = l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f___closed__5; -x_3 = l___regBuiltin_Std_BitVec_reduceRotateLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2161____closed__1; -x_4 = l_Lean_Name_mkStr3(x_1, x_2, x_3); -return x_4; -} -} -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceRotateLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2161____closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Std_BitVec_reduceRotateLeft___closed__2; -x_2 = lean_unsigned_to_nat(3u); -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_Std_BitVec_reduceRotateLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2161____closed__4() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceUMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1791____closed__4; -x_2 = l___regBuiltin_Std_BitVec_reduceRotateLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2161____closed__3; -x_3 = lean_array_push(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceRotateLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2161____closed__5() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceRotateLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2161____closed__4; -x_2 = lean_box(3); -x_3 = lean_array_push(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceRotateLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2161____closed__6() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceRotateLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2161____closed__5; -x_2 = lean_box(3); -x_3 = lean_array_push(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceRotateLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2161____closed__7() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceRotateLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2161____closed__6; -x_2 = lean_box(3); -x_3 = lean_array_push(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceRotateLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2161____closed__8() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Std_BitVec_reduceRotateLeft), 9, 0); -return x_1; -} -} -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceRotateLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2161_(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_Std_BitVec_reduceRotateLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2161____closed__2; -x_3 = l___regBuiltin_Std_BitVec_reduceRotateLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2161____closed__7; -x_4 = l___regBuiltin_Std_BitVec_reduceRotateLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2161____closed__8; -x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); -return x_5; -} -} -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceRotateLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2163_(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_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1373____closed__1; -x_3 = l___regBuiltin_Std_BitVec_reduceRotateLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2161____closed__2; -x_4 = 1; -x_5 = l___regBuiltin_Std_BitVec_reduceRotateLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2161____closed__8; -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_Std_BitVec_reduceRotateLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2165_(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_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1375____closed__1; -x_3 = l___regBuiltin_Std_BitVec_reduceRotateLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2161____closed__2; -x_4 = 1; -x_5 = l___regBuiltin_Std_BitVec_reduceRotateLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2161____closed__8; -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_Std_BitVec_reduceRotateRight___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; -lean_inc(x_1); -x_11 = l_Lean_Expr_appFn_x21(x_1); -x_12 = l_Lean_Expr_appArg_x21(x_11); -lean_dec(x_11); -lean_inc(x_9); -lean_inc(x_8); -lean_inc(x_7); -lean_inc(x_6); -x_13 = l_Std_BitVec_fromExpr_x3f(x_12, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -if (lean_obj_tag(x_13) == 0) -{ -lean_object* x_14; -x_14 = lean_ctor_get(x_13, 0); -lean_inc(x_14); -if (lean_obj_tag(x_14) == 0) -{ -uint8_t x_15; -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_1); -x_15 = !lean_is_exclusive(x_13); -if (x_15 == 0) -{ -lean_object* x_16; lean_object* x_17; -x_16 = lean_ctor_get(x_13, 0); -lean_dec(x_16); -x_17 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; -lean_ctor_set(x_13, 0, x_17); -return x_13; -} -else -{ -lean_object* x_18; lean_object* x_19; lean_object* x_20; -x_18 = lean_ctor_get(x_13, 1); -lean_inc(x_18); -lean_dec(x_13); -x_19 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; -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 -{ -lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; -x_21 = lean_ctor_get(x_13, 1); -lean_inc(x_21); -lean_dec(x_13); -x_22 = lean_ctor_get(x_14, 0); -lean_inc(x_22); -lean_dec(x_14); -x_23 = l_Lean_Expr_appArg_x21(x_1); -lean_dec(x_1); -x_24 = l_Nat_fromExpr_x3f(x_23, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_21); -lean_dec(x_6); -if (lean_obj_tag(x_24) == 0) -{ -lean_object* x_25; -x_25 = lean_ctor_get(x_24, 0); -lean_inc(x_25); -if (lean_obj_tag(x_25) == 0) -{ -uint8_t x_26; -lean_dec(x_22); -x_26 = !lean_is_exclusive(x_24); -if (x_26 == 0) -{ -lean_object* x_27; lean_object* x_28; -x_27 = lean_ctor_get(x_24, 0); -lean_dec(x_27); -x_28 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; -lean_ctor_set(x_24, 0, x_28); -return x_24; -} -else -{ -lean_object* x_29; lean_object* x_30; lean_object* x_31; -x_29 = lean_ctor_get(x_24, 1); -lean_inc(x_29); -lean_dec(x_24); -x_30 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; -x_31 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_31, 0, x_30); -lean_ctor_set(x_31, 1, x_29); -return x_31; -} -} -else -{ -uint8_t x_32; -x_32 = !lean_is_exclusive(x_24); -if (x_32 == 0) -{ -lean_object* x_33; lean_object* x_34; uint8_t x_35; -x_33 = lean_ctor_get(x_24, 0); -lean_dec(x_33); -x_34 = lean_ctor_get(x_25, 0); -lean_inc(x_34); -lean_dec(x_25); -x_35 = !lean_is_exclusive(x_22); -if (x_35 == 0) -{ -lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; uint32_t x_41; uint8_t x_42; lean_object* x_43; lean_object* x_44; -x_36 = lean_ctor_get(x_22, 0); -x_37 = lean_ctor_get(x_22, 1); -x_38 = l_Std_BitVec_rotateRight(x_36, x_37, x_34); -lean_dec(x_34); -lean_dec(x_37); -lean_ctor_set(x_22, 1, x_38); -x_39 = l_Std_BitVec_Literal_toExpr(x_22); -x_40 = lean_box(0); -x_41 = 0; -x_42 = 1; -x_43 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_43, 0, x_39); -lean_ctor_set(x_43, 1, x_40); -lean_ctor_set_uint32(x_43, sizeof(void*)*2, x_41); -lean_ctor_set_uint8(x_43, sizeof(void*)*2 + 4, x_42); -x_44 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_44, 0, x_43); -lean_ctor_set(x_24, 0, x_44); -return x_24; -} -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; uint32_t x_51; uint8_t x_52; lean_object* x_53; lean_object* x_54; -x_45 = lean_ctor_get(x_22, 0); -x_46 = lean_ctor_get(x_22, 1); -lean_inc(x_46); -lean_inc(x_45); -lean_dec(x_22); -x_47 = l_Std_BitVec_rotateRight(x_45, x_46, x_34); -lean_dec(x_34); -lean_dec(x_46); -x_48 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_48, 0, x_45); -lean_ctor_set(x_48, 1, x_47); -x_49 = l_Std_BitVec_Literal_toExpr(x_48); -x_50 = lean_box(0); -x_51 = 0; -x_52 = 1; -x_53 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_53, 0, x_49); -lean_ctor_set(x_53, 1, x_50); -lean_ctor_set_uint32(x_53, sizeof(void*)*2, x_51); -lean_ctor_set_uint8(x_53, sizeof(void*)*2 + 4, x_52); -x_54 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_54, 0, x_53); -lean_ctor_set(x_24, 0, x_54); -return x_24; -} -} -else -{ -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; uint32_t x_64; uint8_t x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; -x_55 = lean_ctor_get(x_24, 1); -lean_inc(x_55); -lean_dec(x_24); -x_56 = lean_ctor_get(x_25, 0); -lean_inc(x_56); -lean_dec(x_25); -x_57 = lean_ctor_get(x_22, 0); -lean_inc(x_57); -x_58 = lean_ctor_get(x_22, 1); -lean_inc(x_58); -if (lean_is_exclusive(x_22)) { - lean_ctor_release(x_22, 0); - lean_ctor_release(x_22, 1); - x_59 = x_22; -} else { - lean_dec_ref(x_22); - x_59 = lean_box(0); -} -x_60 = l_Std_BitVec_rotateRight(x_57, x_58, x_56); -lean_dec(x_56); -lean_dec(x_58); -if (lean_is_scalar(x_59)) { - x_61 = lean_alloc_ctor(0, 2, 0); -} else { - x_61 = x_59; -} -lean_ctor_set(x_61, 0, x_57); -lean_ctor_set(x_61, 1, x_60); -x_62 = l_Std_BitVec_Literal_toExpr(x_61); -x_63 = lean_box(0); -x_64 = 0; -x_65 = 1; -x_66 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_66, 0, x_62); -lean_ctor_set(x_66, 1, x_63); -lean_ctor_set_uint32(x_66, sizeof(void*)*2, x_64); -lean_ctor_set_uint8(x_66, sizeof(void*)*2 + 4, x_65); -x_67 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_67, 0, x_66); -x_68 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_68, 0, x_67); -lean_ctor_set(x_68, 1, x_55); -return x_68; -} -} -} -else -{ -uint8_t x_69; -lean_dec(x_22); -x_69 = !lean_is_exclusive(x_24); -if (x_69 == 0) -{ -return x_24; -} -else -{ -lean_object* x_70; lean_object* x_71; lean_object* x_72; -x_70 = lean_ctor_get(x_24, 0); -x_71 = lean_ctor_get(x_24, 1); -lean_inc(x_71); -lean_inc(x_70); -lean_dec(x_24); -x_72 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_72, 0, x_70); -lean_ctor_set(x_72, 1, x_71); -return x_72; -} -} -} -} -else -{ -uint8_t x_73; -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_1); -x_73 = !lean_is_exclusive(x_13); -if (x_73 == 0) -{ -return x_13; -} -else -{ -lean_object* x_74; lean_object* x_75; lean_object* x_76; -x_74 = lean_ctor_get(x_13, 0); -x_75 = lean_ctor_get(x_13, 1); -lean_inc(x_75); -lean_inc(x_74); -lean_dec(x_13); -x_76 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_76, 0, x_74); -lean_ctor_set(x_76, 1, x_75); -return x_76; -} -} -} -} -static lean_object* _init_l_Std_BitVec_reduceRotateRight___closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("rotateRight", 11); -return x_1; -} -} -static lean_object* _init_l_Std_BitVec_reduceRotateRight___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f___closed__4; -x_2 = l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f___closed__5; -x_3 = l_Std_BitVec_reduceRotateRight___closed__1; -x_4 = l_Lean_Name_mkStr3(x_1, x_2, x_3); -return x_4; -} -} -LEAN_EXPORT lean_object* l_Std_BitVec_reduceRotateRight(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; uint8_t x_12; -x_10 = l_Std_BitVec_reduceRotateRight___closed__2; -x_11 = lean_unsigned_to_nat(3u); -x_12 = l_Lean_Expr_isAppOfArity(x_1, x_10, x_11); -if (x_12 == 0) -{ -lean_object* x_13; lean_object* x_14; -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); -x_13 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; -x_14 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_14, 0, x_13); -lean_ctor_set(x_14, 1, x_9); -return x_14; -} -else -{ -lean_object* x_15; lean_object* x_16; -x_15 = lean_box(0); -x_16 = l_Std_BitVec_reduceRotateRight___lambda__1(x_1, x_15, 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_16; -} -} -} -LEAN_EXPORT lean_object* l_Std_BitVec_reduceRotateRight___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_Std_BitVec_reduceRotateRight___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; -} -} -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceRotateRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2183____closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("reduceRotateRight", 17); -return x_1; -} -} -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceRotateRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2183____closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f___closed__4; -x_2 = l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f___closed__5; -x_3 = l___regBuiltin_Std_BitVec_reduceRotateRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2183____closed__1; -x_4 = l_Lean_Name_mkStr3(x_1, x_2, x_3); -return x_4; -} -} -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceRotateRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2183____closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Std_BitVec_reduceRotateRight___closed__2; -x_2 = lean_unsigned_to_nat(3u); -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_Std_BitVec_reduceRotateRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2183____closed__4() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceUMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1791____closed__4; -x_2 = l___regBuiltin_Std_BitVec_reduceRotateRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2183____closed__3; -x_3 = lean_array_push(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceRotateRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2183____closed__5() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceRotateRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2183____closed__4; -x_2 = lean_box(3); -x_3 = lean_array_push(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceRotateRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2183____closed__6() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceRotateRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2183____closed__5; -x_2 = lean_box(3); -x_3 = lean_array_push(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceRotateRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2183____closed__7() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceRotateRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2183____closed__6; -x_2 = lean_box(3); -x_3 = lean_array_push(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceRotateRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2183____closed__8() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Std_BitVec_reduceRotateRight), 9, 0); -return x_1; -} -} -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceRotateRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2183_(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_Std_BitVec_reduceRotateRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2183____closed__2; -x_3 = l___regBuiltin_Std_BitVec_reduceRotateRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2183____closed__7; -x_4 = l___regBuiltin_Std_BitVec_reduceRotateRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2183____closed__8; -x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); -return x_5; -} -} -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceRotateRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2185_(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_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1373____closed__1; -x_3 = l___regBuiltin_Std_BitVec_reduceRotateRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2183____closed__2; -x_4 = 1; -x_5 = l___regBuiltin_Std_BitVec_reduceRotateRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2183____closed__8; -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_Std_BitVec_reduceRotateRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2187_(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_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1375____closed__1; -x_3 = l___regBuiltin_Std_BitVec_reduceRotateRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2183____closed__2; -x_4 = 1; -x_5 = l___regBuiltin_Std_BitVec_reduceRotateRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2183____closed__8; -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_Std_BitVec_reduceAppend___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; -lean_inc(x_1); -x_11 = l_Lean_Expr_appFn_x21(x_1); -x_12 = l_Lean_Expr_appArg_x21(x_11); -lean_dec(x_11); -lean_inc(x_9); -lean_inc(x_8); -lean_inc(x_7); -lean_inc(x_6); -x_13 = l_Std_BitVec_fromExpr_x3f(x_12, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -if (lean_obj_tag(x_13) == 0) -{ -lean_object* x_14; -x_14 = lean_ctor_get(x_13, 0); -lean_inc(x_14); -if (lean_obj_tag(x_14) == 0) -{ -uint8_t x_15; -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_1); -x_15 = !lean_is_exclusive(x_13); -if (x_15 == 0) -{ -lean_object* x_16; lean_object* x_17; -x_16 = lean_ctor_get(x_13, 0); -lean_dec(x_16); -x_17 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; -lean_ctor_set(x_13, 0, x_17); -return x_13; -} -else -{ -lean_object* x_18; lean_object* x_19; lean_object* x_20; -x_18 = lean_ctor_get(x_13, 1); -lean_inc(x_18); -lean_dec(x_13); -x_19 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; -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 -{ -lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; -x_21 = lean_ctor_get(x_13, 1); -lean_inc(x_21); -lean_dec(x_13); -x_22 = lean_ctor_get(x_14, 0); -lean_inc(x_22); -lean_dec(x_14); -x_23 = l_Lean_Expr_appArg_x21(x_1); -lean_dec(x_1); -x_24 = l_Std_BitVec_fromExpr_x3f(x_23, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_21); -if (lean_obj_tag(x_24) == 0) -{ -lean_object* x_25; -x_25 = lean_ctor_get(x_24, 0); -lean_inc(x_25); -if (lean_obj_tag(x_25) == 0) -{ -uint8_t x_26; -lean_dec(x_22); -x_26 = !lean_is_exclusive(x_24); -if (x_26 == 0) -{ -lean_object* x_27; lean_object* x_28; -x_27 = lean_ctor_get(x_24, 0); -lean_dec(x_27); -x_28 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; -lean_ctor_set(x_24, 0, x_28); -return x_24; -} -else -{ -lean_object* x_29; lean_object* x_30; lean_object* x_31; -x_29 = lean_ctor_get(x_24, 1); -lean_inc(x_29); -lean_dec(x_24); -x_30 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; -x_31 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_31, 0, x_30); -lean_ctor_set(x_31, 1, x_29); -return x_31; -} -} -else -{ -uint8_t x_32; -x_32 = !lean_is_exclusive(x_24); -if (x_32 == 0) -{ -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; uint32_t x_44; uint8_t x_45; lean_object* x_46; lean_object* x_47; -x_33 = lean_ctor_get(x_24, 0); -lean_dec(x_33); -x_34 = lean_ctor_get(x_25, 0); -lean_inc(x_34); -lean_dec(x_25); -x_35 = lean_ctor_get(x_22, 0); -lean_inc(x_35); -x_36 = lean_ctor_get(x_34, 0); -lean_inc(x_36); -x_37 = lean_nat_add(x_35, x_36); -lean_dec(x_35); -x_38 = lean_ctor_get(x_22, 1); -lean_inc(x_38); -lean_dec(x_22); -x_39 = lean_ctor_get(x_34, 1); -lean_inc(x_39); -lean_dec(x_34); -x_40 = l_Std_BitVec_append___rarg(x_36, x_38, x_39); -lean_dec(x_39); -lean_dec(x_38); -lean_dec(x_36); -x_41 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_41, 0, x_37); -lean_ctor_set(x_41, 1, x_40); -x_42 = l_Std_BitVec_Literal_toExpr(x_41); -x_43 = lean_box(0); -x_44 = 0; -x_45 = 1; -x_46 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_46, 0, x_42); -lean_ctor_set(x_46, 1, x_43); -lean_ctor_set_uint32(x_46, sizeof(void*)*2, x_44); -lean_ctor_set_uint8(x_46, sizeof(void*)*2 + 4, x_45); -x_47 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_47, 0, x_46); -lean_ctor_set(x_24, 0, x_47); -return x_24; -} -else -{ -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; uint32_t x_59; uint8_t x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; -x_48 = lean_ctor_get(x_24, 1); -lean_inc(x_48); -lean_dec(x_24); -x_49 = lean_ctor_get(x_25, 0); -lean_inc(x_49); -lean_dec(x_25); -x_50 = lean_ctor_get(x_22, 0); -lean_inc(x_50); -x_51 = lean_ctor_get(x_49, 0); -lean_inc(x_51); -x_52 = lean_nat_add(x_50, x_51); -lean_dec(x_50); -x_53 = lean_ctor_get(x_22, 1); -lean_inc(x_53); -lean_dec(x_22); -x_54 = lean_ctor_get(x_49, 1); -lean_inc(x_54); -lean_dec(x_49); -x_55 = l_Std_BitVec_append___rarg(x_51, x_53, x_54); -lean_dec(x_54); -lean_dec(x_53); -lean_dec(x_51); -x_56 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_56, 0, x_52); -lean_ctor_set(x_56, 1, x_55); -x_57 = l_Std_BitVec_Literal_toExpr(x_56); -x_58 = lean_box(0); -x_59 = 0; -x_60 = 1; -x_61 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_61, 0, x_57); -lean_ctor_set(x_61, 1, x_58); -lean_ctor_set_uint32(x_61, sizeof(void*)*2, x_59); -lean_ctor_set_uint8(x_61, sizeof(void*)*2 + 4, x_60); -x_62 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_62, 0, x_61); -x_63 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_63, 0, x_62); -lean_ctor_set(x_63, 1, x_48); -return x_63; -} -} -} -else -{ -uint8_t x_64; -lean_dec(x_22); -x_64 = !lean_is_exclusive(x_24); -if (x_64 == 0) -{ -return x_24; -} -else -{ -lean_object* x_65; lean_object* x_66; lean_object* x_67; -x_65 = lean_ctor_get(x_24, 0); -x_66 = lean_ctor_get(x_24, 1); -lean_inc(x_66); -lean_inc(x_65); -lean_dec(x_24); -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; -} -} -} -} -else -{ -uint8_t x_68; -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_1); -x_68 = !lean_is_exclusive(x_13); -if (x_68 == 0) -{ -return x_13; -} -else -{ -lean_object* x_69; lean_object* x_70; lean_object* x_71; -x_69 = lean_ctor_get(x_13, 0); -x_70 = lean_ctor_get(x_13, 1); -lean_inc(x_70); -lean_inc(x_69); -lean_dec(x_13); -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; -} -} -} -} -static lean_object* _init_l_Std_BitVec_reduceAppend___closed__1() { +static lean_object* _init_l_BitVec_reduceAppend___closed__1() { _start: { lean_object* x_1; @@ -19568,7 +18297,7 @@ x_1 = lean_mk_string_from_bytes("HAppend", 7); return x_1; } } -static lean_object* _init_l_Std_BitVec_reduceAppend___closed__2() { +static lean_object* _init_l_BitVec_reduceAppend___closed__2() { _start: { lean_object* x_1; @@ -19576,21 +18305,21 @@ x_1 = lean_mk_string_from_bytes("hAppend", 7); return x_1; } } -static lean_object* _init_l_Std_BitVec_reduceAppend___closed__3() { +static lean_object* _init_l_BitVec_reduceAppend___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Std_BitVec_reduceAppend___closed__1; -x_2 = l_Std_BitVec_reduceAppend___closed__2; +x_1 = l_BitVec_reduceAppend___closed__1; +x_2 = l_BitVec_reduceAppend___closed__2; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } -LEAN_EXPORT lean_object* l_Std_BitVec_reduceAppend(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_EXPORT lean_object* l_BitVec_reduceAppend(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; uint8_t x_12; -x_10 = l_Std_BitVec_reduceAppend___closed__3; +x_10 = l_BitVec_reduceAppend___closed__3; x_11 = lean_unsigned_to_nat(6u); x_12 = l_Lean_Expr_isAppOfArity(x_1, x_10, x_11); if (x_12 == 0) @@ -19604,7 +18333,7 @@ lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_13 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_13 = l_BitVec_reduceUnary___lambda__1___closed__1; x_14 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_14, 0, x_13); lean_ctor_set(x_14, 1, x_9); @@ -19614,7 +18343,7 @@ else { lean_object* x_15; lean_object* x_16; x_15 = lean_box(0); -x_16 = l_Std_BitVec_reduceAppend___lambda__1(x_1, x_15, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_16 = l_BitVec_reduceAppend___lambda__1(x_1, x_15, 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); @@ -19622,11 +18351,11 @@ return x_16; } } } -LEAN_EXPORT lean_object* l_Std_BitVec_reduceAppend___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) { +LEAN_EXPORT lean_object* l_BitVec_reduceAppend___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_Std_BitVec_reduceAppend___lambda__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_11 = l_BitVec_reduceAppend___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); @@ -19634,7 +18363,7 @@ lean_dec(x_2); return x_11; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2350____closed__1() { +static lean_object* _init_l___regBuiltin_BitVec_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2117____closed__1() { _start: { lean_object* x_1; @@ -19642,22 +18371,21 @@ x_1 = lean_mk_string_from_bytes("reduceAppend", 12); return x_1; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2350____closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f___closed__4; -x_2 = l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f___closed__5; -x_3 = l___regBuiltin_Std_BitVec_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2350____closed__1; -x_4 = l_Lean_Name_mkStr3(x_1, x_2, x_3); -return x_4; -} -} -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2350____closed__3() { +static lean_object* _init_l___regBuiltin_BitVec_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2117____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Std_BitVec_reduceAppend___closed__3; +x_1 = l_BitVec_reduceUnary___lambda__1___closed__2; +x_2 = l___regBuiltin_BitVec_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2117____closed__1; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___regBuiltin_BitVec_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2117____closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_BitVec_reduceAppend___closed__3; x_2 = lean_unsigned_to_nat(6u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -19665,130 +18393,130 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2350____closed__4() { +static lean_object* _init_l___regBuiltin_BitVec_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2117____closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceHShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2097____closed__4; -x_2 = l___regBuiltin_Std_BitVec_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2350____closed__3; +x_1 = l___regBuiltin_BitVec_reduceHShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1874____closed__4; +x_2 = l___regBuiltin_BitVec_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2117____closed__3; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2350____closed__5() { +static lean_object* _init_l___regBuiltin_BitVec_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2117____closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2350____closed__4; +x_1 = l___regBuiltin_BitVec_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2117____closed__4; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2350____closed__6() { +static lean_object* _init_l___regBuiltin_BitVec_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2117____closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2350____closed__5; +x_1 = l___regBuiltin_BitVec_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2117____closed__5; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2350____closed__7() { +static lean_object* _init_l___regBuiltin_BitVec_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2117____closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2350____closed__6; -x_2 = l___regBuiltin_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1371____closed__4; +x_1 = l___regBuiltin_BitVec_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2117____closed__6; +x_2 = l___regBuiltin_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1148____closed__5; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2350____closed__8() { +static lean_object* _init_l___regBuiltin_BitVec_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2117____closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2350____closed__7; +x_1 = l___regBuiltin_BitVec_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2117____closed__7; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2350____closed__9() { +static lean_object* _init_l___regBuiltin_BitVec_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2117____closed__9() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2350____closed__8; +x_1 = l___regBuiltin_BitVec_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2117____closed__8; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2350____closed__10() { +static lean_object* _init_l___regBuiltin_BitVec_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2117____closed__10() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2350____closed__9; +x_1 = l___regBuiltin_BitVec_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2117____closed__9; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2350____closed__11() { +static lean_object* _init_l___regBuiltin_BitVec_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2117____closed__11() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2350____closed__10; +x_1 = l___regBuiltin_BitVec_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2117____closed__10; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2350____closed__12() { +static lean_object* _init_l___regBuiltin_BitVec_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2117____closed__12() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Std_BitVec_reduceAppend), 9, 0); +x_1 = lean_alloc_closure((void*)(l_BitVec_reduceAppend), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2350_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2117_(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_Std_BitVec_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2350____closed__2; -x_3 = l___regBuiltin_Std_BitVec_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2350____closed__11; -x_4 = l___regBuiltin_Std_BitVec_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2350____closed__12; +x_2 = l___regBuiltin_BitVec_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2117____closed__2; +x_3 = l___regBuiltin_BitVec_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2117____closed__11; +x_4 = l___regBuiltin_BitVec_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2117____closed__12; x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); return x_5; } } -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2352_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2119_(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_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1373____closed__1; -x_3 = l___regBuiltin_Std_BitVec_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2350____closed__2; +x_2 = l___regBuiltin_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1150____closed__1; +x_3 = l___regBuiltin_BitVec_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2117____closed__2; x_4 = 1; -x_5 = l___regBuiltin_Std_BitVec_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2350____closed__12; +x_5 = l___regBuiltin_BitVec_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2117____closed__12; 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_Std_BitVec_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2354_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2121_(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_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1375____closed__1; -x_3 = l___regBuiltin_Std_BitVec_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2350____closed__2; +x_2 = l___regBuiltin_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1152____closed__1; +x_3 = l___regBuiltin_BitVec_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2117____closed__2; x_4 = 1; -x_5 = l___regBuiltin_Std_BitVec_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2350____closed__12; +x_5 = l___regBuiltin_BitVec_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2117____closed__12; 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_Std_BitVec_reduceCast___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) { +LEAN_EXPORT lean_object* l_BitVec_reduceCast___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; @@ -19797,7 +18525,8 @@ lean_inc(x_9); lean_inc(x_8); lean_inc(x_7); lean_inc(x_6); -x_12 = l_Std_BitVec_fromExpr_x3f(x_11, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_12 = l_BitVec_fromExpr_x3f(x_11, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_11); if (lean_obj_tag(x_12) == 0) { lean_object* x_13; @@ -19817,7 +18546,7 @@ if (x_14 == 0) lean_object* x_15; lean_object* x_16; x_15 = lean_ctor_get(x_12, 0); lean_dec(x_15); -x_16 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_16 = l_BitVec_reduceUnary___lambda__1___closed__1; lean_ctor_set(x_12, 0, x_16); return x_12; } @@ -19827,7 +18556,7 @@ lean_object* x_17; lean_object* x_18; lean_object* x_19; x_17 = lean_ctor_get(x_12, 1); lean_inc(x_17); lean_dec(x_12); -x_18 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_18 = l_BitVec_reduceUnary___lambda__1___closed__1; x_19 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_19, 0, x_18); lean_ctor_set(x_19, 1, x_17); @@ -19847,8 +18576,7 @@ x_22 = l_Lean_Expr_appFn_x21(x_1); x_23 = l_Lean_Expr_appFn_x21(x_22); x_24 = l_Lean_Expr_appArg_x21(x_23); lean_dec(x_23); -x_25 = l_Nat_fromExpr_x3f(x_24, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_20); -lean_dec(x_6); +x_25 = l_Lean_Meta_getNatValue_x3f(x_24, x_6, x_7, x_8, x_9, x_20); if (lean_obj_tag(x_25) == 0) { lean_object* x_26; @@ -19864,7 +18592,7 @@ if (x_27 == 0) lean_object* x_28; lean_object* x_29; x_28 = lean_ctor_get(x_25, 0); lean_dec(x_28); -x_29 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_29 = l_BitVec_reduceUnary___lambda__1___closed__1; lean_ctor_set(x_25, 0, x_29); return x_25; } @@ -19874,7 +18602,7 @@ lean_object* x_30; lean_object* x_31; lean_object* x_32; x_30 = lean_ctor_get(x_25, 1); lean_inc(x_30); lean_dec(x_25); -x_31 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_31 = l_BitVec_reduceUnary___lambda__1___closed__1; x_32 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_32, 0, x_31); lean_ctor_set(x_32, 1, x_30); @@ -19887,7 +18615,7 @@ uint8_t x_33; x_33 = !lean_is_exclusive(x_25); if (x_33 == 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; uint32_t x_41; uint8_t x_42; lean_object* x_43; lean_object* x_44; +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; uint32_t x_43; uint8_t x_44; lean_object* x_45; lean_object* x_46; x_34 = lean_ctor_get(x_25, 0); lean_dec(x_34); x_35 = lean_ctor_get(x_26, 0); @@ -19896,106 +18624,77 @@ lean_dec(x_26); x_36 = lean_ctor_get(x_21, 1); lean_inc(x_36); lean_dec(x_21); -x_37 = l_Std_BitVec_ofNat(x_35, x_36); +x_37 = l_BitVec_ofNat(x_35, x_36); lean_dec(x_36); -x_38 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_38, 0, x_35); -lean_ctor_set(x_38, 1, x_37); -x_39 = l_Std_BitVec_Literal_toExpr(x_38); -x_40 = lean_box(0); -x_41 = 0; -x_42 = 1; -x_43 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_43, 0, x_39); -lean_ctor_set(x_43, 1, x_40); -lean_ctor_set_uint32(x_43, sizeof(void*)*2, x_41); -lean_ctor_set_uint8(x_43, sizeof(void*)*2 + 4, x_42); -x_44 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_44, 0, x_43); -lean_ctor_set(x_25, 0, x_44); +x_38 = l_Lean_mkNatLit(x_35); +x_39 = l_Lean_mkNatLit(x_37); +x_40 = l_BitVec_reduceUnary___lambda__1___closed__5; +x_41 = l_Lean_mkAppB(x_40, x_38, x_39); +x_42 = lean_box(0); +x_43 = 0; +x_44 = 1; +x_45 = lean_alloc_ctor(0, 2, 5); +lean_ctor_set(x_45, 0, x_41); +lean_ctor_set(x_45, 1, x_42); +lean_ctor_set_uint32(x_45, sizeof(void*)*2, x_43); +lean_ctor_set_uint8(x_45, sizeof(void*)*2 + 4, x_44); +x_46 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_46, 0, x_45); +lean_ctor_set(x_25, 0, x_46); return x_25; } 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; uint32_t x_52; uint8_t x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; -x_45 = lean_ctor_get(x_25, 1); -lean_inc(x_45); -lean_dec(x_25); -x_46 = lean_ctor_get(x_26, 0); -lean_inc(x_46); -lean_dec(x_26); -x_47 = lean_ctor_get(x_21, 1); +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; uint32_t x_56; uint8_t x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; +x_47 = lean_ctor_get(x_25, 1); lean_inc(x_47); -lean_dec(x_21); -x_48 = l_Std_BitVec_ofNat(x_46, x_47); -lean_dec(x_47); -x_49 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_49, 0, x_46); -lean_ctor_set(x_49, 1, x_48); -x_50 = l_Std_BitVec_Literal_toExpr(x_49); -x_51 = lean_box(0); -x_52 = 0; -x_53 = 1; -x_54 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_54, 0, x_50); -lean_ctor_set(x_54, 1, x_51); -lean_ctor_set_uint32(x_54, sizeof(void*)*2, x_52); -lean_ctor_set_uint8(x_54, sizeof(void*)*2 + 4, x_53); -x_55 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_55, 0, x_54); -x_56 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_56, 0, x_55); -lean_ctor_set(x_56, 1, x_45); -return x_56; -} -} -} -else -{ -uint8_t x_57; -lean_dec(x_21); -x_57 = !lean_is_exclusive(x_25); -if (x_57 == 0) -{ -return x_25; -} -else -{ -lean_object* x_58; lean_object* x_59; lean_object* x_60; -x_58 = lean_ctor_get(x_25, 0); -x_59 = lean_ctor_get(x_25, 1); -lean_inc(x_59); -lean_inc(x_58); lean_dec(x_25); -x_60 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_60, 0, x_58); -lean_ctor_set(x_60, 1, x_59); +x_48 = lean_ctor_get(x_26, 0); +lean_inc(x_48); +lean_dec(x_26); +x_49 = lean_ctor_get(x_21, 1); +lean_inc(x_49); +lean_dec(x_21); +x_50 = l_BitVec_ofNat(x_48, x_49); +lean_dec(x_49); +x_51 = l_Lean_mkNatLit(x_48); +x_52 = l_Lean_mkNatLit(x_50); +x_53 = l_BitVec_reduceUnary___lambda__1___closed__5; +x_54 = l_Lean_mkAppB(x_53, x_51, x_52); +x_55 = lean_box(0); +x_56 = 0; +x_57 = 1; +x_58 = lean_alloc_ctor(0, 2, 5); +lean_ctor_set(x_58, 0, x_54); +lean_ctor_set(x_58, 1, x_55); +lean_ctor_set_uint32(x_58, sizeof(void*)*2, x_56); +lean_ctor_set_uint8(x_58, sizeof(void*)*2 + 4, x_57); +x_59 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_59, 0, x_58); +x_60 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_60, 0, x_59); +lean_ctor_set(x_60, 1, x_47); return x_60; } } } -} else { uint8_t x_61; -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_1); -x_61 = !lean_is_exclusive(x_12); +lean_dec(x_21); +x_61 = !lean_is_exclusive(x_25); if (x_61 == 0) { -return x_12; +return x_25; } else { lean_object* x_62; lean_object* x_63; lean_object* x_64; -x_62 = lean_ctor_get(x_12, 0); -x_63 = lean_ctor_get(x_12, 1); +x_62 = lean_ctor_get(x_25, 0); +x_63 = lean_ctor_get(x_25, 1); lean_inc(x_63); lean_inc(x_62); -lean_dec(x_12); +lean_dec(x_25); x_64 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_64, 0, x_62); lean_ctor_set(x_64, 1, x_63); @@ -20004,7 +18703,36 @@ return x_64; } } } -static lean_object* _init_l_Std_BitVec_reduceCast___closed__1() { +else +{ +uint8_t x_65; +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_1); +x_65 = !lean_is_exclusive(x_12); +if (x_65 == 0) +{ +return x_12; +} +else +{ +lean_object* x_66; lean_object* x_67; lean_object* x_68; +x_66 = lean_ctor_get(x_12, 0); +x_67 = lean_ctor_get(x_12, 1); +lean_inc(x_67); +lean_inc(x_66); +lean_dec(x_12); +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; +} +} +} +} +static lean_object* _init_l_BitVec_reduceCast___closed__1() { _start: { lean_object* x_1; @@ -20012,22 +18740,21 @@ x_1 = lean_mk_string_from_bytes("cast", 4); return x_1; } } -static lean_object* _init_l_Std_BitVec_reduceCast___closed__2() { +static lean_object* _init_l_BitVec_reduceCast___closed__2() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f___closed__4; -x_2 = l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f___closed__5; -x_3 = l_Std_BitVec_reduceCast___closed__1; -x_4 = l_Lean_Name_mkStr3(x_1, x_2, x_3); -return x_4; +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_BitVec_reduceUnary___lambda__1___closed__2; +x_2 = l_BitVec_reduceCast___closed__1; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; } } -LEAN_EXPORT lean_object* l_Std_BitVec_reduceCast(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_EXPORT lean_object* l_BitVec_reduceCast(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; uint8_t x_12; -x_10 = l_Std_BitVec_reduceCast___closed__2; +x_10 = l_BitVec_reduceCast___closed__2; x_11 = lean_unsigned_to_nat(4u); x_12 = l_Lean_Expr_isAppOfArity(x_1, x_10, x_11); if (x_12 == 0) @@ -20041,7 +18768,7 @@ lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_13 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_13 = l_BitVec_reduceUnary___lambda__1___closed__1; x_14 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_14, 0, x_13); lean_ctor_set(x_14, 1, x_9); @@ -20051,7 +18778,7 @@ else { lean_object* x_15; lean_object* x_16; x_15 = lean_box(0); -x_16 = l_Std_BitVec_reduceCast___lambda__1(x_1, x_15, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_16 = l_BitVec_reduceCast___lambda__1(x_1, x_15, 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); @@ -20059,11 +18786,11 @@ return x_16; } } } -LEAN_EXPORT lean_object* l_Std_BitVec_reduceCast___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) { +LEAN_EXPORT lean_object* l_BitVec_reduceCast___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_Std_BitVec_reduceCast___lambda__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_11 = l_BitVec_reduceCast___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); @@ -20071,7 +18798,7 @@ lean_dec(x_2); return x_11; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceCast_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2505____closed__1() { +static lean_object* _init_l___regBuiltin_BitVec_reduceCast_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2266____closed__1() { _start: { lean_object* x_1; @@ -20079,22 +18806,21 @@ x_1 = lean_mk_string_from_bytes("reduceCast", 10); return x_1; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceCast_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2505____closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f___closed__4; -x_2 = l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f___closed__5; -x_3 = l___regBuiltin_Std_BitVec_reduceCast_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2505____closed__1; -x_4 = l_Lean_Name_mkStr3(x_1, x_2, x_3); -return x_4; -} -} -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceCast_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2505____closed__3() { +static lean_object* _init_l___regBuiltin_BitVec_reduceCast_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2266____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Std_BitVec_reduceCast___closed__2; +x_1 = l_BitVec_reduceUnary___lambda__1___closed__2; +x_2 = l___regBuiltin_BitVec_reduceCast_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2266____closed__1; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___regBuiltin_BitVec_reduceCast_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2266____closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_BitVec_reduceCast___closed__2; x_2 = lean_unsigned_to_nat(4u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -20102,105 +18828,106 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceCast_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2505____closed__4() { +static lean_object* _init_l___regBuiltin_BitVec_reduceCast_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2266____closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1371____closed__5; -x_2 = l___regBuiltin_Std_BitVec_reduceCast_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2505____closed__3; +x_1 = l___regBuiltin_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1148____closed__6; +x_2 = l___regBuiltin_BitVec_reduceCast_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2266____closed__3; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceCast_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2505____closed__5() { +static lean_object* _init_l___regBuiltin_BitVec_reduceCast_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2266____closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceCast_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2505____closed__4; +x_1 = l___regBuiltin_BitVec_reduceCast_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2266____closed__4; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceCast_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2505____closed__6() { +static lean_object* _init_l___regBuiltin_BitVec_reduceCast_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2266____closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceCast_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2505____closed__5; +x_1 = l___regBuiltin_BitVec_reduceCast_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2266____closed__5; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceCast_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2505____closed__7() { +static lean_object* _init_l___regBuiltin_BitVec_reduceCast_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2266____closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceCast_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2505____closed__6; +x_1 = l___regBuiltin_BitVec_reduceCast_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2266____closed__6; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceCast_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2505____closed__8() { +static lean_object* _init_l___regBuiltin_BitVec_reduceCast_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2266____closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceCast_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2505____closed__7; +x_1 = l___regBuiltin_BitVec_reduceCast_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2266____closed__7; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceCast_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2505____closed__9() { +static lean_object* _init_l___regBuiltin_BitVec_reduceCast_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2266____closed__9() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Std_BitVec_reduceCast), 9, 0); +x_1 = lean_alloc_closure((void*)(l_BitVec_reduceCast), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceCast_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2505_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceCast_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2266_(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_Std_BitVec_reduceCast_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2505____closed__2; -x_3 = l___regBuiltin_Std_BitVec_reduceCast_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2505____closed__8; -x_4 = l___regBuiltin_Std_BitVec_reduceCast_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2505____closed__9; +x_2 = l___regBuiltin_BitVec_reduceCast_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2266____closed__2; +x_3 = l___regBuiltin_BitVec_reduceCast_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2266____closed__8; +x_4 = l___regBuiltin_BitVec_reduceCast_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2266____closed__9; x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); return x_5; } } -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceCast_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2507_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceCast_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2268_(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_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1373____closed__1; -x_3 = l___regBuiltin_Std_BitVec_reduceCast_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2505____closed__2; +x_2 = l___regBuiltin_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1150____closed__1; +x_3 = l___regBuiltin_BitVec_reduceCast_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2266____closed__2; x_4 = 1; -x_5 = l___regBuiltin_Std_BitVec_reduceCast_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2505____closed__9; +x_5 = l___regBuiltin_BitVec_reduceCast_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2266____closed__9; 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_Std_BitVec_reduceCast_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2509_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceCast_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2270_(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_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1375____closed__1; -x_3 = l___regBuiltin_Std_BitVec_reduceCast_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2505____closed__2; +x_2 = l___regBuiltin_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1152____closed__1; +x_3 = l___regBuiltin_BitVec_reduceCast_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2266____closed__2; x_4 = 1; -x_5 = l___regBuiltin_Std_BitVec_reduceCast_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2505____closed__9; +x_5 = l___regBuiltin_BitVec_reduceCast_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2266____closed__9; 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_Std_BitVec_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) { +LEAN_EXPORT lean_object* l_BitVec_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; x_11 = l_Lean_Expr_appArg_x21(x_1); -x_12 = l_Std_BitVec_fromExpr_x3f(x_11, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_12 = l_BitVec_fromExpr_x3f(x_11, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_11); if (lean_obj_tag(x_12) == 0) { lean_object* x_13; @@ -20215,7 +18942,7 @@ if (x_14 == 0) lean_object* x_15; lean_object* x_16; x_15 = lean_ctor_get(x_12, 0); lean_dec(x_15); -x_16 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_16 = l_BitVec_reduceUnary___lambda__1___closed__1; lean_ctor_set(x_12, 0, x_16); return x_12; } @@ -20225,7 +18952,7 @@ lean_object* x_17; lean_object* x_18; lean_object* x_19; x_17 = lean_ctor_get(x_12, 1); lean_inc(x_17); lean_dec(x_12); -x_18 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_18 = l_BitVec_reduceUnary___lambda__1___closed__1; x_19 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_19, 0, x_18); lean_ctor_set(x_19, 1, x_17); @@ -20315,7 +19042,7 @@ return x_43; } } } -static lean_object* _init_l_Std_BitVec_reduceToNat___closed__1() { +static lean_object* _init_l_BitVec_reduceToNat___closed__1() { _start: { lean_object* x_1; @@ -20323,22 +19050,21 @@ x_1 = lean_mk_string_from_bytes("toNat", 5); return x_1; } } -static lean_object* _init_l_Std_BitVec_reduceToNat___closed__2() { +static lean_object* _init_l_BitVec_reduceToNat___closed__2() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f___closed__4; -x_2 = l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f___closed__5; -x_3 = l_Std_BitVec_reduceToNat___closed__1; -x_4 = l_Lean_Name_mkStr3(x_1, x_2, x_3); -return x_4; +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_BitVec_reduceUnary___lambda__1___closed__2; +x_2 = l_BitVec_reduceToNat___closed__1; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; } } -LEAN_EXPORT lean_object* l_Std_BitVec_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) { +LEAN_EXPORT lean_object* l_BitVec_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; uint8_t x_12; -x_10 = l_Std_BitVec_reduceToNat___closed__2; +x_10 = l_BitVec_reduceToNat___closed__2; x_11 = lean_unsigned_to_nat(2u); x_12 = l_Lean_Expr_isAppOfArity(x_1, x_10, x_11); if (x_12 == 0) @@ -20351,7 +19077,7 @@ lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); -x_13 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_13 = l_BitVec_reduceUnary___lambda__1___closed__1; x_14 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_14, 0, x_13); lean_ctor_set(x_14, 1, x_9); @@ -20361,7 +19087,7 @@ else { lean_object* x_15; lean_object* x_16; x_15 = lean_box(0); -x_16 = l_Std_BitVec_reduceToNat___lambda__1(x_1, x_15, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_16 = l_BitVec_reduceToNat___lambda__1(x_1, x_15, 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); @@ -20369,11 +19095,11 @@ return x_16; } } } -LEAN_EXPORT lean_object* l_Std_BitVec_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) { +LEAN_EXPORT lean_object* l_BitVec_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_Std_BitVec_reduceToNat___lambda__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_11 = l_BitVec_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); @@ -20382,16 +19108,16 @@ lean_dec(x_1); return x_11; } } -LEAN_EXPORT lean_object* l_Std_BitVec_reduceToNat___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_EXPORT lean_object* l_BitVec_reduceToNat___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_Std_BitVec_reduceToNat(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_10 = l_BitVec_reduceToNat(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); lean_dec(x_1); return x_10; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2613____closed__1() { +static lean_object* _init_l___regBuiltin_BitVec_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2374____closed__1() { _start: { lean_object* x_1; @@ -20399,22 +19125,21 @@ x_1 = lean_mk_string_from_bytes("reduceToNat", 11); return x_1; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2613____closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f___closed__4; -x_2 = l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f___closed__5; -x_3 = l___regBuiltin_Std_BitVec_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2613____closed__1; -x_4 = l_Lean_Name_mkStr3(x_1, x_2, x_3); -return x_4; -} -} -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2613____closed__3() { +static lean_object* _init_l___regBuiltin_BitVec_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2374____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Std_BitVec_reduceToNat___closed__2; +x_1 = l_BitVec_reduceUnary___lambda__1___closed__2; +x_2 = l___regBuiltin_BitVec_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2374____closed__1; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___regBuiltin_BitVec_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2374____closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_BitVec_reduceToNat___closed__2; x_2 = lean_unsigned_to_nat(2u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -20422,85 +19147,182 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2613____closed__4() { +static lean_object* _init_l___regBuiltin_BitVec_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2374____closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1429____closed__4; -x_2 = l___regBuiltin_Std_BitVec_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2613____closed__3; +x_1 = l___regBuiltin_BitVec_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1206____closed__4; +x_2 = l___regBuiltin_BitVec_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2374____closed__3; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2613____closed__5() { +static lean_object* _init_l___regBuiltin_BitVec_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2374____closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2613____closed__4; +x_1 = l___regBuiltin_BitVec_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2374____closed__4; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2613____closed__6() { +static lean_object* _init_l___regBuiltin_BitVec_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2374____closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2613____closed__5; +x_1 = l___regBuiltin_BitVec_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2374____closed__5; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2613____closed__7() { +static lean_object* _init_l___regBuiltin_BitVec_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2374____closed__7() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Std_BitVec_reduceToNat___boxed), 9, 0); +x_1 = lean_alloc_closure((void*)(l_BitVec_reduceToNat___boxed), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2613_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2374_(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_Std_BitVec_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2613____closed__2; -x_3 = l___regBuiltin_Std_BitVec_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2613____closed__6; -x_4 = l___regBuiltin_Std_BitVec_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2613____closed__7; +x_2 = l___regBuiltin_BitVec_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2374____closed__2; +x_3 = l___regBuiltin_BitVec_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2374____closed__6; +x_4 = l___regBuiltin_BitVec_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2374____closed__7; x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); return x_5; } } -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2615_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2376_(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_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1373____closed__1; -x_3 = l___regBuiltin_Std_BitVec_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2613____closed__2; +x_2 = l___regBuiltin_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1150____closed__1; +x_3 = l___regBuiltin_BitVec_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2374____closed__2; x_4 = 1; -x_5 = l___regBuiltin_Std_BitVec_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2613____closed__7; +x_5 = l___regBuiltin_BitVec_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2374____closed__7; 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_Std_BitVec_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2617_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2378_(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_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1375____closed__1; -x_3 = l___regBuiltin_Std_BitVec_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2613____closed__2; +x_2 = l___regBuiltin_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1152____closed__1; +x_3 = l___regBuiltin_BitVec_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2374____closed__2; x_4 = 1; -x_5 = l___regBuiltin_Std_BitVec_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2613____closed__7; +x_5 = l___regBuiltin_BitVec_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2374____closed__7; 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_Std_BitVec_reduceToInt___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) { +static lean_object* _init_l_BitVec_reduceToInt___lambda__1___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_BitVec_reduceToInt___lambda__1___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = lean_unsigned_to_nat(0u); +x_2 = l_Lean_Level_ofNat(x_1); +return x_2; +} +} +static lean_object* _init_l_BitVec_reduceToInt___lambda__1___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_BitVec_reduceToInt___lambda__1___closed__2; +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_BitVec_reduceToInt___lambda__1___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_BitVec_reduceNeg___closed__3; +x_2 = l_BitVec_reduceToInt___lambda__1___closed__3; +x_3 = l_Lean_Expr_const___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_BitVec_reduceToInt___lambda__1___closed__5() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("Int", 3); +return x_1; +} +} +static lean_object* _init_l_BitVec_reduceToInt___lambda__1___closed__6() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_BitVec_reduceToInt___lambda__1___closed__5; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_BitVec_reduceToInt___lambda__1___closed__7() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_BitVec_reduceToInt___lambda__1___closed__6; +x_3 = l_Lean_Expr_const___override(x_2, x_1); +return x_3; +} +} +static lean_object* _init_l_BitVec_reduceToInt___lambda__1___closed__8() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("instNegInt", 10); +return x_1; +} +} +static lean_object* _init_l_BitVec_reduceToInt___lambda__1___closed__9() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_BitVec_reduceToInt___lambda__1___closed__5; +x_2 = l_BitVec_reduceToInt___lambda__1___closed__8; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_BitVec_reduceToInt___lambda__1___closed__10() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_BitVec_reduceToInt___lambda__1___closed__9; +x_3 = l_Lean_Expr_const___override(x_2, x_1); +return x_3; +} +} +LEAN_EXPORT lean_object* l_BitVec_reduceToInt___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; x_11 = l_Lean_Expr_appArg_x21(x_1); -x_12 = l_Std_BitVec_fromExpr_x3f(x_11, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_12 = l_BitVec_fromExpr_x3f(x_11, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_11); if (lean_obj_tag(x_12) == 0) { lean_object* x_13; @@ -20515,7 +19337,7 @@ if (x_14 == 0) lean_object* x_15; lean_object* x_16; x_15 = lean_ctor_get(x_12, 0); lean_dec(x_15); -x_16 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_16 = l_BitVec_reduceUnary___lambda__1___closed__1; lean_ctor_set(x_12, 0, x_16); return x_12; } @@ -20525,7 +19347,7 @@ lean_object* x_17; lean_object* x_18; lean_object* x_19; x_17 = lean_ctor_get(x_12, 1); lean_inc(x_17); lean_dec(x_12); -x_18 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_18 = l_BitVec_reduceUnary___lambda__1___closed__1; x_19 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_19, 0, x_18); lean_ctor_set(x_19, 1, x_17); @@ -20538,7 +19360,7 @@ uint8_t x_20; x_20 = !lean_is_exclusive(x_12); if (x_20 == 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; uint32_t x_28; uint8_t x_29; lean_object* x_30; lean_object* x_31; +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; uint32_t x_29; x_21 = lean_ctor_get(x_12, 0); lean_dec(x_21); x_22 = lean_ctor_get(x_13, 0); @@ -20549,83 +19371,145 @@ lean_inc(x_23); x_24 = lean_ctor_get(x_22, 1); lean_inc(x_24); lean_dec(x_22); -x_25 = l_Std_BitVec_toInt(x_23, x_24); +x_25 = l_BitVec_toInt(x_23, x_24); lean_dec(x_23); -x_26 = l_Int_toExpr(x_25); +x_26 = l_BitVec_reduceToInt___lambda__1___closed__1; +x_27 = lean_int_dec_le(x_26, x_25); +x_28 = lean_box(0); +x_29 = 0; +if (x_27 == 0) +{ +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; uint8_t x_37; lean_object* x_38; lean_object* x_39; +x_30 = lean_int_neg(x_25); lean_dec(x_25); -x_27 = lean_box(0); -x_28 = 0; -x_29 = 1; -x_30 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_30, 0, x_26); -lean_ctor_set(x_30, 1, x_27); -lean_ctor_set_uint32(x_30, sizeof(void*)*2, x_28); -lean_ctor_set_uint8(x_30, sizeof(void*)*2 + 4, x_29); -x_31 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_31, 0, x_30); -lean_ctor_set(x_12, 0, x_31); +x_31 = l_Int_toNat(x_30); +lean_dec(x_30); +x_32 = l_Lean_instToExprInt_mkNat(x_31); +x_33 = l_BitVec_reduceToInt___lambda__1___closed__4; +x_34 = l_BitVec_reduceToInt___lambda__1___closed__7; +x_35 = l_BitVec_reduceToInt___lambda__1___closed__10; +x_36 = l_Lean_mkApp3(x_33, x_34, x_35, x_32); +x_37 = 1; +x_38 = lean_alloc_ctor(0, 2, 5); +lean_ctor_set(x_38, 0, x_36); +lean_ctor_set(x_38, 1, x_28); +lean_ctor_set_uint32(x_38, sizeof(void*)*2, x_29); +lean_ctor_set_uint8(x_38, sizeof(void*)*2 + 4, x_37); +x_39 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_39, 0, x_38); +lean_ctor_set(x_12, 0, x_39); return x_12; } 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; uint32_t x_39; uint8_t x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; -x_32 = lean_ctor_get(x_12, 1); -lean_inc(x_32); -lean_dec(x_12); -x_33 = lean_ctor_get(x_13, 0); -lean_inc(x_33); -lean_dec(x_13); -x_34 = lean_ctor_get(x_33, 0); -lean_inc(x_34); -x_35 = lean_ctor_get(x_33, 1); -lean_inc(x_35); -lean_dec(x_33); -x_36 = l_Std_BitVec_toInt(x_34, x_35); -lean_dec(x_34); -x_37 = l_Int_toExpr(x_36); -lean_dec(x_36); -x_38 = lean_box(0); -x_39 = 0; -x_40 = 1; -x_41 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_41, 0, x_37); -lean_ctor_set(x_41, 1, x_38); -lean_ctor_set_uint32(x_41, sizeof(void*)*2, x_39); -lean_ctor_set_uint8(x_41, sizeof(void*)*2 + 4, x_40); -x_42 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_42, 0, x_41); -x_43 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_43, 0, x_42); -lean_ctor_set(x_43, 1, x_32); -return x_43; -} -} -} -else -{ -uint8_t x_44; -x_44 = !lean_is_exclusive(x_12); -if (x_44 == 0) -{ +lean_object* x_40; lean_object* x_41; uint8_t x_42; lean_object* x_43; lean_object* x_44; +x_40 = l_Int_toNat(x_25); +lean_dec(x_25); +x_41 = l_Lean_instToExprInt_mkNat(x_40); +x_42 = 1; +x_43 = lean_alloc_ctor(0, 2, 5); +lean_ctor_set(x_43, 0, x_41); +lean_ctor_set(x_43, 1, x_28); +lean_ctor_set_uint32(x_43, sizeof(void*)*2, x_29); +lean_ctor_set_uint8(x_43, sizeof(void*)*2 + 4, x_42); +x_44 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_44, 0, x_43); +lean_ctor_set(x_12, 0, x_44); return x_12; } +} else { -lean_object* x_45; lean_object* x_46; lean_object* x_47; -x_45 = lean_ctor_get(x_12, 0); -x_46 = lean_ctor_get(x_12, 1); -lean_inc(x_46); +lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; uint8_t x_51; lean_object* x_52; uint32_t x_53; +x_45 = lean_ctor_get(x_12, 1); lean_inc(x_45); lean_dec(x_12); -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; +x_46 = lean_ctor_get(x_13, 0); +lean_inc(x_46); +lean_dec(x_13); +x_47 = lean_ctor_get(x_46, 0); +lean_inc(x_47); +x_48 = lean_ctor_get(x_46, 1); +lean_inc(x_48); +lean_dec(x_46); +x_49 = l_BitVec_toInt(x_47, x_48); +lean_dec(x_47); +x_50 = l_BitVec_reduceToInt___lambda__1___closed__1; +x_51 = lean_int_dec_le(x_50, x_49); +x_52 = lean_box(0); +x_53 = 0; +if (x_51 == 0) +{ +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; uint8_t x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; +x_54 = lean_int_neg(x_49); +lean_dec(x_49); +x_55 = l_Int_toNat(x_54); +lean_dec(x_54); +x_56 = l_Lean_instToExprInt_mkNat(x_55); +x_57 = l_BitVec_reduceToInt___lambda__1___closed__4; +x_58 = l_BitVec_reduceToInt___lambda__1___closed__7; +x_59 = l_BitVec_reduceToInt___lambda__1___closed__10; +x_60 = l_Lean_mkApp3(x_57, x_58, x_59, x_56); +x_61 = 1; +x_62 = lean_alloc_ctor(0, 2, 5); +lean_ctor_set(x_62, 0, x_60); +lean_ctor_set(x_62, 1, x_52); +lean_ctor_set_uint32(x_62, sizeof(void*)*2, x_53); +lean_ctor_set_uint8(x_62, sizeof(void*)*2 + 4, x_61); +x_63 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_63, 0, x_62); +x_64 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_64, 0, x_63); +lean_ctor_set(x_64, 1, x_45); +return x_64; +} +else +{ +lean_object* x_65; lean_object* x_66; uint8_t x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; +x_65 = l_Int_toNat(x_49); +lean_dec(x_49); +x_66 = l_Lean_instToExprInt_mkNat(x_65); +x_67 = 1; +x_68 = lean_alloc_ctor(0, 2, 5); +lean_ctor_set(x_68, 0, x_66); +lean_ctor_set(x_68, 1, x_52); +lean_ctor_set_uint32(x_68, sizeof(void*)*2, x_53); +lean_ctor_set_uint8(x_68, sizeof(void*)*2 + 4, x_67); +x_69 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_69, 0, x_68); +x_70 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_70, 0, x_69); +lean_ctor_set(x_70, 1, x_45); +return x_70; } } } } -static lean_object* _init_l_Std_BitVec_reduceToInt___closed__1() { +else +{ +uint8_t x_71; +x_71 = !lean_is_exclusive(x_12); +if (x_71 == 0) +{ +return x_12; +} +else +{ +lean_object* x_72; lean_object* x_73; lean_object* x_74; +x_72 = lean_ctor_get(x_12, 0); +x_73 = lean_ctor_get(x_12, 1); +lean_inc(x_73); +lean_inc(x_72); +lean_dec(x_12); +x_74 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_74, 0, x_72); +lean_ctor_set(x_74, 1, x_73); +return x_74; +} +} +} +} +static lean_object* _init_l_BitVec_reduceToInt___closed__1() { _start: { lean_object* x_1; @@ -20633,22 +19517,21 @@ x_1 = lean_mk_string_from_bytes("toInt", 5); return x_1; } } -static lean_object* _init_l_Std_BitVec_reduceToInt___closed__2() { +static lean_object* _init_l_BitVec_reduceToInt___closed__2() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f___closed__4; -x_2 = l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f___closed__5; -x_3 = l_Std_BitVec_reduceToInt___closed__1; -x_4 = l_Lean_Name_mkStr3(x_1, x_2, x_3); -return x_4; +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_BitVec_reduceUnary___lambda__1___closed__2; +x_2 = l_BitVec_reduceToInt___closed__1; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; } } -LEAN_EXPORT lean_object* l_Std_BitVec_reduceToInt(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_EXPORT lean_object* l_BitVec_reduceToInt(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; uint8_t x_12; -x_10 = l_Std_BitVec_reduceToInt___closed__2; +x_10 = l_BitVec_reduceToInt___closed__2; x_11 = lean_unsigned_to_nat(2u); x_12 = l_Lean_Expr_isAppOfArity(x_1, x_10, x_11); if (x_12 == 0) @@ -20661,7 +19544,7 @@ lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); -x_13 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_13 = l_BitVec_reduceUnary___lambda__1___closed__1; x_14 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_14, 0, x_13); lean_ctor_set(x_14, 1, x_9); @@ -20671,7 +19554,7 @@ else { lean_object* x_15; lean_object* x_16; x_15 = lean_box(0); -x_16 = l_Std_BitVec_reduceToInt___lambda__1(x_1, x_15, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_16 = l_BitVec_reduceToInt___lambda__1(x_1, x_15, 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); @@ -20679,11 +19562,11 @@ return x_16; } } } -LEAN_EXPORT lean_object* l_Std_BitVec_reduceToInt___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) { +LEAN_EXPORT lean_object* l_BitVec_reduceToInt___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_Std_BitVec_reduceToInt___lambda__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_11 = l_BitVec_reduceToInt___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); @@ -20692,16 +19575,16 @@ lean_dec(x_1); return x_11; } } -LEAN_EXPORT lean_object* l_Std_BitVec_reduceToInt___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_EXPORT lean_object* l_BitVec_reduceToInt___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_Std_BitVec_reduceToInt(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_10 = l_BitVec_reduceToInt(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); lean_dec(x_1); return x_10; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceToInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2721____closed__1() { +static lean_object* _init_l___regBuiltin_BitVec_reduceToInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2482____closed__1() { _start: { lean_object* x_1; @@ -20709,22 +19592,21 @@ x_1 = lean_mk_string_from_bytes("reduceToInt", 11); return x_1; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceToInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2721____closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f___closed__4; -x_2 = l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f___closed__5; -x_3 = l___regBuiltin_Std_BitVec_reduceToInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2721____closed__1; -x_4 = l_Lean_Name_mkStr3(x_1, x_2, x_3); -return x_4; -} -} -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceToInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2721____closed__3() { +static lean_object* _init_l___regBuiltin_BitVec_reduceToInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2482____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Std_BitVec_reduceToInt___closed__2; +x_1 = l_BitVec_reduceUnary___lambda__1___closed__2; +x_2 = l___regBuiltin_BitVec_reduceToInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2482____closed__1; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___regBuiltin_BitVec_reduceToInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2482____closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_BitVec_reduceToInt___closed__2; x_2 = lean_unsigned_to_nat(2u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -20732,80 +19614,80 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceToInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2721____closed__4() { +static lean_object* _init_l___regBuiltin_BitVec_reduceToInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2482____closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1429____closed__4; -x_2 = l___regBuiltin_Std_BitVec_reduceToInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2721____closed__3; +x_1 = l___regBuiltin_BitVec_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1206____closed__4; +x_2 = l___regBuiltin_BitVec_reduceToInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2482____closed__3; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceToInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2721____closed__5() { +static lean_object* _init_l___regBuiltin_BitVec_reduceToInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2482____closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceToInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2721____closed__4; +x_1 = l___regBuiltin_BitVec_reduceToInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2482____closed__4; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceToInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2721____closed__6() { +static lean_object* _init_l___regBuiltin_BitVec_reduceToInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2482____closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceToInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2721____closed__5; +x_1 = l___regBuiltin_BitVec_reduceToInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2482____closed__5; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceToInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2721____closed__7() { +static lean_object* _init_l___regBuiltin_BitVec_reduceToInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2482____closed__7() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Std_BitVec_reduceToInt___boxed), 9, 0); +x_1 = lean_alloc_closure((void*)(l_BitVec_reduceToInt___boxed), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceToInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2721_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceToInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2482_(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_Std_BitVec_reduceToInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2721____closed__2; -x_3 = l___regBuiltin_Std_BitVec_reduceToInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2721____closed__6; -x_4 = l___regBuiltin_Std_BitVec_reduceToInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2721____closed__7; +x_2 = l___regBuiltin_BitVec_reduceToInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2482____closed__2; +x_3 = l___regBuiltin_BitVec_reduceToInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2482____closed__6; +x_4 = l___regBuiltin_BitVec_reduceToInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2482____closed__7; x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); return x_5; } } -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceToInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2723_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceToInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2484_(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_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1373____closed__1; -x_3 = l___regBuiltin_Std_BitVec_reduceToInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2721____closed__2; +x_2 = l___regBuiltin_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1150____closed__1; +x_3 = l___regBuiltin_BitVec_reduceToInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2482____closed__2; x_4 = 1; -x_5 = l___regBuiltin_Std_BitVec_reduceToInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2721____closed__7; +x_5 = l___regBuiltin_BitVec_reduceToInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2482____closed__7; 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_Std_BitVec_reduceToInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2725_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceToInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2486_(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_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1375____closed__1; -x_3 = l___regBuiltin_Std_BitVec_reduceToInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2721____closed__2; +x_2 = l___regBuiltin_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1152____closed__1; +x_3 = l___regBuiltin_BitVec_reduceToInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2482____closed__2; x_4 = 1; -x_5 = l___regBuiltin_Std_BitVec_reduceToInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2721____closed__7; +x_5 = l___regBuiltin_BitVec_reduceToInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2482____closed__7; 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_Std_BitVec_reduceOfInt___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) { +LEAN_EXPORT lean_object* l_BitVec_reduceOfInt___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; @@ -20816,7 +19698,8 @@ lean_dec(x_11); lean_inc(x_9); lean_inc(x_8); lean_inc(x_7); -x_13 = l_Nat_fromExpr_x3f(x_12, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_inc(x_6); +x_13 = l_Lean_Meta_getNatValue_x3f(x_12, x_6, x_7, x_8, x_9, x_10); if (lean_obj_tag(x_13) == 0) { lean_object* x_14; @@ -20829,9 +19712,6 @@ 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); lean_dec(x_1); x_15 = !lean_is_exclusive(x_13); if (x_15 == 0) @@ -20839,7 +19719,7 @@ if (x_15 == 0) lean_object* x_16; lean_object* x_17; x_16 = lean_ctor_get(x_13, 0); lean_dec(x_16); -x_17 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_17 = l_BitVec_reduceUnary___lambda__1___closed__1; lean_ctor_set(x_13, 0, x_17); return x_13; } @@ -20849,7 +19729,7 @@ lean_object* x_18; lean_object* x_19; lean_object* x_20; x_18 = lean_ctor_get(x_13, 1); lean_inc(x_18); lean_dec(x_13); -x_19 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_19 = l_BitVec_reduceUnary___lambda__1___closed__1; x_20 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_20, 0, x_19); lean_ctor_set(x_20, 1, x_18); @@ -20867,7 +19747,8 @@ lean_inc(x_22); lean_dec(x_14); x_23 = l_Lean_Expr_appArg_x21(x_1); lean_dec(x_1); -x_24 = l_Int_fromExpr_x3f(x_23, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_21); +x_24 = l_Lean_Meta_getIntValue_x3f(x_23, x_6, x_7, x_8, x_9, x_21); +lean_dec(x_23); if (lean_obj_tag(x_24) == 0) { lean_object* x_25; @@ -20883,7 +19764,7 @@ if (x_26 == 0) lean_object* x_27; lean_object* x_28; x_27 = lean_ctor_get(x_24, 0); lean_dec(x_27); -x_28 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_28 = l_BitVec_reduceUnary___lambda__1___closed__1; lean_ctor_set(x_24, 0, x_28); return x_24; } @@ -20893,7 +19774,7 @@ lean_object* x_29; lean_object* x_30; lean_object* x_31; x_29 = lean_ctor_get(x_24, 1); lean_inc(x_29); lean_dec(x_24); -x_30 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_30 = l_BitVec_reduceUnary___lambda__1___closed__1; x_31 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_31, 0, x_30); lean_ctor_set(x_31, 1, x_29); @@ -20906,112 +19787,80 @@ uint8_t x_32; x_32 = !lean_is_exclusive(x_24); if (x_32 == 0) { -lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; uint32_t x_39; uint8_t x_40; lean_object* x_41; lean_object* x_42; +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; uint32_t x_41; uint8_t x_42; lean_object* x_43; lean_object* x_44; x_33 = lean_ctor_get(x_24, 0); lean_dec(x_33); x_34 = lean_ctor_get(x_25, 0); lean_inc(x_34); lean_dec(x_25); -x_35 = l_Std_BitVec_ofInt(x_22, x_34); +x_35 = l_BitVec_ofInt(x_22, x_34); lean_dec(x_34); -x_36 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_36, 0, x_22); -lean_ctor_set(x_36, 1, x_35); -x_37 = l_Std_BitVec_Literal_toExpr(x_36); -x_38 = lean_box(0); -x_39 = 0; -x_40 = 1; -x_41 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_41, 0, x_37); -lean_ctor_set(x_41, 1, x_38); -lean_ctor_set_uint32(x_41, sizeof(void*)*2, x_39); -lean_ctor_set_uint8(x_41, sizeof(void*)*2 + 4, x_40); -x_42 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_42, 0, x_41); -lean_ctor_set(x_24, 0, x_42); +x_36 = l_Lean_mkNatLit(x_22); +x_37 = l_Lean_mkNatLit(x_35); +x_38 = l_BitVec_reduceUnary___lambda__1___closed__5; +x_39 = l_Lean_mkAppB(x_38, x_36, x_37); +x_40 = lean_box(0); +x_41 = 0; +x_42 = 1; +x_43 = lean_alloc_ctor(0, 2, 5); +lean_ctor_set(x_43, 0, x_39); +lean_ctor_set(x_43, 1, x_40); +lean_ctor_set_uint32(x_43, sizeof(void*)*2, x_41); +lean_ctor_set_uint8(x_43, sizeof(void*)*2 + 4, x_42); +x_44 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_44, 0, x_43); +lean_ctor_set(x_24, 0, x_44); return x_24; } else { -lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; uint32_t x_49; uint8_t x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; -x_43 = lean_ctor_get(x_24, 1); -lean_inc(x_43); +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; uint32_t x_53; uint8_t x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; +x_45 = lean_ctor_get(x_24, 1); +lean_inc(x_45); lean_dec(x_24); -x_44 = lean_ctor_get(x_25, 0); -lean_inc(x_44); +x_46 = lean_ctor_get(x_25, 0); +lean_inc(x_46); lean_dec(x_25); -x_45 = l_Std_BitVec_ofInt(x_22, x_44); -lean_dec(x_44); -x_46 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_46, 0, x_22); -lean_ctor_set(x_46, 1, x_45); -x_47 = l_Std_BitVec_Literal_toExpr(x_46); -x_48 = lean_box(0); -x_49 = 0; -x_50 = 1; -x_51 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_51, 0, x_47); -lean_ctor_set(x_51, 1, x_48); -lean_ctor_set_uint32(x_51, sizeof(void*)*2, x_49); -lean_ctor_set_uint8(x_51, sizeof(void*)*2 + 4, x_50); -x_52 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_52, 0, x_51); -x_53 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_53, 0, x_52); -lean_ctor_set(x_53, 1, x_43); -return x_53; -} -} -} -else -{ -uint8_t x_54; -lean_dec(x_22); -x_54 = !lean_is_exclusive(x_24); -if (x_54 == 0) -{ -return x_24; -} -else -{ -lean_object* x_55; lean_object* x_56; lean_object* x_57; -x_55 = lean_ctor_get(x_24, 0); -x_56 = lean_ctor_get(x_24, 1); -lean_inc(x_56); -lean_inc(x_55); -lean_dec(x_24); -x_57 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_57, 0, x_55); -lean_ctor_set(x_57, 1, x_56); +x_47 = l_BitVec_ofInt(x_22, x_46); +lean_dec(x_46); +x_48 = l_Lean_mkNatLit(x_22); +x_49 = l_Lean_mkNatLit(x_47); +x_50 = l_BitVec_reduceUnary___lambda__1___closed__5; +x_51 = l_Lean_mkAppB(x_50, x_48, x_49); +x_52 = lean_box(0); +x_53 = 0; +x_54 = 1; +x_55 = lean_alloc_ctor(0, 2, 5); +lean_ctor_set(x_55, 0, x_51); +lean_ctor_set(x_55, 1, x_52); +lean_ctor_set_uint32(x_55, sizeof(void*)*2, x_53); +lean_ctor_set_uint8(x_55, sizeof(void*)*2 + 4, x_54); +x_56 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_56, 0, x_55); +x_57 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_57, 0, x_56); +lean_ctor_set(x_57, 1, x_45); return x_57; } } } -} else { uint8_t x_58; -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); -lean_dec(x_1); -x_58 = !lean_is_exclusive(x_13); +lean_dec(x_22); +x_58 = !lean_is_exclusive(x_24); if (x_58 == 0) { -return x_13; +return x_24; } else { lean_object* x_59; lean_object* x_60; lean_object* x_61; -x_59 = lean_ctor_get(x_13, 0); -x_60 = lean_ctor_get(x_13, 1); +x_59 = lean_ctor_get(x_24, 0); +x_60 = lean_ctor_get(x_24, 1); lean_inc(x_60); lean_inc(x_59); -lean_dec(x_13); +lean_dec(x_24); x_61 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_61, 0, x_59); lean_ctor_set(x_61, 1, x_60); @@ -21020,7 +19869,36 @@ return x_61; } } } -static lean_object* _init_l_Std_BitVec_reduceOfInt___closed__1() { +else +{ +uint8_t x_62; +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_1); +x_62 = !lean_is_exclusive(x_13); +if (x_62 == 0) +{ +return x_13; +} +else +{ +lean_object* x_63; lean_object* x_64; lean_object* x_65; +x_63 = lean_ctor_get(x_13, 0); +x_64 = lean_ctor_get(x_13, 1); +lean_inc(x_64); +lean_inc(x_63); +lean_dec(x_13); +x_65 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_65, 0, x_63); +lean_ctor_set(x_65, 1, x_64); +return x_65; +} +} +} +} +static lean_object* _init_l_BitVec_reduceOfInt___closed__1() { _start: { lean_object* x_1; @@ -21028,22 +19906,21 @@ x_1 = lean_mk_string_from_bytes("ofInt", 5); return x_1; } } -static lean_object* _init_l_Std_BitVec_reduceOfInt___closed__2() { +static lean_object* _init_l_BitVec_reduceOfInt___closed__2() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f___closed__4; -x_2 = l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f___closed__5; -x_3 = l_Std_BitVec_reduceOfInt___closed__1; -x_4 = l_Lean_Name_mkStr3(x_1, x_2, x_3); -return x_4; +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_BitVec_reduceUnary___lambda__1___closed__2; +x_2 = l_BitVec_reduceOfInt___closed__1; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; } } -LEAN_EXPORT lean_object* l_Std_BitVec_reduceOfInt(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_EXPORT lean_object* l_BitVec_reduceOfInt(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; uint8_t x_12; -x_10 = l_Std_BitVec_reduceOfInt___closed__2; +x_10 = l_BitVec_reduceOfInt___closed__2; x_11 = lean_unsigned_to_nat(2u); x_12 = l_Lean_Expr_isAppOfArity(x_1, x_10, x_11); if (x_12 == 0) @@ -21057,7 +19934,7 @@ lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_13 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_13 = l_BitVec_reduceUnary___lambda__1___closed__1; x_14 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_14, 0, x_13); lean_ctor_set(x_14, 1, x_9); @@ -21067,21 +19944,27 @@ else { lean_object* x_15; lean_object* x_16; x_15 = lean_box(0); -x_16 = l_Std_BitVec_reduceOfInt___lambda__1(x_1, x_15, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_16 = l_BitVec_reduceOfInt___lambda__1(x_1, x_15, 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_16; } } } -LEAN_EXPORT lean_object* l_Std_BitVec_reduceOfInt___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) { +LEAN_EXPORT lean_object* l_BitVec_reduceOfInt___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_Std_BitVec_reduceOfInt___lambda__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_11 = l_BitVec_reduceOfInt___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; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceOfInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2878____closed__1() { +static lean_object* _init_l___regBuiltin_BitVec_reduceOfInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2631____closed__1() { _start: { lean_object* x_1; @@ -21089,22 +19972,21 @@ x_1 = lean_mk_string_from_bytes("reduceOfInt", 11); return x_1; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceOfInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2878____closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f___closed__4; -x_2 = l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f___closed__5; -x_3 = l___regBuiltin_Std_BitVec_reduceOfInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2878____closed__1; -x_4 = l_Lean_Name_mkStr3(x_1, x_2, x_3); -return x_4; -} -} -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceOfInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2878____closed__3() { +static lean_object* _init_l___regBuiltin_BitVec_reduceOfInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2631____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Std_BitVec_reduceOfInt___closed__2; +x_1 = l_BitVec_reduceUnary___lambda__1___closed__2; +x_2 = l___regBuiltin_BitVec_reduceOfInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2631____closed__1; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___regBuiltin_BitVec_reduceOfInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2631____closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_BitVec_reduceOfInt___closed__2; x_2 = lean_unsigned_to_nat(2u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -21112,104 +19994,104 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceOfInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2878____closed__4() { +static lean_object* _init_l___regBuiltin_BitVec_reduceOfInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2631____closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1429____closed__4; -x_2 = l___regBuiltin_Std_BitVec_reduceOfInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2878____closed__3; +x_1 = l___regBuiltin_BitVec_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1206____closed__4; +x_2 = l___regBuiltin_BitVec_reduceOfInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2631____closed__3; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceOfInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2878____closed__5() { +static lean_object* _init_l___regBuiltin_BitVec_reduceOfInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2631____closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceOfInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2878____closed__4; +x_1 = l___regBuiltin_BitVec_reduceOfInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2631____closed__4; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceOfInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2878____closed__6() { +static lean_object* _init_l___regBuiltin_BitVec_reduceOfInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2631____closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceOfInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2878____closed__5; +x_1 = l___regBuiltin_BitVec_reduceOfInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2631____closed__5; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceOfInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2878____closed__7() { +static lean_object* _init_l___regBuiltin_BitVec_reduceOfInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2631____closed__7() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Std_BitVec_reduceOfInt), 9, 0); +x_1 = lean_alloc_closure((void*)(l_BitVec_reduceOfInt), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceOfInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2878_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceOfInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2631_(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_Std_BitVec_reduceOfInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2878____closed__2; -x_3 = l___regBuiltin_Std_BitVec_reduceOfInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2878____closed__6; -x_4 = l___regBuiltin_Std_BitVec_reduceOfInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2878____closed__7; +x_2 = l___regBuiltin_BitVec_reduceOfInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2631____closed__2; +x_3 = l___regBuiltin_BitVec_reduceOfInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2631____closed__6; +x_4 = l___regBuiltin_BitVec_reduceOfInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2631____closed__7; x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); return x_5; } } -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceOfInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2880_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceOfInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2633_(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_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1373____closed__1; -x_3 = l___regBuiltin_Std_BitVec_reduceOfInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2878____closed__2; +x_2 = l___regBuiltin_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1150____closed__1; +x_3 = l___regBuiltin_BitVec_reduceOfInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2631____closed__2; x_4 = 1; -x_5 = l___regBuiltin_Std_BitVec_reduceOfInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2878____closed__7; +x_5 = l___regBuiltin_BitVec_reduceOfInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2631____closed__7; 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_Std_BitVec_reduceOfInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2882_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceOfInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2635_(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_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1375____closed__1; -x_3 = l___regBuiltin_Std_BitVec_reduceOfInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2878____closed__2; +x_2 = l___regBuiltin_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1152____closed__1; +x_3 = l___regBuiltin_BitVec_reduceOfInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2631____closed__2; x_4 = 1; -x_5 = l___regBuiltin_Std_BitVec_reduceOfInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2878____closed__7; +x_5 = l___regBuiltin_BitVec_reduceOfInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2631____closed__7; 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_Std_BitVec_reduceOfNat___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, lean_object* x_11) { +LEAN_EXPORT lean_object* l_BitVec_reduceOfNat___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, lean_object* x_11) { _start: { -lean_object* x_12; lean_object* x_13; lean_object* x_14; uint32_t x_15; uint8_t x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; -x_12 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_12, 0, x_1); -lean_ctor_set(x_12, 1, x_2); -x_13 = l_Std_BitVec_Literal_toExpr(x_12); -x_14 = lean_box(0); -x_15 = 0; -x_16 = 1; -x_17 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_17, 0, x_13); -lean_ctor_set(x_17, 1, x_14); -lean_ctor_set_uint32(x_17, sizeof(void*)*2, x_15); -lean_ctor_set_uint8(x_17, sizeof(void*)*2 + 4, x_16); -x_18 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_18, 0, x_17); -x_19 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_19, 0, x_18); -lean_ctor_set(x_19, 1, x_11); -return x_19; +lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; uint32_t x_17; uint8_t x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; +x_12 = l_Lean_mkNatLit(x_1); +x_13 = l_Lean_mkNatLit(x_2); +x_14 = l_BitVec_reduceUnary___lambda__1___closed__5; +x_15 = l_Lean_mkAppB(x_14, x_12, x_13); +x_16 = lean_box(0); +x_17 = 0; +x_18 = 1; +x_19 = lean_alloc_ctor(0, 2, 5); +lean_ctor_set(x_19, 0, x_15); +lean_ctor_set(x_19, 1, x_16); +lean_ctor_set_uint32(x_19, sizeof(void*)*2, x_17); +lean_ctor_set_uint8(x_19, sizeof(void*)*2 + 4, x_18); +x_20 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_20, 0, x_19); +x_21 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_21, 0, x_20); +lean_ctor_set(x_21, 1, x_11); +return x_21; } } -LEAN_EXPORT lean_object* l_Std_BitVec_reduceOfNat___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_EXPORT lean_object* l_BitVec_reduceOfNat___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) { _start: { lean_object* x_11; lean_object* x_12; lean_object* x_13; @@ -21221,7 +20103,8 @@ lean_dec(x_11); lean_inc(x_9); lean_inc(x_8); lean_inc(x_7); -x_13 = l_Nat_fromExpr_x3f(x_12, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_inc(x_6); +x_13 = l_Lean_Meta_getNatValue_x3f(x_12, x_6, x_7, x_8, x_9, x_10); if (lean_obj_tag(x_13) == 0) { lean_object* x_14; @@ -21244,7 +20127,7 @@ if (x_15 == 0) lean_object* x_16; lean_object* x_17; x_16 = lean_ctor_get(x_13, 0); lean_dec(x_16); -x_17 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_17 = l_BitVec_reduceUnary___lambda__1___closed__1; lean_ctor_set(x_13, 0, x_17); return x_13; } @@ -21254,7 +20137,7 @@ lean_object* x_18; lean_object* x_19; lean_object* x_20; x_18 = lean_ctor_get(x_13, 1); lean_inc(x_18); lean_dec(x_13); -x_19 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_19 = l_BitVec_reduceUnary___lambda__1___closed__1; x_20 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_20, 0, x_19); lean_ctor_set(x_20, 1, x_18); @@ -21275,7 +20158,8 @@ lean_dec(x_1); lean_inc(x_9); lean_inc(x_8); lean_inc(x_7); -x_24 = l_Nat_fromExpr_x3f(x_23, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_21); +lean_inc(x_6); +x_24 = l_Lean_Meta_getNatValue_x3f(x_23, x_6, x_7, x_8, x_9, x_21); if (lean_obj_tag(x_24) == 0) { lean_object* x_25; @@ -21298,7 +20182,7 @@ if (x_26 == 0) lean_object* x_27; lean_object* x_28; x_27 = lean_ctor_get(x_24, 0); lean_dec(x_27); -x_28 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_28 = l_BitVec_reduceUnary___lambda__1___closed__1; lean_ctor_set(x_24, 0, x_28); return x_24; } @@ -21308,7 +20192,7 @@ lean_object* x_29; lean_object* x_30; lean_object* x_31; x_29 = lean_ctor_get(x_24, 1); lean_inc(x_29); lean_dec(x_24); -x_30 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_30 = l_BitVec_reduceUnary___lambda__1___closed__1; x_31 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_31, 0, x_30); lean_ctor_set(x_31, 1, x_29); @@ -21328,7 +20212,7 @@ lean_dec(x_34); x_35 = lean_ctor_get(x_25, 0); lean_inc(x_35); lean_dec(x_25); -x_36 = l_Std_BitVec_ofNat(x_22, x_35); +x_36 = l_BitVec_ofNat(x_22, x_35); x_37 = lean_nat_dec_eq(x_36, x_35); lean_dec(x_35); if (x_37 == 0) @@ -21336,7 +20220,7 @@ if (x_37 == 0) lean_object* x_38; lean_object* x_39; lean_free_object(x_24); x_38 = lean_box(0); -x_39 = l_Std_BitVec_reduceOfNat___lambda__1(x_22, x_36, x_38, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_33); +x_39 = l_BitVec_reduceOfNat___lambda__1(x_22, x_36, x_38, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_33); lean_dec(x_9); lean_dec(x_8); lean_dec(x_7); @@ -21358,7 +20242,7 @@ lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); -x_40 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_40 = l_BitVec_reduceUnary___lambda__1___closed__1; lean_ctor_set(x_24, 0, x_40); return x_24; } @@ -21372,14 +20256,14 @@ lean_dec(x_24); x_42 = lean_ctor_get(x_25, 0); lean_inc(x_42); lean_dec(x_25); -x_43 = l_Std_BitVec_ofNat(x_22, x_42); +x_43 = l_BitVec_ofNat(x_22, x_42); x_44 = lean_nat_dec_eq(x_43, x_42); lean_dec(x_42); if (x_44 == 0) { lean_object* x_45; lean_object* x_46; x_45 = lean_box(0); -x_46 = l_Std_BitVec_reduceOfNat___lambda__1(x_22, x_43, x_45, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_41); +x_46 = l_BitVec_reduceOfNat___lambda__1(x_22, x_43, x_45, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_41); lean_dec(x_9); lean_dec(x_8); lean_dec(x_7); @@ -21401,7 +20285,7 @@ lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); -x_47 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_47 = l_BitVec_reduceUnary___lambda__1___closed__1; x_48 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_48, 0, x_47); lean_ctor_set(x_48, 1, x_41); @@ -21474,11 +20358,11 @@ return x_56; } } } -LEAN_EXPORT lean_object* l_Std_BitVec_reduceOfNat(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_EXPORT lean_object* l_BitVec_reduceOfNat(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; uint8_t x_12; -x_10 = l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromBitVecExpr_x3f___closed__1; +x_10 = l_BitVec_reduceUnary___lambda__1___closed__4; x_11 = lean_unsigned_to_nat(2u); x_12 = l_Lean_Expr_isAppOfArity(x_1, x_10, x_11); if (x_12 == 0) @@ -21492,7 +20376,7 @@ lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_13 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_13 = l_BitVec_reduceUnary___lambda__1___closed__1; x_14 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_14, 0, x_13); lean_ctor_set(x_14, 1, x_9); @@ -21502,16 +20386,16 @@ else { lean_object* x_15; lean_object* x_16; x_15 = lean_box(0); -x_16 = l_Std_BitVec_reduceOfNat___lambda__2(x_1, x_15, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_16 = l_BitVec_reduceOfNat___lambda__2(x_1, x_15, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); return x_16; } } } -LEAN_EXPORT lean_object* l_Std_BitVec_reduceOfNat___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, lean_object* x_11) { +LEAN_EXPORT lean_object* l_BitVec_reduceOfNat___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, lean_object* x_11) { _start: { lean_object* x_12; -x_12 = l_Std_BitVec_reduceOfNat___lambda__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +x_12 = l_BitVec_reduceOfNat___lambda__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); @@ -21523,7 +20407,7 @@ lean_dec(x_3); return x_12; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceOfNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3086____closed__1() { +static lean_object* _init_l___regBuiltin_BitVec_reduceOfNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2829____closed__1() { _start: { lean_object* x_1; @@ -21531,22 +20415,21 @@ x_1 = lean_mk_string_from_bytes("reduceOfNat", 11); return x_1; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceOfNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3086____closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f___closed__4; -x_2 = l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f___closed__5; -x_3 = l___regBuiltin_Std_BitVec_reduceOfNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3086____closed__1; -x_4 = l_Lean_Name_mkStr3(x_1, x_2, x_3); -return x_4; -} -} -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceOfNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3086____closed__3() { +static lean_object* _init_l___regBuiltin_BitVec_reduceOfNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2829____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromBitVecExpr_x3f___closed__1; +x_1 = l_BitVec_reduceUnary___lambda__1___closed__2; +x_2 = l___regBuiltin_BitVec_reduceOfNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2829____closed__1; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___regBuiltin_BitVec_reduceOfNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2829____closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_BitVec_reduceUnary___lambda__1___closed__4; x_2 = lean_unsigned_to_nat(2u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -21554,80 +20437,80 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceOfNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3086____closed__4() { +static lean_object* _init_l___regBuiltin_BitVec_reduceOfNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2829____closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1429____closed__4; -x_2 = l___regBuiltin_Std_BitVec_reduceOfNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3086____closed__3; +x_1 = l___regBuiltin_BitVec_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1206____closed__4; +x_2 = l___regBuiltin_BitVec_reduceOfNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2829____closed__3; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceOfNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3086____closed__5() { +static lean_object* _init_l___regBuiltin_BitVec_reduceOfNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2829____closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceOfNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3086____closed__4; +x_1 = l___regBuiltin_BitVec_reduceOfNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2829____closed__4; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceOfNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3086____closed__6() { +static lean_object* _init_l___regBuiltin_BitVec_reduceOfNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2829____closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceOfNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3086____closed__5; +x_1 = l___regBuiltin_BitVec_reduceOfNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2829____closed__5; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceOfNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3086____closed__7() { +static lean_object* _init_l___regBuiltin_BitVec_reduceOfNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2829____closed__7() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Std_BitVec_reduceOfNat), 9, 0); +x_1 = lean_alloc_closure((void*)(l_BitVec_reduceOfNat), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceOfNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3086_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceOfNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2829_(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_Std_BitVec_reduceOfNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3086____closed__2; -x_3 = l___regBuiltin_Std_BitVec_reduceOfNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3086____closed__6; -x_4 = l___regBuiltin_Std_BitVec_reduceOfNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3086____closed__7; +x_2 = l___regBuiltin_BitVec_reduceOfNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2829____closed__2; +x_3 = l___regBuiltin_BitVec_reduceOfNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2829____closed__6; +x_4 = l___regBuiltin_BitVec_reduceOfNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2829____closed__7; x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); return x_5; } } -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceOfNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3088_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceOfNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2831_(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_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1373____closed__1; -x_3 = l___regBuiltin_Std_BitVec_reduceOfNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3086____closed__2; +x_2 = l___regBuiltin_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1150____closed__1; +x_3 = l___regBuiltin_BitVec_reduceOfNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2829____closed__2; x_4 = 1; -x_5 = l___regBuiltin_Std_BitVec_reduceOfNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3086____closed__7; +x_5 = l___regBuiltin_BitVec_reduceOfNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2829____closed__7; 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_Std_BitVec_reduceOfNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3090_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceOfNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2833_(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_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1375____closed__1; -x_3 = l___regBuiltin_Std_BitVec_reduceOfNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3086____closed__2; +x_2 = l___regBuiltin_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1152____closed__1; +x_3 = l___regBuiltin_BitVec_reduceOfNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2829____closed__2; x_4 = 1; -x_5 = l___regBuiltin_Std_BitVec_reduceOfNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3086____closed__7; +x_5 = l___regBuiltin_BitVec_reduceOfNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2829____closed__7; 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_Std_BitVec_reduceLT___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) { +LEAN_EXPORT lean_object* l_BitVec_reduceLT___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; @@ -21639,7 +20522,8 @@ lean_inc(x_9); lean_inc(x_8); lean_inc(x_7); lean_inc(x_6); -x_13 = l_Std_BitVec_fromExpr_x3f(x_12, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_13 = l_BitVec_fromExpr_x3f(x_12, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_12); if (lean_obj_tag(x_13) == 0) { lean_object* x_14; @@ -21659,7 +20543,7 @@ if (x_15 == 0) lean_object* x_16; lean_object* x_17; x_16 = lean_ctor_get(x_13, 0); lean_dec(x_16); -x_17 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_17 = l_BitVec_reduceUnary___lambda__1___closed__1; lean_ctor_set(x_13, 0, x_17); return x_13; } @@ -21669,7 +20553,7 @@ lean_object* x_18; lean_object* x_19; lean_object* x_20; x_18 = lean_ctor_get(x_13, 1); lean_inc(x_18); lean_dec(x_13); -x_19 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_19 = l_BitVec_reduceUnary___lambda__1___closed__1; x_20 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_20, 0, x_19); lean_ctor_set(x_20, 1, x_18); @@ -21690,7 +20574,8 @@ lean_inc(x_9); lean_inc(x_8); lean_inc(x_7); lean_inc(x_6); -x_24 = l_Std_BitVec_fromExpr_x3f(x_23, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_21); +x_24 = l_BitVec_fromExpr_x3f(x_23, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_21); +lean_dec(x_23); if (lean_obj_tag(x_24) == 0) { lean_object* x_25; @@ -21711,7 +20596,7 @@ if (x_26 == 0) lean_object* x_27; lean_object* x_28; x_27 = lean_ctor_get(x_24, 0); lean_dec(x_27); -x_28 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_28 = l_BitVec_reduceUnary___lambda__1___closed__1; lean_ctor_set(x_24, 0, x_28); return x_24; } @@ -21721,7 +20606,7 @@ lean_object* x_29; lean_object* x_30; lean_object* x_31; x_29 = lean_ctor_get(x_24, 1); lean_inc(x_29); lean_dec(x_24); -x_30 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_30 = l_BitVec_reduceUnary___lambda__1___closed__1; x_31 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_31, 0, x_30); lean_ctor_set(x_31, 1, x_29); @@ -21758,7 +20643,7 @@ lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_1); -x_39 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_39 = l_BitVec_reduceUnary___lambda__1___closed__1; lean_ctor_set(x_24, 0, x_39); return x_24; } @@ -21805,7 +20690,7 @@ lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_1); -x_49 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_49 = l_BitVec_reduceUnary___lambda__1___closed__1; x_50 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_50, 0, x_49); lean_ctor_set(x_50, 1, x_44); @@ -21888,7 +20773,7 @@ return x_62; } } } -static lean_object* _init_l_Std_BitVec_reduceLT___closed__1() { +static lean_object* _init_l_BitVec_reduceLT___closed__1() { _start: { lean_object* x_1; @@ -21896,7 +20781,7 @@ x_1 = lean_mk_string_from_bytes("LT", 2); return x_1; } } -static lean_object* _init_l_Std_BitVec_reduceLT___closed__2() { +static lean_object* _init_l_BitVec_reduceLT___closed__2() { _start: { lean_object* x_1; @@ -21904,21 +20789,21 @@ x_1 = lean_mk_string_from_bytes("lt", 2); return x_1; } } -static lean_object* _init_l_Std_BitVec_reduceLT___closed__3() { +static lean_object* _init_l_BitVec_reduceLT___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Std_BitVec_reduceLT___closed__1; -x_2 = l_Std_BitVec_reduceLT___closed__2; +x_1 = l_BitVec_reduceLT___closed__1; +x_2 = l_BitVec_reduceLT___closed__2; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } -LEAN_EXPORT lean_object* l_Std_BitVec_reduceLT(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_EXPORT lean_object* l_BitVec_reduceLT(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; uint8_t x_12; -x_10 = l_Std_BitVec_reduceLT___closed__3; +x_10 = l_BitVec_reduceLT___closed__3; x_11 = lean_unsigned_to_nat(4u); x_12 = l_Lean_Expr_isAppOfArity(x_1, x_10, x_11); if (x_12 == 0) @@ -21932,7 +20817,7 @@ lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_13 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_13 = l_BitVec_reduceUnary___lambda__1___closed__1; x_14 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_14, 0, x_13); lean_ctor_set(x_14, 1, x_9); @@ -21942,7 +20827,7 @@ else { lean_object* x_15; lean_object* x_16; x_15 = lean_box(0); -x_16 = l_Std_BitVec_reduceLT___lambda__1(x_1, x_15, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_16 = l_BitVec_reduceLT___lambda__1(x_1, x_15, 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); @@ -21950,11 +20835,11 @@ return x_16; } } } -LEAN_EXPORT lean_object* l_Std_BitVec_reduceLT___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) { +LEAN_EXPORT lean_object* l_BitVec_reduceLT___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_Std_BitVec_reduceLT___lambda__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_11 = l_BitVec_reduceLT___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); @@ -21962,7 +20847,7 @@ lean_dec(x_2); return x_11; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3129____closed__1() { +static lean_object* _init_l___regBuiltin_BitVec_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2872____closed__1() { _start: { lean_object* x_1; @@ -21970,22 +20855,21 @@ x_1 = lean_mk_string_from_bytes("reduceLT", 8); return x_1; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3129____closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f___closed__4; -x_2 = l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f___closed__5; -x_3 = l___regBuiltin_Std_BitVec_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3129____closed__1; -x_4 = l_Lean_Name_mkStr3(x_1, x_2, x_3); -return x_4; -} -} -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3129____closed__3() { +static lean_object* _init_l___regBuiltin_BitVec_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2872____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Std_BitVec_reduceLT___closed__3; +x_1 = l_BitVec_reduceUnary___lambda__1___closed__2; +x_2 = l___regBuiltin_BitVec_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2872____closed__1; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___regBuiltin_BitVec_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2872____closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_BitVec_reduceLT___closed__3; x_2 = lean_unsigned_to_nat(4u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -21993,7 +20877,7 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3129____closed__4() { +static lean_object* _init_l___regBuiltin_BitVec_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2872____closed__4() { _start: { lean_object* x_1; lean_object* x_2; @@ -22002,110 +20886,110 @@ x_2 = lean_mk_empty_array_with_capacity(x_1); return x_2; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3129____closed__5() { +static lean_object* _init_l___regBuiltin_BitVec_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2872____closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3129____closed__4; -x_2 = l___regBuiltin_Std_BitVec_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3129____closed__3; +x_1 = l___regBuiltin_BitVec_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2872____closed__4; +x_2 = l___regBuiltin_BitVec_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2872____closed__3; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3129____closed__6() { +static lean_object* _init_l___regBuiltin_BitVec_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2872____closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3129____closed__5; -x_2 = l___regBuiltin_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1371____closed__4; +x_1 = l___regBuiltin_BitVec_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2872____closed__5; +x_2 = l___regBuiltin_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1148____closed__5; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3129____closed__7() { +static lean_object* _init_l___regBuiltin_BitVec_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2872____closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3129____closed__6; +x_1 = l___regBuiltin_BitVec_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2872____closed__6; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3129____closed__8() { +static lean_object* _init_l___regBuiltin_BitVec_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2872____closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3129____closed__7; +x_1 = l___regBuiltin_BitVec_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2872____closed__7; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3129____closed__9() { +static lean_object* _init_l___regBuiltin_BitVec_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2872____closed__9() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3129____closed__8; +x_1 = l___regBuiltin_BitVec_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2872____closed__8; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3129____closed__10() { +static lean_object* _init_l___regBuiltin_BitVec_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2872____closed__10() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3129____closed__9; +x_1 = l___regBuiltin_BitVec_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2872____closed__9; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3129____closed__11() { +static lean_object* _init_l___regBuiltin_BitVec_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2872____closed__11() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Std_BitVec_reduceLT), 9, 0); +x_1 = lean_alloc_closure((void*)(l_BitVec_reduceLT), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3129_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2872_(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_Std_BitVec_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3129____closed__2; -x_3 = l___regBuiltin_Std_BitVec_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3129____closed__10; -x_4 = l___regBuiltin_Std_BitVec_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3129____closed__11; +x_2 = l___regBuiltin_BitVec_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2872____closed__2; +x_3 = l___regBuiltin_BitVec_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2872____closed__10; +x_4 = l___regBuiltin_BitVec_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2872____closed__11; x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); return x_5; } } -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3131_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2874_(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_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1373____closed__1; -x_3 = l___regBuiltin_Std_BitVec_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3129____closed__2; +x_2 = l___regBuiltin_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1150____closed__1; +x_3 = l___regBuiltin_BitVec_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2872____closed__2; x_4 = 1; -x_5 = l___regBuiltin_Std_BitVec_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3129____closed__11; +x_5 = l___regBuiltin_BitVec_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2872____closed__11; 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_Std_BitVec_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3133_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2876_(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_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1375____closed__1; -x_3 = l___regBuiltin_Std_BitVec_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3129____closed__2; +x_2 = l___regBuiltin_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1152____closed__1; +x_3 = l___regBuiltin_BitVec_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2872____closed__2; x_4 = 1; -x_5 = l___regBuiltin_Std_BitVec_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3129____closed__11; +x_5 = l___regBuiltin_BitVec_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2872____closed__11; 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_Std_BitVec_reduceLE___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) { +LEAN_EXPORT lean_object* l_BitVec_reduceLE___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; @@ -22117,7 +21001,8 @@ lean_inc(x_9); lean_inc(x_8); lean_inc(x_7); lean_inc(x_6); -x_13 = l_Std_BitVec_fromExpr_x3f(x_12, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_13 = l_BitVec_fromExpr_x3f(x_12, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_12); if (lean_obj_tag(x_13) == 0) { lean_object* x_14; @@ -22137,7 +21022,7 @@ if (x_15 == 0) lean_object* x_16; lean_object* x_17; x_16 = lean_ctor_get(x_13, 0); lean_dec(x_16); -x_17 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_17 = l_BitVec_reduceUnary___lambda__1___closed__1; lean_ctor_set(x_13, 0, x_17); return x_13; } @@ -22147,7 +21032,7 @@ lean_object* x_18; lean_object* x_19; lean_object* x_20; x_18 = lean_ctor_get(x_13, 1); lean_inc(x_18); lean_dec(x_13); -x_19 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_19 = l_BitVec_reduceUnary___lambda__1___closed__1; x_20 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_20, 0, x_19); lean_ctor_set(x_20, 1, x_18); @@ -22168,7 +21053,8 @@ lean_inc(x_9); lean_inc(x_8); lean_inc(x_7); lean_inc(x_6); -x_24 = l_Std_BitVec_fromExpr_x3f(x_23, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_21); +x_24 = l_BitVec_fromExpr_x3f(x_23, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_21); +lean_dec(x_23); if (lean_obj_tag(x_24) == 0) { lean_object* x_25; @@ -22189,7 +21075,7 @@ if (x_26 == 0) lean_object* x_27; lean_object* x_28; x_27 = lean_ctor_get(x_24, 0); lean_dec(x_27); -x_28 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_28 = l_BitVec_reduceUnary___lambda__1___closed__1; lean_ctor_set(x_24, 0, x_28); return x_24; } @@ -22199,7 +21085,7 @@ lean_object* x_29; lean_object* x_30; lean_object* x_31; x_29 = lean_ctor_get(x_24, 1); lean_inc(x_29); lean_dec(x_24); -x_30 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_30 = l_BitVec_reduceUnary___lambda__1___closed__1; x_31 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_31, 0, x_30); lean_ctor_set(x_31, 1, x_29); @@ -22236,7 +21122,7 @@ lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_1); -x_39 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_39 = l_BitVec_reduceUnary___lambda__1___closed__1; lean_ctor_set(x_24, 0, x_39); return x_24; } @@ -22283,7 +21169,7 @@ lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_1); -x_49 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_49 = l_BitVec_reduceUnary___lambda__1___closed__1; x_50 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_50, 0, x_49); lean_ctor_set(x_50, 1, x_44); @@ -22366,7 +21252,7 @@ return x_62; } } } -static lean_object* _init_l_Std_BitVec_reduceLE___closed__1() { +static lean_object* _init_l_BitVec_reduceLE___closed__1() { _start: { lean_object* x_1; @@ -22374,7 +21260,7 @@ x_1 = lean_mk_string_from_bytes("LE", 2); return x_1; } } -static lean_object* _init_l_Std_BitVec_reduceLE___closed__2() { +static lean_object* _init_l_BitVec_reduceLE___closed__2() { _start: { lean_object* x_1; @@ -22382,21 +21268,21 @@ x_1 = lean_mk_string_from_bytes("le", 2); return x_1; } } -static lean_object* _init_l_Std_BitVec_reduceLE___closed__3() { +static lean_object* _init_l_BitVec_reduceLE___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Std_BitVec_reduceLE___closed__1; -x_2 = l_Std_BitVec_reduceLE___closed__2; +x_1 = l_BitVec_reduceLE___closed__1; +x_2 = l_BitVec_reduceLE___closed__2; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } -LEAN_EXPORT lean_object* l_Std_BitVec_reduceLE(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_EXPORT lean_object* l_BitVec_reduceLE(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; uint8_t x_12; -x_10 = l_Std_BitVec_reduceLE___closed__3; +x_10 = l_BitVec_reduceLE___closed__3; x_11 = lean_unsigned_to_nat(4u); x_12 = l_Lean_Expr_isAppOfArity(x_1, x_10, x_11); if (x_12 == 0) @@ -22410,7 +21296,7 @@ lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_13 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_13 = l_BitVec_reduceUnary___lambda__1___closed__1; x_14 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_14, 0, x_13); lean_ctor_set(x_14, 1, x_9); @@ -22420,7 +21306,7 @@ else { lean_object* x_15; lean_object* x_16; x_15 = lean_box(0); -x_16 = l_Std_BitVec_reduceLE___lambda__1(x_1, x_15, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_16 = l_BitVec_reduceLE___lambda__1(x_1, x_15, 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); @@ -22428,11 +21314,11 @@ return x_16; } } } -LEAN_EXPORT lean_object* l_Std_BitVec_reduceLE___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) { +LEAN_EXPORT lean_object* l_BitVec_reduceLE___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_Std_BitVec_reduceLE___lambda__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_11 = l_BitVec_reduceLE___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); @@ -22440,7 +21326,7 @@ lean_dec(x_2); return x_11; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3172____closed__1() { +static lean_object* _init_l___regBuiltin_BitVec_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2915____closed__1() { _start: { lean_object* x_1; @@ -22448,22 +21334,21 @@ x_1 = lean_mk_string_from_bytes("reduceLE", 8); return x_1; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3172____closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f___closed__4; -x_2 = l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f___closed__5; -x_3 = l___regBuiltin_Std_BitVec_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3172____closed__1; -x_4 = l_Lean_Name_mkStr3(x_1, x_2, x_3); -return x_4; -} -} -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3172____closed__3() { +static lean_object* _init_l___regBuiltin_BitVec_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2915____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Std_BitVec_reduceLE___closed__3; +x_1 = l_BitVec_reduceUnary___lambda__1___closed__2; +x_2 = l___regBuiltin_BitVec_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2915____closed__1; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___regBuiltin_BitVec_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2915____closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_BitVec_reduceLE___closed__3; x_2 = lean_unsigned_to_nat(4u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -22471,110 +21356,110 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3172____closed__4() { +static lean_object* _init_l___regBuiltin_BitVec_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2915____closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3129____closed__4; -x_2 = l___regBuiltin_Std_BitVec_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3172____closed__3; +x_1 = l___regBuiltin_BitVec_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2872____closed__4; +x_2 = l___regBuiltin_BitVec_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2915____closed__3; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3172____closed__5() { +static lean_object* _init_l___regBuiltin_BitVec_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2915____closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3172____closed__4; -x_2 = l___regBuiltin_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1371____closed__4; +x_1 = l___regBuiltin_BitVec_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2915____closed__4; +x_2 = l___regBuiltin_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1148____closed__5; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3172____closed__6() { +static lean_object* _init_l___regBuiltin_BitVec_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2915____closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3172____closed__5; +x_1 = l___regBuiltin_BitVec_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2915____closed__5; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3172____closed__7() { +static lean_object* _init_l___regBuiltin_BitVec_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2915____closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3172____closed__6; +x_1 = l___regBuiltin_BitVec_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2915____closed__6; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3172____closed__8() { +static lean_object* _init_l___regBuiltin_BitVec_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2915____closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3172____closed__7; +x_1 = l___regBuiltin_BitVec_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2915____closed__7; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3172____closed__9() { +static lean_object* _init_l___regBuiltin_BitVec_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2915____closed__9() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3172____closed__8; +x_1 = l___regBuiltin_BitVec_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2915____closed__8; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3172____closed__10() { +static lean_object* _init_l___regBuiltin_BitVec_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2915____closed__10() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Std_BitVec_reduceLE), 9, 0); +x_1 = lean_alloc_closure((void*)(l_BitVec_reduceLE), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3172_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2915_(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_Std_BitVec_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3172____closed__2; -x_3 = l___regBuiltin_Std_BitVec_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3172____closed__9; -x_4 = l___regBuiltin_Std_BitVec_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3172____closed__10; +x_2 = l___regBuiltin_BitVec_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2915____closed__2; +x_3 = l___regBuiltin_BitVec_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2915____closed__9; +x_4 = l___regBuiltin_BitVec_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2915____closed__10; x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); return x_5; } } -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3174_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2917_(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_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1373____closed__1; -x_3 = l___regBuiltin_Std_BitVec_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3172____closed__2; +x_2 = l___regBuiltin_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1150____closed__1; +x_3 = l___regBuiltin_BitVec_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2915____closed__2; x_4 = 1; -x_5 = l___regBuiltin_Std_BitVec_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3172____closed__10; +x_5 = l___regBuiltin_BitVec_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2915____closed__10; 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_Std_BitVec_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3176_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2919_(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_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1375____closed__1; -x_3 = l___regBuiltin_Std_BitVec_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3172____closed__2; +x_2 = l___regBuiltin_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1152____closed__1; +x_3 = l___regBuiltin_BitVec_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2915____closed__2; x_4 = 1; -x_5 = l___regBuiltin_Std_BitVec_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3172____closed__10; +x_5 = l___regBuiltin_BitVec_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2915____closed__10; 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_Std_BitVec_reduceGT___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) { +LEAN_EXPORT lean_object* l_BitVec_reduceGT___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; @@ -22586,7 +21471,8 @@ lean_inc(x_9); lean_inc(x_8); lean_inc(x_7); lean_inc(x_6); -x_13 = l_Std_BitVec_fromExpr_x3f(x_12, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_13 = l_BitVec_fromExpr_x3f(x_12, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_12); if (lean_obj_tag(x_13) == 0) { lean_object* x_14; @@ -22606,7 +21492,7 @@ if (x_15 == 0) lean_object* x_16; lean_object* x_17; x_16 = lean_ctor_get(x_13, 0); lean_dec(x_16); -x_17 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_17 = l_BitVec_reduceUnary___lambda__1___closed__1; lean_ctor_set(x_13, 0, x_17); return x_13; } @@ -22616,7 +21502,7 @@ lean_object* x_18; lean_object* x_19; lean_object* x_20; x_18 = lean_ctor_get(x_13, 1); lean_inc(x_18); lean_dec(x_13); -x_19 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_19 = l_BitVec_reduceUnary___lambda__1___closed__1; x_20 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_20, 0, x_19); lean_ctor_set(x_20, 1, x_18); @@ -22637,7 +21523,8 @@ lean_inc(x_9); lean_inc(x_8); lean_inc(x_7); lean_inc(x_6); -x_24 = l_Std_BitVec_fromExpr_x3f(x_23, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_21); +x_24 = l_BitVec_fromExpr_x3f(x_23, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_21); +lean_dec(x_23); if (lean_obj_tag(x_24) == 0) { lean_object* x_25; @@ -22658,7 +21545,7 @@ if (x_26 == 0) lean_object* x_27; lean_object* x_28; x_27 = lean_ctor_get(x_24, 0); lean_dec(x_27); -x_28 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_28 = l_BitVec_reduceUnary___lambda__1___closed__1; lean_ctor_set(x_24, 0, x_28); return x_24; } @@ -22668,7 +21555,7 @@ lean_object* x_29; lean_object* x_30; lean_object* x_31; x_29 = lean_ctor_get(x_24, 1); lean_inc(x_29); lean_dec(x_24); -x_30 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_30 = l_BitVec_reduceUnary___lambda__1___closed__1; x_31 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_31, 0, x_30); lean_ctor_set(x_31, 1, x_29); @@ -22705,7 +21592,7 @@ lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_1); -x_39 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_39 = l_BitVec_reduceUnary___lambda__1___closed__1; lean_ctor_set(x_24, 0, x_39); return x_24; } @@ -22752,7 +21639,7 @@ lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_1); -x_49 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_49 = l_BitVec_reduceUnary___lambda__1___closed__1; x_50 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_50, 0, x_49); lean_ctor_set(x_50, 1, x_44); @@ -22835,7 +21722,7 @@ return x_62; } } } -static lean_object* _init_l_Std_BitVec_reduceGT___closed__1() { +static lean_object* _init_l_BitVec_reduceGT___closed__1() { _start: { lean_object* x_1; @@ -22843,7 +21730,7 @@ x_1 = lean_mk_string_from_bytes("GT", 2); return x_1; } } -static lean_object* _init_l_Std_BitVec_reduceGT___closed__2() { +static lean_object* _init_l_BitVec_reduceGT___closed__2() { _start: { lean_object* x_1; @@ -22851,21 +21738,21 @@ x_1 = lean_mk_string_from_bytes("gt", 2); return x_1; } } -static lean_object* _init_l_Std_BitVec_reduceGT___closed__3() { +static lean_object* _init_l_BitVec_reduceGT___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Std_BitVec_reduceGT___closed__1; -x_2 = l_Std_BitVec_reduceGT___closed__2; +x_1 = l_BitVec_reduceGT___closed__1; +x_2 = l_BitVec_reduceGT___closed__2; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } -LEAN_EXPORT lean_object* l_Std_BitVec_reduceGT(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_EXPORT lean_object* l_BitVec_reduceGT(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; uint8_t x_12; -x_10 = l_Std_BitVec_reduceGT___closed__3; +x_10 = l_BitVec_reduceGT___closed__3; x_11 = lean_unsigned_to_nat(4u); x_12 = l_Lean_Expr_isAppOfArity(x_1, x_10, x_11); if (x_12 == 0) @@ -22879,7 +21766,7 @@ lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_13 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_13 = l_BitVec_reduceUnary___lambda__1___closed__1; x_14 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_14, 0, x_13); lean_ctor_set(x_14, 1, x_9); @@ -22889,7 +21776,7 @@ else { lean_object* x_15; lean_object* x_16; x_15 = lean_box(0); -x_16 = l_Std_BitVec_reduceGT___lambda__1(x_1, x_15, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_16 = l_BitVec_reduceGT___lambda__1(x_1, x_15, 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); @@ -22897,11 +21784,11 @@ return x_16; } } } -LEAN_EXPORT lean_object* l_Std_BitVec_reduceGT___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) { +LEAN_EXPORT lean_object* l_BitVec_reduceGT___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_Std_BitVec_reduceGT___lambda__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_11 = l_BitVec_reduceGT___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); @@ -22909,7 +21796,7 @@ lean_dec(x_2); return x_11; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3215____closed__1() { +static lean_object* _init_l___regBuiltin_BitVec_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2958____closed__1() { _start: { lean_object* x_1; @@ -22917,61 +21804,60 @@ x_1 = lean_mk_string_from_bytes("reduceGT", 8); return x_1; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3215____closed__2() { +static lean_object* _init_l___regBuiltin_BitVec_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2958____closed__2() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f___closed__4; -x_2 = l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f___closed__5; -x_3 = l___regBuiltin_Std_BitVec_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3215____closed__1; -x_4 = l_Lean_Name_mkStr3(x_1, x_2, x_3); -return x_4; +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_BitVec_reduceUnary___lambda__1___closed__2; +x_2 = l___regBuiltin_BitVec_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2958____closed__1; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3215____closed__3() { +static lean_object* _init_l___regBuiltin_BitVec_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2958____closed__3() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Std_BitVec_reduceGT), 9, 0); +x_1 = lean_alloc_closure((void*)(l_BitVec_reduceGT), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3215_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2958_(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_Std_BitVec_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3215____closed__2; -x_3 = l___regBuiltin_Std_BitVec_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3129____closed__10; -x_4 = l___regBuiltin_Std_BitVec_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3215____closed__3; +x_2 = l___regBuiltin_BitVec_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2958____closed__2; +x_3 = l___regBuiltin_BitVec_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2872____closed__10; +x_4 = l___regBuiltin_BitVec_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2958____closed__3; x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); return x_5; } } -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3217_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2960_(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_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1373____closed__1; -x_3 = l___regBuiltin_Std_BitVec_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3215____closed__2; +x_2 = l___regBuiltin_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1150____closed__1; +x_3 = l___regBuiltin_BitVec_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2958____closed__2; x_4 = 1; -x_5 = l___regBuiltin_Std_BitVec_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3215____closed__3; +x_5 = l___regBuiltin_BitVec_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2958____closed__3; 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_Std_BitVec_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3219_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2962_(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_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1375____closed__1; -x_3 = l___regBuiltin_Std_BitVec_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3215____closed__2; +x_2 = l___regBuiltin_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1152____closed__1; +x_3 = l___regBuiltin_BitVec_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2958____closed__2; x_4 = 1; -x_5 = l___regBuiltin_Std_BitVec_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3215____closed__3; +x_5 = l___regBuiltin_BitVec_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2958____closed__3; 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_Std_BitVec_reduceGE___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) { +LEAN_EXPORT lean_object* l_BitVec_reduceGE___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; @@ -22983,7 +21869,8 @@ lean_inc(x_9); lean_inc(x_8); lean_inc(x_7); lean_inc(x_6); -x_13 = l_Std_BitVec_fromExpr_x3f(x_12, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_13 = l_BitVec_fromExpr_x3f(x_12, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_12); if (lean_obj_tag(x_13) == 0) { lean_object* x_14; @@ -23003,7 +21890,7 @@ if (x_15 == 0) lean_object* x_16; lean_object* x_17; x_16 = lean_ctor_get(x_13, 0); lean_dec(x_16); -x_17 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_17 = l_BitVec_reduceUnary___lambda__1___closed__1; lean_ctor_set(x_13, 0, x_17); return x_13; } @@ -23013,7 +21900,7 @@ lean_object* x_18; lean_object* x_19; lean_object* x_20; x_18 = lean_ctor_get(x_13, 1); lean_inc(x_18); lean_dec(x_13); -x_19 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_19 = l_BitVec_reduceUnary___lambda__1___closed__1; x_20 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_20, 0, x_19); lean_ctor_set(x_20, 1, x_18); @@ -23034,7 +21921,8 @@ lean_inc(x_9); lean_inc(x_8); lean_inc(x_7); lean_inc(x_6); -x_24 = l_Std_BitVec_fromExpr_x3f(x_23, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_21); +x_24 = l_BitVec_fromExpr_x3f(x_23, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_21); +lean_dec(x_23); if (lean_obj_tag(x_24) == 0) { lean_object* x_25; @@ -23055,7 +21943,7 @@ if (x_26 == 0) lean_object* x_27; lean_object* x_28; x_27 = lean_ctor_get(x_24, 0); lean_dec(x_27); -x_28 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_28 = l_BitVec_reduceUnary___lambda__1___closed__1; lean_ctor_set(x_24, 0, x_28); return x_24; } @@ -23065,7 +21953,7 @@ lean_object* x_29; lean_object* x_30; lean_object* x_31; x_29 = lean_ctor_get(x_24, 1); lean_inc(x_29); lean_dec(x_24); -x_30 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_30 = l_BitVec_reduceUnary___lambda__1___closed__1; x_31 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_31, 0, x_30); lean_ctor_set(x_31, 1, x_29); @@ -23102,7 +21990,7 @@ lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_1); -x_39 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_39 = l_BitVec_reduceUnary___lambda__1___closed__1; lean_ctor_set(x_24, 0, x_39); return x_24; } @@ -23149,7 +22037,7 @@ lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_1); -x_49 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_49 = l_BitVec_reduceUnary___lambda__1___closed__1; x_50 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_50, 0, x_49); lean_ctor_set(x_50, 1, x_44); @@ -23232,7 +22120,7 @@ return x_62; } } } -static lean_object* _init_l_Std_BitVec_reduceGE___closed__1() { +static lean_object* _init_l_BitVec_reduceGE___closed__1() { _start: { lean_object* x_1; @@ -23240,7 +22128,7 @@ x_1 = lean_mk_string_from_bytes("GE", 2); return x_1; } } -static lean_object* _init_l_Std_BitVec_reduceGE___closed__2() { +static lean_object* _init_l_BitVec_reduceGE___closed__2() { _start: { lean_object* x_1; @@ -23248,21 +22136,21 @@ x_1 = lean_mk_string_from_bytes("ge", 2); return x_1; } } -static lean_object* _init_l_Std_BitVec_reduceGE___closed__3() { +static lean_object* _init_l_BitVec_reduceGE___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Std_BitVec_reduceGE___closed__1; -x_2 = l_Std_BitVec_reduceGE___closed__2; +x_1 = l_BitVec_reduceGE___closed__1; +x_2 = l_BitVec_reduceGE___closed__2; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } -LEAN_EXPORT lean_object* l_Std_BitVec_reduceGE(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_EXPORT lean_object* l_BitVec_reduceGE(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; uint8_t x_12; -x_10 = l_Std_BitVec_reduceGE___closed__3; +x_10 = l_BitVec_reduceGE___closed__3; x_11 = lean_unsigned_to_nat(4u); x_12 = l_Lean_Expr_isAppOfArity(x_1, x_10, x_11); if (x_12 == 0) @@ -23276,7 +22164,7 @@ lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_13 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_13 = l_BitVec_reduceUnary___lambda__1___closed__1; x_14 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_14, 0, x_13); lean_ctor_set(x_14, 1, x_9); @@ -23286,7 +22174,7 @@ else { lean_object* x_15; lean_object* x_16; x_15 = lean_box(0); -x_16 = l_Std_BitVec_reduceGE___lambda__1(x_1, x_15, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_16 = l_BitVec_reduceGE___lambda__1(x_1, x_15, 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); @@ -23294,11 +22182,11 @@ return x_16; } } } -LEAN_EXPORT lean_object* l_Std_BitVec_reduceGE___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) { +LEAN_EXPORT lean_object* l_BitVec_reduceGE___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_Std_BitVec_reduceGE___lambda__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_11 = l_BitVec_reduceGE___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); @@ -23306,7 +22194,7 @@ lean_dec(x_2); return x_11; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3258____closed__1() { +static lean_object* _init_l___regBuiltin_BitVec_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3001____closed__1() { _start: { lean_object* x_1; @@ -23314,61 +22202,60 @@ x_1 = lean_mk_string_from_bytes("reduceGE", 8); return x_1; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3258____closed__2() { +static lean_object* _init_l___regBuiltin_BitVec_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3001____closed__2() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f___closed__4; -x_2 = l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f___closed__5; -x_3 = l___regBuiltin_Std_BitVec_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3258____closed__1; -x_4 = l_Lean_Name_mkStr3(x_1, x_2, x_3); -return x_4; +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_BitVec_reduceUnary___lambda__1___closed__2; +x_2 = l___regBuiltin_BitVec_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3001____closed__1; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3258____closed__3() { +static lean_object* _init_l___regBuiltin_BitVec_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3001____closed__3() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Std_BitVec_reduceGE), 9, 0); +x_1 = lean_alloc_closure((void*)(l_BitVec_reduceGE), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3258_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3001_(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_Std_BitVec_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3258____closed__2; -x_3 = l___regBuiltin_Std_BitVec_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3172____closed__9; -x_4 = l___regBuiltin_Std_BitVec_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3258____closed__3; +x_2 = l___regBuiltin_BitVec_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3001____closed__2; +x_3 = l___regBuiltin_BitVec_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2915____closed__9; +x_4 = l___regBuiltin_BitVec_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3001____closed__3; x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); return x_5; } } -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3260_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3003_(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_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1373____closed__1; -x_3 = l___regBuiltin_Std_BitVec_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3258____closed__2; +x_2 = l___regBuiltin_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1150____closed__1; +x_3 = l___regBuiltin_BitVec_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3001____closed__2; x_4 = 1; -x_5 = l___regBuiltin_Std_BitVec_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3258____closed__3; +x_5 = l___regBuiltin_BitVec_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3001____closed__3; 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_Std_BitVec_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3262_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3005_(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_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1375____closed__1; -x_3 = l___regBuiltin_Std_BitVec_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3258____closed__2; +x_2 = l___regBuiltin_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1152____closed__1; +x_3 = l___regBuiltin_BitVec_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3001____closed__2; x_4 = 1; -x_5 = l___regBuiltin_Std_BitVec_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3258____closed__3; +x_5 = l___regBuiltin_BitVec_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3001____closed__3; 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_Std_BitVec_reduceULT___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) { +LEAN_EXPORT lean_object* l_BitVec_reduceULT___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; @@ -23380,7 +22267,8 @@ lean_inc(x_9); lean_inc(x_8); lean_inc(x_7); lean_inc(x_6); -x_13 = l_Std_BitVec_fromExpr_x3f(x_12, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_13 = l_BitVec_fromExpr_x3f(x_12, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_12); if (lean_obj_tag(x_13) == 0) { lean_object* x_14; @@ -23400,7 +22288,7 @@ if (x_15 == 0) lean_object* x_16; lean_object* x_17; x_16 = lean_ctor_get(x_13, 0); lean_dec(x_16); -x_17 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_17 = l_BitVec_reduceUnary___lambda__1___closed__1; lean_ctor_set(x_13, 0, x_17); return x_13; } @@ -23410,7 +22298,7 @@ lean_object* x_18; lean_object* x_19; lean_object* x_20; x_18 = lean_ctor_get(x_13, 1); lean_inc(x_18); lean_dec(x_13); -x_19 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_19 = l_BitVec_reduceUnary___lambda__1___closed__1; x_20 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_20, 0, x_19); lean_ctor_set(x_20, 1, x_18); @@ -23428,7 +22316,8 @@ lean_inc(x_22); lean_dec(x_14); x_23 = l_Lean_Expr_appArg_x21(x_1); lean_dec(x_1); -x_24 = l_Std_BitVec_fromExpr_x3f(x_23, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_21); +x_24 = l_BitVec_fromExpr_x3f(x_23, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_21); +lean_dec(x_23); if (lean_obj_tag(x_24) == 0) { lean_object* x_25; @@ -23444,7 +22333,7 @@ if (x_26 == 0) lean_object* x_27; lean_object* x_28; x_27 = lean_ctor_get(x_24, 0); lean_dec(x_27); -x_28 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_28 = l_BitVec_reduceUnary___lambda__1___closed__1; lean_ctor_set(x_24, 0, x_28); return x_24; } @@ -23454,7 +22343,7 @@ lean_object* x_29; lean_object* x_30; lean_object* x_31; x_29 = lean_ctor_get(x_24, 1); lean_inc(x_29); lean_dec(x_24); -x_30 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_30 = l_BitVec_reduceUnary___lambda__1___closed__1; x_31 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_31, 0, x_30); lean_ctor_set(x_31, 1, x_29); @@ -23485,7 +22374,7 @@ if (x_37 == 0) lean_object* x_38; lean_dec(x_34); lean_dec(x_22); -x_38 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_38 = l_BitVec_reduceUnary___lambda__1___closed__1; lean_ctor_set(x_24, 0, x_38); return x_24; } @@ -23504,14 +22393,14 @@ lean_dec(x_39); if (x_41 == 0) { lean_object* x_42; -x_42 = l_Std_BitVec_reduceGetBit___lambda__1___closed__6; +x_42 = l_BitVec_reduceGetBit___lambda__1___closed__6; lean_ctor_set(x_24, 0, x_42); return x_24; } else { lean_object* x_43; -x_43 = l_Std_BitVec_reduceGetBit___lambda__1___closed__11; +x_43 = l_BitVec_reduceGetBit___lambda__1___closed__11; lean_ctor_set(x_24, 0, x_43); return x_24; } @@ -23538,7 +22427,7 @@ if (x_48 == 0) lean_object* x_49; lean_object* x_50; lean_dec(x_45); lean_dec(x_22); -x_49 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_49 = l_BitVec_reduceUnary___lambda__1___closed__1; x_50 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_50, 0, x_49); lean_ctor_set(x_50, 1, x_44); @@ -23559,7 +22448,7 @@ lean_dec(x_51); if (x_53 == 0) { lean_object* x_54; lean_object* x_55; -x_54 = l_Std_BitVec_reduceGetBit___lambda__1___closed__6; +x_54 = l_BitVec_reduceGetBit___lambda__1___closed__6; x_55 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_55, 0, x_54); lean_ctor_set(x_55, 1, x_44); @@ -23568,7 +22457,7 @@ return x_55; else { lean_object* x_56; lean_object* x_57; -x_56 = l_Std_BitVec_reduceGetBit___lambda__1___closed__11; +x_56 = l_BitVec_reduceGetBit___lambda__1___closed__11; x_57 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_57, 0, x_56); lean_ctor_set(x_57, 1, x_44); @@ -23632,7 +22521,7 @@ return x_65; } } } -static lean_object* _init_l_Std_BitVec_reduceULT___closed__1() { +static lean_object* _init_l_BitVec_reduceULT___closed__1() { _start: { lean_object* x_1; @@ -23640,22 +22529,21 @@ x_1 = lean_mk_string_from_bytes("ult", 3); return x_1; } } -static lean_object* _init_l_Std_BitVec_reduceULT___closed__2() { +static lean_object* _init_l_BitVec_reduceULT___closed__2() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f___closed__4; -x_2 = l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f___closed__5; -x_3 = l_Std_BitVec_reduceULT___closed__1; -x_4 = l_Lean_Name_mkStr3(x_1, x_2, x_3); -return x_4; +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_BitVec_reduceUnary___lambda__1___closed__2; +x_2 = l_BitVec_reduceULT___closed__1; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; } } -LEAN_EXPORT lean_object* l_Std_BitVec_reduceULT(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_EXPORT lean_object* l_BitVec_reduceULT(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; uint8_t x_12; -x_10 = l_Std_BitVec_reduceULT___closed__2; +x_10 = l_BitVec_reduceULT___closed__2; x_11 = lean_unsigned_to_nat(3u); x_12 = l_Lean_Expr_isAppOfArity(x_1, x_10, x_11); if (x_12 == 0) @@ -23669,7 +22557,7 @@ lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_13 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_13 = l_BitVec_reduceUnary___lambda__1___closed__1; x_14 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_14, 0, x_13); lean_ctor_set(x_14, 1, x_9); @@ -23679,7 +22567,7 @@ else { lean_object* x_15; lean_object* x_16; x_15 = lean_box(0); -x_16 = l_Std_BitVec_reduceULT___lambda__1(x_1, x_15, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_16 = l_BitVec_reduceULT___lambda__1(x_1, x_15, 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); @@ -23687,11 +22575,11 @@ return x_16; } } } -LEAN_EXPORT lean_object* l_Std_BitVec_reduceULT___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) { +LEAN_EXPORT lean_object* l_BitVec_reduceULT___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_Std_BitVec_reduceULT___lambda__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_11 = l_BitVec_reduceULT___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); @@ -23699,7 +22587,7 @@ lean_dec(x_2); return x_11; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceULT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3281____closed__1() { +static lean_object* _init_l___regBuiltin_BitVec_reduceULT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3024____closed__1() { _start: { lean_object* x_1; @@ -23707,22 +22595,21 @@ x_1 = lean_mk_string_from_bytes("reduceULT", 9); return x_1; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceULT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3281____closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f___closed__4; -x_2 = l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f___closed__5; -x_3 = l___regBuiltin_Std_BitVec_reduceULT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3281____closed__1; -x_4 = l_Lean_Name_mkStr3(x_1, x_2, x_3); -return x_4; -} -} -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceULT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3281____closed__3() { +static lean_object* _init_l___regBuiltin_BitVec_reduceULT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3024____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Std_BitVec_reduceULT___closed__2; +x_1 = l_BitVec_reduceUnary___lambda__1___closed__2; +x_2 = l___regBuiltin_BitVec_reduceULT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3024____closed__1; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___regBuiltin_BitVec_reduceULT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3024____closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_BitVec_reduceULT___closed__2; x_2 = lean_unsigned_to_nat(3u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -23730,90 +22617,90 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceULT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3281____closed__4() { +static lean_object* _init_l___regBuiltin_BitVec_reduceULT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3024____closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceUMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1791____closed__4; -x_2 = l___regBuiltin_Std_BitVec_reduceULT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3281____closed__3; +x_1 = l___regBuiltin_BitVec_reduceUMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1568____closed__4; +x_2 = l___regBuiltin_BitVec_reduceULT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3024____closed__3; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceULT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3281____closed__5() { +static lean_object* _init_l___regBuiltin_BitVec_reduceULT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3024____closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceULT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3281____closed__4; +x_1 = l___regBuiltin_BitVec_reduceULT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3024____closed__4; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceULT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3281____closed__6() { +static lean_object* _init_l___regBuiltin_BitVec_reduceULT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3024____closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceULT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3281____closed__5; +x_1 = l___regBuiltin_BitVec_reduceULT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3024____closed__5; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceULT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3281____closed__7() { +static lean_object* _init_l___regBuiltin_BitVec_reduceULT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3024____closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceULT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3281____closed__6; +x_1 = l___regBuiltin_BitVec_reduceULT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3024____closed__6; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceULT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3281____closed__8() { +static lean_object* _init_l___regBuiltin_BitVec_reduceULT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3024____closed__8() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Std_BitVec_reduceULT), 9, 0); +x_1 = lean_alloc_closure((void*)(l_BitVec_reduceULT), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceULT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3281_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceULT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3024_(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_Std_BitVec_reduceULT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3281____closed__2; -x_3 = l___regBuiltin_Std_BitVec_reduceULT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3281____closed__7; -x_4 = l___regBuiltin_Std_BitVec_reduceULT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3281____closed__8; +x_2 = l___regBuiltin_BitVec_reduceULT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3024____closed__2; +x_3 = l___regBuiltin_BitVec_reduceULT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3024____closed__7; +x_4 = l___regBuiltin_BitVec_reduceULT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3024____closed__8; x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); return x_5; } } -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceULT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3283_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceULT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3026_(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_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1373____closed__1; -x_3 = l___regBuiltin_Std_BitVec_reduceULT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3281____closed__2; +x_2 = l___regBuiltin_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1150____closed__1; +x_3 = l___regBuiltin_BitVec_reduceULT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3024____closed__2; x_4 = 1; -x_5 = l___regBuiltin_Std_BitVec_reduceULT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3281____closed__8; +x_5 = l___regBuiltin_BitVec_reduceULT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3024____closed__8; 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_Std_BitVec_reduceULT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3285_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceULT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3028_(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_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1375____closed__1; -x_3 = l___regBuiltin_Std_BitVec_reduceULT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3281____closed__2; +x_2 = l___regBuiltin_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1152____closed__1; +x_3 = l___regBuiltin_BitVec_reduceULT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3024____closed__2; x_4 = 1; -x_5 = l___regBuiltin_Std_BitVec_reduceULT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3281____closed__8; +x_5 = l___regBuiltin_BitVec_reduceULT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3024____closed__8; 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_Std_BitVec_reduceULE___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) { +LEAN_EXPORT lean_object* l_BitVec_reduceULE___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; @@ -23825,7 +22712,8 @@ lean_inc(x_9); lean_inc(x_8); lean_inc(x_7); lean_inc(x_6); -x_13 = l_Std_BitVec_fromExpr_x3f(x_12, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_13 = l_BitVec_fromExpr_x3f(x_12, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_12); if (lean_obj_tag(x_13) == 0) { lean_object* x_14; @@ -23845,7 +22733,7 @@ if (x_15 == 0) lean_object* x_16; lean_object* x_17; x_16 = lean_ctor_get(x_13, 0); lean_dec(x_16); -x_17 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_17 = l_BitVec_reduceUnary___lambda__1___closed__1; lean_ctor_set(x_13, 0, x_17); return x_13; } @@ -23855,7 +22743,7 @@ lean_object* x_18; lean_object* x_19; lean_object* x_20; x_18 = lean_ctor_get(x_13, 1); lean_inc(x_18); lean_dec(x_13); -x_19 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_19 = l_BitVec_reduceUnary___lambda__1___closed__1; x_20 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_20, 0, x_19); lean_ctor_set(x_20, 1, x_18); @@ -23873,7 +22761,8 @@ lean_inc(x_22); lean_dec(x_14); x_23 = l_Lean_Expr_appArg_x21(x_1); lean_dec(x_1); -x_24 = l_Std_BitVec_fromExpr_x3f(x_23, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_21); +x_24 = l_BitVec_fromExpr_x3f(x_23, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_21); +lean_dec(x_23); if (lean_obj_tag(x_24) == 0) { lean_object* x_25; @@ -23889,7 +22778,7 @@ if (x_26 == 0) lean_object* x_27; lean_object* x_28; x_27 = lean_ctor_get(x_24, 0); lean_dec(x_27); -x_28 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_28 = l_BitVec_reduceUnary___lambda__1___closed__1; lean_ctor_set(x_24, 0, x_28); return x_24; } @@ -23899,7 +22788,7 @@ lean_object* x_29; lean_object* x_30; lean_object* x_31; x_29 = lean_ctor_get(x_24, 1); lean_inc(x_29); lean_dec(x_24); -x_30 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_30 = l_BitVec_reduceUnary___lambda__1___closed__1; x_31 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_31, 0, x_30); lean_ctor_set(x_31, 1, x_29); @@ -23930,7 +22819,7 @@ if (x_37 == 0) lean_object* x_38; lean_dec(x_34); lean_dec(x_22); -x_38 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_38 = l_BitVec_reduceUnary___lambda__1___closed__1; lean_ctor_set(x_24, 0, x_38); return x_24; } @@ -23949,14 +22838,14 @@ lean_dec(x_39); if (x_41 == 0) { lean_object* x_42; -x_42 = l_Std_BitVec_reduceGetBit___lambda__1___closed__6; +x_42 = l_BitVec_reduceGetBit___lambda__1___closed__6; lean_ctor_set(x_24, 0, x_42); return x_24; } else { lean_object* x_43; -x_43 = l_Std_BitVec_reduceGetBit___lambda__1___closed__11; +x_43 = l_BitVec_reduceGetBit___lambda__1___closed__11; lean_ctor_set(x_24, 0, x_43); return x_24; } @@ -23983,7 +22872,7 @@ if (x_48 == 0) lean_object* x_49; lean_object* x_50; lean_dec(x_45); lean_dec(x_22); -x_49 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_49 = l_BitVec_reduceUnary___lambda__1___closed__1; x_50 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_50, 0, x_49); lean_ctor_set(x_50, 1, x_44); @@ -24004,7 +22893,7 @@ lean_dec(x_51); if (x_53 == 0) { lean_object* x_54; lean_object* x_55; -x_54 = l_Std_BitVec_reduceGetBit___lambda__1___closed__6; +x_54 = l_BitVec_reduceGetBit___lambda__1___closed__6; x_55 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_55, 0, x_54); lean_ctor_set(x_55, 1, x_44); @@ -24013,7 +22902,7 @@ return x_55; else { lean_object* x_56; lean_object* x_57; -x_56 = l_Std_BitVec_reduceGetBit___lambda__1___closed__11; +x_56 = l_BitVec_reduceGetBit___lambda__1___closed__11; x_57 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_57, 0, x_56); lean_ctor_set(x_57, 1, x_44); @@ -24077,7 +22966,7 @@ return x_65; } } } -static lean_object* _init_l_Std_BitVec_reduceULE___closed__1() { +static lean_object* _init_l_BitVec_reduceULE___closed__1() { _start: { lean_object* x_1; @@ -24085,22 +22974,21 @@ x_1 = lean_mk_string_from_bytes("ule", 3); return x_1; } } -static lean_object* _init_l_Std_BitVec_reduceULE___closed__2() { +static lean_object* _init_l_BitVec_reduceULE___closed__2() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f___closed__4; -x_2 = l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f___closed__5; -x_3 = l_Std_BitVec_reduceULE___closed__1; -x_4 = l_Lean_Name_mkStr3(x_1, x_2, x_3); -return x_4; +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_BitVec_reduceUnary___lambda__1___closed__2; +x_2 = l_BitVec_reduceULE___closed__1; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; } } -LEAN_EXPORT lean_object* l_Std_BitVec_reduceULE(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_EXPORT lean_object* l_BitVec_reduceULE(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; uint8_t x_12; -x_10 = l_Std_BitVec_reduceULE___closed__2; +x_10 = l_BitVec_reduceULE___closed__2; x_11 = lean_unsigned_to_nat(3u); x_12 = l_Lean_Expr_isAppOfArity(x_1, x_10, x_11); if (x_12 == 0) @@ -24114,7 +23002,7 @@ lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_13 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_13 = l_BitVec_reduceUnary___lambda__1___closed__1; x_14 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_14, 0, x_13); lean_ctor_set(x_14, 1, x_9); @@ -24124,7 +23012,7 @@ else { lean_object* x_15; lean_object* x_16; x_15 = lean_box(0); -x_16 = l_Std_BitVec_reduceULE___lambda__1(x_1, x_15, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_16 = l_BitVec_reduceULE___lambda__1(x_1, x_15, 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); @@ -24132,11 +23020,11 @@ return x_16; } } } -LEAN_EXPORT lean_object* l_Std_BitVec_reduceULE___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) { +LEAN_EXPORT lean_object* l_BitVec_reduceULE___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_Std_BitVec_reduceULE___lambda__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_11 = l_BitVec_reduceULE___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); @@ -24144,7 +23032,7 @@ lean_dec(x_2); return x_11; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceULE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3304____closed__1() { +static lean_object* _init_l___regBuiltin_BitVec_reduceULE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3047____closed__1() { _start: { lean_object* x_1; @@ -24152,22 +23040,21 @@ x_1 = lean_mk_string_from_bytes("reduceULE", 9); return x_1; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceULE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3304____closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f___closed__4; -x_2 = l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f___closed__5; -x_3 = l___regBuiltin_Std_BitVec_reduceULE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3304____closed__1; -x_4 = l_Lean_Name_mkStr3(x_1, x_2, x_3); -return x_4; -} -} -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceULE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3304____closed__3() { +static lean_object* _init_l___regBuiltin_BitVec_reduceULE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3047____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Std_BitVec_reduceULE___closed__2; +x_1 = l_BitVec_reduceUnary___lambda__1___closed__2; +x_2 = l___regBuiltin_BitVec_reduceULE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3047____closed__1; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___regBuiltin_BitVec_reduceULE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3047____closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_BitVec_reduceULE___closed__2; x_2 = lean_unsigned_to_nat(3u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -24175,90 +23062,90 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceULE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3304____closed__4() { +static lean_object* _init_l___regBuiltin_BitVec_reduceULE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3047____closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceUMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1791____closed__4; -x_2 = l___regBuiltin_Std_BitVec_reduceULE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3304____closed__3; +x_1 = l___regBuiltin_BitVec_reduceUMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1568____closed__4; +x_2 = l___regBuiltin_BitVec_reduceULE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3047____closed__3; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceULE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3304____closed__5() { +static lean_object* _init_l___regBuiltin_BitVec_reduceULE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3047____closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceULE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3304____closed__4; +x_1 = l___regBuiltin_BitVec_reduceULE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3047____closed__4; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceULE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3304____closed__6() { +static lean_object* _init_l___regBuiltin_BitVec_reduceULE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3047____closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceULE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3304____closed__5; +x_1 = l___regBuiltin_BitVec_reduceULE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3047____closed__5; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceULE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3304____closed__7() { +static lean_object* _init_l___regBuiltin_BitVec_reduceULE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3047____closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceULE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3304____closed__6; +x_1 = l___regBuiltin_BitVec_reduceULE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3047____closed__6; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceULE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3304____closed__8() { +static lean_object* _init_l___regBuiltin_BitVec_reduceULE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3047____closed__8() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Std_BitVec_reduceULE), 9, 0); +x_1 = lean_alloc_closure((void*)(l_BitVec_reduceULE), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceULE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3304_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceULE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3047_(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_Std_BitVec_reduceULE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3304____closed__2; -x_3 = l___regBuiltin_Std_BitVec_reduceULE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3304____closed__7; -x_4 = l___regBuiltin_Std_BitVec_reduceULE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3304____closed__8; +x_2 = l___regBuiltin_BitVec_reduceULE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3047____closed__2; +x_3 = l___regBuiltin_BitVec_reduceULE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3047____closed__7; +x_4 = l___regBuiltin_BitVec_reduceULE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3047____closed__8; x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); return x_5; } } -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceULE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3306_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceULE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3049_(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_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1373____closed__1; -x_3 = l___regBuiltin_Std_BitVec_reduceULE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3304____closed__2; +x_2 = l___regBuiltin_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1150____closed__1; +x_3 = l___regBuiltin_BitVec_reduceULE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3047____closed__2; x_4 = 1; -x_5 = l___regBuiltin_Std_BitVec_reduceULE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3304____closed__8; +x_5 = l___regBuiltin_BitVec_reduceULE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3047____closed__8; 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_Std_BitVec_reduceULE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3308_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceULE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3051_(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_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1375____closed__1; -x_3 = l___regBuiltin_Std_BitVec_reduceULE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3304____closed__2; +x_2 = l___regBuiltin_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1152____closed__1; +x_3 = l___regBuiltin_BitVec_reduceULE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3047____closed__2; x_4 = 1; -x_5 = l___regBuiltin_Std_BitVec_reduceULE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3304____closed__8; +x_5 = l___regBuiltin_BitVec_reduceULE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3047____closed__8; 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_Std_BitVec_reduceSLT___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) { +LEAN_EXPORT lean_object* l_BitVec_reduceSLT___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; @@ -24270,7 +23157,8 @@ lean_inc(x_9); lean_inc(x_8); lean_inc(x_7); lean_inc(x_6); -x_13 = l_Std_BitVec_fromExpr_x3f(x_12, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_13 = l_BitVec_fromExpr_x3f(x_12, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_12); if (lean_obj_tag(x_13) == 0) { lean_object* x_14; @@ -24290,7 +23178,7 @@ if (x_15 == 0) lean_object* x_16; lean_object* x_17; x_16 = lean_ctor_get(x_13, 0); lean_dec(x_16); -x_17 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_17 = l_BitVec_reduceUnary___lambda__1___closed__1; lean_ctor_set(x_13, 0, x_17); return x_13; } @@ -24300,7 +23188,7 @@ lean_object* x_18; lean_object* x_19; lean_object* x_20; x_18 = lean_ctor_get(x_13, 1); lean_inc(x_18); lean_dec(x_13); -x_19 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_19 = l_BitVec_reduceUnary___lambda__1___closed__1; x_20 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_20, 0, x_19); lean_ctor_set(x_20, 1, x_18); @@ -24318,7 +23206,8 @@ lean_inc(x_22); lean_dec(x_14); x_23 = l_Lean_Expr_appArg_x21(x_1); lean_dec(x_1); -x_24 = l_Std_BitVec_fromExpr_x3f(x_23, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_21); +x_24 = l_BitVec_fromExpr_x3f(x_23, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_21); +lean_dec(x_23); if (lean_obj_tag(x_24) == 0) { lean_object* x_25; @@ -24334,7 +23223,7 @@ if (x_26 == 0) lean_object* x_27; lean_object* x_28; x_27 = lean_ctor_get(x_24, 0); lean_dec(x_27); -x_28 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_28 = l_BitVec_reduceUnary___lambda__1___closed__1; lean_ctor_set(x_24, 0, x_28); return x_24; } @@ -24344,7 +23233,7 @@ lean_object* x_29; lean_object* x_30; lean_object* x_31; x_29 = lean_ctor_get(x_24, 1); lean_inc(x_29); lean_dec(x_24); -x_30 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_30 = l_BitVec_reduceUnary___lambda__1___closed__1; x_31 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_31, 0, x_30); lean_ctor_set(x_31, 1, x_29); @@ -24375,7 +23264,7 @@ lean_object* x_38; lean_dec(x_35); lean_dec(x_34); lean_dec(x_22); -x_38 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_38 = l_BitVec_reduceUnary___lambda__1___closed__1; lean_ctor_set(x_24, 0, x_38); return x_24; } @@ -24388,19 +23277,19 @@ lean_dec(x_22); x_40 = lean_ctor_get(x_34, 1); lean_inc(x_40); lean_dec(x_34); -x_41 = l_Std_BitVec_slt(x_35, x_39, x_40); +x_41 = l_BitVec_slt(x_35, x_39, x_40); lean_dec(x_35); if (x_41 == 0) { lean_object* x_42; -x_42 = l_Std_BitVec_reduceGetBit___lambda__1___closed__6; +x_42 = l_BitVec_reduceGetBit___lambda__1___closed__6; lean_ctor_set(x_24, 0, x_42); return x_24; } else { lean_object* x_43; -x_43 = l_Std_BitVec_reduceGetBit___lambda__1___closed__11; +x_43 = l_BitVec_reduceGetBit___lambda__1___closed__11; lean_ctor_set(x_24, 0, x_43); return x_24; } @@ -24427,7 +23316,7 @@ lean_object* x_49; lean_object* x_50; lean_dec(x_46); lean_dec(x_45); lean_dec(x_22); -x_49 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_49 = l_BitVec_reduceUnary___lambda__1___closed__1; x_50 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_50, 0, x_49); lean_ctor_set(x_50, 1, x_44); @@ -24442,12 +23331,12 @@ lean_dec(x_22); x_52 = lean_ctor_get(x_45, 1); lean_inc(x_52); lean_dec(x_45); -x_53 = l_Std_BitVec_slt(x_46, x_51, x_52); +x_53 = l_BitVec_slt(x_46, x_51, x_52); lean_dec(x_46); if (x_53 == 0) { lean_object* x_54; lean_object* x_55; -x_54 = l_Std_BitVec_reduceGetBit___lambda__1___closed__6; +x_54 = l_BitVec_reduceGetBit___lambda__1___closed__6; x_55 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_55, 0, x_54); lean_ctor_set(x_55, 1, x_44); @@ -24456,7 +23345,7 @@ return x_55; else { lean_object* x_56; lean_object* x_57; -x_56 = l_Std_BitVec_reduceGetBit___lambda__1___closed__11; +x_56 = l_BitVec_reduceGetBit___lambda__1___closed__11; x_57 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_57, 0, x_56); lean_ctor_set(x_57, 1, x_44); @@ -24520,7 +23409,7 @@ return x_65; } } } -static lean_object* _init_l_Std_BitVec_reduceSLT___closed__1() { +static lean_object* _init_l_BitVec_reduceSLT___closed__1() { _start: { lean_object* x_1; @@ -24528,22 +23417,21 @@ x_1 = lean_mk_string_from_bytes("slt", 3); return x_1; } } -static lean_object* _init_l_Std_BitVec_reduceSLT___closed__2() { +static lean_object* _init_l_BitVec_reduceSLT___closed__2() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f___closed__4; -x_2 = l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f___closed__5; -x_3 = l_Std_BitVec_reduceSLT___closed__1; -x_4 = l_Lean_Name_mkStr3(x_1, x_2, x_3); -return x_4; +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_BitVec_reduceUnary___lambda__1___closed__2; +x_2 = l_BitVec_reduceSLT___closed__1; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; } } -LEAN_EXPORT lean_object* l_Std_BitVec_reduceSLT(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_EXPORT lean_object* l_BitVec_reduceSLT(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; uint8_t x_12; -x_10 = l_Std_BitVec_reduceSLT___closed__2; +x_10 = l_BitVec_reduceSLT___closed__2; x_11 = lean_unsigned_to_nat(3u); x_12 = l_Lean_Expr_isAppOfArity(x_1, x_10, x_11); if (x_12 == 0) @@ -24557,7 +23445,7 @@ lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_13 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_13 = l_BitVec_reduceUnary___lambda__1___closed__1; x_14 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_14, 0, x_13); lean_ctor_set(x_14, 1, x_9); @@ -24567,7 +23455,7 @@ else { lean_object* x_15; lean_object* x_16; x_15 = lean_box(0); -x_16 = l_Std_BitVec_reduceSLT___lambda__1(x_1, x_15, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_16 = l_BitVec_reduceSLT___lambda__1(x_1, x_15, 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); @@ -24575,11 +23463,11 @@ return x_16; } } } -LEAN_EXPORT lean_object* l_Std_BitVec_reduceSLT___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) { +LEAN_EXPORT lean_object* l_BitVec_reduceSLT___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_Std_BitVec_reduceSLT___lambda__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_11 = l_BitVec_reduceSLT___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); @@ -24587,7 +23475,7 @@ lean_dec(x_2); return x_11; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceSLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3327____closed__1() { +static lean_object* _init_l___regBuiltin_BitVec_reduceSLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3070____closed__1() { _start: { lean_object* x_1; @@ -24595,22 +23483,21 @@ x_1 = lean_mk_string_from_bytes("reduceSLT", 9); return x_1; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceSLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3327____closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f___closed__4; -x_2 = l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f___closed__5; -x_3 = l___regBuiltin_Std_BitVec_reduceSLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3327____closed__1; -x_4 = l_Lean_Name_mkStr3(x_1, x_2, x_3); -return x_4; -} -} -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceSLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3327____closed__3() { +static lean_object* _init_l___regBuiltin_BitVec_reduceSLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3070____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Std_BitVec_reduceSLT___closed__2; +x_1 = l_BitVec_reduceUnary___lambda__1___closed__2; +x_2 = l___regBuiltin_BitVec_reduceSLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3070____closed__1; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___regBuiltin_BitVec_reduceSLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3070____closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_BitVec_reduceSLT___closed__2; x_2 = lean_unsigned_to_nat(3u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -24618,90 +23505,90 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceSLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3327____closed__4() { +static lean_object* _init_l___regBuiltin_BitVec_reduceSLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3070____closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceUMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1791____closed__4; -x_2 = l___regBuiltin_Std_BitVec_reduceSLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3327____closed__3; +x_1 = l___regBuiltin_BitVec_reduceUMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1568____closed__4; +x_2 = l___regBuiltin_BitVec_reduceSLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3070____closed__3; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceSLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3327____closed__5() { +static lean_object* _init_l___regBuiltin_BitVec_reduceSLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3070____closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceSLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3327____closed__4; +x_1 = l___regBuiltin_BitVec_reduceSLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3070____closed__4; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceSLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3327____closed__6() { +static lean_object* _init_l___regBuiltin_BitVec_reduceSLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3070____closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceSLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3327____closed__5; +x_1 = l___regBuiltin_BitVec_reduceSLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3070____closed__5; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceSLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3327____closed__7() { +static lean_object* _init_l___regBuiltin_BitVec_reduceSLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3070____closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceSLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3327____closed__6; +x_1 = l___regBuiltin_BitVec_reduceSLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3070____closed__6; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceSLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3327____closed__8() { +static lean_object* _init_l___regBuiltin_BitVec_reduceSLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3070____closed__8() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Std_BitVec_reduceSLT), 9, 0); +x_1 = lean_alloc_closure((void*)(l_BitVec_reduceSLT), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceSLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3327_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceSLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3070_(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_Std_BitVec_reduceSLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3327____closed__2; -x_3 = l___regBuiltin_Std_BitVec_reduceSLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3327____closed__7; -x_4 = l___regBuiltin_Std_BitVec_reduceSLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3327____closed__8; +x_2 = l___regBuiltin_BitVec_reduceSLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3070____closed__2; +x_3 = l___regBuiltin_BitVec_reduceSLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3070____closed__7; +x_4 = l___regBuiltin_BitVec_reduceSLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3070____closed__8; x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); return x_5; } } -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceSLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3329_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceSLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3072_(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_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1373____closed__1; -x_3 = l___regBuiltin_Std_BitVec_reduceSLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3327____closed__2; +x_2 = l___regBuiltin_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1150____closed__1; +x_3 = l___regBuiltin_BitVec_reduceSLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3070____closed__2; x_4 = 1; -x_5 = l___regBuiltin_Std_BitVec_reduceSLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3327____closed__8; +x_5 = l___regBuiltin_BitVec_reduceSLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3070____closed__8; 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_Std_BitVec_reduceSLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3331_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceSLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3074_(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_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1375____closed__1; -x_3 = l___regBuiltin_Std_BitVec_reduceSLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3327____closed__2; +x_2 = l___regBuiltin_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1152____closed__1; +x_3 = l___regBuiltin_BitVec_reduceSLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3070____closed__2; x_4 = 1; -x_5 = l___regBuiltin_Std_BitVec_reduceSLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3327____closed__8; +x_5 = l___regBuiltin_BitVec_reduceSLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3070____closed__8; 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_Std_BitVec_reduceSLE___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) { +LEAN_EXPORT lean_object* l_BitVec_reduceSLE___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; @@ -24713,7 +23600,8 @@ lean_inc(x_9); lean_inc(x_8); lean_inc(x_7); lean_inc(x_6); -x_13 = l_Std_BitVec_fromExpr_x3f(x_12, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_13 = l_BitVec_fromExpr_x3f(x_12, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_12); if (lean_obj_tag(x_13) == 0) { lean_object* x_14; @@ -24733,7 +23621,7 @@ if (x_15 == 0) lean_object* x_16; lean_object* x_17; x_16 = lean_ctor_get(x_13, 0); lean_dec(x_16); -x_17 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_17 = l_BitVec_reduceUnary___lambda__1___closed__1; lean_ctor_set(x_13, 0, x_17); return x_13; } @@ -24743,7 +23631,7 @@ lean_object* x_18; lean_object* x_19; lean_object* x_20; x_18 = lean_ctor_get(x_13, 1); lean_inc(x_18); lean_dec(x_13); -x_19 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_19 = l_BitVec_reduceUnary___lambda__1___closed__1; x_20 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_20, 0, x_19); lean_ctor_set(x_20, 1, x_18); @@ -24761,7 +23649,8 @@ lean_inc(x_22); lean_dec(x_14); x_23 = l_Lean_Expr_appArg_x21(x_1); lean_dec(x_1); -x_24 = l_Std_BitVec_fromExpr_x3f(x_23, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_21); +x_24 = l_BitVec_fromExpr_x3f(x_23, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_21); +lean_dec(x_23); if (lean_obj_tag(x_24) == 0) { lean_object* x_25; @@ -24777,7 +23666,7 @@ if (x_26 == 0) lean_object* x_27; lean_object* x_28; x_27 = lean_ctor_get(x_24, 0); lean_dec(x_27); -x_28 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_28 = l_BitVec_reduceUnary___lambda__1___closed__1; lean_ctor_set(x_24, 0, x_28); return x_24; } @@ -24787,7 +23676,7 @@ lean_object* x_29; lean_object* x_30; lean_object* x_31; x_29 = lean_ctor_get(x_24, 1); lean_inc(x_29); lean_dec(x_24); -x_30 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_30 = l_BitVec_reduceUnary___lambda__1___closed__1; x_31 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_31, 0, x_30); lean_ctor_set(x_31, 1, x_29); @@ -24818,7 +23707,7 @@ lean_object* x_38; lean_dec(x_35); lean_dec(x_34); lean_dec(x_22); -x_38 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_38 = l_BitVec_reduceUnary___lambda__1___closed__1; lean_ctor_set(x_24, 0, x_38); return x_24; } @@ -24831,19 +23720,19 @@ lean_dec(x_22); x_40 = lean_ctor_get(x_34, 1); lean_inc(x_40); lean_dec(x_34); -x_41 = l_Std_BitVec_sle(x_35, x_39, x_40); +x_41 = l_BitVec_sle(x_35, x_39, x_40); lean_dec(x_35); if (x_41 == 0) { lean_object* x_42; -x_42 = l_Std_BitVec_reduceGetBit___lambda__1___closed__6; +x_42 = l_BitVec_reduceGetBit___lambda__1___closed__6; lean_ctor_set(x_24, 0, x_42); return x_24; } else { lean_object* x_43; -x_43 = l_Std_BitVec_reduceGetBit___lambda__1___closed__11; +x_43 = l_BitVec_reduceGetBit___lambda__1___closed__11; lean_ctor_set(x_24, 0, x_43); return x_24; } @@ -24870,7 +23759,7 @@ lean_object* x_49; lean_object* x_50; lean_dec(x_46); lean_dec(x_45); lean_dec(x_22); -x_49 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_49 = l_BitVec_reduceUnary___lambda__1___closed__1; x_50 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_50, 0, x_49); lean_ctor_set(x_50, 1, x_44); @@ -24885,12 +23774,12 @@ lean_dec(x_22); x_52 = lean_ctor_get(x_45, 1); lean_inc(x_52); lean_dec(x_45); -x_53 = l_Std_BitVec_sle(x_46, x_51, x_52); +x_53 = l_BitVec_sle(x_46, x_51, x_52); lean_dec(x_46); if (x_53 == 0) { lean_object* x_54; lean_object* x_55; -x_54 = l_Std_BitVec_reduceGetBit___lambda__1___closed__6; +x_54 = l_BitVec_reduceGetBit___lambda__1___closed__6; x_55 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_55, 0, x_54); lean_ctor_set(x_55, 1, x_44); @@ -24899,7 +23788,7 @@ return x_55; else { lean_object* x_56; lean_object* x_57; -x_56 = l_Std_BitVec_reduceGetBit___lambda__1___closed__11; +x_56 = l_BitVec_reduceGetBit___lambda__1___closed__11; x_57 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_57, 0, x_56); lean_ctor_set(x_57, 1, x_44); @@ -24963,7 +23852,7 @@ return x_65; } } } -static lean_object* _init_l_Std_BitVec_reduceSLE___closed__1() { +static lean_object* _init_l_BitVec_reduceSLE___closed__1() { _start: { lean_object* x_1; @@ -24971,22 +23860,21 @@ x_1 = lean_mk_string_from_bytes("sle", 3); return x_1; } } -static lean_object* _init_l_Std_BitVec_reduceSLE___closed__2() { +static lean_object* _init_l_BitVec_reduceSLE___closed__2() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f___closed__4; -x_2 = l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f___closed__5; -x_3 = l_Std_BitVec_reduceSLE___closed__1; -x_4 = l_Lean_Name_mkStr3(x_1, x_2, x_3); -return x_4; +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_BitVec_reduceUnary___lambda__1___closed__2; +x_2 = l_BitVec_reduceSLE___closed__1; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; } } -LEAN_EXPORT lean_object* l_Std_BitVec_reduceSLE(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_EXPORT lean_object* l_BitVec_reduceSLE(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; uint8_t x_12; -x_10 = l_Std_BitVec_reduceSLE___closed__2; +x_10 = l_BitVec_reduceSLE___closed__2; x_11 = lean_unsigned_to_nat(3u); x_12 = l_Lean_Expr_isAppOfArity(x_1, x_10, x_11); if (x_12 == 0) @@ -25000,7 +23888,7 @@ lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_13 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_13 = l_BitVec_reduceUnary___lambda__1___closed__1; x_14 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_14, 0, x_13); lean_ctor_set(x_14, 1, x_9); @@ -25010,7 +23898,7 @@ else { lean_object* x_15; lean_object* x_16; x_15 = lean_box(0); -x_16 = l_Std_BitVec_reduceSLE___lambda__1(x_1, x_15, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_16 = l_BitVec_reduceSLE___lambda__1(x_1, x_15, 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); @@ -25018,11 +23906,11 @@ return x_16; } } } -LEAN_EXPORT lean_object* l_Std_BitVec_reduceSLE___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) { +LEAN_EXPORT lean_object* l_BitVec_reduceSLE___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_Std_BitVec_reduceSLE___lambda__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_11 = l_BitVec_reduceSLE___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); @@ -25030,7 +23918,7 @@ lean_dec(x_2); return x_11; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceSLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3350____closed__1() { +static lean_object* _init_l___regBuiltin_BitVec_reduceSLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3093____closed__1() { _start: { lean_object* x_1; @@ -25038,22 +23926,21 @@ x_1 = lean_mk_string_from_bytes("reduceSLE", 9); return x_1; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceSLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3350____closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f___closed__4; -x_2 = l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f___closed__5; -x_3 = l___regBuiltin_Std_BitVec_reduceSLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3350____closed__1; -x_4 = l_Lean_Name_mkStr3(x_1, x_2, x_3); -return x_4; -} -} -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceSLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3350____closed__3() { +static lean_object* _init_l___regBuiltin_BitVec_reduceSLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3093____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Std_BitVec_reduceSLE___closed__2; +x_1 = l_BitVec_reduceUnary___lambda__1___closed__2; +x_2 = l___regBuiltin_BitVec_reduceSLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3093____closed__1; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___regBuiltin_BitVec_reduceSLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3093____closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_BitVec_reduceSLE___closed__2; x_2 = lean_unsigned_to_nat(3u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -25061,90 +23948,90 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceSLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3350____closed__4() { +static lean_object* _init_l___regBuiltin_BitVec_reduceSLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3093____closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceUMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1791____closed__4; -x_2 = l___regBuiltin_Std_BitVec_reduceSLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3350____closed__3; +x_1 = l___regBuiltin_BitVec_reduceUMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1568____closed__4; +x_2 = l___regBuiltin_BitVec_reduceSLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3093____closed__3; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceSLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3350____closed__5() { +static lean_object* _init_l___regBuiltin_BitVec_reduceSLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3093____closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceSLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3350____closed__4; +x_1 = l___regBuiltin_BitVec_reduceSLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3093____closed__4; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceSLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3350____closed__6() { +static lean_object* _init_l___regBuiltin_BitVec_reduceSLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3093____closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceSLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3350____closed__5; +x_1 = l___regBuiltin_BitVec_reduceSLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3093____closed__5; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceSLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3350____closed__7() { +static lean_object* _init_l___regBuiltin_BitVec_reduceSLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3093____closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceSLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3350____closed__6; +x_1 = l___regBuiltin_BitVec_reduceSLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3093____closed__6; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceSLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3350____closed__8() { +static lean_object* _init_l___regBuiltin_BitVec_reduceSLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3093____closed__8() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Std_BitVec_reduceSLE), 9, 0); +x_1 = lean_alloc_closure((void*)(l_BitVec_reduceSLE), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceSLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3350_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceSLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3093_(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_Std_BitVec_reduceSLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3350____closed__2; -x_3 = l___regBuiltin_Std_BitVec_reduceSLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3350____closed__7; -x_4 = l___regBuiltin_Std_BitVec_reduceSLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3350____closed__8; +x_2 = l___regBuiltin_BitVec_reduceSLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3093____closed__2; +x_3 = l___regBuiltin_BitVec_reduceSLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3093____closed__7; +x_4 = l___regBuiltin_BitVec_reduceSLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3093____closed__8; x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); return x_5; } } -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceSLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3352_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceSLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3095_(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_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1373____closed__1; -x_3 = l___regBuiltin_Std_BitVec_reduceSLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3350____closed__2; +x_2 = l___regBuiltin_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1150____closed__1; +x_3 = l___regBuiltin_BitVec_reduceSLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3093____closed__2; x_4 = 1; -x_5 = l___regBuiltin_Std_BitVec_reduceSLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3350____closed__8; +x_5 = l___regBuiltin_BitVec_reduceSLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3093____closed__8; 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_Std_BitVec_reduceSLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3354_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceSLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3097_(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_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1375____closed__1; -x_3 = l___regBuiltin_Std_BitVec_reduceSLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3350____closed__2; +x_2 = l___regBuiltin_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1152____closed__1; +x_3 = l___regBuiltin_BitVec_reduceSLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3093____closed__2; x_4 = 1; -x_5 = l___regBuiltin_Std_BitVec_reduceSLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3350____closed__8; +x_5 = l___regBuiltin_BitVec_reduceSLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3093____closed__8; 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_Std_BitVec_reduceZeroExtend_x27___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) { +LEAN_EXPORT lean_object* l_BitVec_reduceZeroExtend_x27___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; @@ -25153,7 +24040,8 @@ lean_inc(x_9); lean_inc(x_8); lean_inc(x_7); lean_inc(x_6); -x_12 = l_Std_BitVec_fromExpr_x3f(x_11, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_12 = l_BitVec_fromExpr_x3f(x_11, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_11); if (lean_obj_tag(x_12) == 0) { lean_object* x_13; @@ -25173,7 +24061,7 @@ if (x_14 == 0) lean_object* x_15; lean_object* x_16; x_15 = lean_ctor_get(x_12, 0); lean_dec(x_15); -x_16 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_16 = l_BitVec_reduceUnary___lambda__1___closed__1; lean_ctor_set(x_12, 0, x_16); return x_12; } @@ -25183,7 +24071,7 @@ lean_object* x_17; lean_object* x_18; lean_object* x_19; x_17 = lean_ctor_get(x_12, 1); lean_inc(x_17); lean_dec(x_12); -x_18 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_18 = l_BitVec_reduceUnary___lambda__1___closed__1; x_19 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_19, 0, x_18); lean_ctor_set(x_19, 1, x_17); @@ -25203,8 +24091,7 @@ x_22 = l_Lean_Expr_appFn_x21(x_1); x_23 = l_Lean_Expr_appFn_x21(x_22); x_24 = l_Lean_Expr_appArg_x21(x_23); lean_dec(x_23); -x_25 = l_Nat_fromExpr_x3f(x_24, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_20); -lean_dec(x_6); +x_25 = l_Lean_Meta_getNatValue_x3f(x_24, x_6, x_7, x_8, x_9, x_20); if (lean_obj_tag(x_25) == 0) { lean_object* x_26; @@ -25220,7 +24107,7 @@ if (x_27 == 0) lean_object* x_28; lean_object* x_29; x_28 = lean_ctor_get(x_25, 0); lean_dec(x_28); -x_29 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_29 = l_BitVec_reduceUnary___lambda__1___closed__1; lean_ctor_set(x_25, 0, x_29); return x_25; } @@ -25230,7 +24117,7 @@ lean_object* x_30; lean_object* x_31; lean_object* x_32; x_30 = lean_ctor_get(x_25, 1); lean_inc(x_30); lean_dec(x_25); -x_31 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_31 = l_BitVec_reduceUnary___lambda__1___closed__1; x_32 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_32, 0, x_31); lean_ctor_set(x_32, 1, x_30); @@ -25258,20 +24145,1748 @@ if (x_37 == 0) lean_object* x_38; lean_dec(x_35); lean_dec(x_21); -x_38 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_38 = l_BitVec_reduceUnary___lambda__1___closed__1; lean_ctor_set(x_25, 0, x_38); return x_25; } else { -lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; uint32_t x_43; uint8_t x_44; lean_object* x_45; lean_object* x_46; +lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; uint32_t x_45; uint8_t x_46; lean_object* x_47; lean_object* x_48; x_39 = lean_ctor_get(x_21, 1); lean_inc(x_39); lean_dec(x_21); -x_40 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_40, 0, x_35); -lean_ctor_set(x_40, 1, x_39); -x_41 = l_Std_BitVec_Literal_toExpr(x_40); +x_40 = l_Lean_mkNatLit(x_35); +x_41 = l_Lean_mkNatLit(x_39); +x_42 = l_BitVec_reduceUnary___lambda__1___closed__5; +x_43 = l_Lean_mkAppB(x_42, x_40, x_41); +x_44 = lean_box(0); +x_45 = 0; +x_46 = 1; +x_47 = lean_alloc_ctor(0, 2, 5); +lean_ctor_set(x_47, 0, x_43); +lean_ctor_set(x_47, 1, x_44); +lean_ctor_set_uint32(x_47, sizeof(void*)*2, x_45); +lean_ctor_set_uint8(x_47, sizeof(void*)*2 + 4, x_46); +x_48 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_48, 0, x_47); +lean_ctor_set(x_25, 0, x_48); +return x_25; +} +} +else +{ +lean_object* x_49; lean_object* x_50; lean_object* x_51; uint8_t x_52; +x_49 = lean_ctor_get(x_25, 1); +lean_inc(x_49); +lean_dec(x_25); +x_50 = lean_ctor_get(x_26, 0); +lean_inc(x_50); +lean_dec(x_26); +x_51 = lean_ctor_get(x_21, 0); +lean_inc(x_51); +x_52 = lean_nat_dec_le(x_51, x_50); +lean_dec(x_51); +if (x_52 == 0) +{ +lean_object* x_53; lean_object* x_54; +lean_dec(x_50); +lean_dec(x_21); +x_53 = l_BitVec_reduceUnary___lambda__1___closed__1; +x_54 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_54, 0, x_53); +lean_ctor_set(x_54, 1, x_49); +return x_54; +} +else +{ +lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; uint32_t x_61; uint8_t x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; +x_55 = lean_ctor_get(x_21, 1); +lean_inc(x_55); +lean_dec(x_21); +x_56 = l_Lean_mkNatLit(x_50); +x_57 = l_Lean_mkNatLit(x_55); +x_58 = l_BitVec_reduceUnary___lambda__1___closed__5; +x_59 = l_Lean_mkAppB(x_58, x_56, x_57); +x_60 = lean_box(0); +x_61 = 0; +x_62 = 1; +x_63 = lean_alloc_ctor(0, 2, 5); +lean_ctor_set(x_63, 0, x_59); +lean_ctor_set(x_63, 1, x_60); +lean_ctor_set_uint32(x_63, sizeof(void*)*2, x_61); +lean_ctor_set_uint8(x_63, sizeof(void*)*2 + 4, x_62); +x_64 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_64, 0, x_63); +x_65 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_65, 0, x_64); +lean_ctor_set(x_65, 1, x_49); +return x_65; +} +} +} +} +else +{ +uint8_t x_66; +lean_dec(x_21); +x_66 = !lean_is_exclusive(x_25); +if (x_66 == 0) +{ +return x_25; +} +else +{ +lean_object* x_67; lean_object* x_68; lean_object* x_69; +x_67 = lean_ctor_get(x_25, 0); +x_68 = lean_ctor_get(x_25, 1); +lean_inc(x_68); +lean_inc(x_67); +lean_dec(x_25); +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 +{ +uint8_t x_70; +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_1); +x_70 = !lean_is_exclusive(x_12); +if (x_70 == 0) +{ +return x_12; +} +else +{ +lean_object* x_71; lean_object* x_72; lean_object* x_73; +x_71 = lean_ctor_get(x_12, 0); +x_72 = lean_ctor_get(x_12, 1); +lean_inc(x_72); +lean_inc(x_71); +lean_dec(x_12); +x_73 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_73, 0, x_71); +lean_ctor_set(x_73, 1, x_72); +return x_73; +} +} +} +} +static lean_object* _init_l_BitVec_reduceZeroExtend_x27___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("zeroExtend'", 11); +return x_1; +} +} +static lean_object* _init_l_BitVec_reduceZeroExtend_x27___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_BitVec_reduceUnary___lambda__1___closed__2; +x_2 = l_BitVec_reduceZeroExtend_x27___closed__1; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; +} +} +LEAN_EXPORT lean_object* l_BitVec_reduceZeroExtend_x27(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; uint8_t x_12; +x_10 = l_BitVec_reduceZeroExtend_x27___closed__2; +x_11 = lean_unsigned_to_nat(4u); +x_12 = l_Lean_Expr_isAppOfArity(x_1, x_10, x_11); +if (x_12 == 0) +{ +lean_object* x_13; lean_object* x_14; +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); +x_13 = l_BitVec_reduceUnary___lambda__1___closed__1; +x_14 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_14, 0, x_13); +lean_ctor_set(x_14, 1, x_9); +return x_14; +} +else +{ +lean_object* x_15; lean_object* x_16; +x_15 = lean_box(0); +x_16 = l_BitVec_reduceZeroExtend_x27___lambda__1(x_1, x_15, 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_16; +} +} +} +LEAN_EXPORT lean_object* l_BitVec_reduceZeroExtend_x27___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_BitVec_reduceZeroExtend_x27___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; +} +} +static lean_object* _init_l___regBuiltin_BitVec_reduceZeroExtend_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3266____closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("reduceZeroExtend'", 17); +return x_1; +} +} +static lean_object* _init_l___regBuiltin_BitVec_reduceZeroExtend_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3266____closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_BitVec_reduceUnary___lambda__1___closed__2; +x_2 = l___regBuiltin_BitVec_reduceZeroExtend_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3266____closed__1; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___regBuiltin_BitVec_reduceZeroExtend_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3266____closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_BitVec_reduceZeroExtend_x27___closed__2; +x_2 = lean_unsigned_to_nat(4u); +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_BitVec_reduceZeroExtend_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3266____closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___regBuiltin_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1148____closed__6; +x_2 = l___regBuiltin_BitVec_reduceZeroExtend_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3266____closed__3; +x_3 = lean_array_push(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___regBuiltin_BitVec_reduceZeroExtend_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3266____closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___regBuiltin_BitVec_reduceZeroExtend_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3266____closed__4; +x_2 = lean_box(3); +x_3 = lean_array_push(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___regBuiltin_BitVec_reduceZeroExtend_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3266____closed__6() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___regBuiltin_BitVec_reduceZeroExtend_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3266____closed__5; +x_2 = lean_box(3); +x_3 = lean_array_push(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___regBuiltin_BitVec_reduceZeroExtend_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3266____closed__7() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___regBuiltin_BitVec_reduceZeroExtend_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3266____closed__6; +x_2 = lean_box(3); +x_3 = lean_array_push(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___regBuiltin_BitVec_reduceZeroExtend_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3266____closed__8() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___regBuiltin_BitVec_reduceZeroExtend_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3266____closed__7; +x_2 = lean_box(3); +x_3 = lean_array_push(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___regBuiltin_BitVec_reduceZeroExtend_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3266____closed__9() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_BitVec_reduceZeroExtend_x27), 9, 0); +return x_1; +} +} +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceZeroExtend_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3266_(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_BitVec_reduceZeroExtend_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3266____closed__2; +x_3 = l___regBuiltin_BitVec_reduceZeroExtend_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3266____closed__8; +x_4 = l___regBuiltin_BitVec_reduceZeroExtend_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3266____closed__9; +x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); +return x_5; +} +} +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceZeroExtend_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3268_(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_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1150____closed__1; +x_3 = l___regBuiltin_BitVec_reduceZeroExtend_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3266____closed__2; +x_4 = 1; +x_5 = l___regBuiltin_BitVec_reduceZeroExtend_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3266____closed__9; +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_BitVec_reduceZeroExtend_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3270_(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_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1152____closed__1; +x_3 = l___regBuiltin_BitVec_reduceZeroExtend_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3266____closed__2; +x_4 = 1; +x_5 = l___regBuiltin_BitVec_reduceZeroExtend_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3266____closed__9; +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_BitVec_reduceShiftLeftZeroExtend___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; +lean_inc(x_1); +x_11 = l_Lean_Expr_appFn_x21(x_1); +x_12 = l_Lean_Expr_appArg_x21(x_11); +lean_dec(x_11); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_6); +x_13 = l_BitVec_fromExpr_x3f(x_12, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_12); +if (lean_obj_tag(x_13) == 0) +{ +lean_object* x_14; +x_14 = lean_ctor_get(x_13, 0); +lean_inc(x_14); +if (lean_obj_tag(x_14) == 0) +{ +uint8_t x_15; +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_1); +x_15 = !lean_is_exclusive(x_13); +if (x_15 == 0) +{ +lean_object* x_16; lean_object* x_17; +x_16 = lean_ctor_get(x_13, 0); +lean_dec(x_16); +x_17 = l_BitVec_reduceUnary___lambda__1___closed__1; +lean_ctor_set(x_13, 0, x_17); +return x_13; +} +else +{ +lean_object* x_18; lean_object* x_19; lean_object* x_20; +x_18 = lean_ctor_get(x_13, 1); +lean_inc(x_18); +lean_dec(x_13); +x_19 = l_BitVec_reduceUnary___lambda__1___closed__1; +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 +{ +lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; +x_21 = lean_ctor_get(x_13, 1); +lean_inc(x_21); +lean_dec(x_13); +x_22 = lean_ctor_get(x_14, 0); +lean_inc(x_22); +lean_dec(x_14); +x_23 = l_Lean_Expr_appArg_x21(x_1); +lean_dec(x_1); +x_24 = l_Lean_Meta_getNatValue_x3f(x_23, x_6, x_7, x_8, x_9, x_21); +if (lean_obj_tag(x_24) == 0) +{ +lean_object* x_25; +x_25 = lean_ctor_get(x_24, 0); +lean_inc(x_25); +if (lean_obj_tag(x_25) == 0) +{ +uint8_t x_26; +lean_dec(x_22); +x_26 = !lean_is_exclusive(x_24); +if (x_26 == 0) +{ +lean_object* x_27; lean_object* x_28; +x_27 = lean_ctor_get(x_24, 0); +lean_dec(x_27); +x_28 = l_BitVec_reduceUnary___lambda__1___closed__1; +lean_ctor_set(x_24, 0, x_28); +return x_24; +} +else +{ +lean_object* x_29; lean_object* x_30; lean_object* x_31; +x_29 = lean_ctor_get(x_24, 1); +lean_inc(x_29); +lean_dec(x_24); +x_30 = l_BitVec_reduceUnary___lambda__1___closed__1; +x_31 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_31, 0, x_30); +lean_ctor_set(x_31, 1, x_29); +return x_31; +} +} +else +{ +uint8_t x_32; +x_32 = !lean_is_exclusive(x_24); +if (x_32 == 0) +{ +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; uint32_t x_44; uint8_t x_45; lean_object* x_46; lean_object* x_47; +x_33 = lean_ctor_get(x_24, 0); +lean_dec(x_33); +x_34 = lean_ctor_get(x_25, 0); +lean_inc(x_34); +lean_dec(x_25); +x_35 = lean_ctor_get(x_22, 0); +lean_inc(x_35); +x_36 = lean_nat_add(x_35, x_34); +lean_dec(x_35); +x_37 = lean_ctor_get(x_22, 1); +lean_inc(x_37); +lean_dec(x_22); +x_38 = lean_nat_shiftl(x_37, x_34); +lean_dec(x_34); +lean_dec(x_37); +x_39 = l_Lean_mkNatLit(x_36); +x_40 = l_Lean_mkNatLit(x_38); +x_41 = l_BitVec_reduceUnary___lambda__1___closed__5; +x_42 = l_Lean_mkAppB(x_41, x_39, x_40); +x_43 = lean_box(0); +x_44 = 0; +x_45 = 1; +x_46 = lean_alloc_ctor(0, 2, 5); +lean_ctor_set(x_46, 0, x_42); +lean_ctor_set(x_46, 1, x_43); +lean_ctor_set_uint32(x_46, sizeof(void*)*2, x_44); +lean_ctor_set_uint8(x_46, sizeof(void*)*2 + 4, x_45); +x_47 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_47, 0, x_46); +lean_ctor_set(x_24, 0, x_47); +return x_24; +} +else +{ +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; uint32_t x_59; uint8_t x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; +x_48 = lean_ctor_get(x_24, 1); +lean_inc(x_48); +lean_dec(x_24); +x_49 = lean_ctor_get(x_25, 0); +lean_inc(x_49); +lean_dec(x_25); +x_50 = lean_ctor_get(x_22, 0); +lean_inc(x_50); +x_51 = lean_nat_add(x_50, x_49); +lean_dec(x_50); +x_52 = lean_ctor_get(x_22, 1); +lean_inc(x_52); +lean_dec(x_22); +x_53 = lean_nat_shiftl(x_52, x_49); +lean_dec(x_49); +lean_dec(x_52); +x_54 = l_Lean_mkNatLit(x_51); +x_55 = l_Lean_mkNatLit(x_53); +x_56 = l_BitVec_reduceUnary___lambda__1___closed__5; +x_57 = l_Lean_mkAppB(x_56, x_54, x_55); +x_58 = lean_box(0); +x_59 = 0; +x_60 = 1; +x_61 = lean_alloc_ctor(0, 2, 5); +lean_ctor_set(x_61, 0, x_57); +lean_ctor_set(x_61, 1, x_58); +lean_ctor_set_uint32(x_61, sizeof(void*)*2, x_59); +lean_ctor_set_uint8(x_61, sizeof(void*)*2 + 4, x_60); +x_62 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_62, 0, x_61); +x_63 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_63, 0, x_62); +lean_ctor_set(x_63, 1, x_48); +return x_63; +} +} +} +else +{ +uint8_t x_64; +lean_dec(x_22); +x_64 = !lean_is_exclusive(x_24); +if (x_64 == 0) +{ +return x_24; +} +else +{ +lean_object* x_65; lean_object* x_66; lean_object* x_67; +x_65 = lean_ctor_get(x_24, 0); +x_66 = lean_ctor_get(x_24, 1); +lean_inc(x_66); +lean_inc(x_65); +lean_dec(x_24); +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; +} +} +} +} +else +{ +uint8_t x_68; +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_1); +x_68 = !lean_is_exclusive(x_13); +if (x_68 == 0) +{ +return x_13; +} +else +{ +lean_object* x_69; lean_object* x_70; lean_object* x_71; +x_69 = lean_ctor_get(x_13, 0); +x_70 = lean_ctor_get(x_13, 1); +lean_inc(x_70); +lean_inc(x_69); +lean_dec(x_13); +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; +} +} +} +} +static lean_object* _init_l_BitVec_reduceShiftLeftZeroExtend___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("shiftLeftZeroExtend", 19); +return x_1; +} +} +static lean_object* _init_l_BitVec_reduceShiftLeftZeroExtend___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_BitVec_reduceUnary___lambda__1___closed__2; +x_2 = l_BitVec_reduceShiftLeftZeroExtend___closed__1; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; +} +} +LEAN_EXPORT lean_object* l_BitVec_reduceShiftLeftZeroExtend(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; uint8_t x_12; +x_10 = l_BitVec_reduceShiftLeftZeroExtend___closed__2; +x_11 = lean_unsigned_to_nat(3u); +x_12 = l_Lean_Expr_isAppOfArity(x_1, x_10, x_11); +if (x_12 == 0) +{ +lean_object* x_13; lean_object* x_14; +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); +x_13 = l_BitVec_reduceUnary___lambda__1___closed__1; +x_14 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_14, 0, x_13); +lean_ctor_set(x_14, 1, x_9); +return x_14; +} +else +{ +lean_object* x_15; lean_object* x_16; +x_15 = lean_box(0); +x_16 = l_BitVec_reduceShiftLeftZeroExtend___lambda__1(x_1, x_15, 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_16; +} +} +} +LEAN_EXPORT lean_object* l_BitVec_reduceShiftLeftZeroExtend___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_BitVec_reduceShiftLeftZeroExtend___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; +} +} +static lean_object* _init_l___regBuiltin_BitVec_reduceShiftLeftZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3414____closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("reduceShiftLeftZeroExtend", 25); +return x_1; +} +} +static lean_object* _init_l___regBuiltin_BitVec_reduceShiftLeftZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3414____closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_BitVec_reduceUnary___lambda__1___closed__2; +x_2 = l___regBuiltin_BitVec_reduceShiftLeftZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3414____closed__1; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___regBuiltin_BitVec_reduceShiftLeftZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3414____closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_BitVec_reduceShiftLeftZeroExtend___closed__2; +x_2 = lean_unsigned_to_nat(3u); +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_BitVec_reduceShiftLeftZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3414____closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___regBuiltin_BitVec_reduceUMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1568____closed__4; +x_2 = l___regBuiltin_BitVec_reduceShiftLeftZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3414____closed__3; +x_3 = lean_array_push(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___regBuiltin_BitVec_reduceShiftLeftZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3414____closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___regBuiltin_BitVec_reduceShiftLeftZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3414____closed__4; +x_2 = lean_box(3); +x_3 = lean_array_push(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___regBuiltin_BitVec_reduceShiftLeftZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3414____closed__6() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___regBuiltin_BitVec_reduceShiftLeftZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3414____closed__5; +x_2 = lean_box(3); +x_3 = lean_array_push(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___regBuiltin_BitVec_reduceShiftLeftZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3414____closed__7() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___regBuiltin_BitVec_reduceShiftLeftZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3414____closed__6; +x_2 = lean_box(3); +x_3 = lean_array_push(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___regBuiltin_BitVec_reduceShiftLeftZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3414____closed__8() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_BitVec_reduceShiftLeftZeroExtend), 9, 0); +return x_1; +} +} +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceShiftLeftZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3414_(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_BitVec_reduceShiftLeftZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3414____closed__2; +x_3 = l___regBuiltin_BitVec_reduceShiftLeftZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3414____closed__7; +x_4 = l___regBuiltin_BitVec_reduceShiftLeftZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3414____closed__8; +x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); +return x_5; +} +} +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceShiftLeftZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3416_(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_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1150____closed__1; +x_3 = l___regBuiltin_BitVec_reduceShiftLeftZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3414____closed__2; +x_4 = 1; +x_5 = l___regBuiltin_BitVec_reduceShiftLeftZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3414____closed__8; +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_BitVec_reduceShiftLeftZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3418_(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_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1152____closed__1; +x_3 = l___regBuiltin_BitVec_reduceShiftLeftZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3414____closed__2; +x_4 = 1; +x_5 = l___regBuiltin_BitVec_reduceShiftLeftZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3414____closed__8; +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_BitVec_reduceExtracLsb_x27___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; +x_11 = l_Lean_Expr_appArg_x21(x_1); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_6); +x_12 = l_BitVec_fromExpr_x3f(x_11, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_11); +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; +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_1); +x_14 = !lean_is_exclusive(x_12); +if (x_14 == 0) +{ +lean_object* x_15; lean_object* x_16; +x_15 = lean_ctor_get(x_12, 0); +lean_dec(x_15); +x_16 = l_BitVec_reduceUnary___lambda__1___closed__1; +lean_ctor_set(x_12, 0, x_16); +return x_12; +} +else +{ +lean_object* x_17; lean_object* x_18; lean_object* x_19; +x_17 = lean_ctor_get(x_12, 1); +lean_inc(x_17); +lean_dec(x_12); +x_18 = l_BitVec_reduceUnary___lambda__1___closed__1; +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_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; +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 = l_Lean_Expr_appFn_x21(x_1); +lean_inc(x_22); +x_23 = l_Lean_Expr_appFn_x21(x_22); +x_24 = l_Lean_Expr_appArg_x21(x_23); +lean_dec(x_23); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_6); +x_25 = l_Lean_Meta_getNatValue_x3f(x_24, x_6, x_7, x_8, x_9, x_20); +if (lean_obj_tag(x_25) == 0) +{ +lean_object* x_26; +x_26 = lean_ctor_get(x_25, 0); +lean_inc(x_26); +if (lean_obj_tag(x_26) == 0) +{ +uint8_t x_27; +lean_dec(x_22); +lean_dec(x_21); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +x_27 = !lean_is_exclusive(x_25); +if (x_27 == 0) +{ +lean_object* x_28; lean_object* x_29; +x_28 = lean_ctor_get(x_25, 0); +lean_dec(x_28); +x_29 = l_BitVec_reduceUnary___lambda__1___closed__1; +lean_ctor_set(x_25, 0, x_29); +return x_25; +} +else +{ +lean_object* x_30; lean_object* x_31; lean_object* x_32; +x_30 = lean_ctor_get(x_25, 1); +lean_inc(x_30); +lean_dec(x_25); +x_31 = l_BitVec_reduceUnary___lambda__1___closed__1; +x_32 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_32, 0, x_31); +lean_ctor_set(x_32, 1, x_30); +return x_32; +} +} +else +{ +lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; +x_33 = lean_ctor_get(x_25, 1); +lean_inc(x_33); +lean_dec(x_25); +x_34 = lean_ctor_get(x_26, 0); +lean_inc(x_34); +lean_dec(x_26); +x_35 = l_Lean_Expr_appArg_x21(x_22); +lean_dec(x_22); +x_36 = l_Lean_Meta_getNatValue_x3f(x_35, x_6, x_7, x_8, x_9, x_33); +if (lean_obj_tag(x_36) == 0) +{ +lean_object* x_37; +x_37 = lean_ctor_get(x_36, 0); +lean_inc(x_37); +if (lean_obj_tag(x_37) == 0) +{ +uint8_t x_38; +lean_dec(x_34); +lean_dec(x_21); +x_38 = !lean_is_exclusive(x_36); +if (x_38 == 0) +{ +lean_object* x_39; lean_object* x_40; +x_39 = lean_ctor_get(x_36, 0); +lean_dec(x_39); +x_40 = l_BitVec_reduceUnary___lambda__1___closed__1; +lean_ctor_set(x_36, 0, x_40); +return x_36; +} +else +{ +lean_object* x_41; lean_object* x_42; lean_object* x_43; +x_41 = lean_ctor_get(x_36, 1); +lean_inc(x_41); +lean_dec(x_36); +x_42 = l_BitVec_reduceUnary___lambda__1___closed__1; +x_43 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_43, 0, x_42); +lean_ctor_set(x_43, 1, x_41); +return x_43; +} +} +else +{ +uint8_t x_44; +x_44 = !lean_is_exclusive(x_36); +if (x_44 == 0) +{ +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; uint32_t x_54; uint8_t x_55; lean_object* x_56; lean_object* x_57; +x_45 = lean_ctor_get(x_36, 0); +lean_dec(x_45); +x_46 = lean_ctor_get(x_37, 0); +lean_inc(x_46); +lean_dec(x_37); +x_47 = lean_ctor_get(x_21, 1); +lean_inc(x_47); +lean_dec(x_21); +x_48 = l_BitVec_extractLsb_x27___rarg(x_34, x_46, x_47); +lean_dec(x_47); +lean_dec(x_34); +x_49 = l_Lean_mkNatLit(x_46); +x_50 = l_Lean_mkNatLit(x_48); +x_51 = l_BitVec_reduceUnary___lambda__1___closed__5; +x_52 = l_Lean_mkAppB(x_51, x_49, x_50); +x_53 = lean_box(0); +x_54 = 0; +x_55 = 1; +x_56 = lean_alloc_ctor(0, 2, 5); +lean_ctor_set(x_56, 0, x_52); +lean_ctor_set(x_56, 1, x_53); +lean_ctor_set_uint32(x_56, sizeof(void*)*2, x_54); +lean_ctor_set_uint8(x_56, sizeof(void*)*2 + 4, x_55); +x_57 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_57, 0, x_56); +lean_ctor_set(x_36, 0, x_57); +return x_36; +} +else +{ +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; uint32_t x_67; uint8_t x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; +x_58 = lean_ctor_get(x_36, 1); +lean_inc(x_58); +lean_dec(x_36); +x_59 = lean_ctor_get(x_37, 0); +lean_inc(x_59); +lean_dec(x_37); +x_60 = lean_ctor_get(x_21, 1); +lean_inc(x_60); +lean_dec(x_21); +x_61 = l_BitVec_extractLsb_x27___rarg(x_34, x_59, x_60); +lean_dec(x_60); +lean_dec(x_34); +x_62 = l_Lean_mkNatLit(x_59); +x_63 = l_Lean_mkNatLit(x_61); +x_64 = l_BitVec_reduceUnary___lambda__1___closed__5; +x_65 = l_Lean_mkAppB(x_64, x_62, x_63); +x_66 = lean_box(0); +x_67 = 0; +x_68 = 1; +x_69 = lean_alloc_ctor(0, 2, 5); +lean_ctor_set(x_69, 0, x_65); +lean_ctor_set(x_69, 1, x_66); +lean_ctor_set_uint32(x_69, sizeof(void*)*2, x_67); +lean_ctor_set_uint8(x_69, sizeof(void*)*2 + 4, x_68); +x_70 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_70, 0, x_69); +x_71 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_71, 0, x_70); +lean_ctor_set(x_71, 1, x_58); +return x_71; +} +} +} +else +{ +uint8_t x_72; +lean_dec(x_34); +lean_dec(x_21); +x_72 = !lean_is_exclusive(x_36); +if (x_72 == 0) +{ +return x_36; +} +else +{ +lean_object* x_73; lean_object* x_74; lean_object* x_75; +x_73 = lean_ctor_get(x_36, 0); +x_74 = lean_ctor_get(x_36, 1); +lean_inc(x_74); +lean_inc(x_73); +lean_dec(x_36); +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; +} +} +} +} +else +{ +uint8_t x_76; +lean_dec(x_22); +lean_dec(x_21); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +x_76 = !lean_is_exclusive(x_25); +if (x_76 == 0) +{ +return x_25; +} +else +{ +lean_object* x_77; lean_object* x_78; lean_object* x_79; +x_77 = lean_ctor_get(x_25, 0); +x_78 = lean_ctor_get(x_25, 1); +lean_inc(x_78); +lean_inc(x_77); +lean_dec(x_25); +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; +} +} +} +} +else +{ +uint8_t x_80; +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_1); +x_80 = !lean_is_exclusive(x_12); +if (x_80 == 0) +{ +return x_12; +} +else +{ +lean_object* x_81; lean_object* x_82; lean_object* x_83; +x_81 = lean_ctor_get(x_12, 0); +x_82 = lean_ctor_get(x_12, 1); +lean_inc(x_82); +lean_inc(x_81); +lean_dec(x_12); +x_83 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_83, 0, x_81); +lean_ctor_set(x_83, 1, x_82); +return x_83; +} +} +} +} +static lean_object* _init_l_BitVec_reduceExtracLsb_x27___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("extractLsb'", 11); +return x_1; +} +} +static lean_object* _init_l_BitVec_reduceExtracLsb_x27___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_BitVec_reduceUnary___lambda__1___closed__2; +x_2 = l_BitVec_reduceExtracLsb_x27___closed__1; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; +} +} +LEAN_EXPORT lean_object* l_BitVec_reduceExtracLsb_x27(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; uint8_t x_12; +x_10 = l_BitVec_reduceExtracLsb_x27___closed__2; +x_11 = lean_unsigned_to_nat(4u); +x_12 = l_Lean_Expr_isAppOfArity(x_1, x_10, x_11); +if (x_12 == 0) +{ +lean_object* x_13; lean_object* x_14; +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); +x_13 = l_BitVec_reduceUnary___lambda__1___closed__1; +x_14 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_14, 0, x_13); +lean_ctor_set(x_14, 1, x_9); +return x_14; +} +else +{ +lean_object* x_15; lean_object* x_16; +x_15 = lean_box(0); +x_16 = l_BitVec_reduceExtracLsb_x27___lambda__1(x_1, x_15, 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_16; +} +} +} +LEAN_EXPORT lean_object* l_BitVec_reduceExtracLsb_x27___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_BitVec_reduceExtracLsb_x27___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; +} +} +static lean_object* _init_l___regBuiltin_BitVec_reduceExtracLsb_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3600____closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("reduceExtracLsb'", 16); +return x_1; +} +} +static lean_object* _init_l___regBuiltin_BitVec_reduceExtracLsb_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3600____closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_BitVec_reduceUnary___lambda__1___closed__2; +x_2 = l___regBuiltin_BitVec_reduceExtracLsb_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3600____closed__1; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___regBuiltin_BitVec_reduceExtracLsb_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3600____closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_BitVec_reduceExtracLsb_x27___closed__2; +x_2 = lean_unsigned_to_nat(4u); +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_BitVec_reduceExtracLsb_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3600____closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___regBuiltin_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1148____closed__6; +x_2 = l___regBuiltin_BitVec_reduceExtracLsb_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3600____closed__3; +x_3 = lean_array_push(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___regBuiltin_BitVec_reduceExtracLsb_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3600____closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___regBuiltin_BitVec_reduceExtracLsb_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3600____closed__4; +x_2 = lean_box(3); +x_3 = lean_array_push(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___regBuiltin_BitVec_reduceExtracLsb_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3600____closed__6() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___regBuiltin_BitVec_reduceExtracLsb_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3600____closed__5; +x_2 = lean_box(3); +x_3 = lean_array_push(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___regBuiltin_BitVec_reduceExtracLsb_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3600____closed__7() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___regBuiltin_BitVec_reduceExtracLsb_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3600____closed__6; +x_2 = lean_box(3); +x_3 = lean_array_push(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___regBuiltin_BitVec_reduceExtracLsb_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3600____closed__8() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___regBuiltin_BitVec_reduceExtracLsb_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3600____closed__7; +x_2 = lean_box(3); +x_3 = lean_array_push(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___regBuiltin_BitVec_reduceExtracLsb_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3600____closed__9() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_BitVec_reduceExtracLsb_x27), 9, 0); +return x_1; +} +} +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceExtracLsb_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3600_(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_BitVec_reduceExtracLsb_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3600____closed__2; +x_3 = l___regBuiltin_BitVec_reduceExtracLsb_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3600____closed__8; +x_4 = l___regBuiltin_BitVec_reduceExtracLsb_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3600____closed__9; +x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); +return x_5; +} +} +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceExtracLsb_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3602_(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_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1150____closed__1; +x_3 = l___regBuiltin_BitVec_reduceExtracLsb_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3600____closed__2; +x_4 = 1; +x_5 = l___regBuiltin_BitVec_reduceExtracLsb_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3600____closed__9; +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_BitVec_reduceExtracLsb_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3604_(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_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1152____closed__1; +x_3 = l___regBuiltin_BitVec_reduceExtracLsb_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3600____closed__2; +x_4 = 1; +x_5 = l___regBuiltin_BitVec_reduceExtracLsb_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3600____closed__9; +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_BitVec_reduceReplicate___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; +x_11 = l_Lean_Expr_appArg_x21(x_1); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_6); +x_12 = l_BitVec_fromExpr_x3f(x_11, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_11); +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; +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_1); +x_14 = !lean_is_exclusive(x_12); +if (x_14 == 0) +{ +lean_object* x_15; lean_object* x_16; +x_15 = lean_ctor_get(x_12, 0); +lean_dec(x_15); +x_16 = l_BitVec_reduceUnary___lambda__1___closed__1; +lean_ctor_set(x_12, 0, x_16); +return x_12; +} +else +{ +lean_object* x_17; lean_object* x_18; lean_object* x_19; +x_17 = lean_ctor_get(x_12, 1); +lean_inc(x_17); +lean_dec(x_12); +x_18 = l_BitVec_reduceUnary___lambda__1___closed__1; +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_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; +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 = l_Lean_Expr_appFn_x21(x_1); +x_23 = l_Lean_Expr_appArg_x21(x_22); +lean_dec(x_22); +x_24 = l_Lean_Meta_getNatValue_x3f(x_23, x_6, x_7, x_8, x_9, x_20); +if (lean_obj_tag(x_24) == 0) +{ +lean_object* x_25; +x_25 = lean_ctor_get(x_24, 0); +lean_inc(x_25); +if (lean_obj_tag(x_25) == 0) +{ +uint8_t x_26; +lean_dec(x_21); +x_26 = !lean_is_exclusive(x_24); +if (x_26 == 0) +{ +lean_object* x_27; lean_object* x_28; +x_27 = lean_ctor_get(x_24, 0); +lean_dec(x_27); +x_28 = l_BitVec_reduceUnary___lambda__1___closed__1; +lean_ctor_set(x_24, 0, x_28); +return x_24; +} +else +{ +lean_object* x_29; lean_object* x_30; lean_object* x_31; +x_29 = lean_ctor_get(x_24, 1); +lean_inc(x_29); +lean_dec(x_24); +x_30 = l_BitVec_reduceUnary___lambda__1___closed__1; +x_31 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_31, 0, x_30); +lean_ctor_set(x_31, 1, x_29); +return x_31; +} +} +else +{ +uint8_t x_32; +x_32 = !lean_is_exclusive(x_24); +if (x_32 == 0) +{ +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; uint32_t x_44; uint8_t x_45; lean_object* x_46; lean_object* x_47; +x_33 = lean_ctor_get(x_24, 0); +lean_dec(x_33); +x_34 = lean_ctor_get(x_25, 0); +lean_inc(x_34); +lean_dec(x_25); +x_35 = lean_ctor_get(x_21, 0); +lean_inc(x_35); +x_36 = lean_nat_mul(x_35, x_34); +x_37 = lean_ctor_get(x_21, 1); +lean_inc(x_37); +lean_dec(x_21); +x_38 = l_BitVec_replicate(x_35, x_34, x_37); +lean_dec(x_37); +lean_dec(x_34); +lean_dec(x_35); +x_39 = l_Lean_mkNatLit(x_36); +x_40 = l_Lean_mkNatLit(x_38); +x_41 = l_BitVec_reduceUnary___lambda__1___closed__5; +x_42 = l_Lean_mkAppB(x_41, x_39, x_40); +x_43 = lean_box(0); +x_44 = 0; +x_45 = 1; +x_46 = lean_alloc_ctor(0, 2, 5); +lean_ctor_set(x_46, 0, x_42); +lean_ctor_set(x_46, 1, x_43); +lean_ctor_set_uint32(x_46, sizeof(void*)*2, x_44); +lean_ctor_set_uint8(x_46, sizeof(void*)*2 + 4, x_45); +x_47 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_47, 0, x_46); +lean_ctor_set(x_24, 0, x_47); +return x_24; +} +else +{ +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; uint32_t x_59; uint8_t x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; +x_48 = lean_ctor_get(x_24, 1); +lean_inc(x_48); +lean_dec(x_24); +x_49 = lean_ctor_get(x_25, 0); +lean_inc(x_49); +lean_dec(x_25); +x_50 = lean_ctor_get(x_21, 0); +lean_inc(x_50); +x_51 = lean_nat_mul(x_50, x_49); +x_52 = lean_ctor_get(x_21, 1); +lean_inc(x_52); +lean_dec(x_21); +x_53 = l_BitVec_replicate(x_50, x_49, x_52); +lean_dec(x_52); +lean_dec(x_49); +lean_dec(x_50); +x_54 = l_Lean_mkNatLit(x_51); +x_55 = l_Lean_mkNatLit(x_53); +x_56 = l_BitVec_reduceUnary___lambda__1___closed__5; +x_57 = l_Lean_mkAppB(x_56, x_54, x_55); +x_58 = lean_box(0); +x_59 = 0; +x_60 = 1; +x_61 = lean_alloc_ctor(0, 2, 5); +lean_ctor_set(x_61, 0, x_57); +lean_ctor_set(x_61, 1, x_58); +lean_ctor_set_uint32(x_61, sizeof(void*)*2, x_59); +lean_ctor_set_uint8(x_61, sizeof(void*)*2 + 4, x_60); +x_62 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_62, 0, x_61); +x_63 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_63, 0, x_62); +lean_ctor_set(x_63, 1, x_48); +return x_63; +} +} +} +else +{ +uint8_t x_64; +lean_dec(x_21); +x_64 = !lean_is_exclusive(x_24); +if (x_64 == 0) +{ +return x_24; +} +else +{ +lean_object* x_65; lean_object* x_66; lean_object* x_67; +x_65 = lean_ctor_get(x_24, 0); +x_66 = lean_ctor_get(x_24, 1); +lean_inc(x_66); +lean_inc(x_65); +lean_dec(x_24); +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; +} +} +} +} +else +{ +uint8_t x_68; +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_1); +x_68 = !lean_is_exclusive(x_12); +if (x_68 == 0) +{ +return x_12; +} +else +{ +lean_object* x_69; lean_object* x_70; lean_object* x_71; +x_69 = lean_ctor_get(x_12, 0); +x_70 = lean_ctor_get(x_12, 1); +lean_inc(x_70); +lean_inc(x_69); +lean_dec(x_12); +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; +} +} +} +} +static lean_object* _init_l_BitVec_reduceReplicate___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("replicate", 9); +return x_1; +} +} +static lean_object* _init_l_BitVec_reduceReplicate___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_BitVec_reduceUnary___lambda__1___closed__2; +x_2 = l_BitVec_reduceReplicate___closed__1; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; +} +} +LEAN_EXPORT lean_object* l_BitVec_reduceReplicate(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; uint8_t x_12; +x_10 = l_BitVec_reduceReplicate___closed__2; +x_11 = lean_unsigned_to_nat(3u); +x_12 = l_Lean_Expr_isAppOfArity(x_1, x_10, x_11); +if (x_12 == 0) +{ +lean_object* x_13; lean_object* x_14; +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); +x_13 = l_BitVec_reduceUnary___lambda__1___closed__1; +x_14 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_14, 0, x_13); +lean_ctor_set(x_14, 1, x_9); +return x_14; +} +else +{ +lean_object* x_15; lean_object* x_16; +x_15 = lean_box(0); +x_16 = l_BitVec_reduceReplicate___lambda__1(x_1, x_15, 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_16; +} +} +} +LEAN_EXPORT lean_object* l_BitVec_reduceReplicate___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_BitVec_reduceReplicate___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; +} +} +static lean_object* _init_l___regBuiltin_BitVec_reduceReplicate_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3748____closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("reduceReplicate", 15); +return x_1; +} +} +static lean_object* _init_l___regBuiltin_BitVec_reduceReplicate_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3748____closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_BitVec_reduceUnary___lambda__1___closed__2; +x_2 = l___regBuiltin_BitVec_reduceReplicate_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3748____closed__1; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___regBuiltin_BitVec_reduceReplicate_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3748____closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_BitVec_reduceReplicate___closed__2; +x_2 = lean_unsigned_to_nat(3u); +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_BitVec_reduceReplicate_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3748____closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___regBuiltin_BitVec_reduceUMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1568____closed__4; +x_2 = l___regBuiltin_BitVec_reduceReplicate_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3748____closed__3; +x_3 = lean_array_push(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___regBuiltin_BitVec_reduceReplicate_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3748____closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___regBuiltin_BitVec_reduceReplicate_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3748____closed__4; +x_2 = lean_box(3); +x_3 = lean_array_push(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___regBuiltin_BitVec_reduceReplicate_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3748____closed__6() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___regBuiltin_BitVec_reduceReplicate_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3748____closed__5; +x_2 = lean_box(3); +x_3 = lean_array_push(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___regBuiltin_BitVec_reduceReplicate_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3748____closed__7() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___regBuiltin_BitVec_reduceReplicate_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3748____closed__6; +x_2 = lean_box(3); +x_3 = lean_array_push(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___regBuiltin_BitVec_reduceReplicate_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3748____closed__8() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_BitVec_reduceReplicate), 9, 0); +return x_1; +} +} +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceReplicate_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3748_(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_BitVec_reduceReplicate_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3748____closed__2; +x_3 = l___regBuiltin_BitVec_reduceReplicate_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3748____closed__7; +x_4 = l___regBuiltin_BitVec_reduceReplicate_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3748____closed__8; +x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); +return x_5; +} +} +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceReplicate_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3750_(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_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1150____closed__1; +x_3 = l___regBuiltin_BitVec_reduceReplicate_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3748____closed__2; +x_4 = 1; +x_5 = l___regBuiltin_BitVec_reduceReplicate_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3748____closed__8; +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_BitVec_reduceReplicate_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3752_(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_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1152____closed__1; +x_3 = l___regBuiltin_BitVec_reduceReplicate_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3748____closed__2; +x_4 = 1; +x_5 = l___regBuiltin_BitVec_reduceReplicate_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3748____closed__8; +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_BitVec_reduceZeroExtend___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; +x_11 = l_Lean_Expr_appArg_x21(x_1); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_6); +x_12 = l_BitVec_fromExpr_x3f(x_11, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_11); +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; +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_1); +x_14 = !lean_is_exclusive(x_12); +if (x_14 == 0) +{ +lean_object* x_15; lean_object* x_16; +x_15 = lean_ctor_get(x_12, 0); +lean_dec(x_15); +x_16 = l_BitVec_reduceUnary___lambda__1___closed__1; +lean_ctor_set(x_12, 0, x_16); +return x_12; +} +else +{ +lean_object* x_17; lean_object* x_18; lean_object* x_19; +x_17 = lean_ctor_get(x_12, 1); +lean_inc(x_17); +lean_dec(x_12); +x_18 = l_BitVec_reduceUnary___lambda__1___closed__1; +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_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; +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 = l_Lean_Expr_appFn_x21(x_1); +x_23 = l_Lean_Expr_appArg_x21(x_22); +lean_dec(x_22); +x_24 = l_Lean_Meta_getNatValue_x3f(x_23, x_6, x_7, x_8, x_9, x_20); +if (lean_obj_tag(x_24) == 0) +{ +lean_object* x_25; +x_25 = lean_ctor_get(x_24, 0); +lean_inc(x_25); +if (lean_obj_tag(x_25) == 0) +{ +uint8_t x_26; +lean_dec(x_21); +x_26 = !lean_is_exclusive(x_24); +if (x_26 == 0) +{ +lean_object* x_27; lean_object* x_28; +x_27 = lean_ctor_get(x_24, 0); +lean_dec(x_27); +x_28 = l_BitVec_reduceUnary___lambda__1___closed__1; +lean_ctor_set(x_24, 0, x_28); +return x_24; +} +else +{ +lean_object* x_29; lean_object* x_30; lean_object* x_31; +x_29 = lean_ctor_get(x_24, 1); +lean_inc(x_29); +lean_dec(x_24); +x_30 = l_BitVec_reduceUnary___lambda__1___closed__1; +x_31 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_31, 0, x_30); +lean_ctor_set(x_31, 1, x_29); +return x_31; +} +} +else +{ +uint8_t x_32; +x_32 = !lean_is_exclusive(x_24); +if (x_32 == 0) +{ +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; uint32_t x_43; uint8_t x_44; lean_object* x_45; lean_object* x_46; +x_33 = lean_ctor_get(x_24, 0); +lean_dec(x_33); +x_34 = lean_ctor_get(x_25, 0); +lean_inc(x_34); +lean_dec(x_25); +x_35 = lean_ctor_get(x_21, 0); +lean_inc(x_35); +x_36 = lean_ctor_get(x_21, 1); +lean_inc(x_36); +lean_dec(x_21); +x_37 = l_BitVec_zeroExtend(x_35, x_34, x_36); +lean_dec(x_36); +lean_dec(x_35); +x_38 = l_Lean_mkNatLit(x_34); +x_39 = l_Lean_mkNatLit(x_37); +x_40 = l_BitVec_reduceUnary___lambda__1___closed__5; +x_41 = l_Lean_mkAppB(x_40, x_38, x_39); x_42 = lean_box(0); x_43 = 0; x_44 = 1; @@ -25282,44 +25897,30 @@ lean_ctor_set_uint32(x_45, sizeof(void*)*2, x_43); lean_ctor_set_uint8(x_45, sizeof(void*)*2 + 4, x_44); x_46 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_46, 0, x_45); -lean_ctor_set(x_25, 0, x_46); -return x_25; -} +lean_ctor_set(x_24, 0, x_46); +return x_24; } else { -lean_object* x_47; lean_object* x_48; lean_object* x_49; uint8_t x_50; -x_47 = lean_ctor_get(x_25, 1); +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; uint32_t x_57; uint8_t x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; +x_47 = lean_ctor_get(x_24, 1); lean_inc(x_47); -lean_dec(x_25); -x_48 = lean_ctor_get(x_26, 0); +lean_dec(x_24); +x_48 = lean_ctor_get(x_25, 0); lean_inc(x_48); -lean_dec(x_26); +lean_dec(x_25); x_49 = lean_ctor_get(x_21, 0); lean_inc(x_49); -x_50 = lean_nat_dec_le(x_49, x_48); +x_50 = lean_ctor_get(x_21, 1); +lean_inc(x_50); +lean_dec(x_21); +x_51 = l_BitVec_zeroExtend(x_49, x_48, x_50); +lean_dec(x_50); lean_dec(x_49); -if (x_50 == 0) -{ -lean_object* x_51; lean_object* x_52; -lean_dec(x_48); -lean_dec(x_21); -x_51 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; -x_52 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_52, 0, x_51); -lean_ctor_set(x_52, 1, x_47); -return x_52; -} -else -{ -lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; uint32_t x_57; uint8_t x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; -x_53 = lean_ctor_get(x_21, 1); -lean_inc(x_53); -lean_dec(x_21); -x_54 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_54, 0, x_48); -lean_ctor_set(x_54, 1, x_53); -x_55 = l_Std_BitVec_Literal_toExpr(x_54); +x_52 = l_Lean_mkNatLit(x_48); +x_53 = l_Lean_mkNatLit(x_51); +x_54 = l_BitVec_reduceUnary___lambda__1___closed__5; +x_55 = l_Lean_mkAppB(x_54, x_52, x_53); x_56 = lean_box(0); x_57 = 0; x_58 = 1; @@ -25337,24 +25938,23 @@ return x_61; } } } -} else { uint8_t x_62; lean_dec(x_21); -x_62 = !lean_is_exclusive(x_25); +x_62 = !lean_is_exclusive(x_24); if (x_62 == 0) { -return x_25; +return x_24; } else { lean_object* x_63; lean_object* x_64; lean_object* x_65; -x_63 = lean_ctor_get(x_25, 0); -x_64 = lean_ctor_get(x_25, 1); +x_63 = lean_ctor_get(x_24, 0); +x_64 = lean_ctor_get(x_24, 1); lean_inc(x_64); lean_inc(x_63); -lean_dec(x_25); +lean_dec(x_24); x_65 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_65, 0, x_63); lean_ctor_set(x_65, 1, x_64); @@ -25392,1727 +25992,7 @@ return x_69; } } } -static lean_object* _init_l_Std_BitVec_reduceZeroExtend_x27___closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("zeroExtend'", 11); -return x_1; -} -} -static lean_object* _init_l_Std_BitVec_reduceZeroExtend_x27___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f___closed__4; -x_2 = l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f___closed__5; -x_3 = l_Std_BitVec_reduceZeroExtend_x27___closed__1; -x_4 = l_Lean_Name_mkStr3(x_1, x_2, x_3); -return x_4; -} -} -LEAN_EXPORT lean_object* l_Std_BitVec_reduceZeroExtend_x27(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; uint8_t x_12; -x_10 = l_Std_BitVec_reduceZeroExtend_x27___closed__2; -x_11 = lean_unsigned_to_nat(4u); -x_12 = l_Lean_Expr_isAppOfArity(x_1, x_10, x_11); -if (x_12 == 0) -{ -lean_object* x_13; lean_object* x_14; -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); -x_13 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; -x_14 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_14, 0, x_13); -lean_ctor_set(x_14, 1, x_9); -return x_14; -} -else -{ -lean_object* x_15; lean_object* x_16; -x_15 = lean_box(0); -x_16 = l_Std_BitVec_reduceZeroExtend_x27___lambda__1(x_1, x_15, 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_16; -} -} -} -LEAN_EXPORT lean_object* l_Std_BitVec_reduceZeroExtend_x27___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_Std_BitVec_reduceZeroExtend_x27___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; -} -} -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceZeroExtend_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3529____closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("reduceZeroExtend'", 17); -return x_1; -} -} -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceZeroExtend_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3529____closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f___closed__4; -x_2 = l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f___closed__5; -x_3 = l___regBuiltin_Std_BitVec_reduceZeroExtend_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3529____closed__1; -x_4 = l_Lean_Name_mkStr3(x_1, x_2, x_3); -return x_4; -} -} -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceZeroExtend_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3529____closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Std_BitVec_reduceZeroExtend_x27___closed__2; -x_2 = lean_unsigned_to_nat(4u); -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_Std_BitVec_reduceZeroExtend_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3529____closed__4() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1371____closed__5; -x_2 = l___regBuiltin_Std_BitVec_reduceZeroExtend_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3529____closed__3; -x_3 = lean_array_push(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceZeroExtend_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3529____closed__5() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceZeroExtend_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3529____closed__4; -x_2 = lean_box(3); -x_3 = lean_array_push(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceZeroExtend_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3529____closed__6() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceZeroExtend_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3529____closed__5; -x_2 = lean_box(3); -x_3 = lean_array_push(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceZeroExtend_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3529____closed__7() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceZeroExtend_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3529____closed__6; -x_2 = lean_box(3); -x_3 = lean_array_push(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceZeroExtend_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3529____closed__8() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceZeroExtend_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3529____closed__7; -x_2 = lean_box(3); -x_3 = lean_array_push(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceZeroExtend_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3529____closed__9() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Std_BitVec_reduceZeroExtend_x27), 9, 0); -return x_1; -} -} -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceZeroExtend_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3529_(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_Std_BitVec_reduceZeroExtend_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3529____closed__2; -x_3 = l___regBuiltin_Std_BitVec_reduceZeroExtend_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3529____closed__8; -x_4 = l___regBuiltin_Std_BitVec_reduceZeroExtend_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3529____closed__9; -x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); -return x_5; -} -} -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceZeroExtend_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3531_(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_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1373____closed__1; -x_3 = l___regBuiltin_Std_BitVec_reduceZeroExtend_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3529____closed__2; -x_4 = 1; -x_5 = l___regBuiltin_Std_BitVec_reduceZeroExtend_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3529____closed__9; -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_Std_BitVec_reduceZeroExtend_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3533_(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_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1375____closed__1; -x_3 = l___regBuiltin_Std_BitVec_reduceZeroExtend_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3529____closed__2; -x_4 = 1; -x_5 = l___regBuiltin_Std_BitVec_reduceZeroExtend_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3529____closed__9; -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_Std_BitVec_reduceShiftLeftZeroExtend___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; -lean_inc(x_1); -x_11 = l_Lean_Expr_appFn_x21(x_1); -x_12 = l_Lean_Expr_appArg_x21(x_11); -lean_dec(x_11); -lean_inc(x_9); -lean_inc(x_8); -lean_inc(x_7); -lean_inc(x_6); -x_13 = l_Std_BitVec_fromExpr_x3f(x_12, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -if (lean_obj_tag(x_13) == 0) -{ -lean_object* x_14; -x_14 = lean_ctor_get(x_13, 0); -lean_inc(x_14); -if (lean_obj_tag(x_14) == 0) -{ -uint8_t x_15; -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_1); -x_15 = !lean_is_exclusive(x_13); -if (x_15 == 0) -{ -lean_object* x_16; lean_object* x_17; -x_16 = lean_ctor_get(x_13, 0); -lean_dec(x_16); -x_17 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; -lean_ctor_set(x_13, 0, x_17); -return x_13; -} -else -{ -lean_object* x_18; lean_object* x_19; lean_object* x_20; -x_18 = lean_ctor_get(x_13, 1); -lean_inc(x_18); -lean_dec(x_13); -x_19 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; -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 -{ -lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; -x_21 = lean_ctor_get(x_13, 1); -lean_inc(x_21); -lean_dec(x_13); -x_22 = lean_ctor_get(x_14, 0); -lean_inc(x_22); -lean_dec(x_14); -x_23 = l_Lean_Expr_appArg_x21(x_1); -lean_dec(x_1); -x_24 = l_Nat_fromExpr_x3f(x_23, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_21); -lean_dec(x_6); -if (lean_obj_tag(x_24) == 0) -{ -lean_object* x_25; -x_25 = lean_ctor_get(x_24, 0); -lean_inc(x_25); -if (lean_obj_tag(x_25) == 0) -{ -uint8_t x_26; -lean_dec(x_22); -x_26 = !lean_is_exclusive(x_24); -if (x_26 == 0) -{ -lean_object* x_27; lean_object* x_28; -x_27 = lean_ctor_get(x_24, 0); -lean_dec(x_27); -x_28 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; -lean_ctor_set(x_24, 0, x_28); -return x_24; -} -else -{ -lean_object* x_29; lean_object* x_30; lean_object* x_31; -x_29 = lean_ctor_get(x_24, 1); -lean_inc(x_29); -lean_dec(x_24); -x_30 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; -x_31 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_31, 0, x_30); -lean_ctor_set(x_31, 1, x_29); -return x_31; -} -} -else -{ -uint8_t x_32; -x_32 = !lean_is_exclusive(x_24); -if (x_32 == 0) -{ -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; uint32_t x_42; uint8_t x_43; lean_object* x_44; lean_object* x_45; -x_33 = lean_ctor_get(x_24, 0); -lean_dec(x_33); -x_34 = lean_ctor_get(x_25, 0); -lean_inc(x_34); -lean_dec(x_25); -x_35 = lean_ctor_get(x_22, 0); -lean_inc(x_35); -x_36 = lean_nat_add(x_35, x_34); -lean_dec(x_35); -x_37 = lean_ctor_get(x_22, 1); -lean_inc(x_37); -lean_dec(x_22); -x_38 = lean_nat_shiftl(x_37, x_34); -lean_dec(x_34); -lean_dec(x_37); -x_39 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_39, 0, x_36); -lean_ctor_set(x_39, 1, x_38); -x_40 = l_Std_BitVec_Literal_toExpr(x_39); -x_41 = lean_box(0); -x_42 = 0; -x_43 = 1; -x_44 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_44, 0, x_40); -lean_ctor_set(x_44, 1, x_41); -lean_ctor_set_uint32(x_44, sizeof(void*)*2, x_42); -lean_ctor_set_uint8(x_44, sizeof(void*)*2 + 4, x_43); -x_45 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_45, 0, x_44); -lean_ctor_set(x_24, 0, x_45); -return x_24; -} -else -{ -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; uint32_t x_55; uint8_t x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; -x_46 = lean_ctor_get(x_24, 1); -lean_inc(x_46); -lean_dec(x_24); -x_47 = lean_ctor_get(x_25, 0); -lean_inc(x_47); -lean_dec(x_25); -x_48 = lean_ctor_get(x_22, 0); -lean_inc(x_48); -x_49 = lean_nat_add(x_48, x_47); -lean_dec(x_48); -x_50 = lean_ctor_get(x_22, 1); -lean_inc(x_50); -lean_dec(x_22); -x_51 = lean_nat_shiftl(x_50, x_47); -lean_dec(x_47); -lean_dec(x_50); -x_52 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_52, 0, x_49); -lean_ctor_set(x_52, 1, x_51); -x_53 = l_Std_BitVec_Literal_toExpr(x_52); -x_54 = lean_box(0); -x_55 = 0; -x_56 = 1; -x_57 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_57, 0, x_53); -lean_ctor_set(x_57, 1, x_54); -lean_ctor_set_uint32(x_57, sizeof(void*)*2, x_55); -lean_ctor_set_uint8(x_57, sizeof(void*)*2 + 4, x_56); -x_58 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_58, 0, x_57); -x_59 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_59, 0, x_58); -lean_ctor_set(x_59, 1, x_46); -return x_59; -} -} -} -else -{ -uint8_t x_60; -lean_dec(x_22); -x_60 = !lean_is_exclusive(x_24); -if (x_60 == 0) -{ -return x_24; -} -else -{ -lean_object* x_61; lean_object* x_62; lean_object* x_63; -x_61 = lean_ctor_get(x_24, 0); -x_62 = lean_ctor_get(x_24, 1); -lean_inc(x_62); -lean_inc(x_61); -lean_dec(x_24); -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; -} -} -} -} -else -{ -uint8_t x_64; -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_1); -x_64 = !lean_is_exclusive(x_13); -if (x_64 == 0) -{ -return x_13; -} -else -{ -lean_object* x_65; lean_object* x_66; lean_object* x_67; -x_65 = lean_ctor_get(x_13, 0); -x_66 = lean_ctor_get(x_13, 1); -lean_inc(x_66); -lean_inc(x_65); -lean_dec(x_13); -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; -} -} -} -} -static lean_object* _init_l_Std_BitVec_reduceShiftLeftZeroExtend___closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("shiftLeftZeroExtend", 19); -return x_1; -} -} -static lean_object* _init_l_Std_BitVec_reduceShiftLeftZeroExtend___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f___closed__4; -x_2 = l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f___closed__5; -x_3 = l_Std_BitVec_reduceShiftLeftZeroExtend___closed__1; -x_4 = l_Lean_Name_mkStr3(x_1, x_2, x_3); -return x_4; -} -} -LEAN_EXPORT lean_object* l_Std_BitVec_reduceShiftLeftZeroExtend(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; uint8_t x_12; -x_10 = l_Std_BitVec_reduceShiftLeftZeroExtend___closed__2; -x_11 = lean_unsigned_to_nat(3u); -x_12 = l_Lean_Expr_isAppOfArity(x_1, x_10, x_11); -if (x_12 == 0) -{ -lean_object* x_13; lean_object* x_14; -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); -x_13 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; -x_14 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_14, 0, x_13); -lean_ctor_set(x_14, 1, x_9); -return x_14; -} -else -{ -lean_object* x_15; lean_object* x_16; -x_15 = lean_box(0); -x_16 = l_Std_BitVec_reduceShiftLeftZeroExtend___lambda__1(x_1, x_15, 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_16; -} -} -} -LEAN_EXPORT lean_object* l_Std_BitVec_reduceShiftLeftZeroExtend___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_Std_BitVec_reduceShiftLeftZeroExtend___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; -} -} -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceShiftLeftZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3687____closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("reduceShiftLeftZeroExtend", 25); -return x_1; -} -} -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceShiftLeftZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3687____closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f___closed__4; -x_2 = l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f___closed__5; -x_3 = l___regBuiltin_Std_BitVec_reduceShiftLeftZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3687____closed__1; -x_4 = l_Lean_Name_mkStr3(x_1, x_2, x_3); -return x_4; -} -} -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceShiftLeftZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3687____closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Std_BitVec_reduceShiftLeftZeroExtend___closed__2; -x_2 = lean_unsigned_to_nat(3u); -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_Std_BitVec_reduceShiftLeftZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3687____closed__4() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceUMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1791____closed__4; -x_2 = l___regBuiltin_Std_BitVec_reduceShiftLeftZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3687____closed__3; -x_3 = lean_array_push(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceShiftLeftZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3687____closed__5() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceShiftLeftZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3687____closed__4; -x_2 = lean_box(3); -x_3 = lean_array_push(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceShiftLeftZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3687____closed__6() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceShiftLeftZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3687____closed__5; -x_2 = lean_box(3); -x_3 = lean_array_push(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceShiftLeftZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3687____closed__7() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceShiftLeftZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3687____closed__6; -x_2 = lean_box(3); -x_3 = lean_array_push(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceShiftLeftZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3687____closed__8() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Std_BitVec_reduceShiftLeftZeroExtend), 9, 0); -return x_1; -} -} -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceShiftLeftZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3687_(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_Std_BitVec_reduceShiftLeftZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3687____closed__2; -x_3 = l___regBuiltin_Std_BitVec_reduceShiftLeftZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3687____closed__7; -x_4 = l___regBuiltin_Std_BitVec_reduceShiftLeftZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3687____closed__8; -x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); -return x_5; -} -} -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceShiftLeftZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3689_(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_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1373____closed__1; -x_3 = l___regBuiltin_Std_BitVec_reduceShiftLeftZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3687____closed__2; -x_4 = 1; -x_5 = l___regBuiltin_Std_BitVec_reduceShiftLeftZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3687____closed__8; -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_Std_BitVec_reduceShiftLeftZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3691_(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_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1375____closed__1; -x_3 = l___regBuiltin_Std_BitVec_reduceShiftLeftZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3687____closed__2; -x_4 = 1; -x_5 = l___regBuiltin_Std_BitVec_reduceShiftLeftZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3687____closed__8; -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_Std_BitVec_reduceExtracLsb_x27___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; -x_11 = l_Lean_Expr_appArg_x21(x_1); -lean_inc(x_9); -lean_inc(x_8); -lean_inc(x_7); -lean_inc(x_6); -x_12 = l_Std_BitVec_fromExpr_x3f(x_11, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -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; -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_1); -x_14 = !lean_is_exclusive(x_12); -if (x_14 == 0) -{ -lean_object* x_15; lean_object* x_16; -x_15 = lean_ctor_get(x_12, 0); -lean_dec(x_15); -x_16 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; -lean_ctor_set(x_12, 0, x_16); -return x_12; -} -else -{ -lean_object* x_17; lean_object* x_18; lean_object* x_19; -x_17 = lean_ctor_get(x_12, 1); -lean_inc(x_17); -lean_dec(x_12); -x_18 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; -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_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; -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 = l_Lean_Expr_appFn_x21(x_1); -lean_inc(x_22); -x_23 = l_Lean_Expr_appFn_x21(x_22); -x_24 = l_Lean_Expr_appArg_x21(x_23); -lean_dec(x_23); -lean_inc(x_9); -lean_inc(x_8); -lean_inc(x_7); -x_25 = l_Nat_fromExpr_x3f(x_24, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_20); -if (lean_obj_tag(x_25) == 0) -{ -lean_object* x_26; -x_26 = lean_ctor_get(x_25, 0); -lean_inc(x_26); -if (lean_obj_tag(x_26) == 0) -{ -uint8_t x_27; -lean_dec(x_22); -lean_dec(x_21); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -x_27 = !lean_is_exclusive(x_25); -if (x_27 == 0) -{ -lean_object* x_28; lean_object* x_29; -x_28 = lean_ctor_get(x_25, 0); -lean_dec(x_28); -x_29 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; -lean_ctor_set(x_25, 0, x_29); -return x_25; -} -else -{ -lean_object* x_30; lean_object* x_31; lean_object* x_32; -x_30 = lean_ctor_get(x_25, 1); -lean_inc(x_30); -lean_dec(x_25); -x_31 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; -x_32 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_32, 0, x_31); -lean_ctor_set(x_32, 1, x_30); -return x_32; -} -} -else -{ -lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; -x_33 = lean_ctor_get(x_25, 1); -lean_inc(x_33); -lean_dec(x_25); -x_34 = lean_ctor_get(x_26, 0); -lean_inc(x_34); -lean_dec(x_26); -x_35 = l_Lean_Expr_appArg_x21(x_22); -lean_dec(x_22); -x_36 = l_Nat_fromExpr_x3f(x_35, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_33); -lean_dec(x_6); -if (lean_obj_tag(x_36) == 0) -{ -lean_object* x_37; -x_37 = lean_ctor_get(x_36, 0); -lean_inc(x_37); -if (lean_obj_tag(x_37) == 0) -{ -uint8_t x_38; -lean_dec(x_34); -lean_dec(x_21); -x_38 = !lean_is_exclusive(x_36); -if (x_38 == 0) -{ -lean_object* x_39; lean_object* x_40; -x_39 = lean_ctor_get(x_36, 0); -lean_dec(x_39); -x_40 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; -lean_ctor_set(x_36, 0, x_40); -return x_36; -} -else -{ -lean_object* x_41; lean_object* x_42; lean_object* x_43; -x_41 = lean_ctor_get(x_36, 1); -lean_inc(x_41); -lean_dec(x_36); -x_42 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; -x_43 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_43, 0, x_42); -lean_ctor_set(x_43, 1, x_41); -return x_43; -} -} -else -{ -uint8_t x_44; -x_44 = !lean_is_exclusive(x_36); -if (x_44 == 0) -{ -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; uint32_t x_52; uint8_t x_53; lean_object* x_54; lean_object* x_55; -x_45 = lean_ctor_get(x_36, 0); -lean_dec(x_45); -x_46 = lean_ctor_get(x_37, 0); -lean_inc(x_46); -lean_dec(x_37); -x_47 = lean_ctor_get(x_21, 1); -lean_inc(x_47); -lean_dec(x_21); -x_48 = l_Std_BitVec_extractLsb_x27___rarg(x_34, x_46, x_47); -lean_dec(x_47); -lean_dec(x_34); -x_49 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_49, 0, x_46); -lean_ctor_set(x_49, 1, x_48); -x_50 = l_Std_BitVec_Literal_toExpr(x_49); -x_51 = lean_box(0); -x_52 = 0; -x_53 = 1; -x_54 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_54, 0, x_50); -lean_ctor_set(x_54, 1, x_51); -lean_ctor_set_uint32(x_54, sizeof(void*)*2, x_52); -lean_ctor_set_uint8(x_54, sizeof(void*)*2 + 4, x_53); -x_55 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_55, 0, x_54); -lean_ctor_set(x_36, 0, x_55); -return x_36; -} -else -{ -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; uint32_t x_63; uint8_t x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; -x_56 = lean_ctor_get(x_36, 1); -lean_inc(x_56); -lean_dec(x_36); -x_57 = lean_ctor_get(x_37, 0); -lean_inc(x_57); -lean_dec(x_37); -x_58 = lean_ctor_get(x_21, 1); -lean_inc(x_58); -lean_dec(x_21); -x_59 = l_Std_BitVec_extractLsb_x27___rarg(x_34, x_57, x_58); -lean_dec(x_58); -lean_dec(x_34); -x_60 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_60, 0, x_57); -lean_ctor_set(x_60, 1, x_59); -x_61 = l_Std_BitVec_Literal_toExpr(x_60); -x_62 = lean_box(0); -x_63 = 0; -x_64 = 1; -x_65 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_65, 0, x_61); -lean_ctor_set(x_65, 1, x_62); -lean_ctor_set_uint32(x_65, sizeof(void*)*2, x_63); -lean_ctor_set_uint8(x_65, sizeof(void*)*2 + 4, x_64); -x_66 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_66, 0, x_65); -x_67 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_67, 0, x_66); -lean_ctor_set(x_67, 1, x_56); -return x_67; -} -} -} -else -{ -uint8_t x_68; -lean_dec(x_34); -lean_dec(x_21); -x_68 = !lean_is_exclusive(x_36); -if (x_68 == 0) -{ -return x_36; -} -else -{ -lean_object* x_69; lean_object* x_70; lean_object* x_71; -x_69 = lean_ctor_get(x_36, 0); -x_70 = lean_ctor_get(x_36, 1); -lean_inc(x_70); -lean_inc(x_69); -lean_dec(x_36); -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; -} -} -} -} -else -{ -uint8_t x_72; -lean_dec(x_22); -lean_dec(x_21); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -x_72 = !lean_is_exclusive(x_25); -if (x_72 == 0) -{ -return x_25; -} -else -{ -lean_object* x_73; lean_object* x_74; lean_object* x_75; -x_73 = lean_ctor_get(x_25, 0); -x_74 = lean_ctor_get(x_25, 1); -lean_inc(x_74); -lean_inc(x_73); -lean_dec(x_25); -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; -} -} -} -} -else -{ -uint8_t x_76; -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_1); -x_76 = !lean_is_exclusive(x_12); -if (x_76 == 0) -{ -return x_12; -} -else -{ -lean_object* x_77; lean_object* x_78; lean_object* x_79; -x_77 = lean_ctor_get(x_12, 0); -x_78 = lean_ctor_get(x_12, 1); -lean_inc(x_78); -lean_inc(x_77); -lean_dec(x_12); -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; -} -} -} -} -static lean_object* _init_l_Std_BitVec_reduceExtracLsb_x27___closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("extractLsb'", 11); -return x_1; -} -} -static lean_object* _init_l_Std_BitVec_reduceExtracLsb_x27___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f___closed__4; -x_2 = l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f___closed__5; -x_3 = l_Std_BitVec_reduceExtracLsb_x27___closed__1; -x_4 = l_Lean_Name_mkStr3(x_1, x_2, x_3); -return x_4; -} -} -LEAN_EXPORT lean_object* l_Std_BitVec_reduceExtracLsb_x27(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; uint8_t x_12; -x_10 = l_Std_BitVec_reduceExtracLsb_x27___closed__2; -x_11 = lean_unsigned_to_nat(4u); -x_12 = l_Lean_Expr_isAppOfArity(x_1, x_10, x_11); -if (x_12 == 0) -{ -lean_object* x_13; lean_object* x_14; -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); -x_13 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; -x_14 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_14, 0, x_13); -lean_ctor_set(x_14, 1, x_9); -return x_14; -} -else -{ -lean_object* x_15; lean_object* x_16; -x_15 = lean_box(0); -x_16 = l_Std_BitVec_reduceExtracLsb_x27___lambda__1(x_1, x_15, 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_16; -} -} -} -LEAN_EXPORT lean_object* l_Std_BitVec_reduceExtracLsb_x27___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_Std_BitVec_reduceExtracLsb_x27___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; -} -} -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceExtracLsb_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3879____closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("reduceExtracLsb'", 16); -return x_1; -} -} -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceExtracLsb_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3879____closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f___closed__4; -x_2 = l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f___closed__5; -x_3 = l___regBuiltin_Std_BitVec_reduceExtracLsb_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3879____closed__1; -x_4 = l_Lean_Name_mkStr3(x_1, x_2, x_3); -return x_4; -} -} -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceExtracLsb_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3879____closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Std_BitVec_reduceExtracLsb_x27___closed__2; -x_2 = lean_unsigned_to_nat(4u); -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_Std_BitVec_reduceExtracLsb_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3879____closed__4() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1371____closed__5; -x_2 = l___regBuiltin_Std_BitVec_reduceExtracLsb_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3879____closed__3; -x_3 = lean_array_push(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceExtracLsb_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3879____closed__5() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceExtracLsb_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3879____closed__4; -x_2 = lean_box(3); -x_3 = lean_array_push(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceExtracLsb_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3879____closed__6() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceExtracLsb_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3879____closed__5; -x_2 = lean_box(3); -x_3 = lean_array_push(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceExtracLsb_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3879____closed__7() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceExtracLsb_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3879____closed__6; -x_2 = lean_box(3); -x_3 = lean_array_push(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceExtracLsb_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3879____closed__8() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceExtracLsb_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3879____closed__7; -x_2 = lean_box(3); -x_3 = lean_array_push(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceExtracLsb_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3879____closed__9() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Std_BitVec_reduceExtracLsb_x27), 9, 0); -return x_1; -} -} -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceExtracLsb_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3879_(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_Std_BitVec_reduceExtracLsb_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3879____closed__2; -x_3 = l___regBuiltin_Std_BitVec_reduceExtracLsb_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3879____closed__8; -x_4 = l___regBuiltin_Std_BitVec_reduceExtracLsb_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3879____closed__9; -x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); -return x_5; -} -} -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceExtracLsb_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3881_(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_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1373____closed__1; -x_3 = l___regBuiltin_Std_BitVec_reduceExtracLsb_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3879____closed__2; -x_4 = 1; -x_5 = l___regBuiltin_Std_BitVec_reduceExtracLsb_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3879____closed__9; -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_Std_BitVec_reduceExtracLsb_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3883_(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_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1375____closed__1; -x_3 = l___regBuiltin_Std_BitVec_reduceExtracLsb_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3879____closed__2; -x_4 = 1; -x_5 = l___regBuiltin_Std_BitVec_reduceExtracLsb_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3879____closed__9; -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_Std_BitVec_reduceReplicate___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; -x_11 = l_Lean_Expr_appArg_x21(x_1); -lean_inc(x_9); -lean_inc(x_8); -lean_inc(x_7); -lean_inc(x_6); -x_12 = l_Std_BitVec_fromExpr_x3f(x_11, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -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; -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_1); -x_14 = !lean_is_exclusive(x_12); -if (x_14 == 0) -{ -lean_object* x_15; lean_object* x_16; -x_15 = lean_ctor_get(x_12, 0); -lean_dec(x_15); -x_16 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; -lean_ctor_set(x_12, 0, x_16); -return x_12; -} -else -{ -lean_object* x_17; lean_object* x_18; lean_object* x_19; -x_17 = lean_ctor_get(x_12, 1); -lean_inc(x_17); -lean_dec(x_12); -x_18 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; -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_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; -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 = l_Lean_Expr_appFn_x21(x_1); -x_23 = l_Lean_Expr_appArg_x21(x_22); -lean_dec(x_22); -x_24 = l_Nat_fromExpr_x3f(x_23, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_20); -lean_dec(x_6); -if (lean_obj_tag(x_24) == 0) -{ -lean_object* x_25; -x_25 = lean_ctor_get(x_24, 0); -lean_inc(x_25); -if (lean_obj_tag(x_25) == 0) -{ -uint8_t x_26; -lean_dec(x_21); -x_26 = !lean_is_exclusive(x_24); -if (x_26 == 0) -{ -lean_object* x_27; lean_object* x_28; -x_27 = lean_ctor_get(x_24, 0); -lean_dec(x_27); -x_28 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; -lean_ctor_set(x_24, 0, x_28); -return x_24; -} -else -{ -lean_object* x_29; lean_object* x_30; lean_object* x_31; -x_29 = lean_ctor_get(x_24, 1); -lean_inc(x_29); -lean_dec(x_24); -x_30 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; -x_31 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_31, 0, x_30); -lean_ctor_set(x_31, 1, x_29); -return x_31; -} -} -else -{ -uint8_t x_32; -x_32 = !lean_is_exclusive(x_24); -if (x_32 == 0) -{ -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; uint32_t x_42; uint8_t x_43; lean_object* x_44; lean_object* x_45; -x_33 = lean_ctor_get(x_24, 0); -lean_dec(x_33); -x_34 = lean_ctor_get(x_25, 0); -lean_inc(x_34); -lean_dec(x_25); -x_35 = lean_ctor_get(x_21, 0); -lean_inc(x_35); -x_36 = lean_nat_mul(x_35, x_34); -x_37 = lean_ctor_get(x_21, 1); -lean_inc(x_37); -lean_dec(x_21); -x_38 = l_Std_BitVec_replicate(x_35, x_34, x_37); -lean_dec(x_37); -lean_dec(x_34); -lean_dec(x_35); -x_39 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_39, 0, x_36); -lean_ctor_set(x_39, 1, x_38); -x_40 = l_Std_BitVec_Literal_toExpr(x_39); -x_41 = lean_box(0); -x_42 = 0; -x_43 = 1; -x_44 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_44, 0, x_40); -lean_ctor_set(x_44, 1, x_41); -lean_ctor_set_uint32(x_44, sizeof(void*)*2, x_42); -lean_ctor_set_uint8(x_44, sizeof(void*)*2 + 4, x_43); -x_45 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_45, 0, x_44); -lean_ctor_set(x_24, 0, x_45); -return x_24; -} -else -{ -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; uint32_t x_55; uint8_t x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; -x_46 = lean_ctor_get(x_24, 1); -lean_inc(x_46); -lean_dec(x_24); -x_47 = lean_ctor_get(x_25, 0); -lean_inc(x_47); -lean_dec(x_25); -x_48 = lean_ctor_get(x_21, 0); -lean_inc(x_48); -x_49 = lean_nat_mul(x_48, x_47); -x_50 = lean_ctor_get(x_21, 1); -lean_inc(x_50); -lean_dec(x_21); -x_51 = l_Std_BitVec_replicate(x_48, x_47, x_50); -lean_dec(x_50); -lean_dec(x_47); -lean_dec(x_48); -x_52 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_52, 0, x_49); -lean_ctor_set(x_52, 1, x_51); -x_53 = l_Std_BitVec_Literal_toExpr(x_52); -x_54 = lean_box(0); -x_55 = 0; -x_56 = 1; -x_57 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_57, 0, x_53); -lean_ctor_set(x_57, 1, x_54); -lean_ctor_set_uint32(x_57, sizeof(void*)*2, x_55); -lean_ctor_set_uint8(x_57, sizeof(void*)*2 + 4, x_56); -x_58 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_58, 0, x_57); -x_59 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_59, 0, x_58); -lean_ctor_set(x_59, 1, x_46); -return x_59; -} -} -} -else -{ -uint8_t x_60; -lean_dec(x_21); -x_60 = !lean_is_exclusive(x_24); -if (x_60 == 0) -{ -return x_24; -} -else -{ -lean_object* x_61; lean_object* x_62; lean_object* x_63; -x_61 = lean_ctor_get(x_24, 0); -x_62 = lean_ctor_get(x_24, 1); -lean_inc(x_62); -lean_inc(x_61); -lean_dec(x_24); -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; -} -} -} -} -else -{ -uint8_t x_64; -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_1); -x_64 = !lean_is_exclusive(x_12); -if (x_64 == 0) -{ -return x_12; -} -else -{ -lean_object* x_65; lean_object* x_66; lean_object* x_67; -x_65 = lean_ctor_get(x_12, 0); -x_66 = lean_ctor_get(x_12, 1); -lean_inc(x_66); -lean_inc(x_65); -lean_dec(x_12); -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; -} -} -} -} -static lean_object* _init_l_Std_BitVec_reduceReplicate___closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("replicate", 9); -return x_1; -} -} -static lean_object* _init_l_Std_BitVec_reduceReplicate___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f___closed__4; -x_2 = l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f___closed__5; -x_3 = l_Std_BitVec_reduceReplicate___closed__1; -x_4 = l_Lean_Name_mkStr3(x_1, x_2, x_3); -return x_4; -} -} -LEAN_EXPORT lean_object* l_Std_BitVec_reduceReplicate(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; uint8_t x_12; -x_10 = l_Std_BitVec_reduceReplicate___closed__2; -x_11 = lean_unsigned_to_nat(3u); -x_12 = l_Lean_Expr_isAppOfArity(x_1, x_10, x_11); -if (x_12 == 0) -{ -lean_object* x_13; lean_object* x_14; -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); -x_13 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; -x_14 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_14, 0, x_13); -lean_ctor_set(x_14, 1, x_9); -return x_14; -} -else -{ -lean_object* x_15; lean_object* x_16; -x_15 = lean_box(0); -x_16 = l_Std_BitVec_reduceReplicate___lambda__1(x_1, x_15, 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_16; -} -} -} -LEAN_EXPORT lean_object* l_Std_BitVec_reduceReplicate___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_Std_BitVec_reduceReplicate___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; -} -} -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceReplicate_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4037____closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("reduceReplicate", 15); -return x_1; -} -} -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceReplicate_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4037____closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f___closed__4; -x_2 = l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f___closed__5; -x_3 = l___regBuiltin_Std_BitVec_reduceReplicate_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4037____closed__1; -x_4 = l_Lean_Name_mkStr3(x_1, x_2, x_3); -return x_4; -} -} -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceReplicate_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4037____closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Std_BitVec_reduceReplicate___closed__2; -x_2 = lean_unsigned_to_nat(3u); -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_Std_BitVec_reduceReplicate_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4037____closed__4() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceUMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1791____closed__4; -x_2 = l___regBuiltin_Std_BitVec_reduceReplicate_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4037____closed__3; -x_3 = lean_array_push(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceReplicate_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4037____closed__5() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceReplicate_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4037____closed__4; -x_2 = lean_box(3); -x_3 = lean_array_push(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceReplicate_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4037____closed__6() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceReplicate_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4037____closed__5; -x_2 = lean_box(3); -x_3 = lean_array_push(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceReplicate_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4037____closed__7() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceReplicate_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4037____closed__6; -x_2 = lean_box(3); -x_3 = lean_array_push(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceReplicate_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4037____closed__8() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Std_BitVec_reduceReplicate), 9, 0); -return x_1; -} -} -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceReplicate_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4037_(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_Std_BitVec_reduceReplicate_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4037____closed__2; -x_3 = l___regBuiltin_Std_BitVec_reduceReplicate_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4037____closed__7; -x_4 = l___regBuiltin_Std_BitVec_reduceReplicate_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4037____closed__8; -x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); -return x_5; -} -} -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceReplicate_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4039_(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_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1373____closed__1; -x_3 = l___regBuiltin_Std_BitVec_reduceReplicate_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4037____closed__2; -x_4 = 1; -x_5 = l___regBuiltin_Std_BitVec_reduceReplicate_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4037____closed__8; -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_Std_BitVec_reduceReplicate_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4041_(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_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1375____closed__1; -x_3 = l___regBuiltin_Std_BitVec_reduceReplicate_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4037____closed__2; -x_4 = 1; -x_5 = l___regBuiltin_Std_BitVec_reduceReplicate_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4037____closed__8; -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_Std_BitVec_reduceZeroExtend___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; -x_11 = l_Lean_Expr_appArg_x21(x_1); -lean_inc(x_9); -lean_inc(x_8); -lean_inc(x_7); -lean_inc(x_6); -x_12 = l_Std_BitVec_fromExpr_x3f(x_11, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -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; -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_1); -x_14 = !lean_is_exclusive(x_12); -if (x_14 == 0) -{ -lean_object* x_15; lean_object* x_16; -x_15 = lean_ctor_get(x_12, 0); -lean_dec(x_15); -x_16 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; -lean_ctor_set(x_12, 0, x_16); -return x_12; -} -else -{ -lean_object* x_17; lean_object* x_18; lean_object* x_19; -x_17 = lean_ctor_get(x_12, 1); -lean_inc(x_17); -lean_dec(x_12); -x_18 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; -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_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; -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 = l_Lean_Expr_appFn_x21(x_1); -x_23 = l_Lean_Expr_appArg_x21(x_22); -lean_dec(x_22); -x_24 = l_Nat_fromExpr_x3f(x_23, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_20); -lean_dec(x_6); -if (lean_obj_tag(x_24) == 0) -{ -lean_object* x_25; -x_25 = lean_ctor_get(x_24, 0); -lean_inc(x_25); -if (lean_obj_tag(x_25) == 0) -{ -uint8_t x_26; -lean_dec(x_21); -x_26 = !lean_is_exclusive(x_24); -if (x_26 == 0) -{ -lean_object* x_27; lean_object* x_28; -x_27 = lean_ctor_get(x_24, 0); -lean_dec(x_27); -x_28 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; -lean_ctor_set(x_24, 0, x_28); -return x_24; -} -else -{ -lean_object* x_29; lean_object* x_30; lean_object* x_31; -x_29 = lean_ctor_get(x_24, 1); -lean_inc(x_29); -lean_dec(x_24); -x_30 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; -x_31 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_31, 0, x_30); -lean_ctor_set(x_31, 1, x_29); -return x_31; -} -} -else -{ -uint8_t x_32; -x_32 = !lean_is_exclusive(x_24); -if (x_32 == 0) -{ -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; uint32_t x_41; uint8_t x_42; lean_object* x_43; lean_object* x_44; -x_33 = lean_ctor_get(x_24, 0); -lean_dec(x_33); -x_34 = lean_ctor_get(x_25, 0); -lean_inc(x_34); -lean_dec(x_25); -x_35 = lean_ctor_get(x_21, 0); -lean_inc(x_35); -x_36 = lean_ctor_get(x_21, 1); -lean_inc(x_36); -lean_dec(x_21); -x_37 = l_Std_BitVec_zeroExtend(x_35, x_34, x_36); -lean_dec(x_36); -lean_dec(x_35); -x_38 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_38, 0, x_34); -lean_ctor_set(x_38, 1, x_37); -x_39 = l_Std_BitVec_Literal_toExpr(x_38); -x_40 = lean_box(0); -x_41 = 0; -x_42 = 1; -x_43 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_43, 0, x_39); -lean_ctor_set(x_43, 1, x_40); -lean_ctor_set_uint32(x_43, sizeof(void*)*2, x_41); -lean_ctor_set_uint8(x_43, sizeof(void*)*2 + 4, x_42); -x_44 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_44, 0, x_43); -lean_ctor_set(x_24, 0, x_44); -return x_24; -} -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_object* x_52; uint32_t x_53; uint8_t x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; -x_45 = lean_ctor_get(x_24, 1); -lean_inc(x_45); -lean_dec(x_24); -x_46 = lean_ctor_get(x_25, 0); -lean_inc(x_46); -lean_dec(x_25); -x_47 = lean_ctor_get(x_21, 0); -lean_inc(x_47); -x_48 = lean_ctor_get(x_21, 1); -lean_inc(x_48); -lean_dec(x_21); -x_49 = l_Std_BitVec_zeroExtend(x_47, x_46, x_48); -lean_dec(x_48); -lean_dec(x_47); -x_50 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_50, 0, x_46); -lean_ctor_set(x_50, 1, x_49); -x_51 = l_Std_BitVec_Literal_toExpr(x_50); -x_52 = lean_box(0); -x_53 = 0; -x_54 = 1; -x_55 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_55, 0, x_51); -lean_ctor_set(x_55, 1, x_52); -lean_ctor_set_uint32(x_55, sizeof(void*)*2, x_53); -lean_ctor_set_uint8(x_55, sizeof(void*)*2 + 4, x_54); -x_56 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_56, 0, x_55); -x_57 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_57, 0, x_56); -lean_ctor_set(x_57, 1, x_45); -return x_57; -} -} -} -else -{ -uint8_t x_58; -lean_dec(x_21); -x_58 = !lean_is_exclusive(x_24); -if (x_58 == 0) -{ -return x_24; -} -else -{ -lean_object* x_59; lean_object* x_60; lean_object* x_61; -x_59 = lean_ctor_get(x_24, 0); -x_60 = lean_ctor_get(x_24, 1); -lean_inc(x_60); -lean_inc(x_59); -lean_dec(x_24); -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; -} -} -} -} -else -{ -uint8_t x_62; -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_1); -x_62 = !lean_is_exclusive(x_12); -if (x_62 == 0) -{ -return x_12; -} -else -{ -lean_object* x_63; lean_object* x_64; lean_object* x_65; -x_63 = lean_ctor_get(x_12, 0); -x_64 = lean_ctor_get(x_12, 1); -lean_inc(x_64); -lean_inc(x_63); -lean_dec(x_12); -x_65 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_65, 0, x_63); -lean_ctor_set(x_65, 1, x_64); -return x_65; -} -} -} -} -static lean_object* _init_l_Std_BitVec_reduceZeroExtend___closed__1() { +static lean_object* _init_l_BitVec_reduceZeroExtend___closed__1() { _start: { lean_object* x_1; @@ -27120,22 +26000,21 @@ x_1 = lean_mk_string_from_bytes("zeroExtend", 10); return x_1; } } -static lean_object* _init_l_Std_BitVec_reduceZeroExtend___closed__2() { +static lean_object* _init_l_BitVec_reduceZeroExtend___closed__2() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f___closed__4; -x_2 = l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f___closed__5; -x_3 = l_Std_BitVec_reduceZeroExtend___closed__1; -x_4 = l_Lean_Name_mkStr3(x_1, x_2, x_3); -return x_4; +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_BitVec_reduceUnary___lambda__1___closed__2; +x_2 = l_BitVec_reduceZeroExtend___closed__1; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; } } -LEAN_EXPORT lean_object* l_Std_BitVec_reduceZeroExtend(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_EXPORT lean_object* l_BitVec_reduceZeroExtend(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; uint8_t x_12; -x_10 = l_Std_BitVec_reduceZeroExtend___closed__2; +x_10 = l_BitVec_reduceZeroExtend___closed__2; x_11 = lean_unsigned_to_nat(3u); x_12 = l_Lean_Expr_isAppOfArity(x_1, x_10, x_11); if (x_12 == 0) @@ -27149,7 +26028,7 @@ lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_13 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_13 = l_BitVec_reduceUnary___lambda__1___closed__1; x_14 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_14, 0, x_13); lean_ctor_set(x_14, 1, x_9); @@ -27159,7 +26038,7 @@ else { lean_object* x_15; lean_object* x_16; x_15 = lean_box(0); -x_16 = l_Std_BitVec_reduceZeroExtend___lambda__1(x_1, x_15, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_16 = l_BitVec_reduceZeroExtend___lambda__1(x_1, x_15, 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); @@ -27167,11 +26046,11 @@ return x_16; } } } -LEAN_EXPORT lean_object* l_Std_BitVec_reduceZeroExtend___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) { +LEAN_EXPORT lean_object* l_BitVec_reduceZeroExtend___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_Std_BitVec_reduceZeroExtend___lambda__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_11 = l_BitVec_reduceZeroExtend___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); @@ -27179,7 +26058,7 @@ lean_dec(x_2); return x_11; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4058____closed__1() { +static lean_object* _init_l___regBuiltin_BitVec_reduceZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3769____closed__1() { _start: { lean_object* x_1; @@ -27187,22 +26066,21 @@ x_1 = lean_mk_string_from_bytes("reduceZeroExtend", 16); return x_1; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4058____closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f___closed__4; -x_2 = l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f___closed__5; -x_3 = l___regBuiltin_Std_BitVec_reduceZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4058____closed__1; -x_4 = l_Lean_Name_mkStr3(x_1, x_2, x_3); -return x_4; -} -} -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4058____closed__3() { +static lean_object* _init_l___regBuiltin_BitVec_reduceZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3769____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Std_BitVec_reduceZeroExtend___closed__2; +x_1 = l_BitVec_reduceUnary___lambda__1___closed__2; +x_2 = l___regBuiltin_BitVec_reduceZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3769____closed__1; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___regBuiltin_BitVec_reduceZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3769____closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_BitVec_reduceZeroExtend___closed__2; x_2 = lean_unsigned_to_nat(3u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -27210,90 +26088,90 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4058____closed__4() { +static lean_object* _init_l___regBuiltin_BitVec_reduceZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3769____closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceUMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1791____closed__4; -x_2 = l___regBuiltin_Std_BitVec_reduceZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4058____closed__3; +x_1 = l___regBuiltin_BitVec_reduceUMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1568____closed__4; +x_2 = l___regBuiltin_BitVec_reduceZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3769____closed__3; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4058____closed__5() { +static lean_object* _init_l___regBuiltin_BitVec_reduceZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3769____closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4058____closed__4; +x_1 = l___regBuiltin_BitVec_reduceZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3769____closed__4; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4058____closed__6() { +static lean_object* _init_l___regBuiltin_BitVec_reduceZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3769____closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4058____closed__5; +x_1 = l___regBuiltin_BitVec_reduceZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3769____closed__5; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4058____closed__7() { +static lean_object* _init_l___regBuiltin_BitVec_reduceZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3769____closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4058____closed__6; +x_1 = l___regBuiltin_BitVec_reduceZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3769____closed__6; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4058____closed__8() { +static lean_object* _init_l___regBuiltin_BitVec_reduceZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3769____closed__8() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Std_BitVec_reduceZeroExtend), 9, 0); +x_1 = lean_alloc_closure((void*)(l_BitVec_reduceZeroExtend), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4058_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3769_(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_Std_BitVec_reduceZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4058____closed__2; -x_3 = l___regBuiltin_Std_BitVec_reduceZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4058____closed__7; -x_4 = l___regBuiltin_Std_BitVec_reduceZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4058____closed__8; +x_2 = l___regBuiltin_BitVec_reduceZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3769____closed__2; +x_3 = l___regBuiltin_BitVec_reduceZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3769____closed__7; +x_4 = l___regBuiltin_BitVec_reduceZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3769____closed__8; x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); return x_5; } } -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4060_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3771_(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_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1373____closed__1; -x_3 = l___regBuiltin_Std_BitVec_reduceZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4058____closed__2; +x_2 = l___regBuiltin_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1150____closed__1; +x_3 = l___regBuiltin_BitVec_reduceZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3769____closed__2; x_4 = 1; -x_5 = l___regBuiltin_Std_BitVec_reduceZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4058____closed__8; +x_5 = l___regBuiltin_BitVec_reduceZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3769____closed__8; 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_Std_BitVec_reduceZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4062_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3773_(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_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1375____closed__1; -x_3 = l___regBuiltin_Std_BitVec_reduceZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4058____closed__2; +x_2 = l___regBuiltin_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1152____closed__1; +x_3 = l___regBuiltin_BitVec_reduceZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3769____closed__2; x_4 = 1; -x_5 = l___regBuiltin_Std_BitVec_reduceZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4058____closed__8; +x_5 = l___regBuiltin_BitVec_reduceZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3769____closed__8; 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_Std_BitVec_reduceSignExtend___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) { +LEAN_EXPORT lean_object* l_BitVec_reduceSignExtend___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; @@ -27302,7 +26180,8 @@ lean_inc(x_9); lean_inc(x_8); lean_inc(x_7); lean_inc(x_6); -x_12 = l_Std_BitVec_fromExpr_x3f(x_11, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_12 = l_BitVec_fromExpr_x3f(x_11, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_11); if (lean_obj_tag(x_12) == 0) { lean_object* x_13; @@ -27322,7 +26201,7 @@ if (x_14 == 0) lean_object* x_15; lean_object* x_16; x_15 = lean_ctor_get(x_12, 0); lean_dec(x_15); -x_16 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_16 = l_BitVec_reduceUnary___lambda__1___closed__1; lean_ctor_set(x_12, 0, x_16); return x_12; } @@ -27332,7 +26211,7 @@ lean_object* x_17; lean_object* x_18; lean_object* x_19; x_17 = lean_ctor_get(x_12, 1); lean_inc(x_17); lean_dec(x_12); -x_18 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_18 = l_BitVec_reduceUnary___lambda__1___closed__1; x_19 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_19, 0, x_18); lean_ctor_set(x_19, 1, x_17); @@ -27351,8 +26230,7 @@ lean_dec(x_13); x_22 = l_Lean_Expr_appFn_x21(x_1); x_23 = l_Lean_Expr_appArg_x21(x_22); lean_dec(x_22); -x_24 = l_Nat_fromExpr_x3f(x_23, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_20); -lean_dec(x_6); +x_24 = l_Lean_Meta_getNatValue_x3f(x_23, x_6, x_7, x_8, x_9, x_20); if (lean_obj_tag(x_24) == 0) { lean_object* x_25; @@ -27368,7 +26246,7 @@ if (x_26 == 0) lean_object* x_27; lean_object* x_28; x_27 = lean_ctor_get(x_24, 0); lean_dec(x_27); -x_28 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_28 = l_BitVec_reduceUnary___lambda__1___closed__1; lean_ctor_set(x_24, 0, x_28); return x_24; } @@ -27378,7 +26256,7 @@ lean_object* x_29; lean_object* x_30; lean_object* x_31; x_29 = lean_ctor_get(x_24, 1); lean_inc(x_29); lean_dec(x_24); -x_30 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_30 = l_BitVec_reduceUnary___lambda__1___closed__1; x_31 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_31, 0, x_30); lean_ctor_set(x_31, 1, x_29); @@ -27391,7 +26269,7 @@ uint8_t x_32; x_32 = !lean_is_exclusive(x_24); if (x_32 == 0) { -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; uint32_t x_41; uint8_t x_42; lean_object* x_43; lean_object* x_44; +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; uint32_t x_43; uint8_t x_44; lean_object* x_45; lean_object* x_46; x_33 = lean_ctor_get(x_24, 0); lean_dec(x_33); x_34 = lean_ctor_get(x_25, 0); @@ -27402,108 +26280,79 @@ lean_inc(x_35); x_36 = lean_ctor_get(x_21, 1); lean_inc(x_36); lean_dec(x_21); -x_37 = l_Std_BitVec_signExtend(x_35, x_34, x_36); +x_37 = l_BitVec_signExtend(x_35, x_34, x_36); lean_dec(x_35); -x_38 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_38, 0, x_34); -lean_ctor_set(x_38, 1, x_37); -x_39 = l_Std_BitVec_Literal_toExpr(x_38); -x_40 = lean_box(0); -x_41 = 0; -x_42 = 1; -x_43 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_43, 0, x_39); -lean_ctor_set(x_43, 1, x_40); -lean_ctor_set_uint32(x_43, sizeof(void*)*2, x_41); -lean_ctor_set_uint8(x_43, sizeof(void*)*2 + 4, x_42); -x_44 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_44, 0, x_43); -lean_ctor_set(x_24, 0, x_44); +x_38 = l_Lean_mkNatLit(x_34); +x_39 = l_Lean_mkNatLit(x_37); +x_40 = l_BitVec_reduceUnary___lambda__1___closed__5; +x_41 = l_Lean_mkAppB(x_40, x_38, x_39); +x_42 = lean_box(0); +x_43 = 0; +x_44 = 1; +x_45 = lean_alloc_ctor(0, 2, 5); +lean_ctor_set(x_45, 0, x_41); +lean_ctor_set(x_45, 1, x_42); +lean_ctor_set_uint32(x_45, sizeof(void*)*2, x_43); +lean_ctor_set_uint8(x_45, sizeof(void*)*2 + 4, x_44); +x_46 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_46, 0, x_45); +lean_ctor_set(x_24, 0, x_46); return x_24; } 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_object* x_52; uint32_t x_53; uint8_t x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; -x_45 = lean_ctor_get(x_24, 1); -lean_inc(x_45); -lean_dec(x_24); -x_46 = lean_ctor_get(x_25, 0); -lean_inc(x_46); -lean_dec(x_25); -x_47 = lean_ctor_get(x_21, 0); +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; uint32_t x_57; uint8_t x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; +x_47 = lean_ctor_get(x_24, 1); lean_inc(x_47); -x_48 = lean_ctor_get(x_21, 1); -lean_inc(x_48); -lean_dec(x_21); -x_49 = l_Std_BitVec_signExtend(x_47, x_46, x_48); -lean_dec(x_47); -x_50 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_50, 0, x_46); -lean_ctor_set(x_50, 1, x_49); -x_51 = l_Std_BitVec_Literal_toExpr(x_50); -x_52 = lean_box(0); -x_53 = 0; -x_54 = 1; -x_55 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_55, 0, x_51); -lean_ctor_set(x_55, 1, x_52); -lean_ctor_set_uint32(x_55, sizeof(void*)*2, x_53); -lean_ctor_set_uint8(x_55, sizeof(void*)*2 + 4, x_54); -x_56 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_56, 0, x_55); -x_57 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_57, 0, x_56); -lean_ctor_set(x_57, 1, x_45); -return x_57; -} -} -} -else -{ -uint8_t x_58; -lean_dec(x_21); -x_58 = !lean_is_exclusive(x_24); -if (x_58 == 0) -{ -return x_24; -} -else -{ -lean_object* x_59; lean_object* x_60; lean_object* x_61; -x_59 = lean_ctor_get(x_24, 0); -x_60 = lean_ctor_get(x_24, 1); -lean_inc(x_60); -lean_inc(x_59); lean_dec(x_24); -x_61 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_61, 0, x_59); -lean_ctor_set(x_61, 1, x_60); +x_48 = lean_ctor_get(x_25, 0); +lean_inc(x_48); +lean_dec(x_25); +x_49 = lean_ctor_get(x_21, 0); +lean_inc(x_49); +x_50 = lean_ctor_get(x_21, 1); +lean_inc(x_50); +lean_dec(x_21); +x_51 = l_BitVec_signExtend(x_49, x_48, x_50); +lean_dec(x_49); +x_52 = l_Lean_mkNatLit(x_48); +x_53 = l_Lean_mkNatLit(x_51); +x_54 = l_BitVec_reduceUnary___lambda__1___closed__5; +x_55 = l_Lean_mkAppB(x_54, x_52, x_53); +x_56 = lean_box(0); +x_57 = 0; +x_58 = 1; +x_59 = lean_alloc_ctor(0, 2, 5); +lean_ctor_set(x_59, 0, x_55); +lean_ctor_set(x_59, 1, x_56); +lean_ctor_set_uint32(x_59, sizeof(void*)*2, x_57); +lean_ctor_set_uint8(x_59, sizeof(void*)*2 + 4, x_58); +x_60 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_60, 0, x_59); +x_61 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_61, 0, x_60); +lean_ctor_set(x_61, 1, x_47); return x_61; } } } -} else { uint8_t x_62; -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_1); -x_62 = !lean_is_exclusive(x_12); +lean_dec(x_21); +x_62 = !lean_is_exclusive(x_24); if (x_62 == 0) { -return x_12; +return x_24; } else { lean_object* x_63; lean_object* x_64; lean_object* x_65; -x_63 = lean_ctor_get(x_12, 0); -x_64 = lean_ctor_get(x_12, 1); +x_63 = lean_ctor_get(x_24, 0); +x_64 = lean_ctor_get(x_24, 1); lean_inc(x_64); lean_inc(x_63); -lean_dec(x_12); +lean_dec(x_24); x_65 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_65, 0, x_63); lean_ctor_set(x_65, 1, x_64); @@ -27512,7 +26361,36 @@ return x_65; } } } -static lean_object* _init_l_Std_BitVec_reduceSignExtend___closed__1() { +else +{ +uint8_t x_66; +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_1); +x_66 = !lean_is_exclusive(x_12); +if (x_66 == 0) +{ +return x_12; +} +else +{ +lean_object* x_67; lean_object* x_68; lean_object* x_69; +x_67 = lean_ctor_get(x_12, 0); +x_68 = lean_ctor_get(x_12, 1); +lean_inc(x_68); +lean_inc(x_67); +lean_dec(x_12); +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; +} +} +} +} +static lean_object* _init_l_BitVec_reduceSignExtend___closed__1() { _start: { lean_object* x_1; @@ -27520,22 +26398,21 @@ x_1 = lean_mk_string_from_bytes("signExtend", 10); return x_1; } } -static lean_object* _init_l_Std_BitVec_reduceSignExtend___closed__2() { +static lean_object* _init_l_BitVec_reduceSignExtend___closed__2() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f___closed__4; -x_2 = l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f___closed__5; -x_3 = l_Std_BitVec_reduceSignExtend___closed__1; -x_4 = l_Lean_Name_mkStr3(x_1, x_2, x_3); -return x_4; +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_BitVec_reduceUnary___lambda__1___closed__2; +x_2 = l_BitVec_reduceSignExtend___closed__1; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; } } -LEAN_EXPORT lean_object* l_Std_BitVec_reduceSignExtend(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_EXPORT lean_object* l_BitVec_reduceSignExtend(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; uint8_t x_12; -x_10 = l_Std_BitVec_reduceSignExtend___closed__2; +x_10 = l_BitVec_reduceSignExtend___closed__2; x_11 = lean_unsigned_to_nat(3u); x_12 = l_Lean_Expr_isAppOfArity(x_1, x_10, x_11); if (x_12 == 0) @@ -27549,7 +26426,7 @@ lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_13 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_13 = l_BitVec_reduceUnary___lambda__1___closed__1; x_14 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_14, 0, x_13); lean_ctor_set(x_14, 1, x_9); @@ -27559,7 +26436,7 @@ else { lean_object* x_15; lean_object* x_16; x_15 = lean_box(0); -x_16 = l_Std_BitVec_reduceSignExtend___lambda__1(x_1, x_15, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_16 = l_BitVec_reduceSignExtend___lambda__1(x_1, x_15, 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); @@ -27567,11 +26444,11 @@ return x_16; } } } -LEAN_EXPORT lean_object* l_Std_BitVec_reduceSignExtend___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) { +LEAN_EXPORT lean_object* l_BitVec_reduceSignExtend___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_Std_BitVec_reduceSignExtend___lambda__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_11 = l_BitVec_reduceSignExtend___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); @@ -27579,7 +26456,7 @@ lean_dec(x_2); return x_11; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceSignExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4079____closed__1() { +static lean_object* _init_l___regBuiltin_BitVec_reduceSignExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3790____closed__1() { _start: { lean_object* x_1; @@ -27587,22 +26464,21 @@ x_1 = lean_mk_string_from_bytes("reduceSignExtend", 16); return x_1; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceSignExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4079____closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f___closed__4; -x_2 = l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f___closed__5; -x_3 = l___regBuiltin_Std_BitVec_reduceSignExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4079____closed__1; -x_4 = l_Lean_Name_mkStr3(x_1, x_2, x_3); -return x_4; -} -} -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceSignExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4079____closed__3() { +static lean_object* _init_l___regBuiltin_BitVec_reduceSignExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3790____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Std_BitVec_reduceSignExtend___closed__2; +x_1 = l_BitVec_reduceUnary___lambda__1___closed__2; +x_2 = l___regBuiltin_BitVec_reduceSignExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3790____closed__1; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___regBuiltin_BitVec_reduceSignExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3790____closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_BitVec_reduceSignExtend___closed__2; x_2 = lean_unsigned_to_nat(3u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -27610,95 +26486,95 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceSignExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4079____closed__4() { +static lean_object* _init_l___regBuiltin_BitVec_reduceSignExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3790____closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceUMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1791____closed__4; -x_2 = l___regBuiltin_Std_BitVec_reduceSignExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4079____closed__3; +x_1 = l___regBuiltin_BitVec_reduceUMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1568____closed__4; +x_2 = l___regBuiltin_BitVec_reduceSignExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3790____closed__3; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceSignExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4079____closed__5() { +static lean_object* _init_l___regBuiltin_BitVec_reduceSignExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3790____closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceSignExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4079____closed__4; +x_1 = l___regBuiltin_BitVec_reduceSignExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3790____closed__4; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceSignExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4079____closed__6() { +static lean_object* _init_l___regBuiltin_BitVec_reduceSignExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3790____closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceSignExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4079____closed__5; +x_1 = l___regBuiltin_BitVec_reduceSignExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3790____closed__5; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceSignExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4079____closed__7() { +static lean_object* _init_l___regBuiltin_BitVec_reduceSignExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3790____closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceSignExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4079____closed__6; +x_1 = l___regBuiltin_BitVec_reduceSignExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3790____closed__6; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceSignExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4079____closed__8() { +static lean_object* _init_l___regBuiltin_BitVec_reduceSignExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3790____closed__8() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Std_BitVec_reduceSignExtend), 9, 0); +x_1 = lean_alloc_closure((void*)(l_BitVec_reduceSignExtend), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceSignExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4079_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceSignExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3790_(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_Std_BitVec_reduceSignExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4079____closed__2; -x_3 = l___regBuiltin_Std_BitVec_reduceSignExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4079____closed__7; -x_4 = l___regBuiltin_Std_BitVec_reduceSignExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4079____closed__8; +x_2 = l___regBuiltin_BitVec_reduceSignExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3790____closed__2; +x_3 = l___regBuiltin_BitVec_reduceSignExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3790____closed__7; +x_4 = l___regBuiltin_BitVec_reduceSignExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3790____closed__8; x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); return x_5; } } -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceSignExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4081_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceSignExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3792_(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_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1373____closed__1; -x_3 = l___regBuiltin_Std_BitVec_reduceSignExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4079____closed__2; +x_2 = l___regBuiltin_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1150____closed__1; +x_3 = l___regBuiltin_BitVec_reduceSignExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3790____closed__2; x_4 = 1; -x_5 = l___regBuiltin_Std_BitVec_reduceSignExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4079____closed__8; +x_5 = l___regBuiltin_BitVec_reduceSignExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3790____closed__8; 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_Std_BitVec_reduceSignExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4083_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceSignExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3794_(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_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1375____closed__1; -x_3 = l___regBuiltin_Std_BitVec_reduceSignExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4079____closed__2; +x_2 = l___regBuiltin_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1152____closed__1; +x_3 = l___regBuiltin_BitVec_reduceSignExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3790____closed__2; x_4 = 1; -x_5 = l___regBuiltin_Std_BitVec_reduceSignExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4079____closed__8; +x_5 = l___regBuiltin_BitVec_reduceSignExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3790____closed__8; 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_Std_BitVec_reduceAllOnes___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) { +LEAN_EXPORT lean_object* l_BitVec_reduceAllOnes___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; x_11 = l_Lean_Expr_appArg_x21(x_1); -x_12 = l_Nat_fromExpr_x3f(x_11, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_12 = l_Lean_Meta_getNatValue_x3f(x_11, x_6, x_7, x_8, x_9, x_10); if (lean_obj_tag(x_12) == 0) { lean_object* x_13; @@ -27713,7 +26589,7 @@ if (x_14 == 0) lean_object* x_15; lean_object* x_16; x_15 = lean_ctor_get(x_12, 0); lean_dec(x_15); -x_16 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_16 = l_BitVec_reduceUnary___lambda__1___closed__1; lean_ctor_set(x_12, 0, x_16); return x_12; } @@ -27723,7 +26599,7 @@ lean_object* x_17; lean_object* x_18; lean_object* x_19; x_17 = lean_ctor_get(x_12, 1); lean_inc(x_17); lean_dec(x_12); -x_18 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_18 = l_BitVec_reduceUnary___lambda__1___closed__1; x_19 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_19, 0, x_18); lean_ctor_set(x_19, 1, x_17); @@ -27736,86 +26612,86 @@ uint8_t x_20; x_20 = !lean_is_exclusive(x_12); if (x_20 == 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; uint32_t x_27; uint8_t x_28; lean_object* x_29; lean_object* x_30; +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; uint32_t x_29; uint8_t x_30; lean_object* x_31; lean_object* x_32; x_21 = lean_ctor_get(x_12, 0); lean_dec(x_21); x_22 = lean_ctor_get(x_13, 0); lean_inc(x_22); lean_dec(x_13); -x_23 = l_Std_BitVec_allOnes(x_22); -x_24 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_24, 0, x_22); -lean_ctor_set(x_24, 1, x_23); -x_25 = l_Std_BitVec_Literal_toExpr(x_24); -x_26 = lean_box(0); -x_27 = 0; -x_28 = 1; -x_29 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_29, 0, x_25); -lean_ctor_set(x_29, 1, x_26); -lean_ctor_set_uint32(x_29, sizeof(void*)*2, x_27); -lean_ctor_set_uint8(x_29, sizeof(void*)*2 + 4, x_28); -x_30 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_30, 0, x_29); -lean_ctor_set(x_12, 0, x_30); +x_23 = l_BitVec_allOnes(x_22); +x_24 = l_Lean_mkNatLit(x_22); +x_25 = l_Lean_mkNatLit(x_23); +x_26 = l_BitVec_reduceUnary___lambda__1___closed__5; +x_27 = l_Lean_mkAppB(x_26, x_24, x_25); +x_28 = lean_box(0); +x_29 = 0; +x_30 = 1; +x_31 = lean_alloc_ctor(0, 2, 5); +lean_ctor_set(x_31, 0, x_27); +lean_ctor_set(x_31, 1, x_28); +lean_ctor_set_uint32(x_31, sizeof(void*)*2, x_29); +lean_ctor_set_uint8(x_31, sizeof(void*)*2 + 4, x_30); +x_32 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_32, 0, x_31); +lean_ctor_set(x_12, 0, x_32); return x_12; } else { -lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; uint32_t x_37; uint8_t x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; -x_31 = lean_ctor_get(x_12, 1); -lean_inc(x_31); +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; uint32_t x_41; uint8_t x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; +x_33 = lean_ctor_get(x_12, 1); +lean_inc(x_33); lean_dec(x_12); -x_32 = lean_ctor_get(x_13, 0); -lean_inc(x_32); +x_34 = lean_ctor_get(x_13, 0); +lean_inc(x_34); lean_dec(x_13); -x_33 = l_Std_BitVec_allOnes(x_32); -x_34 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_34, 0, x_32); -lean_ctor_set(x_34, 1, x_33); -x_35 = l_Std_BitVec_Literal_toExpr(x_34); -x_36 = lean_box(0); -x_37 = 0; -x_38 = 1; -x_39 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_39, 0, x_35); -lean_ctor_set(x_39, 1, x_36); -lean_ctor_set_uint32(x_39, sizeof(void*)*2, x_37); -lean_ctor_set_uint8(x_39, sizeof(void*)*2 + 4, x_38); -x_40 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_40, 0, x_39); -x_41 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_41, 0, x_40); -lean_ctor_set(x_41, 1, x_31); -return x_41; -} -} -} -else -{ -uint8_t x_42; -x_42 = !lean_is_exclusive(x_12); -if (x_42 == 0) -{ -return x_12; -} -else -{ -lean_object* x_43; lean_object* x_44; lean_object* x_45; -x_43 = lean_ctor_get(x_12, 0); -x_44 = lean_ctor_get(x_12, 1); -lean_inc(x_44); -lean_inc(x_43); -lean_dec(x_12); -x_45 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_45, 0, x_43); -lean_ctor_set(x_45, 1, x_44); +x_35 = l_BitVec_allOnes(x_34); +x_36 = l_Lean_mkNatLit(x_34); +x_37 = l_Lean_mkNatLit(x_35); +x_38 = l_BitVec_reduceUnary___lambda__1___closed__5; +x_39 = l_Lean_mkAppB(x_38, x_36, x_37); +x_40 = lean_box(0); +x_41 = 0; +x_42 = 1; +x_43 = lean_alloc_ctor(0, 2, 5); +lean_ctor_set(x_43, 0, x_39); +lean_ctor_set(x_43, 1, x_40); +lean_ctor_set_uint32(x_43, sizeof(void*)*2, x_41); +lean_ctor_set_uint8(x_43, sizeof(void*)*2 + 4, x_42); +x_44 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_44, 0, x_43); +x_45 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_45, 0, x_44); +lean_ctor_set(x_45, 1, x_33); return x_45; } } } +else +{ +uint8_t x_46; +x_46 = !lean_is_exclusive(x_12); +if (x_46 == 0) +{ +return x_12; } -static lean_object* _init_l_Std_BitVec_reduceAllOnes___closed__1() { +else +{ +lean_object* x_47; lean_object* x_48; lean_object* x_49; +x_47 = lean_ctor_get(x_12, 0); +x_48 = lean_ctor_get(x_12, 1); +lean_inc(x_48); +lean_inc(x_47); +lean_dec(x_12); +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; +} +} +} +} +static lean_object* _init_l_BitVec_reduceAllOnes___closed__1() { _start: { lean_object* x_1; @@ -27823,22 +26699,21 @@ x_1 = lean_mk_string_from_bytes("allOnes", 7); return x_1; } } -static lean_object* _init_l_Std_BitVec_reduceAllOnes___closed__2() { +static lean_object* _init_l_BitVec_reduceAllOnes___closed__2() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f___closed__4; -x_2 = l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f___closed__5; -x_3 = l_Std_BitVec_reduceAllOnes___closed__1; -x_4 = l_Lean_Name_mkStr3(x_1, x_2, x_3); -return x_4; +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_BitVec_reduceUnary___lambda__1___closed__2; +x_2 = l_BitVec_reduceAllOnes___closed__1; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; } } -LEAN_EXPORT lean_object* l_Std_BitVec_reduceAllOnes(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_EXPORT lean_object* l_BitVec_reduceAllOnes(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; uint8_t x_12; -x_10 = l_Std_BitVec_reduceAllOnes___closed__2; +x_10 = l_BitVec_reduceAllOnes___closed__2; x_11 = lean_unsigned_to_nat(1u); x_12 = l_Lean_Expr_isAppOfArity(x_1, x_10, x_11); if (x_12 == 0) @@ -27851,7 +26726,7 @@ lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); -x_13 = l_Std_BitVec_reduceUnary___lambda__1___closed__1; +x_13 = l_BitVec_reduceUnary___lambda__1___closed__1; x_14 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_14, 0, x_13); lean_ctor_set(x_14, 1, x_9); @@ -27861,8 +26736,7 @@ else { lean_object* x_15; lean_object* x_16; x_15 = lean_box(0); -x_16 = l_Std_BitVec_reduceAllOnes___lambda__1(x_1, x_15, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); -lean_dec(x_5); +x_16 = l_BitVec_reduceAllOnes___lambda__1(x_1, x_15, 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); @@ -27870,12 +26744,11 @@ return x_16; } } } -LEAN_EXPORT lean_object* l_Std_BitVec_reduceAllOnes___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) { +LEAN_EXPORT lean_object* l_BitVec_reduceAllOnes___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_Std_BitVec_reduceAllOnes___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_6); +x_11 = l_BitVec_reduceAllOnes___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); @@ -27884,16 +26757,16 @@ lean_dec(x_1); return x_11; } } -LEAN_EXPORT lean_object* l_Std_BitVec_reduceAllOnes___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_EXPORT lean_object* l_BitVec_reduceAllOnes___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_Std_BitVec_reduceAllOnes(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_10 = l_BitVec_reduceAllOnes(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); lean_dec(x_1); return x_10; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceAllOnes_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4198____closed__1() { +static lean_object* _init_l___regBuiltin_BitVec_reduceAllOnes_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3901____closed__1() { _start: { lean_object* x_1; @@ -27901,22 +26774,21 @@ x_1 = lean_mk_string_from_bytes("reduceAllOnes", 13); return x_1; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceAllOnes_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4198____closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f___closed__4; -x_2 = l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f___closed__5; -x_3 = l___regBuiltin_Std_BitVec_reduceAllOnes_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4198____closed__1; -x_4 = l_Lean_Name_mkStr3(x_1, x_2, x_3); -return x_4; -} -} -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceAllOnes_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4198____closed__3() { +static lean_object* _init_l___regBuiltin_BitVec_reduceAllOnes_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3901____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Std_BitVec_reduceAllOnes___closed__2; +x_1 = l_BitVec_reduceUnary___lambda__1___closed__2; +x_2 = l___regBuiltin_BitVec_reduceAllOnes_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3901____closed__1; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___regBuiltin_BitVec_reduceAllOnes_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3901____closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_BitVec_reduceAllOnes___closed__2; x_2 = lean_unsigned_to_nat(1u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -27924,7 +26796,7 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceAllOnes_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4198____closed__4() { +static lean_object* _init_l___regBuiltin_BitVec_reduceAllOnes_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3901____closed__4() { _start: { lean_object* x_1; lean_object* x_2; @@ -27933,69 +26805,70 @@ x_2 = lean_mk_empty_array_with_capacity(x_1); return x_2; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceAllOnes_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4198____closed__5() { +static lean_object* _init_l___regBuiltin_BitVec_reduceAllOnes_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3901____closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceAllOnes_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4198____closed__4; -x_2 = l___regBuiltin_Std_BitVec_reduceAllOnes_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4198____closed__3; +x_1 = l___regBuiltin_BitVec_reduceAllOnes_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3901____closed__4; +x_2 = l___regBuiltin_BitVec_reduceAllOnes_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3901____closed__3; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceAllOnes_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4198____closed__6() { +static lean_object* _init_l___regBuiltin_BitVec_reduceAllOnes_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3901____closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Std_BitVec_reduceAllOnes_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4198____closed__5; +x_1 = l___regBuiltin_BitVec_reduceAllOnes_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3901____closed__5; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Std_BitVec_reduceAllOnes_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4198____closed__7() { +static lean_object* _init_l___regBuiltin_BitVec_reduceAllOnes_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3901____closed__7() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Std_BitVec_reduceAllOnes___boxed), 9, 0); +x_1 = lean_alloc_closure((void*)(l_BitVec_reduceAllOnes___boxed), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceAllOnes_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4198_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceAllOnes_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3901_(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_Std_BitVec_reduceAllOnes_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4198____closed__2; -x_3 = l___regBuiltin_Std_BitVec_reduceAllOnes_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4198____closed__6; -x_4 = l___regBuiltin_Std_BitVec_reduceAllOnes_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4198____closed__7; +x_2 = l___regBuiltin_BitVec_reduceAllOnes_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3901____closed__2; +x_3 = l___regBuiltin_BitVec_reduceAllOnes_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3901____closed__6; +x_4 = l___regBuiltin_BitVec_reduceAllOnes_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3901____closed__7; x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); return x_5; } } -LEAN_EXPORT lean_object* l___regBuiltin_Std_BitVec_reduceAllOnes_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4200_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceAllOnes_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3903_(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_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1373____closed__1; -x_3 = l___regBuiltin_Std_BitVec_reduceAllOnes_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4198____closed__2; +x_2 = l___regBuiltin_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1150____closed__1; +x_3 = l___regBuiltin_BitVec_reduceAllOnes_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3901____closed__2; x_4 = 1; -x_5 = l___regBuiltin_Std_BitVec_reduceAllOnes_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4198____closed__7; +x_5 = l___regBuiltin_BitVec_reduceAllOnes_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3901____closed__7; 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_Std_BitVec_reduceAllOnes_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4202_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_BitVec_reduceAllOnes_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3905_(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_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1375____closed__1; -x_3 = l___regBuiltin_Std_BitVec_reduceAllOnes_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4198____closed__2; +x_2 = l___regBuiltin_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1152____closed__1; +x_3 = l___regBuiltin_BitVec_reduceAllOnes_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3901____closed__2; x_4 = 1; -x_5 = l___regBuiltin_Std_BitVec_reduceAllOnes_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4198____closed__7; +x_5 = l___regBuiltin_BitVec_reduceAllOnes_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3901____closed__7; 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*); lean_object* initialize_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int(uint8_t builtin, lean_object*); lean_object* initialize_Init_Data_BitVec_Basic(uint8_t builtin, lean_object*); @@ -28004,6 +26877,9 @@ LEAN_EXPORT lean_object* initialize_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec lean_object * res; if (_G_initialized) return lean_io_result_mk_ok(lean_box(0)); _G_initialized = true; +res = initialize_Lean_Meta_LitValues(builtin, lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); res = initialize_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat(builtin, lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); @@ -28013,1622 +26889,1634 @@ lean_dec_ref(res); res = initialize_Init_Data_BitVec_Basic(builtin, lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f___closed__1 = _init_l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f___closed__1(); -lean_mark_persistent(l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f___closed__1); -l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f___closed__2 = _init_l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f___closed__2(); -lean_mark_persistent(l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f___closed__2); -l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f___closed__3 = _init_l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f___closed__3(); -lean_mark_persistent(l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f___closed__3); -l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f___closed__4 = _init_l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f___closed__4(); -lean_mark_persistent(l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f___closed__4); -l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f___closed__5 = _init_l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f___closed__5(); -lean_mark_persistent(l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f___closed__5); -l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f___closed__6 = _init_l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f___closed__6(); -lean_mark_persistent(l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f___closed__6); -l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f___closed__7 = _init_l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f___closed__7(); -lean_mark_persistent(l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromOfNatExpr_x3f___closed__7); -l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromBitVecExpr_x3f___closed__1 = _init_l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromBitVecExpr_x3f___closed__1(); -lean_mark_persistent(l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec_0__Std_BitVec_fromBitVecExpr_x3f___closed__1); -l_Std_BitVec_Literal_toExpr___closed__1 = _init_l_Std_BitVec_Literal_toExpr___closed__1(); -lean_mark_persistent(l_Std_BitVec_Literal_toExpr___closed__1); -l_Std_BitVec_reduceUnary___lambda__1___closed__1 = _init_l_Std_BitVec_reduceUnary___lambda__1___closed__1(); -lean_mark_persistent(l_Std_BitVec_reduceUnary___lambda__1___closed__1); -l_Std_BitVec_reduceBin___lambda__2___closed__1 = _init_l_Std_BitVec_reduceBin___lambda__2___closed__1(); -lean_mark_persistent(l_Std_BitVec_reduceBin___lambda__2___closed__1); -l_Std_BitVec_reduceBin___lambda__2___closed__2 = _init_l_Std_BitVec_reduceBin___lambda__2___closed__2(); -lean_mark_persistent(l_Std_BitVec_reduceBin___lambda__2___closed__2); -l_Std_BitVec_reduceBin___lambda__2___closed__3 = _init_l_Std_BitVec_reduceBin___lambda__2___closed__3(); -lean_mark_persistent(l_Std_BitVec_reduceBin___lambda__2___closed__3); -l_Std_BitVec_reduceBin___lambda__2___closed__4 = _init_l_Std_BitVec_reduceBin___lambda__2___closed__4(); -lean_mark_persistent(l_Std_BitVec_reduceBin___lambda__2___closed__4); -l_Std_BitVec_reduceBin___lambda__2___closed__5 = _init_l_Std_BitVec_reduceBin___lambda__2___closed__5(); -lean_mark_persistent(l_Std_BitVec_reduceBin___lambda__2___closed__5); -l_Std_BitVec_reduceBin___lambda__2___closed__6 = _init_l_Std_BitVec_reduceBin___lambda__2___closed__6(); -lean_mark_persistent(l_Std_BitVec_reduceBin___lambda__2___closed__6); -l_Std_BitVec_reduceBin___lambda__2___closed__7 = _init_l_Std_BitVec_reduceBin___lambda__2___closed__7(); -lean_mark_persistent(l_Std_BitVec_reduceBin___lambda__2___closed__7); -l_Std_BitVec_reduceBin___lambda__2___closed__8 = _init_l_Std_BitVec_reduceBin___lambda__2___closed__8(); -lean_mark_persistent(l_Std_BitVec_reduceBin___lambda__2___closed__8); -l_Std_BitVec_reduceBin___lambda__2___closed__9 = _init_l_Std_BitVec_reduceBin___lambda__2___closed__9(); -lean_mark_persistent(l_Std_BitVec_reduceBin___lambda__2___closed__9); -l_Std_BitVec_reduceBin___lambda__2___closed__10 = _init_l_Std_BitVec_reduceBin___lambda__2___closed__10(); -lean_mark_persistent(l_Std_BitVec_reduceBin___lambda__2___closed__10); -l_Std_BitVec_reduceBin___lambda__2___closed__11 = _init_l_Std_BitVec_reduceBin___lambda__2___closed__11(); -lean_mark_persistent(l_Std_BitVec_reduceBin___lambda__2___closed__11); -l_Std_BitVec_reduceBin___lambda__2___closed__12 = _init_l_Std_BitVec_reduceBin___lambda__2___closed__12(); -lean_mark_persistent(l_Std_BitVec_reduceBin___lambda__2___closed__12); -l_Std_BitVec_reduceBin___lambda__2___closed__13 = _init_l_Std_BitVec_reduceBin___lambda__2___closed__13(); -lean_mark_persistent(l_Std_BitVec_reduceBin___lambda__2___closed__13); -l_Std_BitVec_reduceBin___lambda__2___closed__14 = _init_l_Std_BitVec_reduceBin___lambda__2___closed__14(); -lean_mark_persistent(l_Std_BitVec_reduceBin___lambda__2___closed__14); -l_Std_BitVec_reduceBin___lambda__2___closed__15 = _init_l_Std_BitVec_reduceBin___lambda__2___closed__15(); -lean_mark_persistent(l_Std_BitVec_reduceBin___lambda__2___closed__15); -l_Std_BitVec_reduceGetBit___lambda__1___closed__1 = _init_l_Std_BitVec_reduceGetBit___lambda__1___closed__1(); -lean_mark_persistent(l_Std_BitVec_reduceGetBit___lambda__1___closed__1); -l_Std_BitVec_reduceGetBit___lambda__1___closed__2 = _init_l_Std_BitVec_reduceGetBit___lambda__1___closed__2(); -lean_mark_persistent(l_Std_BitVec_reduceGetBit___lambda__1___closed__2); -l_Std_BitVec_reduceGetBit___lambda__1___closed__3 = _init_l_Std_BitVec_reduceGetBit___lambda__1___closed__3(); -lean_mark_persistent(l_Std_BitVec_reduceGetBit___lambda__1___closed__3); -l_Std_BitVec_reduceGetBit___lambda__1___closed__4 = _init_l_Std_BitVec_reduceGetBit___lambda__1___closed__4(); -lean_mark_persistent(l_Std_BitVec_reduceGetBit___lambda__1___closed__4); -l_Std_BitVec_reduceGetBit___lambda__1___closed__5 = _init_l_Std_BitVec_reduceGetBit___lambda__1___closed__5(); -lean_mark_persistent(l_Std_BitVec_reduceGetBit___lambda__1___closed__5); -l_Std_BitVec_reduceGetBit___lambda__1___closed__6 = _init_l_Std_BitVec_reduceGetBit___lambda__1___closed__6(); -lean_mark_persistent(l_Std_BitVec_reduceGetBit___lambda__1___closed__6); -l_Std_BitVec_reduceGetBit___lambda__1___closed__7 = _init_l_Std_BitVec_reduceGetBit___lambda__1___closed__7(); -lean_mark_persistent(l_Std_BitVec_reduceGetBit___lambda__1___closed__7); -l_Std_BitVec_reduceGetBit___lambda__1___closed__8 = _init_l_Std_BitVec_reduceGetBit___lambda__1___closed__8(); -lean_mark_persistent(l_Std_BitVec_reduceGetBit___lambda__1___closed__8); -l_Std_BitVec_reduceGetBit___lambda__1___closed__9 = _init_l_Std_BitVec_reduceGetBit___lambda__1___closed__9(); -lean_mark_persistent(l_Std_BitVec_reduceGetBit___lambda__1___closed__9); -l_Std_BitVec_reduceGetBit___lambda__1___closed__10 = _init_l_Std_BitVec_reduceGetBit___lambda__1___closed__10(); -lean_mark_persistent(l_Std_BitVec_reduceGetBit___lambda__1___closed__10); -l_Std_BitVec_reduceGetBit___lambda__1___closed__11 = _init_l_Std_BitVec_reduceGetBit___lambda__1___closed__11(); -lean_mark_persistent(l_Std_BitVec_reduceGetBit___lambda__1___closed__11); -l_Std_BitVec_reduceNeg___closed__1 = _init_l_Std_BitVec_reduceNeg___closed__1(); -lean_mark_persistent(l_Std_BitVec_reduceNeg___closed__1); -l_Std_BitVec_reduceNeg___closed__2 = _init_l_Std_BitVec_reduceNeg___closed__2(); -lean_mark_persistent(l_Std_BitVec_reduceNeg___closed__2); -l_Std_BitVec_reduceNeg___closed__3 = _init_l_Std_BitVec_reduceNeg___closed__3(); -lean_mark_persistent(l_Std_BitVec_reduceNeg___closed__3); -l___regBuiltin_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1371____closed__1 = _init_l___regBuiltin_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1371____closed__1(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1371____closed__1); -l___regBuiltin_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1371____closed__2 = _init_l___regBuiltin_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1371____closed__2(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1371____closed__2); -l___regBuiltin_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1371____closed__3 = _init_l___regBuiltin_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1371____closed__3(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1371____closed__3); -l___regBuiltin_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1371____closed__4 = _init_l___regBuiltin_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1371____closed__4(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1371____closed__4); -l___regBuiltin_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1371____closed__5 = _init_l___regBuiltin_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1371____closed__5(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1371____closed__5); -l___regBuiltin_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1371____closed__6 = _init_l___regBuiltin_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1371____closed__6(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1371____closed__6); -l___regBuiltin_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1371____closed__7 = _init_l___regBuiltin_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1371____closed__7(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1371____closed__7); -l___regBuiltin_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1371____closed__8 = _init_l___regBuiltin_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1371____closed__8(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1371____closed__8); -l___regBuiltin_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1371____closed__9 = _init_l___regBuiltin_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1371____closed__9(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1371____closed__9); -l___regBuiltin_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1371____closed__10 = _init_l___regBuiltin_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1371____closed__10(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1371____closed__10); -l___regBuiltin_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1371____closed__11 = _init_l___regBuiltin_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1371____closed__11(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1371____closed__11); -if (builtin) {res = l___regBuiltin_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1371_(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -}l___regBuiltin_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1373____closed__1 = _init_l___regBuiltin_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1373____closed__1(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1373____closed__1); -if (builtin) {res = l___regBuiltin_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1373_(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -}l___regBuiltin_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1375____closed__1 = _init_l___regBuiltin_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1375____closed__1(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1375____closed__1); -if (builtin) {res = l___regBuiltin_Std_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1375_(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -}l_Std_BitVec_reduceNot___closed__1 = _init_l_Std_BitVec_reduceNot___closed__1(); -lean_mark_persistent(l_Std_BitVec_reduceNot___closed__1); -l_Std_BitVec_reduceNot___closed__2 = _init_l_Std_BitVec_reduceNot___closed__2(); -lean_mark_persistent(l_Std_BitVec_reduceNot___closed__2); -l_Std_BitVec_reduceNot___closed__3 = _init_l_Std_BitVec_reduceNot___closed__3(); -lean_mark_persistent(l_Std_BitVec_reduceNot___closed__3); -l___regBuiltin_Std_BitVec_reduceNot_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1408____closed__1 = _init_l___regBuiltin_Std_BitVec_reduceNot_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1408____closed__1(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceNot_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1408____closed__1); -l___regBuiltin_Std_BitVec_reduceNot_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1408____closed__2 = _init_l___regBuiltin_Std_BitVec_reduceNot_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1408____closed__2(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceNot_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1408____closed__2); -l___regBuiltin_Std_BitVec_reduceNot_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1408____closed__3 = _init_l___regBuiltin_Std_BitVec_reduceNot_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1408____closed__3(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceNot_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1408____closed__3); -l___regBuiltin_Std_BitVec_reduceNot_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1408____closed__4 = _init_l___regBuiltin_Std_BitVec_reduceNot_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1408____closed__4(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceNot_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1408____closed__4); -l___regBuiltin_Std_BitVec_reduceNot_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1408____closed__5 = _init_l___regBuiltin_Std_BitVec_reduceNot_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1408____closed__5(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceNot_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1408____closed__5); -l___regBuiltin_Std_BitVec_reduceNot_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1408____closed__6 = _init_l___regBuiltin_Std_BitVec_reduceNot_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1408____closed__6(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceNot_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1408____closed__6); -l___regBuiltin_Std_BitVec_reduceNot_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1408____closed__7 = _init_l___regBuiltin_Std_BitVec_reduceNot_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1408____closed__7(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceNot_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1408____closed__7); -l___regBuiltin_Std_BitVec_reduceNot_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1408____closed__8 = _init_l___regBuiltin_Std_BitVec_reduceNot_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1408____closed__8(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceNot_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1408____closed__8); -l___regBuiltin_Std_BitVec_reduceNot_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1408____closed__9 = _init_l___regBuiltin_Std_BitVec_reduceNot_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1408____closed__9(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceNot_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1408____closed__9); -if (builtin) {res = l___regBuiltin_Std_BitVec_reduceNot_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1408_(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Std_BitVec_reduceNot_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1410_(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Std_BitVec_reduceNot_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1412_(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -}l_Std_BitVec_reduceAbs___closed__1 = _init_l_Std_BitVec_reduceAbs___closed__1(); -lean_mark_persistent(l_Std_BitVec_reduceAbs___closed__1); -l_Std_BitVec_reduceAbs___closed__2 = _init_l_Std_BitVec_reduceAbs___closed__2(); -lean_mark_persistent(l_Std_BitVec_reduceAbs___closed__2); -l___regBuiltin_Std_BitVec_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1429____closed__1 = _init_l___regBuiltin_Std_BitVec_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1429____closed__1(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1429____closed__1); -l___regBuiltin_Std_BitVec_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1429____closed__2 = _init_l___regBuiltin_Std_BitVec_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1429____closed__2(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1429____closed__2); -l___regBuiltin_Std_BitVec_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1429____closed__3 = _init_l___regBuiltin_Std_BitVec_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1429____closed__3(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1429____closed__3); -l___regBuiltin_Std_BitVec_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1429____closed__4 = _init_l___regBuiltin_Std_BitVec_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1429____closed__4(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1429____closed__4); -l___regBuiltin_Std_BitVec_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1429____closed__5 = _init_l___regBuiltin_Std_BitVec_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1429____closed__5(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1429____closed__5); -l___regBuiltin_Std_BitVec_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1429____closed__6 = _init_l___regBuiltin_Std_BitVec_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1429____closed__6(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1429____closed__6); -l___regBuiltin_Std_BitVec_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1429____closed__7 = _init_l___regBuiltin_Std_BitVec_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1429____closed__7(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1429____closed__7); -l___regBuiltin_Std_BitVec_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1429____closed__8 = _init_l___regBuiltin_Std_BitVec_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1429____closed__8(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1429____closed__8); -if (builtin) {res = l___regBuiltin_Std_BitVec_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1429_(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Std_BitVec_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1431_(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Std_BitVec_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1433_(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -}l_Std_BitVec_reduceAnd___closed__1 = _init_l_Std_BitVec_reduceAnd___closed__1(); -lean_mark_persistent(l_Std_BitVec_reduceAnd___closed__1); -l_Std_BitVec_reduceAnd___closed__2 = _init_l_Std_BitVec_reduceAnd___closed__2(); -lean_mark_persistent(l_Std_BitVec_reduceAnd___closed__2); -l_Std_BitVec_reduceAnd___closed__3 = _init_l_Std_BitVec_reduceAnd___closed__3(); -lean_mark_persistent(l_Std_BitVec_reduceAnd___closed__3); -l___regBuiltin_Std_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1471____closed__1 = _init_l___regBuiltin_Std_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1471____closed__1(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1471____closed__1); -l___regBuiltin_Std_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1471____closed__2 = _init_l___regBuiltin_Std_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1471____closed__2(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1471____closed__2); -l___regBuiltin_Std_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1471____closed__3 = _init_l___regBuiltin_Std_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1471____closed__3(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1471____closed__3); -l___regBuiltin_Std_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1471____closed__4 = _init_l___regBuiltin_Std_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1471____closed__4(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1471____closed__4); -l___regBuiltin_Std_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1471____closed__5 = _init_l___regBuiltin_Std_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1471____closed__5(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1471____closed__5); -l___regBuiltin_Std_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1471____closed__6 = _init_l___regBuiltin_Std_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1471____closed__6(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1471____closed__6); -l___regBuiltin_Std_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1471____closed__7 = _init_l___regBuiltin_Std_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1471____closed__7(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1471____closed__7); -l___regBuiltin_Std_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1471____closed__8 = _init_l___regBuiltin_Std_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1471____closed__8(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1471____closed__8); -l___regBuiltin_Std_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1471____closed__9 = _init_l___regBuiltin_Std_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1471____closed__9(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1471____closed__9); -l___regBuiltin_Std_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1471____closed__10 = _init_l___regBuiltin_Std_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1471____closed__10(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1471____closed__10); -l___regBuiltin_Std_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1471____closed__11 = _init_l___regBuiltin_Std_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1471____closed__11(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1471____closed__11); -l___regBuiltin_Std_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1471____closed__12 = _init_l___regBuiltin_Std_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1471____closed__12(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1471____closed__12); -l___regBuiltin_Std_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1471____closed__13 = _init_l___regBuiltin_Std_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1471____closed__13(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1471____closed__13); -l___regBuiltin_Std_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1471____closed__14 = _init_l___regBuiltin_Std_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1471____closed__14(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1471____closed__14); -l___regBuiltin_Std_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1471____closed__15 = _init_l___regBuiltin_Std_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1471____closed__15(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1471____closed__15); -if (builtin) {res = l___regBuiltin_Std_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1471_(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Std_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1473_(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Std_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1475_(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -}l_Std_BitVec_reduceOr___closed__1 = _init_l_Std_BitVec_reduceOr___closed__1(); -lean_mark_persistent(l_Std_BitVec_reduceOr___closed__1); -l_Std_BitVec_reduceOr___closed__2 = _init_l_Std_BitVec_reduceOr___closed__2(); -lean_mark_persistent(l_Std_BitVec_reduceOr___closed__2); -l_Std_BitVec_reduceOr___closed__3 = _init_l_Std_BitVec_reduceOr___closed__3(); -lean_mark_persistent(l_Std_BitVec_reduceOr___closed__3); -l___regBuiltin_Std_BitVec_reduceOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1513____closed__1 = _init_l___regBuiltin_Std_BitVec_reduceOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1513____closed__1(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1513____closed__1); -l___regBuiltin_Std_BitVec_reduceOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1513____closed__2 = _init_l___regBuiltin_Std_BitVec_reduceOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1513____closed__2(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1513____closed__2); -l___regBuiltin_Std_BitVec_reduceOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1513____closed__3 = _init_l___regBuiltin_Std_BitVec_reduceOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1513____closed__3(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1513____closed__3); -l___regBuiltin_Std_BitVec_reduceOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1513____closed__4 = _init_l___regBuiltin_Std_BitVec_reduceOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1513____closed__4(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1513____closed__4); -l___regBuiltin_Std_BitVec_reduceOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1513____closed__5 = _init_l___regBuiltin_Std_BitVec_reduceOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1513____closed__5(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1513____closed__5); -l___regBuiltin_Std_BitVec_reduceOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1513____closed__6 = _init_l___regBuiltin_Std_BitVec_reduceOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1513____closed__6(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1513____closed__6); -l___regBuiltin_Std_BitVec_reduceOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1513____closed__7 = _init_l___regBuiltin_Std_BitVec_reduceOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1513____closed__7(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1513____closed__7); -l___regBuiltin_Std_BitVec_reduceOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1513____closed__8 = _init_l___regBuiltin_Std_BitVec_reduceOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1513____closed__8(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1513____closed__8); -l___regBuiltin_Std_BitVec_reduceOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1513____closed__9 = _init_l___regBuiltin_Std_BitVec_reduceOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1513____closed__9(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1513____closed__9); -l___regBuiltin_Std_BitVec_reduceOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1513____closed__10 = _init_l___regBuiltin_Std_BitVec_reduceOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1513____closed__10(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1513____closed__10); -l___regBuiltin_Std_BitVec_reduceOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1513____closed__11 = _init_l___regBuiltin_Std_BitVec_reduceOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1513____closed__11(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1513____closed__11); -l___regBuiltin_Std_BitVec_reduceOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1513____closed__12 = _init_l___regBuiltin_Std_BitVec_reduceOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1513____closed__12(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1513____closed__12); -l___regBuiltin_Std_BitVec_reduceOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1513____closed__13 = _init_l___regBuiltin_Std_BitVec_reduceOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1513____closed__13(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1513____closed__13); -l___regBuiltin_Std_BitVec_reduceOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1513____closed__14 = _init_l___regBuiltin_Std_BitVec_reduceOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1513____closed__14(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1513____closed__14); -if (builtin) {res = l___regBuiltin_Std_BitVec_reduceOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1513_(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Std_BitVec_reduceOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1515_(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Std_BitVec_reduceOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1517_(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -}l_Std_BitVec_reduceXOr___closed__1 = _init_l_Std_BitVec_reduceXOr___closed__1(); -lean_mark_persistent(l_Std_BitVec_reduceXOr___closed__1); -l_Std_BitVec_reduceXOr___closed__2 = _init_l_Std_BitVec_reduceXOr___closed__2(); -lean_mark_persistent(l_Std_BitVec_reduceXOr___closed__2); -l_Std_BitVec_reduceXOr___closed__3 = _init_l_Std_BitVec_reduceXOr___closed__3(); -lean_mark_persistent(l_Std_BitVec_reduceXOr___closed__3); -l___regBuiltin_Std_BitVec_reduceXOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1555____closed__1 = _init_l___regBuiltin_Std_BitVec_reduceXOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1555____closed__1(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceXOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1555____closed__1); -l___regBuiltin_Std_BitVec_reduceXOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1555____closed__2 = _init_l___regBuiltin_Std_BitVec_reduceXOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1555____closed__2(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceXOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1555____closed__2); -l___regBuiltin_Std_BitVec_reduceXOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1555____closed__3 = _init_l___regBuiltin_Std_BitVec_reduceXOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1555____closed__3(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceXOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1555____closed__3); -l___regBuiltin_Std_BitVec_reduceXOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1555____closed__4 = _init_l___regBuiltin_Std_BitVec_reduceXOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1555____closed__4(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceXOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1555____closed__4); -l___regBuiltin_Std_BitVec_reduceXOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1555____closed__5 = _init_l___regBuiltin_Std_BitVec_reduceXOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1555____closed__5(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceXOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1555____closed__5); -l___regBuiltin_Std_BitVec_reduceXOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1555____closed__6 = _init_l___regBuiltin_Std_BitVec_reduceXOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1555____closed__6(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceXOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1555____closed__6); -l___regBuiltin_Std_BitVec_reduceXOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1555____closed__7 = _init_l___regBuiltin_Std_BitVec_reduceXOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1555____closed__7(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceXOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1555____closed__7); -l___regBuiltin_Std_BitVec_reduceXOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1555____closed__8 = _init_l___regBuiltin_Std_BitVec_reduceXOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1555____closed__8(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceXOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1555____closed__8); -l___regBuiltin_Std_BitVec_reduceXOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1555____closed__9 = _init_l___regBuiltin_Std_BitVec_reduceXOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1555____closed__9(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceXOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1555____closed__9); -l___regBuiltin_Std_BitVec_reduceXOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1555____closed__10 = _init_l___regBuiltin_Std_BitVec_reduceXOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1555____closed__10(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceXOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1555____closed__10); -l___regBuiltin_Std_BitVec_reduceXOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1555____closed__11 = _init_l___regBuiltin_Std_BitVec_reduceXOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1555____closed__11(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceXOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1555____closed__11); -l___regBuiltin_Std_BitVec_reduceXOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1555____closed__12 = _init_l___regBuiltin_Std_BitVec_reduceXOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1555____closed__12(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceXOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1555____closed__12); -l___regBuiltin_Std_BitVec_reduceXOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1555____closed__13 = _init_l___regBuiltin_Std_BitVec_reduceXOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1555____closed__13(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceXOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1555____closed__13); -l___regBuiltin_Std_BitVec_reduceXOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1555____closed__14 = _init_l___regBuiltin_Std_BitVec_reduceXOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1555____closed__14(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceXOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1555____closed__14); -if (builtin) {res = l___regBuiltin_Std_BitVec_reduceXOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1555_(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Std_BitVec_reduceXOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1557_(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Std_BitVec_reduceXOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1559_(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -}l_Std_BitVec_reduceAdd___closed__1 = _init_l_Std_BitVec_reduceAdd___closed__1(); -lean_mark_persistent(l_Std_BitVec_reduceAdd___closed__1); -l_Std_BitVec_reduceAdd___closed__2 = _init_l_Std_BitVec_reduceAdd___closed__2(); -lean_mark_persistent(l_Std_BitVec_reduceAdd___closed__2); -l_Std_BitVec_reduceAdd___closed__3 = _init_l_Std_BitVec_reduceAdd___closed__3(); -lean_mark_persistent(l_Std_BitVec_reduceAdd___closed__3); -l___regBuiltin_Std_BitVec_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1597____closed__1 = _init_l___regBuiltin_Std_BitVec_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1597____closed__1(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1597____closed__1); -l___regBuiltin_Std_BitVec_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1597____closed__2 = _init_l___regBuiltin_Std_BitVec_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1597____closed__2(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1597____closed__2); -l___regBuiltin_Std_BitVec_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1597____closed__3 = _init_l___regBuiltin_Std_BitVec_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1597____closed__3(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1597____closed__3); -l___regBuiltin_Std_BitVec_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1597____closed__4 = _init_l___regBuiltin_Std_BitVec_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1597____closed__4(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1597____closed__4); -l___regBuiltin_Std_BitVec_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1597____closed__5 = _init_l___regBuiltin_Std_BitVec_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1597____closed__5(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1597____closed__5); -l___regBuiltin_Std_BitVec_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1597____closed__6 = _init_l___regBuiltin_Std_BitVec_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1597____closed__6(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1597____closed__6); -l___regBuiltin_Std_BitVec_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1597____closed__7 = _init_l___regBuiltin_Std_BitVec_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1597____closed__7(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1597____closed__7); -l___regBuiltin_Std_BitVec_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1597____closed__8 = _init_l___regBuiltin_Std_BitVec_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1597____closed__8(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1597____closed__8); -l___regBuiltin_Std_BitVec_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1597____closed__9 = _init_l___regBuiltin_Std_BitVec_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1597____closed__9(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1597____closed__9); -l___regBuiltin_Std_BitVec_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1597____closed__10 = _init_l___regBuiltin_Std_BitVec_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1597____closed__10(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1597____closed__10); -l___regBuiltin_Std_BitVec_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1597____closed__11 = _init_l___regBuiltin_Std_BitVec_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1597____closed__11(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1597____closed__11); -l___regBuiltin_Std_BitVec_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1597____closed__12 = _init_l___regBuiltin_Std_BitVec_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1597____closed__12(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1597____closed__12); -l___regBuiltin_Std_BitVec_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1597____closed__13 = _init_l___regBuiltin_Std_BitVec_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1597____closed__13(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1597____closed__13); -l___regBuiltin_Std_BitVec_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1597____closed__14 = _init_l___regBuiltin_Std_BitVec_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1597____closed__14(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1597____closed__14); -if (builtin) {res = l___regBuiltin_Std_BitVec_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1597_(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Std_BitVec_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1599_(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Std_BitVec_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1601_(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -}l_Std_BitVec_reduceMul___closed__1 = _init_l_Std_BitVec_reduceMul___closed__1(); -lean_mark_persistent(l_Std_BitVec_reduceMul___closed__1); -l_Std_BitVec_reduceMul___closed__2 = _init_l_Std_BitVec_reduceMul___closed__2(); -lean_mark_persistent(l_Std_BitVec_reduceMul___closed__2); -l_Std_BitVec_reduceMul___closed__3 = _init_l_Std_BitVec_reduceMul___closed__3(); -lean_mark_persistent(l_Std_BitVec_reduceMul___closed__3); -l___regBuiltin_Std_BitVec_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1639____closed__1 = _init_l___regBuiltin_Std_BitVec_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1639____closed__1(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1639____closed__1); -l___regBuiltin_Std_BitVec_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1639____closed__2 = _init_l___regBuiltin_Std_BitVec_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1639____closed__2(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1639____closed__2); -l___regBuiltin_Std_BitVec_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1639____closed__3 = _init_l___regBuiltin_Std_BitVec_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1639____closed__3(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1639____closed__3); -l___regBuiltin_Std_BitVec_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1639____closed__4 = _init_l___regBuiltin_Std_BitVec_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1639____closed__4(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1639____closed__4); -l___regBuiltin_Std_BitVec_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1639____closed__5 = _init_l___regBuiltin_Std_BitVec_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1639____closed__5(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1639____closed__5); -l___regBuiltin_Std_BitVec_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1639____closed__6 = _init_l___regBuiltin_Std_BitVec_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1639____closed__6(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1639____closed__6); -l___regBuiltin_Std_BitVec_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1639____closed__7 = _init_l___regBuiltin_Std_BitVec_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1639____closed__7(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1639____closed__7); -l___regBuiltin_Std_BitVec_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1639____closed__8 = _init_l___regBuiltin_Std_BitVec_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1639____closed__8(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1639____closed__8); -l___regBuiltin_Std_BitVec_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1639____closed__9 = _init_l___regBuiltin_Std_BitVec_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1639____closed__9(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1639____closed__9); -l___regBuiltin_Std_BitVec_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1639____closed__10 = _init_l___regBuiltin_Std_BitVec_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1639____closed__10(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1639____closed__10); -l___regBuiltin_Std_BitVec_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1639____closed__11 = _init_l___regBuiltin_Std_BitVec_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1639____closed__11(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1639____closed__11); -l___regBuiltin_Std_BitVec_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1639____closed__12 = _init_l___regBuiltin_Std_BitVec_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1639____closed__12(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1639____closed__12); -l___regBuiltin_Std_BitVec_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1639____closed__13 = _init_l___regBuiltin_Std_BitVec_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1639____closed__13(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1639____closed__13); -l___regBuiltin_Std_BitVec_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1639____closed__14 = _init_l___regBuiltin_Std_BitVec_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1639____closed__14(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1639____closed__14); -if (builtin) {res = l___regBuiltin_Std_BitVec_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1639_(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Std_BitVec_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1641_(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Std_BitVec_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1643_(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -}l_Std_BitVec_reduceSub___closed__1 = _init_l_Std_BitVec_reduceSub___closed__1(); -lean_mark_persistent(l_Std_BitVec_reduceSub___closed__1); -l_Std_BitVec_reduceSub___closed__2 = _init_l_Std_BitVec_reduceSub___closed__2(); -lean_mark_persistent(l_Std_BitVec_reduceSub___closed__2); -l_Std_BitVec_reduceSub___closed__3 = _init_l_Std_BitVec_reduceSub___closed__3(); -lean_mark_persistent(l_Std_BitVec_reduceSub___closed__3); -l___regBuiltin_Std_BitVec_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1681____closed__1 = _init_l___regBuiltin_Std_BitVec_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1681____closed__1(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1681____closed__1); -l___regBuiltin_Std_BitVec_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1681____closed__2 = _init_l___regBuiltin_Std_BitVec_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1681____closed__2(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1681____closed__2); -l___regBuiltin_Std_BitVec_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1681____closed__3 = _init_l___regBuiltin_Std_BitVec_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1681____closed__3(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1681____closed__3); -l___regBuiltin_Std_BitVec_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1681____closed__4 = _init_l___regBuiltin_Std_BitVec_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1681____closed__4(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1681____closed__4); -l___regBuiltin_Std_BitVec_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1681____closed__5 = _init_l___regBuiltin_Std_BitVec_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1681____closed__5(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1681____closed__5); -l___regBuiltin_Std_BitVec_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1681____closed__6 = _init_l___regBuiltin_Std_BitVec_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1681____closed__6(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1681____closed__6); -l___regBuiltin_Std_BitVec_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1681____closed__7 = _init_l___regBuiltin_Std_BitVec_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1681____closed__7(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1681____closed__7); -l___regBuiltin_Std_BitVec_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1681____closed__8 = _init_l___regBuiltin_Std_BitVec_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1681____closed__8(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1681____closed__8); -l___regBuiltin_Std_BitVec_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1681____closed__9 = _init_l___regBuiltin_Std_BitVec_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1681____closed__9(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1681____closed__9); -l___regBuiltin_Std_BitVec_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1681____closed__10 = _init_l___regBuiltin_Std_BitVec_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1681____closed__10(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1681____closed__10); -l___regBuiltin_Std_BitVec_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1681____closed__11 = _init_l___regBuiltin_Std_BitVec_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1681____closed__11(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1681____closed__11); -l___regBuiltin_Std_BitVec_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1681____closed__12 = _init_l___regBuiltin_Std_BitVec_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1681____closed__12(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1681____closed__12); -l___regBuiltin_Std_BitVec_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1681____closed__13 = _init_l___regBuiltin_Std_BitVec_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1681____closed__13(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1681____closed__13); -l___regBuiltin_Std_BitVec_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1681____closed__14 = _init_l___regBuiltin_Std_BitVec_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1681____closed__14(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1681____closed__14); -if (builtin) {res = l___regBuiltin_Std_BitVec_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1681_(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Std_BitVec_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1683_(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Std_BitVec_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1685_(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -}l_Std_BitVec_reduceDiv___closed__1 = _init_l_Std_BitVec_reduceDiv___closed__1(); -lean_mark_persistent(l_Std_BitVec_reduceDiv___closed__1); -l_Std_BitVec_reduceDiv___closed__2 = _init_l_Std_BitVec_reduceDiv___closed__2(); -lean_mark_persistent(l_Std_BitVec_reduceDiv___closed__2); -l_Std_BitVec_reduceDiv___closed__3 = _init_l_Std_BitVec_reduceDiv___closed__3(); -lean_mark_persistent(l_Std_BitVec_reduceDiv___closed__3); -l___regBuiltin_Std_BitVec_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1723____closed__1 = _init_l___regBuiltin_Std_BitVec_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1723____closed__1(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1723____closed__1); -l___regBuiltin_Std_BitVec_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1723____closed__2 = _init_l___regBuiltin_Std_BitVec_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1723____closed__2(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1723____closed__2); -l___regBuiltin_Std_BitVec_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1723____closed__3 = _init_l___regBuiltin_Std_BitVec_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1723____closed__3(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1723____closed__3); -l___regBuiltin_Std_BitVec_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1723____closed__4 = _init_l___regBuiltin_Std_BitVec_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1723____closed__4(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1723____closed__4); -l___regBuiltin_Std_BitVec_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1723____closed__5 = _init_l___regBuiltin_Std_BitVec_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1723____closed__5(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1723____closed__5); -l___regBuiltin_Std_BitVec_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1723____closed__6 = _init_l___regBuiltin_Std_BitVec_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1723____closed__6(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1723____closed__6); -l___regBuiltin_Std_BitVec_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1723____closed__7 = _init_l___regBuiltin_Std_BitVec_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1723____closed__7(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1723____closed__7); -l___regBuiltin_Std_BitVec_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1723____closed__8 = _init_l___regBuiltin_Std_BitVec_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1723____closed__8(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1723____closed__8); -l___regBuiltin_Std_BitVec_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1723____closed__9 = _init_l___regBuiltin_Std_BitVec_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1723____closed__9(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1723____closed__9); -l___regBuiltin_Std_BitVec_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1723____closed__10 = _init_l___regBuiltin_Std_BitVec_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1723____closed__10(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1723____closed__10); -l___regBuiltin_Std_BitVec_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1723____closed__11 = _init_l___regBuiltin_Std_BitVec_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1723____closed__11(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1723____closed__11); -l___regBuiltin_Std_BitVec_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1723____closed__12 = _init_l___regBuiltin_Std_BitVec_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1723____closed__12(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1723____closed__12); -l___regBuiltin_Std_BitVec_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1723____closed__13 = _init_l___regBuiltin_Std_BitVec_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1723____closed__13(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1723____closed__13); -l___regBuiltin_Std_BitVec_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1723____closed__14 = _init_l___regBuiltin_Std_BitVec_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1723____closed__14(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1723____closed__14); -if (builtin) {res = l___regBuiltin_Std_BitVec_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1723_(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Std_BitVec_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1725_(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Std_BitVec_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1727_(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -}l_Std_BitVec_reduceMod___closed__1 = _init_l_Std_BitVec_reduceMod___closed__1(); -lean_mark_persistent(l_Std_BitVec_reduceMod___closed__1); -l_Std_BitVec_reduceMod___closed__2 = _init_l_Std_BitVec_reduceMod___closed__2(); -lean_mark_persistent(l_Std_BitVec_reduceMod___closed__2); -l_Std_BitVec_reduceMod___closed__3 = _init_l_Std_BitVec_reduceMod___closed__3(); -lean_mark_persistent(l_Std_BitVec_reduceMod___closed__3); -l___regBuiltin_Std_BitVec_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1765____closed__1 = _init_l___regBuiltin_Std_BitVec_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1765____closed__1(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1765____closed__1); -l___regBuiltin_Std_BitVec_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1765____closed__2 = _init_l___regBuiltin_Std_BitVec_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1765____closed__2(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1765____closed__2); -l___regBuiltin_Std_BitVec_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1765____closed__3 = _init_l___regBuiltin_Std_BitVec_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1765____closed__3(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1765____closed__3); -l___regBuiltin_Std_BitVec_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1765____closed__4 = _init_l___regBuiltin_Std_BitVec_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1765____closed__4(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1765____closed__4); -l___regBuiltin_Std_BitVec_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1765____closed__5 = _init_l___regBuiltin_Std_BitVec_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1765____closed__5(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1765____closed__5); -l___regBuiltin_Std_BitVec_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1765____closed__6 = _init_l___regBuiltin_Std_BitVec_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1765____closed__6(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1765____closed__6); -l___regBuiltin_Std_BitVec_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1765____closed__7 = _init_l___regBuiltin_Std_BitVec_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1765____closed__7(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1765____closed__7); -l___regBuiltin_Std_BitVec_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1765____closed__8 = _init_l___regBuiltin_Std_BitVec_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1765____closed__8(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1765____closed__8); -l___regBuiltin_Std_BitVec_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1765____closed__9 = _init_l___regBuiltin_Std_BitVec_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1765____closed__9(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1765____closed__9); -l___regBuiltin_Std_BitVec_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1765____closed__10 = _init_l___regBuiltin_Std_BitVec_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1765____closed__10(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1765____closed__10); -l___regBuiltin_Std_BitVec_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1765____closed__11 = _init_l___regBuiltin_Std_BitVec_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1765____closed__11(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1765____closed__11); -l___regBuiltin_Std_BitVec_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1765____closed__12 = _init_l___regBuiltin_Std_BitVec_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1765____closed__12(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1765____closed__12); -l___regBuiltin_Std_BitVec_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1765____closed__13 = _init_l___regBuiltin_Std_BitVec_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1765____closed__13(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1765____closed__13); -l___regBuiltin_Std_BitVec_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1765____closed__14 = _init_l___regBuiltin_Std_BitVec_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1765____closed__14(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1765____closed__14); -if (builtin) {res = l___regBuiltin_Std_BitVec_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1765_(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Std_BitVec_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1767_(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Std_BitVec_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1769_(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -}l_Std_BitVec_reduceUMod___closed__1 = _init_l_Std_BitVec_reduceUMod___closed__1(); -lean_mark_persistent(l_Std_BitVec_reduceUMod___closed__1); -l_Std_BitVec_reduceUMod___closed__2 = _init_l_Std_BitVec_reduceUMod___closed__2(); -lean_mark_persistent(l_Std_BitVec_reduceUMod___closed__2); -l___regBuiltin_Std_BitVec_reduceUMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1791____closed__1 = _init_l___regBuiltin_Std_BitVec_reduceUMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1791____closed__1(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceUMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1791____closed__1); -l___regBuiltin_Std_BitVec_reduceUMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1791____closed__2 = _init_l___regBuiltin_Std_BitVec_reduceUMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1791____closed__2(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceUMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1791____closed__2); -l___regBuiltin_Std_BitVec_reduceUMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1791____closed__3 = _init_l___regBuiltin_Std_BitVec_reduceUMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1791____closed__3(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceUMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1791____closed__3); -l___regBuiltin_Std_BitVec_reduceUMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1791____closed__4 = _init_l___regBuiltin_Std_BitVec_reduceUMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1791____closed__4(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceUMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1791____closed__4); -l___regBuiltin_Std_BitVec_reduceUMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1791____closed__5 = _init_l___regBuiltin_Std_BitVec_reduceUMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1791____closed__5(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceUMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1791____closed__5); -l___regBuiltin_Std_BitVec_reduceUMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1791____closed__6 = _init_l___regBuiltin_Std_BitVec_reduceUMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1791____closed__6(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceUMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1791____closed__6); -l___regBuiltin_Std_BitVec_reduceUMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1791____closed__7 = _init_l___regBuiltin_Std_BitVec_reduceUMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1791____closed__7(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceUMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1791____closed__7); -l___regBuiltin_Std_BitVec_reduceUMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1791____closed__8 = _init_l___regBuiltin_Std_BitVec_reduceUMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1791____closed__8(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceUMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1791____closed__8); -l___regBuiltin_Std_BitVec_reduceUMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1791____closed__9 = _init_l___regBuiltin_Std_BitVec_reduceUMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1791____closed__9(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceUMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1791____closed__9); -if (builtin) {res = l___regBuiltin_Std_BitVec_reduceUMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1791_(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Std_BitVec_reduceUMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1793_(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Std_BitVec_reduceUMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1795_(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -}l_Std_BitVec_reduceUDiv___closed__1 = _init_l_Std_BitVec_reduceUDiv___closed__1(); -lean_mark_persistent(l_Std_BitVec_reduceUDiv___closed__1); -l_Std_BitVec_reduceUDiv___closed__2 = _init_l_Std_BitVec_reduceUDiv___closed__2(); -lean_mark_persistent(l_Std_BitVec_reduceUDiv___closed__2); -l___regBuiltin_Std_BitVec_reduceUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1817____closed__1 = _init_l___regBuiltin_Std_BitVec_reduceUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1817____closed__1(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1817____closed__1); -l___regBuiltin_Std_BitVec_reduceUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1817____closed__2 = _init_l___regBuiltin_Std_BitVec_reduceUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1817____closed__2(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1817____closed__2); -l___regBuiltin_Std_BitVec_reduceUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1817____closed__3 = _init_l___regBuiltin_Std_BitVec_reduceUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1817____closed__3(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1817____closed__3); -l___regBuiltin_Std_BitVec_reduceUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1817____closed__4 = _init_l___regBuiltin_Std_BitVec_reduceUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1817____closed__4(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1817____closed__4); -l___regBuiltin_Std_BitVec_reduceUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1817____closed__5 = _init_l___regBuiltin_Std_BitVec_reduceUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1817____closed__5(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1817____closed__5); -l___regBuiltin_Std_BitVec_reduceUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1817____closed__6 = _init_l___regBuiltin_Std_BitVec_reduceUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1817____closed__6(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1817____closed__6); -l___regBuiltin_Std_BitVec_reduceUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1817____closed__7 = _init_l___regBuiltin_Std_BitVec_reduceUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1817____closed__7(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1817____closed__7); -l___regBuiltin_Std_BitVec_reduceUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1817____closed__8 = _init_l___regBuiltin_Std_BitVec_reduceUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1817____closed__8(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1817____closed__8); -if (builtin) {res = l___regBuiltin_Std_BitVec_reduceUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1817_(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Std_BitVec_reduceUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1819_(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Std_BitVec_reduceUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1821_(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -}l_Std_BitVec_reduceSMTUDiv___closed__1 = _init_l_Std_BitVec_reduceSMTUDiv___closed__1(); -lean_mark_persistent(l_Std_BitVec_reduceSMTUDiv___closed__1); -l_Std_BitVec_reduceSMTUDiv___closed__2 = _init_l_Std_BitVec_reduceSMTUDiv___closed__2(); -lean_mark_persistent(l_Std_BitVec_reduceSMTUDiv___closed__2); -l___regBuiltin_Std_BitVec_reduceSMTUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1843____closed__1 = _init_l___regBuiltin_Std_BitVec_reduceSMTUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1843____closed__1(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceSMTUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1843____closed__1); -l___regBuiltin_Std_BitVec_reduceSMTUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1843____closed__2 = _init_l___regBuiltin_Std_BitVec_reduceSMTUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1843____closed__2(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceSMTUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1843____closed__2); -l___regBuiltin_Std_BitVec_reduceSMTUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1843____closed__3 = _init_l___regBuiltin_Std_BitVec_reduceSMTUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1843____closed__3(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceSMTUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1843____closed__3); -l___regBuiltin_Std_BitVec_reduceSMTUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1843____closed__4 = _init_l___regBuiltin_Std_BitVec_reduceSMTUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1843____closed__4(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceSMTUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1843____closed__4); -l___regBuiltin_Std_BitVec_reduceSMTUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1843____closed__5 = _init_l___regBuiltin_Std_BitVec_reduceSMTUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1843____closed__5(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceSMTUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1843____closed__5); -l___regBuiltin_Std_BitVec_reduceSMTUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1843____closed__6 = _init_l___regBuiltin_Std_BitVec_reduceSMTUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1843____closed__6(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceSMTUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1843____closed__6); -l___regBuiltin_Std_BitVec_reduceSMTUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1843____closed__7 = _init_l___regBuiltin_Std_BitVec_reduceSMTUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1843____closed__7(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceSMTUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1843____closed__7); -l___regBuiltin_Std_BitVec_reduceSMTUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1843____closed__8 = _init_l___regBuiltin_Std_BitVec_reduceSMTUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1843____closed__8(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceSMTUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1843____closed__8); -if (builtin) {res = l___regBuiltin_Std_BitVec_reduceSMTUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1843_(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Std_BitVec_reduceSMTUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1845_(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Std_BitVec_reduceSMTUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1847_(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -}l_Std_BitVec_reduceSMod___closed__1 = _init_l_Std_BitVec_reduceSMod___closed__1(); -lean_mark_persistent(l_Std_BitVec_reduceSMod___closed__1); -l_Std_BitVec_reduceSMod___closed__2 = _init_l_Std_BitVec_reduceSMod___closed__2(); -lean_mark_persistent(l_Std_BitVec_reduceSMod___closed__2); -l___regBuiltin_Std_BitVec_reduceSMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1869____closed__1 = _init_l___regBuiltin_Std_BitVec_reduceSMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1869____closed__1(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceSMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1869____closed__1); -l___regBuiltin_Std_BitVec_reduceSMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1869____closed__2 = _init_l___regBuiltin_Std_BitVec_reduceSMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1869____closed__2(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceSMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1869____closed__2); -l___regBuiltin_Std_BitVec_reduceSMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1869____closed__3 = _init_l___regBuiltin_Std_BitVec_reduceSMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1869____closed__3(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceSMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1869____closed__3); -l___regBuiltin_Std_BitVec_reduceSMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1869____closed__4 = _init_l___regBuiltin_Std_BitVec_reduceSMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1869____closed__4(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceSMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1869____closed__4); -l___regBuiltin_Std_BitVec_reduceSMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1869____closed__5 = _init_l___regBuiltin_Std_BitVec_reduceSMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1869____closed__5(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceSMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1869____closed__5); -l___regBuiltin_Std_BitVec_reduceSMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1869____closed__6 = _init_l___regBuiltin_Std_BitVec_reduceSMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1869____closed__6(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceSMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1869____closed__6); -l___regBuiltin_Std_BitVec_reduceSMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1869____closed__7 = _init_l___regBuiltin_Std_BitVec_reduceSMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1869____closed__7(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceSMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1869____closed__7); -l___regBuiltin_Std_BitVec_reduceSMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1869____closed__8 = _init_l___regBuiltin_Std_BitVec_reduceSMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1869____closed__8(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceSMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1869____closed__8); -if (builtin) {res = l___regBuiltin_Std_BitVec_reduceSMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1869_(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Std_BitVec_reduceSMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1871_(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Std_BitVec_reduceSMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1873_(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -}l_Std_BitVec_reduceSRem___closed__1 = _init_l_Std_BitVec_reduceSRem___closed__1(); -lean_mark_persistent(l_Std_BitVec_reduceSRem___closed__1); -l_Std_BitVec_reduceSRem___closed__2 = _init_l_Std_BitVec_reduceSRem___closed__2(); -lean_mark_persistent(l_Std_BitVec_reduceSRem___closed__2); -l___regBuiltin_Std_BitVec_reduceSRem_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1895____closed__1 = _init_l___regBuiltin_Std_BitVec_reduceSRem_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1895____closed__1(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceSRem_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1895____closed__1); -l___regBuiltin_Std_BitVec_reduceSRem_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1895____closed__2 = _init_l___regBuiltin_Std_BitVec_reduceSRem_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1895____closed__2(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceSRem_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1895____closed__2); -l___regBuiltin_Std_BitVec_reduceSRem_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1895____closed__3 = _init_l___regBuiltin_Std_BitVec_reduceSRem_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1895____closed__3(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceSRem_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1895____closed__3); -l___regBuiltin_Std_BitVec_reduceSRem_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1895____closed__4 = _init_l___regBuiltin_Std_BitVec_reduceSRem_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1895____closed__4(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceSRem_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1895____closed__4); -l___regBuiltin_Std_BitVec_reduceSRem_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1895____closed__5 = _init_l___regBuiltin_Std_BitVec_reduceSRem_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1895____closed__5(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceSRem_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1895____closed__5); -l___regBuiltin_Std_BitVec_reduceSRem_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1895____closed__6 = _init_l___regBuiltin_Std_BitVec_reduceSRem_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1895____closed__6(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceSRem_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1895____closed__6); -l___regBuiltin_Std_BitVec_reduceSRem_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1895____closed__7 = _init_l___regBuiltin_Std_BitVec_reduceSRem_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1895____closed__7(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceSRem_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1895____closed__7); -l___regBuiltin_Std_BitVec_reduceSRem_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1895____closed__8 = _init_l___regBuiltin_Std_BitVec_reduceSRem_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1895____closed__8(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceSRem_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1895____closed__8); -if (builtin) {res = l___regBuiltin_Std_BitVec_reduceSRem_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1895_(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Std_BitVec_reduceSRem_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1897_(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Std_BitVec_reduceSRem_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1899_(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -}l_Std_BitVec_reduceSDiv___closed__1 = _init_l_Std_BitVec_reduceSDiv___closed__1(); -lean_mark_persistent(l_Std_BitVec_reduceSDiv___closed__1); -l_Std_BitVec_reduceSDiv___closed__2 = _init_l_Std_BitVec_reduceSDiv___closed__2(); -lean_mark_persistent(l_Std_BitVec_reduceSDiv___closed__2); -l___regBuiltin_Std_BitVec_reduceSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1921____closed__1 = _init_l___regBuiltin_Std_BitVec_reduceSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1921____closed__1(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1921____closed__1); -l___regBuiltin_Std_BitVec_reduceSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1921____closed__2 = _init_l___regBuiltin_Std_BitVec_reduceSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1921____closed__2(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1921____closed__2); -l___regBuiltin_Std_BitVec_reduceSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1921____closed__3 = _init_l___regBuiltin_Std_BitVec_reduceSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1921____closed__3(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1921____closed__3); -l___regBuiltin_Std_BitVec_reduceSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1921____closed__4 = _init_l___regBuiltin_Std_BitVec_reduceSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1921____closed__4(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1921____closed__4); -l___regBuiltin_Std_BitVec_reduceSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1921____closed__5 = _init_l___regBuiltin_Std_BitVec_reduceSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1921____closed__5(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1921____closed__5); -l___regBuiltin_Std_BitVec_reduceSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1921____closed__6 = _init_l___regBuiltin_Std_BitVec_reduceSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1921____closed__6(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1921____closed__6); -l___regBuiltin_Std_BitVec_reduceSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1921____closed__7 = _init_l___regBuiltin_Std_BitVec_reduceSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1921____closed__7(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1921____closed__7); -l___regBuiltin_Std_BitVec_reduceSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1921____closed__8 = _init_l___regBuiltin_Std_BitVec_reduceSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1921____closed__8(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1921____closed__8); -if (builtin) {res = l___regBuiltin_Std_BitVec_reduceSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1921_(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Std_BitVec_reduceSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1923_(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Std_BitVec_reduceSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1925_(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -}l_Std_BitVec_reduceSMTSDiv___closed__1 = _init_l_Std_BitVec_reduceSMTSDiv___closed__1(); -lean_mark_persistent(l_Std_BitVec_reduceSMTSDiv___closed__1); -l_Std_BitVec_reduceSMTSDiv___closed__2 = _init_l_Std_BitVec_reduceSMTSDiv___closed__2(); -lean_mark_persistent(l_Std_BitVec_reduceSMTSDiv___closed__2); -l___regBuiltin_Std_BitVec_reduceSMTSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1947____closed__1 = _init_l___regBuiltin_Std_BitVec_reduceSMTSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1947____closed__1(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceSMTSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1947____closed__1); -l___regBuiltin_Std_BitVec_reduceSMTSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1947____closed__2 = _init_l___regBuiltin_Std_BitVec_reduceSMTSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1947____closed__2(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceSMTSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1947____closed__2); -l___regBuiltin_Std_BitVec_reduceSMTSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1947____closed__3 = _init_l___regBuiltin_Std_BitVec_reduceSMTSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1947____closed__3(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceSMTSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1947____closed__3); -l___regBuiltin_Std_BitVec_reduceSMTSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1947____closed__4 = _init_l___regBuiltin_Std_BitVec_reduceSMTSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1947____closed__4(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceSMTSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1947____closed__4); -l___regBuiltin_Std_BitVec_reduceSMTSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1947____closed__5 = _init_l___regBuiltin_Std_BitVec_reduceSMTSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1947____closed__5(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceSMTSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1947____closed__5); -l___regBuiltin_Std_BitVec_reduceSMTSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1947____closed__6 = _init_l___regBuiltin_Std_BitVec_reduceSMTSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1947____closed__6(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceSMTSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1947____closed__6); -l___regBuiltin_Std_BitVec_reduceSMTSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1947____closed__7 = _init_l___regBuiltin_Std_BitVec_reduceSMTSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1947____closed__7(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceSMTSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1947____closed__7); -l___regBuiltin_Std_BitVec_reduceSMTSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1947____closed__8 = _init_l___regBuiltin_Std_BitVec_reduceSMTSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1947____closed__8(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceSMTSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1947____closed__8); -if (builtin) {res = l___regBuiltin_Std_BitVec_reduceSMTSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1947_(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Std_BitVec_reduceSMTSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1949_(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Std_BitVec_reduceSMTSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1951_(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -}l_Std_BitVec_reduceGetLsb___closed__1 = _init_l_Std_BitVec_reduceGetLsb___closed__1(); -lean_mark_persistent(l_Std_BitVec_reduceGetLsb___closed__1); -l_Std_BitVec_reduceGetLsb___closed__2 = _init_l_Std_BitVec_reduceGetLsb___closed__2(); -lean_mark_persistent(l_Std_BitVec_reduceGetLsb___closed__2); -l___regBuiltin_Std_BitVec_reduceGetLsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1968____closed__1 = _init_l___regBuiltin_Std_BitVec_reduceGetLsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1968____closed__1(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceGetLsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1968____closed__1); -l___regBuiltin_Std_BitVec_reduceGetLsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1968____closed__2 = _init_l___regBuiltin_Std_BitVec_reduceGetLsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1968____closed__2(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceGetLsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1968____closed__2); -l___regBuiltin_Std_BitVec_reduceGetLsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1968____closed__3 = _init_l___regBuiltin_Std_BitVec_reduceGetLsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1968____closed__3(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceGetLsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1968____closed__3); -l___regBuiltin_Std_BitVec_reduceGetLsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1968____closed__4 = _init_l___regBuiltin_Std_BitVec_reduceGetLsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1968____closed__4(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceGetLsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1968____closed__4); -l___regBuiltin_Std_BitVec_reduceGetLsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1968____closed__5 = _init_l___regBuiltin_Std_BitVec_reduceGetLsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1968____closed__5(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceGetLsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1968____closed__5); -l___regBuiltin_Std_BitVec_reduceGetLsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1968____closed__6 = _init_l___regBuiltin_Std_BitVec_reduceGetLsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1968____closed__6(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceGetLsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1968____closed__6); -l___regBuiltin_Std_BitVec_reduceGetLsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1968____closed__7 = _init_l___regBuiltin_Std_BitVec_reduceGetLsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1968____closed__7(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceGetLsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1968____closed__7); -l___regBuiltin_Std_BitVec_reduceGetLsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1968____closed__8 = _init_l___regBuiltin_Std_BitVec_reduceGetLsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1968____closed__8(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceGetLsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1968____closed__8); -if (builtin) {res = l___regBuiltin_Std_BitVec_reduceGetLsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1968_(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Std_BitVec_reduceGetLsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1970_(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Std_BitVec_reduceGetLsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1972_(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -}l_Std_BitVec_reduceGetMsb___closed__1 = _init_l_Std_BitVec_reduceGetMsb___closed__1(); -lean_mark_persistent(l_Std_BitVec_reduceGetMsb___closed__1); -l_Std_BitVec_reduceGetMsb___closed__2 = _init_l_Std_BitVec_reduceGetMsb___closed__2(); -lean_mark_persistent(l_Std_BitVec_reduceGetMsb___closed__2); -l___regBuiltin_Std_BitVec_reduceGetMsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1989____closed__1 = _init_l___regBuiltin_Std_BitVec_reduceGetMsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1989____closed__1(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceGetMsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1989____closed__1); -l___regBuiltin_Std_BitVec_reduceGetMsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1989____closed__2 = _init_l___regBuiltin_Std_BitVec_reduceGetMsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1989____closed__2(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceGetMsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1989____closed__2); -l___regBuiltin_Std_BitVec_reduceGetMsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1989____closed__3 = _init_l___regBuiltin_Std_BitVec_reduceGetMsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1989____closed__3(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceGetMsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1989____closed__3); -l___regBuiltin_Std_BitVec_reduceGetMsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1989____closed__4 = _init_l___regBuiltin_Std_BitVec_reduceGetMsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1989____closed__4(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceGetMsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1989____closed__4); -l___regBuiltin_Std_BitVec_reduceGetMsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1989____closed__5 = _init_l___regBuiltin_Std_BitVec_reduceGetMsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1989____closed__5(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceGetMsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1989____closed__5); -l___regBuiltin_Std_BitVec_reduceGetMsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1989____closed__6 = _init_l___regBuiltin_Std_BitVec_reduceGetMsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1989____closed__6(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceGetMsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1989____closed__6); -l___regBuiltin_Std_BitVec_reduceGetMsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1989____closed__7 = _init_l___regBuiltin_Std_BitVec_reduceGetMsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1989____closed__7(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceGetMsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1989____closed__7); -l___regBuiltin_Std_BitVec_reduceGetMsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1989____closed__8 = _init_l___regBuiltin_Std_BitVec_reduceGetMsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1989____closed__8(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceGetMsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1989____closed__8); -if (builtin) {res = l___regBuiltin_Std_BitVec_reduceGetMsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1989_(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Std_BitVec_reduceGetMsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1991_(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Std_BitVec_reduceGetMsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1993_(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -}l_Std_BitVec_reduceShiftLeft___closed__1 = _init_l_Std_BitVec_reduceShiftLeft___closed__1(); -lean_mark_persistent(l_Std_BitVec_reduceShiftLeft___closed__1); -l_Std_BitVec_reduceShiftLeft___closed__2 = _init_l_Std_BitVec_reduceShiftLeft___closed__2(); -lean_mark_persistent(l_Std_BitVec_reduceShiftLeft___closed__2); -l___regBuiltin_Std_BitVec_reduceShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2011____closed__1 = _init_l___regBuiltin_Std_BitVec_reduceShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2011____closed__1(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2011____closed__1); -l___regBuiltin_Std_BitVec_reduceShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2011____closed__2 = _init_l___regBuiltin_Std_BitVec_reduceShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2011____closed__2(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2011____closed__2); -l___regBuiltin_Std_BitVec_reduceShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2011____closed__3 = _init_l___regBuiltin_Std_BitVec_reduceShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2011____closed__3(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2011____closed__3); -l___regBuiltin_Std_BitVec_reduceShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2011____closed__4 = _init_l___regBuiltin_Std_BitVec_reduceShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2011____closed__4(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2011____closed__4); -l___regBuiltin_Std_BitVec_reduceShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2011____closed__5 = _init_l___regBuiltin_Std_BitVec_reduceShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2011____closed__5(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2011____closed__5); -l___regBuiltin_Std_BitVec_reduceShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2011____closed__6 = _init_l___regBuiltin_Std_BitVec_reduceShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2011____closed__6(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2011____closed__6); -l___regBuiltin_Std_BitVec_reduceShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2011____closed__7 = _init_l___regBuiltin_Std_BitVec_reduceShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2011____closed__7(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2011____closed__7); -l___regBuiltin_Std_BitVec_reduceShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2011____closed__8 = _init_l___regBuiltin_Std_BitVec_reduceShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2011____closed__8(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2011____closed__8); -if (builtin) {res = l___regBuiltin_Std_BitVec_reduceShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2011_(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Std_BitVec_reduceShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2013_(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Std_BitVec_reduceShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2015_(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -}l_Std_BitVec_reduceUShiftRight___closed__1 = _init_l_Std_BitVec_reduceUShiftRight___closed__1(); -lean_mark_persistent(l_Std_BitVec_reduceUShiftRight___closed__1); -l_Std_BitVec_reduceUShiftRight___closed__2 = _init_l_Std_BitVec_reduceUShiftRight___closed__2(); -lean_mark_persistent(l_Std_BitVec_reduceUShiftRight___closed__2); -l___regBuiltin_Std_BitVec_reduceUShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2033____closed__1 = _init_l___regBuiltin_Std_BitVec_reduceUShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2033____closed__1(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceUShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2033____closed__1); -l___regBuiltin_Std_BitVec_reduceUShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2033____closed__2 = _init_l___regBuiltin_Std_BitVec_reduceUShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2033____closed__2(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceUShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2033____closed__2); -l___regBuiltin_Std_BitVec_reduceUShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2033____closed__3 = _init_l___regBuiltin_Std_BitVec_reduceUShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2033____closed__3(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceUShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2033____closed__3); -l___regBuiltin_Std_BitVec_reduceUShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2033____closed__4 = _init_l___regBuiltin_Std_BitVec_reduceUShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2033____closed__4(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceUShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2033____closed__4); -l___regBuiltin_Std_BitVec_reduceUShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2033____closed__5 = _init_l___regBuiltin_Std_BitVec_reduceUShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2033____closed__5(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceUShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2033____closed__5); -l___regBuiltin_Std_BitVec_reduceUShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2033____closed__6 = _init_l___regBuiltin_Std_BitVec_reduceUShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2033____closed__6(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceUShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2033____closed__6); -l___regBuiltin_Std_BitVec_reduceUShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2033____closed__7 = _init_l___regBuiltin_Std_BitVec_reduceUShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2033____closed__7(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceUShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2033____closed__7); -l___regBuiltin_Std_BitVec_reduceUShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2033____closed__8 = _init_l___regBuiltin_Std_BitVec_reduceUShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2033____closed__8(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceUShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2033____closed__8); -if (builtin) {res = l___regBuiltin_Std_BitVec_reduceUShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2033_(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Std_BitVec_reduceUShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2035_(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Std_BitVec_reduceUShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2037_(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -}l_Std_BitVec_reduceSShiftRight___closed__1 = _init_l_Std_BitVec_reduceSShiftRight___closed__1(); -lean_mark_persistent(l_Std_BitVec_reduceSShiftRight___closed__1); -l_Std_BitVec_reduceSShiftRight___closed__2 = _init_l_Std_BitVec_reduceSShiftRight___closed__2(); -lean_mark_persistent(l_Std_BitVec_reduceSShiftRight___closed__2); -l___regBuiltin_Std_BitVec_reduceSShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2055____closed__1 = _init_l___regBuiltin_Std_BitVec_reduceSShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2055____closed__1(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceSShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2055____closed__1); -l___regBuiltin_Std_BitVec_reduceSShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2055____closed__2 = _init_l___regBuiltin_Std_BitVec_reduceSShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2055____closed__2(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceSShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2055____closed__2); -l___regBuiltin_Std_BitVec_reduceSShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2055____closed__3 = _init_l___regBuiltin_Std_BitVec_reduceSShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2055____closed__3(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceSShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2055____closed__3); -l___regBuiltin_Std_BitVec_reduceSShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2055____closed__4 = _init_l___regBuiltin_Std_BitVec_reduceSShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2055____closed__4(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceSShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2055____closed__4); -l___regBuiltin_Std_BitVec_reduceSShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2055____closed__5 = _init_l___regBuiltin_Std_BitVec_reduceSShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2055____closed__5(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceSShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2055____closed__5); -l___regBuiltin_Std_BitVec_reduceSShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2055____closed__6 = _init_l___regBuiltin_Std_BitVec_reduceSShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2055____closed__6(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceSShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2055____closed__6); -l___regBuiltin_Std_BitVec_reduceSShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2055____closed__7 = _init_l___regBuiltin_Std_BitVec_reduceSShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2055____closed__7(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceSShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2055____closed__7); -l___regBuiltin_Std_BitVec_reduceSShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2055____closed__8 = _init_l___regBuiltin_Std_BitVec_reduceSShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2055____closed__8(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceSShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2055____closed__8); -if (builtin) {res = l___regBuiltin_Std_BitVec_reduceSShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2055_(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Std_BitVec_reduceSShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2057_(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Std_BitVec_reduceSShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2059_(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -}l_Std_BitVec_reduceHShiftLeft___closed__1 = _init_l_Std_BitVec_reduceHShiftLeft___closed__1(); -lean_mark_persistent(l_Std_BitVec_reduceHShiftLeft___closed__1); -l_Std_BitVec_reduceHShiftLeft___closed__2 = _init_l_Std_BitVec_reduceHShiftLeft___closed__2(); -lean_mark_persistent(l_Std_BitVec_reduceHShiftLeft___closed__2); -l_Std_BitVec_reduceHShiftLeft___closed__3 = _init_l_Std_BitVec_reduceHShiftLeft___closed__3(); -lean_mark_persistent(l_Std_BitVec_reduceHShiftLeft___closed__3); -l___regBuiltin_Std_BitVec_reduceHShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2097____closed__1 = _init_l___regBuiltin_Std_BitVec_reduceHShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2097____closed__1(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceHShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2097____closed__1); -l___regBuiltin_Std_BitVec_reduceHShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2097____closed__2 = _init_l___regBuiltin_Std_BitVec_reduceHShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2097____closed__2(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceHShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2097____closed__2); -l___regBuiltin_Std_BitVec_reduceHShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2097____closed__3 = _init_l___regBuiltin_Std_BitVec_reduceHShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2097____closed__3(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceHShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2097____closed__3); -l___regBuiltin_Std_BitVec_reduceHShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2097____closed__4 = _init_l___regBuiltin_Std_BitVec_reduceHShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2097____closed__4(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceHShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2097____closed__4); -l___regBuiltin_Std_BitVec_reduceHShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2097____closed__5 = _init_l___regBuiltin_Std_BitVec_reduceHShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2097____closed__5(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceHShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2097____closed__5); -l___regBuiltin_Std_BitVec_reduceHShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2097____closed__6 = _init_l___regBuiltin_Std_BitVec_reduceHShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2097____closed__6(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceHShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2097____closed__6); -l___regBuiltin_Std_BitVec_reduceHShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2097____closed__7 = _init_l___regBuiltin_Std_BitVec_reduceHShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2097____closed__7(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceHShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2097____closed__7); -l___regBuiltin_Std_BitVec_reduceHShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2097____closed__8 = _init_l___regBuiltin_Std_BitVec_reduceHShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2097____closed__8(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceHShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2097____closed__8); -l___regBuiltin_Std_BitVec_reduceHShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2097____closed__9 = _init_l___regBuiltin_Std_BitVec_reduceHShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2097____closed__9(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceHShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2097____closed__9); -l___regBuiltin_Std_BitVec_reduceHShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2097____closed__10 = _init_l___regBuiltin_Std_BitVec_reduceHShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2097____closed__10(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceHShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2097____closed__10); -l___regBuiltin_Std_BitVec_reduceHShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2097____closed__11 = _init_l___regBuiltin_Std_BitVec_reduceHShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2097____closed__11(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceHShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2097____closed__11); -l___regBuiltin_Std_BitVec_reduceHShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2097____closed__12 = _init_l___regBuiltin_Std_BitVec_reduceHShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2097____closed__12(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceHShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2097____closed__12); -l___regBuiltin_Std_BitVec_reduceHShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2097____closed__13 = _init_l___regBuiltin_Std_BitVec_reduceHShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2097____closed__13(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceHShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2097____closed__13); -if (builtin) {res = l___regBuiltin_Std_BitVec_reduceHShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2097_(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Std_BitVec_reduceHShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2099_(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Std_BitVec_reduceHShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2101_(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -}l_Std_BitVec_reduceHShiftRight___closed__1 = _init_l_Std_BitVec_reduceHShiftRight___closed__1(); -lean_mark_persistent(l_Std_BitVec_reduceHShiftRight___closed__1); -l_Std_BitVec_reduceHShiftRight___closed__2 = _init_l_Std_BitVec_reduceHShiftRight___closed__2(); -lean_mark_persistent(l_Std_BitVec_reduceHShiftRight___closed__2); -l_Std_BitVec_reduceHShiftRight___closed__3 = _init_l_Std_BitVec_reduceHShiftRight___closed__3(); -lean_mark_persistent(l_Std_BitVec_reduceHShiftRight___closed__3); -l___regBuiltin_Std_BitVec_reduceHShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2139____closed__1 = _init_l___regBuiltin_Std_BitVec_reduceHShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2139____closed__1(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceHShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2139____closed__1); -l___regBuiltin_Std_BitVec_reduceHShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2139____closed__2 = _init_l___regBuiltin_Std_BitVec_reduceHShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2139____closed__2(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceHShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2139____closed__2); -l___regBuiltin_Std_BitVec_reduceHShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2139____closed__3 = _init_l___regBuiltin_Std_BitVec_reduceHShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2139____closed__3(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceHShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2139____closed__3); -l___regBuiltin_Std_BitVec_reduceHShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2139____closed__4 = _init_l___regBuiltin_Std_BitVec_reduceHShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2139____closed__4(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceHShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2139____closed__4); -l___regBuiltin_Std_BitVec_reduceHShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2139____closed__5 = _init_l___regBuiltin_Std_BitVec_reduceHShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2139____closed__5(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceHShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2139____closed__5); -l___regBuiltin_Std_BitVec_reduceHShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2139____closed__6 = _init_l___regBuiltin_Std_BitVec_reduceHShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2139____closed__6(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceHShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2139____closed__6); -l___regBuiltin_Std_BitVec_reduceHShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2139____closed__7 = _init_l___regBuiltin_Std_BitVec_reduceHShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2139____closed__7(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceHShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2139____closed__7); -l___regBuiltin_Std_BitVec_reduceHShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2139____closed__8 = _init_l___regBuiltin_Std_BitVec_reduceHShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2139____closed__8(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceHShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2139____closed__8); -l___regBuiltin_Std_BitVec_reduceHShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2139____closed__9 = _init_l___regBuiltin_Std_BitVec_reduceHShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2139____closed__9(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceHShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2139____closed__9); -l___regBuiltin_Std_BitVec_reduceHShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2139____closed__10 = _init_l___regBuiltin_Std_BitVec_reduceHShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2139____closed__10(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceHShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2139____closed__10); -l___regBuiltin_Std_BitVec_reduceHShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2139____closed__11 = _init_l___regBuiltin_Std_BitVec_reduceHShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2139____closed__11(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceHShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2139____closed__11); -l___regBuiltin_Std_BitVec_reduceHShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2139____closed__12 = _init_l___regBuiltin_Std_BitVec_reduceHShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2139____closed__12(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceHShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2139____closed__12); -if (builtin) {res = l___regBuiltin_Std_BitVec_reduceHShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2139_(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Std_BitVec_reduceHShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2141_(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Std_BitVec_reduceHShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2143_(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -}l_Std_BitVec_reduceRotateLeft___closed__1 = _init_l_Std_BitVec_reduceRotateLeft___closed__1(); -lean_mark_persistent(l_Std_BitVec_reduceRotateLeft___closed__1); -l_Std_BitVec_reduceRotateLeft___closed__2 = _init_l_Std_BitVec_reduceRotateLeft___closed__2(); -lean_mark_persistent(l_Std_BitVec_reduceRotateLeft___closed__2); -l___regBuiltin_Std_BitVec_reduceRotateLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2161____closed__1 = _init_l___regBuiltin_Std_BitVec_reduceRotateLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2161____closed__1(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceRotateLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2161____closed__1); -l___regBuiltin_Std_BitVec_reduceRotateLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2161____closed__2 = _init_l___regBuiltin_Std_BitVec_reduceRotateLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2161____closed__2(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceRotateLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2161____closed__2); -l___regBuiltin_Std_BitVec_reduceRotateLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2161____closed__3 = _init_l___regBuiltin_Std_BitVec_reduceRotateLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2161____closed__3(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceRotateLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2161____closed__3); -l___regBuiltin_Std_BitVec_reduceRotateLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2161____closed__4 = _init_l___regBuiltin_Std_BitVec_reduceRotateLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2161____closed__4(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceRotateLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2161____closed__4); -l___regBuiltin_Std_BitVec_reduceRotateLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2161____closed__5 = _init_l___regBuiltin_Std_BitVec_reduceRotateLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2161____closed__5(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceRotateLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2161____closed__5); -l___regBuiltin_Std_BitVec_reduceRotateLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2161____closed__6 = _init_l___regBuiltin_Std_BitVec_reduceRotateLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2161____closed__6(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceRotateLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2161____closed__6); -l___regBuiltin_Std_BitVec_reduceRotateLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2161____closed__7 = _init_l___regBuiltin_Std_BitVec_reduceRotateLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2161____closed__7(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceRotateLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2161____closed__7); -l___regBuiltin_Std_BitVec_reduceRotateLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2161____closed__8 = _init_l___regBuiltin_Std_BitVec_reduceRotateLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2161____closed__8(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceRotateLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2161____closed__8); -if (builtin) {res = l___regBuiltin_Std_BitVec_reduceRotateLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2161_(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Std_BitVec_reduceRotateLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2163_(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Std_BitVec_reduceRotateLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2165_(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -}l_Std_BitVec_reduceRotateRight___closed__1 = _init_l_Std_BitVec_reduceRotateRight___closed__1(); -lean_mark_persistent(l_Std_BitVec_reduceRotateRight___closed__1); -l_Std_BitVec_reduceRotateRight___closed__2 = _init_l_Std_BitVec_reduceRotateRight___closed__2(); -lean_mark_persistent(l_Std_BitVec_reduceRotateRight___closed__2); -l___regBuiltin_Std_BitVec_reduceRotateRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2183____closed__1 = _init_l___regBuiltin_Std_BitVec_reduceRotateRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2183____closed__1(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceRotateRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2183____closed__1); -l___regBuiltin_Std_BitVec_reduceRotateRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2183____closed__2 = _init_l___regBuiltin_Std_BitVec_reduceRotateRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2183____closed__2(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceRotateRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2183____closed__2); -l___regBuiltin_Std_BitVec_reduceRotateRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2183____closed__3 = _init_l___regBuiltin_Std_BitVec_reduceRotateRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2183____closed__3(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceRotateRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2183____closed__3); -l___regBuiltin_Std_BitVec_reduceRotateRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2183____closed__4 = _init_l___regBuiltin_Std_BitVec_reduceRotateRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2183____closed__4(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceRotateRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2183____closed__4); -l___regBuiltin_Std_BitVec_reduceRotateRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2183____closed__5 = _init_l___regBuiltin_Std_BitVec_reduceRotateRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2183____closed__5(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceRotateRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2183____closed__5); -l___regBuiltin_Std_BitVec_reduceRotateRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2183____closed__6 = _init_l___regBuiltin_Std_BitVec_reduceRotateRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2183____closed__6(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceRotateRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2183____closed__6); -l___regBuiltin_Std_BitVec_reduceRotateRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2183____closed__7 = _init_l___regBuiltin_Std_BitVec_reduceRotateRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2183____closed__7(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceRotateRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2183____closed__7); -l___regBuiltin_Std_BitVec_reduceRotateRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2183____closed__8 = _init_l___regBuiltin_Std_BitVec_reduceRotateRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2183____closed__8(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceRotateRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2183____closed__8); -if (builtin) {res = l___regBuiltin_Std_BitVec_reduceRotateRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2183_(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Std_BitVec_reduceRotateRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2185_(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Std_BitVec_reduceRotateRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2187_(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -}l_Std_BitVec_reduceAppend___closed__1 = _init_l_Std_BitVec_reduceAppend___closed__1(); -lean_mark_persistent(l_Std_BitVec_reduceAppend___closed__1); -l_Std_BitVec_reduceAppend___closed__2 = _init_l_Std_BitVec_reduceAppend___closed__2(); -lean_mark_persistent(l_Std_BitVec_reduceAppend___closed__2); -l_Std_BitVec_reduceAppend___closed__3 = _init_l_Std_BitVec_reduceAppend___closed__3(); -lean_mark_persistent(l_Std_BitVec_reduceAppend___closed__3); -l___regBuiltin_Std_BitVec_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2350____closed__1 = _init_l___regBuiltin_Std_BitVec_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2350____closed__1(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2350____closed__1); -l___regBuiltin_Std_BitVec_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2350____closed__2 = _init_l___regBuiltin_Std_BitVec_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2350____closed__2(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2350____closed__2); -l___regBuiltin_Std_BitVec_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2350____closed__3 = _init_l___regBuiltin_Std_BitVec_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2350____closed__3(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2350____closed__3); -l___regBuiltin_Std_BitVec_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2350____closed__4 = _init_l___regBuiltin_Std_BitVec_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2350____closed__4(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2350____closed__4); -l___regBuiltin_Std_BitVec_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2350____closed__5 = _init_l___regBuiltin_Std_BitVec_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2350____closed__5(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2350____closed__5); -l___regBuiltin_Std_BitVec_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2350____closed__6 = _init_l___regBuiltin_Std_BitVec_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2350____closed__6(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2350____closed__6); -l___regBuiltin_Std_BitVec_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2350____closed__7 = _init_l___regBuiltin_Std_BitVec_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2350____closed__7(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2350____closed__7); -l___regBuiltin_Std_BitVec_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2350____closed__8 = _init_l___regBuiltin_Std_BitVec_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2350____closed__8(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2350____closed__8); -l___regBuiltin_Std_BitVec_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2350____closed__9 = _init_l___regBuiltin_Std_BitVec_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2350____closed__9(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2350____closed__9); -l___regBuiltin_Std_BitVec_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2350____closed__10 = _init_l___regBuiltin_Std_BitVec_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2350____closed__10(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2350____closed__10); -l___regBuiltin_Std_BitVec_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2350____closed__11 = _init_l___regBuiltin_Std_BitVec_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2350____closed__11(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2350____closed__11); -l___regBuiltin_Std_BitVec_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2350____closed__12 = _init_l___regBuiltin_Std_BitVec_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2350____closed__12(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2350____closed__12); -if (builtin) {res = l___regBuiltin_Std_BitVec_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2350_(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Std_BitVec_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2352_(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Std_BitVec_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2354_(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -}l_Std_BitVec_reduceCast___closed__1 = _init_l_Std_BitVec_reduceCast___closed__1(); -lean_mark_persistent(l_Std_BitVec_reduceCast___closed__1); -l_Std_BitVec_reduceCast___closed__2 = _init_l_Std_BitVec_reduceCast___closed__2(); -lean_mark_persistent(l_Std_BitVec_reduceCast___closed__2); -l___regBuiltin_Std_BitVec_reduceCast_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2505____closed__1 = _init_l___regBuiltin_Std_BitVec_reduceCast_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2505____closed__1(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceCast_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2505____closed__1); -l___regBuiltin_Std_BitVec_reduceCast_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2505____closed__2 = _init_l___regBuiltin_Std_BitVec_reduceCast_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2505____closed__2(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceCast_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2505____closed__2); -l___regBuiltin_Std_BitVec_reduceCast_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2505____closed__3 = _init_l___regBuiltin_Std_BitVec_reduceCast_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2505____closed__3(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceCast_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2505____closed__3); -l___regBuiltin_Std_BitVec_reduceCast_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2505____closed__4 = _init_l___regBuiltin_Std_BitVec_reduceCast_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2505____closed__4(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceCast_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2505____closed__4); -l___regBuiltin_Std_BitVec_reduceCast_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2505____closed__5 = _init_l___regBuiltin_Std_BitVec_reduceCast_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2505____closed__5(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceCast_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2505____closed__5); -l___regBuiltin_Std_BitVec_reduceCast_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2505____closed__6 = _init_l___regBuiltin_Std_BitVec_reduceCast_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2505____closed__6(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceCast_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2505____closed__6); -l___regBuiltin_Std_BitVec_reduceCast_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2505____closed__7 = _init_l___regBuiltin_Std_BitVec_reduceCast_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2505____closed__7(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceCast_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2505____closed__7); -l___regBuiltin_Std_BitVec_reduceCast_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2505____closed__8 = _init_l___regBuiltin_Std_BitVec_reduceCast_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2505____closed__8(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceCast_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2505____closed__8); -l___regBuiltin_Std_BitVec_reduceCast_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2505____closed__9 = _init_l___regBuiltin_Std_BitVec_reduceCast_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2505____closed__9(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceCast_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2505____closed__9); -if (builtin) {res = l___regBuiltin_Std_BitVec_reduceCast_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2505_(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Std_BitVec_reduceCast_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2507_(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Std_BitVec_reduceCast_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2509_(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -}l_Std_BitVec_reduceToNat___closed__1 = _init_l_Std_BitVec_reduceToNat___closed__1(); -lean_mark_persistent(l_Std_BitVec_reduceToNat___closed__1); -l_Std_BitVec_reduceToNat___closed__2 = _init_l_Std_BitVec_reduceToNat___closed__2(); -lean_mark_persistent(l_Std_BitVec_reduceToNat___closed__2); -l___regBuiltin_Std_BitVec_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2613____closed__1 = _init_l___regBuiltin_Std_BitVec_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2613____closed__1(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2613____closed__1); -l___regBuiltin_Std_BitVec_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2613____closed__2 = _init_l___regBuiltin_Std_BitVec_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2613____closed__2(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2613____closed__2); -l___regBuiltin_Std_BitVec_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2613____closed__3 = _init_l___regBuiltin_Std_BitVec_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2613____closed__3(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2613____closed__3); -l___regBuiltin_Std_BitVec_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2613____closed__4 = _init_l___regBuiltin_Std_BitVec_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2613____closed__4(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2613____closed__4); -l___regBuiltin_Std_BitVec_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2613____closed__5 = _init_l___regBuiltin_Std_BitVec_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2613____closed__5(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2613____closed__5); -l___regBuiltin_Std_BitVec_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2613____closed__6 = _init_l___regBuiltin_Std_BitVec_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2613____closed__6(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2613____closed__6); -l___regBuiltin_Std_BitVec_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2613____closed__7 = _init_l___regBuiltin_Std_BitVec_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2613____closed__7(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2613____closed__7); -if (builtin) {res = l___regBuiltin_Std_BitVec_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2613_(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Std_BitVec_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2615_(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Std_BitVec_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2617_(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -}l_Std_BitVec_reduceToInt___closed__1 = _init_l_Std_BitVec_reduceToInt___closed__1(); -lean_mark_persistent(l_Std_BitVec_reduceToInt___closed__1); -l_Std_BitVec_reduceToInt___closed__2 = _init_l_Std_BitVec_reduceToInt___closed__2(); -lean_mark_persistent(l_Std_BitVec_reduceToInt___closed__2); -l___regBuiltin_Std_BitVec_reduceToInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2721____closed__1 = _init_l___regBuiltin_Std_BitVec_reduceToInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2721____closed__1(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceToInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2721____closed__1); -l___regBuiltin_Std_BitVec_reduceToInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2721____closed__2 = _init_l___regBuiltin_Std_BitVec_reduceToInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2721____closed__2(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceToInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2721____closed__2); -l___regBuiltin_Std_BitVec_reduceToInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2721____closed__3 = _init_l___regBuiltin_Std_BitVec_reduceToInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2721____closed__3(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceToInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2721____closed__3); -l___regBuiltin_Std_BitVec_reduceToInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2721____closed__4 = _init_l___regBuiltin_Std_BitVec_reduceToInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2721____closed__4(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceToInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2721____closed__4); -l___regBuiltin_Std_BitVec_reduceToInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2721____closed__5 = _init_l___regBuiltin_Std_BitVec_reduceToInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2721____closed__5(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceToInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2721____closed__5); -l___regBuiltin_Std_BitVec_reduceToInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2721____closed__6 = _init_l___regBuiltin_Std_BitVec_reduceToInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2721____closed__6(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceToInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2721____closed__6); -l___regBuiltin_Std_BitVec_reduceToInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2721____closed__7 = _init_l___regBuiltin_Std_BitVec_reduceToInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2721____closed__7(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceToInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2721____closed__7); -if (builtin) {res = l___regBuiltin_Std_BitVec_reduceToInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2721_(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Std_BitVec_reduceToInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2723_(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Std_BitVec_reduceToInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2725_(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -}l_Std_BitVec_reduceOfInt___closed__1 = _init_l_Std_BitVec_reduceOfInt___closed__1(); -lean_mark_persistent(l_Std_BitVec_reduceOfInt___closed__1); -l_Std_BitVec_reduceOfInt___closed__2 = _init_l_Std_BitVec_reduceOfInt___closed__2(); -lean_mark_persistent(l_Std_BitVec_reduceOfInt___closed__2); -l___regBuiltin_Std_BitVec_reduceOfInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2878____closed__1 = _init_l___regBuiltin_Std_BitVec_reduceOfInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2878____closed__1(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceOfInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2878____closed__1); -l___regBuiltin_Std_BitVec_reduceOfInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2878____closed__2 = _init_l___regBuiltin_Std_BitVec_reduceOfInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2878____closed__2(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceOfInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2878____closed__2); -l___regBuiltin_Std_BitVec_reduceOfInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2878____closed__3 = _init_l___regBuiltin_Std_BitVec_reduceOfInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2878____closed__3(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceOfInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2878____closed__3); -l___regBuiltin_Std_BitVec_reduceOfInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2878____closed__4 = _init_l___regBuiltin_Std_BitVec_reduceOfInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2878____closed__4(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceOfInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2878____closed__4); -l___regBuiltin_Std_BitVec_reduceOfInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2878____closed__5 = _init_l___regBuiltin_Std_BitVec_reduceOfInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2878____closed__5(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceOfInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2878____closed__5); -l___regBuiltin_Std_BitVec_reduceOfInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2878____closed__6 = _init_l___regBuiltin_Std_BitVec_reduceOfInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2878____closed__6(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceOfInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2878____closed__6); -l___regBuiltin_Std_BitVec_reduceOfInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2878____closed__7 = _init_l___regBuiltin_Std_BitVec_reduceOfInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2878____closed__7(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceOfInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2878____closed__7); -if (builtin) {res = l___regBuiltin_Std_BitVec_reduceOfInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2878_(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Std_BitVec_reduceOfInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2880_(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Std_BitVec_reduceOfInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2882_(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -}l___regBuiltin_Std_BitVec_reduceOfNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3086____closed__1 = _init_l___regBuiltin_Std_BitVec_reduceOfNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3086____closed__1(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceOfNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3086____closed__1); -l___regBuiltin_Std_BitVec_reduceOfNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3086____closed__2 = _init_l___regBuiltin_Std_BitVec_reduceOfNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3086____closed__2(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceOfNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3086____closed__2); -l___regBuiltin_Std_BitVec_reduceOfNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3086____closed__3 = _init_l___regBuiltin_Std_BitVec_reduceOfNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3086____closed__3(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceOfNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3086____closed__3); -l___regBuiltin_Std_BitVec_reduceOfNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3086____closed__4 = _init_l___regBuiltin_Std_BitVec_reduceOfNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3086____closed__4(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceOfNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3086____closed__4); -l___regBuiltin_Std_BitVec_reduceOfNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3086____closed__5 = _init_l___regBuiltin_Std_BitVec_reduceOfNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3086____closed__5(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceOfNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3086____closed__5); -l___regBuiltin_Std_BitVec_reduceOfNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3086____closed__6 = _init_l___regBuiltin_Std_BitVec_reduceOfNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3086____closed__6(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceOfNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3086____closed__6); -l___regBuiltin_Std_BitVec_reduceOfNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3086____closed__7 = _init_l___regBuiltin_Std_BitVec_reduceOfNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3086____closed__7(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceOfNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3086____closed__7); -if (builtin) {res = l___regBuiltin_Std_BitVec_reduceOfNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3086_(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Std_BitVec_reduceOfNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3088_(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Std_BitVec_reduceOfNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3090_(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -}l_Std_BitVec_reduceLT___closed__1 = _init_l_Std_BitVec_reduceLT___closed__1(); -lean_mark_persistent(l_Std_BitVec_reduceLT___closed__1); -l_Std_BitVec_reduceLT___closed__2 = _init_l_Std_BitVec_reduceLT___closed__2(); -lean_mark_persistent(l_Std_BitVec_reduceLT___closed__2); -l_Std_BitVec_reduceLT___closed__3 = _init_l_Std_BitVec_reduceLT___closed__3(); -lean_mark_persistent(l_Std_BitVec_reduceLT___closed__3); -l___regBuiltin_Std_BitVec_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3129____closed__1 = _init_l___regBuiltin_Std_BitVec_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3129____closed__1(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3129____closed__1); -l___regBuiltin_Std_BitVec_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3129____closed__2 = _init_l___regBuiltin_Std_BitVec_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3129____closed__2(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3129____closed__2); -l___regBuiltin_Std_BitVec_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3129____closed__3 = _init_l___regBuiltin_Std_BitVec_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3129____closed__3(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3129____closed__3); -l___regBuiltin_Std_BitVec_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3129____closed__4 = _init_l___regBuiltin_Std_BitVec_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3129____closed__4(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3129____closed__4); -l___regBuiltin_Std_BitVec_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3129____closed__5 = _init_l___regBuiltin_Std_BitVec_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3129____closed__5(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3129____closed__5); -l___regBuiltin_Std_BitVec_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3129____closed__6 = _init_l___regBuiltin_Std_BitVec_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3129____closed__6(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3129____closed__6); -l___regBuiltin_Std_BitVec_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3129____closed__7 = _init_l___regBuiltin_Std_BitVec_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3129____closed__7(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3129____closed__7); -l___regBuiltin_Std_BitVec_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3129____closed__8 = _init_l___regBuiltin_Std_BitVec_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3129____closed__8(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3129____closed__8); -l___regBuiltin_Std_BitVec_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3129____closed__9 = _init_l___regBuiltin_Std_BitVec_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3129____closed__9(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3129____closed__9); -l___regBuiltin_Std_BitVec_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3129____closed__10 = _init_l___regBuiltin_Std_BitVec_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3129____closed__10(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3129____closed__10); -l___regBuiltin_Std_BitVec_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3129____closed__11 = _init_l___regBuiltin_Std_BitVec_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3129____closed__11(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3129____closed__11); -if (builtin) {res = l___regBuiltin_Std_BitVec_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3129_(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Std_BitVec_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3131_(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Std_BitVec_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3133_(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -}l_Std_BitVec_reduceLE___closed__1 = _init_l_Std_BitVec_reduceLE___closed__1(); -lean_mark_persistent(l_Std_BitVec_reduceLE___closed__1); -l_Std_BitVec_reduceLE___closed__2 = _init_l_Std_BitVec_reduceLE___closed__2(); -lean_mark_persistent(l_Std_BitVec_reduceLE___closed__2); -l_Std_BitVec_reduceLE___closed__3 = _init_l_Std_BitVec_reduceLE___closed__3(); -lean_mark_persistent(l_Std_BitVec_reduceLE___closed__3); -l___regBuiltin_Std_BitVec_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3172____closed__1 = _init_l___regBuiltin_Std_BitVec_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3172____closed__1(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3172____closed__1); -l___regBuiltin_Std_BitVec_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3172____closed__2 = _init_l___regBuiltin_Std_BitVec_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3172____closed__2(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3172____closed__2); -l___regBuiltin_Std_BitVec_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3172____closed__3 = _init_l___regBuiltin_Std_BitVec_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3172____closed__3(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3172____closed__3); -l___regBuiltin_Std_BitVec_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3172____closed__4 = _init_l___regBuiltin_Std_BitVec_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3172____closed__4(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3172____closed__4); -l___regBuiltin_Std_BitVec_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3172____closed__5 = _init_l___regBuiltin_Std_BitVec_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3172____closed__5(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3172____closed__5); -l___regBuiltin_Std_BitVec_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3172____closed__6 = _init_l___regBuiltin_Std_BitVec_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3172____closed__6(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3172____closed__6); -l___regBuiltin_Std_BitVec_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3172____closed__7 = _init_l___regBuiltin_Std_BitVec_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3172____closed__7(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3172____closed__7); -l___regBuiltin_Std_BitVec_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3172____closed__8 = _init_l___regBuiltin_Std_BitVec_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3172____closed__8(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3172____closed__8); -l___regBuiltin_Std_BitVec_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3172____closed__9 = _init_l___regBuiltin_Std_BitVec_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3172____closed__9(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3172____closed__9); -l___regBuiltin_Std_BitVec_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3172____closed__10 = _init_l___regBuiltin_Std_BitVec_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3172____closed__10(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3172____closed__10); -if (builtin) {res = l___regBuiltin_Std_BitVec_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3172_(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Std_BitVec_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3174_(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Std_BitVec_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3176_(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -}l_Std_BitVec_reduceGT___closed__1 = _init_l_Std_BitVec_reduceGT___closed__1(); -lean_mark_persistent(l_Std_BitVec_reduceGT___closed__1); -l_Std_BitVec_reduceGT___closed__2 = _init_l_Std_BitVec_reduceGT___closed__2(); -lean_mark_persistent(l_Std_BitVec_reduceGT___closed__2); -l_Std_BitVec_reduceGT___closed__3 = _init_l_Std_BitVec_reduceGT___closed__3(); -lean_mark_persistent(l_Std_BitVec_reduceGT___closed__3); -l___regBuiltin_Std_BitVec_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3215____closed__1 = _init_l___regBuiltin_Std_BitVec_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3215____closed__1(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3215____closed__1); -l___regBuiltin_Std_BitVec_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3215____closed__2 = _init_l___regBuiltin_Std_BitVec_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3215____closed__2(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3215____closed__2); -l___regBuiltin_Std_BitVec_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3215____closed__3 = _init_l___regBuiltin_Std_BitVec_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3215____closed__3(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3215____closed__3); -if (builtin) {res = l___regBuiltin_Std_BitVec_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3215_(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Std_BitVec_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3217_(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Std_BitVec_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3219_(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -}l_Std_BitVec_reduceGE___closed__1 = _init_l_Std_BitVec_reduceGE___closed__1(); -lean_mark_persistent(l_Std_BitVec_reduceGE___closed__1); -l_Std_BitVec_reduceGE___closed__2 = _init_l_Std_BitVec_reduceGE___closed__2(); -lean_mark_persistent(l_Std_BitVec_reduceGE___closed__2); -l_Std_BitVec_reduceGE___closed__3 = _init_l_Std_BitVec_reduceGE___closed__3(); -lean_mark_persistent(l_Std_BitVec_reduceGE___closed__3); -l___regBuiltin_Std_BitVec_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3258____closed__1 = _init_l___regBuiltin_Std_BitVec_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3258____closed__1(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3258____closed__1); -l___regBuiltin_Std_BitVec_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3258____closed__2 = _init_l___regBuiltin_Std_BitVec_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3258____closed__2(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3258____closed__2); -l___regBuiltin_Std_BitVec_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3258____closed__3 = _init_l___regBuiltin_Std_BitVec_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3258____closed__3(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3258____closed__3); -if (builtin) {res = l___regBuiltin_Std_BitVec_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3258_(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Std_BitVec_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3260_(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Std_BitVec_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3262_(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -}l_Std_BitVec_reduceULT___closed__1 = _init_l_Std_BitVec_reduceULT___closed__1(); -lean_mark_persistent(l_Std_BitVec_reduceULT___closed__1); -l_Std_BitVec_reduceULT___closed__2 = _init_l_Std_BitVec_reduceULT___closed__2(); -lean_mark_persistent(l_Std_BitVec_reduceULT___closed__2); -l___regBuiltin_Std_BitVec_reduceULT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3281____closed__1 = _init_l___regBuiltin_Std_BitVec_reduceULT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3281____closed__1(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceULT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3281____closed__1); -l___regBuiltin_Std_BitVec_reduceULT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3281____closed__2 = _init_l___regBuiltin_Std_BitVec_reduceULT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3281____closed__2(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceULT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3281____closed__2); -l___regBuiltin_Std_BitVec_reduceULT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3281____closed__3 = _init_l___regBuiltin_Std_BitVec_reduceULT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3281____closed__3(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceULT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3281____closed__3); -l___regBuiltin_Std_BitVec_reduceULT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3281____closed__4 = _init_l___regBuiltin_Std_BitVec_reduceULT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3281____closed__4(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceULT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3281____closed__4); -l___regBuiltin_Std_BitVec_reduceULT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3281____closed__5 = _init_l___regBuiltin_Std_BitVec_reduceULT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3281____closed__5(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceULT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3281____closed__5); -l___regBuiltin_Std_BitVec_reduceULT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3281____closed__6 = _init_l___regBuiltin_Std_BitVec_reduceULT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3281____closed__6(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceULT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3281____closed__6); -l___regBuiltin_Std_BitVec_reduceULT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3281____closed__7 = _init_l___regBuiltin_Std_BitVec_reduceULT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3281____closed__7(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceULT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3281____closed__7); -l___regBuiltin_Std_BitVec_reduceULT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3281____closed__8 = _init_l___regBuiltin_Std_BitVec_reduceULT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3281____closed__8(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceULT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3281____closed__8); -if (builtin) {res = l___regBuiltin_Std_BitVec_reduceULT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3281_(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Std_BitVec_reduceULT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3283_(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Std_BitVec_reduceULT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3285_(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -}l_Std_BitVec_reduceULE___closed__1 = _init_l_Std_BitVec_reduceULE___closed__1(); -lean_mark_persistent(l_Std_BitVec_reduceULE___closed__1); -l_Std_BitVec_reduceULE___closed__2 = _init_l_Std_BitVec_reduceULE___closed__2(); -lean_mark_persistent(l_Std_BitVec_reduceULE___closed__2); -l___regBuiltin_Std_BitVec_reduceULE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3304____closed__1 = _init_l___regBuiltin_Std_BitVec_reduceULE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3304____closed__1(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceULE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3304____closed__1); -l___regBuiltin_Std_BitVec_reduceULE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3304____closed__2 = _init_l___regBuiltin_Std_BitVec_reduceULE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3304____closed__2(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceULE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3304____closed__2); -l___regBuiltin_Std_BitVec_reduceULE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3304____closed__3 = _init_l___regBuiltin_Std_BitVec_reduceULE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3304____closed__3(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceULE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3304____closed__3); -l___regBuiltin_Std_BitVec_reduceULE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3304____closed__4 = _init_l___regBuiltin_Std_BitVec_reduceULE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3304____closed__4(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceULE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3304____closed__4); -l___regBuiltin_Std_BitVec_reduceULE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3304____closed__5 = _init_l___regBuiltin_Std_BitVec_reduceULE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3304____closed__5(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceULE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3304____closed__5); -l___regBuiltin_Std_BitVec_reduceULE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3304____closed__6 = _init_l___regBuiltin_Std_BitVec_reduceULE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3304____closed__6(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceULE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3304____closed__6); -l___regBuiltin_Std_BitVec_reduceULE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3304____closed__7 = _init_l___regBuiltin_Std_BitVec_reduceULE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3304____closed__7(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceULE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3304____closed__7); -l___regBuiltin_Std_BitVec_reduceULE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3304____closed__8 = _init_l___regBuiltin_Std_BitVec_reduceULE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3304____closed__8(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceULE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3304____closed__8); -if (builtin) {res = l___regBuiltin_Std_BitVec_reduceULE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3304_(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Std_BitVec_reduceULE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3306_(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Std_BitVec_reduceULE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3308_(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -}l_Std_BitVec_reduceSLT___closed__1 = _init_l_Std_BitVec_reduceSLT___closed__1(); -lean_mark_persistent(l_Std_BitVec_reduceSLT___closed__1); -l_Std_BitVec_reduceSLT___closed__2 = _init_l_Std_BitVec_reduceSLT___closed__2(); -lean_mark_persistent(l_Std_BitVec_reduceSLT___closed__2); -l___regBuiltin_Std_BitVec_reduceSLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3327____closed__1 = _init_l___regBuiltin_Std_BitVec_reduceSLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3327____closed__1(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceSLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3327____closed__1); -l___regBuiltin_Std_BitVec_reduceSLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3327____closed__2 = _init_l___regBuiltin_Std_BitVec_reduceSLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3327____closed__2(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceSLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3327____closed__2); -l___regBuiltin_Std_BitVec_reduceSLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3327____closed__3 = _init_l___regBuiltin_Std_BitVec_reduceSLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3327____closed__3(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceSLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3327____closed__3); -l___regBuiltin_Std_BitVec_reduceSLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3327____closed__4 = _init_l___regBuiltin_Std_BitVec_reduceSLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3327____closed__4(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceSLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3327____closed__4); -l___regBuiltin_Std_BitVec_reduceSLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3327____closed__5 = _init_l___regBuiltin_Std_BitVec_reduceSLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3327____closed__5(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceSLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3327____closed__5); -l___regBuiltin_Std_BitVec_reduceSLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3327____closed__6 = _init_l___regBuiltin_Std_BitVec_reduceSLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3327____closed__6(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceSLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3327____closed__6); -l___regBuiltin_Std_BitVec_reduceSLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3327____closed__7 = _init_l___regBuiltin_Std_BitVec_reduceSLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3327____closed__7(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceSLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3327____closed__7); -l___regBuiltin_Std_BitVec_reduceSLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3327____closed__8 = _init_l___regBuiltin_Std_BitVec_reduceSLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3327____closed__8(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceSLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3327____closed__8); -if (builtin) {res = l___regBuiltin_Std_BitVec_reduceSLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3327_(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Std_BitVec_reduceSLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3329_(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Std_BitVec_reduceSLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3331_(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -}l_Std_BitVec_reduceSLE___closed__1 = _init_l_Std_BitVec_reduceSLE___closed__1(); -lean_mark_persistent(l_Std_BitVec_reduceSLE___closed__1); -l_Std_BitVec_reduceSLE___closed__2 = _init_l_Std_BitVec_reduceSLE___closed__2(); -lean_mark_persistent(l_Std_BitVec_reduceSLE___closed__2); -l___regBuiltin_Std_BitVec_reduceSLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3350____closed__1 = _init_l___regBuiltin_Std_BitVec_reduceSLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3350____closed__1(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceSLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3350____closed__1); -l___regBuiltin_Std_BitVec_reduceSLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3350____closed__2 = _init_l___regBuiltin_Std_BitVec_reduceSLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3350____closed__2(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceSLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3350____closed__2); -l___regBuiltin_Std_BitVec_reduceSLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3350____closed__3 = _init_l___regBuiltin_Std_BitVec_reduceSLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3350____closed__3(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceSLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3350____closed__3); -l___regBuiltin_Std_BitVec_reduceSLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3350____closed__4 = _init_l___regBuiltin_Std_BitVec_reduceSLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3350____closed__4(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceSLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3350____closed__4); -l___regBuiltin_Std_BitVec_reduceSLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3350____closed__5 = _init_l___regBuiltin_Std_BitVec_reduceSLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3350____closed__5(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceSLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3350____closed__5); -l___regBuiltin_Std_BitVec_reduceSLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3350____closed__6 = _init_l___regBuiltin_Std_BitVec_reduceSLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3350____closed__6(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceSLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3350____closed__6); -l___regBuiltin_Std_BitVec_reduceSLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3350____closed__7 = _init_l___regBuiltin_Std_BitVec_reduceSLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3350____closed__7(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceSLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3350____closed__7); -l___regBuiltin_Std_BitVec_reduceSLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3350____closed__8 = _init_l___regBuiltin_Std_BitVec_reduceSLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3350____closed__8(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceSLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3350____closed__8); -if (builtin) {res = l___regBuiltin_Std_BitVec_reduceSLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3350_(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Std_BitVec_reduceSLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3352_(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Std_BitVec_reduceSLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3354_(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -}l_Std_BitVec_reduceZeroExtend_x27___closed__1 = _init_l_Std_BitVec_reduceZeroExtend_x27___closed__1(); -lean_mark_persistent(l_Std_BitVec_reduceZeroExtend_x27___closed__1); -l_Std_BitVec_reduceZeroExtend_x27___closed__2 = _init_l_Std_BitVec_reduceZeroExtend_x27___closed__2(); -lean_mark_persistent(l_Std_BitVec_reduceZeroExtend_x27___closed__2); -l___regBuiltin_Std_BitVec_reduceZeroExtend_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3529____closed__1 = _init_l___regBuiltin_Std_BitVec_reduceZeroExtend_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3529____closed__1(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceZeroExtend_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3529____closed__1); -l___regBuiltin_Std_BitVec_reduceZeroExtend_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3529____closed__2 = _init_l___regBuiltin_Std_BitVec_reduceZeroExtend_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3529____closed__2(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceZeroExtend_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3529____closed__2); -l___regBuiltin_Std_BitVec_reduceZeroExtend_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3529____closed__3 = _init_l___regBuiltin_Std_BitVec_reduceZeroExtend_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3529____closed__3(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceZeroExtend_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3529____closed__3); -l___regBuiltin_Std_BitVec_reduceZeroExtend_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3529____closed__4 = _init_l___regBuiltin_Std_BitVec_reduceZeroExtend_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3529____closed__4(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceZeroExtend_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3529____closed__4); -l___regBuiltin_Std_BitVec_reduceZeroExtend_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3529____closed__5 = _init_l___regBuiltin_Std_BitVec_reduceZeroExtend_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3529____closed__5(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceZeroExtend_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3529____closed__5); -l___regBuiltin_Std_BitVec_reduceZeroExtend_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3529____closed__6 = _init_l___regBuiltin_Std_BitVec_reduceZeroExtend_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3529____closed__6(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceZeroExtend_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3529____closed__6); -l___regBuiltin_Std_BitVec_reduceZeroExtend_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3529____closed__7 = _init_l___regBuiltin_Std_BitVec_reduceZeroExtend_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3529____closed__7(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceZeroExtend_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3529____closed__7); -l___regBuiltin_Std_BitVec_reduceZeroExtend_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3529____closed__8 = _init_l___regBuiltin_Std_BitVec_reduceZeroExtend_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3529____closed__8(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceZeroExtend_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3529____closed__8); -l___regBuiltin_Std_BitVec_reduceZeroExtend_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3529____closed__9 = _init_l___regBuiltin_Std_BitVec_reduceZeroExtend_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3529____closed__9(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceZeroExtend_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3529____closed__9); -if (builtin) {res = l___regBuiltin_Std_BitVec_reduceZeroExtend_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3529_(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Std_BitVec_reduceZeroExtend_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3531_(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Std_BitVec_reduceZeroExtend_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3533_(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -}l_Std_BitVec_reduceShiftLeftZeroExtend___closed__1 = _init_l_Std_BitVec_reduceShiftLeftZeroExtend___closed__1(); -lean_mark_persistent(l_Std_BitVec_reduceShiftLeftZeroExtend___closed__1); -l_Std_BitVec_reduceShiftLeftZeroExtend___closed__2 = _init_l_Std_BitVec_reduceShiftLeftZeroExtend___closed__2(); -lean_mark_persistent(l_Std_BitVec_reduceShiftLeftZeroExtend___closed__2); -l___regBuiltin_Std_BitVec_reduceShiftLeftZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3687____closed__1 = _init_l___regBuiltin_Std_BitVec_reduceShiftLeftZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3687____closed__1(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceShiftLeftZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3687____closed__1); -l___regBuiltin_Std_BitVec_reduceShiftLeftZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3687____closed__2 = _init_l___regBuiltin_Std_BitVec_reduceShiftLeftZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3687____closed__2(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceShiftLeftZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3687____closed__2); -l___regBuiltin_Std_BitVec_reduceShiftLeftZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3687____closed__3 = _init_l___regBuiltin_Std_BitVec_reduceShiftLeftZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3687____closed__3(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceShiftLeftZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3687____closed__3); -l___regBuiltin_Std_BitVec_reduceShiftLeftZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3687____closed__4 = _init_l___regBuiltin_Std_BitVec_reduceShiftLeftZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3687____closed__4(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceShiftLeftZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3687____closed__4); -l___regBuiltin_Std_BitVec_reduceShiftLeftZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3687____closed__5 = _init_l___regBuiltin_Std_BitVec_reduceShiftLeftZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3687____closed__5(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceShiftLeftZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3687____closed__5); -l___regBuiltin_Std_BitVec_reduceShiftLeftZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3687____closed__6 = _init_l___regBuiltin_Std_BitVec_reduceShiftLeftZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3687____closed__6(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceShiftLeftZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3687____closed__6); -l___regBuiltin_Std_BitVec_reduceShiftLeftZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3687____closed__7 = _init_l___regBuiltin_Std_BitVec_reduceShiftLeftZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3687____closed__7(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceShiftLeftZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3687____closed__7); -l___regBuiltin_Std_BitVec_reduceShiftLeftZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3687____closed__8 = _init_l___regBuiltin_Std_BitVec_reduceShiftLeftZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3687____closed__8(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceShiftLeftZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3687____closed__8); -if (builtin) {res = l___regBuiltin_Std_BitVec_reduceShiftLeftZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3687_(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Std_BitVec_reduceShiftLeftZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3689_(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Std_BitVec_reduceShiftLeftZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3691_(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -}l_Std_BitVec_reduceExtracLsb_x27___closed__1 = _init_l_Std_BitVec_reduceExtracLsb_x27___closed__1(); -lean_mark_persistent(l_Std_BitVec_reduceExtracLsb_x27___closed__1); -l_Std_BitVec_reduceExtracLsb_x27___closed__2 = _init_l_Std_BitVec_reduceExtracLsb_x27___closed__2(); -lean_mark_persistent(l_Std_BitVec_reduceExtracLsb_x27___closed__2); -l___regBuiltin_Std_BitVec_reduceExtracLsb_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3879____closed__1 = _init_l___regBuiltin_Std_BitVec_reduceExtracLsb_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3879____closed__1(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceExtracLsb_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3879____closed__1); -l___regBuiltin_Std_BitVec_reduceExtracLsb_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3879____closed__2 = _init_l___regBuiltin_Std_BitVec_reduceExtracLsb_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3879____closed__2(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceExtracLsb_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3879____closed__2); -l___regBuiltin_Std_BitVec_reduceExtracLsb_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3879____closed__3 = _init_l___regBuiltin_Std_BitVec_reduceExtracLsb_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3879____closed__3(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceExtracLsb_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3879____closed__3); -l___regBuiltin_Std_BitVec_reduceExtracLsb_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3879____closed__4 = _init_l___regBuiltin_Std_BitVec_reduceExtracLsb_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3879____closed__4(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceExtracLsb_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3879____closed__4); -l___regBuiltin_Std_BitVec_reduceExtracLsb_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3879____closed__5 = _init_l___regBuiltin_Std_BitVec_reduceExtracLsb_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3879____closed__5(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceExtracLsb_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3879____closed__5); -l___regBuiltin_Std_BitVec_reduceExtracLsb_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3879____closed__6 = _init_l___regBuiltin_Std_BitVec_reduceExtracLsb_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3879____closed__6(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceExtracLsb_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3879____closed__6); -l___regBuiltin_Std_BitVec_reduceExtracLsb_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3879____closed__7 = _init_l___regBuiltin_Std_BitVec_reduceExtracLsb_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3879____closed__7(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceExtracLsb_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3879____closed__7); -l___regBuiltin_Std_BitVec_reduceExtracLsb_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3879____closed__8 = _init_l___regBuiltin_Std_BitVec_reduceExtracLsb_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3879____closed__8(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceExtracLsb_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3879____closed__8); -l___regBuiltin_Std_BitVec_reduceExtracLsb_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3879____closed__9 = _init_l___regBuiltin_Std_BitVec_reduceExtracLsb_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3879____closed__9(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceExtracLsb_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3879____closed__9); -if (builtin) {res = l___regBuiltin_Std_BitVec_reduceExtracLsb_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3879_(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Std_BitVec_reduceExtracLsb_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3881_(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Std_BitVec_reduceExtracLsb_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3883_(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -}l_Std_BitVec_reduceReplicate___closed__1 = _init_l_Std_BitVec_reduceReplicate___closed__1(); -lean_mark_persistent(l_Std_BitVec_reduceReplicate___closed__1); -l_Std_BitVec_reduceReplicate___closed__2 = _init_l_Std_BitVec_reduceReplicate___closed__2(); -lean_mark_persistent(l_Std_BitVec_reduceReplicate___closed__2); -l___regBuiltin_Std_BitVec_reduceReplicate_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4037____closed__1 = _init_l___regBuiltin_Std_BitVec_reduceReplicate_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4037____closed__1(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceReplicate_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4037____closed__1); -l___regBuiltin_Std_BitVec_reduceReplicate_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4037____closed__2 = _init_l___regBuiltin_Std_BitVec_reduceReplicate_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4037____closed__2(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceReplicate_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4037____closed__2); -l___regBuiltin_Std_BitVec_reduceReplicate_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4037____closed__3 = _init_l___regBuiltin_Std_BitVec_reduceReplicate_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4037____closed__3(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceReplicate_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4037____closed__3); -l___regBuiltin_Std_BitVec_reduceReplicate_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4037____closed__4 = _init_l___regBuiltin_Std_BitVec_reduceReplicate_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4037____closed__4(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceReplicate_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4037____closed__4); -l___regBuiltin_Std_BitVec_reduceReplicate_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4037____closed__5 = _init_l___regBuiltin_Std_BitVec_reduceReplicate_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4037____closed__5(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceReplicate_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4037____closed__5); -l___regBuiltin_Std_BitVec_reduceReplicate_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4037____closed__6 = _init_l___regBuiltin_Std_BitVec_reduceReplicate_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4037____closed__6(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceReplicate_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4037____closed__6); -l___regBuiltin_Std_BitVec_reduceReplicate_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4037____closed__7 = _init_l___regBuiltin_Std_BitVec_reduceReplicate_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4037____closed__7(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceReplicate_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4037____closed__7); -l___regBuiltin_Std_BitVec_reduceReplicate_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4037____closed__8 = _init_l___regBuiltin_Std_BitVec_reduceReplicate_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4037____closed__8(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceReplicate_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4037____closed__8); -if (builtin) {res = l___regBuiltin_Std_BitVec_reduceReplicate_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4037_(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Std_BitVec_reduceReplicate_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4039_(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Std_BitVec_reduceReplicate_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4041_(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -}l_Std_BitVec_reduceZeroExtend___closed__1 = _init_l_Std_BitVec_reduceZeroExtend___closed__1(); -lean_mark_persistent(l_Std_BitVec_reduceZeroExtend___closed__1); -l_Std_BitVec_reduceZeroExtend___closed__2 = _init_l_Std_BitVec_reduceZeroExtend___closed__2(); -lean_mark_persistent(l_Std_BitVec_reduceZeroExtend___closed__2); -l___regBuiltin_Std_BitVec_reduceZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4058____closed__1 = _init_l___regBuiltin_Std_BitVec_reduceZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4058____closed__1(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4058____closed__1); -l___regBuiltin_Std_BitVec_reduceZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4058____closed__2 = _init_l___regBuiltin_Std_BitVec_reduceZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4058____closed__2(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4058____closed__2); -l___regBuiltin_Std_BitVec_reduceZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4058____closed__3 = _init_l___regBuiltin_Std_BitVec_reduceZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4058____closed__3(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4058____closed__3); -l___regBuiltin_Std_BitVec_reduceZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4058____closed__4 = _init_l___regBuiltin_Std_BitVec_reduceZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4058____closed__4(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4058____closed__4); -l___regBuiltin_Std_BitVec_reduceZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4058____closed__5 = _init_l___regBuiltin_Std_BitVec_reduceZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4058____closed__5(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4058____closed__5); -l___regBuiltin_Std_BitVec_reduceZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4058____closed__6 = _init_l___regBuiltin_Std_BitVec_reduceZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4058____closed__6(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4058____closed__6); -l___regBuiltin_Std_BitVec_reduceZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4058____closed__7 = _init_l___regBuiltin_Std_BitVec_reduceZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4058____closed__7(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4058____closed__7); -l___regBuiltin_Std_BitVec_reduceZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4058____closed__8 = _init_l___regBuiltin_Std_BitVec_reduceZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4058____closed__8(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4058____closed__8); -if (builtin) {res = l___regBuiltin_Std_BitVec_reduceZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4058_(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Std_BitVec_reduceZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4060_(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Std_BitVec_reduceZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4062_(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -}l_Std_BitVec_reduceSignExtend___closed__1 = _init_l_Std_BitVec_reduceSignExtend___closed__1(); -lean_mark_persistent(l_Std_BitVec_reduceSignExtend___closed__1); -l_Std_BitVec_reduceSignExtend___closed__2 = _init_l_Std_BitVec_reduceSignExtend___closed__2(); -lean_mark_persistent(l_Std_BitVec_reduceSignExtend___closed__2); -l___regBuiltin_Std_BitVec_reduceSignExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4079____closed__1 = _init_l___regBuiltin_Std_BitVec_reduceSignExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4079____closed__1(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceSignExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4079____closed__1); -l___regBuiltin_Std_BitVec_reduceSignExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4079____closed__2 = _init_l___regBuiltin_Std_BitVec_reduceSignExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4079____closed__2(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceSignExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4079____closed__2); -l___regBuiltin_Std_BitVec_reduceSignExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4079____closed__3 = _init_l___regBuiltin_Std_BitVec_reduceSignExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4079____closed__3(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceSignExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4079____closed__3); -l___regBuiltin_Std_BitVec_reduceSignExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4079____closed__4 = _init_l___regBuiltin_Std_BitVec_reduceSignExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4079____closed__4(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceSignExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4079____closed__4); -l___regBuiltin_Std_BitVec_reduceSignExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4079____closed__5 = _init_l___regBuiltin_Std_BitVec_reduceSignExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4079____closed__5(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceSignExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4079____closed__5); -l___regBuiltin_Std_BitVec_reduceSignExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4079____closed__6 = _init_l___regBuiltin_Std_BitVec_reduceSignExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4079____closed__6(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceSignExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4079____closed__6); -l___regBuiltin_Std_BitVec_reduceSignExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4079____closed__7 = _init_l___regBuiltin_Std_BitVec_reduceSignExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4079____closed__7(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceSignExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4079____closed__7); -l___regBuiltin_Std_BitVec_reduceSignExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4079____closed__8 = _init_l___regBuiltin_Std_BitVec_reduceSignExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4079____closed__8(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceSignExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4079____closed__8); -if (builtin) {res = l___regBuiltin_Std_BitVec_reduceSignExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4079_(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Std_BitVec_reduceSignExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4081_(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Std_BitVec_reduceSignExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4083_(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -}l_Std_BitVec_reduceAllOnes___closed__1 = _init_l_Std_BitVec_reduceAllOnes___closed__1(); -lean_mark_persistent(l_Std_BitVec_reduceAllOnes___closed__1); -l_Std_BitVec_reduceAllOnes___closed__2 = _init_l_Std_BitVec_reduceAllOnes___closed__2(); -lean_mark_persistent(l_Std_BitVec_reduceAllOnes___closed__2); -l___regBuiltin_Std_BitVec_reduceAllOnes_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4198____closed__1 = _init_l___regBuiltin_Std_BitVec_reduceAllOnes_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4198____closed__1(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceAllOnes_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4198____closed__1); -l___regBuiltin_Std_BitVec_reduceAllOnes_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4198____closed__2 = _init_l___regBuiltin_Std_BitVec_reduceAllOnes_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4198____closed__2(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceAllOnes_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4198____closed__2); -l___regBuiltin_Std_BitVec_reduceAllOnes_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4198____closed__3 = _init_l___regBuiltin_Std_BitVec_reduceAllOnes_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4198____closed__3(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceAllOnes_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4198____closed__3); -l___regBuiltin_Std_BitVec_reduceAllOnes_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4198____closed__4 = _init_l___regBuiltin_Std_BitVec_reduceAllOnes_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4198____closed__4(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceAllOnes_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4198____closed__4); -l___regBuiltin_Std_BitVec_reduceAllOnes_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4198____closed__5 = _init_l___regBuiltin_Std_BitVec_reduceAllOnes_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4198____closed__5(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceAllOnes_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4198____closed__5); -l___regBuiltin_Std_BitVec_reduceAllOnes_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4198____closed__6 = _init_l___regBuiltin_Std_BitVec_reduceAllOnes_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4198____closed__6(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceAllOnes_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4198____closed__6); -l___regBuiltin_Std_BitVec_reduceAllOnes_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4198____closed__7 = _init_l___regBuiltin_Std_BitVec_reduceAllOnes_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4198____closed__7(); -lean_mark_persistent(l___regBuiltin_Std_BitVec_reduceAllOnes_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4198____closed__7); -if (builtin) {res = l___regBuiltin_Std_BitVec_reduceAllOnes_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4198_(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Std_BitVec_reduceAllOnes_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4200_(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Std_BitVec_reduceAllOnes_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_4202_(lean_io_mk_world()); +l_BitVec_reduceUnary___lambda__1___closed__1 = _init_l_BitVec_reduceUnary___lambda__1___closed__1(); +lean_mark_persistent(l_BitVec_reduceUnary___lambda__1___closed__1); +l_BitVec_reduceUnary___lambda__1___closed__2 = _init_l_BitVec_reduceUnary___lambda__1___closed__2(); +lean_mark_persistent(l_BitVec_reduceUnary___lambda__1___closed__2); +l_BitVec_reduceUnary___lambda__1___closed__3 = _init_l_BitVec_reduceUnary___lambda__1___closed__3(); +lean_mark_persistent(l_BitVec_reduceUnary___lambda__1___closed__3); +l_BitVec_reduceUnary___lambda__1___closed__4 = _init_l_BitVec_reduceUnary___lambda__1___closed__4(); +lean_mark_persistent(l_BitVec_reduceUnary___lambda__1___closed__4); +l_BitVec_reduceUnary___lambda__1___closed__5 = _init_l_BitVec_reduceUnary___lambda__1___closed__5(); +lean_mark_persistent(l_BitVec_reduceUnary___lambda__1___closed__5); +l_BitVec_reduceBin___lambda__2___closed__1 = _init_l_BitVec_reduceBin___lambda__2___closed__1(); +lean_mark_persistent(l_BitVec_reduceBin___lambda__2___closed__1); +l_BitVec_reduceBin___lambda__2___closed__2 = _init_l_BitVec_reduceBin___lambda__2___closed__2(); +lean_mark_persistent(l_BitVec_reduceBin___lambda__2___closed__2); +l_BitVec_reduceBin___lambda__2___closed__3 = _init_l_BitVec_reduceBin___lambda__2___closed__3(); +lean_mark_persistent(l_BitVec_reduceBin___lambda__2___closed__3); +l_BitVec_reduceBin___lambda__2___closed__4 = _init_l_BitVec_reduceBin___lambda__2___closed__4(); +lean_mark_persistent(l_BitVec_reduceBin___lambda__2___closed__4); +l_BitVec_reduceBin___lambda__2___closed__5 = _init_l_BitVec_reduceBin___lambda__2___closed__5(); +lean_mark_persistent(l_BitVec_reduceBin___lambda__2___closed__5); +l_BitVec_reduceBin___lambda__2___closed__6 = _init_l_BitVec_reduceBin___lambda__2___closed__6(); +lean_mark_persistent(l_BitVec_reduceBin___lambda__2___closed__6); +l_BitVec_reduceBin___lambda__2___closed__7 = _init_l_BitVec_reduceBin___lambda__2___closed__7(); +lean_mark_persistent(l_BitVec_reduceBin___lambda__2___closed__7); +l_BitVec_reduceBin___lambda__2___closed__8 = _init_l_BitVec_reduceBin___lambda__2___closed__8(); +lean_mark_persistent(l_BitVec_reduceBin___lambda__2___closed__8); +l_BitVec_reduceBin___lambda__2___closed__9 = _init_l_BitVec_reduceBin___lambda__2___closed__9(); +lean_mark_persistent(l_BitVec_reduceBin___lambda__2___closed__9); +l_BitVec_reduceBin___lambda__2___closed__10 = _init_l_BitVec_reduceBin___lambda__2___closed__10(); +lean_mark_persistent(l_BitVec_reduceBin___lambda__2___closed__10); +l_BitVec_reduceBin___lambda__2___closed__11 = _init_l_BitVec_reduceBin___lambda__2___closed__11(); +lean_mark_persistent(l_BitVec_reduceBin___lambda__2___closed__11); +l_BitVec_reduceBin___lambda__2___closed__12 = _init_l_BitVec_reduceBin___lambda__2___closed__12(); +lean_mark_persistent(l_BitVec_reduceBin___lambda__2___closed__12); +l_BitVec_reduceBin___lambda__2___closed__13 = _init_l_BitVec_reduceBin___lambda__2___closed__13(); +lean_mark_persistent(l_BitVec_reduceBin___lambda__2___closed__13); +l_BitVec_reduceBin___lambda__2___closed__14 = _init_l_BitVec_reduceBin___lambda__2___closed__14(); +lean_mark_persistent(l_BitVec_reduceBin___lambda__2___closed__14); +l_BitVec_reduceBin___lambda__2___closed__15 = _init_l_BitVec_reduceBin___lambda__2___closed__15(); +lean_mark_persistent(l_BitVec_reduceBin___lambda__2___closed__15); +l_BitVec_reduceGetBit___lambda__1___closed__1 = _init_l_BitVec_reduceGetBit___lambda__1___closed__1(); +lean_mark_persistent(l_BitVec_reduceGetBit___lambda__1___closed__1); +l_BitVec_reduceGetBit___lambda__1___closed__2 = _init_l_BitVec_reduceGetBit___lambda__1___closed__2(); +lean_mark_persistent(l_BitVec_reduceGetBit___lambda__1___closed__2); +l_BitVec_reduceGetBit___lambda__1___closed__3 = _init_l_BitVec_reduceGetBit___lambda__1___closed__3(); +lean_mark_persistent(l_BitVec_reduceGetBit___lambda__1___closed__3); +l_BitVec_reduceGetBit___lambda__1___closed__4 = _init_l_BitVec_reduceGetBit___lambda__1___closed__4(); +lean_mark_persistent(l_BitVec_reduceGetBit___lambda__1___closed__4); +l_BitVec_reduceGetBit___lambda__1___closed__5 = _init_l_BitVec_reduceGetBit___lambda__1___closed__5(); +lean_mark_persistent(l_BitVec_reduceGetBit___lambda__1___closed__5); +l_BitVec_reduceGetBit___lambda__1___closed__6 = _init_l_BitVec_reduceGetBit___lambda__1___closed__6(); +lean_mark_persistent(l_BitVec_reduceGetBit___lambda__1___closed__6); +l_BitVec_reduceGetBit___lambda__1___closed__7 = _init_l_BitVec_reduceGetBit___lambda__1___closed__7(); +lean_mark_persistent(l_BitVec_reduceGetBit___lambda__1___closed__7); +l_BitVec_reduceGetBit___lambda__1___closed__8 = _init_l_BitVec_reduceGetBit___lambda__1___closed__8(); +lean_mark_persistent(l_BitVec_reduceGetBit___lambda__1___closed__8); +l_BitVec_reduceGetBit___lambda__1___closed__9 = _init_l_BitVec_reduceGetBit___lambda__1___closed__9(); +lean_mark_persistent(l_BitVec_reduceGetBit___lambda__1___closed__9); +l_BitVec_reduceGetBit___lambda__1___closed__10 = _init_l_BitVec_reduceGetBit___lambda__1___closed__10(); +lean_mark_persistent(l_BitVec_reduceGetBit___lambda__1___closed__10); +l_BitVec_reduceGetBit___lambda__1___closed__11 = _init_l_BitVec_reduceGetBit___lambda__1___closed__11(); +lean_mark_persistent(l_BitVec_reduceGetBit___lambda__1___closed__11); +l_BitVec_reduceNeg___closed__1 = _init_l_BitVec_reduceNeg___closed__1(); +lean_mark_persistent(l_BitVec_reduceNeg___closed__1); +l_BitVec_reduceNeg___closed__2 = _init_l_BitVec_reduceNeg___closed__2(); +lean_mark_persistent(l_BitVec_reduceNeg___closed__2); +l_BitVec_reduceNeg___closed__3 = _init_l_BitVec_reduceNeg___closed__3(); +lean_mark_persistent(l_BitVec_reduceNeg___closed__3); +l___regBuiltin_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1148____closed__1 = _init_l___regBuiltin_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1148____closed__1(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1148____closed__1); +l___regBuiltin_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1148____closed__2 = _init_l___regBuiltin_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1148____closed__2(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1148____closed__2); +l___regBuiltin_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1148____closed__3 = _init_l___regBuiltin_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1148____closed__3(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1148____closed__3); +l___regBuiltin_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1148____closed__4 = _init_l___regBuiltin_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1148____closed__4(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1148____closed__4); +l___regBuiltin_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1148____closed__5 = _init_l___regBuiltin_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1148____closed__5(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1148____closed__5); +l___regBuiltin_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1148____closed__6 = _init_l___regBuiltin_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1148____closed__6(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1148____closed__6); +l___regBuiltin_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1148____closed__7 = _init_l___regBuiltin_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1148____closed__7(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1148____closed__7); +l___regBuiltin_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1148____closed__8 = _init_l___regBuiltin_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1148____closed__8(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1148____closed__8); +l___regBuiltin_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1148____closed__9 = _init_l___regBuiltin_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1148____closed__9(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1148____closed__9); +l___regBuiltin_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1148____closed__10 = _init_l___regBuiltin_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1148____closed__10(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1148____closed__10); +l___regBuiltin_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1148____closed__11 = _init_l___regBuiltin_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1148____closed__11(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1148____closed__11); +l___regBuiltin_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1148____closed__12 = _init_l___regBuiltin_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1148____closed__12(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1148____closed__12); +if (builtin) {res = l___regBuiltin_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1148_(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +}l___regBuiltin_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1150____closed__1 = _init_l___regBuiltin_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1150____closed__1(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1150____closed__1); +if (builtin) {res = l___regBuiltin_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1150_(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +}l___regBuiltin_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1152____closed__1 = _init_l___regBuiltin_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1152____closed__1(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1152____closed__1); +if (builtin) {res = l___regBuiltin_BitVec_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1152_(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +}l_BitVec_reduceNot___closed__1 = _init_l_BitVec_reduceNot___closed__1(); +lean_mark_persistent(l_BitVec_reduceNot___closed__1); +l_BitVec_reduceNot___closed__2 = _init_l_BitVec_reduceNot___closed__2(); +lean_mark_persistent(l_BitVec_reduceNot___closed__2); +l_BitVec_reduceNot___closed__3 = _init_l_BitVec_reduceNot___closed__3(); +lean_mark_persistent(l_BitVec_reduceNot___closed__3); +l___regBuiltin_BitVec_reduceNot_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1185____closed__1 = _init_l___regBuiltin_BitVec_reduceNot_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1185____closed__1(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceNot_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1185____closed__1); +l___regBuiltin_BitVec_reduceNot_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1185____closed__2 = _init_l___regBuiltin_BitVec_reduceNot_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1185____closed__2(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceNot_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1185____closed__2); +l___regBuiltin_BitVec_reduceNot_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1185____closed__3 = _init_l___regBuiltin_BitVec_reduceNot_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1185____closed__3(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceNot_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1185____closed__3); +l___regBuiltin_BitVec_reduceNot_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1185____closed__4 = _init_l___regBuiltin_BitVec_reduceNot_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1185____closed__4(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceNot_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1185____closed__4); +l___regBuiltin_BitVec_reduceNot_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1185____closed__5 = _init_l___regBuiltin_BitVec_reduceNot_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1185____closed__5(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceNot_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1185____closed__5); +l___regBuiltin_BitVec_reduceNot_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1185____closed__6 = _init_l___regBuiltin_BitVec_reduceNot_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1185____closed__6(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceNot_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1185____closed__6); +l___regBuiltin_BitVec_reduceNot_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1185____closed__7 = _init_l___regBuiltin_BitVec_reduceNot_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1185____closed__7(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceNot_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1185____closed__7); +l___regBuiltin_BitVec_reduceNot_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1185____closed__8 = _init_l___regBuiltin_BitVec_reduceNot_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1185____closed__8(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceNot_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1185____closed__8); +l___regBuiltin_BitVec_reduceNot_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1185____closed__9 = _init_l___regBuiltin_BitVec_reduceNot_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1185____closed__9(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceNot_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1185____closed__9); +if (builtin) {res = l___regBuiltin_BitVec_reduceNot_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1185_(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +}if (builtin) {res = l___regBuiltin_BitVec_reduceNot_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1187_(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +}if (builtin) {res = l___regBuiltin_BitVec_reduceNot_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1189_(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +}l_BitVec_reduceAbs___closed__1 = _init_l_BitVec_reduceAbs___closed__1(); +lean_mark_persistent(l_BitVec_reduceAbs___closed__1); +l_BitVec_reduceAbs___closed__2 = _init_l_BitVec_reduceAbs___closed__2(); +lean_mark_persistent(l_BitVec_reduceAbs___closed__2); +l___regBuiltin_BitVec_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1206____closed__1 = _init_l___regBuiltin_BitVec_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1206____closed__1(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1206____closed__1); +l___regBuiltin_BitVec_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1206____closed__2 = _init_l___regBuiltin_BitVec_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1206____closed__2(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1206____closed__2); +l___regBuiltin_BitVec_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1206____closed__3 = _init_l___regBuiltin_BitVec_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1206____closed__3(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1206____closed__3); +l___regBuiltin_BitVec_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1206____closed__4 = _init_l___regBuiltin_BitVec_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1206____closed__4(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1206____closed__4); +l___regBuiltin_BitVec_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1206____closed__5 = _init_l___regBuiltin_BitVec_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1206____closed__5(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1206____closed__5); +l___regBuiltin_BitVec_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1206____closed__6 = _init_l___regBuiltin_BitVec_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1206____closed__6(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1206____closed__6); +l___regBuiltin_BitVec_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1206____closed__7 = _init_l___regBuiltin_BitVec_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1206____closed__7(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1206____closed__7); +l___regBuiltin_BitVec_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1206____closed__8 = _init_l___regBuiltin_BitVec_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1206____closed__8(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1206____closed__8); +if (builtin) {res = l___regBuiltin_BitVec_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1206_(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +}if (builtin) {res = l___regBuiltin_BitVec_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1208_(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +}if (builtin) {res = l___regBuiltin_BitVec_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1210_(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +}l_BitVec_reduceAnd___closed__1 = _init_l_BitVec_reduceAnd___closed__1(); +lean_mark_persistent(l_BitVec_reduceAnd___closed__1); +l_BitVec_reduceAnd___closed__2 = _init_l_BitVec_reduceAnd___closed__2(); +lean_mark_persistent(l_BitVec_reduceAnd___closed__2); +l_BitVec_reduceAnd___closed__3 = _init_l_BitVec_reduceAnd___closed__3(); +lean_mark_persistent(l_BitVec_reduceAnd___closed__3); +l___regBuiltin_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1248____closed__1 = _init_l___regBuiltin_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1248____closed__1(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1248____closed__1); +l___regBuiltin_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1248____closed__2 = _init_l___regBuiltin_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1248____closed__2(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1248____closed__2); +l___regBuiltin_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1248____closed__3 = _init_l___regBuiltin_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1248____closed__3(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1248____closed__3); +l___regBuiltin_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1248____closed__4 = _init_l___regBuiltin_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1248____closed__4(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1248____closed__4); +l___regBuiltin_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1248____closed__5 = _init_l___regBuiltin_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1248____closed__5(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1248____closed__5); +l___regBuiltin_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1248____closed__6 = _init_l___regBuiltin_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1248____closed__6(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1248____closed__6); +l___regBuiltin_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1248____closed__7 = _init_l___regBuiltin_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1248____closed__7(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1248____closed__7); +l___regBuiltin_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1248____closed__8 = _init_l___regBuiltin_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1248____closed__8(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1248____closed__8); +l___regBuiltin_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1248____closed__9 = _init_l___regBuiltin_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1248____closed__9(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1248____closed__9); +l___regBuiltin_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1248____closed__10 = _init_l___regBuiltin_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1248____closed__10(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1248____closed__10); +l___regBuiltin_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1248____closed__11 = _init_l___regBuiltin_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1248____closed__11(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1248____closed__11); +l___regBuiltin_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1248____closed__12 = _init_l___regBuiltin_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1248____closed__12(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1248____closed__12); +l___regBuiltin_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1248____closed__13 = _init_l___regBuiltin_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1248____closed__13(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1248____closed__13); +l___regBuiltin_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1248____closed__14 = _init_l___regBuiltin_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1248____closed__14(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1248____closed__14); +l___regBuiltin_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1248____closed__15 = _init_l___regBuiltin_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1248____closed__15(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1248____closed__15); +if (builtin) {res = l___regBuiltin_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1248_(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +}if (builtin) {res = l___regBuiltin_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1250_(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +}if (builtin) {res = l___regBuiltin_BitVec_reduceAnd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1252_(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +}l_BitVec_reduceOr___closed__1 = _init_l_BitVec_reduceOr___closed__1(); +lean_mark_persistent(l_BitVec_reduceOr___closed__1); +l_BitVec_reduceOr___closed__2 = _init_l_BitVec_reduceOr___closed__2(); +lean_mark_persistent(l_BitVec_reduceOr___closed__2); +l_BitVec_reduceOr___closed__3 = _init_l_BitVec_reduceOr___closed__3(); +lean_mark_persistent(l_BitVec_reduceOr___closed__3); +l___regBuiltin_BitVec_reduceOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1290____closed__1 = _init_l___regBuiltin_BitVec_reduceOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1290____closed__1(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1290____closed__1); +l___regBuiltin_BitVec_reduceOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1290____closed__2 = _init_l___regBuiltin_BitVec_reduceOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1290____closed__2(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1290____closed__2); +l___regBuiltin_BitVec_reduceOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1290____closed__3 = _init_l___regBuiltin_BitVec_reduceOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1290____closed__3(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1290____closed__3); +l___regBuiltin_BitVec_reduceOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1290____closed__4 = _init_l___regBuiltin_BitVec_reduceOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1290____closed__4(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1290____closed__4); +l___regBuiltin_BitVec_reduceOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1290____closed__5 = _init_l___regBuiltin_BitVec_reduceOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1290____closed__5(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1290____closed__5); +l___regBuiltin_BitVec_reduceOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1290____closed__6 = _init_l___regBuiltin_BitVec_reduceOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1290____closed__6(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1290____closed__6); +l___regBuiltin_BitVec_reduceOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1290____closed__7 = _init_l___regBuiltin_BitVec_reduceOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1290____closed__7(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1290____closed__7); +l___regBuiltin_BitVec_reduceOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1290____closed__8 = _init_l___regBuiltin_BitVec_reduceOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1290____closed__8(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1290____closed__8); +l___regBuiltin_BitVec_reduceOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1290____closed__9 = _init_l___regBuiltin_BitVec_reduceOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1290____closed__9(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1290____closed__9); +l___regBuiltin_BitVec_reduceOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1290____closed__10 = _init_l___regBuiltin_BitVec_reduceOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1290____closed__10(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1290____closed__10); +l___regBuiltin_BitVec_reduceOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1290____closed__11 = _init_l___regBuiltin_BitVec_reduceOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1290____closed__11(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1290____closed__11); +l___regBuiltin_BitVec_reduceOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1290____closed__12 = _init_l___regBuiltin_BitVec_reduceOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1290____closed__12(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1290____closed__12); +l___regBuiltin_BitVec_reduceOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1290____closed__13 = _init_l___regBuiltin_BitVec_reduceOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1290____closed__13(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1290____closed__13); +l___regBuiltin_BitVec_reduceOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1290____closed__14 = _init_l___regBuiltin_BitVec_reduceOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1290____closed__14(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1290____closed__14); +if (builtin) {res = l___regBuiltin_BitVec_reduceOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1290_(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +}if (builtin) {res = l___regBuiltin_BitVec_reduceOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1292_(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +}if (builtin) {res = l___regBuiltin_BitVec_reduceOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1294_(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +}l_BitVec_reduceXOr___closed__1 = _init_l_BitVec_reduceXOr___closed__1(); +lean_mark_persistent(l_BitVec_reduceXOr___closed__1); +l_BitVec_reduceXOr___closed__2 = _init_l_BitVec_reduceXOr___closed__2(); +lean_mark_persistent(l_BitVec_reduceXOr___closed__2); +l_BitVec_reduceXOr___closed__3 = _init_l_BitVec_reduceXOr___closed__3(); +lean_mark_persistent(l_BitVec_reduceXOr___closed__3); +l___regBuiltin_BitVec_reduceXOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1332____closed__1 = _init_l___regBuiltin_BitVec_reduceXOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1332____closed__1(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceXOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1332____closed__1); +l___regBuiltin_BitVec_reduceXOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1332____closed__2 = _init_l___regBuiltin_BitVec_reduceXOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1332____closed__2(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceXOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1332____closed__2); +l___regBuiltin_BitVec_reduceXOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1332____closed__3 = _init_l___regBuiltin_BitVec_reduceXOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1332____closed__3(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceXOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1332____closed__3); +l___regBuiltin_BitVec_reduceXOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1332____closed__4 = _init_l___regBuiltin_BitVec_reduceXOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1332____closed__4(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceXOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1332____closed__4); +l___regBuiltin_BitVec_reduceXOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1332____closed__5 = _init_l___regBuiltin_BitVec_reduceXOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1332____closed__5(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceXOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1332____closed__5); +l___regBuiltin_BitVec_reduceXOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1332____closed__6 = _init_l___regBuiltin_BitVec_reduceXOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1332____closed__6(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceXOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1332____closed__6); +l___regBuiltin_BitVec_reduceXOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1332____closed__7 = _init_l___regBuiltin_BitVec_reduceXOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1332____closed__7(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceXOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1332____closed__7); +l___regBuiltin_BitVec_reduceXOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1332____closed__8 = _init_l___regBuiltin_BitVec_reduceXOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1332____closed__8(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceXOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1332____closed__8); +l___regBuiltin_BitVec_reduceXOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1332____closed__9 = _init_l___regBuiltin_BitVec_reduceXOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1332____closed__9(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceXOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1332____closed__9); +l___regBuiltin_BitVec_reduceXOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1332____closed__10 = _init_l___regBuiltin_BitVec_reduceXOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1332____closed__10(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceXOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1332____closed__10); +l___regBuiltin_BitVec_reduceXOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1332____closed__11 = _init_l___regBuiltin_BitVec_reduceXOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1332____closed__11(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceXOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1332____closed__11); +l___regBuiltin_BitVec_reduceXOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1332____closed__12 = _init_l___regBuiltin_BitVec_reduceXOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1332____closed__12(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceXOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1332____closed__12); +l___regBuiltin_BitVec_reduceXOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1332____closed__13 = _init_l___regBuiltin_BitVec_reduceXOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1332____closed__13(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceXOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1332____closed__13); +l___regBuiltin_BitVec_reduceXOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1332____closed__14 = _init_l___regBuiltin_BitVec_reduceXOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1332____closed__14(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceXOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1332____closed__14); +if (builtin) {res = l___regBuiltin_BitVec_reduceXOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1332_(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +}if (builtin) {res = l___regBuiltin_BitVec_reduceXOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1334_(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +}if (builtin) {res = l___regBuiltin_BitVec_reduceXOr_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1336_(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +}l_BitVec_reduceAdd___closed__1 = _init_l_BitVec_reduceAdd___closed__1(); +lean_mark_persistent(l_BitVec_reduceAdd___closed__1); +l_BitVec_reduceAdd___closed__2 = _init_l_BitVec_reduceAdd___closed__2(); +lean_mark_persistent(l_BitVec_reduceAdd___closed__2); +l_BitVec_reduceAdd___closed__3 = _init_l_BitVec_reduceAdd___closed__3(); +lean_mark_persistent(l_BitVec_reduceAdd___closed__3); +l___regBuiltin_BitVec_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1374____closed__1 = _init_l___regBuiltin_BitVec_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1374____closed__1(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1374____closed__1); +l___regBuiltin_BitVec_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1374____closed__2 = _init_l___regBuiltin_BitVec_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1374____closed__2(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1374____closed__2); +l___regBuiltin_BitVec_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1374____closed__3 = _init_l___regBuiltin_BitVec_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1374____closed__3(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1374____closed__3); +l___regBuiltin_BitVec_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1374____closed__4 = _init_l___regBuiltin_BitVec_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1374____closed__4(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1374____closed__4); +l___regBuiltin_BitVec_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1374____closed__5 = _init_l___regBuiltin_BitVec_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1374____closed__5(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1374____closed__5); +l___regBuiltin_BitVec_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1374____closed__6 = _init_l___regBuiltin_BitVec_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1374____closed__6(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1374____closed__6); +l___regBuiltin_BitVec_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1374____closed__7 = _init_l___regBuiltin_BitVec_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1374____closed__7(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1374____closed__7); +l___regBuiltin_BitVec_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1374____closed__8 = _init_l___regBuiltin_BitVec_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1374____closed__8(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1374____closed__8); +l___regBuiltin_BitVec_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1374____closed__9 = _init_l___regBuiltin_BitVec_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1374____closed__9(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1374____closed__9); +l___regBuiltin_BitVec_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1374____closed__10 = _init_l___regBuiltin_BitVec_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1374____closed__10(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1374____closed__10); +l___regBuiltin_BitVec_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1374____closed__11 = _init_l___regBuiltin_BitVec_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1374____closed__11(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1374____closed__11); +l___regBuiltin_BitVec_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1374____closed__12 = _init_l___regBuiltin_BitVec_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1374____closed__12(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1374____closed__12); +l___regBuiltin_BitVec_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1374____closed__13 = _init_l___regBuiltin_BitVec_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1374____closed__13(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1374____closed__13); +l___regBuiltin_BitVec_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1374____closed__14 = _init_l___regBuiltin_BitVec_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1374____closed__14(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1374____closed__14); +if (builtin) {res = l___regBuiltin_BitVec_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1374_(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +}if (builtin) {res = l___regBuiltin_BitVec_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1376_(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +}if (builtin) {res = l___regBuiltin_BitVec_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1378_(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +}l_BitVec_reduceMul___closed__1 = _init_l_BitVec_reduceMul___closed__1(); +lean_mark_persistent(l_BitVec_reduceMul___closed__1); +l_BitVec_reduceMul___closed__2 = _init_l_BitVec_reduceMul___closed__2(); +lean_mark_persistent(l_BitVec_reduceMul___closed__2); +l_BitVec_reduceMul___closed__3 = _init_l_BitVec_reduceMul___closed__3(); +lean_mark_persistent(l_BitVec_reduceMul___closed__3); +l___regBuiltin_BitVec_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1416____closed__1 = _init_l___regBuiltin_BitVec_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1416____closed__1(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1416____closed__1); +l___regBuiltin_BitVec_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1416____closed__2 = _init_l___regBuiltin_BitVec_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1416____closed__2(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1416____closed__2); +l___regBuiltin_BitVec_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1416____closed__3 = _init_l___regBuiltin_BitVec_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1416____closed__3(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1416____closed__3); +l___regBuiltin_BitVec_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1416____closed__4 = _init_l___regBuiltin_BitVec_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1416____closed__4(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1416____closed__4); +l___regBuiltin_BitVec_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1416____closed__5 = _init_l___regBuiltin_BitVec_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1416____closed__5(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1416____closed__5); +l___regBuiltin_BitVec_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1416____closed__6 = _init_l___regBuiltin_BitVec_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1416____closed__6(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1416____closed__6); +l___regBuiltin_BitVec_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1416____closed__7 = _init_l___regBuiltin_BitVec_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1416____closed__7(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1416____closed__7); +l___regBuiltin_BitVec_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1416____closed__8 = _init_l___regBuiltin_BitVec_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1416____closed__8(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1416____closed__8); +l___regBuiltin_BitVec_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1416____closed__9 = _init_l___regBuiltin_BitVec_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1416____closed__9(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1416____closed__9); +l___regBuiltin_BitVec_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1416____closed__10 = _init_l___regBuiltin_BitVec_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1416____closed__10(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1416____closed__10); +l___regBuiltin_BitVec_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1416____closed__11 = _init_l___regBuiltin_BitVec_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1416____closed__11(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1416____closed__11); +l___regBuiltin_BitVec_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1416____closed__12 = _init_l___regBuiltin_BitVec_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1416____closed__12(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1416____closed__12); +l___regBuiltin_BitVec_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1416____closed__13 = _init_l___regBuiltin_BitVec_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1416____closed__13(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1416____closed__13); +l___regBuiltin_BitVec_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1416____closed__14 = _init_l___regBuiltin_BitVec_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1416____closed__14(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1416____closed__14); +if (builtin) {res = l___regBuiltin_BitVec_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1416_(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +}if (builtin) {res = l___regBuiltin_BitVec_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1418_(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +}if (builtin) {res = l___regBuiltin_BitVec_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1420_(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +}l_BitVec_reduceSub___closed__1 = _init_l_BitVec_reduceSub___closed__1(); +lean_mark_persistent(l_BitVec_reduceSub___closed__1); +l_BitVec_reduceSub___closed__2 = _init_l_BitVec_reduceSub___closed__2(); +lean_mark_persistent(l_BitVec_reduceSub___closed__2); +l_BitVec_reduceSub___closed__3 = _init_l_BitVec_reduceSub___closed__3(); +lean_mark_persistent(l_BitVec_reduceSub___closed__3); +l___regBuiltin_BitVec_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1458____closed__1 = _init_l___regBuiltin_BitVec_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1458____closed__1(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1458____closed__1); +l___regBuiltin_BitVec_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1458____closed__2 = _init_l___regBuiltin_BitVec_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1458____closed__2(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1458____closed__2); +l___regBuiltin_BitVec_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1458____closed__3 = _init_l___regBuiltin_BitVec_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1458____closed__3(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1458____closed__3); +l___regBuiltin_BitVec_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1458____closed__4 = _init_l___regBuiltin_BitVec_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1458____closed__4(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1458____closed__4); +l___regBuiltin_BitVec_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1458____closed__5 = _init_l___regBuiltin_BitVec_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1458____closed__5(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1458____closed__5); +l___regBuiltin_BitVec_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1458____closed__6 = _init_l___regBuiltin_BitVec_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1458____closed__6(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1458____closed__6); +l___regBuiltin_BitVec_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1458____closed__7 = _init_l___regBuiltin_BitVec_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1458____closed__7(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1458____closed__7); +l___regBuiltin_BitVec_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1458____closed__8 = _init_l___regBuiltin_BitVec_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1458____closed__8(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1458____closed__8); +l___regBuiltin_BitVec_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1458____closed__9 = _init_l___regBuiltin_BitVec_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1458____closed__9(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1458____closed__9); +l___regBuiltin_BitVec_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1458____closed__10 = _init_l___regBuiltin_BitVec_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1458____closed__10(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1458____closed__10); +l___regBuiltin_BitVec_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1458____closed__11 = _init_l___regBuiltin_BitVec_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1458____closed__11(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1458____closed__11); +l___regBuiltin_BitVec_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1458____closed__12 = _init_l___regBuiltin_BitVec_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1458____closed__12(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1458____closed__12); +l___regBuiltin_BitVec_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1458____closed__13 = _init_l___regBuiltin_BitVec_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1458____closed__13(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1458____closed__13); +l___regBuiltin_BitVec_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1458____closed__14 = _init_l___regBuiltin_BitVec_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1458____closed__14(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1458____closed__14); +if (builtin) {res = l___regBuiltin_BitVec_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1458_(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +}if (builtin) {res = l___regBuiltin_BitVec_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1460_(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +}if (builtin) {res = l___regBuiltin_BitVec_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1462_(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +}l_BitVec_reduceDiv___closed__1 = _init_l_BitVec_reduceDiv___closed__1(); +lean_mark_persistent(l_BitVec_reduceDiv___closed__1); +l_BitVec_reduceDiv___closed__2 = _init_l_BitVec_reduceDiv___closed__2(); +lean_mark_persistent(l_BitVec_reduceDiv___closed__2); +l_BitVec_reduceDiv___closed__3 = _init_l_BitVec_reduceDiv___closed__3(); +lean_mark_persistent(l_BitVec_reduceDiv___closed__3); +l___regBuiltin_BitVec_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1500____closed__1 = _init_l___regBuiltin_BitVec_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1500____closed__1(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1500____closed__1); +l___regBuiltin_BitVec_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1500____closed__2 = _init_l___regBuiltin_BitVec_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1500____closed__2(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1500____closed__2); +l___regBuiltin_BitVec_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1500____closed__3 = _init_l___regBuiltin_BitVec_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1500____closed__3(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1500____closed__3); +l___regBuiltin_BitVec_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1500____closed__4 = _init_l___regBuiltin_BitVec_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1500____closed__4(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1500____closed__4); +l___regBuiltin_BitVec_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1500____closed__5 = _init_l___regBuiltin_BitVec_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1500____closed__5(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1500____closed__5); +l___regBuiltin_BitVec_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1500____closed__6 = _init_l___regBuiltin_BitVec_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1500____closed__6(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1500____closed__6); +l___regBuiltin_BitVec_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1500____closed__7 = _init_l___regBuiltin_BitVec_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1500____closed__7(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1500____closed__7); +l___regBuiltin_BitVec_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1500____closed__8 = _init_l___regBuiltin_BitVec_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1500____closed__8(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1500____closed__8); +l___regBuiltin_BitVec_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1500____closed__9 = _init_l___regBuiltin_BitVec_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1500____closed__9(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1500____closed__9); +l___regBuiltin_BitVec_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1500____closed__10 = _init_l___regBuiltin_BitVec_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1500____closed__10(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1500____closed__10); +l___regBuiltin_BitVec_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1500____closed__11 = _init_l___regBuiltin_BitVec_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1500____closed__11(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1500____closed__11); +l___regBuiltin_BitVec_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1500____closed__12 = _init_l___regBuiltin_BitVec_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1500____closed__12(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1500____closed__12); +l___regBuiltin_BitVec_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1500____closed__13 = _init_l___regBuiltin_BitVec_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1500____closed__13(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1500____closed__13); +l___regBuiltin_BitVec_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1500____closed__14 = _init_l___regBuiltin_BitVec_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1500____closed__14(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1500____closed__14); +if (builtin) {res = l___regBuiltin_BitVec_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1500_(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +}if (builtin) {res = l___regBuiltin_BitVec_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1502_(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +}if (builtin) {res = l___regBuiltin_BitVec_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1504_(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +}l_BitVec_reduceMod___closed__1 = _init_l_BitVec_reduceMod___closed__1(); +lean_mark_persistent(l_BitVec_reduceMod___closed__1); +l_BitVec_reduceMod___closed__2 = _init_l_BitVec_reduceMod___closed__2(); +lean_mark_persistent(l_BitVec_reduceMod___closed__2); +l_BitVec_reduceMod___closed__3 = _init_l_BitVec_reduceMod___closed__3(); +lean_mark_persistent(l_BitVec_reduceMod___closed__3); +l___regBuiltin_BitVec_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1542____closed__1 = _init_l___regBuiltin_BitVec_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1542____closed__1(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1542____closed__1); +l___regBuiltin_BitVec_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1542____closed__2 = _init_l___regBuiltin_BitVec_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1542____closed__2(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1542____closed__2); +l___regBuiltin_BitVec_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1542____closed__3 = _init_l___regBuiltin_BitVec_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1542____closed__3(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1542____closed__3); +l___regBuiltin_BitVec_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1542____closed__4 = _init_l___regBuiltin_BitVec_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1542____closed__4(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1542____closed__4); +l___regBuiltin_BitVec_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1542____closed__5 = _init_l___regBuiltin_BitVec_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1542____closed__5(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1542____closed__5); +l___regBuiltin_BitVec_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1542____closed__6 = _init_l___regBuiltin_BitVec_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1542____closed__6(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1542____closed__6); +l___regBuiltin_BitVec_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1542____closed__7 = _init_l___regBuiltin_BitVec_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1542____closed__7(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1542____closed__7); +l___regBuiltin_BitVec_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1542____closed__8 = _init_l___regBuiltin_BitVec_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1542____closed__8(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1542____closed__8); +l___regBuiltin_BitVec_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1542____closed__9 = _init_l___regBuiltin_BitVec_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1542____closed__9(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1542____closed__9); +l___regBuiltin_BitVec_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1542____closed__10 = _init_l___regBuiltin_BitVec_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1542____closed__10(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1542____closed__10); +l___regBuiltin_BitVec_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1542____closed__11 = _init_l___regBuiltin_BitVec_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1542____closed__11(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1542____closed__11); +l___regBuiltin_BitVec_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1542____closed__12 = _init_l___regBuiltin_BitVec_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1542____closed__12(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1542____closed__12); +l___regBuiltin_BitVec_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1542____closed__13 = _init_l___regBuiltin_BitVec_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1542____closed__13(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1542____closed__13); +l___regBuiltin_BitVec_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1542____closed__14 = _init_l___regBuiltin_BitVec_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1542____closed__14(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1542____closed__14); +if (builtin) {res = l___regBuiltin_BitVec_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1542_(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +}if (builtin) {res = l___regBuiltin_BitVec_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1544_(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +}if (builtin) {res = l___regBuiltin_BitVec_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1546_(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +}l_BitVec_reduceUMod___closed__1 = _init_l_BitVec_reduceUMod___closed__1(); +lean_mark_persistent(l_BitVec_reduceUMod___closed__1); +l_BitVec_reduceUMod___closed__2 = _init_l_BitVec_reduceUMod___closed__2(); +lean_mark_persistent(l_BitVec_reduceUMod___closed__2); +l___regBuiltin_BitVec_reduceUMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1568____closed__1 = _init_l___regBuiltin_BitVec_reduceUMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1568____closed__1(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceUMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1568____closed__1); +l___regBuiltin_BitVec_reduceUMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1568____closed__2 = _init_l___regBuiltin_BitVec_reduceUMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1568____closed__2(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceUMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1568____closed__2); +l___regBuiltin_BitVec_reduceUMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1568____closed__3 = _init_l___regBuiltin_BitVec_reduceUMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1568____closed__3(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceUMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1568____closed__3); +l___regBuiltin_BitVec_reduceUMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1568____closed__4 = _init_l___regBuiltin_BitVec_reduceUMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1568____closed__4(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceUMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1568____closed__4); +l___regBuiltin_BitVec_reduceUMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1568____closed__5 = _init_l___regBuiltin_BitVec_reduceUMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1568____closed__5(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceUMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1568____closed__5); +l___regBuiltin_BitVec_reduceUMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1568____closed__6 = _init_l___regBuiltin_BitVec_reduceUMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1568____closed__6(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceUMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1568____closed__6); +l___regBuiltin_BitVec_reduceUMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1568____closed__7 = _init_l___regBuiltin_BitVec_reduceUMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1568____closed__7(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceUMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1568____closed__7); +l___regBuiltin_BitVec_reduceUMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1568____closed__8 = _init_l___regBuiltin_BitVec_reduceUMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1568____closed__8(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceUMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1568____closed__8); +l___regBuiltin_BitVec_reduceUMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1568____closed__9 = _init_l___regBuiltin_BitVec_reduceUMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1568____closed__9(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceUMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1568____closed__9); +if (builtin) {res = l___regBuiltin_BitVec_reduceUMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1568_(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +}if (builtin) {res = l___regBuiltin_BitVec_reduceUMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1570_(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +}if (builtin) {res = l___regBuiltin_BitVec_reduceUMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1572_(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +}l_BitVec_reduceUDiv___closed__1 = _init_l_BitVec_reduceUDiv___closed__1(); +lean_mark_persistent(l_BitVec_reduceUDiv___closed__1); +l_BitVec_reduceUDiv___closed__2 = _init_l_BitVec_reduceUDiv___closed__2(); +lean_mark_persistent(l_BitVec_reduceUDiv___closed__2); +l___regBuiltin_BitVec_reduceUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1594____closed__1 = _init_l___regBuiltin_BitVec_reduceUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1594____closed__1(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1594____closed__1); +l___regBuiltin_BitVec_reduceUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1594____closed__2 = _init_l___regBuiltin_BitVec_reduceUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1594____closed__2(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1594____closed__2); +l___regBuiltin_BitVec_reduceUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1594____closed__3 = _init_l___regBuiltin_BitVec_reduceUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1594____closed__3(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1594____closed__3); +l___regBuiltin_BitVec_reduceUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1594____closed__4 = _init_l___regBuiltin_BitVec_reduceUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1594____closed__4(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1594____closed__4); +l___regBuiltin_BitVec_reduceUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1594____closed__5 = _init_l___regBuiltin_BitVec_reduceUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1594____closed__5(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1594____closed__5); +l___regBuiltin_BitVec_reduceUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1594____closed__6 = _init_l___regBuiltin_BitVec_reduceUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1594____closed__6(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1594____closed__6); +l___regBuiltin_BitVec_reduceUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1594____closed__7 = _init_l___regBuiltin_BitVec_reduceUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1594____closed__7(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1594____closed__7); +l___regBuiltin_BitVec_reduceUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1594____closed__8 = _init_l___regBuiltin_BitVec_reduceUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1594____closed__8(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1594____closed__8); +if (builtin) {res = l___regBuiltin_BitVec_reduceUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1594_(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +}if (builtin) {res = l___regBuiltin_BitVec_reduceUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1596_(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +}if (builtin) {res = l___regBuiltin_BitVec_reduceUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1598_(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +}l_BitVec_reduceSMTUDiv___closed__1 = _init_l_BitVec_reduceSMTUDiv___closed__1(); +lean_mark_persistent(l_BitVec_reduceSMTUDiv___closed__1); +l_BitVec_reduceSMTUDiv___closed__2 = _init_l_BitVec_reduceSMTUDiv___closed__2(); +lean_mark_persistent(l_BitVec_reduceSMTUDiv___closed__2); +l___regBuiltin_BitVec_reduceSMTUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1620____closed__1 = _init_l___regBuiltin_BitVec_reduceSMTUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1620____closed__1(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceSMTUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1620____closed__1); +l___regBuiltin_BitVec_reduceSMTUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1620____closed__2 = _init_l___regBuiltin_BitVec_reduceSMTUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1620____closed__2(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceSMTUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1620____closed__2); +l___regBuiltin_BitVec_reduceSMTUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1620____closed__3 = _init_l___regBuiltin_BitVec_reduceSMTUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1620____closed__3(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceSMTUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1620____closed__3); +l___regBuiltin_BitVec_reduceSMTUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1620____closed__4 = _init_l___regBuiltin_BitVec_reduceSMTUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1620____closed__4(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceSMTUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1620____closed__4); +l___regBuiltin_BitVec_reduceSMTUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1620____closed__5 = _init_l___regBuiltin_BitVec_reduceSMTUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1620____closed__5(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceSMTUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1620____closed__5); +l___regBuiltin_BitVec_reduceSMTUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1620____closed__6 = _init_l___regBuiltin_BitVec_reduceSMTUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1620____closed__6(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceSMTUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1620____closed__6); +l___regBuiltin_BitVec_reduceSMTUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1620____closed__7 = _init_l___regBuiltin_BitVec_reduceSMTUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1620____closed__7(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceSMTUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1620____closed__7); +l___regBuiltin_BitVec_reduceSMTUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1620____closed__8 = _init_l___regBuiltin_BitVec_reduceSMTUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1620____closed__8(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceSMTUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1620____closed__8); +if (builtin) {res = l___regBuiltin_BitVec_reduceSMTUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1620_(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +}if (builtin) {res = l___regBuiltin_BitVec_reduceSMTUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1622_(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +}if (builtin) {res = l___regBuiltin_BitVec_reduceSMTUDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1624_(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +}l_BitVec_reduceSMod___closed__1 = _init_l_BitVec_reduceSMod___closed__1(); +lean_mark_persistent(l_BitVec_reduceSMod___closed__1); +l_BitVec_reduceSMod___closed__2 = _init_l_BitVec_reduceSMod___closed__2(); +lean_mark_persistent(l_BitVec_reduceSMod___closed__2); +l___regBuiltin_BitVec_reduceSMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1646____closed__1 = _init_l___regBuiltin_BitVec_reduceSMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1646____closed__1(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceSMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1646____closed__1); +l___regBuiltin_BitVec_reduceSMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1646____closed__2 = _init_l___regBuiltin_BitVec_reduceSMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1646____closed__2(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceSMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1646____closed__2); +l___regBuiltin_BitVec_reduceSMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1646____closed__3 = _init_l___regBuiltin_BitVec_reduceSMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1646____closed__3(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceSMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1646____closed__3); +l___regBuiltin_BitVec_reduceSMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1646____closed__4 = _init_l___regBuiltin_BitVec_reduceSMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1646____closed__4(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceSMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1646____closed__4); +l___regBuiltin_BitVec_reduceSMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1646____closed__5 = _init_l___regBuiltin_BitVec_reduceSMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1646____closed__5(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceSMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1646____closed__5); +l___regBuiltin_BitVec_reduceSMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1646____closed__6 = _init_l___regBuiltin_BitVec_reduceSMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1646____closed__6(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceSMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1646____closed__6); +l___regBuiltin_BitVec_reduceSMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1646____closed__7 = _init_l___regBuiltin_BitVec_reduceSMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1646____closed__7(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceSMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1646____closed__7); +l___regBuiltin_BitVec_reduceSMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1646____closed__8 = _init_l___regBuiltin_BitVec_reduceSMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1646____closed__8(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceSMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1646____closed__8); +if (builtin) {res = l___regBuiltin_BitVec_reduceSMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1646_(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +}if (builtin) {res = l___regBuiltin_BitVec_reduceSMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1648_(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +}if (builtin) {res = l___regBuiltin_BitVec_reduceSMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1650_(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +}l_BitVec_reduceSRem___closed__1 = _init_l_BitVec_reduceSRem___closed__1(); +lean_mark_persistent(l_BitVec_reduceSRem___closed__1); +l_BitVec_reduceSRem___closed__2 = _init_l_BitVec_reduceSRem___closed__2(); +lean_mark_persistent(l_BitVec_reduceSRem___closed__2); +l___regBuiltin_BitVec_reduceSRem_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1672____closed__1 = _init_l___regBuiltin_BitVec_reduceSRem_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1672____closed__1(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceSRem_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1672____closed__1); +l___regBuiltin_BitVec_reduceSRem_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1672____closed__2 = _init_l___regBuiltin_BitVec_reduceSRem_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1672____closed__2(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceSRem_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1672____closed__2); +l___regBuiltin_BitVec_reduceSRem_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1672____closed__3 = _init_l___regBuiltin_BitVec_reduceSRem_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1672____closed__3(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceSRem_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1672____closed__3); +l___regBuiltin_BitVec_reduceSRem_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1672____closed__4 = _init_l___regBuiltin_BitVec_reduceSRem_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1672____closed__4(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceSRem_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1672____closed__4); +l___regBuiltin_BitVec_reduceSRem_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1672____closed__5 = _init_l___regBuiltin_BitVec_reduceSRem_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1672____closed__5(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceSRem_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1672____closed__5); +l___regBuiltin_BitVec_reduceSRem_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1672____closed__6 = _init_l___regBuiltin_BitVec_reduceSRem_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1672____closed__6(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceSRem_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1672____closed__6); +l___regBuiltin_BitVec_reduceSRem_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1672____closed__7 = _init_l___regBuiltin_BitVec_reduceSRem_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1672____closed__7(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceSRem_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1672____closed__7); +l___regBuiltin_BitVec_reduceSRem_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1672____closed__8 = _init_l___regBuiltin_BitVec_reduceSRem_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1672____closed__8(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceSRem_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1672____closed__8); +if (builtin) {res = l___regBuiltin_BitVec_reduceSRem_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1672_(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +}if (builtin) {res = l___regBuiltin_BitVec_reduceSRem_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1674_(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +}if (builtin) {res = l___regBuiltin_BitVec_reduceSRem_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1676_(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +}l_BitVec_reduceSDiv___closed__1 = _init_l_BitVec_reduceSDiv___closed__1(); +lean_mark_persistent(l_BitVec_reduceSDiv___closed__1); +l_BitVec_reduceSDiv___closed__2 = _init_l_BitVec_reduceSDiv___closed__2(); +lean_mark_persistent(l_BitVec_reduceSDiv___closed__2); +l___regBuiltin_BitVec_reduceSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1698____closed__1 = _init_l___regBuiltin_BitVec_reduceSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1698____closed__1(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1698____closed__1); +l___regBuiltin_BitVec_reduceSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1698____closed__2 = _init_l___regBuiltin_BitVec_reduceSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1698____closed__2(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1698____closed__2); +l___regBuiltin_BitVec_reduceSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1698____closed__3 = _init_l___regBuiltin_BitVec_reduceSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1698____closed__3(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1698____closed__3); +l___regBuiltin_BitVec_reduceSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1698____closed__4 = _init_l___regBuiltin_BitVec_reduceSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1698____closed__4(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1698____closed__4); +l___regBuiltin_BitVec_reduceSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1698____closed__5 = _init_l___regBuiltin_BitVec_reduceSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1698____closed__5(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1698____closed__5); +l___regBuiltin_BitVec_reduceSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1698____closed__6 = _init_l___regBuiltin_BitVec_reduceSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1698____closed__6(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1698____closed__6); +l___regBuiltin_BitVec_reduceSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1698____closed__7 = _init_l___regBuiltin_BitVec_reduceSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1698____closed__7(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1698____closed__7); +l___regBuiltin_BitVec_reduceSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1698____closed__8 = _init_l___regBuiltin_BitVec_reduceSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1698____closed__8(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1698____closed__8); +if (builtin) {res = l___regBuiltin_BitVec_reduceSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1698_(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +}if (builtin) {res = l___regBuiltin_BitVec_reduceSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1700_(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +}if (builtin) {res = l___regBuiltin_BitVec_reduceSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1702_(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +}l_BitVec_reduceSMTSDiv___closed__1 = _init_l_BitVec_reduceSMTSDiv___closed__1(); +lean_mark_persistent(l_BitVec_reduceSMTSDiv___closed__1); +l_BitVec_reduceSMTSDiv___closed__2 = _init_l_BitVec_reduceSMTSDiv___closed__2(); +lean_mark_persistent(l_BitVec_reduceSMTSDiv___closed__2); +l___regBuiltin_BitVec_reduceSMTSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1724____closed__1 = _init_l___regBuiltin_BitVec_reduceSMTSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1724____closed__1(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceSMTSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1724____closed__1); +l___regBuiltin_BitVec_reduceSMTSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1724____closed__2 = _init_l___regBuiltin_BitVec_reduceSMTSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1724____closed__2(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceSMTSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1724____closed__2); +l___regBuiltin_BitVec_reduceSMTSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1724____closed__3 = _init_l___regBuiltin_BitVec_reduceSMTSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1724____closed__3(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceSMTSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1724____closed__3); +l___regBuiltin_BitVec_reduceSMTSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1724____closed__4 = _init_l___regBuiltin_BitVec_reduceSMTSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1724____closed__4(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceSMTSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1724____closed__4); +l___regBuiltin_BitVec_reduceSMTSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1724____closed__5 = _init_l___regBuiltin_BitVec_reduceSMTSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1724____closed__5(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceSMTSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1724____closed__5); +l___regBuiltin_BitVec_reduceSMTSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1724____closed__6 = _init_l___regBuiltin_BitVec_reduceSMTSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1724____closed__6(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceSMTSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1724____closed__6); +l___regBuiltin_BitVec_reduceSMTSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1724____closed__7 = _init_l___regBuiltin_BitVec_reduceSMTSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1724____closed__7(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceSMTSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1724____closed__7); +l___regBuiltin_BitVec_reduceSMTSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1724____closed__8 = _init_l___regBuiltin_BitVec_reduceSMTSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1724____closed__8(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceSMTSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1724____closed__8); +if (builtin) {res = l___regBuiltin_BitVec_reduceSMTSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1724_(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +}if (builtin) {res = l___regBuiltin_BitVec_reduceSMTSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1726_(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +}if (builtin) {res = l___regBuiltin_BitVec_reduceSMTSDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1728_(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +}l_BitVec_reduceGetLsb___closed__1 = _init_l_BitVec_reduceGetLsb___closed__1(); +lean_mark_persistent(l_BitVec_reduceGetLsb___closed__1); +l_BitVec_reduceGetLsb___closed__2 = _init_l_BitVec_reduceGetLsb___closed__2(); +lean_mark_persistent(l_BitVec_reduceGetLsb___closed__2); +l___regBuiltin_BitVec_reduceGetLsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1745____closed__1 = _init_l___regBuiltin_BitVec_reduceGetLsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1745____closed__1(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceGetLsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1745____closed__1); +l___regBuiltin_BitVec_reduceGetLsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1745____closed__2 = _init_l___regBuiltin_BitVec_reduceGetLsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1745____closed__2(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceGetLsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1745____closed__2); +l___regBuiltin_BitVec_reduceGetLsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1745____closed__3 = _init_l___regBuiltin_BitVec_reduceGetLsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1745____closed__3(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceGetLsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1745____closed__3); +l___regBuiltin_BitVec_reduceGetLsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1745____closed__4 = _init_l___regBuiltin_BitVec_reduceGetLsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1745____closed__4(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceGetLsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1745____closed__4); +l___regBuiltin_BitVec_reduceGetLsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1745____closed__5 = _init_l___regBuiltin_BitVec_reduceGetLsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1745____closed__5(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceGetLsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1745____closed__5); +l___regBuiltin_BitVec_reduceGetLsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1745____closed__6 = _init_l___regBuiltin_BitVec_reduceGetLsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1745____closed__6(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceGetLsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1745____closed__6); +l___regBuiltin_BitVec_reduceGetLsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1745____closed__7 = _init_l___regBuiltin_BitVec_reduceGetLsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1745____closed__7(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceGetLsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1745____closed__7); +l___regBuiltin_BitVec_reduceGetLsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1745____closed__8 = _init_l___regBuiltin_BitVec_reduceGetLsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1745____closed__8(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceGetLsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1745____closed__8); +if (builtin) {res = l___regBuiltin_BitVec_reduceGetLsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1745_(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +}if (builtin) {res = l___regBuiltin_BitVec_reduceGetLsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1747_(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +}if (builtin) {res = l___regBuiltin_BitVec_reduceGetLsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1749_(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +}l_BitVec_reduceGetMsb___closed__1 = _init_l_BitVec_reduceGetMsb___closed__1(); +lean_mark_persistent(l_BitVec_reduceGetMsb___closed__1); +l_BitVec_reduceGetMsb___closed__2 = _init_l_BitVec_reduceGetMsb___closed__2(); +lean_mark_persistent(l_BitVec_reduceGetMsb___closed__2); +l___regBuiltin_BitVec_reduceGetMsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1766____closed__1 = _init_l___regBuiltin_BitVec_reduceGetMsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1766____closed__1(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceGetMsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1766____closed__1); +l___regBuiltin_BitVec_reduceGetMsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1766____closed__2 = _init_l___regBuiltin_BitVec_reduceGetMsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1766____closed__2(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceGetMsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1766____closed__2); +l___regBuiltin_BitVec_reduceGetMsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1766____closed__3 = _init_l___regBuiltin_BitVec_reduceGetMsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1766____closed__3(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceGetMsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1766____closed__3); +l___regBuiltin_BitVec_reduceGetMsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1766____closed__4 = _init_l___regBuiltin_BitVec_reduceGetMsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1766____closed__4(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceGetMsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1766____closed__4); +l___regBuiltin_BitVec_reduceGetMsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1766____closed__5 = _init_l___regBuiltin_BitVec_reduceGetMsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1766____closed__5(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceGetMsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1766____closed__5); +l___regBuiltin_BitVec_reduceGetMsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1766____closed__6 = _init_l___regBuiltin_BitVec_reduceGetMsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1766____closed__6(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceGetMsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1766____closed__6); +l___regBuiltin_BitVec_reduceGetMsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1766____closed__7 = _init_l___regBuiltin_BitVec_reduceGetMsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1766____closed__7(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceGetMsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1766____closed__7); +l___regBuiltin_BitVec_reduceGetMsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1766____closed__8 = _init_l___regBuiltin_BitVec_reduceGetMsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1766____closed__8(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceGetMsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1766____closed__8); +if (builtin) {res = l___regBuiltin_BitVec_reduceGetMsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1766_(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +}if (builtin) {res = l___regBuiltin_BitVec_reduceGetMsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1768_(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +}if (builtin) {res = l___regBuiltin_BitVec_reduceGetMsb_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1770_(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +}l_BitVec_reduceShiftLeft___closed__1 = _init_l_BitVec_reduceShiftLeft___closed__1(); +lean_mark_persistent(l_BitVec_reduceShiftLeft___closed__1); +l_BitVec_reduceShiftLeft___closed__2 = _init_l_BitVec_reduceShiftLeft___closed__2(); +lean_mark_persistent(l_BitVec_reduceShiftLeft___closed__2); +l___regBuiltin_BitVec_reduceShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1788____closed__1 = _init_l___regBuiltin_BitVec_reduceShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1788____closed__1(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1788____closed__1); +l___regBuiltin_BitVec_reduceShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1788____closed__2 = _init_l___regBuiltin_BitVec_reduceShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1788____closed__2(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1788____closed__2); +l___regBuiltin_BitVec_reduceShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1788____closed__3 = _init_l___regBuiltin_BitVec_reduceShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1788____closed__3(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1788____closed__3); +l___regBuiltin_BitVec_reduceShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1788____closed__4 = _init_l___regBuiltin_BitVec_reduceShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1788____closed__4(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1788____closed__4); +l___regBuiltin_BitVec_reduceShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1788____closed__5 = _init_l___regBuiltin_BitVec_reduceShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1788____closed__5(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1788____closed__5); +l___regBuiltin_BitVec_reduceShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1788____closed__6 = _init_l___regBuiltin_BitVec_reduceShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1788____closed__6(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1788____closed__6); +l___regBuiltin_BitVec_reduceShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1788____closed__7 = _init_l___regBuiltin_BitVec_reduceShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1788____closed__7(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1788____closed__7); +l___regBuiltin_BitVec_reduceShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1788____closed__8 = _init_l___regBuiltin_BitVec_reduceShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1788____closed__8(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1788____closed__8); +if (builtin) {res = l___regBuiltin_BitVec_reduceShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1788_(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +}if (builtin) {res = l___regBuiltin_BitVec_reduceShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1790_(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +}if (builtin) {res = l___regBuiltin_BitVec_reduceShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1792_(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +}l_BitVec_reduceUShiftRight___closed__1 = _init_l_BitVec_reduceUShiftRight___closed__1(); +lean_mark_persistent(l_BitVec_reduceUShiftRight___closed__1); +l_BitVec_reduceUShiftRight___closed__2 = _init_l_BitVec_reduceUShiftRight___closed__2(); +lean_mark_persistent(l_BitVec_reduceUShiftRight___closed__2); +l___regBuiltin_BitVec_reduceUShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1810____closed__1 = _init_l___regBuiltin_BitVec_reduceUShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1810____closed__1(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceUShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1810____closed__1); +l___regBuiltin_BitVec_reduceUShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1810____closed__2 = _init_l___regBuiltin_BitVec_reduceUShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1810____closed__2(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceUShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1810____closed__2); +l___regBuiltin_BitVec_reduceUShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1810____closed__3 = _init_l___regBuiltin_BitVec_reduceUShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1810____closed__3(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceUShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1810____closed__3); +l___regBuiltin_BitVec_reduceUShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1810____closed__4 = _init_l___regBuiltin_BitVec_reduceUShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1810____closed__4(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceUShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1810____closed__4); +l___regBuiltin_BitVec_reduceUShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1810____closed__5 = _init_l___regBuiltin_BitVec_reduceUShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1810____closed__5(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceUShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1810____closed__5); +l___regBuiltin_BitVec_reduceUShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1810____closed__6 = _init_l___regBuiltin_BitVec_reduceUShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1810____closed__6(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceUShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1810____closed__6); +l___regBuiltin_BitVec_reduceUShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1810____closed__7 = _init_l___regBuiltin_BitVec_reduceUShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1810____closed__7(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceUShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1810____closed__7); +l___regBuiltin_BitVec_reduceUShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1810____closed__8 = _init_l___regBuiltin_BitVec_reduceUShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1810____closed__8(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceUShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1810____closed__8); +if (builtin) {res = l___regBuiltin_BitVec_reduceUShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1810_(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +}if (builtin) {res = l___regBuiltin_BitVec_reduceUShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1812_(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +}if (builtin) {res = l___regBuiltin_BitVec_reduceUShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1814_(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +}l_BitVec_reduceSShiftRight___closed__1 = _init_l_BitVec_reduceSShiftRight___closed__1(); +lean_mark_persistent(l_BitVec_reduceSShiftRight___closed__1); +l_BitVec_reduceSShiftRight___closed__2 = _init_l_BitVec_reduceSShiftRight___closed__2(); +lean_mark_persistent(l_BitVec_reduceSShiftRight___closed__2); +l___regBuiltin_BitVec_reduceSShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1832____closed__1 = _init_l___regBuiltin_BitVec_reduceSShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1832____closed__1(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceSShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1832____closed__1); +l___regBuiltin_BitVec_reduceSShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1832____closed__2 = _init_l___regBuiltin_BitVec_reduceSShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1832____closed__2(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceSShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1832____closed__2); +l___regBuiltin_BitVec_reduceSShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1832____closed__3 = _init_l___regBuiltin_BitVec_reduceSShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1832____closed__3(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceSShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1832____closed__3); +l___regBuiltin_BitVec_reduceSShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1832____closed__4 = _init_l___regBuiltin_BitVec_reduceSShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1832____closed__4(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceSShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1832____closed__4); +l___regBuiltin_BitVec_reduceSShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1832____closed__5 = _init_l___regBuiltin_BitVec_reduceSShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1832____closed__5(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceSShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1832____closed__5); +l___regBuiltin_BitVec_reduceSShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1832____closed__6 = _init_l___regBuiltin_BitVec_reduceSShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1832____closed__6(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceSShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1832____closed__6); +l___regBuiltin_BitVec_reduceSShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1832____closed__7 = _init_l___regBuiltin_BitVec_reduceSShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1832____closed__7(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceSShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1832____closed__7); +l___regBuiltin_BitVec_reduceSShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1832____closed__8 = _init_l___regBuiltin_BitVec_reduceSShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1832____closed__8(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceSShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1832____closed__8); +if (builtin) {res = l___regBuiltin_BitVec_reduceSShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1832_(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +}if (builtin) {res = l___regBuiltin_BitVec_reduceSShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1834_(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +}if (builtin) {res = l___regBuiltin_BitVec_reduceSShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1836_(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +}l_BitVec_reduceHShiftLeft___closed__1 = _init_l_BitVec_reduceHShiftLeft___closed__1(); +lean_mark_persistent(l_BitVec_reduceHShiftLeft___closed__1); +l_BitVec_reduceHShiftLeft___closed__2 = _init_l_BitVec_reduceHShiftLeft___closed__2(); +lean_mark_persistent(l_BitVec_reduceHShiftLeft___closed__2); +l_BitVec_reduceHShiftLeft___closed__3 = _init_l_BitVec_reduceHShiftLeft___closed__3(); +lean_mark_persistent(l_BitVec_reduceHShiftLeft___closed__3); +l___regBuiltin_BitVec_reduceHShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1874____closed__1 = _init_l___regBuiltin_BitVec_reduceHShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1874____closed__1(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceHShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1874____closed__1); +l___regBuiltin_BitVec_reduceHShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1874____closed__2 = _init_l___regBuiltin_BitVec_reduceHShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1874____closed__2(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceHShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1874____closed__2); +l___regBuiltin_BitVec_reduceHShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1874____closed__3 = _init_l___regBuiltin_BitVec_reduceHShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1874____closed__3(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceHShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1874____closed__3); +l___regBuiltin_BitVec_reduceHShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1874____closed__4 = _init_l___regBuiltin_BitVec_reduceHShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1874____closed__4(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceHShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1874____closed__4); +l___regBuiltin_BitVec_reduceHShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1874____closed__5 = _init_l___regBuiltin_BitVec_reduceHShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1874____closed__5(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceHShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1874____closed__5); +l___regBuiltin_BitVec_reduceHShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1874____closed__6 = _init_l___regBuiltin_BitVec_reduceHShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1874____closed__6(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceHShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1874____closed__6); +l___regBuiltin_BitVec_reduceHShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1874____closed__7 = _init_l___regBuiltin_BitVec_reduceHShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1874____closed__7(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceHShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1874____closed__7); +l___regBuiltin_BitVec_reduceHShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1874____closed__8 = _init_l___regBuiltin_BitVec_reduceHShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1874____closed__8(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceHShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1874____closed__8); +l___regBuiltin_BitVec_reduceHShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1874____closed__9 = _init_l___regBuiltin_BitVec_reduceHShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1874____closed__9(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceHShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1874____closed__9); +l___regBuiltin_BitVec_reduceHShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1874____closed__10 = _init_l___regBuiltin_BitVec_reduceHShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1874____closed__10(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceHShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1874____closed__10); +l___regBuiltin_BitVec_reduceHShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1874____closed__11 = _init_l___regBuiltin_BitVec_reduceHShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1874____closed__11(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceHShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1874____closed__11); +l___regBuiltin_BitVec_reduceHShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1874____closed__12 = _init_l___regBuiltin_BitVec_reduceHShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1874____closed__12(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceHShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1874____closed__12); +l___regBuiltin_BitVec_reduceHShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1874____closed__13 = _init_l___regBuiltin_BitVec_reduceHShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1874____closed__13(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceHShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1874____closed__13); +if (builtin) {res = l___regBuiltin_BitVec_reduceHShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1874_(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +}if (builtin) {res = l___regBuiltin_BitVec_reduceHShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1876_(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +}if (builtin) {res = l___regBuiltin_BitVec_reduceHShiftLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1878_(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +}l_BitVec_reduceHShiftRight___closed__1 = _init_l_BitVec_reduceHShiftRight___closed__1(); +lean_mark_persistent(l_BitVec_reduceHShiftRight___closed__1); +l_BitVec_reduceHShiftRight___closed__2 = _init_l_BitVec_reduceHShiftRight___closed__2(); +lean_mark_persistent(l_BitVec_reduceHShiftRight___closed__2); +l_BitVec_reduceHShiftRight___closed__3 = _init_l_BitVec_reduceHShiftRight___closed__3(); +lean_mark_persistent(l_BitVec_reduceHShiftRight___closed__3); +l___regBuiltin_BitVec_reduceHShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1916____closed__1 = _init_l___regBuiltin_BitVec_reduceHShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1916____closed__1(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceHShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1916____closed__1); +l___regBuiltin_BitVec_reduceHShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1916____closed__2 = _init_l___regBuiltin_BitVec_reduceHShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1916____closed__2(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceHShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1916____closed__2); +l___regBuiltin_BitVec_reduceHShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1916____closed__3 = _init_l___regBuiltin_BitVec_reduceHShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1916____closed__3(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceHShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1916____closed__3); +l___regBuiltin_BitVec_reduceHShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1916____closed__4 = _init_l___regBuiltin_BitVec_reduceHShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1916____closed__4(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceHShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1916____closed__4); +l___regBuiltin_BitVec_reduceHShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1916____closed__5 = _init_l___regBuiltin_BitVec_reduceHShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1916____closed__5(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceHShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1916____closed__5); +l___regBuiltin_BitVec_reduceHShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1916____closed__6 = _init_l___regBuiltin_BitVec_reduceHShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1916____closed__6(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceHShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1916____closed__6); +l___regBuiltin_BitVec_reduceHShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1916____closed__7 = _init_l___regBuiltin_BitVec_reduceHShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1916____closed__7(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceHShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1916____closed__7); +l___regBuiltin_BitVec_reduceHShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1916____closed__8 = _init_l___regBuiltin_BitVec_reduceHShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1916____closed__8(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceHShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1916____closed__8); +l___regBuiltin_BitVec_reduceHShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1916____closed__9 = _init_l___regBuiltin_BitVec_reduceHShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1916____closed__9(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceHShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1916____closed__9); +l___regBuiltin_BitVec_reduceHShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1916____closed__10 = _init_l___regBuiltin_BitVec_reduceHShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1916____closed__10(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceHShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1916____closed__10); +l___regBuiltin_BitVec_reduceHShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1916____closed__11 = _init_l___regBuiltin_BitVec_reduceHShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1916____closed__11(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceHShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1916____closed__11); +l___regBuiltin_BitVec_reduceHShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1916____closed__12 = _init_l___regBuiltin_BitVec_reduceHShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1916____closed__12(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceHShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1916____closed__12); +if (builtin) {res = l___regBuiltin_BitVec_reduceHShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1916_(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +}if (builtin) {res = l___regBuiltin_BitVec_reduceHShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1918_(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +}if (builtin) {res = l___regBuiltin_BitVec_reduceHShiftRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1920_(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +}l_BitVec_reduceRotateLeft___closed__1 = _init_l_BitVec_reduceRotateLeft___closed__1(); +lean_mark_persistent(l_BitVec_reduceRotateLeft___closed__1); +l_BitVec_reduceRotateLeft___closed__2 = _init_l_BitVec_reduceRotateLeft___closed__2(); +lean_mark_persistent(l_BitVec_reduceRotateLeft___closed__2); +l___regBuiltin_BitVec_reduceRotateLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1938____closed__1 = _init_l___regBuiltin_BitVec_reduceRotateLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1938____closed__1(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceRotateLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1938____closed__1); +l___regBuiltin_BitVec_reduceRotateLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1938____closed__2 = _init_l___regBuiltin_BitVec_reduceRotateLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1938____closed__2(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceRotateLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1938____closed__2); +l___regBuiltin_BitVec_reduceRotateLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1938____closed__3 = _init_l___regBuiltin_BitVec_reduceRotateLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1938____closed__3(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceRotateLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1938____closed__3); +l___regBuiltin_BitVec_reduceRotateLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1938____closed__4 = _init_l___regBuiltin_BitVec_reduceRotateLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1938____closed__4(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceRotateLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1938____closed__4); +l___regBuiltin_BitVec_reduceRotateLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1938____closed__5 = _init_l___regBuiltin_BitVec_reduceRotateLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1938____closed__5(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceRotateLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1938____closed__5); +l___regBuiltin_BitVec_reduceRotateLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1938____closed__6 = _init_l___regBuiltin_BitVec_reduceRotateLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1938____closed__6(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceRotateLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1938____closed__6); +l___regBuiltin_BitVec_reduceRotateLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1938____closed__7 = _init_l___regBuiltin_BitVec_reduceRotateLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1938____closed__7(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceRotateLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1938____closed__7); +l___regBuiltin_BitVec_reduceRotateLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1938____closed__8 = _init_l___regBuiltin_BitVec_reduceRotateLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1938____closed__8(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceRotateLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1938____closed__8); +if (builtin) {res = l___regBuiltin_BitVec_reduceRotateLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1938_(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +}if (builtin) {res = l___regBuiltin_BitVec_reduceRotateLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1940_(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +}if (builtin) {res = l___regBuiltin_BitVec_reduceRotateLeft_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1942_(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +}l_BitVec_reduceRotateRight___closed__1 = _init_l_BitVec_reduceRotateRight___closed__1(); +lean_mark_persistent(l_BitVec_reduceRotateRight___closed__1); +l_BitVec_reduceRotateRight___closed__2 = _init_l_BitVec_reduceRotateRight___closed__2(); +lean_mark_persistent(l_BitVec_reduceRotateRight___closed__2); +l___regBuiltin_BitVec_reduceRotateRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1960____closed__1 = _init_l___regBuiltin_BitVec_reduceRotateRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1960____closed__1(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceRotateRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1960____closed__1); +l___regBuiltin_BitVec_reduceRotateRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1960____closed__2 = _init_l___regBuiltin_BitVec_reduceRotateRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1960____closed__2(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceRotateRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1960____closed__2); +l___regBuiltin_BitVec_reduceRotateRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1960____closed__3 = _init_l___regBuiltin_BitVec_reduceRotateRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1960____closed__3(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceRotateRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1960____closed__3); +l___regBuiltin_BitVec_reduceRotateRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1960____closed__4 = _init_l___regBuiltin_BitVec_reduceRotateRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1960____closed__4(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceRotateRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1960____closed__4); +l___regBuiltin_BitVec_reduceRotateRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1960____closed__5 = _init_l___regBuiltin_BitVec_reduceRotateRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1960____closed__5(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceRotateRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1960____closed__5); +l___regBuiltin_BitVec_reduceRotateRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1960____closed__6 = _init_l___regBuiltin_BitVec_reduceRotateRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1960____closed__6(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceRotateRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1960____closed__6); +l___regBuiltin_BitVec_reduceRotateRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1960____closed__7 = _init_l___regBuiltin_BitVec_reduceRotateRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1960____closed__7(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceRotateRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1960____closed__7); +l___regBuiltin_BitVec_reduceRotateRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1960____closed__8 = _init_l___regBuiltin_BitVec_reduceRotateRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1960____closed__8(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceRotateRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1960____closed__8); +if (builtin) {res = l___regBuiltin_BitVec_reduceRotateRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1960_(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +}if (builtin) {res = l___regBuiltin_BitVec_reduceRotateRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1962_(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +}if (builtin) {res = l___regBuiltin_BitVec_reduceRotateRight_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_1964_(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +}l_BitVec_reduceAppend___closed__1 = _init_l_BitVec_reduceAppend___closed__1(); +lean_mark_persistent(l_BitVec_reduceAppend___closed__1); +l_BitVec_reduceAppend___closed__2 = _init_l_BitVec_reduceAppend___closed__2(); +lean_mark_persistent(l_BitVec_reduceAppend___closed__2); +l_BitVec_reduceAppend___closed__3 = _init_l_BitVec_reduceAppend___closed__3(); +lean_mark_persistent(l_BitVec_reduceAppend___closed__3); +l___regBuiltin_BitVec_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2117____closed__1 = _init_l___regBuiltin_BitVec_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2117____closed__1(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2117____closed__1); +l___regBuiltin_BitVec_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2117____closed__2 = _init_l___regBuiltin_BitVec_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2117____closed__2(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2117____closed__2); +l___regBuiltin_BitVec_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2117____closed__3 = _init_l___regBuiltin_BitVec_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2117____closed__3(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2117____closed__3); +l___regBuiltin_BitVec_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2117____closed__4 = _init_l___regBuiltin_BitVec_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2117____closed__4(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2117____closed__4); +l___regBuiltin_BitVec_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2117____closed__5 = _init_l___regBuiltin_BitVec_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2117____closed__5(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2117____closed__5); +l___regBuiltin_BitVec_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2117____closed__6 = _init_l___regBuiltin_BitVec_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2117____closed__6(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2117____closed__6); +l___regBuiltin_BitVec_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2117____closed__7 = _init_l___regBuiltin_BitVec_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2117____closed__7(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2117____closed__7); +l___regBuiltin_BitVec_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2117____closed__8 = _init_l___regBuiltin_BitVec_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2117____closed__8(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2117____closed__8); +l___regBuiltin_BitVec_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2117____closed__9 = _init_l___regBuiltin_BitVec_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2117____closed__9(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2117____closed__9); +l___regBuiltin_BitVec_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2117____closed__10 = _init_l___regBuiltin_BitVec_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2117____closed__10(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2117____closed__10); +l___regBuiltin_BitVec_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2117____closed__11 = _init_l___regBuiltin_BitVec_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2117____closed__11(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2117____closed__11); +l___regBuiltin_BitVec_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2117____closed__12 = _init_l___regBuiltin_BitVec_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2117____closed__12(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2117____closed__12); +if (builtin) {res = l___regBuiltin_BitVec_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2117_(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +}if (builtin) {res = l___regBuiltin_BitVec_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2119_(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +}if (builtin) {res = l___regBuiltin_BitVec_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2121_(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +}l_BitVec_reduceCast___closed__1 = _init_l_BitVec_reduceCast___closed__1(); +lean_mark_persistent(l_BitVec_reduceCast___closed__1); +l_BitVec_reduceCast___closed__2 = _init_l_BitVec_reduceCast___closed__2(); +lean_mark_persistent(l_BitVec_reduceCast___closed__2); +l___regBuiltin_BitVec_reduceCast_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2266____closed__1 = _init_l___regBuiltin_BitVec_reduceCast_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2266____closed__1(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceCast_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2266____closed__1); +l___regBuiltin_BitVec_reduceCast_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2266____closed__2 = _init_l___regBuiltin_BitVec_reduceCast_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2266____closed__2(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceCast_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2266____closed__2); +l___regBuiltin_BitVec_reduceCast_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2266____closed__3 = _init_l___regBuiltin_BitVec_reduceCast_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2266____closed__3(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceCast_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2266____closed__3); +l___regBuiltin_BitVec_reduceCast_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2266____closed__4 = _init_l___regBuiltin_BitVec_reduceCast_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2266____closed__4(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceCast_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2266____closed__4); +l___regBuiltin_BitVec_reduceCast_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2266____closed__5 = _init_l___regBuiltin_BitVec_reduceCast_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2266____closed__5(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceCast_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2266____closed__5); +l___regBuiltin_BitVec_reduceCast_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2266____closed__6 = _init_l___regBuiltin_BitVec_reduceCast_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2266____closed__6(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceCast_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2266____closed__6); +l___regBuiltin_BitVec_reduceCast_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2266____closed__7 = _init_l___regBuiltin_BitVec_reduceCast_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2266____closed__7(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceCast_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2266____closed__7); +l___regBuiltin_BitVec_reduceCast_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2266____closed__8 = _init_l___regBuiltin_BitVec_reduceCast_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2266____closed__8(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceCast_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2266____closed__8); +l___regBuiltin_BitVec_reduceCast_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2266____closed__9 = _init_l___regBuiltin_BitVec_reduceCast_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2266____closed__9(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceCast_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2266____closed__9); +if (builtin) {res = l___regBuiltin_BitVec_reduceCast_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2266_(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +}if (builtin) {res = l___regBuiltin_BitVec_reduceCast_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2268_(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +}if (builtin) {res = l___regBuiltin_BitVec_reduceCast_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2270_(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +}l_BitVec_reduceToNat___closed__1 = _init_l_BitVec_reduceToNat___closed__1(); +lean_mark_persistent(l_BitVec_reduceToNat___closed__1); +l_BitVec_reduceToNat___closed__2 = _init_l_BitVec_reduceToNat___closed__2(); +lean_mark_persistent(l_BitVec_reduceToNat___closed__2); +l___regBuiltin_BitVec_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2374____closed__1 = _init_l___regBuiltin_BitVec_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2374____closed__1(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2374____closed__1); +l___regBuiltin_BitVec_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2374____closed__2 = _init_l___regBuiltin_BitVec_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2374____closed__2(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2374____closed__2); +l___regBuiltin_BitVec_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2374____closed__3 = _init_l___regBuiltin_BitVec_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2374____closed__3(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2374____closed__3); +l___regBuiltin_BitVec_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2374____closed__4 = _init_l___regBuiltin_BitVec_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2374____closed__4(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2374____closed__4); +l___regBuiltin_BitVec_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2374____closed__5 = _init_l___regBuiltin_BitVec_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2374____closed__5(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2374____closed__5); +l___regBuiltin_BitVec_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2374____closed__6 = _init_l___regBuiltin_BitVec_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2374____closed__6(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2374____closed__6); +l___regBuiltin_BitVec_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2374____closed__7 = _init_l___regBuiltin_BitVec_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2374____closed__7(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2374____closed__7); +if (builtin) {res = l___regBuiltin_BitVec_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2374_(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +}if (builtin) {res = l___regBuiltin_BitVec_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2376_(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +}if (builtin) {res = l___regBuiltin_BitVec_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2378_(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +}l_BitVec_reduceToInt___lambda__1___closed__1 = _init_l_BitVec_reduceToInt___lambda__1___closed__1(); +lean_mark_persistent(l_BitVec_reduceToInt___lambda__1___closed__1); +l_BitVec_reduceToInt___lambda__1___closed__2 = _init_l_BitVec_reduceToInt___lambda__1___closed__2(); +lean_mark_persistent(l_BitVec_reduceToInt___lambda__1___closed__2); +l_BitVec_reduceToInt___lambda__1___closed__3 = _init_l_BitVec_reduceToInt___lambda__1___closed__3(); +lean_mark_persistent(l_BitVec_reduceToInt___lambda__1___closed__3); +l_BitVec_reduceToInt___lambda__1___closed__4 = _init_l_BitVec_reduceToInt___lambda__1___closed__4(); +lean_mark_persistent(l_BitVec_reduceToInt___lambda__1___closed__4); +l_BitVec_reduceToInt___lambda__1___closed__5 = _init_l_BitVec_reduceToInt___lambda__1___closed__5(); +lean_mark_persistent(l_BitVec_reduceToInt___lambda__1___closed__5); +l_BitVec_reduceToInt___lambda__1___closed__6 = _init_l_BitVec_reduceToInt___lambda__1___closed__6(); +lean_mark_persistent(l_BitVec_reduceToInt___lambda__1___closed__6); +l_BitVec_reduceToInt___lambda__1___closed__7 = _init_l_BitVec_reduceToInt___lambda__1___closed__7(); +lean_mark_persistent(l_BitVec_reduceToInt___lambda__1___closed__7); +l_BitVec_reduceToInt___lambda__1___closed__8 = _init_l_BitVec_reduceToInt___lambda__1___closed__8(); +lean_mark_persistent(l_BitVec_reduceToInt___lambda__1___closed__8); +l_BitVec_reduceToInt___lambda__1___closed__9 = _init_l_BitVec_reduceToInt___lambda__1___closed__9(); +lean_mark_persistent(l_BitVec_reduceToInt___lambda__1___closed__9); +l_BitVec_reduceToInt___lambda__1___closed__10 = _init_l_BitVec_reduceToInt___lambda__1___closed__10(); +lean_mark_persistent(l_BitVec_reduceToInt___lambda__1___closed__10); +l_BitVec_reduceToInt___closed__1 = _init_l_BitVec_reduceToInt___closed__1(); +lean_mark_persistent(l_BitVec_reduceToInt___closed__1); +l_BitVec_reduceToInt___closed__2 = _init_l_BitVec_reduceToInt___closed__2(); +lean_mark_persistent(l_BitVec_reduceToInt___closed__2); +l___regBuiltin_BitVec_reduceToInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2482____closed__1 = _init_l___regBuiltin_BitVec_reduceToInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2482____closed__1(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceToInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2482____closed__1); +l___regBuiltin_BitVec_reduceToInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2482____closed__2 = _init_l___regBuiltin_BitVec_reduceToInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2482____closed__2(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceToInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2482____closed__2); +l___regBuiltin_BitVec_reduceToInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2482____closed__3 = _init_l___regBuiltin_BitVec_reduceToInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2482____closed__3(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceToInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2482____closed__3); +l___regBuiltin_BitVec_reduceToInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2482____closed__4 = _init_l___regBuiltin_BitVec_reduceToInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2482____closed__4(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceToInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2482____closed__4); +l___regBuiltin_BitVec_reduceToInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2482____closed__5 = _init_l___regBuiltin_BitVec_reduceToInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2482____closed__5(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceToInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2482____closed__5); +l___regBuiltin_BitVec_reduceToInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2482____closed__6 = _init_l___regBuiltin_BitVec_reduceToInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2482____closed__6(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceToInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2482____closed__6); +l___regBuiltin_BitVec_reduceToInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2482____closed__7 = _init_l___regBuiltin_BitVec_reduceToInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2482____closed__7(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceToInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2482____closed__7); +if (builtin) {res = l___regBuiltin_BitVec_reduceToInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2482_(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +}if (builtin) {res = l___regBuiltin_BitVec_reduceToInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2484_(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +}if (builtin) {res = l___regBuiltin_BitVec_reduceToInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2486_(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +}l_BitVec_reduceOfInt___closed__1 = _init_l_BitVec_reduceOfInt___closed__1(); +lean_mark_persistent(l_BitVec_reduceOfInt___closed__1); +l_BitVec_reduceOfInt___closed__2 = _init_l_BitVec_reduceOfInt___closed__2(); +lean_mark_persistent(l_BitVec_reduceOfInt___closed__2); +l___regBuiltin_BitVec_reduceOfInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2631____closed__1 = _init_l___regBuiltin_BitVec_reduceOfInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2631____closed__1(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceOfInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2631____closed__1); +l___regBuiltin_BitVec_reduceOfInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2631____closed__2 = _init_l___regBuiltin_BitVec_reduceOfInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2631____closed__2(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceOfInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2631____closed__2); +l___regBuiltin_BitVec_reduceOfInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2631____closed__3 = _init_l___regBuiltin_BitVec_reduceOfInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2631____closed__3(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceOfInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2631____closed__3); +l___regBuiltin_BitVec_reduceOfInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2631____closed__4 = _init_l___regBuiltin_BitVec_reduceOfInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2631____closed__4(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceOfInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2631____closed__4); +l___regBuiltin_BitVec_reduceOfInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2631____closed__5 = _init_l___regBuiltin_BitVec_reduceOfInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2631____closed__5(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceOfInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2631____closed__5); +l___regBuiltin_BitVec_reduceOfInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2631____closed__6 = _init_l___regBuiltin_BitVec_reduceOfInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2631____closed__6(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceOfInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2631____closed__6); +l___regBuiltin_BitVec_reduceOfInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2631____closed__7 = _init_l___regBuiltin_BitVec_reduceOfInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2631____closed__7(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceOfInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2631____closed__7); +if (builtin) {res = l___regBuiltin_BitVec_reduceOfInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2631_(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +}if (builtin) {res = l___regBuiltin_BitVec_reduceOfInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2633_(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +}if (builtin) {res = l___regBuiltin_BitVec_reduceOfInt_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2635_(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +}l___regBuiltin_BitVec_reduceOfNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2829____closed__1 = _init_l___regBuiltin_BitVec_reduceOfNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2829____closed__1(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceOfNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2829____closed__1); +l___regBuiltin_BitVec_reduceOfNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2829____closed__2 = _init_l___regBuiltin_BitVec_reduceOfNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2829____closed__2(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceOfNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2829____closed__2); +l___regBuiltin_BitVec_reduceOfNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2829____closed__3 = _init_l___regBuiltin_BitVec_reduceOfNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2829____closed__3(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceOfNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2829____closed__3); +l___regBuiltin_BitVec_reduceOfNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2829____closed__4 = _init_l___regBuiltin_BitVec_reduceOfNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2829____closed__4(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceOfNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2829____closed__4); +l___regBuiltin_BitVec_reduceOfNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2829____closed__5 = _init_l___regBuiltin_BitVec_reduceOfNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2829____closed__5(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceOfNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2829____closed__5); +l___regBuiltin_BitVec_reduceOfNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2829____closed__6 = _init_l___regBuiltin_BitVec_reduceOfNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2829____closed__6(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceOfNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2829____closed__6); +l___regBuiltin_BitVec_reduceOfNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2829____closed__7 = _init_l___regBuiltin_BitVec_reduceOfNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2829____closed__7(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceOfNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2829____closed__7); +if (builtin) {res = l___regBuiltin_BitVec_reduceOfNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2829_(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +}if (builtin) {res = l___regBuiltin_BitVec_reduceOfNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2831_(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +}if (builtin) {res = l___regBuiltin_BitVec_reduceOfNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2833_(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +}l_BitVec_reduceLT___closed__1 = _init_l_BitVec_reduceLT___closed__1(); +lean_mark_persistent(l_BitVec_reduceLT___closed__1); +l_BitVec_reduceLT___closed__2 = _init_l_BitVec_reduceLT___closed__2(); +lean_mark_persistent(l_BitVec_reduceLT___closed__2); +l_BitVec_reduceLT___closed__3 = _init_l_BitVec_reduceLT___closed__3(); +lean_mark_persistent(l_BitVec_reduceLT___closed__3); +l___regBuiltin_BitVec_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2872____closed__1 = _init_l___regBuiltin_BitVec_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2872____closed__1(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2872____closed__1); +l___regBuiltin_BitVec_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2872____closed__2 = _init_l___regBuiltin_BitVec_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2872____closed__2(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2872____closed__2); +l___regBuiltin_BitVec_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2872____closed__3 = _init_l___regBuiltin_BitVec_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2872____closed__3(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2872____closed__3); +l___regBuiltin_BitVec_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2872____closed__4 = _init_l___regBuiltin_BitVec_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2872____closed__4(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2872____closed__4); +l___regBuiltin_BitVec_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2872____closed__5 = _init_l___regBuiltin_BitVec_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2872____closed__5(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2872____closed__5); +l___regBuiltin_BitVec_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2872____closed__6 = _init_l___regBuiltin_BitVec_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2872____closed__6(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2872____closed__6); +l___regBuiltin_BitVec_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2872____closed__7 = _init_l___regBuiltin_BitVec_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2872____closed__7(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2872____closed__7); +l___regBuiltin_BitVec_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2872____closed__8 = _init_l___regBuiltin_BitVec_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2872____closed__8(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2872____closed__8); +l___regBuiltin_BitVec_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2872____closed__9 = _init_l___regBuiltin_BitVec_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2872____closed__9(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2872____closed__9); +l___regBuiltin_BitVec_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2872____closed__10 = _init_l___regBuiltin_BitVec_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2872____closed__10(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2872____closed__10); +l___regBuiltin_BitVec_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2872____closed__11 = _init_l___regBuiltin_BitVec_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2872____closed__11(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2872____closed__11); +if (builtin) {res = l___regBuiltin_BitVec_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2872_(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +}if (builtin) {res = l___regBuiltin_BitVec_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2874_(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +}if (builtin) {res = l___regBuiltin_BitVec_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2876_(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +}l_BitVec_reduceLE___closed__1 = _init_l_BitVec_reduceLE___closed__1(); +lean_mark_persistent(l_BitVec_reduceLE___closed__1); +l_BitVec_reduceLE___closed__2 = _init_l_BitVec_reduceLE___closed__2(); +lean_mark_persistent(l_BitVec_reduceLE___closed__2); +l_BitVec_reduceLE___closed__3 = _init_l_BitVec_reduceLE___closed__3(); +lean_mark_persistent(l_BitVec_reduceLE___closed__3); +l___regBuiltin_BitVec_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2915____closed__1 = _init_l___regBuiltin_BitVec_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2915____closed__1(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2915____closed__1); +l___regBuiltin_BitVec_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2915____closed__2 = _init_l___regBuiltin_BitVec_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2915____closed__2(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2915____closed__2); +l___regBuiltin_BitVec_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2915____closed__3 = _init_l___regBuiltin_BitVec_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2915____closed__3(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2915____closed__3); +l___regBuiltin_BitVec_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2915____closed__4 = _init_l___regBuiltin_BitVec_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2915____closed__4(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2915____closed__4); +l___regBuiltin_BitVec_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2915____closed__5 = _init_l___regBuiltin_BitVec_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2915____closed__5(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2915____closed__5); +l___regBuiltin_BitVec_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2915____closed__6 = _init_l___regBuiltin_BitVec_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2915____closed__6(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2915____closed__6); +l___regBuiltin_BitVec_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2915____closed__7 = _init_l___regBuiltin_BitVec_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2915____closed__7(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2915____closed__7); +l___regBuiltin_BitVec_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2915____closed__8 = _init_l___regBuiltin_BitVec_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2915____closed__8(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2915____closed__8); +l___regBuiltin_BitVec_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2915____closed__9 = _init_l___regBuiltin_BitVec_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2915____closed__9(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2915____closed__9); +l___regBuiltin_BitVec_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2915____closed__10 = _init_l___regBuiltin_BitVec_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2915____closed__10(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2915____closed__10); +if (builtin) {res = l___regBuiltin_BitVec_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2915_(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +}if (builtin) {res = l___regBuiltin_BitVec_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2917_(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +}if (builtin) {res = l___regBuiltin_BitVec_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2919_(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +}l_BitVec_reduceGT___closed__1 = _init_l_BitVec_reduceGT___closed__1(); +lean_mark_persistent(l_BitVec_reduceGT___closed__1); +l_BitVec_reduceGT___closed__2 = _init_l_BitVec_reduceGT___closed__2(); +lean_mark_persistent(l_BitVec_reduceGT___closed__2); +l_BitVec_reduceGT___closed__3 = _init_l_BitVec_reduceGT___closed__3(); +lean_mark_persistent(l_BitVec_reduceGT___closed__3); +l___regBuiltin_BitVec_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2958____closed__1 = _init_l___regBuiltin_BitVec_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2958____closed__1(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2958____closed__1); +l___regBuiltin_BitVec_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2958____closed__2 = _init_l___regBuiltin_BitVec_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2958____closed__2(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2958____closed__2); +l___regBuiltin_BitVec_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2958____closed__3 = _init_l___regBuiltin_BitVec_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2958____closed__3(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2958____closed__3); +if (builtin) {res = l___regBuiltin_BitVec_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2958_(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +}if (builtin) {res = l___regBuiltin_BitVec_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2960_(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +}if (builtin) {res = l___regBuiltin_BitVec_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_2962_(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +}l_BitVec_reduceGE___closed__1 = _init_l_BitVec_reduceGE___closed__1(); +lean_mark_persistent(l_BitVec_reduceGE___closed__1); +l_BitVec_reduceGE___closed__2 = _init_l_BitVec_reduceGE___closed__2(); +lean_mark_persistent(l_BitVec_reduceGE___closed__2); +l_BitVec_reduceGE___closed__3 = _init_l_BitVec_reduceGE___closed__3(); +lean_mark_persistent(l_BitVec_reduceGE___closed__3); +l___regBuiltin_BitVec_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3001____closed__1 = _init_l___regBuiltin_BitVec_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3001____closed__1(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3001____closed__1); +l___regBuiltin_BitVec_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3001____closed__2 = _init_l___regBuiltin_BitVec_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3001____closed__2(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3001____closed__2); +l___regBuiltin_BitVec_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3001____closed__3 = _init_l___regBuiltin_BitVec_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3001____closed__3(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3001____closed__3); +if (builtin) {res = l___regBuiltin_BitVec_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3001_(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +}if (builtin) {res = l___regBuiltin_BitVec_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3003_(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +}if (builtin) {res = l___regBuiltin_BitVec_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3005_(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +}l_BitVec_reduceULT___closed__1 = _init_l_BitVec_reduceULT___closed__1(); +lean_mark_persistent(l_BitVec_reduceULT___closed__1); +l_BitVec_reduceULT___closed__2 = _init_l_BitVec_reduceULT___closed__2(); +lean_mark_persistent(l_BitVec_reduceULT___closed__2); +l___regBuiltin_BitVec_reduceULT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3024____closed__1 = _init_l___regBuiltin_BitVec_reduceULT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3024____closed__1(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceULT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3024____closed__1); +l___regBuiltin_BitVec_reduceULT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3024____closed__2 = _init_l___regBuiltin_BitVec_reduceULT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3024____closed__2(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceULT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3024____closed__2); +l___regBuiltin_BitVec_reduceULT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3024____closed__3 = _init_l___regBuiltin_BitVec_reduceULT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3024____closed__3(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceULT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3024____closed__3); +l___regBuiltin_BitVec_reduceULT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3024____closed__4 = _init_l___regBuiltin_BitVec_reduceULT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3024____closed__4(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceULT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3024____closed__4); +l___regBuiltin_BitVec_reduceULT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3024____closed__5 = _init_l___regBuiltin_BitVec_reduceULT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3024____closed__5(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceULT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3024____closed__5); +l___regBuiltin_BitVec_reduceULT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3024____closed__6 = _init_l___regBuiltin_BitVec_reduceULT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3024____closed__6(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceULT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3024____closed__6); +l___regBuiltin_BitVec_reduceULT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3024____closed__7 = _init_l___regBuiltin_BitVec_reduceULT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3024____closed__7(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceULT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3024____closed__7); +l___regBuiltin_BitVec_reduceULT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3024____closed__8 = _init_l___regBuiltin_BitVec_reduceULT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3024____closed__8(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceULT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3024____closed__8); +if (builtin) {res = l___regBuiltin_BitVec_reduceULT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3024_(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +}if (builtin) {res = l___regBuiltin_BitVec_reduceULT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3026_(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +}if (builtin) {res = l___regBuiltin_BitVec_reduceULT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3028_(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +}l_BitVec_reduceULE___closed__1 = _init_l_BitVec_reduceULE___closed__1(); +lean_mark_persistent(l_BitVec_reduceULE___closed__1); +l_BitVec_reduceULE___closed__2 = _init_l_BitVec_reduceULE___closed__2(); +lean_mark_persistent(l_BitVec_reduceULE___closed__2); +l___regBuiltin_BitVec_reduceULE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3047____closed__1 = _init_l___regBuiltin_BitVec_reduceULE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3047____closed__1(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceULE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3047____closed__1); +l___regBuiltin_BitVec_reduceULE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3047____closed__2 = _init_l___regBuiltin_BitVec_reduceULE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3047____closed__2(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceULE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3047____closed__2); +l___regBuiltin_BitVec_reduceULE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3047____closed__3 = _init_l___regBuiltin_BitVec_reduceULE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3047____closed__3(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceULE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3047____closed__3); +l___regBuiltin_BitVec_reduceULE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3047____closed__4 = _init_l___regBuiltin_BitVec_reduceULE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3047____closed__4(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceULE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3047____closed__4); +l___regBuiltin_BitVec_reduceULE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3047____closed__5 = _init_l___regBuiltin_BitVec_reduceULE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3047____closed__5(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceULE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3047____closed__5); +l___regBuiltin_BitVec_reduceULE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3047____closed__6 = _init_l___regBuiltin_BitVec_reduceULE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3047____closed__6(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceULE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3047____closed__6); +l___regBuiltin_BitVec_reduceULE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3047____closed__7 = _init_l___regBuiltin_BitVec_reduceULE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3047____closed__7(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceULE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3047____closed__7); +l___regBuiltin_BitVec_reduceULE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3047____closed__8 = _init_l___regBuiltin_BitVec_reduceULE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3047____closed__8(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceULE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3047____closed__8); +if (builtin) {res = l___regBuiltin_BitVec_reduceULE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3047_(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +}if (builtin) {res = l___regBuiltin_BitVec_reduceULE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3049_(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +}if (builtin) {res = l___regBuiltin_BitVec_reduceULE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3051_(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +}l_BitVec_reduceSLT___closed__1 = _init_l_BitVec_reduceSLT___closed__1(); +lean_mark_persistent(l_BitVec_reduceSLT___closed__1); +l_BitVec_reduceSLT___closed__2 = _init_l_BitVec_reduceSLT___closed__2(); +lean_mark_persistent(l_BitVec_reduceSLT___closed__2); +l___regBuiltin_BitVec_reduceSLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3070____closed__1 = _init_l___regBuiltin_BitVec_reduceSLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3070____closed__1(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceSLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3070____closed__1); +l___regBuiltin_BitVec_reduceSLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3070____closed__2 = _init_l___regBuiltin_BitVec_reduceSLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3070____closed__2(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceSLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3070____closed__2); +l___regBuiltin_BitVec_reduceSLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3070____closed__3 = _init_l___regBuiltin_BitVec_reduceSLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3070____closed__3(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceSLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3070____closed__3); +l___regBuiltin_BitVec_reduceSLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3070____closed__4 = _init_l___regBuiltin_BitVec_reduceSLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3070____closed__4(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceSLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3070____closed__4); +l___regBuiltin_BitVec_reduceSLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3070____closed__5 = _init_l___regBuiltin_BitVec_reduceSLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3070____closed__5(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceSLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3070____closed__5); +l___regBuiltin_BitVec_reduceSLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3070____closed__6 = _init_l___regBuiltin_BitVec_reduceSLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3070____closed__6(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceSLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3070____closed__6); +l___regBuiltin_BitVec_reduceSLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3070____closed__7 = _init_l___regBuiltin_BitVec_reduceSLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3070____closed__7(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceSLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3070____closed__7); +l___regBuiltin_BitVec_reduceSLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3070____closed__8 = _init_l___regBuiltin_BitVec_reduceSLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3070____closed__8(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceSLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3070____closed__8); +if (builtin) {res = l___regBuiltin_BitVec_reduceSLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3070_(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +}if (builtin) {res = l___regBuiltin_BitVec_reduceSLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3072_(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +}if (builtin) {res = l___regBuiltin_BitVec_reduceSLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3074_(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +}l_BitVec_reduceSLE___closed__1 = _init_l_BitVec_reduceSLE___closed__1(); +lean_mark_persistent(l_BitVec_reduceSLE___closed__1); +l_BitVec_reduceSLE___closed__2 = _init_l_BitVec_reduceSLE___closed__2(); +lean_mark_persistent(l_BitVec_reduceSLE___closed__2); +l___regBuiltin_BitVec_reduceSLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3093____closed__1 = _init_l___regBuiltin_BitVec_reduceSLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3093____closed__1(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceSLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3093____closed__1); +l___regBuiltin_BitVec_reduceSLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3093____closed__2 = _init_l___regBuiltin_BitVec_reduceSLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3093____closed__2(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceSLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3093____closed__2); +l___regBuiltin_BitVec_reduceSLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3093____closed__3 = _init_l___regBuiltin_BitVec_reduceSLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3093____closed__3(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceSLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3093____closed__3); +l___regBuiltin_BitVec_reduceSLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3093____closed__4 = _init_l___regBuiltin_BitVec_reduceSLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3093____closed__4(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceSLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3093____closed__4); +l___regBuiltin_BitVec_reduceSLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3093____closed__5 = _init_l___regBuiltin_BitVec_reduceSLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3093____closed__5(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceSLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3093____closed__5); +l___regBuiltin_BitVec_reduceSLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3093____closed__6 = _init_l___regBuiltin_BitVec_reduceSLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3093____closed__6(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceSLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3093____closed__6); +l___regBuiltin_BitVec_reduceSLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3093____closed__7 = _init_l___regBuiltin_BitVec_reduceSLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3093____closed__7(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceSLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3093____closed__7); +l___regBuiltin_BitVec_reduceSLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3093____closed__8 = _init_l___regBuiltin_BitVec_reduceSLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3093____closed__8(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceSLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3093____closed__8); +if (builtin) {res = l___regBuiltin_BitVec_reduceSLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3093_(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +}if (builtin) {res = l___regBuiltin_BitVec_reduceSLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3095_(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +}if (builtin) {res = l___regBuiltin_BitVec_reduceSLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3097_(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +}l_BitVec_reduceZeroExtend_x27___closed__1 = _init_l_BitVec_reduceZeroExtend_x27___closed__1(); +lean_mark_persistent(l_BitVec_reduceZeroExtend_x27___closed__1); +l_BitVec_reduceZeroExtend_x27___closed__2 = _init_l_BitVec_reduceZeroExtend_x27___closed__2(); +lean_mark_persistent(l_BitVec_reduceZeroExtend_x27___closed__2); +l___regBuiltin_BitVec_reduceZeroExtend_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3266____closed__1 = _init_l___regBuiltin_BitVec_reduceZeroExtend_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3266____closed__1(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceZeroExtend_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3266____closed__1); +l___regBuiltin_BitVec_reduceZeroExtend_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3266____closed__2 = _init_l___regBuiltin_BitVec_reduceZeroExtend_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3266____closed__2(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceZeroExtend_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3266____closed__2); +l___regBuiltin_BitVec_reduceZeroExtend_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3266____closed__3 = _init_l___regBuiltin_BitVec_reduceZeroExtend_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3266____closed__3(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceZeroExtend_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3266____closed__3); +l___regBuiltin_BitVec_reduceZeroExtend_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3266____closed__4 = _init_l___regBuiltin_BitVec_reduceZeroExtend_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3266____closed__4(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceZeroExtend_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3266____closed__4); +l___regBuiltin_BitVec_reduceZeroExtend_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3266____closed__5 = _init_l___regBuiltin_BitVec_reduceZeroExtend_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3266____closed__5(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceZeroExtend_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3266____closed__5); +l___regBuiltin_BitVec_reduceZeroExtend_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3266____closed__6 = _init_l___regBuiltin_BitVec_reduceZeroExtend_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3266____closed__6(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceZeroExtend_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3266____closed__6); +l___regBuiltin_BitVec_reduceZeroExtend_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3266____closed__7 = _init_l___regBuiltin_BitVec_reduceZeroExtend_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3266____closed__7(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceZeroExtend_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3266____closed__7); +l___regBuiltin_BitVec_reduceZeroExtend_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3266____closed__8 = _init_l___regBuiltin_BitVec_reduceZeroExtend_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3266____closed__8(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceZeroExtend_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3266____closed__8); +l___regBuiltin_BitVec_reduceZeroExtend_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3266____closed__9 = _init_l___regBuiltin_BitVec_reduceZeroExtend_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3266____closed__9(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceZeroExtend_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3266____closed__9); +if (builtin) {res = l___regBuiltin_BitVec_reduceZeroExtend_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3266_(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +}if (builtin) {res = l___regBuiltin_BitVec_reduceZeroExtend_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3268_(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +}if (builtin) {res = l___regBuiltin_BitVec_reduceZeroExtend_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3270_(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +}l_BitVec_reduceShiftLeftZeroExtend___closed__1 = _init_l_BitVec_reduceShiftLeftZeroExtend___closed__1(); +lean_mark_persistent(l_BitVec_reduceShiftLeftZeroExtend___closed__1); +l_BitVec_reduceShiftLeftZeroExtend___closed__2 = _init_l_BitVec_reduceShiftLeftZeroExtend___closed__2(); +lean_mark_persistent(l_BitVec_reduceShiftLeftZeroExtend___closed__2); +l___regBuiltin_BitVec_reduceShiftLeftZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3414____closed__1 = _init_l___regBuiltin_BitVec_reduceShiftLeftZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3414____closed__1(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceShiftLeftZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3414____closed__1); +l___regBuiltin_BitVec_reduceShiftLeftZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3414____closed__2 = _init_l___regBuiltin_BitVec_reduceShiftLeftZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3414____closed__2(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceShiftLeftZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3414____closed__2); +l___regBuiltin_BitVec_reduceShiftLeftZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3414____closed__3 = _init_l___regBuiltin_BitVec_reduceShiftLeftZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3414____closed__3(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceShiftLeftZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3414____closed__3); +l___regBuiltin_BitVec_reduceShiftLeftZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3414____closed__4 = _init_l___regBuiltin_BitVec_reduceShiftLeftZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3414____closed__4(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceShiftLeftZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3414____closed__4); +l___regBuiltin_BitVec_reduceShiftLeftZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3414____closed__5 = _init_l___regBuiltin_BitVec_reduceShiftLeftZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3414____closed__5(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceShiftLeftZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3414____closed__5); +l___regBuiltin_BitVec_reduceShiftLeftZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3414____closed__6 = _init_l___regBuiltin_BitVec_reduceShiftLeftZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3414____closed__6(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceShiftLeftZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3414____closed__6); +l___regBuiltin_BitVec_reduceShiftLeftZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3414____closed__7 = _init_l___regBuiltin_BitVec_reduceShiftLeftZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3414____closed__7(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceShiftLeftZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3414____closed__7); +l___regBuiltin_BitVec_reduceShiftLeftZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3414____closed__8 = _init_l___regBuiltin_BitVec_reduceShiftLeftZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3414____closed__8(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceShiftLeftZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3414____closed__8); +if (builtin) {res = l___regBuiltin_BitVec_reduceShiftLeftZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3414_(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +}if (builtin) {res = l___regBuiltin_BitVec_reduceShiftLeftZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3416_(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +}if (builtin) {res = l___regBuiltin_BitVec_reduceShiftLeftZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3418_(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +}l_BitVec_reduceExtracLsb_x27___closed__1 = _init_l_BitVec_reduceExtracLsb_x27___closed__1(); +lean_mark_persistent(l_BitVec_reduceExtracLsb_x27___closed__1); +l_BitVec_reduceExtracLsb_x27___closed__2 = _init_l_BitVec_reduceExtracLsb_x27___closed__2(); +lean_mark_persistent(l_BitVec_reduceExtracLsb_x27___closed__2); +l___regBuiltin_BitVec_reduceExtracLsb_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3600____closed__1 = _init_l___regBuiltin_BitVec_reduceExtracLsb_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3600____closed__1(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceExtracLsb_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3600____closed__1); +l___regBuiltin_BitVec_reduceExtracLsb_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3600____closed__2 = _init_l___regBuiltin_BitVec_reduceExtracLsb_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3600____closed__2(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceExtracLsb_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3600____closed__2); +l___regBuiltin_BitVec_reduceExtracLsb_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3600____closed__3 = _init_l___regBuiltin_BitVec_reduceExtracLsb_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3600____closed__3(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceExtracLsb_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3600____closed__3); +l___regBuiltin_BitVec_reduceExtracLsb_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3600____closed__4 = _init_l___regBuiltin_BitVec_reduceExtracLsb_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3600____closed__4(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceExtracLsb_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3600____closed__4); +l___regBuiltin_BitVec_reduceExtracLsb_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3600____closed__5 = _init_l___regBuiltin_BitVec_reduceExtracLsb_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3600____closed__5(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceExtracLsb_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3600____closed__5); +l___regBuiltin_BitVec_reduceExtracLsb_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3600____closed__6 = _init_l___regBuiltin_BitVec_reduceExtracLsb_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3600____closed__6(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceExtracLsb_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3600____closed__6); +l___regBuiltin_BitVec_reduceExtracLsb_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3600____closed__7 = _init_l___regBuiltin_BitVec_reduceExtracLsb_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3600____closed__7(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceExtracLsb_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3600____closed__7); +l___regBuiltin_BitVec_reduceExtracLsb_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3600____closed__8 = _init_l___regBuiltin_BitVec_reduceExtracLsb_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3600____closed__8(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceExtracLsb_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3600____closed__8); +l___regBuiltin_BitVec_reduceExtracLsb_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3600____closed__9 = _init_l___regBuiltin_BitVec_reduceExtracLsb_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3600____closed__9(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceExtracLsb_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3600____closed__9); +if (builtin) {res = l___regBuiltin_BitVec_reduceExtracLsb_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3600_(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +}if (builtin) {res = l___regBuiltin_BitVec_reduceExtracLsb_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3602_(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +}if (builtin) {res = l___regBuiltin_BitVec_reduceExtracLsb_x27_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3604_(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +}l_BitVec_reduceReplicate___closed__1 = _init_l_BitVec_reduceReplicate___closed__1(); +lean_mark_persistent(l_BitVec_reduceReplicate___closed__1); +l_BitVec_reduceReplicate___closed__2 = _init_l_BitVec_reduceReplicate___closed__2(); +lean_mark_persistent(l_BitVec_reduceReplicate___closed__2); +l___regBuiltin_BitVec_reduceReplicate_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3748____closed__1 = _init_l___regBuiltin_BitVec_reduceReplicate_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3748____closed__1(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceReplicate_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3748____closed__1); +l___regBuiltin_BitVec_reduceReplicate_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3748____closed__2 = _init_l___regBuiltin_BitVec_reduceReplicate_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3748____closed__2(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceReplicate_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3748____closed__2); +l___regBuiltin_BitVec_reduceReplicate_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3748____closed__3 = _init_l___regBuiltin_BitVec_reduceReplicate_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3748____closed__3(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceReplicate_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3748____closed__3); +l___regBuiltin_BitVec_reduceReplicate_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3748____closed__4 = _init_l___regBuiltin_BitVec_reduceReplicate_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3748____closed__4(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceReplicate_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3748____closed__4); +l___regBuiltin_BitVec_reduceReplicate_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3748____closed__5 = _init_l___regBuiltin_BitVec_reduceReplicate_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3748____closed__5(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceReplicate_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3748____closed__5); +l___regBuiltin_BitVec_reduceReplicate_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3748____closed__6 = _init_l___regBuiltin_BitVec_reduceReplicate_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3748____closed__6(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceReplicate_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3748____closed__6); +l___regBuiltin_BitVec_reduceReplicate_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3748____closed__7 = _init_l___regBuiltin_BitVec_reduceReplicate_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3748____closed__7(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceReplicate_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3748____closed__7); +l___regBuiltin_BitVec_reduceReplicate_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3748____closed__8 = _init_l___regBuiltin_BitVec_reduceReplicate_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3748____closed__8(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceReplicate_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3748____closed__8); +if (builtin) {res = l___regBuiltin_BitVec_reduceReplicate_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3748_(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +}if (builtin) {res = l___regBuiltin_BitVec_reduceReplicate_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3750_(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +}if (builtin) {res = l___regBuiltin_BitVec_reduceReplicate_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3752_(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +}l_BitVec_reduceZeroExtend___closed__1 = _init_l_BitVec_reduceZeroExtend___closed__1(); +lean_mark_persistent(l_BitVec_reduceZeroExtend___closed__1); +l_BitVec_reduceZeroExtend___closed__2 = _init_l_BitVec_reduceZeroExtend___closed__2(); +lean_mark_persistent(l_BitVec_reduceZeroExtend___closed__2); +l___regBuiltin_BitVec_reduceZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3769____closed__1 = _init_l___regBuiltin_BitVec_reduceZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3769____closed__1(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3769____closed__1); +l___regBuiltin_BitVec_reduceZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3769____closed__2 = _init_l___regBuiltin_BitVec_reduceZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3769____closed__2(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3769____closed__2); +l___regBuiltin_BitVec_reduceZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3769____closed__3 = _init_l___regBuiltin_BitVec_reduceZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3769____closed__3(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3769____closed__3); +l___regBuiltin_BitVec_reduceZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3769____closed__4 = _init_l___regBuiltin_BitVec_reduceZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3769____closed__4(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3769____closed__4); +l___regBuiltin_BitVec_reduceZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3769____closed__5 = _init_l___regBuiltin_BitVec_reduceZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3769____closed__5(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3769____closed__5); +l___regBuiltin_BitVec_reduceZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3769____closed__6 = _init_l___regBuiltin_BitVec_reduceZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3769____closed__6(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3769____closed__6); +l___regBuiltin_BitVec_reduceZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3769____closed__7 = _init_l___regBuiltin_BitVec_reduceZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3769____closed__7(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3769____closed__7); +l___regBuiltin_BitVec_reduceZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3769____closed__8 = _init_l___regBuiltin_BitVec_reduceZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3769____closed__8(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3769____closed__8); +if (builtin) {res = l___regBuiltin_BitVec_reduceZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3769_(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +}if (builtin) {res = l___regBuiltin_BitVec_reduceZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3771_(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +}if (builtin) {res = l___regBuiltin_BitVec_reduceZeroExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3773_(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +}l_BitVec_reduceSignExtend___closed__1 = _init_l_BitVec_reduceSignExtend___closed__1(); +lean_mark_persistent(l_BitVec_reduceSignExtend___closed__1); +l_BitVec_reduceSignExtend___closed__2 = _init_l_BitVec_reduceSignExtend___closed__2(); +lean_mark_persistent(l_BitVec_reduceSignExtend___closed__2); +l___regBuiltin_BitVec_reduceSignExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3790____closed__1 = _init_l___regBuiltin_BitVec_reduceSignExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3790____closed__1(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceSignExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3790____closed__1); +l___regBuiltin_BitVec_reduceSignExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3790____closed__2 = _init_l___regBuiltin_BitVec_reduceSignExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3790____closed__2(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceSignExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3790____closed__2); +l___regBuiltin_BitVec_reduceSignExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3790____closed__3 = _init_l___regBuiltin_BitVec_reduceSignExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3790____closed__3(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceSignExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3790____closed__3); +l___regBuiltin_BitVec_reduceSignExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3790____closed__4 = _init_l___regBuiltin_BitVec_reduceSignExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3790____closed__4(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceSignExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3790____closed__4); +l___regBuiltin_BitVec_reduceSignExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3790____closed__5 = _init_l___regBuiltin_BitVec_reduceSignExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3790____closed__5(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceSignExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3790____closed__5); +l___regBuiltin_BitVec_reduceSignExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3790____closed__6 = _init_l___regBuiltin_BitVec_reduceSignExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3790____closed__6(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceSignExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3790____closed__6); +l___regBuiltin_BitVec_reduceSignExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3790____closed__7 = _init_l___regBuiltin_BitVec_reduceSignExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3790____closed__7(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceSignExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3790____closed__7); +l___regBuiltin_BitVec_reduceSignExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3790____closed__8 = _init_l___regBuiltin_BitVec_reduceSignExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3790____closed__8(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceSignExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3790____closed__8); +if (builtin) {res = l___regBuiltin_BitVec_reduceSignExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3790_(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +}if (builtin) {res = l___regBuiltin_BitVec_reduceSignExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3792_(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +}if (builtin) {res = l___regBuiltin_BitVec_reduceSignExtend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3794_(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +}l_BitVec_reduceAllOnes___closed__1 = _init_l_BitVec_reduceAllOnes___closed__1(); +lean_mark_persistent(l_BitVec_reduceAllOnes___closed__1); +l_BitVec_reduceAllOnes___closed__2 = _init_l_BitVec_reduceAllOnes___closed__2(); +lean_mark_persistent(l_BitVec_reduceAllOnes___closed__2); +l___regBuiltin_BitVec_reduceAllOnes_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3901____closed__1 = _init_l___regBuiltin_BitVec_reduceAllOnes_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3901____closed__1(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceAllOnes_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3901____closed__1); +l___regBuiltin_BitVec_reduceAllOnes_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3901____closed__2 = _init_l___regBuiltin_BitVec_reduceAllOnes_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3901____closed__2(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceAllOnes_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3901____closed__2); +l___regBuiltin_BitVec_reduceAllOnes_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3901____closed__3 = _init_l___regBuiltin_BitVec_reduceAllOnes_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3901____closed__3(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceAllOnes_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3901____closed__3); +l___regBuiltin_BitVec_reduceAllOnes_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3901____closed__4 = _init_l___regBuiltin_BitVec_reduceAllOnes_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3901____closed__4(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceAllOnes_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3901____closed__4); +l___regBuiltin_BitVec_reduceAllOnes_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3901____closed__5 = _init_l___regBuiltin_BitVec_reduceAllOnes_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3901____closed__5(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceAllOnes_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3901____closed__5); +l___regBuiltin_BitVec_reduceAllOnes_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3901____closed__6 = _init_l___regBuiltin_BitVec_reduceAllOnes_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3901____closed__6(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceAllOnes_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3901____closed__6); +l___regBuiltin_BitVec_reduceAllOnes_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3901____closed__7 = _init_l___regBuiltin_BitVec_reduceAllOnes_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3901____closed__7(); +lean_mark_persistent(l___regBuiltin_BitVec_reduceAllOnes_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3901____closed__7); +if (builtin) {res = l___regBuiltin_BitVec_reduceAllOnes_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3901_(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +}if (builtin) {res = l___regBuiltin_BitVec_reduceAllOnes_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3903_(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +}if (builtin) {res = l___regBuiltin_BitVec_reduceAllOnes_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_BitVec___hyg_3905_(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)); diff --git a/stage0/stdlib/Lean/Meta/Tactic/Simp/BuiltinSimprocs/Char.c b/stage0/stdlib/Lean/Meta/Tactic/Simp/BuiltinSimprocs/Char.c index 4cdcea0aed..a5156f59af 100644 --- a/stage0/stdlib/Lean/Meta/Tactic/Simp/BuiltinSimprocs/Char.c +++ b/stage0/stdlib/Lean/Meta/Tactic/Simp/BuiltinSimprocs/Char.c @@ -1,6 +1,6 @@ // Lean compiler output // Module: Lean.Meta.Tactic.Simp.BuiltinSimprocs.Char -// Imports: Init Lean.ToExpr Lean.Meta.Tactic.Simp.BuiltinSimprocs.UInt +// Imports: Lean.ToExpr Lean.Meta.LitValues Lean.Meta.Tactic.Simp.BuiltinSimprocs.UInt #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -13,116 +13,125 @@ #ifdef __cplusplus extern "C" { #endif -static lean_object* l___regBuiltin_Char_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_861____closed__4; static lean_object* l_Char_reduceIsAlphaNum___closed__2; lean_object* l_Lean_Expr_const___override(lean_object*, lean_object*); static lean_object* l_Char_reduceBoolPred___lambda__1___closed__3; static lean_object* l_Char_reduceDefault___closed__3; +static lean_object* l___regBuiltin_Char_reduceIsAlpha_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_527____closed__2; +LEAN_EXPORT lean_object* l___regBuiltin_Char_reduceOfNatAux_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1059_(lean_object*); LEAN_EXPORT lean_object* l_Char_reduceIsAlpha___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_Char_reduceToUpper_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_475____closed__6; -static lean_object* l___regBuiltin_Char_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_780____closed__1; +LEAN_EXPORT lean_object* l___regBuiltin_Char_reduceIsUpper_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_493_(lean_object*); +static lean_object* l___regBuiltin_Char_reduceToString_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_588____closed__3; LEAN_EXPORT lean_object* l_Char_reduceBNe___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_Char_reduceIsDigit___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___regBuiltin_Char_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_901____closed__5; LEAN_EXPORT lean_object* l_Char_reduceIsLower___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_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_456____closed__6; LEAN_EXPORT lean_object* l_Char_reduceToLower___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_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_460_(lean_object*); +static lean_object* l___regBuiltin_Char_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_818____closed__7; +LEAN_EXPORT lean_object* l___regBuiltin_Char_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_820_(lean_object*); static lean_object* l_Char_reduceToUpper___closed__2; -static lean_object* l___regBuiltin_Char_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_861____closed__9; lean_object* l_Lean_mkNatLit(lean_object*); -static lean_object* l___regBuiltin_Char_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_990____closed__5; +static lean_object* l___regBuiltin_Char_reduceToString_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_588____closed__4; LEAN_EXPORT lean_object* l_Char_reduceVal(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Char_reduceIsDigit___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_Char_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_820____closed__10; -LEAN_EXPORT lean_object* l___regBuiltin_Char_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_494_(lean_object*); -static lean_object* l___regBuiltin_Char_reduceIsWhitespace_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_513____closed__3; +static lean_object* l___regBuiltin_Char_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_818____closed__4; +lean_object* l_Lean_Meta_getCharValue_x3f(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_mk_empty_array_with_capacity(lean_object*); +static lean_object* l___regBuiltin_Char_reduceDefault_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1136____closed__2; LEAN_EXPORT lean_object* l_Char_reduceToNat___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_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_456____closed__4; +static lean_object* l___regBuiltin_Char_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_858____closed__5; +LEAN_EXPORT lean_object* l___regBuiltin_Char_reduceIsDigit_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_550_(lean_object*); LEAN_EXPORT lean_object* l_Char_reduceOfNatAux(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___regBuiltin_Char_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_861____closed__7; -static lean_object* l___regBuiltin_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_456____closed__1; +static lean_object* l___regBuiltin_Char_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_947____closed__5; +static lean_object* l___regBuiltin_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_413____closed__6; LEAN_EXPORT lean_object* l_Char_isValue___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___regBuiltin_Char_reduceDefault_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1179_(lean_object*); lean_object* lean_uint32_to_nat(uint32_t); -static lean_object* l___regBuiltin_Char_reduceIsDigit_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_589____closed__3; -static lean_object* l___regBuiltin_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_456____closed__5; +static lean_object* l___regBuiltin_Char_reduceOfNatAux_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1059____closed__7; +lean_object* l_Lean_Meta_getNatValue_x3f(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___regBuiltin_Char_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_451_(lean_object*); +LEAN_EXPORT lean_object* l___regBuiltin_Char_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_947_(lean_object*); LEAN_EXPORT lean_object* l_Char_reduceBoolPred___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___regBuiltin_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_417_(lean_object*); LEAN_EXPORT lean_object* l_Char_reduceIsDigit(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___regBuiltin_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_458____closed__1; +LEAN_EXPORT lean_object* l___regBuiltin_Char_reduceIsLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_512_(lean_object*); +static lean_object* l___regBuiltin_Char_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_818____closed__2; +static lean_object* l___regBuiltin_Char_reduceVal_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_696____closed__5; LEAN_EXPORT lean_object* l_Char_reduceUnary(lean_object*); -static lean_object* l___regBuiltin_Char_reduceIsUpper_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_532____closed__6; +static lean_object* l___regBuiltin_Char_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_451____closed__5; +static lean_object* l___regBuiltin_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_413____closed__2; +static lean_object* l___regBuiltin_Char_reduceIsAlphaNum_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_565____closed__6; LEAN_EXPORT lean_object* l_Char_reduceIsLower___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___regBuiltin_Char_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_780____closed__4; +LEAN_EXPORT lean_object* l___regBuiltin_Char_reduceToString_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_590_(lean_object*); +static lean_object* l_Char_reduceVal___lambda__1___closed__4; +static lean_object* l___regBuiltin_Char_reduceIsLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_508____closed__3; LEAN_EXPORT lean_object* l_Char_reduceToUpper___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___regBuiltin_Char_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_784_(lean_object*); -static lean_object* l___regBuiltin_Char_reduceIsAlpha_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_570____closed__6; +static lean_object* l___regBuiltin_Char_reduceToString_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_588____closed__6; uint8_t l_Lean_Expr_isAppOfArity(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Char_reduceToNat___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___regBuiltin_Char_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_901____closed__2; -static lean_object* l___regBuiltin_Char_reduceToString_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_631____closed__3; -static lean_object* l___regBuiltin_Char_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_820____closed__1; -LEAN_EXPORT lean_object* l___regBuiltin_Char_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_992_(lean_object*); -static lean_object* l___regBuiltin_Char_reduceToString_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_631____closed__2; +static lean_object* l___regBuiltin_Char_reduceIsUpper_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_489____closed__1; static lean_object* l_Char_reduceToString___lambda__1___closed__1; lean_object* lean_array_push(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___regBuiltin_Char_reduceToString_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_635_(lean_object*); -static lean_object* l___regBuiltin_Char_reduceVal_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_739____closed__2; -LEAN_EXPORT lean_object* l___regBuiltin_Char_reduceToUpper_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_477_(lean_object*); -static lean_object* l___regBuiltin_Char_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_990____closed__3; -static lean_object* l___regBuiltin_Char_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_901____closed__1; -static lean_object* l___regBuiltin_Char_reduceToString_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_631____closed__1; -static lean_object* l___regBuiltin_Char_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_780____closed__2; -LEAN_EXPORT lean_object* l___regBuiltin_Char_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_498_(lean_object*); -static lean_object* l___regBuiltin_Char_reduceIsDigit_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_589____closed__2; -LEAN_EXPORT lean_object* l___regBuiltin_Char_reduceIsAlphaNum_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_610_(lean_object*); +static lean_object* l___regBuiltin_Char_reduceVal_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_696____closed__4; +static lean_object* l___regBuiltin_Char_reduceIsUpper_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_489____closed__2; +static lean_object* l___regBuiltin_Char_reduceToString_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_588____closed__11; +static lean_object* l___regBuiltin_Char_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_777____closed__3; +static lean_object* l___regBuiltin_Char_reduceIsLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_508____closed__5; +LEAN_EXPORT lean_object* l___regBuiltin_Char_reduceOfNatAux_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1061_(lean_object*); +LEAN_EXPORT lean_object* l___regBuiltin_Char_reduceIsDigit_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_546_(lean_object*); +LEAN_EXPORT lean_object* l___regBuiltin_Char_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_818_(lean_object*); LEAN_EXPORT lean_object* l_Char_reduceBEq(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Char_reduceIsDigit___closed__2; LEAN_EXPORT lean_object* l_Char_reduceEq(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Char_fromExpr_x3f(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___regBuiltin_Char_reduceIsUpper_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_532____closed__2; -LEAN_EXPORT lean_object* l___regBuiltin_Char_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_901_(lean_object*); -static lean_object* l___regBuiltin_Char_reduceOfNatAux_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1102____closed__3; -lean_object* l_UInt32_toExprCore(uint32_t); -LEAN_EXPORT lean_object* l___regBuiltin_Char_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_496_(lean_object*); -static lean_object* l___regBuiltin_Char_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_494____closed__3; +LEAN_EXPORT lean_object* l___regBuiltin_Char_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_455_(lean_object*); +static lean_object* l___regBuiltin_Char_reduceToString_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_588____closed__8; +static lean_object* l___regBuiltin_Char_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_777____closed__2; +static lean_object* l_Char_reduceVal___lambda__1___closed__10; uint8_t l_Char_isAlpha(uint32_t); static lean_object* l_Char_reduceBEq___closed__3; -static lean_object* l___regBuiltin_Char_reduceToUpper_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_475____closed__1; +LEAN_EXPORT lean_object* l___regBuiltin_Char_reduceDefault_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1140_(lean_object*); +static lean_object* l___regBuiltin_Char_reduceIsUpper_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_489____closed__5; lean_object* l_Lean_Meta_Simp_evalPropStep(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___regBuiltin_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_456____closed__2; -LEAN_EXPORT lean_object* l___regBuiltin_Char_reduceToUpper_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_479_(lean_object*); +static lean_object* l___regBuiltin_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_417____closed__1; +static lean_object* l___regBuiltin_Char_reduceIsAlphaNum_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_565____closed__5; +static lean_object* l___regBuiltin_Char_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_777____closed__11; LEAN_EXPORT lean_object* l_Char_reduceIsWhitespace___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_Char_reduceVal_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_739____closed__6; +static lean_object* l___regBuiltin_Char_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_947____closed__4; +static lean_object* l___regBuiltin_Char_reduceIsDigit_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_546____closed__3; +static lean_object* l___regBuiltin_Char_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_777____closed__8; static lean_object* l_Char_reduceIsUpper___closed__1; +static lean_object* l___regBuiltin_Char_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_858____closed__4; LEAN_EXPORT lean_object* l_Char_reduceIsWhitespace(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Char_reduceIsUpper___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_Char_fromExpr_x3f___closed__3; -static lean_object* l___regBuiltin_Char_reduceIsWhitespace_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_513____closed__6; -static lean_object* l___regBuiltin_Char_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_861____closed__2; -static lean_object* l___regBuiltin_Char_reduceToString_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_631____closed__9; -static lean_object* l___regBuiltin_Char_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_901____closed__9; -LEAN_EXPORT lean_object* l___regBuiltin_Char_reduceIsDigit_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_589_(lean_object*); -static lean_object* l___regBuiltin_Char_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_901____closed__7; +static lean_object* l___regBuiltin_Char_reduceToUpper_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_432____closed__6; +static lean_object* l___regBuiltin_Char_reduceVal_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_696____closed__6; +static lean_object* l___regBuiltin_Char_reduceIsDigit_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_546____closed__1; +static lean_object* l___regBuiltin_Char_reduceIsAlphaNum_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_565____closed__4; static lean_object* l_Char_reduceToNat___closed__1; +LEAN_EXPORT lean_object* l___regBuiltin_Char_reduceIsLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_508_(lean_object*); lean_object* lean_string_push(lean_object*, uint32_t); +lean_object* l_Lean_Level_ofNat(lean_object*); +static lean_object* l___regBuiltin_Char_reduceToUpper_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_432____closed__1; lean_object* l_Lean_Expr_appArg_x21(lean_object*); -LEAN_EXPORT lean_object* l___regBuiltin_Char_reduceOfNatAux_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1104_(lean_object*); LEAN_EXPORT lean_object* l_Char_reduceIsDigit___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_Char_reduceToString_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_631____closed__5; -static lean_object* l___regBuiltin_Char_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_820____closed__3; +static lean_object* l___regBuiltin_Char_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_451____closed__3; +static lean_object* l_Char_reduceVal___lambda__1___closed__8; static lean_object* l_Char_reduceToString___closed__2; +static lean_object* l___regBuiltin_Char_reduceToUpper_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_432____closed__5; +static lean_object* l___regBuiltin_Char_reduceIsAlpha_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_527____closed__5; LEAN_EXPORT lean_object* l_Char_reduceBEq___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_Char_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_818____closed__8; +LEAN_EXPORT lean_object* l___regBuiltin_Char_reduceIsUpper_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_489_(lean_object*); static lean_object* l_Char_reduceToUpper___closed__1; -LEAN_EXPORT lean_object* l___regBuiltin_Char_reduceIsUpper_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_534_(lean_object*); +LEAN_EXPORT lean_object* l___regBuiltin_Char_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_949_(lean_object*); static lean_object* l_Char_reduceOfNatAux___closed__2; static lean_object* l_Char_reduceToLower___lambda__1___closed__1; +static lean_object* l___regBuiltin_Char_reduceIsWhitespace_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_470____closed__5; LEAN_EXPORT lean_object* l_Char_reduceBNe___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_Char_reduceToString_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_631____closed__6; -static lean_object* l___regBuiltin_Char_reduceVal_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_739____closed__4; +static lean_object* l___regBuiltin_Char_reduceDefault_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1136____closed__4; +static lean_object* l___regBuiltin_Char_reduceIsUpper_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_489____closed__4; +static lean_object* l___regBuiltin_Char_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_737____closed__7; lean_object* l_Lean_mkStrLit(lean_object*); -LEAN_EXPORT lean_object* l___regBuiltin_Char_reduceIsAlpha_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_572_(lean_object*); +static lean_object* l___regBuiltin_Char_reduceOfNatAux_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1059____closed__1; LEAN_EXPORT lean_object* l_Char_reduceIsAlpha___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* l_Char_toLower(uint32_t); uint8_t l_instDecidableNot___rarg(uint8_t); @@ -130,421 +139,256 @@ LEAN_EXPORT lean_object* l_Char_isValue___lambda__1___boxed(lean_object*, lean_o static lean_object* l_Char_reduceBoolPred___lambda__1___closed__6; extern lean_object* l_Lean_Meta_Simp_builtinSimprocsRef; LEAN_EXPORT lean_object* l_Char_reduceToLower___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_Char_reduceDefault_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1179____closed__7; -static lean_object* l___regBuiltin_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_456____closed__3; -static lean_object* l___regBuiltin_Char_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_861____closed__3; +static lean_object* l___regBuiltin_Char_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_858____closed__2; +static lean_object* l___regBuiltin_Char_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_818____closed__6; uint8_t l_Char_isAlphanum(uint32_t); uint8_t l_Char_isWhitespace(uint32_t); -static lean_object* l___regBuiltin_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_460____closed__1; +static lean_object* l___regBuiltin_Char_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_451____closed__2; lean_object* l_Char_toUpper(uint32_t); -static lean_object* l___regBuiltin_Char_reduceIsAlpha_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_570____closed__5; -static lean_object* l___regBuiltin_Char_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_780____closed__7; -static lean_object* l___regBuiltin_Char_reduceIsLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_551____closed__5; -static lean_object* l___regBuiltin_Char_reduceIsWhitespace_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_513____closed__2; +static lean_object* l___regBuiltin_Char_reduceIsLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_508____closed__2; +LEAN_EXPORT lean_object* l___regBuiltin_Char_reduceVal_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_700_(lean_object*); +static lean_object* l___regBuiltin_Char_reduceIsLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_508____closed__6; +static lean_object* l___regBuiltin_Char_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_737____closed__4; +static lean_object* l___regBuiltin_Char_reduceIsWhitespace_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_470____closed__2; static lean_object* l_Char_reduceBoolPred___lambda__1___closed__8; static lean_object* l_Char_reduceDefault___lambda__1___closed__4; -LEAN_EXPORT lean_object* l___regBuiltin_Char_reduceIsLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_553_(lean_object*); +static lean_object* l___regBuiltin_Char_reduceIsAlphaNum_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_565____closed__1; static lean_object* l_Char_reduceBEq___closed__2; +static lean_object* l_Char_reduceToLower___lambda__1___closed__3; +LEAN_EXPORT lean_object* l___regBuiltin_Char_reduceIsUpper_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_491_(lean_object*); LEAN_EXPORT lean_object* l_Char_reduceIsWhitespace___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___regBuiltin_Char_reduceIsAlpha_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_570____closed__2; +static lean_object* l___regBuiltin_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_413____closed__7; LEAN_EXPORT lean_object* l_Char_reduceNe(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___regBuiltin_Char_reduceToString_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_631____closed__11; -LEAN_EXPORT lean_object* l___regBuiltin_Char_reduceToString_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_631_(lean_object*); +LEAN_EXPORT lean_object* l___regBuiltin_Char_reduceVal_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_698_(lean_object*); static lean_object* l_Char_reduceIsAlpha___closed__1; -static lean_object* l___regBuiltin_Char_reduceIsAlphaNum_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_608____closed__1; +static lean_object* l___regBuiltin_Char_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_451____closed__4; +static lean_object* l___regBuiltin_Char_reduceToString_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_588____closed__7; static lean_object* l_Char_reduceToLower___closed__2; +LEAN_EXPORT lean_object* l___regBuiltin_Char_reduceIsAlpha_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_531_(lean_object*); LEAN_EXPORT lean_object* l_Char_reduceToNat___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___regBuiltin_Char_reduceIsDigit_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_593_(lean_object*); -static lean_object* l___regBuiltin_Char_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_494____closed__5; +LEAN_EXPORT lean_object* l___regBuiltin_Char_reduceToString_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_588_(lean_object*); +static lean_object* l___regBuiltin_Char_reduceOfNatAux_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1059____closed__3; static lean_object* l_Char_reduceVal___closed__1; -LEAN_EXPORT lean_object* l___regBuiltin_Char_reduceIsWhitespace_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_517_(lean_object*); -static lean_object* l___regBuiltin_Char_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_820____closed__8; LEAN_EXPORT lean_object* l_Char_reduceIsUpper(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___regBuiltin_Char_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_494____closed__2; -static lean_object* l___regBuiltin_Char_reduceDefault_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1179____closed__2; -static lean_object* l___regBuiltin_Char_reduceIsLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_551____closed__4; -LEAN_EXPORT lean_object* l___regBuiltin_Char_reduceOfNatAux_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1102_(lean_object*); +static lean_object* l___regBuiltin_Char_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_737____closed__6; +LEAN_EXPORT lean_object* l___regBuiltin_Char_reduceToString_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_592_(lean_object*); +static lean_object* l_Char_reduceVal___lambda__1___closed__7; +static lean_object* l___regBuiltin_Char_reduceIsAlphaNum_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_565____closed__3; +static lean_object* l___regBuiltin_Char_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_818____closed__1; +static lean_object* l___regBuiltin_Char_reduceIsAlpha_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_527____closed__1; +static lean_object* l___regBuiltin_Char_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_777____closed__1; +LEAN_EXPORT lean_object* l___regBuiltin_Char_reduceIsAlpha_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_527_(lean_object*); static lean_object* l_Char_reduceToString___closed__3; static lean_object* l_Char_reduceNe___closed__2; +LEAN_EXPORT lean_object* l___regBuiltin_Char_reduceDefault_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1138_(lean_object*); static lean_object* l_Char_reduceBoolPred___lambda__1___closed__7; LEAN_EXPORT lean_object* l_Char_reduceBEq___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_Char_reduceToString_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_588____closed__1; +static lean_object* l___regBuiltin_Char_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_777____closed__9; +static lean_object* l___regBuiltin_Char_reduceOfNatAux_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1059____closed__8; static lean_object* l_Char_reduceToNat___closed__2; -static lean_object* l___regBuiltin_Char_reduceIsAlpha_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_570____closed__3; -static lean_object* l___regBuiltin_Char_reduceOfNatAux_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1102____closed__2; +LEAN_EXPORT lean_object* l___regBuiltin_Char_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_860_(lean_object*); +LEAN_EXPORT lean_object* l___regBuiltin_Char_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_781_(lean_object*); +static lean_object* l___regBuiltin_Char_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_947____closed__1; +static lean_object* l___regBuiltin_Char_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_737____closed__8; static lean_object* l_Char_reduceDefault___closed__1; -LEAN_EXPORT lean_object* l___regBuiltin_Char_reduceIsAlpha_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_570_(lean_object*); +LEAN_EXPORT lean_object* l___regBuiltin_Char_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_951_(lean_object*); LEAN_EXPORT lean_object* l_Char_reduceIsAlphaNum___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_Char_reduceToUpper_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_475____closed__2; +static lean_object* l___regBuiltin_Char_reduceToUpper_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_432____closed__2; static lean_object* l_Char_reduceUnary___rarg___lambda__1___closed__1; LEAN_EXPORT lean_object* l_Char_reduceIsAlpha(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___regBuiltin_Char_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_990____closed__1; LEAN_EXPORT lean_object* l_Char_reduceDefault___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_Char_reduceDefault___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_Char_reduceIsAlphaNum_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_608_(lean_object*); LEAN_EXPORT lean_object* l_Char_reduceEq___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_Char_reduceEq___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_Char_reduceVal_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_696____closed__3; +static lean_object* l___regBuiltin_Char_reduceIsAlphaNum_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_565____closed__2; +static lean_object* l___regBuiltin_Char_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_737____closed__3; static lean_object* l_Char_reduceBoolPred___lambda__1___closed__1; -static lean_object* l___regBuiltin_Char_reduceIsUpper_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_532____closed__3; -static lean_object* l___regBuiltin_Char_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_494____closed__4; -static lean_object* l_Char_fromExpr_x3f___closed__1; lean_object* l_Lean_Name_str___override(lean_object*, lean_object*); +static lean_object* l___regBuiltin_Char_reduceOfNatAux_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1059____closed__2; static lean_object* l_Char_reduceDefault___lambda__1___closed__1; LEAN_EXPORT lean_object* l_Char_reduceToNat(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___regBuiltin_Char_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_865_(lean_object*); -LEAN_EXPORT lean_object* l___regBuiltin_Char_reduceIsUpper_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_536_(lean_object*); +static lean_object* l___regBuiltin_Char_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_737____closed__2; +static lean_object* l___regBuiltin_Char_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_777____closed__7; +static lean_object* l___regBuiltin_Char_reduceDefault_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1136____closed__5; +LEAN_EXPORT lean_object* l___regBuiltin_Char_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_739_(lean_object*); LEAN_EXPORT lean_object* l_Char_reduceIsWhitespace___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_Char_reduceOfNatAux_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1102____closed__1; +static lean_object* l_Char_reduceVal___lambda__1___closed__5; LEAN_EXPORT lean_object* l_Char_reduceIsLower(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___regBuiltin_Char_reduceOfNatAux_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1102____closed__4; -static lean_object* l___regBuiltin_Char_reduceIsWhitespace_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_513____closed__5; LEAN_EXPORT lean_object* l_Char_reduceIsUpper___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_Char_reduceDefault_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1179____closed__3; +static lean_object* l___regBuiltin_Char_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_777____closed__12; +static lean_object* l___regBuiltin_Char_reduceToUpper_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_432____closed__3; LEAN_EXPORT lean_object* l_Char_reduceIsAlphaNum___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_Char_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_901____closed__8; +static lean_object* l_Char_reduceVal___lambda__1___closed__9; static lean_object* l_Char_reduceNe___closed__1; -LEAN_EXPORT lean_object* l___regBuiltin_Char_reduceToString_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_633_(lean_object*); -LEAN_EXPORT lean_object* l___regBuiltin_Char_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_863_(lean_object*); lean_object* l_Lean_Expr_appFn_x21(lean_object*); -static lean_object* l___regBuiltin_Char_reduceToUpper_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_475____closed__3; -LEAN_EXPORT lean_object* l___regBuiltin_Char_reduceIsDigit_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_591_(lean_object*); -LEAN_EXPORT lean_object* l___regBuiltin_Char_reduceToUpper_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_475_(lean_object*); +static lean_object* l___regBuiltin_Char_reduceToString_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_588____closed__5; +LEAN_EXPORT lean_object* l___regBuiltin_Char_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_741_(lean_object*); LEAN_EXPORT lean_object* l_Char_reduceBNe(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___regBuiltin_Char_reduceVal_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_739____closed__1; -static lean_object* l___regBuiltin_Char_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_820____closed__12; -LEAN_EXPORT lean_object* l___regBuiltin_Char_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_822_(lean_object*); -static lean_object* l___regBuiltin_Char_reduceIsDigit_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_589____closed__4; -static lean_object* l___regBuiltin_Char_reduceIsAlpha_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_570____closed__4; -static lean_object* l___regBuiltin_Char_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_990____closed__6; +static lean_object* l___regBuiltin_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_413____closed__3; +static lean_object* l___regBuiltin_Char_reduceIsWhitespace_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_470____closed__3; +static lean_object* l_Char_reduceVal___lambda__1___closed__11; +static lean_object* l___regBuiltin_Char_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_858____closed__1; +LEAN_EXPORT lean_object* l___regBuiltin_Char_reduceIsLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_510_(lean_object*); +static lean_object* l_Char_reduceVal___lambda__1___closed__2; static lean_object* l_Char_reduceIsUpper___closed__2; -LEAN_EXPORT lean_object* l___regBuiltin_Char_reduceIsWhitespace_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_513_(lean_object*); +LEAN_EXPORT lean_object* l___regBuiltin_Char_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_453_(lean_object*); static lean_object* l_Char_reduceOfNatAux___closed__1; -static lean_object* l___regBuiltin_Char_reduceToString_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_631____closed__4; -static lean_object* l___regBuiltin_Char_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_990____closed__2; +static lean_object* l___regBuiltin_Char_reduceIsDigit_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_546____closed__6; +static lean_object* l___regBuiltin_Char_reduceIsDigit_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_546____closed__2; +static lean_object* l___regBuiltin_Char_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_858____closed__3; LEAN_EXPORT lean_object* l_Char_reduceToString___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_Char_reduceVal_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_739____closed__3; LEAN_EXPORT lean_object* l_Char_reduceOfNatAux___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___regBuiltin_Char_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_903_(lean_object*); static lean_object* l_Char_reduceIsAlpha___closed__2; -static lean_object* l___regBuiltin_Char_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_820____closed__6; uint8_t l_Char_isDigit(uint32_t); -static lean_object* l___regBuiltin_Char_reduceOfNatAux_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1102____closed__5; +LEAN_EXPORT lean_object* l___regBuiltin_Char_reduceToUpper_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_436_(lean_object*); LEAN_EXPORT lean_object* l_Char_reduceBoolPred___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_Char_reduceIsAlphaNum_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_567_(lean_object*); +LEAN_EXPORT lean_object* l___regBuiltin_Char_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_737_(lean_object*); LEAN_EXPORT lean_object* l_Char_reduceToString(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___regBuiltin_Char_reduceDefault_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1136____closed__6; static lean_object* l_Char_reduceEq___closed__1; LEAN_EXPORT lean_object* l_Char_reduceIsLower___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_Char_reduceIsWhitespace___closed__1; -static lean_object* l___regBuiltin_Char_reduceOfNatAux_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1102____closed__6; -static lean_object* l___regBuiltin_Char_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_820____closed__5; -LEAN_EXPORT lean_object* l___regBuiltin_Char_reduceIsWhitespace_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_515_(lean_object*); +static lean_object* l___regBuiltin_Char_reduceToString_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_588____closed__2; static lean_object* l_Char_reduceToString___closed__1; -static lean_object* l___regBuiltin_Char_reduceIsAlphaNum_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_608____closed__3; LEAN_EXPORT lean_object* l_Char_reduceDefault(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Char_fromExpr_x3f___closed__2; -static lean_object* l___regBuiltin_Char_reduceToString_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_631____closed__10; +LEAN_EXPORT lean_object* l___regBuiltin_Char_reduceIsWhitespace_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_470_(lean_object*); +LEAN_EXPORT lean_object* l___regBuiltin_Char_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_777_(lean_object*); +static lean_object* l___regBuiltin_Char_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_858____closed__9; lean_object* l_Lean_Expr_app___override(lean_object*, lean_object*); -static lean_object* l___regBuiltin_Char_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_820____closed__11; lean_object* l_Lean_Meta_Simp_registerBuiltinSimproc(lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___regBuiltin_Char_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_780____closed__3; -static lean_object* l___regBuiltin_Char_reduceIsDigit_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_589____closed__6; +static lean_object* l___regBuiltin_Char_reduceIsAlpha_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_527____closed__6; +lean_object* l_Lean_mkApp3(lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___regBuiltin_Char_reduceIsWhitespace_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_470____closed__6; LEAN_EXPORT lean_object* l_Char_reduceUnary___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_EXPORT lean_object* l_Char_reduceVal___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* l_Lean_mkRawNatLit(lean_object*); uint8_t l_Char_isUpper(uint32_t); +static lean_object* l___regBuiltin_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_413____closed__5; uint8_t lean_uint32_dec_eq(uint32_t, uint32_t); -static lean_object* l___regBuiltin_Char_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_901____closed__3; LEAN_EXPORT lean_object* l_Char_reduceToString___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Name_mkStr2(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___regBuiltin_Char_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_862_(lean_object*); +static lean_object* l___regBuiltin_Char_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_818____closed__9; +static lean_object* l___regBuiltin_Char_reduceToString_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_588____closed__9; +static lean_object* l_Char_reduceToLower___lambda__1___closed__4; +static lean_object* l_Char_reduceToLower___lambda__1___closed__2; lean_object* l_Lean_Meta_Simp_addSimprocBuiltinAttrCore(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*); static lean_object* l_Char_reduceIsWhitespace___closed__2; -static lean_object* l___regBuiltin_Char_reduceVal_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_739____closed__5; -static lean_object* l___regBuiltin_Char_reduceDefault_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1179____closed__1; static lean_object* l_Char_reduceBoolPred___lambda__1___closed__2; -static lean_object* l___regBuiltin_Char_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_494____closed__1; -LEAN_EXPORT lean_object* l___regBuiltin_Char_reduceIsAlphaNum_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_612_(lean_object*); -static lean_object* l___regBuiltin_Char_reduceDefault_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1179____closed__4; static lean_object* l_Char_reduceBEq___closed__1; static lean_object* l_Char_reduceBoolPred___lambda__1___closed__4; -LEAN_EXPORT lean_object* l___regBuiltin_Char_reduceVal_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_741_(lean_object*); static lean_object* l_Char_reduceIsDigit___closed__1; static lean_object* l_Char_reduceDefault___closed__2; -static lean_object* l___regBuiltin_Char_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_820____closed__9; -static lean_object* l___regBuiltin_Char_reduceToUpper_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_475____closed__4; -static lean_object* l___regBuiltin_Char_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_861____closed__1; +static lean_object* l___regBuiltin_Char_reduceIsDigit_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_546____closed__5; +LEAN_EXPORT lean_object* l___regBuiltin_Char_reduceOfNatAux_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1063_(lean_object*); LEAN_EXPORT lean_object* l_Char_fromExpr_x3f___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___regBuiltin_Char_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_858____closed__8; static lean_object* l_Char_reduceIsLower___closed__2; -LEAN_EXPORT lean_object* l___regBuiltin_Char_reduceOfNatAux_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1106_(lean_object*); -LEAN_EXPORT lean_object* l___regBuiltin_Char_reduceIsLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_555_(lean_object*); -LEAN_EXPORT lean_object* l___regBuiltin_Char_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_820_(lean_object*); -LEAN_EXPORT lean_object* l___regBuiltin_Char_reduceIsAlpha_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_574_(lean_object*); +static lean_object* l___regBuiltin_Char_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_818____closed__3; LEAN_EXPORT lean_object* l_Char_reduceVal___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___regBuiltin_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_413____closed__1; LEAN_EXPORT lean_object* l_Char_reduceToUpper___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Char_reduceIsUpper___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___regBuiltin_Char_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_820____closed__4; -LEAN_EXPORT lean_object* l___regBuiltin_Char_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_994_(lean_object*); +LEAN_EXPORT lean_object* l___regBuiltin_Char_reduceIsWhitespace_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_474_(lean_object*); +static lean_object* l___regBuiltin_Char_reduceIsLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_508____closed__1; LEAN_EXPORT lean_object* l_Char_reduceVal___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_Char_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_494____closed__6; +LEAN_EXPORT lean_object* l___regBuiltin_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_415_(lean_object*); +static lean_object* l___regBuiltin_Char_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_858____closed__6; +static lean_object* l___regBuiltin_Char_reduceOfNatAux_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1059____closed__6; LEAN_EXPORT lean_object* l_Char_reduceToLower___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Char_reduceUnary___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*); -static lean_object* l___regBuiltin_Char_reduceIsLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_551____closed__2; -static lean_object* l___regBuiltin_Char_reduceIsUpper_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_532____closed__5; -LEAN_EXPORT lean_object* l___regBuiltin_Char_reduceVal_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_743_(lean_object*); +static lean_object* l___regBuiltin_Char_reduceVal_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_696____closed__1; +static lean_object* l___regBuiltin_Char_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_451____closed__6; +static lean_object* l___regBuiltin_Char_reduceDefault_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1136____closed__3; LEAN_EXPORT lean_object* l_Char_reduceBinPred(lean_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_Char_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_780_(lean_object*); -static lean_object* l___regBuiltin_Char_reduceOfNatAux_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1102____closed__8; -static lean_object* l___regBuiltin_Char_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_861____closed__8; +LEAN_EXPORT lean_object* l___regBuiltin_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_413_(lean_object*); +static lean_object* l___regBuiltin_Char_reduceIsWhitespace_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_470____closed__1; LEAN_EXPORT lean_object* l_Char_reduceToLower(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___regBuiltin_Char_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_947____closed__2; +static lean_object* l___regBuiltin_Char_reduceIsLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_508____closed__4; +static lean_object* l___regBuiltin_Char_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_451____closed__1; +LEAN_EXPORT lean_object* l___regBuiltin_Char_reduceToUpper_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_432_(lean_object*); LEAN_EXPORT lean_object* l_Char_reduceBinPred___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___regBuiltin_Char_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_990_(lean_object*); -LEAN_EXPORT lean_object* l___regBuiltin_Char_reduceIsUpper_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_532_(lean_object*); +static lean_object* l___regBuiltin_Char_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_777____closed__6; +static lean_object* l___regBuiltin_Char_reduceOfNatAux_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1059____closed__4; +LEAN_EXPORT lean_object* l___regBuiltin_Char_reduceIsAlphaNum_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_565_(lean_object*); static lean_object* l_Char_reduceEq___closed__2; -static lean_object* l___regBuiltin_Char_reduceIsAlphaNum_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_608____closed__5; +static lean_object* l_Char_reduceVal___lambda__1___closed__1; static lean_object* l_Char_reduceDefault___lambda__1___closed__3; static lean_object* l_Char_reduceDefault___closed__4; LEAN_EXPORT lean_object* l_Char_isValue(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___regBuiltin_Char_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_947____closed__3; LEAN_EXPORT lean_object* l_Char_reduceBinPred___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___regBuiltin_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_415____closed__1; static lean_object* l_Char_reduceBoolPred___lambda__1___closed__10; -static lean_object* l___regBuiltin_Char_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_990____closed__4; -LEAN_EXPORT lean_object* l___regBuiltin_Char_reduceVal_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_739_(lean_object*); -static lean_object* l___regBuiltin_Char_reduceDefault_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1179____closed__5; -static lean_object* l___regBuiltin_Char_reduceIsWhitespace_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_513____closed__4; +static lean_object* l___regBuiltin_Char_reduceIsUpper_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_489____closed__3; LEAN_EXPORT lean_object* l_Char_reduceNe___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_Char_reduceBoolPred___lambda__1___closed__11; -static lean_object* l___regBuiltin_Char_reduceIsAlphaNum_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_608____closed__4; -static lean_object* l___regBuiltin_Char_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_820____closed__2; +static lean_object* l___regBuiltin_Char_reduceVal_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_696____closed__2; static lean_object* l_Char_reduceToLower___closed__1; LEAN_EXPORT lean_object* l_Char_reduceIsAlpha___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_Char_reduceDefault_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1183_(lean_object*); +static lean_object* l___regBuiltin_Char_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_737____closed__5; LEAN_EXPORT lean_object* l_Char_reduceNe___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_Char_reduceBNe___closed__2; +LEAN_EXPORT lean_object* l___regBuiltin_Char_reduceIsWhitespace_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_472_(lean_object*); LEAN_EXPORT lean_object* l_Char_reduceToString___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_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_456_(lean_object*); -lean_object* l_Nat_fromExpr_x3f(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___regBuiltin_Char_reduceToUpper_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_432____closed__4; +static lean_object* l___regBuiltin_Char_reduceToString_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_588____closed__10; static lean_object* l_Char_reduceIsLower___closed__1; -LEAN_EXPORT lean_object* l___regBuiltin_Char_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_782_(lean_object*); -static lean_object* l___regBuiltin_Char_reduceIsLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_551____closed__1; -LEAN_EXPORT lean_object* l___regBuiltin_Char_reduceIsLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_551_(lean_object*); -static lean_object* l___regBuiltin_Char_reduceIsAlphaNum_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_608____closed__2; +LEAN_EXPORT lean_object* l___regBuiltin_Char_reduceIsAlphaNum_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_569_(lean_object*); +static lean_object* l___regBuiltin_Char_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_777____closed__4; +static lean_object* l___regBuiltin_Char_reduceIsAlpha_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_527____closed__4; +LEAN_EXPORT lean_object* l___regBuiltin_Char_reduceIsAlpha_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_529_(lean_object*); +static lean_object* l_Char_reduceVal___lambda__1___closed__3; +static lean_object* l___regBuiltin_Char_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_818____closed__5; static lean_object* l_Char_reduceIsAlphaNum___closed__1; -static lean_object* l___regBuiltin_Char_reduceIsWhitespace_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_513____closed__1; -LEAN_EXPORT lean_object* l___regBuiltin_Char_reduceDefault_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1181_(lean_object*); +static lean_object* l___regBuiltin_Char_reduceIsWhitespace_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_470____closed__4; extern lean_object* l_Lean_Meta_Simp_builtinSEvalprocsRef; -LEAN_EXPORT lean_object* l___regBuiltin_Char_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_861_(lean_object*); -static lean_object* l___regBuiltin_Char_reduceToString_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_631____closed__7; -static lean_object* l___regBuiltin_Char_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_861____closed__6; +static lean_object* l___regBuiltin_Char_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_777____closed__5; LEAN_EXPORT lean_object* l_Char_reduceUnary___rarg___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___regBuiltin_Char_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_905_(lean_object*); -static lean_object* l___regBuiltin_Char_reduceIsLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_551____closed__3; +static lean_object* l___regBuiltin_Char_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_947____closed__6; +static lean_object* l___regBuiltin_Char_reduceOfNatAux_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1059____closed__5; +static lean_object* l___regBuiltin_Char_reduceIsDigit_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_546____closed__4; LEAN_EXPORT lean_object* l_Char_reduceIsAlphaNum(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___regBuiltin_Char_reduceIsUpper_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_532____closed__4; -static lean_object* l___regBuiltin_Char_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_780____closed__5; +LEAN_EXPORT lean_object* l___regBuiltin_Char_reduceDefault_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1136_(lean_object*); LEAN_EXPORT lean_object* l_Char_reduceBoolPred(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___regBuiltin_Char_reduceOfNatAux_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1102____closed__7; -static lean_object* l___regBuiltin_Char_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_901____closed__6; +static lean_object* l___regBuiltin_Char_reduceDefault_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1136____closed__1; +static lean_object* l___regBuiltin_Char_reduceIsAlpha_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_527____closed__3; +static lean_object* l___regBuiltin_Char_reduceIsUpper_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_489____closed__6; +LEAN_EXPORT lean_object* l___regBuiltin_Char_reduceVal_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_696_(lean_object*); static lean_object* l_Char_reduceDefault___lambda__1___closed__2; -static lean_object* l___regBuiltin_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_456____closed__7; LEAN_EXPORT lean_object* l_Char_reduceToUpper___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_Char_reduceIsDigit_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_589____closed__5; -LEAN_EXPORT lean_object* l___regBuiltin_Char_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_824_(lean_object*); static lean_object* l_Char_reduceBoolPred___lambda__1___closed__9; -static lean_object* l___regBuiltin_Char_reduceIsAlphaNum_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_608____closed__6; -static lean_object* l___regBuiltin_Char_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_780____closed__6; LEAN_EXPORT lean_object* l_Char_reduceDefault___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___regBuiltin_Char_reduceToUpper_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_475____closed__5; +static lean_object* l___regBuiltin_Char_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_777____closed__10; uint8_t l_Char_isLower(uint32_t); +LEAN_EXPORT lean_object* l___regBuiltin_Char_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_822_(lean_object*); LEAN_EXPORT lean_object* l_Char_reduceOfNatAux___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_Char_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_901____closed__4; -static lean_object* l___regBuiltin_Char_reduceIsAlpha_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_570____closed__1; -static lean_object* l___regBuiltin_Char_reduceIsDigit_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_589____closed__1; -LEAN_EXPORT lean_object* l___regBuiltin_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_458_(lean_object*); +lean_object* lean_uint32_to_nat(uint32_t); +static lean_object* l___regBuiltin_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_413____closed__4; static lean_object* l_Char_reduceBoolPred___lambda__1___closed__5; -static lean_object* l___regBuiltin_Char_reduceToString_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_631____closed__8; +static lean_object* l___regBuiltin_Char_reduceDefault_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1136____closed__7; static lean_object* l_Char_reduceVal___closed__2; +LEAN_EXPORT lean_object* l___regBuiltin_Char_reduceToUpper_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_434_(lean_object*); LEAN_EXPORT lean_object* l_Char_reduceToUpper(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___regBuiltin_Char_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_858_(lean_object*); +static lean_object* l_Char_reduceVal___lambda__1___closed__6; static lean_object* l_Char_reduceBNe___closed__1; +LEAN_EXPORT lean_object* l___regBuiltin_Char_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_779_(lean_object*); LEAN_EXPORT lean_object* l_Char_reduceIsAlphaNum___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Char_ofNat(lean_object*); -static lean_object* l___regBuiltin_Char_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_780____closed__8; -static lean_object* l___regBuiltin_Char_reduceIsUpper_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_532____closed__1; -static lean_object* l___regBuiltin_Char_reduceIsLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_551____closed__6; -static lean_object* l___regBuiltin_Char_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_861____closed__5; -static lean_object* l___regBuiltin_Char_reduceDefault_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1179____closed__6; -static lean_object* l___regBuiltin_Char_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_820____closed__7; -static lean_object* _init_l_Char_fromExpr_x3f___closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("Char", 4); -return x_1; -} -} -static lean_object* _init_l_Char_fromExpr_x3f___closed__2() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("ofNat", 5); -return x_1; -} -} -static lean_object* _init_l_Char_fromExpr_x3f___closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Char_fromExpr_x3f___closed__1; -x_2 = l_Char_fromExpr_x3f___closed__2; -x_3 = l_Lean_Name_mkStr2(x_1, x_2); -return x_3; -} -} +static lean_object* l___regBuiltin_Char_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_858____closed__7; +static lean_object* l___regBuiltin_Char_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_737____closed__1; +LEAN_EXPORT lean_object* l___regBuiltin_Char_reduceIsDigit_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_548_(lean_object*); LEAN_EXPORT lean_object* l_Char_fromExpr_x3f(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; uint8_t x_12; -x_10 = l_Char_fromExpr_x3f___closed__3; -x_11 = lean_unsigned_to_nat(1u); -x_12 = l_Lean_Expr_isAppOfArity(x_1, x_10, x_11); -if (x_12 == 0) -{ -lean_object* x_13; lean_object* x_14; -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -x_13 = lean_box(0); -x_14 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_14, 0, x_13); -lean_ctor_set(x_14, 1, x_9); -return x_14; -} -else -{ -lean_object* x_15; lean_object* x_16; -x_15 = l_Lean_Expr_appArg_x21(x_1); -x_16 = l_Nat_fromExpr_x3f(x_15, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); -if (lean_obj_tag(x_16) == 0) -{ -lean_object* x_17; -x_17 = lean_ctor_get(x_16, 0); -lean_inc(x_17); -if (lean_obj_tag(x_17) == 0) -{ -uint8_t x_18; -x_18 = !lean_is_exclusive(x_16); -if (x_18 == 0) -{ -lean_object* x_19; lean_object* x_20; -x_19 = lean_ctor_get(x_16, 0); -lean_dec(x_19); -x_20 = lean_box(0); -lean_ctor_set(x_16, 0, x_20); -return x_16; -} -else -{ -lean_object* x_21; lean_object* x_22; lean_object* x_23; -x_21 = lean_ctor_get(x_16, 1); -lean_inc(x_21); -lean_dec(x_16); -x_22 = lean_box(0); -x_23 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_23, 0, x_22); -lean_ctor_set(x_23, 1, x_21); -return x_23; -} -} -else -{ -uint8_t x_24; -x_24 = !lean_is_exclusive(x_16); -if (x_24 == 0) -{ -lean_object* x_25; uint8_t x_26; -x_25 = lean_ctor_get(x_16, 0); -lean_dec(x_25); -x_26 = !lean_is_exclusive(x_17); -if (x_26 == 0) -{ -lean_object* x_27; lean_object* x_28; uint32_t x_29; lean_object* x_30; -x_27 = lean_ctor_get(x_17, 0); -x_28 = l_Char_ofNat(x_27); -lean_dec(x_27); -x_29 = lean_unbox_uint32(x_28); -lean_dec(x_28); -x_30 = lean_box_uint32(x_29); -lean_ctor_set(x_17, 0, x_30); -return x_16; -} -else -{ -lean_object* x_31; lean_object* x_32; uint32_t x_33; lean_object* x_34; lean_object* x_35; -x_31 = lean_ctor_get(x_17, 0); -lean_inc(x_31); -lean_dec(x_17); -x_32 = l_Char_ofNat(x_31); -lean_dec(x_31); -x_33 = lean_unbox_uint32(x_32); -lean_dec(x_32); -x_34 = lean_box_uint32(x_33); -x_35 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_35, 0, x_34); -lean_ctor_set(x_16, 0, x_35); -return x_16; -} -} -else -{ -lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; uint32_t x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; -x_36 = lean_ctor_get(x_16, 1); -lean_inc(x_36); -lean_dec(x_16); -x_37 = lean_ctor_get(x_17, 0); -lean_inc(x_37); -if (lean_is_exclusive(x_17)) { - lean_ctor_release(x_17, 0); - x_38 = x_17; -} else { - lean_dec_ref(x_17); - x_38 = lean_box(0); -} -x_39 = l_Char_ofNat(x_37); -lean_dec(x_37); -x_40 = lean_unbox_uint32(x_39); -lean_dec(x_39); -x_41 = lean_box_uint32(x_40); -if (lean_is_scalar(x_38)) { - x_42 = lean_alloc_ctor(1, 1, 0); -} else { - x_42 = x_38; -} -lean_ctor_set(x_42, 0, x_41); -x_43 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_43, 0, x_42); -lean_ctor_set(x_43, 1, x_36); -return x_43; -} -} -} -else -{ -uint8_t x_44; -x_44 = !lean_is_exclusive(x_16); -if (x_44 == 0) -{ -return x_16; -} -else -{ -lean_object* x_45; lean_object* x_46; lean_object* x_47; -x_45 = lean_ctor_get(x_16, 0); -x_46 = lean_ctor_get(x_16, 1); -lean_inc(x_46); -lean_inc(x_45); -lean_dec(x_16); -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_10; +x_10 = l_Lean_Meta_getCharValue_x3f(x_1, x_5, x_6, x_7, x_8, x_9); +return x_10; } } LEAN_EXPORT lean_object* l_Char_fromExpr_x3f___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) { @@ -552,7 +396,6 @@ _start: { lean_object* x_10; x_10 = l_Char_fromExpr_x3f(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); -lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); @@ -575,7 +418,7 @@ _start: { lean_object* x_13; lean_object* x_14; x_13 = l_Lean_Expr_appArg_x21(x_1); -x_14 = l_Char_fromExpr_x3f(x_13, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +x_14 = l_Lean_Meta_getCharValue_x3f(x_13, x_8, x_9, x_10, x_11, x_12); lean_dec(x_13); if (lean_obj_tag(x_14) == 0) { @@ -727,7 +570,6 @@ else lean_object* x_17; lean_object* x_18; x_17 = lean_box(0); x_18 = l_Char_reduceUnary___rarg___lambda__1(x_5, x_1, x_3, x_17, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); -lean_dec(x_9); lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); @@ -749,7 +591,6 @@ _start: { lean_object* x_13; x_13 = l_Char_reduceUnary___rarg___lambda__1(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_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); @@ -769,7 +610,8 @@ lean_dec(x_12); lean_inc(x_10); lean_inc(x_9); lean_inc(x_8); -x_14 = l_Char_fromExpr_x3f(x_13, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +lean_inc(x_7); +x_14 = l_Lean_Meta_getCharValue_x3f(x_13, x_7, x_8, x_9, x_10, x_11); lean_dec(x_13); if (lean_obj_tag(x_14) == 0) { @@ -821,7 +663,8 @@ x_24 = l_Lean_Expr_appArg_x21(x_1); lean_inc(x_10); lean_inc(x_9); lean_inc(x_8); -x_25 = l_Char_fromExpr_x3f(x_24, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_22); +lean_inc(x_7); +x_25 = l_Lean_Meta_getCharValue_x3f(x_24, x_7, x_8, x_9, x_10, x_22); lean_dec(x_24); if (lean_obj_tag(x_25) == 0) { @@ -1113,7 +956,8 @@ lean_dec(x_12); lean_inc(x_10); lean_inc(x_9); lean_inc(x_8); -x_14 = l_Char_fromExpr_x3f(x_13, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +lean_inc(x_7); +x_14 = l_Lean_Meta_getCharValue_x3f(x_13, x_7, x_8, x_9, x_10, x_11); lean_dec(x_13); if (lean_obj_tag(x_14) == 0) { @@ -1126,6 +970,7 @@ uint8_t x_16; lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); +lean_dec(x_7); lean_dec(x_2); lean_dec(x_1); x_16 = !lean_is_exclusive(x_14); @@ -1162,7 +1007,7 @@ lean_inc(x_23); lean_dec(x_15); x_24 = l_Lean_Expr_appArg_x21(x_1); lean_dec(x_1); -x_25 = l_Char_fromExpr_x3f(x_24, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_22); +x_25 = l_Lean_Meta_getCharValue_x3f(x_24, x_7, x_8, x_9, x_10, x_22); lean_dec(x_24); if (lean_obj_tag(x_25) == 0) { @@ -1292,6 +1137,7 @@ uint8_t x_52; lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); +lean_dec(x_7); lean_dec(x_2); lean_dec(x_1); x_52 = !lean_is_exclusive(x_14); @@ -1344,7 +1190,6 @@ else lean_object* x_16; lean_object* x_17; x_16 = lean_box(0); x_17 = l_Char_reduceBoolPred___lambda__1(x_4, x_3, x_16, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); -lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); @@ -1357,7 +1202,6 @@ _start: { lean_object* x_12; x_12 = l_Char_reduceBoolPred___lambda__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); -lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); @@ -1368,9 +1212,35 @@ return x_12; static lean_object* _init_l_Char_reduceToLower___lambda__1___closed__1() { _start: { +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("Char", 4); +return x_1; +} +} +static lean_object* _init_l_Char_reduceToLower___lambda__1___closed__2() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("ofNat", 5); +return x_1; +} +} +static lean_object* _init_l_Char_reduceToLower___lambda__1___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Char_reduceToLower___lambda__1___closed__1; +x_2 = l_Char_reduceToLower___lambda__1___closed__2; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Char_reduceToLower___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_Char_fromExpr_x3f___closed__3; +x_2 = l_Char_reduceToLower___lambda__1___closed__3; x_3 = l_Lean_Expr_const___override(x_2, x_1); return x_3; } @@ -1380,7 +1250,7 @@ _start: { lean_object* x_11; lean_object* x_12; x_11 = l_Lean_Expr_appArg_x21(x_1); -x_12 = l_Char_fromExpr_x3f(x_11, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_12 = l_Lean_Meta_getCharValue_x3f(x_11, x_6, x_7, x_8, x_9, x_10); lean_dec(x_11); if (lean_obj_tag(x_12) == 0) { @@ -1432,7 +1302,7 @@ x_25 = lean_unbox_uint32(x_24); lean_dec(x_24); x_26 = lean_uint32_to_nat(x_25); x_27 = l_Lean_mkRawNatLit(x_26); -x_28 = l_Char_reduceToLower___lambda__1___closed__1; +x_28 = l_Char_reduceToLower___lambda__1___closed__4; x_29 = l_Lean_Expr_app___override(x_28, x_27); x_30 = lean_box(0); x_31 = 0; @@ -1463,7 +1333,7 @@ x_39 = lean_unbox_uint32(x_38); lean_dec(x_38); x_40 = lean_uint32_to_nat(x_39); x_41 = l_Lean_mkRawNatLit(x_40); -x_42 = l_Char_reduceToLower___lambda__1___closed__1; +x_42 = l_Char_reduceToLower___lambda__1___closed__4; x_43 = l_Lean_Expr_app___override(x_42, x_41); x_44 = lean_box(0); x_45 = 0; @@ -1518,7 +1388,7 @@ static lean_object* _init_l_Char_reduceToLower___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Char_fromExpr_x3f___closed__1; +x_1 = l_Char_reduceToLower___lambda__1___closed__1; x_2 = l_Char_reduceToLower___closed__1; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; @@ -1552,7 +1422,6 @@ else lean_object* x_15; lean_object* x_16; x_15 = lean_box(0); x_16 = l_Char_reduceToLower___lambda__1(x_1, x_15, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); -lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); @@ -1565,7 +1434,6 @@ _start: { lean_object* x_11; x_11 = l_Char_reduceToLower___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_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); @@ -1583,7 +1451,7 @@ lean_dec(x_1); return x_10; } } -static lean_object* _init_l___regBuiltin_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_456____closed__1() { +static lean_object* _init_l___regBuiltin_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_413____closed__1() { _start: { lean_object* x_1; @@ -1591,17 +1459,17 @@ x_1 = lean_mk_string_from_bytes("reduceToLower", 13); return x_1; } } -static lean_object* _init_l___regBuiltin_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_456____closed__2() { +static lean_object* _init_l___regBuiltin_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_413____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Char_fromExpr_x3f___closed__1; -x_2 = l___regBuiltin_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_456____closed__1; +x_1 = l_Char_reduceToLower___lambda__1___closed__1; +x_2 = l___regBuiltin_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_413____closed__1; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_456____closed__3() { +static lean_object* _init_l___regBuiltin_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_413____closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -1613,7 +1481,7 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_456____closed__4() { +static lean_object* _init_l___regBuiltin_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_413____closed__4() { _start: { lean_object* x_1; lean_object* x_2; @@ -1622,27 +1490,27 @@ x_2 = lean_mk_empty_array_with_capacity(x_1); return x_2; } } -static lean_object* _init_l___regBuiltin_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_456____closed__5() { +static lean_object* _init_l___regBuiltin_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_413____closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_456____closed__4; -x_2 = l___regBuiltin_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_456____closed__3; +x_1 = l___regBuiltin_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_413____closed__4; +x_2 = l___regBuiltin_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_413____closed__3; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_456____closed__6() { +static lean_object* _init_l___regBuiltin_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_413____closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_456____closed__5; +x_1 = l___regBuiltin_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_413____closed__5; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_456____closed__7() { +static lean_object* _init_l___regBuiltin_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_413____closed__7() { _start: { lean_object* x_1; @@ -1650,18 +1518,18 @@ x_1 = lean_alloc_closure((void*)(l_Char_reduceToLower___boxed), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_456_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_413_(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_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_456____closed__2; -x_3 = l___regBuiltin_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_456____closed__6; -x_4 = l___regBuiltin_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_456____closed__7; +x_2 = l___regBuiltin_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_413____closed__2; +x_3 = l___regBuiltin_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_413____closed__6; +x_4 = l___regBuiltin_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_413____closed__7; x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); return x_5; } } -static lean_object* _init_l___regBuiltin_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_458____closed__1() { +static lean_object* _init_l___regBuiltin_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_415____closed__1() { _start: { lean_object* x_1; @@ -1669,19 +1537,19 @@ x_1 = l_Lean_Meta_Simp_builtinSimprocsRef; return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_458_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_415_(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_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_458____closed__1; -x_3 = l___regBuiltin_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_456____closed__2; +x_2 = l___regBuiltin_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_415____closed__1; +x_3 = l___regBuiltin_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_413____closed__2; x_4 = 1; -x_5 = l___regBuiltin_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_456____closed__7; +x_5 = l___regBuiltin_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_413____closed__7; 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___regBuiltin_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_460____closed__1() { +static lean_object* _init_l___regBuiltin_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_417____closed__1() { _start: { lean_object* x_1; @@ -1689,14 +1557,14 @@ x_1 = l_Lean_Meta_Simp_builtinSEvalprocsRef; return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_460_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_417_(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_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_460____closed__1; -x_3 = l___regBuiltin_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_456____closed__2; +x_2 = l___regBuiltin_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_417____closed__1; +x_3 = l___regBuiltin_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_413____closed__2; x_4 = 1; -x_5 = l___regBuiltin_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_456____closed__7; +x_5 = l___regBuiltin_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_413____closed__7; x_6 = l_Lean_Meta_Simp_addSimprocBuiltinAttrCore(x_2, x_3, x_4, x_5, x_1); return x_6; } @@ -1706,7 +1574,7 @@ _start: { lean_object* x_11; lean_object* x_12; x_11 = l_Lean_Expr_appArg_x21(x_1); -x_12 = l_Char_fromExpr_x3f(x_11, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_12 = l_Lean_Meta_getCharValue_x3f(x_11, x_6, x_7, x_8, x_9, x_10); lean_dec(x_11); if (lean_obj_tag(x_12) == 0) { @@ -1758,7 +1626,7 @@ x_25 = lean_unbox_uint32(x_24); lean_dec(x_24); x_26 = lean_uint32_to_nat(x_25); x_27 = l_Lean_mkRawNatLit(x_26); -x_28 = l_Char_reduceToLower___lambda__1___closed__1; +x_28 = l_Char_reduceToLower___lambda__1___closed__4; x_29 = l_Lean_Expr_app___override(x_28, x_27); x_30 = lean_box(0); x_31 = 0; @@ -1789,7 +1657,7 @@ x_39 = lean_unbox_uint32(x_38); lean_dec(x_38); x_40 = lean_uint32_to_nat(x_39); x_41 = l_Lean_mkRawNatLit(x_40); -x_42 = l_Char_reduceToLower___lambda__1___closed__1; +x_42 = l_Char_reduceToLower___lambda__1___closed__4; x_43 = l_Lean_Expr_app___override(x_42, x_41); x_44 = lean_box(0); x_45 = 0; @@ -1844,7 +1712,7 @@ static lean_object* _init_l_Char_reduceToUpper___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Char_fromExpr_x3f___closed__1; +x_1 = l_Char_reduceToLower___lambda__1___closed__1; x_2 = l_Char_reduceToUpper___closed__1; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; @@ -1878,7 +1746,6 @@ else lean_object* x_15; lean_object* x_16; x_15 = lean_box(0); x_16 = l_Char_reduceToUpper___lambda__1(x_1, x_15, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); -lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); @@ -1891,7 +1758,6 @@ _start: { lean_object* x_11; x_11 = l_Char_reduceToUpper___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_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); @@ -1909,7 +1775,7 @@ lean_dec(x_1); return x_10; } } -static lean_object* _init_l___regBuiltin_Char_reduceToUpper_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_475____closed__1() { +static lean_object* _init_l___regBuiltin_Char_reduceToUpper_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_432____closed__1() { _start: { lean_object* x_1; @@ -1917,17 +1783,17 @@ x_1 = lean_mk_string_from_bytes("reduceToUpper", 13); return x_1; } } -static lean_object* _init_l___regBuiltin_Char_reduceToUpper_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_475____closed__2() { +static lean_object* _init_l___regBuiltin_Char_reduceToUpper_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_432____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Char_fromExpr_x3f___closed__1; -x_2 = l___regBuiltin_Char_reduceToUpper_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_475____closed__1; +x_1 = l_Char_reduceToLower___lambda__1___closed__1; +x_2 = l___regBuiltin_Char_reduceToUpper_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_432____closed__1; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Char_reduceToUpper_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_475____closed__3() { +static lean_object* _init_l___regBuiltin_Char_reduceToUpper_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_432____closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -1939,27 +1805,27 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Char_reduceToUpper_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_475____closed__4() { +static lean_object* _init_l___regBuiltin_Char_reduceToUpper_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_432____closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_456____closed__4; -x_2 = l___regBuiltin_Char_reduceToUpper_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_475____closed__3; +x_1 = l___regBuiltin_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_413____closed__4; +x_2 = l___regBuiltin_Char_reduceToUpper_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_432____closed__3; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Char_reduceToUpper_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_475____closed__5() { +static lean_object* _init_l___regBuiltin_Char_reduceToUpper_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_432____closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Char_reduceToUpper_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_475____closed__4; +x_1 = l___regBuiltin_Char_reduceToUpper_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_432____closed__4; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Char_reduceToUpper_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_475____closed__6() { +static lean_object* _init_l___regBuiltin_Char_reduceToUpper_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_432____closed__6() { _start: { lean_object* x_1; @@ -1967,37 +1833,37 @@ x_1 = lean_alloc_closure((void*)(l_Char_reduceToUpper___boxed), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_Char_reduceToUpper_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_475_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Char_reduceToUpper_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_432_(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_Char_reduceToUpper_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_475____closed__2; -x_3 = l___regBuiltin_Char_reduceToUpper_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_475____closed__5; -x_4 = l___regBuiltin_Char_reduceToUpper_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_475____closed__6; +x_2 = l___regBuiltin_Char_reduceToUpper_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_432____closed__2; +x_3 = l___regBuiltin_Char_reduceToUpper_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_432____closed__5; +x_4 = l___regBuiltin_Char_reduceToUpper_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_432____closed__6; x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); return x_5; } } -LEAN_EXPORT lean_object* l___regBuiltin_Char_reduceToUpper_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_477_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Char_reduceToUpper_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_434_(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_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_458____closed__1; -x_3 = l___regBuiltin_Char_reduceToUpper_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_475____closed__2; +x_2 = l___regBuiltin_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_415____closed__1; +x_3 = l___regBuiltin_Char_reduceToUpper_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_432____closed__2; x_4 = 1; -x_5 = l___regBuiltin_Char_reduceToUpper_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_475____closed__6; +x_5 = l___regBuiltin_Char_reduceToUpper_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_432____closed__6; 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_Char_reduceToUpper_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_479_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Char_reduceToUpper_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_436_(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_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_460____closed__1; -x_3 = l___regBuiltin_Char_reduceToUpper_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_475____closed__2; +x_2 = l___regBuiltin_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_417____closed__1; +x_3 = l___regBuiltin_Char_reduceToUpper_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_432____closed__2; x_4 = 1; -x_5 = l___regBuiltin_Char_reduceToUpper_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_475____closed__6; +x_5 = l___regBuiltin_Char_reduceToUpper_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_432____closed__6; x_6 = l_Lean_Meta_Simp_addSimprocBuiltinAttrCore(x_2, x_3, x_4, x_5, x_1); return x_6; } @@ -2007,7 +1873,7 @@ _start: { lean_object* x_11; lean_object* x_12; x_11 = l_Lean_Expr_appArg_x21(x_1); -x_12 = l_Char_fromExpr_x3f(x_11, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_12 = l_Lean_Meta_getCharValue_x3f(x_11, x_6, x_7, x_8, x_9, x_10); lean_dec(x_11); if (lean_obj_tag(x_12) == 0) { @@ -2135,7 +2001,7 @@ static lean_object* _init_l_Char_reduceToNat___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Char_fromExpr_x3f___closed__1; +x_1 = l_Char_reduceToLower___lambda__1___closed__1; x_2 = l_Char_reduceToNat___closed__1; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; @@ -2169,7 +2035,6 @@ else lean_object* x_15; lean_object* x_16; x_15 = lean_box(0); x_16 = l_Char_reduceToNat___lambda__1(x_1, x_15, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); -lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); @@ -2182,7 +2047,6 @@ _start: { lean_object* x_11; x_11 = l_Char_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_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); @@ -2200,7 +2064,7 @@ lean_dec(x_1); return x_10; } } -static lean_object* _init_l___regBuiltin_Char_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_494____closed__1() { +static lean_object* _init_l___regBuiltin_Char_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_451____closed__1() { _start: { lean_object* x_1; @@ -2208,17 +2072,17 @@ x_1 = lean_mk_string_from_bytes("reduceToNat", 11); return x_1; } } -static lean_object* _init_l___regBuiltin_Char_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_494____closed__2() { +static lean_object* _init_l___regBuiltin_Char_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_451____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Char_fromExpr_x3f___closed__1; -x_2 = l___regBuiltin_Char_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_494____closed__1; +x_1 = l_Char_reduceToLower___lambda__1___closed__1; +x_2 = l___regBuiltin_Char_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_451____closed__1; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Char_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_494____closed__3() { +static lean_object* _init_l___regBuiltin_Char_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_451____closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -2230,27 +2094,27 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Char_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_494____closed__4() { +static lean_object* _init_l___regBuiltin_Char_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_451____closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_456____closed__4; -x_2 = l___regBuiltin_Char_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_494____closed__3; +x_1 = l___regBuiltin_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_413____closed__4; +x_2 = l___regBuiltin_Char_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_451____closed__3; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Char_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_494____closed__5() { +static lean_object* _init_l___regBuiltin_Char_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_451____closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Char_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_494____closed__4; +x_1 = l___regBuiltin_Char_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_451____closed__4; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Char_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_494____closed__6() { +static lean_object* _init_l___regBuiltin_Char_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_451____closed__6() { _start: { lean_object* x_1; @@ -2258,37 +2122,37 @@ x_1 = lean_alloc_closure((void*)(l_Char_reduceToNat___boxed), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_Char_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_494_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Char_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_451_(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_Char_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_494____closed__2; -x_3 = l___regBuiltin_Char_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_494____closed__5; -x_4 = l___regBuiltin_Char_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_494____closed__6; +x_2 = l___regBuiltin_Char_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_451____closed__2; +x_3 = l___regBuiltin_Char_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_451____closed__5; +x_4 = l___regBuiltin_Char_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_451____closed__6; x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); return x_5; } } -LEAN_EXPORT lean_object* l___regBuiltin_Char_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_496_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Char_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_453_(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_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_458____closed__1; -x_3 = l___regBuiltin_Char_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_494____closed__2; +x_2 = l___regBuiltin_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_415____closed__1; +x_3 = l___regBuiltin_Char_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_451____closed__2; x_4 = 1; -x_5 = l___regBuiltin_Char_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_494____closed__6; +x_5 = l___regBuiltin_Char_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_451____closed__6; 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_Char_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_498_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Char_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_455_(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_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_460____closed__1; -x_3 = l___regBuiltin_Char_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_494____closed__2; +x_2 = l___regBuiltin_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_417____closed__1; +x_3 = l___regBuiltin_Char_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_451____closed__2; x_4 = 1; -x_5 = l___regBuiltin_Char_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_494____closed__6; +x_5 = l___regBuiltin_Char_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_451____closed__6; x_6 = l_Lean_Meta_Simp_addSimprocBuiltinAttrCore(x_2, x_3, x_4, x_5, x_1); return x_6; } @@ -2298,7 +2162,7 @@ _start: { lean_object* x_11; lean_object* x_12; x_11 = l_Lean_Expr_appArg_x21(x_1); -x_12 = l_Char_fromExpr_x3f(x_11, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_12 = l_Lean_Meta_getCharValue_x3f(x_11, x_6, x_7, x_8, x_9, x_10); lean_dec(x_11); if (lean_obj_tag(x_12) == 0) { @@ -2430,7 +2294,7 @@ static lean_object* _init_l_Char_reduceIsWhitespace___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Char_fromExpr_x3f___closed__1; +x_1 = l_Char_reduceToLower___lambda__1___closed__1; x_2 = l_Char_reduceIsWhitespace___closed__1; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; @@ -2464,7 +2328,6 @@ else lean_object* x_15; lean_object* x_16; x_15 = lean_box(0); x_16 = l_Char_reduceIsWhitespace___lambda__1(x_1, x_15, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); -lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); @@ -2477,7 +2340,6 @@ _start: { lean_object* x_11; x_11 = l_Char_reduceIsWhitespace___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_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); @@ -2495,7 +2357,7 @@ lean_dec(x_1); return x_10; } } -static lean_object* _init_l___regBuiltin_Char_reduceIsWhitespace_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_513____closed__1() { +static lean_object* _init_l___regBuiltin_Char_reduceIsWhitespace_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_470____closed__1() { _start: { lean_object* x_1; @@ -2503,17 +2365,17 @@ x_1 = lean_mk_string_from_bytes("reduceIsWhitespace", 18); return x_1; } } -static lean_object* _init_l___regBuiltin_Char_reduceIsWhitespace_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_513____closed__2() { +static lean_object* _init_l___regBuiltin_Char_reduceIsWhitespace_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_470____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Char_fromExpr_x3f___closed__1; -x_2 = l___regBuiltin_Char_reduceIsWhitespace_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_513____closed__1; +x_1 = l_Char_reduceToLower___lambda__1___closed__1; +x_2 = l___regBuiltin_Char_reduceIsWhitespace_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_470____closed__1; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Char_reduceIsWhitespace_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_513____closed__3() { +static lean_object* _init_l___regBuiltin_Char_reduceIsWhitespace_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_470____closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -2525,27 +2387,27 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Char_reduceIsWhitespace_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_513____closed__4() { +static lean_object* _init_l___regBuiltin_Char_reduceIsWhitespace_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_470____closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_456____closed__4; -x_2 = l___regBuiltin_Char_reduceIsWhitespace_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_513____closed__3; +x_1 = l___regBuiltin_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_413____closed__4; +x_2 = l___regBuiltin_Char_reduceIsWhitespace_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_470____closed__3; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Char_reduceIsWhitespace_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_513____closed__5() { +static lean_object* _init_l___regBuiltin_Char_reduceIsWhitespace_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_470____closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Char_reduceIsWhitespace_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_513____closed__4; +x_1 = l___regBuiltin_Char_reduceIsWhitespace_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_470____closed__4; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Char_reduceIsWhitespace_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_513____closed__6() { +static lean_object* _init_l___regBuiltin_Char_reduceIsWhitespace_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_470____closed__6() { _start: { lean_object* x_1; @@ -2553,37 +2415,37 @@ x_1 = lean_alloc_closure((void*)(l_Char_reduceIsWhitespace___boxed), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_Char_reduceIsWhitespace_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_513_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Char_reduceIsWhitespace_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_470_(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_Char_reduceIsWhitespace_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_513____closed__2; -x_3 = l___regBuiltin_Char_reduceIsWhitespace_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_513____closed__5; -x_4 = l___regBuiltin_Char_reduceIsWhitespace_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_513____closed__6; +x_2 = l___regBuiltin_Char_reduceIsWhitespace_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_470____closed__2; +x_3 = l___regBuiltin_Char_reduceIsWhitespace_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_470____closed__5; +x_4 = l___regBuiltin_Char_reduceIsWhitespace_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_470____closed__6; x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); return x_5; } } -LEAN_EXPORT lean_object* l___regBuiltin_Char_reduceIsWhitespace_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_515_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Char_reduceIsWhitespace_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_472_(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_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_458____closed__1; -x_3 = l___regBuiltin_Char_reduceIsWhitespace_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_513____closed__2; +x_2 = l___regBuiltin_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_415____closed__1; +x_3 = l___regBuiltin_Char_reduceIsWhitespace_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_470____closed__2; x_4 = 1; -x_5 = l___regBuiltin_Char_reduceIsWhitespace_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_513____closed__6; +x_5 = l___regBuiltin_Char_reduceIsWhitespace_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_470____closed__6; 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_Char_reduceIsWhitespace_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_517_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Char_reduceIsWhitespace_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_474_(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_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_460____closed__1; -x_3 = l___regBuiltin_Char_reduceIsWhitespace_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_513____closed__2; +x_2 = l___regBuiltin_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_417____closed__1; +x_3 = l___regBuiltin_Char_reduceIsWhitespace_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_470____closed__2; x_4 = 1; -x_5 = l___regBuiltin_Char_reduceIsWhitespace_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_513____closed__6; +x_5 = l___regBuiltin_Char_reduceIsWhitespace_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_470____closed__6; x_6 = l_Lean_Meta_Simp_addSimprocBuiltinAttrCore(x_2, x_3, x_4, x_5, x_1); return x_6; } @@ -2593,7 +2455,7 @@ _start: { lean_object* x_11; lean_object* x_12; x_11 = l_Lean_Expr_appArg_x21(x_1); -x_12 = l_Char_fromExpr_x3f(x_11, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_12 = l_Lean_Meta_getCharValue_x3f(x_11, x_6, x_7, x_8, x_9, x_10); lean_dec(x_11); if (lean_obj_tag(x_12) == 0) { @@ -2725,7 +2587,7 @@ static lean_object* _init_l_Char_reduceIsUpper___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Char_fromExpr_x3f___closed__1; +x_1 = l_Char_reduceToLower___lambda__1___closed__1; x_2 = l_Char_reduceIsUpper___closed__1; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; @@ -2759,7 +2621,6 @@ else lean_object* x_15; lean_object* x_16; x_15 = lean_box(0); x_16 = l_Char_reduceIsUpper___lambda__1(x_1, x_15, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); -lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); @@ -2772,7 +2633,6 @@ _start: { lean_object* x_11; x_11 = l_Char_reduceIsUpper___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_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); @@ -2790,7 +2650,7 @@ lean_dec(x_1); return x_10; } } -static lean_object* _init_l___regBuiltin_Char_reduceIsUpper_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_532____closed__1() { +static lean_object* _init_l___regBuiltin_Char_reduceIsUpper_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_489____closed__1() { _start: { lean_object* x_1; @@ -2798,17 +2658,17 @@ x_1 = lean_mk_string_from_bytes("reduceIsUpper", 13); return x_1; } } -static lean_object* _init_l___regBuiltin_Char_reduceIsUpper_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_532____closed__2() { +static lean_object* _init_l___regBuiltin_Char_reduceIsUpper_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_489____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Char_fromExpr_x3f___closed__1; -x_2 = l___regBuiltin_Char_reduceIsUpper_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_532____closed__1; +x_1 = l_Char_reduceToLower___lambda__1___closed__1; +x_2 = l___regBuiltin_Char_reduceIsUpper_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_489____closed__1; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Char_reduceIsUpper_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_532____closed__3() { +static lean_object* _init_l___regBuiltin_Char_reduceIsUpper_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_489____closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -2820,27 +2680,27 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Char_reduceIsUpper_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_532____closed__4() { +static lean_object* _init_l___regBuiltin_Char_reduceIsUpper_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_489____closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_456____closed__4; -x_2 = l___regBuiltin_Char_reduceIsUpper_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_532____closed__3; +x_1 = l___regBuiltin_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_413____closed__4; +x_2 = l___regBuiltin_Char_reduceIsUpper_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_489____closed__3; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Char_reduceIsUpper_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_532____closed__5() { +static lean_object* _init_l___regBuiltin_Char_reduceIsUpper_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_489____closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Char_reduceIsUpper_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_532____closed__4; +x_1 = l___regBuiltin_Char_reduceIsUpper_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_489____closed__4; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Char_reduceIsUpper_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_532____closed__6() { +static lean_object* _init_l___regBuiltin_Char_reduceIsUpper_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_489____closed__6() { _start: { lean_object* x_1; @@ -2848,37 +2708,37 @@ x_1 = lean_alloc_closure((void*)(l_Char_reduceIsUpper___boxed), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_Char_reduceIsUpper_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_532_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Char_reduceIsUpper_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_489_(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_Char_reduceIsUpper_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_532____closed__2; -x_3 = l___regBuiltin_Char_reduceIsUpper_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_532____closed__5; -x_4 = l___regBuiltin_Char_reduceIsUpper_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_532____closed__6; +x_2 = l___regBuiltin_Char_reduceIsUpper_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_489____closed__2; +x_3 = l___regBuiltin_Char_reduceIsUpper_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_489____closed__5; +x_4 = l___regBuiltin_Char_reduceIsUpper_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_489____closed__6; x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); return x_5; } } -LEAN_EXPORT lean_object* l___regBuiltin_Char_reduceIsUpper_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_534_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Char_reduceIsUpper_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_491_(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_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_458____closed__1; -x_3 = l___regBuiltin_Char_reduceIsUpper_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_532____closed__2; +x_2 = l___regBuiltin_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_415____closed__1; +x_3 = l___regBuiltin_Char_reduceIsUpper_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_489____closed__2; x_4 = 1; -x_5 = l___regBuiltin_Char_reduceIsUpper_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_532____closed__6; +x_5 = l___regBuiltin_Char_reduceIsUpper_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_489____closed__6; 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_Char_reduceIsUpper_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_536_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Char_reduceIsUpper_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_493_(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_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_460____closed__1; -x_3 = l___regBuiltin_Char_reduceIsUpper_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_532____closed__2; +x_2 = l___regBuiltin_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_417____closed__1; +x_3 = l___regBuiltin_Char_reduceIsUpper_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_489____closed__2; x_4 = 1; -x_5 = l___regBuiltin_Char_reduceIsUpper_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_532____closed__6; +x_5 = l___regBuiltin_Char_reduceIsUpper_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_489____closed__6; x_6 = l_Lean_Meta_Simp_addSimprocBuiltinAttrCore(x_2, x_3, x_4, x_5, x_1); return x_6; } @@ -2888,7 +2748,7 @@ _start: { lean_object* x_11; lean_object* x_12; x_11 = l_Lean_Expr_appArg_x21(x_1); -x_12 = l_Char_fromExpr_x3f(x_11, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_12 = l_Lean_Meta_getCharValue_x3f(x_11, x_6, x_7, x_8, x_9, x_10); lean_dec(x_11); if (lean_obj_tag(x_12) == 0) { @@ -3020,7 +2880,7 @@ static lean_object* _init_l_Char_reduceIsLower___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Char_fromExpr_x3f___closed__1; +x_1 = l_Char_reduceToLower___lambda__1___closed__1; x_2 = l_Char_reduceIsLower___closed__1; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; @@ -3054,7 +2914,6 @@ else lean_object* x_15; lean_object* x_16; x_15 = lean_box(0); x_16 = l_Char_reduceIsLower___lambda__1(x_1, x_15, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); -lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); @@ -3067,7 +2926,6 @@ _start: { lean_object* x_11; x_11 = l_Char_reduceIsLower___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_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); @@ -3085,7 +2943,7 @@ lean_dec(x_1); return x_10; } } -static lean_object* _init_l___regBuiltin_Char_reduceIsLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_551____closed__1() { +static lean_object* _init_l___regBuiltin_Char_reduceIsLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_508____closed__1() { _start: { lean_object* x_1; @@ -3093,17 +2951,17 @@ x_1 = lean_mk_string_from_bytes("reduceIsLower", 13); return x_1; } } -static lean_object* _init_l___regBuiltin_Char_reduceIsLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_551____closed__2() { +static lean_object* _init_l___regBuiltin_Char_reduceIsLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_508____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Char_fromExpr_x3f___closed__1; -x_2 = l___regBuiltin_Char_reduceIsLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_551____closed__1; +x_1 = l_Char_reduceToLower___lambda__1___closed__1; +x_2 = l___regBuiltin_Char_reduceIsLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_508____closed__1; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Char_reduceIsLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_551____closed__3() { +static lean_object* _init_l___regBuiltin_Char_reduceIsLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_508____closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -3115,27 +2973,27 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Char_reduceIsLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_551____closed__4() { +static lean_object* _init_l___regBuiltin_Char_reduceIsLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_508____closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_456____closed__4; -x_2 = l___regBuiltin_Char_reduceIsLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_551____closed__3; +x_1 = l___regBuiltin_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_413____closed__4; +x_2 = l___regBuiltin_Char_reduceIsLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_508____closed__3; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Char_reduceIsLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_551____closed__5() { +static lean_object* _init_l___regBuiltin_Char_reduceIsLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_508____closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Char_reduceIsLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_551____closed__4; +x_1 = l___regBuiltin_Char_reduceIsLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_508____closed__4; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Char_reduceIsLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_551____closed__6() { +static lean_object* _init_l___regBuiltin_Char_reduceIsLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_508____closed__6() { _start: { lean_object* x_1; @@ -3143,37 +3001,37 @@ x_1 = lean_alloc_closure((void*)(l_Char_reduceIsLower___boxed), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_Char_reduceIsLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_551_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Char_reduceIsLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_508_(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_Char_reduceIsLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_551____closed__2; -x_3 = l___regBuiltin_Char_reduceIsLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_551____closed__5; -x_4 = l___regBuiltin_Char_reduceIsLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_551____closed__6; +x_2 = l___regBuiltin_Char_reduceIsLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_508____closed__2; +x_3 = l___regBuiltin_Char_reduceIsLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_508____closed__5; +x_4 = l___regBuiltin_Char_reduceIsLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_508____closed__6; x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); return x_5; } } -LEAN_EXPORT lean_object* l___regBuiltin_Char_reduceIsLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_553_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Char_reduceIsLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_510_(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_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_458____closed__1; -x_3 = l___regBuiltin_Char_reduceIsLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_551____closed__2; +x_2 = l___regBuiltin_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_415____closed__1; +x_3 = l___regBuiltin_Char_reduceIsLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_508____closed__2; x_4 = 1; -x_5 = l___regBuiltin_Char_reduceIsLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_551____closed__6; +x_5 = l___regBuiltin_Char_reduceIsLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_508____closed__6; 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_Char_reduceIsLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_555_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Char_reduceIsLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_512_(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_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_460____closed__1; -x_3 = l___regBuiltin_Char_reduceIsLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_551____closed__2; +x_2 = l___regBuiltin_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_417____closed__1; +x_3 = l___regBuiltin_Char_reduceIsLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_508____closed__2; x_4 = 1; -x_5 = l___regBuiltin_Char_reduceIsLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_551____closed__6; +x_5 = l___regBuiltin_Char_reduceIsLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_508____closed__6; x_6 = l_Lean_Meta_Simp_addSimprocBuiltinAttrCore(x_2, x_3, x_4, x_5, x_1); return x_6; } @@ -3183,7 +3041,7 @@ _start: { lean_object* x_11; lean_object* x_12; x_11 = l_Lean_Expr_appArg_x21(x_1); -x_12 = l_Char_fromExpr_x3f(x_11, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_12 = l_Lean_Meta_getCharValue_x3f(x_11, x_6, x_7, x_8, x_9, x_10); lean_dec(x_11); if (lean_obj_tag(x_12) == 0) { @@ -3315,7 +3173,7 @@ static lean_object* _init_l_Char_reduceIsAlpha___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Char_fromExpr_x3f___closed__1; +x_1 = l_Char_reduceToLower___lambda__1___closed__1; x_2 = l_Char_reduceIsAlpha___closed__1; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; @@ -3349,7 +3207,6 @@ else lean_object* x_15; lean_object* x_16; x_15 = lean_box(0); x_16 = l_Char_reduceIsAlpha___lambda__1(x_1, x_15, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); -lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); @@ -3362,7 +3219,6 @@ _start: { lean_object* x_11; x_11 = l_Char_reduceIsAlpha___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_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); @@ -3380,7 +3236,7 @@ lean_dec(x_1); return x_10; } } -static lean_object* _init_l___regBuiltin_Char_reduceIsAlpha_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_570____closed__1() { +static lean_object* _init_l___regBuiltin_Char_reduceIsAlpha_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_527____closed__1() { _start: { lean_object* x_1; @@ -3388,17 +3244,17 @@ x_1 = lean_mk_string_from_bytes("reduceIsAlpha", 13); return x_1; } } -static lean_object* _init_l___regBuiltin_Char_reduceIsAlpha_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_570____closed__2() { +static lean_object* _init_l___regBuiltin_Char_reduceIsAlpha_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_527____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Char_fromExpr_x3f___closed__1; -x_2 = l___regBuiltin_Char_reduceIsAlpha_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_570____closed__1; +x_1 = l_Char_reduceToLower___lambda__1___closed__1; +x_2 = l___regBuiltin_Char_reduceIsAlpha_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_527____closed__1; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Char_reduceIsAlpha_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_570____closed__3() { +static lean_object* _init_l___regBuiltin_Char_reduceIsAlpha_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_527____closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -3410,27 +3266,27 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Char_reduceIsAlpha_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_570____closed__4() { +static lean_object* _init_l___regBuiltin_Char_reduceIsAlpha_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_527____closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_456____closed__4; -x_2 = l___regBuiltin_Char_reduceIsAlpha_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_570____closed__3; +x_1 = l___regBuiltin_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_413____closed__4; +x_2 = l___regBuiltin_Char_reduceIsAlpha_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_527____closed__3; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Char_reduceIsAlpha_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_570____closed__5() { +static lean_object* _init_l___regBuiltin_Char_reduceIsAlpha_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_527____closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Char_reduceIsAlpha_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_570____closed__4; +x_1 = l___regBuiltin_Char_reduceIsAlpha_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_527____closed__4; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Char_reduceIsAlpha_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_570____closed__6() { +static lean_object* _init_l___regBuiltin_Char_reduceIsAlpha_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_527____closed__6() { _start: { lean_object* x_1; @@ -3438,37 +3294,37 @@ x_1 = lean_alloc_closure((void*)(l_Char_reduceIsAlpha___boxed), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_Char_reduceIsAlpha_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_570_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Char_reduceIsAlpha_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_527_(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_Char_reduceIsAlpha_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_570____closed__2; -x_3 = l___regBuiltin_Char_reduceIsAlpha_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_570____closed__5; -x_4 = l___regBuiltin_Char_reduceIsAlpha_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_570____closed__6; +x_2 = l___regBuiltin_Char_reduceIsAlpha_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_527____closed__2; +x_3 = l___regBuiltin_Char_reduceIsAlpha_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_527____closed__5; +x_4 = l___regBuiltin_Char_reduceIsAlpha_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_527____closed__6; x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); return x_5; } } -LEAN_EXPORT lean_object* l___regBuiltin_Char_reduceIsAlpha_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_572_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Char_reduceIsAlpha_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_529_(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_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_458____closed__1; -x_3 = l___regBuiltin_Char_reduceIsAlpha_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_570____closed__2; +x_2 = l___regBuiltin_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_415____closed__1; +x_3 = l___regBuiltin_Char_reduceIsAlpha_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_527____closed__2; x_4 = 1; -x_5 = l___regBuiltin_Char_reduceIsAlpha_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_570____closed__6; +x_5 = l___regBuiltin_Char_reduceIsAlpha_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_527____closed__6; 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_Char_reduceIsAlpha_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_574_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Char_reduceIsAlpha_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_531_(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_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_460____closed__1; -x_3 = l___regBuiltin_Char_reduceIsAlpha_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_570____closed__2; +x_2 = l___regBuiltin_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_417____closed__1; +x_3 = l___regBuiltin_Char_reduceIsAlpha_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_527____closed__2; x_4 = 1; -x_5 = l___regBuiltin_Char_reduceIsAlpha_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_570____closed__6; +x_5 = l___regBuiltin_Char_reduceIsAlpha_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_527____closed__6; x_6 = l_Lean_Meta_Simp_addSimprocBuiltinAttrCore(x_2, x_3, x_4, x_5, x_1); return x_6; } @@ -3478,7 +3334,7 @@ _start: { lean_object* x_11; lean_object* x_12; x_11 = l_Lean_Expr_appArg_x21(x_1); -x_12 = l_Char_fromExpr_x3f(x_11, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_12 = l_Lean_Meta_getCharValue_x3f(x_11, x_6, x_7, x_8, x_9, x_10); lean_dec(x_11); if (lean_obj_tag(x_12) == 0) { @@ -3610,7 +3466,7 @@ static lean_object* _init_l_Char_reduceIsDigit___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Char_fromExpr_x3f___closed__1; +x_1 = l_Char_reduceToLower___lambda__1___closed__1; x_2 = l_Char_reduceIsDigit___closed__1; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; @@ -3644,7 +3500,6 @@ else lean_object* x_15; lean_object* x_16; x_15 = lean_box(0); x_16 = l_Char_reduceIsDigit___lambda__1(x_1, x_15, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); -lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); @@ -3657,7 +3512,6 @@ _start: { lean_object* x_11; x_11 = l_Char_reduceIsDigit___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_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); @@ -3675,7 +3529,7 @@ lean_dec(x_1); return x_10; } } -static lean_object* _init_l___regBuiltin_Char_reduceIsDigit_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_589____closed__1() { +static lean_object* _init_l___regBuiltin_Char_reduceIsDigit_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_546____closed__1() { _start: { lean_object* x_1; @@ -3683,17 +3537,17 @@ x_1 = lean_mk_string_from_bytes("reduceIsDigit", 13); return x_1; } } -static lean_object* _init_l___regBuiltin_Char_reduceIsDigit_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_589____closed__2() { +static lean_object* _init_l___regBuiltin_Char_reduceIsDigit_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_546____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Char_fromExpr_x3f___closed__1; -x_2 = l___regBuiltin_Char_reduceIsDigit_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_589____closed__1; +x_1 = l_Char_reduceToLower___lambda__1___closed__1; +x_2 = l___regBuiltin_Char_reduceIsDigit_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_546____closed__1; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Char_reduceIsDigit_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_589____closed__3() { +static lean_object* _init_l___regBuiltin_Char_reduceIsDigit_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_546____closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -3705,27 +3559,27 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Char_reduceIsDigit_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_589____closed__4() { +static lean_object* _init_l___regBuiltin_Char_reduceIsDigit_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_546____closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_456____closed__4; -x_2 = l___regBuiltin_Char_reduceIsDigit_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_589____closed__3; +x_1 = l___regBuiltin_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_413____closed__4; +x_2 = l___regBuiltin_Char_reduceIsDigit_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_546____closed__3; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Char_reduceIsDigit_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_589____closed__5() { +static lean_object* _init_l___regBuiltin_Char_reduceIsDigit_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_546____closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Char_reduceIsDigit_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_589____closed__4; +x_1 = l___regBuiltin_Char_reduceIsDigit_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_546____closed__4; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Char_reduceIsDigit_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_589____closed__6() { +static lean_object* _init_l___regBuiltin_Char_reduceIsDigit_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_546____closed__6() { _start: { lean_object* x_1; @@ -3733,37 +3587,37 @@ x_1 = lean_alloc_closure((void*)(l_Char_reduceIsDigit___boxed), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_Char_reduceIsDigit_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_589_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Char_reduceIsDigit_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_546_(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_Char_reduceIsDigit_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_589____closed__2; -x_3 = l___regBuiltin_Char_reduceIsDigit_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_589____closed__5; -x_4 = l___regBuiltin_Char_reduceIsDigit_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_589____closed__6; +x_2 = l___regBuiltin_Char_reduceIsDigit_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_546____closed__2; +x_3 = l___regBuiltin_Char_reduceIsDigit_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_546____closed__5; +x_4 = l___regBuiltin_Char_reduceIsDigit_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_546____closed__6; x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); return x_5; } } -LEAN_EXPORT lean_object* l___regBuiltin_Char_reduceIsDigit_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_591_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Char_reduceIsDigit_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_548_(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_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_458____closed__1; -x_3 = l___regBuiltin_Char_reduceIsDigit_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_589____closed__2; +x_2 = l___regBuiltin_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_415____closed__1; +x_3 = l___regBuiltin_Char_reduceIsDigit_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_546____closed__2; x_4 = 1; -x_5 = l___regBuiltin_Char_reduceIsDigit_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_589____closed__6; +x_5 = l___regBuiltin_Char_reduceIsDigit_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_546____closed__6; 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_Char_reduceIsDigit_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_593_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Char_reduceIsDigit_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_550_(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_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_460____closed__1; -x_3 = l___regBuiltin_Char_reduceIsDigit_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_589____closed__2; +x_2 = l___regBuiltin_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_417____closed__1; +x_3 = l___regBuiltin_Char_reduceIsDigit_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_546____closed__2; x_4 = 1; -x_5 = l___regBuiltin_Char_reduceIsDigit_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_589____closed__6; +x_5 = l___regBuiltin_Char_reduceIsDigit_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_546____closed__6; x_6 = l_Lean_Meta_Simp_addSimprocBuiltinAttrCore(x_2, x_3, x_4, x_5, x_1); return x_6; } @@ -3773,7 +3627,7 @@ _start: { lean_object* x_11; lean_object* x_12; x_11 = l_Lean_Expr_appArg_x21(x_1); -x_12 = l_Char_fromExpr_x3f(x_11, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_12 = l_Lean_Meta_getCharValue_x3f(x_11, x_6, x_7, x_8, x_9, x_10); lean_dec(x_11); if (lean_obj_tag(x_12) == 0) { @@ -3905,7 +3759,7 @@ static lean_object* _init_l_Char_reduceIsAlphaNum___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Char_fromExpr_x3f___closed__1; +x_1 = l_Char_reduceToLower___lambda__1___closed__1; x_2 = l_Char_reduceIsAlphaNum___closed__1; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; @@ -3939,7 +3793,6 @@ else lean_object* x_15; lean_object* x_16; x_15 = lean_box(0); x_16 = l_Char_reduceIsAlphaNum___lambda__1(x_1, x_15, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); -lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); @@ -3952,7 +3805,6 @@ _start: { lean_object* x_11; x_11 = l_Char_reduceIsAlphaNum___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_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); @@ -3970,7 +3822,7 @@ lean_dec(x_1); return x_10; } } -static lean_object* _init_l___regBuiltin_Char_reduceIsAlphaNum_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_608____closed__1() { +static lean_object* _init_l___regBuiltin_Char_reduceIsAlphaNum_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_565____closed__1() { _start: { lean_object* x_1; @@ -3978,17 +3830,17 @@ x_1 = lean_mk_string_from_bytes("reduceIsAlphaNum", 16); return x_1; } } -static lean_object* _init_l___regBuiltin_Char_reduceIsAlphaNum_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_608____closed__2() { +static lean_object* _init_l___regBuiltin_Char_reduceIsAlphaNum_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_565____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Char_fromExpr_x3f___closed__1; -x_2 = l___regBuiltin_Char_reduceIsAlphaNum_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_608____closed__1; +x_1 = l_Char_reduceToLower___lambda__1___closed__1; +x_2 = l___regBuiltin_Char_reduceIsAlphaNum_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_565____closed__1; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Char_reduceIsAlphaNum_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_608____closed__3() { +static lean_object* _init_l___regBuiltin_Char_reduceIsAlphaNum_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_565____closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -4000,27 +3852,27 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Char_reduceIsAlphaNum_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_608____closed__4() { +static lean_object* _init_l___regBuiltin_Char_reduceIsAlphaNum_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_565____closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_456____closed__4; -x_2 = l___regBuiltin_Char_reduceIsAlphaNum_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_608____closed__3; +x_1 = l___regBuiltin_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_413____closed__4; +x_2 = l___regBuiltin_Char_reduceIsAlphaNum_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_565____closed__3; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Char_reduceIsAlphaNum_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_608____closed__5() { +static lean_object* _init_l___regBuiltin_Char_reduceIsAlphaNum_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_565____closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Char_reduceIsAlphaNum_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_608____closed__4; +x_1 = l___regBuiltin_Char_reduceIsAlphaNum_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_565____closed__4; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Char_reduceIsAlphaNum_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_608____closed__6() { +static lean_object* _init_l___regBuiltin_Char_reduceIsAlphaNum_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_565____closed__6() { _start: { lean_object* x_1; @@ -4028,37 +3880,37 @@ x_1 = lean_alloc_closure((void*)(l_Char_reduceIsAlphaNum___boxed), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_Char_reduceIsAlphaNum_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_608_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Char_reduceIsAlphaNum_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_565_(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_Char_reduceIsAlphaNum_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_608____closed__2; -x_3 = l___regBuiltin_Char_reduceIsAlphaNum_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_608____closed__5; -x_4 = l___regBuiltin_Char_reduceIsAlphaNum_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_608____closed__6; +x_2 = l___regBuiltin_Char_reduceIsAlphaNum_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_565____closed__2; +x_3 = l___regBuiltin_Char_reduceIsAlphaNum_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_565____closed__5; +x_4 = l___regBuiltin_Char_reduceIsAlphaNum_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_565____closed__6; x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); return x_5; } } -LEAN_EXPORT lean_object* l___regBuiltin_Char_reduceIsAlphaNum_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_610_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Char_reduceIsAlphaNum_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_567_(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_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_458____closed__1; -x_3 = l___regBuiltin_Char_reduceIsAlphaNum_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_608____closed__2; +x_2 = l___regBuiltin_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_415____closed__1; +x_3 = l___regBuiltin_Char_reduceIsAlphaNum_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_565____closed__2; x_4 = 1; -x_5 = l___regBuiltin_Char_reduceIsAlphaNum_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_608____closed__6; +x_5 = l___regBuiltin_Char_reduceIsAlphaNum_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_565____closed__6; 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_Char_reduceIsAlphaNum_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_612_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Char_reduceIsAlphaNum_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_569_(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_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_460____closed__1; -x_3 = l___regBuiltin_Char_reduceIsAlphaNum_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_608____closed__2; +x_2 = l___regBuiltin_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_417____closed__1; +x_3 = l___regBuiltin_Char_reduceIsAlphaNum_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_565____closed__2; x_4 = 1; -x_5 = l___regBuiltin_Char_reduceIsAlphaNum_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_608____closed__6; +x_5 = l___regBuiltin_Char_reduceIsAlphaNum_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_565____closed__6; x_6 = l_Lean_Meta_Simp_addSimprocBuiltinAttrCore(x_2, x_3, x_4, x_5, x_1); return x_6; } @@ -4076,7 +3928,7 @@ _start: { lean_object* x_11; lean_object* x_12; x_11 = l_Lean_Expr_appArg_x21(x_1); -x_12 = l_Char_fromExpr_x3f(x_11, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_12 = l_Lean_Meta_getCharValue_x3f(x_11, x_6, x_7, x_8, x_9, x_10); lean_dec(x_11); if (lean_obj_tag(x_12) == 0) { @@ -4248,7 +4100,6 @@ else lean_object* x_15; lean_object* x_16; x_15 = lean_box(0); x_16 = l_Char_reduceToString___lambda__1(x_1, x_15, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); -lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); @@ -4261,7 +4112,6 @@ _start: { lean_object* x_11; x_11 = l_Char_reduceToString___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_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); @@ -4279,7 +4129,7 @@ lean_dec(x_1); return x_10; } } -static lean_object* _init_l___regBuiltin_Char_reduceToString_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_631____closed__1() { +static lean_object* _init_l___regBuiltin_Char_reduceToString_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_588____closed__1() { _start: { lean_object* x_1; @@ -4287,17 +4137,17 @@ x_1 = lean_mk_string_from_bytes("reduceToString", 14); return x_1; } } -static lean_object* _init_l___regBuiltin_Char_reduceToString_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_631____closed__2() { +static lean_object* _init_l___regBuiltin_Char_reduceToString_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_588____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Char_fromExpr_x3f___closed__1; -x_2 = l___regBuiltin_Char_reduceToString_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_631____closed__1; +x_1 = l_Char_reduceToLower___lambda__1___closed__1; +x_2 = l___regBuiltin_Char_reduceToString_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_588____closed__1; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Char_reduceToString_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_631____closed__3() { +static lean_object* _init_l___regBuiltin_Char_reduceToString_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_588____closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -4309,21 +4159,21 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Char_reduceToString_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_631____closed__4() { +static lean_object* _init_l___regBuiltin_Char_reduceToString_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_588____closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Char_fromExpr_x3f___closed__1; +x_2 = l_Char_reduceToLower___lambda__1___closed__1; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Char_reduceToString_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_631____closed__5() { +static lean_object* _init_l___regBuiltin_Char_reduceToString_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_588____closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Char_reduceToString_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_631____closed__4; +x_1 = l___regBuiltin_Char_reduceToString_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_588____closed__4; x_2 = lean_unsigned_to_nat(0u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -4331,7 +4181,7 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Char_reduceToString_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_631____closed__6() { +static lean_object* _init_l___regBuiltin_Char_reduceToString_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_588____closed__6() { _start: { lean_object* x_1; lean_object* x_2; @@ -4340,47 +4190,47 @@ x_2 = lean_mk_empty_array_with_capacity(x_1); return x_2; } } -static lean_object* _init_l___regBuiltin_Char_reduceToString_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_631____closed__7() { +static lean_object* _init_l___regBuiltin_Char_reduceToString_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_588____closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Char_reduceToString_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_631____closed__6; -x_2 = l___regBuiltin_Char_reduceToString_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_631____closed__3; +x_1 = l___regBuiltin_Char_reduceToString_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_588____closed__6; +x_2 = l___regBuiltin_Char_reduceToString_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_588____closed__3; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Char_reduceToString_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_631____closed__8() { +static lean_object* _init_l___regBuiltin_Char_reduceToString_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_588____closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Char_reduceToString_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_631____closed__7; -x_2 = l___regBuiltin_Char_reduceToString_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_631____closed__5; +x_1 = l___regBuiltin_Char_reduceToString_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_588____closed__7; +x_2 = l___regBuiltin_Char_reduceToString_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_588____closed__5; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Char_reduceToString_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_631____closed__9() { +static lean_object* _init_l___regBuiltin_Char_reduceToString_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_588____closed__9() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Char_reduceToString_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_631____closed__8; +x_1 = l___regBuiltin_Char_reduceToString_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_588____closed__8; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Char_reduceToString_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_631____closed__10() { +static lean_object* _init_l___regBuiltin_Char_reduceToString_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_588____closed__10() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Char_reduceToString_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_631____closed__9; +x_1 = l___regBuiltin_Char_reduceToString_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_588____closed__9; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Char_reduceToString_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_631____closed__11() { +static lean_object* _init_l___regBuiltin_Char_reduceToString_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_588____closed__11() { _start: { lean_object* x_1; @@ -4388,47 +4238,152 @@ x_1 = lean_alloc_closure((void*)(l_Char_reduceToString___boxed), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_Char_reduceToString_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_631_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Char_reduceToString_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_588_(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_Char_reduceToString_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_631____closed__2; -x_3 = l___regBuiltin_Char_reduceToString_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_631____closed__10; -x_4 = l___regBuiltin_Char_reduceToString_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_631____closed__11; +x_2 = l___regBuiltin_Char_reduceToString_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_588____closed__2; +x_3 = l___regBuiltin_Char_reduceToString_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_588____closed__10; +x_4 = l___regBuiltin_Char_reduceToString_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_588____closed__11; x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); return x_5; } } -LEAN_EXPORT lean_object* l___regBuiltin_Char_reduceToString_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_633_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Char_reduceToString_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_590_(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_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_458____closed__1; -x_3 = l___regBuiltin_Char_reduceToString_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_631____closed__2; +x_2 = l___regBuiltin_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_415____closed__1; +x_3 = l___regBuiltin_Char_reduceToString_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_588____closed__2; x_4 = 1; -x_5 = l___regBuiltin_Char_reduceToString_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_631____closed__11; +x_5 = l___regBuiltin_Char_reduceToString_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_588____closed__11; 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_Char_reduceToString_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_635_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Char_reduceToString_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_592_(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_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_460____closed__1; -x_3 = l___regBuiltin_Char_reduceToString_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_631____closed__2; +x_2 = l___regBuiltin_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_417____closed__1; +x_3 = l___regBuiltin_Char_reduceToString_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_588____closed__2; x_4 = 1; -x_5 = l___regBuiltin_Char_reduceToString_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_631____closed__11; +x_5 = l___regBuiltin_Char_reduceToString_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_588____closed__11; 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_Char_reduceVal___lambda__1___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("OfNat", 5); +return x_1; +} +} +static lean_object* _init_l_Char_reduceVal___lambda__1___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Char_reduceVal___lambda__1___closed__1; +x_2 = l_Char_reduceToLower___lambda__1___closed__2; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Char_reduceVal___lambda__1___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = lean_unsigned_to_nat(0u); +x_2 = l_Lean_Level_ofNat(x_1); +return x_2; +} +} +static lean_object* _init_l_Char_reduceVal___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_Char_reduceVal___lambda__1___closed__3; +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_Char_reduceVal___lambda__1___closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Char_reduceVal___lambda__1___closed__2; +x_2 = l_Char_reduceVal___lambda__1___closed__4; +x_3 = l_Lean_Expr_const___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Char_reduceVal___lambda__1___closed__6() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("UInt32", 6); +return x_1; +} +} +static lean_object* _init_l_Char_reduceVal___lambda__1___closed__7() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Char_reduceVal___lambda__1___closed__6; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Char_reduceVal___lambda__1___closed__8() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Char_reduceVal___lambda__1___closed__7; +x_3 = l_Lean_Expr_const___override(x_2, x_1); +return x_3; +} +} +static lean_object* _init_l_Char_reduceVal___lambda__1___closed__9() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("instOfNat", 9); +return x_1; +} +} +static lean_object* _init_l_Char_reduceVal___lambda__1___closed__10() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Char_reduceVal___lambda__1___closed__6; +x_2 = l_Char_reduceVal___lambda__1___closed__9; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Char_reduceVal___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_Char_reduceVal___lambda__1___closed__10; +x_3 = l_Lean_Expr_const___override(x_2, x_1); +return x_3; +} +} LEAN_EXPORT lean_object* l_Char_reduceVal___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; x_11 = l_Lean_Expr_appArg_x21(x_1); -x_12 = l_Char_fromExpr_x3f(x_11, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_12 = l_Lean_Meta_getCharValue_x3f(x_11, x_6, x_7, x_8, x_9, x_10); lean_dec(x_11); if (lean_obj_tag(x_12) == 0) { @@ -4467,7 +4422,7 @@ uint8_t x_20; x_20 = !lean_is_exclusive(x_12); if (x_20 == 0) { -lean_object* x_21; lean_object* x_22; uint32_t x_23; lean_object* x_24; lean_object* x_25; uint32_t x_26; uint8_t x_27; lean_object* x_28; lean_object* x_29; +lean_object* x_21; lean_object* x_22; uint32_t 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; uint32_t x_32; uint8_t x_33; lean_object* x_34; lean_object* x_35; x_21 = lean_ctor_get(x_12, 0); lean_dec(x_21); x_22 = lean_ctor_get(x_13, 0); @@ -4475,69 +4430,83 @@ lean_inc(x_22); lean_dec(x_13); x_23 = lean_unbox_uint32(x_22); lean_dec(x_22); -x_24 = l_UInt32_toExprCore(x_23); -x_25 = lean_box(0); -x_26 = 0; -x_27 = 1; -x_28 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_28, 0, x_24); -lean_ctor_set(x_28, 1, x_25); -lean_ctor_set_uint32(x_28, sizeof(void*)*2, x_26); -lean_ctor_set_uint8(x_28, sizeof(void*)*2 + 4, x_27); -x_29 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_29, 0, x_28); -lean_ctor_set(x_12, 0, x_29); +x_24 = lean_uint32_to_nat(x_23); +x_25 = l_Lean_mkRawNatLit(x_24); +x_26 = l_Char_reduceVal___lambda__1___closed__11; +lean_inc(x_25); +x_27 = l_Lean_Expr_app___override(x_26, x_25); +x_28 = l_Char_reduceVal___lambda__1___closed__5; +x_29 = l_Char_reduceVal___lambda__1___closed__8; +x_30 = l_Lean_mkApp3(x_28, x_29, x_25, x_27); +x_31 = lean_box(0); +x_32 = 0; +x_33 = 1; +x_34 = lean_alloc_ctor(0, 2, 5); +lean_ctor_set(x_34, 0, x_30); +lean_ctor_set(x_34, 1, x_31); +lean_ctor_set_uint32(x_34, sizeof(void*)*2, x_32); +lean_ctor_set_uint8(x_34, sizeof(void*)*2 + 4, x_33); +x_35 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_35, 0, x_34); +lean_ctor_set(x_12, 0, x_35); return x_12; } else { -lean_object* x_30; lean_object* x_31; uint32_t x_32; lean_object* x_33; lean_object* x_34; uint32_t x_35; uint8_t x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; -x_30 = lean_ctor_get(x_12, 1); -lean_inc(x_30); +lean_object* x_36; lean_object* x_37; uint32_t 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; uint32_t x_47; uint8_t x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; +x_36 = lean_ctor_get(x_12, 1); +lean_inc(x_36); lean_dec(x_12); -x_31 = lean_ctor_get(x_13, 0); -lean_inc(x_31); +x_37 = lean_ctor_get(x_13, 0); +lean_inc(x_37); lean_dec(x_13); -x_32 = lean_unbox_uint32(x_31); -lean_dec(x_31); -x_33 = l_UInt32_toExprCore(x_32); -x_34 = lean_box(0); -x_35 = 0; -x_36 = 1; -x_37 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_37, 0, x_33); -lean_ctor_set(x_37, 1, x_34); -lean_ctor_set_uint32(x_37, sizeof(void*)*2, x_35); -lean_ctor_set_uint8(x_37, sizeof(void*)*2 + 4, x_36); -x_38 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_38, 0, x_37); -x_39 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_39, 0, x_38); -lean_ctor_set(x_39, 1, x_30); -return x_39; +x_38 = lean_unbox_uint32(x_37); +lean_dec(x_37); +x_39 = lean_uint32_to_nat(x_38); +x_40 = l_Lean_mkRawNatLit(x_39); +x_41 = l_Char_reduceVal___lambda__1___closed__11; +lean_inc(x_40); +x_42 = l_Lean_Expr_app___override(x_41, x_40); +x_43 = l_Char_reduceVal___lambda__1___closed__5; +x_44 = l_Char_reduceVal___lambda__1___closed__8; +x_45 = l_Lean_mkApp3(x_43, x_44, x_40, x_42); +x_46 = lean_box(0); +x_47 = 0; +x_48 = 1; +x_49 = lean_alloc_ctor(0, 2, 5); +lean_ctor_set(x_49, 0, x_45); +lean_ctor_set(x_49, 1, x_46); +lean_ctor_set_uint32(x_49, sizeof(void*)*2, x_47); +lean_ctor_set_uint8(x_49, sizeof(void*)*2 + 4, x_48); +x_50 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_50, 0, x_49); +x_51 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_51, 0, x_50); +lean_ctor_set(x_51, 1, x_36); +return x_51; } } } else { -uint8_t x_40; -x_40 = !lean_is_exclusive(x_12); -if (x_40 == 0) +uint8_t x_52; +x_52 = !lean_is_exclusive(x_12); +if (x_52 == 0) { return x_12; } else { -lean_object* x_41; lean_object* x_42; lean_object* x_43; -x_41 = lean_ctor_get(x_12, 0); -x_42 = lean_ctor_get(x_12, 1); -lean_inc(x_42); -lean_inc(x_41); +lean_object* x_53; lean_object* x_54; lean_object* x_55; +x_53 = lean_ctor_get(x_12, 0); +x_54 = lean_ctor_get(x_12, 1); +lean_inc(x_54); +lean_inc(x_53); lean_dec(x_12); -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; +x_55 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_55, 0, x_53); +lean_ctor_set(x_55, 1, x_54); +return x_55; } } } @@ -4554,7 +4523,7 @@ static lean_object* _init_l_Char_reduceVal___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Char_fromExpr_x3f___closed__1; +x_1 = l_Char_reduceToLower___lambda__1___closed__1; x_2 = l_Char_reduceVal___closed__1; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; @@ -4588,7 +4557,6 @@ else lean_object* x_15; lean_object* x_16; x_15 = lean_box(0); x_16 = l_Char_reduceVal___lambda__1(x_1, x_15, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); -lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); @@ -4601,7 +4569,6 @@ _start: { lean_object* x_11; x_11 = l_Char_reduceVal___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_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); @@ -4619,7 +4586,7 @@ lean_dec(x_1); return x_10; } } -static lean_object* _init_l___regBuiltin_Char_reduceVal_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_739____closed__1() { +static lean_object* _init_l___regBuiltin_Char_reduceVal_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_696____closed__1() { _start: { lean_object* x_1; @@ -4627,21 +4594,21 @@ x_1 = lean_mk_string_from_bytes("reduceVal", 9); return x_1; } } -static lean_object* _init_l___regBuiltin_Char_reduceVal_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_739____closed__2() { +static lean_object* _init_l___regBuiltin_Char_reduceVal_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_696____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Char_fromExpr_x3f___closed__1; -x_2 = l___regBuiltin_Char_reduceVal_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_739____closed__1; +x_1 = l_Char_reduceToLower___lambda__1___closed__1; +x_2 = l___regBuiltin_Char_reduceVal_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_696____closed__1; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Char_reduceVal_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_739____closed__3() { +static lean_object* _init_l___regBuiltin_Char_reduceVal_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_696____closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Char_reduceToString_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_631____closed__4; +x_1 = l___regBuiltin_Char_reduceToString_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_588____closed__4; x_2 = lean_unsigned_to_nat(0u); x_3 = lean_alloc_ctor(6, 3, 0); lean_ctor_set(x_3, 0, x_1); @@ -4650,27 +4617,27 @@ lean_ctor_set(x_3, 2, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Char_reduceVal_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_739____closed__4() { +static lean_object* _init_l___regBuiltin_Char_reduceVal_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_696____closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_456____closed__4; -x_2 = l___regBuiltin_Char_reduceVal_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_739____closed__3; +x_1 = l___regBuiltin_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_413____closed__4; +x_2 = l___regBuiltin_Char_reduceVal_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_696____closed__3; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Char_reduceVal_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_739____closed__5() { +static lean_object* _init_l___regBuiltin_Char_reduceVal_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_696____closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Char_reduceVal_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_739____closed__4; +x_1 = l___regBuiltin_Char_reduceVal_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_696____closed__4; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Char_reduceVal_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_739____closed__6() { +static lean_object* _init_l___regBuiltin_Char_reduceVal_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_696____closed__6() { _start: { lean_object* x_1; @@ -4678,37 +4645,37 @@ x_1 = lean_alloc_closure((void*)(l_Char_reduceVal___boxed), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_Char_reduceVal_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_739_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Char_reduceVal_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_696_(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_Char_reduceVal_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_739____closed__2; -x_3 = l___regBuiltin_Char_reduceVal_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_739____closed__5; -x_4 = l___regBuiltin_Char_reduceVal_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_739____closed__6; +x_2 = l___regBuiltin_Char_reduceVal_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_696____closed__2; +x_3 = l___regBuiltin_Char_reduceVal_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_696____closed__5; +x_4 = l___regBuiltin_Char_reduceVal_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_696____closed__6; x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); return x_5; } } -LEAN_EXPORT lean_object* l___regBuiltin_Char_reduceVal_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_741_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Char_reduceVal_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_698_(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_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_458____closed__1; -x_3 = l___regBuiltin_Char_reduceVal_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_739____closed__2; +x_2 = l___regBuiltin_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_415____closed__1; +x_3 = l___regBuiltin_Char_reduceVal_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_696____closed__2; x_4 = 1; -x_5 = l___regBuiltin_Char_reduceVal_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_739____closed__6; +x_5 = l___regBuiltin_Char_reduceVal_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_696____closed__6; 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_Char_reduceVal_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_743_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Char_reduceVal_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_700_(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_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_460____closed__1; -x_3 = l___regBuiltin_Char_reduceVal_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_739____closed__2; +x_2 = l___regBuiltin_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_417____closed__1; +x_3 = l___regBuiltin_Char_reduceVal_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_696____closed__2; x_4 = 1; -x_5 = l___regBuiltin_Char_reduceVal_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_739____closed__6; +x_5 = l___regBuiltin_Char_reduceVal_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_696____closed__6; x_6 = l_Lean_Meta_Simp_addSimprocBuiltinAttrCore(x_2, x_3, x_4, x_5, x_1); return x_6; } @@ -4724,7 +4691,8 @@ lean_dec(x_11); lean_inc(x_9); lean_inc(x_8); lean_inc(x_7); -x_13 = l_Char_fromExpr_x3f(x_12, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_inc(x_6); +x_13 = l_Lean_Meta_getCharValue_x3f(x_12, x_6, x_7, x_8, x_9, x_10); lean_dec(x_12); if (lean_obj_tag(x_13) == 0) { @@ -4775,7 +4743,8 @@ x_23 = l_Lean_Expr_appArg_x21(x_1); lean_inc(x_9); lean_inc(x_8); lean_inc(x_7); -x_24 = l_Char_fromExpr_x3f(x_23, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_21); +lean_inc(x_6); +x_24 = l_Lean_Meta_getCharValue_x3f(x_23, x_6, x_7, x_8, x_9, x_21); lean_dec(x_23); if (lean_obj_tag(x_24) == 0) { @@ -4957,7 +4926,7 @@ lean_dec(x_2); return x_11; } } -static lean_object* _init_l___regBuiltin_Char_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_780____closed__1() { +static lean_object* _init_l___regBuiltin_Char_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_737____closed__1() { _start: { lean_object* x_1; @@ -4965,17 +4934,17 @@ x_1 = lean_mk_string_from_bytes("reduceEq", 8); return x_1; } } -static lean_object* _init_l___regBuiltin_Char_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_780____closed__2() { +static lean_object* _init_l___regBuiltin_Char_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_737____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Char_fromExpr_x3f___closed__1; -x_2 = l___regBuiltin_Char_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_780____closed__1; +x_1 = l_Char_reduceToLower___lambda__1___closed__1; +x_2 = l___regBuiltin_Char_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_737____closed__1; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Char_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_780____closed__3() { +static lean_object* _init_l___regBuiltin_Char_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_737____closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -4987,47 +4956,47 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Char_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_780____closed__4() { +static lean_object* _init_l___regBuiltin_Char_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_737____closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Char_reduceToString_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_631____closed__6; -x_2 = l___regBuiltin_Char_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_780____closed__3; +x_1 = l___regBuiltin_Char_reduceToString_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_588____closed__6; +x_2 = l___regBuiltin_Char_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_737____closed__3; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Char_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_780____closed__5() { +static lean_object* _init_l___regBuiltin_Char_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_737____closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Char_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_780____closed__4; -x_2 = l___regBuiltin_Char_reduceToString_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_631____closed__5; +x_1 = l___regBuiltin_Char_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_737____closed__4; +x_2 = l___regBuiltin_Char_reduceToString_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_588____closed__5; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Char_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_780____closed__6() { +static lean_object* _init_l___regBuiltin_Char_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_737____closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Char_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_780____closed__5; +x_1 = l___regBuiltin_Char_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_737____closed__5; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Char_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_780____closed__7() { +static lean_object* _init_l___regBuiltin_Char_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_737____closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Char_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_780____closed__6; +x_1 = l___regBuiltin_Char_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_737____closed__6; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Char_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_780____closed__8() { +static lean_object* _init_l___regBuiltin_Char_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_737____closed__8() { _start: { lean_object* x_1; @@ -5035,37 +5004,37 @@ x_1 = lean_alloc_closure((void*)(l_Char_reduceEq), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_Char_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_780_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Char_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_737_(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_Char_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_780____closed__2; -x_3 = l___regBuiltin_Char_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_780____closed__7; -x_4 = l___regBuiltin_Char_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_780____closed__8; +x_2 = l___regBuiltin_Char_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_737____closed__2; +x_3 = l___regBuiltin_Char_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_737____closed__7; +x_4 = l___regBuiltin_Char_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_737____closed__8; x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); return x_5; } } -LEAN_EXPORT lean_object* l___regBuiltin_Char_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_782_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Char_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_739_(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_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_458____closed__1; -x_3 = l___regBuiltin_Char_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_780____closed__2; +x_2 = l___regBuiltin_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_415____closed__1; +x_3 = l___regBuiltin_Char_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_737____closed__2; x_4 = 1; -x_5 = l___regBuiltin_Char_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_780____closed__8; +x_5 = l___regBuiltin_Char_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_737____closed__8; 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_Char_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_784_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Char_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_741_(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_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_460____closed__1; -x_3 = l___regBuiltin_Char_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_780____closed__2; +x_2 = l___regBuiltin_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_417____closed__1; +x_3 = l___regBuiltin_Char_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_737____closed__2; x_4 = 1; -x_5 = l___regBuiltin_Char_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_780____closed__8; +x_5 = l___regBuiltin_Char_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_737____closed__8; x_6 = l_Lean_Meta_Simp_addSimprocBuiltinAttrCore(x_2, x_3, x_4, x_5, x_1); return x_6; } @@ -5081,7 +5050,8 @@ lean_dec(x_11); lean_inc(x_9); lean_inc(x_8); lean_inc(x_7); -x_13 = l_Char_fromExpr_x3f(x_12, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_inc(x_6); +x_13 = l_Lean_Meta_getCharValue_x3f(x_12, x_6, x_7, x_8, x_9, x_10); lean_dec(x_12); if (lean_obj_tag(x_13) == 0) { @@ -5132,7 +5102,8 @@ x_23 = l_Lean_Expr_appArg_x21(x_1); lean_inc(x_9); lean_inc(x_8); lean_inc(x_7); -x_24 = l_Char_fromExpr_x3f(x_23, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_21); +lean_inc(x_6); +x_24 = l_Lean_Meta_getCharValue_x3f(x_23, x_6, x_7, x_8, x_9, x_21); lean_dec(x_23); if (lean_obj_tag(x_24) == 0) { @@ -5315,7 +5286,7 @@ lean_dec(x_2); return x_11; } } -static lean_object* _init_l___regBuiltin_Char_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_820____closed__1() { +static lean_object* _init_l___regBuiltin_Char_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_777____closed__1() { _start: { lean_object* x_1; @@ -5323,17 +5294,17 @@ x_1 = lean_mk_string_from_bytes("reduceNe", 8); return x_1; } } -static lean_object* _init_l___regBuiltin_Char_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_820____closed__2() { +static lean_object* _init_l___regBuiltin_Char_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_777____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Char_fromExpr_x3f___closed__1; -x_2 = l___regBuiltin_Char_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_820____closed__1; +x_1 = l_Char_reduceToLower___lambda__1___closed__1; +x_2 = l___regBuiltin_Char_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_777____closed__1; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Char_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_820____closed__3() { +static lean_object* _init_l___regBuiltin_Char_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_777____closed__3() { _start: { lean_object* x_1; @@ -5341,21 +5312,21 @@ x_1 = lean_mk_string_from_bytes("Not", 3); return x_1; } } -static lean_object* _init_l___regBuiltin_Char_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_820____closed__4() { +static lean_object* _init_l___regBuiltin_Char_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_777____closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___regBuiltin_Char_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_820____closed__3; +x_2 = l___regBuiltin_Char_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_777____closed__3; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Char_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_820____closed__5() { +static lean_object* _init_l___regBuiltin_Char_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_777____closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Char_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_820____closed__4; +x_1 = l___regBuiltin_Char_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_777____closed__4; x_2 = lean_unsigned_to_nat(1u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -5363,7 +5334,7 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Char_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_820____closed__6() { +static lean_object* _init_l___regBuiltin_Char_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_777____closed__6() { _start: { lean_object* x_1; lean_object* x_2; @@ -5372,57 +5343,57 @@ x_2 = lean_mk_empty_array_with_capacity(x_1); return x_2; } } -static lean_object* _init_l___regBuiltin_Char_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_820____closed__7() { +static lean_object* _init_l___regBuiltin_Char_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_777____closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Char_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_820____closed__6; -x_2 = l___regBuiltin_Char_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_820____closed__5; +x_1 = l___regBuiltin_Char_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_777____closed__6; +x_2 = l___regBuiltin_Char_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_777____closed__5; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Char_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_820____closed__8() { +static lean_object* _init_l___regBuiltin_Char_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_777____closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Char_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_820____closed__7; -x_2 = l___regBuiltin_Char_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_780____closed__3; +x_1 = l___regBuiltin_Char_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_777____closed__7; +x_2 = l___regBuiltin_Char_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_737____closed__3; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Char_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_820____closed__9() { +static lean_object* _init_l___regBuiltin_Char_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_777____closed__9() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Char_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_820____closed__8; -x_2 = l___regBuiltin_Char_reduceToString_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_631____closed__5; +x_1 = l___regBuiltin_Char_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_777____closed__8; +x_2 = l___regBuiltin_Char_reduceToString_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_588____closed__5; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Char_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_820____closed__10() { +static lean_object* _init_l___regBuiltin_Char_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_777____closed__10() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Char_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_820____closed__9; +x_1 = l___regBuiltin_Char_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_777____closed__9; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Char_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_820____closed__11() { +static lean_object* _init_l___regBuiltin_Char_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_777____closed__11() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Char_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_820____closed__10; +x_1 = l___regBuiltin_Char_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_777____closed__10; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Char_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_820____closed__12() { +static lean_object* _init_l___regBuiltin_Char_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_777____closed__12() { _start: { lean_object* x_1; @@ -5430,37 +5401,37 @@ x_1 = lean_alloc_closure((void*)(l_Char_reduceNe), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_Char_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_820_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Char_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_777_(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_Char_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_820____closed__2; -x_3 = l___regBuiltin_Char_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_820____closed__11; -x_4 = l___regBuiltin_Char_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_820____closed__12; +x_2 = l___regBuiltin_Char_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_777____closed__2; +x_3 = l___regBuiltin_Char_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_777____closed__11; +x_4 = l___regBuiltin_Char_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_777____closed__12; x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); return x_5; } } -LEAN_EXPORT lean_object* l___regBuiltin_Char_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_822_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Char_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_779_(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_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_458____closed__1; -x_3 = l___regBuiltin_Char_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_820____closed__2; +x_2 = l___regBuiltin_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_415____closed__1; +x_3 = l___regBuiltin_Char_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_777____closed__2; x_4 = 1; -x_5 = l___regBuiltin_Char_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_820____closed__12; +x_5 = l___regBuiltin_Char_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_777____closed__12; 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_Char_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_824_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Char_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_781_(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_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_460____closed__1; -x_3 = l___regBuiltin_Char_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_820____closed__2; +x_2 = l___regBuiltin_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_417____closed__1; +x_3 = l___regBuiltin_Char_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_777____closed__2; x_4 = 1; -x_5 = l___regBuiltin_Char_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_820____closed__12; +x_5 = l___regBuiltin_Char_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_777____closed__12; x_6 = l_Lean_Meta_Simp_addSimprocBuiltinAttrCore(x_2, x_3, x_4, x_5, x_1); return x_6; } @@ -5476,7 +5447,8 @@ lean_dec(x_11); lean_inc(x_9); lean_inc(x_8); lean_inc(x_7); -x_13 = l_Char_fromExpr_x3f(x_12, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_inc(x_6); +x_13 = l_Lean_Meta_getCharValue_x3f(x_12, x_6, x_7, x_8, x_9, x_10); lean_dec(x_12); if (lean_obj_tag(x_13) == 0) { @@ -5489,6 +5461,7 @@ uint8_t x_15; lean_dec(x_9); lean_dec(x_8); lean_dec(x_7); +lean_dec(x_6); lean_dec(x_1); x_15 = !lean_is_exclusive(x_13); if (x_15 == 0) @@ -5524,7 +5497,7 @@ lean_inc(x_22); lean_dec(x_14); x_23 = l_Lean_Expr_appArg_x21(x_1); lean_dec(x_1); -x_24 = l_Char_fromExpr_x3f(x_23, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_21); +x_24 = l_Lean_Meta_getCharValue_x3f(x_23, x_6, x_7, x_8, x_9, x_21); lean_dec(x_23); if (lean_obj_tag(x_24) == 0) { @@ -5656,6 +5629,7 @@ uint8_t x_53; lean_dec(x_9); lean_dec(x_8); lean_dec(x_7); +lean_dec(x_6); lean_dec(x_1); x_53 = !lean_is_exclusive(x_13); if (x_53 == 0) @@ -5733,7 +5707,6 @@ else lean_object* x_15; lean_object* x_16; x_15 = lean_box(0); x_16 = l_Char_reduceBEq___lambda__1(x_1, x_15, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); -lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); @@ -5746,7 +5719,6 @@ _start: { lean_object* x_11; x_11 = l_Char_reduceBEq___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_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); @@ -5754,7 +5726,7 @@ lean_dec(x_2); return x_11; } } -static lean_object* _init_l___regBuiltin_Char_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_861____closed__1() { +static lean_object* _init_l___regBuiltin_Char_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_818____closed__1() { _start: { lean_object* x_1; @@ -5762,17 +5734,17 @@ x_1 = lean_mk_string_from_bytes("reduceBEq", 9); return x_1; } } -static lean_object* _init_l___regBuiltin_Char_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_861____closed__2() { +static lean_object* _init_l___regBuiltin_Char_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_818____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Char_fromExpr_x3f___closed__1; -x_2 = l___regBuiltin_Char_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_861____closed__1; +x_1 = l_Char_reduceToLower___lambda__1___closed__1; +x_2 = l___regBuiltin_Char_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_818____closed__1; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Char_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_861____closed__3() { +static lean_object* _init_l___regBuiltin_Char_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_818____closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -5784,57 +5756,57 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Char_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_861____closed__4() { +static lean_object* _init_l___regBuiltin_Char_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_818____closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Char_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_820____closed__6; -x_2 = l___regBuiltin_Char_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_861____closed__3; +x_1 = l___regBuiltin_Char_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_777____closed__6; +x_2 = l___regBuiltin_Char_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_818____closed__3; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Char_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_861____closed__5() { +static lean_object* _init_l___regBuiltin_Char_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_818____closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Char_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_861____closed__4; -x_2 = l___regBuiltin_Char_reduceToString_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_631____closed__5; +x_1 = l___regBuiltin_Char_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_818____closed__4; +x_2 = l___regBuiltin_Char_reduceToString_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_588____closed__5; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Char_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_861____closed__6() { +static lean_object* _init_l___regBuiltin_Char_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_818____closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Char_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_861____closed__5; +x_1 = l___regBuiltin_Char_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_818____closed__5; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Char_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_861____closed__7() { +static lean_object* _init_l___regBuiltin_Char_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_818____closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Char_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_861____closed__6; +x_1 = l___regBuiltin_Char_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_818____closed__6; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Char_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_861____closed__8() { +static lean_object* _init_l___regBuiltin_Char_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_818____closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Char_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_861____closed__7; +x_1 = l___regBuiltin_Char_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_818____closed__7; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Char_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_861____closed__9() { +static lean_object* _init_l___regBuiltin_Char_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_818____closed__9() { _start: { lean_object* x_1; @@ -5842,37 +5814,37 @@ x_1 = lean_alloc_closure((void*)(l_Char_reduceBEq), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_Char_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_861_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Char_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_818_(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_Char_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_861____closed__2; -x_3 = l___regBuiltin_Char_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_861____closed__8; -x_4 = l___regBuiltin_Char_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_861____closed__9; +x_2 = l___regBuiltin_Char_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_818____closed__2; +x_3 = l___regBuiltin_Char_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_818____closed__8; +x_4 = l___regBuiltin_Char_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_818____closed__9; x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); return x_5; } } -LEAN_EXPORT lean_object* l___regBuiltin_Char_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_863_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Char_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_820_(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_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_458____closed__1; -x_3 = l___regBuiltin_Char_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_861____closed__2; +x_2 = l___regBuiltin_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_415____closed__1; +x_3 = l___regBuiltin_Char_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_818____closed__2; x_4 = 1; -x_5 = l___regBuiltin_Char_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_861____closed__9; +x_5 = l___regBuiltin_Char_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_818____closed__9; 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_Char_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_865_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Char_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_822_(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_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_460____closed__1; -x_3 = l___regBuiltin_Char_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_861____closed__2; +x_2 = l___regBuiltin_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_417____closed__1; +x_3 = l___regBuiltin_Char_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_818____closed__2; x_4 = 1; -x_5 = l___regBuiltin_Char_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_861____closed__9; +x_5 = l___regBuiltin_Char_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_818____closed__9; x_6 = l_Lean_Meta_Simp_addSimprocBuiltinAttrCore(x_2, x_3, x_4, x_5, x_1); return x_6; } @@ -5888,7 +5860,8 @@ lean_dec(x_11); lean_inc(x_9); lean_inc(x_8); lean_inc(x_7); -x_13 = l_Char_fromExpr_x3f(x_12, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_inc(x_6); +x_13 = l_Lean_Meta_getCharValue_x3f(x_12, x_6, x_7, x_8, x_9, x_10); lean_dec(x_12); if (lean_obj_tag(x_13) == 0) { @@ -5901,6 +5874,7 @@ uint8_t x_15; lean_dec(x_9); lean_dec(x_8); lean_dec(x_7); +lean_dec(x_6); lean_dec(x_1); x_15 = !lean_is_exclusive(x_13); if (x_15 == 0) @@ -5936,7 +5910,7 @@ lean_inc(x_22); lean_dec(x_14); x_23 = l_Lean_Expr_appArg_x21(x_1); lean_dec(x_1); -x_24 = l_Char_fromExpr_x3f(x_23, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_21); +x_24 = l_Lean_Meta_getCharValue_x3f(x_23, x_6, x_7, x_8, x_9, x_21); lean_dec(x_23); if (lean_obj_tag(x_24) == 0) { @@ -6068,6 +6042,7 @@ uint8_t x_53; lean_dec(x_9); lean_dec(x_8); lean_dec(x_7); +lean_dec(x_6); lean_dec(x_1); x_53 = !lean_is_exclusive(x_13); if (x_53 == 0) @@ -6137,7 +6112,6 @@ else lean_object* x_15; lean_object* x_16; x_15 = lean_box(0); x_16 = l_Char_reduceBNe___lambda__1(x_1, x_15, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); -lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); @@ -6150,7 +6124,6 @@ _start: { lean_object* x_11; x_11 = l_Char_reduceBNe___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_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); @@ -6158,7 +6131,7 @@ lean_dec(x_2); return x_11; } } -static lean_object* _init_l___regBuiltin_Char_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_901____closed__1() { +static lean_object* _init_l___regBuiltin_Char_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_858____closed__1() { _start: { lean_object* x_1; @@ -6166,17 +6139,17 @@ x_1 = lean_mk_string_from_bytes("reduceBNe", 9); return x_1; } } -static lean_object* _init_l___regBuiltin_Char_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_901____closed__2() { +static lean_object* _init_l___regBuiltin_Char_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_858____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Char_fromExpr_x3f___closed__1; -x_2 = l___regBuiltin_Char_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_901____closed__1; +x_1 = l_Char_reduceToLower___lambda__1___closed__1; +x_2 = l___regBuiltin_Char_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_858____closed__1; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Char_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_901____closed__3() { +static lean_object* _init_l___regBuiltin_Char_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_858____closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -6188,57 +6161,57 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Char_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_901____closed__4() { +static lean_object* _init_l___regBuiltin_Char_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_858____closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Char_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_820____closed__6; -x_2 = l___regBuiltin_Char_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_901____closed__3; +x_1 = l___regBuiltin_Char_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_777____closed__6; +x_2 = l___regBuiltin_Char_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_858____closed__3; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Char_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_901____closed__5() { +static lean_object* _init_l___regBuiltin_Char_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_858____closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Char_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_901____closed__4; -x_2 = l___regBuiltin_Char_reduceToString_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_631____closed__5; +x_1 = l___regBuiltin_Char_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_858____closed__4; +x_2 = l___regBuiltin_Char_reduceToString_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_588____closed__5; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Char_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_901____closed__6() { +static lean_object* _init_l___regBuiltin_Char_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_858____closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Char_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_901____closed__5; +x_1 = l___regBuiltin_Char_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_858____closed__5; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Char_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_901____closed__7() { +static lean_object* _init_l___regBuiltin_Char_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_858____closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Char_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_901____closed__6; +x_1 = l___regBuiltin_Char_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_858____closed__6; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Char_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_901____closed__8() { +static lean_object* _init_l___regBuiltin_Char_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_858____closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Char_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_901____closed__7; +x_1 = l___regBuiltin_Char_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_858____closed__7; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Char_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_901____closed__9() { +static lean_object* _init_l___regBuiltin_Char_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_858____closed__9() { _start: { lean_object* x_1; @@ -6246,37 +6219,37 @@ x_1 = lean_alloc_closure((void*)(l_Char_reduceBNe), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_Char_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_901_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Char_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_858_(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_Char_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_901____closed__2; -x_3 = l___regBuiltin_Char_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_901____closed__8; -x_4 = l___regBuiltin_Char_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_901____closed__9; +x_2 = l___regBuiltin_Char_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_858____closed__2; +x_3 = l___regBuiltin_Char_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_858____closed__8; +x_4 = l___regBuiltin_Char_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_858____closed__9; x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); return x_5; } } -LEAN_EXPORT lean_object* l___regBuiltin_Char_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_903_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Char_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_860_(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_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_458____closed__1; -x_3 = l___regBuiltin_Char_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_901____closed__2; +x_2 = l___regBuiltin_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_415____closed__1; +x_3 = l___regBuiltin_Char_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_858____closed__2; x_4 = 1; -x_5 = l___regBuiltin_Char_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_901____closed__9; +x_5 = l___regBuiltin_Char_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_858____closed__9; 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_Char_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_905_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Char_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_862_(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_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_460____closed__1; -x_3 = l___regBuiltin_Char_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_901____closed__2; +x_2 = l___regBuiltin_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_417____closed__1; +x_3 = l___regBuiltin_Char_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_858____closed__2; x_4 = 1; -x_5 = l___regBuiltin_Char_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_901____closed__9; +x_5 = l___regBuiltin_Char_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_858____closed__9; x_6 = l_Lean_Meta_Simp_addSimprocBuiltinAttrCore(x_2, x_3, x_4, x_5, x_1); return x_6; } @@ -6308,7 +6281,8 @@ lean_object* x_10; lean_inc(x_8); lean_inc(x_7); lean_inc(x_6); -x_10 = l_Char_fromExpr_x3f(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +lean_inc(x_5); +x_10 = l_Lean_Meta_getCharValue_x3f(x_1, x_5, x_6, x_7, x_8, x_9); if (lean_obj_tag(x_10) == 0) { lean_object* x_11; @@ -6415,7 +6389,7 @@ lean_dec(x_2); return x_11; } } -static lean_object* _init_l___regBuiltin_Char_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_990____closed__1() { +static lean_object* _init_l___regBuiltin_Char_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_947____closed__1() { _start: { lean_object* x_1; @@ -6423,21 +6397,21 @@ x_1 = lean_mk_string_from_bytes("isValue", 7); return x_1; } } -static lean_object* _init_l___regBuiltin_Char_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_990____closed__2() { +static lean_object* _init_l___regBuiltin_Char_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_947____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Char_fromExpr_x3f___closed__1; -x_2 = l___regBuiltin_Char_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_990____closed__1; +x_1 = l_Char_reduceToLower___lambda__1___closed__1; +x_2 = l___regBuiltin_Char_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_947____closed__1; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Char_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_990____closed__3() { +static lean_object* _init_l___regBuiltin_Char_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_947____closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Char_fromExpr_x3f___closed__3; +x_1 = l_Char_reduceToLower___lambda__1___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); @@ -6445,27 +6419,27 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Char_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_990____closed__4() { +static lean_object* _init_l___regBuiltin_Char_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_947____closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_456____closed__4; -x_2 = l___regBuiltin_Char_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_990____closed__3; +x_1 = l___regBuiltin_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_413____closed__4; +x_2 = l___regBuiltin_Char_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_947____closed__3; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Char_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_990____closed__5() { +static lean_object* _init_l___regBuiltin_Char_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_947____closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Char_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_990____closed__4; +x_1 = l___regBuiltin_Char_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_947____closed__4; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Char_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_990____closed__6() { +static lean_object* _init_l___regBuiltin_Char_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_947____closed__6() { _start: { lean_object* x_1; @@ -6473,37 +6447,37 @@ x_1 = lean_alloc_closure((void*)(l_Char_isValue), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_Char_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_990_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Char_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_947_(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_Char_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_990____closed__2; -x_3 = l___regBuiltin_Char_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_990____closed__5; -x_4 = l___regBuiltin_Char_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_990____closed__6; +x_2 = l___regBuiltin_Char_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_947____closed__2; +x_3 = l___regBuiltin_Char_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_947____closed__5; +x_4 = l___regBuiltin_Char_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_947____closed__6; x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); return x_5; } } -LEAN_EXPORT lean_object* l___regBuiltin_Char_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_992_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Char_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_949_(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_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_458____closed__1; -x_3 = l___regBuiltin_Char_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_990____closed__2; +x_2 = l___regBuiltin_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_415____closed__1; +x_3 = l___regBuiltin_Char_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_947____closed__2; x_4 = 0; -x_5 = l___regBuiltin_Char_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_990____closed__6; +x_5 = l___regBuiltin_Char_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_947____closed__6; 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_Char_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_994_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Char_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_951_(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_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_460____closed__1; -x_3 = l___regBuiltin_Char_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_990____closed__2; +x_2 = l___regBuiltin_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_417____closed__1; +x_3 = l___regBuiltin_Char_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_947____closed__2; x_4 = 0; -x_5 = l___regBuiltin_Char_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_990____closed__6; +x_5 = l___regBuiltin_Char_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_947____closed__6; x_6 = l_Lean_Meta_Simp_addSimprocBuiltinAttrCore(x_2, x_3, x_4, x_5, x_1); return x_6; } @@ -6515,7 +6489,7 @@ lean_object* x_11; lean_object* x_12; lean_object* x_13; x_11 = l_Lean_Expr_appFn_x21(x_1); x_12 = l_Lean_Expr_appArg_x21(x_11); lean_dec(x_11); -x_13 = l_Nat_fromExpr_x3f(x_12, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_13 = l_Lean_Meta_getNatValue_x3f(x_12, x_6, x_7, x_8, x_9, x_10); if (lean_obj_tag(x_13) == 0) { lean_object* x_14; @@ -6565,7 +6539,7 @@ x_25 = lean_unbox_uint32(x_24); lean_dec(x_24); x_26 = lean_uint32_to_nat(x_25); x_27 = l_Lean_mkRawNatLit(x_26); -x_28 = l_Char_reduceToLower___lambda__1___closed__1; +x_28 = l_Char_reduceToLower___lambda__1___closed__4; x_29 = l_Lean_Expr_app___override(x_28, x_27); x_30 = lean_box(0); x_31 = 0; @@ -6595,7 +6569,7 @@ x_38 = lean_unbox_uint32(x_37); lean_dec(x_37); x_39 = lean_uint32_to_nat(x_38); x_40 = l_Lean_mkRawNatLit(x_39); -x_41 = l_Char_reduceToLower___lambda__1___closed__1; +x_41 = l_Char_reduceToLower___lambda__1___closed__4; x_42 = l_Lean_Expr_app___override(x_41, x_40); x_43 = lean_box(0); x_44 = 0; @@ -6650,7 +6624,7 @@ static lean_object* _init_l_Char_reduceOfNatAux___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Char_fromExpr_x3f___closed__1; +x_1 = l_Char_reduceToLower___lambda__1___closed__1; x_2 = l_Char_reduceOfNatAux___closed__1; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; @@ -6685,7 +6659,6 @@ else lean_object* x_15; lean_object* x_16; x_15 = lean_box(0); x_16 = l_Char_reduceOfNatAux___lambda__1(x_1, x_15, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); -lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); @@ -6698,7 +6671,6 @@ _start: { lean_object* x_11; x_11 = l_Char_reduceOfNatAux___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_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); @@ -6706,7 +6678,7 @@ lean_dec(x_2); return x_11; } } -static lean_object* _init_l___regBuiltin_Char_reduceOfNatAux_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1102____closed__1() { +static lean_object* _init_l___regBuiltin_Char_reduceOfNatAux_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1059____closed__1() { _start: { lean_object* x_1; @@ -6714,17 +6686,17 @@ x_1 = lean_mk_string_from_bytes("reduceOfNatAux", 14); return x_1; } } -static lean_object* _init_l___regBuiltin_Char_reduceOfNatAux_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1102____closed__2() { +static lean_object* _init_l___regBuiltin_Char_reduceOfNatAux_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1059____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Char_fromExpr_x3f___closed__1; -x_2 = l___regBuiltin_Char_reduceOfNatAux_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1102____closed__1; +x_1 = l_Char_reduceToLower___lambda__1___closed__1; +x_2 = l___regBuiltin_Char_reduceOfNatAux_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1059____closed__1; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Char_reduceOfNatAux_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1102____closed__3() { +static lean_object* _init_l___regBuiltin_Char_reduceOfNatAux_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1059____closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -6736,7 +6708,7 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Char_reduceOfNatAux_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1102____closed__4() { +static lean_object* _init_l___regBuiltin_Char_reduceOfNatAux_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1059____closed__4() { _start: { lean_object* x_1; lean_object* x_2; @@ -6745,37 +6717,37 @@ x_2 = lean_mk_empty_array_with_capacity(x_1); return x_2; } } -static lean_object* _init_l___regBuiltin_Char_reduceOfNatAux_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1102____closed__5() { +static lean_object* _init_l___regBuiltin_Char_reduceOfNatAux_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1059____closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Char_reduceOfNatAux_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1102____closed__4; -x_2 = l___regBuiltin_Char_reduceOfNatAux_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1102____closed__3; +x_1 = l___regBuiltin_Char_reduceOfNatAux_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1059____closed__4; +x_2 = l___regBuiltin_Char_reduceOfNatAux_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1059____closed__3; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Char_reduceOfNatAux_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1102____closed__6() { +static lean_object* _init_l___regBuiltin_Char_reduceOfNatAux_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1059____closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Char_reduceOfNatAux_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1102____closed__5; +x_1 = l___regBuiltin_Char_reduceOfNatAux_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1059____closed__5; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Char_reduceOfNatAux_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1102____closed__7() { +static lean_object* _init_l___regBuiltin_Char_reduceOfNatAux_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1059____closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Char_reduceOfNatAux_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1102____closed__6; +x_1 = l___regBuiltin_Char_reduceOfNatAux_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1059____closed__6; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Char_reduceOfNatAux_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1102____closed__8() { +static lean_object* _init_l___regBuiltin_Char_reduceOfNatAux_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1059____closed__8() { _start: { lean_object* x_1; @@ -6783,37 +6755,37 @@ x_1 = lean_alloc_closure((void*)(l_Char_reduceOfNatAux), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_Char_reduceOfNatAux_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1102_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Char_reduceOfNatAux_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1059_(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_Char_reduceOfNatAux_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1102____closed__2; -x_3 = l___regBuiltin_Char_reduceOfNatAux_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1102____closed__7; -x_4 = l___regBuiltin_Char_reduceOfNatAux_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1102____closed__8; +x_2 = l___regBuiltin_Char_reduceOfNatAux_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1059____closed__2; +x_3 = l___regBuiltin_Char_reduceOfNatAux_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1059____closed__7; +x_4 = l___regBuiltin_Char_reduceOfNatAux_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1059____closed__8; x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); return x_5; } } -LEAN_EXPORT lean_object* l___regBuiltin_Char_reduceOfNatAux_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1104_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Char_reduceOfNatAux_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1061_(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_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_458____closed__1; -x_3 = l___regBuiltin_Char_reduceOfNatAux_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1102____closed__2; +x_2 = l___regBuiltin_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_415____closed__1; +x_3 = l___regBuiltin_Char_reduceOfNatAux_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1059____closed__2; x_4 = 1; -x_5 = l___regBuiltin_Char_reduceOfNatAux_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1102____closed__8; +x_5 = l___regBuiltin_Char_reduceOfNatAux_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1059____closed__8; 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_Char_reduceOfNatAux_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1106_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Char_reduceOfNatAux_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1063_(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_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_460____closed__1; -x_3 = l___regBuiltin_Char_reduceOfNatAux_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1102____closed__2; +x_2 = l___regBuiltin_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_417____closed__1; +x_3 = l___regBuiltin_Char_reduceOfNatAux_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1059____closed__2; x_4 = 1; -x_5 = l___regBuiltin_Char_reduceOfNatAux_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1102____closed__8; +x_5 = l___regBuiltin_Char_reduceOfNatAux_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1059____closed__8; x_6 = l_Lean_Meta_Simp_addSimprocBuiltinAttrCore(x_2, x_3, x_4, x_5, x_1); return x_6; } @@ -6831,7 +6803,7 @@ static lean_object* _init_l_Char_reduceDefault___lambda__1___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Char_reduceToLower___lambda__1___closed__1; +x_1 = l_Char_reduceToLower___lambda__1___closed__4; x_2 = l_Char_reduceDefault___lambda__1___closed__1; x_3 = l_Lean_Expr_app___override(x_1, x_2); return x_3; @@ -6966,7 +6938,7 @@ lean_dec(x_1); return x_10; } } -static lean_object* _init_l___regBuiltin_Char_reduceDefault_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1179____closed__1() { +static lean_object* _init_l___regBuiltin_Char_reduceDefault_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1136____closed__1() { _start: { lean_object* x_1; @@ -6974,17 +6946,17 @@ x_1 = lean_mk_string_from_bytes("reduceDefault", 13); return x_1; } } -static lean_object* _init_l___regBuiltin_Char_reduceDefault_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1179____closed__2() { +static lean_object* _init_l___regBuiltin_Char_reduceDefault_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1136____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Char_fromExpr_x3f___closed__1; -x_2 = l___regBuiltin_Char_reduceDefault_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1179____closed__1; +x_1 = l_Char_reduceToLower___lambda__1___closed__1; +x_2 = l___regBuiltin_Char_reduceDefault_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1136____closed__1; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Char_reduceDefault_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1179____closed__3() { +static lean_object* _init_l___regBuiltin_Char_reduceDefault_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1136____closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -6996,37 +6968,37 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Char_reduceDefault_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1179____closed__4() { +static lean_object* _init_l___regBuiltin_Char_reduceDefault_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1136____closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Char_reduceOfNatAux_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1102____closed__4; -x_2 = l___regBuiltin_Char_reduceDefault_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1179____closed__3; +x_1 = l___regBuiltin_Char_reduceOfNatAux_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1059____closed__4; +x_2 = l___regBuiltin_Char_reduceDefault_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1136____closed__3; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Char_reduceDefault_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1179____closed__5() { +static lean_object* _init_l___regBuiltin_Char_reduceDefault_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1136____closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Char_reduceDefault_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1179____closed__4; -x_2 = l___regBuiltin_Char_reduceToString_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_631____closed__5; +x_1 = l___regBuiltin_Char_reduceDefault_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1136____closed__4; +x_2 = l___regBuiltin_Char_reduceToString_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_588____closed__5; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Char_reduceDefault_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1179____closed__6() { +static lean_object* _init_l___regBuiltin_Char_reduceDefault_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1136____closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Char_reduceDefault_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1179____closed__5; +x_1 = l___regBuiltin_Char_reduceDefault_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1136____closed__5; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Char_reduceDefault_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1179____closed__7() { +static lean_object* _init_l___regBuiltin_Char_reduceDefault_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1136____closed__7() { _start: { lean_object* x_1; @@ -7034,64 +7006,58 @@ x_1 = lean_alloc_closure((void*)(l_Char_reduceDefault___boxed), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_Char_reduceDefault_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1179_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Char_reduceDefault_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1136_(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_Char_reduceDefault_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1179____closed__2; -x_3 = l___regBuiltin_Char_reduceDefault_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1179____closed__6; -x_4 = l___regBuiltin_Char_reduceDefault_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1179____closed__7; +x_2 = l___regBuiltin_Char_reduceDefault_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1136____closed__2; +x_3 = l___regBuiltin_Char_reduceDefault_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1136____closed__6; +x_4 = l___regBuiltin_Char_reduceDefault_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1136____closed__7; x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); return x_5; } } -LEAN_EXPORT lean_object* l___regBuiltin_Char_reduceDefault_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1181_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Char_reduceDefault_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1138_(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_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_458____closed__1; -x_3 = l___regBuiltin_Char_reduceDefault_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1179____closed__2; +x_2 = l___regBuiltin_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_415____closed__1; +x_3 = l___regBuiltin_Char_reduceDefault_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1136____closed__2; x_4 = 1; -x_5 = l___regBuiltin_Char_reduceDefault_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1179____closed__7; +x_5 = l___regBuiltin_Char_reduceDefault_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1136____closed__7; 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_Char_reduceDefault_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1183_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Char_reduceDefault_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1140_(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_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_460____closed__1; -x_3 = l___regBuiltin_Char_reduceDefault_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1179____closed__2; +x_2 = l___regBuiltin_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_417____closed__1; +x_3 = l___regBuiltin_Char_reduceDefault_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1136____closed__2; x_4 = 1; -x_5 = l___regBuiltin_Char_reduceDefault_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1179____closed__7; +x_5 = l___regBuiltin_Char_reduceDefault_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1136____closed__7; x_6 = l_Lean_Meta_Simp_addSimprocBuiltinAttrCore(x_2, x_3, x_4, x_5, x_1); return x_6; } } -lean_object* initialize_Init(uint8_t builtin, lean_object*); lean_object* initialize_Lean_ToExpr(uint8_t builtin, lean_object*); +lean_object* initialize_Lean_Meta_LitValues(uint8_t builtin, lean_object*); lean_object* initialize_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt(uint8_t builtin, lean_object*); static bool _G_initialized = false; LEAN_EXPORT lean_object* initialize_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char(uint8_t builtin, lean_object* w) { lean_object * res; if (_G_initialized) return lean_io_result_mk_ok(lean_box(0)); _G_initialized = true; -res = initialize_Init(builtin, lean_io_mk_world()); +res = initialize_Lean_ToExpr(builtin, lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Lean_ToExpr(builtin, lean_io_mk_world()); +res = initialize_Lean_Meta_LitValues(builtin, lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); res = initialize_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt(builtin, lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -l_Char_fromExpr_x3f___closed__1 = _init_l_Char_fromExpr_x3f___closed__1(); -lean_mark_persistent(l_Char_fromExpr_x3f___closed__1); -l_Char_fromExpr_x3f___closed__2 = _init_l_Char_fromExpr_x3f___closed__2(); -lean_mark_persistent(l_Char_fromExpr_x3f___closed__2); -l_Char_fromExpr_x3f___closed__3 = _init_l_Char_fromExpr_x3f___closed__3(); -lean_mark_persistent(l_Char_fromExpr_x3f___closed__3); l_Char_reduceUnary___rarg___lambda__1___closed__1 = _init_l_Char_reduceUnary___rarg___lambda__1___closed__1(); lean_mark_persistent(l_Char_reduceUnary___rarg___lambda__1___closed__1); l_Char_reduceBoolPred___lambda__1___closed__1 = _init_l_Char_reduceBoolPred___lambda__1___closed__1(); @@ -7118,235 +7084,241 @@ l_Char_reduceBoolPred___lambda__1___closed__11 = _init_l_Char_reduceBoolPred___l lean_mark_persistent(l_Char_reduceBoolPred___lambda__1___closed__11); l_Char_reduceToLower___lambda__1___closed__1 = _init_l_Char_reduceToLower___lambda__1___closed__1(); lean_mark_persistent(l_Char_reduceToLower___lambda__1___closed__1); +l_Char_reduceToLower___lambda__1___closed__2 = _init_l_Char_reduceToLower___lambda__1___closed__2(); +lean_mark_persistent(l_Char_reduceToLower___lambda__1___closed__2); +l_Char_reduceToLower___lambda__1___closed__3 = _init_l_Char_reduceToLower___lambda__1___closed__3(); +lean_mark_persistent(l_Char_reduceToLower___lambda__1___closed__3); +l_Char_reduceToLower___lambda__1___closed__4 = _init_l_Char_reduceToLower___lambda__1___closed__4(); +lean_mark_persistent(l_Char_reduceToLower___lambda__1___closed__4); l_Char_reduceToLower___closed__1 = _init_l_Char_reduceToLower___closed__1(); lean_mark_persistent(l_Char_reduceToLower___closed__1); l_Char_reduceToLower___closed__2 = _init_l_Char_reduceToLower___closed__2(); lean_mark_persistent(l_Char_reduceToLower___closed__2); -l___regBuiltin_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_456____closed__1 = _init_l___regBuiltin_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_456____closed__1(); -lean_mark_persistent(l___regBuiltin_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_456____closed__1); -l___regBuiltin_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_456____closed__2 = _init_l___regBuiltin_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_456____closed__2(); -lean_mark_persistent(l___regBuiltin_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_456____closed__2); -l___regBuiltin_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_456____closed__3 = _init_l___regBuiltin_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_456____closed__3(); -lean_mark_persistent(l___regBuiltin_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_456____closed__3); -l___regBuiltin_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_456____closed__4 = _init_l___regBuiltin_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_456____closed__4(); -lean_mark_persistent(l___regBuiltin_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_456____closed__4); -l___regBuiltin_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_456____closed__5 = _init_l___regBuiltin_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_456____closed__5(); -lean_mark_persistent(l___regBuiltin_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_456____closed__5); -l___regBuiltin_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_456____closed__6 = _init_l___regBuiltin_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_456____closed__6(); -lean_mark_persistent(l___regBuiltin_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_456____closed__6); -l___regBuiltin_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_456____closed__7 = _init_l___regBuiltin_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_456____closed__7(); -lean_mark_persistent(l___regBuiltin_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_456____closed__7); -if (builtin) {res = l___regBuiltin_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_456_(lean_io_mk_world()); +l___regBuiltin_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_413____closed__1 = _init_l___regBuiltin_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_413____closed__1(); +lean_mark_persistent(l___regBuiltin_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_413____closed__1); +l___regBuiltin_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_413____closed__2 = _init_l___regBuiltin_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_413____closed__2(); +lean_mark_persistent(l___regBuiltin_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_413____closed__2); +l___regBuiltin_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_413____closed__3 = _init_l___regBuiltin_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_413____closed__3(); +lean_mark_persistent(l___regBuiltin_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_413____closed__3); +l___regBuiltin_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_413____closed__4 = _init_l___regBuiltin_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_413____closed__4(); +lean_mark_persistent(l___regBuiltin_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_413____closed__4); +l___regBuiltin_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_413____closed__5 = _init_l___regBuiltin_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_413____closed__5(); +lean_mark_persistent(l___regBuiltin_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_413____closed__5); +l___regBuiltin_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_413____closed__6 = _init_l___regBuiltin_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_413____closed__6(); +lean_mark_persistent(l___regBuiltin_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_413____closed__6); +l___regBuiltin_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_413____closed__7 = _init_l___regBuiltin_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_413____closed__7(); +lean_mark_persistent(l___regBuiltin_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_413____closed__7); +if (builtin) {res = l___regBuiltin_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_413_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}l___regBuiltin_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_458____closed__1 = _init_l___regBuiltin_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_458____closed__1(); -lean_mark_persistent(l___regBuiltin_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_458____closed__1); -if (builtin) {res = l___regBuiltin_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_458_(lean_io_mk_world()); +}l___regBuiltin_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_415____closed__1 = _init_l___regBuiltin_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_415____closed__1(); +lean_mark_persistent(l___regBuiltin_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_415____closed__1); +if (builtin) {res = l___regBuiltin_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_415_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}l___regBuiltin_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_460____closed__1 = _init_l___regBuiltin_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_460____closed__1(); -lean_mark_persistent(l___regBuiltin_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_460____closed__1); -if (builtin) {res = l___regBuiltin_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_460_(lean_io_mk_world()); +}l___regBuiltin_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_417____closed__1 = _init_l___regBuiltin_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_417____closed__1(); +lean_mark_persistent(l___regBuiltin_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_417____closed__1); +if (builtin) {res = l___regBuiltin_Char_reduceToLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_417_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); }l_Char_reduceToUpper___closed__1 = _init_l_Char_reduceToUpper___closed__1(); lean_mark_persistent(l_Char_reduceToUpper___closed__1); l_Char_reduceToUpper___closed__2 = _init_l_Char_reduceToUpper___closed__2(); lean_mark_persistent(l_Char_reduceToUpper___closed__2); -l___regBuiltin_Char_reduceToUpper_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_475____closed__1 = _init_l___regBuiltin_Char_reduceToUpper_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_475____closed__1(); -lean_mark_persistent(l___regBuiltin_Char_reduceToUpper_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_475____closed__1); -l___regBuiltin_Char_reduceToUpper_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_475____closed__2 = _init_l___regBuiltin_Char_reduceToUpper_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_475____closed__2(); -lean_mark_persistent(l___regBuiltin_Char_reduceToUpper_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_475____closed__2); -l___regBuiltin_Char_reduceToUpper_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_475____closed__3 = _init_l___regBuiltin_Char_reduceToUpper_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_475____closed__3(); -lean_mark_persistent(l___regBuiltin_Char_reduceToUpper_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_475____closed__3); -l___regBuiltin_Char_reduceToUpper_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_475____closed__4 = _init_l___regBuiltin_Char_reduceToUpper_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_475____closed__4(); -lean_mark_persistent(l___regBuiltin_Char_reduceToUpper_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_475____closed__4); -l___regBuiltin_Char_reduceToUpper_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_475____closed__5 = _init_l___regBuiltin_Char_reduceToUpper_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_475____closed__5(); -lean_mark_persistent(l___regBuiltin_Char_reduceToUpper_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_475____closed__5); -l___regBuiltin_Char_reduceToUpper_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_475____closed__6 = _init_l___regBuiltin_Char_reduceToUpper_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_475____closed__6(); -lean_mark_persistent(l___regBuiltin_Char_reduceToUpper_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_475____closed__6); -if (builtin) {res = l___regBuiltin_Char_reduceToUpper_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_475_(lean_io_mk_world()); +l___regBuiltin_Char_reduceToUpper_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_432____closed__1 = _init_l___regBuiltin_Char_reduceToUpper_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_432____closed__1(); +lean_mark_persistent(l___regBuiltin_Char_reduceToUpper_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_432____closed__1); +l___regBuiltin_Char_reduceToUpper_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_432____closed__2 = _init_l___regBuiltin_Char_reduceToUpper_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_432____closed__2(); +lean_mark_persistent(l___regBuiltin_Char_reduceToUpper_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_432____closed__2); +l___regBuiltin_Char_reduceToUpper_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_432____closed__3 = _init_l___regBuiltin_Char_reduceToUpper_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_432____closed__3(); +lean_mark_persistent(l___regBuiltin_Char_reduceToUpper_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_432____closed__3); +l___regBuiltin_Char_reduceToUpper_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_432____closed__4 = _init_l___regBuiltin_Char_reduceToUpper_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_432____closed__4(); +lean_mark_persistent(l___regBuiltin_Char_reduceToUpper_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_432____closed__4); +l___regBuiltin_Char_reduceToUpper_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_432____closed__5 = _init_l___regBuiltin_Char_reduceToUpper_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_432____closed__5(); +lean_mark_persistent(l___regBuiltin_Char_reduceToUpper_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_432____closed__5); +l___regBuiltin_Char_reduceToUpper_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_432____closed__6 = _init_l___regBuiltin_Char_reduceToUpper_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_432____closed__6(); +lean_mark_persistent(l___regBuiltin_Char_reduceToUpper_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_432____closed__6); +if (builtin) {res = l___regBuiltin_Char_reduceToUpper_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_432_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Char_reduceToUpper_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_477_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_Char_reduceToUpper_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_434_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Char_reduceToUpper_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_479_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_Char_reduceToUpper_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_436_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); }l_Char_reduceToNat___closed__1 = _init_l_Char_reduceToNat___closed__1(); lean_mark_persistent(l_Char_reduceToNat___closed__1); l_Char_reduceToNat___closed__2 = _init_l_Char_reduceToNat___closed__2(); lean_mark_persistent(l_Char_reduceToNat___closed__2); -l___regBuiltin_Char_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_494____closed__1 = _init_l___regBuiltin_Char_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_494____closed__1(); -lean_mark_persistent(l___regBuiltin_Char_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_494____closed__1); -l___regBuiltin_Char_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_494____closed__2 = _init_l___regBuiltin_Char_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_494____closed__2(); -lean_mark_persistent(l___regBuiltin_Char_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_494____closed__2); -l___regBuiltin_Char_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_494____closed__3 = _init_l___regBuiltin_Char_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_494____closed__3(); -lean_mark_persistent(l___regBuiltin_Char_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_494____closed__3); -l___regBuiltin_Char_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_494____closed__4 = _init_l___regBuiltin_Char_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_494____closed__4(); -lean_mark_persistent(l___regBuiltin_Char_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_494____closed__4); -l___regBuiltin_Char_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_494____closed__5 = _init_l___regBuiltin_Char_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_494____closed__5(); -lean_mark_persistent(l___regBuiltin_Char_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_494____closed__5); -l___regBuiltin_Char_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_494____closed__6 = _init_l___regBuiltin_Char_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_494____closed__6(); -lean_mark_persistent(l___regBuiltin_Char_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_494____closed__6); -if (builtin) {res = l___regBuiltin_Char_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_494_(lean_io_mk_world()); +l___regBuiltin_Char_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_451____closed__1 = _init_l___regBuiltin_Char_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_451____closed__1(); +lean_mark_persistent(l___regBuiltin_Char_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_451____closed__1); +l___regBuiltin_Char_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_451____closed__2 = _init_l___regBuiltin_Char_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_451____closed__2(); +lean_mark_persistent(l___regBuiltin_Char_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_451____closed__2); +l___regBuiltin_Char_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_451____closed__3 = _init_l___regBuiltin_Char_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_451____closed__3(); +lean_mark_persistent(l___regBuiltin_Char_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_451____closed__3); +l___regBuiltin_Char_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_451____closed__4 = _init_l___regBuiltin_Char_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_451____closed__4(); +lean_mark_persistent(l___regBuiltin_Char_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_451____closed__4); +l___regBuiltin_Char_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_451____closed__5 = _init_l___regBuiltin_Char_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_451____closed__5(); +lean_mark_persistent(l___regBuiltin_Char_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_451____closed__5); +l___regBuiltin_Char_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_451____closed__6 = _init_l___regBuiltin_Char_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_451____closed__6(); +lean_mark_persistent(l___regBuiltin_Char_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_451____closed__6); +if (builtin) {res = l___regBuiltin_Char_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_451_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Char_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_496_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_Char_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_453_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Char_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_498_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_Char_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_455_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); }l_Char_reduceIsWhitespace___closed__1 = _init_l_Char_reduceIsWhitespace___closed__1(); lean_mark_persistent(l_Char_reduceIsWhitespace___closed__1); l_Char_reduceIsWhitespace___closed__2 = _init_l_Char_reduceIsWhitespace___closed__2(); lean_mark_persistent(l_Char_reduceIsWhitespace___closed__2); -l___regBuiltin_Char_reduceIsWhitespace_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_513____closed__1 = _init_l___regBuiltin_Char_reduceIsWhitespace_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_513____closed__1(); -lean_mark_persistent(l___regBuiltin_Char_reduceIsWhitespace_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_513____closed__1); -l___regBuiltin_Char_reduceIsWhitespace_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_513____closed__2 = _init_l___regBuiltin_Char_reduceIsWhitespace_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_513____closed__2(); -lean_mark_persistent(l___regBuiltin_Char_reduceIsWhitespace_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_513____closed__2); -l___regBuiltin_Char_reduceIsWhitespace_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_513____closed__3 = _init_l___regBuiltin_Char_reduceIsWhitespace_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_513____closed__3(); -lean_mark_persistent(l___regBuiltin_Char_reduceIsWhitespace_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_513____closed__3); -l___regBuiltin_Char_reduceIsWhitespace_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_513____closed__4 = _init_l___regBuiltin_Char_reduceIsWhitespace_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_513____closed__4(); -lean_mark_persistent(l___regBuiltin_Char_reduceIsWhitespace_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_513____closed__4); -l___regBuiltin_Char_reduceIsWhitespace_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_513____closed__5 = _init_l___regBuiltin_Char_reduceIsWhitespace_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_513____closed__5(); -lean_mark_persistent(l___regBuiltin_Char_reduceIsWhitespace_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_513____closed__5); -l___regBuiltin_Char_reduceIsWhitespace_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_513____closed__6 = _init_l___regBuiltin_Char_reduceIsWhitespace_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_513____closed__6(); -lean_mark_persistent(l___regBuiltin_Char_reduceIsWhitespace_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_513____closed__6); -if (builtin) {res = l___regBuiltin_Char_reduceIsWhitespace_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_513_(lean_io_mk_world()); +l___regBuiltin_Char_reduceIsWhitespace_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_470____closed__1 = _init_l___regBuiltin_Char_reduceIsWhitespace_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_470____closed__1(); +lean_mark_persistent(l___regBuiltin_Char_reduceIsWhitespace_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_470____closed__1); +l___regBuiltin_Char_reduceIsWhitespace_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_470____closed__2 = _init_l___regBuiltin_Char_reduceIsWhitespace_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_470____closed__2(); +lean_mark_persistent(l___regBuiltin_Char_reduceIsWhitespace_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_470____closed__2); +l___regBuiltin_Char_reduceIsWhitespace_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_470____closed__3 = _init_l___regBuiltin_Char_reduceIsWhitespace_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_470____closed__3(); +lean_mark_persistent(l___regBuiltin_Char_reduceIsWhitespace_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_470____closed__3); +l___regBuiltin_Char_reduceIsWhitespace_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_470____closed__4 = _init_l___regBuiltin_Char_reduceIsWhitespace_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_470____closed__4(); +lean_mark_persistent(l___regBuiltin_Char_reduceIsWhitespace_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_470____closed__4); +l___regBuiltin_Char_reduceIsWhitespace_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_470____closed__5 = _init_l___regBuiltin_Char_reduceIsWhitespace_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_470____closed__5(); +lean_mark_persistent(l___regBuiltin_Char_reduceIsWhitespace_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_470____closed__5); +l___regBuiltin_Char_reduceIsWhitespace_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_470____closed__6 = _init_l___regBuiltin_Char_reduceIsWhitespace_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_470____closed__6(); +lean_mark_persistent(l___regBuiltin_Char_reduceIsWhitespace_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_470____closed__6); +if (builtin) {res = l___regBuiltin_Char_reduceIsWhitespace_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_470_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Char_reduceIsWhitespace_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_515_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_Char_reduceIsWhitespace_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_472_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Char_reduceIsWhitespace_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_517_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_Char_reduceIsWhitespace_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_474_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); }l_Char_reduceIsUpper___closed__1 = _init_l_Char_reduceIsUpper___closed__1(); lean_mark_persistent(l_Char_reduceIsUpper___closed__1); l_Char_reduceIsUpper___closed__2 = _init_l_Char_reduceIsUpper___closed__2(); lean_mark_persistent(l_Char_reduceIsUpper___closed__2); -l___regBuiltin_Char_reduceIsUpper_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_532____closed__1 = _init_l___regBuiltin_Char_reduceIsUpper_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_532____closed__1(); -lean_mark_persistent(l___regBuiltin_Char_reduceIsUpper_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_532____closed__1); -l___regBuiltin_Char_reduceIsUpper_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_532____closed__2 = _init_l___regBuiltin_Char_reduceIsUpper_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_532____closed__2(); -lean_mark_persistent(l___regBuiltin_Char_reduceIsUpper_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_532____closed__2); -l___regBuiltin_Char_reduceIsUpper_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_532____closed__3 = _init_l___regBuiltin_Char_reduceIsUpper_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_532____closed__3(); -lean_mark_persistent(l___regBuiltin_Char_reduceIsUpper_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_532____closed__3); -l___regBuiltin_Char_reduceIsUpper_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_532____closed__4 = _init_l___regBuiltin_Char_reduceIsUpper_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_532____closed__4(); -lean_mark_persistent(l___regBuiltin_Char_reduceIsUpper_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_532____closed__4); -l___regBuiltin_Char_reduceIsUpper_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_532____closed__5 = _init_l___regBuiltin_Char_reduceIsUpper_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_532____closed__5(); -lean_mark_persistent(l___regBuiltin_Char_reduceIsUpper_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_532____closed__5); -l___regBuiltin_Char_reduceIsUpper_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_532____closed__6 = _init_l___regBuiltin_Char_reduceIsUpper_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_532____closed__6(); -lean_mark_persistent(l___regBuiltin_Char_reduceIsUpper_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_532____closed__6); -if (builtin) {res = l___regBuiltin_Char_reduceIsUpper_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_532_(lean_io_mk_world()); +l___regBuiltin_Char_reduceIsUpper_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_489____closed__1 = _init_l___regBuiltin_Char_reduceIsUpper_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_489____closed__1(); +lean_mark_persistent(l___regBuiltin_Char_reduceIsUpper_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_489____closed__1); +l___regBuiltin_Char_reduceIsUpper_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_489____closed__2 = _init_l___regBuiltin_Char_reduceIsUpper_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_489____closed__2(); +lean_mark_persistent(l___regBuiltin_Char_reduceIsUpper_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_489____closed__2); +l___regBuiltin_Char_reduceIsUpper_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_489____closed__3 = _init_l___regBuiltin_Char_reduceIsUpper_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_489____closed__3(); +lean_mark_persistent(l___regBuiltin_Char_reduceIsUpper_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_489____closed__3); +l___regBuiltin_Char_reduceIsUpper_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_489____closed__4 = _init_l___regBuiltin_Char_reduceIsUpper_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_489____closed__4(); +lean_mark_persistent(l___regBuiltin_Char_reduceIsUpper_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_489____closed__4); +l___regBuiltin_Char_reduceIsUpper_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_489____closed__5 = _init_l___regBuiltin_Char_reduceIsUpper_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_489____closed__5(); +lean_mark_persistent(l___regBuiltin_Char_reduceIsUpper_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_489____closed__5); +l___regBuiltin_Char_reduceIsUpper_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_489____closed__6 = _init_l___regBuiltin_Char_reduceIsUpper_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_489____closed__6(); +lean_mark_persistent(l___regBuiltin_Char_reduceIsUpper_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_489____closed__6); +if (builtin) {res = l___regBuiltin_Char_reduceIsUpper_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_489_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Char_reduceIsUpper_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_534_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_Char_reduceIsUpper_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_491_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Char_reduceIsUpper_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_536_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_Char_reduceIsUpper_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_493_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); }l_Char_reduceIsLower___closed__1 = _init_l_Char_reduceIsLower___closed__1(); lean_mark_persistent(l_Char_reduceIsLower___closed__1); l_Char_reduceIsLower___closed__2 = _init_l_Char_reduceIsLower___closed__2(); lean_mark_persistent(l_Char_reduceIsLower___closed__2); -l___regBuiltin_Char_reduceIsLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_551____closed__1 = _init_l___regBuiltin_Char_reduceIsLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_551____closed__1(); -lean_mark_persistent(l___regBuiltin_Char_reduceIsLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_551____closed__1); -l___regBuiltin_Char_reduceIsLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_551____closed__2 = _init_l___regBuiltin_Char_reduceIsLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_551____closed__2(); -lean_mark_persistent(l___regBuiltin_Char_reduceIsLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_551____closed__2); -l___regBuiltin_Char_reduceIsLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_551____closed__3 = _init_l___regBuiltin_Char_reduceIsLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_551____closed__3(); -lean_mark_persistent(l___regBuiltin_Char_reduceIsLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_551____closed__3); -l___regBuiltin_Char_reduceIsLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_551____closed__4 = _init_l___regBuiltin_Char_reduceIsLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_551____closed__4(); -lean_mark_persistent(l___regBuiltin_Char_reduceIsLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_551____closed__4); -l___regBuiltin_Char_reduceIsLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_551____closed__5 = _init_l___regBuiltin_Char_reduceIsLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_551____closed__5(); -lean_mark_persistent(l___regBuiltin_Char_reduceIsLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_551____closed__5); -l___regBuiltin_Char_reduceIsLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_551____closed__6 = _init_l___regBuiltin_Char_reduceIsLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_551____closed__6(); -lean_mark_persistent(l___regBuiltin_Char_reduceIsLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_551____closed__6); -if (builtin) {res = l___regBuiltin_Char_reduceIsLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_551_(lean_io_mk_world()); +l___regBuiltin_Char_reduceIsLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_508____closed__1 = _init_l___regBuiltin_Char_reduceIsLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_508____closed__1(); +lean_mark_persistent(l___regBuiltin_Char_reduceIsLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_508____closed__1); +l___regBuiltin_Char_reduceIsLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_508____closed__2 = _init_l___regBuiltin_Char_reduceIsLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_508____closed__2(); +lean_mark_persistent(l___regBuiltin_Char_reduceIsLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_508____closed__2); +l___regBuiltin_Char_reduceIsLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_508____closed__3 = _init_l___regBuiltin_Char_reduceIsLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_508____closed__3(); +lean_mark_persistent(l___regBuiltin_Char_reduceIsLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_508____closed__3); +l___regBuiltin_Char_reduceIsLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_508____closed__4 = _init_l___regBuiltin_Char_reduceIsLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_508____closed__4(); +lean_mark_persistent(l___regBuiltin_Char_reduceIsLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_508____closed__4); +l___regBuiltin_Char_reduceIsLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_508____closed__5 = _init_l___regBuiltin_Char_reduceIsLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_508____closed__5(); +lean_mark_persistent(l___regBuiltin_Char_reduceIsLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_508____closed__5); +l___regBuiltin_Char_reduceIsLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_508____closed__6 = _init_l___regBuiltin_Char_reduceIsLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_508____closed__6(); +lean_mark_persistent(l___regBuiltin_Char_reduceIsLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_508____closed__6); +if (builtin) {res = l___regBuiltin_Char_reduceIsLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_508_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Char_reduceIsLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_553_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_Char_reduceIsLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_510_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Char_reduceIsLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_555_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_Char_reduceIsLower_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_512_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); }l_Char_reduceIsAlpha___closed__1 = _init_l_Char_reduceIsAlpha___closed__1(); lean_mark_persistent(l_Char_reduceIsAlpha___closed__1); l_Char_reduceIsAlpha___closed__2 = _init_l_Char_reduceIsAlpha___closed__2(); lean_mark_persistent(l_Char_reduceIsAlpha___closed__2); -l___regBuiltin_Char_reduceIsAlpha_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_570____closed__1 = _init_l___regBuiltin_Char_reduceIsAlpha_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_570____closed__1(); -lean_mark_persistent(l___regBuiltin_Char_reduceIsAlpha_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_570____closed__1); -l___regBuiltin_Char_reduceIsAlpha_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_570____closed__2 = _init_l___regBuiltin_Char_reduceIsAlpha_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_570____closed__2(); -lean_mark_persistent(l___regBuiltin_Char_reduceIsAlpha_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_570____closed__2); -l___regBuiltin_Char_reduceIsAlpha_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_570____closed__3 = _init_l___regBuiltin_Char_reduceIsAlpha_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_570____closed__3(); -lean_mark_persistent(l___regBuiltin_Char_reduceIsAlpha_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_570____closed__3); -l___regBuiltin_Char_reduceIsAlpha_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_570____closed__4 = _init_l___regBuiltin_Char_reduceIsAlpha_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_570____closed__4(); -lean_mark_persistent(l___regBuiltin_Char_reduceIsAlpha_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_570____closed__4); -l___regBuiltin_Char_reduceIsAlpha_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_570____closed__5 = _init_l___regBuiltin_Char_reduceIsAlpha_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_570____closed__5(); -lean_mark_persistent(l___regBuiltin_Char_reduceIsAlpha_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_570____closed__5); -l___regBuiltin_Char_reduceIsAlpha_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_570____closed__6 = _init_l___regBuiltin_Char_reduceIsAlpha_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_570____closed__6(); -lean_mark_persistent(l___regBuiltin_Char_reduceIsAlpha_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_570____closed__6); -if (builtin) {res = l___regBuiltin_Char_reduceIsAlpha_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_570_(lean_io_mk_world()); +l___regBuiltin_Char_reduceIsAlpha_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_527____closed__1 = _init_l___regBuiltin_Char_reduceIsAlpha_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_527____closed__1(); +lean_mark_persistent(l___regBuiltin_Char_reduceIsAlpha_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_527____closed__1); +l___regBuiltin_Char_reduceIsAlpha_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_527____closed__2 = _init_l___regBuiltin_Char_reduceIsAlpha_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_527____closed__2(); +lean_mark_persistent(l___regBuiltin_Char_reduceIsAlpha_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_527____closed__2); +l___regBuiltin_Char_reduceIsAlpha_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_527____closed__3 = _init_l___regBuiltin_Char_reduceIsAlpha_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_527____closed__3(); +lean_mark_persistent(l___regBuiltin_Char_reduceIsAlpha_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_527____closed__3); +l___regBuiltin_Char_reduceIsAlpha_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_527____closed__4 = _init_l___regBuiltin_Char_reduceIsAlpha_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_527____closed__4(); +lean_mark_persistent(l___regBuiltin_Char_reduceIsAlpha_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_527____closed__4); +l___regBuiltin_Char_reduceIsAlpha_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_527____closed__5 = _init_l___regBuiltin_Char_reduceIsAlpha_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_527____closed__5(); +lean_mark_persistent(l___regBuiltin_Char_reduceIsAlpha_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_527____closed__5); +l___regBuiltin_Char_reduceIsAlpha_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_527____closed__6 = _init_l___regBuiltin_Char_reduceIsAlpha_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_527____closed__6(); +lean_mark_persistent(l___regBuiltin_Char_reduceIsAlpha_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_527____closed__6); +if (builtin) {res = l___regBuiltin_Char_reduceIsAlpha_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_527_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Char_reduceIsAlpha_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_572_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_Char_reduceIsAlpha_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_529_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Char_reduceIsAlpha_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_574_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_Char_reduceIsAlpha_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_531_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); }l_Char_reduceIsDigit___closed__1 = _init_l_Char_reduceIsDigit___closed__1(); lean_mark_persistent(l_Char_reduceIsDigit___closed__1); l_Char_reduceIsDigit___closed__2 = _init_l_Char_reduceIsDigit___closed__2(); lean_mark_persistent(l_Char_reduceIsDigit___closed__2); -l___regBuiltin_Char_reduceIsDigit_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_589____closed__1 = _init_l___regBuiltin_Char_reduceIsDigit_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_589____closed__1(); -lean_mark_persistent(l___regBuiltin_Char_reduceIsDigit_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_589____closed__1); -l___regBuiltin_Char_reduceIsDigit_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_589____closed__2 = _init_l___regBuiltin_Char_reduceIsDigit_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_589____closed__2(); -lean_mark_persistent(l___regBuiltin_Char_reduceIsDigit_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_589____closed__2); -l___regBuiltin_Char_reduceIsDigit_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_589____closed__3 = _init_l___regBuiltin_Char_reduceIsDigit_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_589____closed__3(); -lean_mark_persistent(l___regBuiltin_Char_reduceIsDigit_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_589____closed__3); -l___regBuiltin_Char_reduceIsDigit_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_589____closed__4 = _init_l___regBuiltin_Char_reduceIsDigit_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_589____closed__4(); -lean_mark_persistent(l___regBuiltin_Char_reduceIsDigit_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_589____closed__4); -l___regBuiltin_Char_reduceIsDigit_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_589____closed__5 = _init_l___regBuiltin_Char_reduceIsDigit_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_589____closed__5(); -lean_mark_persistent(l___regBuiltin_Char_reduceIsDigit_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_589____closed__5); -l___regBuiltin_Char_reduceIsDigit_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_589____closed__6 = _init_l___regBuiltin_Char_reduceIsDigit_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_589____closed__6(); -lean_mark_persistent(l___regBuiltin_Char_reduceIsDigit_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_589____closed__6); -if (builtin) {res = l___regBuiltin_Char_reduceIsDigit_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_589_(lean_io_mk_world()); +l___regBuiltin_Char_reduceIsDigit_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_546____closed__1 = _init_l___regBuiltin_Char_reduceIsDigit_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_546____closed__1(); +lean_mark_persistent(l___regBuiltin_Char_reduceIsDigit_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_546____closed__1); +l___regBuiltin_Char_reduceIsDigit_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_546____closed__2 = _init_l___regBuiltin_Char_reduceIsDigit_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_546____closed__2(); +lean_mark_persistent(l___regBuiltin_Char_reduceIsDigit_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_546____closed__2); +l___regBuiltin_Char_reduceIsDigit_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_546____closed__3 = _init_l___regBuiltin_Char_reduceIsDigit_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_546____closed__3(); +lean_mark_persistent(l___regBuiltin_Char_reduceIsDigit_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_546____closed__3); +l___regBuiltin_Char_reduceIsDigit_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_546____closed__4 = _init_l___regBuiltin_Char_reduceIsDigit_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_546____closed__4(); +lean_mark_persistent(l___regBuiltin_Char_reduceIsDigit_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_546____closed__4); +l___regBuiltin_Char_reduceIsDigit_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_546____closed__5 = _init_l___regBuiltin_Char_reduceIsDigit_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_546____closed__5(); +lean_mark_persistent(l___regBuiltin_Char_reduceIsDigit_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_546____closed__5); +l___regBuiltin_Char_reduceIsDigit_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_546____closed__6 = _init_l___regBuiltin_Char_reduceIsDigit_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_546____closed__6(); +lean_mark_persistent(l___regBuiltin_Char_reduceIsDigit_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_546____closed__6); +if (builtin) {res = l___regBuiltin_Char_reduceIsDigit_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_546_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Char_reduceIsDigit_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_591_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_Char_reduceIsDigit_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_548_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Char_reduceIsDigit_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_593_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_Char_reduceIsDigit_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_550_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); }l_Char_reduceIsAlphaNum___closed__1 = _init_l_Char_reduceIsAlphaNum___closed__1(); lean_mark_persistent(l_Char_reduceIsAlphaNum___closed__1); l_Char_reduceIsAlphaNum___closed__2 = _init_l_Char_reduceIsAlphaNum___closed__2(); lean_mark_persistent(l_Char_reduceIsAlphaNum___closed__2); -l___regBuiltin_Char_reduceIsAlphaNum_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_608____closed__1 = _init_l___regBuiltin_Char_reduceIsAlphaNum_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_608____closed__1(); -lean_mark_persistent(l___regBuiltin_Char_reduceIsAlphaNum_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_608____closed__1); -l___regBuiltin_Char_reduceIsAlphaNum_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_608____closed__2 = _init_l___regBuiltin_Char_reduceIsAlphaNum_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_608____closed__2(); -lean_mark_persistent(l___regBuiltin_Char_reduceIsAlphaNum_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_608____closed__2); -l___regBuiltin_Char_reduceIsAlphaNum_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_608____closed__3 = _init_l___regBuiltin_Char_reduceIsAlphaNum_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_608____closed__3(); -lean_mark_persistent(l___regBuiltin_Char_reduceIsAlphaNum_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_608____closed__3); -l___regBuiltin_Char_reduceIsAlphaNum_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_608____closed__4 = _init_l___regBuiltin_Char_reduceIsAlphaNum_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_608____closed__4(); -lean_mark_persistent(l___regBuiltin_Char_reduceIsAlphaNum_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_608____closed__4); -l___regBuiltin_Char_reduceIsAlphaNum_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_608____closed__5 = _init_l___regBuiltin_Char_reduceIsAlphaNum_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_608____closed__5(); -lean_mark_persistent(l___regBuiltin_Char_reduceIsAlphaNum_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_608____closed__5); -l___regBuiltin_Char_reduceIsAlphaNum_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_608____closed__6 = _init_l___regBuiltin_Char_reduceIsAlphaNum_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_608____closed__6(); -lean_mark_persistent(l___regBuiltin_Char_reduceIsAlphaNum_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_608____closed__6); -if (builtin) {res = l___regBuiltin_Char_reduceIsAlphaNum_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_608_(lean_io_mk_world()); +l___regBuiltin_Char_reduceIsAlphaNum_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_565____closed__1 = _init_l___regBuiltin_Char_reduceIsAlphaNum_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_565____closed__1(); +lean_mark_persistent(l___regBuiltin_Char_reduceIsAlphaNum_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_565____closed__1); +l___regBuiltin_Char_reduceIsAlphaNum_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_565____closed__2 = _init_l___regBuiltin_Char_reduceIsAlphaNum_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_565____closed__2(); +lean_mark_persistent(l___regBuiltin_Char_reduceIsAlphaNum_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_565____closed__2); +l___regBuiltin_Char_reduceIsAlphaNum_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_565____closed__3 = _init_l___regBuiltin_Char_reduceIsAlphaNum_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_565____closed__3(); +lean_mark_persistent(l___regBuiltin_Char_reduceIsAlphaNum_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_565____closed__3); +l___regBuiltin_Char_reduceIsAlphaNum_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_565____closed__4 = _init_l___regBuiltin_Char_reduceIsAlphaNum_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_565____closed__4(); +lean_mark_persistent(l___regBuiltin_Char_reduceIsAlphaNum_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_565____closed__4); +l___regBuiltin_Char_reduceIsAlphaNum_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_565____closed__5 = _init_l___regBuiltin_Char_reduceIsAlphaNum_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_565____closed__5(); +lean_mark_persistent(l___regBuiltin_Char_reduceIsAlphaNum_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_565____closed__5); +l___regBuiltin_Char_reduceIsAlphaNum_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_565____closed__6 = _init_l___regBuiltin_Char_reduceIsAlphaNum_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_565____closed__6(); +lean_mark_persistent(l___regBuiltin_Char_reduceIsAlphaNum_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_565____closed__6); +if (builtin) {res = l___regBuiltin_Char_reduceIsAlphaNum_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_565_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Char_reduceIsAlphaNum_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_610_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_Char_reduceIsAlphaNum_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_567_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Char_reduceIsAlphaNum_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_612_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_Char_reduceIsAlphaNum_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_569_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); }l_Char_reduceToString___lambda__1___closed__1 = _init_l_Char_reduceToString___lambda__1___closed__1(); @@ -7357,126 +7329,148 @@ l_Char_reduceToString___closed__2 = _init_l_Char_reduceToString___closed__2(); lean_mark_persistent(l_Char_reduceToString___closed__2); l_Char_reduceToString___closed__3 = _init_l_Char_reduceToString___closed__3(); lean_mark_persistent(l_Char_reduceToString___closed__3); -l___regBuiltin_Char_reduceToString_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_631____closed__1 = _init_l___regBuiltin_Char_reduceToString_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_631____closed__1(); -lean_mark_persistent(l___regBuiltin_Char_reduceToString_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_631____closed__1); -l___regBuiltin_Char_reduceToString_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_631____closed__2 = _init_l___regBuiltin_Char_reduceToString_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_631____closed__2(); -lean_mark_persistent(l___regBuiltin_Char_reduceToString_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_631____closed__2); -l___regBuiltin_Char_reduceToString_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_631____closed__3 = _init_l___regBuiltin_Char_reduceToString_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_631____closed__3(); -lean_mark_persistent(l___regBuiltin_Char_reduceToString_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_631____closed__3); -l___regBuiltin_Char_reduceToString_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_631____closed__4 = _init_l___regBuiltin_Char_reduceToString_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_631____closed__4(); -lean_mark_persistent(l___regBuiltin_Char_reduceToString_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_631____closed__4); -l___regBuiltin_Char_reduceToString_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_631____closed__5 = _init_l___regBuiltin_Char_reduceToString_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_631____closed__5(); -lean_mark_persistent(l___regBuiltin_Char_reduceToString_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_631____closed__5); -l___regBuiltin_Char_reduceToString_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_631____closed__6 = _init_l___regBuiltin_Char_reduceToString_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_631____closed__6(); -lean_mark_persistent(l___regBuiltin_Char_reduceToString_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_631____closed__6); -l___regBuiltin_Char_reduceToString_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_631____closed__7 = _init_l___regBuiltin_Char_reduceToString_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_631____closed__7(); -lean_mark_persistent(l___regBuiltin_Char_reduceToString_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_631____closed__7); -l___regBuiltin_Char_reduceToString_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_631____closed__8 = _init_l___regBuiltin_Char_reduceToString_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_631____closed__8(); -lean_mark_persistent(l___regBuiltin_Char_reduceToString_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_631____closed__8); -l___regBuiltin_Char_reduceToString_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_631____closed__9 = _init_l___regBuiltin_Char_reduceToString_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_631____closed__9(); -lean_mark_persistent(l___regBuiltin_Char_reduceToString_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_631____closed__9); -l___regBuiltin_Char_reduceToString_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_631____closed__10 = _init_l___regBuiltin_Char_reduceToString_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_631____closed__10(); -lean_mark_persistent(l___regBuiltin_Char_reduceToString_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_631____closed__10); -l___regBuiltin_Char_reduceToString_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_631____closed__11 = _init_l___regBuiltin_Char_reduceToString_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_631____closed__11(); -lean_mark_persistent(l___regBuiltin_Char_reduceToString_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_631____closed__11); -if (builtin) {res = l___regBuiltin_Char_reduceToString_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_631_(lean_io_mk_world()); +l___regBuiltin_Char_reduceToString_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_588____closed__1 = _init_l___regBuiltin_Char_reduceToString_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_588____closed__1(); +lean_mark_persistent(l___regBuiltin_Char_reduceToString_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_588____closed__1); +l___regBuiltin_Char_reduceToString_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_588____closed__2 = _init_l___regBuiltin_Char_reduceToString_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_588____closed__2(); +lean_mark_persistent(l___regBuiltin_Char_reduceToString_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_588____closed__2); +l___regBuiltin_Char_reduceToString_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_588____closed__3 = _init_l___regBuiltin_Char_reduceToString_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_588____closed__3(); +lean_mark_persistent(l___regBuiltin_Char_reduceToString_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_588____closed__3); +l___regBuiltin_Char_reduceToString_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_588____closed__4 = _init_l___regBuiltin_Char_reduceToString_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_588____closed__4(); +lean_mark_persistent(l___regBuiltin_Char_reduceToString_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_588____closed__4); +l___regBuiltin_Char_reduceToString_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_588____closed__5 = _init_l___regBuiltin_Char_reduceToString_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_588____closed__5(); +lean_mark_persistent(l___regBuiltin_Char_reduceToString_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_588____closed__5); +l___regBuiltin_Char_reduceToString_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_588____closed__6 = _init_l___regBuiltin_Char_reduceToString_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_588____closed__6(); +lean_mark_persistent(l___regBuiltin_Char_reduceToString_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_588____closed__6); +l___regBuiltin_Char_reduceToString_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_588____closed__7 = _init_l___regBuiltin_Char_reduceToString_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_588____closed__7(); +lean_mark_persistent(l___regBuiltin_Char_reduceToString_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_588____closed__7); +l___regBuiltin_Char_reduceToString_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_588____closed__8 = _init_l___regBuiltin_Char_reduceToString_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_588____closed__8(); +lean_mark_persistent(l___regBuiltin_Char_reduceToString_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_588____closed__8); +l___regBuiltin_Char_reduceToString_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_588____closed__9 = _init_l___regBuiltin_Char_reduceToString_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_588____closed__9(); +lean_mark_persistent(l___regBuiltin_Char_reduceToString_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_588____closed__9); +l___regBuiltin_Char_reduceToString_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_588____closed__10 = _init_l___regBuiltin_Char_reduceToString_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_588____closed__10(); +lean_mark_persistent(l___regBuiltin_Char_reduceToString_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_588____closed__10); +l___regBuiltin_Char_reduceToString_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_588____closed__11 = _init_l___regBuiltin_Char_reduceToString_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_588____closed__11(); +lean_mark_persistent(l___regBuiltin_Char_reduceToString_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_588____closed__11); +if (builtin) {res = l___regBuiltin_Char_reduceToString_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_588_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Char_reduceToString_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_633_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_Char_reduceToString_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_590_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Char_reduceToString_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_635_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_Char_reduceToString_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_592_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}l_Char_reduceVal___closed__1 = _init_l_Char_reduceVal___closed__1(); +}l_Char_reduceVal___lambda__1___closed__1 = _init_l_Char_reduceVal___lambda__1___closed__1(); +lean_mark_persistent(l_Char_reduceVal___lambda__1___closed__1); +l_Char_reduceVal___lambda__1___closed__2 = _init_l_Char_reduceVal___lambda__1___closed__2(); +lean_mark_persistent(l_Char_reduceVal___lambda__1___closed__2); +l_Char_reduceVal___lambda__1___closed__3 = _init_l_Char_reduceVal___lambda__1___closed__3(); +lean_mark_persistent(l_Char_reduceVal___lambda__1___closed__3); +l_Char_reduceVal___lambda__1___closed__4 = _init_l_Char_reduceVal___lambda__1___closed__4(); +lean_mark_persistent(l_Char_reduceVal___lambda__1___closed__4); +l_Char_reduceVal___lambda__1___closed__5 = _init_l_Char_reduceVal___lambda__1___closed__5(); +lean_mark_persistent(l_Char_reduceVal___lambda__1___closed__5); +l_Char_reduceVal___lambda__1___closed__6 = _init_l_Char_reduceVal___lambda__1___closed__6(); +lean_mark_persistent(l_Char_reduceVal___lambda__1___closed__6); +l_Char_reduceVal___lambda__1___closed__7 = _init_l_Char_reduceVal___lambda__1___closed__7(); +lean_mark_persistent(l_Char_reduceVal___lambda__1___closed__7); +l_Char_reduceVal___lambda__1___closed__8 = _init_l_Char_reduceVal___lambda__1___closed__8(); +lean_mark_persistent(l_Char_reduceVal___lambda__1___closed__8); +l_Char_reduceVal___lambda__1___closed__9 = _init_l_Char_reduceVal___lambda__1___closed__9(); +lean_mark_persistent(l_Char_reduceVal___lambda__1___closed__9); +l_Char_reduceVal___lambda__1___closed__10 = _init_l_Char_reduceVal___lambda__1___closed__10(); +lean_mark_persistent(l_Char_reduceVal___lambda__1___closed__10); +l_Char_reduceVal___lambda__1___closed__11 = _init_l_Char_reduceVal___lambda__1___closed__11(); +lean_mark_persistent(l_Char_reduceVal___lambda__1___closed__11); +l_Char_reduceVal___closed__1 = _init_l_Char_reduceVal___closed__1(); lean_mark_persistent(l_Char_reduceVal___closed__1); l_Char_reduceVal___closed__2 = _init_l_Char_reduceVal___closed__2(); lean_mark_persistent(l_Char_reduceVal___closed__2); -l___regBuiltin_Char_reduceVal_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_739____closed__1 = _init_l___regBuiltin_Char_reduceVal_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_739____closed__1(); -lean_mark_persistent(l___regBuiltin_Char_reduceVal_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_739____closed__1); -l___regBuiltin_Char_reduceVal_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_739____closed__2 = _init_l___regBuiltin_Char_reduceVal_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_739____closed__2(); -lean_mark_persistent(l___regBuiltin_Char_reduceVal_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_739____closed__2); -l___regBuiltin_Char_reduceVal_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_739____closed__3 = _init_l___regBuiltin_Char_reduceVal_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_739____closed__3(); -lean_mark_persistent(l___regBuiltin_Char_reduceVal_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_739____closed__3); -l___regBuiltin_Char_reduceVal_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_739____closed__4 = _init_l___regBuiltin_Char_reduceVal_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_739____closed__4(); -lean_mark_persistent(l___regBuiltin_Char_reduceVal_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_739____closed__4); -l___regBuiltin_Char_reduceVal_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_739____closed__5 = _init_l___regBuiltin_Char_reduceVal_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_739____closed__5(); -lean_mark_persistent(l___regBuiltin_Char_reduceVal_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_739____closed__5); -l___regBuiltin_Char_reduceVal_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_739____closed__6 = _init_l___regBuiltin_Char_reduceVal_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_739____closed__6(); -lean_mark_persistent(l___regBuiltin_Char_reduceVal_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_739____closed__6); -if (builtin) {res = l___regBuiltin_Char_reduceVal_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_739_(lean_io_mk_world()); +l___regBuiltin_Char_reduceVal_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_696____closed__1 = _init_l___regBuiltin_Char_reduceVal_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_696____closed__1(); +lean_mark_persistent(l___regBuiltin_Char_reduceVal_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_696____closed__1); +l___regBuiltin_Char_reduceVal_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_696____closed__2 = _init_l___regBuiltin_Char_reduceVal_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_696____closed__2(); +lean_mark_persistent(l___regBuiltin_Char_reduceVal_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_696____closed__2); +l___regBuiltin_Char_reduceVal_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_696____closed__3 = _init_l___regBuiltin_Char_reduceVal_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_696____closed__3(); +lean_mark_persistent(l___regBuiltin_Char_reduceVal_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_696____closed__3); +l___regBuiltin_Char_reduceVal_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_696____closed__4 = _init_l___regBuiltin_Char_reduceVal_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_696____closed__4(); +lean_mark_persistent(l___regBuiltin_Char_reduceVal_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_696____closed__4); +l___regBuiltin_Char_reduceVal_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_696____closed__5 = _init_l___regBuiltin_Char_reduceVal_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_696____closed__5(); +lean_mark_persistent(l___regBuiltin_Char_reduceVal_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_696____closed__5); +l___regBuiltin_Char_reduceVal_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_696____closed__6 = _init_l___regBuiltin_Char_reduceVal_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_696____closed__6(); +lean_mark_persistent(l___regBuiltin_Char_reduceVal_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_696____closed__6); +if (builtin) {res = l___regBuiltin_Char_reduceVal_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_696_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Char_reduceVal_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_741_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_Char_reduceVal_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_698_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Char_reduceVal_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_743_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_Char_reduceVal_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_700_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); }l_Char_reduceEq___closed__1 = _init_l_Char_reduceEq___closed__1(); lean_mark_persistent(l_Char_reduceEq___closed__1); l_Char_reduceEq___closed__2 = _init_l_Char_reduceEq___closed__2(); lean_mark_persistent(l_Char_reduceEq___closed__2); -l___regBuiltin_Char_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_780____closed__1 = _init_l___regBuiltin_Char_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_780____closed__1(); -lean_mark_persistent(l___regBuiltin_Char_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_780____closed__1); -l___regBuiltin_Char_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_780____closed__2 = _init_l___regBuiltin_Char_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_780____closed__2(); -lean_mark_persistent(l___regBuiltin_Char_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_780____closed__2); -l___regBuiltin_Char_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_780____closed__3 = _init_l___regBuiltin_Char_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_780____closed__3(); -lean_mark_persistent(l___regBuiltin_Char_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_780____closed__3); -l___regBuiltin_Char_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_780____closed__4 = _init_l___regBuiltin_Char_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_780____closed__4(); -lean_mark_persistent(l___regBuiltin_Char_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_780____closed__4); -l___regBuiltin_Char_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_780____closed__5 = _init_l___regBuiltin_Char_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_780____closed__5(); -lean_mark_persistent(l___regBuiltin_Char_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_780____closed__5); -l___regBuiltin_Char_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_780____closed__6 = _init_l___regBuiltin_Char_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_780____closed__6(); -lean_mark_persistent(l___regBuiltin_Char_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_780____closed__6); -l___regBuiltin_Char_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_780____closed__7 = _init_l___regBuiltin_Char_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_780____closed__7(); -lean_mark_persistent(l___regBuiltin_Char_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_780____closed__7); -l___regBuiltin_Char_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_780____closed__8 = _init_l___regBuiltin_Char_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_780____closed__8(); -lean_mark_persistent(l___regBuiltin_Char_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_780____closed__8); -if (builtin) {res = l___regBuiltin_Char_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_780_(lean_io_mk_world()); +l___regBuiltin_Char_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_737____closed__1 = _init_l___regBuiltin_Char_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_737____closed__1(); +lean_mark_persistent(l___regBuiltin_Char_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_737____closed__1); +l___regBuiltin_Char_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_737____closed__2 = _init_l___regBuiltin_Char_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_737____closed__2(); +lean_mark_persistent(l___regBuiltin_Char_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_737____closed__2); +l___regBuiltin_Char_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_737____closed__3 = _init_l___regBuiltin_Char_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_737____closed__3(); +lean_mark_persistent(l___regBuiltin_Char_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_737____closed__3); +l___regBuiltin_Char_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_737____closed__4 = _init_l___regBuiltin_Char_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_737____closed__4(); +lean_mark_persistent(l___regBuiltin_Char_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_737____closed__4); +l___regBuiltin_Char_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_737____closed__5 = _init_l___regBuiltin_Char_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_737____closed__5(); +lean_mark_persistent(l___regBuiltin_Char_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_737____closed__5); +l___regBuiltin_Char_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_737____closed__6 = _init_l___regBuiltin_Char_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_737____closed__6(); +lean_mark_persistent(l___regBuiltin_Char_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_737____closed__6); +l___regBuiltin_Char_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_737____closed__7 = _init_l___regBuiltin_Char_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_737____closed__7(); +lean_mark_persistent(l___regBuiltin_Char_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_737____closed__7); +l___regBuiltin_Char_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_737____closed__8 = _init_l___regBuiltin_Char_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_737____closed__8(); +lean_mark_persistent(l___regBuiltin_Char_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_737____closed__8); +if (builtin) {res = l___regBuiltin_Char_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_737_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Char_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_782_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_Char_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_739_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Char_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_784_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_Char_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_741_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); }l_Char_reduceNe___closed__1 = _init_l_Char_reduceNe___closed__1(); lean_mark_persistent(l_Char_reduceNe___closed__1); l_Char_reduceNe___closed__2 = _init_l_Char_reduceNe___closed__2(); lean_mark_persistent(l_Char_reduceNe___closed__2); -l___regBuiltin_Char_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_820____closed__1 = _init_l___regBuiltin_Char_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_820____closed__1(); -lean_mark_persistent(l___regBuiltin_Char_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_820____closed__1); -l___regBuiltin_Char_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_820____closed__2 = _init_l___regBuiltin_Char_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_820____closed__2(); -lean_mark_persistent(l___regBuiltin_Char_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_820____closed__2); -l___regBuiltin_Char_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_820____closed__3 = _init_l___regBuiltin_Char_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_820____closed__3(); -lean_mark_persistent(l___regBuiltin_Char_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_820____closed__3); -l___regBuiltin_Char_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_820____closed__4 = _init_l___regBuiltin_Char_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_820____closed__4(); -lean_mark_persistent(l___regBuiltin_Char_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_820____closed__4); -l___regBuiltin_Char_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_820____closed__5 = _init_l___regBuiltin_Char_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_820____closed__5(); -lean_mark_persistent(l___regBuiltin_Char_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_820____closed__5); -l___regBuiltin_Char_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_820____closed__6 = _init_l___regBuiltin_Char_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_820____closed__6(); -lean_mark_persistent(l___regBuiltin_Char_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_820____closed__6); -l___regBuiltin_Char_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_820____closed__7 = _init_l___regBuiltin_Char_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_820____closed__7(); -lean_mark_persistent(l___regBuiltin_Char_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_820____closed__7); -l___regBuiltin_Char_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_820____closed__8 = _init_l___regBuiltin_Char_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_820____closed__8(); -lean_mark_persistent(l___regBuiltin_Char_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_820____closed__8); -l___regBuiltin_Char_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_820____closed__9 = _init_l___regBuiltin_Char_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_820____closed__9(); -lean_mark_persistent(l___regBuiltin_Char_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_820____closed__9); -l___regBuiltin_Char_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_820____closed__10 = _init_l___regBuiltin_Char_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_820____closed__10(); -lean_mark_persistent(l___regBuiltin_Char_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_820____closed__10); -l___regBuiltin_Char_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_820____closed__11 = _init_l___regBuiltin_Char_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_820____closed__11(); -lean_mark_persistent(l___regBuiltin_Char_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_820____closed__11); -l___regBuiltin_Char_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_820____closed__12 = _init_l___regBuiltin_Char_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_820____closed__12(); -lean_mark_persistent(l___regBuiltin_Char_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_820____closed__12); -if (builtin) {res = l___regBuiltin_Char_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_820_(lean_io_mk_world()); +l___regBuiltin_Char_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_777____closed__1 = _init_l___regBuiltin_Char_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_777____closed__1(); +lean_mark_persistent(l___regBuiltin_Char_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_777____closed__1); +l___regBuiltin_Char_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_777____closed__2 = _init_l___regBuiltin_Char_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_777____closed__2(); +lean_mark_persistent(l___regBuiltin_Char_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_777____closed__2); +l___regBuiltin_Char_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_777____closed__3 = _init_l___regBuiltin_Char_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_777____closed__3(); +lean_mark_persistent(l___regBuiltin_Char_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_777____closed__3); +l___regBuiltin_Char_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_777____closed__4 = _init_l___regBuiltin_Char_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_777____closed__4(); +lean_mark_persistent(l___regBuiltin_Char_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_777____closed__4); +l___regBuiltin_Char_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_777____closed__5 = _init_l___regBuiltin_Char_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_777____closed__5(); +lean_mark_persistent(l___regBuiltin_Char_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_777____closed__5); +l___regBuiltin_Char_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_777____closed__6 = _init_l___regBuiltin_Char_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_777____closed__6(); +lean_mark_persistent(l___regBuiltin_Char_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_777____closed__6); +l___regBuiltin_Char_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_777____closed__7 = _init_l___regBuiltin_Char_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_777____closed__7(); +lean_mark_persistent(l___regBuiltin_Char_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_777____closed__7); +l___regBuiltin_Char_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_777____closed__8 = _init_l___regBuiltin_Char_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_777____closed__8(); +lean_mark_persistent(l___regBuiltin_Char_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_777____closed__8); +l___regBuiltin_Char_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_777____closed__9 = _init_l___regBuiltin_Char_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_777____closed__9(); +lean_mark_persistent(l___regBuiltin_Char_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_777____closed__9); +l___regBuiltin_Char_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_777____closed__10 = _init_l___regBuiltin_Char_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_777____closed__10(); +lean_mark_persistent(l___regBuiltin_Char_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_777____closed__10); +l___regBuiltin_Char_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_777____closed__11 = _init_l___regBuiltin_Char_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_777____closed__11(); +lean_mark_persistent(l___regBuiltin_Char_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_777____closed__11); +l___regBuiltin_Char_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_777____closed__12 = _init_l___regBuiltin_Char_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_777____closed__12(); +lean_mark_persistent(l___regBuiltin_Char_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_777____closed__12); +if (builtin) {res = l___regBuiltin_Char_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_777_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Char_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_822_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_Char_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_779_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Char_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_824_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_Char_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_781_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); }l_Char_reduceBEq___closed__1 = _init_l_Char_reduceBEq___closed__1(); @@ -7485,112 +7479,112 @@ l_Char_reduceBEq___closed__2 = _init_l_Char_reduceBEq___closed__2(); lean_mark_persistent(l_Char_reduceBEq___closed__2); l_Char_reduceBEq___closed__3 = _init_l_Char_reduceBEq___closed__3(); lean_mark_persistent(l_Char_reduceBEq___closed__3); -l___regBuiltin_Char_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_861____closed__1 = _init_l___regBuiltin_Char_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_861____closed__1(); -lean_mark_persistent(l___regBuiltin_Char_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_861____closed__1); -l___regBuiltin_Char_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_861____closed__2 = _init_l___regBuiltin_Char_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_861____closed__2(); -lean_mark_persistent(l___regBuiltin_Char_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_861____closed__2); -l___regBuiltin_Char_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_861____closed__3 = _init_l___regBuiltin_Char_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_861____closed__3(); -lean_mark_persistent(l___regBuiltin_Char_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_861____closed__3); -l___regBuiltin_Char_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_861____closed__4 = _init_l___regBuiltin_Char_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_861____closed__4(); -lean_mark_persistent(l___regBuiltin_Char_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_861____closed__4); -l___regBuiltin_Char_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_861____closed__5 = _init_l___regBuiltin_Char_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_861____closed__5(); -lean_mark_persistent(l___regBuiltin_Char_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_861____closed__5); -l___regBuiltin_Char_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_861____closed__6 = _init_l___regBuiltin_Char_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_861____closed__6(); -lean_mark_persistent(l___regBuiltin_Char_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_861____closed__6); -l___regBuiltin_Char_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_861____closed__7 = _init_l___regBuiltin_Char_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_861____closed__7(); -lean_mark_persistent(l___regBuiltin_Char_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_861____closed__7); -l___regBuiltin_Char_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_861____closed__8 = _init_l___regBuiltin_Char_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_861____closed__8(); -lean_mark_persistent(l___regBuiltin_Char_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_861____closed__8); -l___regBuiltin_Char_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_861____closed__9 = _init_l___regBuiltin_Char_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_861____closed__9(); -lean_mark_persistent(l___regBuiltin_Char_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_861____closed__9); -if (builtin) {res = l___regBuiltin_Char_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_861_(lean_io_mk_world()); +l___regBuiltin_Char_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_818____closed__1 = _init_l___regBuiltin_Char_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_818____closed__1(); +lean_mark_persistent(l___regBuiltin_Char_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_818____closed__1); +l___regBuiltin_Char_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_818____closed__2 = _init_l___regBuiltin_Char_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_818____closed__2(); +lean_mark_persistent(l___regBuiltin_Char_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_818____closed__2); +l___regBuiltin_Char_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_818____closed__3 = _init_l___regBuiltin_Char_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_818____closed__3(); +lean_mark_persistent(l___regBuiltin_Char_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_818____closed__3); +l___regBuiltin_Char_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_818____closed__4 = _init_l___regBuiltin_Char_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_818____closed__4(); +lean_mark_persistent(l___regBuiltin_Char_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_818____closed__4); +l___regBuiltin_Char_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_818____closed__5 = _init_l___regBuiltin_Char_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_818____closed__5(); +lean_mark_persistent(l___regBuiltin_Char_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_818____closed__5); +l___regBuiltin_Char_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_818____closed__6 = _init_l___regBuiltin_Char_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_818____closed__6(); +lean_mark_persistent(l___regBuiltin_Char_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_818____closed__6); +l___regBuiltin_Char_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_818____closed__7 = _init_l___regBuiltin_Char_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_818____closed__7(); +lean_mark_persistent(l___regBuiltin_Char_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_818____closed__7); +l___regBuiltin_Char_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_818____closed__8 = _init_l___regBuiltin_Char_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_818____closed__8(); +lean_mark_persistent(l___regBuiltin_Char_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_818____closed__8); +l___regBuiltin_Char_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_818____closed__9 = _init_l___regBuiltin_Char_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_818____closed__9(); +lean_mark_persistent(l___regBuiltin_Char_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_818____closed__9); +if (builtin) {res = l___regBuiltin_Char_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_818_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Char_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_863_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_Char_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_820_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Char_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_865_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_Char_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_822_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); }l_Char_reduceBNe___closed__1 = _init_l_Char_reduceBNe___closed__1(); lean_mark_persistent(l_Char_reduceBNe___closed__1); l_Char_reduceBNe___closed__2 = _init_l_Char_reduceBNe___closed__2(); lean_mark_persistent(l_Char_reduceBNe___closed__2); -l___regBuiltin_Char_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_901____closed__1 = _init_l___regBuiltin_Char_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_901____closed__1(); -lean_mark_persistent(l___regBuiltin_Char_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_901____closed__1); -l___regBuiltin_Char_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_901____closed__2 = _init_l___regBuiltin_Char_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_901____closed__2(); -lean_mark_persistent(l___regBuiltin_Char_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_901____closed__2); -l___regBuiltin_Char_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_901____closed__3 = _init_l___regBuiltin_Char_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_901____closed__3(); -lean_mark_persistent(l___regBuiltin_Char_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_901____closed__3); -l___regBuiltin_Char_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_901____closed__4 = _init_l___regBuiltin_Char_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_901____closed__4(); -lean_mark_persistent(l___regBuiltin_Char_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_901____closed__4); -l___regBuiltin_Char_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_901____closed__5 = _init_l___regBuiltin_Char_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_901____closed__5(); -lean_mark_persistent(l___regBuiltin_Char_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_901____closed__5); -l___regBuiltin_Char_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_901____closed__6 = _init_l___regBuiltin_Char_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_901____closed__6(); -lean_mark_persistent(l___regBuiltin_Char_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_901____closed__6); -l___regBuiltin_Char_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_901____closed__7 = _init_l___regBuiltin_Char_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_901____closed__7(); -lean_mark_persistent(l___regBuiltin_Char_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_901____closed__7); -l___regBuiltin_Char_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_901____closed__8 = _init_l___regBuiltin_Char_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_901____closed__8(); -lean_mark_persistent(l___regBuiltin_Char_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_901____closed__8); -l___regBuiltin_Char_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_901____closed__9 = _init_l___regBuiltin_Char_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_901____closed__9(); -lean_mark_persistent(l___regBuiltin_Char_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_901____closed__9); -if (builtin) {res = l___regBuiltin_Char_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_901_(lean_io_mk_world()); +l___regBuiltin_Char_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_858____closed__1 = _init_l___regBuiltin_Char_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_858____closed__1(); +lean_mark_persistent(l___regBuiltin_Char_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_858____closed__1); +l___regBuiltin_Char_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_858____closed__2 = _init_l___regBuiltin_Char_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_858____closed__2(); +lean_mark_persistent(l___regBuiltin_Char_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_858____closed__2); +l___regBuiltin_Char_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_858____closed__3 = _init_l___regBuiltin_Char_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_858____closed__3(); +lean_mark_persistent(l___regBuiltin_Char_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_858____closed__3); +l___regBuiltin_Char_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_858____closed__4 = _init_l___regBuiltin_Char_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_858____closed__4(); +lean_mark_persistent(l___regBuiltin_Char_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_858____closed__4); +l___regBuiltin_Char_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_858____closed__5 = _init_l___regBuiltin_Char_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_858____closed__5(); +lean_mark_persistent(l___regBuiltin_Char_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_858____closed__5); +l___regBuiltin_Char_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_858____closed__6 = _init_l___regBuiltin_Char_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_858____closed__6(); +lean_mark_persistent(l___regBuiltin_Char_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_858____closed__6); +l___regBuiltin_Char_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_858____closed__7 = _init_l___regBuiltin_Char_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_858____closed__7(); +lean_mark_persistent(l___regBuiltin_Char_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_858____closed__7); +l___regBuiltin_Char_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_858____closed__8 = _init_l___regBuiltin_Char_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_858____closed__8(); +lean_mark_persistent(l___regBuiltin_Char_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_858____closed__8); +l___regBuiltin_Char_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_858____closed__9 = _init_l___regBuiltin_Char_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_858____closed__9(); +lean_mark_persistent(l___regBuiltin_Char_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_858____closed__9); +if (builtin) {res = l___regBuiltin_Char_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_858_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Char_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_903_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_Char_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_860_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Char_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_905_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_Char_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_862_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}l___regBuiltin_Char_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_990____closed__1 = _init_l___regBuiltin_Char_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_990____closed__1(); -lean_mark_persistent(l___regBuiltin_Char_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_990____closed__1); -l___regBuiltin_Char_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_990____closed__2 = _init_l___regBuiltin_Char_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_990____closed__2(); -lean_mark_persistent(l___regBuiltin_Char_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_990____closed__2); -l___regBuiltin_Char_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_990____closed__3 = _init_l___regBuiltin_Char_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_990____closed__3(); -lean_mark_persistent(l___regBuiltin_Char_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_990____closed__3); -l___regBuiltin_Char_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_990____closed__4 = _init_l___regBuiltin_Char_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_990____closed__4(); -lean_mark_persistent(l___regBuiltin_Char_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_990____closed__4); -l___regBuiltin_Char_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_990____closed__5 = _init_l___regBuiltin_Char_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_990____closed__5(); -lean_mark_persistent(l___regBuiltin_Char_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_990____closed__5); -l___regBuiltin_Char_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_990____closed__6 = _init_l___regBuiltin_Char_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_990____closed__6(); -lean_mark_persistent(l___regBuiltin_Char_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_990____closed__6); -if (builtin) {res = l___regBuiltin_Char_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_990_(lean_io_mk_world()); +}l___regBuiltin_Char_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_947____closed__1 = _init_l___regBuiltin_Char_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_947____closed__1(); +lean_mark_persistent(l___regBuiltin_Char_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_947____closed__1); +l___regBuiltin_Char_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_947____closed__2 = _init_l___regBuiltin_Char_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_947____closed__2(); +lean_mark_persistent(l___regBuiltin_Char_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_947____closed__2); +l___regBuiltin_Char_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_947____closed__3 = _init_l___regBuiltin_Char_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_947____closed__3(); +lean_mark_persistent(l___regBuiltin_Char_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_947____closed__3); +l___regBuiltin_Char_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_947____closed__4 = _init_l___regBuiltin_Char_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_947____closed__4(); +lean_mark_persistent(l___regBuiltin_Char_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_947____closed__4); +l___regBuiltin_Char_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_947____closed__5 = _init_l___regBuiltin_Char_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_947____closed__5(); +lean_mark_persistent(l___regBuiltin_Char_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_947____closed__5); +l___regBuiltin_Char_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_947____closed__6 = _init_l___regBuiltin_Char_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_947____closed__6(); +lean_mark_persistent(l___regBuiltin_Char_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_947____closed__6); +if (builtin) {res = l___regBuiltin_Char_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_947_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Char_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_992_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_Char_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_949_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Char_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_994_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_Char_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_951_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); }l_Char_reduceOfNatAux___closed__1 = _init_l_Char_reduceOfNatAux___closed__1(); lean_mark_persistent(l_Char_reduceOfNatAux___closed__1); l_Char_reduceOfNatAux___closed__2 = _init_l_Char_reduceOfNatAux___closed__2(); lean_mark_persistent(l_Char_reduceOfNatAux___closed__2); -l___regBuiltin_Char_reduceOfNatAux_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1102____closed__1 = _init_l___regBuiltin_Char_reduceOfNatAux_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1102____closed__1(); -lean_mark_persistent(l___regBuiltin_Char_reduceOfNatAux_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1102____closed__1); -l___regBuiltin_Char_reduceOfNatAux_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1102____closed__2 = _init_l___regBuiltin_Char_reduceOfNatAux_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1102____closed__2(); -lean_mark_persistent(l___regBuiltin_Char_reduceOfNatAux_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1102____closed__2); -l___regBuiltin_Char_reduceOfNatAux_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1102____closed__3 = _init_l___regBuiltin_Char_reduceOfNatAux_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1102____closed__3(); -lean_mark_persistent(l___regBuiltin_Char_reduceOfNatAux_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1102____closed__3); -l___regBuiltin_Char_reduceOfNatAux_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1102____closed__4 = _init_l___regBuiltin_Char_reduceOfNatAux_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1102____closed__4(); -lean_mark_persistent(l___regBuiltin_Char_reduceOfNatAux_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1102____closed__4); -l___regBuiltin_Char_reduceOfNatAux_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1102____closed__5 = _init_l___regBuiltin_Char_reduceOfNatAux_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1102____closed__5(); -lean_mark_persistent(l___regBuiltin_Char_reduceOfNatAux_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1102____closed__5); -l___regBuiltin_Char_reduceOfNatAux_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1102____closed__6 = _init_l___regBuiltin_Char_reduceOfNatAux_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1102____closed__6(); -lean_mark_persistent(l___regBuiltin_Char_reduceOfNatAux_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1102____closed__6); -l___regBuiltin_Char_reduceOfNatAux_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1102____closed__7 = _init_l___regBuiltin_Char_reduceOfNatAux_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1102____closed__7(); -lean_mark_persistent(l___regBuiltin_Char_reduceOfNatAux_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1102____closed__7); -l___regBuiltin_Char_reduceOfNatAux_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1102____closed__8 = _init_l___regBuiltin_Char_reduceOfNatAux_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1102____closed__8(); -lean_mark_persistent(l___regBuiltin_Char_reduceOfNatAux_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1102____closed__8); -if (builtin) {res = l___regBuiltin_Char_reduceOfNatAux_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1102_(lean_io_mk_world()); +l___regBuiltin_Char_reduceOfNatAux_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1059____closed__1 = _init_l___regBuiltin_Char_reduceOfNatAux_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1059____closed__1(); +lean_mark_persistent(l___regBuiltin_Char_reduceOfNatAux_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1059____closed__1); +l___regBuiltin_Char_reduceOfNatAux_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1059____closed__2 = _init_l___regBuiltin_Char_reduceOfNatAux_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1059____closed__2(); +lean_mark_persistent(l___regBuiltin_Char_reduceOfNatAux_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1059____closed__2); +l___regBuiltin_Char_reduceOfNatAux_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1059____closed__3 = _init_l___regBuiltin_Char_reduceOfNatAux_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1059____closed__3(); +lean_mark_persistent(l___regBuiltin_Char_reduceOfNatAux_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1059____closed__3); +l___regBuiltin_Char_reduceOfNatAux_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1059____closed__4 = _init_l___regBuiltin_Char_reduceOfNatAux_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1059____closed__4(); +lean_mark_persistent(l___regBuiltin_Char_reduceOfNatAux_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1059____closed__4); +l___regBuiltin_Char_reduceOfNatAux_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1059____closed__5 = _init_l___regBuiltin_Char_reduceOfNatAux_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1059____closed__5(); +lean_mark_persistent(l___regBuiltin_Char_reduceOfNatAux_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1059____closed__5); +l___regBuiltin_Char_reduceOfNatAux_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1059____closed__6 = _init_l___regBuiltin_Char_reduceOfNatAux_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1059____closed__6(); +lean_mark_persistent(l___regBuiltin_Char_reduceOfNatAux_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1059____closed__6); +l___regBuiltin_Char_reduceOfNatAux_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1059____closed__7 = _init_l___regBuiltin_Char_reduceOfNatAux_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1059____closed__7(); +lean_mark_persistent(l___regBuiltin_Char_reduceOfNatAux_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1059____closed__7); +l___regBuiltin_Char_reduceOfNatAux_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1059____closed__8 = _init_l___regBuiltin_Char_reduceOfNatAux_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1059____closed__8(); +lean_mark_persistent(l___regBuiltin_Char_reduceOfNatAux_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1059____closed__8); +if (builtin) {res = l___regBuiltin_Char_reduceOfNatAux_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1059_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Char_reduceOfNatAux_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1104_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_Char_reduceOfNatAux_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1061_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Char_reduceOfNatAux_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1106_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_Char_reduceOfNatAux_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1063_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); }l_Char_reduceDefault___lambda__1___closed__1 = _init_l_Char_reduceDefault___lambda__1___closed__1(); @@ -7609,27 +7603,27 @@ l_Char_reduceDefault___closed__3 = _init_l_Char_reduceDefault___closed__3(); lean_mark_persistent(l_Char_reduceDefault___closed__3); l_Char_reduceDefault___closed__4 = _init_l_Char_reduceDefault___closed__4(); lean_mark_persistent(l_Char_reduceDefault___closed__4); -l___regBuiltin_Char_reduceDefault_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1179____closed__1 = _init_l___regBuiltin_Char_reduceDefault_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1179____closed__1(); -lean_mark_persistent(l___regBuiltin_Char_reduceDefault_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1179____closed__1); -l___regBuiltin_Char_reduceDefault_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1179____closed__2 = _init_l___regBuiltin_Char_reduceDefault_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1179____closed__2(); -lean_mark_persistent(l___regBuiltin_Char_reduceDefault_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1179____closed__2); -l___regBuiltin_Char_reduceDefault_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1179____closed__3 = _init_l___regBuiltin_Char_reduceDefault_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1179____closed__3(); -lean_mark_persistent(l___regBuiltin_Char_reduceDefault_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1179____closed__3); -l___regBuiltin_Char_reduceDefault_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1179____closed__4 = _init_l___regBuiltin_Char_reduceDefault_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1179____closed__4(); -lean_mark_persistent(l___regBuiltin_Char_reduceDefault_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1179____closed__4); -l___regBuiltin_Char_reduceDefault_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1179____closed__5 = _init_l___regBuiltin_Char_reduceDefault_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1179____closed__5(); -lean_mark_persistent(l___regBuiltin_Char_reduceDefault_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1179____closed__5); -l___regBuiltin_Char_reduceDefault_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1179____closed__6 = _init_l___regBuiltin_Char_reduceDefault_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1179____closed__6(); -lean_mark_persistent(l___regBuiltin_Char_reduceDefault_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1179____closed__6); -l___regBuiltin_Char_reduceDefault_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1179____closed__7 = _init_l___regBuiltin_Char_reduceDefault_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1179____closed__7(); -lean_mark_persistent(l___regBuiltin_Char_reduceDefault_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1179____closed__7); -if (builtin) {res = l___regBuiltin_Char_reduceDefault_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1179_(lean_io_mk_world()); +l___regBuiltin_Char_reduceDefault_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1136____closed__1 = _init_l___regBuiltin_Char_reduceDefault_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1136____closed__1(); +lean_mark_persistent(l___regBuiltin_Char_reduceDefault_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1136____closed__1); +l___regBuiltin_Char_reduceDefault_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1136____closed__2 = _init_l___regBuiltin_Char_reduceDefault_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1136____closed__2(); +lean_mark_persistent(l___regBuiltin_Char_reduceDefault_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1136____closed__2); +l___regBuiltin_Char_reduceDefault_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1136____closed__3 = _init_l___regBuiltin_Char_reduceDefault_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1136____closed__3(); +lean_mark_persistent(l___regBuiltin_Char_reduceDefault_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1136____closed__3); +l___regBuiltin_Char_reduceDefault_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1136____closed__4 = _init_l___regBuiltin_Char_reduceDefault_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1136____closed__4(); +lean_mark_persistent(l___regBuiltin_Char_reduceDefault_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1136____closed__4); +l___regBuiltin_Char_reduceDefault_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1136____closed__5 = _init_l___regBuiltin_Char_reduceDefault_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1136____closed__5(); +lean_mark_persistent(l___regBuiltin_Char_reduceDefault_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1136____closed__5); +l___regBuiltin_Char_reduceDefault_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1136____closed__6 = _init_l___regBuiltin_Char_reduceDefault_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1136____closed__6(); +lean_mark_persistent(l___regBuiltin_Char_reduceDefault_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1136____closed__6); +l___regBuiltin_Char_reduceDefault_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1136____closed__7 = _init_l___regBuiltin_Char_reduceDefault_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1136____closed__7(); +lean_mark_persistent(l___regBuiltin_Char_reduceDefault_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1136____closed__7); +if (builtin) {res = l___regBuiltin_Char_reduceDefault_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1136_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Char_reduceDefault_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1181_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_Char_reduceDefault_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1138_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Char_reduceDefault_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1183_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_Char_reduceDefault_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char___hyg_1140_(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)); diff --git a/stage0/stdlib/Lean/Meta/Tactic/Simp/BuiltinSimprocs/Fin.c b/stage0/stdlib/Lean/Meta/Tactic/Simp/BuiltinSimprocs/Fin.c index 3f9a6d6231..a0d554c877 100644 --- a/stage0/stdlib/Lean/Meta/Tactic/Simp/BuiltinSimprocs/Fin.c +++ b/stage0/stdlib/Lean/Meta/Tactic/Simp/BuiltinSimprocs/Fin.c @@ -1,6 +1,6 @@ // Lean compiler output // Module: Lean.Meta.Tactic.Simp.BuiltinSimprocs.Fin -// Imports: Lean.ToExpr Lean.Meta.Tactic.Simp.BuiltinSimprocs.Nat +// Imports: Lean.ToExpr Lean.Meta.LitValues Lean.Meta.Tactic.Simp.BuiltinSimprocs.Nat #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -13,1144 +13,485 @@ #ifdef __cplusplus extern "C" { #endif -LEAN_EXPORT lean_object* l___regBuiltin_Fin_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1015_(lean_object*); +static lean_object* l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_595____closed__1; lean_object* l_Lean_Expr_const___override(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Fin_reduceGT___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_Fin_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_889____closed__10; +static lean_object* l___regBuiltin_Fin_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1056____closed__6; +static lean_object* l___regBuiltin_Fin_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_679____closed__13; +static lean_object* l___regBuiltin_Fin_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_763____closed__3; +static lean_object* l___regBuiltin_Fin_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_973____closed__2; LEAN_EXPORT lean_object* l_Fin_reduceBNe(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___regBuiltin_Fin_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_766____closed__10; +static lean_object* l___regBuiltin_Fin_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_721____closed__3; static lean_object* l_Fin_reduceBoolPred___lambda__1___closed__1; LEAN_EXPORT lean_object* l_Fin_reduceBoolPred___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* l_Lean_mkNatLit(lean_object*); static lean_object* l_Fin_reduceBEq___closed__1; +static lean_object* l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_595____closed__12; +static lean_object* l_Fin_reduceBin___lambda__1___closed__8; +static lean_object* l___regBuiltin_Fin_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_931____closed__2; lean_object* lean_mk_empty_array_with_capacity(lean_object*); -LEAN_EXPORT lean_object* l_Fin_reduceAdd___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_Fin_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_763____closed__6; +LEAN_EXPORT lean_object* l___regBuiltin_Fin_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_721_(lean_object*); +LEAN_EXPORT lean_object* l_Fin_reduceAdd___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_Fin_reduceBin___lambda__1___closed__9; LEAN_EXPORT lean_object* l_Fin_reduceAdd(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___regBuiltin_Fin_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1019_(lean_object*); +lean_object* l_Lean_Meta_getNatValue_x3f(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_595____closed__9; +LEAN_EXPORT lean_object* l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_599_(lean_object*); static lean_object* l_Fin_reduceBNe___closed__2; -static lean_object* l___regBuiltin_Fin_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1182____closed__7; -static lean_object* l_Fin_fromExpr_x3f___closed__5; +static lean_object* l___regBuiltin_Fin_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_847____closed__9; +static lean_object* l_Fin_reduceBin___lambda__1___closed__1; +static lean_object* l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_595____closed__13; LEAN_EXPORT lean_object* l_Fin_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_Fin_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1223____closed__3; -LEAN_EXPORT lean_object* l___regBuiltin_Fin_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_811_(lean_object*); -lean_object* lean_whnf(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___regBuiltin_Fin_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1061_(lean_object*); -static lean_object* l___regBuiltin_Fin_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_807____closed__4; -LEAN_EXPORT lean_object* l___regBuiltin_Fin_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1357_(lean_object*); +static lean_object* l___regBuiltin_Fin_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_805____closed__9; LEAN_EXPORT lean_object* l_Fin_reduceBinPred(lean_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_Fin_reduceMod(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___regBuiltin_Fin_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_889____closed__1; +static lean_object* l___regBuiltin_Fin_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1097____closed__9; lean_object* l_Lean_mkAppB(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___regBuiltin_Fin_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_770_(lean_object*); +LEAN_EXPORT lean_object* l___regBuiltin_Fin_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1097_(lean_object*); +static lean_object* l_Fin_reduceBin___lambda__1___closed__5; static lean_object* l_Fin_reduceDiv___closed__2; -LEAN_EXPORT lean_object* l_Fin_reduceDiv___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_Fin_reduceDiv___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_Fin_reduceMod___closed__1; -static lean_object* l___regBuiltin_Fin_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_889____closed__7; -static lean_object* l___regBuiltin_Fin_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_807____closed__9; uint8_t l_Lean_Expr_isAppOfArity(lean_object*, lean_object*, lean_object*); static lean_object* l_Fin_reduceLT___closed__3; -static lean_object* l___regBuiltin_Fin_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1355____closed__7; -LEAN_EXPORT lean_object* l___regBuiltin_Fin_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_977_(lean_object*); -static lean_object* l___regBuiltin_Fin_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1099____closed__6; +static lean_object* l_Fin_reduceBin___lambda__1___closed__3; +static lean_object* l___regBuiltin_Fin_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_721____closed__2; +static lean_object* l___regBuiltin_Fin_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_763____closed__1; LEAN_EXPORT lean_object* l_Fin_reduceLT(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___regBuiltin_Fin_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_973_(lean_object*); -static lean_object* l___regBuiltin_Fin_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1099____closed__4; -static lean_object* l___regBuiltin_Fin_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1140____closed__6; +static lean_object* l___regBuiltin_Fin_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1260____closed__8; lean_object* lean_array_push(lean_object*, lean_object*); static lean_object* l_Fin_reduceBEq___closed__3; -static lean_object* l___regBuiltin_Fin_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_766____closed__14; -static lean_object* l___regBuiltin_Fin_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_766____closed__3; -static lean_object* l___regBuiltin_Fin_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_766____closed__4; -static lean_object* l___regBuiltin_Fin_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1355____closed__6; -static lean_object* l___regBuiltin_Fin_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_807____closed__11; +LEAN_EXPORT lean_object* l___regBuiltin_Fin_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_805_(lean_object*); +LEAN_EXPORT lean_object* l___regBuiltin_Fin_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_931_(lean_object*); +static lean_object* l___regBuiltin_Fin_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_847____closed__2; static lean_object* l_Fin_reduceBNe___closed__1; -static lean_object* l___regBuiltin_Fin_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_848____closed__7; -static lean_object* l_Fin_fromExpr_x3f___closed__3; -static lean_object* l___regBuiltin_Fin_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1099____closed__5; -static lean_object* l___regBuiltin_Fin_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_889____closed__3; +LEAN_EXPORT lean_object* l___regBuiltin_Fin_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1014_(lean_object*); +static lean_object* l___regBuiltin_Fin_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_721____closed__10; +static lean_object* l_Fin_reduceBin___lambda__1___closed__11; +static lean_object* l___regBuiltin_Fin_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_973____closed__8; +static lean_object* l___regBuiltin_Fin_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_679____closed__5; LEAN_EXPORT lean_object* l_Fin_reduceNe___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_Fin_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1223____closed__6; -LEAN_EXPORT lean_object* l_Fin_reduceBin___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*); -static lean_object* l___regBuiltin_Fin_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_973____closed__10; -LEAN_EXPORT lean_object* l___regBuiltin_Fin_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_807_(lean_object*); -static lean_object* l___regBuiltin_Fin_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1140____closed__4; -LEAN_EXPORT lean_object* l___regBuiltin_Fin_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_931_(lean_object*); -static lean_object* l___regBuiltin_Fin_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_848____closed__6; -LEAN_EXPORT lean_object* l___regBuiltin_Fin_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1223_(lean_object*); -static lean_object* l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_729____closed__1; -static lean_object* l_Fin_fromExpr_x3f___closed__1; +static lean_object* l___regBuiltin_Fin_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1014____closed__1; +LEAN_EXPORT lean_object* l___regBuiltin_Fin_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_725_(lean_object*); +static lean_object* l___regBuiltin_Fin_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1014____closed__12; +LEAN_EXPORT lean_object* l___regBuiltin_Fin_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1058_(lean_object*); +static lean_object* l___regBuiltin_Fin_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_763____closed__4; +static lean_object* l___regBuiltin_Fin_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_805____closed__3; +LEAN_EXPORT lean_object* l_Fin_reduceBin___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___regBuiltin_Fin_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_721____closed__7; +static lean_object* l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_595____closed__3; +LEAN_EXPORT lean_object* l___regBuiltin_Fin_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_893_(lean_object*); lean_object* l_Lean_Meta_Simp_evalPropStep(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Fin_reduceBEq___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_Fin_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_679____closed__2; +static lean_object* l___regBuiltin_Fin_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1014____closed__6; LEAN_EXPORT lean_object* l_Fin_reduceGE(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___regBuiltin_Fin_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1223____closed__8; -static lean_object* l___regBuiltin_Fin_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_931____closed__5; -static lean_object* l___regBuiltin_Fin_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_848____closed__8; -static lean_object* l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_725____closed__13; -static lean_object* l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_725____closed__3; -static lean_object* l___regBuiltin_Fin_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1182____closed__8; +static lean_object* l___regBuiltin_Fin_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1014____closed__8; +static lean_object* l___regBuiltin_Fin_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1097____closed__2; +LEAN_EXPORT lean_object* l___regBuiltin_Fin_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_849_(lean_object*); +static lean_object* l___regBuiltin_Fin_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_889____closed__3; static lean_object* l_Fin_reduceMul___closed__3; -static lean_object* l___regBuiltin_Fin_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1355____closed__9; -static lean_object* l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_725____closed__10; +LEAN_EXPORT lean_object* l___regBuiltin_Fin_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1060_(lean_object*); +lean_object* l_Fin_add(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___regBuiltin_Fin_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1056_(lean_object*); LEAN_EXPORT lean_object* l_Fin_reduceBinPred___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_Fin_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_637____closed__5; static lean_object* l_Fin_reduceGE___closed__3; +static lean_object* l___regBuiltin_Fin_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1056____closed__3; +lean_object* l_Lean_Level_ofNat(lean_object*); +static lean_object* l___regBuiltin_Fin_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1097____closed__7; lean_object* l_Lean_Expr_appArg_x21(lean_object*); -static lean_object* l___regBuiltin_Fin_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1140____closed__7; -static lean_object* l___regBuiltin_Fin_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_848____closed__4; -static lean_object* l___regBuiltin_Fin_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1355____closed__1; +static lean_object* l___regBuiltin_Fin_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_721____closed__1; LEAN_EXPORT lean_object* l_Fin_reduceGT(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___regBuiltin_Fin_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1057____closed__2; -static lean_object* l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_725____closed__16; +static lean_object* l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_595____closed__7; LEAN_EXPORT lean_object* l_Fin_reduceLE___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_Fin_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1057_(lean_object*); +LEAN_EXPORT lean_object* l___regBuiltin_Fin_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_679_(lean_object*); +static lean_object* l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_595____closed__6; LEAN_EXPORT lean_object* l_Fin_reduceBoolPred(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___regBuiltin_Fin_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_807____closed__6; -LEAN_EXPORT lean_object* l___regBuiltin_Fin_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1144_(lean_object*); -static lean_object* l___regBuiltin_Fin_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1182____closed__9; static lean_object* l_Fin_reduceMul___closed__1; -static lean_object* l___regBuiltin_Fin_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_807____closed__12; -static lean_object* l___regBuiltin_Fin_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_931____closed__9; static lean_object* l_Fin_reduceBoolPred___lambda__1___closed__2; static lean_object* l_Fin_reduceLT___closed__2; -static lean_object* l___regBuiltin_Fin_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_807____closed__1; -uint8_t l___private_Init_Data_Option_Basic_0__Option_beqOption____x40_Init_Data_Option_Basic___hyg_158____at___private_Lean_Meta_Basic_0__Lean_Meta_beqInfoCacheKey____x40_Lean_Meta_Basic___hyg_341____spec__1(lean_object*, lean_object*); -static lean_object* l_Fin_Value_toExpr___closed__1; +static lean_object* l___regBuiltin_Fin_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_847____closed__3; +static lean_object* l___regBuiltin_Fin_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_973____closed__4; uint8_t l_instDecidableNot___rarg(uint8_t); -static lean_object* l___regBuiltin_Fin_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_973____closed__1; +static lean_object* l___regBuiltin_Fin_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_763____closed__2; extern lean_object* l_Lean_Meta_Simp_builtinSimprocsRef; -LEAN_EXPORT lean_object* l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_729_(lean_object*); +static lean_object* l___regBuiltin_Fin_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_637____closed__8; +static lean_object* l___regBuiltin_Fin_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_721____closed__6; LEAN_EXPORT lean_object* l_Fin_reduceBinPred___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*); uint8_t lean_nat_dec_eq(lean_object*, lean_object*); -static lean_object* l___regBuiltin_Fin_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_973____closed__4; -static lean_object* l_Fin_fromExpr_x3f___closed__2; -static lean_object* l___regBuiltin_Fin_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_931____closed__6; -static lean_object* l___regBuiltin_Fin_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_973____closed__7; +static lean_object* l___regBuiltin_Fin_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_637____closed__11; +static lean_object* l___regBuiltin_Fin_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_973____closed__10; +static lean_object* l___regBuiltin_Fin_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1260____closed__7; +static lean_object* l___regBuiltin_Fin_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1097____closed__8; LEAN_EXPORT lean_object* l_Fin_reduceEq___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_Fin_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_637____closed__2; static lean_object* l_Fin_reduceBoolPred___lambda__1___closed__8; -static lean_object* l___regBuiltin_Fin_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1099____closed__8; +static lean_object* l___regBuiltin_Fin_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1260____closed__9; +static lean_object* l___regBuiltin_Fin_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_679____closed__14; +static lean_object* l___regBuiltin_Fin_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1056____closed__1; lean_object* lean_nat_div(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___regBuiltin_Fin_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1103_(lean_object*); static lean_object* l_Fin_reduceGT___closed__3; +lean_object* l_Fin_sub(lean_object*, lean_object*, lean_object*); static lean_object* l_Fin_reduceBEq___closed__2; -static lean_object* l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_725____closed__2; +LEAN_EXPORT lean_object* l___regBuiltin_Fin_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_683_(lean_object*); LEAN_EXPORT lean_object* l_Fin_reduceBin(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___regBuiltin_Fin_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_766____closed__2; static lean_object* l_Fin_reduceAdd___closed__3; -LEAN_EXPORT lean_object* l___regBuiltin_Fin_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1359_(lean_object*); -static lean_object* l___regBuiltin_Fin_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_848____closed__11; -static lean_object* l___regBuiltin_Fin_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_766____closed__12; -static lean_object* l___regBuiltin_Fin_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_931____closed__11; -static lean_object* l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_725____closed__9; -LEAN_EXPORT lean_object* l___regBuiltin_Fin_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1142_(lean_object*); -static lean_object* l___regBuiltin_Fin_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1182____closed__4; +static lean_object* l___regBuiltin_Fin_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_679____closed__12; +static lean_object* l___regBuiltin_Fin_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_805____closed__10; +static lean_object* l___regBuiltin_Fin_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1097____closed__4; +static lean_object* l___regBuiltin_Fin_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1056____closed__9; +static lean_object* l___regBuiltin_Fin_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_763____closed__5; +static lean_object* l___regBuiltin_Fin_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_805____closed__5; static lean_object* l_Fin_reduceBoolPred___lambda__1___closed__7; -LEAN_EXPORT lean_object* l_Fin_reduceMod___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___regBuiltin_Fin_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_809_(lean_object*); -static lean_object* l___regBuiltin_Fin_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1057____closed__3; +static lean_object* l___regBuiltin_Fin_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_805____closed__11; static lean_object* l_Fin_reduceLT___closed__1; static lean_object* l_Fin_reduceBoolPred___lambda__1___closed__11; -static lean_object* l___regBuiltin_Fin_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_807____closed__13; +static lean_object* l___regBuiltin_Fin_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_805____closed__4; +static lean_object* l___regBuiltin_Fin_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_679____closed__10; +LEAN_EXPORT lean_object* l___regBuiltin_Fin_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_891_(lean_object*); +static lean_object* l___regBuiltin_Fin_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1014____closed__7; +static lean_object* l___regBuiltin_Fin_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1097____closed__3; static lean_object* l_Fin_reduceGT___closed__2; -static lean_object* l___regBuiltin_Fin_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1355____closed__8; +static lean_object* l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_595____closed__2; LEAN_EXPORT lean_object* l_Fin_fromExpr_x3f(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___regBuiltin_Fin_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1223____closed__5; -LEAN_EXPORT lean_object* l___regBuiltin_Fin_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1140_(lean_object*); +static lean_object* l___regBuiltin_Fin_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_847____closed__8; +static lean_object* l___regBuiltin_Fin_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_805____closed__6; +static lean_object* l___regBuiltin_Fin_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_847____closed__10; LEAN_EXPORT lean_object* l_Fin_reduceGE___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_Fin_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_933_(lean_object*); -static lean_object* l___regBuiltin_Fin_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1223____closed__4; +LEAN_EXPORT lean_object* l___regBuiltin_Fin_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_933_(lean_object*); +static lean_object* l___regBuiltin_Fin_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_637____closed__6; static lean_object* l_Fin_reduceGE___closed__1; -static lean_object* l___regBuiltin_Fin_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_931____closed__4; -static lean_object* l___regBuiltin_Fin_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_766____closed__5; -static lean_object* l___regBuiltin_Fin_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_931____closed__3; -static lean_object* l___regBuiltin_Fin_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1182____closed__5; -static lean_object* l___regBuiltin_Fin_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1355____closed__4; -static lean_object* l___regBuiltin_Fin_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1182____closed__2; -static lean_object* l___regBuiltin_Fin_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_931____closed__2; +static lean_object* l_Fin_reduceBin___lambda__1___closed__2; +LEAN_EXPORT lean_object* l___regBuiltin_Fin_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1016_(lean_object*); +static lean_object* l___regBuiltin_Fin_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_637____closed__7; LEAN_EXPORT lean_object* l_Fin_reduceNe___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_Fin_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_807____closed__5; -static lean_object* l___regBuiltin_Fin_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_766____closed__9; -LEAN_EXPORT lean_object* l___regBuiltin_Fin_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1225_(lean_object*); -static lean_object* l___regBuiltin_Fin_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1223____closed__10; -static lean_object* l___regBuiltin_Fin_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_848____closed__10; -static lean_object* l___regBuiltin_Fin_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1099____closed__3; -static lean_object* l___regBuiltin_Fin_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1182____closed__10; +static lean_object* l___regBuiltin_Fin_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_679____closed__4; +LEAN_EXPORT lean_object* l___regBuiltin_Fin_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1101_(lean_object*); +static lean_object* l___regBuiltin_Fin_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1260____closed__4; +LEAN_EXPORT lean_object* l___regBuiltin_Fin_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_641_(lean_object*); LEAN_EXPORT lean_object* l_Fin_reduceBNe___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_Fin_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_object*); -static lean_object* l___regBuiltin_Fin_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1223____closed__7; -static lean_object* l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_725____closed__8; -LEAN_EXPORT lean_object* l_Fin_reduceMul___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___regBuiltin_Fin_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1057____closed__1; -static lean_object* l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_725____closed__15; -LEAN_EXPORT lean_object* l___regBuiltin_Fin_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_852_(lean_object*); +LEAN_EXPORT lean_object* l_Fin_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___regBuiltin_Fin_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_637_(lean_object*); +LEAN_EXPORT lean_object* l_Fin_reduceMul___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_Fin_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_721____closed__13; +LEAN_EXPORT lean_object* l___regBuiltin_Fin_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_851_(lean_object*); +static lean_object* l___regBuiltin_Fin_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_637____closed__10; static lean_object* l_Fin_reduceMul___closed__2; -LEAN_EXPORT lean_object* l_Fin_reduceAdd___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_Fin_reduceAdd___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_Fin_reduceSub(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_725____closed__4; static lean_object* l_Fin_reduceGT___closed__1; static lean_object* l_Fin_reduceLE___closed__2; +static lean_object* l___regBuiltin_Fin_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1014____closed__11; static lean_object* l_Fin_reduceEq___closed__2; -static lean_object* l___regBuiltin_Fin_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_889____closed__9; -static lean_object* l___regBuiltin_Fin_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_766____closed__8; -static lean_object* l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_725____closed__1; static lean_object* l_Fin_reduceBoolPred___lambda__1___closed__6; -LEAN_EXPORT lean_object* l___regBuiltin_Fin_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_893_(lean_object*); lean_object* l_Lean_Name_str___override(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Fin_reduceMul___lambda__2(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_Fin_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_889____closed__13; -static lean_object* l_Fin_fromExpr_x3f___closed__6; +static lean_object* l___regBuiltin_Fin_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_805____closed__8; +LEAN_EXPORT lean_object* l___regBuiltin_Fin_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_935_(lean_object*); +static lean_object* l___regBuiltin_Fin_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1260____closed__1; +static lean_object* l___regBuiltin_Fin_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_847____closed__7; static lean_object* l_Fin_reduceAdd___closed__2; -static lean_object* l___regBuiltin_Fin_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_848____closed__9; -static lean_object* l___regBuiltin_Fin_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1140____closed__11; -LEAN_EXPORT lean_object* l_Fin_reduceDiv___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_Fin_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_848____closed__13; -LEAN_EXPORT lean_object* l___regBuiltin_Fin_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1101_(lean_object*); -LEAN_EXPORT lean_object* l___regBuiltin_Fin_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_935_(lean_object*); +static lean_object* l___regBuiltin_Fin_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1056____closed__7; +static lean_object* l___regBuiltin_Fin_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_721____closed__9; +static lean_object* l___regBuiltin_Fin_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_931____closed__1; +static lean_object* l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_595____closed__10; +static lean_object* l___regBuiltin_Fin_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_847____closed__6; +LEAN_EXPORT lean_object* l_Fin_reduceDiv___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_Fin_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_889____closed__1; LEAN_EXPORT lean_object* l_Fin_reduceEq___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_Fin_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_931____closed__7; +static lean_object* l___regBuiltin_Fin_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_763____closed__11; +LEAN_EXPORT lean_object* l___regBuiltin_Fin_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_763_(lean_object*); +static lean_object* l___regBuiltin_Fin_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_721____closed__5; +static lean_object* l___regBuiltin_Fin_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_637____closed__9; static lean_object* l_Fin_reduceDiv___closed__3; static lean_object* l_Fin_reduceBoolPred___lambda__1___closed__4; +static lean_object* l_Fin_reduceBin___lambda__1___closed__12; lean_object* l_Lean_Expr_appFn_x21(lean_object*); -static lean_object* l___regBuiltin_Fin_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_973____closed__3; -static lean_object* l___regBuiltin_Fin_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1099____closed__2; static lean_object* l_Fin_reduceEq___closed__1; -static lean_object* l___regBuiltin_Fin_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_889____closed__8; +LEAN_EXPORT lean_object* l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_597_(lean_object*); +static lean_object* l___regBuiltin_Fin_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1097____closed__6; +static lean_object* l___regBuiltin_Fin_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1097____closed__5; +LEAN_EXPORT lean_object* l___regBuiltin_Fin_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1099_(lean_object*); +static lean_object* l___regBuiltin_Fin_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_679____closed__8; +static lean_object* l___regBuiltin_Fin_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_637____closed__3; LEAN_EXPORT lean_object* l_Fin_isValue(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Fin_reduceBin___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*); -static lean_object* l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_725____closed__5; -static lean_object* l___regBuiltin_Fin_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1182____closed__1; -LEAN_EXPORT lean_object* l___regBuiltin_Fin_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_766_(lean_object*); -static lean_object* l___regBuiltin_Fin_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_889____closed__14; -static lean_object* l_Fin_reduceBin___lambda__2___closed__1; -static lean_object* l_Fin_Value_toExpr___closed__3; -LEAN_EXPORT lean_object* l_Fin_reduceSub___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_Fin_reduceBin___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* l_Fin_mul(lean_object*, lean_object*, lean_object*); +static lean_object* l___regBuiltin_Fin_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1260____closed__6; +static lean_object* l___regBuiltin_Fin_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_889____closed__2; +static lean_object* l___regBuiltin_Fin_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_679____closed__1; +static lean_object* l___regBuiltin_Fin_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1014____closed__4; +lean_object* l_Lean_Meta_getFinValue_x3f(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___regBuiltin_Fin_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1056____closed__10; +static lean_object* l___regBuiltin_Fin_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_973____closed__5; +LEAN_EXPORT lean_object* l_Fin_reduceSub___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_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_595____closed__11; +static lean_object* l___regBuiltin_Fin_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_679____closed__11; +LEAN_EXPORT lean_object* l___regBuiltin_Fin_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_767_(lean_object*); +static lean_object* l___regBuiltin_Fin_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_721____closed__4; LEAN_EXPORT lean_object* l_Fin_reduceBNe___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_Fin_reduceAdd___closed__1; static lean_object* l_Fin_reduceGE___closed__2; +static lean_object* l_Fin_reduceBin___lambda__1___closed__7; +static lean_object* l___regBuiltin_Fin_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1014____closed__9; LEAN_EXPORT lean_object* l_Fin_reduceDiv(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Fin_isValue___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_Fin_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1140____closed__5; -static lean_object* l___regBuiltin_Fin_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_973____closed__6; -static lean_object* l___regBuiltin_Fin_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1140____closed__1; -static lean_object* l___regBuiltin_Fin_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_807____closed__14; +static lean_object* l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_595____closed__4; +LEAN_EXPORT lean_object* l___regBuiltin_Fin_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1260_(lean_object*); +LEAN_EXPORT lean_object* l_Fin_isValue___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___regBuiltin_Fin_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_721____closed__8; LEAN_EXPORT lean_object* l_Fin_reduceLE(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___regBuiltin_Fin_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_848____closed__5; LEAN_EXPORT lean_object* l_Fin_reduceNe(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Fin_Value_toExpr___closed__2; -LEAN_EXPORT lean_object* l___regBuiltin_Fin_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_850_(lean_object*); -LEAN_EXPORT lean_object* l___regBuiltin_Fin_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_848_(lean_object*); -static lean_object* l___regBuiltin_Fin_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_889____closed__6; -static lean_object* l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_725____closed__6; -static lean_object* l___regBuiltin_Fin_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_931____closed__10; -static lean_object* l___regBuiltin_Fin_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_848____closed__14; +static lean_object* l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_597____closed__1; +static lean_object* l___regBuiltin_Fin_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1014____closed__2; +static lean_object* l___regBuiltin_Fin_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_679____closed__7; +static lean_object* l___regBuiltin_Fin_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_973____closed__7; +static lean_object* l_Fin_reduceBin___lambda__1___closed__10; +lean_object* l_Lean_Expr_app___override(lean_object*, lean_object*); +static lean_object* l_Fin_reduceBin___lambda__1___closed__13; lean_object* l_Lean_Meta_Simp_registerBuiltinSimproc(lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Fin_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_object*); +LEAN_EXPORT lean_object* l_Fin_reduceMod___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_nat_dec_eq(lean_object*, lean_object*); +lean_object* l_Lean_mkApp3(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Fin_reduceNe___closed__2; LEAN_EXPORT lean_object* l_Fin_fromExpr_x3f___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t lean_nat_dec_lt(lean_object*, lean_object*); -static lean_object* l___regBuiltin_Fin_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1099____closed__7; lean_object* lean_nat_mod(lean_object*, lean_object*); -static lean_object* l___regBuiltin_Fin_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1182____closed__3; -static lean_object* l___regBuiltin_Fin_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_889____closed__2; +static lean_object* l___regBuiltin_Fin_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_805____closed__7; lean_object* l_Lean_mkRawNatLit(lean_object*); -static lean_object* l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_725____closed__12; +static lean_object* l___regBuiltin_Fin_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_763____closed__14; +static lean_object* l___regBuiltin_Fin_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1014____closed__10; +static lean_object* l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_595____closed__16; lean_object* l_Lean_Name_mkStr2(lean_object*, lean_object*); -static lean_object* l___regBuiltin_Fin_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1140____closed__9; -LEAN_EXPORT lean_object* l_Fin_reduceAdd___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Fin_reduceBoolPred___lambda__1___closed__10; lean_object* l_Lean_Meta_Simp_addSimprocBuiltinAttrCore(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*); -static lean_object* l___regBuiltin_Fin_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1140____closed__2; -LEAN_EXPORT lean_object* l___regBuiltin_Fin_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_889_(lean_object*); -static lean_object* l___regBuiltin_Fin_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_973____closed__8; -LEAN_EXPORT lean_object* l___regBuiltin_Fin_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1355_(lean_object*); -static lean_object* l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_725____closed__11; -static lean_object* l___regBuiltin_Fin_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_973____closed__5; +static lean_object* l___regBuiltin_Fin_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_973____closed__6; +static lean_object* l___regBuiltin_Fin_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_973____closed__3; +static lean_object* l___regBuiltin_Fin_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1014____closed__5; static lean_object* l_Fin_reduceLE___closed__3; -LEAN_EXPORT lean_object* l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_727_(lean_object*); LEAN_EXPORT lean_object* l_Fin_reduceMul(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___regBuiltin_Fin_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_848____closed__2; -static lean_object* l___regBuiltin_Fin_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_766____closed__13; -static lean_object* l___regBuiltin_Fin_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_807____closed__3; -static lean_object* l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_725____closed__14; +static lean_object* l___regBuiltin_Fin_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_763____closed__7; +static lean_object* l___regBuiltin_Fin_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1260____closed__2; lean_object* lean_nat_sub(lean_object*, lean_object*); +static lean_object* l___regBuiltin_Fin_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_763____closed__13; static lean_object* l_Fin_reduceDiv___closed__1; -static lean_object* l___regBuiltin_Fin_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_889____closed__11; static lean_object* l_Fin_reduceBoolPred___lambda__1___closed__3; LEAN_EXPORT lean_object* l_Fin_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_object* lean_nat_mul(lean_object*, lean_object*); -static lean_object* l___regBuiltin_Fin_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_848____closed__3; +static lean_object* l___regBuiltin_Fin_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1097____closed__10; static lean_object* l_Fin_reduceBoolPred___lambda__1___closed__9; LEAN_EXPORT lean_object* l_Fin_reduceBEq(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___regBuiltin_Fin_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1355____closed__3; -static lean_object* l___regBuiltin_Fin_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1355____closed__5; -static lean_object* l___regBuiltin_Fin_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1099____closed__10; -LEAN_EXPORT lean_object* l___regBuiltin_Fin_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1182_(lean_object*); -LEAN_EXPORT lean_object* l_Fin_reduceDiv___lambda__2(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_Fin_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_973____closed__9; -static lean_object* l___regBuiltin_Fin_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_848____closed__12; +LEAN_EXPORT lean_object* l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_595_(lean_object*); +static lean_object* l___regBuiltin_Fin_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_847____closed__5; +static lean_object* l___regBuiltin_Fin_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_973____closed__1; +static lean_object* l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_595____closed__5; static lean_object* l_Fin_reduceSub___closed__2; +static lean_object* l___regBuiltin_Fin_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_847____closed__1; static lean_object* l_Fin_reduceLE___closed__1; LEAN_EXPORT lean_object* l_Fin_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_Fin_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1015____closed__1; -LEAN_EXPORT lean_object* l___regBuiltin_Fin_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_975_(lean_object*); +static lean_object* l___regBuiltin_Fin_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_805____closed__2; +static lean_object* l___regBuiltin_Fin_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_931____closed__3; +LEAN_EXPORT lean_object* l___regBuiltin_Fin_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_977_(lean_object*); +static lean_object* l___regBuiltin_Fin_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1056____closed__4; +LEAN_EXPORT lean_object* l___regBuiltin_Fin_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1018_(lean_object*); +LEAN_EXPORT lean_object* l___regBuiltin_Fin_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_975_(lean_object*); LEAN_EXPORT lean_object* l_Fin_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___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_727____closed__1; -static lean_object* l___regBuiltin_Fin_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1223____closed__1; +LEAN_EXPORT lean_object* l___regBuiltin_Fin_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_765_(lean_object*); static lean_object* l_Fin_reduceSub___closed__1; +static lean_object* l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_595____closed__14; LEAN_EXPORT lean_object* l_Fin_reduceGE___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_Fin_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1182____closed__6; static lean_object* l_Fin_reduceSub___closed__3; -static lean_object* l___regBuiltin_Fin_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_889____closed__12; -LEAN_EXPORT lean_object* l_Fin_isValue___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_Fin_Value_toExpr(lean_object*); -static lean_object* l___regBuiltin_Fin_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1015____closed__2; +static lean_object* l___regBuiltin_Fin_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_847____closed__4; +static lean_object* l___regBuiltin_Fin_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_637____closed__14; +LEAN_EXPORT lean_object* l___regBuiltin_Fin_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1262_(lean_object*); +LEAN_EXPORT lean_object* l_Fin_isValue___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_Fin_reduceMod___closed__3; -LEAN_EXPORT lean_object* l___regBuiltin_Fin_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_891_(lean_object*); static lean_object* l_Fin_reduceMod___closed__2; -static lean_object* l___regBuiltin_Fin_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_973____closed__2; -static lean_object* l___regBuiltin_Fin_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_766____closed__11; -static lean_object* l___regBuiltin_Fin_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1140____closed__12; -static lean_object* l___regBuiltin_Fin_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_848____closed__1; -static lean_object* l___regBuiltin_Fin_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1223____closed__2; -lean_object* l_Nat_fromExpr_x3f(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___regBuiltin_Fin_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1227_(lean_object*); +LEAN_EXPORT lean_object* l___regBuiltin_Fin_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_807_(lean_object*); +LEAN_EXPORT lean_object* l___regBuiltin_Fin_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_847_(lean_object*); +static lean_object* l___regBuiltin_Fin_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_763____closed__9; +static lean_object* l___regBuiltin_Fin_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_679____closed__3; +static lean_object* l___regBuiltin_Fin_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_721____closed__11; +static lean_object* l___regBuiltin_Fin_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_763____closed__8; static lean_object* l_Fin_reduceBoolPred___lambda__1___closed__5; -static lean_object* l___regBuiltin_Fin_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_931____closed__8; +LEAN_EXPORT lean_object* l___regBuiltin_Fin_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_809_(lean_object*); LEAN_EXPORT lean_object* l_Fin_reduceBEq___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___regBuiltin_Fin_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1099_(lean_object*); +LEAN_EXPORT lean_object* l___regBuiltin_Fin_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_681_(lean_object*); LEAN_EXPORT lean_object* l_Fin_reduceBoolPred___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_Fin_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1355____closed__2; -LEAN_EXPORT lean_object* l___regBuiltin_Fin_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1017_(lean_object*); -static lean_object* l___regBuiltin_Fin_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_931____closed__1; +LEAN_EXPORT lean_object* l___regBuiltin_Fin_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_889_(lean_object*); +static lean_object* l___regBuiltin_Fin_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1056____closed__8; LEAN_EXPORT lean_object* l_Fin_reduceEq(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___regBuiltin_Fin_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1140____closed__8; -LEAN_EXPORT lean_object* l_Fin_reduceSub___lambda__2(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_Fin_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1223____closed__9; +static lean_object* l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_595____closed__8; +LEAN_EXPORT lean_object* l___regBuiltin_Fin_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_973_(lean_object*); +static lean_object* l___regBuiltin_Fin_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1097____closed__1; +static lean_object* l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_595____closed__15; extern lean_object* l_Lean_Meta_Simp_builtinSEvalprocsRef; uint8_t lean_nat_dec_le(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___regBuiltin_Fin_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_768_(lean_object*); -static lean_object* l___regBuiltin_Fin_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1099____closed__1; -LEAN_EXPORT lean_object* l___regBuiltin_Fin_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1184_(lean_object*); -static lean_object* l___regBuiltin_Fin_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_807____closed__7; -static lean_object* l___regBuiltin_Fin_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_889____closed__4; -static lean_object* l___regBuiltin_Fin_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1140____closed__3; -lean_object* lean_nat_add(lean_object*, lean_object*); -static lean_object* l___regBuiltin_Fin_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_766____closed__7; -static lean_object* l___regBuiltin_Fin_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_807____closed__2; -static lean_object* l___regBuiltin_Fin_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_766____closed__6; -static lean_object* l___regBuiltin_Fin_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_807____closed__10; -static lean_object* l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_725____closed__7; -static lean_object* l___regBuiltin_Fin_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_889____closed__5; -LEAN_EXPORT lean_object* l_Fin_reduceBin___lambda__2(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_Fin_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_766____closed__1; +static lean_object* l___regBuiltin_Fin_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_679____closed__6; +static lean_object* l___regBuiltin_Fin_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1260____closed__3; +static lean_object* l___regBuiltin_Fin_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_637____closed__12; +static lean_object* l___regBuiltin_Fin_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_637____closed__13; +static lean_object* l___regBuiltin_Fin_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1056____closed__2; +LEAN_EXPORT lean_object* l___regBuiltin_Fin_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1264_(lean_object*); +LEAN_EXPORT lean_object* l___regBuiltin_Fin_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_639_(lean_object*); +static lean_object* l___regBuiltin_Fin_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_763____closed__10; +static lean_object* l___regBuiltin_Fin_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_763____closed__12; +static lean_object* l___regBuiltin_Fin_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_721____closed__12; +static lean_object* l___regBuiltin_Fin_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_973____closed__9; +static lean_object* l_Fin_reduceBin___lambda__1___closed__6; +static lean_object* l___regBuiltin_Fin_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1014____closed__3; +static lean_object* l___regBuiltin_Fin_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_721____closed__14; static lean_object* l_Fin_reduceNe___closed__1; -LEAN_EXPORT lean_object* l_Fin_reduceMul___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_Fin_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1015____closed__3; -static lean_object* l___regBuiltin_Fin_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1099____closed__9; -LEAN_EXPORT lean_object* l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_725_(lean_object*); -static lean_object* l___regBuiltin_Fin_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1140____closed__10; -LEAN_EXPORT lean_object* l___regBuiltin_Fin_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1059_(lean_object*); -LEAN_EXPORT lean_object* l_Fin_reduceMod___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___regBuiltin_Fin_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1186_(lean_object*); -static lean_object* l_Fin_fromExpr_x3f___closed__4; -static lean_object* l___regBuiltin_Fin_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_807____closed__8; -static lean_object* _init_l_Fin_fromExpr_x3f___closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("OfNat", 5); -return x_1; -} -} -static lean_object* _init_l_Fin_fromExpr_x3f___closed__2() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("ofNat", 5); -return x_1; -} -} -static lean_object* _init_l_Fin_fromExpr_x3f___closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Fin_fromExpr_x3f___closed__1; -x_2 = l_Fin_fromExpr_x3f___closed__2; -x_3 = l_Lean_Name_mkStr2(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Fin_fromExpr_x3f___closed__4() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("Fin", 3); -return x_1; -} -} -static lean_object* _init_l_Fin_fromExpr_x3f___closed__5() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l_Fin_fromExpr_x3f___closed__4; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Fin_fromExpr_x3f___closed__6() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = lean_box(0); -x_2 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_2, 0, x_1); -return x_2; -} -} +LEAN_EXPORT lean_object* l_Fin_reduceMul___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_Fin_reduceBin___lambda__1___closed__4; +static lean_object* l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_599____closed__1; +static lean_object* l___regBuiltin_Fin_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1056____closed__5; +LEAN_EXPORT lean_object* l_Fin_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___regBuiltin_Fin_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_723_(lean_object*); +static lean_object* l___regBuiltin_Fin_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_637____closed__1; +static lean_object* l___regBuiltin_Fin_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_637____closed__4; +static lean_object* l___regBuiltin_Fin_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1260____closed__5; +static lean_object* l___regBuiltin_Fin_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_805____closed__1; +static lean_object* l___regBuiltin_Fin_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_679____closed__9; LEAN_EXPORT lean_object* l_Fin_fromExpr_x3f(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; uint8_t x_12; lean_object* x_13; lean_object* x_14; -x_10 = l_Fin_fromExpr_x3f___closed__3; -x_11 = lean_unsigned_to_nat(3u); -x_12 = l_Lean_Expr_isAppOfArity(x_1, x_10, x_11); +lean_object* x_10; +x_10 = l_Lean_Meta_getFinValue_x3f(x_1, x_5, x_6, x_7, x_8, x_9); +if (lean_obj_tag(x_10) == 0) +{ +lean_object* x_11; +x_11 = lean_ctor_get(x_10, 0); +lean_inc(x_11); +if (lean_obj_tag(x_11) == 0) +{ +uint8_t x_12; +x_12 = !lean_is_exclusive(x_10); if (x_12 == 0) { -lean_object* x_152; -x_152 = lean_box(0); -x_13 = x_152; -x_14 = x_9; -goto block_151; -} -else -{ -lean_object* x_153; -x_153 = l_Fin_fromExpr_x3f___closed__6; -x_13 = x_153; -x_14 = x_9; -goto block_151; -} -block_151: -{ -if (lean_obj_tag(x_13) == 0) -{ -lean_object* x_15; lean_object* x_16; -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_1); -x_15 = lean_box(0); -x_16 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_16, 0, x_15); -lean_ctor_set(x_16, 1, x_14); -return x_16; -} -else -{ -lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; +lean_object* x_13; lean_object* x_14; +x_13 = lean_ctor_get(x_10, 0); lean_dec(x_13); -x_17 = l_Lean_Expr_appFn_x21(x_1); -lean_inc(x_17); -x_18 = l_Lean_Expr_appFn_x21(x_17); -x_19 = l_Lean_Expr_appArg_x21(x_18); -lean_inc(x_8); -lean_inc(x_7); -lean_inc(x_6); -lean_inc(x_5); -x_20 = lean_whnf(x_19, x_5, x_6, x_7, x_8, x_14); -if (lean_obj_tag(x_20) == 0) +x_14 = lean_box(0); +lean_ctor_set(x_10, 0, x_14); +return x_10; +} +else { -uint8_t x_21; -x_21 = !lean_is_exclusive(x_20); -if (x_21 == 0) +lean_object* x_15; lean_object* x_16; lean_object* x_17; +x_15 = lean_ctor_get(x_10, 1); +lean_inc(x_15); +lean_dec(x_10); +x_16 = lean_box(0); +x_17 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_17, 0, x_16); +lean_ctor_set(x_17, 1, x_15); +return x_17; +} +} +else { -lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; uint8_t x_26; +uint8_t x_18; +x_18 = !lean_is_exclusive(x_11); +if (x_18 == 0) +{ +uint8_t x_19; +x_19 = !lean_is_exclusive(x_10); +if (x_19 == 0) +{ +lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; +x_20 = lean_ctor_get(x_11, 0); +x_21 = lean_ctor_get(x_10, 0); +lean_dec(x_21); x_22 = lean_ctor_get(x_20, 0); +lean_inc(x_22); x_23 = lean_ctor_get(x_20, 1); -x_24 = l_Fin_fromExpr_x3f___closed__5; -x_25 = lean_unsigned_to_nat(1u); -x_26 = l_Lean_Expr_isAppOfArity(x_22, x_24, x_25); -if (x_26 == 0) -{ -lean_object* x_27; -lean_dec(x_22); -lean_dec(x_18); -lean_dec(x_17); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -x_27 = lean_box(0); -lean_ctor_set(x_20, 0, x_27); -return x_20; +lean_inc(x_23); +lean_dec(x_20); +x_24 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_24, 0, x_22); +lean_ctor_set(x_24, 1, x_23); +lean_ctor_set(x_11, 0, x_24); +return x_10; } else { -lean_object* x_28; lean_object* x_29; -lean_free_object(x_20); -x_28 = l_Lean_Expr_appArg_x21(x_22); -lean_dec(x_22); -lean_inc(x_8); -lean_inc(x_7); -lean_inc(x_6); -x_29 = l_Nat_fromExpr_x3f(x_28, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_23); -if (lean_obj_tag(x_29) == 0) -{ -lean_object* x_30; -x_30 = lean_ctor_get(x_29, 0); -lean_inc(x_30); -if (lean_obj_tag(x_30) == 0) -{ -uint8_t x_31; -lean_dec(x_18); -lean_dec(x_17); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -x_31 = !lean_is_exclusive(x_29); -if (x_31 == 0) -{ -lean_object* x_32; lean_object* x_33; -x_32 = lean_ctor_get(x_29, 0); -lean_dec(x_32); -x_33 = lean_box(0); -lean_ctor_set(x_29, 0, x_33); -return x_29; +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_25 = lean_ctor_get(x_11, 0); +x_26 = lean_ctor_get(x_10, 1); +lean_inc(x_26); +lean_dec(x_10); +x_27 = lean_ctor_get(x_25, 0); +lean_inc(x_27); +x_28 = lean_ctor_get(x_25, 1); +lean_inc(x_28); +lean_dec(x_25); +x_29 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_29, 0, x_27); +lean_ctor_set(x_29, 1, x_28); +lean_ctor_set(x_11, 0, x_29); +x_30 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_30, 0, x_11); +lean_ctor_set(x_30, 1, x_26); +return x_30; +} } else { -lean_object* x_34; lean_object* x_35; lean_object* x_36; -x_34 = lean_ctor_get(x_29, 1); +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; +x_31 = lean_ctor_get(x_11, 0); +lean_inc(x_31); +lean_dec(x_11); +x_32 = lean_ctor_get(x_10, 1); +lean_inc(x_32); +if (lean_is_exclusive(x_10)) { + lean_ctor_release(x_10, 0); + lean_ctor_release(x_10, 1); + x_33 = x_10; +} else { + lean_dec_ref(x_10); + x_33 = lean_box(0); +} +x_34 = lean_ctor_get(x_31, 0); lean_inc(x_34); -lean_dec(x_29); -x_35 = lean_box(0); +x_35 = lean_ctor_get(x_31, 1); +lean_inc(x_35); +lean_dec(x_31); x_36 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_36, 0, x_35); -lean_ctor_set(x_36, 1, x_34); -return x_36; +lean_ctor_set(x_36, 0, x_34); +lean_ctor_set(x_36, 1, x_35); +x_37 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_37, 0, x_36); +if (lean_is_scalar(x_33)) { + x_38 = lean_alloc_ctor(0, 2, 0); +} else { + x_38 = x_33; +} +lean_ctor_set(x_38, 0, x_37); +lean_ctor_set(x_38, 1, x_32); +return x_38; +} } } else { -uint8_t x_37; -x_37 = !lean_is_exclusive(x_29); -if (x_37 == 0) +uint8_t x_39; +x_39 = !lean_is_exclusive(x_10); +if (x_39 == 0) { -lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; uint8_t x_42; -x_38 = lean_ctor_get(x_29, 1); -x_39 = lean_ctor_get(x_29, 0); -lean_dec(x_39); -x_40 = lean_ctor_get(x_30, 0); +return x_10; +} +else +{ +lean_object* x_40; lean_object* x_41; lean_object* x_42; +x_40 = lean_ctor_get(x_10, 0); +x_41 = lean_ctor_get(x_10, 1); +lean_inc(x_41); lean_inc(x_40); -lean_dec(x_30); -x_41 = lean_unsigned_to_nat(0u); -x_42 = lean_nat_dec_lt(x_41, x_40); -if (x_42 == 0) -{ -lean_object* x_43; -lean_dec(x_40); -lean_dec(x_18); -lean_dec(x_17); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -x_43 = lean_box(0); -lean_ctor_set(x_29, 0, x_43); -return x_29; -} -else -{ -lean_object* x_44; lean_object* x_45; -lean_free_object(x_29); -x_44 = l_Lean_Expr_appArg_x21(x_17); -lean_dec(x_17); -x_45 = l_Nat_fromExpr_x3f(x_44, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_38); -lean_dec(x_5); -if (lean_obj_tag(x_45) == 0) -{ -lean_object* x_46; -x_46 = lean_ctor_get(x_45, 0); -lean_inc(x_46); -if (lean_obj_tag(x_46) == 0) -{ -uint8_t x_47; -lean_dec(x_40); -lean_dec(x_18); -x_47 = !lean_is_exclusive(x_45); -if (x_47 == 0) -{ -lean_object* x_48; lean_object* x_49; -x_48 = lean_ctor_get(x_45, 0); -lean_dec(x_48); -x_49 = lean_box(0); -lean_ctor_set(x_45, 0, x_49); -return x_45; -} -else -{ -lean_object* x_50; lean_object* x_51; lean_object* x_52; -x_50 = lean_ctor_get(x_45, 1); -lean_inc(x_50); -lean_dec(x_45); -x_51 = lean_box(0); -x_52 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_52, 0, x_51); -lean_ctor_set(x_52, 1, x_50); -return x_52; -} -} -else -{ -uint8_t x_53; -x_53 = !lean_is_exclusive(x_45); -if (x_53 == 0) -{ -lean_object* x_54; uint8_t x_55; -x_54 = lean_ctor_get(x_45, 0); -lean_dec(x_54); -x_55 = !lean_is_exclusive(x_46); -if (x_55 == 0) -{ -lean_object* x_56; lean_object* x_57; lean_object* x_58; -x_56 = lean_ctor_get(x_46, 0); -x_57 = lean_nat_mod(x_56, x_40); -lean_dec(x_56); -x_58 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_58, 0, x_18); -lean_ctor_set(x_58, 1, x_40); -lean_ctor_set(x_58, 2, x_57); -lean_ctor_set(x_46, 0, x_58); -return x_45; -} -else -{ -lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; -x_59 = lean_ctor_get(x_46, 0); -lean_inc(x_59); -lean_dec(x_46); -x_60 = lean_nat_mod(x_59, x_40); -lean_dec(x_59); -x_61 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_61, 0, x_18); -lean_ctor_set(x_61, 1, x_40); -lean_ctor_set(x_61, 2, x_60); -x_62 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_62, 0, x_61); -lean_ctor_set(x_45, 0, x_62); -return x_45; -} -} -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; -x_63 = lean_ctor_get(x_45, 1); -lean_inc(x_63); -lean_dec(x_45); -x_64 = lean_ctor_get(x_46, 0); -lean_inc(x_64); -if (lean_is_exclusive(x_46)) { - lean_ctor_release(x_46, 0); - x_65 = x_46; -} else { - lean_dec_ref(x_46); - x_65 = lean_box(0); -} -x_66 = lean_nat_mod(x_64, x_40); -lean_dec(x_64); -x_67 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_67, 0, x_18); -lean_ctor_set(x_67, 1, x_40); -lean_ctor_set(x_67, 2, x_66); -if (lean_is_scalar(x_65)) { - x_68 = lean_alloc_ctor(1, 1, 0); -} else { - x_68 = x_65; -} -lean_ctor_set(x_68, 0, x_67); -x_69 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_69, 0, x_68); -lean_ctor_set(x_69, 1, x_63); -return x_69; -} -} -} -else -{ -uint8_t x_70; -lean_dec(x_40); -lean_dec(x_18); -x_70 = !lean_is_exclusive(x_45); -if (x_70 == 0) -{ -return x_45; -} -else -{ -lean_object* x_71; lean_object* x_72; lean_object* x_73; -x_71 = lean_ctor_get(x_45, 0); -x_72 = lean_ctor_get(x_45, 1); -lean_inc(x_72); -lean_inc(x_71); -lean_dec(x_45); -x_73 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_73, 0, x_71); -lean_ctor_set(x_73, 1, x_72); -return x_73; -} -} -} -} -else -{ -lean_object* x_74; lean_object* x_75; lean_object* x_76; uint8_t x_77; -x_74 = lean_ctor_get(x_29, 1); -lean_inc(x_74); -lean_dec(x_29); -x_75 = lean_ctor_get(x_30, 0); -lean_inc(x_75); -lean_dec(x_30); -x_76 = lean_unsigned_to_nat(0u); -x_77 = lean_nat_dec_lt(x_76, x_75); -if (x_77 == 0) -{ -lean_object* x_78; lean_object* x_79; -lean_dec(x_75); -lean_dec(x_18); -lean_dec(x_17); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -x_78 = lean_box(0); -x_79 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_79, 0, x_78); -lean_ctor_set(x_79, 1, x_74); -return x_79; -} -else -{ -lean_object* x_80; lean_object* x_81; -x_80 = l_Lean_Expr_appArg_x21(x_17); -lean_dec(x_17); -x_81 = l_Nat_fromExpr_x3f(x_80, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_74); -lean_dec(x_5); -if (lean_obj_tag(x_81) == 0) -{ -lean_object* x_82; -x_82 = lean_ctor_get(x_81, 0); -lean_inc(x_82); -if (lean_obj_tag(x_82) == 0) -{ -lean_object* x_83; lean_object* x_84; lean_object* x_85; lean_object* x_86; -lean_dec(x_75); -lean_dec(x_18); -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_81); - x_84 = lean_box(0); -} -x_85 = lean_box(0); -if (lean_is_scalar(x_84)) { - x_86 = lean_alloc_ctor(0, 2, 0); -} else { - x_86 = x_84; -} -lean_ctor_set(x_86, 0, x_85); -lean_ctor_set(x_86, 1, x_83); -return x_86; -} -else -{ -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; -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_81); - x_88 = lean_box(0); -} -x_89 = lean_ctor_get(x_82, 0); -lean_inc(x_89); -if (lean_is_exclusive(x_82)) { - lean_ctor_release(x_82, 0); - x_90 = x_82; -} else { - lean_dec_ref(x_82); - x_90 = lean_box(0); -} -x_91 = lean_nat_mod(x_89, x_75); -lean_dec(x_89); -x_92 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_92, 0, x_18); -lean_ctor_set(x_92, 1, x_75); -lean_ctor_set(x_92, 2, x_91); -if (lean_is_scalar(x_90)) { - x_93 = lean_alloc_ctor(1, 1, 0); -} else { - x_93 = x_90; -} -lean_ctor_set(x_93, 0, x_92); -if (lean_is_scalar(x_88)) { - x_94 = lean_alloc_ctor(0, 2, 0); -} else { - x_94 = x_88; -} -lean_ctor_set(x_94, 0, x_93); -lean_ctor_set(x_94, 1, x_87); -return x_94; -} -} -else -{ -lean_object* x_95; lean_object* x_96; lean_object* x_97; lean_object* x_98; -lean_dec(x_75); -lean_dec(x_18); -x_95 = lean_ctor_get(x_81, 0); -lean_inc(x_95); -x_96 = lean_ctor_get(x_81, 1); -lean_inc(x_96); -if (lean_is_exclusive(x_81)) { - lean_ctor_release(x_81, 0); - lean_ctor_release(x_81, 1); - x_97 = x_81; -} else { - lean_dec_ref(x_81); - x_97 = lean_box(0); -} -if (lean_is_scalar(x_97)) { - x_98 = lean_alloc_ctor(1, 2, 0); -} else { - x_98 = x_97; -} -lean_ctor_set(x_98, 0, x_95); -lean_ctor_set(x_98, 1, x_96); -return x_98; -} -} -} -} -} -else -{ -uint8_t x_99; -lean_dec(x_18); -lean_dec(x_17); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -x_99 = !lean_is_exclusive(x_29); -if (x_99 == 0) -{ -return x_29; -} -else -{ -lean_object* x_100; lean_object* x_101; lean_object* x_102; -x_100 = lean_ctor_get(x_29, 0); -x_101 = lean_ctor_get(x_29, 1); -lean_inc(x_101); -lean_inc(x_100); -lean_dec(x_29); -x_102 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_102, 0, x_100); -lean_ctor_set(x_102, 1, x_101); -return x_102; -} -} -} -} -else -{ -lean_object* x_103; lean_object* x_104; lean_object* x_105; lean_object* x_106; uint8_t x_107; -x_103 = lean_ctor_get(x_20, 0); -x_104 = lean_ctor_get(x_20, 1); -lean_inc(x_104); -lean_inc(x_103); -lean_dec(x_20); -x_105 = l_Fin_fromExpr_x3f___closed__5; -x_106 = lean_unsigned_to_nat(1u); -x_107 = l_Lean_Expr_isAppOfArity(x_103, x_105, x_106); -if (x_107 == 0) -{ -lean_object* x_108; lean_object* x_109; -lean_dec(x_103); -lean_dec(x_18); -lean_dec(x_17); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -x_108 = lean_box(0); -x_109 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_109, 0, x_108); -lean_ctor_set(x_109, 1, x_104); -return x_109; -} -else -{ -lean_object* x_110; lean_object* x_111; -x_110 = l_Lean_Expr_appArg_x21(x_103); -lean_dec(x_103); -lean_inc(x_8); -lean_inc(x_7); -lean_inc(x_6); -x_111 = l_Nat_fromExpr_x3f(x_110, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_104); -if (lean_obj_tag(x_111) == 0) -{ -lean_object* x_112; -x_112 = lean_ctor_get(x_111, 0); -lean_inc(x_112); -if (lean_obj_tag(x_112) == 0) -{ -lean_object* x_113; lean_object* x_114; lean_object* x_115; lean_object* x_116; -lean_dec(x_18); -lean_dec(x_17); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -x_113 = lean_ctor_get(x_111, 1); -lean_inc(x_113); -if (lean_is_exclusive(x_111)) { - lean_ctor_release(x_111, 0); - lean_ctor_release(x_111, 1); - x_114 = x_111; -} else { - lean_dec_ref(x_111); - x_114 = lean_box(0); -} -x_115 = lean_box(0); -if (lean_is_scalar(x_114)) { - x_116 = lean_alloc_ctor(0, 2, 0); -} else { - x_116 = x_114; -} -lean_ctor_set(x_116, 0, x_115); -lean_ctor_set(x_116, 1, x_113); -return x_116; -} -else -{ -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_111, 1); -lean_inc(x_117); -if (lean_is_exclusive(x_111)) { - lean_ctor_release(x_111, 0); - lean_ctor_release(x_111, 1); - x_118 = x_111; -} else { - lean_dec_ref(x_111); - x_118 = lean_box(0); -} -x_119 = lean_ctor_get(x_112, 0); -lean_inc(x_119); -lean_dec(x_112); -x_120 = lean_unsigned_to_nat(0u); -x_121 = lean_nat_dec_lt(x_120, x_119); -if (x_121 == 0) -{ -lean_object* x_122; lean_object* x_123; -lean_dec(x_119); -lean_dec(x_18); -lean_dec(x_17); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -x_122 = lean_box(0); -if (lean_is_scalar(x_118)) { - x_123 = lean_alloc_ctor(0, 2, 0); -} else { - x_123 = x_118; -} -lean_ctor_set(x_123, 0, x_122); -lean_ctor_set(x_123, 1, x_117); -return x_123; -} -else -{ -lean_object* x_124; lean_object* x_125; -lean_dec(x_118); -x_124 = l_Lean_Expr_appArg_x21(x_17); -lean_dec(x_17); -x_125 = l_Nat_fromExpr_x3f(x_124, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_117); -lean_dec(x_5); -if (lean_obj_tag(x_125) == 0) -{ -lean_object* x_126; -x_126 = lean_ctor_get(x_125, 0); -lean_inc(x_126); -if (lean_obj_tag(x_126) == 0) -{ -lean_object* x_127; lean_object* x_128; lean_object* x_129; lean_object* x_130; -lean_dec(x_119); -lean_dec(x_18); -x_127 = lean_ctor_get(x_125, 1); -lean_inc(x_127); -if (lean_is_exclusive(x_125)) { - lean_ctor_release(x_125, 0); - lean_ctor_release(x_125, 1); - x_128 = x_125; -} else { - lean_dec_ref(x_125); - x_128 = lean_box(0); -} -x_129 = lean_box(0); -if (lean_is_scalar(x_128)) { - x_130 = lean_alloc_ctor(0, 2, 0); -} else { - x_130 = x_128; -} -lean_ctor_set(x_130, 0, x_129); -lean_ctor_set(x_130, 1, x_127); -return x_130; -} -else -{ -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; -x_131 = lean_ctor_get(x_125, 1); -lean_inc(x_131); -if (lean_is_exclusive(x_125)) { - lean_ctor_release(x_125, 0); - lean_ctor_release(x_125, 1); - x_132 = x_125; -} else { - lean_dec_ref(x_125); - x_132 = lean_box(0); -} -x_133 = lean_ctor_get(x_126, 0); -lean_inc(x_133); -if (lean_is_exclusive(x_126)) { - lean_ctor_release(x_126, 0); - x_134 = x_126; -} else { - lean_dec_ref(x_126); - x_134 = lean_box(0); -} -x_135 = lean_nat_mod(x_133, x_119); -lean_dec(x_133); -x_136 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_136, 0, x_18); -lean_ctor_set(x_136, 1, x_119); -lean_ctor_set(x_136, 2, x_135); -if (lean_is_scalar(x_134)) { - x_137 = lean_alloc_ctor(1, 1, 0); -} else { - x_137 = x_134; -} -lean_ctor_set(x_137, 0, x_136); -if (lean_is_scalar(x_132)) { - x_138 = lean_alloc_ctor(0, 2, 0); -} else { - x_138 = x_132; -} -lean_ctor_set(x_138, 0, x_137); -lean_ctor_set(x_138, 1, x_131); -return x_138; -} -} -else -{ -lean_object* x_139; lean_object* x_140; lean_object* x_141; lean_object* x_142; -lean_dec(x_119); -lean_dec(x_18); -x_139 = lean_ctor_get(x_125, 0); -lean_inc(x_139); -x_140 = lean_ctor_get(x_125, 1); -lean_inc(x_140); -if (lean_is_exclusive(x_125)) { - lean_ctor_release(x_125, 0); - lean_ctor_release(x_125, 1); - x_141 = x_125; -} else { - lean_dec_ref(x_125); - x_141 = lean_box(0); -} -if (lean_is_scalar(x_141)) { - x_142 = lean_alloc_ctor(1, 2, 0); -} else { - x_142 = x_141; -} -lean_ctor_set(x_142, 0, x_139); -lean_ctor_set(x_142, 1, x_140); -return x_142; -} -} -} -} -else -{ -lean_object* x_143; lean_object* x_144; lean_object* x_145; lean_object* x_146; -lean_dec(x_18); -lean_dec(x_17); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -x_143 = lean_ctor_get(x_111, 0); -lean_inc(x_143); -x_144 = lean_ctor_get(x_111, 1); -lean_inc(x_144); -if (lean_is_exclusive(x_111)) { - lean_ctor_release(x_111, 0); - lean_ctor_release(x_111, 1); - x_145 = x_111; -} else { - lean_dec_ref(x_111); - x_145 = lean_box(0); -} -if (lean_is_scalar(x_145)) { - x_146 = lean_alloc_ctor(1, 2, 0); -} else { - x_146 = x_145; -} -lean_ctor_set(x_146, 0, x_143); -lean_ctor_set(x_146, 1, x_144); -return x_146; -} -} -} -} -else -{ -uint8_t x_147; -lean_dec(x_18); -lean_dec(x_17); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -x_147 = !lean_is_exclusive(x_20); -if (x_147 == 0) -{ -return x_20; -} -else -{ -lean_object* x_148; lean_object* x_149; lean_object* x_150; -x_148 = lean_ctor_get(x_20, 0); -x_149 = lean_ctor_get(x_20, 1); -lean_inc(x_149); -lean_inc(x_148); -lean_dec(x_20); -x_150 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_150, 0, x_148); -lean_ctor_set(x_150, 1, x_149); -return x_150; -} -} +lean_dec(x_10); +x_42 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_42, 0, x_40); +lean_ctor_set(x_42, 1, x_41); +return x_42; } } } @@ -1163,132 +504,11 @@ x_10 = l_Fin_fromExpr_x3f(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); +lean_dec(x_1); return x_10; } } -static lean_object* _init_l_Fin_Value_toExpr___closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("instOfNat", 9); -return x_1; -} -} -static lean_object* _init_l_Fin_Value_toExpr___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Fin_fromExpr_x3f___closed__4; -x_2 = l_Fin_Value_toExpr___closed__1; -x_3 = l_Lean_Name_mkStr2(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Fin_Value_toExpr___closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l_Fin_Value_toExpr___closed__2; -x_3 = l_Lean_Expr_const___override(x_2, x_1); -return x_3; -} -} -LEAN_EXPORT lean_object* l_Fin_Value_toExpr(lean_object* x_1) { -_start: -{ -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; -x_2 = lean_ctor_get(x_1, 2); -lean_inc(x_2); -x_3 = l_Lean_mkRawNatLit(x_2); -x_4 = lean_ctor_get(x_1, 0); -lean_inc(x_4); -x_5 = lean_ctor_get(x_1, 1); -lean_inc(x_5); -lean_dec(x_1); -x_6 = lean_unsigned_to_nat(1u); -x_7 = lean_nat_sub(x_5, x_6); -lean_dec(x_5); -x_8 = l_Lean_mkNatLit(x_7); -x_9 = l_Fin_Value_toExpr___closed__3; -lean_inc(x_3); -x_10 = l_Lean_mkAppB(x_9, x_8, x_3); -x_11 = l_Lean_mkAppB(x_4, x_3, x_10); -return x_11; -} -} -LEAN_EXPORT lean_object* l_Fin_reduceBin___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, lean_object* x_11, lean_object* x_12) { -_start: -{ -uint8_t x_13; -x_13 = !lean_is_exclusive(x_1); -if (x_13 == 0) -{ -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; uint32_t x_21; uint8_t x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; -x_14 = lean_ctor_get(x_1, 1); -x_15 = lean_ctor_get(x_1, 2); -x_16 = lean_ctor_get(x_2, 2); -lean_inc(x_16); -lean_dec(x_2); -x_17 = lean_apply_2(x_3, x_15, x_16); -x_18 = lean_nat_mod(x_17, x_14); -lean_dec(x_17); -lean_ctor_set(x_1, 2, x_18); -x_19 = l_Fin_Value_toExpr(x_1); -x_20 = lean_box(0); -x_21 = 0; -x_22 = 1; -x_23 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_23, 0, x_19); -lean_ctor_set(x_23, 1, x_20); -lean_ctor_set_uint32(x_23, sizeof(void*)*2, x_21); -lean_ctor_set_uint8(x_23, sizeof(void*)*2 + 4, x_22); -x_24 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_24, 0, x_23); -x_25 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_25, 0, x_24); -lean_ctor_set(x_25, 1, x_12); -return x_25; -} -else -{ -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; uint32_t x_35; uint8_t x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; -x_26 = lean_ctor_get(x_1, 0); -x_27 = lean_ctor_get(x_1, 1); -x_28 = lean_ctor_get(x_1, 2); -lean_inc(x_28); -lean_inc(x_27); -lean_inc(x_26); -lean_dec(x_1); -x_29 = lean_ctor_get(x_2, 2); -lean_inc(x_29); -lean_dec(x_2); -x_30 = lean_apply_2(x_3, x_28, x_29); -x_31 = lean_nat_mod(x_30, x_27); -lean_dec(x_30); -x_32 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_32, 0, x_26); -lean_ctor_set(x_32, 1, x_27); -lean_ctor_set(x_32, 2, x_31); -x_33 = l_Fin_Value_toExpr(x_32); -x_34 = lean_box(0); -x_35 = 0; -x_36 = 1; -x_37 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_37, 0, x_33); -lean_ctor_set(x_37, 1, x_34); -lean_ctor_set_uint32(x_37, sizeof(void*)*2, x_35); -lean_ctor_set_uint8(x_37, sizeof(void*)*2 + 4, x_36); -x_38 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_38, 0, x_37); -x_39 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_39, 0, x_38); -lean_ctor_set(x_39, 1, x_12); -return x_39; -} -} -} -static lean_object* _init_l_Fin_reduceBin___lambda__2___closed__1() { +static lean_object* _init_l_Fin_reduceBin___lambda__1___closed__1() { _start: { lean_object* x_1; lean_object* x_2; @@ -1298,11 +518,123 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -LEAN_EXPORT lean_object* l_Fin_reduceBin___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) { +static lean_object* _init_l_Fin_reduceBin___lambda__1___closed__2() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("OfNat", 5); +return x_1; +} +} +static lean_object* _init_l_Fin_reduceBin___lambda__1___closed__3() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("ofNat", 5); +return x_1; +} +} +static lean_object* _init_l_Fin_reduceBin___lambda__1___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Fin_reduceBin___lambda__1___closed__2; +x_2 = l_Fin_reduceBin___lambda__1___closed__3; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Fin_reduceBin___lambda__1___closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = lean_unsigned_to_nat(0u); +x_2 = l_Lean_Level_ofNat(x_1); +return x_2; +} +} +static lean_object* _init_l_Fin_reduceBin___lambda__1___closed__6() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Fin_reduceBin___lambda__1___closed__5; +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_Fin_reduceBin___lambda__1___closed__7() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Fin_reduceBin___lambda__1___closed__4; +x_2 = l_Fin_reduceBin___lambda__1___closed__6; +x_3 = l_Lean_Expr_const___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Fin_reduceBin___lambda__1___closed__8() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("Fin", 3); +return x_1; +} +} +static lean_object* _init_l_Fin_reduceBin___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_Fin_reduceBin___lambda__1___closed__8; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Fin_reduceBin___lambda__1___closed__10() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Fin_reduceBin___lambda__1___closed__9; +x_3 = l_Lean_Expr_const___override(x_2, x_1); +return x_3; +} +} +static lean_object* _init_l_Fin_reduceBin___lambda__1___closed__11() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("instOfNat", 9); +return x_1; +} +} +static lean_object* _init_l_Fin_reduceBin___lambda__1___closed__12() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Fin_reduceBin___lambda__1___closed__8; +x_2 = l_Fin_reduceBin___lambda__1___closed__11; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Fin_reduceBin___lambda__1___closed__13() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Fin_reduceBin___lambda__1___closed__12; +x_3 = l_Lean_Expr_const___override(x_2, x_1); +return x_3; +} +} +LEAN_EXPORT lean_object* l_Fin_reduceBin___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, lean_object* x_11) { _start: { lean_object* x_12; lean_object* x_13; lean_object* x_14; -lean_dec(x_3); lean_inc(x_1); x_12 = l_Lean_Expr_appFn_x21(x_1); x_13 = l_Lean_Expr_appArg_x21(x_12); @@ -1312,6 +644,7 @@ lean_inc(x_9); lean_inc(x_8); lean_inc(x_7); x_14 = l_Fin_fromExpr_x3f(x_13, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_13); if (lean_obj_tag(x_14) == 0) { lean_object* x_15; @@ -1324,9 +657,6 @@ 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_2); lean_dec(x_1); x_16 = !lean_is_exclusive(x_14); @@ -1335,7 +665,7 @@ if (x_16 == 0) lean_object* x_17; lean_object* x_18; x_17 = lean_ctor_get(x_14, 0); lean_dec(x_17); -x_18 = l_Fin_reduceBin___lambda__2___closed__1; +x_18 = l_Fin_reduceBin___lambda__1___closed__1; lean_ctor_set(x_14, 0, x_18); return x_14; } @@ -1345,7 +675,7 @@ lean_object* x_19; lean_object* x_20; lean_object* x_21; x_19 = lean_ctor_get(x_14, 1); lean_inc(x_19); lean_dec(x_14); -x_20 = l_Fin_reduceBin___lambda__2___closed__1; +x_20 = l_Fin_reduceBin___lambda__1___closed__1; x_21 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_21, 0, x_20); lean_ctor_set(x_21, 1, x_19); @@ -1363,11 +693,8 @@ lean_inc(x_23); lean_dec(x_15); x_24 = l_Lean_Expr_appArg_x21(x_1); lean_dec(x_1); -lean_inc(x_10); -lean_inc(x_9); -lean_inc(x_8); -lean_inc(x_7); x_25 = l_Fin_fromExpr_x3f(x_24, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_22); +lean_dec(x_24); if (lean_obj_tag(x_25) == 0) { lean_object* x_26; @@ -1377,13 +704,6 @@ if (lean_obj_tag(x_26) == 0) { uint8_t x_27; lean_dec(x_23); -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_2); x_27 = !lean_is_exclusive(x_25); if (x_27 == 0) @@ -1391,7 +711,7 @@ if (x_27 == 0) lean_object* x_28; lean_object* x_29; x_28 = lean_ctor_get(x_25, 0); lean_dec(x_28); -x_29 = l_Fin_reduceBin___lambda__2___closed__1; +x_29 = l_Fin_reduceBin___lambda__1___closed__1; lean_ctor_set(x_25, 0, x_29); return x_25; } @@ -1401,7 +721,7 @@ lean_object* x_30; lean_object* x_31; lean_object* x_32; x_30 = lean_ctor_get(x_25, 1); lean_inc(x_30); lean_dec(x_25); -x_31 = l_Fin_reduceBin___lambda__2___closed__1; +x_31 = l_Fin_reduceBin___lambda__1___closed__1; x_32 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_32, 0, x_31); lean_ctor_set(x_32, 1, x_30); @@ -1414,167 +734,191 @@ uint8_t x_33; x_33 = !lean_is_exclusive(x_25); if (x_33 == 0) { -lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; uint8_t x_39; -x_34 = lean_ctor_get(x_25, 1); -x_35 = lean_ctor_get(x_25, 0); -lean_dec(x_35); -x_36 = lean_ctor_get(x_26, 0); +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_25, 0); +lean_dec(x_34); +x_35 = lean_ctor_get(x_26, 0); +lean_inc(x_35); +lean_dec(x_26); +x_36 = lean_ctor_get(x_23, 0); lean_inc(x_36); -lean_dec(x_26); -x_37 = lean_ctor_get(x_23, 1); +x_37 = lean_ctor_get(x_35, 0); lean_inc(x_37); -x_38 = lean_ctor_get(x_36, 1); -lean_inc(x_38); -x_39 = lean_nat_dec_eq(x_37, x_38); -lean_dec(x_38); +x_38 = lean_nat_dec_eq(x_36, x_37); lean_dec(x_37); -if (x_39 == 0) +if (x_38 == 0) { -lean_object* x_40; +lean_object* x_39; lean_dec(x_36); +lean_dec(x_35); lean_dec(x_23); -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_2); -x_40 = l_Fin_reduceBin___lambda__2___closed__1; -lean_ctor_set(x_25, 0, x_40); +x_39 = l_Fin_reduceBin___lambda__1___closed__1; +lean_ctor_set(x_25, 0, x_39); return x_25; } else { -lean_object* x_41; lean_object* x_42; -lean_free_object(x_25); -x_41 = lean_box(0); -x_42 = l_Fin_reduceBin___lambda__1(x_23, x_36, x_2, x_41, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_34); -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); -return x_42; -} -} -else -{ -lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; uint8_t x_47; -x_43 = lean_ctor_get(x_25, 1); +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; uint32_t x_55; uint8_t x_56; lean_object* x_57; lean_object* x_58; +x_40 = lean_ctor_get(x_23, 1); +lean_inc(x_40); +lean_dec(x_23); +x_41 = lean_ctor_get(x_35, 1); +lean_inc(x_41); +lean_dec(x_35); +lean_inc(x_36); +x_42 = lean_apply_3(x_2, x_36, x_40, x_41); +x_43 = l_Lean_mkRawNatLit(x_42); +lean_inc(x_36); +x_44 = l_Lean_mkNatLit(x_36); +x_45 = l_Fin_reduceBin___lambda__1___closed__10; +x_46 = l_Lean_Expr_app___override(x_45, x_44); +x_47 = lean_unsigned_to_nat(1u); +x_48 = lean_nat_sub(x_36, x_47); +lean_dec(x_36); +x_49 = l_Lean_mkNatLit(x_48); +x_50 = l_Fin_reduceBin___lambda__1___closed__13; lean_inc(x_43); +x_51 = l_Lean_mkAppB(x_50, x_49, x_43); +x_52 = l_Fin_reduceBin___lambda__1___closed__7; +x_53 = l_Lean_mkApp3(x_52, x_46, x_43, x_51); +x_54 = lean_box(0); +x_55 = 0; +x_56 = 1; +x_57 = lean_alloc_ctor(0, 2, 5); +lean_ctor_set(x_57, 0, x_53); +lean_ctor_set(x_57, 1, x_54); +lean_ctor_set_uint32(x_57, sizeof(void*)*2, x_55); +lean_ctor_set_uint8(x_57, sizeof(void*)*2 + 4, x_56); +x_58 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_58, 0, x_57); +lean_ctor_set(x_25, 0, x_58); +return x_25; +} +} +else +{ +lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; uint8_t x_63; +x_59 = lean_ctor_get(x_25, 1); +lean_inc(x_59); lean_dec(x_25); -x_44 = lean_ctor_get(x_26, 0); -lean_inc(x_44); +x_60 = lean_ctor_get(x_26, 0); +lean_inc(x_60); lean_dec(x_26); -x_45 = lean_ctor_get(x_23, 1); -lean_inc(x_45); -x_46 = lean_ctor_get(x_44, 1); -lean_inc(x_46); -x_47 = lean_nat_dec_eq(x_45, x_46); -lean_dec(x_46); -lean_dec(x_45); -if (x_47 == 0) +x_61 = lean_ctor_get(x_23, 0); +lean_inc(x_61); +x_62 = lean_ctor_get(x_60, 0); +lean_inc(x_62); +x_63 = lean_nat_dec_eq(x_61, x_62); +lean_dec(x_62); +if (x_63 == 0) { -lean_object* x_48; lean_object* x_49; -lean_dec(x_44); +lean_object* x_64; lean_object* x_65; +lean_dec(x_61); +lean_dec(x_60); lean_dec(x_23); -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_2); -x_48 = l_Fin_reduceBin___lambda__2___closed__1; -x_49 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_49, 0, x_48); -lean_ctor_set(x_49, 1, x_43); -return x_49; +x_64 = l_Fin_reduceBin___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_59); +return x_65; } else { -lean_object* x_50; lean_object* x_51; -x_50 = lean_box(0); -x_51 = l_Fin_reduceBin___lambda__1(x_23, x_44, x_2, x_50, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_43); -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); -return x_51; +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; uint32_t x_81; uint8_t x_82; lean_object* x_83; lean_object* x_84; lean_object* x_85; +x_66 = lean_ctor_get(x_23, 1); +lean_inc(x_66); +lean_dec(x_23); +x_67 = lean_ctor_get(x_60, 1); +lean_inc(x_67); +lean_dec(x_60); +lean_inc(x_61); +x_68 = lean_apply_3(x_2, x_61, x_66, x_67); +x_69 = l_Lean_mkRawNatLit(x_68); +lean_inc(x_61); +x_70 = l_Lean_mkNatLit(x_61); +x_71 = l_Fin_reduceBin___lambda__1___closed__10; +x_72 = l_Lean_Expr_app___override(x_71, x_70); +x_73 = lean_unsigned_to_nat(1u); +x_74 = lean_nat_sub(x_61, x_73); +lean_dec(x_61); +x_75 = l_Lean_mkNatLit(x_74); +x_76 = l_Fin_reduceBin___lambda__1___closed__13; +lean_inc(x_69); +x_77 = l_Lean_mkAppB(x_76, x_75, x_69); +x_78 = l_Fin_reduceBin___lambda__1___closed__7; +x_79 = l_Lean_mkApp3(x_78, x_72, x_69, x_77); +x_80 = lean_box(0); +x_81 = 0; +x_82 = 1; +x_83 = lean_alloc_ctor(0, 2, 5); +lean_ctor_set(x_83, 0, x_79); +lean_ctor_set(x_83, 1, x_80); +lean_ctor_set_uint32(x_83, sizeof(void*)*2, x_81); +lean_ctor_set_uint8(x_83, sizeof(void*)*2 + 4, x_82); +x_84 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_84, 0, x_83); +x_85 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_85, 0, x_84); +lean_ctor_set(x_85, 1, x_59); +return x_85; } } } } else { -uint8_t x_52; +uint8_t x_86; lean_dec(x_23); -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_2); -x_52 = !lean_is_exclusive(x_25); -if (x_52 == 0) +x_86 = !lean_is_exclusive(x_25); +if (x_86 == 0) { return x_25; } else { -lean_object* x_53; lean_object* x_54; lean_object* x_55; -x_53 = lean_ctor_get(x_25, 0); -x_54 = lean_ctor_get(x_25, 1); -lean_inc(x_54); -lean_inc(x_53); +lean_object* x_87; lean_object* x_88; lean_object* x_89; +x_87 = lean_ctor_get(x_25, 0); +x_88 = lean_ctor_get(x_25, 1); +lean_inc(x_88); +lean_inc(x_87); lean_dec(x_25); -x_55 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_55, 0, x_53); -lean_ctor_set(x_55, 1, x_54); -return x_55; +x_89 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_89, 0, x_87); +lean_ctor_set(x_89, 1, x_88); +return x_89; } } } } else { -uint8_t x_56; +uint8_t x_90; 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_2); lean_dec(x_1); -x_56 = !lean_is_exclusive(x_14); -if (x_56 == 0) +x_90 = !lean_is_exclusive(x_14); +if (x_90 == 0) { return x_14; } else { -lean_object* x_57; lean_object* x_58; lean_object* x_59; -x_57 = lean_ctor_get(x_14, 0); -x_58 = lean_ctor_get(x_14, 1); -lean_inc(x_58); -lean_inc(x_57); +lean_object* x_91; lean_object* x_92; lean_object* x_93; +x_91 = lean_ctor_get(x_14, 0); +x_92 = lean_ctor_get(x_14, 1); +lean_inc(x_92); +lean_inc(x_91); lean_dec(x_14); -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; +x_93 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_93, 0, x_91); +lean_ctor_set(x_93, 1, x_92); +return x_93; } } } @@ -1597,7 +941,7 @@ lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); -x_14 = l_Fin_reduceBin___lambda__2___closed__1; +x_14 = l_Fin_reduceBin___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_12); @@ -1607,25 +951,24 @@ else { lean_object* x_16; lean_object* x_17; x_16 = lean_box(0); -x_17 = l_Fin_reduceBin___lambda__2(x_4, x_3, x_16, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +x_17 = l_Fin_reduceBin___lambda__1(x_4, x_3, x_16, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); return x_17; } } } -LEAN_EXPORT lean_object* l_Fin_reduceBin___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, lean_object* x_11, lean_object* x_12) { +LEAN_EXPORT lean_object* l_Fin_reduceBin___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, lean_object* x_11) { _start: { -lean_object* x_13; -x_13 = l_Fin_reduceBin___lambda__1(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_9); -lean_dec(x_8); -lean_dec(x_7); +lean_object* x_12; +x_12 = l_Fin_reduceBin___lambda__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); -return x_13; +lean_dec(x_3); +return x_12; } } LEAN_EXPORT lean_object* l_Fin_reduceBinPred___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, lean_object* x_11) { @@ -1641,6 +984,7 @@ lean_inc(x_9); lean_inc(x_8); lean_inc(x_7); x_14 = l_Fin_fromExpr_x3f(x_13, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_13); if (lean_obj_tag(x_14) == 0) { lean_object* x_15; @@ -1661,7 +1005,7 @@ if (x_16 == 0) lean_object* x_17; lean_object* x_18; x_17 = lean_ctor_get(x_14, 0); lean_dec(x_17); -x_18 = l_Fin_reduceBin___lambda__2___closed__1; +x_18 = l_Fin_reduceBin___lambda__1___closed__1; lean_ctor_set(x_14, 0, x_18); return x_14; } @@ -1671,7 +1015,7 @@ lean_object* x_19; lean_object* x_20; lean_object* x_21; x_19 = lean_ctor_get(x_14, 1); lean_inc(x_19); lean_dec(x_14); -x_20 = l_Fin_reduceBin___lambda__2___closed__1; +x_20 = l_Fin_reduceBin___lambda__1___closed__1; x_21 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_21, 0, x_20); lean_ctor_set(x_21, 1, x_19); @@ -1693,6 +1037,7 @@ lean_inc(x_9); lean_inc(x_8); lean_inc(x_7); x_25 = l_Fin_fromExpr_x3f(x_24, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_22); +lean_dec(x_24); if (lean_obj_tag(x_25) == 0) { lean_object* x_26; @@ -1714,7 +1059,7 @@ if (x_27 == 0) lean_object* x_28; lean_object* x_29; x_28 = lean_ctor_get(x_25, 0); lean_dec(x_28); -x_29 = l_Fin_reduceBin___lambda__2___closed__1; +x_29 = l_Fin_reduceBin___lambda__1___closed__1; lean_ctor_set(x_25, 0, x_29); return x_25; } @@ -1724,7 +1069,7 @@ lean_object* x_30; lean_object* x_31; lean_object* x_32; x_30 = lean_ctor_get(x_25, 1); lean_inc(x_30); lean_dec(x_25); -x_31 = l_Fin_reduceBin___lambda__2___closed__1; +x_31 = l_Fin_reduceBin___lambda__1___closed__1; x_32 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_32, 0, x_31); lean_ctor_set(x_32, 1, x_30); @@ -1740,10 +1085,10 @@ lean_dec(x_25); x_34 = lean_ctor_get(x_26, 0); lean_inc(x_34); lean_dec(x_26); -x_35 = lean_ctor_get(x_23, 2); +x_35 = lean_ctor_get(x_23, 1); lean_inc(x_35); lean_dec(x_23); -x_36 = lean_ctor_get(x_34, 2); +x_36 = lean_ctor_get(x_34, 1); lean_inc(x_36); lean_dec(x_34); x_37 = lean_apply_2(x_2, x_35, x_36); @@ -1832,7 +1177,7 @@ lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); -x_14 = l_Fin_reduceBin___lambda__2___closed__1; +x_14 = l_Fin_reduceBin___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_12); @@ -1991,6 +1336,7 @@ lean_inc(x_9); lean_inc(x_8); lean_inc(x_7); x_14 = l_Fin_fromExpr_x3f(x_13, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_13); if (lean_obj_tag(x_14) == 0) { lean_object* x_15; @@ -2011,7 +1357,7 @@ if (x_16 == 0) lean_object* x_17; lean_object* x_18; x_17 = lean_ctor_get(x_14, 0); lean_dec(x_17); -x_18 = l_Fin_reduceBin___lambda__2___closed__1; +x_18 = l_Fin_reduceBin___lambda__1___closed__1; lean_ctor_set(x_14, 0, x_18); return x_14; } @@ -2021,7 +1367,7 @@ lean_object* x_19; lean_object* x_20; lean_object* x_21; x_19 = lean_ctor_get(x_14, 1); lean_inc(x_19); lean_dec(x_14); -x_20 = l_Fin_reduceBin___lambda__2___closed__1; +x_20 = l_Fin_reduceBin___lambda__1___closed__1; x_21 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_21, 0, x_20); lean_ctor_set(x_21, 1, x_19); @@ -2040,6 +1386,7 @@ lean_dec(x_15); x_24 = l_Lean_Expr_appArg_x21(x_1); lean_dec(x_1); x_25 = l_Fin_fromExpr_x3f(x_24, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_22); +lean_dec(x_24); if (lean_obj_tag(x_25) == 0) { lean_object* x_26; @@ -2056,7 +1403,7 @@ if (x_27 == 0) lean_object* x_28; lean_object* x_29; x_28 = lean_ctor_get(x_25, 0); lean_dec(x_28); -x_29 = l_Fin_reduceBin___lambda__2___closed__1; +x_29 = l_Fin_reduceBin___lambda__1___closed__1; lean_ctor_set(x_25, 0, x_29); return x_25; } @@ -2066,7 +1413,7 @@ lean_object* x_30; lean_object* x_31; lean_object* x_32; x_30 = lean_ctor_get(x_25, 1); lean_inc(x_30); lean_dec(x_25); -x_31 = l_Fin_reduceBin___lambda__2___closed__1; +x_31 = l_Fin_reduceBin___lambda__1___closed__1; x_32 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_32, 0, x_31); lean_ctor_set(x_32, 1, x_30); @@ -2085,10 +1432,10 @@ lean_dec(x_34); x_35 = lean_ctor_get(x_26, 0); lean_inc(x_35); lean_dec(x_26); -x_36 = lean_ctor_get(x_23, 2); +x_36 = lean_ctor_get(x_23, 1); lean_inc(x_36); lean_dec(x_23); -x_37 = lean_ctor_get(x_35, 2); +x_37 = lean_ctor_get(x_35, 1); lean_inc(x_37); lean_dec(x_35); x_38 = lean_apply_2(x_2, x_36, x_37); @@ -2118,10 +1465,10 @@ lean_dec(x_25); x_43 = lean_ctor_get(x_26, 0); lean_inc(x_43); lean_dec(x_26); -x_44 = lean_ctor_get(x_23, 2); +x_44 = lean_ctor_get(x_23, 1); lean_inc(x_44); lean_dec(x_23); -x_45 = lean_ctor_get(x_43, 2); +x_45 = lean_ctor_get(x_43, 1); lean_inc(x_45); lean_dec(x_43); x_46 = lean_apply_2(x_2, x_44, x_45); @@ -2222,7 +1569,7 @@ lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); -x_14 = l_Fin_reduceBin___lambda__2___closed__1; +x_14 = l_Fin_reduceBin___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_12); @@ -2252,80 +1599,10 @@ lean_dec(x_3); return x_12; } } -LEAN_EXPORT lean_object* l_Fin_reduceAdd___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, lean_object* x_11) { -_start: -{ -uint8_t x_12; -x_12 = !lean_is_exclusive(x_1); -if (x_12 == 0) -{ -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; uint32_t x_20; uint8_t x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; -x_13 = lean_ctor_get(x_1, 1); -x_14 = lean_ctor_get(x_1, 2); -x_15 = lean_ctor_get(x_2, 2); -x_16 = lean_nat_add(x_14, x_15); -lean_dec(x_14); -x_17 = lean_nat_mod(x_16, x_13); -lean_dec(x_16); -lean_ctor_set(x_1, 2, x_17); -x_18 = l_Fin_Value_toExpr(x_1); -x_19 = lean_box(0); -x_20 = 0; -x_21 = 1; -x_22 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_22, 0, x_18); -lean_ctor_set(x_22, 1, x_19); -lean_ctor_set_uint32(x_22, sizeof(void*)*2, x_20); -lean_ctor_set_uint8(x_22, sizeof(void*)*2 + 4, x_21); -x_23 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_23, 0, x_22); -x_24 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_24, 0, x_23); -lean_ctor_set(x_24, 1, x_11); -return x_24; -} -else -{ -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; uint32_t x_34; uint8_t x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; -x_25 = lean_ctor_get(x_1, 0); -x_26 = lean_ctor_get(x_1, 1); -x_27 = lean_ctor_get(x_1, 2); -lean_inc(x_27); -lean_inc(x_26); -lean_inc(x_25); -lean_dec(x_1); -x_28 = lean_ctor_get(x_2, 2); -x_29 = lean_nat_add(x_27, x_28); -lean_dec(x_27); -x_30 = lean_nat_mod(x_29, x_26); -lean_dec(x_29); -x_31 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_31, 0, x_25); -lean_ctor_set(x_31, 1, x_26); -lean_ctor_set(x_31, 2, x_30); -x_32 = l_Fin_Value_toExpr(x_31); -x_33 = lean_box(0); -x_34 = 0; -x_35 = 1; -x_36 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_36, 0, x_32); -lean_ctor_set(x_36, 1, x_33); -lean_ctor_set_uint32(x_36, sizeof(void*)*2, x_34); -lean_ctor_set_uint8(x_36, sizeof(void*)*2 + 4, x_35); -x_37 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_37, 0, x_36); -x_38 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_38, 0, x_37); -lean_ctor_set(x_38, 1, x_11); -return x_38; -} -} -} -LEAN_EXPORT lean_object* l_Fin_reduceAdd___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_EXPORT lean_object* l_Fin_reduceAdd___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; -lean_dec(x_2); lean_inc(x_1); x_11 = l_Lean_Expr_appFn_x21(x_1); x_12 = l_Lean_Expr_appArg_x21(x_11); @@ -2335,6 +1612,7 @@ lean_inc(x_8); lean_inc(x_7); lean_inc(x_6); x_13 = l_Fin_fromExpr_x3f(x_12, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_12); if (lean_obj_tag(x_13) == 0) { lean_object* x_14; @@ -2347,9 +1625,6 @@ 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); lean_dec(x_1); x_15 = !lean_is_exclusive(x_13); if (x_15 == 0) @@ -2357,7 +1632,7 @@ if (x_15 == 0) lean_object* x_16; lean_object* x_17; x_16 = lean_ctor_get(x_13, 0); lean_dec(x_16); -x_17 = l_Fin_reduceBin___lambda__2___closed__1; +x_17 = l_Fin_reduceBin___lambda__1___closed__1; lean_ctor_set(x_13, 0, x_17); return x_13; } @@ -2367,7 +1642,7 @@ lean_object* x_18; lean_object* x_19; lean_object* x_20; x_18 = lean_ctor_get(x_13, 1); lean_inc(x_18); lean_dec(x_13); -x_19 = l_Fin_reduceBin___lambda__2___closed__1; +x_19 = l_Fin_reduceBin___lambda__1___closed__1; x_20 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_20, 0, x_19); lean_ctor_set(x_20, 1, x_18); @@ -2385,11 +1660,8 @@ lean_inc(x_22); lean_dec(x_14); x_23 = l_Lean_Expr_appArg_x21(x_1); lean_dec(x_1); -lean_inc(x_9); -lean_inc(x_8); -lean_inc(x_7); -lean_inc(x_6); x_24 = l_Fin_fromExpr_x3f(x_23, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_21); +lean_dec(x_23); if (lean_obj_tag(x_24) == 0) { lean_object* x_25; @@ -2399,20 +1671,13 @@ if (lean_obj_tag(x_25) == 0) { uint8_t x_26; lean_dec(x_22); -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_26 = !lean_is_exclusive(x_24); if (x_26 == 0) { lean_object* x_27; lean_object* x_28; x_27 = lean_ctor_get(x_24, 0); lean_dec(x_27); -x_28 = l_Fin_reduceBin___lambda__2___closed__1; +x_28 = l_Fin_reduceBin___lambda__1___closed__1; lean_ctor_set(x_24, 0, x_28); return x_24; } @@ -2422,7 +1687,7 @@ lean_object* x_29; lean_object* x_30; lean_object* x_31; x_29 = lean_ctor_get(x_24, 1); lean_inc(x_29); lean_dec(x_24); -x_30 = l_Fin_reduceBin___lambda__2___closed__1; +x_30 = l_Fin_reduceBin___lambda__1___closed__1; x_31 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_31, 0, x_30); lean_ctor_set(x_31, 1, x_29); @@ -2435,165 +1700,189 @@ uint8_t x_32; x_32 = !lean_is_exclusive(x_24); if (x_32 == 0) { -lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; uint8_t x_38; -x_33 = lean_ctor_get(x_24, 1); -x_34 = lean_ctor_get(x_24, 0); -lean_dec(x_34); -x_35 = lean_ctor_get(x_25, 0); +lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; uint8_t x_37; +x_33 = lean_ctor_get(x_24, 0); +lean_dec(x_33); +x_34 = lean_ctor_get(x_25, 0); +lean_inc(x_34); +lean_dec(x_25); +x_35 = lean_ctor_get(x_22, 0); lean_inc(x_35); -lean_dec(x_25); -x_36 = lean_ctor_get(x_22, 1); +x_36 = lean_ctor_get(x_34, 0); lean_inc(x_36); -x_37 = lean_ctor_get(x_35, 1); -lean_inc(x_37); -x_38 = lean_nat_dec_eq(x_36, x_37); -lean_dec(x_37); +x_37 = lean_nat_dec_eq(x_35, x_36); lean_dec(x_36); -if (x_38 == 0) +if (x_37 == 0) { -lean_object* x_39; +lean_object* x_38; lean_dec(x_35); +lean_dec(x_34); lean_dec(x_22); -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_39 = l_Fin_reduceBin___lambda__2___closed__1; -lean_ctor_set(x_24, 0, x_39); +x_38 = l_Fin_reduceBin___lambda__1___closed__1; +lean_ctor_set(x_24, 0, x_38); return x_24; } else { -lean_object* x_40; lean_object* x_41; -lean_free_object(x_24); -x_40 = lean_box(0); -x_41 = l_Fin_reduceAdd___lambda__1(x_22, x_35, x_40, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_33); -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); +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; uint32_t x_54; uint8_t x_55; lean_object* x_56; lean_object* x_57; +x_39 = lean_ctor_get(x_22, 1); +lean_inc(x_39); +lean_dec(x_22); +x_40 = lean_ctor_get(x_34, 1); +lean_inc(x_40); +lean_dec(x_34); +x_41 = l_Fin_add(x_35, x_39, x_40); +lean_dec(x_40); +lean_dec(x_39); +x_42 = l_Lean_mkRawNatLit(x_41); +lean_inc(x_35); +x_43 = l_Lean_mkNatLit(x_35); +x_44 = l_Fin_reduceBin___lambda__1___closed__10; +x_45 = l_Lean_Expr_app___override(x_44, x_43); +x_46 = lean_unsigned_to_nat(1u); +x_47 = lean_nat_sub(x_35, x_46); lean_dec(x_35); -return x_41; -} -} -else -{ -lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; uint8_t x_46; -x_42 = lean_ctor_get(x_24, 1); +x_48 = l_Lean_mkNatLit(x_47); +x_49 = l_Fin_reduceBin___lambda__1___closed__13; lean_inc(x_42); +x_50 = l_Lean_mkAppB(x_49, x_48, x_42); +x_51 = l_Fin_reduceBin___lambda__1___closed__7; +x_52 = l_Lean_mkApp3(x_51, x_45, x_42, x_50); +x_53 = lean_box(0); +x_54 = 0; +x_55 = 1; +x_56 = lean_alloc_ctor(0, 2, 5); +lean_ctor_set(x_56, 0, x_52); +lean_ctor_set(x_56, 1, x_53); +lean_ctor_set_uint32(x_56, sizeof(void*)*2, x_54); +lean_ctor_set_uint8(x_56, sizeof(void*)*2 + 4, x_55); +x_57 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_57, 0, x_56); +lean_ctor_set(x_24, 0, x_57); +return x_24; +} +} +else +{ +lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; uint8_t x_62; +x_58 = lean_ctor_get(x_24, 1); +lean_inc(x_58); lean_dec(x_24); -x_43 = lean_ctor_get(x_25, 0); -lean_inc(x_43); +x_59 = lean_ctor_get(x_25, 0); +lean_inc(x_59); lean_dec(x_25); -x_44 = lean_ctor_get(x_22, 1); -lean_inc(x_44); -x_45 = lean_ctor_get(x_43, 1); -lean_inc(x_45); -x_46 = lean_nat_dec_eq(x_44, x_45); -lean_dec(x_45); -lean_dec(x_44); -if (x_46 == 0) +x_60 = lean_ctor_get(x_22, 0); +lean_inc(x_60); +x_61 = lean_ctor_get(x_59, 0); +lean_inc(x_61); +x_62 = lean_nat_dec_eq(x_60, x_61); +lean_dec(x_61); +if (x_62 == 0) { -lean_object* x_47; lean_object* x_48; -lean_dec(x_43); +lean_object* x_63; lean_object* x_64; +lean_dec(x_60); +lean_dec(x_59); lean_dec(x_22); -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_47 = l_Fin_reduceBin___lambda__2___closed__1; -x_48 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_48, 0, x_47); -lean_ctor_set(x_48, 1, x_42); -return x_48; +x_63 = l_Fin_reduceBin___lambda__1___closed__1; +x_64 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_64, 0, x_63); +lean_ctor_set(x_64, 1, x_58); +return x_64; } else { -lean_object* x_49; lean_object* x_50; -x_49 = lean_box(0); -x_50 = l_Fin_reduceAdd___lambda__1(x_22, x_43, x_49, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_42); -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); -lean_dec(x_43); -return x_50; +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; uint32_t x_80; uint8_t x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; +x_65 = lean_ctor_get(x_22, 1); +lean_inc(x_65); +lean_dec(x_22); +x_66 = lean_ctor_get(x_59, 1); +lean_inc(x_66); +lean_dec(x_59); +x_67 = l_Fin_add(x_60, x_65, x_66); +lean_dec(x_66); +lean_dec(x_65); +x_68 = l_Lean_mkRawNatLit(x_67); +lean_inc(x_60); +x_69 = l_Lean_mkNatLit(x_60); +x_70 = l_Fin_reduceBin___lambda__1___closed__10; +x_71 = l_Lean_Expr_app___override(x_70, x_69); +x_72 = lean_unsigned_to_nat(1u); +x_73 = lean_nat_sub(x_60, x_72); +lean_dec(x_60); +x_74 = l_Lean_mkNatLit(x_73); +x_75 = l_Fin_reduceBin___lambda__1___closed__13; +lean_inc(x_68); +x_76 = l_Lean_mkAppB(x_75, x_74, x_68); +x_77 = l_Fin_reduceBin___lambda__1___closed__7; +x_78 = l_Lean_mkApp3(x_77, x_71, x_68, x_76); +x_79 = lean_box(0); +x_80 = 0; +x_81 = 1; +x_82 = lean_alloc_ctor(0, 2, 5); +lean_ctor_set(x_82, 0, x_78); +lean_ctor_set(x_82, 1, x_79); +lean_ctor_set_uint32(x_82, sizeof(void*)*2, x_80); +lean_ctor_set_uint8(x_82, sizeof(void*)*2 + 4, x_81); +x_83 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_83, 0, x_82); +x_84 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_84, 0, x_83); +lean_ctor_set(x_84, 1, x_58); +return x_84; } } } } else { -uint8_t x_51; +uint8_t x_85; lean_dec(x_22); -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_51 = !lean_is_exclusive(x_24); -if (x_51 == 0) +x_85 = !lean_is_exclusive(x_24); +if (x_85 == 0) { return x_24; } else { -lean_object* x_52; lean_object* x_53; lean_object* x_54; -x_52 = lean_ctor_get(x_24, 0); -x_53 = lean_ctor_get(x_24, 1); -lean_inc(x_53); -lean_inc(x_52); +lean_object* x_86; lean_object* x_87; lean_object* x_88; +x_86 = lean_ctor_get(x_24, 0); +x_87 = lean_ctor_get(x_24, 1); +lean_inc(x_87); +lean_inc(x_86); lean_dec(x_24); -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; +x_88 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_88, 0, x_86); +lean_ctor_set(x_88, 1, x_87); +return x_88; } } } } else { -uint8_t x_55; +uint8_t x_89; 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); lean_dec(x_1); -x_55 = !lean_is_exclusive(x_13); -if (x_55 == 0) +x_89 = !lean_is_exclusive(x_13); +if (x_89 == 0) { return x_13; } else { -lean_object* x_56; lean_object* x_57; lean_object* x_58; -x_56 = lean_ctor_get(x_13, 0); -x_57 = lean_ctor_get(x_13, 1); -lean_inc(x_57); -lean_inc(x_56); +lean_object* x_90; lean_object* x_91; lean_object* x_92; +x_90 = lean_ctor_get(x_13, 0); +x_91 = lean_ctor_get(x_13, 1); +lean_inc(x_91); +lean_inc(x_90); lean_dec(x_13); -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; +x_92 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_92, 0, x_90); +lean_ctor_set(x_92, 1, x_91); +return x_92; } } } @@ -2642,7 +1931,7 @@ lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_13 = l_Fin_reduceBin___lambda__2___closed__1; +x_13 = l_Fin_reduceBin___lambda__1___closed__1; x_14 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_14, 0, x_13); lean_ctor_set(x_14, 1, x_9); @@ -2652,29 +1941,27 @@ else { lean_object* x_15; lean_object* x_16; x_15 = lean_box(0); -x_16 = l_Fin_reduceAdd___lambda__2(x_1, x_15, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_16 = l_Fin_reduceAdd___lambda__1(x_1, x_15, 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_16; } } } -LEAN_EXPORT lean_object* l_Fin_reduceAdd___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, lean_object* x_11) { +LEAN_EXPORT lean_object* l_Fin_reduceAdd___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_12; -x_12 = l_Fin_reduceAdd___lambda__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); +lean_object* x_11; +x_11 = l_Fin_reduceAdd___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_12; +return x_11; } } -static lean_object* _init_l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_725____closed__1() { +static lean_object* _init_l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_595____closed__1() { _start: { lean_object* x_1; @@ -2682,17 +1969,17 @@ x_1 = lean_mk_string_from_bytes("reduceAdd", 9); return x_1; } } -static lean_object* _init_l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_725____closed__2() { +static lean_object* _init_l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_595____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Fin_fromExpr_x3f___closed__4; -x_2 = l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_725____closed__1; +x_1 = l_Fin_reduceBin___lambda__1___closed__8; +x_2 = l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_595____closed__1; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_725____closed__3() { +static lean_object* _init_l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_595____closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -2704,11 +1991,11 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_725____closed__4() { +static lean_object* _init_l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_595____closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Fin_fromExpr_x3f___closed__5; +x_1 = l_Fin_reduceBin___lambda__1___closed__9; x_2 = lean_unsigned_to_nat(1u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -2716,7 +2003,7 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_725____closed__5() { +static lean_object* _init_l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_595____closed__5() { _start: { lean_object* x_1; lean_object* x_2; @@ -2725,107 +2012,107 @@ x_2 = lean_mk_empty_array_with_capacity(x_1); return x_2; } } -static lean_object* _init_l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_725____closed__6() { +static lean_object* _init_l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_595____closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_725____closed__5; -x_2 = l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_725____closed__3; +x_1 = l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_595____closed__5; +x_2 = l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_595____closed__3; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_725____closed__7() { +static lean_object* _init_l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_595____closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_725____closed__6; -x_2 = l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_725____closed__4; +x_1 = l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_595____closed__6; +x_2 = l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_595____closed__4; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_725____closed__8() { +static lean_object* _init_l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_595____closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_725____closed__7; +x_1 = l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_595____closed__7; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_725____closed__9() { +static lean_object* _init_l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_595____closed__9() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_725____closed__8; -x_2 = l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_725____closed__4; +x_1 = l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_595____closed__8; +x_2 = l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_595____closed__4; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_725____closed__10() { +static lean_object* _init_l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_595____closed__10() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_725____closed__9; +x_1 = l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_595____closed__9; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_725____closed__11() { +static lean_object* _init_l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_595____closed__11() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_725____closed__10; -x_2 = l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_725____closed__4; +x_1 = l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_595____closed__10; +x_2 = l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_595____closed__4; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_725____closed__12() { +static lean_object* _init_l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_595____closed__12() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_725____closed__11; +x_1 = l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_595____closed__11; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_725____closed__13() { +static lean_object* _init_l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_595____closed__13() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_725____closed__12; +x_1 = l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_595____closed__12; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_725____closed__14() { +static lean_object* _init_l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_595____closed__14() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_725____closed__13; +x_1 = l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_595____closed__13; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_725____closed__15() { +static lean_object* _init_l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_595____closed__15() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_725____closed__14; +x_1 = l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_595____closed__14; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_725____closed__16() { +static lean_object* _init_l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_595____closed__16() { _start: { lean_object* x_1; @@ -2833,18 +2120,18 @@ x_1 = lean_alloc_closure((void*)(l_Fin_reduceAdd), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_725_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_595_(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_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_725____closed__2; -x_3 = l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_725____closed__15; -x_4 = l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_725____closed__16; +x_2 = l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_595____closed__2; +x_3 = l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_595____closed__15; +x_4 = l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_595____closed__16; x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); return x_5; } } -static lean_object* _init_l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_727____closed__1() { +static lean_object* _init_l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_597____closed__1() { _start: { lean_object* x_1; @@ -2852,19 +2139,19 @@ x_1 = l_Lean_Meta_Simp_builtinSimprocsRef; return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_727_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_597_(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_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_727____closed__1; -x_3 = l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_725____closed__2; +x_2 = l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_597____closed__1; +x_3 = l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_595____closed__2; x_4 = 1; -x_5 = l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_725____closed__16; +x_5 = l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_595____closed__16; 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___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_729____closed__1() { +static lean_object* _init_l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_599____closed__1() { _start: { lean_object* x_1; @@ -2872,92 +2159,22 @@ x_1 = l_Lean_Meta_Simp_builtinSEvalprocsRef; return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_729_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_599_(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_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_729____closed__1; -x_3 = l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_725____closed__2; +x_2 = l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_599____closed__1; +x_3 = l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_595____closed__2; x_4 = 1; -x_5 = l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_725____closed__16; +x_5 = l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_595____closed__16; 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_Fin_reduceMul___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, lean_object* x_11) { -_start: -{ -uint8_t x_12; -x_12 = !lean_is_exclusive(x_1); -if (x_12 == 0) -{ -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; uint32_t x_20; uint8_t x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; -x_13 = lean_ctor_get(x_1, 1); -x_14 = lean_ctor_get(x_1, 2); -x_15 = lean_ctor_get(x_2, 2); -x_16 = lean_nat_mul(x_14, x_15); -lean_dec(x_14); -x_17 = lean_nat_mod(x_16, x_13); -lean_dec(x_16); -lean_ctor_set(x_1, 2, x_17); -x_18 = l_Fin_Value_toExpr(x_1); -x_19 = lean_box(0); -x_20 = 0; -x_21 = 1; -x_22 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_22, 0, x_18); -lean_ctor_set(x_22, 1, x_19); -lean_ctor_set_uint32(x_22, sizeof(void*)*2, x_20); -lean_ctor_set_uint8(x_22, sizeof(void*)*2 + 4, x_21); -x_23 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_23, 0, x_22); -x_24 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_24, 0, x_23); -lean_ctor_set(x_24, 1, x_11); -return x_24; -} -else -{ -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; uint32_t x_34; uint8_t x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; -x_25 = lean_ctor_get(x_1, 0); -x_26 = lean_ctor_get(x_1, 1); -x_27 = lean_ctor_get(x_1, 2); -lean_inc(x_27); -lean_inc(x_26); -lean_inc(x_25); -lean_dec(x_1); -x_28 = lean_ctor_get(x_2, 2); -x_29 = lean_nat_mul(x_27, x_28); -lean_dec(x_27); -x_30 = lean_nat_mod(x_29, x_26); -lean_dec(x_29); -x_31 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_31, 0, x_25); -lean_ctor_set(x_31, 1, x_26); -lean_ctor_set(x_31, 2, x_30); -x_32 = l_Fin_Value_toExpr(x_31); -x_33 = lean_box(0); -x_34 = 0; -x_35 = 1; -x_36 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_36, 0, x_32); -lean_ctor_set(x_36, 1, x_33); -lean_ctor_set_uint32(x_36, sizeof(void*)*2, x_34); -lean_ctor_set_uint8(x_36, sizeof(void*)*2 + 4, x_35); -x_37 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_37, 0, x_36); -x_38 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_38, 0, x_37); -lean_ctor_set(x_38, 1, x_11); -return x_38; -} -} -} -LEAN_EXPORT lean_object* l_Fin_reduceMul___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_EXPORT lean_object* l_Fin_reduceMul___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; -lean_dec(x_2); lean_inc(x_1); x_11 = l_Lean_Expr_appFn_x21(x_1); x_12 = l_Lean_Expr_appArg_x21(x_11); @@ -2967,6 +2184,7 @@ lean_inc(x_8); lean_inc(x_7); lean_inc(x_6); x_13 = l_Fin_fromExpr_x3f(x_12, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_12); if (lean_obj_tag(x_13) == 0) { lean_object* x_14; @@ -2979,9 +2197,6 @@ 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); lean_dec(x_1); x_15 = !lean_is_exclusive(x_13); if (x_15 == 0) @@ -2989,7 +2204,7 @@ if (x_15 == 0) lean_object* x_16; lean_object* x_17; x_16 = lean_ctor_get(x_13, 0); lean_dec(x_16); -x_17 = l_Fin_reduceBin___lambda__2___closed__1; +x_17 = l_Fin_reduceBin___lambda__1___closed__1; lean_ctor_set(x_13, 0, x_17); return x_13; } @@ -2999,7 +2214,7 @@ lean_object* x_18; lean_object* x_19; lean_object* x_20; x_18 = lean_ctor_get(x_13, 1); lean_inc(x_18); lean_dec(x_13); -x_19 = l_Fin_reduceBin___lambda__2___closed__1; +x_19 = l_Fin_reduceBin___lambda__1___closed__1; x_20 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_20, 0, x_19); lean_ctor_set(x_20, 1, x_18); @@ -3017,11 +2232,8 @@ lean_inc(x_22); lean_dec(x_14); x_23 = l_Lean_Expr_appArg_x21(x_1); lean_dec(x_1); -lean_inc(x_9); -lean_inc(x_8); -lean_inc(x_7); -lean_inc(x_6); x_24 = l_Fin_fromExpr_x3f(x_23, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_21); +lean_dec(x_23); if (lean_obj_tag(x_24) == 0) { lean_object* x_25; @@ -3031,20 +2243,13 @@ if (lean_obj_tag(x_25) == 0) { uint8_t x_26; lean_dec(x_22); -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_26 = !lean_is_exclusive(x_24); if (x_26 == 0) { lean_object* x_27; lean_object* x_28; x_27 = lean_ctor_get(x_24, 0); lean_dec(x_27); -x_28 = l_Fin_reduceBin___lambda__2___closed__1; +x_28 = l_Fin_reduceBin___lambda__1___closed__1; lean_ctor_set(x_24, 0, x_28); return x_24; } @@ -3054,7 +2259,7 @@ lean_object* x_29; lean_object* x_30; lean_object* x_31; x_29 = lean_ctor_get(x_24, 1); lean_inc(x_29); lean_dec(x_24); -x_30 = l_Fin_reduceBin___lambda__2___closed__1; +x_30 = l_Fin_reduceBin___lambda__1___closed__1; x_31 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_31, 0, x_30); lean_ctor_set(x_31, 1, x_29); @@ -3067,165 +2272,189 @@ uint8_t x_32; x_32 = !lean_is_exclusive(x_24); if (x_32 == 0) { -lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; uint8_t x_38; -x_33 = lean_ctor_get(x_24, 1); -x_34 = lean_ctor_get(x_24, 0); -lean_dec(x_34); -x_35 = lean_ctor_get(x_25, 0); +lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; uint8_t x_37; +x_33 = lean_ctor_get(x_24, 0); +lean_dec(x_33); +x_34 = lean_ctor_get(x_25, 0); +lean_inc(x_34); +lean_dec(x_25); +x_35 = lean_ctor_get(x_22, 0); lean_inc(x_35); -lean_dec(x_25); -x_36 = lean_ctor_get(x_22, 1); +x_36 = lean_ctor_get(x_34, 0); lean_inc(x_36); -x_37 = lean_ctor_get(x_35, 1); -lean_inc(x_37); -x_38 = lean_nat_dec_eq(x_36, x_37); -lean_dec(x_37); +x_37 = lean_nat_dec_eq(x_35, x_36); lean_dec(x_36); -if (x_38 == 0) +if (x_37 == 0) { -lean_object* x_39; +lean_object* x_38; lean_dec(x_35); +lean_dec(x_34); lean_dec(x_22); -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_39 = l_Fin_reduceBin___lambda__2___closed__1; -lean_ctor_set(x_24, 0, x_39); +x_38 = l_Fin_reduceBin___lambda__1___closed__1; +lean_ctor_set(x_24, 0, x_38); return x_24; } else { -lean_object* x_40; lean_object* x_41; -lean_free_object(x_24); -x_40 = lean_box(0); -x_41 = l_Fin_reduceMul___lambda__1(x_22, x_35, x_40, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_33); -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); +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; uint32_t x_54; uint8_t x_55; lean_object* x_56; lean_object* x_57; +x_39 = lean_ctor_get(x_22, 1); +lean_inc(x_39); +lean_dec(x_22); +x_40 = lean_ctor_get(x_34, 1); +lean_inc(x_40); +lean_dec(x_34); +x_41 = l_Fin_mul(x_35, x_39, x_40); +lean_dec(x_40); +lean_dec(x_39); +x_42 = l_Lean_mkRawNatLit(x_41); +lean_inc(x_35); +x_43 = l_Lean_mkNatLit(x_35); +x_44 = l_Fin_reduceBin___lambda__1___closed__10; +x_45 = l_Lean_Expr_app___override(x_44, x_43); +x_46 = lean_unsigned_to_nat(1u); +x_47 = lean_nat_sub(x_35, x_46); lean_dec(x_35); -return x_41; -} -} -else -{ -lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; uint8_t x_46; -x_42 = lean_ctor_get(x_24, 1); +x_48 = l_Lean_mkNatLit(x_47); +x_49 = l_Fin_reduceBin___lambda__1___closed__13; lean_inc(x_42); +x_50 = l_Lean_mkAppB(x_49, x_48, x_42); +x_51 = l_Fin_reduceBin___lambda__1___closed__7; +x_52 = l_Lean_mkApp3(x_51, x_45, x_42, x_50); +x_53 = lean_box(0); +x_54 = 0; +x_55 = 1; +x_56 = lean_alloc_ctor(0, 2, 5); +lean_ctor_set(x_56, 0, x_52); +lean_ctor_set(x_56, 1, x_53); +lean_ctor_set_uint32(x_56, sizeof(void*)*2, x_54); +lean_ctor_set_uint8(x_56, sizeof(void*)*2 + 4, x_55); +x_57 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_57, 0, x_56); +lean_ctor_set(x_24, 0, x_57); +return x_24; +} +} +else +{ +lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; uint8_t x_62; +x_58 = lean_ctor_get(x_24, 1); +lean_inc(x_58); lean_dec(x_24); -x_43 = lean_ctor_get(x_25, 0); -lean_inc(x_43); +x_59 = lean_ctor_get(x_25, 0); +lean_inc(x_59); lean_dec(x_25); -x_44 = lean_ctor_get(x_22, 1); -lean_inc(x_44); -x_45 = lean_ctor_get(x_43, 1); -lean_inc(x_45); -x_46 = lean_nat_dec_eq(x_44, x_45); -lean_dec(x_45); -lean_dec(x_44); -if (x_46 == 0) +x_60 = lean_ctor_get(x_22, 0); +lean_inc(x_60); +x_61 = lean_ctor_get(x_59, 0); +lean_inc(x_61); +x_62 = lean_nat_dec_eq(x_60, x_61); +lean_dec(x_61); +if (x_62 == 0) { -lean_object* x_47; lean_object* x_48; -lean_dec(x_43); +lean_object* x_63; lean_object* x_64; +lean_dec(x_60); +lean_dec(x_59); lean_dec(x_22); -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_47 = l_Fin_reduceBin___lambda__2___closed__1; -x_48 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_48, 0, x_47); -lean_ctor_set(x_48, 1, x_42); -return x_48; +x_63 = l_Fin_reduceBin___lambda__1___closed__1; +x_64 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_64, 0, x_63); +lean_ctor_set(x_64, 1, x_58); +return x_64; } else { -lean_object* x_49; lean_object* x_50; -x_49 = lean_box(0); -x_50 = l_Fin_reduceMul___lambda__1(x_22, x_43, x_49, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_42); -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); -lean_dec(x_43); -return x_50; +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; uint32_t x_80; uint8_t x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; +x_65 = lean_ctor_get(x_22, 1); +lean_inc(x_65); +lean_dec(x_22); +x_66 = lean_ctor_get(x_59, 1); +lean_inc(x_66); +lean_dec(x_59); +x_67 = l_Fin_mul(x_60, x_65, x_66); +lean_dec(x_66); +lean_dec(x_65); +x_68 = l_Lean_mkRawNatLit(x_67); +lean_inc(x_60); +x_69 = l_Lean_mkNatLit(x_60); +x_70 = l_Fin_reduceBin___lambda__1___closed__10; +x_71 = l_Lean_Expr_app___override(x_70, x_69); +x_72 = lean_unsigned_to_nat(1u); +x_73 = lean_nat_sub(x_60, x_72); +lean_dec(x_60); +x_74 = l_Lean_mkNatLit(x_73); +x_75 = l_Fin_reduceBin___lambda__1___closed__13; +lean_inc(x_68); +x_76 = l_Lean_mkAppB(x_75, x_74, x_68); +x_77 = l_Fin_reduceBin___lambda__1___closed__7; +x_78 = l_Lean_mkApp3(x_77, x_71, x_68, x_76); +x_79 = lean_box(0); +x_80 = 0; +x_81 = 1; +x_82 = lean_alloc_ctor(0, 2, 5); +lean_ctor_set(x_82, 0, x_78); +lean_ctor_set(x_82, 1, x_79); +lean_ctor_set_uint32(x_82, sizeof(void*)*2, x_80); +lean_ctor_set_uint8(x_82, sizeof(void*)*2 + 4, x_81); +x_83 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_83, 0, x_82); +x_84 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_84, 0, x_83); +lean_ctor_set(x_84, 1, x_58); +return x_84; } } } } else { -uint8_t x_51; +uint8_t x_85; lean_dec(x_22); -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_51 = !lean_is_exclusive(x_24); -if (x_51 == 0) +x_85 = !lean_is_exclusive(x_24); +if (x_85 == 0) { return x_24; } else { -lean_object* x_52; lean_object* x_53; lean_object* x_54; -x_52 = lean_ctor_get(x_24, 0); -x_53 = lean_ctor_get(x_24, 1); -lean_inc(x_53); -lean_inc(x_52); +lean_object* x_86; lean_object* x_87; lean_object* x_88; +x_86 = lean_ctor_get(x_24, 0); +x_87 = lean_ctor_get(x_24, 1); +lean_inc(x_87); +lean_inc(x_86); lean_dec(x_24); -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; +x_88 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_88, 0, x_86); +lean_ctor_set(x_88, 1, x_87); +return x_88; } } } } else { -uint8_t x_55; +uint8_t x_89; 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); lean_dec(x_1); -x_55 = !lean_is_exclusive(x_13); -if (x_55 == 0) +x_89 = !lean_is_exclusive(x_13); +if (x_89 == 0) { return x_13; } else { -lean_object* x_56; lean_object* x_57; lean_object* x_58; -x_56 = lean_ctor_get(x_13, 0); -x_57 = lean_ctor_get(x_13, 1); -lean_inc(x_57); -lean_inc(x_56); +lean_object* x_90; lean_object* x_91; lean_object* x_92; +x_90 = lean_ctor_get(x_13, 0); +x_91 = lean_ctor_get(x_13, 1); +lean_inc(x_91); +lean_inc(x_90); lean_dec(x_13); -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; +x_92 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_92, 0, x_90); +lean_ctor_set(x_92, 1, x_91); +return x_92; } } } @@ -3274,7 +2503,7 @@ lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_13 = l_Fin_reduceBin___lambda__2___closed__1; +x_13 = l_Fin_reduceBin___lambda__1___closed__1; x_14 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_14, 0, x_13); lean_ctor_set(x_14, 1, x_9); @@ -3284,29 +2513,27 @@ else { lean_object* x_15; lean_object* x_16; x_15 = lean_box(0); -x_16 = l_Fin_reduceMul___lambda__2(x_1, x_15, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_16 = l_Fin_reduceMul___lambda__1(x_1, x_15, 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_16; } } } -LEAN_EXPORT lean_object* l_Fin_reduceMul___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, lean_object* x_11) { +LEAN_EXPORT lean_object* l_Fin_reduceMul___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_12; -x_12 = l_Fin_reduceMul___lambda__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); +lean_object* x_11; +x_11 = l_Fin_reduceMul___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_12; +return x_11; } } -static lean_object* _init_l___regBuiltin_Fin_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_766____closed__1() { +static lean_object* _init_l___regBuiltin_Fin_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_637____closed__1() { _start: { lean_object* x_1; @@ -3314,17 +2541,17 @@ x_1 = lean_mk_string_from_bytes("reduceMul", 9); return x_1; } } -static lean_object* _init_l___regBuiltin_Fin_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_766____closed__2() { +static lean_object* _init_l___regBuiltin_Fin_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_637____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Fin_fromExpr_x3f___closed__4; -x_2 = l___regBuiltin_Fin_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_766____closed__1; +x_1 = l_Fin_reduceBin___lambda__1___closed__8; +x_2 = l___regBuiltin_Fin_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_637____closed__1; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Fin_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_766____closed__3() { +static lean_object* _init_l___regBuiltin_Fin_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_637____closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -3336,107 +2563,107 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Fin_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_766____closed__4() { +static lean_object* _init_l___regBuiltin_Fin_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_637____closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_725____closed__5; -x_2 = l___regBuiltin_Fin_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_766____closed__3; +x_1 = l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_595____closed__5; +x_2 = l___regBuiltin_Fin_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_637____closed__3; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Fin_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_766____closed__5() { +static lean_object* _init_l___regBuiltin_Fin_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_637____closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Fin_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_766____closed__4; -x_2 = l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_725____closed__4; +x_1 = l___regBuiltin_Fin_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_637____closed__4; +x_2 = l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_595____closed__4; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Fin_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_766____closed__6() { +static lean_object* _init_l___regBuiltin_Fin_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_637____closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Fin_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_766____closed__5; +x_1 = l___regBuiltin_Fin_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_637____closed__5; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Fin_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_766____closed__7() { +static lean_object* _init_l___regBuiltin_Fin_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_637____closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Fin_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_766____closed__6; -x_2 = l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_725____closed__4; +x_1 = l___regBuiltin_Fin_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_637____closed__6; +x_2 = l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_595____closed__4; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Fin_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_766____closed__8() { +static lean_object* _init_l___regBuiltin_Fin_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_637____closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Fin_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_766____closed__7; +x_1 = l___regBuiltin_Fin_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_637____closed__7; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Fin_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_766____closed__9() { +static lean_object* _init_l___regBuiltin_Fin_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_637____closed__9() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Fin_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_766____closed__8; -x_2 = l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_725____closed__4; +x_1 = l___regBuiltin_Fin_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_637____closed__8; +x_2 = l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_595____closed__4; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Fin_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_766____closed__10() { +static lean_object* _init_l___regBuiltin_Fin_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_637____closed__10() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Fin_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_766____closed__9; +x_1 = l___regBuiltin_Fin_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_637____closed__9; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Fin_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_766____closed__11() { +static lean_object* _init_l___regBuiltin_Fin_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_637____closed__11() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Fin_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_766____closed__10; +x_1 = l___regBuiltin_Fin_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_637____closed__10; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Fin_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_766____closed__12() { +static lean_object* _init_l___regBuiltin_Fin_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_637____closed__12() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Fin_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_766____closed__11; +x_1 = l___regBuiltin_Fin_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_637____closed__11; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Fin_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_766____closed__13() { +static lean_object* _init_l___regBuiltin_Fin_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_637____closed__13() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Fin_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_766____closed__12; +x_1 = l___regBuiltin_Fin_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_637____closed__12; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Fin_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_766____closed__14() { +static lean_object* _init_l___regBuiltin_Fin_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_637____closed__14() { _start: { lean_object* x_1; @@ -3444,115 +2671,45 @@ x_1 = lean_alloc_closure((void*)(l_Fin_reduceMul), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_Fin_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_766_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Fin_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_637_(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_Fin_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_766____closed__2; -x_3 = l___regBuiltin_Fin_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_766____closed__13; -x_4 = l___regBuiltin_Fin_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_766____closed__14; +x_2 = l___regBuiltin_Fin_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_637____closed__2; +x_3 = l___regBuiltin_Fin_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_637____closed__13; +x_4 = l___regBuiltin_Fin_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_637____closed__14; x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); return x_5; } } -LEAN_EXPORT lean_object* l___regBuiltin_Fin_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_768_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Fin_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_639_(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_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_727____closed__1; -x_3 = l___regBuiltin_Fin_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_766____closed__2; +x_2 = l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_597____closed__1; +x_3 = l___regBuiltin_Fin_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_637____closed__2; x_4 = 1; -x_5 = l___regBuiltin_Fin_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_766____closed__14; +x_5 = l___regBuiltin_Fin_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_637____closed__14; 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_Fin_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_770_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Fin_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_641_(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_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_729____closed__1; -x_3 = l___regBuiltin_Fin_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_766____closed__2; +x_2 = l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_599____closed__1; +x_3 = l___regBuiltin_Fin_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_637____closed__2; x_4 = 1; -x_5 = l___regBuiltin_Fin_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_766____closed__14; +x_5 = l___regBuiltin_Fin_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_637____closed__14; 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_Fin_reduceSub___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, lean_object* x_11) { -_start: -{ -uint8_t x_12; -x_12 = !lean_is_exclusive(x_1); -if (x_12 == 0) -{ -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; uint32_t x_20; uint8_t x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; -x_13 = lean_ctor_get(x_1, 1); -x_14 = lean_ctor_get(x_1, 2); -x_15 = lean_ctor_get(x_2, 2); -x_16 = lean_nat_sub(x_14, x_15); -lean_dec(x_14); -x_17 = lean_nat_mod(x_16, x_13); -lean_dec(x_16); -lean_ctor_set(x_1, 2, x_17); -x_18 = l_Fin_Value_toExpr(x_1); -x_19 = lean_box(0); -x_20 = 0; -x_21 = 1; -x_22 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_22, 0, x_18); -lean_ctor_set(x_22, 1, x_19); -lean_ctor_set_uint32(x_22, sizeof(void*)*2, x_20); -lean_ctor_set_uint8(x_22, sizeof(void*)*2 + 4, x_21); -x_23 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_23, 0, x_22); -x_24 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_24, 0, x_23); -lean_ctor_set(x_24, 1, x_11); -return x_24; -} -else -{ -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; uint32_t x_34; uint8_t x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; -x_25 = lean_ctor_get(x_1, 0); -x_26 = lean_ctor_get(x_1, 1); -x_27 = lean_ctor_get(x_1, 2); -lean_inc(x_27); -lean_inc(x_26); -lean_inc(x_25); -lean_dec(x_1); -x_28 = lean_ctor_get(x_2, 2); -x_29 = lean_nat_sub(x_27, x_28); -lean_dec(x_27); -x_30 = lean_nat_mod(x_29, x_26); -lean_dec(x_29); -x_31 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_31, 0, x_25); -lean_ctor_set(x_31, 1, x_26); -lean_ctor_set(x_31, 2, x_30); -x_32 = l_Fin_Value_toExpr(x_31); -x_33 = lean_box(0); -x_34 = 0; -x_35 = 1; -x_36 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_36, 0, x_32); -lean_ctor_set(x_36, 1, x_33); -lean_ctor_set_uint32(x_36, sizeof(void*)*2, x_34); -lean_ctor_set_uint8(x_36, sizeof(void*)*2 + 4, x_35); -x_37 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_37, 0, x_36); -x_38 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_38, 0, x_37); -lean_ctor_set(x_38, 1, x_11); -return x_38; -} -} -} -LEAN_EXPORT lean_object* l_Fin_reduceSub___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_EXPORT lean_object* l_Fin_reduceSub___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; -lean_dec(x_2); lean_inc(x_1); x_11 = l_Lean_Expr_appFn_x21(x_1); x_12 = l_Lean_Expr_appArg_x21(x_11); @@ -3562,6 +2719,7 @@ lean_inc(x_8); lean_inc(x_7); lean_inc(x_6); x_13 = l_Fin_fromExpr_x3f(x_12, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_12); if (lean_obj_tag(x_13) == 0) { lean_object* x_14; @@ -3574,9 +2732,6 @@ 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); lean_dec(x_1); x_15 = !lean_is_exclusive(x_13); if (x_15 == 0) @@ -3584,7 +2739,7 @@ if (x_15 == 0) lean_object* x_16; lean_object* x_17; x_16 = lean_ctor_get(x_13, 0); lean_dec(x_16); -x_17 = l_Fin_reduceBin___lambda__2___closed__1; +x_17 = l_Fin_reduceBin___lambda__1___closed__1; lean_ctor_set(x_13, 0, x_17); return x_13; } @@ -3594,7 +2749,7 @@ lean_object* x_18; lean_object* x_19; lean_object* x_20; x_18 = lean_ctor_get(x_13, 1); lean_inc(x_18); lean_dec(x_13); -x_19 = l_Fin_reduceBin___lambda__2___closed__1; +x_19 = l_Fin_reduceBin___lambda__1___closed__1; x_20 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_20, 0, x_19); lean_ctor_set(x_20, 1, x_18); @@ -3612,11 +2767,8 @@ lean_inc(x_22); lean_dec(x_14); x_23 = l_Lean_Expr_appArg_x21(x_1); lean_dec(x_1); -lean_inc(x_9); -lean_inc(x_8); -lean_inc(x_7); -lean_inc(x_6); x_24 = l_Fin_fromExpr_x3f(x_23, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_21); +lean_dec(x_23); if (lean_obj_tag(x_24) == 0) { lean_object* x_25; @@ -3626,20 +2778,13 @@ if (lean_obj_tag(x_25) == 0) { uint8_t x_26; lean_dec(x_22); -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_26 = !lean_is_exclusive(x_24); if (x_26 == 0) { lean_object* x_27; lean_object* x_28; x_27 = lean_ctor_get(x_24, 0); lean_dec(x_27); -x_28 = l_Fin_reduceBin___lambda__2___closed__1; +x_28 = l_Fin_reduceBin___lambda__1___closed__1; lean_ctor_set(x_24, 0, x_28); return x_24; } @@ -3649,7 +2794,7 @@ lean_object* x_29; lean_object* x_30; lean_object* x_31; x_29 = lean_ctor_get(x_24, 1); lean_inc(x_29); lean_dec(x_24); -x_30 = l_Fin_reduceBin___lambda__2___closed__1; +x_30 = l_Fin_reduceBin___lambda__1___closed__1; x_31 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_31, 0, x_30); lean_ctor_set(x_31, 1, x_29); @@ -3662,165 +2807,189 @@ uint8_t x_32; x_32 = !lean_is_exclusive(x_24); if (x_32 == 0) { -lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; uint8_t x_38; -x_33 = lean_ctor_get(x_24, 1); -x_34 = lean_ctor_get(x_24, 0); -lean_dec(x_34); -x_35 = lean_ctor_get(x_25, 0); +lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; uint8_t x_37; +x_33 = lean_ctor_get(x_24, 0); +lean_dec(x_33); +x_34 = lean_ctor_get(x_25, 0); +lean_inc(x_34); +lean_dec(x_25); +x_35 = lean_ctor_get(x_22, 0); lean_inc(x_35); -lean_dec(x_25); -x_36 = lean_ctor_get(x_22, 1); +x_36 = lean_ctor_get(x_34, 0); lean_inc(x_36); -x_37 = lean_ctor_get(x_35, 1); -lean_inc(x_37); -x_38 = lean_nat_dec_eq(x_36, x_37); -lean_dec(x_37); +x_37 = lean_nat_dec_eq(x_35, x_36); lean_dec(x_36); -if (x_38 == 0) +if (x_37 == 0) { -lean_object* x_39; +lean_object* x_38; lean_dec(x_35); +lean_dec(x_34); lean_dec(x_22); -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_39 = l_Fin_reduceBin___lambda__2___closed__1; -lean_ctor_set(x_24, 0, x_39); +x_38 = l_Fin_reduceBin___lambda__1___closed__1; +lean_ctor_set(x_24, 0, x_38); return x_24; } else { -lean_object* x_40; lean_object* x_41; -lean_free_object(x_24); -x_40 = lean_box(0); -x_41 = l_Fin_reduceSub___lambda__1(x_22, x_35, x_40, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_33); -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); +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; uint32_t x_54; uint8_t x_55; lean_object* x_56; lean_object* x_57; +x_39 = lean_ctor_get(x_22, 1); +lean_inc(x_39); +lean_dec(x_22); +x_40 = lean_ctor_get(x_34, 1); +lean_inc(x_40); +lean_dec(x_34); +x_41 = l_Fin_sub(x_35, x_39, x_40); +lean_dec(x_40); +lean_dec(x_39); +x_42 = l_Lean_mkRawNatLit(x_41); +lean_inc(x_35); +x_43 = l_Lean_mkNatLit(x_35); +x_44 = l_Fin_reduceBin___lambda__1___closed__10; +x_45 = l_Lean_Expr_app___override(x_44, x_43); +x_46 = lean_unsigned_to_nat(1u); +x_47 = lean_nat_sub(x_35, x_46); lean_dec(x_35); -return x_41; -} -} -else -{ -lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; uint8_t x_46; -x_42 = lean_ctor_get(x_24, 1); +x_48 = l_Lean_mkNatLit(x_47); +x_49 = l_Fin_reduceBin___lambda__1___closed__13; lean_inc(x_42); +x_50 = l_Lean_mkAppB(x_49, x_48, x_42); +x_51 = l_Fin_reduceBin___lambda__1___closed__7; +x_52 = l_Lean_mkApp3(x_51, x_45, x_42, x_50); +x_53 = lean_box(0); +x_54 = 0; +x_55 = 1; +x_56 = lean_alloc_ctor(0, 2, 5); +lean_ctor_set(x_56, 0, x_52); +lean_ctor_set(x_56, 1, x_53); +lean_ctor_set_uint32(x_56, sizeof(void*)*2, x_54); +lean_ctor_set_uint8(x_56, sizeof(void*)*2 + 4, x_55); +x_57 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_57, 0, x_56); +lean_ctor_set(x_24, 0, x_57); +return x_24; +} +} +else +{ +lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; uint8_t x_62; +x_58 = lean_ctor_get(x_24, 1); +lean_inc(x_58); lean_dec(x_24); -x_43 = lean_ctor_get(x_25, 0); -lean_inc(x_43); +x_59 = lean_ctor_get(x_25, 0); +lean_inc(x_59); lean_dec(x_25); -x_44 = lean_ctor_get(x_22, 1); -lean_inc(x_44); -x_45 = lean_ctor_get(x_43, 1); -lean_inc(x_45); -x_46 = lean_nat_dec_eq(x_44, x_45); -lean_dec(x_45); -lean_dec(x_44); -if (x_46 == 0) +x_60 = lean_ctor_get(x_22, 0); +lean_inc(x_60); +x_61 = lean_ctor_get(x_59, 0); +lean_inc(x_61); +x_62 = lean_nat_dec_eq(x_60, x_61); +lean_dec(x_61); +if (x_62 == 0) { -lean_object* x_47; lean_object* x_48; -lean_dec(x_43); +lean_object* x_63; lean_object* x_64; +lean_dec(x_60); +lean_dec(x_59); lean_dec(x_22); -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_47 = l_Fin_reduceBin___lambda__2___closed__1; -x_48 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_48, 0, x_47); -lean_ctor_set(x_48, 1, x_42); -return x_48; +x_63 = l_Fin_reduceBin___lambda__1___closed__1; +x_64 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_64, 0, x_63); +lean_ctor_set(x_64, 1, x_58); +return x_64; } else { -lean_object* x_49; lean_object* x_50; -x_49 = lean_box(0); -x_50 = l_Fin_reduceSub___lambda__1(x_22, x_43, x_49, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_42); -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); -lean_dec(x_43); -return x_50; +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; uint32_t x_80; uint8_t x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; +x_65 = lean_ctor_get(x_22, 1); +lean_inc(x_65); +lean_dec(x_22); +x_66 = lean_ctor_get(x_59, 1); +lean_inc(x_66); +lean_dec(x_59); +x_67 = l_Fin_sub(x_60, x_65, x_66); +lean_dec(x_66); +lean_dec(x_65); +x_68 = l_Lean_mkRawNatLit(x_67); +lean_inc(x_60); +x_69 = l_Lean_mkNatLit(x_60); +x_70 = l_Fin_reduceBin___lambda__1___closed__10; +x_71 = l_Lean_Expr_app___override(x_70, x_69); +x_72 = lean_unsigned_to_nat(1u); +x_73 = lean_nat_sub(x_60, x_72); +lean_dec(x_60); +x_74 = l_Lean_mkNatLit(x_73); +x_75 = l_Fin_reduceBin___lambda__1___closed__13; +lean_inc(x_68); +x_76 = l_Lean_mkAppB(x_75, x_74, x_68); +x_77 = l_Fin_reduceBin___lambda__1___closed__7; +x_78 = l_Lean_mkApp3(x_77, x_71, x_68, x_76); +x_79 = lean_box(0); +x_80 = 0; +x_81 = 1; +x_82 = lean_alloc_ctor(0, 2, 5); +lean_ctor_set(x_82, 0, x_78); +lean_ctor_set(x_82, 1, x_79); +lean_ctor_set_uint32(x_82, sizeof(void*)*2, x_80); +lean_ctor_set_uint8(x_82, sizeof(void*)*2 + 4, x_81); +x_83 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_83, 0, x_82); +x_84 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_84, 0, x_83); +lean_ctor_set(x_84, 1, x_58); +return x_84; } } } } else { -uint8_t x_51; +uint8_t x_85; lean_dec(x_22); -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_51 = !lean_is_exclusive(x_24); -if (x_51 == 0) +x_85 = !lean_is_exclusive(x_24); +if (x_85 == 0) { return x_24; } else { -lean_object* x_52; lean_object* x_53; lean_object* x_54; -x_52 = lean_ctor_get(x_24, 0); -x_53 = lean_ctor_get(x_24, 1); -lean_inc(x_53); -lean_inc(x_52); +lean_object* x_86; lean_object* x_87; lean_object* x_88; +x_86 = lean_ctor_get(x_24, 0); +x_87 = lean_ctor_get(x_24, 1); +lean_inc(x_87); +lean_inc(x_86); lean_dec(x_24); -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; +x_88 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_88, 0, x_86); +lean_ctor_set(x_88, 1, x_87); +return x_88; } } } } else { -uint8_t x_55; +uint8_t x_89; 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); lean_dec(x_1); -x_55 = !lean_is_exclusive(x_13); -if (x_55 == 0) +x_89 = !lean_is_exclusive(x_13); +if (x_89 == 0) { return x_13; } else { -lean_object* x_56; lean_object* x_57; lean_object* x_58; -x_56 = lean_ctor_get(x_13, 0); -x_57 = lean_ctor_get(x_13, 1); -lean_inc(x_57); -lean_inc(x_56); +lean_object* x_90; lean_object* x_91; lean_object* x_92; +x_90 = lean_ctor_get(x_13, 0); +x_91 = lean_ctor_get(x_13, 1); +lean_inc(x_91); +lean_inc(x_90); lean_dec(x_13); -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; +x_92 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_92, 0, x_90); +lean_ctor_set(x_92, 1, x_91); +return x_92; } } } @@ -3869,7 +3038,7 @@ lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_13 = l_Fin_reduceBin___lambda__2___closed__1; +x_13 = l_Fin_reduceBin___lambda__1___closed__1; x_14 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_14, 0, x_13); lean_ctor_set(x_14, 1, x_9); @@ -3879,29 +3048,27 @@ else { lean_object* x_15; lean_object* x_16; x_15 = lean_box(0); -x_16 = l_Fin_reduceSub___lambda__2(x_1, x_15, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_16 = l_Fin_reduceSub___lambda__1(x_1, x_15, 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_16; } } } -LEAN_EXPORT lean_object* l_Fin_reduceSub___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, lean_object* x_11) { +LEAN_EXPORT lean_object* l_Fin_reduceSub___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_12; -x_12 = l_Fin_reduceSub___lambda__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); +lean_object* x_11; +x_11 = l_Fin_reduceSub___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_12; +return x_11; } } -static lean_object* _init_l___regBuiltin_Fin_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_807____closed__1() { +static lean_object* _init_l___regBuiltin_Fin_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_679____closed__1() { _start: { lean_object* x_1; @@ -3909,17 +3076,17 @@ x_1 = lean_mk_string_from_bytes("reduceSub", 9); return x_1; } } -static lean_object* _init_l___regBuiltin_Fin_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_807____closed__2() { +static lean_object* _init_l___regBuiltin_Fin_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_679____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Fin_fromExpr_x3f___closed__4; -x_2 = l___regBuiltin_Fin_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_807____closed__1; +x_1 = l_Fin_reduceBin___lambda__1___closed__8; +x_2 = l___regBuiltin_Fin_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_679____closed__1; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Fin_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_807____closed__3() { +static lean_object* _init_l___regBuiltin_Fin_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_679____closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -3931,107 +3098,107 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Fin_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_807____closed__4() { +static lean_object* _init_l___regBuiltin_Fin_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_679____closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_725____closed__5; -x_2 = l___regBuiltin_Fin_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_807____closed__3; +x_1 = l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_595____closed__5; +x_2 = l___regBuiltin_Fin_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_679____closed__3; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Fin_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_807____closed__5() { +static lean_object* _init_l___regBuiltin_Fin_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_679____closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Fin_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_807____closed__4; -x_2 = l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_725____closed__4; +x_1 = l___regBuiltin_Fin_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_679____closed__4; +x_2 = l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_595____closed__4; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Fin_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_807____closed__6() { +static lean_object* _init_l___regBuiltin_Fin_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_679____closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Fin_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_807____closed__5; +x_1 = l___regBuiltin_Fin_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_679____closed__5; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Fin_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_807____closed__7() { +static lean_object* _init_l___regBuiltin_Fin_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_679____closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Fin_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_807____closed__6; -x_2 = l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_725____closed__4; +x_1 = l___regBuiltin_Fin_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_679____closed__6; +x_2 = l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_595____closed__4; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Fin_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_807____closed__8() { +static lean_object* _init_l___regBuiltin_Fin_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_679____closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Fin_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_807____closed__7; +x_1 = l___regBuiltin_Fin_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_679____closed__7; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Fin_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_807____closed__9() { +static lean_object* _init_l___regBuiltin_Fin_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_679____closed__9() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Fin_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_807____closed__8; -x_2 = l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_725____closed__4; +x_1 = l___regBuiltin_Fin_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_679____closed__8; +x_2 = l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_595____closed__4; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Fin_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_807____closed__10() { +static lean_object* _init_l___regBuiltin_Fin_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_679____closed__10() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Fin_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_807____closed__9; +x_1 = l___regBuiltin_Fin_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_679____closed__9; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Fin_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_807____closed__11() { +static lean_object* _init_l___regBuiltin_Fin_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_679____closed__11() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Fin_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_807____closed__10; +x_1 = l___regBuiltin_Fin_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_679____closed__10; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Fin_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_807____closed__12() { +static lean_object* _init_l___regBuiltin_Fin_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_679____closed__12() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Fin_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_807____closed__11; +x_1 = l___regBuiltin_Fin_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_679____closed__11; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Fin_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_807____closed__13() { +static lean_object* _init_l___regBuiltin_Fin_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_679____closed__13() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Fin_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_807____closed__12; +x_1 = l___regBuiltin_Fin_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_679____closed__12; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Fin_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_807____closed__14() { +static lean_object* _init_l___regBuiltin_Fin_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_679____closed__14() { _start: { lean_object* x_1; @@ -4039,115 +3206,45 @@ x_1 = lean_alloc_closure((void*)(l_Fin_reduceSub), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_Fin_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_807_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Fin_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_679_(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_Fin_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_807____closed__2; -x_3 = l___regBuiltin_Fin_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_807____closed__13; -x_4 = l___regBuiltin_Fin_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_807____closed__14; +x_2 = l___regBuiltin_Fin_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_679____closed__2; +x_3 = l___regBuiltin_Fin_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_679____closed__13; +x_4 = l___regBuiltin_Fin_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_679____closed__14; x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); return x_5; } } -LEAN_EXPORT lean_object* l___regBuiltin_Fin_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_809_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Fin_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_681_(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_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_727____closed__1; -x_3 = l___regBuiltin_Fin_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_807____closed__2; +x_2 = l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_597____closed__1; +x_3 = l___regBuiltin_Fin_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_679____closed__2; x_4 = 1; -x_5 = l___regBuiltin_Fin_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_807____closed__14; +x_5 = l___regBuiltin_Fin_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_679____closed__14; 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_Fin_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_811_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Fin_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_683_(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_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_729____closed__1; -x_3 = l___regBuiltin_Fin_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_807____closed__2; +x_2 = l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_599____closed__1; +x_3 = l___regBuiltin_Fin_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_679____closed__2; x_4 = 1; -x_5 = l___regBuiltin_Fin_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_807____closed__14; +x_5 = l___regBuiltin_Fin_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_679____closed__14; 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_Fin_reduceDiv___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, lean_object* x_11) { -_start: -{ -uint8_t x_12; -x_12 = !lean_is_exclusive(x_1); -if (x_12 == 0) -{ -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; uint32_t x_20; uint8_t x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; -x_13 = lean_ctor_get(x_1, 1); -x_14 = lean_ctor_get(x_1, 2); -x_15 = lean_ctor_get(x_2, 2); -x_16 = lean_nat_div(x_14, x_15); -lean_dec(x_14); -x_17 = lean_nat_mod(x_16, x_13); -lean_dec(x_16); -lean_ctor_set(x_1, 2, x_17); -x_18 = l_Fin_Value_toExpr(x_1); -x_19 = lean_box(0); -x_20 = 0; -x_21 = 1; -x_22 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_22, 0, x_18); -lean_ctor_set(x_22, 1, x_19); -lean_ctor_set_uint32(x_22, sizeof(void*)*2, x_20); -lean_ctor_set_uint8(x_22, sizeof(void*)*2 + 4, x_21); -x_23 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_23, 0, x_22); -x_24 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_24, 0, x_23); -lean_ctor_set(x_24, 1, x_11); -return x_24; -} -else -{ -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; uint32_t x_34; uint8_t x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; -x_25 = lean_ctor_get(x_1, 0); -x_26 = lean_ctor_get(x_1, 1); -x_27 = lean_ctor_get(x_1, 2); -lean_inc(x_27); -lean_inc(x_26); -lean_inc(x_25); -lean_dec(x_1); -x_28 = lean_ctor_get(x_2, 2); -x_29 = lean_nat_div(x_27, x_28); -lean_dec(x_27); -x_30 = lean_nat_mod(x_29, x_26); -lean_dec(x_29); -x_31 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_31, 0, x_25); -lean_ctor_set(x_31, 1, x_26); -lean_ctor_set(x_31, 2, x_30); -x_32 = l_Fin_Value_toExpr(x_31); -x_33 = lean_box(0); -x_34 = 0; -x_35 = 1; -x_36 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_36, 0, x_32); -lean_ctor_set(x_36, 1, x_33); -lean_ctor_set_uint32(x_36, sizeof(void*)*2, x_34); -lean_ctor_set_uint8(x_36, sizeof(void*)*2 + 4, x_35); -x_37 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_37, 0, x_36); -x_38 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_38, 0, x_37); -lean_ctor_set(x_38, 1, x_11); -return x_38; -} -} -} -LEAN_EXPORT lean_object* l_Fin_reduceDiv___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_EXPORT lean_object* l_Fin_reduceDiv___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; -lean_dec(x_2); lean_inc(x_1); x_11 = l_Lean_Expr_appFn_x21(x_1); x_12 = l_Lean_Expr_appArg_x21(x_11); @@ -4157,6 +3254,7 @@ lean_inc(x_8); lean_inc(x_7); lean_inc(x_6); x_13 = l_Fin_fromExpr_x3f(x_12, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_12); if (lean_obj_tag(x_13) == 0) { lean_object* x_14; @@ -4169,9 +3267,6 @@ 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); lean_dec(x_1); x_15 = !lean_is_exclusive(x_13); if (x_15 == 0) @@ -4179,7 +3274,7 @@ if (x_15 == 0) lean_object* x_16; lean_object* x_17; x_16 = lean_ctor_get(x_13, 0); lean_dec(x_16); -x_17 = l_Fin_reduceBin___lambda__2___closed__1; +x_17 = l_Fin_reduceBin___lambda__1___closed__1; lean_ctor_set(x_13, 0, x_17); return x_13; } @@ -4189,7 +3284,7 @@ lean_object* x_18; lean_object* x_19; lean_object* x_20; x_18 = lean_ctor_get(x_13, 1); lean_inc(x_18); lean_dec(x_13); -x_19 = l_Fin_reduceBin___lambda__2___closed__1; +x_19 = l_Fin_reduceBin___lambda__1___closed__1; x_20 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_20, 0, x_19); lean_ctor_set(x_20, 1, x_18); @@ -4207,11 +3302,8 @@ lean_inc(x_22); lean_dec(x_14); x_23 = l_Lean_Expr_appArg_x21(x_1); lean_dec(x_1); -lean_inc(x_9); -lean_inc(x_8); -lean_inc(x_7); -lean_inc(x_6); x_24 = l_Fin_fromExpr_x3f(x_23, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_21); +lean_dec(x_23); if (lean_obj_tag(x_24) == 0) { lean_object* x_25; @@ -4221,20 +3313,13 @@ if (lean_obj_tag(x_25) == 0) { uint8_t x_26; lean_dec(x_22); -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_26 = !lean_is_exclusive(x_24); if (x_26 == 0) { lean_object* x_27; lean_object* x_28; x_27 = lean_ctor_get(x_24, 0); lean_dec(x_27); -x_28 = l_Fin_reduceBin___lambda__2___closed__1; +x_28 = l_Fin_reduceBin___lambda__1___closed__1; lean_ctor_set(x_24, 0, x_28); return x_24; } @@ -4244,7 +3329,7 @@ lean_object* x_29; lean_object* x_30; lean_object* x_31; x_29 = lean_ctor_get(x_24, 1); lean_inc(x_29); lean_dec(x_24); -x_30 = l_Fin_reduceBin___lambda__2___closed__1; +x_30 = l_Fin_reduceBin___lambda__1___closed__1; x_31 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_31, 0, x_30); lean_ctor_set(x_31, 1, x_29); @@ -4257,165 +3342,189 @@ uint8_t x_32; x_32 = !lean_is_exclusive(x_24); if (x_32 == 0) { -lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; uint8_t x_38; -x_33 = lean_ctor_get(x_24, 1); -x_34 = lean_ctor_get(x_24, 0); -lean_dec(x_34); -x_35 = lean_ctor_get(x_25, 0); +lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; uint8_t x_37; +x_33 = lean_ctor_get(x_24, 0); +lean_dec(x_33); +x_34 = lean_ctor_get(x_25, 0); +lean_inc(x_34); +lean_dec(x_25); +x_35 = lean_ctor_get(x_22, 0); lean_inc(x_35); -lean_dec(x_25); -x_36 = lean_ctor_get(x_22, 1); +x_36 = lean_ctor_get(x_34, 0); lean_inc(x_36); -x_37 = lean_ctor_get(x_35, 1); -lean_inc(x_37); -x_38 = lean_nat_dec_eq(x_36, x_37); -lean_dec(x_37); +x_37 = lean_nat_dec_eq(x_35, x_36); lean_dec(x_36); -if (x_38 == 0) +if (x_37 == 0) { -lean_object* x_39; +lean_object* x_38; lean_dec(x_35); +lean_dec(x_34); lean_dec(x_22); -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_39 = l_Fin_reduceBin___lambda__2___closed__1; -lean_ctor_set(x_24, 0, x_39); +x_38 = l_Fin_reduceBin___lambda__1___closed__1; +lean_ctor_set(x_24, 0, x_38); return x_24; } else { -lean_object* x_40; lean_object* x_41; -lean_free_object(x_24); -x_40 = lean_box(0); -x_41 = l_Fin_reduceDiv___lambda__1(x_22, x_35, x_40, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_33); -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); +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; uint32_t x_54; uint8_t x_55; lean_object* x_56; lean_object* x_57; +x_39 = lean_ctor_get(x_22, 1); +lean_inc(x_39); +lean_dec(x_22); +x_40 = lean_ctor_get(x_34, 1); +lean_inc(x_40); +lean_dec(x_34); +x_41 = lean_nat_div(x_39, x_40); +lean_dec(x_40); +lean_dec(x_39); +x_42 = l_Lean_mkRawNatLit(x_41); +lean_inc(x_35); +x_43 = l_Lean_mkNatLit(x_35); +x_44 = l_Fin_reduceBin___lambda__1___closed__10; +x_45 = l_Lean_Expr_app___override(x_44, x_43); +x_46 = lean_unsigned_to_nat(1u); +x_47 = lean_nat_sub(x_35, x_46); lean_dec(x_35); -return x_41; -} -} -else -{ -lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; uint8_t x_46; -x_42 = lean_ctor_get(x_24, 1); +x_48 = l_Lean_mkNatLit(x_47); +x_49 = l_Fin_reduceBin___lambda__1___closed__13; lean_inc(x_42); +x_50 = l_Lean_mkAppB(x_49, x_48, x_42); +x_51 = l_Fin_reduceBin___lambda__1___closed__7; +x_52 = l_Lean_mkApp3(x_51, x_45, x_42, x_50); +x_53 = lean_box(0); +x_54 = 0; +x_55 = 1; +x_56 = lean_alloc_ctor(0, 2, 5); +lean_ctor_set(x_56, 0, x_52); +lean_ctor_set(x_56, 1, x_53); +lean_ctor_set_uint32(x_56, sizeof(void*)*2, x_54); +lean_ctor_set_uint8(x_56, sizeof(void*)*2 + 4, x_55); +x_57 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_57, 0, x_56); +lean_ctor_set(x_24, 0, x_57); +return x_24; +} +} +else +{ +lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; uint8_t x_62; +x_58 = lean_ctor_get(x_24, 1); +lean_inc(x_58); lean_dec(x_24); -x_43 = lean_ctor_get(x_25, 0); -lean_inc(x_43); +x_59 = lean_ctor_get(x_25, 0); +lean_inc(x_59); lean_dec(x_25); -x_44 = lean_ctor_get(x_22, 1); -lean_inc(x_44); -x_45 = lean_ctor_get(x_43, 1); -lean_inc(x_45); -x_46 = lean_nat_dec_eq(x_44, x_45); -lean_dec(x_45); -lean_dec(x_44); -if (x_46 == 0) +x_60 = lean_ctor_get(x_22, 0); +lean_inc(x_60); +x_61 = lean_ctor_get(x_59, 0); +lean_inc(x_61); +x_62 = lean_nat_dec_eq(x_60, x_61); +lean_dec(x_61); +if (x_62 == 0) { -lean_object* x_47; lean_object* x_48; -lean_dec(x_43); +lean_object* x_63; lean_object* x_64; +lean_dec(x_60); +lean_dec(x_59); lean_dec(x_22); -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_47 = l_Fin_reduceBin___lambda__2___closed__1; -x_48 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_48, 0, x_47); -lean_ctor_set(x_48, 1, x_42); -return x_48; +x_63 = l_Fin_reduceBin___lambda__1___closed__1; +x_64 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_64, 0, x_63); +lean_ctor_set(x_64, 1, x_58); +return x_64; } else { -lean_object* x_49; lean_object* x_50; -x_49 = lean_box(0); -x_50 = l_Fin_reduceDiv___lambda__1(x_22, x_43, x_49, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_42); -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); -lean_dec(x_43); -return x_50; +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; uint32_t x_80; uint8_t x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; +x_65 = lean_ctor_get(x_22, 1); +lean_inc(x_65); +lean_dec(x_22); +x_66 = lean_ctor_get(x_59, 1); +lean_inc(x_66); +lean_dec(x_59); +x_67 = lean_nat_div(x_65, x_66); +lean_dec(x_66); +lean_dec(x_65); +x_68 = l_Lean_mkRawNatLit(x_67); +lean_inc(x_60); +x_69 = l_Lean_mkNatLit(x_60); +x_70 = l_Fin_reduceBin___lambda__1___closed__10; +x_71 = l_Lean_Expr_app___override(x_70, x_69); +x_72 = lean_unsigned_to_nat(1u); +x_73 = lean_nat_sub(x_60, x_72); +lean_dec(x_60); +x_74 = l_Lean_mkNatLit(x_73); +x_75 = l_Fin_reduceBin___lambda__1___closed__13; +lean_inc(x_68); +x_76 = l_Lean_mkAppB(x_75, x_74, x_68); +x_77 = l_Fin_reduceBin___lambda__1___closed__7; +x_78 = l_Lean_mkApp3(x_77, x_71, x_68, x_76); +x_79 = lean_box(0); +x_80 = 0; +x_81 = 1; +x_82 = lean_alloc_ctor(0, 2, 5); +lean_ctor_set(x_82, 0, x_78); +lean_ctor_set(x_82, 1, x_79); +lean_ctor_set_uint32(x_82, sizeof(void*)*2, x_80); +lean_ctor_set_uint8(x_82, sizeof(void*)*2 + 4, x_81); +x_83 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_83, 0, x_82); +x_84 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_84, 0, x_83); +lean_ctor_set(x_84, 1, x_58); +return x_84; } } } } else { -uint8_t x_51; +uint8_t x_85; lean_dec(x_22); -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_51 = !lean_is_exclusive(x_24); -if (x_51 == 0) +x_85 = !lean_is_exclusive(x_24); +if (x_85 == 0) { return x_24; } else { -lean_object* x_52; lean_object* x_53; lean_object* x_54; -x_52 = lean_ctor_get(x_24, 0); -x_53 = lean_ctor_get(x_24, 1); -lean_inc(x_53); -lean_inc(x_52); +lean_object* x_86; lean_object* x_87; lean_object* x_88; +x_86 = lean_ctor_get(x_24, 0); +x_87 = lean_ctor_get(x_24, 1); +lean_inc(x_87); +lean_inc(x_86); lean_dec(x_24); -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; +x_88 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_88, 0, x_86); +lean_ctor_set(x_88, 1, x_87); +return x_88; } } } } else { -uint8_t x_55; +uint8_t x_89; 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); lean_dec(x_1); -x_55 = !lean_is_exclusive(x_13); -if (x_55 == 0) +x_89 = !lean_is_exclusive(x_13); +if (x_89 == 0) { return x_13; } else { -lean_object* x_56; lean_object* x_57; lean_object* x_58; -x_56 = lean_ctor_get(x_13, 0); -x_57 = lean_ctor_get(x_13, 1); -lean_inc(x_57); -lean_inc(x_56); +lean_object* x_90; lean_object* x_91; lean_object* x_92; +x_90 = lean_ctor_get(x_13, 0); +x_91 = lean_ctor_get(x_13, 1); +lean_inc(x_91); +lean_inc(x_90); lean_dec(x_13); -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; +x_92 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_92, 0, x_90); +lean_ctor_set(x_92, 1, x_91); +return x_92; } } } @@ -4464,7 +3573,7 @@ lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_13 = l_Fin_reduceBin___lambda__2___closed__1; +x_13 = l_Fin_reduceBin___lambda__1___closed__1; x_14 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_14, 0, x_13); lean_ctor_set(x_14, 1, x_9); @@ -4474,29 +3583,27 @@ else { lean_object* x_15; lean_object* x_16; x_15 = lean_box(0); -x_16 = l_Fin_reduceDiv___lambda__2(x_1, x_15, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_16 = l_Fin_reduceDiv___lambda__1(x_1, x_15, 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_16; } } } -LEAN_EXPORT lean_object* l_Fin_reduceDiv___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, lean_object* x_11) { +LEAN_EXPORT lean_object* l_Fin_reduceDiv___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_12; -x_12 = l_Fin_reduceDiv___lambda__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); +lean_object* x_11; +x_11 = l_Fin_reduceDiv___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_12; +return x_11; } } -static lean_object* _init_l___regBuiltin_Fin_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_848____closed__1() { +static lean_object* _init_l___regBuiltin_Fin_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_721____closed__1() { _start: { lean_object* x_1; @@ -4504,17 +3611,17 @@ x_1 = lean_mk_string_from_bytes("reduceDiv", 9); return x_1; } } -static lean_object* _init_l___regBuiltin_Fin_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_848____closed__2() { +static lean_object* _init_l___regBuiltin_Fin_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_721____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Fin_fromExpr_x3f___closed__4; -x_2 = l___regBuiltin_Fin_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_848____closed__1; +x_1 = l_Fin_reduceBin___lambda__1___closed__8; +x_2 = l___regBuiltin_Fin_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_721____closed__1; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Fin_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_848____closed__3() { +static lean_object* _init_l___regBuiltin_Fin_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_721____closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -4526,107 +3633,107 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Fin_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_848____closed__4() { +static lean_object* _init_l___regBuiltin_Fin_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_721____closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_725____closed__5; -x_2 = l___regBuiltin_Fin_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_848____closed__3; +x_1 = l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_595____closed__5; +x_2 = l___regBuiltin_Fin_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_721____closed__3; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Fin_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_848____closed__5() { +static lean_object* _init_l___regBuiltin_Fin_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_721____closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Fin_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_848____closed__4; -x_2 = l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_725____closed__4; +x_1 = l___regBuiltin_Fin_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_721____closed__4; +x_2 = l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_595____closed__4; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Fin_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_848____closed__6() { +static lean_object* _init_l___regBuiltin_Fin_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_721____closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Fin_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_848____closed__5; +x_1 = l___regBuiltin_Fin_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_721____closed__5; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Fin_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_848____closed__7() { +static lean_object* _init_l___regBuiltin_Fin_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_721____closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Fin_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_848____closed__6; -x_2 = l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_725____closed__4; +x_1 = l___regBuiltin_Fin_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_721____closed__6; +x_2 = l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_595____closed__4; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Fin_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_848____closed__8() { +static lean_object* _init_l___regBuiltin_Fin_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_721____closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Fin_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_848____closed__7; +x_1 = l___regBuiltin_Fin_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_721____closed__7; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Fin_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_848____closed__9() { +static lean_object* _init_l___regBuiltin_Fin_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_721____closed__9() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Fin_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_848____closed__8; -x_2 = l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_725____closed__4; +x_1 = l___regBuiltin_Fin_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_721____closed__8; +x_2 = l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_595____closed__4; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Fin_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_848____closed__10() { +static lean_object* _init_l___regBuiltin_Fin_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_721____closed__10() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Fin_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_848____closed__9; +x_1 = l___regBuiltin_Fin_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_721____closed__9; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Fin_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_848____closed__11() { +static lean_object* _init_l___regBuiltin_Fin_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_721____closed__11() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Fin_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_848____closed__10; +x_1 = l___regBuiltin_Fin_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_721____closed__10; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Fin_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_848____closed__12() { +static lean_object* _init_l___regBuiltin_Fin_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_721____closed__12() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Fin_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_848____closed__11; +x_1 = l___regBuiltin_Fin_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_721____closed__11; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Fin_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_848____closed__13() { +static lean_object* _init_l___regBuiltin_Fin_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_721____closed__13() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Fin_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_848____closed__12; +x_1 = l___regBuiltin_Fin_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_721____closed__12; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Fin_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_848____closed__14() { +static lean_object* _init_l___regBuiltin_Fin_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_721____closed__14() { _start: { lean_object* x_1; @@ -4634,115 +3741,45 @@ x_1 = lean_alloc_closure((void*)(l_Fin_reduceDiv), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_Fin_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_848_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Fin_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_721_(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_Fin_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_848____closed__2; -x_3 = l___regBuiltin_Fin_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_848____closed__13; -x_4 = l___regBuiltin_Fin_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_848____closed__14; +x_2 = l___regBuiltin_Fin_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_721____closed__2; +x_3 = l___regBuiltin_Fin_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_721____closed__13; +x_4 = l___regBuiltin_Fin_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_721____closed__14; x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); return x_5; } } -LEAN_EXPORT lean_object* l___regBuiltin_Fin_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_850_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Fin_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_723_(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_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_727____closed__1; -x_3 = l___regBuiltin_Fin_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_848____closed__2; +x_2 = l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_597____closed__1; +x_3 = l___regBuiltin_Fin_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_721____closed__2; x_4 = 1; -x_5 = l___regBuiltin_Fin_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_848____closed__14; +x_5 = l___regBuiltin_Fin_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_721____closed__14; 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_Fin_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_852_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Fin_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_725_(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_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_729____closed__1; -x_3 = l___regBuiltin_Fin_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_848____closed__2; +x_2 = l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_599____closed__1; +x_3 = l___regBuiltin_Fin_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_721____closed__2; x_4 = 1; -x_5 = l___regBuiltin_Fin_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_848____closed__14; +x_5 = l___regBuiltin_Fin_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_721____closed__14; 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_Fin_reduceMod___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, lean_object* x_11) { -_start: -{ -uint8_t x_12; -x_12 = !lean_is_exclusive(x_1); -if (x_12 == 0) -{ -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; uint32_t x_20; uint8_t x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; -x_13 = lean_ctor_get(x_1, 1); -x_14 = lean_ctor_get(x_1, 2); -x_15 = lean_ctor_get(x_2, 2); -x_16 = lean_nat_mod(x_14, x_15); -lean_dec(x_14); -x_17 = lean_nat_mod(x_16, x_13); -lean_dec(x_16); -lean_ctor_set(x_1, 2, x_17); -x_18 = l_Fin_Value_toExpr(x_1); -x_19 = lean_box(0); -x_20 = 0; -x_21 = 1; -x_22 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_22, 0, x_18); -lean_ctor_set(x_22, 1, x_19); -lean_ctor_set_uint32(x_22, sizeof(void*)*2, x_20); -lean_ctor_set_uint8(x_22, sizeof(void*)*2 + 4, x_21); -x_23 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_23, 0, x_22); -x_24 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_24, 0, x_23); -lean_ctor_set(x_24, 1, x_11); -return x_24; -} -else -{ -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; uint32_t x_34; uint8_t x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; -x_25 = lean_ctor_get(x_1, 0); -x_26 = lean_ctor_get(x_1, 1); -x_27 = lean_ctor_get(x_1, 2); -lean_inc(x_27); -lean_inc(x_26); -lean_inc(x_25); -lean_dec(x_1); -x_28 = lean_ctor_get(x_2, 2); -x_29 = lean_nat_mod(x_27, x_28); -lean_dec(x_27); -x_30 = lean_nat_mod(x_29, x_26); -lean_dec(x_29); -x_31 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_31, 0, x_25); -lean_ctor_set(x_31, 1, x_26); -lean_ctor_set(x_31, 2, x_30); -x_32 = l_Fin_Value_toExpr(x_31); -x_33 = lean_box(0); -x_34 = 0; -x_35 = 1; -x_36 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_36, 0, x_32); -lean_ctor_set(x_36, 1, x_33); -lean_ctor_set_uint32(x_36, sizeof(void*)*2, x_34); -lean_ctor_set_uint8(x_36, sizeof(void*)*2 + 4, x_35); -x_37 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_37, 0, x_36); -x_38 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_38, 0, x_37); -lean_ctor_set(x_38, 1, x_11); -return x_38; -} -} -} -LEAN_EXPORT lean_object* l_Fin_reduceMod___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_EXPORT lean_object* l_Fin_reduceMod___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; -lean_dec(x_2); lean_inc(x_1); x_11 = l_Lean_Expr_appFn_x21(x_1); x_12 = l_Lean_Expr_appArg_x21(x_11); @@ -4752,6 +3789,7 @@ lean_inc(x_8); lean_inc(x_7); lean_inc(x_6); x_13 = l_Fin_fromExpr_x3f(x_12, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_12); if (lean_obj_tag(x_13) == 0) { lean_object* x_14; @@ -4764,9 +3802,6 @@ 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); lean_dec(x_1); x_15 = !lean_is_exclusive(x_13); if (x_15 == 0) @@ -4774,7 +3809,7 @@ if (x_15 == 0) lean_object* x_16; lean_object* x_17; x_16 = lean_ctor_get(x_13, 0); lean_dec(x_16); -x_17 = l_Fin_reduceBin___lambda__2___closed__1; +x_17 = l_Fin_reduceBin___lambda__1___closed__1; lean_ctor_set(x_13, 0, x_17); return x_13; } @@ -4784,7 +3819,7 @@ lean_object* x_18; lean_object* x_19; lean_object* x_20; x_18 = lean_ctor_get(x_13, 1); lean_inc(x_18); lean_dec(x_13); -x_19 = l_Fin_reduceBin___lambda__2___closed__1; +x_19 = l_Fin_reduceBin___lambda__1___closed__1; x_20 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_20, 0, x_19); lean_ctor_set(x_20, 1, x_18); @@ -4802,11 +3837,8 @@ lean_inc(x_22); lean_dec(x_14); x_23 = l_Lean_Expr_appArg_x21(x_1); lean_dec(x_1); -lean_inc(x_9); -lean_inc(x_8); -lean_inc(x_7); -lean_inc(x_6); x_24 = l_Fin_fromExpr_x3f(x_23, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_21); +lean_dec(x_23); if (lean_obj_tag(x_24) == 0) { lean_object* x_25; @@ -4816,20 +3848,13 @@ if (lean_obj_tag(x_25) == 0) { uint8_t x_26; lean_dec(x_22); -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_26 = !lean_is_exclusive(x_24); if (x_26 == 0) { lean_object* x_27; lean_object* x_28; x_27 = lean_ctor_get(x_24, 0); lean_dec(x_27); -x_28 = l_Fin_reduceBin___lambda__2___closed__1; +x_28 = l_Fin_reduceBin___lambda__1___closed__1; lean_ctor_set(x_24, 0, x_28); return x_24; } @@ -4839,7 +3864,7 @@ lean_object* x_29; lean_object* x_30; lean_object* x_31; x_29 = lean_ctor_get(x_24, 1); lean_inc(x_29); lean_dec(x_24); -x_30 = l_Fin_reduceBin___lambda__2___closed__1; +x_30 = l_Fin_reduceBin___lambda__1___closed__1; x_31 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_31, 0, x_30); lean_ctor_set(x_31, 1, x_29); @@ -4852,165 +3877,189 @@ uint8_t x_32; x_32 = !lean_is_exclusive(x_24); if (x_32 == 0) { -lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; uint8_t x_38; -x_33 = lean_ctor_get(x_24, 1); -x_34 = lean_ctor_get(x_24, 0); -lean_dec(x_34); -x_35 = lean_ctor_get(x_25, 0); +lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; uint8_t x_37; +x_33 = lean_ctor_get(x_24, 0); +lean_dec(x_33); +x_34 = lean_ctor_get(x_25, 0); +lean_inc(x_34); +lean_dec(x_25); +x_35 = lean_ctor_get(x_22, 0); lean_inc(x_35); -lean_dec(x_25); -x_36 = lean_ctor_get(x_22, 1); +x_36 = lean_ctor_get(x_34, 0); lean_inc(x_36); -x_37 = lean_ctor_get(x_35, 1); -lean_inc(x_37); -x_38 = lean_nat_dec_eq(x_36, x_37); -lean_dec(x_37); +x_37 = lean_nat_dec_eq(x_35, x_36); lean_dec(x_36); -if (x_38 == 0) +if (x_37 == 0) { -lean_object* x_39; +lean_object* x_38; lean_dec(x_35); +lean_dec(x_34); lean_dec(x_22); -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_39 = l_Fin_reduceBin___lambda__2___closed__1; -lean_ctor_set(x_24, 0, x_39); +x_38 = l_Fin_reduceBin___lambda__1___closed__1; +lean_ctor_set(x_24, 0, x_38); return x_24; } else { -lean_object* x_40; lean_object* x_41; -lean_free_object(x_24); -x_40 = lean_box(0); -x_41 = l_Fin_reduceMod___lambda__1(x_22, x_35, x_40, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_33); -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); +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; uint32_t x_54; uint8_t x_55; lean_object* x_56; lean_object* x_57; +x_39 = lean_ctor_get(x_22, 1); +lean_inc(x_39); +lean_dec(x_22); +x_40 = lean_ctor_get(x_34, 1); +lean_inc(x_40); +lean_dec(x_34); +x_41 = lean_nat_mod(x_39, x_40); +lean_dec(x_40); +lean_dec(x_39); +x_42 = l_Lean_mkRawNatLit(x_41); +lean_inc(x_35); +x_43 = l_Lean_mkNatLit(x_35); +x_44 = l_Fin_reduceBin___lambda__1___closed__10; +x_45 = l_Lean_Expr_app___override(x_44, x_43); +x_46 = lean_unsigned_to_nat(1u); +x_47 = lean_nat_sub(x_35, x_46); lean_dec(x_35); -return x_41; -} -} -else -{ -lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; uint8_t x_46; -x_42 = lean_ctor_get(x_24, 1); +x_48 = l_Lean_mkNatLit(x_47); +x_49 = l_Fin_reduceBin___lambda__1___closed__13; lean_inc(x_42); +x_50 = l_Lean_mkAppB(x_49, x_48, x_42); +x_51 = l_Fin_reduceBin___lambda__1___closed__7; +x_52 = l_Lean_mkApp3(x_51, x_45, x_42, x_50); +x_53 = lean_box(0); +x_54 = 0; +x_55 = 1; +x_56 = lean_alloc_ctor(0, 2, 5); +lean_ctor_set(x_56, 0, x_52); +lean_ctor_set(x_56, 1, x_53); +lean_ctor_set_uint32(x_56, sizeof(void*)*2, x_54); +lean_ctor_set_uint8(x_56, sizeof(void*)*2 + 4, x_55); +x_57 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_57, 0, x_56); +lean_ctor_set(x_24, 0, x_57); +return x_24; +} +} +else +{ +lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; uint8_t x_62; +x_58 = lean_ctor_get(x_24, 1); +lean_inc(x_58); lean_dec(x_24); -x_43 = lean_ctor_get(x_25, 0); -lean_inc(x_43); +x_59 = lean_ctor_get(x_25, 0); +lean_inc(x_59); lean_dec(x_25); -x_44 = lean_ctor_get(x_22, 1); -lean_inc(x_44); -x_45 = lean_ctor_get(x_43, 1); -lean_inc(x_45); -x_46 = lean_nat_dec_eq(x_44, x_45); -lean_dec(x_45); -lean_dec(x_44); -if (x_46 == 0) +x_60 = lean_ctor_get(x_22, 0); +lean_inc(x_60); +x_61 = lean_ctor_get(x_59, 0); +lean_inc(x_61); +x_62 = lean_nat_dec_eq(x_60, x_61); +lean_dec(x_61); +if (x_62 == 0) { -lean_object* x_47; lean_object* x_48; -lean_dec(x_43); +lean_object* x_63; lean_object* x_64; +lean_dec(x_60); +lean_dec(x_59); lean_dec(x_22); -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_47 = l_Fin_reduceBin___lambda__2___closed__1; -x_48 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_48, 0, x_47); -lean_ctor_set(x_48, 1, x_42); -return x_48; +x_63 = l_Fin_reduceBin___lambda__1___closed__1; +x_64 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_64, 0, x_63); +lean_ctor_set(x_64, 1, x_58); +return x_64; } else { -lean_object* x_49; lean_object* x_50; -x_49 = lean_box(0); -x_50 = l_Fin_reduceMod___lambda__1(x_22, x_43, x_49, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_42); -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); -lean_dec(x_43); -return x_50; +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; uint32_t x_80; uint8_t x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; +x_65 = lean_ctor_get(x_22, 1); +lean_inc(x_65); +lean_dec(x_22); +x_66 = lean_ctor_get(x_59, 1); +lean_inc(x_66); +lean_dec(x_59); +x_67 = lean_nat_mod(x_65, x_66); +lean_dec(x_66); +lean_dec(x_65); +x_68 = l_Lean_mkRawNatLit(x_67); +lean_inc(x_60); +x_69 = l_Lean_mkNatLit(x_60); +x_70 = l_Fin_reduceBin___lambda__1___closed__10; +x_71 = l_Lean_Expr_app___override(x_70, x_69); +x_72 = lean_unsigned_to_nat(1u); +x_73 = lean_nat_sub(x_60, x_72); +lean_dec(x_60); +x_74 = l_Lean_mkNatLit(x_73); +x_75 = l_Fin_reduceBin___lambda__1___closed__13; +lean_inc(x_68); +x_76 = l_Lean_mkAppB(x_75, x_74, x_68); +x_77 = l_Fin_reduceBin___lambda__1___closed__7; +x_78 = l_Lean_mkApp3(x_77, x_71, x_68, x_76); +x_79 = lean_box(0); +x_80 = 0; +x_81 = 1; +x_82 = lean_alloc_ctor(0, 2, 5); +lean_ctor_set(x_82, 0, x_78); +lean_ctor_set(x_82, 1, x_79); +lean_ctor_set_uint32(x_82, sizeof(void*)*2, x_80); +lean_ctor_set_uint8(x_82, sizeof(void*)*2 + 4, x_81); +x_83 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_83, 0, x_82); +x_84 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_84, 0, x_83); +lean_ctor_set(x_84, 1, x_58); +return x_84; } } } } else { -uint8_t x_51; +uint8_t x_85; lean_dec(x_22); -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_51 = !lean_is_exclusive(x_24); -if (x_51 == 0) +x_85 = !lean_is_exclusive(x_24); +if (x_85 == 0) { return x_24; } else { -lean_object* x_52; lean_object* x_53; lean_object* x_54; -x_52 = lean_ctor_get(x_24, 0); -x_53 = lean_ctor_get(x_24, 1); -lean_inc(x_53); -lean_inc(x_52); +lean_object* x_86; lean_object* x_87; lean_object* x_88; +x_86 = lean_ctor_get(x_24, 0); +x_87 = lean_ctor_get(x_24, 1); +lean_inc(x_87); +lean_inc(x_86); lean_dec(x_24); -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; +x_88 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_88, 0, x_86); +lean_ctor_set(x_88, 1, x_87); +return x_88; } } } } else { -uint8_t x_55; +uint8_t x_89; 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); lean_dec(x_1); -x_55 = !lean_is_exclusive(x_13); -if (x_55 == 0) +x_89 = !lean_is_exclusive(x_13); +if (x_89 == 0) { return x_13; } else { -lean_object* x_56; lean_object* x_57; lean_object* x_58; -x_56 = lean_ctor_get(x_13, 0); -x_57 = lean_ctor_get(x_13, 1); -lean_inc(x_57); -lean_inc(x_56); +lean_object* x_90; lean_object* x_91; lean_object* x_92; +x_90 = lean_ctor_get(x_13, 0); +x_91 = lean_ctor_get(x_13, 1); +lean_inc(x_91); +lean_inc(x_90); lean_dec(x_13); -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; +x_92 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_92, 0, x_90); +lean_ctor_set(x_92, 1, x_91); +return x_92; } } } @@ -5059,7 +4108,7 @@ lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_13 = l_Fin_reduceBin___lambda__2___closed__1; +x_13 = l_Fin_reduceBin___lambda__1___closed__1; x_14 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_14, 0, x_13); lean_ctor_set(x_14, 1, x_9); @@ -5069,29 +4118,27 @@ else { lean_object* x_15; lean_object* x_16; x_15 = lean_box(0); -x_16 = l_Fin_reduceMod___lambda__2(x_1, x_15, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_16 = l_Fin_reduceMod___lambda__1(x_1, x_15, 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_16; } } } -LEAN_EXPORT lean_object* l_Fin_reduceMod___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, lean_object* x_11) { +LEAN_EXPORT lean_object* l_Fin_reduceMod___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_12; -x_12 = l_Fin_reduceMod___lambda__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); +lean_object* x_11; +x_11 = l_Fin_reduceMod___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_12; +return x_11; } } -static lean_object* _init_l___regBuiltin_Fin_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_889____closed__1() { +static lean_object* _init_l___regBuiltin_Fin_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_763____closed__1() { _start: { lean_object* x_1; @@ -5099,17 +4146,17 @@ x_1 = lean_mk_string_from_bytes("reduceMod", 9); return x_1; } } -static lean_object* _init_l___regBuiltin_Fin_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_889____closed__2() { +static lean_object* _init_l___regBuiltin_Fin_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_763____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Fin_fromExpr_x3f___closed__4; -x_2 = l___regBuiltin_Fin_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_889____closed__1; +x_1 = l_Fin_reduceBin___lambda__1___closed__8; +x_2 = l___regBuiltin_Fin_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_763____closed__1; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Fin_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_889____closed__3() { +static lean_object* _init_l___regBuiltin_Fin_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_763____closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -5121,107 +4168,107 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Fin_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_889____closed__4() { +static lean_object* _init_l___regBuiltin_Fin_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_763____closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_725____closed__5; -x_2 = l___regBuiltin_Fin_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_889____closed__3; +x_1 = l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_595____closed__5; +x_2 = l___regBuiltin_Fin_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_763____closed__3; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Fin_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_889____closed__5() { +static lean_object* _init_l___regBuiltin_Fin_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_763____closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Fin_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_889____closed__4; -x_2 = l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_725____closed__4; +x_1 = l___regBuiltin_Fin_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_763____closed__4; +x_2 = l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_595____closed__4; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Fin_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_889____closed__6() { +static lean_object* _init_l___regBuiltin_Fin_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_763____closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Fin_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_889____closed__5; +x_1 = l___regBuiltin_Fin_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_763____closed__5; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Fin_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_889____closed__7() { +static lean_object* _init_l___regBuiltin_Fin_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_763____closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Fin_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_889____closed__6; -x_2 = l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_725____closed__4; +x_1 = l___regBuiltin_Fin_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_763____closed__6; +x_2 = l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_595____closed__4; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Fin_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_889____closed__8() { +static lean_object* _init_l___regBuiltin_Fin_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_763____closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Fin_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_889____closed__7; +x_1 = l___regBuiltin_Fin_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_763____closed__7; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Fin_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_889____closed__9() { +static lean_object* _init_l___regBuiltin_Fin_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_763____closed__9() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Fin_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_889____closed__8; -x_2 = l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_725____closed__4; +x_1 = l___regBuiltin_Fin_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_763____closed__8; +x_2 = l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_595____closed__4; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Fin_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_889____closed__10() { +static lean_object* _init_l___regBuiltin_Fin_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_763____closed__10() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Fin_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_889____closed__9; +x_1 = l___regBuiltin_Fin_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_763____closed__9; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Fin_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_889____closed__11() { +static lean_object* _init_l___regBuiltin_Fin_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_763____closed__11() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Fin_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_889____closed__10; +x_1 = l___regBuiltin_Fin_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_763____closed__10; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Fin_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_889____closed__12() { +static lean_object* _init_l___regBuiltin_Fin_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_763____closed__12() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Fin_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_889____closed__11; +x_1 = l___regBuiltin_Fin_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_763____closed__11; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Fin_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_889____closed__13() { +static lean_object* _init_l___regBuiltin_Fin_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_763____closed__13() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Fin_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_889____closed__12; +x_1 = l___regBuiltin_Fin_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_763____closed__12; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Fin_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_889____closed__14() { +static lean_object* _init_l___regBuiltin_Fin_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_763____closed__14() { _start: { lean_object* x_1; @@ -5229,37 +4276,37 @@ x_1 = lean_alloc_closure((void*)(l_Fin_reduceMod), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_Fin_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_889_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Fin_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_763_(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_Fin_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_889____closed__2; -x_3 = l___regBuiltin_Fin_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_889____closed__13; -x_4 = l___regBuiltin_Fin_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_889____closed__14; +x_2 = l___regBuiltin_Fin_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_763____closed__2; +x_3 = l___regBuiltin_Fin_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_763____closed__13; +x_4 = l___regBuiltin_Fin_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_763____closed__14; x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); return x_5; } } -LEAN_EXPORT lean_object* l___regBuiltin_Fin_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_891_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Fin_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_765_(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_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_727____closed__1; -x_3 = l___regBuiltin_Fin_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_889____closed__2; +x_2 = l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_597____closed__1; +x_3 = l___regBuiltin_Fin_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_763____closed__2; x_4 = 1; -x_5 = l___regBuiltin_Fin_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_889____closed__14; +x_5 = l___regBuiltin_Fin_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_763____closed__14; 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_Fin_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_893_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Fin_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_767_(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_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_729____closed__1; -x_3 = l___regBuiltin_Fin_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_889____closed__2; +x_2 = l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_599____closed__1; +x_3 = l___regBuiltin_Fin_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_763____closed__2; x_4 = 1; -x_5 = l___regBuiltin_Fin_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_889____closed__14; +x_5 = l___regBuiltin_Fin_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_763____closed__14; x_6 = l_Lean_Meta_Simp_addSimprocBuiltinAttrCore(x_2, x_3, x_4, x_5, x_1); return x_6; } @@ -5277,6 +4324,7 @@ lean_inc(x_8); lean_inc(x_7); lean_inc(x_6); x_13 = l_Fin_fromExpr_x3f(x_12, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_12); if (lean_obj_tag(x_13) == 0) { lean_object* x_14; @@ -5296,7 +4344,7 @@ if (x_15 == 0) lean_object* x_16; lean_object* x_17; x_16 = lean_ctor_get(x_13, 0); lean_dec(x_16); -x_17 = l_Fin_reduceBin___lambda__2___closed__1; +x_17 = l_Fin_reduceBin___lambda__1___closed__1; lean_ctor_set(x_13, 0, x_17); return x_13; } @@ -5306,7 +4354,7 @@ lean_object* x_18; lean_object* x_19; lean_object* x_20; x_18 = lean_ctor_get(x_13, 1); lean_inc(x_18); lean_dec(x_13); -x_19 = l_Fin_reduceBin___lambda__2___closed__1; +x_19 = l_Fin_reduceBin___lambda__1___closed__1; x_20 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_20, 0, x_19); lean_ctor_set(x_20, 1, x_18); @@ -5328,6 +4376,7 @@ lean_inc(x_8); lean_inc(x_7); lean_inc(x_6); x_24 = l_Fin_fromExpr_x3f(x_23, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_21); +lean_dec(x_23); if (lean_obj_tag(x_24) == 0) { lean_object* x_25; @@ -5348,7 +4397,7 @@ if (x_26 == 0) lean_object* x_27; lean_object* x_28; x_27 = lean_ctor_get(x_24, 0); lean_dec(x_27); -x_28 = l_Fin_reduceBin___lambda__2___closed__1; +x_28 = l_Fin_reduceBin___lambda__1___closed__1; lean_ctor_set(x_24, 0, x_28); return x_24; } @@ -5358,7 +4407,7 @@ lean_object* x_29; lean_object* x_30; lean_object* x_31; x_29 = lean_ctor_get(x_24, 1); lean_inc(x_29); lean_dec(x_24); -x_30 = l_Fin_reduceBin___lambda__2___closed__1; +x_30 = l_Fin_reduceBin___lambda__1___closed__1; x_31 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_31, 0, x_30); lean_ctor_set(x_31, 1, x_29); @@ -5374,10 +4423,10 @@ lean_dec(x_24); x_33 = lean_ctor_get(x_25, 0); lean_inc(x_33); lean_dec(x_25); -x_34 = lean_ctor_get(x_22, 2); +x_34 = lean_ctor_get(x_22, 1); lean_inc(x_34); lean_dec(x_22); -x_35 = lean_ctor_get(x_33, 2); +x_35 = lean_ctor_get(x_33, 1); lean_inc(x_35); lean_dec(x_33); x_36 = lean_nat_dec_lt(x_34, x_35); @@ -5490,7 +4539,7 @@ lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_13 = l_Fin_reduceBin___lambda__2___closed__1; +x_13 = l_Fin_reduceBin___lambda__1___closed__1; x_14 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_14, 0, x_13); lean_ctor_set(x_14, 1, x_9); @@ -5520,7 +4569,7 @@ lean_dec(x_2); return x_11; } } -static lean_object* _init_l___regBuiltin_Fin_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_931____closed__1() { +static lean_object* _init_l___regBuiltin_Fin_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_805____closed__1() { _start: { lean_object* x_1; @@ -5528,17 +4577,17 @@ x_1 = lean_mk_string_from_bytes("reduceLT", 8); return x_1; } } -static lean_object* _init_l___regBuiltin_Fin_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_931____closed__2() { +static lean_object* _init_l___regBuiltin_Fin_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_805____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Fin_fromExpr_x3f___closed__4; -x_2 = l___regBuiltin_Fin_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_931____closed__1; +x_1 = l_Fin_reduceBin___lambda__1___closed__8; +x_2 = l___regBuiltin_Fin_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_805____closed__1; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Fin_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_931____closed__3() { +static lean_object* _init_l___regBuiltin_Fin_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_805____closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -5550,7 +4599,7 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Fin_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_931____closed__4() { +static lean_object* _init_l___regBuiltin_Fin_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_805____closed__4() { _start: { lean_object* x_1; lean_object* x_2; @@ -5559,67 +4608,67 @@ x_2 = lean_mk_empty_array_with_capacity(x_1); return x_2; } } -static lean_object* _init_l___regBuiltin_Fin_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_931____closed__5() { +static lean_object* _init_l___regBuiltin_Fin_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_805____closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Fin_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_931____closed__4; -x_2 = l___regBuiltin_Fin_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_931____closed__3; +x_1 = l___regBuiltin_Fin_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_805____closed__4; +x_2 = l___regBuiltin_Fin_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_805____closed__3; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Fin_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_931____closed__6() { +static lean_object* _init_l___regBuiltin_Fin_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_805____closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Fin_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_931____closed__5; -x_2 = l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_725____closed__4; +x_1 = l___regBuiltin_Fin_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_805____closed__5; +x_2 = l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_595____closed__4; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Fin_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_931____closed__7() { +static lean_object* _init_l___regBuiltin_Fin_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_805____closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Fin_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_931____closed__6; +x_1 = l___regBuiltin_Fin_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_805____closed__6; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Fin_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_931____closed__8() { +static lean_object* _init_l___regBuiltin_Fin_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_805____closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Fin_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_931____closed__7; +x_1 = l___regBuiltin_Fin_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_805____closed__7; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Fin_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_931____closed__9() { +static lean_object* _init_l___regBuiltin_Fin_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_805____closed__9() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Fin_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_931____closed__8; +x_1 = l___regBuiltin_Fin_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_805____closed__8; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Fin_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_931____closed__10() { +static lean_object* _init_l___regBuiltin_Fin_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_805____closed__10() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Fin_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_931____closed__9; +x_1 = l___regBuiltin_Fin_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_805____closed__9; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Fin_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_931____closed__11() { +static lean_object* _init_l___regBuiltin_Fin_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_805____closed__11() { _start: { lean_object* x_1; @@ -5627,37 +4676,37 @@ x_1 = lean_alloc_closure((void*)(l_Fin_reduceLT), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_Fin_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_931_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Fin_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_805_(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_Fin_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_931____closed__2; -x_3 = l___regBuiltin_Fin_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_931____closed__10; -x_4 = l___regBuiltin_Fin_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_931____closed__11; +x_2 = l___regBuiltin_Fin_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_805____closed__2; +x_3 = l___regBuiltin_Fin_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_805____closed__10; +x_4 = l___regBuiltin_Fin_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_805____closed__11; x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); return x_5; } } -LEAN_EXPORT lean_object* l___regBuiltin_Fin_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_933_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Fin_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_807_(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_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_727____closed__1; -x_3 = l___regBuiltin_Fin_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_931____closed__2; +x_2 = l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_597____closed__1; +x_3 = l___regBuiltin_Fin_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_805____closed__2; x_4 = 1; -x_5 = l___regBuiltin_Fin_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_931____closed__11; +x_5 = l___regBuiltin_Fin_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_805____closed__11; 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_Fin_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_935_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Fin_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_809_(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_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_729____closed__1; -x_3 = l___regBuiltin_Fin_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_931____closed__2; +x_2 = l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_599____closed__1; +x_3 = l___regBuiltin_Fin_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_805____closed__2; x_4 = 1; -x_5 = l___regBuiltin_Fin_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_931____closed__11; +x_5 = l___regBuiltin_Fin_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_805____closed__11; x_6 = l_Lean_Meta_Simp_addSimprocBuiltinAttrCore(x_2, x_3, x_4, x_5, x_1); return x_6; } @@ -5675,6 +4724,7 @@ lean_inc(x_8); lean_inc(x_7); lean_inc(x_6); x_13 = l_Fin_fromExpr_x3f(x_12, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_12); if (lean_obj_tag(x_13) == 0) { lean_object* x_14; @@ -5694,7 +4744,7 @@ if (x_15 == 0) lean_object* x_16; lean_object* x_17; x_16 = lean_ctor_get(x_13, 0); lean_dec(x_16); -x_17 = l_Fin_reduceBin___lambda__2___closed__1; +x_17 = l_Fin_reduceBin___lambda__1___closed__1; lean_ctor_set(x_13, 0, x_17); return x_13; } @@ -5704,7 +4754,7 @@ lean_object* x_18; lean_object* x_19; lean_object* x_20; x_18 = lean_ctor_get(x_13, 1); lean_inc(x_18); lean_dec(x_13); -x_19 = l_Fin_reduceBin___lambda__2___closed__1; +x_19 = l_Fin_reduceBin___lambda__1___closed__1; x_20 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_20, 0, x_19); lean_ctor_set(x_20, 1, x_18); @@ -5726,6 +4776,7 @@ lean_inc(x_8); lean_inc(x_7); lean_inc(x_6); x_24 = l_Fin_fromExpr_x3f(x_23, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_21); +lean_dec(x_23); if (lean_obj_tag(x_24) == 0) { lean_object* x_25; @@ -5746,7 +4797,7 @@ if (x_26 == 0) lean_object* x_27; lean_object* x_28; x_27 = lean_ctor_get(x_24, 0); lean_dec(x_27); -x_28 = l_Fin_reduceBin___lambda__2___closed__1; +x_28 = l_Fin_reduceBin___lambda__1___closed__1; lean_ctor_set(x_24, 0, x_28); return x_24; } @@ -5756,7 +4807,7 @@ lean_object* x_29; lean_object* x_30; lean_object* x_31; x_29 = lean_ctor_get(x_24, 1); lean_inc(x_29); lean_dec(x_24); -x_30 = l_Fin_reduceBin___lambda__2___closed__1; +x_30 = l_Fin_reduceBin___lambda__1___closed__1; x_31 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_31, 0, x_30); lean_ctor_set(x_31, 1, x_29); @@ -5772,10 +4823,10 @@ lean_dec(x_24); x_33 = lean_ctor_get(x_25, 0); lean_inc(x_33); lean_dec(x_25); -x_34 = lean_ctor_get(x_22, 2); +x_34 = lean_ctor_get(x_22, 1); lean_inc(x_34); lean_dec(x_22); -x_35 = lean_ctor_get(x_33, 2); +x_35 = lean_ctor_get(x_33, 1); lean_inc(x_35); lean_dec(x_33); x_36 = lean_nat_dec_le(x_34, x_35); @@ -5888,7 +4939,7 @@ lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_13 = l_Fin_reduceBin___lambda__2___closed__1; +x_13 = l_Fin_reduceBin___lambda__1___closed__1; x_14 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_14, 0, x_13); lean_ctor_set(x_14, 1, x_9); @@ -5918,7 +4969,7 @@ lean_dec(x_2); return x_11; } } -static lean_object* _init_l___regBuiltin_Fin_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_973____closed__1() { +static lean_object* _init_l___regBuiltin_Fin_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_847____closed__1() { _start: { lean_object* x_1; @@ -5926,17 +4977,17 @@ x_1 = lean_mk_string_from_bytes("reduceLE", 8); return x_1; } } -static lean_object* _init_l___regBuiltin_Fin_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_973____closed__2() { +static lean_object* _init_l___regBuiltin_Fin_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_847____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Fin_fromExpr_x3f___closed__4; -x_2 = l___regBuiltin_Fin_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_973____closed__1; +x_1 = l_Fin_reduceBin___lambda__1___closed__8; +x_2 = l___regBuiltin_Fin_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_847____closed__1; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Fin_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_973____closed__3() { +static lean_object* _init_l___regBuiltin_Fin_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_847____closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -5948,67 +4999,67 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Fin_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_973____closed__4() { +static lean_object* _init_l___regBuiltin_Fin_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_847____closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Fin_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_931____closed__4; -x_2 = l___regBuiltin_Fin_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_973____closed__3; +x_1 = l___regBuiltin_Fin_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_805____closed__4; +x_2 = l___regBuiltin_Fin_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_847____closed__3; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Fin_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_973____closed__5() { +static lean_object* _init_l___regBuiltin_Fin_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_847____closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Fin_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_973____closed__4; -x_2 = l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_725____closed__4; +x_1 = l___regBuiltin_Fin_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_847____closed__4; +x_2 = l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_595____closed__4; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Fin_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_973____closed__6() { +static lean_object* _init_l___regBuiltin_Fin_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_847____closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Fin_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_973____closed__5; +x_1 = l___regBuiltin_Fin_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_847____closed__5; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Fin_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_973____closed__7() { +static lean_object* _init_l___regBuiltin_Fin_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_847____closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Fin_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_973____closed__6; +x_1 = l___regBuiltin_Fin_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_847____closed__6; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Fin_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_973____closed__8() { +static lean_object* _init_l___regBuiltin_Fin_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_847____closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Fin_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_973____closed__7; +x_1 = l___regBuiltin_Fin_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_847____closed__7; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Fin_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_973____closed__9() { +static lean_object* _init_l___regBuiltin_Fin_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_847____closed__9() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Fin_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_973____closed__8; +x_1 = l___regBuiltin_Fin_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_847____closed__8; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Fin_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_973____closed__10() { +static lean_object* _init_l___regBuiltin_Fin_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_847____closed__10() { _start: { lean_object* x_1; @@ -6016,37 +5067,37 @@ x_1 = lean_alloc_closure((void*)(l_Fin_reduceLE), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_Fin_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_973_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Fin_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_847_(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_Fin_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_973____closed__2; -x_3 = l___regBuiltin_Fin_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_973____closed__9; -x_4 = l___regBuiltin_Fin_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_973____closed__10; +x_2 = l___regBuiltin_Fin_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_847____closed__2; +x_3 = l___regBuiltin_Fin_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_847____closed__9; +x_4 = l___regBuiltin_Fin_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_847____closed__10; x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); return x_5; } } -LEAN_EXPORT lean_object* l___regBuiltin_Fin_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_975_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Fin_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_849_(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_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_727____closed__1; -x_3 = l___regBuiltin_Fin_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_973____closed__2; +x_2 = l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_597____closed__1; +x_3 = l___regBuiltin_Fin_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_847____closed__2; x_4 = 1; -x_5 = l___regBuiltin_Fin_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_973____closed__10; +x_5 = l___regBuiltin_Fin_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_847____closed__10; 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_Fin_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_977_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Fin_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_851_(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_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_729____closed__1; -x_3 = l___regBuiltin_Fin_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_973____closed__2; +x_2 = l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_599____closed__1; +x_3 = l___regBuiltin_Fin_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_847____closed__2; x_4 = 1; -x_5 = l___regBuiltin_Fin_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_973____closed__10; +x_5 = l___regBuiltin_Fin_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_847____closed__10; x_6 = l_Lean_Meta_Simp_addSimprocBuiltinAttrCore(x_2, x_3, x_4, x_5, x_1); return x_6; } @@ -6064,6 +5115,7 @@ lean_inc(x_8); lean_inc(x_7); lean_inc(x_6); x_13 = l_Fin_fromExpr_x3f(x_12, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_12); if (lean_obj_tag(x_13) == 0) { lean_object* x_14; @@ -6083,7 +5135,7 @@ if (x_15 == 0) lean_object* x_16; lean_object* x_17; x_16 = lean_ctor_get(x_13, 0); lean_dec(x_16); -x_17 = l_Fin_reduceBin___lambda__2___closed__1; +x_17 = l_Fin_reduceBin___lambda__1___closed__1; lean_ctor_set(x_13, 0, x_17); return x_13; } @@ -6093,7 +5145,7 @@ lean_object* x_18; lean_object* x_19; lean_object* x_20; x_18 = lean_ctor_get(x_13, 1); lean_inc(x_18); lean_dec(x_13); -x_19 = l_Fin_reduceBin___lambda__2___closed__1; +x_19 = l_Fin_reduceBin___lambda__1___closed__1; x_20 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_20, 0, x_19); lean_ctor_set(x_20, 1, x_18); @@ -6115,6 +5167,7 @@ lean_inc(x_8); lean_inc(x_7); lean_inc(x_6); x_24 = l_Fin_fromExpr_x3f(x_23, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_21); +lean_dec(x_23); if (lean_obj_tag(x_24) == 0) { lean_object* x_25; @@ -6135,7 +5188,7 @@ if (x_26 == 0) lean_object* x_27; lean_object* x_28; x_27 = lean_ctor_get(x_24, 0); lean_dec(x_27); -x_28 = l_Fin_reduceBin___lambda__2___closed__1; +x_28 = l_Fin_reduceBin___lambda__1___closed__1; lean_ctor_set(x_24, 0, x_28); return x_24; } @@ -6145,7 +5198,7 @@ lean_object* x_29; lean_object* x_30; lean_object* x_31; x_29 = lean_ctor_get(x_24, 1); lean_inc(x_29); lean_dec(x_24); -x_30 = l_Fin_reduceBin___lambda__2___closed__1; +x_30 = l_Fin_reduceBin___lambda__1___closed__1; x_31 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_31, 0, x_30); lean_ctor_set(x_31, 1, x_29); @@ -6161,10 +5214,10 @@ lean_dec(x_24); x_33 = lean_ctor_get(x_25, 0); lean_inc(x_33); lean_dec(x_25); -x_34 = lean_ctor_get(x_22, 2); +x_34 = lean_ctor_get(x_22, 1); lean_inc(x_34); lean_dec(x_22); -x_35 = lean_ctor_get(x_33, 2); +x_35 = lean_ctor_get(x_33, 1); lean_inc(x_35); lean_dec(x_33); x_36 = lean_nat_dec_lt(x_35, x_34); @@ -6277,7 +5330,7 @@ lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_13 = l_Fin_reduceBin___lambda__2___closed__1; +x_13 = l_Fin_reduceBin___lambda__1___closed__1; x_14 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_14, 0, x_13); lean_ctor_set(x_14, 1, x_9); @@ -6307,7 +5360,7 @@ lean_dec(x_2); return x_11; } } -static lean_object* _init_l___regBuiltin_Fin_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1015____closed__1() { +static lean_object* _init_l___regBuiltin_Fin_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_889____closed__1() { _start: { lean_object* x_1; @@ -6315,17 +5368,17 @@ x_1 = lean_mk_string_from_bytes("reduceGT", 8); return x_1; } } -static lean_object* _init_l___regBuiltin_Fin_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1015____closed__2() { +static lean_object* _init_l___regBuiltin_Fin_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_889____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Fin_fromExpr_x3f___closed__4; -x_2 = l___regBuiltin_Fin_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1015____closed__1; +x_1 = l_Fin_reduceBin___lambda__1___closed__8; +x_2 = l___regBuiltin_Fin_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_889____closed__1; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Fin_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1015____closed__3() { +static lean_object* _init_l___regBuiltin_Fin_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_889____closed__3() { _start: { lean_object* x_1; @@ -6333,37 +5386,37 @@ x_1 = lean_alloc_closure((void*)(l_Fin_reduceGT), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_Fin_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1015_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Fin_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_889_(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_Fin_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1015____closed__2; -x_3 = l___regBuiltin_Fin_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_931____closed__10; -x_4 = l___regBuiltin_Fin_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1015____closed__3; +x_2 = l___regBuiltin_Fin_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_889____closed__2; +x_3 = l___regBuiltin_Fin_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_805____closed__10; +x_4 = l___regBuiltin_Fin_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_889____closed__3; x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); return x_5; } } -LEAN_EXPORT lean_object* l___regBuiltin_Fin_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1017_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Fin_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_891_(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_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_727____closed__1; -x_3 = l___regBuiltin_Fin_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1015____closed__2; +x_2 = l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_597____closed__1; +x_3 = l___regBuiltin_Fin_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_889____closed__2; x_4 = 1; -x_5 = l___regBuiltin_Fin_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1015____closed__3; +x_5 = l___regBuiltin_Fin_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_889____closed__3; 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_Fin_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1019_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Fin_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_893_(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_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_729____closed__1; -x_3 = l___regBuiltin_Fin_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1015____closed__2; +x_2 = l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_599____closed__1; +x_3 = l___regBuiltin_Fin_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_889____closed__2; x_4 = 1; -x_5 = l___regBuiltin_Fin_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1015____closed__3; +x_5 = l___regBuiltin_Fin_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_889____closed__3; x_6 = l_Lean_Meta_Simp_addSimprocBuiltinAttrCore(x_2, x_3, x_4, x_5, x_1); return x_6; } @@ -6381,6 +5434,7 @@ lean_inc(x_8); lean_inc(x_7); lean_inc(x_6); x_13 = l_Fin_fromExpr_x3f(x_12, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_12); if (lean_obj_tag(x_13) == 0) { lean_object* x_14; @@ -6400,7 +5454,7 @@ if (x_15 == 0) lean_object* x_16; lean_object* x_17; x_16 = lean_ctor_get(x_13, 0); lean_dec(x_16); -x_17 = l_Fin_reduceBin___lambda__2___closed__1; +x_17 = l_Fin_reduceBin___lambda__1___closed__1; lean_ctor_set(x_13, 0, x_17); return x_13; } @@ -6410,7 +5464,7 @@ lean_object* x_18; lean_object* x_19; lean_object* x_20; x_18 = lean_ctor_get(x_13, 1); lean_inc(x_18); lean_dec(x_13); -x_19 = l_Fin_reduceBin___lambda__2___closed__1; +x_19 = l_Fin_reduceBin___lambda__1___closed__1; x_20 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_20, 0, x_19); lean_ctor_set(x_20, 1, x_18); @@ -6432,6 +5486,7 @@ lean_inc(x_8); lean_inc(x_7); lean_inc(x_6); x_24 = l_Fin_fromExpr_x3f(x_23, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_21); +lean_dec(x_23); if (lean_obj_tag(x_24) == 0) { lean_object* x_25; @@ -6452,7 +5507,7 @@ if (x_26 == 0) lean_object* x_27; lean_object* x_28; x_27 = lean_ctor_get(x_24, 0); lean_dec(x_27); -x_28 = l_Fin_reduceBin___lambda__2___closed__1; +x_28 = l_Fin_reduceBin___lambda__1___closed__1; lean_ctor_set(x_24, 0, x_28); return x_24; } @@ -6462,7 +5517,7 @@ lean_object* x_29; lean_object* x_30; lean_object* x_31; x_29 = lean_ctor_get(x_24, 1); lean_inc(x_29); lean_dec(x_24); -x_30 = l_Fin_reduceBin___lambda__2___closed__1; +x_30 = l_Fin_reduceBin___lambda__1___closed__1; x_31 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_31, 0, x_30); lean_ctor_set(x_31, 1, x_29); @@ -6478,10 +5533,10 @@ lean_dec(x_24); x_33 = lean_ctor_get(x_25, 0); lean_inc(x_33); lean_dec(x_25); -x_34 = lean_ctor_get(x_22, 2); +x_34 = lean_ctor_get(x_22, 1); lean_inc(x_34); lean_dec(x_22); -x_35 = lean_ctor_get(x_33, 2); +x_35 = lean_ctor_get(x_33, 1); lean_inc(x_35); lean_dec(x_33); x_36 = lean_nat_dec_le(x_35, x_34); @@ -6594,7 +5649,7 @@ lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_13 = l_Fin_reduceBin___lambda__2___closed__1; +x_13 = l_Fin_reduceBin___lambda__1___closed__1; x_14 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_14, 0, x_13); lean_ctor_set(x_14, 1, x_9); @@ -6624,7 +5679,7 @@ lean_dec(x_2); return x_11; } } -static lean_object* _init_l___regBuiltin_Fin_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1057____closed__1() { +static lean_object* _init_l___regBuiltin_Fin_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_931____closed__1() { _start: { lean_object* x_1; @@ -6632,17 +5687,17 @@ x_1 = lean_mk_string_from_bytes("reduceGE", 8); return x_1; } } -static lean_object* _init_l___regBuiltin_Fin_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1057____closed__2() { +static lean_object* _init_l___regBuiltin_Fin_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_931____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Fin_fromExpr_x3f___closed__4; -x_2 = l___regBuiltin_Fin_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1057____closed__1; +x_1 = l_Fin_reduceBin___lambda__1___closed__8; +x_2 = l___regBuiltin_Fin_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_931____closed__1; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Fin_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1057____closed__3() { +static lean_object* _init_l___regBuiltin_Fin_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_931____closed__3() { _start: { lean_object* x_1; @@ -6650,37 +5705,37 @@ x_1 = lean_alloc_closure((void*)(l_Fin_reduceGE), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_Fin_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1057_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Fin_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_931_(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_Fin_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1057____closed__2; -x_3 = l___regBuiltin_Fin_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_973____closed__9; -x_4 = l___regBuiltin_Fin_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1057____closed__3; +x_2 = l___regBuiltin_Fin_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_931____closed__2; +x_3 = l___regBuiltin_Fin_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_847____closed__9; +x_4 = l___regBuiltin_Fin_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_931____closed__3; x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); return x_5; } } -LEAN_EXPORT lean_object* l___regBuiltin_Fin_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1059_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Fin_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_933_(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_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_727____closed__1; -x_3 = l___regBuiltin_Fin_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1057____closed__2; +x_2 = l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_597____closed__1; +x_3 = l___regBuiltin_Fin_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_931____closed__2; x_4 = 1; -x_5 = l___regBuiltin_Fin_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1057____closed__3; +x_5 = l___regBuiltin_Fin_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_931____closed__3; 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_Fin_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1061_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Fin_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_935_(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_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_729____closed__1; -x_3 = l___regBuiltin_Fin_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1057____closed__2; +x_2 = l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_599____closed__1; +x_3 = l___regBuiltin_Fin_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_931____closed__2; x_4 = 1; -x_5 = l___regBuiltin_Fin_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1057____closed__3; +x_5 = l___regBuiltin_Fin_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_931____closed__3; x_6 = l_Lean_Meta_Simp_addSimprocBuiltinAttrCore(x_2, x_3, x_4, x_5, x_1); return x_6; } @@ -6698,6 +5753,7 @@ lean_inc(x_8); lean_inc(x_7); lean_inc(x_6); x_13 = l_Fin_fromExpr_x3f(x_12, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_12); if (lean_obj_tag(x_13) == 0) { lean_object* x_14; @@ -6717,7 +5773,7 @@ if (x_15 == 0) lean_object* x_16; lean_object* x_17; x_16 = lean_ctor_get(x_13, 0); lean_dec(x_16); -x_17 = l_Fin_reduceBin___lambda__2___closed__1; +x_17 = l_Fin_reduceBin___lambda__1___closed__1; lean_ctor_set(x_13, 0, x_17); return x_13; } @@ -6727,7 +5783,7 @@ lean_object* x_18; lean_object* x_19; lean_object* x_20; x_18 = lean_ctor_get(x_13, 1); lean_inc(x_18); lean_dec(x_13); -x_19 = l_Fin_reduceBin___lambda__2___closed__1; +x_19 = l_Fin_reduceBin___lambda__1___closed__1; x_20 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_20, 0, x_19); lean_ctor_set(x_20, 1, x_18); @@ -6749,6 +5805,7 @@ lean_inc(x_8); lean_inc(x_7); lean_inc(x_6); x_24 = l_Fin_fromExpr_x3f(x_23, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_21); +lean_dec(x_23); if (lean_obj_tag(x_24) == 0) { lean_object* x_25; @@ -6769,7 +5826,7 @@ if (x_26 == 0) lean_object* x_27; lean_object* x_28; x_27 = lean_ctor_get(x_24, 0); lean_dec(x_27); -x_28 = l_Fin_reduceBin___lambda__2___closed__1; +x_28 = l_Fin_reduceBin___lambda__1___closed__1; lean_ctor_set(x_24, 0, x_28); return x_24; } @@ -6779,7 +5836,7 @@ lean_object* x_29; lean_object* x_30; lean_object* x_31; x_29 = lean_ctor_get(x_24, 1); lean_inc(x_29); lean_dec(x_24); -x_30 = l_Fin_reduceBin___lambda__2___closed__1; +x_30 = l_Fin_reduceBin___lambda__1___closed__1; x_31 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_31, 0, x_30); lean_ctor_set(x_31, 1, x_29); @@ -6795,10 +5852,10 @@ lean_dec(x_24); x_33 = lean_ctor_get(x_25, 0); lean_inc(x_33); lean_dec(x_25); -x_34 = lean_ctor_get(x_22, 2); +x_34 = lean_ctor_get(x_22, 1); lean_inc(x_34); lean_dec(x_22); -x_35 = lean_ctor_get(x_33, 2); +x_35 = lean_ctor_get(x_33, 1); lean_inc(x_35); lean_dec(x_33); x_36 = lean_nat_dec_eq(x_34, x_35); @@ -6903,7 +5960,7 @@ lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_13 = l_Fin_reduceBin___lambda__2___closed__1; +x_13 = l_Fin_reduceBin___lambda__1___closed__1; x_14 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_14, 0, x_13); lean_ctor_set(x_14, 1, x_9); @@ -6933,7 +5990,7 @@ lean_dec(x_2); return x_11; } } -static lean_object* _init_l___regBuiltin_Fin_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1099____closed__1() { +static lean_object* _init_l___regBuiltin_Fin_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_973____closed__1() { _start: { lean_object* x_1; @@ -6941,17 +5998,17 @@ x_1 = lean_mk_string_from_bytes("reduceEq", 8); return x_1; } } -static lean_object* _init_l___regBuiltin_Fin_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1099____closed__2() { +static lean_object* _init_l___regBuiltin_Fin_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_973____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Fin_fromExpr_x3f___closed__4; -x_2 = l___regBuiltin_Fin_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1099____closed__1; +x_1 = l_Fin_reduceBin___lambda__1___closed__8; +x_2 = l___regBuiltin_Fin_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_973____closed__1; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Fin_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1099____closed__3() { +static lean_object* _init_l___regBuiltin_Fin_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_973____closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -6963,7 +6020,7 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Fin_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1099____closed__4() { +static lean_object* _init_l___regBuiltin_Fin_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_973____closed__4() { _start: { lean_object* x_1; lean_object* x_2; @@ -6972,57 +6029,57 @@ x_2 = lean_mk_empty_array_with_capacity(x_1); return x_2; } } -static lean_object* _init_l___regBuiltin_Fin_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1099____closed__5() { +static lean_object* _init_l___regBuiltin_Fin_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_973____closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Fin_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1099____closed__4; -x_2 = l___regBuiltin_Fin_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1099____closed__3; +x_1 = l___regBuiltin_Fin_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_973____closed__4; +x_2 = l___regBuiltin_Fin_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_973____closed__3; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Fin_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1099____closed__6() { +static lean_object* _init_l___regBuiltin_Fin_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_973____closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Fin_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1099____closed__5; -x_2 = l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_725____closed__4; +x_1 = l___regBuiltin_Fin_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_973____closed__5; +x_2 = l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_595____closed__4; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Fin_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1099____closed__7() { +static lean_object* _init_l___regBuiltin_Fin_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_973____closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Fin_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1099____closed__6; +x_1 = l___regBuiltin_Fin_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_973____closed__6; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Fin_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1099____closed__8() { +static lean_object* _init_l___regBuiltin_Fin_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_973____closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Fin_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1099____closed__7; +x_1 = l___regBuiltin_Fin_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_973____closed__7; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Fin_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1099____closed__9() { +static lean_object* _init_l___regBuiltin_Fin_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_973____closed__9() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Fin_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1099____closed__8; +x_1 = l___regBuiltin_Fin_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_973____closed__8; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Fin_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1099____closed__10() { +static lean_object* _init_l___regBuiltin_Fin_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_973____closed__10() { _start: { lean_object* x_1; @@ -7030,37 +6087,37 @@ x_1 = lean_alloc_closure((void*)(l_Fin_reduceEq), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_Fin_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1099_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Fin_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_973_(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_Fin_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1099____closed__2; -x_3 = l___regBuiltin_Fin_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1099____closed__9; -x_4 = l___regBuiltin_Fin_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1099____closed__10; +x_2 = l___regBuiltin_Fin_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_973____closed__2; +x_3 = l___regBuiltin_Fin_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_973____closed__9; +x_4 = l___regBuiltin_Fin_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_973____closed__10; x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); return x_5; } } -LEAN_EXPORT lean_object* l___regBuiltin_Fin_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1101_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Fin_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_975_(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_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_727____closed__1; -x_3 = l___regBuiltin_Fin_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1099____closed__2; +x_2 = l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_597____closed__1; +x_3 = l___regBuiltin_Fin_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_973____closed__2; x_4 = 1; -x_5 = l___regBuiltin_Fin_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1099____closed__10; +x_5 = l___regBuiltin_Fin_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_973____closed__10; 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_Fin_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1103_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Fin_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_977_(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_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_729____closed__1; -x_3 = l___regBuiltin_Fin_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1099____closed__2; +x_2 = l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_599____closed__1; +x_3 = l___regBuiltin_Fin_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_973____closed__2; x_4 = 1; -x_5 = l___regBuiltin_Fin_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1099____closed__10; +x_5 = l___regBuiltin_Fin_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_973____closed__10; x_6 = l_Lean_Meta_Simp_addSimprocBuiltinAttrCore(x_2, x_3, x_4, x_5, x_1); return x_6; } @@ -7078,6 +6135,7 @@ lean_inc(x_8); lean_inc(x_7); lean_inc(x_6); x_13 = l_Fin_fromExpr_x3f(x_12, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_12); if (lean_obj_tag(x_13) == 0) { lean_object* x_14; @@ -7097,7 +6155,7 @@ if (x_15 == 0) lean_object* x_16; lean_object* x_17; x_16 = lean_ctor_get(x_13, 0); lean_dec(x_16); -x_17 = l_Fin_reduceBin___lambda__2___closed__1; +x_17 = l_Fin_reduceBin___lambda__1___closed__1; lean_ctor_set(x_13, 0, x_17); return x_13; } @@ -7107,7 +6165,7 @@ lean_object* x_18; lean_object* x_19; lean_object* x_20; x_18 = lean_ctor_get(x_13, 1); lean_inc(x_18); lean_dec(x_13); -x_19 = l_Fin_reduceBin___lambda__2___closed__1; +x_19 = l_Fin_reduceBin___lambda__1___closed__1; x_20 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_20, 0, x_19); lean_ctor_set(x_20, 1, x_18); @@ -7129,6 +6187,7 @@ lean_inc(x_8); lean_inc(x_7); lean_inc(x_6); x_24 = l_Fin_fromExpr_x3f(x_23, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_21); +lean_dec(x_23); if (lean_obj_tag(x_24) == 0) { lean_object* x_25; @@ -7149,7 +6208,7 @@ if (x_26 == 0) lean_object* x_27; lean_object* x_28; x_27 = lean_ctor_get(x_24, 0); lean_dec(x_27); -x_28 = l_Fin_reduceBin___lambda__2___closed__1; +x_28 = l_Fin_reduceBin___lambda__1___closed__1; lean_ctor_set(x_24, 0, x_28); return x_24; } @@ -7159,7 +6218,7 @@ lean_object* x_29; lean_object* x_30; lean_object* x_31; x_29 = lean_ctor_get(x_24, 1); lean_inc(x_29); lean_dec(x_24); -x_30 = l_Fin_reduceBin___lambda__2___closed__1; +x_30 = l_Fin_reduceBin___lambda__1___closed__1; x_31 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_31, 0, x_30); lean_ctor_set(x_31, 1, x_29); @@ -7175,10 +6234,10 @@ lean_dec(x_24); x_33 = lean_ctor_get(x_25, 0); lean_inc(x_33); lean_dec(x_25); -x_34 = lean_ctor_get(x_22, 2); +x_34 = lean_ctor_get(x_22, 1); lean_inc(x_34); lean_dec(x_22); -x_35 = lean_ctor_get(x_33, 2); +x_35 = lean_ctor_get(x_33, 1); lean_inc(x_35); lean_dec(x_33); x_36 = lean_nat_dec_eq(x_34, x_35); @@ -7284,7 +6343,7 @@ lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_13 = l_Fin_reduceBin___lambda__2___closed__1; +x_13 = l_Fin_reduceBin___lambda__1___closed__1; x_14 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_14, 0, x_13); lean_ctor_set(x_14, 1, x_9); @@ -7314,7 +6373,7 @@ lean_dec(x_2); return x_11; } } -static lean_object* _init_l___regBuiltin_Fin_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1140____closed__1() { +static lean_object* _init_l___regBuiltin_Fin_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1014____closed__1() { _start: { lean_object* x_1; @@ -7322,17 +6381,17 @@ x_1 = lean_mk_string_from_bytes("reduceNe", 8); return x_1; } } -static lean_object* _init_l___regBuiltin_Fin_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1140____closed__2() { +static lean_object* _init_l___regBuiltin_Fin_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1014____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Fin_fromExpr_x3f___closed__4; -x_2 = l___regBuiltin_Fin_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1140____closed__1; +x_1 = l_Fin_reduceBin___lambda__1___closed__8; +x_2 = l___regBuiltin_Fin_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1014____closed__1; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Fin_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1140____closed__3() { +static lean_object* _init_l___regBuiltin_Fin_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1014____closed__3() { _start: { lean_object* x_1; @@ -7340,21 +6399,21 @@ x_1 = lean_mk_string_from_bytes("Not", 3); return x_1; } } -static lean_object* _init_l___regBuiltin_Fin_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1140____closed__4() { +static lean_object* _init_l___regBuiltin_Fin_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1014____closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___regBuiltin_Fin_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1140____closed__3; +x_2 = l___regBuiltin_Fin_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1014____closed__3; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Fin_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1140____closed__5() { +static lean_object* _init_l___regBuiltin_Fin_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1014____closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Fin_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1140____closed__4; +x_1 = l___regBuiltin_Fin_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1014____closed__4; x_2 = lean_unsigned_to_nat(1u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -7362,67 +6421,67 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Fin_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1140____closed__6() { +static lean_object* _init_l___regBuiltin_Fin_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1014____closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Fin_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_931____closed__4; -x_2 = l___regBuiltin_Fin_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1140____closed__5; +x_1 = l___regBuiltin_Fin_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_805____closed__4; +x_2 = l___regBuiltin_Fin_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1014____closed__5; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Fin_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1140____closed__7() { +static lean_object* _init_l___regBuiltin_Fin_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1014____closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Fin_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1140____closed__6; -x_2 = l___regBuiltin_Fin_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1099____closed__3; +x_1 = l___regBuiltin_Fin_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1014____closed__6; +x_2 = l___regBuiltin_Fin_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_973____closed__3; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Fin_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1140____closed__8() { +static lean_object* _init_l___regBuiltin_Fin_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1014____closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Fin_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1140____closed__7; -x_2 = l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_725____closed__4; +x_1 = l___regBuiltin_Fin_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1014____closed__7; +x_2 = l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_595____closed__4; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Fin_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1140____closed__9() { +static lean_object* _init_l___regBuiltin_Fin_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1014____closed__9() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Fin_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1140____closed__8; +x_1 = l___regBuiltin_Fin_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1014____closed__8; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Fin_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1140____closed__10() { +static lean_object* _init_l___regBuiltin_Fin_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1014____closed__10() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Fin_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1140____closed__9; +x_1 = l___regBuiltin_Fin_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1014____closed__9; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Fin_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1140____closed__11() { +static lean_object* _init_l___regBuiltin_Fin_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1014____closed__11() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Fin_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1140____closed__10; +x_1 = l___regBuiltin_Fin_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1014____closed__10; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Fin_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1140____closed__12() { +static lean_object* _init_l___regBuiltin_Fin_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1014____closed__12() { _start: { lean_object* x_1; @@ -7430,37 +6489,37 @@ x_1 = lean_alloc_closure((void*)(l_Fin_reduceNe), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_Fin_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1140_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Fin_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1014_(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_Fin_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1140____closed__2; -x_3 = l___regBuiltin_Fin_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1140____closed__11; -x_4 = l___regBuiltin_Fin_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1140____closed__12; +x_2 = l___regBuiltin_Fin_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1014____closed__2; +x_3 = l___regBuiltin_Fin_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1014____closed__11; +x_4 = l___regBuiltin_Fin_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1014____closed__12; x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); return x_5; } } -LEAN_EXPORT lean_object* l___regBuiltin_Fin_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1142_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Fin_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1016_(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_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_727____closed__1; -x_3 = l___regBuiltin_Fin_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1140____closed__2; +x_2 = l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_597____closed__1; +x_3 = l___regBuiltin_Fin_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1014____closed__2; x_4 = 1; -x_5 = l___regBuiltin_Fin_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1140____closed__12; +x_5 = l___regBuiltin_Fin_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1014____closed__12; 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_Fin_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1144_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Fin_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1018_(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_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_729____closed__1; -x_3 = l___regBuiltin_Fin_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1140____closed__2; +x_2 = l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_599____closed__1; +x_3 = l___regBuiltin_Fin_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1014____closed__2; x_4 = 1; -x_5 = l___regBuiltin_Fin_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1140____closed__12; +x_5 = l___regBuiltin_Fin_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1014____closed__12; x_6 = l_Lean_Meta_Simp_addSimprocBuiltinAttrCore(x_2, x_3, x_4, x_5, x_1); return x_6; } @@ -7478,6 +6537,7 @@ lean_inc(x_8); lean_inc(x_7); lean_inc(x_6); x_13 = l_Fin_fromExpr_x3f(x_12, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_12); if (lean_obj_tag(x_13) == 0) { lean_object* x_14; @@ -7497,7 +6557,7 @@ if (x_15 == 0) lean_object* x_16; lean_object* x_17; x_16 = lean_ctor_get(x_13, 0); lean_dec(x_16); -x_17 = l_Fin_reduceBin___lambda__2___closed__1; +x_17 = l_Fin_reduceBin___lambda__1___closed__1; lean_ctor_set(x_13, 0, x_17); return x_13; } @@ -7507,7 +6567,7 @@ lean_object* x_18; lean_object* x_19; lean_object* x_20; x_18 = lean_ctor_get(x_13, 1); lean_inc(x_18); lean_dec(x_13); -x_19 = l_Fin_reduceBin___lambda__2___closed__1; +x_19 = l_Fin_reduceBin___lambda__1___closed__1; x_20 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_20, 0, x_19); lean_ctor_set(x_20, 1, x_18); @@ -7526,6 +6586,7 @@ lean_dec(x_14); x_23 = l_Lean_Expr_appArg_x21(x_1); lean_dec(x_1); x_24 = l_Fin_fromExpr_x3f(x_23, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_21); +lean_dec(x_23); if (lean_obj_tag(x_24) == 0) { lean_object* x_25; @@ -7541,7 +6602,7 @@ if (x_26 == 0) lean_object* x_27; lean_object* x_28; x_27 = lean_ctor_get(x_24, 0); lean_dec(x_27); -x_28 = l_Fin_reduceBin___lambda__2___closed__1; +x_28 = l_Fin_reduceBin___lambda__1___closed__1; lean_ctor_set(x_24, 0, x_28); return x_24; } @@ -7551,7 +6612,7 @@ lean_object* x_29; lean_object* x_30; lean_object* x_31; x_29 = lean_ctor_get(x_24, 1); lean_inc(x_29); lean_dec(x_24); -x_30 = l_Fin_reduceBin___lambda__2___closed__1; +x_30 = l_Fin_reduceBin___lambda__1___closed__1; x_31 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_31, 0, x_30); lean_ctor_set(x_31, 1, x_29); @@ -7570,10 +6631,10 @@ lean_dec(x_33); x_34 = lean_ctor_get(x_25, 0); lean_inc(x_34); lean_dec(x_25); -x_35 = lean_ctor_get(x_22, 2); +x_35 = lean_ctor_get(x_22, 1); lean_inc(x_35); lean_dec(x_22); -x_36 = lean_ctor_get(x_34, 2); +x_36 = lean_ctor_get(x_34, 1); lean_inc(x_36); lean_dec(x_34); x_37 = lean_nat_dec_eq(x_35, x_36); @@ -7603,10 +6664,10 @@ lean_dec(x_24); x_41 = lean_ctor_get(x_25, 0); lean_inc(x_41); lean_dec(x_25); -x_42 = lean_ctor_get(x_22, 2); +x_42 = lean_ctor_get(x_22, 1); lean_inc(x_42); lean_dec(x_22); -x_43 = lean_ctor_get(x_41, 2); +x_43 = lean_ctor_get(x_41, 1); lean_inc(x_43); lean_dec(x_41); x_44 = lean_nat_dec_eq(x_42, x_43); @@ -7731,7 +6792,7 @@ lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_13 = l_Fin_reduceBin___lambda__2___closed__1; +x_13 = l_Fin_reduceBin___lambda__1___closed__1; x_14 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_14, 0, x_13); lean_ctor_set(x_14, 1, x_9); @@ -7761,7 +6822,7 @@ lean_dec(x_2); return x_11; } } -static lean_object* _init_l___regBuiltin_Fin_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1182____closed__1() { +static lean_object* _init_l___regBuiltin_Fin_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1056____closed__1() { _start: { lean_object* x_1; @@ -7769,17 +6830,17 @@ x_1 = lean_mk_string_from_bytes("reduceBEq", 9); return x_1; } } -static lean_object* _init_l___regBuiltin_Fin_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1182____closed__2() { +static lean_object* _init_l___regBuiltin_Fin_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1056____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Fin_fromExpr_x3f___closed__4; -x_2 = l___regBuiltin_Fin_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1182____closed__1; +x_1 = l_Fin_reduceBin___lambda__1___closed__8; +x_2 = l___regBuiltin_Fin_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1056____closed__1; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Fin_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1182____closed__3() { +static lean_object* _init_l___regBuiltin_Fin_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1056____closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -7791,67 +6852,67 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Fin_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1182____closed__4() { +static lean_object* _init_l___regBuiltin_Fin_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1056____closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Fin_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_931____closed__4; -x_2 = l___regBuiltin_Fin_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1182____closed__3; +x_1 = l___regBuiltin_Fin_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_805____closed__4; +x_2 = l___regBuiltin_Fin_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1056____closed__3; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Fin_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1182____closed__5() { +static lean_object* _init_l___regBuiltin_Fin_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1056____closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Fin_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1182____closed__4; -x_2 = l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_725____closed__4; +x_1 = l___regBuiltin_Fin_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1056____closed__4; +x_2 = l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_595____closed__4; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Fin_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1182____closed__6() { +static lean_object* _init_l___regBuiltin_Fin_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1056____closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Fin_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1182____closed__5; +x_1 = l___regBuiltin_Fin_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1056____closed__5; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Fin_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1182____closed__7() { +static lean_object* _init_l___regBuiltin_Fin_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1056____closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Fin_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1182____closed__6; +x_1 = l___regBuiltin_Fin_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1056____closed__6; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Fin_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1182____closed__8() { +static lean_object* _init_l___regBuiltin_Fin_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1056____closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Fin_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1182____closed__7; +x_1 = l___regBuiltin_Fin_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1056____closed__7; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Fin_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1182____closed__9() { +static lean_object* _init_l___regBuiltin_Fin_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1056____closed__9() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Fin_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1182____closed__8; +x_1 = l___regBuiltin_Fin_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1056____closed__8; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Fin_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1182____closed__10() { +static lean_object* _init_l___regBuiltin_Fin_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1056____closed__10() { _start: { lean_object* x_1; @@ -7859,37 +6920,37 @@ x_1 = lean_alloc_closure((void*)(l_Fin_reduceBEq), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_Fin_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1182_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Fin_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1056_(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_Fin_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1182____closed__2; -x_3 = l___regBuiltin_Fin_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1182____closed__9; -x_4 = l___regBuiltin_Fin_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1182____closed__10; +x_2 = l___regBuiltin_Fin_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1056____closed__2; +x_3 = l___regBuiltin_Fin_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1056____closed__9; +x_4 = l___regBuiltin_Fin_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1056____closed__10; x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); return x_5; } } -LEAN_EXPORT lean_object* l___regBuiltin_Fin_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1184_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Fin_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1058_(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_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_727____closed__1; -x_3 = l___regBuiltin_Fin_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1182____closed__2; +x_2 = l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_597____closed__1; +x_3 = l___regBuiltin_Fin_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1056____closed__2; x_4 = 1; -x_5 = l___regBuiltin_Fin_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1182____closed__10; +x_5 = l___regBuiltin_Fin_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1056____closed__10; 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_Fin_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1186_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Fin_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1060_(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_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_729____closed__1; -x_3 = l___regBuiltin_Fin_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1182____closed__2; +x_2 = l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_599____closed__1; +x_3 = l___regBuiltin_Fin_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1056____closed__2; x_4 = 1; -x_5 = l___regBuiltin_Fin_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1182____closed__10; +x_5 = l___regBuiltin_Fin_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1056____closed__10; x_6 = l_Lean_Meta_Simp_addSimprocBuiltinAttrCore(x_2, x_3, x_4, x_5, x_1); return x_6; } @@ -7907,6 +6968,7 @@ lean_inc(x_8); lean_inc(x_7); lean_inc(x_6); x_13 = l_Fin_fromExpr_x3f(x_12, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_12); if (lean_obj_tag(x_13) == 0) { lean_object* x_14; @@ -7926,7 +6988,7 @@ if (x_15 == 0) lean_object* x_16; lean_object* x_17; x_16 = lean_ctor_get(x_13, 0); lean_dec(x_16); -x_17 = l_Fin_reduceBin___lambda__2___closed__1; +x_17 = l_Fin_reduceBin___lambda__1___closed__1; lean_ctor_set(x_13, 0, x_17); return x_13; } @@ -7936,7 +6998,7 @@ lean_object* x_18; lean_object* x_19; lean_object* x_20; x_18 = lean_ctor_get(x_13, 1); lean_inc(x_18); lean_dec(x_13); -x_19 = l_Fin_reduceBin___lambda__2___closed__1; +x_19 = l_Fin_reduceBin___lambda__1___closed__1; x_20 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_20, 0, x_19); lean_ctor_set(x_20, 1, x_18); @@ -7955,6 +7017,7 @@ lean_dec(x_14); x_23 = l_Lean_Expr_appArg_x21(x_1); lean_dec(x_1); x_24 = l_Fin_fromExpr_x3f(x_23, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_21); +lean_dec(x_23); if (lean_obj_tag(x_24) == 0) { lean_object* x_25; @@ -7970,7 +7033,7 @@ if (x_26 == 0) lean_object* x_27; lean_object* x_28; x_27 = lean_ctor_get(x_24, 0); lean_dec(x_27); -x_28 = l_Fin_reduceBin___lambda__2___closed__1; +x_28 = l_Fin_reduceBin___lambda__1___closed__1; lean_ctor_set(x_24, 0, x_28); return x_24; } @@ -7980,7 +7043,7 @@ lean_object* x_29; lean_object* x_30; lean_object* x_31; x_29 = lean_ctor_get(x_24, 1); lean_inc(x_29); lean_dec(x_24); -x_30 = l_Fin_reduceBin___lambda__2___closed__1; +x_30 = l_Fin_reduceBin___lambda__1___closed__1; x_31 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_31, 0, x_30); lean_ctor_set(x_31, 1, x_29); @@ -7999,10 +7062,10 @@ lean_dec(x_33); x_34 = lean_ctor_get(x_25, 0); lean_inc(x_34); lean_dec(x_25); -x_35 = lean_ctor_get(x_22, 2); +x_35 = lean_ctor_get(x_22, 1); lean_inc(x_35); lean_dec(x_22); -x_36 = lean_ctor_get(x_34, 2); +x_36 = lean_ctor_get(x_34, 1); lean_inc(x_36); lean_dec(x_34); x_37 = lean_nat_dec_eq(x_35, x_36); @@ -8032,10 +7095,10 @@ lean_dec(x_24); x_41 = lean_ctor_get(x_25, 0); lean_inc(x_41); lean_dec(x_25); -x_42 = lean_ctor_get(x_22, 2); +x_42 = lean_ctor_get(x_22, 1); lean_inc(x_42); lean_dec(x_22); -x_43 = lean_ctor_get(x_41, 2); +x_43 = lean_ctor_get(x_41, 1); lean_inc(x_43); lean_dec(x_41); x_44 = lean_nat_dec_eq(x_42, x_43); @@ -8152,7 +7215,7 @@ lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_13 = l_Fin_reduceBin___lambda__2___closed__1; +x_13 = l_Fin_reduceBin___lambda__1___closed__1; x_14 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_14, 0, x_13); lean_ctor_set(x_14, 1, x_9); @@ -8182,7 +7245,7 @@ lean_dec(x_2); return x_11; } } -static lean_object* _init_l___regBuiltin_Fin_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1223____closed__1() { +static lean_object* _init_l___regBuiltin_Fin_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1097____closed__1() { _start: { lean_object* x_1; @@ -8190,17 +7253,17 @@ x_1 = lean_mk_string_from_bytes("reduceBNe", 9); return x_1; } } -static lean_object* _init_l___regBuiltin_Fin_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1223____closed__2() { +static lean_object* _init_l___regBuiltin_Fin_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1097____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Fin_fromExpr_x3f___closed__4; -x_2 = l___regBuiltin_Fin_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1223____closed__1; +x_1 = l_Fin_reduceBin___lambda__1___closed__8; +x_2 = l___regBuiltin_Fin_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1097____closed__1; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Fin_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1223____closed__3() { +static lean_object* _init_l___regBuiltin_Fin_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1097____closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -8212,67 +7275,67 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Fin_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1223____closed__4() { +static lean_object* _init_l___regBuiltin_Fin_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1097____closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Fin_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_931____closed__4; -x_2 = l___regBuiltin_Fin_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1223____closed__3; +x_1 = l___regBuiltin_Fin_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_805____closed__4; +x_2 = l___regBuiltin_Fin_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1097____closed__3; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Fin_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1223____closed__5() { +static lean_object* _init_l___regBuiltin_Fin_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1097____closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Fin_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1223____closed__4; -x_2 = l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_725____closed__4; +x_1 = l___regBuiltin_Fin_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1097____closed__4; +x_2 = l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_595____closed__4; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Fin_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1223____closed__6() { +static lean_object* _init_l___regBuiltin_Fin_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1097____closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Fin_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1223____closed__5; +x_1 = l___regBuiltin_Fin_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1097____closed__5; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Fin_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1223____closed__7() { +static lean_object* _init_l___regBuiltin_Fin_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1097____closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Fin_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1223____closed__6; +x_1 = l___regBuiltin_Fin_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1097____closed__6; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Fin_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1223____closed__8() { +static lean_object* _init_l___regBuiltin_Fin_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1097____closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Fin_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1223____closed__7; +x_1 = l___regBuiltin_Fin_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1097____closed__7; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Fin_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1223____closed__9() { +static lean_object* _init_l___regBuiltin_Fin_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1097____closed__9() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Fin_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1223____closed__8; +x_1 = l___regBuiltin_Fin_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1097____closed__8; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Fin_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1223____closed__10() { +static lean_object* _init_l___regBuiltin_Fin_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1097____closed__10() { _start: { lean_object* x_1; @@ -8280,60 +7343,73 @@ x_1 = lean_alloc_closure((void*)(l_Fin_reduceBNe), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_Fin_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1223_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Fin_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1097_(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_Fin_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1223____closed__2; -x_3 = l___regBuiltin_Fin_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1223____closed__9; -x_4 = l___regBuiltin_Fin_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1223____closed__10; +x_2 = l___regBuiltin_Fin_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1097____closed__2; +x_3 = l___regBuiltin_Fin_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1097____closed__9; +x_4 = l___regBuiltin_Fin_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1097____closed__10; x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); return x_5; } } -LEAN_EXPORT lean_object* l___regBuiltin_Fin_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1225_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Fin_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1099_(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_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_727____closed__1; -x_3 = l___regBuiltin_Fin_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1223____closed__2; +x_2 = l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_597____closed__1; +x_3 = l___regBuiltin_Fin_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1097____closed__2; x_4 = 1; -x_5 = l___regBuiltin_Fin_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1223____closed__10; +x_5 = l___regBuiltin_Fin_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1097____closed__10; 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_Fin_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1227_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Fin_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1101_(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_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_729____closed__1; -x_3 = l___regBuiltin_Fin_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1223____closed__2; +x_2 = l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_599____closed__1; +x_3 = l___regBuiltin_Fin_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1097____closed__2; x_4 = 1; -x_5 = l___regBuiltin_Fin_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1223____closed__10; +x_5 = l___regBuiltin_Fin_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1097____closed__10; 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_Fin_isValue___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) { +LEAN_EXPORT lean_object* l_Fin_isValue___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, lean_object* x_11) { _start: { -lean_object* x_11; lean_object* x_12; uint32_t x_13; uint8_t x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; -x_11 = l_Fin_Value_toExpr(x_1); -x_12 = lean_box(0); -x_13 = 0; -x_14 = 1; -x_15 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_15, 0, x_11); -lean_ctor_set(x_15, 1, x_12); -lean_ctor_set_uint32(x_15, sizeof(void*)*2, x_13); -lean_ctor_set_uint8(x_15, sizeof(void*)*2 + 4, x_14); -x_16 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_16, 0, 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_10); -return x_17; +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; uint32_t x_24; uint8_t x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; +x_12 = l_Lean_mkRawNatLit(x_1); +lean_inc(x_2); +x_13 = l_Lean_mkNatLit(x_2); +x_14 = l_Fin_reduceBin___lambda__1___closed__10; +x_15 = l_Lean_Expr_app___override(x_14, x_13); +x_16 = lean_unsigned_to_nat(1u); +x_17 = lean_nat_sub(x_2, x_16); +lean_dec(x_2); +x_18 = l_Lean_mkNatLit(x_17); +x_19 = l_Fin_reduceBin___lambda__1___closed__13; +lean_inc(x_12); +x_20 = l_Lean_mkAppB(x_19, x_18, x_12); +x_21 = l_Fin_reduceBin___lambda__1___closed__7; +x_22 = l_Lean_mkApp3(x_21, x_15, x_12, x_20); +x_23 = lean_box(0); +x_24 = 0; +x_25 = 1; +x_26 = lean_alloc_ctor(0, 2, 5); +lean_ctor_set(x_26, 0, x_22); +lean_ctor_set(x_26, 1, x_23); +lean_ctor_set_uint32(x_26, sizeof(void*)*2, x_24); +lean_ctor_set_uint8(x_26, sizeof(void*)*2 + 4, x_25); +x_27 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_27, 0, x_26); +x_28 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_28, 0, x_27); +lean_ctor_set(x_28, 1, x_11); +return x_28; } } LEAN_EXPORT lean_object* l_Fin_isValue(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) { @@ -8344,8 +7420,7 @@ lean_inc(x_8); lean_inc(x_7); lean_inc(x_6); lean_inc(x_5); -lean_inc(x_1); -x_10 = l_Fin_fromExpr_x3f(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_10 = l_Lean_Meta_getFinValue_x3f(x_1, x_5, x_6, x_7, x_8, x_9); if (lean_obj_tag(x_10) == 0) { lean_object* x_11; @@ -8368,7 +7443,7 @@ if (x_12 == 0) lean_object* x_13; lean_object* x_14; x_13 = lean_ctor_get(x_10, 0); lean_dec(x_13); -x_14 = l_Fin_reduceBin___lambda__2___closed__1; +x_14 = l_Fin_reduceBin___lambda__1___closed__1; lean_ctor_set(x_10, 0, x_14); return x_10; } @@ -8378,7 +7453,7 @@ lean_object* x_15; lean_object* x_16; lean_object* x_17; x_15 = lean_ctor_get(x_10, 1); lean_inc(x_15); lean_dec(x_10); -x_16 = l_Fin_reduceBin___lambda__2___closed__1; +x_16 = l_Fin_reduceBin___lambda__1___closed__1; x_17 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_17, 0, x_16); lean_ctor_set(x_17, 1, x_15); @@ -8387,45 +7462,90 @@ return x_17; } else { -lean_object* x_18; uint8_t x_19; -x_18 = lean_ctor_get(x_10, 1); +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_11, 0); lean_inc(x_18); +lean_dec(x_11); +x_19 = lean_ctor_get(x_10, 1); +lean_inc(x_19); lean_dec(x_10); -x_19 = !lean_is_exclusive(x_11); -if (x_19 == 0) -{ -lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; -x_20 = lean_ctor_get(x_11, 0); +x_20 = lean_ctor_get(x_18, 0); +lean_inc(x_20); +x_21 = lean_ctor_get(x_18, 1); +lean_inc(x_21); +lean_dec(x_18); lean_inc(x_1); -x_21 = l_Lean_Expr_appFn_x21(x_1); -x_22 = l_Lean_Expr_appArg_x21(x_21); +x_22 = l_Lean_Expr_appFn_x21(x_1); +x_23 = l_Lean_Expr_appArg_x21(x_22); +lean_dec(x_22); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +x_24 = l_Lean_Meta_getNatValue_x3f(x_23, x_5, x_6, x_7, x_8, x_19); +if (lean_obj_tag(x_24) == 0) +{ +lean_object* x_25; +x_25 = lean_ctor_get(x_24, 0); +lean_inc(x_25); +if (lean_obj_tag(x_25) == 0) +{ +uint8_t x_26; lean_dec(x_21); -lean_inc(x_8); -lean_inc(x_7); -lean_inc(x_6); -x_23 = l_Nat_fromExpr_x3f(x_22, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_18); -if (lean_obj_tag(x_23) == 0) +lean_dec(x_20); +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); +x_26 = !lean_is_exclusive(x_24); +if (x_26 == 0) { -uint8_t x_24; -x_24 = !lean_is_exclusive(x_23); -if (x_24 == 0) +lean_object* x_27; lean_object* x_28; +x_27 = lean_ctor_get(x_24, 0); +lean_dec(x_27); +x_28 = l_Fin_reduceBin___lambda__1___closed__1; +lean_ctor_set(x_24, 0, x_28); +return x_24; +} +else { -lean_object* x_25; lean_object* x_26; lean_object* x_27; uint8_t x_28; -x_25 = lean_ctor_get(x_23, 0); -x_26 = lean_ctor_get(x_23, 1); -x_27 = lean_ctor_get(x_20, 2); -lean_inc(x_27); -lean_ctor_set(x_11, 0, x_27); -x_28 = l___private_Init_Data_Option_Basic_0__Option_beqOption____x40_Init_Data_Option_Basic___hyg_158____at___private_Lean_Meta_Basic_0__Lean_Meta_beqInfoCacheKey____x40_Lean_Meta_Basic___hyg_341____spec__1(x_11, x_25); +lean_object* x_29; lean_object* x_30; lean_object* x_31; +x_29 = lean_ctor_get(x_24, 1); +lean_inc(x_29); +lean_dec(x_24); +x_30 = l_Fin_reduceBin___lambda__1___closed__1; +x_31 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_31, 0, x_30); +lean_ctor_set(x_31, 1, x_29); +return x_31; +} +} +else +{ +uint8_t x_32; +x_32 = !lean_is_exclusive(x_24); +if (x_32 == 0) +{ +lean_object* x_33; lean_object* x_34; lean_object* x_35; uint8_t x_36; +x_33 = lean_ctor_get(x_24, 1); +x_34 = lean_ctor_get(x_24, 0); +lean_dec(x_34); +x_35 = lean_ctor_get(x_25, 0); +lean_inc(x_35); lean_dec(x_25); -lean_dec(x_11); -if (x_28 == 0) +x_36 = lean_nat_dec_eq(x_20, x_35); +lean_dec(x_35); +if (x_36 == 0) { -lean_object* x_29; lean_object* x_30; -lean_free_object(x_23); +lean_object* x_37; lean_object* x_38; +lean_free_object(x_24); lean_dec(x_1); -x_29 = lean_box(0); -x_30 = l_Fin_isValue___lambda__1(x_20, x_29, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_26); +x_37 = lean_box(0); +x_38 = l_Fin_isValue___lambda__1(x_21, x_20, x_37, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_33); lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); @@ -8433,11 +7553,12 @@ lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); -return x_30; +return x_38; } else { -lean_object* x_31; uint32_t x_32; uint8_t x_33; lean_object* x_34; lean_object* x_35; +lean_object* x_39; uint32_t x_40; uint8_t x_41; lean_object* x_42; lean_object* x_43; +lean_dec(x_21); lean_dec(x_20); lean_dec(x_8); lean_dec(x_7); @@ -8446,40 +7567,37 @@ lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); -x_31 = lean_box(0); -x_32 = 0; -x_33 = 1; -x_34 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_34, 0, x_1); -lean_ctor_set(x_34, 1, x_31); -lean_ctor_set_uint32(x_34, sizeof(void*)*2, x_32); -lean_ctor_set_uint8(x_34, sizeof(void*)*2 + 4, x_33); -x_35 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_35, 0, x_34); -lean_ctor_set(x_23, 0, x_35); -return x_23; +x_39 = lean_box(0); +x_40 = 0; +x_41 = 1; +x_42 = lean_alloc_ctor(0, 2, 5); +lean_ctor_set(x_42, 0, x_1); +lean_ctor_set(x_42, 1, x_39); +lean_ctor_set_uint32(x_42, sizeof(void*)*2, x_40); +lean_ctor_set_uint8(x_42, sizeof(void*)*2 + 4, x_41); +x_43 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_43, 0, x_42); +lean_ctor_set(x_24, 0, x_43); +return x_24; } } else { -lean_object* x_36; lean_object* x_37; lean_object* x_38; uint8_t x_39; -x_36 = lean_ctor_get(x_23, 0); -x_37 = lean_ctor_get(x_23, 1); -lean_inc(x_37); -lean_inc(x_36); -lean_dec(x_23); -x_38 = lean_ctor_get(x_20, 2); -lean_inc(x_38); -lean_ctor_set(x_11, 0, x_38); -x_39 = l___private_Init_Data_Option_Basic_0__Option_beqOption____x40_Init_Data_Option_Basic___hyg_158____at___private_Lean_Meta_Basic_0__Lean_Meta_beqInfoCacheKey____x40_Lean_Meta_Basic___hyg_341____spec__1(x_11, x_36); -lean_dec(x_36); -lean_dec(x_11); -if (x_39 == 0) +lean_object* x_44; lean_object* x_45; uint8_t x_46; +x_44 = lean_ctor_get(x_24, 1); +lean_inc(x_44); +lean_dec(x_24); +x_45 = lean_ctor_get(x_25, 0); +lean_inc(x_45); +lean_dec(x_25); +x_46 = lean_nat_dec_eq(x_20, x_45); +lean_dec(x_45); +if (x_46 == 0) { -lean_object* x_40; lean_object* x_41; +lean_object* x_47; lean_object* x_48; lean_dec(x_1); -x_40 = lean_box(0); -x_41 = l_Fin_isValue___lambda__1(x_20, x_40, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_37); +x_47 = lean_box(0); +x_48 = l_Fin_isValue___lambda__1(x_21, x_20, x_47, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_44); lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); @@ -8487,11 +7605,12 @@ lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); -return x_41; +return x_48; } else { -lean_object* x_42; uint32_t x_43; uint8_t x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; +lean_object* x_49; uint32_t x_50; uint8_t x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; +lean_dec(x_21); lean_dec(x_20); lean_dec(x_8); lean_dec(x_7); @@ -8500,27 +7619,28 @@ lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); -x_42 = lean_box(0); -x_43 = 0; -x_44 = 1; -x_45 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_45, 0, x_1); -lean_ctor_set(x_45, 1, x_42); -lean_ctor_set_uint32(x_45, sizeof(void*)*2, x_43); -lean_ctor_set_uint8(x_45, sizeof(void*)*2 + 4, x_44); -x_46 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_46, 0, x_45); -x_47 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_47, 0, x_46); -lean_ctor_set(x_47, 1, x_37); -return x_47; +x_49 = lean_box(0); +x_50 = 0; +x_51 = 1; +x_52 = lean_alloc_ctor(0, 2, 5); +lean_ctor_set(x_52, 0, x_1); +lean_ctor_set(x_52, 1, x_49); +lean_ctor_set_uint32(x_52, sizeof(void*)*2, x_50); +lean_ctor_set_uint8(x_52, sizeof(void*)*2 + 4, x_51); +x_53 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_53, 0, x_52); +x_54 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_54, 0, x_53); +lean_ctor_set(x_54, 1, x_44); +return x_54; +} } } } else { -uint8_t x_48; -lean_free_object(x_11); +uint8_t x_55; +lean_dec(x_21); lean_dec(x_20); lean_dec(x_8); lean_dec(x_7); @@ -8530,113 +7650,30 @@ lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_48 = !lean_is_exclusive(x_23); -if (x_48 == 0) +x_55 = !lean_is_exclusive(x_24); +if (x_55 == 0) { -return x_23; +return x_24; } else { -lean_object* x_49; lean_object* x_50; lean_object* x_51; -x_49 = lean_ctor_get(x_23, 0); -x_50 = lean_ctor_get(x_23, 1); -lean_inc(x_50); -lean_inc(x_49); -lean_dec(x_23); -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 -{ -lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; -x_52 = lean_ctor_get(x_11, 0); -lean_inc(x_52); -lean_dec(x_11); -lean_inc(x_1); -x_53 = l_Lean_Expr_appFn_x21(x_1); -x_54 = l_Lean_Expr_appArg_x21(x_53); -lean_dec(x_53); -lean_inc(x_8); -lean_inc(x_7); -lean_inc(x_6); -x_55 = l_Nat_fromExpr_x3f(x_54, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_18); -if (lean_obj_tag(x_55) == 0) -{ -lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; uint8_t x_61; -x_56 = lean_ctor_get(x_55, 0); -lean_inc(x_56); -x_57 = lean_ctor_get(x_55, 1); +lean_object* x_56; lean_object* x_57; lean_object* x_58; +x_56 = lean_ctor_get(x_24, 0); +x_57 = lean_ctor_get(x_24, 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_55); - x_58 = lean_box(0); +lean_inc(x_56); +lean_dec(x_24); +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; } -x_59 = lean_ctor_get(x_52, 2); -lean_inc(x_59); -x_60 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_60, 0, x_59); -x_61 = l___private_Init_Data_Option_Basic_0__Option_beqOption____x40_Init_Data_Option_Basic___hyg_158____at___private_Lean_Meta_Basic_0__Lean_Meta_beqInfoCacheKey____x40_Lean_Meta_Basic___hyg_341____spec__1(x_60, x_56); -lean_dec(x_56); -lean_dec(x_60); -if (x_61 == 0) -{ -lean_object* x_62; lean_object* x_63; -lean_dec(x_58); -lean_dec(x_1); -x_62 = lean_box(0); -x_63 = l_Fin_isValue___lambda__1(x_52, x_62, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_57); -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); -return x_63; } -else -{ -lean_object* x_64; uint32_t x_65; uint8_t x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; -lean_dec(x_52); -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); -x_64 = lean_box(0); -x_65 = 0; -x_66 = 1; -x_67 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_67, 0, x_1); -lean_ctor_set(x_67, 1, x_64); -lean_ctor_set_uint32(x_67, sizeof(void*)*2, x_65); -lean_ctor_set_uint8(x_67, sizeof(void*)*2 + 4, x_66); -x_68 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_68, 0, x_67); -if (lean_is_scalar(x_58)) { - x_69 = lean_alloc_ctor(0, 2, 0); -} else { - x_69 = x_58; -} -lean_ctor_set(x_69, 0, x_68); -lean_ctor_set(x_69, 1, x_57); -return x_69; } } else { -lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; -lean_dec(x_52); +uint8_t x_59; lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); @@ -8645,67 +7682,33 @@ lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_70 = lean_ctor_get(x_55, 0); -lean_inc(x_70); -x_71 = lean_ctor_get(x_55, 1); -lean_inc(x_71); -if (lean_is_exclusive(x_55)) { - lean_ctor_release(x_55, 0); - lean_ctor_release(x_55, 1); - x_72 = x_55; -} else { - lean_dec_ref(x_55); - x_72 = lean_box(0); -} -if (lean_is_scalar(x_72)) { - x_73 = lean_alloc_ctor(1, 2, 0); -} else { - x_73 = x_72; -} -lean_ctor_set(x_73, 0, x_70); -lean_ctor_set(x_73, 1, x_71); -return x_73; -} -} -} -} -else -{ -uint8_t x_74; -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); -x_74 = !lean_is_exclusive(x_10); -if (x_74 == 0) +x_59 = !lean_is_exclusive(x_10); +if (x_59 == 0) { return x_10; } else { -lean_object* x_75; lean_object* x_76; lean_object* x_77; -x_75 = lean_ctor_get(x_10, 0); -x_76 = lean_ctor_get(x_10, 1); -lean_inc(x_76); -lean_inc(x_75); +lean_object* x_60; lean_object* x_61; lean_object* x_62; +x_60 = lean_ctor_get(x_10, 0); +x_61 = lean_ctor_get(x_10, 1); +lean_inc(x_61); +lean_inc(x_60); lean_dec(x_10); -x_77 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_77, 0, x_75); -lean_ctor_set(x_77, 1, x_76); -return x_77; +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; } } } } -LEAN_EXPORT lean_object* l_Fin_isValue___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) { +LEAN_EXPORT lean_object* l_Fin_isValue___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, lean_object* x_11) { _start: { -lean_object* x_11; -x_11 = l_Fin_isValue___lambda__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_object* x_12; +x_12 = l_Fin_isValue___lambda__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); lean_dec(x_7); @@ -8713,11 +7716,10 @@ lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); -lean_dec(x_2); -return x_11; +return x_12; } } -static lean_object* _init_l___regBuiltin_Fin_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1355____closed__1() { +static lean_object* _init_l___regBuiltin_Fin_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1260____closed__1() { _start: { lean_object* x_1; @@ -8725,21 +7727,21 @@ x_1 = lean_mk_string_from_bytes("isValue", 7); return x_1; } } -static lean_object* _init_l___regBuiltin_Fin_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1355____closed__2() { +static lean_object* _init_l___regBuiltin_Fin_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1260____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Fin_fromExpr_x3f___closed__4; -x_2 = l___regBuiltin_Fin_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1355____closed__1; +x_1 = l_Fin_reduceBin___lambda__1___closed__8; +x_2 = l___regBuiltin_Fin_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1260____closed__1; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Fin_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1355____closed__3() { +static lean_object* _init_l___regBuiltin_Fin_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1260____closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Fin_fromExpr_x3f___closed__3; +x_1 = l_Fin_reduceBin___lambda__1___closed__4; x_2 = lean_unsigned_to_nat(3u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -8747,57 +7749,57 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Fin_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1355____closed__4() { +static lean_object* _init_l___regBuiltin_Fin_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1260____closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Fin_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1099____closed__4; -x_2 = l___regBuiltin_Fin_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1355____closed__3; +x_1 = l___regBuiltin_Fin_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_973____closed__4; +x_2 = l___regBuiltin_Fin_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1260____closed__3; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Fin_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1355____closed__5() { +static lean_object* _init_l___regBuiltin_Fin_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1260____closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Fin_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1355____closed__4; -x_2 = l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_725____closed__4; +x_1 = l___regBuiltin_Fin_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1260____closed__4; +x_2 = l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_595____closed__4; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Fin_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1355____closed__6() { +static lean_object* _init_l___regBuiltin_Fin_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1260____closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Fin_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1355____closed__5; +x_1 = l___regBuiltin_Fin_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1260____closed__5; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Fin_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1355____closed__7() { +static lean_object* _init_l___regBuiltin_Fin_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1260____closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Fin_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1355____closed__6; +x_1 = l___regBuiltin_Fin_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1260____closed__6; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Fin_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1355____closed__8() { +static lean_object* _init_l___regBuiltin_Fin_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1260____closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Fin_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1355____closed__7; +x_1 = l___regBuiltin_Fin_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1260____closed__7; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Fin_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1355____closed__9() { +static lean_object* _init_l___regBuiltin_Fin_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1260____closed__9() { _start: { lean_object* x_1; @@ -8805,42 +7807,43 @@ x_1 = lean_alloc_closure((void*)(l_Fin_isValue), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_Fin_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1355_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Fin_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1260_(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_Fin_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1355____closed__2; -x_3 = l___regBuiltin_Fin_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1355____closed__8; -x_4 = l___regBuiltin_Fin_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1355____closed__9; +x_2 = l___regBuiltin_Fin_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1260____closed__2; +x_3 = l___regBuiltin_Fin_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1260____closed__8; +x_4 = l___regBuiltin_Fin_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1260____closed__9; x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); return x_5; } } -LEAN_EXPORT lean_object* l___regBuiltin_Fin_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1357_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Fin_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1262_(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_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_727____closed__1; -x_3 = l___regBuiltin_Fin_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1355____closed__2; +x_2 = l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_597____closed__1; +x_3 = l___regBuiltin_Fin_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1260____closed__2; x_4 = 1; -x_5 = l___regBuiltin_Fin_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1355____closed__9; +x_5 = l___regBuiltin_Fin_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1260____closed__9; 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_Fin_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1359_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Fin_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1264_(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_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_729____closed__1; -x_3 = l___regBuiltin_Fin_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1355____closed__2; +x_2 = l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_599____closed__1; +x_3 = l___regBuiltin_Fin_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1260____closed__2; x_4 = 1; -x_5 = l___regBuiltin_Fin_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1355____closed__9; +x_5 = l___regBuiltin_Fin_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1260____closed__9; x_6 = l_Lean_Meta_Simp_addSimprocBuiltinAttrCore(x_2, x_3, x_4, x_5, x_1); return x_6; } } lean_object* initialize_Lean_ToExpr(uint8_t builtin, lean_object*); +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; LEAN_EXPORT lean_object* initialize_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin(uint8_t builtin, lean_object* w) { @@ -8850,29 +7853,38 @@ _G_initialized = true; res = initialize_Lean_ToExpr(builtin, lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +res = initialize_Lean_Meta_LitValues(builtin, lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); res = initialize_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat(builtin, lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -l_Fin_fromExpr_x3f___closed__1 = _init_l_Fin_fromExpr_x3f___closed__1(); -lean_mark_persistent(l_Fin_fromExpr_x3f___closed__1); -l_Fin_fromExpr_x3f___closed__2 = _init_l_Fin_fromExpr_x3f___closed__2(); -lean_mark_persistent(l_Fin_fromExpr_x3f___closed__2); -l_Fin_fromExpr_x3f___closed__3 = _init_l_Fin_fromExpr_x3f___closed__3(); -lean_mark_persistent(l_Fin_fromExpr_x3f___closed__3); -l_Fin_fromExpr_x3f___closed__4 = _init_l_Fin_fromExpr_x3f___closed__4(); -lean_mark_persistent(l_Fin_fromExpr_x3f___closed__4); -l_Fin_fromExpr_x3f___closed__5 = _init_l_Fin_fromExpr_x3f___closed__5(); -lean_mark_persistent(l_Fin_fromExpr_x3f___closed__5); -l_Fin_fromExpr_x3f___closed__6 = _init_l_Fin_fromExpr_x3f___closed__6(); -lean_mark_persistent(l_Fin_fromExpr_x3f___closed__6); -l_Fin_Value_toExpr___closed__1 = _init_l_Fin_Value_toExpr___closed__1(); -lean_mark_persistent(l_Fin_Value_toExpr___closed__1); -l_Fin_Value_toExpr___closed__2 = _init_l_Fin_Value_toExpr___closed__2(); -lean_mark_persistent(l_Fin_Value_toExpr___closed__2); -l_Fin_Value_toExpr___closed__3 = _init_l_Fin_Value_toExpr___closed__3(); -lean_mark_persistent(l_Fin_Value_toExpr___closed__3); -l_Fin_reduceBin___lambda__2___closed__1 = _init_l_Fin_reduceBin___lambda__2___closed__1(); -lean_mark_persistent(l_Fin_reduceBin___lambda__2___closed__1); +l_Fin_reduceBin___lambda__1___closed__1 = _init_l_Fin_reduceBin___lambda__1___closed__1(); +lean_mark_persistent(l_Fin_reduceBin___lambda__1___closed__1); +l_Fin_reduceBin___lambda__1___closed__2 = _init_l_Fin_reduceBin___lambda__1___closed__2(); +lean_mark_persistent(l_Fin_reduceBin___lambda__1___closed__2); +l_Fin_reduceBin___lambda__1___closed__3 = _init_l_Fin_reduceBin___lambda__1___closed__3(); +lean_mark_persistent(l_Fin_reduceBin___lambda__1___closed__3); +l_Fin_reduceBin___lambda__1___closed__4 = _init_l_Fin_reduceBin___lambda__1___closed__4(); +lean_mark_persistent(l_Fin_reduceBin___lambda__1___closed__4); +l_Fin_reduceBin___lambda__1___closed__5 = _init_l_Fin_reduceBin___lambda__1___closed__5(); +lean_mark_persistent(l_Fin_reduceBin___lambda__1___closed__5); +l_Fin_reduceBin___lambda__1___closed__6 = _init_l_Fin_reduceBin___lambda__1___closed__6(); +lean_mark_persistent(l_Fin_reduceBin___lambda__1___closed__6); +l_Fin_reduceBin___lambda__1___closed__7 = _init_l_Fin_reduceBin___lambda__1___closed__7(); +lean_mark_persistent(l_Fin_reduceBin___lambda__1___closed__7); +l_Fin_reduceBin___lambda__1___closed__8 = _init_l_Fin_reduceBin___lambda__1___closed__8(); +lean_mark_persistent(l_Fin_reduceBin___lambda__1___closed__8); +l_Fin_reduceBin___lambda__1___closed__9 = _init_l_Fin_reduceBin___lambda__1___closed__9(); +lean_mark_persistent(l_Fin_reduceBin___lambda__1___closed__9); +l_Fin_reduceBin___lambda__1___closed__10 = _init_l_Fin_reduceBin___lambda__1___closed__10(); +lean_mark_persistent(l_Fin_reduceBin___lambda__1___closed__10); +l_Fin_reduceBin___lambda__1___closed__11 = _init_l_Fin_reduceBin___lambda__1___closed__11(); +lean_mark_persistent(l_Fin_reduceBin___lambda__1___closed__11); +l_Fin_reduceBin___lambda__1___closed__12 = _init_l_Fin_reduceBin___lambda__1___closed__12(); +lean_mark_persistent(l_Fin_reduceBin___lambda__1___closed__12); +l_Fin_reduceBin___lambda__1___closed__13 = _init_l_Fin_reduceBin___lambda__1___closed__13(); +lean_mark_persistent(l_Fin_reduceBin___lambda__1___closed__13); l_Fin_reduceBoolPred___lambda__1___closed__1 = _init_l_Fin_reduceBoolPred___lambda__1___closed__1(); lean_mark_persistent(l_Fin_reduceBoolPred___lambda__1___closed__1); l_Fin_reduceBoolPred___lambda__1___closed__2 = _init_l_Fin_reduceBoolPred___lambda__1___closed__2(); @@ -8901,49 +7913,49 @@ l_Fin_reduceAdd___closed__2 = _init_l_Fin_reduceAdd___closed__2(); lean_mark_persistent(l_Fin_reduceAdd___closed__2); l_Fin_reduceAdd___closed__3 = _init_l_Fin_reduceAdd___closed__3(); lean_mark_persistent(l_Fin_reduceAdd___closed__3); -l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_725____closed__1 = _init_l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_725____closed__1(); -lean_mark_persistent(l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_725____closed__1); -l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_725____closed__2 = _init_l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_725____closed__2(); -lean_mark_persistent(l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_725____closed__2); -l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_725____closed__3 = _init_l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_725____closed__3(); -lean_mark_persistent(l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_725____closed__3); -l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_725____closed__4 = _init_l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_725____closed__4(); -lean_mark_persistent(l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_725____closed__4); -l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_725____closed__5 = _init_l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_725____closed__5(); -lean_mark_persistent(l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_725____closed__5); -l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_725____closed__6 = _init_l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_725____closed__6(); -lean_mark_persistent(l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_725____closed__6); -l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_725____closed__7 = _init_l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_725____closed__7(); -lean_mark_persistent(l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_725____closed__7); -l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_725____closed__8 = _init_l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_725____closed__8(); -lean_mark_persistent(l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_725____closed__8); -l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_725____closed__9 = _init_l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_725____closed__9(); -lean_mark_persistent(l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_725____closed__9); -l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_725____closed__10 = _init_l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_725____closed__10(); -lean_mark_persistent(l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_725____closed__10); -l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_725____closed__11 = _init_l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_725____closed__11(); -lean_mark_persistent(l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_725____closed__11); -l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_725____closed__12 = _init_l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_725____closed__12(); -lean_mark_persistent(l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_725____closed__12); -l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_725____closed__13 = _init_l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_725____closed__13(); -lean_mark_persistent(l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_725____closed__13); -l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_725____closed__14 = _init_l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_725____closed__14(); -lean_mark_persistent(l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_725____closed__14); -l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_725____closed__15 = _init_l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_725____closed__15(); -lean_mark_persistent(l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_725____closed__15); -l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_725____closed__16 = _init_l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_725____closed__16(); -lean_mark_persistent(l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_725____closed__16); -if (builtin) {res = l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_725_(lean_io_mk_world()); +l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_595____closed__1 = _init_l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_595____closed__1(); +lean_mark_persistent(l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_595____closed__1); +l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_595____closed__2 = _init_l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_595____closed__2(); +lean_mark_persistent(l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_595____closed__2); +l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_595____closed__3 = _init_l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_595____closed__3(); +lean_mark_persistent(l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_595____closed__3); +l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_595____closed__4 = _init_l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_595____closed__4(); +lean_mark_persistent(l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_595____closed__4); +l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_595____closed__5 = _init_l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_595____closed__5(); +lean_mark_persistent(l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_595____closed__5); +l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_595____closed__6 = _init_l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_595____closed__6(); +lean_mark_persistent(l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_595____closed__6); +l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_595____closed__7 = _init_l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_595____closed__7(); +lean_mark_persistent(l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_595____closed__7); +l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_595____closed__8 = _init_l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_595____closed__8(); +lean_mark_persistent(l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_595____closed__8); +l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_595____closed__9 = _init_l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_595____closed__9(); +lean_mark_persistent(l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_595____closed__9); +l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_595____closed__10 = _init_l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_595____closed__10(); +lean_mark_persistent(l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_595____closed__10); +l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_595____closed__11 = _init_l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_595____closed__11(); +lean_mark_persistent(l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_595____closed__11); +l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_595____closed__12 = _init_l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_595____closed__12(); +lean_mark_persistent(l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_595____closed__12); +l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_595____closed__13 = _init_l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_595____closed__13(); +lean_mark_persistent(l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_595____closed__13); +l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_595____closed__14 = _init_l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_595____closed__14(); +lean_mark_persistent(l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_595____closed__14); +l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_595____closed__15 = _init_l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_595____closed__15(); +lean_mark_persistent(l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_595____closed__15); +l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_595____closed__16 = _init_l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_595____closed__16(); +lean_mark_persistent(l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_595____closed__16); +if (builtin) {res = l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_595_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_727____closed__1 = _init_l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_727____closed__1(); -lean_mark_persistent(l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_727____closed__1); -if (builtin) {res = l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_727_(lean_io_mk_world()); +}l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_597____closed__1 = _init_l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_597____closed__1(); +lean_mark_persistent(l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_597____closed__1); +if (builtin) {res = l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_597_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_729____closed__1 = _init_l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_729____closed__1(); -lean_mark_persistent(l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_729____closed__1); -if (builtin) {res = l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_729_(lean_io_mk_world()); +}l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_599____closed__1 = _init_l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_599____closed__1(); +lean_mark_persistent(l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_599____closed__1); +if (builtin) {res = l___regBuiltin_Fin_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_599_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); }l_Fin_reduceMul___closed__1 = _init_l_Fin_reduceMul___closed__1(); @@ -8952,41 +7964,41 @@ l_Fin_reduceMul___closed__2 = _init_l_Fin_reduceMul___closed__2(); lean_mark_persistent(l_Fin_reduceMul___closed__2); l_Fin_reduceMul___closed__3 = _init_l_Fin_reduceMul___closed__3(); lean_mark_persistent(l_Fin_reduceMul___closed__3); -l___regBuiltin_Fin_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_766____closed__1 = _init_l___regBuiltin_Fin_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_766____closed__1(); -lean_mark_persistent(l___regBuiltin_Fin_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_766____closed__1); -l___regBuiltin_Fin_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_766____closed__2 = _init_l___regBuiltin_Fin_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_766____closed__2(); -lean_mark_persistent(l___regBuiltin_Fin_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_766____closed__2); -l___regBuiltin_Fin_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_766____closed__3 = _init_l___regBuiltin_Fin_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_766____closed__3(); -lean_mark_persistent(l___regBuiltin_Fin_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_766____closed__3); -l___regBuiltin_Fin_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_766____closed__4 = _init_l___regBuiltin_Fin_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_766____closed__4(); -lean_mark_persistent(l___regBuiltin_Fin_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_766____closed__4); -l___regBuiltin_Fin_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_766____closed__5 = _init_l___regBuiltin_Fin_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_766____closed__5(); -lean_mark_persistent(l___regBuiltin_Fin_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_766____closed__5); -l___regBuiltin_Fin_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_766____closed__6 = _init_l___regBuiltin_Fin_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_766____closed__6(); -lean_mark_persistent(l___regBuiltin_Fin_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_766____closed__6); -l___regBuiltin_Fin_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_766____closed__7 = _init_l___regBuiltin_Fin_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_766____closed__7(); -lean_mark_persistent(l___regBuiltin_Fin_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_766____closed__7); -l___regBuiltin_Fin_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_766____closed__8 = _init_l___regBuiltin_Fin_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_766____closed__8(); -lean_mark_persistent(l___regBuiltin_Fin_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_766____closed__8); -l___regBuiltin_Fin_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_766____closed__9 = _init_l___regBuiltin_Fin_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_766____closed__9(); -lean_mark_persistent(l___regBuiltin_Fin_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_766____closed__9); -l___regBuiltin_Fin_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_766____closed__10 = _init_l___regBuiltin_Fin_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_766____closed__10(); -lean_mark_persistent(l___regBuiltin_Fin_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_766____closed__10); -l___regBuiltin_Fin_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_766____closed__11 = _init_l___regBuiltin_Fin_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_766____closed__11(); -lean_mark_persistent(l___regBuiltin_Fin_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_766____closed__11); -l___regBuiltin_Fin_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_766____closed__12 = _init_l___regBuiltin_Fin_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_766____closed__12(); -lean_mark_persistent(l___regBuiltin_Fin_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_766____closed__12); -l___regBuiltin_Fin_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_766____closed__13 = _init_l___regBuiltin_Fin_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_766____closed__13(); -lean_mark_persistent(l___regBuiltin_Fin_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_766____closed__13); -l___regBuiltin_Fin_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_766____closed__14 = _init_l___regBuiltin_Fin_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_766____closed__14(); -lean_mark_persistent(l___regBuiltin_Fin_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_766____closed__14); -if (builtin) {res = l___regBuiltin_Fin_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_766_(lean_io_mk_world()); +l___regBuiltin_Fin_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_637____closed__1 = _init_l___regBuiltin_Fin_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_637____closed__1(); +lean_mark_persistent(l___regBuiltin_Fin_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_637____closed__1); +l___regBuiltin_Fin_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_637____closed__2 = _init_l___regBuiltin_Fin_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_637____closed__2(); +lean_mark_persistent(l___regBuiltin_Fin_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_637____closed__2); +l___regBuiltin_Fin_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_637____closed__3 = _init_l___regBuiltin_Fin_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_637____closed__3(); +lean_mark_persistent(l___regBuiltin_Fin_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_637____closed__3); +l___regBuiltin_Fin_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_637____closed__4 = _init_l___regBuiltin_Fin_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_637____closed__4(); +lean_mark_persistent(l___regBuiltin_Fin_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_637____closed__4); +l___regBuiltin_Fin_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_637____closed__5 = _init_l___regBuiltin_Fin_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_637____closed__5(); +lean_mark_persistent(l___regBuiltin_Fin_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_637____closed__5); +l___regBuiltin_Fin_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_637____closed__6 = _init_l___regBuiltin_Fin_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_637____closed__6(); +lean_mark_persistent(l___regBuiltin_Fin_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_637____closed__6); +l___regBuiltin_Fin_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_637____closed__7 = _init_l___regBuiltin_Fin_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_637____closed__7(); +lean_mark_persistent(l___regBuiltin_Fin_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_637____closed__7); +l___regBuiltin_Fin_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_637____closed__8 = _init_l___regBuiltin_Fin_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_637____closed__8(); +lean_mark_persistent(l___regBuiltin_Fin_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_637____closed__8); +l___regBuiltin_Fin_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_637____closed__9 = _init_l___regBuiltin_Fin_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_637____closed__9(); +lean_mark_persistent(l___regBuiltin_Fin_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_637____closed__9); +l___regBuiltin_Fin_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_637____closed__10 = _init_l___regBuiltin_Fin_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_637____closed__10(); +lean_mark_persistent(l___regBuiltin_Fin_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_637____closed__10); +l___regBuiltin_Fin_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_637____closed__11 = _init_l___regBuiltin_Fin_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_637____closed__11(); +lean_mark_persistent(l___regBuiltin_Fin_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_637____closed__11); +l___regBuiltin_Fin_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_637____closed__12 = _init_l___regBuiltin_Fin_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_637____closed__12(); +lean_mark_persistent(l___regBuiltin_Fin_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_637____closed__12); +l___regBuiltin_Fin_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_637____closed__13 = _init_l___regBuiltin_Fin_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_637____closed__13(); +lean_mark_persistent(l___regBuiltin_Fin_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_637____closed__13); +l___regBuiltin_Fin_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_637____closed__14 = _init_l___regBuiltin_Fin_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_637____closed__14(); +lean_mark_persistent(l___regBuiltin_Fin_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_637____closed__14); +if (builtin) {res = l___regBuiltin_Fin_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_637_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Fin_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_768_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_Fin_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_639_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Fin_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_770_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_Fin_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_641_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); }l_Fin_reduceSub___closed__1 = _init_l_Fin_reduceSub___closed__1(); @@ -8995,41 +8007,41 @@ l_Fin_reduceSub___closed__2 = _init_l_Fin_reduceSub___closed__2(); lean_mark_persistent(l_Fin_reduceSub___closed__2); l_Fin_reduceSub___closed__3 = _init_l_Fin_reduceSub___closed__3(); lean_mark_persistent(l_Fin_reduceSub___closed__3); -l___regBuiltin_Fin_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_807____closed__1 = _init_l___regBuiltin_Fin_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_807____closed__1(); -lean_mark_persistent(l___regBuiltin_Fin_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_807____closed__1); -l___regBuiltin_Fin_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_807____closed__2 = _init_l___regBuiltin_Fin_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_807____closed__2(); -lean_mark_persistent(l___regBuiltin_Fin_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_807____closed__2); -l___regBuiltin_Fin_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_807____closed__3 = _init_l___regBuiltin_Fin_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_807____closed__3(); -lean_mark_persistent(l___regBuiltin_Fin_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_807____closed__3); -l___regBuiltin_Fin_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_807____closed__4 = _init_l___regBuiltin_Fin_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_807____closed__4(); -lean_mark_persistent(l___regBuiltin_Fin_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_807____closed__4); -l___regBuiltin_Fin_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_807____closed__5 = _init_l___regBuiltin_Fin_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_807____closed__5(); -lean_mark_persistent(l___regBuiltin_Fin_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_807____closed__5); -l___regBuiltin_Fin_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_807____closed__6 = _init_l___regBuiltin_Fin_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_807____closed__6(); -lean_mark_persistent(l___regBuiltin_Fin_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_807____closed__6); -l___regBuiltin_Fin_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_807____closed__7 = _init_l___regBuiltin_Fin_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_807____closed__7(); -lean_mark_persistent(l___regBuiltin_Fin_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_807____closed__7); -l___regBuiltin_Fin_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_807____closed__8 = _init_l___regBuiltin_Fin_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_807____closed__8(); -lean_mark_persistent(l___regBuiltin_Fin_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_807____closed__8); -l___regBuiltin_Fin_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_807____closed__9 = _init_l___regBuiltin_Fin_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_807____closed__9(); -lean_mark_persistent(l___regBuiltin_Fin_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_807____closed__9); -l___regBuiltin_Fin_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_807____closed__10 = _init_l___regBuiltin_Fin_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_807____closed__10(); -lean_mark_persistent(l___regBuiltin_Fin_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_807____closed__10); -l___regBuiltin_Fin_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_807____closed__11 = _init_l___regBuiltin_Fin_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_807____closed__11(); -lean_mark_persistent(l___regBuiltin_Fin_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_807____closed__11); -l___regBuiltin_Fin_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_807____closed__12 = _init_l___regBuiltin_Fin_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_807____closed__12(); -lean_mark_persistent(l___regBuiltin_Fin_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_807____closed__12); -l___regBuiltin_Fin_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_807____closed__13 = _init_l___regBuiltin_Fin_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_807____closed__13(); -lean_mark_persistent(l___regBuiltin_Fin_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_807____closed__13); -l___regBuiltin_Fin_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_807____closed__14 = _init_l___regBuiltin_Fin_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_807____closed__14(); -lean_mark_persistent(l___regBuiltin_Fin_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_807____closed__14); -if (builtin) {res = l___regBuiltin_Fin_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_807_(lean_io_mk_world()); +l___regBuiltin_Fin_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_679____closed__1 = _init_l___regBuiltin_Fin_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_679____closed__1(); +lean_mark_persistent(l___regBuiltin_Fin_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_679____closed__1); +l___regBuiltin_Fin_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_679____closed__2 = _init_l___regBuiltin_Fin_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_679____closed__2(); +lean_mark_persistent(l___regBuiltin_Fin_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_679____closed__2); +l___regBuiltin_Fin_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_679____closed__3 = _init_l___regBuiltin_Fin_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_679____closed__3(); +lean_mark_persistent(l___regBuiltin_Fin_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_679____closed__3); +l___regBuiltin_Fin_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_679____closed__4 = _init_l___regBuiltin_Fin_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_679____closed__4(); +lean_mark_persistent(l___regBuiltin_Fin_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_679____closed__4); +l___regBuiltin_Fin_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_679____closed__5 = _init_l___regBuiltin_Fin_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_679____closed__5(); +lean_mark_persistent(l___regBuiltin_Fin_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_679____closed__5); +l___regBuiltin_Fin_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_679____closed__6 = _init_l___regBuiltin_Fin_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_679____closed__6(); +lean_mark_persistent(l___regBuiltin_Fin_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_679____closed__6); +l___regBuiltin_Fin_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_679____closed__7 = _init_l___regBuiltin_Fin_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_679____closed__7(); +lean_mark_persistent(l___regBuiltin_Fin_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_679____closed__7); +l___regBuiltin_Fin_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_679____closed__8 = _init_l___regBuiltin_Fin_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_679____closed__8(); +lean_mark_persistent(l___regBuiltin_Fin_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_679____closed__8); +l___regBuiltin_Fin_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_679____closed__9 = _init_l___regBuiltin_Fin_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_679____closed__9(); +lean_mark_persistent(l___regBuiltin_Fin_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_679____closed__9); +l___regBuiltin_Fin_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_679____closed__10 = _init_l___regBuiltin_Fin_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_679____closed__10(); +lean_mark_persistent(l___regBuiltin_Fin_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_679____closed__10); +l___regBuiltin_Fin_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_679____closed__11 = _init_l___regBuiltin_Fin_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_679____closed__11(); +lean_mark_persistent(l___regBuiltin_Fin_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_679____closed__11); +l___regBuiltin_Fin_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_679____closed__12 = _init_l___regBuiltin_Fin_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_679____closed__12(); +lean_mark_persistent(l___regBuiltin_Fin_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_679____closed__12); +l___regBuiltin_Fin_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_679____closed__13 = _init_l___regBuiltin_Fin_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_679____closed__13(); +lean_mark_persistent(l___regBuiltin_Fin_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_679____closed__13); +l___regBuiltin_Fin_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_679____closed__14 = _init_l___regBuiltin_Fin_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_679____closed__14(); +lean_mark_persistent(l___regBuiltin_Fin_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_679____closed__14); +if (builtin) {res = l___regBuiltin_Fin_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_679_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Fin_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_809_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_Fin_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_681_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Fin_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_811_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_Fin_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_683_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); }l_Fin_reduceDiv___closed__1 = _init_l_Fin_reduceDiv___closed__1(); @@ -9038,41 +8050,41 @@ l_Fin_reduceDiv___closed__2 = _init_l_Fin_reduceDiv___closed__2(); lean_mark_persistent(l_Fin_reduceDiv___closed__2); l_Fin_reduceDiv___closed__3 = _init_l_Fin_reduceDiv___closed__3(); lean_mark_persistent(l_Fin_reduceDiv___closed__3); -l___regBuiltin_Fin_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_848____closed__1 = _init_l___regBuiltin_Fin_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_848____closed__1(); -lean_mark_persistent(l___regBuiltin_Fin_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_848____closed__1); -l___regBuiltin_Fin_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_848____closed__2 = _init_l___regBuiltin_Fin_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_848____closed__2(); -lean_mark_persistent(l___regBuiltin_Fin_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_848____closed__2); -l___regBuiltin_Fin_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_848____closed__3 = _init_l___regBuiltin_Fin_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_848____closed__3(); -lean_mark_persistent(l___regBuiltin_Fin_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_848____closed__3); -l___regBuiltin_Fin_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_848____closed__4 = _init_l___regBuiltin_Fin_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_848____closed__4(); -lean_mark_persistent(l___regBuiltin_Fin_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_848____closed__4); -l___regBuiltin_Fin_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_848____closed__5 = _init_l___regBuiltin_Fin_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_848____closed__5(); -lean_mark_persistent(l___regBuiltin_Fin_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_848____closed__5); -l___regBuiltin_Fin_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_848____closed__6 = _init_l___regBuiltin_Fin_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_848____closed__6(); -lean_mark_persistent(l___regBuiltin_Fin_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_848____closed__6); -l___regBuiltin_Fin_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_848____closed__7 = _init_l___regBuiltin_Fin_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_848____closed__7(); -lean_mark_persistent(l___regBuiltin_Fin_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_848____closed__7); -l___regBuiltin_Fin_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_848____closed__8 = _init_l___regBuiltin_Fin_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_848____closed__8(); -lean_mark_persistent(l___regBuiltin_Fin_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_848____closed__8); -l___regBuiltin_Fin_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_848____closed__9 = _init_l___regBuiltin_Fin_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_848____closed__9(); -lean_mark_persistent(l___regBuiltin_Fin_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_848____closed__9); -l___regBuiltin_Fin_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_848____closed__10 = _init_l___regBuiltin_Fin_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_848____closed__10(); -lean_mark_persistent(l___regBuiltin_Fin_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_848____closed__10); -l___regBuiltin_Fin_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_848____closed__11 = _init_l___regBuiltin_Fin_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_848____closed__11(); -lean_mark_persistent(l___regBuiltin_Fin_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_848____closed__11); -l___regBuiltin_Fin_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_848____closed__12 = _init_l___regBuiltin_Fin_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_848____closed__12(); -lean_mark_persistent(l___regBuiltin_Fin_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_848____closed__12); -l___regBuiltin_Fin_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_848____closed__13 = _init_l___regBuiltin_Fin_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_848____closed__13(); -lean_mark_persistent(l___regBuiltin_Fin_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_848____closed__13); -l___regBuiltin_Fin_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_848____closed__14 = _init_l___regBuiltin_Fin_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_848____closed__14(); -lean_mark_persistent(l___regBuiltin_Fin_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_848____closed__14); -if (builtin) {res = l___regBuiltin_Fin_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_848_(lean_io_mk_world()); +l___regBuiltin_Fin_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_721____closed__1 = _init_l___regBuiltin_Fin_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_721____closed__1(); +lean_mark_persistent(l___regBuiltin_Fin_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_721____closed__1); +l___regBuiltin_Fin_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_721____closed__2 = _init_l___regBuiltin_Fin_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_721____closed__2(); +lean_mark_persistent(l___regBuiltin_Fin_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_721____closed__2); +l___regBuiltin_Fin_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_721____closed__3 = _init_l___regBuiltin_Fin_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_721____closed__3(); +lean_mark_persistent(l___regBuiltin_Fin_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_721____closed__3); +l___regBuiltin_Fin_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_721____closed__4 = _init_l___regBuiltin_Fin_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_721____closed__4(); +lean_mark_persistent(l___regBuiltin_Fin_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_721____closed__4); +l___regBuiltin_Fin_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_721____closed__5 = _init_l___regBuiltin_Fin_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_721____closed__5(); +lean_mark_persistent(l___regBuiltin_Fin_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_721____closed__5); +l___regBuiltin_Fin_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_721____closed__6 = _init_l___regBuiltin_Fin_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_721____closed__6(); +lean_mark_persistent(l___regBuiltin_Fin_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_721____closed__6); +l___regBuiltin_Fin_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_721____closed__7 = _init_l___regBuiltin_Fin_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_721____closed__7(); +lean_mark_persistent(l___regBuiltin_Fin_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_721____closed__7); +l___regBuiltin_Fin_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_721____closed__8 = _init_l___regBuiltin_Fin_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_721____closed__8(); +lean_mark_persistent(l___regBuiltin_Fin_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_721____closed__8); +l___regBuiltin_Fin_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_721____closed__9 = _init_l___regBuiltin_Fin_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_721____closed__9(); +lean_mark_persistent(l___regBuiltin_Fin_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_721____closed__9); +l___regBuiltin_Fin_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_721____closed__10 = _init_l___regBuiltin_Fin_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_721____closed__10(); +lean_mark_persistent(l___regBuiltin_Fin_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_721____closed__10); +l___regBuiltin_Fin_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_721____closed__11 = _init_l___regBuiltin_Fin_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_721____closed__11(); +lean_mark_persistent(l___regBuiltin_Fin_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_721____closed__11); +l___regBuiltin_Fin_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_721____closed__12 = _init_l___regBuiltin_Fin_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_721____closed__12(); +lean_mark_persistent(l___regBuiltin_Fin_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_721____closed__12); +l___regBuiltin_Fin_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_721____closed__13 = _init_l___regBuiltin_Fin_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_721____closed__13(); +lean_mark_persistent(l___regBuiltin_Fin_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_721____closed__13); +l___regBuiltin_Fin_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_721____closed__14 = _init_l___regBuiltin_Fin_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_721____closed__14(); +lean_mark_persistent(l___regBuiltin_Fin_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_721____closed__14); +if (builtin) {res = l___regBuiltin_Fin_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_721_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Fin_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_850_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_Fin_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_723_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Fin_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_852_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_Fin_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_725_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); }l_Fin_reduceMod___closed__1 = _init_l_Fin_reduceMod___closed__1(); @@ -9081,41 +8093,41 @@ l_Fin_reduceMod___closed__2 = _init_l_Fin_reduceMod___closed__2(); lean_mark_persistent(l_Fin_reduceMod___closed__2); l_Fin_reduceMod___closed__3 = _init_l_Fin_reduceMod___closed__3(); lean_mark_persistent(l_Fin_reduceMod___closed__3); -l___regBuiltin_Fin_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_889____closed__1 = _init_l___regBuiltin_Fin_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_889____closed__1(); -lean_mark_persistent(l___regBuiltin_Fin_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_889____closed__1); -l___regBuiltin_Fin_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_889____closed__2 = _init_l___regBuiltin_Fin_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_889____closed__2(); -lean_mark_persistent(l___regBuiltin_Fin_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_889____closed__2); -l___regBuiltin_Fin_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_889____closed__3 = _init_l___regBuiltin_Fin_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_889____closed__3(); -lean_mark_persistent(l___regBuiltin_Fin_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_889____closed__3); -l___regBuiltin_Fin_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_889____closed__4 = _init_l___regBuiltin_Fin_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_889____closed__4(); -lean_mark_persistent(l___regBuiltin_Fin_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_889____closed__4); -l___regBuiltin_Fin_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_889____closed__5 = _init_l___regBuiltin_Fin_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_889____closed__5(); -lean_mark_persistent(l___regBuiltin_Fin_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_889____closed__5); -l___regBuiltin_Fin_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_889____closed__6 = _init_l___regBuiltin_Fin_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_889____closed__6(); -lean_mark_persistent(l___regBuiltin_Fin_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_889____closed__6); -l___regBuiltin_Fin_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_889____closed__7 = _init_l___regBuiltin_Fin_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_889____closed__7(); -lean_mark_persistent(l___regBuiltin_Fin_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_889____closed__7); -l___regBuiltin_Fin_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_889____closed__8 = _init_l___regBuiltin_Fin_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_889____closed__8(); -lean_mark_persistent(l___regBuiltin_Fin_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_889____closed__8); -l___regBuiltin_Fin_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_889____closed__9 = _init_l___regBuiltin_Fin_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_889____closed__9(); -lean_mark_persistent(l___regBuiltin_Fin_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_889____closed__9); -l___regBuiltin_Fin_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_889____closed__10 = _init_l___regBuiltin_Fin_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_889____closed__10(); -lean_mark_persistent(l___regBuiltin_Fin_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_889____closed__10); -l___regBuiltin_Fin_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_889____closed__11 = _init_l___regBuiltin_Fin_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_889____closed__11(); -lean_mark_persistent(l___regBuiltin_Fin_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_889____closed__11); -l___regBuiltin_Fin_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_889____closed__12 = _init_l___regBuiltin_Fin_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_889____closed__12(); -lean_mark_persistent(l___regBuiltin_Fin_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_889____closed__12); -l___regBuiltin_Fin_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_889____closed__13 = _init_l___regBuiltin_Fin_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_889____closed__13(); -lean_mark_persistent(l___regBuiltin_Fin_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_889____closed__13); -l___regBuiltin_Fin_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_889____closed__14 = _init_l___regBuiltin_Fin_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_889____closed__14(); -lean_mark_persistent(l___regBuiltin_Fin_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_889____closed__14); -if (builtin) {res = l___regBuiltin_Fin_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_889_(lean_io_mk_world()); +l___regBuiltin_Fin_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_763____closed__1 = _init_l___regBuiltin_Fin_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_763____closed__1(); +lean_mark_persistent(l___regBuiltin_Fin_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_763____closed__1); +l___regBuiltin_Fin_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_763____closed__2 = _init_l___regBuiltin_Fin_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_763____closed__2(); +lean_mark_persistent(l___regBuiltin_Fin_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_763____closed__2); +l___regBuiltin_Fin_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_763____closed__3 = _init_l___regBuiltin_Fin_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_763____closed__3(); +lean_mark_persistent(l___regBuiltin_Fin_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_763____closed__3); +l___regBuiltin_Fin_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_763____closed__4 = _init_l___regBuiltin_Fin_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_763____closed__4(); +lean_mark_persistent(l___regBuiltin_Fin_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_763____closed__4); +l___regBuiltin_Fin_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_763____closed__5 = _init_l___regBuiltin_Fin_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_763____closed__5(); +lean_mark_persistent(l___regBuiltin_Fin_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_763____closed__5); +l___regBuiltin_Fin_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_763____closed__6 = _init_l___regBuiltin_Fin_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_763____closed__6(); +lean_mark_persistent(l___regBuiltin_Fin_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_763____closed__6); +l___regBuiltin_Fin_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_763____closed__7 = _init_l___regBuiltin_Fin_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_763____closed__7(); +lean_mark_persistent(l___regBuiltin_Fin_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_763____closed__7); +l___regBuiltin_Fin_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_763____closed__8 = _init_l___regBuiltin_Fin_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_763____closed__8(); +lean_mark_persistent(l___regBuiltin_Fin_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_763____closed__8); +l___regBuiltin_Fin_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_763____closed__9 = _init_l___regBuiltin_Fin_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_763____closed__9(); +lean_mark_persistent(l___regBuiltin_Fin_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_763____closed__9); +l___regBuiltin_Fin_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_763____closed__10 = _init_l___regBuiltin_Fin_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_763____closed__10(); +lean_mark_persistent(l___regBuiltin_Fin_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_763____closed__10); +l___regBuiltin_Fin_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_763____closed__11 = _init_l___regBuiltin_Fin_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_763____closed__11(); +lean_mark_persistent(l___regBuiltin_Fin_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_763____closed__11); +l___regBuiltin_Fin_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_763____closed__12 = _init_l___regBuiltin_Fin_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_763____closed__12(); +lean_mark_persistent(l___regBuiltin_Fin_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_763____closed__12); +l___regBuiltin_Fin_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_763____closed__13 = _init_l___regBuiltin_Fin_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_763____closed__13(); +lean_mark_persistent(l___regBuiltin_Fin_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_763____closed__13); +l___regBuiltin_Fin_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_763____closed__14 = _init_l___regBuiltin_Fin_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_763____closed__14(); +lean_mark_persistent(l___regBuiltin_Fin_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_763____closed__14); +if (builtin) {res = l___regBuiltin_Fin_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_763_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Fin_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_891_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_Fin_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_765_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Fin_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_893_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_Fin_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_767_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); }l_Fin_reduceLT___closed__1 = _init_l_Fin_reduceLT___closed__1(); @@ -9124,35 +8136,35 @@ l_Fin_reduceLT___closed__2 = _init_l_Fin_reduceLT___closed__2(); lean_mark_persistent(l_Fin_reduceLT___closed__2); l_Fin_reduceLT___closed__3 = _init_l_Fin_reduceLT___closed__3(); lean_mark_persistent(l_Fin_reduceLT___closed__3); -l___regBuiltin_Fin_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_931____closed__1 = _init_l___regBuiltin_Fin_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_931____closed__1(); -lean_mark_persistent(l___regBuiltin_Fin_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_931____closed__1); -l___regBuiltin_Fin_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_931____closed__2 = _init_l___regBuiltin_Fin_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_931____closed__2(); -lean_mark_persistent(l___regBuiltin_Fin_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_931____closed__2); -l___regBuiltin_Fin_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_931____closed__3 = _init_l___regBuiltin_Fin_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_931____closed__3(); -lean_mark_persistent(l___regBuiltin_Fin_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_931____closed__3); -l___regBuiltin_Fin_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_931____closed__4 = _init_l___regBuiltin_Fin_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_931____closed__4(); -lean_mark_persistent(l___regBuiltin_Fin_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_931____closed__4); -l___regBuiltin_Fin_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_931____closed__5 = _init_l___regBuiltin_Fin_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_931____closed__5(); -lean_mark_persistent(l___regBuiltin_Fin_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_931____closed__5); -l___regBuiltin_Fin_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_931____closed__6 = _init_l___regBuiltin_Fin_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_931____closed__6(); -lean_mark_persistent(l___regBuiltin_Fin_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_931____closed__6); -l___regBuiltin_Fin_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_931____closed__7 = _init_l___regBuiltin_Fin_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_931____closed__7(); -lean_mark_persistent(l___regBuiltin_Fin_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_931____closed__7); -l___regBuiltin_Fin_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_931____closed__8 = _init_l___regBuiltin_Fin_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_931____closed__8(); -lean_mark_persistent(l___regBuiltin_Fin_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_931____closed__8); -l___regBuiltin_Fin_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_931____closed__9 = _init_l___regBuiltin_Fin_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_931____closed__9(); -lean_mark_persistent(l___regBuiltin_Fin_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_931____closed__9); -l___regBuiltin_Fin_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_931____closed__10 = _init_l___regBuiltin_Fin_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_931____closed__10(); -lean_mark_persistent(l___regBuiltin_Fin_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_931____closed__10); -l___regBuiltin_Fin_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_931____closed__11 = _init_l___regBuiltin_Fin_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_931____closed__11(); -lean_mark_persistent(l___regBuiltin_Fin_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_931____closed__11); -if (builtin) {res = l___regBuiltin_Fin_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_931_(lean_io_mk_world()); +l___regBuiltin_Fin_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_805____closed__1 = _init_l___regBuiltin_Fin_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_805____closed__1(); +lean_mark_persistent(l___regBuiltin_Fin_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_805____closed__1); +l___regBuiltin_Fin_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_805____closed__2 = _init_l___regBuiltin_Fin_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_805____closed__2(); +lean_mark_persistent(l___regBuiltin_Fin_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_805____closed__2); +l___regBuiltin_Fin_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_805____closed__3 = _init_l___regBuiltin_Fin_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_805____closed__3(); +lean_mark_persistent(l___regBuiltin_Fin_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_805____closed__3); +l___regBuiltin_Fin_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_805____closed__4 = _init_l___regBuiltin_Fin_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_805____closed__4(); +lean_mark_persistent(l___regBuiltin_Fin_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_805____closed__4); +l___regBuiltin_Fin_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_805____closed__5 = _init_l___regBuiltin_Fin_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_805____closed__5(); +lean_mark_persistent(l___regBuiltin_Fin_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_805____closed__5); +l___regBuiltin_Fin_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_805____closed__6 = _init_l___regBuiltin_Fin_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_805____closed__6(); +lean_mark_persistent(l___regBuiltin_Fin_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_805____closed__6); +l___regBuiltin_Fin_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_805____closed__7 = _init_l___regBuiltin_Fin_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_805____closed__7(); +lean_mark_persistent(l___regBuiltin_Fin_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_805____closed__7); +l___regBuiltin_Fin_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_805____closed__8 = _init_l___regBuiltin_Fin_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_805____closed__8(); +lean_mark_persistent(l___regBuiltin_Fin_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_805____closed__8); +l___regBuiltin_Fin_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_805____closed__9 = _init_l___regBuiltin_Fin_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_805____closed__9(); +lean_mark_persistent(l___regBuiltin_Fin_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_805____closed__9); +l___regBuiltin_Fin_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_805____closed__10 = _init_l___regBuiltin_Fin_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_805____closed__10(); +lean_mark_persistent(l___regBuiltin_Fin_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_805____closed__10); +l___regBuiltin_Fin_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_805____closed__11 = _init_l___regBuiltin_Fin_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_805____closed__11(); +lean_mark_persistent(l___regBuiltin_Fin_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_805____closed__11); +if (builtin) {res = l___regBuiltin_Fin_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_805_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Fin_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_933_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_Fin_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_807_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Fin_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_935_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_Fin_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_809_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); }l_Fin_reduceLE___closed__1 = _init_l_Fin_reduceLE___closed__1(); @@ -9161,33 +8173,33 @@ l_Fin_reduceLE___closed__2 = _init_l_Fin_reduceLE___closed__2(); lean_mark_persistent(l_Fin_reduceLE___closed__2); l_Fin_reduceLE___closed__3 = _init_l_Fin_reduceLE___closed__3(); lean_mark_persistent(l_Fin_reduceLE___closed__3); -l___regBuiltin_Fin_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_973____closed__1 = _init_l___regBuiltin_Fin_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_973____closed__1(); -lean_mark_persistent(l___regBuiltin_Fin_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_973____closed__1); -l___regBuiltin_Fin_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_973____closed__2 = _init_l___regBuiltin_Fin_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_973____closed__2(); -lean_mark_persistent(l___regBuiltin_Fin_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_973____closed__2); -l___regBuiltin_Fin_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_973____closed__3 = _init_l___regBuiltin_Fin_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_973____closed__3(); -lean_mark_persistent(l___regBuiltin_Fin_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_973____closed__3); -l___regBuiltin_Fin_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_973____closed__4 = _init_l___regBuiltin_Fin_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_973____closed__4(); -lean_mark_persistent(l___regBuiltin_Fin_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_973____closed__4); -l___regBuiltin_Fin_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_973____closed__5 = _init_l___regBuiltin_Fin_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_973____closed__5(); -lean_mark_persistent(l___regBuiltin_Fin_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_973____closed__5); -l___regBuiltin_Fin_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_973____closed__6 = _init_l___regBuiltin_Fin_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_973____closed__6(); -lean_mark_persistent(l___regBuiltin_Fin_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_973____closed__6); -l___regBuiltin_Fin_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_973____closed__7 = _init_l___regBuiltin_Fin_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_973____closed__7(); -lean_mark_persistent(l___regBuiltin_Fin_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_973____closed__7); -l___regBuiltin_Fin_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_973____closed__8 = _init_l___regBuiltin_Fin_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_973____closed__8(); -lean_mark_persistent(l___regBuiltin_Fin_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_973____closed__8); -l___regBuiltin_Fin_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_973____closed__9 = _init_l___regBuiltin_Fin_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_973____closed__9(); -lean_mark_persistent(l___regBuiltin_Fin_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_973____closed__9); -l___regBuiltin_Fin_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_973____closed__10 = _init_l___regBuiltin_Fin_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_973____closed__10(); -lean_mark_persistent(l___regBuiltin_Fin_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_973____closed__10); -if (builtin) {res = l___regBuiltin_Fin_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_973_(lean_io_mk_world()); +l___regBuiltin_Fin_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_847____closed__1 = _init_l___regBuiltin_Fin_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_847____closed__1(); +lean_mark_persistent(l___regBuiltin_Fin_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_847____closed__1); +l___regBuiltin_Fin_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_847____closed__2 = _init_l___regBuiltin_Fin_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_847____closed__2(); +lean_mark_persistent(l___regBuiltin_Fin_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_847____closed__2); +l___regBuiltin_Fin_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_847____closed__3 = _init_l___regBuiltin_Fin_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_847____closed__3(); +lean_mark_persistent(l___regBuiltin_Fin_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_847____closed__3); +l___regBuiltin_Fin_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_847____closed__4 = _init_l___regBuiltin_Fin_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_847____closed__4(); +lean_mark_persistent(l___regBuiltin_Fin_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_847____closed__4); +l___regBuiltin_Fin_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_847____closed__5 = _init_l___regBuiltin_Fin_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_847____closed__5(); +lean_mark_persistent(l___regBuiltin_Fin_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_847____closed__5); +l___regBuiltin_Fin_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_847____closed__6 = _init_l___regBuiltin_Fin_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_847____closed__6(); +lean_mark_persistent(l___regBuiltin_Fin_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_847____closed__6); +l___regBuiltin_Fin_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_847____closed__7 = _init_l___regBuiltin_Fin_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_847____closed__7(); +lean_mark_persistent(l___regBuiltin_Fin_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_847____closed__7); +l___regBuiltin_Fin_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_847____closed__8 = _init_l___regBuiltin_Fin_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_847____closed__8(); +lean_mark_persistent(l___regBuiltin_Fin_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_847____closed__8); +l___regBuiltin_Fin_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_847____closed__9 = _init_l___regBuiltin_Fin_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_847____closed__9(); +lean_mark_persistent(l___regBuiltin_Fin_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_847____closed__9); +l___regBuiltin_Fin_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_847____closed__10 = _init_l___regBuiltin_Fin_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_847____closed__10(); +lean_mark_persistent(l___regBuiltin_Fin_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_847____closed__10); +if (builtin) {res = l___regBuiltin_Fin_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_847_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Fin_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_975_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_Fin_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_849_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Fin_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_977_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_Fin_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_851_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); }l_Fin_reduceGT___closed__1 = _init_l_Fin_reduceGT___closed__1(); @@ -9196,19 +8208,19 @@ l_Fin_reduceGT___closed__2 = _init_l_Fin_reduceGT___closed__2(); lean_mark_persistent(l_Fin_reduceGT___closed__2); l_Fin_reduceGT___closed__3 = _init_l_Fin_reduceGT___closed__3(); lean_mark_persistent(l_Fin_reduceGT___closed__3); -l___regBuiltin_Fin_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1015____closed__1 = _init_l___regBuiltin_Fin_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1015____closed__1(); -lean_mark_persistent(l___regBuiltin_Fin_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1015____closed__1); -l___regBuiltin_Fin_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1015____closed__2 = _init_l___regBuiltin_Fin_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1015____closed__2(); -lean_mark_persistent(l___regBuiltin_Fin_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1015____closed__2); -l___regBuiltin_Fin_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1015____closed__3 = _init_l___regBuiltin_Fin_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1015____closed__3(); -lean_mark_persistent(l___regBuiltin_Fin_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1015____closed__3); -if (builtin) {res = l___regBuiltin_Fin_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1015_(lean_io_mk_world()); +l___regBuiltin_Fin_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_889____closed__1 = _init_l___regBuiltin_Fin_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_889____closed__1(); +lean_mark_persistent(l___regBuiltin_Fin_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_889____closed__1); +l___regBuiltin_Fin_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_889____closed__2 = _init_l___regBuiltin_Fin_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_889____closed__2(); +lean_mark_persistent(l___regBuiltin_Fin_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_889____closed__2); +l___regBuiltin_Fin_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_889____closed__3 = _init_l___regBuiltin_Fin_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_889____closed__3(); +lean_mark_persistent(l___regBuiltin_Fin_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_889____closed__3); +if (builtin) {res = l___regBuiltin_Fin_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_889_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Fin_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1017_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_Fin_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_891_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Fin_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1019_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_Fin_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_893_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); }l_Fin_reduceGE___closed__1 = _init_l_Fin_reduceGE___closed__1(); @@ -9217,89 +8229,89 @@ l_Fin_reduceGE___closed__2 = _init_l_Fin_reduceGE___closed__2(); lean_mark_persistent(l_Fin_reduceGE___closed__2); l_Fin_reduceGE___closed__3 = _init_l_Fin_reduceGE___closed__3(); lean_mark_persistent(l_Fin_reduceGE___closed__3); -l___regBuiltin_Fin_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1057____closed__1 = _init_l___regBuiltin_Fin_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1057____closed__1(); -lean_mark_persistent(l___regBuiltin_Fin_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1057____closed__1); -l___regBuiltin_Fin_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1057____closed__2 = _init_l___regBuiltin_Fin_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1057____closed__2(); -lean_mark_persistent(l___regBuiltin_Fin_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1057____closed__2); -l___regBuiltin_Fin_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1057____closed__3 = _init_l___regBuiltin_Fin_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1057____closed__3(); -lean_mark_persistent(l___regBuiltin_Fin_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1057____closed__3); -if (builtin) {res = l___regBuiltin_Fin_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1057_(lean_io_mk_world()); +l___regBuiltin_Fin_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_931____closed__1 = _init_l___regBuiltin_Fin_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_931____closed__1(); +lean_mark_persistent(l___regBuiltin_Fin_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_931____closed__1); +l___regBuiltin_Fin_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_931____closed__2 = _init_l___regBuiltin_Fin_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_931____closed__2(); +lean_mark_persistent(l___regBuiltin_Fin_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_931____closed__2); +l___regBuiltin_Fin_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_931____closed__3 = _init_l___regBuiltin_Fin_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_931____closed__3(); +lean_mark_persistent(l___regBuiltin_Fin_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_931____closed__3); +if (builtin) {res = l___regBuiltin_Fin_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_931_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Fin_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1059_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_Fin_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_933_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Fin_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1061_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_Fin_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_935_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); }l_Fin_reduceEq___closed__1 = _init_l_Fin_reduceEq___closed__1(); lean_mark_persistent(l_Fin_reduceEq___closed__1); l_Fin_reduceEq___closed__2 = _init_l_Fin_reduceEq___closed__2(); lean_mark_persistent(l_Fin_reduceEq___closed__2); -l___regBuiltin_Fin_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1099____closed__1 = _init_l___regBuiltin_Fin_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1099____closed__1(); -lean_mark_persistent(l___regBuiltin_Fin_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1099____closed__1); -l___regBuiltin_Fin_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1099____closed__2 = _init_l___regBuiltin_Fin_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1099____closed__2(); -lean_mark_persistent(l___regBuiltin_Fin_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1099____closed__2); -l___regBuiltin_Fin_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1099____closed__3 = _init_l___regBuiltin_Fin_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1099____closed__3(); -lean_mark_persistent(l___regBuiltin_Fin_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1099____closed__3); -l___regBuiltin_Fin_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1099____closed__4 = _init_l___regBuiltin_Fin_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1099____closed__4(); -lean_mark_persistent(l___regBuiltin_Fin_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1099____closed__4); -l___regBuiltin_Fin_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1099____closed__5 = _init_l___regBuiltin_Fin_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1099____closed__5(); -lean_mark_persistent(l___regBuiltin_Fin_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1099____closed__5); -l___regBuiltin_Fin_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1099____closed__6 = _init_l___regBuiltin_Fin_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1099____closed__6(); -lean_mark_persistent(l___regBuiltin_Fin_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1099____closed__6); -l___regBuiltin_Fin_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1099____closed__7 = _init_l___regBuiltin_Fin_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1099____closed__7(); -lean_mark_persistent(l___regBuiltin_Fin_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1099____closed__7); -l___regBuiltin_Fin_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1099____closed__8 = _init_l___regBuiltin_Fin_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1099____closed__8(); -lean_mark_persistent(l___regBuiltin_Fin_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1099____closed__8); -l___regBuiltin_Fin_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1099____closed__9 = _init_l___regBuiltin_Fin_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1099____closed__9(); -lean_mark_persistent(l___regBuiltin_Fin_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1099____closed__9); -l___regBuiltin_Fin_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1099____closed__10 = _init_l___regBuiltin_Fin_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1099____closed__10(); -lean_mark_persistent(l___regBuiltin_Fin_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1099____closed__10); -if (builtin) {res = l___regBuiltin_Fin_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1099_(lean_io_mk_world()); +l___regBuiltin_Fin_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_973____closed__1 = _init_l___regBuiltin_Fin_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_973____closed__1(); +lean_mark_persistent(l___regBuiltin_Fin_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_973____closed__1); +l___regBuiltin_Fin_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_973____closed__2 = _init_l___regBuiltin_Fin_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_973____closed__2(); +lean_mark_persistent(l___regBuiltin_Fin_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_973____closed__2); +l___regBuiltin_Fin_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_973____closed__3 = _init_l___regBuiltin_Fin_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_973____closed__3(); +lean_mark_persistent(l___regBuiltin_Fin_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_973____closed__3); +l___regBuiltin_Fin_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_973____closed__4 = _init_l___regBuiltin_Fin_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_973____closed__4(); +lean_mark_persistent(l___regBuiltin_Fin_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_973____closed__4); +l___regBuiltin_Fin_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_973____closed__5 = _init_l___regBuiltin_Fin_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_973____closed__5(); +lean_mark_persistent(l___regBuiltin_Fin_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_973____closed__5); +l___regBuiltin_Fin_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_973____closed__6 = _init_l___regBuiltin_Fin_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_973____closed__6(); +lean_mark_persistent(l___regBuiltin_Fin_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_973____closed__6); +l___regBuiltin_Fin_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_973____closed__7 = _init_l___regBuiltin_Fin_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_973____closed__7(); +lean_mark_persistent(l___regBuiltin_Fin_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_973____closed__7); +l___regBuiltin_Fin_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_973____closed__8 = _init_l___regBuiltin_Fin_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_973____closed__8(); +lean_mark_persistent(l___regBuiltin_Fin_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_973____closed__8); +l___regBuiltin_Fin_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_973____closed__9 = _init_l___regBuiltin_Fin_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_973____closed__9(); +lean_mark_persistent(l___regBuiltin_Fin_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_973____closed__9); +l___regBuiltin_Fin_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_973____closed__10 = _init_l___regBuiltin_Fin_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_973____closed__10(); +lean_mark_persistent(l___regBuiltin_Fin_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_973____closed__10); +if (builtin) {res = l___regBuiltin_Fin_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_973_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Fin_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1101_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_Fin_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_975_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Fin_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1103_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_Fin_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_977_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); }l_Fin_reduceNe___closed__1 = _init_l_Fin_reduceNe___closed__1(); lean_mark_persistent(l_Fin_reduceNe___closed__1); l_Fin_reduceNe___closed__2 = _init_l_Fin_reduceNe___closed__2(); lean_mark_persistent(l_Fin_reduceNe___closed__2); -l___regBuiltin_Fin_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1140____closed__1 = _init_l___regBuiltin_Fin_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1140____closed__1(); -lean_mark_persistent(l___regBuiltin_Fin_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1140____closed__1); -l___regBuiltin_Fin_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1140____closed__2 = _init_l___regBuiltin_Fin_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1140____closed__2(); -lean_mark_persistent(l___regBuiltin_Fin_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1140____closed__2); -l___regBuiltin_Fin_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1140____closed__3 = _init_l___regBuiltin_Fin_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1140____closed__3(); -lean_mark_persistent(l___regBuiltin_Fin_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1140____closed__3); -l___regBuiltin_Fin_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1140____closed__4 = _init_l___regBuiltin_Fin_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1140____closed__4(); -lean_mark_persistent(l___regBuiltin_Fin_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1140____closed__4); -l___regBuiltin_Fin_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1140____closed__5 = _init_l___regBuiltin_Fin_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1140____closed__5(); -lean_mark_persistent(l___regBuiltin_Fin_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1140____closed__5); -l___regBuiltin_Fin_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1140____closed__6 = _init_l___regBuiltin_Fin_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1140____closed__6(); -lean_mark_persistent(l___regBuiltin_Fin_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1140____closed__6); -l___regBuiltin_Fin_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1140____closed__7 = _init_l___regBuiltin_Fin_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1140____closed__7(); -lean_mark_persistent(l___regBuiltin_Fin_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1140____closed__7); -l___regBuiltin_Fin_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1140____closed__8 = _init_l___regBuiltin_Fin_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1140____closed__8(); -lean_mark_persistent(l___regBuiltin_Fin_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1140____closed__8); -l___regBuiltin_Fin_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1140____closed__9 = _init_l___regBuiltin_Fin_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1140____closed__9(); -lean_mark_persistent(l___regBuiltin_Fin_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1140____closed__9); -l___regBuiltin_Fin_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1140____closed__10 = _init_l___regBuiltin_Fin_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1140____closed__10(); -lean_mark_persistent(l___regBuiltin_Fin_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1140____closed__10); -l___regBuiltin_Fin_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1140____closed__11 = _init_l___regBuiltin_Fin_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1140____closed__11(); -lean_mark_persistent(l___regBuiltin_Fin_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1140____closed__11); -l___regBuiltin_Fin_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1140____closed__12 = _init_l___regBuiltin_Fin_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1140____closed__12(); -lean_mark_persistent(l___regBuiltin_Fin_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1140____closed__12); -if (builtin) {res = l___regBuiltin_Fin_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1140_(lean_io_mk_world()); +l___regBuiltin_Fin_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1014____closed__1 = _init_l___regBuiltin_Fin_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1014____closed__1(); +lean_mark_persistent(l___regBuiltin_Fin_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1014____closed__1); +l___regBuiltin_Fin_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1014____closed__2 = _init_l___regBuiltin_Fin_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1014____closed__2(); +lean_mark_persistent(l___regBuiltin_Fin_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1014____closed__2); +l___regBuiltin_Fin_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1014____closed__3 = _init_l___regBuiltin_Fin_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1014____closed__3(); +lean_mark_persistent(l___regBuiltin_Fin_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1014____closed__3); +l___regBuiltin_Fin_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1014____closed__4 = _init_l___regBuiltin_Fin_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1014____closed__4(); +lean_mark_persistent(l___regBuiltin_Fin_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1014____closed__4); +l___regBuiltin_Fin_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1014____closed__5 = _init_l___regBuiltin_Fin_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1014____closed__5(); +lean_mark_persistent(l___regBuiltin_Fin_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1014____closed__5); +l___regBuiltin_Fin_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1014____closed__6 = _init_l___regBuiltin_Fin_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1014____closed__6(); +lean_mark_persistent(l___regBuiltin_Fin_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1014____closed__6); +l___regBuiltin_Fin_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1014____closed__7 = _init_l___regBuiltin_Fin_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1014____closed__7(); +lean_mark_persistent(l___regBuiltin_Fin_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1014____closed__7); +l___regBuiltin_Fin_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1014____closed__8 = _init_l___regBuiltin_Fin_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1014____closed__8(); +lean_mark_persistent(l___regBuiltin_Fin_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1014____closed__8); +l___regBuiltin_Fin_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1014____closed__9 = _init_l___regBuiltin_Fin_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1014____closed__9(); +lean_mark_persistent(l___regBuiltin_Fin_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1014____closed__9); +l___regBuiltin_Fin_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1014____closed__10 = _init_l___regBuiltin_Fin_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1014____closed__10(); +lean_mark_persistent(l___regBuiltin_Fin_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1014____closed__10); +l___regBuiltin_Fin_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1014____closed__11 = _init_l___regBuiltin_Fin_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1014____closed__11(); +lean_mark_persistent(l___regBuiltin_Fin_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1014____closed__11); +l___regBuiltin_Fin_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1014____closed__12 = _init_l___regBuiltin_Fin_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1014____closed__12(); +lean_mark_persistent(l___regBuiltin_Fin_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1014____closed__12); +if (builtin) {res = l___regBuiltin_Fin_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1014_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Fin_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1142_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_Fin_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1016_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Fin_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1144_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_Fin_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1018_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); }l_Fin_reduceBEq___closed__1 = _init_l_Fin_reduceBEq___closed__1(); @@ -9308,93 +8320,93 @@ l_Fin_reduceBEq___closed__2 = _init_l_Fin_reduceBEq___closed__2(); lean_mark_persistent(l_Fin_reduceBEq___closed__2); l_Fin_reduceBEq___closed__3 = _init_l_Fin_reduceBEq___closed__3(); lean_mark_persistent(l_Fin_reduceBEq___closed__3); -l___regBuiltin_Fin_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1182____closed__1 = _init_l___regBuiltin_Fin_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1182____closed__1(); -lean_mark_persistent(l___regBuiltin_Fin_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1182____closed__1); -l___regBuiltin_Fin_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1182____closed__2 = _init_l___regBuiltin_Fin_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1182____closed__2(); -lean_mark_persistent(l___regBuiltin_Fin_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1182____closed__2); -l___regBuiltin_Fin_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1182____closed__3 = _init_l___regBuiltin_Fin_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1182____closed__3(); -lean_mark_persistent(l___regBuiltin_Fin_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1182____closed__3); -l___regBuiltin_Fin_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1182____closed__4 = _init_l___regBuiltin_Fin_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1182____closed__4(); -lean_mark_persistent(l___regBuiltin_Fin_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1182____closed__4); -l___regBuiltin_Fin_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1182____closed__5 = _init_l___regBuiltin_Fin_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1182____closed__5(); -lean_mark_persistent(l___regBuiltin_Fin_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1182____closed__5); -l___regBuiltin_Fin_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1182____closed__6 = _init_l___regBuiltin_Fin_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1182____closed__6(); -lean_mark_persistent(l___regBuiltin_Fin_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1182____closed__6); -l___regBuiltin_Fin_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1182____closed__7 = _init_l___regBuiltin_Fin_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1182____closed__7(); -lean_mark_persistent(l___regBuiltin_Fin_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1182____closed__7); -l___regBuiltin_Fin_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1182____closed__8 = _init_l___regBuiltin_Fin_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1182____closed__8(); -lean_mark_persistent(l___regBuiltin_Fin_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1182____closed__8); -l___regBuiltin_Fin_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1182____closed__9 = _init_l___regBuiltin_Fin_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1182____closed__9(); -lean_mark_persistent(l___regBuiltin_Fin_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1182____closed__9); -l___regBuiltin_Fin_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1182____closed__10 = _init_l___regBuiltin_Fin_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1182____closed__10(); -lean_mark_persistent(l___regBuiltin_Fin_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1182____closed__10); -if (builtin) {res = l___regBuiltin_Fin_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1182_(lean_io_mk_world()); +l___regBuiltin_Fin_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1056____closed__1 = _init_l___regBuiltin_Fin_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1056____closed__1(); +lean_mark_persistent(l___regBuiltin_Fin_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1056____closed__1); +l___regBuiltin_Fin_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1056____closed__2 = _init_l___regBuiltin_Fin_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1056____closed__2(); +lean_mark_persistent(l___regBuiltin_Fin_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1056____closed__2); +l___regBuiltin_Fin_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1056____closed__3 = _init_l___regBuiltin_Fin_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1056____closed__3(); +lean_mark_persistent(l___regBuiltin_Fin_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1056____closed__3); +l___regBuiltin_Fin_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1056____closed__4 = _init_l___regBuiltin_Fin_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1056____closed__4(); +lean_mark_persistent(l___regBuiltin_Fin_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1056____closed__4); +l___regBuiltin_Fin_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1056____closed__5 = _init_l___regBuiltin_Fin_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1056____closed__5(); +lean_mark_persistent(l___regBuiltin_Fin_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1056____closed__5); +l___regBuiltin_Fin_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1056____closed__6 = _init_l___regBuiltin_Fin_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1056____closed__6(); +lean_mark_persistent(l___regBuiltin_Fin_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1056____closed__6); +l___regBuiltin_Fin_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1056____closed__7 = _init_l___regBuiltin_Fin_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1056____closed__7(); +lean_mark_persistent(l___regBuiltin_Fin_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1056____closed__7); +l___regBuiltin_Fin_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1056____closed__8 = _init_l___regBuiltin_Fin_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1056____closed__8(); +lean_mark_persistent(l___regBuiltin_Fin_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1056____closed__8); +l___regBuiltin_Fin_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1056____closed__9 = _init_l___regBuiltin_Fin_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1056____closed__9(); +lean_mark_persistent(l___regBuiltin_Fin_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1056____closed__9); +l___regBuiltin_Fin_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1056____closed__10 = _init_l___regBuiltin_Fin_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1056____closed__10(); +lean_mark_persistent(l___regBuiltin_Fin_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1056____closed__10); +if (builtin) {res = l___regBuiltin_Fin_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1056_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Fin_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1184_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_Fin_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1058_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Fin_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1186_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_Fin_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1060_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); }l_Fin_reduceBNe___closed__1 = _init_l_Fin_reduceBNe___closed__1(); lean_mark_persistent(l_Fin_reduceBNe___closed__1); l_Fin_reduceBNe___closed__2 = _init_l_Fin_reduceBNe___closed__2(); lean_mark_persistent(l_Fin_reduceBNe___closed__2); -l___regBuiltin_Fin_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1223____closed__1 = _init_l___regBuiltin_Fin_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1223____closed__1(); -lean_mark_persistent(l___regBuiltin_Fin_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1223____closed__1); -l___regBuiltin_Fin_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1223____closed__2 = _init_l___regBuiltin_Fin_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1223____closed__2(); -lean_mark_persistent(l___regBuiltin_Fin_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1223____closed__2); -l___regBuiltin_Fin_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1223____closed__3 = _init_l___regBuiltin_Fin_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1223____closed__3(); -lean_mark_persistent(l___regBuiltin_Fin_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1223____closed__3); -l___regBuiltin_Fin_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1223____closed__4 = _init_l___regBuiltin_Fin_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1223____closed__4(); -lean_mark_persistent(l___regBuiltin_Fin_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1223____closed__4); -l___regBuiltin_Fin_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1223____closed__5 = _init_l___regBuiltin_Fin_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1223____closed__5(); -lean_mark_persistent(l___regBuiltin_Fin_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1223____closed__5); -l___regBuiltin_Fin_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1223____closed__6 = _init_l___regBuiltin_Fin_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1223____closed__6(); -lean_mark_persistent(l___regBuiltin_Fin_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1223____closed__6); -l___regBuiltin_Fin_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1223____closed__7 = _init_l___regBuiltin_Fin_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1223____closed__7(); -lean_mark_persistent(l___regBuiltin_Fin_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1223____closed__7); -l___regBuiltin_Fin_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1223____closed__8 = _init_l___regBuiltin_Fin_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1223____closed__8(); -lean_mark_persistent(l___regBuiltin_Fin_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1223____closed__8); -l___regBuiltin_Fin_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1223____closed__9 = _init_l___regBuiltin_Fin_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1223____closed__9(); -lean_mark_persistent(l___regBuiltin_Fin_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1223____closed__9); -l___regBuiltin_Fin_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1223____closed__10 = _init_l___regBuiltin_Fin_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1223____closed__10(); -lean_mark_persistent(l___regBuiltin_Fin_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1223____closed__10); -if (builtin) {res = l___regBuiltin_Fin_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1223_(lean_io_mk_world()); +l___regBuiltin_Fin_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1097____closed__1 = _init_l___regBuiltin_Fin_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1097____closed__1(); +lean_mark_persistent(l___regBuiltin_Fin_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1097____closed__1); +l___regBuiltin_Fin_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1097____closed__2 = _init_l___regBuiltin_Fin_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1097____closed__2(); +lean_mark_persistent(l___regBuiltin_Fin_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1097____closed__2); +l___regBuiltin_Fin_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1097____closed__3 = _init_l___regBuiltin_Fin_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1097____closed__3(); +lean_mark_persistent(l___regBuiltin_Fin_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1097____closed__3); +l___regBuiltin_Fin_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1097____closed__4 = _init_l___regBuiltin_Fin_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1097____closed__4(); +lean_mark_persistent(l___regBuiltin_Fin_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1097____closed__4); +l___regBuiltin_Fin_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1097____closed__5 = _init_l___regBuiltin_Fin_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1097____closed__5(); +lean_mark_persistent(l___regBuiltin_Fin_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1097____closed__5); +l___regBuiltin_Fin_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1097____closed__6 = _init_l___regBuiltin_Fin_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1097____closed__6(); +lean_mark_persistent(l___regBuiltin_Fin_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1097____closed__6); +l___regBuiltin_Fin_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1097____closed__7 = _init_l___regBuiltin_Fin_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1097____closed__7(); +lean_mark_persistent(l___regBuiltin_Fin_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1097____closed__7); +l___regBuiltin_Fin_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1097____closed__8 = _init_l___regBuiltin_Fin_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1097____closed__8(); +lean_mark_persistent(l___regBuiltin_Fin_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1097____closed__8); +l___regBuiltin_Fin_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1097____closed__9 = _init_l___regBuiltin_Fin_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1097____closed__9(); +lean_mark_persistent(l___regBuiltin_Fin_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1097____closed__9); +l___regBuiltin_Fin_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1097____closed__10 = _init_l___regBuiltin_Fin_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1097____closed__10(); +lean_mark_persistent(l___regBuiltin_Fin_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1097____closed__10); +if (builtin) {res = l___regBuiltin_Fin_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1097_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Fin_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1225_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_Fin_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1099_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Fin_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1227_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_Fin_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1101_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}l___regBuiltin_Fin_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1355____closed__1 = _init_l___regBuiltin_Fin_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1355____closed__1(); -lean_mark_persistent(l___regBuiltin_Fin_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1355____closed__1); -l___regBuiltin_Fin_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1355____closed__2 = _init_l___regBuiltin_Fin_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1355____closed__2(); -lean_mark_persistent(l___regBuiltin_Fin_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1355____closed__2); -l___regBuiltin_Fin_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1355____closed__3 = _init_l___regBuiltin_Fin_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1355____closed__3(); -lean_mark_persistent(l___regBuiltin_Fin_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1355____closed__3); -l___regBuiltin_Fin_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1355____closed__4 = _init_l___regBuiltin_Fin_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1355____closed__4(); -lean_mark_persistent(l___regBuiltin_Fin_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1355____closed__4); -l___regBuiltin_Fin_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1355____closed__5 = _init_l___regBuiltin_Fin_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1355____closed__5(); -lean_mark_persistent(l___regBuiltin_Fin_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1355____closed__5); -l___regBuiltin_Fin_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1355____closed__6 = _init_l___regBuiltin_Fin_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1355____closed__6(); -lean_mark_persistent(l___regBuiltin_Fin_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1355____closed__6); -l___regBuiltin_Fin_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1355____closed__7 = _init_l___regBuiltin_Fin_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1355____closed__7(); -lean_mark_persistent(l___regBuiltin_Fin_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1355____closed__7); -l___regBuiltin_Fin_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1355____closed__8 = _init_l___regBuiltin_Fin_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1355____closed__8(); -lean_mark_persistent(l___regBuiltin_Fin_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1355____closed__8); -l___regBuiltin_Fin_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1355____closed__9 = _init_l___regBuiltin_Fin_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1355____closed__9(); -lean_mark_persistent(l___regBuiltin_Fin_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1355____closed__9); -if (builtin) {res = l___regBuiltin_Fin_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1355_(lean_io_mk_world()); +}l___regBuiltin_Fin_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1260____closed__1 = _init_l___regBuiltin_Fin_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1260____closed__1(); +lean_mark_persistent(l___regBuiltin_Fin_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1260____closed__1); +l___regBuiltin_Fin_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1260____closed__2 = _init_l___regBuiltin_Fin_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1260____closed__2(); +lean_mark_persistent(l___regBuiltin_Fin_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1260____closed__2); +l___regBuiltin_Fin_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1260____closed__3 = _init_l___regBuiltin_Fin_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1260____closed__3(); +lean_mark_persistent(l___regBuiltin_Fin_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1260____closed__3); +l___regBuiltin_Fin_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1260____closed__4 = _init_l___regBuiltin_Fin_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1260____closed__4(); +lean_mark_persistent(l___regBuiltin_Fin_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1260____closed__4); +l___regBuiltin_Fin_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1260____closed__5 = _init_l___regBuiltin_Fin_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1260____closed__5(); +lean_mark_persistent(l___regBuiltin_Fin_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1260____closed__5); +l___regBuiltin_Fin_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1260____closed__6 = _init_l___regBuiltin_Fin_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1260____closed__6(); +lean_mark_persistent(l___regBuiltin_Fin_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1260____closed__6); +l___regBuiltin_Fin_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1260____closed__7 = _init_l___regBuiltin_Fin_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1260____closed__7(); +lean_mark_persistent(l___regBuiltin_Fin_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1260____closed__7); +l___regBuiltin_Fin_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1260____closed__8 = _init_l___regBuiltin_Fin_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1260____closed__8(); +lean_mark_persistent(l___regBuiltin_Fin_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1260____closed__8); +l___regBuiltin_Fin_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1260____closed__9 = _init_l___regBuiltin_Fin_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1260____closed__9(); +lean_mark_persistent(l___regBuiltin_Fin_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1260____closed__9); +if (builtin) {res = l___regBuiltin_Fin_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1260_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Fin_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1357_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_Fin_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1262_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Fin_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1359_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_Fin_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Fin___hyg_1264_(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)); diff --git a/stage0/stdlib/Lean/Meta/Tactic/Simp/BuiltinSimprocs/Int.c b/stage0/stdlib/Lean/Meta/Tactic/Simp/BuiltinSimprocs/Int.c index 9e8515222d..bfaa6ff771 100644 --- a/stage0/stdlib/Lean/Meta/Tactic/Simp/BuiltinSimprocs/Int.c +++ b/stage0/stdlib/Lean/Meta/Tactic/Simp/BuiltinSimprocs/Int.c @@ -1,6 +1,6 @@ // Lean compiler output // Module: Lean.Meta.Tactic.Simp.BuiltinSimprocs.Int -// Imports: Lean.ToExpr Lean.Meta.Tactic.Simp.BuiltinSimprocs.Nat +// Imports: Lean.ToExpr Lean.Meta.LitValues Lean.Meta.Tactic.Simp.BuiltinSimprocs.Nat #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -13,1115 +13,420 @@ #ifdef __cplusplus extern "C" { #endif +static lean_object* l___regBuiltin_Int_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_838____closed__7; +static lean_object* l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_688____closed__1; lean_object* l_Lean_Expr_const___override(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Int_reduceBNe(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Int_reduceBoolPred___lambda__1___closed__5; static lean_object* l_Int_reduceMul___closed__2; -static lean_object* l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_996____closed__7; -static lean_object* l___regBuiltin_Int_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1188____closed__3; +static lean_object* l___regBuiltin_Int_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1404____closed__6; +static lean_object* l___regBuiltin_Int_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1118____closed__13; LEAN_EXPORT lean_object* l_Int_reduceDiv___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_Int_reducePow___closed__3; -LEAN_EXPORT lean_object* l___regBuiltin_Int_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1112_(lean_object*); +static lean_object* l___regBuiltin_Int_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_838____closed__5; lean_object* l_Lean_mkNatLit(lean_object*); -LEAN_EXPORT lean_object* l___regBuiltin_Int_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1758_(lean_object*); -static lean_object* l___regBuiltin_Int_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1108____closed__9; -static lean_object* l___regBuiltin_Int_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1188____closed__11; -static lean_object* l___regBuiltin_Int_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1754____closed__9; +static lean_object* l___regBuiltin_Int_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1118____closed__5; +static lean_object* l___regBuiltin_Int_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1363____closed__3; +static lean_object* l___regBuiltin_Int_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1200____closed__1; lean_object* lean_mk_empty_array_with_capacity(lean_object*); -lean_object* l_Lean_mkAppN(lean_object*, lean_object*); static lean_object* l_Int_reduceUnary___lambda__1___closed__1; -LEAN_EXPORT lean_object* l___regBuiltin_Int_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1894_(lean_object*); -static lean_object* l___regBuiltin_Int_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1268____closed__4; -static lean_object* l_Int_toExpr___closed__13; -LEAN_EXPORT lean_object* l___regBuiltin_Int_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1270_(lean_object*); +static lean_object* l___regBuiltin_Int_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1323____closed__8; +static lean_object* l___regBuiltin_Int_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1159____closed__9; LEAN_EXPORT lean_object* l_Int_reduceGE(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___regBuiltin_Int_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1428____closed__7; LEAN_EXPORT lean_object* l_Int_reduceAdd___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_Int_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1150_(lean_object*); +static lean_object* l___regBuiltin_Int_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1563____closed__2; +static lean_object* l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_686____closed__7; +LEAN_EXPORT lean_object* l___regBuiltin_Int_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1584_(lean_object*); +lean_object* l_Lean_Meta_getNatValue_x3f(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___regBuiltin_Int_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1118____closed__2; LEAN_EXPORT lean_object* l_Int_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_Int_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_918____closed__6; LEAN_EXPORT lean_object* l_Int_reduceMul___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_Int_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1272_(lean_object*); -static lean_object* l___regBuiltin_Int_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1108____closed__8; -LEAN_EXPORT lean_object* l___regBuiltin_Int_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1432_(lean_object*); -static lean_object* l_Int_toExpr___closed__5; -LEAN_EXPORT lean_object* l___regBuiltin_Int_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1675_(lean_object*); -LEAN_EXPORT lean_object* l___regBuiltin_Int_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1718_(lean_object*); +LEAN_EXPORT lean_object* l___regBuiltin_Int_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1565_(lean_object*); +static lean_object* l___regBuiltin_Int_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1563____closed__3; +static lean_object* l_Int_reduceUnary___lambda__1___closed__10; +static lean_object* l___regBuiltin_Int_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1118____closed__11; LEAN_EXPORT lean_object* l_Int_reduceAdd(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Int_reduceToNat___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_whnf(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___regBuiltin_Int_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1754____closed__8; +static lean_object* l___regBuiltin_Int_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1200____closed__6; +static lean_object* l___regBuiltin_Int_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_878____closed__4; +static lean_object* l___regBuiltin_Int_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1159____closed__3; +LEAN_EXPORT lean_object* l___regBuiltin_Int_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_922_(lean_object*); +LEAN_EXPORT lean_object* l___regBuiltin_Int_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1363_(lean_object*); +static lean_object* l___regBuiltin_Int_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1444____closed__5; +static lean_object* l___regBuiltin_Int_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_798____closed__7; static lean_object* l_Int_reduceAdd___closed__1; LEAN_EXPORT lean_object* l_Int_reduceToNat(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Int_reduceUnary___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_Int_reduceNatCore___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___regBuiltin_Int_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1188____closed__5; -static lean_object* l___regBuiltin_Int_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1892____closed__1; +static lean_object* l___regBuiltin_Int_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_838____closed__4; +static lean_object* l___regBuiltin_Int_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_798____closed__5; static lean_object* l_Int_reduceDiv___closed__2; -static lean_object* l___regBuiltin_Int_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1428____closed__4; LEAN_EXPORT lean_object* l_Int_reduceAdd___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_Int_reduceAbs___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___regBuiltin_Int_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1363____closed__2; uint8_t l_Lean_Expr_isAppOfArity(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___regBuiltin_Int_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1110_(lean_object*); -static lean_object* l___regBuiltin_Int_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1188____closed__4; -static lean_object* l___regBuiltin_Int_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1188____closed__2; +static lean_object* l___regBuiltin_Int_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_958____closed__1; +static lean_object* l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_686____closed__9; +LEAN_EXPORT lean_object* l___regBuiltin_Int_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1446_(lean_object*); +static lean_object* l_Int_reduceUnary___lambda__1___closed__6; +static lean_object* l___regBuiltin_Int_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_958____closed__3; +static lean_object* l___regBuiltin_Int_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1404____closed__4; +static lean_object* l___regBuiltin_Int_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1323____closed__5; static lean_object* l_Int_reduceDiv___closed__1; lean_object* lean_array_push(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Int_reduceBEq___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_Int_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1563_(lean_object*); LEAN_EXPORT lean_object* l_Int_reduceBin___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_Int_fromExpr_x3f___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___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_998_(lean_object*); +LEAN_EXPORT lean_object* l___regBuiltin_Int_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1241_(lean_object*); +LEAN_EXPORT lean_object* l___regBuiltin_Int_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_962_(lean_object*); static lean_object* l_Int_reducePow___closed__2; -static lean_object* l_Int_fromExpr_x3f___closed__3; +static lean_object* l___regBuiltin_Int_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_838____closed__10; LEAN_EXPORT lean_object* l_Int_reduceAbs___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_Int_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1268____closed__5; -static lean_object* l_Int_fromExpr_x3f___lambda__2___closed__6; +static lean_object* l___regBuiltin_Int_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1444____closed__1; +LEAN_EXPORT lean_object* l___regBuiltin_Int_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1448_(lean_object*); +static lean_object* l___regBuiltin_Int_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_958____closed__8; LEAN_EXPORT lean_object* l_Int_reduceBNe___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_Int_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1148____closed__11; -LEAN_EXPORT lean_object* l___regBuiltin_Int_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1152_(lean_object*); -LEAN_EXPORT lean_object* l___regBuiltin_Int_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1875_(lean_object*); -static lean_object* l___regBuiltin_Int_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1108____closed__10; -static lean_object* l___regBuiltin_Int_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1892____closed__4; +LEAN_EXPORT lean_object* l___regBuiltin_Int_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1159_(lean_object*); +LEAN_EXPORT lean_object* l___regBuiltin_Int_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1163_(lean_object*); +static lean_object* l_Int_reduceUnary___lambda__1___closed__5; +static lean_object* l___regBuiltin_Int_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1444____closed__3; static lean_object* l_Int_reduceGE___closed__2; +static lean_object* l___regBuiltin_Int_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1404____closed__9; lean_object* lean_int_emod(lean_object*, lean_object*); -static lean_object* l_Int_toExpr___closed__1; static lean_object* l_Int_reduceLE___closed__2; +static lean_object* l___regBuiltin_Int_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1582____closed__5; +static lean_object* l___regBuiltin_Int_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1363____closed__5; LEAN_EXPORT lean_object* l_Int_reduceNeg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Int_reduceBoolPred___lambda__1___closed__4; LEAN_EXPORT lean_object* l_Int_reduceAbs___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_Int_reduceUnary___lambda__1___closed__11; static lean_object* l_Int_reduceNe___closed__1; LEAN_EXPORT lean_object* l_Int_reduceNatCore___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_Int_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1673____closed__3; -static lean_object* l___regBuiltin_Int_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1268____closed__1; -LEAN_EXPORT lean_object* l___regBuiltin_Int_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1473_(lean_object*); -LEAN_EXPORT lean_object* l___regBuiltin_Int_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1553_(lean_object*); +LEAN_EXPORT lean_object* l___regBuiltin_Int_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_838_(lean_object*); +static lean_object* l___regBuiltin_Int_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_798____closed__2; +LEAN_EXPORT lean_object* l_Int_fromExpr_x3f___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_Int_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_918_(lean_object*); lean_object* l_Lean_Meta_Simp_evalPropStep(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___regBuiltin_Int_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_878____closed__1; LEAN_EXPORT lean_object* l_Int_reduceGE___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_Int_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1268____closed__6; +static lean_object* l___regBuiltin_Int_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1323____closed__3; LEAN_EXPORT lean_object* l_Int_reduceNeg___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_Int_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1673____closed__5; -static lean_object* l___regBuiltin_Int_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1148____closed__10; -LEAN_EXPORT lean_object* l___regBuiltin_Int_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1756_(lean_object*); -static lean_object* l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_998____closed__1; -static lean_object* l___regBuiltin_Int_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1188____closed__1; -static lean_object* l___regBuiltin_Int_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1108____closed__7; -static lean_object* l___regBuiltin_Int_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1428____closed__11; -static lean_object* l___regBuiltin_Int_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1228____closed__4; -static lean_object* l___regBuiltin_Int_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1188____closed__10; -static lean_object* l___regBuiltin_Int_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1714____closed__4; +static lean_object* l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_686____closed__1; +static lean_object* l___regBuiltin_Int_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1159____closed__8; +static lean_object* l___regBuiltin_Int_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_918____closed__5; +static lean_object* l___regBuiltin_Int_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1118____closed__8; +LEAN_EXPORT lean_object* l___regBuiltin_Int_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_878_(lean_object*); +static lean_object* l___regBuiltin_Int_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_918____closed__8; +static lean_object* l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_690____closed__1; static lean_object* l_Int_reduceLT___closed__3; +static lean_object* l___regBuiltin_Int_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1444____closed__9; LEAN_EXPORT lean_object* l_Int_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___regBuiltin_Int_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1673_(lean_object*); +LEAN_EXPORT lean_object* l___regBuiltin_Int_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1327_(lean_object*); static lean_object* l_Int_reduceMod___closed__3; -static lean_object* l_Int_fromExpr_x3f___closed__1; LEAN_EXPORT lean_object* l_Int_reduceUnary___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_Int_isPosValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1070____closed__2; uint8_t lean_int_dec_le(lean_object*, lean_object*); -static lean_object* l___regBuiltin_Int_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1268____closed__3; +static lean_object* l___regBuiltin_Int_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1282____closed__2; LEAN_EXPORT lean_object* l_Int_reducePow___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_Int_reduceAbs(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Level_ofNat(lean_object*); +static lean_object* l___regBuiltin_Int_isPosValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_760____closed__8; lean_object* l_Lean_Expr_appArg_x21(lean_object*); -LEAN_EXPORT lean_object* l___regBuiltin_Int_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1190_(lean_object*); -static lean_object* l___regBuiltin_Int_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1754____closed__7; +static lean_object* l___regBuiltin_Int_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1282____closed__1; +static lean_object* l___regBuiltin_Int_isPosValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_760____closed__2; static lean_object* l_Int_reduceBoolPred___lambda__1___closed__9; +LEAN_EXPORT lean_object* l___regBuiltin_Int_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1282_(lean_object*); static lean_object* l_Int_reduceBoolPred___lambda__1___closed__3; LEAN_EXPORT lean_object* l_Int_reduceBoolPred___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_Int_toExpr(lean_object*); -static lean_object* l___regBuiltin_Int_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1892____closed__3; +static lean_object* l___regBuiltin_Int_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_798____closed__8; +static lean_object* l___regBuiltin_Int_isPosValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_760____closed__1; +static lean_object* l___regBuiltin_Int_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1200____closed__3; +static lean_object* l___regBuiltin_Int_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1200____closed__5; static lean_object* l_Int_reducePow___closed__1; static lean_object* l_Int_reduceEq___closed__2; static lean_object* l_Int_reduceEq___closed__1; -static lean_object* l___regBuiltin_Int_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1510____closed__8; -static lean_object* l___regBuiltin_Int_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1469____closed__9; -LEAN_EXPORT lean_object* l_Int_fromExpr_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*); +LEAN_EXPORT lean_object* l___regBuiltin_Int_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1200_(lean_object*); +static lean_object* l_Int_reduceUnary___lambda__1___closed__3; +static lean_object* l___regBuiltin_Int_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1159____closed__2; +static lean_object* l___regBuiltin_Int_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_918____closed__3; LEAN_EXPORT lean_object* l_Int_reduceEq(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___regBuiltin_Int_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_958____closed__5; LEAN_EXPORT lean_object* l_Int_reduceNeg___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_Int_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1551____closed__1; -LEAN_EXPORT lean_object* l___regBuiltin_Int_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1188_(lean_object*); +static lean_object* l___regBuiltin_Int_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_838____closed__9; uint8_t l_instDecidableNot___rarg(uint8_t); -LEAN_EXPORT lean_object* l___regBuiltin_Int_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1896_(lean_object*); static lean_object* l_Int_reduceBoolPred___lambda__1___closed__2; LEAN_EXPORT lean_object* l_Int_reduceLE(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___regBuiltin_Int_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_878____closed__8; extern lean_object* l_Lean_Meta_Simp_builtinSimprocsRef; +static lean_object* l___regBuiltin_Int_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1563____closed__4; LEAN_EXPORT lean_object* l_Int_reduceToNat___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___regBuiltin_Int_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1148____closed__8; -static lean_object* l___regBuiltin_Int_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1510____closed__1; -static lean_object* l___regBuiltin_Int_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1148____closed__7; -static lean_object* l_Int_toExpr___closed__14; +static lean_object* l___regBuiltin_Int_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1118____closed__1; +static lean_object* l___regBuiltin_Int_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_918____closed__2; +lean_object* l_Lean_Meta_getIntValue_x3f(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Int_reduceLT___closed__2; static lean_object* l_Int_reduceAdd___closed__3; -static lean_object* l___regBuiltin_Int_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1673____closed__1; -static lean_object* l___regBuiltin_Int_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1188____closed__6; +static lean_object* l___regBuiltin_Int_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1159____closed__1; +static lean_object* l___regBuiltin_Int_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1363____closed__8; +static lean_object* l___regBuiltin_Int_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_958____closed__7; static lean_object* l_Int_reduceBEq___closed__2; -static lean_object* l___regBuiltin_Int_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1633____closed__7; -static lean_object* l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1000____closed__1; +static lean_object* l___regBuiltin_Int_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1118____closed__10; lean_object* lean_nat_to_int(lean_object*); -static lean_object* l_Int_fromExpr_x3f___lambda__2___closed__3; -static lean_object* l___regBuiltin_Int_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1510____closed__9; -static lean_object* l___regBuiltin_Int_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1148____closed__5; -static lean_object* l___regBuiltin_Int_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1714____closed__6; -static lean_object* l___regBuiltin_Int_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1108____closed__4; -static lean_object* l___regBuiltin_Int_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1892____closed__5; +static lean_object* l___regBuiltin_Int_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1363____closed__10; +static lean_object* l___regBuiltin_Int_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_918____closed__11; +LEAN_EXPORT lean_object* l___regBuiltin_Int_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1161_(lean_object*); +static lean_object* l___regBuiltin_Int_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_798____closed__9; +static lean_object* l___regBuiltin_Int_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1200____closed__8; +LEAN_EXPORT lean_object* l___regBuiltin_Int_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_842_(lean_object*); +LEAN_EXPORT lean_object* l___regBuiltin_Int_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1582_(lean_object*); +static lean_object* l___regBuiltin_Int_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1241____closed__2; lean_object* l_Int_pow(lean_object*, lean_object*); -static lean_object* l___regBuiltin_Int_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1673____closed__8; -static lean_object* l___regBuiltin_Int_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1592____closed__2; -static lean_object* l___regBuiltin_Int_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1673____closed__11; LEAN_EXPORT lean_object* l_Int_reduceNatCore(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_Int_reduceLE___closed__1; +static lean_object* l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_686____closed__10; +LEAN_EXPORT lean_object* l___regBuiltin_Int_isPosValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_762_(lean_object*); +static lean_object* l___regBuiltin_Int_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_918____closed__10; LEAN_EXPORT lean_object* l_Int_reducePow(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___regBuiltin_Int_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1228____closed__11; -static lean_object* l___regBuiltin_Int_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1873____closed__6; -LEAN_EXPORT lean_object* l_Int_toExpr___boxed(lean_object*); -static lean_object* l___regBuiltin_Int_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1268____closed__2; -static lean_object* l___regBuiltin_Int_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1754____closed__2; -static lean_object* l___regBuiltin_Int_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1714____closed__1; -static lean_object* l___regBuiltin_Int_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1892____closed__2; -static lean_object* l___regBuiltin_Int_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1510____closed__6; -LEAN_EXPORT lean_object* l___regBuiltin_Int_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1512_(lean_object*); +static lean_object* l___regBuiltin_Int_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1363____closed__1; +LEAN_EXPORT lean_object* l___regBuiltin_Int_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_882_(lean_object*); +static lean_object* l___regBuiltin_Int_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1444____closed__8; +static lean_object* l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_686____closed__8; +LEAN_EXPORT lean_object* l___regBuiltin_Int_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1367_(lean_object*); +static lean_object* l___regBuiltin_Int_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1159____closed__6; +static lean_object* l___regBuiltin_Int_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_958____closed__10; +static lean_object* l_Int_reduceUnary___lambda__1___closed__7; +static lean_object* l___regBuiltin_Int_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_878____closed__9; +static lean_object* l___regBuiltin_Int_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1363____closed__7; LEAN_EXPORT lean_object* l_Int_reduceMul(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___regBuiltin_Int_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1228____closed__9; -static lean_object* l___regBuiltin_Int_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1469____closed__3; -static lean_object* l___regBuiltin_Int_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1148____closed__6; +static lean_object* l___regBuiltin_Int_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1582____closed__2; +static lean_object* l___regBuiltin_Int_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1363____closed__6; +LEAN_EXPORT lean_object* l___regBuiltin_Int_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1284_(lean_object*); static lean_object* l_Int_reduceDiv___closed__3; +static lean_object* l___regBuiltin_Int_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1404____closed__2; LEAN_EXPORT lean_object* l_Int_reduceToNat___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_Int_isPosValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1070____closed__1; -static lean_object* l___regBuiltin_Int_isPosValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1070____closed__7; -static lean_object* l___regBuiltin_Int_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1510____closed__5; -LEAN_EXPORT lean_object* l___regBuiltin_Int_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1428_(lean_object*); -static lean_object* l___regBuiltin_Int_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1754____closed__3; -LEAN_EXPORT lean_object* l___regBuiltin_Int_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1754_(lean_object*); -static lean_object* l___regBuiltin_Int_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1108____closed__2; +static lean_object* l___regBuiltin_Int_isPosValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_760____closed__3; +LEAN_EXPORT lean_object* l___regBuiltin_Int_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_880_(lean_object*); +static lean_object* l___regBuiltin_Int_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1563____closed__7; +LEAN_EXPORT lean_object* l___regBuiltin_Int_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1444_(lean_object*); +static lean_object* l___regBuiltin_Int_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_918____closed__9; +static lean_object* l___regBuiltin_Int_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_958____closed__2; +LEAN_EXPORT lean_object* l___regBuiltin_Int_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1122_(lean_object*); LEAN_EXPORT lean_object* l_Int_reduceGT___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_Int_fromExpr_x3f___closed__4; +static lean_object* l___regBuiltin_Int_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_798____closed__4; +static lean_object* l___regBuiltin_Int_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_798____closed__10; static lean_object* l_Int_reduceBoolPred___lambda__1___closed__1; LEAN_EXPORT lean_object* l_Int_reduceBEq(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___regBuiltin_Int_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1510____closed__3; static lean_object* l_Int_reduceAdd___closed__2; -extern lean_object* l_Lean_levelZero; -static lean_object* l___regBuiltin_Int_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1428____closed__2; LEAN_EXPORT lean_object* l_Int_reduceNe(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Int_reduceBEq___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___regBuiltin_Int_isPosValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1072_(lean_object*); -static lean_object* l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_996____closed__1; -LEAN_EXPORT lean_object* l___regBuiltin_Int_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1877_(lean_object*); +static lean_object* l___regBuiltin_Int_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1323____closed__6; +LEAN_EXPORT lean_object* l___regBuiltin_Int_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1365_(lean_object*); +static lean_object* l___regBuiltin_Int_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1323____closed__4; LEAN_EXPORT lean_object* l_Int_reduceLT___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___regBuiltin_Int_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_802_(lean_object*); +static lean_object* l___regBuiltin_Int_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1582____closed__4; LEAN_EXPORT lean_object* l_Int_reduceMod___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_Int_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1469____closed__2; -LEAN_EXPORT lean_object* l___regBuiltin_Int_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1596_(lean_object*); -static lean_object* l_Int_toExpr___closed__3; -LEAN_EXPORT lean_object* l___regBuiltin_Int_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1430_(lean_object*); -static lean_object* l___regBuiltin_Int_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1551____closed__2; -static lean_object* l___regBuiltin_Int_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1148____closed__1; +LEAN_EXPORT lean_object* l___regBuiltin_Int_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1323_(lean_object*); +static lean_object* l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_686____closed__2; +static lean_object* l___regBuiltin_Int_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_798____closed__1; +static lean_object* l___regBuiltin_Int_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_958____closed__9; +static lean_object* l___regBuiltin_Int_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1241____closed__3; LEAN_EXPORT lean_object* l_Int_fromExpr_x3f(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_996____closed__6; static lean_object* l_Int_reduceGT___closed__1; lean_object* l_Lean_Name_str___override(lean_object*, lean_object*); -static lean_object* l___regBuiltin_Int_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1510____closed__4; static lean_object* l_Int_reduceBoolPred___lambda__1___closed__11; -static lean_object* l___regBuiltin_Int_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1469____closed__1; +static lean_object* l___regBuiltin_Int_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1118____closed__6; LEAN_EXPORT lean_object* l_Int_reduceBinPred___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_Int_reduceBin___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___regBuiltin_Int_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1108____closed__12; -static lean_object* l___regBuiltin_Int_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1428____closed__8; -LEAN_EXPORT lean_object* l___regBuiltin_Int_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1892_(lean_object*); static lean_object* l_Int_reduceToNat___closed__1; +static lean_object* l___regBuiltin_Int_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_958____closed__6; LEAN_EXPORT lean_object* l_Int_reduceBoolPred___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_Int_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1408_(lean_object*); LEAN_EXPORT lean_object* l_Int_isPosValue___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_Int_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1188____closed__8; -static lean_object* l___regBuiltin_Int_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1228____closed__8; LEAN_EXPORT lean_object* l_Int_reduceMod(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_996____closed__8; LEAN_EXPORT lean_object* l_Int_reduceLT(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___regBuiltin_Int_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_960_(lean_object*); LEAN_EXPORT lean_object* l_Int_reduceUnary(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_Int_reduceMul___closed__3; lean_object* l_Lean_Expr_appFn_x21(lean_object*); LEAN_EXPORT lean_object* l_Int_reduceBNe___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_Int_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1428____closed__12; -static lean_object* l___regBuiltin_Int_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1228____closed__3; -static lean_object* l___regBuiltin_Int_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1188____closed__9; -LEAN_EXPORT lean_object* l___regBuiltin_Int_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1228_(lean_object*); -static lean_object* l___regBuiltin_Int_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1633____closed__8; -static lean_object* l___regBuiltin_Int_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1268____closed__7; -static lean_object* l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_996____closed__4; -LEAN_EXPORT lean_object* l___regBuiltin_Int_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1108_(lean_object*); -static lean_object* l___regBuiltin_Int_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1714____closed__9; -static lean_object* l___regBuiltin_Int_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1469____closed__4; -static lean_object* l___regBuiltin_Int_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1510____closed__2; -static lean_object* l___regBuiltin_Int_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1633____closed__2; -static lean_object* l___regBuiltin_Int_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1428____closed__9; -static lean_object* l___regBuiltin_Int_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1428____closed__14; -static lean_object* l___regBuiltin_Int_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1892____closed__6; -static lean_object* l___regBuiltin_Int_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1673____closed__2; +static lean_object* l_Int_reduceUnary___lambda__1___closed__4; +LEAN_EXPORT lean_object* l___regBuiltin_Int_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_798_(lean_object*); +static lean_object* l___regBuiltin_Int_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_838____closed__1; +static lean_object* l_Int_reduceUnary___lambda__1___closed__14; +static lean_object* l_Int_reduceUnary___lambda__1___closed__12; +static lean_object* l___regBuiltin_Int_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1444____closed__6; +static lean_object* l___regBuiltin_Int_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1363____closed__4; +static lean_object* l___regBuiltin_Int_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1118____closed__14; +static lean_object* l___regBuiltin_Int_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1118____closed__9; +static lean_object* l___regBuiltin_Int_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_838____closed__8; static lean_object* l_Int_reduceBoolPred___lambda__1___closed__8; -static lean_object* l___regBuiltin_Int_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1268____closed__10; -static lean_object* l___regBuiltin_Int_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1714____closed__5; -static lean_object* l___regBuiltin_Int_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1188____closed__7; +static lean_object* l___regBuiltin_Int_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1444____closed__4; +static lean_object* l___regBuiltin_Int_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_878____closed__10; +LEAN_EXPORT lean_object* l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_688_(lean_object*); +LEAN_EXPORT lean_object* l___regBuiltin_Int_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1567_(lean_object*); lean_object* lean_int_sub(lean_object*, lean_object*); -static lean_object* l_Int_toExpr___closed__2; -static lean_object* l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_996____closed__2; -static lean_object* l___regBuiltin_Int_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1754____closed__4; -static lean_object* l_Int_toExpr___closed__10; -static lean_object* l_Int_fromExpr_x3f___closed__2; +static lean_object* l___regBuiltin_Int_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_838____closed__11; +static lean_object* l___regBuiltin_Int_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_798____closed__3; +static lean_object* l___regBuiltin_Int_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1363____closed__9; +static lean_object* l___regBuiltin_Int_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_798____closed__6; static lean_object* l_Int_reduceBEq___closed__1; -static lean_object* l___regBuiltin_Int_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1673____closed__4; -static lean_object* l___regBuiltin_Int_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1428____closed__10; -LEAN_EXPORT lean_object* l___regBuiltin_Int_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1148_(lean_object*); -static lean_object* l___regBuiltin_Int_isPosValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1070____closed__5; +static lean_object* l_Int_reduceUnary___lambda__1___closed__8; +LEAN_EXPORT lean_object* l___regBuiltin_Int_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_800_(lean_object*); LEAN_EXPORT lean_object* l_Int_reduceSub___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_Int_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1469____closed__5; -LEAN_EXPORT lean_object* l___regBuiltin_Int_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1469_(lean_object*); LEAN_EXPORT lean_object* l_Int_reduceDiv___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_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1000_(lean_object*); -static lean_object* l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_996____closed__3; -static lean_object* l___regBuiltin_Int_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1228____closed__10; -static lean_object* l___regBuiltin_Int_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1714____closed__7; +static lean_object* l___regBuiltin_Int_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1363____closed__11; +static lean_object* l_Int_reduceUnary___lambda__1___closed__9; +LEAN_EXPORT lean_object* l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_686_(lean_object*); +static lean_object* l___regBuiltin_Int_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1404____closed__1; +LEAN_EXPORT lean_object* l___regBuiltin_Int_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_840_(lean_object*); static lean_object* l_Int_reduceNe___closed__2; -static lean_object* l___regBuiltin_Int_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1428____closed__6; +LEAN_EXPORT lean_object* l___regBuiltin_Int_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1404_(lean_object*); +LEAN_EXPORT lean_object* l___regBuiltin_Int_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1406_(lean_object*); +static lean_object* l___regBuiltin_Int_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1404____closed__3; LEAN_EXPORT lean_object* l_Int_reduceBin(lean_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_Int_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1635_(lean_object*); +static lean_object* l___regBuiltin_Int_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_918____closed__1; static lean_object* l_Int_reduceAbs___closed__2; -static lean_object* l___regBuiltin_Int_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1469____closed__6; lean_object* lean_nat_abs(lean_object*); -static lean_object* l___regBuiltin_Int_isPosValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1070____closed__6; -static lean_object* l___regBuiltin_Int_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1268____closed__9; static lean_object* l_Int_reduceGT___closed__2; -static lean_object* l___regBuiltin_Int_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1469____closed__8; static lean_object* l_Int_reduceBNe___closed__2; LEAN_EXPORT lean_object* l_Int_reduceBinPred___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_Int_fromExpr_x3f___lambda__2___closed__5; -static lean_object* l___regBuiltin_Int_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1148____closed__2; +static lean_object* l___regBuiltin_Int_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1404____closed__8; lean_object* lean_int_mul(lean_object*, lean_object*); +static lean_object* l___regBuiltin_Int_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1200____closed__2; +static lean_object* l_Int_reduceUnary___lambda__1___closed__13; LEAN_EXPORT lean_object* l_Int_reduceLE___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_Int_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1551____closed__3; -lean_object* l_Lean_Expr_app___override(lean_object*, lean_object*); -static lean_object* l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_996____closed__5; -static lean_object* l___regBuiltin_Int_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1108____closed__3; +static lean_object* l___regBuiltin_Int_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1582____closed__3; LEAN_EXPORT lean_object* l_Int_reduceLE___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_Lean_Meta_Simp_registerBuiltinSimproc(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Int_reduceSub___closed__2; -static lean_object* l_Int_fromExpr_x3f___lambda__2___closed__2; +static lean_object* l___regBuiltin_Int_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_918____closed__7; static lean_object* l_Int_reduceSub___closed__1; +static lean_object* l___regBuiltin_Int_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1282____closed__3; lean_object* l_Lean_mkApp3(lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___regBuiltin_Int_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1754____closed__5; -LEAN_EXPORT lean_object* l___regBuiltin_Int_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1471_(lean_object*); -LEAN_EXPORT lean_object* l___regBuiltin_Int_isPosValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1070_(lean_object*); +static lean_object* l___regBuiltin_Int_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_878____closed__5; static lean_object* l_Int_reduceMod___closed__2; -static lean_object* l___regBuiltin_Int_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1510____closed__7; -lean_object* l_Lean_mkRawNatLit(lean_object*); -static lean_object* l___regBuiltin_Int_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1714____closed__3; -static lean_object* l_Int_toExpr___closed__11; -static lean_object* l_Int_toExpr___closed__9; +static lean_object* l___regBuiltin_Int_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_878____closed__2; lean_object* l_Lean_Name_mkStr2(lean_object*, lean_object*); -static lean_object* l_Int_toExpr___closed__6; +LEAN_EXPORT lean_object* l___regBuiltin_Int_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1204_(lean_object*); +static lean_object* l___regBuiltin_Int_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1118____closed__4; static lean_object* l_Int_reduceAbs___closed__1; -LEAN_EXPORT lean_object* l___regBuiltin_Int_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1714_(lean_object*); -static lean_object* l___regBuiltin_Int_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1428____closed__3; -static lean_object* l___regBuiltin_Int_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1428____closed__13; lean_object* l_Lean_Meta_Simp_addSimprocBuiltinAttrCore(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___regBuiltin_Int_isPosValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_760_(lean_object*); LEAN_EXPORT lean_object* l_Int_reduceMul___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_Int_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1592____closed__1; -static lean_object* l___regBuiltin_Int_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1714____closed__2; -static lean_object* l___regBuiltin_Int_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1673____closed__10; +static lean_object* l___regBuiltin_Int_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1444____closed__2; +static lean_object* l___regBuiltin_Int_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1200____closed__9; static lean_object* l_Int_reduceLT___closed__1; +LEAN_EXPORT lean_object* l___regBuiltin_Int_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1245_(lean_object*); LEAN_EXPORT lean_object* l_Int_reduceGE___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_Int_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1228____closed__2; -LEAN_EXPORT lean_object* l___regBuiltin_Int_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1230_(lean_object*); -uint8_t l_Lean_Expr_isConstOf(lean_object*, lean_object*); -static lean_object* l_Int_toExpr___closed__8; -static lean_object* l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_996____closed__10; +static lean_object* l___regBuiltin_Int_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1159____closed__4; +static lean_object* l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_686____closed__5; +LEAN_EXPORT lean_object* l___regBuiltin_Int_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1120_(lean_object*); static lean_object* l_Int_reduceMul___closed__1; LEAN_EXPORT lean_object* l_Int_reduceEq___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_Int_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1673____closed__6; lean_object* l_Int_toNat(lean_object*); -LEAN_EXPORT lean_object* l___regBuiltin_Int_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1594_(lean_object*); LEAN_EXPORT lean_object* l_Int_isPosValue(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___regBuiltin_Int_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1673____closed__7; +static lean_object* l___regBuiltin_Int_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_958____closed__11; +static lean_object* l_Int_reduceNeg___lambda__1___closed__2; static lean_object* l_Int_reduceSub___closed__3; uint8_t lean_int_dec_lt(lean_object*, lean_object*); -static lean_object* l___regBuiltin_Int_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1673____closed__9; -LEAN_EXPORT lean_object* l___regBuiltin_Int_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1268_(lean_object*); -LEAN_EXPORT lean_object* l___regBuiltin_Int_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1551_(lean_object*); +static lean_object* l___regBuiltin_Int_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1323____closed__2; static lean_object* l_Int_reduceGT___closed__3; LEAN_EXPORT lean_object* l_Int_reduceSub(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___regBuiltin_Int_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1148____closed__3; -LEAN_EXPORT lean_object* l___regBuiltin_Int_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1592_(lean_object*); -static lean_object* l___regBuiltin_Int_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1268____closed__8; -LEAN_EXPORT lean_object* l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_996_(lean_object*); +static lean_object* l___regBuiltin_Int_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1159____closed__5; +static lean_object* l___regBuiltin_Int_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1118____closed__12; +LEAN_EXPORT lean_object* l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_690_(lean_object*); +LEAN_EXPORT lean_object* l___regBuiltin_Int_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1586_(lean_object*); LEAN_EXPORT lean_object* l_Int_reduceNe___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_Int_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1228____closed__6; -LEAN_EXPORT lean_object* l_Int_fromExpr_x3f___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_Int_isPosValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_760____closed__7; +static lean_object* l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_686____closed__3; +static lean_object* l___regBuiltin_Int_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_838____closed__3; +static lean_object* l___regBuiltin_Int_isPosValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_760____closed__4; static lean_object* l_Int_reduceBoolPred___lambda__1___closed__7; -static lean_object* l___regBuiltin_Int_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1633____closed__5; -static lean_object* l___regBuiltin_Int_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1268____closed__11; +static lean_object* l___regBuiltin_Int_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_958____closed__4; +LEAN_EXPORT lean_object* l___regBuiltin_Int_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1286_(lean_object*); +static lean_object* l___regBuiltin_Int_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_878____closed__6; static lean_object* l_Int_reduceToNat___closed__2; +static lean_object* l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_686____closed__6; LEAN_EXPORT lean_object* l_Int_reducePow___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_Int_reduceMod___closed__1; -LEAN_EXPORT lean_object* l___regBuiltin_Int_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1716_(lean_object*); -static lean_object* l___regBuiltin_Int_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1469____closed__7; -static lean_object* l___regBuiltin_Int_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1873____closed__4; -static lean_object* l___regBuiltin_Int_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1873____closed__7; -static lean_object* l___regBuiltin_Int_isPosValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1070____closed__8; +LEAN_EXPORT lean_object* l_Int_reduceNatCore___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___regBuiltin_Int_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_878____closed__7; LEAN_EXPORT lean_object* l_Int_reduceBinPred(lean_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_Int_reduceGT(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___regBuiltin_Int_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1677_(lean_object*); -static lean_object* l_Int_fromExpr_x3f___lambda__2___closed__7; +lean_object* l_Lean_instToExprInt_mkNat(lean_object*); +static lean_object* l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_686____closed__4; +static lean_object* l___regBuiltin_Int_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1118____closed__7; lean_object* lean_int_add(lean_object*, lean_object*); -static lean_object* l___regBuiltin_Int_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1754____closed__6; -static lean_object* l___regBuiltin_Int_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1633____closed__6; +static lean_object* l___regBuiltin_Int_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1159____closed__10; +static lean_object* l_Int_reduceNeg___lambda__1___closed__3; +static lean_object* l___regBuiltin_Int_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1200____closed__7; uint8_t lean_int_dec_eq(lean_object*, lean_object*); +static lean_object* l___regBuiltin_Int_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_878____closed__3; LEAN_EXPORT lean_object* l_Int_reduceNe___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_Int_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1873____closed__3; -static lean_object* l___regBuiltin_Int_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1228____closed__7; +LEAN_EXPORT lean_object* l___regBuiltin_Int_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1243_(lean_object*); +static lean_object* l___regBuiltin_Int_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1582____closed__1; static lean_object* l_Int_reduceGE___closed__3; static lean_object* l_Int_reduceBNe___closed__1; -lean_object* l_Nat_fromExpr_x3f(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___regBuiltin_Int_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1873____closed__5; -LEAN_EXPORT lean_object* l_Int_fromExpr_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*); -static lean_object* l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_996____closed__9; -static lean_object* l___regBuiltin_Int_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1873____closed__1; +LEAN_EXPORT lean_object* l___regBuiltin_Int_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_958_(lean_object*); +static lean_object* l___regBuiltin_Int_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1159____closed__7; static lean_object* l_Int_reduceGE___closed__1; -static lean_object* l_Int_toExpr___closed__7; -static lean_object* l___regBuiltin_Int_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1633____closed__4; -static lean_object* l_Int_toExpr___closed__12; -static lean_object* l___regBuiltin_Int_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1714____closed__8; -static lean_object* l___regBuiltin_Int_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1108____closed__6; -static lean_object* l_Int_fromExpr_x3f___lambda__2___closed__4; -static lean_object* l___regBuiltin_Int_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1148____closed__4; +static lean_object* l___regBuiltin_Int_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1241____closed__1; +LEAN_EXPORT lean_object* l___regBuiltin_Int_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1118_(lean_object*); +static lean_object* l___regBuiltin_Int_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1563____closed__6; +static lean_object* l___regBuiltin_Int_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1582____closed__6; lean_object* lean_int_ediv(lean_object*, lean_object*); -static lean_object* l___regBuiltin_Int_isPosValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1070____closed__3; +static lean_object* l___regBuiltin_Int_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1563____closed__5; LEAN_EXPORT lean_object* l_Int_isPosValue___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_Int_isPosValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1070____closed__4; -static lean_object* l___regBuiltin_Int_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1469____closed__10; +static lean_object* l___regBuiltin_Int_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1200____closed__4; +static lean_object* l___regBuiltin_Int_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_918____closed__4; lean_object* lean_int_neg(lean_object*); +static lean_object* l___regBuiltin_Int_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1444____closed__7; extern lean_object* l_Lean_Meta_Simp_builtinSEvalprocsRef; -static lean_object* l___regBuiltin_Int_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1108____closed__11; -static lean_object* l___regBuiltin_Int_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1148____closed__9; -static lean_object* l_Int_toExpr___closed__4; -LEAN_EXPORT lean_object* l___regBuiltin_Int_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1192_(lean_object*); -static lean_object* l_Int_fromExpr_x3f___lambda__2___closed__1; -static lean_object* l___regBuiltin_Int_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1428____closed__5; -static lean_object* l___regBuiltin_Int_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1228____closed__1; +static lean_object* l___regBuiltin_Int_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_878____closed__11; +LEAN_EXPORT lean_object* l___regBuiltin_Int_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1325_(lean_object*); LEAN_EXPORT lean_object* l_Int_reduceDiv(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___regBuiltin_Int_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1108____closed__1; -static lean_object* l___regBuiltin_Int_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1633____closed__3; static lean_object* l_Int_reduceLE___closed__3; -LEAN_EXPORT lean_object* l___regBuiltin_Int_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1633_(lean_object*); -LEAN_EXPORT lean_object* l___regBuiltin_Int_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1232_(lean_object*); -LEAN_EXPORT lean_object* l___regBuiltin_Int_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1514_(lean_object*); +static lean_object* l___regBuiltin_Int_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_838____closed__2; +static lean_object* l___regBuiltin_Int_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1323____closed__1; +static lean_object* l___regBuiltin_Int_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1118____closed__3; LEAN_EXPORT lean_object* l_Int_reduceEq___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_Int_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1510_(lean_object*); static lean_object* l_Int_reduceBEq___closed__3; -static lean_object* l___regBuiltin_Int_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1633____closed__1; -static lean_object* l___regBuiltin_Int_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1592____closed__3; -static lean_object* l___regBuiltin_Int_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1108____closed__5; +LEAN_EXPORT lean_object* l___regBuiltin_Int_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1202_(lean_object*); +static lean_object* l___regBuiltin_Int_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_798____closed__12; +static lean_object* l_Int_reduceNeg___lambda__1___closed__1; static lean_object* l_Int_reduceBoolPred___lambda__1___closed__10; -LEAN_EXPORT lean_object* l___regBuiltin_Int_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1637_(lean_object*); static lean_object* l_Int_reduceBoolPred___lambda__1___closed__6; LEAN_EXPORT lean_object* l_Int_reduceBoolPred(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___regBuiltin_Int_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1754____closed__1; +static lean_object* l___regBuiltin_Int_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_798____closed__11; +static lean_object* l_Int_reduceUnary___lambda__1___closed__2; +static lean_object* l___regBuiltin_Int_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1563____closed__1; +static lean_object* l___regBuiltin_Int_isPosValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_760____closed__5; +static lean_object* l___regBuiltin_Int_isPosValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_760____closed__6; +static lean_object* l___regBuiltin_Int_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1404____closed__5; LEAN_EXPORT lean_object* l_Int_reduceMod___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_Int_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_838____closed__6; +LEAN_EXPORT lean_object* l___regBuiltin_Int_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_920_(lean_object*); +static lean_object* l___regBuiltin_Int_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1323____closed__7; LEAN_EXPORT lean_object* l_Int_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_Int_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1555_(lean_object*); -static lean_object* l___regBuiltin_Int_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1873____closed__2; -static lean_object* l___regBuiltin_Int_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1228____closed__5; -LEAN_EXPORT lean_object* l___regBuiltin_Int_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1873_(lean_object*); -static lean_object* l___regBuiltin_Int_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1428____closed__1; -LEAN_EXPORT lean_object* l_Int_fromExpr_x3f___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; -x_11 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_11, 0, x_1); -x_12 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_12, 0, x_11); -lean_ctor_set(x_12, 1, x_10); -return x_12; -} -} -static lean_object* _init_l_Int_fromExpr_x3f___lambda__2___closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("OfNat", 5); -return x_1; -} -} -static lean_object* _init_l_Int_fromExpr_x3f___lambda__2___closed__2() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("ofNat", 5); -return x_1; -} -} -static lean_object* _init_l_Int_fromExpr_x3f___lambda__2___closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Int_fromExpr_x3f___lambda__2___closed__1; -x_2 = l_Int_fromExpr_x3f___lambda__2___closed__2; -x_3 = l_Lean_Name_mkStr2(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Int_fromExpr_x3f___lambda__2___closed__4() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("Int", 3); -return x_1; -} -} -static lean_object* _init_l_Int_fromExpr_x3f___lambda__2___closed__5() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l_Int_fromExpr_x3f___lambda__2___closed__4; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Int_fromExpr_x3f___lambda__2___closed__6() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Int_fromExpr_x3f___lambda__1___boxed), 10, 0); -return x_1; -} -} -static lean_object* _init_l_Int_fromExpr_x3f___lambda__2___closed__7() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = lean_box(0); -x_2 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_2, 0, x_1); -return x_2; -} -} -LEAN_EXPORT lean_object* l_Int_fromExpr_x3f___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, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { -_start: -{ -lean_object* x_12; lean_object* x_13; uint8_t x_14; lean_object* x_15; lean_object* x_16; -x_12 = l_Int_fromExpr_x3f___lambda__2___closed__3; -x_13 = lean_unsigned_to_nat(3u); -x_14 = l_Lean_Expr_isAppOfArity(x_1, x_12, x_13); -if (x_14 == 0) -{ -lean_object* x_82; -x_82 = lean_box(0); -x_15 = x_82; -x_16 = x_11; -goto block_81; -} -else -{ -lean_object* x_83; -x_83 = l_Int_fromExpr_x3f___lambda__2___closed__7; -x_15 = x_83; -x_16 = x_11; -goto block_81; -} -block_81: -{ -if (lean_obj_tag(x_15) == 0) -{ -lean_object* x_17; lean_object* x_18; -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_1); -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 -{ -lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; -lean_dec(x_15); -x_19 = l_Lean_Expr_appFn_x21(x_1); -lean_inc(x_19); -x_20 = l_Lean_Expr_appFn_x21(x_19); -x_21 = l_Lean_Expr_appArg_x21(x_20); -lean_dec(x_20); -lean_inc(x_10); -lean_inc(x_9); -lean_inc(x_8); -lean_inc(x_7); -x_22 = lean_whnf(x_21, x_7, x_8, x_9, x_10, x_16); -if (lean_obj_tag(x_22) == 0) -{ -uint8_t x_23; -x_23 = !lean_is_exclusive(x_22); -if (x_23 == 0) -{ -lean_object* x_24; lean_object* x_25; lean_object* x_26; uint8_t x_27; -x_24 = lean_ctor_get(x_22, 0); -x_25 = lean_ctor_get(x_22, 1); -x_26 = l_Int_fromExpr_x3f___lambda__2___closed__5; -x_27 = l_Lean_Expr_isConstOf(x_24, x_26); -lean_dec(x_24); -if (x_27 == 0) -{ -lean_object* x_28; -lean_dec(x_19); -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); -x_28 = lean_box(0); -lean_ctor_set(x_22, 0, x_28); -return x_22; -} -else -{ -lean_object* x_29; lean_object* x_30; -lean_free_object(x_22); -x_29 = l_Lean_Expr_appArg_x21(x_19); -lean_dec(x_19); -lean_inc(x_10); -lean_inc(x_9); -lean_inc(x_8); -x_30 = l_Nat_fromExpr_x3f(x_29, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_25); -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_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); -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_box(0); -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_box(0); -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; lean_object* x_40; lean_object* 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 = lean_nat_to_int(x_39); -x_41 = l_Int_fromExpr_x3f___lambda__2___closed__6; -if (x_2 == 0) -{ -lean_object* x_42; lean_object* x_43; -x_42 = lean_box(0); -x_43 = lean_apply_10(x_41, x_40, x_42, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_38); -return x_43; -} -else -{ -lean_object* x_44; lean_object* x_45; lean_object* x_46; -x_44 = lean_int_neg(x_40); -lean_dec(x_40); -x_45 = lean_box(0); -x_46 = lean_apply_10(x_41, x_44, x_45, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_38); -return x_46; -} -} -} -else -{ -uint8_t x_47; -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); -x_47 = !lean_is_exclusive(x_30); -if (x_47 == 0) -{ -return x_30; -} -else -{ -lean_object* x_48; lean_object* x_49; lean_object* x_50; -x_48 = lean_ctor_get(x_30, 0); -x_49 = lean_ctor_get(x_30, 1); -lean_inc(x_49); -lean_inc(x_48); -lean_dec(x_30); -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 -{ -lean_object* x_51; lean_object* x_52; lean_object* x_53; uint8_t x_54; -x_51 = lean_ctor_get(x_22, 0); -x_52 = lean_ctor_get(x_22, 1); -lean_inc(x_52); -lean_inc(x_51); -lean_dec(x_22); -x_53 = l_Int_fromExpr_x3f___lambda__2___closed__5; -x_54 = l_Lean_Expr_isConstOf(x_51, x_53); -lean_dec(x_51); -if (x_54 == 0) -{ -lean_object* x_55; lean_object* x_56; -lean_dec(x_19); -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); -x_55 = lean_box(0); -x_56 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_56, 0, x_55); -lean_ctor_set(x_56, 1, x_52); -return x_56; -} -else -{ -lean_object* x_57; lean_object* x_58; -x_57 = l_Lean_Expr_appArg_x21(x_19); -lean_dec(x_19); -lean_inc(x_10); -lean_inc(x_9); -lean_inc(x_8); -x_58 = l_Nat_fromExpr_x3f(x_57, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_52); -if (lean_obj_tag(x_58) == 0) -{ -lean_object* x_59; -x_59 = lean_ctor_get(x_58, 0); -lean_inc(x_59); -if (lean_obj_tag(x_59) == 0) -{ -lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; -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); -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_58); - x_61 = lean_box(0); -} -x_62 = lean_box(0); -if (lean_is_scalar(x_61)) { - x_63 = lean_alloc_ctor(0, 2, 0); -} else { - x_63 = x_61; -} -lean_ctor_set(x_63, 0, x_62); -lean_ctor_set(x_63, 1, x_60); -return x_63; -} -else -{ -lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; -x_64 = lean_ctor_get(x_58, 1); -lean_inc(x_64); -lean_dec(x_58); -x_65 = lean_ctor_get(x_59, 0); -lean_inc(x_65); -lean_dec(x_59); -x_66 = lean_nat_to_int(x_65); -x_67 = l_Int_fromExpr_x3f___lambda__2___closed__6; -if (x_2 == 0) -{ -lean_object* x_68; lean_object* x_69; -x_68 = lean_box(0); -x_69 = lean_apply_10(x_67, x_66, x_68, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_64); -return x_69; -} -else -{ -lean_object* x_70; lean_object* x_71; lean_object* x_72; -x_70 = lean_int_neg(x_66); -lean_dec(x_66); -x_71 = lean_box(0); -x_72 = lean_apply_10(x_67, x_70, x_71, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_64); -return x_72; -} -} -} -else -{ -lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; -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); -x_73 = lean_ctor_get(x_58, 0); -lean_inc(x_73); -x_74 = lean_ctor_get(x_58, 1); -lean_inc(x_74); -if (lean_is_exclusive(x_58)) { - lean_ctor_release(x_58, 0); - lean_ctor_release(x_58, 1); - x_75 = x_58; -} else { - lean_dec_ref(x_58); - x_75 = lean_box(0); -} -if (lean_is_scalar(x_75)) { - x_76 = lean_alloc_ctor(1, 2, 0); -} else { - x_76 = x_75; -} -lean_ctor_set(x_76, 0, x_73); -lean_ctor_set(x_76, 1, x_74); -return x_76; -} -} -} -} -else -{ -uint8_t x_77; -lean_dec(x_19); -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); -x_77 = !lean_is_exclusive(x_22); -if (x_77 == 0) -{ -return x_22; -} -else -{ -lean_object* x_78; lean_object* x_79; lean_object* x_80; -x_78 = lean_ctor_get(x_22, 0); -x_79 = lean_ctor_get(x_22, 1); -lean_inc(x_79); -lean_inc(x_78); -lean_dec(x_22); -x_80 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_80, 0, x_78); -lean_ctor_set(x_80, 1, x_79); -return x_80; -} -} -} -} -} -} -static lean_object* _init_l_Int_fromExpr_x3f___closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Int_fromExpr_x3f___lambda__2___boxed), 11, 0); -return x_1; -} -} -static lean_object* _init_l_Int_fromExpr_x3f___closed__2() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("Neg", 3); -return x_1; -} -} -static lean_object* _init_l_Int_fromExpr_x3f___closed__3() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("neg", 3); -return x_1; -} -} -static lean_object* _init_l_Int_fromExpr_x3f___closed__4() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Int_fromExpr_x3f___closed__2; -x_2 = l_Int_fromExpr_x3f___closed__3; -x_3 = l_Lean_Name_mkStr2(x_1, x_2); -return x_3; -} -} +static lean_object* l___regBuiltin_Int_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1404____closed__7; LEAN_EXPORT lean_object* l_Int_fromExpr_x3f(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; uint8_t x_13; -x_10 = l_Int_fromExpr_x3f___closed__1; -x_11 = l_Int_fromExpr_x3f___closed__4; -x_12 = lean_unsigned_to_nat(3u); -x_13 = l_Lean_Expr_isAppOfArity(x_1, x_11, x_12); -if (x_13 == 0) -{ -uint8_t x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; -x_14 = 0; -x_15 = lean_box(0); -x_16 = lean_box(x_14); -x_17 = lean_apply_11(x_10, x_1, x_16, x_15, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); -return x_17; -} -else -{ -lean_object* x_18; uint8_t x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; -x_18 = l_Lean_Expr_appArg_x21(x_1); -lean_dec(x_1); -x_19 = 1; -x_20 = lean_box(0); -x_21 = lean_box(x_19); -x_22 = lean_apply_11(x_10, x_18, x_21, x_20, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); -return x_22; +lean_object* x_10; +x_10 = l_Lean_Meta_getIntValue_x3f(x_1, x_5, x_6, x_7, x_8, x_9); +return x_10; } } -} -LEAN_EXPORT lean_object* l_Int_fromExpr_x3f___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) { +LEAN_EXPORT lean_object* l_Int_fromExpr_x3f___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_11; -x_11 = l_Int_fromExpr_x3f___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_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); +lean_object* x_10; +x_10 = l_Int_fromExpr_x3f(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_11; -} -} -LEAN_EXPORT lean_object* l_Int_fromExpr_x3f___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) { -_start: -{ -uint8_t x_12; lean_object* x_13; -x_12 = lean_unbox(x_2); -lean_dec(x_2); -x_13 = l_Int_fromExpr_x3f___lambda__2(x_1, x_12, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); -lean_dec(x_3); -return x_13; -} -} -static lean_object* _init_l_Int_toExpr___closed__1() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l_Lean_levelZero; -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_Int_toExpr___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Int_fromExpr_x3f___lambda__2___closed__3; -x_2 = l_Int_toExpr___closed__1; -x_3 = l_Lean_Expr_const___override(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Int_toExpr___closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l_Int_fromExpr_x3f___lambda__2___closed__5; -x_3 = l_Lean_Expr_const___override(x_2, x_1); -return x_3; -} -} -static lean_object* _init_l_Int_toExpr___closed__4() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("instOfNat", 9); -return x_1; -} -} -static lean_object* _init_l_Int_toExpr___closed__5() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l_Int_toExpr___closed__4; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Int_toExpr___closed__6() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l_Int_toExpr___closed__5; -x_3 = l_Lean_Expr_const___override(x_2, x_1); -return x_3; -} -} -static lean_object* _init_l_Int_toExpr___closed__7() { -_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_Int_toExpr___closed__8() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Int_fromExpr_x3f___closed__4; -x_2 = l_Int_toExpr___closed__1; -x_3 = l_Lean_Expr_const___override(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Int_toExpr___closed__9() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("instNegInt", 10); -return x_1; -} -} -static lean_object* _init_l_Int_toExpr___closed__10() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Int_fromExpr_x3f___lambda__2___closed__4; -x_2 = l_Int_toExpr___closed__9; -x_3 = l_Lean_Name_mkStr2(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Int_toExpr___closed__11() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l_Int_toExpr___closed__10; -x_3 = l_Lean_Expr_const___override(x_2, x_1); -return x_3; -} -} -static lean_object* _init_l_Int_toExpr___closed__12() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = lean_unsigned_to_nat(3u); -x_2 = lean_mk_empty_array_with_capacity(x_1); -return x_2; -} -} -static lean_object* _init_l_Int_toExpr___closed__13() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Int_toExpr___closed__12; -x_2 = l_Int_toExpr___closed__3; -x_3 = lean_array_push(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Int_toExpr___closed__14() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Int_toExpr___closed__13; -x_2 = l_Int_toExpr___closed__11; -x_3 = lean_array_push(x_1, x_2); -return x_3; -} -} -LEAN_EXPORT lean_object* l_Int_toExpr(lean_object* x_1) { -_start: -{ -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; -x_2 = lean_nat_abs(x_1); -x_3 = l_Lean_mkRawNatLit(x_2); -x_4 = l_Int_toExpr___closed__6; -lean_inc(x_3); -x_5 = l_Lean_Expr_app___override(x_4, x_3); -x_6 = l_Int_toExpr___closed__2; -x_7 = l_Int_toExpr___closed__3; -x_8 = l_Lean_mkApp3(x_6, x_7, x_3, x_5); -x_9 = l_Int_toExpr___closed__7; -x_10 = lean_int_dec_lt(x_1, x_9); -if (x_10 == 0) -{ -return x_8; -} -else -{ -lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; -x_11 = l_Int_toExpr___closed__14; -x_12 = lean_array_push(x_11, x_8); -x_13 = l_Int_toExpr___closed__8; -x_14 = l_Lean_mkAppN(x_13, x_12); -return x_14; -} -} -} -LEAN_EXPORT lean_object* l_Int_toExpr___boxed(lean_object* x_1) { -_start: -{ -lean_object* x_2; -x_2 = l_Int_toExpr(x_1); lean_dec(x_1); -return x_2; +return x_10; } } static lean_object* _init_l_Int_reduceUnary___lambda__1___closed__1() { @@ -1134,12 +439,135 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } +static lean_object* _init_l_Int_reduceUnary___lambda__1___closed__2() { +_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_Int_reduceUnary___lambda__1___closed__3() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("Neg", 3); +return x_1; +} +} +static lean_object* _init_l_Int_reduceUnary___lambda__1___closed__4() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("neg", 3); +return x_1; +} +} +static lean_object* _init_l_Int_reduceUnary___lambda__1___closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Int_reduceUnary___lambda__1___closed__3; +x_2 = l_Int_reduceUnary___lambda__1___closed__4; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Int_reduceUnary___lambda__1___closed__6() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = lean_unsigned_to_nat(0u); +x_2 = l_Lean_Level_ofNat(x_1); +return x_2; +} +} +static lean_object* _init_l_Int_reduceUnary___lambda__1___closed__7() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Int_reduceUnary___lambda__1___closed__6; +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_Int_reduceUnary___lambda__1___closed__8() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Int_reduceUnary___lambda__1___closed__5; +x_2 = l_Int_reduceUnary___lambda__1___closed__7; +x_3 = l_Lean_Expr_const___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Int_reduceUnary___lambda__1___closed__9() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("Int", 3); +return x_1; +} +} +static lean_object* _init_l_Int_reduceUnary___lambda__1___closed__10() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Int_reduceUnary___lambda__1___closed__9; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Int_reduceUnary___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_Int_reduceUnary___lambda__1___closed__10; +x_3 = l_Lean_Expr_const___override(x_2, x_1); +return x_3; +} +} +static lean_object* _init_l_Int_reduceUnary___lambda__1___closed__12() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("instNegInt", 10); +return x_1; +} +} +static lean_object* _init_l_Int_reduceUnary___lambda__1___closed__13() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Int_reduceUnary___lambda__1___closed__9; +x_2 = l_Int_reduceUnary___lambda__1___closed__12; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Int_reduceUnary___lambda__1___closed__14() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Int_reduceUnary___lambda__1___closed__13; +x_3 = l_Lean_Expr_const___override(x_2, x_1); +return x_3; +} +} LEAN_EXPORT lean_object* l_Int_reduceUnary___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, lean_object* x_11) { _start: { lean_object* x_12; lean_object* x_13; x_12 = l_Lean_Expr_appArg_x21(x_1); -x_13 = l_Int_fromExpr_x3f(x_12, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +x_13 = l_Lean_Meta_getIntValue_x3f(x_12, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_12); if (lean_obj_tag(x_13) == 0) { lean_object* x_14; @@ -1178,78 +606,140 @@ uint8_t x_21; x_21 = !lean_is_exclusive(x_13); if (x_21 == 0) { -lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; uint32_t x_27; uint8_t x_28; lean_object* x_29; lean_object* x_30; +lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; uint8_t x_26; lean_object* x_27; uint32_t x_28; x_22 = lean_ctor_get(x_13, 0); lean_dec(x_22); x_23 = lean_ctor_get(x_14, 0); lean_inc(x_23); lean_dec(x_14); x_24 = lean_apply_1(x_2, x_23); -x_25 = l_Int_toExpr(x_24); +x_25 = l_Int_reduceUnary___lambda__1___closed__2; +x_26 = lean_int_dec_le(x_25, x_24); +x_27 = lean_box(0); +x_28 = 0; +if (x_26 == 0) +{ +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; uint8_t x_36; lean_object* x_37; lean_object* x_38; +x_29 = lean_int_neg(x_24); lean_dec(x_24); -x_26 = lean_box(0); -x_27 = 0; -x_28 = 1; -x_29 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_29, 0, x_25); -lean_ctor_set(x_29, 1, x_26); -lean_ctor_set_uint32(x_29, sizeof(void*)*2, x_27); -lean_ctor_set_uint8(x_29, sizeof(void*)*2 + 4, x_28); -x_30 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_30, 0, x_29); -lean_ctor_set(x_13, 0, x_30); +x_30 = l_Int_toNat(x_29); +lean_dec(x_29); +x_31 = l_Lean_instToExprInt_mkNat(x_30); +x_32 = l_Int_reduceUnary___lambda__1___closed__8; +x_33 = l_Int_reduceUnary___lambda__1___closed__11; +x_34 = l_Int_reduceUnary___lambda__1___closed__14; +x_35 = l_Lean_mkApp3(x_32, x_33, x_34, x_31); +x_36 = 1; +x_37 = lean_alloc_ctor(0, 2, 5); +lean_ctor_set(x_37, 0, x_35); +lean_ctor_set(x_37, 1, x_27); +lean_ctor_set_uint32(x_37, sizeof(void*)*2, x_28); +lean_ctor_set_uint8(x_37, sizeof(void*)*2 + 4, x_36); +x_38 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_38, 0, x_37); +lean_ctor_set(x_13, 0, x_38); return x_13; } else { -lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; uint32_t x_36; uint8_t x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; -x_31 = lean_ctor_get(x_13, 1); -lean_inc(x_31); +lean_object* x_39; lean_object* x_40; uint8_t x_41; lean_object* x_42; lean_object* x_43; +x_39 = l_Int_toNat(x_24); +lean_dec(x_24); +x_40 = l_Lean_instToExprInt_mkNat(x_39); +x_41 = 1; +x_42 = lean_alloc_ctor(0, 2, 5); +lean_ctor_set(x_42, 0, x_40); +lean_ctor_set(x_42, 1, x_27); +lean_ctor_set_uint32(x_42, sizeof(void*)*2, x_28); +lean_ctor_set_uint8(x_42, sizeof(void*)*2 + 4, x_41); +x_43 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_43, 0, x_42); +lean_ctor_set(x_13, 0, x_43); +return x_13; +} +} +else +{ +lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; uint8_t x_48; lean_object* x_49; uint32_t x_50; +x_44 = lean_ctor_get(x_13, 1); +lean_inc(x_44); lean_dec(x_13); -x_32 = lean_ctor_get(x_14, 0); -lean_inc(x_32); +x_45 = lean_ctor_get(x_14, 0); +lean_inc(x_45); lean_dec(x_14); -x_33 = lean_apply_1(x_2, x_32); -x_34 = l_Int_toExpr(x_33); -lean_dec(x_33); -x_35 = lean_box(0); -x_36 = 0; -x_37 = 1; -x_38 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_38, 0, x_34); -lean_ctor_set(x_38, 1, x_35); -lean_ctor_set_uint32(x_38, sizeof(void*)*2, x_36); -lean_ctor_set_uint8(x_38, sizeof(void*)*2 + 4, x_37); -x_39 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_39, 0, x_38); -x_40 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_40, 0, x_39); -lean_ctor_set(x_40, 1, x_31); -return x_40; +x_46 = lean_apply_1(x_2, x_45); +x_47 = l_Int_reduceUnary___lambda__1___closed__2; +x_48 = lean_int_dec_le(x_47, x_46); +x_49 = lean_box(0); +x_50 = 0; +if (x_48 == 0) +{ +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; uint8_t x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; +x_51 = lean_int_neg(x_46); +lean_dec(x_46); +x_52 = l_Int_toNat(x_51); +lean_dec(x_51); +x_53 = l_Lean_instToExprInt_mkNat(x_52); +x_54 = l_Int_reduceUnary___lambda__1___closed__8; +x_55 = l_Int_reduceUnary___lambda__1___closed__11; +x_56 = l_Int_reduceUnary___lambda__1___closed__14; +x_57 = l_Lean_mkApp3(x_54, x_55, x_56, x_53); +x_58 = 1; +x_59 = lean_alloc_ctor(0, 2, 5); +lean_ctor_set(x_59, 0, x_57); +lean_ctor_set(x_59, 1, x_49); +lean_ctor_set_uint32(x_59, sizeof(void*)*2, x_50); +lean_ctor_set_uint8(x_59, sizeof(void*)*2 + 4, x_58); +x_60 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_60, 0, x_59); +x_61 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_61, 0, x_60); +lean_ctor_set(x_61, 1, x_44); +return x_61; +} +else +{ +lean_object* x_62; lean_object* x_63; uint8_t x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; +x_62 = l_Int_toNat(x_46); +lean_dec(x_46); +x_63 = l_Lean_instToExprInt_mkNat(x_62); +x_64 = 1; +x_65 = lean_alloc_ctor(0, 2, 5); +lean_ctor_set(x_65, 0, x_63); +lean_ctor_set(x_65, 1, x_49); +lean_ctor_set_uint32(x_65, sizeof(void*)*2, x_50); +lean_ctor_set_uint8(x_65, sizeof(void*)*2 + 4, x_64); +x_66 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_66, 0, x_65); +x_67 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_67, 0, x_66); +lean_ctor_set(x_67, 1, x_44); +return x_67; +} } } } else { -uint8_t x_41; +uint8_t x_68; lean_dec(x_2); -x_41 = !lean_is_exclusive(x_13); -if (x_41 == 0) +x_68 = !lean_is_exclusive(x_13); +if (x_68 == 0) { return x_13; } else { -lean_object* x_42; lean_object* x_43; lean_object* x_44; -x_42 = lean_ctor_get(x_13, 0); -x_43 = lean_ctor_get(x_13, 1); -lean_inc(x_43); -lean_inc(x_42); +lean_object* x_69; lean_object* x_70; lean_object* x_71; +x_69 = lean_ctor_get(x_13, 0); +x_70 = lean_ctor_get(x_13, 1); +lean_inc(x_70); +lean_inc(x_69); lean_dec(x_13); -x_44 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_44, 0, x_42); -lean_ctor_set(x_44, 1, x_43); -return x_44; +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; } } } @@ -1283,6 +773,9 @@ else lean_object* x_16; lean_object* x_17; x_16 = lean_box(0); x_17 = l_Int_reduceUnary___lambda__1(x_4, x_3, x_16, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); lean_dec(x_4); return x_17; } @@ -1293,6 +786,9 @@ _start: { lean_object* x_12; x_12 = l_Int_reduceUnary___lambda__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); lean_dec(x_3); lean_dec(x_1); return x_12; @@ -1310,10 +806,8 @@ lean_inc(x_10); lean_inc(x_9); lean_inc(x_8); lean_inc(x_7); -lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_4); -x_14 = l_Int_fromExpr_x3f(x_13, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +x_14 = l_Lean_Meta_getIntValue_x3f(x_13, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_13); if (lean_obj_tag(x_14) == 0) { lean_object* x_15; @@ -1326,9 +820,6 @@ 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_2); lean_dec(x_1); x_16 = !lean_is_exclusive(x_14); @@ -1365,7 +856,8 @@ lean_inc(x_23); lean_dec(x_15); x_24 = l_Lean_Expr_appArg_x21(x_1); lean_dec(x_1); -x_25 = l_Int_fromExpr_x3f(x_24, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_22); +x_25 = l_Lean_Meta_getIntValue_x3f(x_24, x_7, x_8, x_9, x_10, x_22); +lean_dec(x_24); if (lean_obj_tag(x_25) == 0) { lean_object* x_26; @@ -1405,112 +897,171 @@ uint8_t x_33; x_33 = !lean_is_exclusive(x_25); if (x_33 == 0) { -lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; uint32_t x_39; uint8_t x_40; lean_object* x_41; lean_object* x_42; +lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; uint8_t x_38; lean_object* x_39; uint32_t x_40; x_34 = lean_ctor_get(x_25, 0); lean_dec(x_34); x_35 = lean_ctor_get(x_26, 0); lean_inc(x_35); lean_dec(x_26); x_36 = lean_apply_2(x_2, x_23, x_35); -x_37 = l_Int_toExpr(x_36); +x_37 = l_Int_reduceUnary___lambda__1___closed__2; +x_38 = lean_int_dec_le(x_37, x_36); +x_39 = lean_box(0); +x_40 = 0; +if (x_38 == 0) +{ +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; +x_41 = lean_int_neg(x_36); lean_dec(x_36); -x_38 = lean_box(0); -x_39 = 0; -x_40 = 1; -x_41 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_41, 0, x_37); -lean_ctor_set(x_41, 1, x_38); -lean_ctor_set_uint32(x_41, sizeof(void*)*2, x_39); -lean_ctor_set_uint8(x_41, sizeof(void*)*2 + 4, x_40); -x_42 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_42, 0, x_41); -lean_ctor_set(x_25, 0, x_42); +x_42 = l_Int_toNat(x_41); +lean_dec(x_41); +x_43 = l_Lean_instToExprInt_mkNat(x_42); +x_44 = l_Int_reduceUnary___lambda__1___closed__8; +x_45 = l_Int_reduceUnary___lambda__1___closed__11; +x_46 = l_Int_reduceUnary___lambda__1___closed__14; +x_47 = l_Lean_mkApp3(x_44, x_45, x_46, x_43); +x_48 = 1; +x_49 = lean_alloc_ctor(0, 2, 5); +lean_ctor_set(x_49, 0, x_47); +lean_ctor_set(x_49, 1, x_39); +lean_ctor_set_uint32(x_49, sizeof(void*)*2, x_40); +lean_ctor_set_uint8(x_49, sizeof(void*)*2 + 4, x_48); +x_50 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_50, 0, x_49); +lean_ctor_set(x_25, 0, x_50); return x_25; } else { -lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; uint32_t x_48; uint8_t x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; -x_43 = lean_ctor_get(x_25, 1); -lean_inc(x_43); +lean_object* x_51; lean_object* x_52; uint8_t x_53; lean_object* x_54; lean_object* x_55; +x_51 = l_Int_toNat(x_36); +lean_dec(x_36); +x_52 = l_Lean_instToExprInt_mkNat(x_51); +x_53 = 1; +x_54 = lean_alloc_ctor(0, 2, 5); +lean_ctor_set(x_54, 0, x_52); +lean_ctor_set(x_54, 1, x_39); +lean_ctor_set_uint32(x_54, sizeof(void*)*2, x_40); +lean_ctor_set_uint8(x_54, sizeof(void*)*2 + 4, x_53); +x_55 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_55, 0, x_54); +lean_ctor_set(x_25, 0, x_55); +return x_25; +} +} +else +{ +lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; uint8_t x_60; lean_object* x_61; uint32_t x_62; +x_56 = lean_ctor_get(x_25, 1); +lean_inc(x_56); lean_dec(x_25); -x_44 = lean_ctor_get(x_26, 0); -lean_inc(x_44); +x_57 = lean_ctor_get(x_26, 0); +lean_inc(x_57); lean_dec(x_26); -x_45 = lean_apply_2(x_2, x_23, x_44); -x_46 = l_Int_toExpr(x_45); -lean_dec(x_45); -x_47 = lean_box(0); -x_48 = 0; -x_49 = 1; -x_50 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_50, 0, x_46); -lean_ctor_set(x_50, 1, x_47); -lean_ctor_set_uint32(x_50, sizeof(void*)*2, x_48); -lean_ctor_set_uint8(x_50, sizeof(void*)*2 + 4, x_49); -x_51 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_51, 0, x_50); -x_52 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_52, 0, x_51); -lean_ctor_set(x_52, 1, x_43); -return x_52; +x_58 = lean_apply_2(x_2, x_23, x_57); +x_59 = l_Int_reduceUnary___lambda__1___closed__2; +x_60 = lean_int_dec_le(x_59, x_58); +x_61 = lean_box(0); +x_62 = 0; +if (x_60 == 0) +{ +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; uint8_t x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; +x_63 = lean_int_neg(x_58); +lean_dec(x_58); +x_64 = l_Int_toNat(x_63); +lean_dec(x_63); +x_65 = l_Lean_instToExprInt_mkNat(x_64); +x_66 = l_Int_reduceUnary___lambda__1___closed__8; +x_67 = l_Int_reduceUnary___lambda__1___closed__11; +x_68 = l_Int_reduceUnary___lambda__1___closed__14; +x_69 = l_Lean_mkApp3(x_66, x_67, x_68, x_65); +x_70 = 1; +x_71 = lean_alloc_ctor(0, 2, 5); +lean_ctor_set(x_71, 0, x_69); +lean_ctor_set(x_71, 1, x_61); +lean_ctor_set_uint32(x_71, sizeof(void*)*2, x_62); +lean_ctor_set_uint8(x_71, sizeof(void*)*2 + 4, x_70); +x_72 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_72, 0, x_71); +x_73 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_73, 0, x_72); +lean_ctor_set(x_73, 1, x_56); +return x_73; +} +else +{ +lean_object* x_74; lean_object* x_75; uint8_t x_76; lean_object* x_77; lean_object* x_78; lean_object* x_79; +x_74 = l_Int_toNat(x_58); +lean_dec(x_58); +x_75 = l_Lean_instToExprInt_mkNat(x_74); +x_76 = 1; +x_77 = lean_alloc_ctor(0, 2, 5); +lean_ctor_set(x_77, 0, x_75); +lean_ctor_set(x_77, 1, x_61); +lean_ctor_set_uint32(x_77, sizeof(void*)*2, x_62); +lean_ctor_set_uint8(x_77, sizeof(void*)*2 + 4, x_76); +x_78 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_78, 0, x_77); +x_79 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_79, 0, x_78); +lean_ctor_set(x_79, 1, x_56); +return x_79; +} } } } else { -uint8_t x_53; +uint8_t x_80; lean_dec(x_23); lean_dec(x_2); -x_53 = !lean_is_exclusive(x_25); -if (x_53 == 0) +x_80 = !lean_is_exclusive(x_25); +if (x_80 == 0) { return x_25; } else { -lean_object* x_54; lean_object* x_55; lean_object* x_56; -x_54 = lean_ctor_get(x_25, 0); -x_55 = lean_ctor_get(x_25, 1); -lean_inc(x_55); -lean_inc(x_54); +lean_object* x_81; lean_object* x_82; lean_object* x_83; +x_81 = lean_ctor_get(x_25, 0); +x_82 = lean_ctor_get(x_25, 1); +lean_inc(x_82); +lean_inc(x_81); lean_dec(x_25); -x_56 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_56, 0, x_54); -lean_ctor_set(x_56, 1, x_55); -return x_56; +x_83 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_83, 0, x_81); +lean_ctor_set(x_83, 1, x_82); +return x_83; } } } } else { -uint8_t x_57; +uint8_t x_84; 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_2); lean_dec(x_1); -x_57 = !lean_is_exclusive(x_14); -if (x_57 == 0) +x_84 = !lean_is_exclusive(x_14); +if (x_84 == 0) { return x_14; } else { -lean_object* x_58; lean_object* x_59; lean_object* x_60; -x_58 = lean_ctor_get(x_14, 0); -x_59 = lean_ctor_get(x_14, 1); -lean_inc(x_59); -lean_inc(x_58); +lean_object* x_85; lean_object* x_86; lean_object* x_87; +x_85 = lean_ctor_get(x_14, 0); +x_86 = lean_ctor_get(x_14, 1); +lean_inc(x_86); +lean_inc(x_85); lean_dec(x_14); -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; +x_87 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_87, 0, x_85); +lean_ctor_set(x_87, 1, x_86); +return x_87; } } } @@ -1544,6 +1095,9 @@ else lean_object* x_16; lean_object* x_17; x_16 = lean_box(0); x_17 = l_Int_reduceBin___lambda__1(x_4, x_3, x_16, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); return x_17; } } @@ -1553,6 +1107,9 @@ _start: { lean_object* x_12; x_12 = l_Int_reduceBin___lambda__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); lean_dec(x_3); return x_12; } @@ -1569,10 +1126,8 @@ lean_inc(x_10); lean_inc(x_9); lean_inc(x_8); lean_inc(x_7); -lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_4); -x_14 = l_Int_fromExpr_x3f(x_13, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +x_14 = l_Lean_Meta_getIntValue_x3f(x_13, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_13); if (lean_obj_tag(x_14) == 0) { lean_object* x_15; @@ -1585,9 +1140,6 @@ 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_2); lean_dec(x_1); x_16 = !lean_is_exclusive(x_14); @@ -1627,10 +1179,8 @@ lean_inc(x_10); lean_inc(x_9); lean_inc(x_8); lean_inc(x_7); -lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_4); -x_25 = l_Int_fromExpr_x3f(x_24, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_22); +x_25 = l_Lean_Meta_getIntValue_x3f(x_24, x_7, x_8, x_9, x_10, x_22); +lean_dec(x_24); if (lean_obj_tag(x_25) == 0) { lean_object* x_26; @@ -1644,9 +1194,6 @@ 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_2); lean_dec(x_1); x_27 = !lean_is_exclusive(x_25); @@ -1685,9 +1232,6 @@ x_35 = lean_apply_2(x_2, x_23, x_34); x_36 = lean_unbox(x_35); lean_dec(x_35); x_37 = l_Lean_Meta_Simp_evalPropStep(x_1, x_36, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_33); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); return x_37; } } @@ -1699,9 +1243,6 @@ 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_2); lean_dec(x_1); x_38 = !lean_is_exclusive(x_25); @@ -1732,9 +1273,6 @@ 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_2); lean_dec(x_1); x_42 = !lean_is_exclusive(x_14); @@ -1787,6 +1325,9 @@ else lean_object* x_16; lean_object* x_17; x_16 = lean_box(0); x_17 = l_Int_reduceBinPred___lambda__1(x_4, x_3, x_16, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); return x_17; } } @@ -1796,6 +1337,9 @@ _start: { lean_object* x_12; x_12 = l_Int_reduceBinPred___lambda__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); lean_dec(x_3); return x_12; } @@ -1928,10 +1472,8 @@ lean_inc(x_10); lean_inc(x_9); lean_inc(x_8); lean_inc(x_7); -lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_4); -x_14 = l_Int_fromExpr_x3f(x_13, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +x_14 = l_Lean_Meta_getIntValue_x3f(x_13, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_13); if (lean_obj_tag(x_14) == 0) { lean_object* x_15; @@ -1944,9 +1486,6 @@ 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_2); lean_dec(x_1); x_16 = !lean_is_exclusive(x_14); @@ -1983,7 +1522,8 @@ lean_inc(x_23); lean_dec(x_15); x_24 = l_Lean_Expr_appArg_x21(x_1); lean_dec(x_1); -x_25 = l_Int_fromExpr_x3f(x_24, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_22); +x_25 = l_Lean_Meta_getIntValue_x3f(x_24, x_7, x_8, x_9, x_10, x_22); +lean_dec(x_24); if (lean_obj_tag(x_25) == 0) { lean_object* x_26; @@ -2113,9 +1653,6 @@ 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_2); lean_dec(x_1); x_52 = !lean_is_exclusive(x_14); @@ -2168,6 +1705,9 @@ else lean_object* x_16; lean_object* x_17; x_16 = lean_box(0); x_17 = l_Int_reduceBoolPred___lambda__1(x_4, x_3, x_16, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); return x_17; } } @@ -2177,23 +1717,53 @@ _start: { lean_object* x_12; x_12 = l_Int_reduceBoolPred___lambda__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); lean_dec(x_3); return x_12; } } +static lean_object* _init_l_Int_reduceNeg___lambda__1___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("OfNat", 5); +return x_1; +} +} +static lean_object* _init_l_Int_reduceNeg___lambda__1___closed__2() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("ofNat", 5); +return x_1; +} +} +static lean_object* _init_l_Int_reduceNeg___lambda__1___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Int_reduceNeg___lambda__1___closed__1; +x_2 = l_Int_reduceNeg___lambda__1___closed__2; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; +} +} LEAN_EXPORT lean_object* l_Int_reduceNeg___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; uint8_t x_14; x_11 = l_Lean_Expr_appArg_x21(x_1); -x_12 = l_Int_fromExpr_x3f___lambda__2___closed__3; +x_12 = l_Int_reduceNeg___lambda__1___closed__3; x_13 = lean_unsigned_to_nat(3u); x_14 = l_Lean_Expr_isAppOfArity(x_11, x_12, x_13); if (x_14 == 0) { lean_object* x_15; lean_dec(x_1); -x_15 = l_Int_fromExpr_x3f(x_11, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_15 = l_Lean_Meta_getIntValue_x3f(x_11, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_11); if (lean_obj_tag(x_15) == 0) { lean_object* x_16; @@ -2237,151 +1807,268 @@ lean_dec(x_24); x_25 = lean_ctor_get(x_16, 0); lean_inc(x_25); lean_dec(x_16); -x_26 = l_Int_toExpr___closed__7; +x_26 = l_Int_reduceUnary___lambda__1___closed__2; x_27 = lean_int_dec_lt(x_25, x_26); if (x_27 == 0) { -lean_object* x_28; lean_object* x_29; uint32_t x_30; uint8_t x_31; lean_object* x_32; lean_object* x_33; -x_28 = l_Int_toExpr(x_25); -lean_dec(x_25); +uint8_t x_28; lean_object* x_29; uint32_t x_30; +x_28 = lean_int_dec_le(x_26, x_25); x_29 = lean_box(0); x_30 = 0; -x_31 = 1; -x_32 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_32, 0, x_28); -lean_ctor_set(x_32, 1, x_29); -lean_ctor_set_uint32(x_32, sizeof(void*)*2, x_30); -lean_ctor_set_uint8(x_32, sizeof(void*)*2 + 4, x_31); -x_33 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_33, 0, x_32); -lean_ctor_set(x_15, 0, x_33); -return x_15; -} -else +if (x_28 == 0) { -lean_object* x_34; lean_object* x_35; lean_object* x_36; uint32_t x_37; uint8_t x_38; lean_object* x_39; lean_object* x_40; -x_34 = lean_int_neg(x_25); +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_39; lean_object* x_40; +x_31 = lean_int_neg(x_25); lean_dec(x_25); -x_35 = l_Int_toExpr(x_34); -lean_dec(x_34); -x_36 = lean_box(0); -x_37 = 0; +x_32 = l_Int_toNat(x_31); +lean_dec(x_31); +x_33 = l_Lean_instToExprInt_mkNat(x_32); +x_34 = l_Int_reduceUnary___lambda__1___closed__8; +x_35 = l_Int_reduceUnary___lambda__1___closed__11; +x_36 = l_Int_reduceUnary___lambda__1___closed__14; +x_37 = l_Lean_mkApp3(x_34, x_35, x_36, x_33); x_38 = 1; x_39 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_39, 0, x_35); -lean_ctor_set(x_39, 1, x_36); -lean_ctor_set_uint32(x_39, sizeof(void*)*2, x_37); +lean_ctor_set(x_39, 0, x_37); +lean_ctor_set(x_39, 1, x_29); +lean_ctor_set_uint32(x_39, sizeof(void*)*2, x_30); lean_ctor_set_uint8(x_39, sizeof(void*)*2 + 4, x_38); x_40 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_40, 0, x_39); lean_ctor_set(x_15, 0, x_40); return x_15; } +else +{ +lean_object* x_41; lean_object* x_42; uint8_t x_43; lean_object* x_44; lean_object* x_45; +x_41 = l_Int_toNat(x_25); +lean_dec(x_25); +x_42 = l_Lean_instToExprInt_mkNat(x_41); +x_43 = 1; +x_44 = lean_alloc_ctor(0, 2, 5); +lean_ctor_set(x_44, 0, x_42); +lean_ctor_set(x_44, 1, x_29); +lean_ctor_set_uint32(x_44, sizeof(void*)*2, x_30); +lean_ctor_set_uint8(x_44, sizeof(void*)*2 + 4, x_43); +x_45 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_45, 0, x_44); +lean_ctor_set(x_15, 0, x_45); +return x_15; +} } else { -lean_object* x_41; lean_object* x_42; lean_object* x_43; uint8_t x_44; -x_41 = lean_ctor_get(x_15, 1); -lean_inc(x_41); -lean_dec(x_15); -x_42 = lean_ctor_get(x_16, 0); -lean_inc(x_42); -lean_dec(x_16); -x_43 = l_Int_toExpr___closed__7; -x_44 = lean_int_dec_lt(x_42, x_43); -if (x_44 == 0) +lean_object* x_46; uint8_t x_47; lean_object* x_48; uint32_t x_49; +x_46 = lean_int_neg(x_25); +lean_dec(x_25); +x_47 = lean_int_dec_le(x_26, x_46); +x_48 = lean_box(0); +x_49 = 0; +if (x_47 == 0) { -lean_object* x_45; lean_object* x_46; uint32_t x_47; uint8_t x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; -x_45 = l_Int_toExpr(x_42); -lean_dec(x_42); -x_46 = lean_box(0); -x_47 = 0; -x_48 = 1; -x_49 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_49, 0, x_45); -lean_ctor_set(x_49, 1, x_46); -lean_ctor_set_uint32(x_49, sizeof(void*)*2, x_47); -lean_ctor_set_uint8(x_49, sizeof(void*)*2 + 4, x_48); -x_50 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_50, 0, x_49); -x_51 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_51, 0, x_50); -lean_ctor_set(x_51, 1, x_41); -return x_51; -} -else -{ -lean_object* x_52; lean_object* x_53; lean_object* x_54; uint32_t x_55; uint8_t x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; -x_52 = lean_int_neg(x_42); -lean_dec(x_42); -x_53 = l_Int_toExpr(x_52); -lean_dec(x_52); -x_54 = lean_box(0); -x_55 = 0; -x_56 = 1; -x_57 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_57, 0, x_53); -lean_ctor_set(x_57, 1, x_54); -lean_ctor_set_uint32(x_57, sizeof(void*)*2, x_55); -lean_ctor_set_uint8(x_57, sizeof(void*)*2 + 4, x_56); -x_58 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_58, 0, x_57); -x_59 = lean_alloc_ctor(0, 2, 0); +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; uint8_t x_57; lean_object* x_58; lean_object* x_59; +x_50 = lean_int_neg(x_46); +lean_dec(x_46); +x_51 = l_Int_toNat(x_50); +lean_dec(x_50); +x_52 = l_Lean_instToExprInt_mkNat(x_51); +x_53 = l_Int_reduceUnary___lambda__1___closed__8; +x_54 = l_Int_reduceUnary___lambda__1___closed__11; +x_55 = l_Int_reduceUnary___lambda__1___closed__14; +x_56 = l_Lean_mkApp3(x_53, x_54, x_55, x_52); +x_57 = 1; +x_58 = lean_alloc_ctor(0, 2, 5); +lean_ctor_set(x_58, 0, x_56); +lean_ctor_set(x_58, 1, x_48); +lean_ctor_set_uint32(x_58, sizeof(void*)*2, x_49); +lean_ctor_set_uint8(x_58, sizeof(void*)*2 + 4, x_57); +x_59 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_59, 0, x_58); -lean_ctor_set(x_59, 1, x_41); -return x_59; +lean_ctor_set(x_15, 0, x_59); +return x_15; +} +else +{ +lean_object* x_60; lean_object* x_61; uint8_t x_62; lean_object* x_63; lean_object* x_64; +x_60 = l_Int_toNat(x_46); +lean_dec(x_46); +x_61 = l_Lean_instToExprInt_mkNat(x_60); +x_62 = 1; +x_63 = lean_alloc_ctor(0, 2, 5); +lean_ctor_set(x_63, 0, x_61); +lean_ctor_set(x_63, 1, x_48); +lean_ctor_set_uint32(x_63, sizeof(void*)*2, x_49); +lean_ctor_set_uint8(x_63, sizeof(void*)*2 + 4, x_62); +x_64 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_64, 0, x_63); +lean_ctor_set(x_15, 0, x_64); +return x_15; +} +} +} +else +{ +lean_object* x_65; lean_object* x_66; lean_object* x_67; uint8_t x_68; +x_65 = lean_ctor_get(x_15, 1); +lean_inc(x_65); +lean_dec(x_15); +x_66 = lean_ctor_get(x_16, 0); +lean_inc(x_66); +lean_dec(x_16); +x_67 = l_Int_reduceUnary___lambda__1___closed__2; +x_68 = lean_int_dec_lt(x_66, x_67); +if (x_68 == 0) +{ +uint8_t x_69; lean_object* x_70; uint32_t x_71; +x_69 = lean_int_dec_le(x_67, x_66); +x_70 = lean_box(0); +x_71 = 0; +if (x_69 == 0) +{ +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; uint8_t x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; +x_72 = lean_int_neg(x_66); +lean_dec(x_66); +x_73 = l_Int_toNat(x_72); +lean_dec(x_72); +x_74 = l_Lean_instToExprInt_mkNat(x_73); +x_75 = l_Int_reduceUnary___lambda__1___closed__8; +x_76 = l_Int_reduceUnary___lambda__1___closed__11; +x_77 = l_Int_reduceUnary___lambda__1___closed__14; +x_78 = l_Lean_mkApp3(x_75, x_76, x_77, x_74); +x_79 = 1; +x_80 = lean_alloc_ctor(0, 2, 5); +lean_ctor_set(x_80, 0, x_78); +lean_ctor_set(x_80, 1, x_70); +lean_ctor_set_uint32(x_80, sizeof(void*)*2, x_71); +lean_ctor_set_uint8(x_80, sizeof(void*)*2 + 4, x_79); +x_81 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_81, 0, x_80); +x_82 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_82, 0, x_81); +lean_ctor_set(x_82, 1, x_65); +return x_82; +} +else +{ +lean_object* x_83; lean_object* x_84; uint8_t x_85; lean_object* x_86; lean_object* x_87; lean_object* x_88; +x_83 = l_Int_toNat(x_66); +lean_dec(x_66); +x_84 = l_Lean_instToExprInt_mkNat(x_83); +x_85 = 1; +x_86 = lean_alloc_ctor(0, 2, 5); +lean_ctor_set(x_86, 0, x_84); +lean_ctor_set(x_86, 1, x_70); +lean_ctor_set_uint32(x_86, sizeof(void*)*2, x_71); +lean_ctor_set_uint8(x_86, sizeof(void*)*2 + 4, x_85); +x_87 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_87, 0, x_86); +x_88 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_88, 0, x_87); +lean_ctor_set(x_88, 1, x_65); +return x_88; +} +} +else +{ +lean_object* x_89; uint8_t x_90; lean_object* x_91; uint32_t x_92; +x_89 = lean_int_neg(x_66); +lean_dec(x_66); +x_90 = lean_int_dec_le(x_67, x_89); +x_91 = lean_box(0); +x_92 = 0; +if (x_90 == 0) +{ +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; uint8_t x_100; lean_object* x_101; lean_object* x_102; lean_object* x_103; +x_93 = lean_int_neg(x_89); +lean_dec(x_89); +x_94 = l_Int_toNat(x_93); +lean_dec(x_93); +x_95 = l_Lean_instToExprInt_mkNat(x_94); +x_96 = l_Int_reduceUnary___lambda__1___closed__8; +x_97 = l_Int_reduceUnary___lambda__1___closed__11; +x_98 = l_Int_reduceUnary___lambda__1___closed__14; +x_99 = l_Lean_mkApp3(x_96, x_97, x_98, x_95); +x_100 = 1; +x_101 = lean_alloc_ctor(0, 2, 5); +lean_ctor_set(x_101, 0, x_99); +lean_ctor_set(x_101, 1, x_91); +lean_ctor_set_uint32(x_101, sizeof(void*)*2, x_92); +lean_ctor_set_uint8(x_101, sizeof(void*)*2 + 4, x_100); +x_102 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_102, 0, x_101); +x_103 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_103, 0, x_102); +lean_ctor_set(x_103, 1, x_65); +return x_103; +} +else +{ +lean_object* x_104; lean_object* x_105; uint8_t x_106; lean_object* x_107; lean_object* x_108; lean_object* x_109; +x_104 = l_Int_toNat(x_89); +lean_dec(x_89); +x_105 = l_Lean_instToExprInt_mkNat(x_104); +x_106 = 1; +x_107 = lean_alloc_ctor(0, 2, 5); +lean_ctor_set(x_107, 0, x_105); +lean_ctor_set(x_107, 1, x_91); +lean_ctor_set_uint32(x_107, sizeof(void*)*2, x_92); +lean_ctor_set_uint8(x_107, sizeof(void*)*2 + 4, x_106); +x_108 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_108, 0, x_107); +x_109 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_109, 0, x_108); +lean_ctor_set(x_109, 1, x_65); +return x_109; +} } } } } else { -uint8_t x_60; -x_60 = !lean_is_exclusive(x_15); -if (x_60 == 0) +uint8_t x_110; +x_110 = !lean_is_exclusive(x_15); +if (x_110 == 0) { return x_15; } else { -lean_object* x_61; lean_object* x_62; lean_object* x_63; -x_61 = lean_ctor_get(x_15, 0); -x_62 = lean_ctor_get(x_15, 1); -lean_inc(x_62); -lean_inc(x_61); +lean_object* x_111; lean_object* x_112; lean_object* x_113; +x_111 = lean_ctor_get(x_15, 0); +x_112 = lean_ctor_get(x_15, 1); +lean_inc(x_112); +lean_inc(x_111); lean_dec(x_15); -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; +x_113 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_113, 0, x_111); +lean_ctor_set(x_113, 1, x_112); +return x_113; } } } else { -lean_object* x_64; uint32_t x_65; uint8_t x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; +lean_object* x_114; uint32_t x_115; uint8_t x_116; lean_object* x_117; lean_object* x_118; lean_object* x_119; lean_dec(x_11); 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_64 = lean_box(0); -x_65 = 0; -x_66 = 1; -x_67 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_67, 0, x_1); -lean_ctor_set(x_67, 1, x_64); -lean_ctor_set_uint32(x_67, sizeof(void*)*2, x_65); -lean_ctor_set_uint8(x_67, sizeof(void*)*2 + 4, x_66); -x_68 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_68, 0, x_67); -x_69 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_69, 0, x_68); -lean_ctor_set(x_69, 1, x_10); -return x_69; +x_114 = lean_box(0); +x_115 = 0; +x_116 = 1; +x_117 = lean_alloc_ctor(0, 2, 5); +lean_ctor_set(x_117, 0, x_1); +lean_ctor_set(x_117, 1, x_114); +lean_ctor_set_uint32(x_117, sizeof(void*)*2, x_115); +lean_ctor_set_uint8(x_117, sizeof(void*)*2 + 4, x_116); +x_118 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_118, 0, x_117); +x_119 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_119, 0, x_118); +lean_ctor_set(x_119, 1, x_10); +return x_119; } } } @@ -2389,7 +2076,7 @@ LEAN_EXPORT lean_object* l_Int_reduceNeg(lean_object* x_1, lean_object* x_2, lea _start: { lean_object* x_10; lean_object* x_11; uint8_t x_12; -x_10 = l_Int_fromExpr_x3f___closed__4; +x_10 = l_Int_reduceUnary___lambda__1___closed__5; x_11 = lean_unsigned_to_nat(3u); x_12 = l_Lean_Expr_isAppOfArity(x_1, x_10, x_11); if (x_12 == 0) @@ -2414,6 +2101,9 @@ else lean_object* x_15; lean_object* x_16; x_15 = lean_box(0); x_16 = l_Int_reduceNeg___lambda__1(x_1, x_15, 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_16; } } @@ -2423,11 +2113,14 @@ _start: { lean_object* x_11; x_11 = l_Int_reduceNeg___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; } } -static lean_object* _init_l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_996____closed__1() { +static lean_object* _init_l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_686____closed__1() { _start: { lean_object* x_1; @@ -2435,21 +2128,21 @@ x_1 = lean_mk_string_from_bytes("reduceNeg", 9); return x_1; } } -static lean_object* _init_l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_996____closed__2() { +static lean_object* _init_l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_686____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Int_fromExpr_x3f___lambda__2___closed__4; -x_2 = l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_996____closed__1; +x_1 = l_Int_reduceUnary___lambda__1___closed__9; +x_2 = l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_686____closed__1; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_996____closed__3() { +static lean_object* _init_l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_686____closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Int_fromExpr_x3f___closed__4; +x_1 = l_Int_reduceUnary___lambda__1___closed__5; x_2 = lean_unsigned_to_nat(3u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -2457,11 +2150,11 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_996____closed__4() { +static lean_object* _init_l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_686____closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Int_fromExpr_x3f___lambda__2___closed__5; +x_1 = l_Int_reduceUnary___lambda__1___closed__10; x_2 = lean_unsigned_to_nat(0u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -2469,7 +2162,7 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_996____closed__5() { +static lean_object* _init_l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_686____closed__5() { _start: { lean_object* x_1; lean_object* x_2; @@ -2478,47 +2171,47 @@ x_2 = lean_mk_empty_array_with_capacity(x_1); return x_2; } } -static lean_object* _init_l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_996____closed__6() { +static lean_object* _init_l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_686____closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_996____closed__5; -x_2 = l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_996____closed__3; +x_1 = l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_686____closed__5; +x_2 = l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_686____closed__3; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_996____closed__7() { +static lean_object* _init_l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_686____closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_996____closed__6; -x_2 = l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_996____closed__4; +x_1 = l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_686____closed__6; +x_2 = l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_686____closed__4; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_996____closed__8() { +static lean_object* _init_l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_686____closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_996____closed__7; +x_1 = l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_686____closed__7; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_996____closed__9() { +static lean_object* _init_l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_686____closed__9() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_996____closed__8; +x_1 = l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_686____closed__8; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_996____closed__10() { +static lean_object* _init_l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_686____closed__10() { _start: { lean_object* x_1; @@ -2526,18 +2219,18 @@ x_1 = lean_alloc_closure((void*)(l_Int_reduceNeg), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_996_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_686_(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_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_996____closed__2; -x_3 = l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_996____closed__9; -x_4 = l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_996____closed__10; +x_2 = l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_686____closed__2; +x_3 = l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_686____closed__9; +x_4 = l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_686____closed__10; x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); return x_5; } } -static lean_object* _init_l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_998____closed__1() { +static lean_object* _init_l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_688____closed__1() { _start: { lean_object* x_1; @@ -2545,19 +2238,19 @@ x_1 = l_Lean_Meta_Simp_builtinSimprocsRef; return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_998_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_688_(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_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_998____closed__1; -x_3 = l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_996____closed__2; +x_2 = l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_688____closed__1; +x_3 = l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_686____closed__2; x_4 = 1; -x_5 = l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_996____closed__10; +x_5 = l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_686____closed__10; 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___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1000____closed__1() { +static lean_object* _init_l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_690____closed__1() { _start: { lean_object* x_1; @@ -2565,14 +2258,14 @@ x_1 = l_Lean_Meta_Simp_builtinSEvalprocsRef; return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1000_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_690_(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_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1000____closed__1; -x_3 = l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_996____closed__2; +x_2 = l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_690____closed__1; +x_3 = l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_686____closed__2; x_4 = 1; -x_5 = l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_996____closed__10; +x_5 = l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_686____closed__10; x_6 = l_Lean_Meta_Simp_addSimprocBuiltinAttrCore(x_2, x_3, x_4, x_5, x_1); return x_6; } @@ -2601,7 +2294,7 @@ LEAN_EXPORT lean_object* l_Int_isPosValue(lean_object* x_1, lean_object* x_2, le _start: { lean_object* x_10; lean_object* x_11; uint8_t x_12; -x_10 = l_Int_fromExpr_x3f___lambda__2___closed__3; +x_10 = l_Int_reduceNeg___lambda__1___closed__3; x_11 = lean_unsigned_to_nat(3u); x_12 = l_Lean_Expr_isAppOfArity(x_1, x_10, x_11); if (x_12 == 0) @@ -2653,7 +2346,7 @@ lean_dec(x_2); return x_11; } } -static lean_object* _init_l___regBuiltin_Int_isPosValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1070____closed__1() { +static lean_object* _init_l___regBuiltin_Int_isPosValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_760____closed__1() { _start: { lean_object* x_1; @@ -2661,21 +2354,21 @@ x_1 = lean_mk_string_from_bytes("isPosValue", 10); return x_1; } } -static lean_object* _init_l___regBuiltin_Int_isPosValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1070____closed__2() { +static lean_object* _init_l___regBuiltin_Int_isPosValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_760____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Int_fromExpr_x3f___lambda__2___closed__4; -x_2 = l___regBuiltin_Int_isPosValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1070____closed__1; +x_1 = l_Int_reduceUnary___lambda__1___closed__9; +x_2 = l___regBuiltin_Int_isPosValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_760____closed__1; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Int_isPosValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1070____closed__3() { +static lean_object* _init_l___regBuiltin_Int_isPosValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_760____closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Int_fromExpr_x3f___lambda__2___closed__3; +x_1 = l_Int_reduceNeg___lambda__1___closed__3; x_2 = lean_unsigned_to_nat(3u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -2683,47 +2376,47 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Int_isPosValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1070____closed__4() { +static lean_object* _init_l___regBuiltin_Int_isPosValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_760____closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_996____closed__5; -x_2 = l___regBuiltin_Int_isPosValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1070____closed__3; +x_1 = l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_686____closed__5; +x_2 = l___regBuiltin_Int_isPosValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_760____closed__3; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Int_isPosValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1070____closed__5() { +static lean_object* _init_l___regBuiltin_Int_isPosValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_760____closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Int_isPosValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1070____closed__4; -x_2 = l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_996____closed__4; +x_1 = l___regBuiltin_Int_isPosValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_760____closed__4; +x_2 = l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_686____closed__4; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Int_isPosValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1070____closed__6() { +static lean_object* _init_l___regBuiltin_Int_isPosValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_760____closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Int_isPosValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1070____closed__5; +x_1 = l___regBuiltin_Int_isPosValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_760____closed__5; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Int_isPosValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1070____closed__7() { +static lean_object* _init_l___regBuiltin_Int_isPosValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_760____closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Int_isPosValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1070____closed__6; +x_1 = l___regBuiltin_Int_isPosValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_760____closed__6; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Int_isPosValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1070____closed__8() { +static lean_object* _init_l___regBuiltin_Int_isPosValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_760____closed__8() { _start: { lean_object* x_1; @@ -2731,25 +2424,25 @@ x_1 = lean_alloc_closure((void*)(l_Int_isPosValue), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_Int_isPosValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1070_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Int_isPosValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_760_(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_Int_isPosValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1070____closed__2; -x_3 = l___regBuiltin_Int_isPosValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1070____closed__7; -x_4 = l___regBuiltin_Int_isPosValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1070____closed__8; +x_2 = l___regBuiltin_Int_isPosValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_760____closed__2; +x_3 = l___regBuiltin_Int_isPosValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_760____closed__7; +x_4 = l___regBuiltin_Int_isPosValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_760____closed__8; x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); return x_5; } } -LEAN_EXPORT lean_object* l___regBuiltin_Int_isPosValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1072_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Int_isPosValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_762_(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_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1000____closed__1; -x_3 = l___regBuiltin_Int_isPosValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1070____closed__2; +x_2 = l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_690____closed__1; +x_3 = l___regBuiltin_Int_isPosValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_760____closed__2; x_4 = 1; -x_5 = l___regBuiltin_Int_isPosValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1070____closed__8; +x_5 = l___regBuiltin_Int_isPosValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_760____closed__8; x_6 = l_Lean_Meta_Simp_addSimprocBuiltinAttrCore(x_2, x_3, x_4, x_5, x_1); return x_6; } @@ -2766,10 +2459,8 @@ lean_inc(x_9); lean_inc(x_8); lean_inc(x_7); lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_4); -lean_inc(x_3); -x_13 = l_Int_fromExpr_x3f(x_12, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_13 = l_Lean_Meta_getIntValue_x3f(x_12, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_12); if (lean_obj_tag(x_13) == 0) { lean_object* x_14; @@ -2782,9 +2473,6 @@ 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); lean_dec(x_1); x_15 = !lean_is_exclusive(x_13); if (x_15 == 0) @@ -2820,7 +2508,8 @@ lean_inc(x_22); lean_dec(x_14); x_23 = l_Lean_Expr_appArg_x21(x_1); lean_dec(x_1); -x_24 = l_Int_fromExpr_x3f(x_23, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_21); +x_24 = l_Lean_Meta_getIntValue_x3f(x_23, x_6, x_7, x_8, x_9, x_21); +lean_dec(x_23); if (lean_obj_tag(x_24) == 0) { lean_object* x_25; @@ -2859,7 +2548,7 @@ uint8_t x_32; x_32 = !lean_is_exclusive(x_24); if (x_32 == 0) { -lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; uint32_t x_38; uint8_t x_39; lean_object* x_40; lean_object* x_41; +lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; uint8_t x_37; lean_object* x_38; uint32_t x_39; x_33 = lean_ctor_get(x_24, 0); lean_dec(x_33); x_34 = lean_ctor_get(x_25, 0); @@ -2868,105 +2557,164 @@ lean_dec(x_25); x_35 = lean_int_add(x_22, x_34); lean_dec(x_34); lean_dec(x_22); -x_36 = l_Int_toExpr(x_35); +x_36 = l_Int_reduceUnary___lambda__1___closed__2; +x_37 = lean_int_dec_le(x_36, x_35); +x_38 = lean_box(0); +x_39 = 0; +if (x_37 == 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; uint8_t x_47; lean_object* x_48; lean_object* x_49; +x_40 = lean_int_neg(x_35); lean_dec(x_35); -x_37 = lean_box(0); -x_38 = 0; -x_39 = 1; -x_40 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_40, 0, x_36); -lean_ctor_set(x_40, 1, x_37); -lean_ctor_set_uint32(x_40, sizeof(void*)*2, x_38); -lean_ctor_set_uint8(x_40, sizeof(void*)*2 + 4, x_39); -x_41 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_41, 0, x_40); -lean_ctor_set(x_24, 0, x_41); +x_41 = l_Int_toNat(x_40); +lean_dec(x_40); +x_42 = l_Lean_instToExprInt_mkNat(x_41); +x_43 = l_Int_reduceUnary___lambda__1___closed__8; +x_44 = l_Int_reduceUnary___lambda__1___closed__11; +x_45 = l_Int_reduceUnary___lambda__1___closed__14; +x_46 = l_Lean_mkApp3(x_43, x_44, x_45, x_42); +x_47 = 1; +x_48 = lean_alloc_ctor(0, 2, 5); +lean_ctor_set(x_48, 0, x_46); +lean_ctor_set(x_48, 1, x_38); +lean_ctor_set_uint32(x_48, sizeof(void*)*2, x_39); +lean_ctor_set_uint8(x_48, sizeof(void*)*2 + 4, x_47); +x_49 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_49, 0, x_48); +lean_ctor_set(x_24, 0, x_49); return x_24; } else { -lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; uint32_t x_47; uint8_t x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; -x_42 = lean_ctor_get(x_24, 1); -lean_inc(x_42); +lean_object* x_50; lean_object* x_51; uint8_t x_52; lean_object* x_53; lean_object* x_54; +x_50 = l_Int_toNat(x_35); +lean_dec(x_35); +x_51 = l_Lean_instToExprInt_mkNat(x_50); +x_52 = 1; +x_53 = lean_alloc_ctor(0, 2, 5); +lean_ctor_set(x_53, 0, x_51); +lean_ctor_set(x_53, 1, x_38); +lean_ctor_set_uint32(x_53, sizeof(void*)*2, x_39); +lean_ctor_set_uint8(x_53, sizeof(void*)*2 + 4, x_52); +x_54 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_54, 0, x_53); +lean_ctor_set(x_24, 0, x_54); +return x_24; +} +} +else +{ +lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; uint8_t x_59; lean_object* x_60; uint32_t x_61; +x_55 = lean_ctor_get(x_24, 1); +lean_inc(x_55); lean_dec(x_24); -x_43 = lean_ctor_get(x_25, 0); -lean_inc(x_43); +x_56 = lean_ctor_get(x_25, 0); +lean_inc(x_56); lean_dec(x_25); -x_44 = lean_int_add(x_22, x_43); -lean_dec(x_43); +x_57 = lean_int_add(x_22, x_56); +lean_dec(x_56); lean_dec(x_22); -x_45 = l_Int_toExpr(x_44); -lean_dec(x_44); -x_46 = lean_box(0); -x_47 = 0; -x_48 = 1; -x_49 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_49, 0, x_45); -lean_ctor_set(x_49, 1, x_46); -lean_ctor_set_uint32(x_49, sizeof(void*)*2, x_47); -lean_ctor_set_uint8(x_49, sizeof(void*)*2 + 4, x_48); -x_50 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_50, 0, x_49); -x_51 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_51, 0, x_50); -lean_ctor_set(x_51, 1, x_42); -return x_51; +x_58 = l_Int_reduceUnary___lambda__1___closed__2; +x_59 = lean_int_dec_le(x_58, x_57); +x_60 = lean_box(0); +x_61 = 0; +if (x_59 == 0) +{ +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; uint8_t x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; +x_62 = lean_int_neg(x_57); +lean_dec(x_57); +x_63 = l_Int_toNat(x_62); +lean_dec(x_62); +x_64 = l_Lean_instToExprInt_mkNat(x_63); +x_65 = l_Int_reduceUnary___lambda__1___closed__8; +x_66 = l_Int_reduceUnary___lambda__1___closed__11; +x_67 = l_Int_reduceUnary___lambda__1___closed__14; +x_68 = l_Lean_mkApp3(x_65, x_66, x_67, x_64); +x_69 = 1; +x_70 = lean_alloc_ctor(0, 2, 5); +lean_ctor_set(x_70, 0, x_68); +lean_ctor_set(x_70, 1, x_60); +lean_ctor_set_uint32(x_70, sizeof(void*)*2, x_61); +lean_ctor_set_uint8(x_70, sizeof(void*)*2 + 4, x_69); +x_71 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_71, 0, 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_55); +return x_72; +} +else +{ +lean_object* x_73; lean_object* x_74; uint8_t x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; +x_73 = l_Int_toNat(x_57); +lean_dec(x_57); +x_74 = l_Lean_instToExprInt_mkNat(x_73); +x_75 = 1; +x_76 = lean_alloc_ctor(0, 2, 5); +lean_ctor_set(x_76, 0, x_74); +lean_ctor_set(x_76, 1, x_60); +lean_ctor_set_uint32(x_76, sizeof(void*)*2, x_61); +lean_ctor_set_uint8(x_76, sizeof(void*)*2 + 4, x_75); +x_77 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_77, 0, x_76); +x_78 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_78, 0, x_77); +lean_ctor_set(x_78, 1, x_55); +return x_78; +} } } } else { -uint8_t x_52; +uint8_t x_79; lean_dec(x_22); -x_52 = !lean_is_exclusive(x_24); -if (x_52 == 0) +x_79 = !lean_is_exclusive(x_24); +if (x_79 == 0) { return x_24; } else { -lean_object* x_53; lean_object* x_54; lean_object* x_55; -x_53 = lean_ctor_get(x_24, 0); -x_54 = lean_ctor_get(x_24, 1); -lean_inc(x_54); -lean_inc(x_53); +lean_object* x_80; lean_object* x_81; lean_object* x_82; +x_80 = lean_ctor_get(x_24, 0); +x_81 = lean_ctor_get(x_24, 1); +lean_inc(x_81); +lean_inc(x_80); lean_dec(x_24); -x_55 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_55, 0, x_53); -lean_ctor_set(x_55, 1, x_54); -return x_55; +x_82 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_82, 0, x_80); +lean_ctor_set(x_82, 1, x_81); +return x_82; } } } } else { -uint8_t x_56; +uint8_t x_83; 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); lean_dec(x_1); -x_56 = !lean_is_exclusive(x_13); -if (x_56 == 0) +x_83 = !lean_is_exclusive(x_13); +if (x_83 == 0) { return x_13; } else { -lean_object* x_57; lean_object* x_58; lean_object* x_59; -x_57 = lean_ctor_get(x_13, 0); -x_58 = lean_ctor_get(x_13, 1); -lean_inc(x_58); -lean_inc(x_57); +lean_object* x_84; lean_object* x_85; lean_object* x_86; +x_84 = lean_ctor_get(x_13, 0); +x_85 = lean_ctor_get(x_13, 1); +lean_inc(x_85); +lean_inc(x_84); lean_dec(x_13); -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; +x_86 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_86, 0, x_84); +lean_ctor_set(x_86, 1, x_85); +return x_86; } } } @@ -3026,6 +2774,9 @@ else lean_object* x_15; lean_object* x_16; x_15 = lean_box(0); x_16 = l_Int_reduceAdd___lambda__1(x_1, x_15, 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_16; } } @@ -3035,11 +2786,14 @@ _start: { lean_object* x_11; x_11 = l_Int_reduceAdd___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; } } -static lean_object* _init_l___regBuiltin_Int_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1108____closed__1() { +static lean_object* _init_l___regBuiltin_Int_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_798____closed__1() { _start: { lean_object* x_1; @@ -3047,17 +2801,17 @@ x_1 = lean_mk_string_from_bytes("reduceAdd", 9); return x_1; } } -static lean_object* _init_l___regBuiltin_Int_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1108____closed__2() { +static lean_object* _init_l___regBuiltin_Int_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_798____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Int_fromExpr_x3f___lambda__2___closed__4; -x_2 = l___regBuiltin_Int_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1108____closed__1; +x_1 = l_Int_reduceUnary___lambda__1___closed__9; +x_2 = l___regBuiltin_Int_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_798____closed__1; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Int_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1108____closed__3() { +static lean_object* _init_l___regBuiltin_Int_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_798____closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -3069,7 +2823,7 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Int_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1108____closed__4() { +static lean_object* _init_l___regBuiltin_Int_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_798____closed__4() { _start: { lean_object* x_1; lean_object* x_2; @@ -3078,77 +2832,77 @@ x_2 = lean_mk_empty_array_with_capacity(x_1); return x_2; } } -static lean_object* _init_l___regBuiltin_Int_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1108____closed__5() { +static lean_object* _init_l___regBuiltin_Int_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_798____closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Int_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1108____closed__4; -x_2 = l___regBuiltin_Int_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1108____closed__3; +x_1 = l___regBuiltin_Int_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_798____closed__4; +x_2 = l___regBuiltin_Int_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_798____closed__3; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Int_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1108____closed__6() { +static lean_object* _init_l___regBuiltin_Int_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_798____closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Int_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1108____closed__5; -x_2 = l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_996____closed__4; +x_1 = l___regBuiltin_Int_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_798____closed__5; +x_2 = l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_686____closed__4; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Int_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1108____closed__7() { +static lean_object* _init_l___regBuiltin_Int_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_798____closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Int_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1108____closed__6; -x_2 = l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_996____closed__4; +x_1 = l___regBuiltin_Int_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_798____closed__6; +x_2 = l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_686____closed__4; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Int_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1108____closed__8() { +static lean_object* _init_l___regBuiltin_Int_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_798____closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Int_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1108____closed__7; -x_2 = l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_996____closed__4; +x_1 = l___regBuiltin_Int_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_798____closed__7; +x_2 = l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_686____closed__4; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Int_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1108____closed__9() { +static lean_object* _init_l___regBuiltin_Int_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_798____closed__9() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Int_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1108____closed__8; +x_1 = l___regBuiltin_Int_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_798____closed__8; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Int_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1108____closed__10() { +static lean_object* _init_l___regBuiltin_Int_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_798____closed__10() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Int_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1108____closed__9; +x_1 = l___regBuiltin_Int_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_798____closed__9; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Int_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1108____closed__11() { +static lean_object* _init_l___regBuiltin_Int_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_798____closed__11() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Int_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1108____closed__10; +x_1 = l___regBuiltin_Int_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_798____closed__10; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Int_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1108____closed__12() { +static lean_object* _init_l___regBuiltin_Int_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_798____closed__12() { _start: { lean_object* x_1; @@ -3156,37 +2910,37 @@ x_1 = lean_alloc_closure((void*)(l_Int_reduceAdd), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_Int_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1108_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Int_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_798_(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_Int_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1108____closed__2; -x_3 = l___regBuiltin_Int_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1108____closed__11; -x_4 = l___regBuiltin_Int_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1108____closed__12; +x_2 = l___regBuiltin_Int_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_798____closed__2; +x_3 = l___regBuiltin_Int_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_798____closed__11; +x_4 = l___regBuiltin_Int_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_798____closed__12; x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); return x_5; } } -LEAN_EXPORT lean_object* l___regBuiltin_Int_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1110_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Int_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_800_(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_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_998____closed__1; -x_3 = l___regBuiltin_Int_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1108____closed__2; +x_2 = l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_688____closed__1; +x_3 = l___regBuiltin_Int_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_798____closed__2; x_4 = 1; -x_5 = l___regBuiltin_Int_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1108____closed__12; +x_5 = l___regBuiltin_Int_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_798____closed__12; 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_Int_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1112_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Int_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_802_(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_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1000____closed__1; -x_3 = l___regBuiltin_Int_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1108____closed__2; +x_2 = l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_690____closed__1; +x_3 = l___regBuiltin_Int_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_798____closed__2; x_4 = 1; -x_5 = l___regBuiltin_Int_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1108____closed__12; +x_5 = l___regBuiltin_Int_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_798____closed__12; x_6 = l_Lean_Meta_Simp_addSimprocBuiltinAttrCore(x_2, x_3, x_4, x_5, x_1); return x_6; } @@ -3203,10 +2957,8 @@ lean_inc(x_9); lean_inc(x_8); lean_inc(x_7); lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_4); -lean_inc(x_3); -x_13 = l_Int_fromExpr_x3f(x_12, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_13 = l_Lean_Meta_getIntValue_x3f(x_12, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_12); if (lean_obj_tag(x_13) == 0) { lean_object* x_14; @@ -3219,9 +2971,6 @@ 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); lean_dec(x_1); x_15 = !lean_is_exclusive(x_13); if (x_15 == 0) @@ -3257,7 +3006,8 @@ lean_inc(x_22); lean_dec(x_14); x_23 = l_Lean_Expr_appArg_x21(x_1); lean_dec(x_1); -x_24 = l_Int_fromExpr_x3f(x_23, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_21); +x_24 = l_Lean_Meta_getIntValue_x3f(x_23, x_6, x_7, x_8, x_9, x_21); +lean_dec(x_23); if (lean_obj_tag(x_24) == 0) { lean_object* x_25; @@ -3296,7 +3046,7 @@ uint8_t x_32; x_32 = !lean_is_exclusive(x_24); if (x_32 == 0) { -lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; uint32_t x_38; uint8_t x_39; lean_object* x_40; lean_object* x_41; +lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; uint8_t x_37; lean_object* x_38; uint32_t x_39; x_33 = lean_ctor_get(x_24, 0); lean_dec(x_33); x_34 = lean_ctor_get(x_25, 0); @@ -3305,105 +3055,164 @@ lean_dec(x_25); x_35 = lean_int_mul(x_22, x_34); lean_dec(x_34); lean_dec(x_22); -x_36 = l_Int_toExpr(x_35); +x_36 = l_Int_reduceUnary___lambda__1___closed__2; +x_37 = lean_int_dec_le(x_36, x_35); +x_38 = lean_box(0); +x_39 = 0; +if (x_37 == 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; uint8_t x_47; lean_object* x_48; lean_object* x_49; +x_40 = lean_int_neg(x_35); lean_dec(x_35); -x_37 = lean_box(0); -x_38 = 0; -x_39 = 1; -x_40 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_40, 0, x_36); -lean_ctor_set(x_40, 1, x_37); -lean_ctor_set_uint32(x_40, sizeof(void*)*2, x_38); -lean_ctor_set_uint8(x_40, sizeof(void*)*2 + 4, x_39); -x_41 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_41, 0, x_40); -lean_ctor_set(x_24, 0, x_41); +x_41 = l_Int_toNat(x_40); +lean_dec(x_40); +x_42 = l_Lean_instToExprInt_mkNat(x_41); +x_43 = l_Int_reduceUnary___lambda__1___closed__8; +x_44 = l_Int_reduceUnary___lambda__1___closed__11; +x_45 = l_Int_reduceUnary___lambda__1___closed__14; +x_46 = l_Lean_mkApp3(x_43, x_44, x_45, x_42); +x_47 = 1; +x_48 = lean_alloc_ctor(0, 2, 5); +lean_ctor_set(x_48, 0, x_46); +lean_ctor_set(x_48, 1, x_38); +lean_ctor_set_uint32(x_48, sizeof(void*)*2, x_39); +lean_ctor_set_uint8(x_48, sizeof(void*)*2 + 4, x_47); +x_49 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_49, 0, x_48); +lean_ctor_set(x_24, 0, x_49); return x_24; } else { -lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; uint32_t x_47; uint8_t x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; -x_42 = lean_ctor_get(x_24, 1); -lean_inc(x_42); +lean_object* x_50; lean_object* x_51; uint8_t x_52; lean_object* x_53; lean_object* x_54; +x_50 = l_Int_toNat(x_35); +lean_dec(x_35); +x_51 = l_Lean_instToExprInt_mkNat(x_50); +x_52 = 1; +x_53 = lean_alloc_ctor(0, 2, 5); +lean_ctor_set(x_53, 0, x_51); +lean_ctor_set(x_53, 1, x_38); +lean_ctor_set_uint32(x_53, sizeof(void*)*2, x_39); +lean_ctor_set_uint8(x_53, sizeof(void*)*2 + 4, x_52); +x_54 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_54, 0, x_53); +lean_ctor_set(x_24, 0, x_54); +return x_24; +} +} +else +{ +lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; uint8_t x_59; lean_object* x_60; uint32_t x_61; +x_55 = lean_ctor_get(x_24, 1); +lean_inc(x_55); lean_dec(x_24); -x_43 = lean_ctor_get(x_25, 0); -lean_inc(x_43); +x_56 = lean_ctor_get(x_25, 0); +lean_inc(x_56); lean_dec(x_25); -x_44 = lean_int_mul(x_22, x_43); -lean_dec(x_43); +x_57 = lean_int_mul(x_22, x_56); +lean_dec(x_56); lean_dec(x_22); -x_45 = l_Int_toExpr(x_44); -lean_dec(x_44); -x_46 = lean_box(0); -x_47 = 0; -x_48 = 1; -x_49 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_49, 0, x_45); -lean_ctor_set(x_49, 1, x_46); -lean_ctor_set_uint32(x_49, sizeof(void*)*2, x_47); -lean_ctor_set_uint8(x_49, sizeof(void*)*2 + 4, x_48); -x_50 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_50, 0, x_49); -x_51 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_51, 0, x_50); -lean_ctor_set(x_51, 1, x_42); -return x_51; +x_58 = l_Int_reduceUnary___lambda__1___closed__2; +x_59 = lean_int_dec_le(x_58, x_57); +x_60 = lean_box(0); +x_61 = 0; +if (x_59 == 0) +{ +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; uint8_t x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; +x_62 = lean_int_neg(x_57); +lean_dec(x_57); +x_63 = l_Int_toNat(x_62); +lean_dec(x_62); +x_64 = l_Lean_instToExprInt_mkNat(x_63); +x_65 = l_Int_reduceUnary___lambda__1___closed__8; +x_66 = l_Int_reduceUnary___lambda__1___closed__11; +x_67 = l_Int_reduceUnary___lambda__1___closed__14; +x_68 = l_Lean_mkApp3(x_65, x_66, x_67, x_64); +x_69 = 1; +x_70 = lean_alloc_ctor(0, 2, 5); +lean_ctor_set(x_70, 0, x_68); +lean_ctor_set(x_70, 1, x_60); +lean_ctor_set_uint32(x_70, sizeof(void*)*2, x_61); +lean_ctor_set_uint8(x_70, sizeof(void*)*2 + 4, x_69); +x_71 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_71, 0, 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_55); +return x_72; +} +else +{ +lean_object* x_73; lean_object* x_74; uint8_t x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; +x_73 = l_Int_toNat(x_57); +lean_dec(x_57); +x_74 = l_Lean_instToExprInt_mkNat(x_73); +x_75 = 1; +x_76 = lean_alloc_ctor(0, 2, 5); +lean_ctor_set(x_76, 0, x_74); +lean_ctor_set(x_76, 1, x_60); +lean_ctor_set_uint32(x_76, sizeof(void*)*2, x_61); +lean_ctor_set_uint8(x_76, sizeof(void*)*2 + 4, x_75); +x_77 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_77, 0, x_76); +x_78 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_78, 0, x_77); +lean_ctor_set(x_78, 1, x_55); +return x_78; +} } } } else { -uint8_t x_52; +uint8_t x_79; lean_dec(x_22); -x_52 = !lean_is_exclusive(x_24); -if (x_52 == 0) +x_79 = !lean_is_exclusive(x_24); +if (x_79 == 0) { return x_24; } else { -lean_object* x_53; lean_object* x_54; lean_object* x_55; -x_53 = lean_ctor_get(x_24, 0); -x_54 = lean_ctor_get(x_24, 1); -lean_inc(x_54); -lean_inc(x_53); +lean_object* x_80; lean_object* x_81; lean_object* x_82; +x_80 = lean_ctor_get(x_24, 0); +x_81 = lean_ctor_get(x_24, 1); +lean_inc(x_81); +lean_inc(x_80); lean_dec(x_24); -x_55 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_55, 0, x_53); -lean_ctor_set(x_55, 1, x_54); -return x_55; +x_82 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_82, 0, x_80); +lean_ctor_set(x_82, 1, x_81); +return x_82; } } } } else { -uint8_t x_56; +uint8_t x_83; 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); lean_dec(x_1); -x_56 = !lean_is_exclusive(x_13); -if (x_56 == 0) +x_83 = !lean_is_exclusive(x_13); +if (x_83 == 0) { return x_13; } else { -lean_object* x_57; lean_object* x_58; lean_object* x_59; -x_57 = lean_ctor_get(x_13, 0); -x_58 = lean_ctor_get(x_13, 1); -lean_inc(x_58); -lean_inc(x_57); +lean_object* x_84; lean_object* x_85; lean_object* x_86; +x_84 = lean_ctor_get(x_13, 0); +x_85 = lean_ctor_get(x_13, 1); +lean_inc(x_85); +lean_inc(x_84); lean_dec(x_13); -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; +x_86 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_86, 0, x_84); +lean_ctor_set(x_86, 1, x_85); +return x_86; } } } @@ -3463,6 +3272,9 @@ else lean_object* x_15; lean_object* x_16; x_15 = lean_box(0); x_16 = l_Int_reduceMul___lambda__1(x_1, x_15, 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_16; } } @@ -3472,11 +3284,14 @@ _start: { lean_object* x_11; x_11 = l_Int_reduceMul___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; } } -static lean_object* _init_l___regBuiltin_Int_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1148____closed__1() { +static lean_object* _init_l___regBuiltin_Int_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_838____closed__1() { _start: { lean_object* x_1; @@ -3484,17 +3299,17 @@ x_1 = lean_mk_string_from_bytes("reduceMul", 9); return x_1; } } -static lean_object* _init_l___regBuiltin_Int_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1148____closed__2() { +static lean_object* _init_l___regBuiltin_Int_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_838____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Int_fromExpr_x3f___lambda__2___closed__4; -x_2 = l___regBuiltin_Int_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1148____closed__1; +x_1 = l_Int_reduceUnary___lambda__1___closed__9; +x_2 = l___regBuiltin_Int_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_838____closed__1; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Int_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1148____closed__3() { +static lean_object* _init_l___regBuiltin_Int_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_838____closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -3506,77 +3321,77 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Int_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1148____closed__4() { +static lean_object* _init_l___regBuiltin_Int_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_838____closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Int_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1108____closed__4; -x_2 = l___regBuiltin_Int_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1148____closed__3; +x_1 = l___regBuiltin_Int_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_798____closed__4; +x_2 = l___regBuiltin_Int_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_838____closed__3; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Int_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1148____closed__5() { +static lean_object* _init_l___regBuiltin_Int_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_838____closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Int_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1148____closed__4; -x_2 = l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_996____closed__4; +x_1 = l___regBuiltin_Int_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_838____closed__4; +x_2 = l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_686____closed__4; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Int_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1148____closed__6() { +static lean_object* _init_l___regBuiltin_Int_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_838____closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Int_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1148____closed__5; -x_2 = l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_996____closed__4; +x_1 = l___regBuiltin_Int_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_838____closed__5; +x_2 = l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_686____closed__4; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Int_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1148____closed__7() { +static lean_object* _init_l___regBuiltin_Int_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_838____closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Int_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1148____closed__6; -x_2 = l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_996____closed__4; +x_1 = l___regBuiltin_Int_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_838____closed__6; +x_2 = l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_686____closed__4; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Int_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1148____closed__8() { +static lean_object* _init_l___regBuiltin_Int_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_838____closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Int_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1148____closed__7; +x_1 = l___regBuiltin_Int_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_838____closed__7; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Int_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1148____closed__9() { +static lean_object* _init_l___regBuiltin_Int_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_838____closed__9() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Int_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1148____closed__8; +x_1 = l___regBuiltin_Int_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_838____closed__8; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Int_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1148____closed__10() { +static lean_object* _init_l___regBuiltin_Int_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_838____closed__10() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Int_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1148____closed__9; +x_1 = l___regBuiltin_Int_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_838____closed__9; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Int_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1148____closed__11() { +static lean_object* _init_l___regBuiltin_Int_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_838____closed__11() { _start: { lean_object* x_1; @@ -3584,37 +3399,37 @@ x_1 = lean_alloc_closure((void*)(l_Int_reduceMul), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_Int_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1148_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Int_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_838_(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_Int_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1148____closed__2; -x_3 = l___regBuiltin_Int_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1148____closed__10; -x_4 = l___regBuiltin_Int_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1148____closed__11; +x_2 = l___regBuiltin_Int_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_838____closed__2; +x_3 = l___regBuiltin_Int_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_838____closed__10; +x_4 = l___regBuiltin_Int_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_838____closed__11; x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); return x_5; } } -LEAN_EXPORT lean_object* l___regBuiltin_Int_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1150_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Int_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_840_(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_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_998____closed__1; -x_3 = l___regBuiltin_Int_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1148____closed__2; +x_2 = l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_688____closed__1; +x_3 = l___regBuiltin_Int_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_838____closed__2; x_4 = 1; -x_5 = l___regBuiltin_Int_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1148____closed__11; +x_5 = l___regBuiltin_Int_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_838____closed__11; 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_Int_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1152_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Int_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_842_(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_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1000____closed__1; -x_3 = l___regBuiltin_Int_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1148____closed__2; +x_2 = l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_690____closed__1; +x_3 = l___regBuiltin_Int_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_838____closed__2; x_4 = 1; -x_5 = l___regBuiltin_Int_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1148____closed__11; +x_5 = l___regBuiltin_Int_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_838____closed__11; x_6 = l_Lean_Meta_Simp_addSimprocBuiltinAttrCore(x_2, x_3, x_4, x_5, x_1); return x_6; } @@ -3631,10 +3446,8 @@ lean_inc(x_9); lean_inc(x_8); lean_inc(x_7); lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_4); -lean_inc(x_3); -x_13 = l_Int_fromExpr_x3f(x_12, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_13 = l_Lean_Meta_getIntValue_x3f(x_12, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_12); if (lean_obj_tag(x_13) == 0) { lean_object* x_14; @@ -3647,9 +3460,6 @@ 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); lean_dec(x_1); x_15 = !lean_is_exclusive(x_13); if (x_15 == 0) @@ -3685,7 +3495,8 @@ lean_inc(x_22); lean_dec(x_14); x_23 = l_Lean_Expr_appArg_x21(x_1); lean_dec(x_1); -x_24 = l_Int_fromExpr_x3f(x_23, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_21); +x_24 = l_Lean_Meta_getIntValue_x3f(x_23, x_6, x_7, x_8, x_9, x_21); +lean_dec(x_23); if (lean_obj_tag(x_24) == 0) { lean_object* x_25; @@ -3724,7 +3535,7 @@ uint8_t x_32; x_32 = !lean_is_exclusive(x_24); if (x_32 == 0) { -lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; uint32_t x_38; uint8_t x_39; lean_object* x_40; lean_object* x_41; +lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; uint8_t x_37; lean_object* x_38; uint32_t x_39; x_33 = lean_ctor_get(x_24, 0); lean_dec(x_33); x_34 = lean_ctor_get(x_25, 0); @@ -3733,105 +3544,164 @@ lean_dec(x_25); x_35 = lean_int_sub(x_22, x_34); lean_dec(x_34); lean_dec(x_22); -x_36 = l_Int_toExpr(x_35); +x_36 = l_Int_reduceUnary___lambda__1___closed__2; +x_37 = lean_int_dec_le(x_36, x_35); +x_38 = lean_box(0); +x_39 = 0; +if (x_37 == 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; uint8_t x_47; lean_object* x_48; lean_object* x_49; +x_40 = lean_int_neg(x_35); lean_dec(x_35); -x_37 = lean_box(0); -x_38 = 0; -x_39 = 1; -x_40 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_40, 0, x_36); -lean_ctor_set(x_40, 1, x_37); -lean_ctor_set_uint32(x_40, sizeof(void*)*2, x_38); -lean_ctor_set_uint8(x_40, sizeof(void*)*2 + 4, x_39); -x_41 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_41, 0, x_40); -lean_ctor_set(x_24, 0, x_41); +x_41 = l_Int_toNat(x_40); +lean_dec(x_40); +x_42 = l_Lean_instToExprInt_mkNat(x_41); +x_43 = l_Int_reduceUnary___lambda__1___closed__8; +x_44 = l_Int_reduceUnary___lambda__1___closed__11; +x_45 = l_Int_reduceUnary___lambda__1___closed__14; +x_46 = l_Lean_mkApp3(x_43, x_44, x_45, x_42); +x_47 = 1; +x_48 = lean_alloc_ctor(0, 2, 5); +lean_ctor_set(x_48, 0, x_46); +lean_ctor_set(x_48, 1, x_38); +lean_ctor_set_uint32(x_48, sizeof(void*)*2, x_39); +lean_ctor_set_uint8(x_48, sizeof(void*)*2 + 4, x_47); +x_49 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_49, 0, x_48); +lean_ctor_set(x_24, 0, x_49); return x_24; } else { -lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; uint32_t x_47; uint8_t x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; -x_42 = lean_ctor_get(x_24, 1); -lean_inc(x_42); +lean_object* x_50; lean_object* x_51; uint8_t x_52; lean_object* x_53; lean_object* x_54; +x_50 = l_Int_toNat(x_35); +lean_dec(x_35); +x_51 = l_Lean_instToExprInt_mkNat(x_50); +x_52 = 1; +x_53 = lean_alloc_ctor(0, 2, 5); +lean_ctor_set(x_53, 0, x_51); +lean_ctor_set(x_53, 1, x_38); +lean_ctor_set_uint32(x_53, sizeof(void*)*2, x_39); +lean_ctor_set_uint8(x_53, sizeof(void*)*2 + 4, x_52); +x_54 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_54, 0, x_53); +lean_ctor_set(x_24, 0, x_54); +return x_24; +} +} +else +{ +lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; uint8_t x_59; lean_object* x_60; uint32_t x_61; +x_55 = lean_ctor_get(x_24, 1); +lean_inc(x_55); lean_dec(x_24); -x_43 = lean_ctor_get(x_25, 0); -lean_inc(x_43); +x_56 = lean_ctor_get(x_25, 0); +lean_inc(x_56); lean_dec(x_25); -x_44 = lean_int_sub(x_22, x_43); -lean_dec(x_43); +x_57 = lean_int_sub(x_22, x_56); +lean_dec(x_56); lean_dec(x_22); -x_45 = l_Int_toExpr(x_44); -lean_dec(x_44); -x_46 = lean_box(0); -x_47 = 0; -x_48 = 1; -x_49 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_49, 0, x_45); -lean_ctor_set(x_49, 1, x_46); -lean_ctor_set_uint32(x_49, sizeof(void*)*2, x_47); -lean_ctor_set_uint8(x_49, sizeof(void*)*2 + 4, x_48); -x_50 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_50, 0, x_49); -x_51 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_51, 0, x_50); -lean_ctor_set(x_51, 1, x_42); -return x_51; +x_58 = l_Int_reduceUnary___lambda__1___closed__2; +x_59 = lean_int_dec_le(x_58, x_57); +x_60 = lean_box(0); +x_61 = 0; +if (x_59 == 0) +{ +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; uint8_t x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; +x_62 = lean_int_neg(x_57); +lean_dec(x_57); +x_63 = l_Int_toNat(x_62); +lean_dec(x_62); +x_64 = l_Lean_instToExprInt_mkNat(x_63); +x_65 = l_Int_reduceUnary___lambda__1___closed__8; +x_66 = l_Int_reduceUnary___lambda__1___closed__11; +x_67 = l_Int_reduceUnary___lambda__1___closed__14; +x_68 = l_Lean_mkApp3(x_65, x_66, x_67, x_64); +x_69 = 1; +x_70 = lean_alloc_ctor(0, 2, 5); +lean_ctor_set(x_70, 0, x_68); +lean_ctor_set(x_70, 1, x_60); +lean_ctor_set_uint32(x_70, sizeof(void*)*2, x_61); +lean_ctor_set_uint8(x_70, sizeof(void*)*2 + 4, x_69); +x_71 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_71, 0, 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_55); +return x_72; +} +else +{ +lean_object* x_73; lean_object* x_74; uint8_t x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; +x_73 = l_Int_toNat(x_57); +lean_dec(x_57); +x_74 = l_Lean_instToExprInt_mkNat(x_73); +x_75 = 1; +x_76 = lean_alloc_ctor(0, 2, 5); +lean_ctor_set(x_76, 0, x_74); +lean_ctor_set(x_76, 1, x_60); +lean_ctor_set_uint32(x_76, sizeof(void*)*2, x_61); +lean_ctor_set_uint8(x_76, sizeof(void*)*2 + 4, x_75); +x_77 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_77, 0, x_76); +x_78 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_78, 0, x_77); +lean_ctor_set(x_78, 1, x_55); +return x_78; +} } } } else { -uint8_t x_52; +uint8_t x_79; lean_dec(x_22); -x_52 = !lean_is_exclusive(x_24); -if (x_52 == 0) +x_79 = !lean_is_exclusive(x_24); +if (x_79 == 0) { return x_24; } else { -lean_object* x_53; lean_object* x_54; lean_object* x_55; -x_53 = lean_ctor_get(x_24, 0); -x_54 = lean_ctor_get(x_24, 1); -lean_inc(x_54); -lean_inc(x_53); +lean_object* x_80; lean_object* x_81; lean_object* x_82; +x_80 = lean_ctor_get(x_24, 0); +x_81 = lean_ctor_get(x_24, 1); +lean_inc(x_81); +lean_inc(x_80); lean_dec(x_24); -x_55 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_55, 0, x_53); -lean_ctor_set(x_55, 1, x_54); -return x_55; +x_82 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_82, 0, x_80); +lean_ctor_set(x_82, 1, x_81); +return x_82; } } } } else { -uint8_t x_56; +uint8_t x_83; 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); lean_dec(x_1); -x_56 = !lean_is_exclusive(x_13); -if (x_56 == 0) +x_83 = !lean_is_exclusive(x_13); +if (x_83 == 0) { return x_13; } else { -lean_object* x_57; lean_object* x_58; lean_object* x_59; -x_57 = lean_ctor_get(x_13, 0); -x_58 = lean_ctor_get(x_13, 1); -lean_inc(x_58); -lean_inc(x_57); +lean_object* x_84; lean_object* x_85; lean_object* x_86; +x_84 = lean_ctor_get(x_13, 0); +x_85 = lean_ctor_get(x_13, 1); +lean_inc(x_85); +lean_inc(x_84); lean_dec(x_13); -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; +x_86 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_86, 0, x_84); +lean_ctor_set(x_86, 1, x_85); +return x_86; } } } @@ -3891,6 +3761,9 @@ else lean_object* x_15; lean_object* x_16; x_15 = lean_box(0); x_16 = l_Int_reduceSub___lambda__1(x_1, x_15, 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_16; } } @@ -3900,11 +3773,14 @@ _start: { lean_object* x_11; x_11 = l_Int_reduceSub___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; } } -static lean_object* _init_l___regBuiltin_Int_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1188____closed__1() { +static lean_object* _init_l___regBuiltin_Int_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_878____closed__1() { _start: { lean_object* x_1; @@ -3912,17 +3788,17 @@ x_1 = lean_mk_string_from_bytes("reduceSub", 9); return x_1; } } -static lean_object* _init_l___regBuiltin_Int_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1188____closed__2() { +static lean_object* _init_l___regBuiltin_Int_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_878____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Int_fromExpr_x3f___lambda__2___closed__4; -x_2 = l___regBuiltin_Int_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1188____closed__1; +x_1 = l_Int_reduceUnary___lambda__1___closed__9; +x_2 = l___regBuiltin_Int_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_878____closed__1; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Int_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1188____closed__3() { +static lean_object* _init_l___regBuiltin_Int_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_878____closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -3934,77 +3810,77 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Int_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1188____closed__4() { +static lean_object* _init_l___regBuiltin_Int_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_878____closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Int_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1108____closed__4; -x_2 = l___regBuiltin_Int_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1188____closed__3; +x_1 = l___regBuiltin_Int_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_798____closed__4; +x_2 = l___regBuiltin_Int_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_878____closed__3; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Int_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1188____closed__5() { +static lean_object* _init_l___regBuiltin_Int_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_878____closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Int_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1188____closed__4; -x_2 = l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_996____closed__4; +x_1 = l___regBuiltin_Int_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_878____closed__4; +x_2 = l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_686____closed__4; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Int_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1188____closed__6() { +static lean_object* _init_l___regBuiltin_Int_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_878____closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Int_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1188____closed__5; -x_2 = l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_996____closed__4; +x_1 = l___regBuiltin_Int_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_878____closed__5; +x_2 = l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_686____closed__4; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Int_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1188____closed__7() { +static lean_object* _init_l___regBuiltin_Int_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_878____closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Int_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1188____closed__6; -x_2 = l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_996____closed__4; +x_1 = l___regBuiltin_Int_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_878____closed__6; +x_2 = l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_686____closed__4; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Int_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1188____closed__8() { +static lean_object* _init_l___regBuiltin_Int_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_878____closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Int_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1188____closed__7; +x_1 = l___regBuiltin_Int_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_878____closed__7; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Int_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1188____closed__9() { +static lean_object* _init_l___regBuiltin_Int_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_878____closed__9() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Int_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1188____closed__8; +x_1 = l___regBuiltin_Int_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_878____closed__8; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Int_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1188____closed__10() { +static lean_object* _init_l___regBuiltin_Int_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_878____closed__10() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Int_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1188____closed__9; +x_1 = l___regBuiltin_Int_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_878____closed__9; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Int_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1188____closed__11() { +static lean_object* _init_l___regBuiltin_Int_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_878____closed__11() { _start: { lean_object* x_1; @@ -4012,37 +3888,37 @@ x_1 = lean_alloc_closure((void*)(l_Int_reduceSub), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_Int_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1188_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Int_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_878_(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_Int_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1188____closed__2; -x_3 = l___regBuiltin_Int_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1188____closed__10; -x_4 = l___regBuiltin_Int_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1188____closed__11; +x_2 = l___regBuiltin_Int_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_878____closed__2; +x_3 = l___regBuiltin_Int_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_878____closed__10; +x_4 = l___regBuiltin_Int_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_878____closed__11; x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); return x_5; } } -LEAN_EXPORT lean_object* l___regBuiltin_Int_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1190_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Int_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_880_(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_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_998____closed__1; -x_3 = l___regBuiltin_Int_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1188____closed__2; +x_2 = l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_688____closed__1; +x_3 = l___regBuiltin_Int_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_878____closed__2; x_4 = 1; -x_5 = l___regBuiltin_Int_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1188____closed__11; +x_5 = l___regBuiltin_Int_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_878____closed__11; 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_Int_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1192_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Int_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_882_(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_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1000____closed__1; -x_3 = l___regBuiltin_Int_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1188____closed__2; +x_2 = l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_690____closed__1; +x_3 = l___regBuiltin_Int_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_878____closed__2; x_4 = 1; -x_5 = l___regBuiltin_Int_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1188____closed__11; +x_5 = l___regBuiltin_Int_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_878____closed__11; x_6 = l_Lean_Meta_Simp_addSimprocBuiltinAttrCore(x_2, x_3, x_4, x_5, x_1); return x_6; } @@ -4059,10 +3935,8 @@ lean_inc(x_9); lean_inc(x_8); lean_inc(x_7); lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_4); -lean_inc(x_3); -x_13 = l_Int_fromExpr_x3f(x_12, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_13 = l_Lean_Meta_getIntValue_x3f(x_12, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_12); if (lean_obj_tag(x_13) == 0) { lean_object* x_14; @@ -4075,9 +3949,6 @@ 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); lean_dec(x_1); x_15 = !lean_is_exclusive(x_13); if (x_15 == 0) @@ -4113,7 +3984,8 @@ lean_inc(x_22); lean_dec(x_14); x_23 = l_Lean_Expr_appArg_x21(x_1); lean_dec(x_1); -x_24 = l_Int_fromExpr_x3f(x_23, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_21); +x_24 = l_Lean_Meta_getIntValue_x3f(x_23, x_6, x_7, x_8, x_9, x_21); +lean_dec(x_23); if (lean_obj_tag(x_24) == 0) { lean_object* x_25; @@ -4152,7 +4024,7 @@ uint8_t x_32; x_32 = !lean_is_exclusive(x_24); if (x_32 == 0) { -lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; uint32_t x_38; uint8_t x_39; lean_object* x_40; lean_object* x_41; +lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; uint8_t x_37; lean_object* x_38; uint32_t x_39; x_33 = lean_ctor_get(x_24, 0); lean_dec(x_33); x_34 = lean_ctor_get(x_25, 0); @@ -4161,105 +4033,164 @@ lean_dec(x_25); x_35 = lean_int_ediv(x_22, x_34); lean_dec(x_34); lean_dec(x_22); -x_36 = l_Int_toExpr(x_35); +x_36 = l_Int_reduceUnary___lambda__1___closed__2; +x_37 = lean_int_dec_le(x_36, x_35); +x_38 = lean_box(0); +x_39 = 0; +if (x_37 == 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; uint8_t x_47; lean_object* x_48; lean_object* x_49; +x_40 = lean_int_neg(x_35); lean_dec(x_35); -x_37 = lean_box(0); -x_38 = 0; -x_39 = 1; -x_40 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_40, 0, x_36); -lean_ctor_set(x_40, 1, x_37); -lean_ctor_set_uint32(x_40, sizeof(void*)*2, x_38); -lean_ctor_set_uint8(x_40, sizeof(void*)*2 + 4, x_39); -x_41 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_41, 0, x_40); -lean_ctor_set(x_24, 0, x_41); +x_41 = l_Int_toNat(x_40); +lean_dec(x_40); +x_42 = l_Lean_instToExprInt_mkNat(x_41); +x_43 = l_Int_reduceUnary___lambda__1___closed__8; +x_44 = l_Int_reduceUnary___lambda__1___closed__11; +x_45 = l_Int_reduceUnary___lambda__1___closed__14; +x_46 = l_Lean_mkApp3(x_43, x_44, x_45, x_42); +x_47 = 1; +x_48 = lean_alloc_ctor(0, 2, 5); +lean_ctor_set(x_48, 0, x_46); +lean_ctor_set(x_48, 1, x_38); +lean_ctor_set_uint32(x_48, sizeof(void*)*2, x_39); +lean_ctor_set_uint8(x_48, sizeof(void*)*2 + 4, x_47); +x_49 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_49, 0, x_48); +lean_ctor_set(x_24, 0, x_49); return x_24; } else { -lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; uint32_t x_47; uint8_t x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; -x_42 = lean_ctor_get(x_24, 1); -lean_inc(x_42); +lean_object* x_50; lean_object* x_51; uint8_t x_52; lean_object* x_53; lean_object* x_54; +x_50 = l_Int_toNat(x_35); +lean_dec(x_35); +x_51 = l_Lean_instToExprInt_mkNat(x_50); +x_52 = 1; +x_53 = lean_alloc_ctor(0, 2, 5); +lean_ctor_set(x_53, 0, x_51); +lean_ctor_set(x_53, 1, x_38); +lean_ctor_set_uint32(x_53, sizeof(void*)*2, x_39); +lean_ctor_set_uint8(x_53, sizeof(void*)*2 + 4, x_52); +x_54 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_54, 0, x_53); +lean_ctor_set(x_24, 0, x_54); +return x_24; +} +} +else +{ +lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; uint8_t x_59; lean_object* x_60; uint32_t x_61; +x_55 = lean_ctor_get(x_24, 1); +lean_inc(x_55); lean_dec(x_24); -x_43 = lean_ctor_get(x_25, 0); -lean_inc(x_43); +x_56 = lean_ctor_get(x_25, 0); +lean_inc(x_56); lean_dec(x_25); -x_44 = lean_int_ediv(x_22, x_43); -lean_dec(x_43); +x_57 = lean_int_ediv(x_22, x_56); +lean_dec(x_56); lean_dec(x_22); -x_45 = l_Int_toExpr(x_44); -lean_dec(x_44); -x_46 = lean_box(0); -x_47 = 0; -x_48 = 1; -x_49 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_49, 0, x_45); -lean_ctor_set(x_49, 1, x_46); -lean_ctor_set_uint32(x_49, sizeof(void*)*2, x_47); -lean_ctor_set_uint8(x_49, sizeof(void*)*2 + 4, x_48); -x_50 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_50, 0, x_49); -x_51 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_51, 0, x_50); -lean_ctor_set(x_51, 1, x_42); -return x_51; +x_58 = l_Int_reduceUnary___lambda__1___closed__2; +x_59 = lean_int_dec_le(x_58, x_57); +x_60 = lean_box(0); +x_61 = 0; +if (x_59 == 0) +{ +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; uint8_t x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; +x_62 = lean_int_neg(x_57); +lean_dec(x_57); +x_63 = l_Int_toNat(x_62); +lean_dec(x_62); +x_64 = l_Lean_instToExprInt_mkNat(x_63); +x_65 = l_Int_reduceUnary___lambda__1___closed__8; +x_66 = l_Int_reduceUnary___lambda__1___closed__11; +x_67 = l_Int_reduceUnary___lambda__1___closed__14; +x_68 = l_Lean_mkApp3(x_65, x_66, x_67, x_64); +x_69 = 1; +x_70 = lean_alloc_ctor(0, 2, 5); +lean_ctor_set(x_70, 0, x_68); +lean_ctor_set(x_70, 1, x_60); +lean_ctor_set_uint32(x_70, sizeof(void*)*2, x_61); +lean_ctor_set_uint8(x_70, sizeof(void*)*2 + 4, x_69); +x_71 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_71, 0, 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_55); +return x_72; +} +else +{ +lean_object* x_73; lean_object* x_74; uint8_t x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; +x_73 = l_Int_toNat(x_57); +lean_dec(x_57); +x_74 = l_Lean_instToExprInt_mkNat(x_73); +x_75 = 1; +x_76 = lean_alloc_ctor(0, 2, 5); +lean_ctor_set(x_76, 0, x_74); +lean_ctor_set(x_76, 1, x_60); +lean_ctor_set_uint32(x_76, sizeof(void*)*2, x_61); +lean_ctor_set_uint8(x_76, sizeof(void*)*2 + 4, x_75); +x_77 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_77, 0, x_76); +x_78 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_78, 0, x_77); +lean_ctor_set(x_78, 1, x_55); +return x_78; +} } } } else { -uint8_t x_52; +uint8_t x_79; lean_dec(x_22); -x_52 = !lean_is_exclusive(x_24); -if (x_52 == 0) +x_79 = !lean_is_exclusive(x_24); +if (x_79 == 0) { return x_24; } else { -lean_object* x_53; lean_object* x_54; lean_object* x_55; -x_53 = lean_ctor_get(x_24, 0); -x_54 = lean_ctor_get(x_24, 1); -lean_inc(x_54); -lean_inc(x_53); +lean_object* x_80; lean_object* x_81; lean_object* x_82; +x_80 = lean_ctor_get(x_24, 0); +x_81 = lean_ctor_get(x_24, 1); +lean_inc(x_81); +lean_inc(x_80); lean_dec(x_24); -x_55 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_55, 0, x_53); -lean_ctor_set(x_55, 1, x_54); -return x_55; +x_82 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_82, 0, x_80); +lean_ctor_set(x_82, 1, x_81); +return x_82; } } } } else { -uint8_t x_56; +uint8_t x_83; 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); lean_dec(x_1); -x_56 = !lean_is_exclusive(x_13); -if (x_56 == 0) +x_83 = !lean_is_exclusive(x_13); +if (x_83 == 0) { return x_13; } else { -lean_object* x_57; lean_object* x_58; lean_object* x_59; -x_57 = lean_ctor_get(x_13, 0); -x_58 = lean_ctor_get(x_13, 1); -lean_inc(x_58); -lean_inc(x_57); +lean_object* x_84; lean_object* x_85; lean_object* x_86; +x_84 = lean_ctor_get(x_13, 0); +x_85 = lean_ctor_get(x_13, 1); +lean_inc(x_85); +lean_inc(x_84); lean_dec(x_13); -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; +x_86 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_86, 0, x_84); +lean_ctor_set(x_86, 1, x_85); +return x_86; } } } @@ -4319,6 +4250,9 @@ else lean_object* x_15; lean_object* x_16; x_15 = lean_box(0); x_16 = l_Int_reduceDiv___lambda__1(x_1, x_15, 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_16; } } @@ -4328,11 +4262,14 @@ _start: { lean_object* x_11; x_11 = l_Int_reduceDiv___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; } } -static lean_object* _init_l___regBuiltin_Int_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1228____closed__1() { +static lean_object* _init_l___regBuiltin_Int_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_918____closed__1() { _start: { lean_object* x_1; @@ -4340,17 +4277,17 @@ x_1 = lean_mk_string_from_bytes("reduceDiv", 9); return x_1; } } -static lean_object* _init_l___regBuiltin_Int_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1228____closed__2() { +static lean_object* _init_l___regBuiltin_Int_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_918____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Int_fromExpr_x3f___lambda__2___closed__4; -x_2 = l___regBuiltin_Int_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1228____closed__1; +x_1 = l_Int_reduceUnary___lambda__1___closed__9; +x_2 = l___regBuiltin_Int_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_918____closed__1; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Int_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1228____closed__3() { +static lean_object* _init_l___regBuiltin_Int_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_918____closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -4362,77 +4299,77 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Int_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1228____closed__4() { +static lean_object* _init_l___regBuiltin_Int_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_918____closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Int_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1108____closed__4; -x_2 = l___regBuiltin_Int_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1228____closed__3; +x_1 = l___regBuiltin_Int_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_798____closed__4; +x_2 = l___regBuiltin_Int_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_918____closed__3; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Int_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1228____closed__5() { +static lean_object* _init_l___regBuiltin_Int_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_918____closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Int_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1228____closed__4; -x_2 = l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_996____closed__4; +x_1 = l___regBuiltin_Int_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_918____closed__4; +x_2 = l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_686____closed__4; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Int_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1228____closed__6() { +static lean_object* _init_l___regBuiltin_Int_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_918____closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Int_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1228____closed__5; -x_2 = l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_996____closed__4; +x_1 = l___regBuiltin_Int_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_918____closed__5; +x_2 = l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_686____closed__4; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Int_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1228____closed__7() { +static lean_object* _init_l___regBuiltin_Int_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_918____closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Int_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1228____closed__6; -x_2 = l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_996____closed__4; +x_1 = l___regBuiltin_Int_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_918____closed__6; +x_2 = l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_686____closed__4; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Int_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1228____closed__8() { +static lean_object* _init_l___regBuiltin_Int_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_918____closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Int_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1228____closed__7; +x_1 = l___regBuiltin_Int_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_918____closed__7; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Int_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1228____closed__9() { +static lean_object* _init_l___regBuiltin_Int_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_918____closed__9() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Int_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1228____closed__8; +x_1 = l___regBuiltin_Int_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_918____closed__8; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Int_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1228____closed__10() { +static lean_object* _init_l___regBuiltin_Int_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_918____closed__10() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Int_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1228____closed__9; +x_1 = l___regBuiltin_Int_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_918____closed__9; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Int_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1228____closed__11() { +static lean_object* _init_l___regBuiltin_Int_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_918____closed__11() { _start: { lean_object* x_1; @@ -4440,37 +4377,37 @@ x_1 = lean_alloc_closure((void*)(l_Int_reduceDiv), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_Int_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1228_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Int_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_918_(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_Int_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1228____closed__2; -x_3 = l___regBuiltin_Int_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1228____closed__10; -x_4 = l___regBuiltin_Int_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1228____closed__11; +x_2 = l___regBuiltin_Int_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_918____closed__2; +x_3 = l___regBuiltin_Int_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_918____closed__10; +x_4 = l___regBuiltin_Int_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_918____closed__11; x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); return x_5; } } -LEAN_EXPORT lean_object* l___regBuiltin_Int_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1230_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Int_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_920_(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_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_998____closed__1; -x_3 = l___regBuiltin_Int_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1228____closed__2; +x_2 = l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_688____closed__1; +x_3 = l___regBuiltin_Int_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_918____closed__2; x_4 = 1; -x_5 = l___regBuiltin_Int_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1228____closed__11; +x_5 = l___regBuiltin_Int_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_918____closed__11; 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_Int_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1232_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Int_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_922_(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_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1000____closed__1; -x_3 = l___regBuiltin_Int_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1228____closed__2; +x_2 = l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_690____closed__1; +x_3 = l___regBuiltin_Int_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_918____closed__2; x_4 = 1; -x_5 = l___regBuiltin_Int_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1228____closed__11; +x_5 = l___regBuiltin_Int_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_918____closed__11; x_6 = l_Lean_Meta_Simp_addSimprocBuiltinAttrCore(x_2, x_3, x_4, x_5, x_1); return x_6; } @@ -4487,10 +4424,8 @@ lean_inc(x_9); lean_inc(x_8); lean_inc(x_7); lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_4); -lean_inc(x_3); -x_13 = l_Int_fromExpr_x3f(x_12, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_13 = l_Lean_Meta_getIntValue_x3f(x_12, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_12); if (lean_obj_tag(x_13) == 0) { lean_object* x_14; @@ -4503,9 +4438,6 @@ 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); lean_dec(x_1); x_15 = !lean_is_exclusive(x_13); if (x_15 == 0) @@ -4541,7 +4473,8 @@ lean_inc(x_22); lean_dec(x_14); x_23 = l_Lean_Expr_appArg_x21(x_1); lean_dec(x_1); -x_24 = l_Int_fromExpr_x3f(x_23, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_21); +x_24 = l_Lean_Meta_getIntValue_x3f(x_23, x_6, x_7, x_8, x_9, x_21); +lean_dec(x_23); if (lean_obj_tag(x_24) == 0) { lean_object* x_25; @@ -4580,7 +4513,7 @@ uint8_t x_32; x_32 = !lean_is_exclusive(x_24); if (x_32 == 0) { -lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; uint32_t x_38; uint8_t x_39; lean_object* x_40; lean_object* x_41; +lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; uint8_t x_37; lean_object* x_38; uint32_t x_39; x_33 = lean_ctor_get(x_24, 0); lean_dec(x_33); x_34 = lean_ctor_get(x_25, 0); @@ -4589,105 +4522,164 @@ lean_dec(x_25); x_35 = lean_int_emod(x_22, x_34); lean_dec(x_34); lean_dec(x_22); -x_36 = l_Int_toExpr(x_35); +x_36 = l_Int_reduceUnary___lambda__1___closed__2; +x_37 = lean_int_dec_le(x_36, x_35); +x_38 = lean_box(0); +x_39 = 0; +if (x_37 == 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; uint8_t x_47; lean_object* x_48; lean_object* x_49; +x_40 = lean_int_neg(x_35); lean_dec(x_35); -x_37 = lean_box(0); -x_38 = 0; -x_39 = 1; -x_40 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_40, 0, x_36); -lean_ctor_set(x_40, 1, x_37); -lean_ctor_set_uint32(x_40, sizeof(void*)*2, x_38); -lean_ctor_set_uint8(x_40, sizeof(void*)*2 + 4, x_39); -x_41 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_41, 0, x_40); -lean_ctor_set(x_24, 0, x_41); +x_41 = l_Int_toNat(x_40); +lean_dec(x_40); +x_42 = l_Lean_instToExprInt_mkNat(x_41); +x_43 = l_Int_reduceUnary___lambda__1___closed__8; +x_44 = l_Int_reduceUnary___lambda__1___closed__11; +x_45 = l_Int_reduceUnary___lambda__1___closed__14; +x_46 = l_Lean_mkApp3(x_43, x_44, x_45, x_42); +x_47 = 1; +x_48 = lean_alloc_ctor(0, 2, 5); +lean_ctor_set(x_48, 0, x_46); +lean_ctor_set(x_48, 1, x_38); +lean_ctor_set_uint32(x_48, sizeof(void*)*2, x_39); +lean_ctor_set_uint8(x_48, sizeof(void*)*2 + 4, x_47); +x_49 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_49, 0, x_48); +lean_ctor_set(x_24, 0, x_49); return x_24; } else { -lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; uint32_t x_47; uint8_t x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; -x_42 = lean_ctor_get(x_24, 1); -lean_inc(x_42); +lean_object* x_50; lean_object* x_51; uint8_t x_52; lean_object* x_53; lean_object* x_54; +x_50 = l_Int_toNat(x_35); +lean_dec(x_35); +x_51 = l_Lean_instToExprInt_mkNat(x_50); +x_52 = 1; +x_53 = lean_alloc_ctor(0, 2, 5); +lean_ctor_set(x_53, 0, x_51); +lean_ctor_set(x_53, 1, x_38); +lean_ctor_set_uint32(x_53, sizeof(void*)*2, x_39); +lean_ctor_set_uint8(x_53, sizeof(void*)*2 + 4, x_52); +x_54 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_54, 0, x_53); +lean_ctor_set(x_24, 0, x_54); +return x_24; +} +} +else +{ +lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; uint8_t x_59; lean_object* x_60; uint32_t x_61; +x_55 = lean_ctor_get(x_24, 1); +lean_inc(x_55); lean_dec(x_24); -x_43 = lean_ctor_get(x_25, 0); -lean_inc(x_43); +x_56 = lean_ctor_get(x_25, 0); +lean_inc(x_56); lean_dec(x_25); -x_44 = lean_int_emod(x_22, x_43); -lean_dec(x_43); +x_57 = lean_int_emod(x_22, x_56); +lean_dec(x_56); lean_dec(x_22); -x_45 = l_Int_toExpr(x_44); -lean_dec(x_44); -x_46 = lean_box(0); -x_47 = 0; -x_48 = 1; -x_49 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_49, 0, x_45); -lean_ctor_set(x_49, 1, x_46); -lean_ctor_set_uint32(x_49, sizeof(void*)*2, x_47); -lean_ctor_set_uint8(x_49, sizeof(void*)*2 + 4, x_48); -x_50 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_50, 0, x_49); -x_51 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_51, 0, x_50); -lean_ctor_set(x_51, 1, x_42); -return x_51; +x_58 = l_Int_reduceUnary___lambda__1___closed__2; +x_59 = lean_int_dec_le(x_58, x_57); +x_60 = lean_box(0); +x_61 = 0; +if (x_59 == 0) +{ +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; uint8_t x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; +x_62 = lean_int_neg(x_57); +lean_dec(x_57); +x_63 = l_Int_toNat(x_62); +lean_dec(x_62); +x_64 = l_Lean_instToExprInt_mkNat(x_63); +x_65 = l_Int_reduceUnary___lambda__1___closed__8; +x_66 = l_Int_reduceUnary___lambda__1___closed__11; +x_67 = l_Int_reduceUnary___lambda__1___closed__14; +x_68 = l_Lean_mkApp3(x_65, x_66, x_67, x_64); +x_69 = 1; +x_70 = lean_alloc_ctor(0, 2, 5); +lean_ctor_set(x_70, 0, x_68); +lean_ctor_set(x_70, 1, x_60); +lean_ctor_set_uint32(x_70, sizeof(void*)*2, x_61); +lean_ctor_set_uint8(x_70, sizeof(void*)*2 + 4, x_69); +x_71 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_71, 0, 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_55); +return x_72; +} +else +{ +lean_object* x_73; lean_object* x_74; uint8_t x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; +x_73 = l_Int_toNat(x_57); +lean_dec(x_57); +x_74 = l_Lean_instToExprInt_mkNat(x_73); +x_75 = 1; +x_76 = lean_alloc_ctor(0, 2, 5); +lean_ctor_set(x_76, 0, x_74); +lean_ctor_set(x_76, 1, x_60); +lean_ctor_set_uint32(x_76, sizeof(void*)*2, x_61); +lean_ctor_set_uint8(x_76, sizeof(void*)*2 + 4, x_75); +x_77 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_77, 0, x_76); +x_78 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_78, 0, x_77); +lean_ctor_set(x_78, 1, x_55); +return x_78; +} } } } else { -uint8_t x_52; +uint8_t x_79; lean_dec(x_22); -x_52 = !lean_is_exclusive(x_24); -if (x_52 == 0) +x_79 = !lean_is_exclusive(x_24); +if (x_79 == 0) { return x_24; } else { -lean_object* x_53; lean_object* x_54; lean_object* x_55; -x_53 = lean_ctor_get(x_24, 0); -x_54 = lean_ctor_get(x_24, 1); -lean_inc(x_54); -lean_inc(x_53); +lean_object* x_80; lean_object* x_81; lean_object* x_82; +x_80 = lean_ctor_get(x_24, 0); +x_81 = lean_ctor_get(x_24, 1); +lean_inc(x_81); +lean_inc(x_80); lean_dec(x_24); -x_55 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_55, 0, x_53); -lean_ctor_set(x_55, 1, x_54); -return x_55; +x_82 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_82, 0, x_80); +lean_ctor_set(x_82, 1, x_81); +return x_82; } } } } else { -uint8_t x_56; +uint8_t x_83; 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); lean_dec(x_1); -x_56 = !lean_is_exclusive(x_13); -if (x_56 == 0) +x_83 = !lean_is_exclusive(x_13); +if (x_83 == 0) { return x_13; } else { -lean_object* x_57; lean_object* x_58; lean_object* x_59; -x_57 = lean_ctor_get(x_13, 0); -x_58 = lean_ctor_get(x_13, 1); -lean_inc(x_58); -lean_inc(x_57); +lean_object* x_84; lean_object* x_85; lean_object* x_86; +x_84 = lean_ctor_get(x_13, 0); +x_85 = lean_ctor_get(x_13, 1); +lean_inc(x_85); +lean_inc(x_84); lean_dec(x_13); -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; +x_86 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_86, 0, x_84); +lean_ctor_set(x_86, 1, x_85); +return x_86; } } } @@ -4747,6 +4739,9 @@ else lean_object* x_15; lean_object* x_16; x_15 = lean_box(0); x_16 = l_Int_reduceMod___lambda__1(x_1, x_15, 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_16; } } @@ -4756,11 +4751,14 @@ _start: { lean_object* x_11; x_11 = l_Int_reduceMod___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; } } -static lean_object* _init_l___regBuiltin_Int_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1268____closed__1() { +static lean_object* _init_l___regBuiltin_Int_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_958____closed__1() { _start: { lean_object* x_1; @@ -4768,17 +4766,17 @@ x_1 = lean_mk_string_from_bytes("reduceMod", 9); return x_1; } } -static lean_object* _init_l___regBuiltin_Int_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1268____closed__2() { +static lean_object* _init_l___regBuiltin_Int_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_958____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Int_fromExpr_x3f___lambda__2___closed__4; -x_2 = l___regBuiltin_Int_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1268____closed__1; +x_1 = l_Int_reduceUnary___lambda__1___closed__9; +x_2 = l___regBuiltin_Int_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_958____closed__1; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Int_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1268____closed__3() { +static lean_object* _init_l___regBuiltin_Int_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_958____closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -4790,77 +4788,77 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Int_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1268____closed__4() { +static lean_object* _init_l___regBuiltin_Int_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_958____closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Int_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1108____closed__4; -x_2 = l___regBuiltin_Int_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1268____closed__3; +x_1 = l___regBuiltin_Int_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_798____closed__4; +x_2 = l___regBuiltin_Int_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_958____closed__3; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Int_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1268____closed__5() { +static lean_object* _init_l___regBuiltin_Int_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_958____closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Int_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1268____closed__4; -x_2 = l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_996____closed__4; +x_1 = l___regBuiltin_Int_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_958____closed__4; +x_2 = l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_686____closed__4; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Int_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1268____closed__6() { +static lean_object* _init_l___regBuiltin_Int_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_958____closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Int_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1268____closed__5; -x_2 = l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_996____closed__4; +x_1 = l___regBuiltin_Int_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_958____closed__5; +x_2 = l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_686____closed__4; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Int_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1268____closed__7() { +static lean_object* _init_l___regBuiltin_Int_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_958____closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Int_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1268____closed__6; -x_2 = l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_996____closed__4; +x_1 = l___regBuiltin_Int_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_958____closed__6; +x_2 = l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_686____closed__4; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Int_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1268____closed__8() { +static lean_object* _init_l___regBuiltin_Int_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_958____closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Int_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1268____closed__7; +x_1 = l___regBuiltin_Int_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_958____closed__7; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Int_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1268____closed__9() { +static lean_object* _init_l___regBuiltin_Int_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_958____closed__9() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Int_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1268____closed__8; +x_1 = l___regBuiltin_Int_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_958____closed__8; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Int_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1268____closed__10() { +static lean_object* _init_l___regBuiltin_Int_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_958____closed__10() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Int_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1268____closed__9; +x_1 = l___regBuiltin_Int_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_958____closed__9; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Int_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1268____closed__11() { +static lean_object* _init_l___regBuiltin_Int_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_958____closed__11() { _start: { lean_object* x_1; @@ -4868,37 +4866,37 @@ x_1 = lean_alloc_closure((void*)(l_Int_reduceMod), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_Int_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1268_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Int_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_958_(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_Int_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1268____closed__2; -x_3 = l___regBuiltin_Int_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1268____closed__10; -x_4 = l___regBuiltin_Int_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1268____closed__11; +x_2 = l___regBuiltin_Int_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_958____closed__2; +x_3 = l___regBuiltin_Int_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_958____closed__10; +x_4 = l___regBuiltin_Int_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_958____closed__11; x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); return x_5; } } -LEAN_EXPORT lean_object* l___regBuiltin_Int_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1270_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Int_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_960_(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_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_998____closed__1; -x_3 = l___regBuiltin_Int_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1268____closed__2; +x_2 = l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_688____closed__1; +x_3 = l___regBuiltin_Int_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_958____closed__2; x_4 = 1; -x_5 = l___regBuiltin_Int_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1268____closed__11; +x_5 = l___regBuiltin_Int_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_958____closed__11; 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_Int_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1272_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Int_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_962_(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_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1000____closed__1; -x_3 = l___regBuiltin_Int_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1268____closed__2; +x_2 = l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_690____closed__1; +x_3 = l___regBuiltin_Int_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_958____closed__2; x_4 = 1; -x_5 = l___regBuiltin_Int_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1268____closed__11; +x_5 = l___regBuiltin_Int_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_958____closed__11; x_6 = l_Lean_Meta_Simp_addSimprocBuiltinAttrCore(x_2, x_3, x_4, x_5, x_1); return x_6; } @@ -4915,10 +4913,8 @@ lean_inc(x_9); lean_inc(x_8); lean_inc(x_7); lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_4); -lean_inc(x_3); -x_13 = l_Int_fromExpr_x3f(x_12, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_13 = l_Lean_Meta_getIntValue_x3f(x_12, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_12); if (lean_obj_tag(x_13) == 0) { lean_object* x_14; @@ -4931,9 +4927,6 @@ 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); lean_dec(x_1); x_15 = !lean_is_exclusive(x_13); if (x_15 == 0) @@ -4969,11 +4962,7 @@ lean_inc(x_22); lean_dec(x_14); x_23 = l_Lean_Expr_appArg_x21(x_1); lean_dec(x_1); -x_24 = l_Nat_fromExpr_x3f(x_23, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_21); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); +x_24 = l_Lean_Meta_getNatValue_x3f(x_23, x_6, x_7, x_8, x_9, x_21); if (lean_obj_tag(x_24) == 0) { lean_object* x_25; @@ -5012,7 +5001,7 @@ uint8_t x_32; x_32 = !lean_is_exclusive(x_24); if (x_32 == 0) { -lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; uint32_t x_38; uint8_t x_39; lean_object* x_40; lean_object* x_41; +lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; uint8_t x_37; lean_object* x_38; uint32_t x_39; x_33 = lean_ctor_get(x_24, 0); lean_dec(x_33); x_34 = lean_ctor_get(x_25, 0); @@ -5021,105 +5010,164 @@ lean_dec(x_25); x_35 = l_Int_pow(x_22, x_34); lean_dec(x_34); lean_dec(x_22); -x_36 = l_Int_toExpr(x_35); +x_36 = l_Int_reduceUnary___lambda__1___closed__2; +x_37 = lean_int_dec_le(x_36, x_35); +x_38 = lean_box(0); +x_39 = 0; +if (x_37 == 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; uint8_t x_47; lean_object* x_48; lean_object* x_49; +x_40 = lean_int_neg(x_35); lean_dec(x_35); -x_37 = lean_box(0); -x_38 = 0; -x_39 = 1; -x_40 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_40, 0, x_36); -lean_ctor_set(x_40, 1, x_37); -lean_ctor_set_uint32(x_40, sizeof(void*)*2, x_38); -lean_ctor_set_uint8(x_40, sizeof(void*)*2 + 4, x_39); -x_41 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_41, 0, x_40); -lean_ctor_set(x_24, 0, x_41); +x_41 = l_Int_toNat(x_40); +lean_dec(x_40); +x_42 = l_Lean_instToExprInt_mkNat(x_41); +x_43 = l_Int_reduceUnary___lambda__1___closed__8; +x_44 = l_Int_reduceUnary___lambda__1___closed__11; +x_45 = l_Int_reduceUnary___lambda__1___closed__14; +x_46 = l_Lean_mkApp3(x_43, x_44, x_45, x_42); +x_47 = 1; +x_48 = lean_alloc_ctor(0, 2, 5); +lean_ctor_set(x_48, 0, x_46); +lean_ctor_set(x_48, 1, x_38); +lean_ctor_set_uint32(x_48, sizeof(void*)*2, x_39); +lean_ctor_set_uint8(x_48, sizeof(void*)*2 + 4, x_47); +x_49 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_49, 0, x_48); +lean_ctor_set(x_24, 0, x_49); return x_24; } else { -lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; uint32_t x_47; uint8_t x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; -x_42 = lean_ctor_get(x_24, 1); -lean_inc(x_42); +lean_object* x_50; lean_object* x_51; uint8_t x_52; lean_object* x_53; lean_object* x_54; +x_50 = l_Int_toNat(x_35); +lean_dec(x_35); +x_51 = l_Lean_instToExprInt_mkNat(x_50); +x_52 = 1; +x_53 = lean_alloc_ctor(0, 2, 5); +lean_ctor_set(x_53, 0, x_51); +lean_ctor_set(x_53, 1, x_38); +lean_ctor_set_uint32(x_53, sizeof(void*)*2, x_39); +lean_ctor_set_uint8(x_53, sizeof(void*)*2 + 4, x_52); +x_54 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_54, 0, x_53); +lean_ctor_set(x_24, 0, x_54); +return x_24; +} +} +else +{ +lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; uint8_t x_59; lean_object* x_60; uint32_t x_61; +x_55 = lean_ctor_get(x_24, 1); +lean_inc(x_55); lean_dec(x_24); -x_43 = lean_ctor_get(x_25, 0); -lean_inc(x_43); +x_56 = lean_ctor_get(x_25, 0); +lean_inc(x_56); lean_dec(x_25); -x_44 = l_Int_pow(x_22, x_43); -lean_dec(x_43); +x_57 = l_Int_pow(x_22, x_56); +lean_dec(x_56); lean_dec(x_22); -x_45 = l_Int_toExpr(x_44); -lean_dec(x_44); -x_46 = lean_box(0); -x_47 = 0; -x_48 = 1; -x_49 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_49, 0, x_45); -lean_ctor_set(x_49, 1, x_46); -lean_ctor_set_uint32(x_49, sizeof(void*)*2, x_47); -lean_ctor_set_uint8(x_49, sizeof(void*)*2 + 4, x_48); -x_50 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_50, 0, x_49); -x_51 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_51, 0, x_50); -lean_ctor_set(x_51, 1, x_42); -return x_51; +x_58 = l_Int_reduceUnary___lambda__1___closed__2; +x_59 = lean_int_dec_le(x_58, x_57); +x_60 = lean_box(0); +x_61 = 0; +if (x_59 == 0) +{ +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; uint8_t x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; +x_62 = lean_int_neg(x_57); +lean_dec(x_57); +x_63 = l_Int_toNat(x_62); +lean_dec(x_62); +x_64 = l_Lean_instToExprInt_mkNat(x_63); +x_65 = l_Int_reduceUnary___lambda__1___closed__8; +x_66 = l_Int_reduceUnary___lambda__1___closed__11; +x_67 = l_Int_reduceUnary___lambda__1___closed__14; +x_68 = l_Lean_mkApp3(x_65, x_66, x_67, x_64); +x_69 = 1; +x_70 = lean_alloc_ctor(0, 2, 5); +lean_ctor_set(x_70, 0, x_68); +lean_ctor_set(x_70, 1, x_60); +lean_ctor_set_uint32(x_70, sizeof(void*)*2, x_61); +lean_ctor_set_uint8(x_70, sizeof(void*)*2 + 4, x_69); +x_71 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_71, 0, 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_55); +return x_72; +} +else +{ +lean_object* x_73; lean_object* x_74; uint8_t x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; +x_73 = l_Int_toNat(x_57); +lean_dec(x_57); +x_74 = l_Lean_instToExprInt_mkNat(x_73); +x_75 = 1; +x_76 = lean_alloc_ctor(0, 2, 5); +lean_ctor_set(x_76, 0, x_74); +lean_ctor_set(x_76, 1, x_60); +lean_ctor_set_uint32(x_76, sizeof(void*)*2, x_61); +lean_ctor_set_uint8(x_76, sizeof(void*)*2 + 4, x_75); +x_77 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_77, 0, x_76); +x_78 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_78, 0, x_77); +lean_ctor_set(x_78, 1, x_55); +return x_78; +} } } } else { -uint8_t x_52; +uint8_t x_79; lean_dec(x_22); -x_52 = !lean_is_exclusive(x_24); -if (x_52 == 0) +x_79 = !lean_is_exclusive(x_24); +if (x_79 == 0) { return x_24; } else { -lean_object* x_53; lean_object* x_54; lean_object* x_55; -x_53 = lean_ctor_get(x_24, 0); -x_54 = lean_ctor_get(x_24, 1); -lean_inc(x_54); -lean_inc(x_53); +lean_object* x_80; lean_object* x_81; lean_object* x_82; +x_80 = lean_ctor_get(x_24, 0); +x_81 = lean_ctor_get(x_24, 1); +lean_inc(x_81); +lean_inc(x_80); lean_dec(x_24); -x_55 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_55, 0, x_53); -lean_ctor_set(x_55, 1, x_54); -return x_55; +x_82 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_82, 0, x_80); +lean_ctor_set(x_82, 1, x_81); +return x_82; } } } } else { -uint8_t x_56; +uint8_t x_83; 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); lean_dec(x_1); -x_56 = !lean_is_exclusive(x_13); -if (x_56 == 0) +x_83 = !lean_is_exclusive(x_13); +if (x_83 == 0) { return x_13; } else { -lean_object* x_57; lean_object* x_58; lean_object* x_59; -x_57 = lean_ctor_get(x_13, 0); -x_58 = lean_ctor_get(x_13, 1); -lean_inc(x_58); -lean_inc(x_57); +lean_object* x_84; lean_object* x_85; lean_object* x_86; +x_84 = lean_ctor_get(x_13, 0); +x_85 = lean_ctor_get(x_13, 1); +lean_inc(x_85); +lean_inc(x_84); lean_dec(x_13); -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; +x_86 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_86, 0, x_84); +lean_ctor_set(x_86, 1, x_85); +return x_86; } } } @@ -5179,6 +5227,9 @@ else lean_object* x_15; lean_object* x_16; x_15 = lean_box(0); x_16 = l_Int_reducePow___lambda__1(x_1, x_15, 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_16; } } @@ -5188,11 +5239,14 @@ _start: { lean_object* x_11; x_11 = l_Int_reducePow___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; } } -static lean_object* _init_l___regBuiltin_Int_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1428____closed__1() { +static lean_object* _init_l___regBuiltin_Int_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1118____closed__1() { _start: { lean_object* x_1; @@ -5200,17 +5254,17 @@ x_1 = lean_mk_string_from_bytes("reducePow", 9); return x_1; } } -static lean_object* _init_l___regBuiltin_Int_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1428____closed__2() { +static lean_object* _init_l___regBuiltin_Int_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1118____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Int_fromExpr_x3f___lambda__2___closed__4; -x_2 = l___regBuiltin_Int_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1428____closed__1; +x_1 = l_Int_reduceUnary___lambda__1___closed__9; +x_2 = l___regBuiltin_Int_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1118____closed__1; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Int_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1428____closed__3() { +static lean_object* _init_l___regBuiltin_Int_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1118____closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -5222,7 +5276,7 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Int_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1428____closed__4() { +static lean_object* _init_l___regBuiltin_Int_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1118____closed__4() { _start: { lean_object* x_1; @@ -5230,21 +5284,21 @@ x_1 = lean_mk_string_from_bytes("Nat", 3); return x_1; } } -static lean_object* _init_l___regBuiltin_Int_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1428____closed__5() { +static lean_object* _init_l___regBuiltin_Int_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1118____closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___regBuiltin_Int_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1428____closed__4; +x_2 = l___regBuiltin_Int_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1118____closed__4; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Int_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1428____closed__6() { +static lean_object* _init_l___regBuiltin_Int_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1118____closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Int_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1428____closed__5; +x_1 = l___regBuiltin_Int_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1118____closed__5; x_2 = lean_unsigned_to_nat(0u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -5252,77 +5306,77 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Int_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1428____closed__7() { +static lean_object* _init_l___regBuiltin_Int_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1118____closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Int_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1108____closed__4; -x_2 = l___regBuiltin_Int_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1428____closed__3; +x_1 = l___regBuiltin_Int_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_798____closed__4; +x_2 = l___regBuiltin_Int_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1118____closed__3; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Int_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1428____closed__8() { +static lean_object* _init_l___regBuiltin_Int_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1118____closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Int_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1428____closed__7; -x_2 = l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_996____closed__4; +x_1 = l___regBuiltin_Int_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1118____closed__7; +x_2 = l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_686____closed__4; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Int_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1428____closed__9() { +static lean_object* _init_l___regBuiltin_Int_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1118____closed__9() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Int_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1428____closed__8; -x_2 = l___regBuiltin_Int_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1428____closed__6; +x_1 = l___regBuiltin_Int_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1118____closed__8; +x_2 = l___regBuiltin_Int_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1118____closed__6; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Int_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1428____closed__10() { +static lean_object* _init_l___regBuiltin_Int_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1118____closed__10() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Int_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1428____closed__9; -x_2 = l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_996____closed__4; +x_1 = l___regBuiltin_Int_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1118____closed__9; +x_2 = l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_686____closed__4; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Int_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1428____closed__11() { +static lean_object* _init_l___regBuiltin_Int_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1118____closed__11() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Int_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1428____closed__10; +x_1 = l___regBuiltin_Int_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1118____closed__10; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Int_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1428____closed__12() { +static lean_object* _init_l___regBuiltin_Int_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1118____closed__12() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Int_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1428____closed__11; +x_1 = l___regBuiltin_Int_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1118____closed__11; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Int_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1428____closed__13() { +static lean_object* _init_l___regBuiltin_Int_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1118____closed__13() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Int_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1428____closed__12; +x_1 = l___regBuiltin_Int_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1118____closed__12; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Int_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1428____closed__14() { +static lean_object* _init_l___regBuiltin_Int_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1118____closed__14() { _start: { lean_object* x_1; @@ -5330,37 +5384,37 @@ x_1 = lean_alloc_closure((void*)(l_Int_reducePow), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_Int_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1428_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Int_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1118_(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_Int_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1428____closed__2; -x_3 = l___regBuiltin_Int_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1428____closed__13; -x_4 = l___regBuiltin_Int_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1428____closed__14; +x_2 = l___regBuiltin_Int_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1118____closed__2; +x_3 = l___regBuiltin_Int_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1118____closed__13; +x_4 = l___regBuiltin_Int_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1118____closed__14; x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); return x_5; } } -LEAN_EXPORT lean_object* l___regBuiltin_Int_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1430_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Int_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1120_(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_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_998____closed__1; -x_3 = l___regBuiltin_Int_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1428____closed__2; +x_2 = l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_688____closed__1; +x_3 = l___regBuiltin_Int_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1118____closed__2; x_4 = 1; -x_5 = l___regBuiltin_Int_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1428____closed__14; +x_5 = l___regBuiltin_Int_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1118____closed__14; 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_Int_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1432_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Int_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1122_(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_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1000____closed__1; -x_3 = l___regBuiltin_Int_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1428____closed__2; +x_2 = l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_690____closed__1; +x_3 = l___regBuiltin_Int_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1118____closed__2; x_4 = 1; -x_5 = l___regBuiltin_Int_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1428____closed__14; +x_5 = l___regBuiltin_Int_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1118____closed__14; x_6 = l_Lean_Meta_Simp_addSimprocBuiltinAttrCore(x_2, x_3, x_4, x_5, x_1); return x_6; } @@ -5377,10 +5431,8 @@ lean_inc(x_9); lean_inc(x_8); lean_inc(x_7); lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_4); -lean_inc(x_3); -x_13 = l_Int_fromExpr_x3f(x_12, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_13 = l_Lean_Meta_getIntValue_x3f(x_12, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_12); if (lean_obj_tag(x_13) == 0) { lean_object* x_14; @@ -5393,9 +5445,6 @@ 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); lean_dec(x_1); x_15 = !lean_is_exclusive(x_13); if (x_15 == 0) @@ -5434,10 +5483,8 @@ lean_inc(x_9); lean_inc(x_8); lean_inc(x_7); lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_4); -lean_inc(x_3); -x_24 = l_Int_fromExpr_x3f(x_23, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_21); +x_24 = l_Lean_Meta_getIntValue_x3f(x_23, x_6, x_7, x_8, x_9, x_21); +lean_dec(x_23); if (lean_obj_tag(x_24) == 0) { lean_object* x_25; @@ -5451,9 +5498,6 @@ 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); lean_dec(x_1); x_26 = !lean_is_exclusive(x_24); if (x_26 == 0) @@ -5491,9 +5535,6 @@ x_34 = lean_int_dec_lt(x_22, x_33); lean_dec(x_33); lean_dec(x_22); x_35 = l_Lean_Meta_Simp_evalPropStep(x_1, x_34, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_32); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); return x_35; } } @@ -5505,9 +5546,6 @@ 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); lean_dec(x_1); x_36 = !lean_is_exclusive(x_24); if (x_36 == 0) @@ -5537,9 +5575,6 @@ 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); lean_dec(x_1); x_40 = !lean_is_exclusive(x_13); if (x_40 == 0) @@ -5617,6 +5652,9 @@ else lean_object* x_15; lean_object* x_16; x_15 = lean_box(0); x_16 = l_Int_reduceLT___lambda__1(x_1, x_15, 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_16; } } @@ -5626,11 +5664,14 @@ _start: { lean_object* x_11; x_11 = l_Int_reduceLT___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; } } -static lean_object* _init_l___regBuiltin_Int_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1469____closed__1() { +static lean_object* _init_l___regBuiltin_Int_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1159____closed__1() { _start: { lean_object* x_1; @@ -5638,17 +5679,17 @@ x_1 = lean_mk_string_from_bytes("reduceLT", 8); return x_1; } } -static lean_object* _init_l___regBuiltin_Int_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1469____closed__2() { +static lean_object* _init_l___regBuiltin_Int_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1159____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Int_fromExpr_x3f___lambda__2___closed__4; -x_2 = l___regBuiltin_Int_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1469____closed__1; +x_1 = l_Int_reduceUnary___lambda__1___closed__9; +x_2 = l___regBuiltin_Int_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1159____closed__1; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Int_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1469____closed__3() { +static lean_object* _init_l___regBuiltin_Int_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1159____closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -5660,7 +5701,7 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Int_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1469____closed__4() { +static lean_object* _init_l___regBuiltin_Int_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1159____closed__4() { _start: { lean_object* x_1; lean_object* x_2; @@ -5669,57 +5710,57 @@ x_2 = lean_mk_empty_array_with_capacity(x_1); return x_2; } } -static lean_object* _init_l___regBuiltin_Int_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1469____closed__5() { +static lean_object* _init_l___regBuiltin_Int_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1159____closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Int_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1469____closed__4; -x_2 = l___regBuiltin_Int_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1469____closed__3; +x_1 = l___regBuiltin_Int_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1159____closed__4; +x_2 = l___regBuiltin_Int_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1159____closed__3; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Int_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1469____closed__6() { +static lean_object* _init_l___regBuiltin_Int_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1159____closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Int_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1469____closed__5; -x_2 = l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_996____closed__4; +x_1 = l___regBuiltin_Int_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1159____closed__5; +x_2 = l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_686____closed__4; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Int_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1469____closed__7() { +static lean_object* _init_l___regBuiltin_Int_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1159____closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Int_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1469____closed__6; +x_1 = l___regBuiltin_Int_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1159____closed__6; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Int_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1469____closed__8() { +static lean_object* _init_l___regBuiltin_Int_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1159____closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Int_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1469____closed__7; +x_1 = l___regBuiltin_Int_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1159____closed__7; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Int_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1469____closed__9() { +static lean_object* _init_l___regBuiltin_Int_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1159____closed__9() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Int_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1469____closed__8; +x_1 = l___regBuiltin_Int_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1159____closed__8; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Int_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1469____closed__10() { +static lean_object* _init_l___regBuiltin_Int_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1159____closed__10() { _start: { lean_object* x_1; @@ -5727,37 +5768,37 @@ x_1 = lean_alloc_closure((void*)(l_Int_reduceLT), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_Int_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1469_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Int_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1159_(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_Int_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1469____closed__2; -x_3 = l___regBuiltin_Int_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1469____closed__9; -x_4 = l___regBuiltin_Int_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1469____closed__10; +x_2 = l___regBuiltin_Int_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1159____closed__2; +x_3 = l___regBuiltin_Int_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1159____closed__9; +x_4 = l___regBuiltin_Int_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1159____closed__10; x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); return x_5; } } -LEAN_EXPORT lean_object* l___regBuiltin_Int_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1471_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Int_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1161_(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_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_998____closed__1; -x_3 = l___regBuiltin_Int_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1469____closed__2; +x_2 = l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_688____closed__1; +x_3 = l___regBuiltin_Int_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1159____closed__2; x_4 = 1; -x_5 = l___regBuiltin_Int_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1469____closed__10; +x_5 = l___regBuiltin_Int_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1159____closed__10; 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_Int_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1473_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Int_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1163_(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_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1000____closed__1; -x_3 = l___regBuiltin_Int_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1469____closed__2; +x_2 = l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_690____closed__1; +x_3 = l___regBuiltin_Int_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1159____closed__2; x_4 = 1; -x_5 = l___regBuiltin_Int_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1469____closed__10; +x_5 = l___regBuiltin_Int_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1159____closed__10; x_6 = l_Lean_Meta_Simp_addSimprocBuiltinAttrCore(x_2, x_3, x_4, x_5, x_1); return x_6; } @@ -5774,10 +5815,8 @@ lean_inc(x_9); lean_inc(x_8); lean_inc(x_7); lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_4); -lean_inc(x_3); -x_13 = l_Int_fromExpr_x3f(x_12, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_13 = l_Lean_Meta_getIntValue_x3f(x_12, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_12); if (lean_obj_tag(x_13) == 0) { lean_object* x_14; @@ -5790,9 +5829,6 @@ 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); lean_dec(x_1); x_15 = !lean_is_exclusive(x_13); if (x_15 == 0) @@ -5831,10 +5867,8 @@ lean_inc(x_9); lean_inc(x_8); lean_inc(x_7); lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_4); -lean_inc(x_3); -x_24 = l_Int_fromExpr_x3f(x_23, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_21); +x_24 = l_Lean_Meta_getIntValue_x3f(x_23, x_6, x_7, x_8, x_9, x_21); +lean_dec(x_23); if (lean_obj_tag(x_24) == 0) { lean_object* x_25; @@ -5848,9 +5882,6 @@ 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); lean_dec(x_1); x_26 = !lean_is_exclusive(x_24); if (x_26 == 0) @@ -5888,9 +5919,6 @@ x_34 = lean_int_dec_le(x_22, x_33); lean_dec(x_33); lean_dec(x_22); x_35 = l_Lean_Meta_Simp_evalPropStep(x_1, x_34, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_32); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); return x_35; } } @@ -5902,9 +5930,6 @@ 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); lean_dec(x_1); x_36 = !lean_is_exclusive(x_24); if (x_36 == 0) @@ -5934,9 +5959,6 @@ 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); lean_dec(x_1); x_40 = !lean_is_exclusive(x_13); if (x_40 == 0) @@ -6014,6 +6036,9 @@ else lean_object* x_15; lean_object* x_16; x_15 = lean_box(0); x_16 = l_Int_reduceLE___lambda__1(x_1, x_15, 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_16; } } @@ -6023,11 +6048,14 @@ _start: { lean_object* x_11; x_11 = l_Int_reduceLE___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; } } -static lean_object* _init_l___regBuiltin_Int_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1510____closed__1() { +static lean_object* _init_l___regBuiltin_Int_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1200____closed__1() { _start: { lean_object* x_1; @@ -6035,17 +6063,17 @@ x_1 = lean_mk_string_from_bytes("reduceLE", 8); return x_1; } } -static lean_object* _init_l___regBuiltin_Int_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1510____closed__2() { +static lean_object* _init_l___regBuiltin_Int_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1200____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Int_fromExpr_x3f___lambda__2___closed__4; -x_2 = l___regBuiltin_Int_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1510____closed__1; +x_1 = l_Int_reduceUnary___lambda__1___closed__9; +x_2 = l___regBuiltin_Int_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1200____closed__1; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Int_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1510____closed__3() { +static lean_object* _init_l___regBuiltin_Int_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1200____closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -6057,57 +6085,57 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Int_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1510____closed__4() { +static lean_object* _init_l___regBuiltin_Int_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1200____closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Int_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1469____closed__4; -x_2 = l___regBuiltin_Int_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1510____closed__3; +x_1 = l___regBuiltin_Int_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1159____closed__4; +x_2 = l___regBuiltin_Int_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1200____closed__3; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Int_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1510____closed__5() { +static lean_object* _init_l___regBuiltin_Int_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1200____closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Int_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1510____closed__4; -x_2 = l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_996____closed__4; +x_1 = l___regBuiltin_Int_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1200____closed__4; +x_2 = l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_686____closed__4; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Int_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1510____closed__6() { +static lean_object* _init_l___regBuiltin_Int_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1200____closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Int_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1510____closed__5; +x_1 = l___regBuiltin_Int_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1200____closed__5; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Int_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1510____closed__7() { +static lean_object* _init_l___regBuiltin_Int_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1200____closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Int_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1510____closed__6; +x_1 = l___regBuiltin_Int_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1200____closed__6; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Int_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1510____closed__8() { +static lean_object* _init_l___regBuiltin_Int_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1200____closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Int_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1510____closed__7; +x_1 = l___regBuiltin_Int_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1200____closed__7; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Int_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1510____closed__9() { +static lean_object* _init_l___regBuiltin_Int_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1200____closed__9() { _start: { lean_object* x_1; @@ -6115,37 +6143,37 @@ x_1 = lean_alloc_closure((void*)(l_Int_reduceLE), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_Int_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1510_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Int_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1200_(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_Int_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1510____closed__2; -x_3 = l___regBuiltin_Int_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1510____closed__8; -x_4 = l___regBuiltin_Int_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1510____closed__9; +x_2 = l___regBuiltin_Int_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1200____closed__2; +x_3 = l___regBuiltin_Int_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1200____closed__8; +x_4 = l___regBuiltin_Int_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1200____closed__9; x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); return x_5; } } -LEAN_EXPORT lean_object* l___regBuiltin_Int_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1512_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Int_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1202_(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_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_998____closed__1; -x_3 = l___regBuiltin_Int_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1510____closed__2; +x_2 = l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_688____closed__1; +x_3 = l___regBuiltin_Int_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1200____closed__2; x_4 = 1; -x_5 = l___regBuiltin_Int_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1510____closed__9; +x_5 = l___regBuiltin_Int_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1200____closed__9; 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_Int_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1514_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Int_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1204_(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_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1000____closed__1; -x_3 = l___regBuiltin_Int_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1510____closed__2; +x_2 = l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_690____closed__1; +x_3 = l___regBuiltin_Int_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1200____closed__2; x_4 = 1; -x_5 = l___regBuiltin_Int_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1510____closed__9; +x_5 = l___regBuiltin_Int_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1200____closed__9; x_6 = l_Lean_Meta_Simp_addSimprocBuiltinAttrCore(x_2, x_3, x_4, x_5, x_1); return x_6; } @@ -6162,10 +6190,8 @@ lean_inc(x_9); lean_inc(x_8); lean_inc(x_7); lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_4); -lean_inc(x_3); -x_13 = l_Int_fromExpr_x3f(x_12, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_13 = l_Lean_Meta_getIntValue_x3f(x_12, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_12); if (lean_obj_tag(x_13) == 0) { lean_object* x_14; @@ -6178,9 +6204,6 @@ 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); lean_dec(x_1); x_15 = !lean_is_exclusive(x_13); if (x_15 == 0) @@ -6219,10 +6242,8 @@ lean_inc(x_9); lean_inc(x_8); lean_inc(x_7); lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_4); -lean_inc(x_3); -x_24 = l_Int_fromExpr_x3f(x_23, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_21); +x_24 = l_Lean_Meta_getIntValue_x3f(x_23, x_6, x_7, x_8, x_9, x_21); +lean_dec(x_23); if (lean_obj_tag(x_24) == 0) { lean_object* x_25; @@ -6236,9 +6257,6 @@ 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); lean_dec(x_1); x_26 = !lean_is_exclusive(x_24); if (x_26 == 0) @@ -6276,9 +6294,6 @@ x_34 = lean_int_dec_lt(x_33, x_22); lean_dec(x_22); lean_dec(x_33); x_35 = l_Lean_Meta_Simp_evalPropStep(x_1, x_34, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_32); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); return x_35; } } @@ -6290,9 +6305,6 @@ 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); lean_dec(x_1); x_36 = !lean_is_exclusive(x_24); if (x_36 == 0) @@ -6322,9 +6334,6 @@ 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); lean_dec(x_1); x_40 = !lean_is_exclusive(x_13); if (x_40 == 0) @@ -6402,6 +6411,9 @@ else lean_object* x_15; lean_object* x_16; x_15 = lean_box(0); x_16 = l_Int_reduceGT___lambda__1(x_1, x_15, 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_16; } } @@ -6411,11 +6423,14 @@ _start: { lean_object* x_11; x_11 = l_Int_reduceGT___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; } } -static lean_object* _init_l___regBuiltin_Int_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1551____closed__1() { +static lean_object* _init_l___regBuiltin_Int_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1241____closed__1() { _start: { lean_object* x_1; @@ -6423,17 +6438,17 @@ x_1 = lean_mk_string_from_bytes("reduceGT", 8); return x_1; } } -static lean_object* _init_l___regBuiltin_Int_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1551____closed__2() { +static lean_object* _init_l___regBuiltin_Int_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1241____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Int_fromExpr_x3f___lambda__2___closed__4; -x_2 = l___regBuiltin_Int_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1551____closed__1; +x_1 = l_Int_reduceUnary___lambda__1___closed__9; +x_2 = l___regBuiltin_Int_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1241____closed__1; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Int_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1551____closed__3() { +static lean_object* _init_l___regBuiltin_Int_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1241____closed__3() { _start: { lean_object* x_1; @@ -6441,37 +6456,37 @@ x_1 = lean_alloc_closure((void*)(l_Int_reduceGT), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_Int_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1551_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Int_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1241_(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_Int_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1551____closed__2; -x_3 = l___regBuiltin_Int_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1469____closed__9; -x_4 = l___regBuiltin_Int_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1551____closed__3; +x_2 = l___regBuiltin_Int_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1241____closed__2; +x_3 = l___regBuiltin_Int_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1159____closed__9; +x_4 = l___regBuiltin_Int_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1241____closed__3; x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); return x_5; } } -LEAN_EXPORT lean_object* l___regBuiltin_Int_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1553_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Int_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1243_(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_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_998____closed__1; -x_3 = l___regBuiltin_Int_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1551____closed__2; +x_2 = l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_688____closed__1; +x_3 = l___regBuiltin_Int_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1241____closed__2; x_4 = 1; -x_5 = l___regBuiltin_Int_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1551____closed__3; +x_5 = l___regBuiltin_Int_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1241____closed__3; 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_Int_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1555_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Int_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1245_(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_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1000____closed__1; -x_3 = l___regBuiltin_Int_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1551____closed__2; +x_2 = l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_690____closed__1; +x_3 = l___regBuiltin_Int_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1241____closed__2; x_4 = 1; -x_5 = l___regBuiltin_Int_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1551____closed__3; +x_5 = l___regBuiltin_Int_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1241____closed__3; x_6 = l_Lean_Meta_Simp_addSimprocBuiltinAttrCore(x_2, x_3, x_4, x_5, x_1); return x_6; } @@ -6488,10 +6503,8 @@ lean_inc(x_9); lean_inc(x_8); lean_inc(x_7); lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_4); -lean_inc(x_3); -x_13 = l_Int_fromExpr_x3f(x_12, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_13 = l_Lean_Meta_getIntValue_x3f(x_12, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_12); if (lean_obj_tag(x_13) == 0) { lean_object* x_14; @@ -6504,9 +6517,6 @@ 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); lean_dec(x_1); x_15 = !lean_is_exclusive(x_13); if (x_15 == 0) @@ -6545,10 +6555,8 @@ lean_inc(x_9); lean_inc(x_8); lean_inc(x_7); lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_4); -lean_inc(x_3); -x_24 = l_Int_fromExpr_x3f(x_23, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_21); +x_24 = l_Lean_Meta_getIntValue_x3f(x_23, x_6, x_7, x_8, x_9, x_21); +lean_dec(x_23); if (lean_obj_tag(x_24) == 0) { lean_object* x_25; @@ -6562,9 +6570,6 @@ 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); lean_dec(x_1); x_26 = !lean_is_exclusive(x_24); if (x_26 == 0) @@ -6602,9 +6607,6 @@ x_34 = lean_int_dec_le(x_33, x_22); lean_dec(x_22); lean_dec(x_33); x_35 = l_Lean_Meta_Simp_evalPropStep(x_1, x_34, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_32); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); return x_35; } } @@ -6616,9 +6618,6 @@ 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); lean_dec(x_1); x_36 = !lean_is_exclusive(x_24); if (x_36 == 0) @@ -6648,9 +6647,6 @@ 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); lean_dec(x_1); x_40 = !lean_is_exclusive(x_13); if (x_40 == 0) @@ -6728,6 +6724,9 @@ else lean_object* x_15; lean_object* x_16; x_15 = lean_box(0); x_16 = l_Int_reduceGE___lambda__1(x_1, x_15, 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_16; } } @@ -6737,11 +6736,14 @@ _start: { lean_object* x_11; x_11 = l_Int_reduceGE___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; } } -static lean_object* _init_l___regBuiltin_Int_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1592____closed__1() { +static lean_object* _init_l___regBuiltin_Int_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1282____closed__1() { _start: { lean_object* x_1; @@ -6749,17 +6751,17 @@ x_1 = lean_mk_string_from_bytes("reduceGE", 8); return x_1; } } -static lean_object* _init_l___regBuiltin_Int_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1592____closed__2() { +static lean_object* _init_l___regBuiltin_Int_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1282____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Int_fromExpr_x3f___lambda__2___closed__4; -x_2 = l___regBuiltin_Int_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1592____closed__1; +x_1 = l_Int_reduceUnary___lambda__1___closed__9; +x_2 = l___regBuiltin_Int_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1282____closed__1; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Int_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1592____closed__3() { +static lean_object* _init_l___regBuiltin_Int_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1282____closed__3() { _start: { lean_object* x_1; @@ -6767,37 +6769,37 @@ x_1 = lean_alloc_closure((void*)(l_Int_reduceGE), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_Int_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1592_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Int_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1282_(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_Int_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1592____closed__2; -x_3 = l___regBuiltin_Int_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1510____closed__8; -x_4 = l___regBuiltin_Int_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1592____closed__3; +x_2 = l___regBuiltin_Int_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1282____closed__2; +x_3 = l___regBuiltin_Int_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1200____closed__8; +x_4 = l___regBuiltin_Int_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1282____closed__3; x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); return x_5; } } -LEAN_EXPORT lean_object* l___regBuiltin_Int_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1594_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Int_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1284_(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_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_998____closed__1; -x_3 = l___regBuiltin_Int_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1592____closed__2; +x_2 = l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_688____closed__1; +x_3 = l___regBuiltin_Int_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1282____closed__2; x_4 = 1; -x_5 = l___regBuiltin_Int_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1592____closed__3; +x_5 = l___regBuiltin_Int_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1282____closed__3; 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_Int_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1596_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Int_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1286_(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_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1000____closed__1; -x_3 = l___regBuiltin_Int_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1592____closed__2; +x_2 = l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_690____closed__1; +x_3 = l___regBuiltin_Int_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1282____closed__2; x_4 = 1; -x_5 = l___regBuiltin_Int_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1592____closed__3; +x_5 = l___regBuiltin_Int_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1282____closed__3; x_6 = l_Lean_Meta_Simp_addSimprocBuiltinAttrCore(x_2, x_3, x_4, x_5, x_1); return x_6; } @@ -6814,10 +6816,8 @@ lean_inc(x_9); lean_inc(x_8); lean_inc(x_7); lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_4); -lean_inc(x_3); -x_13 = l_Int_fromExpr_x3f(x_12, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_13 = l_Lean_Meta_getIntValue_x3f(x_12, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_12); if (lean_obj_tag(x_13) == 0) { lean_object* x_14; @@ -6830,9 +6830,6 @@ 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); lean_dec(x_1); x_15 = !lean_is_exclusive(x_13); if (x_15 == 0) @@ -6871,10 +6868,8 @@ lean_inc(x_9); lean_inc(x_8); lean_inc(x_7); lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_4); -lean_inc(x_3); -x_24 = l_Int_fromExpr_x3f(x_23, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_21); +x_24 = l_Lean_Meta_getIntValue_x3f(x_23, x_6, x_7, x_8, x_9, x_21); +lean_dec(x_23); if (lean_obj_tag(x_24) == 0) { lean_object* x_25; @@ -6888,9 +6883,6 @@ 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); lean_dec(x_1); x_26 = !lean_is_exclusive(x_24); if (x_26 == 0) @@ -6928,9 +6920,6 @@ x_34 = lean_int_dec_eq(x_22, x_33); lean_dec(x_33); lean_dec(x_22); x_35 = l_Lean_Meta_Simp_evalPropStep(x_1, x_34, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_32); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); return x_35; } } @@ -6942,9 +6931,6 @@ 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); lean_dec(x_1); x_36 = !lean_is_exclusive(x_24); if (x_36 == 0) @@ -6974,9 +6960,6 @@ 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); lean_dec(x_1); x_40 = !lean_is_exclusive(x_13); if (x_40 == 0) @@ -7046,6 +7029,9 @@ else lean_object* x_15; lean_object* x_16; x_15 = lean_box(0); x_16 = l_Int_reduceEq___lambda__1(x_1, x_15, 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_16; } } @@ -7055,11 +7041,14 @@ _start: { lean_object* x_11; x_11 = l_Int_reduceEq___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; } } -static lean_object* _init_l___regBuiltin_Int_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1633____closed__1() { +static lean_object* _init_l___regBuiltin_Int_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1323____closed__1() { _start: { lean_object* x_1; @@ -7067,17 +7056,17 @@ x_1 = lean_mk_string_from_bytes("reduceEq", 8); return x_1; } } -static lean_object* _init_l___regBuiltin_Int_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1633____closed__2() { +static lean_object* _init_l___regBuiltin_Int_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1323____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Int_fromExpr_x3f___lambda__2___closed__4; -x_2 = l___regBuiltin_Int_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1633____closed__1; +x_1 = l_Int_reduceUnary___lambda__1___closed__9; +x_2 = l___regBuiltin_Int_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1323____closed__1; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Int_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1633____closed__3() { +static lean_object* _init_l___regBuiltin_Int_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1323____closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -7089,47 +7078,47 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Int_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1633____closed__4() { +static lean_object* _init_l___regBuiltin_Int_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1323____closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_996____closed__5; -x_2 = l___regBuiltin_Int_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1633____closed__3; +x_1 = l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_686____closed__5; +x_2 = l___regBuiltin_Int_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1323____closed__3; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Int_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1633____closed__5() { +static lean_object* _init_l___regBuiltin_Int_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1323____closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Int_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1633____closed__4; -x_2 = l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_996____closed__4; +x_1 = l___regBuiltin_Int_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1323____closed__4; +x_2 = l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_686____closed__4; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Int_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1633____closed__6() { +static lean_object* _init_l___regBuiltin_Int_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1323____closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Int_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1633____closed__5; +x_1 = l___regBuiltin_Int_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1323____closed__5; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Int_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1633____closed__7() { +static lean_object* _init_l___regBuiltin_Int_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1323____closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Int_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1633____closed__6; +x_1 = l___regBuiltin_Int_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1323____closed__6; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Int_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1633____closed__8() { +static lean_object* _init_l___regBuiltin_Int_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1323____closed__8() { _start: { lean_object* x_1; @@ -7137,37 +7126,37 @@ x_1 = lean_alloc_closure((void*)(l_Int_reduceEq), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_Int_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1633_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Int_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1323_(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_Int_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1633____closed__2; -x_3 = l___regBuiltin_Int_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1633____closed__7; -x_4 = l___regBuiltin_Int_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1633____closed__8; +x_2 = l___regBuiltin_Int_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1323____closed__2; +x_3 = l___regBuiltin_Int_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1323____closed__7; +x_4 = l___regBuiltin_Int_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1323____closed__8; x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); return x_5; } } -LEAN_EXPORT lean_object* l___regBuiltin_Int_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1635_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Int_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1325_(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_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_998____closed__1; -x_3 = l___regBuiltin_Int_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1633____closed__2; +x_2 = l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_688____closed__1; +x_3 = l___regBuiltin_Int_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1323____closed__2; x_4 = 1; -x_5 = l___regBuiltin_Int_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1633____closed__8; +x_5 = l___regBuiltin_Int_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1323____closed__8; 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_Int_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1637_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Int_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1327_(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_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1000____closed__1; -x_3 = l___regBuiltin_Int_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1633____closed__2; +x_2 = l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_690____closed__1; +x_3 = l___regBuiltin_Int_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1323____closed__2; x_4 = 1; -x_5 = l___regBuiltin_Int_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1633____closed__8; +x_5 = l___regBuiltin_Int_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1323____closed__8; x_6 = l_Lean_Meta_Simp_addSimprocBuiltinAttrCore(x_2, x_3, x_4, x_5, x_1); return x_6; } @@ -7184,10 +7173,8 @@ lean_inc(x_9); lean_inc(x_8); lean_inc(x_7); lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_4); -lean_inc(x_3); -x_13 = l_Int_fromExpr_x3f(x_12, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_13 = l_Lean_Meta_getIntValue_x3f(x_12, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_12); if (lean_obj_tag(x_13) == 0) { lean_object* x_14; @@ -7200,9 +7187,6 @@ 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); lean_dec(x_1); x_15 = !lean_is_exclusive(x_13); if (x_15 == 0) @@ -7241,10 +7225,8 @@ lean_inc(x_9); lean_inc(x_8); lean_inc(x_7); lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_4); -lean_inc(x_3); -x_24 = l_Int_fromExpr_x3f(x_23, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_21); +x_24 = l_Lean_Meta_getIntValue_x3f(x_23, x_6, x_7, x_8, x_9, x_21); +lean_dec(x_23); if (lean_obj_tag(x_24) == 0) { lean_object* x_25; @@ -7258,9 +7240,6 @@ 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); lean_dec(x_1); x_26 = !lean_is_exclusive(x_24); if (x_26 == 0) @@ -7299,9 +7278,6 @@ lean_dec(x_33); lean_dec(x_22); x_35 = l_instDecidableNot___rarg(x_34); x_36 = l_Lean_Meta_Simp_evalPropStep(x_1, x_35, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_32); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); return x_36; } } @@ -7313,9 +7289,6 @@ 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); lean_dec(x_1); x_37 = !lean_is_exclusive(x_24); if (x_37 == 0) @@ -7345,9 +7318,6 @@ 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); lean_dec(x_1); x_41 = !lean_is_exclusive(x_13); if (x_41 == 0) @@ -7417,6 +7387,9 @@ else lean_object* x_15; lean_object* x_16; x_15 = lean_box(0); x_16 = l_Int_reduceNe___lambda__1(x_1, x_15, 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_16; } } @@ -7426,11 +7399,14 @@ _start: { lean_object* x_11; x_11 = l_Int_reduceNe___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; } } -static lean_object* _init_l___regBuiltin_Int_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1673____closed__1() { +static lean_object* _init_l___regBuiltin_Int_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1363____closed__1() { _start: { lean_object* x_1; @@ -7438,17 +7414,17 @@ x_1 = lean_mk_string_from_bytes("reduceNe", 8); return x_1; } } -static lean_object* _init_l___regBuiltin_Int_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1673____closed__2() { +static lean_object* _init_l___regBuiltin_Int_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1363____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Int_fromExpr_x3f___lambda__2___closed__4; -x_2 = l___regBuiltin_Int_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1673____closed__1; +x_1 = l_Int_reduceUnary___lambda__1___closed__9; +x_2 = l___regBuiltin_Int_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1363____closed__1; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Int_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1673____closed__3() { +static lean_object* _init_l___regBuiltin_Int_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1363____closed__3() { _start: { lean_object* x_1; @@ -7456,21 +7432,21 @@ x_1 = lean_mk_string_from_bytes("Not", 3); return x_1; } } -static lean_object* _init_l___regBuiltin_Int_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1673____closed__4() { +static lean_object* _init_l___regBuiltin_Int_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1363____closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___regBuiltin_Int_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1673____closed__3; +x_2 = l___regBuiltin_Int_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1363____closed__3; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Int_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1673____closed__5() { +static lean_object* _init_l___regBuiltin_Int_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1363____closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Int_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1673____closed__4; +x_1 = l___regBuiltin_Int_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1363____closed__4; x_2 = lean_unsigned_to_nat(1u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -7478,57 +7454,57 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Int_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1673____closed__6() { +static lean_object* _init_l___regBuiltin_Int_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1363____closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Int_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1469____closed__4; -x_2 = l___regBuiltin_Int_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1673____closed__5; +x_1 = l___regBuiltin_Int_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1159____closed__4; +x_2 = l___regBuiltin_Int_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1363____closed__5; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Int_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1673____closed__7() { +static lean_object* _init_l___regBuiltin_Int_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1363____closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Int_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1673____closed__6; -x_2 = l___regBuiltin_Int_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1633____closed__3; +x_1 = l___regBuiltin_Int_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1363____closed__6; +x_2 = l___regBuiltin_Int_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1323____closed__3; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Int_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1673____closed__8() { +static lean_object* _init_l___regBuiltin_Int_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1363____closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Int_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1673____closed__7; -x_2 = l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_996____closed__4; +x_1 = l___regBuiltin_Int_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1363____closed__7; +x_2 = l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_686____closed__4; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Int_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1673____closed__9() { +static lean_object* _init_l___regBuiltin_Int_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1363____closed__9() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Int_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1673____closed__8; +x_1 = l___regBuiltin_Int_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1363____closed__8; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Int_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1673____closed__10() { +static lean_object* _init_l___regBuiltin_Int_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1363____closed__10() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Int_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1673____closed__9; +x_1 = l___regBuiltin_Int_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1363____closed__9; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Int_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1673____closed__11() { +static lean_object* _init_l___regBuiltin_Int_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1363____closed__11() { _start: { lean_object* x_1; @@ -7536,37 +7512,37 @@ x_1 = lean_alloc_closure((void*)(l_Int_reduceNe), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_Int_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1673_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Int_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1363_(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_Int_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1673____closed__2; -x_3 = l___regBuiltin_Int_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1673____closed__10; -x_4 = l___regBuiltin_Int_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1673____closed__11; +x_2 = l___regBuiltin_Int_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1363____closed__2; +x_3 = l___regBuiltin_Int_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1363____closed__10; +x_4 = l___regBuiltin_Int_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1363____closed__11; x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); return x_5; } } -LEAN_EXPORT lean_object* l___regBuiltin_Int_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1675_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Int_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1365_(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_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_998____closed__1; -x_3 = l___regBuiltin_Int_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1673____closed__2; +x_2 = l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_688____closed__1; +x_3 = l___regBuiltin_Int_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1363____closed__2; x_4 = 1; -x_5 = l___regBuiltin_Int_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1673____closed__11; +x_5 = l___regBuiltin_Int_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1363____closed__11; 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_Int_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1677_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Int_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1367_(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_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1000____closed__1; -x_3 = l___regBuiltin_Int_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1673____closed__2; +x_2 = l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_690____closed__1; +x_3 = l___regBuiltin_Int_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1363____closed__2; x_4 = 1; -x_5 = l___regBuiltin_Int_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1673____closed__11; +x_5 = l___regBuiltin_Int_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1363____closed__11; x_6 = l_Lean_Meta_Simp_addSimprocBuiltinAttrCore(x_2, x_3, x_4, x_5, x_1); return x_6; } @@ -7583,10 +7559,8 @@ lean_inc(x_9); lean_inc(x_8); lean_inc(x_7); lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_4); -lean_inc(x_3); -x_13 = l_Int_fromExpr_x3f(x_12, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_13 = l_Lean_Meta_getIntValue_x3f(x_12, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_12); if (lean_obj_tag(x_13) == 0) { lean_object* x_14; @@ -7599,9 +7573,6 @@ 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); lean_dec(x_1); x_15 = !lean_is_exclusive(x_13); if (x_15 == 0) @@ -7637,7 +7608,8 @@ lean_inc(x_22); lean_dec(x_14); x_23 = l_Lean_Expr_appArg_x21(x_1); lean_dec(x_1); -x_24 = l_Int_fromExpr_x3f(x_23, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_21); +x_24 = l_Lean_Meta_getIntValue_x3f(x_23, x_6, x_7, x_8, x_9, x_21); +lean_dec(x_23); if (lean_obj_tag(x_24) == 0) { lean_object* x_25; @@ -7765,9 +7737,6 @@ 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); lean_dec(x_1); x_49 = !lean_is_exclusive(x_13); if (x_49 == 0) @@ -7845,6 +7814,9 @@ else lean_object* x_15; lean_object* x_16; x_15 = lean_box(0); x_16 = l_Int_reduceBEq___lambda__1(x_1, x_15, 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_16; } } @@ -7854,11 +7826,14 @@ _start: { lean_object* x_11; x_11 = l_Int_reduceBEq___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; } } -static lean_object* _init_l___regBuiltin_Int_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1714____closed__1() { +static lean_object* _init_l___regBuiltin_Int_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1404____closed__1() { _start: { lean_object* x_1; @@ -7866,17 +7841,17 @@ x_1 = lean_mk_string_from_bytes("reduceBEq", 9); return x_1; } } -static lean_object* _init_l___regBuiltin_Int_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1714____closed__2() { +static lean_object* _init_l___regBuiltin_Int_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1404____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Int_fromExpr_x3f___lambda__2___closed__4; -x_2 = l___regBuiltin_Int_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1714____closed__1; +x_1 = l_Int_reduceUnary___lambda__1___closed__9; +x_2 = l___regBuiltin_Int_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1404____closed__1; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Int_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1714____closed__3() { +static lean_object* _init_l___regBuiltin_Int_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1404____closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -7888,57 +7863,57 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Int_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1714____closed__4() { +static lean_object* _init_l___regBuiltin_Int_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1404____closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Int_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1469____closed__4; -x_2 = l___regBuiltin_Int_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1714____closed__3; +x_1 = l___regBuiltin_Int_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1159____closed__4; +x_2 = l___regBuiltin_Int_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1404____closed__3; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Int_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1714____closed__5() { +static lean_object* _init_l___regBuiltin_Int_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1404____closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Int_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1714____closed__4; -x_2 = l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_996____closed__4; +x_1 = l___regBuiltin_Int_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1404____closed__4; +x_2 = l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_686____closed__4; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Int_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1714____closed__6() { +static lean_object* _init_l___regBuiltin_Int_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1404____closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Int_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1714____closed__5; +x_1 = l___regBuiltin_Int_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1404____closed__5; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Int_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1714____closed__7() { +static lean_object* _init_l___regBuiltin_Int_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1404____closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Int_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1714____closed__6; +x_1 = l___regBuiltin_Int_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1404____closed__6; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Int_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1714____closed__8() { +static lean_object* _init_l___regBuiltin_Int_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1404____closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Int_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1714____closed__7; +x_1 = l___regBuiltin_Int_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1404____closed__7; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Int_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1714____closed__9() { +static lean_object* _init_l___regBuiltin_Int_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1404____closed__9() { _start: { lean_object* x_1; @@ -7946,37 +7921,37 @@ x_1 = lean_alloc_closure((void*)(l_Int_reduceBEq), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_Int_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1714_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Int_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1404_(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_Int_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1714____closed__2; -x_3 = l___regBuiltin_Int_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1714____closed__8; -x_4 = l___regBuiltin_Int_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1714____closed__9; +x_2 = l___regBuiltin_Int_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1404____closed__2; +x_3 = l___regBuiltin_Int_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1404____closed__8; +x_4 = l___regBuiltin_Int_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1404____closed__9; x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); return x_5; } } -LEAN_EXPORT lean_object* l___regBuiltin_Int_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1716_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Int_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1406_(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_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_998____closed__1; -x_3 = l___regBuiltin_Int_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1714____closed__2; +x_2 = l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_688____closed__1; +x_3 = l___regBuiltin_Int_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1404____closed__2; x_4 = 1; -x_5 = l___regBuiltin_Int_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1714____closed__9; +x_5 = l___regBuiltin_Int_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1404____closed__9; 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_Int_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1718_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Int_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1408_(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_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1000____closed__1; -x_3 = l___regBuiltin_Int_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1714____closed__2; +x_2 = l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_690____closed__1; +x_3 = l___regBuiltin_Int_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1404____closed__2; x_4 = 1; -x_5 = l___regBuiltin_Int_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1714____closed__9; +x_5 = l___regBuiltin_Int_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1404____closed__9; x_6 = l_Lean_Meta_Simp_addSimprocBuiltinAttrCore(x_2, x_3, x_4, x_5, x_1); return x_6; } @@ -7993,10 +7968,8 @@ lean_inc(x_9); lean_inc(x_8); lean_inc(x_7); lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_4); -lean_inc(x_3); -x_13 = l_Int_fromExpr_x3f(x_12, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_13 = l_Lean_Meta_getIntValue_x3f(x_12, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_12); if (lean_obj_tag(x_13) == 0) { lean_object* x_14; @@ -8009,9 +7982,6 @@ 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); lean_dec(x_1); x_15 = !lean_is_exclusive(x_13); if (x_15 == 0) @@ -8047,7 +8017,8 @@ lean_inc(x_22); lean_dec(x_14); x_23 = l_Lean_Expr_appArg_x21(x_1); lean_dec(x_1); -x_24 = l_Int_fromExpr_x3f(x_23, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_21); +x_24 = l_Lean_Meta_getIntValue_x3f(x_23, x_6, x_7, x_8, x_9, x_21); +lean_dec(x_23); if (lean_obj_tag(x_24) == 0) { lean_object* x_25; @@ -8175,9 +8146,6 @@ 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); lean_dec(x_1); x_49 = !lean_is_exclusive(x_13); if (x_49 == 0) @@ -8247,6 +8215,9 @@ else lean_object* x_15; lean_object* x_16; x_15 = lean_box(0); x_16 = l_Int_reduceBNe___lambda__1(x_1, x_15, 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_16; } } @@ -8256,11 +8227,14 @@ _start: { lean_object* x_11; x_11 = l_Int_reduceBNe___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; } } -static lean_object* _init_l___regBuiltin_Int_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1754____closed__1() { +static lean_object* _init_l___regBuiltin_Int_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1444____closed__1() { _start: { lean_object* x_1; @@ -8268,17 +8242,17 @@ x_1 = lean_mk_string_from_bytes("reduceBNe", 9); return x_1; } } -static lean_object* _init_l___regBuiltin_Int_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1754____closed__2() { +static lean_object* _init_l___regBuiltin_Int_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1444____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Int_fromExpr_x3f___lambda__2___closed__4; -x_2 = l___regBuiltin_Int_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1754____closed__1; +x_1 = l_Int_reduceUnary___lambda__1___closed__9; +x_2 = l___regBuiltin_Int_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1444____closed__1; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Int_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1754____closed__3() { +static lean_object* _init_l___regBuiltin_Int_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1444____closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -8290,57 +8264,57 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Int_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1754____closed__4() { +static lean_object* _init_l___regBuiltin_Int_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1444____closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Int_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1469____closed__4; -x_2 = l___regBuiltin_Int_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1754____closed__3; +x_1 = l___regBuiltin_Int_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1159____closed__4; +x_2 = l___regBuiltin_Int_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1444____closed__3; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Int_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1754____closed__5() { +static lean_object* _init_l___regBuiltin_Int_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1444____closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Int_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1754____closed__4; -x_2 = l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_996____closed__4; +x_1 = l___regBuiltin_Int_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1444____closed__4; +x_2 = l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_686____closed__4; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Int_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1754____closed__6() { +static lean_object* _init_l___regBuiltin_Int_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1444____closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Int_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1754____closed__5; +x_1 = l___regBuiltin_Int_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1444____closed__5; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Int_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1754____closed__7() { +static lean_object* _init_l___regBuiltin_Int_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1444____closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Int_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1754____closed__6; +x_1 = l___regBuiltin_Int_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1444____closed__6; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Int_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1754____closed__8() { +static lean_object* _init_l___regBuiltin_Int_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1444____closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Int_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1754____closed__7; +x_1 = l___regBuiltin_Int_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1444____closed__7; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Int_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1754____closed__9() { +static lean_object* _init_l___regBuiltin_Int_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1444____closed__9() { _start: { lean_object* x_1; @@ -8348,37 +8322,37 @@ x_1 = lean_alloc_closure((void*)(l_Int_reduceBNe), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_Int_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1754_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Int_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1444_(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_Int_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1754____closed__2; -x_3 = l___regBuiltin_Int_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1754____closed__8; -x_4 = l___regBuiltin_Int_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1754____closed__9; +x_2 = l___regBuiltin_Int_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1444____closed__2; +x_3 = l___regBuiltin_Int_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1444____closed__8; +x_4 = l___regBuiltin_Int_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1444____closed__9; x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); return x_5; } } -LEAN_EXPORT lean_object* l___regBuiltin_Int_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1756_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Int_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1446_(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_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_998____closed__1; -x_3 = l___regBuiltin_Int_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1754____closed__2; +x_2 = l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_688____closed__1; +x_3 = l___regBuiltin_Int_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1444____closed__2; x_4 = 1; -x_5 = l___regBuiltin_Int_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1754____closed__9; +x_5 = l___regBuiltin_Int_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1444____closed__9; 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_Int_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1758_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Int_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1448_(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_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1000____closed__1; -x_3 = l___regBuiltin_Int_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1754____closed__2; +x_2 = l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_690____closed__1; +x_3 = l___regBuiltin_Int_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1444____closed__2; x_4 = 1; -x_5 = l___regBuiltin_Int_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1754____closed__9; +x_5 = l___regBuiltin_Int_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1444____closed__9; x_6 = l_Lean_Meta_Simp_addSimprocBuiltinAttrCore(x_2, x_3, x_4, x_5, x_1); return x_6; } @@ -8388,7 +8362,8 @@ _start: { lean_object* x_12; lean_object* x_13; x_12 = l_Lean_Expr_appArg_x21(x_1); -x_13 = l_Int_fromExpr_x3f(x_12, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +x_13 = l_Lean_Meta_getIntValue_x3f(x_12, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_12); if (lean_obj_tag(x_13) == 0) { lean_object* x_14; @@ -8515,9 +8490,6 @@ 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); lean_dec(x_2); x_14 = l_Int_reduceUnary___lambda__1___closed__1; @@ -8541,17 +8513,32 @@ _start: { lean_object* x_12; x_12 = l_Int_reduceNatCore___lambda__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); lean_dec(x_3); lean_dec(x_1); return x_12; } } +LEAN_EXPORT lean_object* l_Int_reduceNatCore___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) { +_start: +{ +lean_object* x_12; +x_12 = l_Int_reduceNatCore(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +return x_12; +} +} LEAN_EXPORT lean_object* l_Int_reduceAbs___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; x_11 = l_Lean_Expr_appArg_x21(x_1); -x_12 = l_Int_fromExpr_x3f(x_11, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_12 = l_Lean_Meta_getIntValue_x3f(x_11, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_11); if (lean_obj_tag(x_12) == 0) { lean_object* x_13; @@ -8676,7 +8663,7 @@ static lean_object* _init_l_Int_reduceAbs___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Int_fromExpr_x3f___lambda__2___closed__4; +x_1 = l_Int_reduceUnary___lambda__1___closed__9; x_2 = l_Int_reduceAbs___closed__1; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; @@ -8710,6 +8697,9 @@ else lean_object* x_15; lean_object* x_16; x_15 = lean_box(0); x_16 = l_Int_reduceAbs___lambda__1(x_1, x_15, 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_16; } } @@ -8719,6 +8709,9 @@ _start: { lean_object* x_11; x_11 = l_Int_reduceAbs___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); lean_dec(x_1); return x_11; @@ -8733,7 +8726,7 @@ lean_dec(x_1); return x_10; } } -static lean_object* _init_l___regBuiltin_Int_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1873____closed__1() { +static lean_object* _init_l___regBuiltin_Int_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1563____closed__1() { _start: { lean_object* x_1; @@ -8741,17 +8734,17 @@ x_1 = lean_mk_string_from_bytes("reduceAbs", 9); return x_1; } } -static lean_object* _init_l___regBuiltin_Int_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1873____closed__2() { +static lean_object* _init_l___regBuiltin_Int_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1563____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Int_fromExpr_x3f___lambda__2___closed__4; -x_2 = l___regBuiltin_Int_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1873____closed__1; +x_1 = l_Int_reduceUnary___lambda__1___closed__9; +x_2 = l___regBuiltin_Int_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1563____closed__1; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Int_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1873____closed__3() { +static lean_object* _init_l___regBuiltin_Int_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1563____closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -8763,7 +8756,7 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Int_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1873____closed__4() { +static lean_object* _init_l___regBuiltin_Int_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1563____closed__4() { _start: { lean_object* x_1; lean_object* x_2; @@ -8772,27 +8765,27 @@ x_2 = lean_mk_empty_array_with_capacity(x_1); return x_2; } } -static lean_object* _init_l___regBuiltin_Int_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1873____closed__5() { +static lean_object* _init_l___regBuiltin_Int_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1563____closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Int_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1873____closed__4; -x_2 = l___regBuiltin_Int_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1873____closed__3; +x_1 = l___regBuiltin_Int_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1563____closed__4; +x_2 = l___regBuiltin_Int_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1563____closed__3; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Int_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1873____closed__6() { +static lean_object* _init_l___regBuiltin_Int_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1563____closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Int_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1873____closed__5; +x_1 = l___regBuiltin_Int_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1563____closed__5; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Int_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1873____closed__7() { +static lean_object* _init_l___regBuiltin_Int_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1563____closed__7() { _start: { lean_object* x_1; @@ -8800,37 +8793,37 @@ x_1 = lean_alloc_closure((void*)(l_Int_reduceAbs___boxed), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_Int_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1873_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Int_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1563_(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_Int_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1873____closed__2; -x_3 = l___regBuiltin_Int_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1873____closed__6; -x_4 = l___regBuiltin_Int_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1873____closed__7; +x_2 = l___regBuiltin_Int_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1563____closed__2; +x_3 = l___regBuiltin_Int_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1563____closed__6; +x_4 = l___regBuiltin_Int_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1563____closed__7; x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); return x_5; } } -LEAN_EXPORT lean_object* l___regBuiltin_Int_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1875_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Int_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1565_(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_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_998____closed__1; -x_3 = l___regBuiltin_Int_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1873____closed__2; +x_2 = l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_688____closed__1; +x_3 = l___regBuiltin_Int_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1563____closed__2; x_4 = 1; -x_5 = l___regBuiltin_Int_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1873____closed__7; +x_5 = l___regBuiltin_Int_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1563____closed__7; 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_Int_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1877_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Int_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1567_(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_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1000____closed__1; -x_3 = l___regBuiltin_Int_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1873____closed__2; +x_2 = l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_690____closed__1; +x_3 = l___regBuiltin_Int_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1563____closed__2; x_4 = 1; -x_5 = l___regBuiltin_Int_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1873____closed__7; +x_5 = l___regBuiltin_Int_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1563____closed__7; x_6 = l_Lean_Meta_Simp_addSimprocBuiltinAttrCore(x_2, x_3, x_4, x_5, x_1); return x_6; } @@ -8840,7 +8833,8 @@ _start: { lean_object* x_11; lean_object* x_12; x_11 = l_Lean_Expr_appArg_x21(x_1); -x_12 = l_Int_fromExpr_x3f(x_11, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_12 = l_Lean_Meta_getIntValue_x3f(x_11, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_11); if (lean_obj_tag(x_12) == 0) { lean_object* x_13; @@ -8965,7 +8959,7 @@ static lean_object* _init_l_Int_reduceToNat___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Int_fromExpr_x3f___lambda__2___closed__4; +x_1 = l_Int_reduceUnary___lambda__1___closed__9; x_2 = l_Int_reduceToNat___closed__1; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; @@ -8999,6 +8993,9 @@ else lean_object* x_15; lean_object* x_16; x_15 = lean_box(0); x_16 = l_Int_reduceToNat___lambda__1(x_1, x_15, 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_16; } } @@ -9008,6 +9005,9 @@ _start: { lean_object* x_11; x_11 = l_Int_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); lean_dec(x_1); return x_11; @@ -9022,7 +9022,7 @@ lean_dec(x_1); return x_10; } } -static lean_object* _init_l___regBuiltin_Int_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1892____closed__1() { +static lean_object* _init_l___regBuiltin_Int_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1582____closed__1() { _start: { lean_object* x_1; @@ -9030,17 +9030,17 @@ x_1 = lean_mk_string_from_bytes("reduceToNat", 11); return x_1; } } -static lean_object* _init_l___regBuiltin_Int_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1892____closed__2() { +static lean_object* _init_l___regBuiltin_Int_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1582____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Int_fromExpr_x3f___lambda__2___closed__4; -x_2 = l___regBuiltin_Int_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1892____closed__1; +x_1 = l_Int_reduceUnary___lambda__1___closed__9; +x_2 = l___regBuiltin_Int_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1582____closed__1; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Int_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1892____closed__3() { +static lean_object* _init_l___regBuiltin_Int_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1582____closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -9052,27 +9052,27 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Int_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1892____closed__4() { +static lean_object* _init_l___regBuiltin_Int_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1582____closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Int_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1873____closed__4; -x_2 = l___regBuiltin_Int_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1892____closed__3; +x_1 = l___regBuiltin_Int_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1563____closed__4; +x_2 = l___regBuiltin_Int_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1582____closed__3; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Int_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1892____closed__5() { +static lean_object* _init_l___regBuiltin_Int_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1582____closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Int_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1892____closed__4; +x_1 = l___regBuiltin_Int_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1582____closed__4; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Int_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1892____closed__6() { +static lean_object* _init_l___regBuiltin_Int_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1582____closed__6() { _start: { lean_object* x_1; @@ -9080,42 +9080,43 @@ x_1 = lean_alloc_closure((void*)(l_Int_reduceToNat___boxed), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_Int_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1892_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Int_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1582_(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_Int_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1892____closed__2; -x_3 = l___regBuiltin_Int_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1892____closed__5; -x_4 = l___regBuiltin_Int_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1892____closed__6; +x_2 = l___regBuiltin_Int_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1582____closed__2; +x_3 = l___regBuiltin_Int_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1582____closed__5; +x_4 = l___regBuiltin_Int_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1582____closed__6; x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); return x_5; } } -LEAN_EXPORT lean_object* l___regBuiltin_Int_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1894_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Int_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1584_(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_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_998____closed__1; -x_3 = l___regBuiltin_Int_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1892____closed__2; +x_2 = l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_688____closed__1; +x_3 = l___regBuiltin_Int_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1582____closed__2; x_4 = 1; -x_5 = l___regBuiltin_Int_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1892____closed__6; +x_5 = l___regBuiltin_Int_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1582____closed__6; 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_Int_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1896_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Int_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1586_(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_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1000____closed__1; -x_3 = l___regBuiltin_Int_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1892____closed__2; +x_2 = l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_690____closed__1; +x_3 = l___regBuiltin_Int_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1582____closed__2; x_4 = 1; -x_5 = l___regBuiltin_Int_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1892____closed__6; +x_5 = l___regBuiltin_Int_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1582____closed__6; x_6 = l_Lean_Meta_Simp_addSimprocBuiltinAttrCore(x_2, x_3, x_4, x_5, x_1); return x_6; } } lean_object* initialize_Lean_ToExpr(uint8_t builtin, lean_object*); +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; LEAN_EXPORT lean_object* initialize_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int(uint8_t builtin, lean_object* w) { @@ -9125,61 +9126,40 @@ _G_initialized = true; res = initialize_Lean_ToExpr(builtin, lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +res = initialize_Lean_Meta_LitValues(builtin, lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); res = initialize_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat(builtin, lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -l_Int_fromExpr_x3f___lambda__2___closed__1 = _init_l_Int_fromExpr_x3f___lambda__2___closed__1(); -lean_mark_persistent(l_Int_fromExpr_x3f___lambda__2___closed__1); -l_Int_fromExpr_x3f___lambda__2___closed__2 = _init_l_Int_fromExpr_x3f___lambda__2___closed__2(); -lean_mark_persistent(l_Int_fromExpr_x3f___lambda__2___closed__2); -l_Int_fromExpr_x3f___lambda__2___closed__3 = _init_l_Int_fromExpr_x3f___lambda__2___closed__3(); -lean_mark_persistent(l_Int_fromExpr_x3f___lambda__2___closed__3); -l_Int_fromExpr_x3f___lambda__2___closed__4 = _init_l_Int_fromExpr_x3f___lambda__2___closed__4(); -lean_mark_persistent(l_Int_fromExpr_x3f___lambda__2___closed__4); -l_Int_fromExpr_x3f___lambda__2___closed__5 = _init_l_Int_fromExpr_x3f___lambda__2___closed__5(); -lean_mark_persistent(l_Int_fromExpr_x3f___lambda__2___closed__5); -l_Int_fromExpr_x3f___lambda__2___closed__6 = _init_l_Int_fromExpr_x3f___lambda__2___closed__6(); -lean_mark_persistent(l_Int_fromExpr_x3f___lambda__2___closed__6); -l_Int_fromExpr_x3f___lambda__2___closed__7 = _init_l_Int_fromExpr_x3f___lambda__2___closed__7(); -lean_mark_persistent(l_Int_fromExpr_x3f___lambda__2___closed__7); -l_Int_fromExpr_x3f___closed__1 = _init_l_Int_fromExpr_x3f___closed__1(); -lean_mark_persistent(l_Int_fromExpr_x3f___closed__1); -l_Int_fromExpr_x3f___closed__2 = _init_l_Int_fromExpr_x3f___closed__2(); -lean_mark_persistent(l_Int_fromExpr_x3f___closed__2); -l_Int_fromExpr_x3f___closed__3 = _init_l_Int_fromExpr_x3f___closed__3(); -lean_mark_persistent(l_Int_fromExpr_x3f___closed__3); -l_Int_fromExpr_x3f___closed__4 = _init_l_Int_fromExpr_x3f___closed__4(); -lean_mark_persistent(l_Int_fromExpr_x3f___closed__4); -l_Int_toExpr___closed__1 = _init_l_Int_toExpr___closed__1(); -lean_mark_persistent(l_Int_toExpr___closed__1); -l_Int_toExpr___closed__2 = _init_l_Int_toExpr___closed__2(); -lean_mark_persistent(l_Int_toExpr___closed__2); -l_Int_toExpr___closed__3 = _init_l_Int_toExpr___closed__3(); -lean_mark_persistent(l_Int_toExpr___closed__3); -l_Int_toExpr___closed__4 = _init_l_Int_toExpr___closed__4(); -lean_mark_persistent(l_Int_toExpr___closed__4); -l_Int_toExpr___closed__5 = _init_l_Int_toExpr___closed__5(); -lean_mark_persistent(l_Int_toExpr___closed__5); -l_Int_toExpr___closed__6 = _init_l_Int_toExpr___closed__6(); -lean_mark_persistent(l_Int_toExpr___closed__6); -l_Int_toExpr___closed__7 = _init_l_Int_toExpr___closed__7(); -lean_mark_persistent(l_Int_toExpr___closed__7); -l_Int_toExpr___closed__8 = _init_l_Int_toExpr___closed__8(); -lean_mark_persistent(l_Int_toExpr___closed__8); -l_Int_toExpr___closed__9 = _init_l_Int_toExpr___closed__9(); -lean_mark_persistent(l_Int_toExpr___closed__9); -l_Int_toExpr___closed__10 = _init_l_Int_toExpr___closed__10(); -lean_mark_persistent(l_Int_toExpr___closed__10); -l_Int_toExpr___closed__11 = _init_l_Int_toExpr___closed__11(); -lean_mark_persistent(l_Int_toExpr___closed__11); -l_Int_toExpr___closed__12 = _init_l_Int_toExpr___closed__12(); -lean_mark_persistent(l_Int_toExpr___closed__12); -l_Int_toExpr___closed__13 = _init_l_Int_toExpr___closed__13(); -lean_mark_persistent(l_Int_toExpr___closed__13); -l_Int_toExpr___closed__14 = _init_l_Int_toExpr___closed__14(); -lean_mark_persistent(l_Int_toExpr___closed__14); l_Int_reduceUnary___lambda__1___closed__1 = _init_l_Int_reduceUnary___lambda__1___closed__1(); lean_mark_persistent(l_Int_reduceUnary___lambda__1___closed__1); +l_Int_reduceUnary___lambda__1___closed__2 = _init_l_Int_reduceUnary___lambda__1___closed__2(); +lean_mark_persistent(l_Int_reduceUnary___lambda__1___closed__2); +l_Int_reduceUnary___lambda__1___closed__3 = _init_l_Int_reduceUnary___lambda__1___closed__3(); +lean_mark_persistent(l_Int_reduceUnary___lambda__1___closed__3); +l_Int_reduceUnary___lambda__1___closed__4 = _init_l_Int_reduceUnary___lambda__1___closed__4(); +lean_mark_persistent(l_Int_reduceUnary___lambda__1___closed__4); +l_Int_reduceUnary___lambda__1___closed__5 = _init_l_Int_reduceUnary___lambda__1___closed__5(); +lean_mark_persistent(l_Int_reduceUnary___lambda__1___closed__5); +l_Int_reduceUnary___lambda__1___closed__6 = _init_l_Int_reduceUnary___lambda__1___closed__6(); +lean_mark_persistent(l_Int_reduceUnary___lambda__1___closed__6); +l_Int_reduceUnary___lambda__1___closed__7 = _init_l_Int_reduceUnary___lambda__1___closed__7(); +lean_mark_persistent(l_Int_reduceUnary___lambda__1___closed__7); +l_Int_reduceUnary___lambda__1___closed__8 = _init_l_Int_reduceUnary___lambda__1___closed__8(); +lean_mark_persistent(l_Int_reduceUnary___lambda__1___closed__8); +l_Int_reduceUnary___lambda__1___closed__9 = _init_l_Int_reduceUnary___lambda__1___closed__9(); +lean_mark_persistent(l_Int_reduceUnary___lambda__1___closed__9); +l_Int_reduceUnary___lambda__1___closed__10 = _init_l_Int_reduceUnary___lambda__1___closed__10(); +lean_mark_persistent(l_Int_reduceUnary___lambda__1___closed__10); +l_Int_reduceUnary___lambda__1___closed__11 = _init_l_Int_reduceUnary___lambda__1___closed__11(); +lean_mark_persistent(l_Int_reduceUnary___lambda__1___closed__11); +l_Int_reduceUnary___lambda__1___closed__12 = _init_l_Int_reduceUnary___lambda__1___closed__12(); +lean_mark_persistent(l_Int_reduceUnary___lambda__1___closed__12); +l_Int_reduceUnary___lambda__1___closed__13 = _init_l_Int_reduceUnary___lambda__1___closed__13(); +lean_mark_persistent(l_Int_reduceUnary___lambda__1___closed__13); +l_Int_reduceUnary___lambda__1___closed__14 = _init_l_Int_reduceUnary___lambda__1___closed__14(); +lean_mark_persistent(l_Int_reduceUnary___lambda__1___closed__14); l_Int_reduceBoolPred___lambda__1___closed__1 = _init_l_Int_reduceBoolPred___lambda__1___closed__1(); lean_mark_persistent(l_Int_reduceBoolPred___lambda__1___closed__1); l_Int_reduceBoolPred___lambda__1___closed__2 = _init_l_Int_reduceBoolPred___lambda__1___closed__2(); @@ -9202,59 +9182,65 @@ l_Int_reduceBoolPred___lambda__1___closed__10 = _init_l_Int_reduceBoolPred___lam lean_mark_persistent(l_Int_reduceBoolPred___lambda__1___closed__10); l_Int_reduceBoolPred___lambda__1___closed__11 = _init_l_Int_reduceBoolPred___lambda__1___closed__11(); lean_mark_persistent(l_Int_reduceBoolPred___lambda__1___closed__11); -l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_996____closed__1 = _init_l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_996____closed__1(); -lean_mark_persistent(l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_996____closed__1); -l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_996____closed__2 = _init_l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_996____closed__2(); -lean_mark_persistent(l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_996____closed__2); -l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_996____closed__3 = _init_l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_996____closed__3(); -lean_mark_persistent(l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_996____closed__3); -l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_996____closed__4 = _init_l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_996____closed__4(); -lean_mark_persistent(l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_996____closed__4); -l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_996____closed__5 = _init_l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_996____closed__5(); -lean_mark_persistent(l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_996____closed__5); -l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_996____closed__6 = _init_l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_996____closed__6(); -lean_mark_persistent(l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_996____closed__6); -l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_996____closed__7 = _init_l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_996____closed__7(); -lean_mark_persistent(l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_996____closed__7); -l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_996____closed__8 = _init_l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_996____closed__8(); -lean_mark_persistent(l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_996____closed__8); -l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_996____closed__9 = _init_l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_996____closed__9(); -lean_mark_persistent(l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_996____closed__9); -l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_996____closed__10 = _init_l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_996____closed__10(); -lean_mark_persistent(l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_996____closed__10); -if (builtin) {res = l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_996_(lean_io_mk_world()); +l_Int_reduceNeg___lambda__1___closed__1 = _init_l_Int_reduceNeg___lambda__1___closed__1(); +lean_mark_persistent(l_Int_reduceNeg___lambda__1___closed__1); +l_Int_reduceNeg___lambda__1___closed__2 = _init_l_Int_reduceNeg___lambda__1___closed__2(); +lean_mark_persistent(l_Int_reduceNeg___lambda__1___closed__2); +l_Int_reduceNeg___lambda__1___closed__3 = _init_l_Int_reduceNeg___lambda__1___closed__3(); +lean_mark_persistent(l_Int_reduceNeg___lambda__1___closed__3); +l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_686____closed__1 = _init_l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_686____closed__1(); +lean_mark_persistent(l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_686____closed__1); +l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_686____closed__2 = _init_l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_686____closed__2(); +lean_mark_persistent(l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_686____closed__2); +l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_686____closed__3 = _init_l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_686____closed__3(); +lean_mark_persistent(l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_686____closed__3); +l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_686____closed__4 = _init_l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_686____closed__4(); +lean_mark_persistent(l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_686____closed__4); +l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_686____closed__5 = _init_l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_686____closed__5(); +lean_mark_persistent(l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_686____closed__5); +l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_686____closed__6 = _init_l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_686____closed__6(); +lean_mark_persistent(l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_686____closed__6); +l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_686____closed__7 = _init_l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_686____closed__7(); +lean_mark_persistent(l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_686____closed__7); +l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_686____closed__8 = _init_l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_686____closed__8(); +lean_mark_persistent(l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_686____closed__8); +l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_686____closed__9 = _init_l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_686____closed__9(); +lean_mark_persistent(l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_686____closed__9); +l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_686____closed__10 = _init_l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_686____closed__10(); +lean_mark_persistent(l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_686____closed__10); +if (builtin) {res = l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_686_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_998____closed__1 = _init_l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_998____closed__1(); -lean_mark_persistent(l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_998____closed__1); -if (builtin) {res = l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_998_(lean_io_mk_world()); +}l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_688____closed__1 = _init_l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_688____closed__1(); +lean_mark_persistent(l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_688____closed__1); +if (builtin) {res = l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_688_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1000____closed__1 = _init_l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1000____closed__1(); -lean_mark_persistent(l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1000____closed__1); -if (builtin) {res = l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1000_(lean_io_mk_world()); +}l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_690____closed__1 = _init_l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_690____closed__1(); +lean_mark_persistent(l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_690____closed__1); +if (builtin) {res = l___regBuiltin_Int_reduceNeg_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_690_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}l___regBuiltin_Int_isPosValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1070____closed__1 = _init_l___regBuiltin_Int_isPosValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1070____closed__1(); -lean_mark_persistent(l___regBuiltin_Int_isPosValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1070____closed__1); -l___regBuiltin_Int_isPosValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1070____closed__2 = _init_l___regBuiltin_Int_isPosValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1070____closed__2(); -lean_mark_persistent(l___regBuiltin_Int_isPosValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1070____closed__2); -l___regBuiltin_Int_isPosValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1070____closed__3 = _init_l___regBuiltin_Int_isPosValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1070____closed__3(); -lean_mark_persistent(l___regBuiltin_Int_isPosValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1070____closed__3); -l___regBuiltin_Int_isPosValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1070____closed__4 = _init_l___regBuiltin_Int_isPosValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1070____closed__4(); -lean_mark_persistent(l___regBuiltin_Int_isPosValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1070____closed__4); -l___regBuiltin_Int_isPosValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1070____closed__5 = _init_l___regBuiltin_Int_isPosValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1070____closed__5(); -lean_mark_persistent(l___regBuiltin_Int_isPosValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1070____closed__5); -l___regBuiltin_Int_isPosValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1070____closed__6 = _init_l___regBuiltin_Int_isPosValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1070____closed__6(); -lean_mark_persistent(l___regBuiltin_Int_isPosValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1070____closed__6); -l___regBuiltin_Int_isPosValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1070____closed__7 = _init_l___regBuiltin_Int_isPosValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1070____closed__7(); -lean_mark_persistent(l___regBuiltin_Int_isPosValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1070____closed__7); -l___regBuiltin_Int_isPosValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1070____closed__8 = _init_l___regBuiltin_Int_isPosValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1070____closed__8(); -lean_mark_persistent(l___regBuiltin_Int_isPosValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1070____closed__8); -if (builtin) {res = l___regBuiltin_Int_isPosValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1070_(lean_io_mk_world()); +}l___regBuiltin_Int_isPosValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_760____closed__1 = _init_l___regBuiltin_Int_isPosValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_760____closed__1(); +lean_mark_persistent(l___regBuiltin_Int_isPosValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_760____closed__1); +l___regBuiltin_Int_isPosValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_760____closed__2 = _init_l___regBuiltin_Int_isPosValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_760____closed__2(); +lean_mark_persistent(l___regBuiltin_Int_isPosValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_760____closed__2); +l___regBuiltin_Int_isPosValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_760____closed__3 = _init_l___regBuiltin_Int_isPosValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_760____closed__3(); +lean_mark_persistent(l___regBuiltin_Int_isPosValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_760____closed__3); +l___regBuiltin_Int_isPosValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_760____closed__4 = _init_l___regBuiltin_Int_isPosValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_760____closed__4(); +lean_mark_persistent(l___regBuiltin_Int_isPosValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_760____closed__4); +l___regBuiltin_Int_isPosValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_760____closed__5 = _init_l___regBuiltin_Int_isPosValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_760____closed__5(); +lean_mark_persistent(l___regBuiltin_Int_isPosValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_760____closed__5); +l___regBuiltin_Int_isPosValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_760____closed__6 = _init_l___regBuiltin_Int_isPosValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_760____closed__6(); +lean_mark_persistent(l___regBuiltin_Int_isPosValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_760____closed__6); +l___regBuiltin_Int_isPosValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_760____closed__7 = _init_l___regBuiltin_Int_isPosValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_760____closed__7(); +lean_mark_persistent(l___regBuiltin_Int_isPosValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_760____closed__7); +l___regBuiltin_Int_isPosValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_760____closed__8 = _init_l___regBuiltin_Int_isPosValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_760____closed__8(); +lean_mark_persistent(l___regBuiltin_Int_isPosValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_760____closed__8); +if (builtin) {res = l___regBuiltin_Int_isPosValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_760_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Int_isPosValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1072_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_Int_isPosValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_762_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); }l_Int_reduceAdd___closed__1 = _init_l_Int_reduceAdd___closed__1(); @@ -9263,37 +9249,37 @@ l_Int_reduceAdd___closed__2 = _init_l_Int_reduceAdd___closed__2(); lean_mark_persistent(l_Int_reduceAdd___closed__2); l_Int_reduceAdd___closed__3 = _init_l_Int_reduceAdd___closed__3(); lean_mark_persistent(l_Int_reduceAdd___closed__3); -l___regBuiltin_Int_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1108____closed__1 = _init_l___regBuiltin_Int_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1108____closed__1(); -lean_mark_persistent(l___regBuiltin_Int_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1108____closed__1); -l___regBuiltin_Int_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1108____closed__2 = _init_l___regBuiltin_Int_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1108____closed__2(); -lean_mark_persistent(l___regBuiltin_Int_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1108____closed__2); -l___regBuiltin_Int_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1108____closed__3 = _init_l___regBuiltin_Int_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1108____closed__3(); -lean_mark_persistent(l___regBuiltin_Int_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1108____closed__3); -l___regBuiltin_Int_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1108____closed__4 = _init_l___regBuiltin_Int_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1108____closed__4(); -lean_mark_persistent(l___regBuiltin_Int_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1108____closed__4); -l___regBuiltin_Int_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1108____closed__5 = _init_l___regBuiltin_Int_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1108____closed__5(); -lean_mark_persistent(l___regBuiltin_Int_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1108____closed__5); -l___regBuiltin_Int_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1108____closed__6 = _init_l___regBuiltin_Int_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1108____closed__6(); -lean_mark_persistent(l___regBuiltin_Int_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1108____closed__6); -l___regBuiltin_Int_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1108____closed__7 = _init_l___regBuiltin_Int_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1108____closed__7(); -lean_mark_persistent(l___regBuiltin_Int_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1108____closed__7); -l___regBuiltin_Int_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1108____closed__8 = _init_l___regBuiltin_Int_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1108____closed__8(); -lean_mark_persistent(l___regBuiltin_Int_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1108____closed__8); -l___regBuiltin_Int_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1108____closed__9 = _init_l___regBuiltin_Int_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1108____closed__9(); -lean_mark_persistent(l___regBuiltin_Int_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1108____closed__9); -l___regBuiltin_Int_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1108____closed__10 = _init_l___regBuiltin_Int_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1108____closed__10(); -lean_mark_persistent(l___regBuiltin_Int_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1108____closed__10); -l___regBuiltin_Int_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1108____closed__11 = _init_l___regBuiltin_Int_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1108____closed__11(); -lean_mark_persistent(l___regBuiltin_Int_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1108____closed__11); -l___regBuiltin_Int_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1108____closed__12 = _init_l___regBuiltin_Int_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1108____closed__12(); -lean_mark_persistent(l___regBuiltin_Int_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1108____closed__12); -if (builtin) {res = l___regBuiltin_Int_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1108_(lean_io_mk_world()); +l___regBuiltin_Int_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_798____closed__1 = _init_l___regBuiltin_Int_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_798____closed__1(); +lean_mark_persistent(l___regBuiltin_Int_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_798____closed__1); +l___regBuiltin_Int_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_798____closed__2 = _init_l___regBuiltin_Int_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_798____closed__2(); +lean_mark_persistent(l___regBuiltin_Int_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_798____closed__2); +l___regBuiltin_Int_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_798____closed__3 = _init_l___regBuiltin_Int_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_798____closed__3(); +lean_mark_persistent(l___regBuiltin_Int_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_798____closed__3); +l___regBuiltin_Int_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_798____closed__4 = _init_l___regBuiltin_Int_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_798____closed__4(); +lean_mark_persistent(l___regBuiltin_Int_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_798____closed__4); +l___regBuiltin_Int_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_798____closed__5 = _init_l___regBuiltin_Int_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_798____closed__5(); +lean_mark_persistent(l___regBuiltin_Int_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_798____closed__5); +l___regBuiltin_Int_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_798____closed__6 = _init_l___regBuiltin_Int_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_798____closed__6(); +lean_mark_persistent(l___regBuiltin_Int_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_798____closed__6); +l___regBuiltin_Int_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_798____closed__7 = _init_l___regBuiltin_Int_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_798____closed__7(); +lean_mark_persistent(l___regBuiltin_Int_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_798____closed__7); +l___regBuiltin_Int_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_798____closed__8 = _init_l___regBuiltin_Int_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_798____closed__8(); +lean_mark_persistent(l___regBuiltin_Int_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_798____closed__8); +l___regBuiltin_Int_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_798____closed__9 = _init_l___regBuiltin_Int_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_798____closed__9(); +lean_mark_persistent(l___regBuiltin_Int_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_798____closed__9); +l___regBuiltin_Int_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_798____closed__10 = _init_l___regBuiltin_Int_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_798____closed__10(); +lean_mark_persistent(l___regBuiltin_Int_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_798____closed__10); +l___regBuiltin_Int_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_798____closed__11 = _init_l___regBuiltin_Int_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_798____closed__11(); +lean_mark_persistent(l___regBuiltin_Int_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_798____closed__11); +l___regBuiltin_Int_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_798____closed__12 = _init_l___regBuiltin_Int_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_798____closed__12(); +lean_mark_persistent(l___regBuiltin_Int_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_798____closed__12); +if (builtin) {res = l___regBuiltin_Int_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_798_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Int_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1110_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_Int_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_800_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Int_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1112_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_Int_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_802_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); }l_Int_reduceMul___closed__1 = _init_l_Int_reduceMul___closed__1(); @@ -9302,35 +9288,35 @@ l_Int_reduceMul___closed__2 = _init_l_Int_reduceMul___closed__2(); lean_mark_persistent(l_Int_reduceMul___closed__2); l_Int_reduceMul___closed__3 = _init_l_Int_reduceMul___closed__3(); lean_mark_persistent(l_Int_reduceMul___closed__3); -l___regBuiltin_Int_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1148____closed__1 = _init_l___regBuiltin_Int_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1148____closed__1(); -lean_mark_persistent(l___regBuiltin_Int_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1148____closed__1); -l___regBuiltin_Int_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1148____closed__2 = _init_l___regBuiltin_Int_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1148____closed__2(); -lean_mark_persistent(l___regBuiltin_Int_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1148____closed__2); -l___regBuiltin_Int_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1148____closed__3 = _init_l___regBuiltin_Int_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1148____closed__3(); -lean_mark_persistent(l___regBuiltin_Int_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1148____closed__3); -l___regBuiltin_Int_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1148____closed__4 = _init_l___regBuiltin_Int_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1148____closed__4(); -lean_mark_persistent(l___regBuiltin_Int_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1148____closed__4); -l___regBuiltin_Int_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1148____closed__5 = _init_l___regBuiltin_Int_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1148____closed__5(); -lean_mark_persistent(l___regBuiltin_Int_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1148____closed__5); -l___regBuiltin_Int_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1148____closed__6 = _init_l___regBuiltin_Int_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1148____closed__6(); -lean_mark_persistent(l___regBuiltin_Int_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1148____closed__6); -l___regBuiltin_Int_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1148____closed__7 = _init_l___regBuiltin_Int_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1148____closed__7(); -lean_mark_persistent(l___regBuiltin_Int_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1148____closed__7); -l___regBuiltin_Int_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1148____closed__8 = _init_l___regBuiltin_Int_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1148____closed__8(); -lean_mark_persistent(l___regBuiltin_Int_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1148____closed__8); -l___regBuiltin_Int_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1148____closed__9 = _init_l___regBuiltin_Int_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1148____closed__9(); -lean_mark_persistent(l___regBuiltin_Int_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1148____closed__9); -l___regBuiltin_Int_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1148____closed__10 = _init_l___regBuiltin_Int_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1148____closed__10(); -lean_mark_persistent(l___regBuiltin_Int_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1148____closed__10); -l___regBuiltin_Int_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1148____closed__11 = _init_l___regBuiltin_Int_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1148____closed__11(); -lean_mark_persistent(l___regBuiltin_Int_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1148____closed__11); -if (builtin) {res = l___regBuiltin_Int_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1148_(lean_io_mk_world()); +l___regBuiltin_Int_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_838____closed__1 = _init_l___regBuiltin_Int_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_838____closed__1(); +lean_mark_persistent(l___regBuiltin_Int_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_838____closed__1); +l___regBuiltin_Int_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_838____closed__2 = _init_l___regBuiltin_Int_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_838____closed__2(); +lean_mark_persistent(l___regBuiltin_Int_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_838____closed__2); +l___regBuiltin_Int_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_838____closed__3 = _init_l___regBuiltin_Int_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_838____closed__3(); +lean_mark_persistent(l___regBuiltin_Int_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_838____closed__3); +l___regBuiltin_Int_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_838____closed__4 = _init_l___regBuiltin_Int_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_838____closed__4(); +lean_mark_persistent(l___regBuiltin_Int_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_838____closed__4); +l___regBuiltin_Int_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_838____closed__5 = _init_l___regBuiltin_Int_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_838____closed__5(); +lean_mark_persistent(l___regBuiltin_Int_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_838____closed__5); +l___regBuiltin_Int_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_838____closed__6 = _init_l___regBuiltin_Int_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_838____closed__6(); +lean_mark_persistent(l___regBuiltin_Int_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_838____closed__6); +l___regBuiltin_Int_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_838____closed__7 = _init_l___regBuiltin_Int_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_838____closed__7(); +lean_mark_persistent(l___regBuiltin_Int_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_838____closed__7); +l___regBuiltin_Int_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_838____closed__8 = _init_l___regBuiltin_Int_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_838____closed__8(); +lean_mark_persistent(l___regBuiltin_Int_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_838____closed__8); +l___regBuiltin_Int_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_838____closed__9 = _init_l___regBuiltin_Int_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_838____closed__9(); +lean_mark_persistent(l___regBuiltin_Int_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_838____closed__9); +l___regBuiltin_Int_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_838____closed__10 = _init_l___regBuiltin_Int_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_838____closed__10(); +lean_mark_persistent(l___regBuiltin_Int_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_838____closed__10); +l___regBuiltin_Int_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_838____closed__11 = _init_l___regBuiltin_Int_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_838____closed__11(); +lean_mark_persistent(l___regBuiltin_Int_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_838____closed__11); +if (builtin) {res = l___regBuiltin_Int_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_838_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Int_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1150_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_Int_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_840_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Int_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1152_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_Int_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_842_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); }l_Int_reduceSub___closed__1 = _init_l_Int_reduceSub___closed__1(); @@ -9339,35 +9325,35 @@ l_Int_reduceSub___closed__2 = _init_l_Int_reduceSub___closed__2(); lean_mark_persistent(l_Int_reduceSub___closed__2); l_Int_reduceSub___closed__3 = _init_l_Int_reduceSub___closed__3(); lean_mark_persistent(l_Int_reduceSub___closed__3); -l___regBuiltin_Int_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1188____closed__1 = _init_l___regBuiltin_Int_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1188____closed__1(); -lean_mark_persistent(l___regBuiltin_Int_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1188____closed__1); -l___regBuiltin_Int_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1188____closed__2 = _init_l___regBuiltin_Int_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1188____closed__2(); -lean_mark_persistent(l___regBuiltin_Int_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1188____closed__2); -l___regBuiltin_Int_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1188____closed__3 = _init_l___regBuiltin_Int_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1188____closed__3(); -lean_mark_persistent(l___regBuiltin_Int_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1188____closed__3); -l___regBuiltin_Int_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1188____closed__4 = _init_l___regBuiltin_Int_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1188____closed__4(); -lean_mark_persistent(l___regBuiltin_Int_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1188____closed__4); -l___regBuiltin_Int_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1188____closed__5 = _init_l___regBuiltin_Int_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1188____closed__5(); -lean_mark_persistent(l___regBuiltin_Int_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1188____closed__5); -l___regBuiltin_Int_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1188____closed__6 = _init_l___regBuiltin_Int_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1188____closed__6(); -lean_mark_persistent(l___regBuiltin_Int_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1188____closed__6); -l___regBuiltin_Int_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1188____closed__7 = _init_l___regBuiltin_Int_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1188____closed__7(); -lean_mark_persistent(l___regBuiltin_Int_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1188____closed__7); -l___regBuiltin_Int_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1188____closed__8 = _init_l___regBuiltin_Int_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1188____closed__8(); -lean_mark_persistent(l___regBuiltin_Int_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1188____closed__8); -l___regBuiltin_Int_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1188____closed__9 = _init_l___regBuiltin_Int_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1188____closed__9(); -lean_mark_persistent(l___regBuiltin_Int_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1188____closed__9); -l___regBuiltin_Int_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1188____closed__10 = _init_l___regBuiltin_Int_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1188____closed__10(); -lean_mark_persistent(l___regBuiltin_Int_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1188____closed__10); -l___regBuiltin_Int_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1188____closed__11 = _init_l___regBuiltin_Int_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1188____closed__11(); -lean_mark_persistent(l___regBuiltin_Int_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1188____closed__11); -if (builtin) {res = l___regBuiltin_Int_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1188_(lean_io_mk_world()); +l___regBuiltin_Int_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_878____closed__1 = _init_l___regBuiltin_Int_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_878____closed__1(); +lean_mark_persistent(l___regBuiltin_Int_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_878____closed__1); +l___regBuiltin_Int_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_878____closed__2 = _init_l___regBuiltin_Int_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_878____closed__2(); +lean_mark_persistent(l___regBuiltin_Int_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_878____closed__2); +l___regBuiltin_Int_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_878____closed__3 = _init_l___regBuiltin_Int_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_878____closed__3(); +lean_mark_persistent(l___regBuiltin_Int_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_878____closed__3); +l___regBuiltin_Int_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_878____closed__4 = _init_l___regBuiltin_Int_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_878____closed__4(); +lean_mark_persistent(l___regBuiltin_Int_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_878____closed__4); +l___regBuiltin_Int_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_878____closed__5 = _init_l___regBuiltin_Int_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_878____closed__5(); +lean_mark_persistent(l___regBuiltin_Int_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_878____closed__5); +l___regBuiltin_Int_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_878____closed__6 = _init_l___regBuiltin_Int_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_878____closed__6(); +lean_mark_persistent(l___regBuiltin_Int_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_878____closed__6); +l___regBuiltin_Int_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_878____closed__7 = _init_l___regBuiltin_Int_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_878____closed__7(); +lean_mark_persistent(l___regBuiltin_Int_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_878____closed__7); +l___regBuiltin_Int_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_878____closed__8 = _init_l___regBuiltin_Int_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_878____closed__8(); +lean_mark_persistent(l___regBuiltin_Int_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_878____closed__8); +l___regBuiltin_Int_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_878____closed__9 = _init_l___regBuiltin_Int_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_878____closed__9(); +lean_mark_persistent(l___regBuiltin_Int_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_878____closed__9); +l___regBuiltin_Int_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_878____closed__10 = _init_l___regBuiltin_Int_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_878____closed__10(); +lean_mark_persistent(l___regBuiltin_Int_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_878____closed__10); +l___regBuiltin_Int_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_878____closed__11 = _init_l___regBuiltin_Int_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_878____closed__11(); +lean_mark_persistent(l___regBuiltin_Int_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_878____closed__11); +if (builtin) {res = l___regBuiltin_Int_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_878_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Int_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1190_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_Int_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_880_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Int_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1192_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_Int_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_882_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); }l_Int_reduceDiv___closed__1 = _init_l_Int_reduceDiv___closed__1(); @@ -9376,35 +9362,35 @@ l_Int_reduceDiv___closed__2 = _init_l_Int_reduceDiv___closed__2(); lean_mark_persistent(l_Int_reduceDiv___closed__2); l_Int_reduceDiv___closed__3 = _init_l_Int_reduceDiv___closed__3(); lean_mark_persistent(l_Int_reduceDiv___closed__3); -l___regBuiltin_Int_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1228____closed__1 = _init_l___regBuiltin_Int_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1228____closed__1(); -lean_mark_persistent(l___regBuiltin_Int_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1228____closed__1); -l___regBuiltin_Int_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1228____closed__2 = _init_l___regBuiltin_Int_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1228____closed__2(); -lean_mark_persistent(l___regBuiltin_Int_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1228____closed__2); -l___regBuiltin_Int_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1228____closed__3 = _init_l___regBuiltin_Int_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1228____closed__3(); -lean_mark_persistent(l___regBuiltin_Int_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1228____closed__3); -l___regBuiltin_Int_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1228____closed__4 = _init_l___regBuiltin_Int_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1228____closed__4(); -lean_mark_persistent(l___regBuiltin_Int_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1228____closed__4); -l___regBuiltin_Int_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1228____closed__5 = _init_l___regBuiltin_Int_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1228____closed__5(); -lean_mark_persistent(l___regBuiltin_Int_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1228____closed__5); -l___regBuiltin_Int_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1228____closed__6 = _init_l___regBuiltin_Int_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1228____closed__6(); -lean_mark_persistent(l___regBuiltin_Int_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1228____closed__6); -l___regBuiltin_Int_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1228____closed__7 = _init_l___regBuiltin_Int_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1228____closed__7(); -lean_mark_persistent(l___regBuiltin_Int_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1228____closed__7); -l___regBuiltin_Int_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1228____closed__8 = _init_l___regBuiltin_Int_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1228____closed__8(); -lean_mark_persistent(l___regBuiltin_Int_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1228____closed__8); -l___regBuiltin_Int_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1228____closed__9 = _init_l___regBuiltin_Int_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1228____closed__9(); -lean_mark_persistent(l___regBuiltin_Int_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1228____closed__9); -l___regBuiltin_Int_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1228____closed__10 = _init_l___regBuiltin_Int_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1228____closed__10(); -lean_mark_persistent(l___regBuiltin_Int_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1228____closed__10); -l___regBuiltin_Int_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1228____closed__11 = _init_l___regBuiltin_Int_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1228____closed__11(); -lean_mark_persistent(l___regBuiltin_Int_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1228____closed__11); -if (builtin) {res = l___regBuiltin_Int_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1228_(lean_io_mk_world()); +l___regBuiltin_Int_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_918____closed__1 = _init_l___regBuiltin_Int_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_918____closed__1(); +lean_mark_persistent(l___regBuiltin_Int_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_918____closed__1); +l___regBuiltin_Int_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_918____closed__2 = _init_l___regBuiltin_Int_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_918____closed__2(); +lean_mark_persistent(l___regBuiltin_Int_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_918____closed__2); +l___regBuiltin_Int_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_918____closed__3 = _init_l___regBuiltin_Int_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_918____closed__3(); +lean_mark_persistent(l___regBuiltin_Int_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_918____closed__3); +l___regBuiltin_Int_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_918____closed__4 = _init_l___regBuiltin_Int_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_918____closed__4(); +lean_mark_persistent(l___regBuiltin_Int_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_918____closed__4); +l___regBuiltin_Int_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_918____closed__5 = _init_l___regBuiltin_Int_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_918____closed__5(); +lean_mark_persistent(l___regBuiltin_Int_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_918____closed__5); +l___regBuiltin_Int_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_918____closed__6 = _init_l___regBuiltin_Int_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_918____closed__6(); +lean_mark_persistent(l___regBuiltin_Int_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_918____closed__6); +l___regBuiltin_Int_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_918____closed__7 = _init_l___regBuiltin_Int_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_918____closed__7(); +lean_mark_persistent(l___regBuiltin_Int_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_918____closed__7); +l___regBuiltin_Int_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_918____closed__8 = _init_l___regBuiltin_Int_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_918____closed__8(); +lean_mark_persistent(l___regBuiltin_Int_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_918____closed__8); +l___regBuiltin_Int_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_918____closed__9 = _init_l___regBuiltin_Int_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_918____closed__9(); +lean_mark_persistent(l___regBuiltin_Int_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_918____closed__9); +l___regBuiltin_Int_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_918____closed__10 = _init_l___regBuiltin_Int_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_918____closed__10(); +lean_mark_persistent(l___regBuiltin_Int_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_918____closed__10); +l___regBuiltin_Int_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_918____closed__11 = _init_l___regBuiltin_Int_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_918____closed__11(); +lean_mark_persistent(l___regBuiltin_Int_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_918____closed__11); +if (builtin) {res = l___regBuiltin_Int_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_918_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Int_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1230_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_Int_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_920_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Int_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1232_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_Int_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_922_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); }l_Int_reduceMod___closed__1 = _init_l_Int_reduceMod___closed__1(); @@ -9413,35 +9399,35 @@ l_Int_reduceMod___closed__2 = _init_l_Int_reduceMod___closed__2(); lean_mark_persistent(l_Int_reduceMod___closed__2); l_Int_reduceMod___closed__3 = _init_l_Int_reduceMod___closed__3(); lean_mark_persistent(l_Int_reduceMod___closed__3); -l___regBuiltin_Int_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1268____closed__1 = _init_l___regBuiltin_Int_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1268____closed__1(); -lean_mark_persistent(l___regBuiltin_Int_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1268____closed__1); -l___regBuiltin_Int_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1268____closed__2 = _init_l___regBuiltin_Int_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1268____closed__2(); -lean_mark_persistent(l___regBuiltin_Int_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1268____closed__2); -l___regBuiltin_Int_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1268____closed__3 = _init_l___regBuiltin_Int_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1268____closed__3(); -lean_mark_persistent(l___regBuiltin_Int_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1268____closed__3); -l___regBuiltin_Int_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1268____closed__4 = _init_l___regBuiltin_Int_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1268____closed__4(); -lean_mark_persistent(l___regBuiltin_Int_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1268____closed__4); -l___regBuiltin_Int_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1268____closed__5 = _init_l___regBuiltin_Int_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1268____closed__5(); -lean_mark_persistent(l___regBuiltin_Int_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1268____closed__5); -l___regBuiltin_Int_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1268____closed__6 = _init_l___regBuiltin_Int_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1268____closed__6(); -lean_mark_persistent(l___regBuiltin_Int_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1268____closed__6); -l___regBuiltin_Int_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1268____closed__7 = _init_l___regBuiltin_Int_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1268____closed__7(); -lean_mark_persistent(l___regBuiltin_Int_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1268____closed__7); -l___regBuiltin_Int_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1268____closed__8 = _init_l___regBuiltin_Int_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1268____closed__8(); -lean_mark_persistent(l___regBuiltin_Int_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1268____closed__8); -l___regBuiltin_Int_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1268____closed__9 = _init_l___regBuiltin_Int_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1268____closed__9(); -lean_mark_persistent(l___regBuiltin_Int_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1268____closed__9); -l___regBuiltin_Int_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1268____closed__10 = _init_l___regBuiltin_Int_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1268____closed__10(); -lean_mark_persistent(l___regBuiltin_Int_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1268____closed__10); -l___regBuiltin_Int_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1268____closed__11 = _init_l___regBuiltin_Int_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1268____closed__11(); -lean_mark_persistent(l___regBuiltin_Int_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1268____closed__11); -if (builtin) {res = l___regBuiltin_Int_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1268_(lean_io_mk_world()); +l___regBuiltin_Int_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_958____closed__1 = _init_l___regBuiltin_Int_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_958____closed__1(); +lean_mark_persistent(l___regBuiltin_Int_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_958____closed__1); +l___regBuiltin_Int_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_958____closed__2 = _init_l___regBuiltin_Int_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_958____closed__2(); +lean_mark_persistent(l___regBuiltin_Int_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_958____closed__2); +l___regBuiltin_Int_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_958____closed__3 = _init_l___regBuiltin_Int_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_958____closed__3(); +lean_mark_persistent(l___regBuiltin_Int_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_958____closed__3); +l___regBuiltin_Int_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_958____closed__4 = _init_l___regBuiltin_Int_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_958____closed__4(); +lean_mark_persistent(l___regBuiltin_Int_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_958____closed__4); +l___regBuiltin_Int_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_958____closed__5 = _init_l___regBuiltin_Int_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_958____closed__5(); +lean_mark_persistent(l___regBuiltin_Int_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_958____closed__5); +l___regBuiltin_Int_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_958____closed__6 = _init_l___regBuiltin_Int_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_958____closed__6(); +lean_mark_persistent(l___regBuiltin_Int_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_958____closed__6); +l___regBuiltin_Int_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_958____closed__7 = _init_l___regBuiltin_Int_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_958____closed__7(); +lean_mark_persistent(l___regBuiltin_Int_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_958____closed__7); +l___regBuiltin_Int_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_958____closed__8 = _init_l___regBuiltin_Int_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_958____closed__8(); +lean_mark_persistent(l___regBuiltin_Int_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_958____closed__8); +l___regBuiltin_Int_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_958____closed__9 = _init_l___regBuiltin_Int_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_958____closed__9(); +lean_mark_persistent(l___regBuiltin_Int_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_958____closed__9); +l___regBuiltin_Int_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_958____closed__10 = _init_l___regBuiltin_Int_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_958____closed__10(); +lean_mark_persistent(l___regBuiltin_Int_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_958____closed__10); +l___regBuiltin_Int_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_958____closed__11 = _init_l___regBuiltin_Int_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_958____closed__11(); +lean_mark_persistent(l___regBuiltin_Int_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_958____closed__11); +if (builtin) {res = l___regBuiltin_Int_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_958_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Int_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1270_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_Int_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_960_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Int_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1272_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_Int_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_962_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); }l_Int_reducePow___closed__1 = _init_l_Int_reducePow___closed__1(); @@ -9450,41 +9436,41 @@ l_Int_reducePow___closed__2 = _init_l_Int_reducePow___closed__2(); lean_mark_persistent(l_Int_reducePow___closed__2); l_Int_reducePow___closed__3 = _init_l_Int_reducePow___closed__3(); lean_mark_persistent(l_Int_reducePow___closed__3); -l___regBuiltin_Int_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1428____closed__1 = _init_l___regBuiltin_Int_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1428____closed__1(); -lean_mark_persistent(l___regBuiltin_Int_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1428____closed__1); -l___regBuiltin_Int_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1428____closed__2 = _init_l___regBuiltin_Int_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1428____closed__2(); -lean_mark_persistent(l___regBuiltin_Int_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1428____closed__2); -l___regBuiltin_Int_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1428____closed__3 = _init_l___regBuiltin_Int_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1428____closed__3(); -lean_mark_persistent(l___regBuiltin_Int_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1428____closed__3); -l___regBuiltin_Int_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1428____closed__4 = _init_l___regBuiltin_Int_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1428____closed__4(); -lean_mark_persistent(l___regBuiltin_Int_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1428____closed__4); -l___regBuiltin_Int_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1428____closed__5 = _init_l___regBuiltin_Int_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1428____closed__5(); -lean_mark_persistent(l___regBuiltin_Int_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1428____closed__5); -l___regBuiltin_Int_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1428____closed__6 = _init_l___regBuiltin_Int_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1428____closed__6(); -lean_mark_persistent(l___regBuiltin_Int_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1428____closed__6); -l___regBuiltin_Int_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1428____closed__7 = _init_l___regBuiltin_Int_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1428____closed__7(); -lean_mark_persistent(l___regBuiltin_Int_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1428____closed__7); -l___regBuiltin_Int_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1428____closed__8 = _init_l___regBuiltin_Int_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1428____closed__8(); -lean_mark_persistent(l___regBuiltin_Int_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1428____closed__8); -l___regBuiltin_Int_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1428____closed__9 = _init_l___regBuiltin_Int_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1428____closed__9(); -lean_mark_persistent(l___regBuiltin_Int_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1428____closed__9); -l___regBuiltin_Int_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1428____closed__10 = _init_l___regBuiltin_Int_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1428____closed__10(); -lean_mark_persistent(l___regBuiltin_Int_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1428____closed__10); -l___regBuiltin_Int_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1428____closed__11 = _init_l___regBuiltin_Int_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1428____closed__11(); -lean_mark_persistent(l___regBuiltin_Int_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1428____closed__11); -l___regBuiltin_Int_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1428____closed__12 = _init_l___regBuiltin_Int_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1428____closed__12(); -lean_mark_persistent(l___regBuiltin_Int_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1428____closed__12); -l___regBuiltin_Int_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1428____closed__13 = _init_l___regBuiltin_Int_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1428____closed__13(); -lean_mark_persistent(l___regBuiltin_Int_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1428____closed__13); -l___regBuiltin_Int_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1428____closed__14 = _init_l___regBuiltin_Int_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1428____closed__14(); -lean_mark_persistent(l___regBuiltin_Int_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1428____closed__14); -if (builtin) {res = l___regBuiltin_Int_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1428_(lean_io_mk_world()); +l___regBuiltin_Int_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1118____closed__1 = _init_l___regBuiltin_Int_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1118____closed__1(); +lean_mark_persistent(l___regBuiltin_Int_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1118____closed__1); +l___regBuiltin_Int_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1118____closed__2 = _init_l___regBuiltin_Int_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1118____closed__2(); +lean_mark_persistent(l___regBuiltin_Int_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1118____closed__2); +l___regBuiltin_Int_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1118____closed__3 = _init_l___regBuiltin_Int_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1118____closed__3(); +lean_mark_persistent(l___regBuiltin_Int_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1118____closed__3); +l___regBuiltin_Int_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1118____closed__4 = _init_l___regBuiltin_Int_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1118____closed__4(); +lean_mark_persistent(l___regBuiltin_Int_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1118____closed__4); +l___regBuiltin_Int_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1118____closed__5 = _init_l___regBuiltin_Int_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1118____closed__5(); +lean_mark_persistent(l___regBuiltin_Int_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1118____closed__5); +l___regBuiltin_Int_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1118____closed__6 = _init_l___regBuiltin_Int_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1118____closed__6(); +lean_mark_persistent(l___regBuiltin_Int_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1118____closed__6); +l___regBuiltin_Int_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1118____closed__7 = _init_l___regBuiltin_Int_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1118____closed__7(); +lean_mark_persistent(l___regBuiltin_Int_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1118____closed__7); +l___regBuiltin_Int_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1118____closed__8 = _init_l___regBuiltin_Int_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1118____closed__8(); +lean_mark_persistent(l___regBuiltin_Int_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1118____closed__8); +l___regBuiltin_Int_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1118____closed__9 = _init_l___regBuiltin_Int_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1118____closed__9(); +lean_mark_persistent(l___regBuiltin_Int_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1118____closed__9); +l___regBuiltin_Int_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1118____closed__10 = _init_l___regBuiltin_Int_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1118____closed__10(); +lean_mark_persistent(l___regBuiltin_Int_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1118____closed__10); +l___regBuiltin_Int_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1118____closed__11 = _init_l___regBuiltin_Int_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1118____closed__11(); +lean_mark_persistent(l___regBuiltin_Int_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1118____closed__11); +l___regBuiltin_Int_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1118____closed__12 = _init_l___regBuiltin_Int_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1118____closed__12(); +lean_mark_persistent(l___regBuiltin_Int_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1118____closed__12); +l___regBuiltin_Int_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1118____closed__13 = _init_l___regBuiltin_Int_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1118____closed__13(); +lean_mark_persistent(l___regBuiltin_Int_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1118____closed__13); +l___regBuiltin_Int_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1118____closed__14 = _init_l___regBuiltin_Int_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1118____closed__14(); +lean_mark_persistent(l___regBuiltin_Int_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1118____closed__14); +if (builtin) {res = l___regBuiltin_Int_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1118_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Int_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1430_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_Int_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1120_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Int_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1432_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_Int_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1122_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); }l_Int_reduceLT___closed__1 = _init_l_Int_reduceLT___closed__1(); @@ -9493,33 +9479,33 @@ l_Int_reduceLT___closed__2 = _init_l_Int_reduceLT___closed__2(); lean_mark_persistent(l_Int_reduceLT___closed__2); l_Int_reduceLT___closed__3 = _init_l_Int_reduceLT___closed__3(); lean_mark_persistent(l_Int_reduceLT___closed__3); -l___regBuiltin_Int_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1469____closed__1 = _init_l___regBuiltin_Int_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1469____closed__1(); -lean_mark_persistent(l___regBuiltin_Int_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1469____closed__1); -l___regBuiltin_Int_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1469____closed__2 = _init_l___regBuiltin_Int_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1469____closed__2(); -lean_mark_persistent(l___regBuiltin_Int_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1469____closed__2); -l___regBuiltin_Int_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1469____closed__3 = _init_l___regBuiltin_Int_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1469____closed__3(); -lean_mark_persistent(l___regBuiltin_Int_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1469____closed__3); -l___regBuiltin_Int_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1469____closed__4 = _init_l___regBuiltin_Int_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1469____closed__4(); -lean_mark_persistent(l___regBuiltin_Int_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1469____closed__4); -l___regBuiltin_Int_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1469____closed__5 = _init_l___regBuiltin_Int_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1469____closed__5(); -lean_mark_persistent(l___regBuiltin_Int_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1469____closed__5); -l___regBuiltin_Int_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1469____closed__6 = _init_l___regBuiltin_Int_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1469____closed__6(); -lean_mark_persistent(l___regBuiltin_Int_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1469____closed__6); -l___regBuiltin_Int_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1469____closed__7 = _init_l___regBuiltin_Int_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1469____closed__7(); -lean_mark_persistent(l___regBuiltin_Int_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1469____closed__7); -l___regBuiltin_Int_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1469____closed__8 = _init_l___regBuiltin_Int_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1469____closed__8(); -lean_mark_persistent(l___regBuiltin_Int_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1469____closed__8); -l___regBuiltin_Int_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1469____closed__9 = _init_l___regBuiltin_Int_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1469____closed__9(); -lean_mark_persistent(l___regBuiltin_Int_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1469____closed__9); -l___regBuiltin_Int_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1469____closed__10 = _init_l___regBuiltin_Int_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1469____closed__10(); -lean_mark_persistent(l___regBuiltin_Int_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1469____closed__10); -if (builtin) {res = l___regBuiltin_Int_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1469_(lean_io_mk_world()); +l___regBuiltin_Int_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1159____closed__1 = _init_l___regBuiltin_Int_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1159____closed__1(); +lean_mark_persistent(l___regBuiltin_Int_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1159____closed__1); +l___regBuiltin_Int_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1159____closed__2 = _init_l___regBuiltin_Int_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1159____closed__2(); +lean_mark_persistent(l___regBuiltin_Int_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1159____closed__2); +l___regBuiltin_Int_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1159____closed__3 = _init_l___regBuiltin_Int_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1159____closed__3(); +lean_mark_persistent(l___regBuiltin_Int_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1159____closed__3); +l___regBuiltin_Int_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1159____closed__4 = _init_l___regBuiltin_Int_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1159____closed__4(); +lean_mark_persistent(l___regBuiltin_Int_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1159____closed__4); +l___regBuiltin_Int_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1159____closed__5 = _init_l___regBuiltin_Int_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1159____closed__5(); +lean_mark_persistent(l___regBuiltin_Int_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1159____closed__5); +l___regBuiltin_Int_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1159____closed__6 = _init_l___regBuiltin_Int_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1159____closed__6(); +lean_mark_persistent(l___regBuiltin_Int_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1159____closed__6); +l___regBuiltin_Int_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1159____closed__7 = _init_l___regBuiltin_Int_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1159____closed__7(); +lean_mark_persistent(l___regBuiltin_Int_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1159____closed__7); +l___regBuiltin_Int_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1159____closed__8 = _init_l___regBuiltin_Int_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1159____closed__8(); +lean_mark_persistent(l___regBuiltin_Int_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1159____closed__8); +l___regBuiltin_Int_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1159____closed__9 = _init_l___regBuiltin_Int_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1159____closed__9(); +lean_mark_persistent(l___regBuiltin_Int_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1159____closed__9); +l___regBuiltin_Int_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1159____closed__10 = _init_l___regBuiltin_Int_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1159____closed__10(); +lean_mark_persistent(l___regBuiltin_Int_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1159____closed__10); +if (builtin) {res = l___regBuiltin_Int_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1159_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Int_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1471_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_Int_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1161_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Int_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1473_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_Int_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1163_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); }l_Int_reduceLE___closed__1 = _init_l_Int_reduceLE___closed__1(); @@ -9528,31 +9514,31 @@ l_Int_reduceLE___closed__2 = _init_l_Int_reduceLE___closed__2(); lean_mark_persistent(l_Int_reduceLE___closed__2); l_Int_reduceLE___closed__3 = _init_l_Int_reduceLE___closed__3(); lean_mark_persistent(l_Int_reduceLE___closed__3); -l___regBuiltin_Int_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1510____closed__1 = _init_l___regBuiltin_Int_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1510____closed__1(); -lean_mark_persistent(l___regBuiltin_Int_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1510____closed__1); -l___regBuiltin_Int_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1510____closed__2 = _init_l___regBuiltin_Int_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1510____closed__2(); -lean_mark_persistent(l___regBuiltin_Int_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1510____closed__2); -l___regBuiltin_Int_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1510____closed__3 = _init_l___regBuiltin_Int_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1510____closed__3(); -lean_mark_persistent(l___regBuiltin_Int_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1510____closed__3); -l___regBuiltin_Int_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1510____closed__4 = _init_l___regBuiltin_Int_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1510____closed__4(); -lean_mark_persistent(l___regBuiltin_Int_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1510____closed__4); -l___regBuiltin_Int_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1510____closed__5 = _init_l___regBuiltin_Int_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1510____closed__5(); -lean_mark_persistent(l___regBuiltin_Int_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1510____closed__5); -l___regBuiltin_Int_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1510____closed__6 = _init_l___regBuiltin_Int_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1510____closed__6(); -lean_mark_persistent(l___regBuiltin_Int_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1510____closed__6); -l___regBuiltin_Int_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1510____closed__7 = _init_l___regBuiltin_Int_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1510____closed__7(); -lean_mark_persistent(l___regBuiltin_Int_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1510____closed__7); -l___regBuiltin_Int_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1510____closed__8 = _init_l___regBuiltin_Int_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1510____closed__8(); -lean_mark_persistent(l___regBuiltin_Int_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1510____closed__8); -l___regBuiltin_Int_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1510____closed__9 = _init_l___regBuiltin_Int_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1510____closed__9(); -lean_mark_persistent(l___regBuiltin_Int_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1510____closed__9); -if (builtin) {res = l___regBuiltin_Int_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1510_(lean_io_mk_world()); +l___regBuiltin_Int_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1200____closed__1 = _init_l___regBuiltin_Int_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1200____closed__1(); +lean_mark_persistent(l___regBuiltin_Int_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1200____closed__1); +l___regBuiltin_Int_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1200____closed__2 = _init_l___regBuiltin_Int_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1200____closed__2(); +lean_mark_persistent(l___regBuiltin_Int_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1200____closed__2); +l___regBuiltin_Int_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1200____closed__3 = _init_l___regBuiltin_Int_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1200____closed__3(); +lean_mark_persistent(l___regBuiltin_Int_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1200____closed__3); +l___regBuiltin_Int_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1200____closed__4 = _init_l___regBuiltin_Int_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1200____closed__4(); +lean_mark_persistent(l___regBuiltin_Int_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1200____closed__4); +l___regBuiltin_Int_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1200____closed__5 = _init_l___regBuiltin_Int_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1200____closed__5(); +lean_mark_persistent(l___regBuiltin_Int_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1200____closed__5); +l___regBuiltin_Int_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1200____closed__6 = _init_l___regBuiltin_Int_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1200____closed__6(); +lean_mark_persistent(l___regBuiltin_Int_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1200____closed__6); +l___regBuiltin_Int_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1200____closed__7 = _init_l___regBuiltin_Int_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1200____closed__7(); +lean_mark_persistent(l___regBuiltin_Int_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1200____closed__7); +l___regBuiltin_Int_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1200____closed__8 = _init_l___regBuiltin_Int_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1200____closed__8(); +lean_mark_persistent(l___regBuiltin_Int_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1200____closed__8); +l___regBuiltin_Int_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1200____closed__9 = _init_l___regBuiltin_Int_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1200____closed__9(); +lean_mark_persistent(l___regBuiltin_Int_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1200____closed__9); +if (builtin) {res = l___regBuiltin_Int_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1200_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Int_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1512_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_Int_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1202_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Int_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1514_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_Int_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1204_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); }l_Int_reduceGT___closed__1 = _init_l_Int_reduceGT___closed__1(); @@ -9561,19 +9547,19 @@ l_Int_reduceGT___closed__2 = _init_l_Int_reduceGT___closed__2(); lean_mark_persistent(l_Int_reduceGT___closed__2); l_Int_reduceGT___closed__3 = _init_l_Int_reduceGT___closed__3(); lean_mark_persistent(l_Int_reduceGT___closed__3); -l___regBuiltin_Int_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1551____closed__1 = _init_l___regBuiltin_Int_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1551____closed__1(); -lean_mark_persistent(l___regBuiltin_Int_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1551____closed__1); -l___regBuiltin_Int_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1551____closed__2 = _init_l___regBuiltin_Int_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1551____closed__2(); -lean_mark_persistent(l___regBuiltin_Int_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1551____closed__2); -l___regBuiltin_Int_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1551____closed__3 = _init_l___regBuiltin_Int_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1551____closed__3(); -lean_mark_persistent(l___regBuiltin_Int_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1551____closed__3); -if (builtin) {res = l___regBuiltin_Int_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1551_(lean_io_mk_world()); +l___regBuiltin_Int_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1241____closed__1 = _init_l___regBuiltin_Int_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1241____closed__1(); +lean_mark_persistent(l___regBuiltin_Int_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1241____closed__1); +l___regBuiltin_Int_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1241____closed__2 = _init_l___regBuiltin_Int_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1241____closed__2(); +lean_mark_persistent(l___regBuiltin_Int_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1241____closed__2); +l___regBuiltin_Int_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1241____closed__3 = _init_l___regBuiltin_Int_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1241____closed__3(); +lean_mark_persistent(l___regBuiltin_Int_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1241____closed__3); +if (builtin) {res = l___regBuiltin_Int_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1241_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Int_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1553_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_Int_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1243_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Int_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1555_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_Int_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1245_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); }l_Int_reduceGE___closed__1 = _init_l_Int_reduceGE___closed__1(); @@ -9582,83 +9568,83 @@ l_Int_reduceGE___closed__2 = _init_l_Int_reduceGE___closed__2(); lean_mark_persistent(l_Int_reduceGE___closed__2); l_Int_reduceGE___closed__3 = _init_l_Int_reduceGE___closed__3(); lean_mark_persistent(l_Int_reduceGE___closed__3); -l___regBuiltin_Int_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1592____closed__1 = _init_l___regBuiltin_Int_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1592____closed__1(); -lean_mark_persistent(l___regBuiltin_Int_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1592____closed__1); -l___regBuiltin_Int_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1592____closed__2 = _init_l___regBuiltin_Int_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1592____closed__2(); -lean_mark_persistent(l___regBuiltin_Int_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1592____closed__2); -l___regBuiltin_Int_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1592____closed__3 = _init_l___regBuiltin_Int_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1592____closed__3(); -lean_mark_persistent(l___regBuiltin_Int_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1592____closed__3); -if (builtin) {res = l___regBuiltin_Int_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1592_(lean_io_mk_world()); +l___regBuiltin_Int_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1282____closed__1 = _init_l___regBuiltin_Int_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1282____closed__1(); +lean_mark_persistent(l___regBuiltin_Int_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1282____closed__1); +l___regBuiltin_Int_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1282____closed__2 = _init_l___regBuiltin_Int_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1282____closed__2(); +lean_mark_persistent(l___regBuiltin_Int_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1282____closed__2); +l___regBuiltin_Int_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1282____closed__3 = _init_l___regBuiltin_Int_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1282____closed__3(); +lean_mark_persistent(l___regBuiltin_Int_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1282____closed__3); +if (builtin) {res = l___regBuiltin_Int_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1282_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Int_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1594_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_Int_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1284_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Int_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1596_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_Int_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1286_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); }l_Int_reduceEq___closed__1 = _init_l_Int_reduceEq___closed__1(); lean_mark_persistent(l_Int_reduceEq___closed__1); l_Int_reduceEq___closed__2 = _init_l_Int_reduceEq___closed__2(); lean_mark_persistent(l_Int_reduceEq___closed__2); -l___regBuiltin_Int_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1633____closed__1 = _init_l___regBuiltin_Int_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1633____closed__1(); -lean_mark_persistent(l___regBuiltin_Int_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1633____closed__1); -l___regBuiltin_Int_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1633____closed__2 = _init_l___regBuiltin_Int_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1633____closed__2(); -lean_mark_persistent(l___regBuiltin_Int_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1633____closed__2); -l___regBuiltin_Int_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1633____closed__3 = _init_l___regBuiltin_Int_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1633____closed__3(); -lean_mark_persistent(l___regBuiltin_Int_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1633____closed__3); -l___regBuiltin_Int_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1633____closed__4 = _init_l___regBuiltin_Int_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1633____closed__4(); -lean_mark_persistent(l___regBuiltin_Int_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1633____closed__4); -l___regBuiltin_Int_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1633____closed__5 = _init_l___regBuiltin_Int_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1633____closed__5(); -lean_mark_persistent(l___regBuiltin_Int_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1633____closed__5); -l___regBuiltin_Int_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1633____closed__6 = _init_l___regBuiltin_Int_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1633____closed__6(); -lean_mark_persistent(l___regBuiltin_Int_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1633____closed__6); -l___regBuiltin_Int_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1633____closed__7 = _init_l___regBuiltin_Int_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1633____closed__7(); -lean_mark_persistent(l___regBuiltin_Int_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1633____closed__7); -l___regBuiltin_Int_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1633____closed__8 = _init_l___regBuiltin_Int_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1633____closed__8(); -lean_mark_persistent(l___regBuiltin_Int_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1633____closed__8); -if (builtin) {res = l___regBuiltin_Int_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1633_(lean_io_mk_world()); +l___regBuiltin_Int_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1323____closed__1 = _init_l___regBuiltin_Int_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1323____closed__1(); +lean_mark_persistent(l___regBuiltin_Int_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1323____closed__1); +l___regBuiltin_Int_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1323____closed__2 = _init_l___regBuiltin_Int_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1323____closed__2(); +lean_mark_persistent(l___regBuiltin_Int_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1323____closed__2); +l___regBuiltin_Int_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1323____closed__3 = _init_l___regBuiltin_Int_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1323____closed__3(); +lean_mark_persistent(l___regBuiltin_Int_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1323____closed__3); +l___regBuiltin_Int_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1323____closed__4 = _init_l___regBuiltin_Int_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1323____closed__4(); +lean_mark_persistent(l___regBuiltin_Int_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1323____closed__4); +l___regBuiltin_Int_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1323____closed__5 = _init_l___regBuiltin_Int_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1323____closed__5(); +lean_mark_persistent(l___regBuiltin_Int_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1323____closed__5); +l___regBuiltin_Int_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1323____closed__6 = _init_l___regBuiltin_Int_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1323____closed__6(); +lean_mark_persistent(l___regBuiltin_Int_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1323____closed__6); +l___regBuiltin_Int_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1323____closed__7 = _init_l___regBuiltin_Int_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1323____closed__7(); +lean_mark_persistent(l___regBuiltin_Int_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1323____closed__7); +l___regBuiltin_Int_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1323____closed__8 = _init_l___regBuiltin_Int_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1323____closed__8(); +lean_mark_persistent(l___regBuiltin_Int_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1323____closed__8); +if (builtin) {res = l___regBuiltin_Int_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1323_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Int_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1635_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_Int_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1325_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Int_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1637_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_Int_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1327_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); }l_Int_reduceNe___closed__1 = _init_l_Int_reduceNe___closed__1(); lean_mark_persistent(l_Int_reduceNe___closed__1); l_Int_reduceNe___closed__2 = _init_l_Int_reduceNe___closed__2(); lean_mark_persistent(l_Int_reduceNe___closed__2); -l___regBuiltin_Int_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1673____closed__1 = _init_l___regBuiltin_Int_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1673____closed__1(); -lean_mark_persistent(l___regBuiltin_Int_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1673____closed__1); -l___regBuiltin_Int_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1673____closed__2 = _init_l___regBuiltin_Int_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1673____closed__2(); -lean_mark_persistent(l___regBuiltin_Int_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1673____closed__2); -l___regBuiltin_Int_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1673____closed__3 = _init_l___regBuiltin_Int_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1673____closed__3(); -lean_mark_persistent(l___regBuiltin_Int_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1673____closed__3); -l___regBuiltin_Int_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1673____closed__4 = _init_l___regBuiltin_Int_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1673____closed__4(); -lean_mark_persistent(l___regBuiltin_Int_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1673____closed__4); -l___regBuiltin_Int_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1673____closed__5 = _init_l___regBuiltin_Int_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1673____closed__5(); -lean_mark_persistent(l___regBuiltin_Int_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1673____closed__5); -l___regBuiltin_Int_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1673____closed__6 = _init_l___regBuiltin_Int_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1673____closed__6(); -lean_mark_persistent(l___regBuiltin_Int_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1673____closed__6); -l___regBuiltin_Int_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1673____closed__7 = _init_l___regBuiltin_Int_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1673____closed__7(); -lean_mark_persistent(l___regBuiltin_Int_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1673____closed__7); -l___regBuiltin_Int_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1673____closed__8 = _init_l___regBuiltin_Int_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1673____closed__8(); -lean_mark_persistent(l___regBuiltin_Int_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1673____closed__8); -l___regBuiltin_Int_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1673____closed__9 = _init_l___regBuiltin_Int_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1673____closed__9(); -lean_mark_persistent(l___regBuiltin_Int_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1673____closed__9); -l___regBuiltin_Int_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1673____closed__10 = _init_l___regBuiltin_Int_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1673____closed__10(); -lean_mark_persistent(l___regBuiltin_Int_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1673____closed__10); -l___regBuiltin_Int_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1673____closed__11 = _init_l___regBuiltin_Int_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1673____closed__11(); -lean_mark_persistent(l___regBuiltin_Int_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1673____closed__11); -if (builtin) {res = l___regBuiltin_Int_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1673_(lean_io_mk_world()); +l___regBuiltin_Int_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1363____closed__1 = _init_l___regBuiltin_Int_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1363____closed__1(); +lean_mark_persistent(l___regBuiltin_Int_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1363____closed__1); +l___regBuiltin_Int_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1363____closed__2 = _init_l___regBuiltin_Int_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1363____closed__2(); +lean_mark_persistent(l___regBuiltin_Int_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1363____closed__2); +l___regBuiltin_Int_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1363____closed__3 = _init_l___regBuiltin_Int_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1363____closed__3(); +lean_mark_persistent(l___regBuiltin_Int_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1363____closed__3); +l___regBuiltin_Int_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1363____closed__4 = _init_l___regBuiltin_Int_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1363____closed__4(); +lean_mark_persistent(l___regBuiltin_Int_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1363____closed__4); +l___regBuiltin_Int_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1363____closed__5 = _init_l___regBuiltin_Int_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1363____closed__5(); +lean_mark_persistent(l___regBuiltin_Int_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1363____closed__5); +l___regBuiltin_Int_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1363____closed__6 = _init_l___regBuiltin_Int_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1363____closed__6(); +lean_mark_persistent(l___regBuiltin_Int_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1363____closed__6); +l___regBuiltin_Int_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1363____closed__7 = _init_l___regBuiltin_Int_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1363____closed__7(); +lean_mark_persistent(l___regBuiltin_Int_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1363____closed__7); +l___regBuiltin_Int_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1363____closed__8 = _init_l___regBuiltin_Int_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1363____closed__8(); +lean_mark_persistent(l___regBuiltin_Int_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1363____closed__8); +l___regBuiltin_Int_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1363____closed__9 = _init_l___regBuiltin_Int_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1363____closed__9(); +lean_mark_persistent(l___regBuiltin_Int_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1363____closed__9); +l___regBuiltin_Int_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1363____closed__10 = _init_l___regBuiltin_Int_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1363____closed__10(); +lean_mark_persistent(l___regBuiltin_Int_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1363____closed__10); +l___regBuiltin_Int_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1363____closed__11 = _init_l___regBuiltin_Int_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1363____closed__11(); +lean_mark_persistent(l___regBuiltin_Int_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1363____closed__11); +if (builtin) {res = l___regBuiltin_Int_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1363_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Int_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1675_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_Int_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1365_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Int_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1677_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_Int_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1367_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); }l_Int_reduceBEq___closed__1 = _init_l_Int_reduceBEq___closed__1(); @@ -9667,114 +9653,114 @@ l_Int_reduceBEq___closed__2 = _init_l_Int_reduceBEq___closed__2(); lean_mark_persistent(l_Int_reduceBEq___closed__2); l_Int_reduceBEq___closed__3 = _init_l_Int_reduceBEq___closed__3(); lean_mark_persistent(l_Int_reduceBEq___closed__3); -l___regBuiltin_Int_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1714____closed__1 = _init_l___regBuiltin_Int_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1714____closed__1(); -lean_mark_persistent(l___regBuiltin_Int_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1714____closed__1); -l___regBuiltin_Int_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1714____closed__2 = _init_l___regBuiltin_Int_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1714____closed__2(); -lean_mark_persistent(l___regBuiltin_Int_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1714____closed__2); -l___regBuiltin_Int_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1714____closed__3 = _init_l___regBuiltin_Int_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1714____closed__3(); -lean_mark_persistent(l___regBuiltin_Int_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1714____closed__3); -l___regBuiltin_Int_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1714____closed__4 = _init_l___regBuiltin_Int_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1714____closed__4(); -lean_mark_persistent(l___regBuiltin_Int_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1714____closed__4); -l___regBuiltin_Int_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1714____closed__5 = _init_l___regBuiltin_Int_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1714____closed__5(); -lean_mark_persistent(l___regBuiltin_Int_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1714____closed__5); -l___regBuiltin_Int_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1714____closed__6 = _init_l___regBuiltin_Int_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1714____closed__6(); -lean_mark_persistent(l___regBuiltin_Int_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1714____closed__6); -l___regBuiltin_Int_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1714____closed__7 = _init_l___regBuiltin_Int_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1714____closed__7(); -lean_mark_persistent(l___regBuiltin_Int_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1714____closed__7); -l___regBuiltin_Int_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1714____closed__8 = _init_l___regBuiltin_Int_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1714____closed__8(); -lean_mark_persistent(l___regBuiltin_Int_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1714____closed__8); -l___regBuiltin_Int_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1714____closed__9 = _init_l___regBuiltin_Int_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1714____closed__9(); -lean_mark_persistent(l___regBuiltin_Int_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1714____closed__9); -if (builtin) {res = l___regBuiltin_Int_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1714_(lean_io_mk_world()); +l___regBuiltin_Int_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1404____closed__1 = _init_l___regBuiltin_Int_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1404____closed__1(); +lean_mark_persistent(l___regBuiltin_Int_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1404____closed__1); +l___regBuiltin_Int_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1404____closed__2 = _init_l___regBuiltin_Int_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1404____closed__2(); +lean_mark_persistent(l___regBuiltin_Int_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1404____closed__2); +l___regBuiltin_Int_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1404____closed__3 = _init_l___regBuiltin_Int_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1404____closed__3(); +lean_mark_persistent(l___regBuiltin_Int_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1404____closed__3); +l___regBuiltin_Int_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1404____closed__4 = _init_l___regBuiltin_Int_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1404____closed__4(); +lean_mark_persistent(l___regBuiltin_Int_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1404____closed__4); +l___regBuiltin_Int_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1404____closed__5 = _init_l___regBuiltin_Int_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1404____closed__5(); +lean_mark_persistent(l___regBuiltin_Int_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1404____closed__5); +l___regBuiltin_Int_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1404____closed__6 = _init_l___regBuiltin_Int_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1404____closed__6(); +lean_mark_persistent(l___regBuiltin_Int_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1404____closed__6); +l___regBuiltin_Int_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1404____closed__7 = _init_l___regBuiltin_Int_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1404____closed__7(); +lean_mark_persistent(l___regBuiltin_Int_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1404____closed__7); +l___regBuiltin_Int_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1404____closed__8 = _init_l___regBuiltin_Int_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1404____closed__8(); +lean_mark_persistent(l___regBuiltin_Int_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1404____closed__8); +l___regBuiltin_Int_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1404____closed__9 = _init_l___regBuiltin_Int_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1404____closed__9(); +lean_mark_persistent(l___regBuiltin_Int_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1404____closed__9); +if (builtin) {res = l___regBuiltin_Int_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1404_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Int_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1716_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_Int_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1406_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Int_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1718_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_Int_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1408_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); }l_Int_reduceBNe___closed__1 = _init_l_Int_reduceBNe___closed__1(); lean_mark_persistent(l_Int_reduceBNe___closed__1); l_Int_reduceBNe___closed__2 = _init_l_Int_reduceBNe___closed__2(); lean_mark_persistent(l_Int_reduceBNe___closed__2); -l___regBuiltin_Int_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1754____closed__1 = _init_l___regBuiltin_Int_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1754____closed__1(); -lean_mark_persistent(l___regBuiltin_Int_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1754____closed__1); -l___regBuiltin_Int_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1754____closed__2 = _init_l___regBuiltin_Int_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1754____closed__2(); -lean_mark_persistent(l___regBuiltin_Int_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1754____closed__2); -l___regBuiltin_Int_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1754____closed__3 = _init_l___regBuiltin_Int_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1754____closed__3(); -lean_mark_persistent(l___regBuiltin_Int_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1754____closed__3); -l___regBuiltin_Int_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1754____closed__4 = _init_l___regBuiltin_Int_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1754____closed__4(); -lean_mark_persistent(l___regBuiltin_Int_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1754____closed__4); -l___regBuiltin_Int_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1754____closed__5 = _init_l___regBuiltin_Int_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1754____closed__5(); -lean_mark_persistent(l___regBuiltin_Int_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1754____closed__5); -l___regBuiltin_Int_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1754____closed__6 = _init_l___regBuiltin_Int_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1754____closed__6(); -lean_mark_persistent(l___regBuiltin_Int_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1754____closed__6); -l___regBuiltin_Int_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1754____closed__7 = _init_l___regBuiltin_Int_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1754____closed__7(); -lean_mark_persistent(l___regBuiltin_Int_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1754____closed__7); -l___regBuiltin_Int_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1754____closed__8 = _init_l___regBuiltin_Int_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1754____closed__8(); -lean_mark_persistent(l___regBuiltin_Int_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1754____closed__8); -l___regBuiltin_Int_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1754____closed__9 = _init_l___regBuiltin_Int_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1754____closed__9(); -lean_mark_persistent(l___regBuiltin_Int_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1754____closed__9); -if (builtin) {res = l___regBuiltin_Int_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1754_(lean_io_mk_world()); +l___regBuiltin_Int_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1444____closed__1 = _init_l___regBuiltin_Int_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1444____closed__1(); +lean_mark_persistent(l___regBuiltin_Int_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1444____closed__1); +l___regBuiltin_Int_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1444____closed__2 = _init_l___regBuiltin_Int_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1444____closed__2(); +lean_mark_persistent(l___regBuiltin_Int_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1444____closed__2); +l___regBuiltin_Int_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1444____closed__3 = _init_l___regBuiltin_Int_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1444____closed__3(); +lean_mark_persistent(l___regBuiltin_Int_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1444____closed__3); +l___regBuiltin_Int_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1444____closed__4 = _init_l___regBuiltin_Int_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1444____closed__4(); +lean_mark_persistent(l___regBuiltin_Int_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1444____closed__4); +l___regBuiltin_Int_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1444____closed__5 = _init_l___regBuiltin_Int_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1444____closed__5(); +lean_mark_persistent(l___regBuiltin_Int_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1444____closed__5); +l___regBuiltin_Int_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1444____closed__6 = _init_l___regBuiltin_Int_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1444____closed__6(); +lean_mark_persistent(l___regBuiltin_Int_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1444____closed__6); +l___regBuiltin_Int_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1444____closed__7 = _init_l___regBuiltin_Int_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1444____closed__7(); +lean_mark_persistent(l___regBuiltin_Int_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1444____closed__7); +l___regBuiltin_Int_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1444____closed__8 = _init_l___regBuiltin_Int_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1444____closed__8(); +lean_mark_persistent(l___regBuiltin_Int_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1444____closed__8); +l___regBuiltin_Int_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1444____closed__9 = _init_l___regBuiltin_Int_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1444____closed__9(); +lean_mark_persistent(l___regBuiltin_Int_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1444____closed__9); +if (builtin) {res = l___regBuiltin_Int_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1444_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Int_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1756_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_Int_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1446_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Int_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1758_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_Int_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1448_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); }l_Int_reduceAbs___closed__1 = _init_l_Int_reduceAbs___closed__1(); lean_mark_persistent(l_Int_reduceAbs___closed__1); l_Int_reduceAbs___closed__2 = _init_l_Int_reduceAbs___closed__2(); lean_mark_persistent(l_Int_reduceAbs___closed__2); -l___regBuiltin_Int_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1873____closed__1 = _init_l___regBuiltin_Int_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1873____closed__1(); -lean_mark_persistent(l___regBuiltin_Int_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1873____closed__1); -l___regBuiltin_Int_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1873____closed__2 = _init_l___regBuiltin_Int_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1873____closed__2(); -lean_mark_persistent(l___regBuiltin_Int_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1873____closed__2); -l___regBuiltin_Int_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1873____closed__3 = _init_l___regBuiltin_Int_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1873____closed__3(); -lean_mark_persistent(l___regBuiltin_Int_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1873____closed__3); -l___regBuiltin_Int_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1873____closed__4 = _init_l___regBuiltin_Int_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1873____closed__4(); -lean_mark_persistent(l___regBuiltin_Int_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1873____closed__4); -l___regBuiltin_Int_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1873____closed__5 = _init_l___regBuiltin_Int_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1873____closed__5(); -lean_mark_persistent(l___regBuiltin_Int_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1873____closed__5); -l___regBuiltin_Int_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1873____closed__6 = _init_l___regBuiltin_Int_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1873____closed__6(); -lean_mark_persistent(l___regBuiltin_Int_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1873____closed__6); -l___regBuiltin_Int_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1873____closed__7 = _init_l___regBuiltin_Int_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1873____closed__7(); -lean_mark_persistent(l___regBuiltin_Int_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1873____closed__7); -if (builtin) {res = l___regBuiltin_Int_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1873_(lean_io_mk_world()); +l___regBuiltin_Int_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1563____closed__1 = _init_l___regBuiltin_Int_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1563____closed__1(); +lean_mark_persistent(l___regBuiltin_Int_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1563____closed__1); +l___regBuiltin_Int_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1563____closed__2 = _init_l___regBuiltin_Int_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1563____closed__2(); +lean_mark_persistent(l___regBuiltin_Int_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1563____closed__2); +l___regBuiltin_Int_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1563____closed__3 = _init_l___regBuiltin_Int_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1563____closed__3(); +lean_mark_persistent(l___regBuiltin_Int_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1563____closed__3); +l___regBuiltin_Int_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1563____closed__4 = _init_l___regBuiltin_Int_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1563____closed__4(); +lean_mark_persistent(l___regBuiltin_Int_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1563____closed__4); +l___regBuiltin_Int_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1563____closed__5 = _init_l___regBuiltin_Int_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1563____closed__5(); +lean_mark_persistent(l___regBuiltin_Int_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1563____closed__5); +l___regBuiltin_Int_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1563____closed__6 = _init_l___regBuiltin_Int_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1563____closed__6(); +lean_mark_persistent(l___regBuiltin_Int_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1563____closed__6); +l___regBuiltin_Int_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1563____closed__7 = _init_l___regBuiltin_Int_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1563____closed__7(); +lean_mark_persistent(l___regBuiltin_Int_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1563____closed__7); +if (builtin) {res = l___regBuiltin_Int_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1563_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Int_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1875_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_Int_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1565_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Int_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1877_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_Int_reduceAbs_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1567_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); }l_Int_reduceToNat___closed__1 = _init_l_Int_reduceToNat___closed__1(); lean_mark_persistent(l_Int_reduceToNat___closed__1); l_Int_reduceToNat___closed__2 = _init_l_Int_reduceToNat___closed__2(); lean_mark_persistent(l_Int_reduceToNat___closed__2); -l___regBuiltin_Int_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1892____closed__1 = _init_l___regBuiltin_Int_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1892____closed__1(); -lean_mark_persistent(l___regBuiltin_Int_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1892____closed__1); -l___regBuiltin_Int_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1892____closed__2 = _init_l___regBuiltin_Int_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1892____closed__2(); -lean_mark_persistent(l___regBuiltin_Int_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1892____closed__2); -l___regBuiltin_Int_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1892____closed__3 = _init_l___regBuiltin_Int_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1892____closed__3(); -lean_mark_persistent(l___regBuiltin_Int_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1892____closed__3); -l___regBuiltin_Int_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1892____closed__4 = _init_l___regBuiltin_Int_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1892____closed__4(); -lean_mark_persistent(l___regBuiltin_Int_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1892____closed__4); -l___regBuiltin_Int_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1892____closed__5 = _init_l___regBuiltin_Int_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1892____closed__5(); -lean_mark_persistent(l___regBuiltin_Int_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1892____closed__5); -l___regBuiltin_Int_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1892____closed__6 = _init_l___regBuiltin_Int_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1892____closed__6(); -lean_mark_persistent(l___regBuiltin_Int_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1892____closed__6); -if (builtin) {res = l___regBuiltin_Int_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1892_(lean_io_mk_world()); +l___regBuiltin_Int_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1582____closed__1 = _init_l___regBuiltin_Int_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1582____closed__1(); +lean_mark_persistent(l___regBuiltin_Int_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1582____closed__1); +l___regBuiltin_Int_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1582____closed__2 = _init_l___regBuiltin_Int_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1582____closed__2(); +lean_mark_persistent(l___regBuiltin_Int_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1582____closed__2); +l___regBuiltin_Int_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1582____closed__3 = _init_l___regBuiltin_Int_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1582____closed__3(); +lean_mark_persistent(l___regBuiltin_Int_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1582____closed__3); +l___regBuiltin_Int_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1582____closed__4 = _init_l___regBuiltin_Int_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1582____closed__4(); +lean_mark_persistent(l___regBuiltin_Int_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1582____closed__4); +l___regBuiltin_Int_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1582____closed__5 = _init_l___regBuiltin_Int_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1582____closed__5(); +lean_mark_persistent(l___regBuiltin_Int_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1582____closed__5); +l___regBuiltin_Int_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1582____closed__6 = _init_l___regBuiltin_Int_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1582____closed__6(); +lean_mark_persistent(l___regBuiltin_Int_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1582____closed__6); +if (builtin) {res = l___regBuiltin_Int_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1582_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Int_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1894_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_Int_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1584_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Int_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1896_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_Int_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Int___hyg_1586_(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)); diff --git a/stage0/stdlib/Lean/Meta/Tactic/Simp/BuiltinSimprocs/Nat.c b/stage0/stdlib/Lean/Meta/Tactic/Simp/BuiltinSimprocs/Nat.c index fb04e10e41..92bd25bba0 100644 --- a/stage0/stdlib/Lean/Meta/Tactic/Simp/BuiltinSimprocs/Nat.c +++ b/stage0/stdlib/Lean/Meta/Tactic/Simp/BuiltinSimprocs/Nat.c @@ -1,6 +1,6 @@ // Lean compiler output // Module: Lean.Meta.Tactic.Simp.BuiltinSimprocs.Nat -// Imports: Init.Simproc Lean.Meta.Offset Lean.Meta.Tactic.Simp.Simproc Lean.Meta.Tactic.Simp.BuiltinSimprocs.Util +// Imports: Init.Simproc Lean.Meta.LitValues Lean.Meta.Offset Lean.Meta.Tactic.Simp.Simproc Lean.Meta.Tactic.Simp.BuiltinSimprocs.Util #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -15,483 +15,376 @@ extern "C" { #endif lean_object* lean_nat_gcd(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Nat_reduceMod(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___regBuiltin_Nat_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_637____closed__5; lean_object* l_Lean_Expr_const___override(lean_object*, lean_object*); -static lean_object* l___regBuiltin_Nat_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_800____closed__11; +LEAN_EXPORT lean_object* l___regBuiltin_Nat_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_641_(lean_object*); +static lean_object* l___regBuiltin_Nat_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1023____closed__2; static lean_object* l_Nat_reducePow___closed__3; -LEAN_EXPORT lean_object* l___regBuiltin_Nat_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_840_(lean_object*); +static lean_object* l___regBuiltin_Nat_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_982____closed__1; +static lean_object* l___regBuiltin_Nat_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_982____closed__3; +LEAN_EXPORT lean_object* l___regBuiltin_Nat_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1023_(lean_object*); +static lean_object* l___regBuiltin_Nat_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_757____closed__1; LEAN_EXPORT lean_object* l_Nat_reduceGE___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_Lean_mkNatLit(lean_object*); -static lean_object* l___regBuiltin_Nat_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1187____closed__7; +static lean_object* l___regBuiltin_Nat_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_637____closed__4; +static lean_object* l___regBuiltin_Nat_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1144____closed__9; lean_object* lean_mk_empty_array_with_capacity(lean_object*); -static lean_object* l___regBuiltin_Nat_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_680____closed__6; -static lean_object* l___regBuiltin_Nat_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1106____closed__9; -static lean_object* l___regBuiltin_Nat_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1187____closed__8; +LEAN_EXPORT lean_object* l___regBuiltin_Nat_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1104_(lean_object*); static lean_object* l_Nat_reduceSub___closed__2; -static lean_object* l___regBuiltin_Nat_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_760____closed__2; -static lean_object* l___regBuiltin_Nat_reduceSucc_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_600____closed__3; -static lean_object* l___regBuiltin_Nat_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1187____closed__5; +static lean_object* l___regBuiltin_Nat_reduceSucc_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_557____closed__4; LEAN_EXPORT lean_object* l_Nat_reduceSucc(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___regBuiltin_Nat_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_840____closed__3; -static lean_object* l___regBuiltin_Nat_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_902____closed__7; -static lean_object* l___regBuiltin_Nat_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_760____closed__6; -static lean_object* l___regBuiltin_Nat_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_680____closed__8; +lean_object* l_Lean_Meta_getNatValue_x3f(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___regBuiltin_Nat_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_797____closed__6; LEAN_EXPORT lean_object* l_Nat_reduceBNe___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_Nat_reduceSub___closed__1; -LEAN_EXPORT lean_object* l___regBuiltin_Nat_reduceGcd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_863_(lean_object*); +static lean_object* l___regBuiltin_Nat_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_859____closed__4; +static lean_object* l___regBuiltin_Nat_reduceSucc_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_557____closed__7; +LEAN_EXPORT lean_object* l___regBuiltin_Nat_reduceSucc_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_559_(lean_object*); static lean_object* l_Nat_reduceDiv___closed__3; +static lean_object* l___regBuiltin_Nat_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_797____closed__8; +static lean_object* l___regBuiltin_Nat_reduceSucc_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_557____closed__6; +static lean_object* l___regBuiltin_Nat_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_859____closed__3; LEAN_EXPORT lean_object* l_Nat_reduceLT___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_Nat_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1106____closed__5; -LEAN_EXPORT lean_object* l___regBuiltin_Nat_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_722_(lean_object*); +static lean_object* l___regBuiltin_Nat_reduceSucc_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_559____closed__1; +LEAN_EXPORT lean_object* l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_601_(lean_object*); +static lean_object* l___regBuiltin_Nat_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_717____closed__7; +static lean_object* l___regBuiltin_Nat_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_677____closed__8; uint8_t l_Lean_Expr_isAppOfArity(lean_object*, lean_object*, lean_object*); -static lean_object* l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_640____closed__7; -static lean_object* l___regBuiltin_Nat_reduceGcd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_861____closed__3; -LEAN_EXPORT lean_object* l___regBuiltin_Nat_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1068_(lean_object*); +static lean_object* l___regBuiltin_Nat_reduceSucc_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_561____closed__1; +static lean_object* l___regBuiltin_Nat_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1104____closed__1; +static lean_object* l___regBuiltin_Nat_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1023____closed__3; static lean_object* l_Nat_reduceBoolPred___lambda__1___closed__9; static lean_object* l_Nat_reduceMod___closed__2; LEAN_EXPORT lean_object* l_Nat_reduceEq___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_Nat_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1066____closed__7; -static lean_object* l___regBuiltin_Nat_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_720____closed__3; LEAN_EXPORT lean_object* l_Nat_reduceUnary(lean_object*, lean_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_push(lean_object*, lean_object*); +static lean_object* l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_597____closed__10; static lean_object* l_Nat_reduceDiv___closed__2; -LEAN_EXPORT lean_object* l___regBuiltin_Nat_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1147_(lean_object*); -static lean_object* l___regBuiltin_Nat_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_943____closed__4; -static lean_object* l___regBuiltin_Nat_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_760____closed__11; +static lean_object* l___regBuiltin_Nat_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_900____closed__5; +LEAN_EXPORT lean_object* l___regBuiltin_Nat_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_863_(lean_object*); LEAN_EXPORT lean_object* l_Nat_reduceBoolPred(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___regBuiltin_Nat_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1106____closed__2; -static lean_object* l___regBuiltin_Nat_reduceSucc_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_600____closed__6; +LEAN_EXPORT lean_object* l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_597_(lean_object*); +static lean_object* l___regBuiltin_Nat_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1023____closed__1; static lean_object* l_Nat_reduceBoolPred___lambda__1___closed__1; -static lean_object* l___regBuiltin_Nat_reduceSucc_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_602____closed__1; static lean_object* l_Nat_reduceMul___closed__2; -static lean_object* l___regBuiltin_Nat_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1066____closed__6; -static lean_object* l___regBuiltin_Nat_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1187____closed__6; -static lean_object* l___regBuiltin_Nat_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_943____closed__2; -static lean_object* l___regBuiltin_Nat_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_720____closed__5; +static lean_object* l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_597____closed__6; +static lean_object* l___regBuiltin_Nat_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1218____closed__3; static lean_object* l_Nat_reduceDiv___closed__1; -static lean_object* l___regBuiltin_Nat_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_680____closed__11; +static lean_object* l___regBuiltin_Nat_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1063____closed__3; +static lean_object* l___regBuiltin_Nat_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1218____closed__1; +static lean_object* l___regBuiltin_Nat_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1144____closed__6; static lean_object* l_Nat_reduceBoolPred___lambda__1___closed__3; -LEAN_EXPORT lean_object* l___regBuiltin_Nat_reduceSucc_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_604_(lean_object*); -static lean_object* l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_640____closed__10; +static lean_object* l___regBuiltin_Nat_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_797____closed__2; +LEAN_EXPORT lean_object* l___regBuiltin_Nat_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1067_(lean_object*); +static lean_object* l___regBuiltin_Nat_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1104____closed__5; +static lean_object* l___regBuiltin_Nat_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_717____closed__8; +static lean_object* l___regBuiltin_Nat_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_717____closed__6; lean_object* l_Lean_Meta_Simp_evalPropStep(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___regBuiltin_Nat_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_677____closed__6; +static lean_object* l___regBuiltin_Nat_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_797____closed__7; LEAN_EXPORT lean_object* l_Nat_reduceEq(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___regBuiltin_Nat_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_943____closed__8; -static lean_object* l___regBuiltin_Nat_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_902____closed__3; -static lean_object* l___regBuiltin_Nat_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1261____closed__1; -lean_object* l_Lean_Meta_evalNat(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___regBuiltin_Nat_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_717____closed__10; +static lean_object* l___regBuiltin_Nat_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1144____closed__8; LEAN_EXPORT lean_object* l_Nat_reduceDiv___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_Nat_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_800____closed__4; -LEAN_EXPORT lean_object* l___regBuiltin_Nat_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1027_(lean_object*); -static lean_object* l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_640____closed__12; -static lean_object* l___regBuiltin_Nat_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1147____closed__5; -LEAN_EXPORT lean_object* l___regBuiltin_Nat_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1106_(lean_object*); -LEAN_EXPORT lean_object* l___regBuiltin_Nat_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_986_(lean_object*); -static lean_object* l___regBuiltin_Nat_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_902____closed__9; -static lean_object* l___regBuiltin_Nat_reduceGcd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_861____closed__6; -LEAN_EXPORT lean_object* l___regBuiltin_Nat_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_945_(lean_object*); +static lean_object* l___regBuiltin_Nat_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_717____closed__3; +static lean_object* l___regBuiltin_Nat_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1063____closed__5; +static lean_object* l___regBuiltin_Nat_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_859____closed__7; +static lean_object* l___regBuiltin_Nat_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_757____closed__7; +static lean_object* l___regBuiltin_Nat_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_900____closed__3; LEAN_EXPORT lean_object* l_Nat_reduceNe(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Nat_reduceAdd___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* l_Lean_Expr_appArg_x21(lean_object*); static lean_object* l_Nat_isValue___closed__3; -static lean_object* l___regBuiltin_Nat_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_720____closed__1; +static lean_object* l___regBuiltin_Nat_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_797____closed__9; static lean_object* l_Nat_isValue___closed__1; -static lean_object* l___regBuiltin_Nat_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1066____closed__1; -static lean_object* l___regBuiltin_Nat_reduceSucc_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_600____closed__4; -LEAN_EXPORT lean_object* l___regBuiltin_Nat_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_984_(lean_object*); -static lean_object* l___regBuiltin_Nat_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_840____closed__4; +static lean_object* l___regBuiltin_Nat_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_859____closed__2; +static lean_object* l___regBuiltin_Nat_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1063____closed__6; LEAN_EXPORT lean_object* l_Nat_reduceSucc___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_Nat_reduceSucc_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_602_(lean_object*); -static lean_object* l___regBuiltin_Nat_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_680____closed__5; -static lean_object* l___regBuiltin_Nat_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_800____closed__6; +static lean_object* l___regBuiltin_Nat_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_677____closed__4; +LEAN_EXPORT lean_object* l___regBuiltin_Nat_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_945_(lean_object*); +static lean_object* l___regBuiltin_Nat_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1063____closed__2; +static lean_object* l___regBuiltin_Nat_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_637____closed__11; static lean_object* l_Nat_reduceBoolPred___lambda__1___closed__5; -static lean_object* l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_640____closed__9; -static lean_object* l___regBuiltin_Nat_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_760____closed__5; +static lean_object* l___regBuiltin_Nat_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_757____closed__9; +static lean_object* l___regBuiltin_Nat_reduceGcd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_818____closed__6; +static lean_object* l___regBuiltin_Nat_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_637____closed__9; static lean_object* l_Nat_reduceNe___closed__1; -static lean_object* l___regBuiltin_Nat_reduceSucc_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_600____closed__7; +static lean_object* l___regBuiltin_Nat_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_941____closed__2; LEAN_EXPORT lean_object* l_Nat_reduceUnary___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_Nat_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1147____closed__8; static lean_object* l_Nat_reduceBoolPred___lambda__1___closed__11; -static lean_object* l___regBuiltin_Nat_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_680____closed__3; static lean_object* l_Nat_reduceGE___closed__2; -LEAN_EXPORT lean_object* l___regBuiltin_Nat_reduceGcd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_865_(lean_object*); static lean_object* l_Nat_reduceGcd___closed__1; -static lean_object* l___regBuiltin_Nat_reduceSucc_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_600____closed__1; LEAN_EXPORT lean_object* l_Nat_reduceBNe___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_instDecidableNot___rarg(uint8_t); static lean_object* l_Nat_reduceBoolPred___lambda__1___closed__2; +static lean_object* l___regBuiltin_Nat_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_797____closed__10; extern lean_object* l_Lean_Meta_Simp_builtinSimprocsRef; -LEAN_EXPORT lean_object* l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_644_(lean_object*); -LEAN_EXPORT lean_object* l___regBuiltin_Nat_reduceSucc_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_600_(lean_object*); +static lean_object* l___regBuiltin_Nat_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_900____closed__9; +static lean_object* l___regBuiltin_Nat_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_757____closed__2; LEAN_EXPORT lean_object* l_Nat_reduceAdd(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___regBuiltin_Nat_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1104____closed__8; LEAN_EXPORT lean_object* l_Nat_reduceBin___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*); uint8_t lean_nat_dec_eq(lean_object*, lean_object*); +static lean_object* l___regBuiltin_Nat_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_637____closed__8; static lean_object* l_Nat_reduceLE___closed__1; +LEAN_EXPORT lean_object* l___regBuiltin_Nat_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_757_(lean_object*); static lean_object* l_Nat_reduceSub___closed__3; LEAN_EXPORT lean_object* l_Nat_reduceLE___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_Nat_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_943_(lean_object*); -static lean_object* l___regBuiltin_Nat_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_760____closed__9; -LEAN_EXPORT lean_object* l___regBuiltin_Nat_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_947_(lean_object*); +static lean_object* l___regBuiltin_Nat_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1063____closed__9; +static lean_object* l___regBuiltin_Nat_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_717____closed__1; +static lean_object* l___regBuiltin_Nat_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_859____closed__9; +LEAN_EXPORT lean_object* l___regBuiltin_Nat_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_679_(lean_object*); lean_object* lean_nat_div(lean_object*, lean_object*); -static lean_object* l___regBuiltin_Nat_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_760____closed__4; -static lean_object* l___regBuiltin_Nat_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1261____closed__8; -static lean_object* l___regBuiltin_Nat_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1147____closed__4; -static lean_object* l___regBuiltin_Nat_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_902____closed__4; -static lean_object* l___regBuiltin_Nat_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_760____closed__3; +LEAN_EXPORT lean_object* l___regBuiltin_Nat_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_984_(lean_object*); +static lean_object* l___regBuiltin_Nat_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_797____closed__3; +static lean_object* l___regBuiltin_Nat_reduceGcd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_818____closed__8; +static lean_object* l___regBuiltin_Nat_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_941____closed__1; +static lean_object* l___regBuiltin_Nat_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_900____closed__8; LEAN_EXPORT lean_object* l_Nat_isValue___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_Nat_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1106____closed__8; LEAN_EXPORT lean_object* l_Nat_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_Nat_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1261____closed__5; -static lean_object* l___regBuiltin_Nat_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_800____closed__9; static lean_object* l_Nat_reduceNe___closed__2; +LEAN_EXPORT lean_object* l___regBuiltin_Nat_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1106_(lean_object*); LEAN_EXPORT lean_object* l_Nat_reduceSucc___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___regBuiltin_Nat_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_844_(lean_object*); LEAN_EXPORT lean_object* l_Nat_fromExpr_x3f___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___regBuiltin_Nat_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_902____closed__8; -static lean_object* l___regBuiltin_Nat_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_902____closed__1; -LEAN_EXPORT lean_object* l___regBuiltin_Nat_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1191_(lean_object*); +static lean_object* l___regBuiltin_Nat_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_859____closed__1; +LEAN_EXPORT lean_object* l___regBuiltin_Nat_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_986_(lean_object*); LEAN_EXPORT lean_object* l_Nat_reduceEq___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_Nat_reduceGT___closed__3; -LEAN_EXPORT lean_object* l___regBuiltin_Nat_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_800_(lean_object*); -LEAN_EXPORT lean_object* l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_642_(lean_object*); -LEAN_EXPORT lean_object* l___regBuiltin_Nat_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1261_(lean_object*); -LEAN_EXPORT lean_object* l___regBuiltin_Nat_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_804_(lean_object*); +static lean_object* l___regBuiltin_Nat_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1063____closed__7; +static lean_object* l___regBuiltin_Nat_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1218____closed__4; LEAN_EXPORT lean_object* l_Nat_reduceMod___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_Nat_reduceSucc_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_600____closed__5; -static lean_object* l___regBuiltin_Nat_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1106____closed__3; LEAN_EXPORT lean_object* l_Nat_reduceLE(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_597____closed__1; +static lean_object* l___regBuiltin_Nat_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1104____closed__4; LEAN_EXPORT lean_object* l_Nat_reduceMul___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_Nat_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_943____closed__7; -static lean_object* l___regBuiltin_Nat_reduceSucc_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_604____closed__1; LEAN_EXPORT lean_object* l_Nat_reduceDiv___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_Nat_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_682_(lean_object*); -LEAN_EXPORT lean_object* l___regBuiltin_Nat_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_802_(lean_object*); +static lean_object* l___regBuiltin_Nat_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_677____closed__3; +static lean_object* l___regBuiltin_Nat_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_797____closed__11; LEAN_EXPORT lean_object* l_Nat_reducePow___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_Nat_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_797____closed__4; LEAN_EXPORT lean_object* l_Nat_reduceLT(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Nat_reduceGT___closed__1; -static lean_object* l___regBuiltin_Nat_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_720____closed__6; -LEAN_EXPORT lean_object* l___regBuiltin_Nat_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_720_(lean_object*); -static lean_object* l___regBuiltin_Nat_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_840____closed__5; -static lean_object* l___regBuiltin_Nat_reduceGcd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_861____closed__1; +static lean_object* l___regBuiltin_Nat_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_717____closed__2; +static lean_object* l___regBuiltin_Nat_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1023____closed__7; +static lean_object* l___regBuiltin_Nat_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_677____closed__1; +LEAN_EXPORT lean_object* l___regBuiltin_Nat_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_941_(lean_object*); +static lean_object* l___regBuiltin_Nat_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_677____closed__11; +static lean_object* l___regBuiltin_Nat_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_677____closed__10; +LEAN_EXPORT lean_object* l___regBuiltin_Nat_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1025_(lean_object*); +LEAN_EXPORT lean_object* l___regBuiltin_Nat_reduceGcd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_818_(lean_object*); static lean_object* l_Nat_reduceBoolPred___lambda__1___closed__7; -static lean_object* l___regBuiltin_Nat_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1106____closed__6; LEAN_EXPORT lean_object* l_Nat_reduceGcd___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___regBuiltin_Nat_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1110_(lean_object*); +static lean_object* l___regBuiltin_Nat_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_757____closed__6; LEAN_EXPORT lean_object* l_Nat_reduceUnary___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___regBuiltin_Nat_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_800____closed__2; LEAN_EXPORT lean_object* l_Nat_isValue___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___regBuiltin_Nat_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_904_(lean_object*); -static lean_object* l___regBuiltin_Nat_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1147____closed__9; -static lean_object* l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_640____closed__8; static lean_object* l_Nat_reduceLT___closed__3; -static lean_object* l___regBuiltin_Nat_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_840____closed__8; +static lean_object* l___regBuiltin_Nat_reduceSucc_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_557____closed__2; static lean_object* l_Nat_reduceLT___closed__1; +LEAN_EXPORT lean_object* l___regBuiltin_Nat_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_943_(lean_object*); +LEAN_EXPORT lean_object* l___regBuiltin_Nat_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_681_(lean_object*); LEAN_EXPORT lean_object* l_Nat_reduceGT(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___regBuiltin_Nat_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_680____closed__10; -static lean_object* l___regBuiltin_Nat_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_720____closed__4; -static lean_object* l___regBuiltin_Nat_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1106____closed__10; +LEAN_EXPORT lean_object* l___regBuiltin_Nat_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_761_(lean_object*); +LEAN_EXPORT lean_object* l___regBuiltin_Nat_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_677_(lean_object*); +static lean_object* l___regBuiltin_Nat_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_717____closed__5; +static lean_object* l___regBuiltin_Nat_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_677____closed__2; +static lean_object* l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_597____closed__2; +static lean_object* l___regBuiltin_Nat_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_637____closed__2; +static lean_object* l___regBuiltin_Nat_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_717____closed__9; LEAN_EXPORT lean_object* l_Nat_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___regBuiltin_Nat_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_760____closed__1; LEAN_EXPORT lean_object* l_Nat_reduceBoolPred___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_Nat_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1218____closed__8; +static lean_object* l___regBuiltin_Nat_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_797____closed__1; +LEAN_EXPORT lean_object* l___regBuiltin_Nat_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1065_(lean_object*); +static lean_object* l___regBuiltin_Nat_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1218____closed__6; static lean_object* l_Nat_reduceBoolPred___lambda__1___closed__4; +static lean_object* l___regBuiltin_Nat_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_637____closed__6; static lean_object* l_Nat_reduceLE___closed__3; LEAN_EXPORT lean_object* l_Nat_reduceNe___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_Nat_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1066_(lean_object*); -LEAN_EXPORT lean_object* l___regBuiltin_Nat_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_906_(lean_object*); +static lean_object* l___regBuiltin_Nat_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_637____closed__10; lean_object* l_Lean_Name_str___override(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___regBuiltin_Nat_reduceGcd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_820_(lean_object*); static lean_object* l_Nat_reduceMod___closed__1; -static lean_object* l___regBuiltin_Nat_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_760____closed__7; -static lean_object* l___regBuiltin_Nat_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1025____closed__2; -static lean_object* l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_640____closed__5; +static lean_object* l___regBuiltin_Nat_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1023____closed__5; +static lean_object* l___regBuiltin_Nat_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1104____closed__6; LEAN_EXPORT lean_object* l_Nat_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___regBuiltin_Nat_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1029_(lean_object*); +static lean_object* l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_597____closed__9; +static lean_object* l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_597____closed__11; +static lean_object* l___regBuiltin_Nat_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1144____closed__5; LEAN_EXPORT lean_object* l_Nat_reduceMul___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_Nat_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_840____closed__6; -static lean_object* l___regBuiltin_Nat_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_800____closed__1; -static lean_object* l___regBuiltin_Nat_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_840____closed__1; -static lean_object* l___regBuiltin_Nat_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_720____closed__7; +LEAN_EXPORT lean_object* l___regBuiltin_Nat_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1218_(lean_object*); +static lean_object* l___regBuiltin_Nat_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_757____closed__3; +static lean_object* l___regBuiltin_Nat_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_900____closed__6; +LEAN_EXPORT lean_object* l___regBuiltin_Nat_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_721_(lean_object*); lean_object* l_Lean_Expr_appFn_x21(lean_object*); -LEAN_EXPORT lean_object* l___regBuiltin_Nat_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_684_(lean_object*); -LEAN_EXPORT lean_object* l___regBuiltin_Nat_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_760_(lean_object*); +static lean_object* l___regBuiltin_Nat_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_859____closed__5; +LEAN_EXPORT lean_object* l___regBuiltin_Nat_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_982_(lean_object*); +static lean_object* l___regBuiltin_Nat_reduceGcd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_818____closed__4; LEAN_EXPORT lean_object* l_Nat_reduceBinPred___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_Nat_reduceAdd___closed__2; -static lean_object* l___regBuiltin_Nat_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_840____closed__2; -static lean_object* l___regBuiltin_Nat_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_680____closed__2; static lean_object* l_Nat_reduceGE___closed__3; static lean_object* l_Nat_reduceBEq___closed__3; -static lean_object* l___regBuiltin_Nat_reduceGcd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_861____closed__5; +static lean_object* l___regBuiltin_Nat_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_859____closed__6; +static lean_object* l___regBuiltin_Nat_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_859____closed__8; static lean_object* l_Nat_reduceSucc___closed__2; LEAN_EXPORT lean_object* l_Nat_reduceNe___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_Nat_reduceSucc_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_600____closed__2; +static lean_object* l___regBuiltin_Nat_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_900____closed__7; +LEAN_EXPORT lean_object* l___regBuiltin_Nat_reduceSucc_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_561_(lean_object*); static lean_object* l_Nat_reduceUnary___lambda__1___closed__1; LEAN_EXPORT lean_object* l_Nat_reduceBEq(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_640____closed__13; +static lean_object* l___regBuiltin_Nat_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_757____closed__5; LEAN_EXPORT lean_object* l_Nat_reduceBEq___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_Nat_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1187____closed__2; +static lean_object* l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_597____closed__4; static lean_object* l_Nat_reduceEq___closed__2; -static lean_object* l___regBuiltin_Nat_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_984____closed__1; -static lean_object* l___regBuiltin_Nat_reduceGcd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_861____closed__8; LEAN_EXPORT lean_object* l_Nat_reduceBinPred___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_Nat_reducePow___closed__1; -static lean_object* l___regBuiltin_Nat_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_984____closed__3; -static lean_object* l___regBuiltin_Nat_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_943____closed__5; -static lean_object* l___regBuiltin_Nat_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1106____closed__7; LEAN_EXPORT lean_object* l_Nat_reduceBoolPred___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___regBuiltin_Nat_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_840____closed__7; -static lean_object* l___regBuiltin_Nat_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1025____closed__1; -LEAN_EXPORT lean_object* l___regBuiltin_Nat_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1025_(lean_object*); +static lean_object* l___regBuiltin_Nat_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1218____closed__2; +LEAN_EXPORT lean_object* l___regBuiltin_Nat_reduceGcd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_822_(lean_object*); LEAN_EXPORT lean_object* l_Nat_reduceMod___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_Nat_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1106____closed__4; -static lean_object* l___regBuiltin_Nat_reduceGcd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_861____closed__2; -static lean_object* l___regBuiltin_Nat_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_720____closed__9; -LEAN_EXPORT lean_object* l___regBuiltin_Nat_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1187_(lean_object*); +static lean_object* l___regBuiltin_Nat_reduceGcd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_818____closed__3; +LEAN_EXPORT lean_object* l___regBuiltin_Nat_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1144_(lean_object*); static lean_object* l_Nat_reduceMul___closed__1; -static lean_object* l___regBuiltin_Nat_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_800____closed__7; -static lean_object* l___regBuiltin_Nat_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_943____closed__3; -static lean_object* l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_640____closed__14; -static lean_object* l___regBuiltin_Nat_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1147____closed__2; -static lean_object* l___regBuiltin_Nat_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1187____closed__4; -static lean_object* l___regBuiltin_Nat_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_680____closed__1; -static lean_object* l___regBuiltin_Nat_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1106____closed__1; -LEAN_EXPORT lean_object* l___regBuiltin_Nat_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1189_(lean_object*); +static lean_object* l___regBuiltin_Nat_reduceSucc_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_557____closed__5; +LEAN_EXPORT lean_object* l___regBuiltin_Nat_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_637_(lean_object*); LEAN_EXPORT lean_object* l_Nat_reduceSucc___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_Nat_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1023____closed__6; LEAN_EXPORT lean_object* l_Nat_reducePow(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___regBuiltin_Nat_reduceGcd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_861_(lean_object*); -LEAN_EXPORT lean_object* l___regBuiltin_Nat_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1070_(lean_object*); -static lean_object* l___regBuiltin_Nat_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1066____closed__5; +static lean_object* l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_597____closed__13; +static lean_object* l___regBuiltin_Nat_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_900____closed__2; +static lean_object* l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_597____closed__12; +static lean_object* l___regBuiltin_Nat_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_637____closed__3; +LEAN_EXPORT lean_object* l___regBuiltin_Nat_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_801_(lean_object*); +static lean_object* l___regBuiltin_Nat_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1144____closed__3; LEAN_EXPORT lean_object* l_Nat_reduceGE___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_Nat_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_800____closed__3; -static lean_object* l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_640____closed__3; -static lean_object* l___regBuiltin_Nat_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_943____closed__6; +static lean_object* l___regBuiltin_Nat_reduceSucc_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_557____closed__1; +LEAN_EXPORT lean_object* l___regBuiltin_Nat_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_900_(lean_object*); +static lean_object* l___regBuiltin_Nat_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_757____closed__10; +static lean_object* l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_597____closed__7; +static lean_object* l___regBuiltin_Nat_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1144____closed__1; lean_object* lean_nat_pow(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___regBuiltin_Nat_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_902_(lean_object*); LEAN_EXPORT lean_object* l_Nat_reduceLE___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_Nat_reducePow___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_Lean_Meta_Simp_registerBuiltinSimproc(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Nat_reduceGcd(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Nat_reduceGE(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Nat_reduceGT___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_Nat_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1063_(lean_object*); uint8_t lean_nat_dec_eq(lean_object*, lean_object*); -static lean_object* l___regBuiltin_Nat_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1066____closed__9; +static lean_object* l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_597____closed__3; +static lean_object* l___regBuiltin_Nat_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_859____closed__10; LEAN_EXPORT lean_object* l_Nat_reduceBEq___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___regBuiltin_Nat_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1263_(lean_object*); -static lean_object* l___regBuiltin_Nat_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_984____closed__2; uint8_t lean_nat_dec_lt(lean_object*, lean_object*); -static lean_object* l___regBuiltin_Nat_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1261____closed__2; lean_object* lean_nat_mod(lean_object*, lean_object*); -static lean_object* l___regBuiltin_Nat_reduceGcd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_861____closed__7; +static lean_object* l___regBuiltin_Nat_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1063____closed__10; +static lean_object* l___regBuiltin_Nat_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1104____closed__2; +static lean_object* l___regBuiltin_Nat_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1063____closed__4; static lean_object* l_Nat_reduceBEq___closed__1; +static lean_object* l___regBuiltin_Nat_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_757____closed__8; lean_object* l_Lean_Name_mkStr2(lean_object*, lean_object*); static lean_object* l_Nat_reduceBoolPred___lambda__1___closed__10; -static lean_object* l___regBuiltin_Nat_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_840____closed__10; +LEAN_EXPORT lean_object* l___regBuiltin_Nat_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_904_(lean_object*); +static lean_object* l___regBuiltin_Nat_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1104____closed__3; lean_object* l_Lean_Meta_Simp_addSimprocBuiltinAttrCore(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*); -static lean_object* l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_640____closed__11; static lean_object* l_Nat_reduceGcd___closed__2; static lean_object* l_Nat_reduceGT___closed__2; -static lean_object* l___regBuiltin_Nat_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1066____closed__2; -static lean_object* l___regBuiltin_Nat_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1025____closed__3; -static lean_object* l___regBuiltin_Nat_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1261____closed__7; -static lean_object* l___regBuiltin_Nat_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_760____closed__10; +static lean_object* l___regBuiltin_Nat_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_797____closed__5; +static lean_object* l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_597____closed__8; +static lean_object* l___regBuiltin_Nat_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_637____closed__7; +static lean_object* l___regBuiltin_Nat_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_677____closed__9; +LEAN_EXPORT lean_object* l___regBuiltin_Nat_reduceSucc_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_557_(lean_object*); static lean_object* l_Nat_reduceMod___closed__3; +static lean_object* l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_597____closed__14; LEAN_EXPORT lean_object* l_Nat_reduceDiv(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___regBuiltin_Nat_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1147____closed__3; -static lean_object* l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_640____closed__1; -static lean_object* l___regBuiltin_Nat_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1261____closed__4; static lean_object* l_Nat_reduceBoolPred___lambda__1___closed__6; -static lean_object* l___regBuiltin_Nat_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_800____closed__5; -static lean_object* l___regBuiltin_Nat_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1066____closed__8; +static lean_object* l___regBuiltin_Nat_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_982____closed__2; +static lean_object* l___regBuiltin_Nat_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1144____closed__2; +static lean_object* l___regBuiltin_Nat_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1144____closed__4; static lean_object* l_Nat_reduceBoolPred___lambda__1___closed__8; LEAN_EXPORT lean_object* l_Nat_reduceBNe(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_597____closed__5; lean_object* lean_nat_sub(lean_object*, lean_object*); -static lean_object* l___regBuiltin_Nat_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_902____closed__6; static lean_object* l_Nat_isValue___closed__2; -static lean_object* l___regBuiltin_Nat_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_902____closed__5; static lean_object* l_Nat_reduceSucc___closed__3; lean_object* lean_nat_mul(lean_object*, lean_object*); -static lean_object* l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_640____closed__6; -static lean_object* l___regBuiltin_Nat_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1187____closed__3; -static lean_object* l___regBuiltin_Nat_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_680____closed__4; +static lean_object* l___regBuiltin_Nat_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_941____closed__3; +LEAN_EXPORT lean_object* l___regBuiltin_Nat_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_639_(lean_object*); +static lean_object* l___regBuiltin_Nat_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1063____closed__11; +LEAN_EXPORT lean_object* l___regBuiltin_Nat_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_859_(lean_object*); static lean_object* l_Nat_reduceBEq___closed__2; LEAN_EXPORT lean_object* l_Nat_reduceSub(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___regBuiltin_Nat_reduceGcd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_861____closed__4; -static lean_object* l___regBuiltin_Nat_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1147____closed__6; -static lean_object* l___regBuiltin_Nat_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_720____closed__8; +static lean_object* l___regBuiltin_Nat_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_900____closed__1; LEAN_EXPORT lean_object* l_Nat_reduceBinPred(lean_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_Nat_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1146_(lean_object*); +static lean_object* l___regBuiltin_Nat_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_757____closed__4; LEAN_EXPORT lean_object* l_Nat_reduceBin___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_Nat_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_800____closed__8; -static lean_object* l___regBuiltin_Nat_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1066____closed__3; static lean_object* l_Nat_reduceMul___closed__3; -LEAN_EXPORT lean_object* l___regBuiltin_Nat_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1151_(lean_object*); +static lean_object* l___regBuiltin_Nat_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1023____closed__8; +static lean_object* l___regBuiltin_Nat_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1023____closed__9; LEAN_EXPORT lean_object* l_Nat_isValue(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Nat_reduceGE___closed__1; -LEAN_EXPORT lean_object* l___regBuiltin_Nat_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_762_(lean_object*); -static lean_object* l___regBuiltin_Nat_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_680____closed__9; -static lean_object* l___regBuiltin_Nat_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_760____closed__8; -static lean_object* l___regBuiltin_Nat_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_720____closed__11; +LEAN_EXPORT lean_object* l___regBuiltin_Nat_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_902_(lean_object*); +static lean_object* l___regBuiltin_Nat_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_757____closed__11; static lean_object* l_Nat_reduceEq___closed__1; -static lean_object* l___regBuiltin_Nat_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1187____closed__1; -static lean_object* l___regBuiltin_Nat_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1187____closed__9; -LEAN_EXPORT lean_object* l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_640_(lean_object*); -static lean_object* l___regBuiltin_Nat_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_720____closed__2; -static lean_object* l___regBuiltin_Nat_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_943____closed__9; +static lean_object* l___regBuiltin_Nat_reduceGcd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_818____closed__5; +static lean_object* l___regBuiltin_Nat_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1063____closed__8; +static lean_object* l___regBuiltin_Nat_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1104____closed__7; +static lean_object* l___regBuiltin_Nat_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_637____closed__1; +LEAN_EXPORT lean_object* l___regBuiltin_Nat_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1027_(lean_object*); static lean_object* l_Nat_reduceLE___closed__2; +static lean_object* l___regBuiltin_Nat_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1218____closed__7; +LEAN_EXPORT lean_object* l___regBuiltin_Nat_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1108_(lean_object*); static lean_object* l_Nat_reduceBNe___closed__2; LEAN_EXPORT lean_object* l_Nat_reduceGcd___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_Nat_reduceAdd___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_Nat_fromExpr_x3f(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Nat_reducePow___closed__2; -static lean_object* l___regBuiltin_Nat_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_902____closed__10; -static lean_object* l___regBuiltin_Nat_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_800____closed__10; -static lean_object* l___regBuiltin_Nat_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1147____closed__7; +static lean_object* l___regBuiltin_Nat_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_717____closed__11; +LEAN_EXPORT lean_object* l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_599_(lean_object*); static lean_object* l_Nat_reduceBNe___closed__1; -static lean_object* l___regBuiltin_Nat_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1147____closed__1; -LEAN_EXPORT lean_object* l___regBuiltin_Nat_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_680_(lean_object*); +static lean_object* l___regBuiltin_Nat_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1218____closed__5; +static lean_object* l___regBuiltin_Nat_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_677____closed__5; +static lean_object* l___regBuiltin_Nat_reduceGcd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_818____closed__2; +LEAN_EXPORT lean_object* l___regBuiltin_Nat_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_799_(lean_object*); LEAN_EXPORT lean_object* l_Nat_reduceSub___lambda__1(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_Meta_Simp_builtinSEvalprocsRef; uint8_t lean_nat_dec_le(lean_object*, lean_object*); -static lean_object* l___regBuiltin_Nat_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_902____closed__2; LEAN_EXPORT lean_object* l_Nat_reduceBin(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_Nat_reduceAdd___closed__3; -static lean_object* l___regBuiltin_Nat_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1261____closed__3; -LEAN_EXPORT lean_object* l___regBuiltin_Nat_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_764_(lean_object*); -LEAN_EXPORT lean_object* l___regBuiltin_Nat_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1149_(lean_object*); +static lean_object* l___regBuiltin_Nat_reduceGcd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_818____closed__1; static lean_object* l_Nat_reduceLT___closed__2; -static lean_object* l___regBuiltin_Nat_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_720____closed__10; -static lean_object* l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_640____closed__2; -static lean_object* l___regBuiltin_Nat_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1066____closed__4; +LEAN_EXPORT lean_object* l___regBuiltin_Nat_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_719_(lean_object*); +LEAN_EXPORT lean_object* l___regBuiltin_Nat_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_861_(lean_object*); lean_object* lean_nat_add(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___regBuiltin_Nat_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1108_(lean_object*); -LEAN_EXPORT lean_object* l___regBuiltin_Nat_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_724_(lean_object*); -static lean_object* l___regBuiltin_Nat_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_840____closed__9; +LEAN_EXPORT lean_object* l___regBuiltin_Nat_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1148_(lean_object*); +static lean_object* l___regBuiltin_Nat_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1144____closed__7; +static lean_object* l___regBuiltin_Nat_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_900____closed__4; +LEAN_EXPORT lean_object* l___regBuiltin_Nat_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1220_(lean_object*); +static lean_object* l___regBuiltin_Nat_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_677____closed__7; +static lean_object* l___regBuiltin_Nat_reduceGcd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_818____closed__7; LEAN_EXPORT lean_object* l_Nat_reduceMul(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Nat_reduceAdd___closed__1; -static lean_object* l___regBuiltin_Nat_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1106____closed__11; -static lean_object* l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_640____closed__4; -static lean_object* l___regBuiltin_Nat_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_943____closed__1; -static lean_object* l___regBuiltin_Nat_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1261____closed__6; +static lean_object* l___regBuiltin_Nat_reduceSucc_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_557____closed__3; +static lean_object* l___regBuiltin_Nat_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1023____closed__4; +LEAN_EXPORT lean_object* l___regBuiltin_Nat_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_797_(lean_object*); static lean_object* l_Nat_reduceSucc___closed__1; -static lean_object* l___regBuiltin_Nat_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_680____closed__7; -LEAN_EXPORT lean_object* l___regBuiltin_Nat_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_988_(lean_object*); -static lean_object* l___regBuiltin_Nat_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_840____closed__11; -LEAN_EXPORT lean_object* l___regBuiltin_Nat_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_842_(lean_object*); +static lean_object* l___regBuiltin_Nat_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1063____closed__1; +static lean_object* l___regBuiltin_Nat_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1104____closed__9; +LEAN_EXPORT lean_object* l___regBuiltin_Nat_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_717_(lean_object*); +LEAN_EXPORT lean_object* l___regBuiltin_Nat_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_759_(lean_object*); +static lean_object* l___regBuiltin_Nat_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_717____closed__4; LEAN_EXPORT lean_object* l_Nat_fromExpr_x3f(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_Lean_Meta_evalNat(x_1, x_5, x_6, x_7, x_8, x_9); -if (lean_obj_tag(x_10) == 0) -{ -lean_object* x_11; -x_11 = lean_ctor_get(x_10, 0); -lean_inc(x_11); -if (lean_obj_tag(x_11) == 0) -{ -uint8_t x_12; -x_12 = !lean_is_exclusive(x_10); -if (x_12 == 0) -{ -lean_object* x_13; lean_object* x_14; -x_13 = lean_ctor_get(x_10, 0); -lean_dec(x_13); -x_14 = lean_box(0); -lean_ctor_set(x_10, 0, x_14); +x_10 = l_Lean_Meta_getNatValue_x3f(x_1, x_5, x_6, x_7, x_8, x_9); return x_10; } -else -{ -lean_object* x_15; lean_object* x_16; lean_object* x_17; -x_15 = lean_ctor_get(x_10, 1); -lean_inc(x_15); -lean_dec(x_10); -x_16 = lean_box(0); -x_17 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_17, 0, x_16); -lean_ctor_set(x_17, 1, x_15); -return x_17; -} -} -else -{ -uint8_t x_18; -x_18 = !lean_is_exclusive(x_10); -if (x_18 == 0) -{ -lean_object* x_19; uint8_t x_20; -x_19 = lean_ctor_get(x_10, 0); -lean_dec(x_19); -x_20 = !lean_is_exclusive(x_11); -if (x_20 == 0) -{ -return x_10; -} -else -{ -lean_object* x_21; lean_object* x_22; -x_21 = lean_ctor_get(x_11, 0); -lean_inc(x_21); -lean_dec(x_11); -x_22 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_22, 0, x_21); -lean_ctor_set(x_10, 0, x_22); -return x_10; -} -} -else -{ -lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; -x_23 = lean_ctor_get(x_10, 1); -lean_inc(x_23); -lean_dec(x_10); -x_24 = lean_ctor_get(x_11, 0); -lean_inc(x_24); -if (lean_is_exclusive(x_11)) { - lean_ctor_release(x_11, 0); - x_25 = x_11; -} else { - lean_dec_ref(x_11); - x_25 = lean_box(0); -} -if (lean_is_scalar(x_25)) { - x_26 = lean_alloc_ctor(1, 1, 0); -} else { - x_26 = x_25; -} -lean_ctor_set(x_26, 0, x_24); -x_27 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_27, 0, x_26); -lean_ctor_set(x_27, 1, x_23); -return x_27; -} -} -} -else -{ -uint8_t x_28; -x_28 = !lean_is_exclusive(x_10); -if (x_28 == 0) -{ -return x_10; -} -else -{ -lean_object* x_29; lean_object* x_30; lean_object* x_31; -x_29 = lean_ctor_get(x_10, 0); -x_30 = lean_ctor_get(x_10, 1); -lean_inc(x_30); -lean_inc(x_29); -lean_dec(x_10); -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_EXPORT lean_object* l_Nat_fromExpr_x3f___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_Nat_fromExpr_x3f(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); -lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); @@ -513,7 +406,7 @@ _start: { lean_object* x_12; lean_object* x_13; x_12 = l_Lean_Expr_appArg_x21(x_1); -x_13 = l_Nat_fromExpr_x3f(x_12, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +x_13 = l_Lean_Meta_getNatValue_x3f(x_12, x_7, x_8, x_9, x_10, x_11); if (lean_obj_tag(x_13) == 0) { lean_object* x_14; @@ -655,7 +548,6 @@ else lean_object* x_16; lean_object* x_17; x_16 = lean_box(0); x_17 = l_Nat_reduceUnary___lambda__1(x_4, x_3, x_16, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); -lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); @@ -669,7 +561,6 @@ _start: { lean_object* x_12; x_12 = l_Nat_reduceUnary___lambda__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); -lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); @@ -689,7 +580,8 @@ lean_dec(x_12); lean_inc(x_10); lean_inc(x_9); lean_inc(x_8); -x_14 = l_Nat_fromExpr_x3f(x_13, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +lean_inc(x_7); +x_14 = l_Lean_Meta_getNatValue_x3f(x_13, x_7, x_8, x_9, x_10, x_11); if (lean_obj_tag(x_14) == 0) { lean_object* x_15; @@ -701,6 +593,7 @@ uint8_t x_16; lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); +lean_dec(x_7); lean_dec(x_2); lean_dec(x_1); x_16 = !lean_is_exclusive(x_14); @@ -737,7 +630,7 @@ lean_inc(x_23); lean_dec(x_15); x_24 = l_Lean_Expr_appArg_x21(x_1); lean_dec(x_1); -x_25 = l_Nat_fromExpr_x3f(x_24, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_22); +x_25 = l_Lean_Meta_getNatValue_x3f(x_24, x_7, x_8, x_9, x_10, x_22); if (lean_obj_tag(x_25) == 0) { lean_object* x_26; @@ -858,6 +751,7 @@ uint8_t x_57; lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); +lean_dec(x_7); lean_dec(x_2); lean_dec(x_1); x_57 = !lean_is_exclusive(x_14); @@ -910,7 +804,6 @@ else lean_object* x_16; lean_object* x_17; x_16 = lean_box(0); x_17 = l_Nat_reduceBin___lambda__1(x_4, x_3, x_16, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); -lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); @@ -923,7 +816,6 @@ _start: { lean_object* x_12; x_12 = l_Nat_reduceBin___lambda__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); -lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); @@ -942,7 +834,8 @@ lean_dec(x_12); lean_inc(x_10); lean_inc(x_9); lean_inc(x_8); -x_14 = l_Nat_fromExpr_x3f(x_13, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +lean_inc(x_7); +x_14 = l_Lean_Meta_getNatValue_x3f(x_13, x_7, x_8, x_9, x_10, x_11); if (lean_obj_tag(x_14) == 0) { lean_object* x_15; @@ -993,7 +886,8 @@ x_24 = l_Lean_Expr_appArg_x21(x_1); lean_inc(x_10); lean_inc(x_9); lean_inc(x_8); -x_25 = l_Nat_fromExpr_x3f(x_24, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_22); +lean_inc(x_7); +x_25 = l_Lean_Meta_getNatValue_x3f(x_24, x_7, x_8, x_9, x_10, x_22); if (lean_obj_tag(x_25) == 0) { lean_object* x_26; @@ -1284,7 +1178,8 @@ lean_dec(x_12); lean_inc(x_10); lean_inc(x_9); lean_inc(x_8); -x_14 = l_Nat_fromExpr_x3f(x_13, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +lean_inc(x_7); +x_14 = l_Lean_Meta_getNatValue_x3f(x_13, x_7, x_8, x_9, x_10, x_11); if (lean_obj_tag(x_14) == 0) { lean_object* x_15; @@ -1296,6 +1191,7 @@ uint8_t x_16; lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); +lean_dec(x_7); lean_dec(x_2); lean_dec(x_1); x_16 = !lean_is_exclusive(x_14); @@ -1332,7 +1228,7 @@ lean_inc(x_23); lean_dec(x_15); x_24 = l_Lean_Expr_appArg_x21(x_1); lean_dec(x_1); -x_25 = l_Nat_fromExpr_x3f(x_24, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_22); +x_25 = l_Lean_Meta_getNatValue_x3f(x_24, x_7, x_8, x_9, x_10, x_22); if (lean_obj_tag(x_25) == 0) { lean_object* x_26; @@ -1461,6 +1357,7 @@ uint8_t x_52; lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); +lean_dec(x_7); lean_dec(x_2); lean_dec(x_1); x_52 = !lean_is_exclusive(x_14); @@ -1513,7 +1410,6 @@ else lean_object* x_16; lean_object* x_17; x_16 = lean_box(0); x_17 = l_Nat_reduceBoolPred___lambda__1(x_4, x_3, x_16, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); -lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); @@ -1526,7 +1422,6 @@ _start: { lean_object* x_12; x_12 = l_Nat_reduceBoolPred___lambda__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); -lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); @@ -1539,7 +1434,7 @@ _start: { lean_object* x_11; lean_object* x_12; x_11 = l_Lean_Expr_appArg_x21(x_1); -x_12 = l_Nat_fromExpr_x3f(x_11, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_12 = l_Lean_Meta_getNatValue_x3f(x_11, x_6, x_7, x_8, x_9, x_10); if (lean_obj_tag(x_12) == 0) { lean_object* x_13; @@ -1708,7 +1603,6 @@ else lean_object* x_15; lean_object* x_16; x_15 = lean_box(0); x_16 = l_Nat_reduceSucc___lambda__1(x_1, x_15, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); -lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); @@ -1721,7 +1615,6 @@ _start: { lean_object* x_11; x_11 = l_Nat_reduceSucc___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_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); @@ -1739,7 +1632,7 @@ lean_dec(x_1); return x_10; } } -static lean_object* _init_l___regBuiltin_Nat_reduceSucc_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_600____closed__1() { +static lean_object* _init_l___regBuiltin_Nat_reduceSucc_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_557____closed__1() { _start: { lean_object* x_1; @@ -1747,17 +1640,17 @@ x_1 = lean_mk_string_from_bytes("reduceSucc", 10); return x_1; } } -static lean_object* _init_l___regBuiltin_Nat_reduceSucc_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_600____closed__2() { +static lean_object* _init_l___regBuiltin_Nat_reduceSucc_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_557____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Nat_reduceSucc___closed__1; -x_2 = l___regBuiltin_Nat_reduceSucc_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_600____closed__1; +x_2 = l___regBuiltin_Nat_reduceSucc_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_557____closed__1; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Nat_reduceSucc_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_600____closed__3() { +static lean_object* _init_l___regBuiltin_Nat_reduceSucc_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_557____closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -1769,7 +1662,7 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Nat_reduceSucc_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_600____closed__4() { +static lean_object* _init_l___regBuiltin_Nat_reduceSucc_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_557____closed__4() { _start: { lean_object* x_1; lean_object* x_2; @@ -1778,27 +1671,27 @@ x_2 = lean_mk_empty_array_with_capacity(x_1); return x_2; } } -static lean_object* _init_l___regBuiltin_Nat_reduceSucc_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_600____closed__5() { +static lean_object* _init_l___regBuiltin_Nat_reduceSucc_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_557____closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Nat_reduceSucc_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_600____closed__4; -x_2 = l___regBuiltin_Nat_reduceSucc_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_600____closed__3; +x_1 = l___regBuiltin_Nat_reduceSucc_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_557____closed__4; +x_2 = l___regBuiltin_Nat_reduceSucc_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_557____closed__3; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Nat_reduceSucc_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_600____closed__6() { +static lean_object* _init_l___regBuiltin_Nat_reduceSucc_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_557____closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Nat_reduceSucc_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_600____closed__5; +x_1 = l___regBuiltin_Nat_reduceSucc_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_557____closed__5; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Nat_reduceSucc_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_600____closed__7() { +static lean_object* _init_l___regBuiltin_Nat_reduceSucc_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_557____closed__7() { _start: { lean_object* x_1; @@ -1806,18 +1699,18 @@ x_1 = lean_alloc_closure((void*)(l_Nat_reduceSucc___boxed), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_Nat_reduceSucc_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_600_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Nat_reduceSucc_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_557_(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_Nat_reduceSucc_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_600____closed__2; -x_3 = l___regBuiltin_Nat_reduceSucc_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_600____closed__6; -x_4 = l___regBuiltin_Nat_reduceSucc_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_600____closed__7; +x_2 = l___regBuiltin_Nat_reduceSucc_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_557____closed__2; +x_3 = l___regBuiltin_Nat_reduceSucc_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_557____closed__6; +x_4 = l___regBuiltin_Nat_reduceSucc_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_557____closed__7; x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); return x_5; } } -static lean_object* _init_l___regBuiltin_Nat_reduceSucc_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_602____closed__1() { +static lean_object* _init_l___regBuiltin_Nat_reduceSucc_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_559____closed__1() { _start: { lean_object* x_1; @@ -1825,19 +1718,19 @@ x_1 = l_Lean_Meta_Simp_builtinSimprocsRef; return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_Nat_reduceSucc_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_602_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Nat_reduceSucc_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_559_(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_Nat_reduceSucc_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_602____closed__1; -x_3 = l___regBuiltin_Nat_reduceSucc_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_600____closed__2; +x_2 = l___regBuiltin_Nat_reduceSucc_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_559____closed__1; +x_3 = l___regBuiltin_Nat_reduceSucc_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_557____closed__2; x_4 = 1; -x_5 = l___regBuiltin_Nat_reduceSucc_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_600____closed__7; +x_5 = l___regBuiltin_Nat_reduceSucc_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_557____closed__7; 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___regBuiltin_Nat_reduceSucc_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_604____closed__1() { +static lean_object* _init_l___regBuiltin_Nat_reduceSucc_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_561____closed__1() { _start: { lean_object* x_1; @@ -1845,14 +1738,14 @@ x_1 = l_Lean_Meta_Simp_builtinSEvalprocsRef; return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_Nat_reduceSucc_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_604_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Nat_reduceSucc_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_561_(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_Nat_reduceSucc_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_604____closed__1; -x_3 = l___regBuiltin_Nat_reduceSucc_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_600____closed__2; +x_2 = l___regBuiltin_Nat_reduceSucc_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_561____closed__1; +x_3 = l___regBuiltin_Nat_reduceSucc_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_557____closed__2; x_4 = 1; -x_5 = l___regBuiltin_Nat_reduceSucc_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_600____closed__7; +x_5 = l___regBuiltin_Nat_reduceSucc_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_557____closed__7; x_6 = l_Lean_Meta_Simp_addSimprocBuiltinAttrCore(x_2, x_3, x_4, x_5, x_1); return x_6; } @@ -1868,7 +1761,8 @@ lean_dec(x_11); lean_inc(x_9); lean_inc(x_8); lean_inc(x_7); -x_13 = l_Nat_fromExpr_x3f(x_12, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_inc(x_6); +x_13 = l_Lean_Meta_getNatValue_x3f(x_12, x_6, x_7, x_8, x_9, x_10); if (lean_obj_tag(x_13) == 0) { lean_object* x_14; @@ -1880,6 +1774,7 @@ uint8_t x_15; lean_dec(x_9); lean_dec(x_8); lean_dec(x_7); +lean_dec(x_6); lean_dec(x_1); x_15 = !lean_is_exclusive(x_13); if (x_15 == 0) @@ -1915,7 +1810,7 @@ lean_inc(x_22); lean_dec(x_14); x_23 = l_Lean_Expr_appArg_x21(x_1); lean_dec(x_1); -x_24 = l_Nat_fromExpr_x3f(x_23, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_21); +x_24 = l_Lean_Meta_getNatValue_x3f(x_23, x_6, x_7, x_8, x_9, x_21); if (lean_obj_tag(x_24) == 0) { lean_object* x_25; @@ -2038,6 +1933,7 @@ uint8_t x_56; lean_dec(x_9); lean_dec(x_8); lean_dec(x_7); +lean_dec(x_6); lean_dec(x_1); x_56 = !lean_is_exclusive(x_13); if (x_56 == 0) @@ -2115,7 +2011,6 @@ else lean_object* x_15; lean_object* x_16; x_15 = lean_box(0); x_16 = l_Nat_reduceAdd___lambda__1(x_1, x_15, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); -lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); @@ -2128,7 +2023,6 @@ _start: { lean_object* x_11; x_11 = l_Nat_reduceAdd___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_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); @@ -2136,7 +2030,7 @@ lean_dec(x_2); return x_11; } } -static lean_object* _init_l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_640____closed__1() { +static lean_object* _init_l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_597____closed__1() { _start: { lean_object* x_1; @@ -2144,17 +2038,17 @@ x_1 = lean_mk_string_from_bytes("reduceAdd", 9); return x_1; } } -static lean_object* _init_l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_640____closed__2() { +static lean_object* _init_l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_597____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Nat_reduceSucc___closed__1; -x_2 = l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_640____closed__1; +x_2 = l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_597____closed__1; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_640____closed__3() { +static lean_object* _init_l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_597____closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -2166,7 +2060,7 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_640____closed__4() { +static lean_object* _init_l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_597____closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -2176,11 +2070,11 @@ x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_640____closed__5() { +static lean_object* _init_l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_597____closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_640____closed__4; +x_1 = l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_597____closed__4; x_2 = lean_unsigned_to_nat(0u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -2188,7 +2082,7 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_640____closed__6() { +static lean_object* _init_l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_597____closed__6() { _start: { lean_object* x_1; lean_object* x_2; @@ -2197,77 +2091,77 @@ x_2 = lean_mk_empty_array_with_capacity(x_1); return x_2; } } -static lean_object* _init_l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_640____closed__7() { +static lean_object* _init_l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_597____closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_640____closed__6; -x_2 = l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_640____closed__3; +x_1 = l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_597____closed__6; +x_2 = l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_597____closed__3; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_640____closed__8() { +static lean_object* _init_l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_597____closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_640____closed__7; -x_2 = l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_640____closed__5; +x_1 = l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_597____closed__7; +x_2 = l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_597____closed__5; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_640____closed__9() { +static lean_object* _init_l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_597____closed__9() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_640____closed__8; -x_2 = l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_640____closed__5; +x_1 = l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_597____closed__8; +x_2 = l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_597____closed__5; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_640____closed__10() { +static lean_object* _init_l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_597____closed__10() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_640____closed__9; -x_2 = l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_640____closed__5; +x_1 = l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_597____closed__9; +x_2 = l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_597____closed__5; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_640____closed__11() { +static lean_object* _init_l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_597____closed__11() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_640____closed__10; +x_1 = l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_597____closed__10; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_640____closed__12() { +static lean_object* _init_l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_597____closed__12() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_640____closed__11; +x_1 = l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_597____closed__11; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_640____closed__13() { +static lean_object* _init_l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_597____closed__13() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_640____closed__12; +x_1 = l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_597____closed__12; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_640____closed__14() { +static lean_object* _init_l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_597____closed__14() { _start: { lean_object* x_1; @@ -2275,37 +2169,37 @@ x_1 = lean_alloc_closure((void*)(l_Nat_reduceAdd), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_640_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_597_(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_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_640____closed__2; -x_3 = l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_640____closed__13; -x_4 = l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_640____closed__14; +x_2 = l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_597____closed__2; +x_3 = l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_597____closed__13; +x_4 = l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_597____closed__14; x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); return x_5; } } -LEAN_EXPORT lean_object* l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_642_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_599_(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_Nat_reduceSucc_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_602____closed__1; -x_3 = l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_640____closed__2; +x_2 = l___regBuiltin_Nat_reduceSucc_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_559____closed__1; +x_3 = l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_597____closed__2; x_4 = 1; -x_5 = l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_640____closed__14; +x_5 = l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_597____closed__14; 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_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_644_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_601_(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_Nat_reduceSucc_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_604____closed__1; -x_3 = l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_640____closed__2; +x_2 = l___regBuiltin_Nat_reduceSucc_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_561____closed__1; +x_3 = l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_597____closed__2; x_4 = 1; -x_5 = l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_640____closed__14; +x_5 = l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_597____closed__14; x_6 = l_Lean_Meta_Simp_addSimprocBuiltinAttrCore(x_2, x_3, x_4, x_5, x_1); return x_6; } @@ -2321,7 +2215,8 @@ lean_dec(x_11); lean_inc(x_9); lean_inc(x_8); lean_inc(x_7); -x_13 = l_Nat_fromExpr_x3f(x_12, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_inc(x_6); +x_13 = l_Lean_Meta_getNatValue_x3f(x_12, x_6, x_7, x_8, x_9, x_10); if (lean_obj_tag(x_13) == 0) { lean_object* x_14; @@ -2333,6 +2228,7 @@ uint8_t x_15; lean_dec(x_9); lean_dec(x_8); lean_dec(x_7); +lean_dec(x_6); lean_dec(x_1); x_15 = !lean_is_exclusive(x_13); if (x_15 == 0) @@ -2368,7 +2264,7 @@ lean_inc(x_22); lean_dec(x_14); x_23 = l_Lean_Expr_appArg_x21(x_1); lean_dec(x_1); -x_24 = l_Nat_fromExpr_x3f(x_23, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_21); +x_24 = l_Lean_Meta_getNatValue_x3f(x_23, x_6, x_7, x_8, x_9, x_21); if (lean_obj_tag(x_24) == 0) { lean_object* x_25; @@ -2491,6 +2387,7 @@ uint8_t x_56; lean_dec(x_9); lean_dec(x_8); lean_dec(x_7); +lean_dec(x_6); lean_dec(x_1); x_56 = !lean_is_exclusive(x_13); if (x_56 == 0) @@ -2568,7 +2465,6 @@ else lean_object* x_15; lean_object* x_16; x_15 = lean_box(0); x_16 = l_Nat_reduceMul___lambda__1(x_1, x_15, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); -lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); @@ -2581,7 +2477,6 @@ _start: { lean_object* x_11; x_11 = l_Nat_reduceMul___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_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); @@ -2589,7 +2484,7 @@ lean_dec(x_2); return x_11; } } -static lean_object* _init_l___regBuiltin_Nat_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_680____closed__1() { +static lean_object* _init_l___regBuiltin_Nat_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_637____closed__1() { _start: { lean_object* x_1; @@ -2597,17 +2492,17 @@ x_1 = lean_mk_string_from_bytes("reduceMul", 9); return x_1; } } -static lean_object* _init_l___regBuiltin_Nat_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_680____closed__2() { +static lean_object* _init_l___regBuiltin_Nat_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_637____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Nat_reduceSucc___closed__1; -x_2 = l___regBuiltin_Nat_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_680____closed__1; +x_2 = l___regBuiltin_Nat_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_637____closed__1; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Nat_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_680____closed__3() { +static lean_object* _init_l___regBuiltin_Nat_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_637____closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -2619,77 +2514,77 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Nat_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_680____closed__4() { +static lean_object* _init_l___regBuiltin_Nat_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_637____closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_640____closed__6; -x_2 = l___regBuiltin_Nat_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_680____closed__3; +x_1 = l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_597____closed__6; +x_2 = l___regBuiltin_Nat_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_637____closed__3; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Nat_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_680____closed__5() { +static lean_object* _init_l___regBuiltin_Nat_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_637____closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Nat_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_680____closed__4; -x_2 = l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_640____closed__5; +x_1 = l___regBuiltin_Nat_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_637____closed__4; +x_2 = l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_597____closed__5; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Nat_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_680____closed__6() { +static lean_object* _init_l___regBuiltin_Nat_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_637____closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Nat_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_680____closed__5; -x_2 = l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_640____closed__5; +x_1 = l___regBuiltin_Nat_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_637____closed__5; +x_2 = l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_597____closed__5; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Nat_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_680____closed__7() { +static lean_object* _init_l___regBuiltin_Nat_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_637____closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Nat_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_680____closed__6; -x_2 = l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_640____closed__5; +x_1 = l___regBuiltin_Nat_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_637____closed__6; +x_2 = l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_597____closed__5; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Nat_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_680____closed__8() { +static lean_object* _init_l___regBuiltin_Nat_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_637____closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Nat_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_680____closed__7; +x_1 = l___regBuiltin_Nat_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_637____closed__7; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Nat_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_680____closed__9() { +static lean_object* _init_l___regBuiltin_Nat_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_637____closed__9() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Nat_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_680____closed__8; +x_1 = l___regBuiltin_Nat_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_637____closed__8; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Nat_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_680____closed__10() { +static lean_object* _init_l___regBuiltin_Nat_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_637____closed__10() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Nat_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_680____closed__9; +x_1 = l___regBuiltin_Nat_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_637____closed__9; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Nat_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_680____closed__11() { +static lean_object* _init_l___regBuiltin_Nat_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_637____closed__11() { _start: { lean_object* x_1; @@ -2697,37 +2592,37 @@ x_1 = lean_alloc_closure((void*)(l_Nat_reduceMul), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_Nat_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_680_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Nat_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_637_(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_Nat_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_680____closed__2; -x_3 = l___regBuiltin_Nat_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_680____closed__10; -x_4 = l___regBuiltin_Nat_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_680____closed__11; +x_2 = l___regBuiltin_Nat_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_637____closed__2; +x_3 = l___regBuiltin_Nat_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_637____closed__10; +x_4 = l___regBuiltin_Nat_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_637____closed__11; x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); return x_5; } } -LEAN_EXPORT lean_object* l___regBuiltin_Nat_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_682_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Nat_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_639_(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_Nat_reduceSucc_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_602____closed__1; -x_3 = l___regBuiltin_Nat_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_680____closed__2; +x_2 = l___regBuiltin_Nat_reduceSucc_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_559____closed__1; +x_3 = l___regBuiltin_Nat_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_637____closed__2; x_4 = 1; -x_5 = l___regBuiltin_Nat_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_680____closed__11; +x_5 = l___regBuiltin_Nat_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_637____closed__11; 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_Nat_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_684_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Nat_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_641_(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_Nat_reduceSucc_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_604____closed__1; -x_3 = l___regBuiltin_Nat_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_680____closed__2; +x_2 = l___regBuiltin_Nat_reduceSucc_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_561____closed__1; +x_3 = l___regBuiltin_Nat_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_637____closed__2; x_4 = 1; -x_5 = l___regBuiltin_Nat_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_680____closed__11; +x_5 = l___regBuiltin_Nat_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_637____closed__11; x_6 = l_Lean_Meta_Simp_addSimprocBuiltinAttrCore(x_2, x_3, x_4, x_5, x_1); return x_6; } @@ -2743,7 +2638,8 @@ lean_dec(x_11); lean_inc(x_9); lean_inc(x_8); lean_inc(x_7); -x_13 = l_Nat_fromExpr_x3f(x_12, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_inc(x_6); +x_13 = l_Lean_Meta_getNatValue_x3f(x_12, x_6, x_7, x_8, x_9, x_10); if (lean_obj_tag(x_13) == 0) { lean_object* x_14; @@ -2755,6 +2651,7 @@ uint8_t x_15; lean_dec(x_9); lean_dec(x_8); lean_dec(x_7); +lean_dec(x_6); lean_dec(x_1); x_15 = !lean_is_exclusive(x_13); if (x_15 == 0) @@ -2790,7 +2687,7 @@ lean_inc(x_22); lean_dec(x_14); x_23 = l_Lean_Expr_appArg_x21(x_1); lean_dec(x_1); -x_24 = l_Nat_fromExpr_x3f(x_23, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_21); +x_24 = l_Lean_Meta_getNatValue_x3f(x_23, x_6, x_7, x_8, x_9, x_21); if (lean_obj_tag(x_24) == 0) { lean_object* x_25; @@ -2913,6 +2810,7 @@ uint8_t x_56; lean_dec(x_9); lean_dec(x_8); lean_dec(x_7); +lean_dec(x_6); lean_dec(x_1); x_56 = !lean_is_exclusive(x_13); if (x_56 == 0) @@ -2990,7 +2888,6 @@ else lean_object* x_15; lean_object* x_16; x_15 = lean_box(0); x_16 = l_Nat_reduceSub___lambda__1(x_1, x_15, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); -lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); @@ -3003,7 +2900,6 @@ _start: { lean_object* x_11; x_11 = l_Nat_reduceSub___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_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); @@ -3011,7 +2907,7 @@ lean_dec(x_2); return x_11; } } -static lean_object* _init_l___regBuiltin_Nat_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_720____closed__1() { +static lean_object* _init_l___regBuiltin_Nat_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_677____closed__1() { _start: { lean_object* x_1; @@ -3019,17 +2915,17 @@ x_1 = lean_mk_string_from_bytes("reduceSub", 9); return x_1; } } -static lean_object* _init_l___regBuiltin_Nat_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_720____closed__2() { +static lean_object* _init_l___regBuiltin_Nat_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_677____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Nat_reduceSucc___closed__1; -x_2 = l___regBuiltin_Nat_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_720____closed__1; +x_2 = l___regBuiltin_Nat_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_677____closed__1; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Nat_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_720____closed__3() { +static lean_object* _init_l___regBuiltin_Nat_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_677____closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -3041,77 +2937,77 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Nat_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_720____closed__4() { +static lean_object* _init_l___regBuiltin_Nat_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_677____closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_640____closed__6; -x_2 = l___regBuiltin_Nat_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_720____closed__3; +x_1 = l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_597____closed__6; +x_2 = l___regBuiltin_Nat_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_677____closed__3; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Nat_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_720____closed__5() { +static lean_object* _init_l___regBuiltin_Nat_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_677____closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Nat_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_720____closed__4; -x_2 = l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_640____closed__5; +x_1 = l___regBuiltin_Nat_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_677____closed__4; +x_2 = l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_597____closed__5; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Nat_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_720____closed__6() { +static lean_object* _init_l___regBuiltin_Nat_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_677____closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Nat_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_720____closed__5; -x_2 = l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_640____closed__5; +x_1 = l___regBuiltin_Nat_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_677____closed__5; +x_2 = l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_597____closed__5; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Nat_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_720____closed__7() { +static lean_object* _init_l___regBuiltin_Nat_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_677____closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Nat_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_720____closed__6; -x_2 = l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_640____closed__5; +x_1 = l___regBuiltin_Nat_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_677____closed__6; +x_2 = l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_597____closed__5; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Nat_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_720____closed__8() { +static lean_object* _init_l___regBuiltin_Nat_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_677____closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Nat_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_720____closed__7; +x_1 = l___regBuiltin_Nat_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_677____closed__7; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Nat_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_720____closed__9() { +static lean_object* _init_l___regBuiltin_Nat_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_677____closed__9() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Nat_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_720____closed__8; +x_1 = l___regBuiltin_Nat_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_677____closed__8; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Nat_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_720____closed__10() { +static lean_object* _init_l___regBuiltin_Nat_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_677____closed__10() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Nat_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_720____closed__9; +x_1 = l___regBuiltin_Nat_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_677____closed__9; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Nat_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_720____closed__11() { +static lean_object* _init_l___regBuiltin_Nat_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_677____closed__11() { _start: { lean_object* x_1; @@ -3119,37 +3015,37 @@ x_1 = lean_alloc_closure((void*)(l_Nat_reduceSub), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_Nat_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_720_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Nat_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_677_(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_Nat_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_720____closed__2; -x_3 = l___regBuiltin_Nat_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_720____closed__10; -x_4 = l___regBuiltin_Nat_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_720____closed__11; +x_2 = l___regBuiltin_Nat_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_677____closed__2; +x_3 = l___regBuiltin_Nat_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_677____closed__10; +x_4 = l___regBuiltin_Nat_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_677____closed__11; x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); return x_5; } } -LEAN_EXPORT lean_object* l___regBuiltin_Nat_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_722_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Nat_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_679_(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_Nat_reduceSucc_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_602____closed__1; -x_3 = l___regBuiltin_Nat_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_720____closed__2; +x_2 = l___regBuiltin_Nat_reduceSucc_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_559____closed__1; +x_3 = l___regBuiltin_Nat_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_677____closed__2; x_4 = 1; -x_5 = l___regBuiltin_Nat_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_720____closed__11; +x_5 = l___regBuiltin_Nat_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_677____closed__11; 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_Nat_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_724_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Nat_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_681_(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_Nat_reduceSucc_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_604____closed__1; -x_3 = l___regBuiltin_Nat_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_720____closed__2; +x_2 = l___regBuiltin_Nat_reduceSucc_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_561____closed__1; +x_3 = l___regBuiltin_Nat_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_677____closed__2; x_4 = 1; -x_5 = l___regBuiltin_Nat_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_720____closed__11; +x_5 = l___regBuiltin_Nat_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_677____closed__11; x_6 = l_Lean_Meta_Simp_addSimprocBuiltinAttrCore(x_2, x_3, x_4, x_5, x_1); return x_6; } @@ -3165,7 +3061,8 @@ lean_dec(x_11); lean_inc(x_9); lean_inc(x_8); lean_inc(x_7); -x_13 = l_Nat_fromExpr_x3f(x_12, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_inc(x_6); +x_13 = l_Lean_Meta_getNatValue_x3f(x_12, x_6, x_7, x_8, x_9, x_10); if (lean_obj_tag(x_13) == 0) { lean_object* x_14; @@ -3177,6 +3074,7 @@ uint8_t x_15; lean_dec(x_9); lean_dec(x_8); lean_dec(x_7); +lean_dec(x_6); lean_dec(x_1); x_15 = !lean_is_exclusive(x_13); if (x_15 == 0) @@ -3212,7 +3110,7 @@ lean_inc(x_22); lean_dec(x_14); x_23 = l_Lean_Expr_appArg_x21(x_1); lean_dec(x_1); -x_24 = l_Nat_fromExpr_x3f(x_23, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_21); +x_24 = l_Lean_Meta_getNatValue_x3f(x_23, x_6, x_7, x_8, x_9, x_21); if (lean_obj_tag(x_24) == 0) { lean_object* x_25; @@ -3335,6 +3233,7 @@ uint8_t x_56; lean_dec(x_9); lean_dec(x_8); lean_dec(x_7); +lean_dec(x_6); lean_dec(x_1); x_56 = !lean_is_exclusive(x_13); if (x_56 == 0) @@ -3412,7 +3311,6 @@ else lean_object* x_15; lean_object* x_16; x_15 = lean_box(0); x_16 = l_Nat_reduceDiv___lambda__1(x_1, x_15, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); -lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); @@ -3425,7 +3323,6 @@ _start: { lean_object* x_11; x_11 = l_Nat_reduceDiv___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_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); @@ -3433,7 +3330,7 @@ lean_dec(x_2); return x_11; } } -static lean_object* _init_l___regBuiltin_Nat_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_760____closed__1() { +static lean_object* _init_l___regBuiltin_Nat_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_717____closed__1() { _start: { lean_object* x_1; @@ -3441,17 +3338,17 @@ x_1 = lean_mk_string_from_bytes("reduceDiv", 9); return x_1; } } -static lean_object* _init_l___regBuiltin_Nat_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_760____closed__2() { +static lean_object* _init_l___regBuiltin_Nat_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_717____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Nat_reduceSucc___closed__1; -x_2 = l___regBuiltin_Nat_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_760____closed__1; +x_2 = l___regBuiltin_Nat_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_717____closed__1; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Nat_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_760____closed__3() { +static lean_object* _init_l___regBuiltin_Nat_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_717____closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -3463,77 +3360,77 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Nat_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_760____closed__4() { +static lean_object* _init_l___regBuiltin_Nat_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_717____closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_640____closed__6; -x_2 = l___regBuiltin_Nat_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_760____closed__3; +x_1 = l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_597____closed__6; +x_2 = l___regBuiltin_Nat_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_717____closed__3; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Nat_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_760____closed__5() { +static lean_object* _init_l___regBuiltin_Nat_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_717____closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Nat_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_760____closed__4; -x_2 = l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_640____closed__5; +x_1 = l___regBuiltin_Nat_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_717____closed__4; +x_2 = l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_597____closed__5; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Nat_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_760____closed__6() { +static lean_object* _init_l___regBuiltin_Nat_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_717____closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Nat_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_760____closed__5; -x_2 = l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_640____closed__5; +x_1 = l___regBuiltin_Nat_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_717____closed__5; +x_2 = l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_597____closed__5; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Nat_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_760____closed__7() { +static lean_object* _init_l___regBuiltin_Nat_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_717____closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Nat_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_760____closed__6; -x_2 = l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_640____closed__5; +x_1 = l___regBuiltin_Nat_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_717____closed__6; +x_2 = l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_597____closed__5; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Nat_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_760____closed__8() { +static lean_object* _init_l___regBuiltin_Nat_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_717____closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Nat_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_760____closed__7; +x_1 = l___regBuiltin_Nat_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_717____closed__7; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Nat_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_760____closed__9() { +static lean_object* _init_l___regBuiltin_Nat_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_717____closed__9() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Nat_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_760____closed__8; +x_1 = l___regBuiltin_Nat_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_717____closed__8; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Nat_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_760____closed__10() { +static lean_object* _init_l___regBuiltin_Nat_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_717____closed__10() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Nat_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_760____closed__9; +x_1 = l___regBuiltin_Nat_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_717____closed__9; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Nat_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_760____closed__11() { +static lean_object* _init_l___regBuiltin_Nat_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_717____closed__11() { _start: { lean_object* x_1; @@ -3541,37 +3438,37 @@ x_1 = lean_alloc_closure((void*)(l_Nat_reduceDiv), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_Nat_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_760_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Nat_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_717_(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_Nat_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_760____closed__2; -x_3 = l___regBuiltin_Nat_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_760____closed__10; -x_4 = l___regBuiltin_Nat_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_760____closed__11; +x_2 = l___regBuiltin_Nat_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_717____closed__2; +x_3 = l___regBuiltin_Nat_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_717____closed__10; +x_4 = l___regBuiltin_Nat_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_717____closed__11; x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); return x_5; } } -LEAN_EXPORT lean_object* l___regBuiltin_Nat_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_762_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Nat_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_719_(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_Nat_reduceSucc_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_602____closed__1; -x_3 = l___regBuiltin_Nat_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_760____closed__2; +x_2 = l___regBuiltin_Nat_reduceSucc_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_559____closed__1; +x_3 = l___regBuiltin_Nat_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_717____closed__2; x_4 = 1; -x_5 = l___regBuiltin_Nat_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_760____closed__11; +x_5 = l___regBuiltin_Nat_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_717____closed__11; 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_Nat_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_764_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Nat_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_721_(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_Nat_reduceSucc_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_604____closed__1; -x_3 = l___regBuiltin_Nat_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_760____closed__2; +x_2 = l___regBuiltin_Nat_reduceSucc_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_561____closed__1; +x_3 = l___regBuiltin_Nat_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_717____closed__2; x_4 = 1; -x_5 = l___regBuiltin_Nat_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_760____closed__11; +x_5 = l___regBuiltin_Nat_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_717____closed__11; x_6 = l_Lean_Meta_Simp_addSimprocBuiltinAttrCore(x_2, x_3, x_4, x_5, x_1); return x_6; } @@ -3587,7 +3484,8 @@ lean_dec(x_11); lean_inc(x_9); lean_inc(x_8); lean_inc(x_7); -x_13 = l_Nat_fromExpr_x3f(x_12, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_inc(x_6); +x_13 = l_Lean_Meta_getNatValue_x3f(x_12, x_6, x_7, x_8, x_9, x_10); if (lean_obj_tag(x_13) == 0) { lean_object* x_14; @@ -3599,6 +3497,7 @@ uint8_t x_15; lean_dec(x_9); lean_dec(x_8); lean_dec(x_7); +lean_dec(x_6); lean_dec(x_1); x_15 = !lean_is_exclusive(x_13); if (x_15 == 0) @@ -3634,7 +3533,7 @@ lean_inc(x_22); lean_dec(x_14); x_23 = l_Lean_Expr_appArg_x21(x_1); lean_dec(x_1); -x_24 = l_Nat_fromExpr_x3f(x_23, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_21); +x_24 = l_Lean_Meta_getNatValue_x3f(x_23, x_6, x_7, x_8, x_9, x_21); if (lean_obj_tag(x_24) == 0) { lean_object* x_25; @@ -3757,6 +3656,7 @@ uint8_t x_56; lean_dec(x_9); lean_dec(x_8); lean_dec(x_7); +lean_dec(x_6); lean_dec(x_1); x_56 = !lean_is_exclusive(x_13); if (x_56 == 0) @@ -3834,7 +3734,6 @@ else lean_object* x_15; lean_object* x_16; x_15 = lean_box(0); x_16 = l_Nat_reduceMod___lambda__1(x_1, x_15, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); -lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); @@ -3847,7 +3746,6 @@ _start: { lean_object* x_11; x_11 = l_Nat_reduceMod___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_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); @@ -3855,7 +3753,7 @@ lean_dec(x_2); return x_11; } } -static lean_object* _init_l___regBuiltin_Nat_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_800____closed__1() { +static lean_object* _init_l___regBuiltin_Nat_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_757____closed__1() { _start: { lean_object* x_1; @@ -3863,17 +3761,17 @@ x_1 = lean_mk_string_from_bytes("reduceMod", 9); return x_1; } } -static lean_object* _init_l___regBuiltin_Nat_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_800____closed__2() { +static lean_object* _init_l___regBuiltin_Nat_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_757____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Nat_reduceSucc___closed__1; -x_2 = l___regBuiltin_Nat_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_800____closed__1; +x_2 = l___regBuiltin_Nat_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_757____closed__1; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Nat_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_800____closed__3() { +static lean_object* _init_l___regBuiltin_Nat_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_757____closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -3885,77 +3783,77 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Nat_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_800____closed__4() { +static lean_object* _init_l___regBuiltin_Nat_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_757____closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_640____closed__6; -x_2 = l___regBuiltin_Nat_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_800____closed__3; +x_1 = l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_597____closed__6; +x_2 = l___regBuiltin_Nat_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_757____closed__3; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Nat_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_800____closed__5() { +static lean_object* _init_l___regBuiltin_Nat_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_757____closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Nat_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_800____closed__4; -x_2 = l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_640____closed__5; +x_1 = l___regBuiltin_Nat_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_757____closed__4; +x_2 = l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_597____closed__5; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Nat_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_800____closed__6() { +static lean_object* _init_l___regBuiltin_Nat_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_757____closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Nat_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_800____closed__5; -x_2 = l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_640____closed__5; +x_1 = l___regBuiltin_Nat_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_757____closed__5; +x_2 = l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_597____closed__5; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Nat_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_800____closed__7() { +static lean_object* _init_l___regBuiltin_Nat_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_757____closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Nat_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_800____closed__6; -x_2 = l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_640____closed__5; +x_1 = l___regBuiltin_Nat_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_757____closed__6; +x_2 = l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_597____closed__5; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Nat_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_800____closed__8() { +static lean_object* _init_l___regBuiltin_Nat_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_757____closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Nat_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_800____closed__7; +x_1 = l___regBuiltin_Nat_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_757____closed__7; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Nat_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_800____closed__9() { +static lean_object* _init_l___regBuiltin_Nat_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_757____closed__9() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Nat_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_800____closed__8; +x_1 = l___regBuiltin_Nat_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_757____closed__8; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Nat_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_800____closed__10() { +static lean_object* _init_l___regBuiltin_Nat_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_757____closed__10() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Nat_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_800____closed__9; +x_1 = l___regBuiltin_Nat_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_757____closed__9; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Nat_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_800____closed__11() { +static lean_object* _init_l___regBuiltin_Nat_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_757____closed__11() { _start: { lean_object* x_1; @@ -3963,37 +3861,37 @@ x_1 = lean_alloc_closure((void*)(l_Nat_reduceMod), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_Nat_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_800_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Nat_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_757_(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_Nat_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_800____closed__2; -x_3 = l___regBuiltin_Nat_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_800____closed__10; -x_4 = l___regBuiltin_Nat_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_800____closed__11; +x_2 = l___regBuiltin_Nat_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_757____closed__2; +x_3 = l___regBuiltin_Nat_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_757____closed__10; +x_4 = l___regBuiltin_Nat_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_757____closed__11; x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); return x_5; } } -LEAN_EXPORT lean_object* l___regBuiltin_Nat_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_802_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Nat_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_759_(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_Nat_reduceSucc_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_602____closed__1; -x_3 = l___regBuiltin_Nat_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_800____closed__2; +x_2 = l___regBuiltin_Nat_reduceSucc_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_559____closed__1; +x_3 = l___regBuiltin_Nat_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_757____closed__2; x_4 = 1; -x_5 = l___regBuiltin_Nat_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_800____closed__11; +x_5 = l___regBuiltin_Nat_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_757____closed__11; 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_Nat_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_804_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Nat_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_761_(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_Nat_reduceSucc_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_604____closed__1; -x_3 = l___regBuiltin_Nat_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_800____closed__2; +x_2 = l___regBuiltin_Nat_reduceSucc_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_561____closed__1; +x_3 = l___regBuiltin_Nat_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_757____closed__2; x_4 = 1; -x_5 = l___regBuiltin_Nat_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_800____closed__11; +x_5 = l___regBuiltin_Nat_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_757____closed__11; x_6 = l_Lean_Meta_Simp_addSimprocBuiltinAttrCore(x_2, x_3, x_4, x_5, x_1); return x_6; } @@ -4009,7 +3907,8 @@ lean_dec(x_11); lean_inc(x_9); lean_inc(x_8); lean_inc(x_7); -x_13 = l_Nat_fromExpr_x3f(x_12, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_inc(x_6); +x_13 = l_Lean_Meta_getNatValue_x3f(x_12, x_6, x_7, x_8, x_9, x_10); if (lean_obj_tag(x_13) == 0) { lean_object* x_14; @@ -4021,6 +3920,7 @@ uint8_t x_15; lean_dec(x_9); lean_dec(x_8); lean_dec(x_7); +lean_dec(x_6); lean_dec(x_1); x_15 = !lean_is_exclusive(x_13); if (x_15 == 0) @@ -4056,7 +3956,7 @@ lean_inc(x_22); lean_dec(x_14); x_23 = l_Lean_Expr_appArg_x21(x_1); lean_dec(x_1); -x_24 = l_Nat_fromExpr_x3f(x_23, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_21); +x_24 = l_Lean_Meta_getNatValue_x3f(x_23, x_6, x_7, x_8, x_9, x_21); if (lean_obj_tag(x_24) == 0) { lean_object* x_25; @@ -4179,6 +4079,7 @@ uint8_t x_56; lean_dec(x_9); lean_dec(x_8); lean_dec(x_7); +lean_dec(x_6); lean_dec(x_1); x_56 = !lean_is_exclusive(x_13); if (x_56 == 0) @@ -4256,7 +4157,6 @@ else lean_object* x_15; lean_object* x_16; x_15 = lean_box(0); x_16 = l_Nat_reducePow___lambda__1(x_1, x_15, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); -lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); @@ -4269,7 +4169,6 @@ _start: { lean_object* x_11; x_11 = l_Nat_reducePow___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_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); @@ -4277,7 +4176,7 @@ lean_dec(x_2); return x_11; } } -static lean_object* _init_l___regBuiltin_Nat_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_840____closed__1() { +static lean_object* _init_l___regBuiltin_Nat_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_797____closed__1() { _start: { lean_object* x_1; @@ -4285,17 +4184,17 @@ x_1 = lean_mk_string_from_bytes("reducePow", 9); return x_1; } } -static lean_object* _init_l___regBuiltin_Nat_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_840____closed__2() { +static lean_object* _init_l___regBuiltin_Nat_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_797____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Nat_reduceSucc___closed__1; -x_2 = l___regBuiltin_Nat_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_840____closed__1; +x_2 = l___regBuiltin_Nat_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_797____closed__1; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Nat_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_840____closed__3() { +static lean_object* _init_l___regBuiltin_Nat_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_797____closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -4307,77 +4206,77 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Nat_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_840____closed__4() { +static lean_object* _init_l___regBuiltin_Nat_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_797____closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_640____closed__6; -x_2 = l___regBuiltin_Nat_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_840____closed__3; +x_1 = l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_597____closed__6; +x_2 = l___regBuiltin_Nat_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_797____closed__3; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Nat_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_840____closed__5() { +static lean_object* _init_l___regBuiltin_Nat_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_797____closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Nat_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_840____closed__4; -x_2 = l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_640____closed__5; +x_1 = l___regBuiltin_Nat_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_797____closed__4; +x_2 = l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_597____closed__5; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Nat_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_840____closed__6() { +static lean_object* _init_l___regBuiltin_Nat_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_797____closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Nat_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_840____closed__5; +x_1 = l___regBuiltin_Nat_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_797____closed__5; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Nat_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_840____closed__7() { +static lean_object* _init_l___regBuiltin_Nat_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_797____closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Nat_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_840____closed__6; -x_2 = l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_640____closed__5; +x_1 = l___regBuiltin_Nat_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_797____closed__6; +x_2 = l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_597____closed__5; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Nat_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_840____closed__8() { +static lean_object* _init_l___regBuiltin_Nat_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_797____closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Nat_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_840____closed__7; +x_1 = l___regBuiltin_Nat_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_797____closed__7; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Nat_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_840____closed__9() { +static lean_object* _init_l___regBuiltin_Nat_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_797____closed__9() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Nat_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_840____closed__8; +x_1 = l___regBuiltin_Nat_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_797____closed__8; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Nat_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_840____closed__10() { +static lean_object* _init_l___regBuiltin_Nat_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_797____closed__10() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Nat_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_840____closed__9; +x_1 = l___regBuiltin_Nat_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_797____closed__9; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Nat_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_840____closed__11() { +static lean_object* _init_l___regBuiltin_Nat_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_797____closed__11() { _start: { lean_object* x_1; @@ -4385,37 +4284,37 @@ x_1 = lean_alloc_closure((void*)(l_Nat_reducePow), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_Nat_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_840_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Nat_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_797_(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_Nat_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_840____closed__2; -x_3 = l___regBuiltin_Nat_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_840____closed__10; -x_4 = l___regBuiltin_Nat_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_840____closed__11; +x_2 = l___regBuiltin_Nat_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_797____closed__2; +x_3 = l___regBuiltin_Nat_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_797____closed__10; +x_4 = l___regBuiltin_Nat_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_797____closed__11; x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); return x_5; } } -LEAN_EXPORT lean_object* l___regBuiltin_Nat_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_842_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Nat_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_799_(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_Nat_reduceSucc_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_602____closed__1; -x_3 = l___regBuiltin_Nat_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_840____closed__2; +x_2 = l___regBuiltin_Nat_reduceSucc_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_559____closed__1; +x_3 = l___regBuiltin_Nat_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_797____closed__2; x_4 = 1; -x_5 = l___regBuiltin_Nat_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_840____closed__11; +x_5 = l___regBuiltin_Nat_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_797____closed__11; 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_Nat_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_844_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Nat_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_801_(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_Nat_reduceSucc_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_604____closed__1; -x_3 = l___regBuiltin_Nat_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_840____closed__2; +x_2 = l___regBuiltin_Nat_reduceSucc_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_561____closed__1; +x_3 = l___regBuiltin_Nat_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_797____closed__2; x_4 = 1; -x_5 = l___regBuiltin_Nat_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_840____closed__11; +x_5 = l___regBuiltin_Nat_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_797____closed__11; x_6 = l_Lean_Meta_Simp_addSimprocBuiltinAttrCore(x_2, x_3, x_4, x_5, x_1); return x_6; } @@ -4431,7 +4330,8 @@ lean_dec(x_11); lean_inc(x_9); lean_inc(x_8); lean_inc(x_7); -x_13 = l_Nat_fromExpr_x3f(x_12, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_inc(x_6); +x_13 = l_Lean_Meta_getNatValue_x3f(x_12, x_6, x_7, x_8, x_9, x_10); if (lean_obj_tag(x_13) == 0) { lean_object* x_14; @@ -4443,6 +4343,7 @@ uint8_t x_15; lean_dec(x_9); lean_dec(x_8); lean_dec(x_7); +lean_dec(x_6); lean_dec(x_1); x_15 = !lean_is_exclusive(x_13); if (x_15 == 0) @@ -4478,7 +4379,7 @@ lean_inc(x_22); lean_dec(x_14); x_23 = l_Lean_Expr_appArg_x21(x_1); lean_dec(x_1); -x_24 = l_Nat_fromExpr_x3f(x_23, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_21); +x_24 = l_Lean_Meta_getNatValue_x3f(x_23, x_6, x_7, x_8, x_9, x_21); if (lean_obj_tag(x_24) == 0) { lean_object* x_25; @@ -4601,6 +4502,7 @@ uint8_t x_56; lean_dec(x_9); lean_dec(x_8); lean_dec(x_7); +lean_dec(x_6); lean_dec(x_1); x_56 = !lean_is_exclusive(x_13); if (x_56 == 0) @@ -4670,7 +4572,6 @@ else lean_object* x_15; lean_object* x_16; x_15 = lean_box(0); x_16 = l_Nat_reduceGcd___lambda__1(x_1, x_15, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); -lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); @@ -4683,7 +4584,6 @@ _start: { lean_object* x_11; x_11 = l_Nat_reduceGcd___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_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); @@ -4691,7 +4591,7 @@ lean_dec(x_2); return x_11; } } -static lean_object* _init_l___regBuiltin_Nat_reduceGcd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_861____closed__1() { +static lean_object* _init_l___regBuiltin_Nat_reduceGcd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_818____closed__1() { _start: { lean_object* x_1; @@ -4699,17 +4599,17 @@ x_1 = lean_mk_string_from_bytes("reduceGcd", 9); return x_1; } } -static lean_object* _init_l___regBuiltin_Nat_reduceGcd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_861____closed__2() { +static lean_object* _init_l___regBuiltin_Nat_reduceGcd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_818____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Nat_reduceSucc___closed__1; -x_2 = l___regBuiltin_Nat_reduceGcd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_861____closed__1; +x_2 = l___regBuiltin_Nat_reduceGcd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_818____closed__1; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Nat_reduceGcd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_861____closed__3() { +static lean_object* _init_l___regBuiltin_Nat_reduceGcd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_818____closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -4721,7 +4621,7 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Nat_reduceGcd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_861____closed__4() { +static lean_object* _init_l___regBuiltin_Nat_reduceGcd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_818____closed__4() { _start: { lean_object* x_1; lean_object* x_2; @@ -4730,37 +4630,37 @@ x_2 = lean_mk_empty_array_with_capacity(x_1); return x_2; } } -static lean_object* _init_l___regBuiltin_Nat_reduceGcd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_861____closed__5() { +static lean_object* _init_l___regBuiltin_Nat_reduceGcd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_818____closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Nat_reduceGcd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_861____closed__4; -x_2 = l___regBuiltin_Nat_reduceGcd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_861____closed__3; +x_1 = l___regBuiltin_Nat_reduceGcd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_818____closed__4; +x_2 = l___regBuiltin_Nat_reduceGcd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_818____closed__3; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Nat_reduceGcd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_861____closed__6() { +static lean_object* _init_l___regBuiltin_Nat_reduceGcd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_818____closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Nat_reduceGcd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_861____closed__5; +x_1 = l___regBuiltin_Nat_reduceGcd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_818____closed__5; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Nat_reduceGcd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_861____closed__7() { +static lean_object* _init_l___regBuiltin_Nat_reduceGcd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_818____closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Nat_reduceGcd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_861____closed__6; +x_1 = l___regBuiltin_Nat_reduceGcd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_818____closed__6; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Nat_reduceGcd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_861____closed__8() { +static lean_object* _init_l___regBuiltin_Nat_reduceGcd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_818____closed__8() { _start: { lean_object* x_1; @@ -4768,37 +4668,37 @@ x_1 = lean_alloc_closure((void*)(l_Nat_reduceGcd), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_Nat_reduceGcd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_861_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Nat_reduceGcd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_818_(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_Nat_reduceGcd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_861____closed__2; -x_3 = l___regBuiltin_Nat_reduceGcd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_861____closed__7; -x_4 = l___regBuiltin_Nat_reduceGcd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_861____closed__8; +x_2 = l___regBuiltin_Nat_reduceGcd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_818____closed__2; +x_3 = l___regBuiltin_Nat_reduceGcd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_818____closed__7; +x_4 = l___regBuiltin_Nat_reduceGcd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_818____closed__8; x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); return x_5; } } -LEAN_EXPORT lean_object* l___regBuiltin_Nat_reduceGcd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_863_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Nat_reduceGcd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_820_(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_Nat_reduceSucc_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_602____closed__1; -x_3 = l___regBuiltin_Nat_reduceGcd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_861____closed__2; +x_2 = l___regBuiltin_Nat_reduceSucc_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_559____closed__1; +x_3 = l___regBuiltin_Nat_reduceGcd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_818____closed__2; x_4 = 1; -x_5 = l___regBuiltin_Nat_reduceGcd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_861____closed__8; +x_5 = l___regBuiltin_Nat_reduceGcd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_818____closed__8; 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_Nat_reduceGcd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_865_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Nat_reduceGcd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_822_(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_Nat_reduceSucc_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_604____closed__1; -x_3 = l___regBuiltin_Nat_reduceGcd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_861____closed__2; +x_2 = l___regBuiltin_Nat_reduceSucc_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_561____closed__1; +x_3 = l___regBuiltin_Nat_reduceGcd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_818____closed__2; x_4 = 1; -x_5 = l___regBuiltin_Nat_reduceGcd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_861____closed__8; +x_5 = l___regBuiltin_Nat_reduceGcd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_818____closed__8; x_6 = l_Lean_Meta_Simp_addSimprocBuiltinAttrCore(x_2, x_3, x_4, x_5, x_1); return x_6; } @@ -4814,7 +4714,8 @@ lean_dec(x_11); lean_inc(x_9); lean_inc(x_8); lean_inc(x_7); -x_13 = l_Nat_fromExpr_x3f(x_12, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_inc(x_6); +x_13 = l_Lean_Meta_getNatValue_x3f(x_12, x_6, x_7, x_8, x_9, x_10); if (lean_obj_tag(x_13) == 0) { lean_object* x_14; @@ -4864,7 +4765,8 @@ x_23 = l_Lean_Expr_appArg_x21(x_1); lean_inc(x_9); lean_inc(x_8); lean_inc(x_7); -x_24 = l_Nat_fromExpr_x3f(x_23, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_21); +lean_inc(x_6); +x_24 = l_Lean_Meta_getNatValue_x3f(x_23, x_6, x_7, x_8, x_9, x_21); if (lean_obj_tag(x_24) == 0) { lean_object* x_25; @@ -5051,7 +4953,7 @@ lean_dec(x_2); return x_11; } } -static lean_object* _init_l___regBuiltin_Nat_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_902____closed__1() { +static lean_object* _init_l___regBuiltin_Nat_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_859____closed__1() { _start: { lean_object* x_1; @@ -5059,17 +4961,17 @@ x_1 = lean_mk_string_from_bytes("reduceLT", 8); return x_1; } } -static lean_object* _init_l___regBuiltin_Nat_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_902____closed__2() { +static lean_object* _init_l___regBuiltin_Nat_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_859____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Nat_reduceSucc___closed__1; -x_2 = l___regBuiltin_Nat_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_902____closed__1; +x_2 = l___regBuiltin_Nat_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_859____closed__1; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Nat_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_902____closed__3() { +static lean_object* _init_l___regBuiltin_Nat_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_859____closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -5081,7 +4983,7 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Nat_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_902____closed__4() { +static lean_object* _init_l___regBuiltin_Nat_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_859____closed__4() { _start: { lean_object* x_1; lean_object* x_2; @@ -5090,57 +4992,57 @@ x_2 = lean_mk_empty_array_with_capacity(x_1); return x_2; } } -static lean_object* _init_l___regBuiltin_Nat_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_902____closed__5() { +static lean_object* _init_l___regBuiltin_Nat_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_859____closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Nat_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_902____closed__4; -x_2 = l___regBuiltin_Nat_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_902____closed__3; +x_1 = l___regBuiltin_Nat_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_859____closed__4; +x_2 = l___regBuiltin_Nat_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_859____closed__3; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Nat_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_902____closed__6() { +static lean_object* _init_l___regBuiltin_Nat_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_859____closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Nat_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_902____closed__5; -x_2 = l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_640____closed__5; +x_1 = l___regBuiltin_Nat_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_859____closed__5; +x_2 = l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_597____closed__5; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Nat_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_902____closed__7() { +static lean_object* _init_l___regBuiltin_Nat_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_859____closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Nat_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_902____closed__6; +x_1 = l___regBuiltin_Nat_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_859____closed__6; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Nat_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_902____closed__8() { +static lean_object* _init_l___regBuiltin_Nat_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_859____closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Nat_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_902____closed__7; +x_1 = l___regBuiltin_Nat_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_859____closed__7; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Nat_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_902____closed__9() { +static lean_object* _init_l___regBuiltin_Nat_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_859____closed__9() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Nat_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_902____closed__8; +x_1 = l___regBuiltin_Nat_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_859____closed__8; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Nat_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_902____closed__10() { +static lean_object* _init_l___regBuiltin_Nat_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_859____closed__10() { _start: { lean_object* x_1; @@ -5148,37 +5050,37 @@ x_1 = lean_alloc_closure((void*)(l_Nat_reduceLT), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_Nat_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_902_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Nat_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_859_(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_Nat_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_902____closed__2; -x_3 = l___regBuiltin_Nat_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_902____closed__9; -x_4 = l___regBuiltin_Nat_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_902____closed__10; +x_2 = l___regBuiltin_Nat_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_859____closed__2; +x_3 = l___regBuiltin_Nat_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_859____closed__9; +x_4 = l___regBuiltin_Nat_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_859____closed__10; x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); return x_5; } } -LEAN_EXPORT lean_object* l___regBuiltin_Nat_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_904_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Nat_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_861_(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_Nat_reduceSucc_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_602____closed__1; -x_3 = l___regBuiltin_Nat_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_902____closed__2; +x_2 = l___regBuiltin_Nat_reduceSucc_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_559____closed__1; +x_3 = l___regBuiltin_Nat_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_859____closed__2; x_4 = 1; -x_5 = l___regBuiltin_Nat_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_902____closed__10; +x_5 = l___regBuiltin_Nat_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_859____closed__10; 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_Nat_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_906_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Nat_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_863_(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_Nat_reduceSucc_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_604____closed__1; -x_3 = l___regBuiltin_Nat_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_902____closed__2; +x_2 = l___regBuiltin_Nat_reduceSucc_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_561____closed__1; +x_3 = l___regBuiltin_Nat_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_859____closed__2; x_4 = 1; -x_5 = l___regBuiltin_Nat_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_902____closed__10; +x_5 = l___regBuiltin_Nat_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_859____closed__10; x_6 = l_Lean_Meta_Simp_addSimprocBuiltinAttrCore(x_2, x_3, x_4, x_5, x_1); return x_6; } @@ -5194,7 +5096,8 @@ lean_dec(x_11); lean_inc(x_9); lean_inc(x_8); lean_inc(x_7); -x_13 = l_Nat_fromExpr_x3f(x_12, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_inc(x_6); +x_13 = l_Lean_Meta_getNatValue_x3f(x_12, x_6, x_7, x_8, x_9, x_10); if (lean_obj_tag(x_13) == 0) { lean_object* x_14; @@ -5244,7 +5147,8 @@ x_23 = l_Lean_Expr_appArg_x21(x_1); lean_inc(x_9); lean_inc(x_8); lean_inc(x_7); -x_24 = l_Nat_fromExpr_x3f(x_23, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_21); +lean_inc(x_6); +x_24 = l_Lean_Meta_getNatValue_x3f(x_23, x_6, x_7, x_8, x_9, x_21); if (lean_obj_tag(x_24) == 0) { lean_object* x_25; @@ -5431,7 +5335,7 @@ lean_dec(x_2); return x_11; } } -static lean_object* _init_l___regBuiltin_Nat_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_943____closed__1() { +static lean_object* _init_l___regBuiltin_Nat_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_900____closed__1() { _start: { lean_object* x_1; @@ -5439,17 +5343,17 @@ x_1 = lean_mk_string_from_bytes("reduceLE", 8); return x_1; } } -static lean_object* _init_l___regBuiltin_Nat_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_943____closed__2() { +static lean_object* _init_l___regBuiltin_Nat_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_900____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Nat_reduceSucc___closed__1; -x_2 = l___regBuiltin_Nat_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_943____closed__1; +x_2 = l___regBuiltin_Nat_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_900____closed__1; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Nat_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_943____closed__3() { +static lean_object* _init_l___regBuiltin_Nat_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_900____closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -5461,57 +5365,57 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Nat_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_943____closed__4() { +static lean_object* _init_l___regBuiltin_Nat_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_900____closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Nat_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_902____closed__4; -x_2 = l___regBuiltin_Nat_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_943____closed__3; +x_1 = l___regBuiltin_Nat_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_859____closed__4; +x_2 = l___regBuiltin_Nat_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_900____closed__3; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Nat_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_943____closed__5() { +static lean_object* _init_l___regBuiltin_Nat_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_900____closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Nat_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_943____closed__4; -x_2 = l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_640____closed__5; +x_1 = l___regBuiltin_Nat_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_900____closed__4; +x_2 = l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_597____closed__5; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Nat_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_943____closed__6() { +static lean_object* _init_l___regBuiltin_Nat_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_900____closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Nat_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_943____closed__5; +x_1 = l___regBuiltin_Nat_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_900____closed__5; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Nat_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_943____closed__7() { +static lean_object* _init_l___regBuiltin_Nat_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_900____closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Nat_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_943____closed__6; +x_1 = l___regBuiltin_Nat_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_900____closed__6; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Nat_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_943____closed__8() { +static lean_object* _init_l___regBuiltin_Nat_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_900____closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Nat_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_943____closed__7; +x_1 = l___regBuiltin_Nat_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_900____closed__7; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Nat_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_943____closed__9() { +static lean_object* _init_l___regBuiltin_Nat_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_900____closed__9() { _start: { lean_object* x_1; @@ -5519,37 +5423,37 @@ x_1 = lean_alloc_closure((void*)(l_Nat_reduceLE), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_Nat_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_943_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Nat_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_900_(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_Nat_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_943____closed__2; -x_3 = l___regBuiltin_Nat_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_943____closed__8; -x_4 = l___regBuiltin_Nat_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_943____closed__9; +x_2 = l___regBuiltin_Nat_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_900____closed__2; +x_3 = l___regBuiltin_Nat_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_900____closed__8; +x_4 = l___regBuiltin_Nat_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_900____closed__9; x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); return x_5; } } -LEAN_EXPORT lean_object* l___regBuiltin_Nat_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_945_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Nat_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_902_(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_Nat_reduceSucc_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_602____closed__1; -x_3 = l___regBuiltin_Nat_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_943____closed__2; +x_2 = l___regBuiltin_Nat_reduceSucc_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_559____closed__1; +x_3 = l___regBuiltin_Nat_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_900____closed__2; x_4 = 1; -x_5 = l___regBuiltin_Nat_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_943____closed__9; +x_5 = l___regBuiltin_Nat_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_900____closed__9; 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_Nat_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_947_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Nat_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_904_(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_Nat_reduceSucc_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_604____closed__1; -x_3 = l___regBuiltin_Nat_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_943____closed__2; +x_2 = l___regBuiltin_Nat_reduceSucc_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_561____closed__1; +x_3 = l___regBuiltin_Nat_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_900____closed__2; x_4 = 1; -x_5 = l___regBuiltin_Nat_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_943____closed__9; +x_5 = l___regBuiltin_Nat_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_900____closed__9; x_6 = l_Lean_Meta_Simp_addSimprocBuiltinAttrCore(x_2, x_3, x_4, x_5, x_1); return x_6; } @@ -5565,7 +5469,8 @@ lean_dec(x_11); lean_inc(x_9); lean_inc(x_8); lean_inc(x_7); -x_13 = l_Nat_fromExpr_x3f(x_12, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_inc(x_6); +x_13 = l_Lean_Meta_getNatValue_x3f(x_12, x_6, x_7, x_8, x_9, x_10); if (lean_obj_tag(x_13) == 0) { lean_object* x_14; @@ -5615,7 +5520,8 @@ x_23 = l_Lean_Expr_appArg_x21(x_1); lean_inc(x_9); lean_inc(x_8); lean_inc(x_7); -x_24 = l_Nat_fromExpr_x3f(x_23, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_21); +lean_inc(x_6); +x_24 = l_Lean_Meta_getNatValue_x3f(x_23, x_6, x_7, x_8, x_9, x_21); if (lean_obj_tag(x_24) == 0) { lean_object* x_25; @@ -5802,7 +5708,7 @@ lean_dec(x_2); return x_11; } } -static lean_object* _init_l___regBuiltin_Nat_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_984____closed__1() { +static lean_object* _init_l___regBuiltin_Nat_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_941____closed__1() { _start: { lean_object* x_1; @@ -5810,17 +5716,17 @@ x_1 = lean_mk_string_from_bytes("reduceGT", 8); return x_1; } } -static lean_object* _init_l___regBuiltin_Nat_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_984____closed__2() { +static lean_object* _init_l___regBuiltin_Nat_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_941____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Nat_reduceSucc___closed__1; -x_2 = l___regBuiltin_Nat_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_984____closed__1; +x_2 = l___regBuiltin_Nat_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_941____closed__1; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Nat_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_984____closed__3() { +static lean_object* _init_l___regBuiltin_Nat_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_941____closed__3() { _start: { lean_object* x_1; @@ -5828,37 +5734,37 @@ x_1 = lean_alloc_closure((void*)(l_Nat_reduceGT), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_Nat_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_984_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Nat_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_941_(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_Nat_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_984____closed__2; -x_3 = l___regBuiltin_Nat_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_902____closed__9; -x_4 = l___regBuiltin_Nat_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_984____closed__3; +x_2 = l___regBuiltin_Nat_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_941____closed__2; +x_3 = l___regBuiltin_Nat_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_859____closed__9; +x_4 = l___regBuiltin_Nat_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_941____closed__3; x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); return x_5; } } -LEAN_EXPORT lean_object* l___regBuiltin_Nat_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_986_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Nat_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_943_(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_Nat_reduceSucc_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_602____closed__1; -x_3 = l___regBuiltin_Nat_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_984____closed__2; +x_2 = l___regBuiltin_Nat_reduceSucc_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_559____closed__1; +x_3 = l___regBuiltin_Nat_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_941____closed__2; x_4 = 1; -x_5 = l___regBuiltin_Nat_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_984____closed__3; +x_5 = l___regBuiltin_Nat_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_941____closed__3; 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_Nat_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_988_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Nat_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_945_(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_Nat_reduceSucc_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_604____closed__1; -x_3 = l___regBuiltin_Nat_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_984____closed__2; +x_2 = l___regBuiltin_Nat_reduceSucc_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_561____closed__1; +x_3 = l___regBuiltin_Nat_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_941____closed__2; x_4 = 1; -x_5 = l___regBuiltin_Nat_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_984____closed__3; +x_5 = l___regBuiltin_Nat_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_941____closed__3; x_6 = l_Lean_Meta_Simp_addSimprocBuiltinAttrCore(x_2, x_3, x_4, x_5, x_1); return x_6; } @@ -5874,7 +5780,8 @@ lean_dec(x_11); lean_inc(x_9); lean_inc(x_8); lean_inc(x_7); -x_13 = l_Nat_fromExpr_x3f(x_12, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_inc(x_6); +x_13 = l_Lean_Meta_getNatValue_x3f(x_12, x_6, x_7, x_8, x_9, x_10); if (lean_obj_tag(x_13) == 0) { lean_object* x_14; @@ -5924,7 +5831,8 @@ x_23 = l_Lean_Expr_appArg_x21(x_1); lean_inc(x_9); lean_inc(x_8); lean_inc(x_7); -x_24 = l_Nat_fromExpr_x3f(x_23, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_21); +lean_inc(x_6); +x_24 = l_Lean_Meta_getNatValue_x3f(x_23, x_6, x_7, x_8, x_9, x_21); if (lean_obj_tag(x_24) == 0) { lean_object* x_25; @@ -6111,7 +6019,7 @@ lean_dec(x_2); return x_11; } } -static lean_object* _init_l___regBuiltin_Nat_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1025____closed__1() { +static lean_object* _init_l___regBuiltin_Nat_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_982____closed__1() { _start: { lean_object* x_1; @@ -6119,17 +6027,17 @@ x_1 = lean_mk_string_from_bytes("reduceGE", 8); return x_1; } } -static lean_object* _init_l___regBuiltin_Nat_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1025____closed__2() { +static lean_object* _init_l___regBuiltin_Nat_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_982____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Nat_reduceSucc___closed__1; -x_2 = l___regBuiltin_Nat_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1025____closed__1; +x_2 = l___regBuiltin_Nat_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_982____closed__1; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Nat_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1025____closed__3() { +static lean_object* _init_l___regBuiltin_Nat_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_982____closed__3() { _start: { lean_object* x_1; @@ -6137,37 +6045,37 @@ x_1 = lean_alloc_closure((void*)(l_Nat_reduceGE), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_Nat_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1025_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Nat_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_982_(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_Nat_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1025____closed__2; -x_3 = l___regBuiltin_Nat_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_943____closed__8; -x_4 = l___regBuiltin_Nat_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1025____closed__3; +x_2 = l___regBuiltin_Nat_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_982____closed__2; +x_3 = l___regBuiltin_Nat_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_900____closed__8; +x_4 = l___regBuiltin_Nat_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_982____closed__3; x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); return x_5; } } -LEAN_EXPORT lean_object* l___regBuiltin_Nat_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1027_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Nat_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_984_(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_Nat_reduceSucc_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_602____closed__1; -x_3 = l___regBuiltin_Nat_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1025____closed__2; +x_2 = l___regBuiltin_Nat_reduceSucc_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_559____closed__1; +x_3 = l___regBuiltin_Nat_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_982____closed__2; x_4 = 1; -x_5 = l___regBuiltin_Nat_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1025____closed__3; +x_5 = l___regBuiltin_Nat_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_982____closed__3; 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_Nat_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1029_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Nat_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_986_(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_Nat_reduceSucc_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_604____closed__1; -x_3 = l___regBuiltin_Nat_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1025____closed__2; +x_2 = l___regBuiltin_Nat_reduceSucc_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_561____closed__1; +x_3 = l___regBuiltin_Nat_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_982____closed__2; x_4 = 1; -x_5 = l___regBuiltin_Nat_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1025____closed__3; +x_5 = l___regBuiltin_Nat_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_982____closed__3; x_6 = l_Lean_Meta_Simp_addSimprocBuiltinAttrCore(x_2, x_3, x_4, x_5, x_1); return x_6; } @@ -6183,7 +6091,8 @@ lean_dec(x_11); lean_inc(x_9); lean_inc(x_8); lean_inc(x_7); -x_13 = l_Nat_fromExpr_x3f(x_12, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_inc(x_6); +x_13 = l_Lean_Meta_getNatValue_x3f(x_12, x_6, x_7, x_8, x_9, x_10); if (lean_obj_tag(x_13) == 0) { lean_object* x_14; @@ -6233,7 +6142,8 @@ x_23 = l_Lean_Expr_appArg_x21(x_1); lean_inc(x_9); lean_inc(x_8); lean_inc(x_7); -x_24 = l_Nat_fromExpr_x3f(x_23, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_21); +lean_inc(x_6); +x_24 = l_Lean_Meta_getNatValue_x3f(x_23, x_6, x_7, x_8, x_9, x_21); if (lean_obj_tag(x_24) == 0) { lean_object* x_25; @@ -6412,7 +6322,7 @@ lean_dec(x_2); return x_11; } } -static lean_object* _init_l___regBuiltin_Nat_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1066____closed__1() { +static lean_object* _init_l___regBuiltin_Nat_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1023____closed__1() { _start: { lean_object* x_1; @@ -6420,17 +6330,17 @@ x_1 = lean_mk_string_from_bytes("reduceEq", 8); return x_1; } } -static lean_object* _init_l___regBuiltin_Nat_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1066____closed__2() { +static lean_object* _init_l___regBuiltin_Nat_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1023____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Nat_reduceSucc___closed__1; -x_2 = l___regBuiltin_Nat_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1066____closed__1; +x_2 = l___regBuiltin_Nat_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1023____closed__1; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Nat_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1066____closed__3() { +static lean_object* _init_l___regBuiltin_Nat_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1023____closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -6442,7 +6352,7 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Nat_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1066____closed__4() { +static lean_object* _init_l___regBuiltin_Nat_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1023____closed__4() { _start: { lean_object* x_1; lean_object* x_2; @@ -6451,47 +6361,47 @@ x_2 = lean_mk_empty_array_with_capacity(x_1); return x_2; } } -static lean_object* _init_l___regBuiltin_Nat_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1066____closed__5() { +static lean_object* _init_l___regBuiltin_Nat_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1023____closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Nat_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1066____closed__4; -x_2 = l___regBuiltin_Nat_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1066____closed__3; +x_1 = l___regBuiltin_Nat_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1023____closed__4; +x_2 = l___regBuiltin_Nat_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1023____closed__3; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Nat_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1066____closed__6() { +static lean_object* _init_l___regBuiltin_Nat_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1023____closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Nat_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1066____closed__5; -x_2 = l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_640____closed__5; +x_1 = l___regBuiltin_Nat_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1023____closed__5; +x_2 = l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_597____closed__5; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Nat_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1066____closed__7() { +static lean_object* _init_l___regBuiltin_Nat_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1023____closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Nat_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1066____closed__6; +x_1 = l___regBuiltin_Nat_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1023____closed__6; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Nat_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1066____closed__8() { +static lean_object* _init_l___regBuiltin_Nat_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1023____closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Nat_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1066____closed__7; +x_1 = l___regBuiltin_Nat_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1023____closed__7; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Nat_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1066____closed__9() { +static lean_object* _init_l___regBuiltin_Nat_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1023____closed__9() { _start: { lean_object* x_1; @@ -6499,37 +6409,37 @@ x_1 = lean_alloc_closure((void*)(l_Nat_reduceEq), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_Nat_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1066_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Nat_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1023_(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_Nat_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1066____closed__2; -x_3 = l___regBuiltin_Nat_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1066____closed__8; -x_4 = l___regBuiltin_Nat_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1066____closed__9; +x_2 = l___regBuiltin_Nat_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1023____closed__2; +x_3 = l___regBuiltin_Nat_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1023____closed__8; +x_4 = l___regBuiltin_Nat_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1023____closed__9; x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); return x_5; } } -LEAN_EXPORT lean_object* l___regBuiltin_Nat_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1068_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Nat_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1025_(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_Nat_reduceSucc_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_602____closed__1; -x_3 = l___regBuiltin_Nat_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1066____closed__2; +x_2 = l___regBuiltin_Nat_reduceSucc_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_559____closed__1; +x_3 = l___regBuiltin_Nat_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1023____closed__2; x_4 = 1; -x_5 = l___regBuiltin_Nat_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1066____closed__9; +x_5 = l___regBuiltin_Nat_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1023____closed__9; 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_Nat_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1070_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Nat_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1027_(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_Nat_reduceSucc_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_604____closed__1; -x_3 = l___regBuiltin_Nat_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1066____closed__2; +x_2 = l___regBuiltin_Nat_reduceSucc_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_561____closed__1; +x_3 = l___regBuiltin_Nat_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1023____closed__2; x_4 = 1; -x_5 = l___regBuiltin_Nat_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1066____closed__9; +x_5 = l___regBuiltin_Nat_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1023____closed__9; x_6 = l_Lean_Meta_Simp_addSimprocBuiltinAttrCore(x_2, x_3, x_4, x_5, x_1); return x_6; } @@ -6545,7 +6455,8 @@ lean_dec(x_11); lean_inc(x_9); lean_inc(x_8); lean_inc(x_7); -x_13 = l_Nat_fromExpr_x3f(x_12, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_inc(x_6); +x_13 = l_Lean_Meta_getNatValue_x3f(x_12, x_6, x_7, x_8, x_9, x_10); if (lean_obj_tag(x_13) == 0) { lean_object* x_14; @@ -6595,7 +6506,8 @@ x_23 = l_Lean_Expr_appArg_x21(x_1); lean_inc(x_9); lean_inc(x_8); lean_inc(x_7); -x_24 = l_Nat_fromExpr_x3f(x_23, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_21); +lean_inc(x_6); +x_24 = l_Lean_Meta_getNatValue_x3f(x_23, x_6, x_7, x_8, x_9, x_21); if (lean_obj_tag(x_24) == 0) { lean_object* x_25; @@ -6775,7 +6687,7 @@ lean_dec(x_2); return x_11; } } -static lean_object* _init_l___regBuiltin_Nat_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1106____closed__1() { +static lean_object* _init_l___regBuiltin_Nat_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1063____closed__1() { _start: { lean_object* x_1; @@ -6783,17 +6695,17 @@ x_1 = lean_mk_string_from_bytes("reduceNe", 8); return x_1; } } -static lean_object* _init_l___regBuiltin_Nat_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1106____closed__2() { +static lean_object* _init_l___regBuiltin_Nat_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1063____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Nat_reduceSucc___closed__1; -x_2 = l___regBuiltin_Nat_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1106____closed__1; +x_2 = l___regBuiltin_Nat_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1063____closed__1; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Nat_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1106____closed__3() { +static lean_object* _init_l___regBuiltin_Nat_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1063____closed__3() { _start: { lean_object* x_1; @@ -6801,21 +6713,21 @@ x_1 = lean_mk_string_from_bytes("Not", 3); return x_1; } } -static lean_object* _init_l___regBuiltin_Nat_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1106____closed__4() { +static lean_object* _init_l___regBuiltin_Nat_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1063____closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___regBuiltin_Nat_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1106____closed__3; +x_2 = l___regBuiltin_Nat_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1063____closed__3; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Nat_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1106____closed__5() { +static lean_object* _init_l___regBuiltin_Nat_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1063____closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Nat_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1106____closed__4; +x_1 = l___regBuiltin_Nat_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1063____closed__4; x_2 = lean_unsigned_to_nat(1u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -6823,57 +6735,57 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Nat_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1106____closed__6() { +static lean_object* _init_l___regBuiltin_Nat_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1063____closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Nat_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_902____closed__4; -x_2 = l___regBuiltin_Nat_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1106____closed__5; +x_1 = l___regBuiltin_Nat_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_859____closed__4; +x_2 = l___regBuiltin_Nat_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1063____closed__5; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Nat_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1106____closed__7() { +static lean_object* _init_l___regBuiltin_Nat_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1063____closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Nat_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1106____closed__6; -x_2 = l___regBuiltin_Nat_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1066____closed__3; +x_1 = l___regBuiltin_Nat_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1063____closed__6; +x_2 = l___regBuiltin_Nat_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1023____closed__3; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Nat_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1106____closed__8() { +static lean_object* _init_l___regBuiltin_Nat_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1063____closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Nat_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1106____closed__7; -x_2 = l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_640____closed__5; +x_1 = l___regBuiltin_Nat_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1063____closed__7; +x_2 = l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_597____closed__5; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Nat_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1106____closed__9() { +static lean_object* _init_l___regBuiltin_Nat_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1063____closed__9() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Nat_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1106____closed__8; +x_1 = l___regBuiltin_Nat_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1063____closed__8; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Nat_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1106____closed__10() { +static lean_object* _init_l___regBuiltin_Nat_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1063____closed__10() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Nat_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1106____closed__9; +x_1 = l___regBuiltin_Nat_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1063____closed__9; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Nat_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1106____closed__11() { +static lean_object* _init_l___regBuiltin_Nat_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1063____closed__11() { _start: { lean_object* x_1; @@ -6881,37 +6793,37 @@ x_1 = lean_alloc_closure((void*)(l_Nat_reduceNe), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_Nat_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1106_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Nat_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1063_(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_Nat_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1106____closed__2; -x_3 = l___regBuiltin_Nat_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1106____closed__10; -x_4 = l___regBuiltin_Nat_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1106____closed__11; +x_2 = l___regBuiltin_Nat_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1063____closed__2; +x_3 = l___regBuiltin_Nat_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1063____closed__10; +x_4 = l___regBuiltin_Nat_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1063____closed__11; x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); return x_5; } } -LEAN_EXPORT lean_object* l___regBuiltin_Nat_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1108_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Nat_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1065_(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_Nat_reduceSucc_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_602____closed__1; -x_3 = l___regBuiltin_Nat_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1106____closed__2; +x_2 = l___regBuiltin_Nat_reduceSucc_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_559____closed__1; +x_3 = l___regBuiltin_Nat_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1063____closed__2; x_4 = 1; -x_5 = l___regBuiltin_Nat_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1106____closed__11; +x_5 = l___regBuiltin_Nat_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1063____closed__11; 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_Nat_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1110_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Nat_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1067_(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_Nat_reduceSucc_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_604____closed__1; -x_3 = l___regBuiltin_Nat_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1106____closed__2; +x_2 = l___regBuiltin_Nat_reduceSucc_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_561____closed__1; +x_3 = l___regBuiltin_Nat_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1063____closed__2; x_4 = 1; -x_5 = l___regBuiltin_Nat_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1106____closed__11; +x_5 = l___regBuiltin_Nat_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1063____closed__11; x_6 = l_Lean_Meta_Simp_addSimprocBuiltinAttrCore(x_2, x_3, x_4, x_5, x_1); return x_6; } @@ -6927,7 +6839,8 @@ lean_dec(x_11); lean_inc(x_9); lean_inc(x_8); lean_inc(x_7); -x_13 = l_Nat_fromExpr_x3f(x_12, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_inc(x_6); +x_13 = l_Lean_Meta_getNatValue_x3f(x_12, x_6, x_7, x_8, x_9, x_10); if (lean_obj_tag(x_13) == 0) { lean_object* x_14; @@ -6939,6 +6852,7 @@ uint8_t x_15; lean_dec(x_9); lean_dec(x_8); lean_dec(x_7); +lean_dec(x_6); lean_dec(x_1); x_15 = !lean_is_exclusive(x_13); if (x_15 == 0) @@ -6974,7 +6888,7 @@ lean_inc(x_22); lean_dec(x_14); x_23 = l_Lean_Expr_appArg_x21(x_1); lean_dec(x_1); -x_24 = l_Nat_fromExpr_x3f(x_23, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_21); +x_24 = l_Lean_Meta_getNatValue_x3f(x_23, x_6, x_7, x_8, x_9, x_21); if (lean_obj_tag(x_24) == 0) { lean_object* x_25; @@ -7101,6 +7015,7 @@ uint8_t x_49; lean_dec(x_9); lean_dec(x_8); lean_dec(x_7); +lean_dec(x_6); lean_dec(x_1); x_49 = !lean_is_exclusive(x_13); if (x_49 == 0) @@ -7178,7 +7093,6 @@ else lean_object* x_15; lean_object* x_16; x_15 = lean_box(0); x_16 = l_Nat_reduceBEq___lambda__1(x_1, x_15, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); -lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); @@ -7191,7 +7105,6 @@ _start: { lean_object* x_11; x_11 = l_Nat_reduceBEq___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_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); @@ -7199,7 +7112,7 @@ lean_dec(x_2); return x_11; } } -static lean_object* _init_l___regBuiltin_Nat_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1147____closed__1() { +static lean_object* _init_l___regBuiltin_Nat_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1104____closed__1() { _start: { lean_object* x_1; @@ -7207,17 +7120,17 @@ x_1 = lean_mk_string_from_bytes("reduceBEq", 9); return x_1; } } -static lean_object* _init_l___regBuiltin_Nat_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1147____closed__2() { +static lean_object* _init_l___regBuiltin_Nat_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1104____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Nat_reduceSucc___closed__1; -x_2 = l___regBuiltin_Nat_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1147____closed__1; +x_2 = l___regBuiltin_Nat_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1104____closed__1; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Nat_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1147____closed__3() { +static lean_object* _init_l___regBuiltin_Nat_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1104____closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -7229,57 +7142,57 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Nat_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1147____closed__4() { +static lean_object* _init_l___regBuiltin_Nat_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1104____closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Nat_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_902____closed__4; -x_2 = l___regBuiltin_Nat_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1147____closed__3; +x_1 = l___regBuiltin_Nat_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_859____closed__4; +x_2 = l___regBuiltin_Nat_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1104____closed__3; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Nat_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1147____closed__5() { +static lean_object* _init_l___regBuiltin_Nat_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1104____closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Nat_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1147____closed__4; -x_2 = l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_640____closed__5; +x_1 = l___regBuiltin_Nat_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1104____closed__4; +x_2 = l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_597____closed__5; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Nat_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1147____closed__6() { +static lean_object* _init_l___regBuiltin_Nat_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1104____closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Nat_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1147____closed__5; +x_1 = l___regBuiltin_Nat_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1104____closed__5; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Nat_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1147____closed__7() { +static lean_object* _init_l___regBuiltin_Nat_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1104____closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Nat_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1147____closed__6; +x_1 = l___regBuiltin_Nat_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1104____closed__6; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Nat_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1147____closed__8() { +static lean_object* _init_l___regBuiltin_Nat_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1104____closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Nat_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1147____closed__7; +x_1 = l___regBuiltin_Nat_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1104____closed__7; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Nat_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1147____closed__9() { +static lean_object* _init_l___regBuiltin_Nat_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1104____closed__9() { _start: { lean_object* x_1; @@ -7287,37 +7200,37 @@ x_1 = lean_alloc_closure((void*)(l_Nat_reduceBEq), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_Nat_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1147_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Nat_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1104_(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_Nat_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1147____closed__2; -x_3 = l___regBuiltin_Nat_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1147____closed__8; -x_4 = l___regBuiltin_Nat_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1147____closed__9; +x_2 = l___regBuiltin_Nat_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1104____closed__2; +x_3 = l___regBuiltin_Nat_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1104____closed__8; +x_4 = l___regBuiltin_Nat_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1104____closed__9; x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); return x_5; } } -LEAN_EXPORT lean_object* l___regBuiltin_Nat_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1149_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Nat_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1106_(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_Nat_reduceSucc_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_602____closed__1; -x_3 = l___regBuiltin_Nat_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1147____closed__2; +x_2 = l___regBuiltin_Nat_reduceSucc_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_559____closed__1; +x_3 = l___regBuiltin_Nat_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1104____closed__2; x_4 = 1; -x_5 = l___regBuiltin_Nat_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1147____closed__9; +x_5 = l___regBuiltin_Nat_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1104____closed__9; 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_Nat_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1151_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Nat_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1108_(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_Nat_reduceSucc_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_604____closed__1; -x_3 = l___regBuiltin_Nat_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1147____closed__2; +x_2 = l___regBuiltin_Nat_reduceSucc_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_561____closed__1; +x_3 = l___regBuiltin_Nat_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1104____closed__2; x_4 = 1; -x_5 = l___regBuiltin_Nat_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1147____closed__9; +x_5 = l___regBuiltin_Nat_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1104____closed__9; x_6 = l_Lean_Meta_Simp_addSimprocBuiltinAttrCore(x_2, x_3, x_4, x_5, x_1); return x_6; } @@ -7333,7 +7246,8 @@ lean_dec(x_11); lean_inc(x_9); lean_inc(x_8); lean_inc(x_7); -x_13 = l_Nat_fromExpr_x3f(x_12, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_inc(x_6); +x_13 = l_Lean_Meta_getNatValue_x3f(x_12, x_6, x_7, x_8, x_9, x_10); if (lean_obj_tag(x_13) == 0) { lean_object* x_14; @@ -7345,6 +7259,7 @@ uint8_t x_15; lean_dec(x_9); lean_dec(x_8); lean_dec(x_7); +lean_dec(x_6); lean_dec(x_1); x_15 = !lean_is_exclusive(x_13); if (x_15 == 0) @@ -7380,7 +7295,7 @@ lean_inc(x_22); lean_dec(x_14); x_23 = l_Lean_Expr_appArg_x21(x_1); lean_dec(x_1); -x_24 = l_Nat_fromExpr_x3f(x_23, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_21); +x_24 = l_Lean_Meta_getNatValue_x3f(x_23, x_6, x_7, x_8, x_9, x_21); if (lean_obj_tag(x_24) == 0) { lean_object* x_25; @@ -7507,6 +7422,7 @@ uint8_t x_49; lean_dec(x_9); lean_dec(x_8); lean_dec(x_7); +lean_dec(x_6); lean_dec(x_1); x_49 = !lean_is_exclusive(x_13); if (x_49 == 0) @@ -7576,7 +7492,6 @@ else lean_object* x_15; lean_object* x_16; x_15 = lean_box(0); x_16 = l_Nat_reduceBNe___lambda__1(x_1, x_15, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); -lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); @@ -7589,7 +7504,6 @@ _start: { lean_object* x_11; x_11 = l_Nat_reduceBNe___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_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); @@ -7597,7 +7511,7 @@ lean_dec(x_2); return x_11; } } -static lean_object* _init_l___regBuiltin_Nat_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1187____closed__1() { +static lean_object* _init_l___regBuiltin_Nat_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1144____closed__1() { _start: { lean_object* x_1; @@ -7605,17 +7519,17 @@ x_1 = lean_mk_string_from_bytes("reduceBNe", 9); return x_1; } } -static lean_object* _init_l___regBuiltin_Nat_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1187____closed__2() { +static lean_object* _init_l___regBuiltin_Nat_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1144____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Nat_reduceSucc___closed__1; -x_2 = l___regBuiltin_Nat_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1187____closed__1; +x_2 = l___regBuiltin_Nat_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1144____closed__1; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Nat_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1187____closed__3() { +static lean_object* _init_l___regBuiltin_Nat_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1144____closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -7627,57 +7541,57 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Nat_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1187____closed__4() { +static lean_object* _init_l___regBuiltin_Nat_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1144____closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Nat_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_902____closed__4; -x_2 = l___regBuiltin_Nat_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1187____closed__3; +x_1 = l___regBuiltin_Nat_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_859____closed__4; +x_2 = l___regBuiltin_Nat_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1144____closed__3; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Nat_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1187____closed__5() { +static lean_object* _init_l___regBuiltin_Nat_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1144____closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Nat_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1187____closed__4; -x_2 = l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_640____closed__5; +x_1 = l___regBuiltin_Nat_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1144____closed__4; +x_2 = l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_597____closed__5; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Nat_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1187____closed__6() { +static lean_object* _init_l___regBuiltin_Nat_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1144____closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Nat_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1187____closed__5; +x_1 = l___regBuiltin_Nat_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1144____closed__5; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Nat_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1187____closed__7() { +static lean_object* _init_l___regBuiltin_Nat_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1144____closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Nat_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1187____closed__6; +x_1 = l___regBuiltin_Nat_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1144____closed__6; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Nat_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1187____closed__8() { +static lean_object* _init_l___regBuiltin_Nat_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1144____closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Nat_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1187____closed__7; +x_1 = l___regBuiltin_Nat_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1144____closed__7; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Nat_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1187____closed__9() { +static lean_object* _init_l___regBuiltin_Nat_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1144____closed__9() { _start: { lean_object* x_1; @@ -7685,37 +7599,37 @@ x_1 = lean_alloc_closure((void*)(l_Nat_reduceBNe), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_Nat_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1187_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Nat_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1144_(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_Nat_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1187____closed__2; -x_3 = l___regBuiltin_Nat_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1187____closed__8; -x_4 = l___regBuiltin_Nat_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1187____closed__9; +x_2 = l___regBuiltin_Nat_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1144____closed__2; +x_3 = l___regBuiltin_Nat_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1144____closed__8; +x_4 = l___regBuiltin_Nat_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1144____closed__9; x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); return x_5; } } -LEAN_EXPORT lean_object* l___regBuiltin_Nat_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1189_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Nat_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1146_(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_Nat_reduceSucc_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_602____closed__1; -x_3 = l___regBuiltin_Nat_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1187____closed__2; +x_2 = l___regBuiltin_Nat_reduceSucc_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_559____closed__1; +x_3 = l___regBuiltin_Nat_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1144____closed__2; x_4 = 1; -x_5 = l___regBuiltin_Nat_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1187____closed__9; +x_5 = l___regBuiltin_Nat_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1144____closed__9; 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_Nat_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1191_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Nat_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1148_(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_Nat_reduceSucc_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_604____closed__1; -x_3 = l___regBuiltin_Nat_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1187____closed__2; +x_2 = l___regBuiltin_Nat_reduceSucc_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_561____closed__1; +x_3 = l___regBuiltin_Nat_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1144____closed__2; x_4 = 1; -x_5 = l___regBuiltin_Nat_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1187____closed__9; +x_5 = l___regBuiltin_Nat_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1144____closed__9; x_6 = l_Lean_Meta_Simp_addSimprocBuiltinAttrCore(x_2, x_3, x_4, x_5, x_1); return x_6; } @@ -7822,7 +7736,7 @@ lean_dec(x_2); return x_11; } } -static lean_object* _init_l___regBuiltin_Nat_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1261____closed__1() { +static lean_object* _init_l___regBuiltin_Nat_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1218____closed__1() { _start: { lean_object* x_1; @@ -7830,17 +7744,17 @@ x_1 = lean_mk_string_from_bytes("isValue", 7); return x_1; } } -static lean_object* _init_l___regBuiltin_Nat_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1261____closed__2() { +static lean_object* _init_l___regBuiltin_Nat_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1218____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Nat_reduceSucc___closed__1; -x_2 = l___regBuiltin_Nat_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1261____closed__1; +x_2 = l___regBuiltin_Nat_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1218____closed__1; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Nat_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1261____closed__3() { +static lean_object* _init_l___regBuiltin_Nat_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1218____closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -7852,47 +7766,47 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Nat_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1261____closed__4() { +static lean_object* _init_l___regBuiltin_Nat_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1218____closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Nat_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1066____closed__4; -x_2 = l___regBuiltin_Nat_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1261____closed__3; +x_1 = l___regBuiltin_Nat_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1023____closed__4; +x_2 = l___regBuiltin_Nat_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1218____closed__3; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Nat_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1261____closed__5() { +static lean_object* _init_l___regBuiltin_Nat_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1218____closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Nat_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1261____closed__4; -x_2 = l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_640____closed__5; +x_1 = l___regBuiltin_Nat_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1218____closed__4; +x_2 = l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_597____closed__5; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Nat_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1261____closed__6() { +static lean_object* _init_l___regBuiltin_Nat_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1218____closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Nat_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1261____closed__5; +x_1 = l___regBuiltin_Nat_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1218____closed__5; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Nat_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1261____closed__7() { +static lean_object* _init_l___regBuiltin_Nat_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1218____closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Nat_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1261____closed__6; +x_1 = l___regBuiltin_Nat_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1218____closed__6; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Nat_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1261____closed__8() { +static lean_object* _init_l___regBuiltin_Nat_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1218____closed__8() { _start: { lean_object* x_1; @@ -7900,30 +7814,31 @@ x_1 = lean_alloc_closure((void*)(l_Nat_isValue), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_Nat_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1261_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Nat_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1218_(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_Nat_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1261____closed__2; -x_3 = l___regBuiltin_Nat_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1261____closed__7; -x_4 = l___regBuiltin_Nat_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1261____closed__8; +x_2 = l___regBuiltin_Nat_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1218____closed__2; +x_3 = l___regBuiltin_Nat_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1218____closed__7; +x_4 = l___regBuiltin_Nat_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1218____closed__8; x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); return x_5; } } -LEAN_EXPORT lean_object* l___regBuiltin_Nat_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1263_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Nat_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1220_(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_Nat_reduceSucc_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_604____closed__1; -x_3 = l___regBuiltin_Nat_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1261____closed__2; +x_2 = l___regBuiltin_Nat_reduceSucc_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_561____closed__1; +x_3 = l___regBuiltin_Nat_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1218____closed__2; x_4 = 1; -x_5 = l___regBuiltin_Nat_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1261____closed__8; +x_5 = l___regBuiltin_Nat_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1218____closed__8; x_6 = l_Lean_Meta_Simp_addSimprocBuiltinAttrCore(x_2, x_3, x_4, x_5, x_1); return x_6; } } lean_object* initialize_Init_Simproc(uint8_t builtin, lean_object*); +lean_object* initialize_Lean_Meta_LitValues(uint8_t builtin, lean_object*); lean_object* initialize_Lean_Meta_Offset(uint8_t builtin, lean_object*); lean_object* initialize_Lean_Meta_Tactic_Simp_Simproc(uint8_t builtin, lean_object*); lean_object* initialize_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Util(uint8_t builtin, lean_object*); @@ -7935,6 +7850,9 @@ _G_initialized = true; res = initialize_Init_Simproc(builtin, lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +res = initialize_Lean_Meta_LitValues(builtin, lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); res = initialize_Lean_Meta_Offset(builtin, lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); @@ -7974,31 +7892,31 @@ l_Nat_reduceSucc___closed__2 = _init_l_Nat_reduceSucc___closed__2(); lean_mark_persistent(l_Nat_reduceSucc___closed__2); l_Nat_reduceSucc___closed__3 = _init_l_Nat_reduceSucc___closed__3(); lean_mark_persistent(l_Nat_reduceSucc___closed__3); -l___regBuiltin_Nat_reduceSucc_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_600____closed__1 = _init_l___regBuiltin_Nat_reduceSucc_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_600____closed__1(); -lean_mark_persistent(l___regBuiltin_Nat_reduceSucc_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_600____closed__1); -l___regBuiltin_Nat_reduceSucc_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_600____closed__2 = _init_l___regBuiltin_Nat_reduceSucc_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_600____closed__2(); -lean_mark_persistent(l___regBuiltin_Nat_reduceSucc_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_600____closed__2); -l___regBuiltin_Nat_reduceSucc_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_600____closed__3 = _init_l___regBuiltin_Nat_reduceSucc_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_600____closed__3(); -lean_mark_persistent(l___regBuiltin_Nat_reduceSucc_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_600____closed__3); -l___regBuiltin_Nat_reduceSucc_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_600____closed__4 = _init_l___regBuiltin_Nat_reduceSucc_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_600____closed__4(); -lean_mark_persistent(l___regBuiltin_Nat_reduceSucc_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_600____closed__4); -l___regBuiltin_Nat_reduceSucc_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_600____closed__5 = _init_l___regBuiltin_Nat_reduceSucc_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_600____closed__5(); -lean_mark_persistent(l___regBuiltin_Nat_reduceSucc_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_600____closed__5); -l___regBuiltin_Nat_reduceSucc_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_600____closed__6 = _init_l___regBuiltin_Nat_reduceSucc_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_600____closed__6(); -lean_mark_persistent(l___regBuiltin_Nat_reduceSucc_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_600____closed__6); -l___regBuiltin_Nat_reduceSucc_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_600____closed__7 = _init_l___regBuiltin_Nat_reduceSucc_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_600____closed__7(); -lean_mark_persistent(l___regBuiltin_Nat_reduceSucc_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_600____closed__7); -if (builtin) {res = l___regBuiltin_Nat_reduceSucc_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_600_(lean_io_mk_world()); +l___regBuiltin_Nat_reduceSucc_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_557____closed__1 = _init_l___regBuiltin_Nat_reduceSucc_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_557____closed__1(); +lean_mark_persistent(l___regBuiltin_Nat_reduceSucc_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_557____closed__1); +l___regBuiltin_Nat_reduceSucc_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_557____closed__2 = _init_l___regBuiltin_Nat_reduceSucc_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_557____closed__2(); +lean_mark_persistent(l___regBuiltin_Nat_reduceSucc_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_557____closed__2); +l___regBuiltin_Nat_reduceSucc_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_557____closed__3 = _init_l___regBuiltin_Nat_reduceSucc_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_557____closed__3(); +lean_mark_persistent(l___regBuiltin_Nat_reduceSucc_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_557____closed__3); +l___regBuiltin_Nat_reduceSucc_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_557____closed__4 = _init_l___regBuiltin_Nat_reduceSucc_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_557____closed__4(); +lean_mark_persistent(l___regBuiltin_Nat_reduceSucc_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_557____closed__4); +l___regBuiltin_Nat_reduceSucc_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_557____closed__5 = _init_l___regBuiltin_Nat_reduceSucc_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_557____closed__5(); +lean_mark_persistent(l___regBuiltin_Nat_reduceSucc_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_557____closed__5); +l___regBuiltin_Nat_reduceSucc_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_557____closed__6 = _init_l___regBuiltin_Nat_reduceSucc_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_557____closed__6(); +lean_mark_persistent(l___regBuiltin_Nat_reduceSucc_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_557____closed__6); +l___regBuiltin_Nat_reduceSucc_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_557____closed__7 = _init_l___regBuiltin_Nat_reduceSucc_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_557____closed__7(); +lean_mark_persistent(l___regBuiltin_Nat_reduceSucc_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_557____closed__7); +if (builtin) {res = l___regBuiltin_Nat_reduceSucc_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_557_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}l___regBuiltin_Nat_reduceSucc_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_602____closed__1 = _init_l___regBuiltin_Nat_reduceSucc_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_602____closed__1(); -lean_mark_persistent(l___regBuiltin_Nat_reduceSucc_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_602____closed__1); -if (builtin) {res = l___regBuiltin_Nat_reduceSucc_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_602_(lean_io_mk_world()); +}l___regBuiltin_Nat_reduceSucc_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_559____closed__1 = _init_l___regBuiltin_Nat_reduceSucc_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_559____closed__1(); +lean_mark_persistent(l___regBuiltin_Nat_reduceSucc_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_559____closed__1); +if (builtin) {res = l___regBuiltin_Nat_reduceSucc_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_559_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}l___regBuiltin_Nat_reduceSucc_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_604____closed__1 = _init_l___regBuiltin_Nat_reduceSucc_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_604____closed__1(); -lean_mark_persistent(l___regBuiltin_Nat_reduceSucc_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_604____closed__1); -if (builtin) {res = l___regBuiltin_Nat_reduceSucc_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_604_(lean_io_mk_world()); +}l___regBuiltin_Nat_reduceSucc_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_561____closed__1 = _init_l___regBuiltin_Nat_reduceSucc_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_561____closed__1(); +lean_mark_persistent(l___regBuiltin_Nat_reduceSucc_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_561____closed__1); +if (builtin) {res = l___regBuiltin_Nat_reduceSucc_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_561_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); }l_Nat_reduceAdd___closed__1 = _init_l_Nat_reduceAdd___closed__1(); @@ -8007,41 +7925,41 @@ l_Nat_reduceAdd___closed__2 = _init_l_Nat_reduceAdd___closed__2(); lean_mark_persistent(l_Nat_reduceAdd___closed__2); l_Nat_reduceAdd___closed__3 = _init_l_Nat_reduceAdd___closed__3(); lean_mark_persistent(l_Nat_reduceAdd___closed__3); -l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_640____closed__1 = _init_l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_640____closed__1(); -lean_mark_persistent(l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_640____closed__1); -l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_640____closed__2 = _init_l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_640____closed__2(); -lean_mark_persistent(l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_640____closed__2); -l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_640____closed__3 = _init_l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_640____closed__3(); -lean_mark_persistent(l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_640____closed__3); -l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_640____closed__4 = _init_l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_640____closed__4(); -lean_mark_persistent(l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_640____closed__4); -l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_640____closed__5 = _init_l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_640____closed__5(); -lean_mark_persistent(l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_640____closed__5); -l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_640____closed__6 = _init_l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_640____closed__6(); -lean_mark_persistent(l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_640____closed__6); -l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_640____closed__7 = _init_l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_640____closed__7(); -lean_mark_persistent(l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_640____closed__7); -l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_640____closed__8 = _init_l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_640____closed__8(); -lean_mark_persistent(l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_640____closed__8); -l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_640____closed__9 = _init_l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_640____closed__9(); -lean_mark_persistent(l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_640____closed__9); -l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_640____closed__10 = _init_l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_640____closed__10(); -lean_mark_persistent(l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_640____closed__10); -l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_640____closed__11 = _init_l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_640____closed__11(); -lean_mark_persistent(l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_640____closed__11); -l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_640____closed__12 = _init_l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_640____closed__12(); -lean_mark_persistent(l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_640____closed__12); -l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_640____closed__13 = _init_l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_640____closed__13(); -lean_mark_persistent(l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_640____closed__13); -l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_640____closed__14 = _init_l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_640____closed__14(); -lean_mark_persistent(l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_640____closed__14); -if (builtin) {res = l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_640_(lean_io_mk_world()); +l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_597____closed__1 = _init_l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_597____closed__1(); +lean_mark_persistent(l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_597____closed__1); +l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_597____closed__2 = _init_l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_597____closed__2(); +lean_mark_persistent(l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_597____closed__2); +l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_597____closed__3 = _init_l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_597____closed__3(); +lean_mark_persistent(l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_597____closed__3); +l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_597____closed__4 = _init_l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_597____closed__4(); +lean_mark_persistent(l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_597____closed__4); +l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_597____closed__5 = _init_l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_597____closed__5(); +lean_mark_persistent(l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_597____closed__5); +l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_597____closed__6 = _init_l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_597____closed__6(); +lean_mark_persistent(l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_597____closed__6); +l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_597____closed__7 = _init_l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_597____closed__7(); +lean_mark_persistent(l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_597____closed__7); +l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_597____closed__8 = _init_l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_597____closed__8(); +lean_mark_persistent(l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_597____closed__8); +l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_597____closed__9 = _init_l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_597____closed__9(); +lean_mark_persistent(l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_597____closed__9); +l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_597____closed__10 = _init_l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_597____closed__10(); +lean_mark_persistent(l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_597____closed__10); +l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_597____closed__11 = _init_l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_597____closed__11(); +lean_mark_persistent(l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_597____closed__11); +l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_597____closed__12 = _init_l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_597____closed__12(); +lean_mark_persistent(l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_597____closed__12); +l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_597____closed__13 = _init_l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_597____closed__13(); +lean_mark_persistent(l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_597____closed__13); +l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_597____closed__14 = _init_l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_597____closed__14(); +lean_mark_persistent(l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_597____closed__14); +if (builtin) {res = l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_597_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_642_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_599_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_644_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_Nat_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_601_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); }l_Nat_reduceMul___closed__1 = _init_l_Nat_reduceMul___closed__1(); @@ -8050,35 +7968,35 @@ l_Nat_reduceMul___closed__2 = _init_l_Nat_reduceMul___closed__2(); lean_mark_persistent(l_Nat_reduceMul___closed__2); l_Nat_reduceMul___closed__3 = _init_l_Nat_reduceMul___closed__3(); lean_mark_persistent(l_Nat_reduceMul___closed__3); -l___regBuiltin_Nat_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_680____closed__1 = _init_l___regBuiltin_Nat_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_680____closed__1(); -lean_mark_persistent(l___regBuiltin_Nat_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_680____closed__1); -l___regBuiltin_Nat_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_680____closed__2 = _init_l___regBuiltin_Nat_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_680____closed__2(); -lean_mark_persistent(l___regBuiltin_Nat_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_680____closed__2); -l___regBuiltin_Nat_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_680____closed__3 = _init_l___regBuiltin_Nat_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_680____closed__3(); -lean_mark_persistent(l___regBuiltin_Nat_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_680____closed__3); -l___regBuiltin_Nat_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_680____closed__4 = _init_l___regBuiltin_Nat_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_680____closed__4(); -lean_mark_persistent(l___regBuiltin_Nat_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_680____closed__4); -l___regBuiltin_Nat_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_680____closed__5 = _init_l___regBuiltin_Nat_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_680____closed__5(); -lean_mark_persistent(l___regBuiltin_Nat_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_680____closed__5); -l___regBuiltin_Nat_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_680____closed__6 = _init_l___regBuiltin_Nat_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_680____closed__6(); -lean_mark_persistent(l___regBuiltin_Nat_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_680____closed__6); -l___regBuiltin_Nat_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_680____closed__7 = _init_l___regBuiltin_Nat_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_680____closed__7(); -lean_mark_persistent(l___regBuiltin_Nat_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_680____closed__7); -l___regBuiltin_Nat_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_680____closed__8 = _init_l___regBuiltin_Nat_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_680____closed__8(); -lean_mark_persistent(l___regBuiltin_Nat_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_680____closed__8); -l___regBuiltin_Nat_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_680____closed__9 = _init_l___regBuiltin_Nat_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_680____closed__9(); -lean_mark_persistent(l___regBuiltin_Nat_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_680____closed__9); -l___regBuiltin_Nat_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_680____closed__10 = _init_l___regBuiltin_Nat_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_680____closed__10(); -lean_mark_persistent(l___regBuiltin_Nat_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_680____closed__10); -l___regBuiltin_Nat_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_680____closed__11 = _init_l___regBuiltin_Nat_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_680____closed__11(); -lean_mark_persistent(l___regBuiltin_Nat_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_680____closed__11); -if (builtin) {res = l___regBuiltin_Nat_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_680_(lean_io_mk_world()); +l___regBuiltin_Nat_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_637____closed__1 = _init_l___regBuiltin_Nat_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_637____closed__1(); +lean_mark_persistent(l___regBuiltin_Nat_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_637____closed__1); +l___regBuiltin_Nat_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_637____closed__2 = _init_l___regBuiltin_Nat_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_637____closed__2(); +lean_mark_persistent(l___regBuiltin_Nat_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_637____closed__2); +l___regBuiltin_Nat_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_637____closed__3 = _init_l___regBuiltin_Nat_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_637____closed__3(); +lean_mark_persistent(l___regBuiltin_Nat_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_637____closed__3); +l___regBuiltin_Nat_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_637____closed__4 = _init_l___regBuiltin_Nat_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_637____closed__4(); +lean_mark_persistent(l___regBuiltin_Nat_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_637____closed__4); +l___regBuiltin_Nat_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_637____closed__5 = _init_l___regBuiltin_Nat_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_637____closed__5(); +lean_mark_persistent(l___regBuiltin_Nat_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_637____closed__5); +l___regBuiltin_Nat_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_637____closed__6 = _init_l___regBuiltin_Nat_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_637____closed__6(); +lean_mark_persistent(l___regBuiltin_Nat_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_637____closed__6); +l___regBuiltin_Nat_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_637____closed__7 = _init_l___regBuiltin_Nat_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_637____closed__7(); +lean_mark_persistent(l___regBuiltin_Nat_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_637____closed__7); +l___regBuiltin_Nat_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_637____closed__8 = _init_l___regBuiltin_Nat_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_637____closed__8(); +lean_mark_persistent(l___regBuiltin_Nat_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_637____closed__8); +l___regBuiltin_Nat_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_637____closed__9 = _init_l___regBuiltin_Nat_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_637____closed__9(); +lean_mark_persistent(l___regBuiltin_Nat_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_637____closed__9); +l___regBuiltin_Nat_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_637____closed__10 = _init_l___regBuiltin_Nat_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_637____closed__10(); +lean_mark_persistent(l___regBuiltin_Nat_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_637____closed__10); +l___regBuiltin_Nat_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_637____closed__11 = _init_l___regBuiltin_Nat_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_637____closed__11(); +lean_mark_persistent(l___regBuiltin_Nat_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_637____closed__11); +if (builtin) {res = l___regBuiltin_Nat_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_637_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Nat_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_682_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_Nat_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_639_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Nat_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_684_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_Nat_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_641_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); }l_Nat_reduceSub___closed__1 = _init_l_Nat_reduceSub___closed__1(); @@ -8087,35 +8005,35 @@ l_Nat_reduceSub___closed__2 = _init_l_Nat_reduceSub___closed__2(); lean_mark_persistent(l_Nat_reduceSub___closed__2); l_Nat_reduceSub___closed__3 = _init_l_Nat_reduceSub___closed__3(); lean_mark_persistent(l_Nat_reduceSub___closed__3); -l___regBuiltin_Nat_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_720____closed__1 = _init_l___regBuiltin_Nat_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_720____closed__1(); -lean_mark_persistent(l___regBuiltin_Nat_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_720____closed__1); -l___regBuiltin_Nat_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_720____closed__2 = _init_l___regBuiltin_Nat_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_720____closed__2(); -lean_mark_persistent(l___regBuiltin_Nat_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_720____closed__2); -l___regBuiltin_Nat_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_720____closed__3 = _init_l___regBuiltin_Nat_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_720____closed__3(); -lean_mark_persistent(l___regBuiltin_Nat_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_720____closed__3); -l___regBuiltin_Nat_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_720____closed__4 = _init_l___regBuiltin_Nat_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_720____closed__4(); -lean_mark_persistent(l___regBuiltin_Nat_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_720____closed__4); -l___regBuiltin_Nat_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_720____closed__5 = _init_l___regBuiltin_Nat_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_720____closed__5(); -lean_mark_persistent(l___regBuiltin_Nat_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_720____closed__5); -l___regBuiltin_Nat_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_720____closed__6 = _init_l___regBuiltin_Nat_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_720____closed__6(); -lean_mark_persistent(l___regBuiltin_Nat_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_720____closed__6); -l___regBuiltin_Nat_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_720____closed__7 = _init_l___regBuiltin_Nat_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_720____closed__7(); -lean_mark_persistent(l___regBuiltin_Nat_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_720____closed__7); -l___regBuiltin_Nat_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_720____closed__8 = _init_l___regBuiltin_Nat_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_720____closed__8(); -lean_mark_persistent(l___regBuiltin_Nat_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_720____closed__8); -l___regBuiltin_Nat_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_720____closed__9 = _init_l___regBuiltin_Nat_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_720____closed__9(); -lean_mark_persistent(l___regBuiltin_Nat_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_720____closed__9); -l___regBuiltin_Nat_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_720____closed__10 = _init_l___regBuiltin_Nat_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_720____closed__10(); -lean_mark_persistent(l___regBuiltin_Nat_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_720____closed__10); -l___regBuiltin_Nat_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_720____closed__11 = _init_l___regBuiltin_Nat_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_720____closed__11(); -lean_mark_persistent(l___regBuiltin_Nat_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_720____closed__11); -if (builtin) {res = l___regBuiltin_Nat_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_720_(lean_io_mk_world()); +l___regBuiltin_Nat_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_677____closed__1 = _init_l___regBuiltin_Nat_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_677____closed__1(); +lean_mark_persistent(l___regBuiltin_Nat_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_677____closed__1); +l___regBuiltin_Nat_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_677____closed__2 = _init_l___regBuiltin_Nat_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_677____closed__2(); +lean_mark_persistent(l___regBuiltin_Nat_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_677____closed__2); +l___regBuiltin_Nat_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_677____closed__3 = _init_l___regBuiltin_Nat_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_677____closed__3(); +lean_mark_persistent(l___regBuiltin_Nat_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_677____closed__3); +l___regBuiltin_Nat_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_677____closed__4 = _init_l___regBuiltin_Nat_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_677____closed__4(); +lean_mark_persistent(l___regBuiltin_Nat_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_677____closed__4); +l___regBuiltin_Nat_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_677____closed__5 = _init_l___regBuiltin_Nat_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_677____closed__5(); +lean_mark_persistent(l___regBuiltin_Nat_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_677____closed__5); +l___regBuiltin_Nat_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_677____closed__6 = _init_l___regBuiltin_Nat_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_677____closed__6(); +lean_mark_persistent(l___regBuiltin_Nat_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_677____closed__6); +l___regBuiltin_Nat_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_677____closed__7 = _init_l___regBuiltin_Nat_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_677____closed__7(); +lean_mark_persistent(l___regBuiltin_Nat_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_677____closed__7); +l___regBuiltin_Nat_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_677____closed__8 = _init_l___regBuiltin_Nat_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_677____closed__8(); +lean_mark_persistent(l___regBuiltin_Nat_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_677____closed__8); +l___regBuiltin_Nat_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_677____closed__9 = _init_l___regBuiltin_Nat_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_677____closed__9(); +lean_mark_persistent(l___regBuiltin_Nat_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_677____closed__9); +l___regBuiltin_Nat_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_677____closed__10 = _init_l___regBuiltin_Nat_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_677____closed__10(); +lean_mark_persistent(l___regBuiltin_Nat_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_677____closed__10); +l___regBuiltin_Nat_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_677____closed__11 = _init_l___regBuiltin_Nat_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_677____closed__11(); +lean_mark_persistent(l___regBuiltin_Nat_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_677____closed__11); +if (builtin) {res = l___regBuiltin_Nat_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_677_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Nat_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_722_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_Nat_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_679_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Nat_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_724_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_Nat_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_681_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); }l_Nat_reduceDiv___closed__1 = _init_l_Nat_reduceDiv___closed__1(); @@ -8124,35 +8042,35 @@ l_Nat_reduceDiv___closed__2 = _init_l_Nat_reduceDiv___closed__2(); lean_mark_persistent(l_Nat_reduceDiv___closed__2); l_Nat_reduceDiv___closed__3 = _init_l_Nat_reduceDiv___closed__3(); lean_mark_persistent(l_Nat_reduceDiv___closed__3); -l___regBuiltin_Nat_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_760____closed__1 = _init_l___regBuiltin_Nat_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_760____closed__1(); -lean_mark_persistent(l___regBuiltin_Nat_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_760____closed__1); -l___regBuiltin_Nat_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_760____closed__2 = _init_l___regBuiltin_Nat_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_760____closed__2(); -lean_mark_persistent(l___regBuiltin_Nat_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_760____closed__2); -l___regBuiltin_Nat_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_760____closed__3 = _init_l___regBuiltin_Nat_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_760____closed__3(); -lean_mark_persistent(l___regBuiltin_Nat_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_760____closed__3); -l___regBuiltin_Nat_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_760____closed__4 = _init_l___regBuiltin_Nat_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_760____closed__4(); -lean_mark_persistent(l___regBuiltin_Nat_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_760____closed__4); -l___regBuiltin_Nat_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_760____closed__5 = _init_l___regBuiltin_Nat_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_760____closed__5(); -lean_mark_persistent(l___regBuiltin_Nat_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_760____closed__5); -l___regBuiltin_Nat_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_760____closed__6 = _init_l___regBuiltin_Nat_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_760____closed__6(); -lean_mark_persistent(l___regBuiltin_Nat_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_760____closed__6); -l___regBuiltin_Nat_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_760____closed__7 = _init_l___regBuiltin_Nat_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_760____closed__7(); -lean_mark_persistent(l___regBuiltin_Nat_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_760____closed__7); -l___regBuiltin_Nat_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_760____closed__8 = _init_l___regBuiltin_Nat_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_760____closed__8(); -lean_mark_persistent(l___regBuiltin_Nat_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_760____closed__8); -l___regBuiltin_Nat_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_760____closed__9 = _init_l___regBuiltin_Nat_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_760____closed__9(); -lean_mark_persistent(l___regBuiltin_Nat_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_760____closed__9); -l___regBuiltin_Nat_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_760____closed__10 = _init_l___regBuiltin_Nat_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_760____closed__10(); -lean_mark_persistent(l___regBuiltin_Nat_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_760____closed__10); -l___regBuiltin_Nat_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_760____closed__11 = _init_l___regBuiltin_Nat_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_760____closed__11(); -lean_mark_persistent(l___regBuiltin_Nat_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_760____closed__11); -if (builtin) {res = l___regBuiltin_Nat_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_760_(lean_io_mk_world()); +l___regBuiltin_Nat_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_717____closed__1 = _init_l___regBuiltin_Nat_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_717____closed__1(); +lean_mark_persistent(l___regBuiltin_Nat_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_717____closed__1); +l___regBuiltin_Nat_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_717____closed__2 = _init_l___regBuiltin_Nat_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_717____closed__2(); +lean_mark_persistent(l___regBuiltin_Nat_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_717____closed__2); +l___regBuiltin_Nat_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_717____closed__3 = _init_l___regBuiltin_Nat_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_717____closed__3(); +lean_mark_persistent(l___regBuiltin_Nat_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_717____closed__3); +l___regBuiltin_Nat_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_717____closed__4 = _init_l___regBuiltin_Nat_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_717____closed__4(); +lean_mark_persistent(l___regBuiltin_Nat_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_717____closed__4); +l___regBuiltin_Nat_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_717____closed__5 = _init_l___regBuiltin_Nat_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_717____closed__5(); +lean_mark_persistent(l___regBuiltin_Nat_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_717____closed__5); +l___regBuiltin_Nat_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_717____closed__6 = _init_l___regBuiltin_Nat_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_717____closed__6(); +lean_mark_persistent(l___regBuiltin_Nat_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_717____closed__6); +l___regBuiltin_Nat_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_717____closed__7 = _init_l___regBuiltin_Nat_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_717____closed__7(); +lean_mark_persistent(l___regBuiltin_Nat_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_717____closed__7); +l___regBuiltin_Nat_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_717____closed__8 = _init_l___regBuiltin_Nat_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_717____closed__8(); +lean_mark_persistent(l___regBuiltin_Nat_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_717____closed__8); +l___regBuiltin_Nat_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_717____closed__9 = _init_l___regBuiltin_Nat_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_717____closed__9(); +lean_mark_persistent(l___regBuiltin_Nat_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_717____closed__9); +l___regBuiltin_Nat_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_717____closed__10 = _init_l___regBuiltin_Nat_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_717____closed__10(); +lean_mark_persistent(l___regBuiltin_Nat_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_717____closed__10); +l___regBuiltin_Nat_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_717____closed__11 = _init_l___regBuiltin_Nat_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_717____closed__11(); +lean_mark_persistent(l___regBuiltin_Nat_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_717____closed__11); +if (builtin) {res = l___regBuiltin_Nat_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_717_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Nat_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_762_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_Nat_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_719_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Nat_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_764_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_Nat_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_721_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); }l_Nat_reduceMod___closed__1 = _init_l_Nat_reduceMod___closed__1(); @@ -8161,35 +8079,35 @@ l_Nat_reduceMod___closed__2 = _init_l_Nat_reduceMod___closed__2(); lean_mark_persistent(l_Nat_reduceMod___closed__2); l_Nat_reduceMod___closed__3 = _init_l_Nat_reduceMod___closed__3(); lean_mark_persistent(l_Nat_reduceMod___closed__3); -l___regBuiltin_Nat_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_800____closed__1 = _init_l___regBuiltin_Nat_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_800____closed__1(); -lean_mark_persistent(l___regBuiltin_Nat_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_800____closed__1); -l___regBuiltin_Nat_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_800____closed__2 = _init_l___regBuiltin_Nat_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_800____closed__2(); -lean_mark_persistent(l___regBuiltin_Nat_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_800____closed__2); -l___regBuiltin_Nat_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_800____closed__3 = _init_l___regBuiltin_Nat_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_800____closed__3(); -lean_mark_persistent(l___regBuiltin_Nat_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_800____closed__3); -l___regBuiltin_Nat_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_800____closed__4 = _init_l___regBuiltin_Nat_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_800____closed__4(); -lean_mark_persistent(l___regBuiltin_Nat_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_800____closed__4); -l___regBuiltin_Nat_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_800____closed__5 = _init_l___regBuiltin_Nat_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_800____closed__5(); -lean_mark_persistent(l___regBuiltin_Nat_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_800____closed__5); -l___regBuiltin_Nat_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_800____closed__6 = _init_l___regBuiltin_Nat_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_800____closed__6(); -lean_mark_persistent(l___regBuiltin_Nat_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_800____closed__6); -l___regBuiltin_Nat_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_800____closed__7 = _init_l___regBuiltin_Nat_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_800____closed__7(); -lean_mark_persistent(l___regBuiltin_Nat_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_800____closed__7); -l___regBuiltin_Nat_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_800____closed__8 = _init_l___regBuiltin_Nat_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_800____closed__8(); -lean_mark_persistent(l___regBuiltin_Nat_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_800____closed__8); -l___regBuiltin_Nat_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_800____closed__9 = _init_l___regBuiltin_Nat_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_800____closed__9(); -lean_mark_persistent(l___regBuiltin_Nat_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_800____closed__9); -l___regBuiltin_Nat_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_800____closed__10 = _init_l___regBuiltin_Nat_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_800____closed__10(); -lean_mark_persistent(l___regBuiltin_Nat_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_800____closed__10); -l___regBuiltin_Nat_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_800____closed__11 = _init_l___regBuiltin_Nat_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_800____closed__11(); -lean_mark_persistent(l___regBuiltin_Nat_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_800____closed__11); -if (builtin) {res = l___regBuiltin_Nat_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_800_(lean_io_mk_world()); +l___regBuiltin_Nat_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_757____closed__1 = _init_l___regBuiltin_Nat_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_757____closed__1(); +lean_mark_persistent(l___regBuiltin_Nat_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_757____closed__1); +l___regBuiltin_Nat_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_757____closed__2 = _init_l___regBuiltin_Nat_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_757____closed__2(); +lean_mark_persistent(l___regBuiltin_Nat_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_757____closed__2); +l___regBuiltin_Nat_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_757____closed__3 = _init_l___regBuiltin_Nat_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_757____closed__3(); +lean_mark_persistent(l___regBuiltin_Nat_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_757____closed__3); +l___regBuiltin_Nat_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_757____closed__4 = _init_l___regBuiltin_Nat_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_757____closed__4(); +lean_mark_persistent(l___regBuiltin_Nat_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_757____closed__4); +l___regBuiltin_Nat_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_757____closed__5 = _init_l___regBuiltin_Nat_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_757____closed__5(); +lean_mark_persistent(l___regBuiltin_Nat_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_757____closed__5); +l___regBuiltin_Nat_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_757____closed__6 = _init_l___regBuiltin_Nat_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_757____closed__6(); +lean_mark_persistent(l___regBuiltin_Nat_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_757____closed__6); +l___regBuiltin_Nat_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_757____closed__7 = _init_l___regBuiltin_Nat_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_757____closed__7(); +lean_mark_persistent(l___regBuiltin_Nat_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_757____closed__7); +l___regBuiltin_Nat_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_757____closed__8 = _init_l___regBuiltin_Nat_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_757____closed__8(); +lean_mark_persistent(l___regBuiltin_Nat_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_757____closed__8); +l___regBuiltin_Nat_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_757____closed__9 = _init_l___regBuiltin_Nat_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_757____closed__9(); +lean_mark_persistent(l___regBuiltin_Nat_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_757____closed__9); +l___regBuiltin_Nat_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_757____closed__10 = _init_l___regBuiltin_Nat_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_757____closed__10(); +lean_mark_persistent(l___regBuiltin_Nat_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_757____closed__10); +l___regBuiltin_Nat_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_757____closed__11 = _init_l___regBuiltin_Nat_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_757____closed__11(); +lean_mark_persistent(l___regBuiltin_Nat_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_757____closed__11); +if (builtin) {res = l___regBuiltin_Nat_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_757_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Nat_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_802_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_Nat_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_759_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Nat_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_804_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_Nat_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_761_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); }l_Nat_reducePow___closed__1 = _init_l_Nat_reducePow___closed__1(); @@ -8198,64 +8116,64 @@ l_Nat_reducePow___closed__2 = _init_l_Nat_reducePow___closed__2(); lean_mark_persistent(l_Nat_reducePow___closed__2); l_Nat_reducePow___closed__3 = _init_l_Nat_reducePow___closed__3(); lean_mark_persistent(l_Nat_reducePow___closed__3); -l___regBuiltin_Nat_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_840____closed__1 = _init_l___regBuiltin_Nat_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_840____closed__1(); -lean_mark_persistent(l___regBuiltin_Nat_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_840____closed__1); -l___regBuiltin_Nat_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_840____closed__2 = _init_l___regBuiltin_Nat_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_840____closed__2(); -lean_mark_persistent(l___regBuiltin_Nat_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_840____closed__2); -l___regBuiltin_Nat_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_840____closed__3 = _init_l___regBuiltin_Nat_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_840____closed__3(); -lean_mark_persistent(l___regBuiltin_Nat_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_840____closed__3); -l___regBuiltin_Nat_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_840____closed__4 = _init_l___regBuiltin_Nat_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_840____closed__4(); -lean_mark_persistent(l___regBuiltin_Nat_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_840____closed__4); -l___regBuiltin_Nat_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_840____closed__5 = _init_l___regBuiltin_Nat_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_840____closed__5(); -lean_mark_persistent(l___regBuiltin_Nat_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_840____closed__5); -l___regBuiltin_Nat_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_840____closed__6 = _init_l___regBuiltin_Nat_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_840____closed__6(); -lean_mark_persistent(l___regBuiltin_Nat_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_840____closed__6); -l___regBuiltin_Nat_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_840____closed__7 = _init_l___regBuiltin_Nat_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_840____closed__7(); -lean_mark_persistent(l___regBuiltin_Nat_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_840____closed__7); -l___regBuiltin_Nat_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_840____closed__8 = _init_l___regBuiltin_Nat_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_840____closed__8(); -lean_mark_persistent(l___regBuiltin_Nat_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_840____closed__8); -l___regBuiltin_Nat_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_840____closed__9 = _init_l___regBuiltin_Nat_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_840____closed__9(); -lean_mark_persistent(l___regBuiltin_Nat_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_840____closed__9); -l___regBuiltin_Nat_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_840____closed__10 = _init_l___regBuiltin_Nat_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_840____closed__10(); -lean_mark_persistent(l___regBuiltin_Nat_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_840____closed__10); -l___regBuiltin_Nat_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_840____closed__11 = _init_l___regBuiltin_Nat_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_840____closed__11(); -lean_mark_persistent(l___regBuiltin_Nat_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_840____closed__11); -if (builtin) {res = l___regBuiltin_Nat_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_840_(lean_io_mk_world()); +l___regBuiltin_Nat_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_797____closed__1 = _init_l___regBuiltin_Nat_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_797____closed__1(); +lean_mark_persistent(l___regBuiltin_Nat_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_797____closed__1); +l___regBuiltin_Nat_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_797____closed__2 = _init_l___regBuiltin_Nat_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_797____closed__2(); +lean_mark_persistent(l___regBuiltin_Nat_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_797____closed__2); +l___regBuiltin_Nat_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_797____closed__3 = _init_l___regBuiltin_Nat_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_797____closed__3(); +lean_mark_persistent(l___regBuiltin_Nat_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_797____closed__3); +l___regBuiltin_Nat_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_797____closed__4 = _init_l___regBuiltin_Nat_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_797____closed__4(); +lean_mark_persistent(l___regBuiltin_Nat_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_797____closed__4); +l___regBuiltin_Nat_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_797____closed__5 = _init_l___regBuiltin_Nat_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_797____closed__5(); +lean_mark_persistent(l___regBuiltin_Nat_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_797____closed__5); +l___regBuiltin_Nat_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_797____closed__6 = _init_l___regBuiltin_Nat_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_797____closed__6(); +lean_mark_persistent(l___regBuiltin_Nat_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_797____closed__6); +l___regBuiltin_Nat_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_797____closed__7 = _init_l___regBuiltin_Nat_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_797____closed__7(); +lean_mark_persistent(l___regBuiltin_Nat_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_797____closed__7); +l___regBuiltin_Nat_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_797____closed__8 = _init_l___regBuiltin_Nat_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_797____closed__8(); +lean_mark_persistent(l___regBuiltin_Nat_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_797____closed__8); +l___regBuiltin_Nat_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_797____closed__9 = _init_l___regBuiltin_Nat_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_797____closed__9(); +lean_mark_persistent(l___regBuiltin_Nat_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_797____closed__9); +l___regBuiltin_Nat_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_797____closed__10 = _init_l___regBuiltin_Nat_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_797____closed__10(); +lean_mark_persistent(l___regBuiltin_Nat_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_797____closed__10); +l___regBuiltin_Nat_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_797____closed__11 = _init_l___regBuiltin_Nat_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_797____closed__11(); +lean_mark_persistent(l___regBuiltin_Nat_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_797____closed__11); +if (builtin) {res = l___regBuiltin_Nat_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_797_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Nat_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_842_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_Nat_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_799_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Nat_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_844_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_Nat_reducePow_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_801_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); }l_Nat_reduceGcd___closed__1 = _init_l_Nat_reduceGcd___closed__1(); lean_mark_persistent(l_Nat_reduceGcd___closed__1); l_Nat_reduceGcd___closed__2 = _init_l_Nat_reduceGcd___closed__2(); lean_mark_persistent(l_Nat_reduceGcd___closed__2); -l___regBuiltin_Nat_reduceGcd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_861____closed__1 = _init_l___regBuiltin_Nat_reduceGcd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_861____closed__1(); -lean_mark_persistent(l___regBuiltin_Nat_reduceGcd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_861____closed__1); -l___regBuiltin_Nat_reduceGcd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_861____closed__2 = _init_l___regBuiltin_Nat_reduceGcd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_861____closed__2(); -lean_mark_persistent(l___regBuiltin_Nat_reduceGcd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_861____closed__2); -l___regBuiltin_Nat_reduceGcd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_861____closed__3 = _init_l___regBuiltin_Nat_reduceGcd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_861____closed__3(); -lean_mark_persistent(l___regBuiltin_Nat_reduceGcd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_861____closed__3); -l___regBuiltin_Nat_reduceGcd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_861____closed__4 = _init_l___regBuiltin_Nat_reduceGcd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_861____closed__4(); -lean_mark_persistent(l___regBuiltin_Nat_reduceGcd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_861____closed__4); -l___regBuiltin_Nat_reduceGcd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_861____closed__5 = _init_l___regBuiltin_Nat_reduceGcd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_861____closed__5(); -lean_mark_persistent(l___regBuiltin_Nat_reduceGcd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_861____closed__5); -l___regBuiltin_Nat_reduceGcd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_861____closed__6 = _init_l___regBuiltin_Nat_reduceGcd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_861____closed__6(); -lean_mark_persistent(l___regBuiltin_Nat_reduceGcd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_861____closed__6); -l___regBuiltin_Nat_reduceGcd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_861____closed__7 = _init_l___regBuiltin_Nat_reduceGcd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_861____closed__7(); -lean_mark_persistent(l___regBuiltin_Nat_reduceGcd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_861____closed__7); -l___regBuiltin_Nat_reduceGcd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_861____closed__8 = _init_l___regBuiltin_Nat_reduceGcd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_861____closed__8(); -lean_mark_persistent(l___regBuiltin_Nat_reduceGcd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_861____closed__8); -if (builtin) {res = l___regBuiltin_Nat_reduceGcd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_861_(lean_io_mk_world()); +l___regBuiltin_Nat_reduceGcd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_818____closed__1 = _init_l___regBuiltin_Nat_reduceGcd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_818____closed__1(); +lean_mark_persistent(l___regBuiltin_Nat_reduceGcd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_818____closed__1); +l___regBuiltin_Nat_reduceGcd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_818____closed__2 = _init_l___regBuiltin_Nat_reduceGcd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_818____closed__2(); +lean_mark_persistent(l___regBuiltin_Nat_reduceGcd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_818____closed__2); +l___regBuiltin_Nat_reduceGcd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_818____closed__3 = _init_l___regBuiltin_Nat_reduceGcd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_818____closed__3(); +lean_mark_persistent(l___regBuiltin_Nat_reduceGcd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_818____closed__3); +l___regBuiltin_Nat_reduceGcd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_818____closed__4 = _init_l___regBuiltin_Nat_reduceGcd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_818____closed__4(); +lean_mark_persistent(l___regBuiltin_Nat_reduceGcd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_818____closed__4); +l___regBuiltin_Nat_reduceGcd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_818____closed__5 = _init_l___regBuiltin_Nat_reduceGcd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_818____closed__5(); +lean_mark_persistent(l___regBuiltin_Nat_reduceGcd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_818____closed__5); +l___regBuiltin_Nat_reduceGcd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_818____closed__6 = _init_l___regBuiltin_Nat_reduceGcd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_818____closed__6(); +lean_mark_persistent(l___regBuiltin_Nat_reduceGcd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_818____closed__6); +l___regBuiltin_Nat_reduceGcd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_818____closed__7 = _init_l___regBuiltin_Nat_reduceGcd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_818____closed__7(); +lean_mark_persistent(l___regBuiltin_Nat_reduceGcd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_818____closed__7); +l___regBuiltin_Nat_reduceGcd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_818____closed__8 = _init_l___regBuiltin_Nat_reduceGcd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_818____closed__8(); +lean_mark_persistent(l___regBuiltin_Nat_reduceGcd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_818____closed__8); +if (builtin) {res = l___regBuiltin_Nat_reduceGcd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_818_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Nat_reduceGcd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_863_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_Nat_reduceGcd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_820_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Nat_reduceGcd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_865_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_Nat_reduceGcd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_822_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); }l_Nat_reduceLT___closed__1 = _init_l_Nat_reduceLT___closed__1(); @@ -8264,33 +8182,33 @@ l_Nat_reduceLT___closed__2 = _init_l_Nat_reduceLT___closed__2(); lean_mark_persistent(l_Nat_reduceLT___closed__2); l_Nat_reduceLT___closed__3 = _init_l_Nat_reduceLT___closed__3(); lean_mark_persistent(l_Nat_reduceLT___closed__3); -l___regBuiltin_Nat_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_902____closed__1 = _init_l___regBuiltin_Nat_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_902____closed__1(); -lean_mark_persistent(l___regBuiltin_Nat_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_902____closed__1); -l___regBuiltin_Nat_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_902____closed__2 = _init_l___regBuiltin_Nat_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_902____closed__2(); -lean_mark_persistent(l___regBuiltin_Nat_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_902____closed__2); -l___regBuiltin_Nat_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_902____closed__3 = _init_l___regBuiltin_Nat_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_902____closed__3(); -lean_mark_persistent(l___regBuiltin_Nat_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_902____closed__3); -l___regBuiltin_Nat_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_902____closed__4 = _init_l___regBuiltin_Nat_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_902____closed__4(); -lean_mark_persistent(l___regBuiltin_Nat_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_902____closed__4); -l___regBuiltin_Nat_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_902____closed__5 = _init_l___regBuiltin_Nat_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_902____closed__5(); -lean_mark_persistent(l___regBuiltin_Nat_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_902____closed__5); -l___regBuiltin_Nat_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_902____closed__6 = _init_l___regBuiltin_Nat_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_902____closed__6(); -lean_mark_persistent(l___regBuiltin_Nat_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_902____closed__6); -l___regBuiltin_Nat_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_902____closed__7 = _init_l___regBuiltin_Nat_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_902____closed__7(); -lean_mark_persistent(l___regBuiltin_Nat_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_902____closed__7); -l___regBuiltin_Nat_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_902____closed__8 = _init_l___regBuiltin_Nat_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_902____closed__8(); -lean_mark_persistent(l___regBuiltin_Nat_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_902____closed__8); -l___regBuiltin_Nat_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_902____closed__9 = _init_l___regBuiltin_Nat_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_902____closed__9(); -lean_mark_persistent(l___regBuiltin_Nat_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_902____closed__9); -l___regBuiltin_Nat_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_902____closed__10 = _init_l___regBuiltin_Nat_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_902____closed__10(); -lean_mark_persistent(l___regBuiltin_Nat_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_902____closed__10); -if (builtin) {res = l___regBuiltin_Nat_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_902_(lean_io_mk_world()); +l___regBuiltin_Nat_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_859____closed__1 = _init_l___regBuiltin_Nat_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_859____closed__1(); +lean_mark_persistent(l___regBuiltin_Nat_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_859____closed__1); +l___regBuiltin_Nat_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_859____closed__2 = _init_l___regBuiltin_Nat_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_859____closed__2(); +lean_mark_persistent(l___regBuiltin_Nat_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_859____closed__2); +l___regBuiltin_Nat_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_859____closed__3 = _init_l___regBuiltin_Nat_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_859____closed__3(); +lean_mark_persistent(l___regBuiltin_Nat_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_859____closed__3); +l___regBuiltin_Nat_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_859____closed__4 = _init_l___regBuiltin_Nat_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_859____closed__4(); +lean_mark_persistent(l___regBuiltin_Nat_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_859____closed__4); +l___regBuiltin_Nat_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_859____closed__5 = _init_l___regBuiltin_Nat_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_859____closed__5(); +lean_mark_persistent(l___regBuiltin_Nat_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_859____closed__5); +l___regBuiltin_Nat_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_859____closed__6 = _init_l___regBuiltin_Nat_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_859____closed__6(); +lean_mark_persistent(l___regBuiltin_Nat_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_859____closed__6); +l___regBuiltin_Nat_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_859____closed__7 = _init_l___regBuiltin_Nat_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_859____closed__7(); +lean_mark_persistent(l___regBuiltin_Nat_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_859____closed__7); +l___regBuiltin_Nat_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_859____closed__8 = _init_l___regBuiltin_Nat_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_859____closed__8(); +lean_mark_persistent(l___regBuiltin_Nat_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_859____closed__8); +l___regBuiltin_Nat_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_859____closed__9 = _init_l___regBuiltin_Nat_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_859____closed__9(); +lean_mark_persistent(l___regBuiltin_Nat_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_859____closed__9); +l___regBuiltin_Nat_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_859____closed__10 = _init_l___regBuiltin_Nat_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_859____closed__10(); +lean_mark_persistent(l___regBuiltin_Nat_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_859____closed__10); +if (builtin) {res = l___regBuiltin_Nat_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_859_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Nat_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_904_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_Nat_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_861_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Nat_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_906_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_Nat_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_863_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); }l_Nat_reduceLE___closed__1 = _init_l_Nat_reduceLE___closed__1(); @@ -8299,31 +8217,31 @@ l_Nat_reduceLE___closed__2 = _init_l_Nat_reduceLE___closed__2(); lean_mark_persistent(l_Nat_reduceLE___closed__2); l_Nat_reduceLE___closed__3 = _init_l_Nat_reduceLE___closed__3(); lean_mark_persistent(l_Nat_reduceLE___closed__3); -l___regBuiltin_Nat_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_943____closed__1 = _init_l___regBuiltin_Nat_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_943____closed__1(); -lean_mark_persistent(l___regBuiltin_Nat_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_943____closed__1); -l___regBuiltin_Nat_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_943____closed__2 = _init_l___regBuiltin_Nat_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_943____closed__2(); -lean_mark_persistent(l___regBuiltin_Nat_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_943____closed__2); -l___regBuiltin_Nat_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_943____closed__3 = _init_l___regBuiltin_Nat_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_943____closed__3(); -lean_mark_persistent(l___regBuiltin_Nat_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_943____closed__3); -l___regBuiltin_Nat_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_943____closed__4 = _init_l___regBuiltin_Nat_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_943____closed__4(); -lean_mark_persistent(l___regBuiltin_Nat_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_943____closed__4); -l___regBuiltin_Nat_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_943____closed__5 = _init_l___regBuiltin_Nat_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_943____closed__5(); -lean_mark_persistent(l___regBuiltin_Nat_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_943____closed__5); -l___regBuiltin_Nat_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_943____closed__6 = _init_l___regBuiltin_Nat_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_943____closed__6(); -lean_mark_persistent(l___regBuiltin_Nat_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_943____closed__6); -l___regBuiltin_Nat_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_943____closed__7 = _init_l___regBuiltin_Nat_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_943____closed__7(); -lean_mark_persistent(l___regBuiltin_Nat_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_943____closed__7); -l___regBuiltin_Nat_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_943____closed__8 = _init_l___regBuiltin_Nat_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_943____closed__8(); -lean_mark_persistent(l___regBuiltin_Nat_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_943____closed__8); -l___regBuiltin_Nat_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_943____closed__9 = _init_l___regBuiltin_Nat_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_943____closed__9(); -lean_mark_persistent(l___regBuiltin_Nat_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_943____closed__9); -if (builtin) {res = l___regBuiltin_Nat_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_943_(lean_io_mk_world()); +l___regBuiltin_Nat_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_900____closed__1 = _init_l___regBuiltin_Nat_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_900____closed__1(); +lean_mark_persistent(l___regBuiltin_Nat_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_900____closed__1); +l___regBuiltin_Nat_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_900____closed__2 = _init_l___regBuiltin_Nat_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_900____closed__2(); +lean_mark_persistent(l___regBuiltin_Nat_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_900____closed__2); +l___regBuiltin_Nat_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_900____closed__3 = _init_l___regBuiltin_Nat_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_900____closed__3(); +lean_mark_persistent(l___regBuiltin_Nat_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_900____closed__3); +l___regBuiltin_Nat_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_900____closed__4 = _init_l___regBuiltin_Nat_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_900____closed__4(); +lean_mark_persistent(l___regBuiltin_Nat_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_900____closed__4); +l___regBuiltin_Nat_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_900____closed__5 = _init_l___regBuiltin_Nat_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_900____closed__5(); +lean_mark_persistent(l___regBuiltin_Nat_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_900____closed__5); +l___regBuiltin_Nat_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_900____closed__6 = _init_l___regBuiltin_Nat_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_900____closed__6(); +lean_mark_persistent(l___regBuiltin_Nat_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_900____closed__6); +l___regBuiltin_Nat_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_900____closed__7 = _init_l___regBuiltin_Nat_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_900____closed__7(); +lean_mark_persistent(l___regBuiltin_Nat_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_900____closed__7); +l___regBuiltin_Nat_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_900____closed__8 = _init_l___regBuiltin_Nat_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_900____closed__8(); +lean_mark_persistent(l___regBuiltin_Nat_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_900____closed__8); +l___regBuiltin_Nat_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_900____closed__9 = _init_l___regBuiltin_Nat_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_900____closed__9(); +lean_mark_persistent(l___regBuiltin_Nat_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_900____closed__9); +if (builtin) {res = l___regBuiltin_Nat_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_900_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Nat_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_945_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_Nat_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_902_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Nat_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_947_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_Nat_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_904_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); }l_Nat_reduceGT___closed__1 = _init_l_Nat_reduceGT___closed__1(); @@ -8332,19 +8250,19 @@ l_Nat_reduceGT___closed__2 = _init_l_Nat_reduceGT___closed__2(); lean_mark_persistent(l_Nat_reduceGT___closed__2); l_Nat_reduceGT___closed__3 = _init_l_Nat_reduceGT___closed__3(); lean_mark_persistent(l_Nat_reduceGT___closed__3); -l___regBuiltin_Nat_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_984____closed__1 = _init_l___regBuiltin_Nat_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_984____closed__1(); -lean_mark_persistent(l___regBuiltin_Nat_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_984____closed__1); -l___regBuiltin_Nat_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_984____closed__2 = _init_l___regBuiltin_Nat_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_984____closed__2(); -lean_mark_persistent(l___regBuiltin_Nat_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_984____closed__2); -l___regBuiltin_Nat_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_984____closed__3 = _init_l___regBuiltin_Nat_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_984____closed__3(); -lean_mark_persistent(l___regBuiltin_Nat_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_984____closed__3); -if (builtin) {res = l___regBuiltin_Nat_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_984_(lean_io_mk_world()); +l___regBuiltin_Nat_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_941____closed__1 = _init_l___regBuiltin_Nat_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_941____closed__1(); +lean_mark_persistent(l___regBuiltin_Nat_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_941____closed__1); +l___regBuiltin_Nat_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_941____closed__2 = _init_l___regBuiltin_Nat_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_941____closed__2(); +lean_mark_persistent(l___regBuiltin_Nat_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_941____closed__2); +l___regBuiltin_Nat_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_941____closed__3 = _init_l___regBuiltin_Nat_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_941____closed__3(); +lean_mark_persistent(l___regBuiltin_Nat_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_941____closed__3); +if (builtin) {res = l___regBuiltin_Nat_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_941_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Nat_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_986_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_Nat_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_943_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Nat_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_988_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_Nat_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_945_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); }l_Nat_reduceGE___closed__1 = _init_l_Nat_reduceGE___closed__1(); @@ -8353,85 +8271,85 @@ l_Nat_reduceGE___closed__2 = _init_l_Nat_reduceGE___closed__2(); lean_mark_persistent(l_Nat_reduceGE___closed__2); l_Nat_reduceGE___closed__3 = _init_l_Nat_reduceGE___closed__3(); lean_mark_persistent(l_Nat_reduceGE___closed__3); -l___regBuiltin_Nat_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1025____closed__1 = _init_l___regBuiltin_Nat_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1025____closed__1(); -lean_mark_persistent(l___regBuiltin_Nat_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1025____closed__1); -l___regBuiltin_Nat_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1025____closed__2 = _init_l___regBuiltin_Nat_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1025____closed__2(); -lean_mark_persistent(l___regBuiltin_Nat_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1025____closed__2); -l___regBuiltin_Nat_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1025____closed__3 = _init_l___regBuiltin_Nat_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1025____closed__3(); -lean_mark_persistent(l___regBuiltin_Nat_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1025____closed__3); -if (builtin) {res = l___regBuiltin_Nat_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1025_(lean_io_mk_world()); +l___regBuiltin_Nat_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_982____closed__1 = _init_l___regBuiltin_Nat_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_982____closed__1(); +lean_mark_persistent(l___regBuiltin_Nat_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_982____closed__1); +l___regBuiltin_Nat_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_982____closed__2 = _init_l___regBuiltin_Nat_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_982____closed__2(); +lean_mark_persistent(l___regBuiltin_Nat_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_982____closed__2); +l___regBuiltin_Nat_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_982____closed__3 = _init_l___regBuiltin_Nat_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_982____closed__3(); +lean_mark_persistent(l___regBuiltin_Nat_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_982____closed__3); +if (builtin) {res = l___regBuiltin_Nat_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_982_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Nat_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1027_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_Nat_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_984_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Nat_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1029_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_Nat_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_986_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); }l_Nat_reduceEq___closed__1 = _init_l_Nat_reduceEq___closed__1(); lean_mark_persistent(l_Nat_reduceEq___closed__1); l_Nat_reduceEq___closed__2 = _init_l_Nat_reduceEq___closed__2(); lean_mark_persistent(l_Nat_reduceEq___closed__2); -l___regBuiltin_Nat_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1066____closed__1 = _init_l___regBuiltin_Nat_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1066____closed__1(); -lean_mark_persistent(l___regBuiltin_Nat_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1066____closed__1); -l___regBuiltin_Nat_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1066____closed__2 = _init_l___regBuiltin_Nat_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1066____closed__2(); -lean_mark_persistent(l___regBuiltin_Nat_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1066____closed__2); -l___regBuiltin_Nat_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1066____closed__3 = _init_l___regBuiltin_Nat_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1066____closed__3(); -lean_mark_persistent(l___regBuiltin_Nat_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1066____closed__3); -l___regBuiltin_Nat_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1066____closed__4 = _init_l___regBuiltin_Nat_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1066____closed__4(); -lean_mark_persistent(l___regBuiltin_Nat_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1066____closed__4); -l___regBuiltin_Nat_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1066____closed__5 = _init_l___regBuiltin_Nat_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1066____closed__5(); -lean_mark_persistent(l___regBuiltin_Nat_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1066____closed__5); -l___regBuiltin_Nat_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1066____closed__6 = _init_l___regBuiltin_Nat_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1066____closed__6(); -lean_mark_persistent(l___regBuiltin_Nat_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1066____closed__6); -l___regBuiltin_Nat_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1066____closed__7 = _init_l___regBuiltin_Nat_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1066____closed__7(); -lean_mark_persistent(l___regBuiltin_Nat_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1066____closed__7); -l___regBuiltin_Nat_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1066____closed__8 = _init_l___regBuiltin_Nat_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1066____closed__8(); -lean_mark_persistent(l___regBuiltin_Nat_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1066____closed__8); -l___regBuiltin_Nat_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1066____closed__9 = _init_l___regBuiltin_Nat_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1066____closed__9(); -lean_mark_persistent(l___regBuiltin_Nat_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1066____closed__9); -if (builtin) {res = l___regBuiltin_Nat_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1066_(lean_io_mk_world()); +l___regBuiltin_Nat_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1023____closed__1 = _init_l___regBuiltin_Nat_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1023____closed__1(); +lean_mark_persistent(l___regBuiltin_Nat_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1023____closed__1); +l___regBuiltin_Nat_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1023____closed__2 = _init_l___regBuiltin_Nat_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1023____closed__2(); +lean_mark_persistent(l___regBuiltin_Nat_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1023____closed__2); +l___regBuiltin_Nat_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1023____closed__3 = _init_l___regBuiltin_Nat_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1023____closed__3(); +lean_mark_persistent(l___regBuiltin_Nat_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1023____closed__3); +l___regBuiltin_Nat_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1023____closed__4 = _init_l___regBuiltin_Nat_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1023____closed__4(); +lean_mark_persistent(l___regBuiltin_Nat_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1023____closed__4); +l___regBuiltin_Nat_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1023____closed__5 = _init_l___regBuiltin_Nat_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1023____closed__5(); +lean_mark_persistent(l___regBuiltin_Nat_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1023____closed__5); +l___regBuiltin_Nat_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1023____closed__6 = _init_l___regBuiltin_Nat_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1023____closed__6(); +lean_mark_persistent(l___regBuiltin_Nat_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1023____closed__6); +l___regBuiltin_Nat_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1023____closed__7 = _init_l___regBuiltin_Nat_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1023____closed__7(); +lean_mark_persistent(l___regBuiltin_Nat_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1023____closed__7); +l___regBuiltin_Nat_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1023____closed__8 = _init_l___regBuiltin_Nat_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1023____closed__8(); +lean_mark_persistent(l___regBuiltin_Nat_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1023____closed__8); +l___regBuiltin_Nat_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1023____closed__9 = _init_l___regBuiltin_Nat_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1023____closed__9(); +lean_mark_persistent(l___regBuiltin_Nat_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1023____closed__9); +if (builtin) {res = l___regBuiltin_Nat_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1023_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Nat_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1068_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_Nat_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1025_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Nat_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1070_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_Nat_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1027_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); }l_Nat_reduceNe___closed__1 = _init_l_Nat_reduceNe___closed__1(); lean_mark_persistent(l_Nat_reduceNe___closed__1); l_Nat_reduceNe___closed__2 = _init_l_Nat_reduceNe___closed__2(); lean_mark_persistent(l_Nat_reduceNe___closed__2); -l___regBuiltin_Nat_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1106____closed__1 = _init_l___regBuiltin_Nat_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1106____closed__1(); -lean_mark_persistent(l___regBuiltin_Nat_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1106____closed__1); -l___regBuiltin_Nat_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1106____closed__2 = _init_l___regBuiltin_Nat_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1106____closed__2(); -lean_mark_persistent(l___regBuiltin_Nat_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1106____closed__2); -l___regBuiltin_Nat_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1106____closed__3 = _init_l___regBuiltin_Nat_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1106____closed__3(); -lean_mark_persistent(l___regBuiltin_Nat_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1106____closed__3); -l___regBuiltin_Nat_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1106____closed__4 = _init_l___regBuiltin_Nat_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1106____closed__4(); -lean_mark_persistent(l___regBuiltin_Nat_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1106____closed__4); -l___regBuiltin_Nat_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1106____closed__5 = _init_l___regBuiltin_Nat_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1106____closed__5(); -lean_mark_persistent(l___regBuiltin_Nat_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1106____closed__5); -l___regBuiltin_Nat_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1106____closed__6 = _init_l___regBuiltin_Nat_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1106____closed__6(); -lean_mark_persistent(l___regBuiltin_Nat_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1106____closed__6); -l___regBuiltin_Nat_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1106____closed__7 = _init_l___regBuiltin_Nat_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1106____closed__7(); -lean_mark_persistent(l___regBuiltin_Nat_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1106____closed__7); -l___regBuiltin_Nat_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1106____closed__8 = _init_l___regBuiltin_Nat_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1106____closed__8(); -lean_mark_persistent(l___regBuiltin_Nat_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1106____closed__8); -l___regBuiltin_Nat_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1106____closed__9 = _init_l___regBuiltin_Nat_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1106____closed__9(); -lean_mark_persistent(l___regBuiltin_Nat_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1106____closed__9); -l___regBuiltin_Nat_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1106____closed__10 = _init_l___regBuiltin_Nat_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1106____closed__10(); -lean_mark_persistent(l___regBuiltin_Nat_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1106____closed__10); -l___regBuiltin_Nat_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1106____closed__11 = _init_l___regBuiltin_Nat_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1106____closed__11(); -lean_mark_persistent(l___regBuiltin_Nat_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1106____closed__11); -if (builtin) {res = l___regBuiltin_Nat_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1106_(lean_io_mk_world()); +l___regBuiltin_Nat_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1063____closed__1 = _init_l___regBuiltin_Nat_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1063____closed__1(); +lean_mark_persistent(l___regBuiltin_Nat_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1063____closed__1); +l___regBuiltin_Nat_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1063____closed__2 = _init_l___regBuiltin_Nat_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1063____closed__2(); +lean_mark_persistent(l___regBuiltin_Nat_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1063____closed__2); +l___regBuiltin_Nat_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1063____closed__3 = _init_l___regBuiltin_Nat_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1063____closed__3(); +lean_mark_persistent(l___regBuiltin_Nat_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1063____closed__3); +l___regBuiltin_Nat_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1063____closed__4 = _init_l___regBuiltin_Nat_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1063____closed__4(); +lean_mark_persistent(l___regBuiltin_Nat_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1063____closed__4); +l___regBuiltin_Nat_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1063____closed__5 = _init_l___regBuiltin_Nat_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1063____closed__5(); +lean_mark_persistent(l___regBuiltin_Nat_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1063____closed__5); +l___regBuiltin_Nat_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1063____closed__6 = _init_l___regBuiltin_Nat_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1063____closed__6(); +lean_mark_persistent(l___regBuiltin_Nat_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1063____closed__6); +l___regBuiltin_Nat_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1063____closed__7 = _init_l___regBuiltin_Nat_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1063____closed__7(); +lean_mark_persistent(l___regBuiltin_Nat_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1063____closed__7); +l___regBuiltin_Nat_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1063____closed__8 = _init_l___regBuiltin_Nat_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1063____closed__8(); +lean_mark_persistent(l___regBuiltin_Nat_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1063____closed__8); +l___regBuiltin_Nat_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1063____closed__9 = _init_l___regBuiltin_Nat_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1063____closed__9(); +lean_mark_persistent(l___regBuiltin_Nat_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1063____closed__9); +l___regBuiltin_Nat_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1063____closed__10 = _init_l___regBuiltin_Nat_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1063____closed__10(); +lean_mark_persistent(l___regBuiltin_Nat_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1063____closed__10); +l___regBuiltin_Nat_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1063____closed__11 = _init_l___regBuiltin_Nat_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1063____closed__11(); +lean_mark_persistent(l___regBuiltin_Nat_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1063____closed__11); +if (builtin) {res = l___regBuiltin_Nat_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1063_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Nat_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1108_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_Nat_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1065_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Nat_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1110_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_Nat_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1067_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); }l_Nat_reduceBEq___closed__1 = _init_l_Nat_reduceBEq___closed__1(); @@ -8440,62 +8358,62 @@ l_Nat_reduceBEq___closed__2 = _init_l_Nat_reduceBEq___closed__2(); lean_mark_persistent(l_Nat_reduceBEq___closed__2); l_Nat_reduceBEq___closed__3 = _init_l_Nat_reduceBEq___closed__3(); lean_mark_persistent(l_Nat_reduceBEq___closed__3); -l___regBuiltin_Nat_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1147____closed__1 = _init_l___regBuiltin_Nat_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1147____closed__1(); -lean_mark_persistent(l___regBuiltin_Nat_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1147____closed__1); -l___regBuiltin_Nat_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1147____closed__2 = _init_l___regBuiltin_Nat_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1147____closed__2(); -lean_mark_persistent(l___regBuiltin_Nat_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1147____closed__2); -l___regBuiltin_Nat_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1147____closed__3 = _init_l___regBuiltin_Nat_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1147____closed__3(); -lean_mark_persistent(l___regBuiltin_Nat_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1147____closed__3); -l___regBuiltin_Nat_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1147____closed__4 = _init_l___regBuiltin_Nat_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1147____closed__4(); -lean_mark_persistent(l___regBuiltin_Nat_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1147____closed__4); -l___regBuiltin_Nat_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1147____closed__5 = _init_l___regBuiltin_Nat_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1147____closed__5(); -lean_mark_persistent(l___regBuiltin_Nat_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1147____closed__5); -l___regBuiltin_Nat_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1147____closed__6 = _init_l___regBuiltin_Nat_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1147____closed__6(); -lean_mark_persistent(l___regBuiltin_Nat_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1147____closed__6); -l___regBuiltin_Nat_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1147____closed__7 = _init_l___regBuiltin_Nat_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1147____closed__7(); -lean_mark_persistent(l___regBuiltin_Nat_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1147____closed__7); -l___regBuiltin_Nat_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1147____closed__8 = _init_l___regBuiltin_Nat_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1147____closed__8(); -lean_mark_persistent(l___regBuiltin_Nat_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1147____closed__8); -l___regBuiltin_Nat_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1147____closed__9 = _init_l___regBuiltin_Nat_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1147____closed__9(); -lean_mark_persistent(l___regBuiltin_Nat_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1147____closed__9); -if (builtin) {res = l___regBuiltin_Nat_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1147_(lean_io_mk_world()); +l___regBuiltin_Nat_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1104____closed__1 = _init_l___regBuiltin_Nat_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1104____closed__1(); +lean_mark_persistent(l___regBuiltin_Nat_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1104____closed__1); +l___regBuiltin_Nat_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1104____closed__2 = _init_l___regBuiltin_Nat_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1104____closed__2(); +lean_mark_persistent(l___regBuiltin_Nat_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1104____closed__2); +l___regBuiltin_Nat_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1104____closed__3 = _init_l___regBuiltin_Nat_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1104____closed__3(); +lean_mark_persistent(l___regBuiltin_Nat_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1104____closed__3); +l___regBuiltin_Nat_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1104____closed__4 = _init_l___regBuiltin_Nat_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1104____closed__4(); +lean_mark_persistent(l___regBuiltin_Nat_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1104____closed__4); +l___regBuiltin_Nat_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1104____closed__5 = _init_l___regBuiltin_Nat_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1104____closed__5(); +lean_mark_persistent(l___regBuiltin_Nat_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1104____closed__5); +l___regBuiltin_Nat_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1104____closed__6 = _init_l___regBuiltin_Nat_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1104____closed__6(); +lean_mark_persistent(l___regBuiltin_Nat_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1104____closed__6); +l___regBuiltin_Nat_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1104____closed__7 = _init_l___regBuiltin_Nat_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1104____closed__7(); +lean_mark_persistent(l___regBuiltin_Nat_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1104____closed__7); +l___regBuiltin_Nat_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1104____closed__8 = _init_l___regBuiltin_Nat_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1104____closed__8(); +lean_mark_persistent(l___regBuiltin_Nat_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1104____closed__8); +l___regBuiltin_Nat_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1104____closed__9 = _init_l___regBuiltin_Nat_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1104____closed__9(); +lean_mark_persistent(l___regBuiltin_Nat_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1104____closed__9); +if (builtin) {res = l___regBuiltin_Nat_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1104_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Nat_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1149_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_Nat_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1106_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Nat_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1151_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_Nat_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1108_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); }l_Nat_reduceBNe___closed__1 = _init_l_Nat_reduceBNe___closed__1(); lean_mark_persistent(l_Nat_reduceBNe___closed__1); l_Nat_reduceBNe___closed__2 = _init_l_Nat_reduceBNe___closed__2(); lean_mark_persistent(l_Nat_reduceBNe___closed__2); -l___regBuiltin_Nat_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1187____closed__1 = _init_l___regBuiltin_Nat_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1187____closed__1(); -lean_mark_persistent(l___regBuiltin_Nat_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1187____closed__1); -l___regBuiltin_Nat_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1187____closed__2 = _init_l___regBuiltin_Nat_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1187____closed__2(); -lean_mark_persistent(l___regBuiltin_Nat_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1187____closed__2); -l___regBuiltin_Nat_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1187____closed__3 = _init_l___regBuiltin_Nat_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1187____closed__3(); -lean_mark_persistent(l___regBuiltin_Nat_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1187____closed__3); -l___regBuiltin_Nat_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1187____closed__4 = _init_l___regBuiltin_Nat_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1187____closed__4(); -lean_mark_persistent(l___regBuiltin_Nat_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1187____closed__4); -l___regBuiltin_Nat_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1187____closed__5 = _init_l___regBuiltin_Nat_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1187____closed__5(); -lean_mark_persistent(l___regBuiltin_Nat_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1187____closed__5); -l___regBuiltin_Nat_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1187____closed__6 = _init_l___regBuiltin_Nat_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1187____closed__6(); -lean_mark_persistent(l___regBuiltin_Nat_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1187____closed__6); -l___regBuiltin_Nat_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1187____closed__7 = _init_l___regBuiltin_Nat_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1187____closed__7(); -lean_mark_persistent(l___regBuiltin_Nat_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1187____closed__7); -l___regBuiltin_Nat_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1187____closed__8 = _init_l___regBuiltin_Nat_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1187____closed__8(); -lean_mark_persistent(l___regBuiltin_Nat_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1187____closed__8); -l___regBuiltin_Nat_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1187____closed__9 = _init_l___regBuiltin_Nat_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1187____closed__9(); -lean_mark_persistent(l___regBuiltin_Nat_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1187____closed__9); -if (builtin) {res = l___regBuiltin_Nat_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1187_(lean_io_mk_world()); +l___regBuiltin_Nat_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1144____closed__1 = _init_l___regBuiltin_Nat_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1144____closed__1(); +lean_mark_persistent(l___regBuiltin_Nat_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1144____closed__1); +l___regBuiltin_Nat_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1144____closed__2 = _init_l___regBuiltin_Nat_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1144____closed__2(); +lean_mark_persistent(l___regBuiltin_Nat_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1144____closed__2); +l___regBuiltin_Nat_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1144____closed__3 = _init_l___regBuiltin_Nat_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1144____closed__3(); +lean_mark_persistent(l___regBuiltin_Nat_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1144____closed__3); +l___regBuiltin_Nat_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1144____closed__4 = _init_l___regBuiltin_Nat_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1144____closed__4(); +lean_mark_persistent(l___regBuiltin_Nat_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1144____closed__4); +l___regBuiltin_Nat_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1144____closed__5 = _init_l___regBuiltin_Nat_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1144____closed__5(); +lean_mark_persistent(l___regBuiltin_Nat_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1144____closed__5); +l___regBuiltin_Nat_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1144____closed__6 = _init_l___regBuiltin_Nat_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1144____closed__6(); +lean_mark_persistent(l___regBuiltin_Nat_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1144____closed__6); +l___regBuiltin_Nat_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1144____closed__7 = _init_l___regBuiltin_Nat_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1144____closed__7(); +lean_mark_persistent(l___regBuiltin_Nat_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1144____closed__7); +l___regBuiltin_Nat_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1144____closed__8 = _init_l___regBuiltin_Nat_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1144____closed__8(); +lean_mark_persistent(l___regBuiltin_Nat_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1144____closed__8); +l___regBuiltin_Nat_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1144____closed__9 = _init_l___regBuiltin_Nat_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1144____closed__9(); +lean_mark_persistent(l___regBuiltin_Nat_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1144____closed__9); +if (builtin) {res = l___regBuiltin_Nat_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1144_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Nat_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1189_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_Nat_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1146_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Nat_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1191_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_Nat_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1148_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); }l_Nat_isValue___closed__1 = _init_l_Nat_isValue___closed__1(); @@ -8504,26 +8422,26 @@ l_Nat_isValue___closed__2 = _init_l_Nat_isValue___closed__2(); lean_mark_persistent(l_Nat_isValue___closed__2); l_Nat_isValue___closed__3 = _init_l_Nat_isValue___closed__3(); lean_mark_persistent(l_Nat_isValue___closed__3); -l___regBuiltin_Nat_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1261____closed__1 = _init_l___regBuiltin_Nat_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1261____closed__1(); -lean_mark_persistent(l___regBuiltin_Nat_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1261____closed__1); -l___regBuiltin_Nat_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1261____closed__2 = _init_l___regBuiltin_Nat_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1261____closed__2(); -lean_mark_persistent(l___regBuiltin_Nat_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1261____closed__2); -l___regBuiltin_Nat_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1261____closed__3 = _init_l___regBuiltin_Nat_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1261____closed__3(); -lean_mark_persistent(l___regBuiltin_Nat_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1261____closed__3); -l___regBuiltin_Nat_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1261____closed__4 = _init_l___regBuiltin_Nat_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1261____closed__4(); -lean_mark_persistent(l___regBuiltin_Nat_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1261____closed__4); -l___regBuiltin_Nat_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1261____closed__5 = _init_l___regBuiltin_Nat_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1261____closed__5(); -lean_mark_persistent(l___regBuiltin_Nat_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1261____closed__5); -l___regBuiltin_Nat_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1261____closed__6 = _init_l___regBuiltin_Nat_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1261____closed__6(); -lean_mark_persistent(l___regBuiltin_Nat_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1261____closed__6); -l___regBuiltin_Nat_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1261____closed__7 = _init_l___regBuiltin_Nat_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1261____closed__7(); -lean_mark_persistent(l___regBuiltin_Nat_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1261____closed__7); -l___regBuiltin_Nat_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1261____closed__8 = _init_l___regBuiltin_Nat_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1261____closed__8(); -lean_mark_persistent(l___regBuiltin_Nat_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1261____closed__8); -if (builtin) {res = l___regBuiltin_Nat_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1261_(lean_io_mk_world()); +l___regBuiltin_Nat_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1218____closed__1 = _init_l___regBuiltin_Nat_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1218____closed__1(); +lean_mark_persistent(l___regBuiltin_Nat_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1218____closed__1); +l___regBuiltin_Nat_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1218____closed__2 = _init_l___regBuiltin_Nat_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1218____closed__2(); +lean_mark_persistent(l___regBuiltin_Nat_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1218____closed__2); +l___regBuiltin_Nat_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1218____closed__3 = _init_l___regBuiltin_Nat_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1218____closed__3(); +lean_mark_persistent(l___regBuiltin_Nat_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1218____closed__3); +l___regBuiltin_Nat_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1218____closed__4 = _init_l___regBuiltin_Nat_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1218____closed__4(); +lean_mark_persistent(l___regBuiltin_Nat_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1218____closed__4); +l___regBuiltin_Nat_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1218____closed__5 = _init_l___regBuiltin_Nat_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1218____closed__5(); +lean_mark_persistent(l___regBuiltin_Nat_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1218____closed__5); +l___regBuiltin_Nat_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1218____closed__6 = _init_l___regBuiltin_Nat_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1218____closed__6(); +lean_mark_persistent(l___regBuiltin_Nat_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1218____closed__6); +l___regBuiltin_Nat_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1218____closed__7 = _init_l___regBuiltin_Nat_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1218____closed__7(); +lean_mark_persistent(l___regBuiltin_Nat_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1218____closed__7); +l___regBuiltin_Nat_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1218____closed__8 = _init_l___regBuiltin_Nat_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1218____closed__8(); +lean_mark_persistent(l___regBuiltin_Nat_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1218____closed__8); +if (builtin) {res = l___regBuiltin_Nat_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1218_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_Nat_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1263_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_Nat_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat___hyg_1220_(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)); diff --git a/stage0/stdlib/Lean/Meta/Tactic/Simp/BuiltinSimprocs/String.c b/stage0/stdlib/Lean/Meta/Tactic/Simp/BuiltinSimprocs/String.c index b95674f580..0088a79f01 100644 --- a/stage0/stdlib/Lean/Meta/Tactic/Simp/BuiltinSimprocs/String.c +++ b/stage0/stdlib/Lean/Meta/Tactic/Simp/BuiltinSimprocs/String.c @@ -1,6 +1,6 @@ // Lean compiler output // Module: Lean.Meta.Tactic.Simp.BuiltinSimprocs.String -// Imports: Init Lean.ToExpr Lean.Meta.Tactic.Simp.BuiltinSimprocs.Char +// Imports: Lean.ToExpr Lean.Meta.Tactic.Simp.BuiltinSimprocs.Char #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -13,124 +13,96 @@ #ifdef __cplusplus extern "C" { #endif -static lean_object* l___regBuiltin_String_reduceMk_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_479____closed__7; +lean_object* l_Lean_Meta_getCharValue_x3f(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String_0__String_reduceListChar___lambda__1___closed__3; lean_object* lean_mk_empty_array_with_capacity(lean_object*); -static lean_object* l___regBuiltin_String_reduceMk_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_479____closed__5; -static lean_object* l___regBuiltin_String_reduceMk_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_479____closed__4; +LEAN_EXPORT lean_object* l___regBuiltin_String_reduceMk_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_426_(lean_object*); +static lean_object* l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_171____closed__11; +static lean_object* l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_171____closed__8; +static lean_object* l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_171____closed__6; LEAN_EXPORT lean_object* l_String_reduceMk___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_String_reduceMk_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_479____closed__3; +static lean_object* l___regBuiltin_String_reduceMk_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_426____closed__7; +static lean_object* l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_171____closed__4; uint8_t l_Lean_Expr_isAppOfArity(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_228_(lean_object*); -static lean_object* l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_224____closed__10; +LEAN_EXPORT lean_object* l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_171_(lean_object*); lean_object* lean_array_push(lean_object*, lean_object*); +static lean_object* l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_171____closed__3; static lean_object* l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String_0__String_reduceListChar___closed__1; -static lean_object* l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_224____closed__2; -static lean_object* l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_228____closed__1; -lean_object* l_Char_fromExpr_x3f(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___regBuiltin_String_reduceMk_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_479____closed__2; +static lean_object* l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_171____closed__10; +static lean_object* l___regBuiltin_String_reduceMk_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_426____closed__5; LEAN_EXPORT lean_object* l_String_fromExpr_x3f___boxed(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_BuiltinSimprocs_String_0__String_reduceListChar___lambda__1___closed__1; -static lean_object* l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_224____closed__14; LEAN_EXPORT lean_object* l_String_fromExpr_x3f(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_BuiltinSimprocs_String_0__String_reduceListChar___closed__8; lean_object* l_Lean_stringToMessageData(lean_object*); -static lean_object* l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_224____closed__13; -static lean_object* l___regBuiltin_String_reduceMk_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_479____closed__1; +LEAN_EXPORT lean_object* l___regBuiltin_String_reduceMk_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_430_(lean_object*); lean_object* lean_string_push(lean_object*, uint32_t); lean_object* l_Lean_Expr_appArg_x21(lean_object*); +LEAN_EXPORT lean_object* l___regBuiltin_String_reduceMk_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_428_(lean_object*); static lean_object* l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String_0__String_reduceListChar___closed__2; +lean_object* l_Lean_Meta_getStringValue_x3f(lean_object*); lean_object* l_Lean_mkStrLit(lean_object*); +static lean_object* l___regBuiltin_String_reduceMk_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_426____closed__4; extern lean_object* l_Lean_Meta_Simp_builtinSimprocsRef; +static lean_object* l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_171____closed__7; static lean_object* l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String_0__String_reduceListChar___lambda__1___closed__5; -static lean_object* l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_224____closed__6; -LEAN_EXPORT lean_object* l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_226_(lean_object*); +static lean_object* l___regBuiltin_String_reduceMk_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_426____closed__3; +static lean_object* l___regBuiltin_String_reduceMk_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_426____closed__2; static lean_object* l_String_reduceMk___closed__1; +static lean_object* l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_171____closed__5; static lean_object* l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String_0__String_reduceListChar___closed__6; LEAN_EXPORT lean_object* l_String_reduceAppend___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_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_224____closed__4; static lean_object* l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String_0__String_reduceListChar___lambda__1___closed__4; 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___regBuiltin_String_reduceMk_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_481_(lean_object*); LEAN_EXPORT lean_object* l_String_reduceAppend___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_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_171____closed__2; static lean_object* l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String_0__String_reduceListChar___closed__7; -static lean_object* l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_224____closed__3; -static lean_object* l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_224____closed__11; lean_object* l_Lean_Name_str___override(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_String_reduceAppend(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_224____closed__9; -static lean_object* l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_224____closed__1; +static lean_object* l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_171____closed__13; +static lean_object* l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_171____closed__9; lean_object* l_Lean_Expr_appFn_x21(lean_object*); static lean_object* l_String_reduceAppend___closed__3; -static lean_object* l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_224____closed__15; static lean_object* l_String_reduceAppend___lambda__1___closed__1; lean_object* l_Lean_MessageData_ofExpr(lean_object*); static lean_object* l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String_0__String_reduceListChar___closed__5; LEAN_EXPORT lean_object* l_String_reduceMk(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_BuiltinSimprocs_String_0__String_reduceListChar___closed__4; +static lean_object* l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_171____closed__14; +LEAN_EXPORT lean_object* l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_175_(lean_object*); +static lean_object* l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_173____closed__1; lean_object* l_Lean_Meta_Simp_registerBuiltinSimproc(lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_224____closed__5; static lean_object* l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String_0__String_reduceListChar___closed__9; -static lean_object* l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_224____closed__12; +static lean_object* l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_171____closed__12; lean_object* l_Lean_Name_mkStr2(lean_object*, lean_object*); lean_object* l_Lean_Meta_Simp_addSimprocBuiltinAttrCore(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_224_(lean_object*); static lean_object* l_String_reduceAppend___closed__2; LEAN_EXPORT lean_object* l_String_reduceMk___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_String_reduceMk_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_479_(lean_object*); lean_object* l_Lean_addTrace___at_Lean_Meta_Simp_congrArgs___spec__2(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_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_226____closed__1; -static lean_object* l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_224____closed__7; -LEAN_EXPORT lean_object* l___regBuiltin_String_reduceMk_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_483_(lean_object*); -static lean_object* l___regBuiltin_String_reduceMk_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_479____closed__6; +static lean_object* l___regBuiltin_String_reduceMk_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_426____closed__1; +LEAN_EXPORT lean_object* l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_173_(lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String_0__String_reduceListChar___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_string_append(lean_object*, lean_object*); extern lean_object* l_Lean_Meta_Simp_builtinSEvalprocsRef; +static lean_object* l___regBuiltin_String_reduceMk_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_426____closed__6; static lean_object* l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String_0__String_reduceListChar___closed__3; static lean_object* l_String_reduceAppend___closed__1; +static lean_object* l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_171____closed__15; static lean_object* l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String_0__String_reduceListChar___lambda__1___closed__2; LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String_0__String_reduceListChar(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_String_reduceMk___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_String_reduceMk___closed__2; -static lean_object* l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_224____closed__8; +static lean_object* l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_175____closed__1; +static lean_object* l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_171____closed__1; LEAN_EXPORT lean_object* l_String_fromExpr_x3f(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: { -if (lean_obj_tag(x_1) == 9) -{ -lean_object* x_10; -x_10 = lean_ctor_get(x_1, 0); -if (lean_obj_tag(x_10) == 0) -{ -lean_object* x_11; lean_object* x_12; -x_11 = lean_box(0); -x_12 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_12, 0, x_11); -lean_ctor_set(x_12, 1, x_9); -return x_12; -} -else -{ -lean_object* x_13; lean_object* x_14; lean_object* x_15; -x_13 = lean_ctor_get(x_10, 0); -lean_inc(x_13); -x_14 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_14, 0, x_13); -x_15 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_15, 0, x_14); -lean_ctor_set(x_15, 1, x_9); -return x_15; -} -} -else -{ -lean_object* x_16; lean_object* x_17; -x_16 = lean_box(0); -x_17 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_17, 0, x_16); -lean_ctor_set(x_17, 1, x_9); -return x_17; -} +lean_object* x_10; lean_object* x_11; +x_10 = l_Lean_Meta_getStringValue_x3f(x_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; } } LEAN_EXPORT lean_object* l_String_fromExpr_x3f___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) { @@ -381,7 +353,7 @@ lean_dec(x_2); return x_11; } } -static lean_object* _init_l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_224____closed__1() { +static lean_object* _init_l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_171____closed__1() { _start: { lean_object* x_1; @@ -389,7 +361,7 @@ x_1 = lean_mk_string_from_bytes("String", 6); return x_1; } } -static lean_object* _init_l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_224____closed__2() { +static lean_object* _init_l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_171____closed__2() { _start: { lean_object* x_1; @@ -397,17 +369,17 @@ x_1 = lean_mk_string_from_bytes("reduceAppend", 12); return x_1; } } -static lean_object* _init_l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_224____closed__3() { +static lean_object* _init_l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_171____closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_224____closed__1; -x_2 = l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_224____closed__2; +x_1 = l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_171____closed__1; +x_2 = l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_171____closed__2; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_224____closed__4() { +static lean_object* _init_l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_171____closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -419,21 +391,21 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_224____closed__5() { +static lean_object* _init_l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_171____closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_224____closed__1; +x_2 = l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_171____closed__1; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_224____closed__6() { +static lean_object* _init_l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_171____closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_224____closed__5; +x_1 = l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_171____closed__5; x_2 = lean_unsigned_to_nat(0u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -441,7 +413,7 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_224____closed__7() { +static lean_object* _init_l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_171____closed__7() { _start: { lean_object* x_1; lean_object* x_2; @@ -450,77 +422,77 @@ x_2 = lean_mk_empty_array_with_capacity(x_1); return x_2; } } -static lean_object* _init_l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_224____closed__8() { +static lean_object* _init_l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_171____closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_224____closed__7; -x_2 = l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_224____closed__4; +x_1 = l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_171____closed__7; +x_2 = l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_171____closed__4; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_224____closed__9() { +static lean_object* _init_l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_171____closed__9() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_224____closed__8; -x_2 = l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_224____closed__6; +x_1 = l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_171____closed__8; +x_2 = l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_171____closed__6; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_224____closed__10() { +static lean_object* _init_l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_171____closed__10() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_224____closed__9; -x_2 = l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_224____closed__6; +x_1 = l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_171____closed__9; +x_2 = l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_171____closed__6; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_224____closed__11() { +static lean_object* _init_l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_171____closed__11() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_224____closed__10; -x_2 = l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_224____closed__6; +x_1 = l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_171____closed__10; +x_2 = l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_171____closed__6; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_224____closed__12() { +static lean_object* _init_l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_171____closed__12() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_224____closed__11; +x_1 = l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_171____closed__11; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_224____closed__13() { +static lean_object* _init_l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_171____closed__13() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_224____closed__12; +x_1 = l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_171____closed__12; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_224____closed__14() { +static lean_object* _init_l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_171____closed__14() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_224____closed__13; +x_1 = l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_171____closed__13; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_224____closed__15() { +static lean_object* _init_l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_171____closed__15() { _start: { lean_object* x_1; @@ -528,18 +500,18 @@ x_1 = lean_alloc_closure((void*)(l_String_reduceAppend), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_224_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_171_(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_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_224____closed__3; -x_3 = l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_224____closed__14; -x_4 = l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_224____closed__15; +x_2 = l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_171____closed__3; +x_3 = l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_171____closed__14; +x_4 = l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_171____closed__15; x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); return x_5; } } -static lean_object* _init_l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_226____closed__1() { +static lean_object* _init_l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_173____closed__1() { _start: { lean_object* x_1; @@ -547,19 +519,19 @@ x_1 = l_Lean_Meta_Simp_builtinSimprocsRef; return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_226_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_173_(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_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_226____closed__1; -x_3 = l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_224____closed__3; +x_2 = l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_173____closed__1; +x_3 = l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_171____closed__3; x_4 = 1; -x_5 = l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_224____closed__15; +x_5 = l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_171____closed__15; 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___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_228____closed__1() { +static lean_object* _init_l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_175____closed__1() { _start: { lean_object* x_1; @@ -567,14 +539,14 @@ x_1 = l_Lean_Meta_Simp_builtinSEvalprocsRef; return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_228_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_175_(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_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_228____closed__1; -x_3 = l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_224____closed__3; +x_2 = l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_175____closed__1; +x_3 = l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_171____closed__3; x_4 = 1; -x_5 = l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_224____closed__15; +x_5 = l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_171____closed__15; x_6 = l_Lean_Meta_Simp_addSimprocBuiltinAttrCore(x_2, x_3, x_4, x_5, x_1); return x_6; } @@ -665,7 +637,8 @@ lean_dec(x_20); lean_inc(x_10); lean_inc(x_9); lean_inc(x_8); -x_22 = l_Char_fromExpr_x3f(x_21, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +lean_inc(x_7); +x_22 = l_Lean_Meta_getCharValue_x3f(x_21, x_7, x_8, x_9, x_10, x_11); lean_dec(x_21); if (lean_obj_tag(x_22) == 0) { @@ -941,7 +914,7 @@ static lean_object* _init_l_String_reduceMk___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_224____closed__1; +x_1 = l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_171____closed__1; x_2 = l_String_reduceMk___closed__1; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; @@ -998,7 +971,7 @@ lean_dec(x_1); return x_10; } } -static lean_object* _init_l___regBuiltin_String_reduceMk_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_479____closed__1() { +static lean_object* _init_l___regBuiltin_String_reduceMk_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_426____closed__1() { _start: { lean_object* x_1; @@ -1006,17 +979,17 @@ x_1 = lean_mk_string_from_bytes("reduceMk", 8); return x_1; } } -static lean_object* _init_l___regBuiltin_String_reduceMk_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_479____closed__2() { +static lean_object* _init_l___regBuiltin_String_reduceMk_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_426____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_224____closed__1; -x_2 = l___regBuiltin_String_reduceMk_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_479____closed__1; +x_1 = l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_171____closed__1; +x_2 = l___regBuiltin_String_reduceMk_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_426____closed__1; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_String_reduceMk_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_479____closed__3() { +static lean_object* _init_l___regBuiltin_String_reduceMk_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_426____closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -1028,7 +1001,7 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_String_reduceMk_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_479____closed__4() { +static lean_object* _init_l___regBuiltin_String_reduceMk_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_426____closed__4() { _start: { lean_object* x_1; lean_object* x_2; @@ -1037,27 +1010,27 @@ x_2 = lean_mk_empty_array_with_capacity(x_1); return x_2; } } -static lean_object* _init_l___regBuiltin_String_reduceMk_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_479____closed__5() { +static lean_object* _init_l___regBuiltin_String_reduceMk_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_426____closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_String_reduceMk_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_479____closed__4; -x_2 = l___regBuiltin_String_reduceMk_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_479____closed__3; +x_1 = l___regBuiltin_String_reduceMk_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_426____closed__4; +x_2 = l___regBuiltin_String_reduceMk_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_426____closed__3; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_String_reduceMk_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_479____closed__6() { +static lean_object* _init_l___regBuiltin_String_reduceMk_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_426____closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_String_reduceMk_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_479____closed__5; +x_1 = l___regBuiltin_String_reduceMk_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_426____closed__5; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_String_reduceMk_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_479____closed__7() { +static lean_object* _init_l___regBuiltin_String_reduceMk_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_426____closed__7() { _start: { lean_object* x_1; @@ -1065,42 +1038,41 @@ x_1 = lean_alloc_closure((void*)(l_String_reduceMk___boxed), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_String_reduceMk_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_479_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_String_reduceMk_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_426_(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_String_reduceMk_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_479____closed__2; -x_3 = l___regBuiltin_String_reduceMk_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_479____closed__6; -x_4 = l___regBuiltin_String_reduceMk_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_479____closed__7; +x_2 = l___regBuiltin_String_reduceMk_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_426____closed__2; +x_3 = l___regBuiltin_String_reduceMk_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_426____closed__6; +x_4 = l___regBuiltin_String_reduceMk_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_426____closed__7; x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); return x_5; } } -LEAN_EXPORT lean_object* l___regBuiltin_String_reduceMk_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_481_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_String_reduceMk_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_428_(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_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_226____closed__1; -x_3 = l___regBuiltin_String_reduceMk_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_479____closed__2; +x_2 = l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_173____closed__1; +x_3 = l___regBuiltin_String_reduceMk_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_426____closed__2; x_4 = 1; -x_5 = l___regBuiltin_String_reduceMk_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_479____closed__7; +x_5 = l___regBuiltin_String_reduceMk_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_426____closed__7; 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_String_reduceMk_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_483_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_String_reduceMk_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_430_(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_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_228____closed__1; -x_3 = l___regBuiltin_String_reduceMk_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_479____closed__2; +x_2 = l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_175____closed__1; +x_3 = l___regBuiltin_String_reduceMk_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_426____closed__2; x_4 = 1; -x_5 = l___regBuiltin_String_reduceMk_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_479____closed__7; +x_5 = l___regBuiltin_String_reduceMk_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_426____closed__7; x_6 = l_Lean_Meta_Simp_addSimprocBuiltinAttrCore(x_2, x_3, x_4, x_5, x_1); return x_6; } } -lean_object* initialize_Init(uint8_t builtin, lean_object*); lean_object* initialize_Lean_ToExpr(uint8_t builtin, lean_object*); lean_object* initialize_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Char(uint8_t builtin, lean_object*); static bool _G_initialized = false; @@ -1108,9 +1080,6 @@ LEAN_EXPORT lean_object* initialize_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String lean_object * res; if (_G_initialized) return lean_io_result_mk_ok(lean_box(0)); _G_initialized = true; -res = initialize_Init(builtin, lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); res = initialize_Lean_ToExpr(builtin, lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); @@ -1125,47 +1094,47 @@ l_String_reduceAppend___closed__2 = _init_l_String_reduceAppend___closed__2(); lean_mark_persistent(l_String_reduceAppend___closed__2); l_String_reduceAppend___closed__3 = _init_l_String_reduceAppend___closed__3(); lean_mark_persistent(l_String_reduceAppend___closed__3); -l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_224____closed__1 = _init_l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_224____closed__1(); -lean_mark_persistent(l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_224____closed__1); -l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_224____closed__2 = _init_l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_224____closed__2(); -lean_mark_persistent(l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_224____closed__2); -l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_224____closed__3 = _init_l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_224____closed__3(); -lean_mark_persistent(l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_224____closed__3); -l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_224____closed__4 = _init_l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_224____closed__4(); -lean_mark_persistent(l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_224____closed__4); -l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_224____closed__5 = _init_l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_224____closed__5(); -lean_mark_persistent(l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_224____closed__5); -l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_224____closed__6 = _init_l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_224____closed__6(); -lean_mark_persistent(l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_224____closed__6); -l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_224____closed__7 = _init_l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_224____closed__7(); -lean_mark_persistent(l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_224____closed__7); -l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_224____closed__8 = _init_l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_224____closed__8(); -lean_mark_persistent(l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_224____closed__8); -l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_224____closed__9 = _init_l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_224____closed__9(); -lean_mark_persistent(l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_224____closed__9); -l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_224____closed__10 = _init_l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_224____closed__10(); -lean_mark_persistent(l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_224____closed__10); -l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_224____closed__11 = _init_l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_224____closed__11(); -lean_mark_persistent(l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_224____closed__11); -l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_224____closed__12 = _init_l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_224____closed__12(); -lean_mark_persistent(l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_224____closed__12); -l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_224____closed__13 = _init_l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_224____closed__13(); -lean_mark_persistent(l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_224____closed__13); -l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_224____closed__14 = _init_l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_224____closed__14(); -lean_mark_persistent(l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_224____closed__14); -l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_224____closed__15 = _init_l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_224____closed__15(); -lean_mark_persistent(l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_224____closed__15); -if (builtin) {res = l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_224_(lean_io_mk_world()); +l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_171____closed__1 = _init_l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_171____closed__1(); +lean_mark_persistent(l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_171____closed__1); +l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_171____closed__2 = _init_l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_171____closed__2(); +lean_mark_persistent(l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_171____closed__2); +l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_171____closed__3 = _init_l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_171____closed__3(); +lean_mark_persistent(l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_171____closed__3); +l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_171____closed__4 = _init_l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_171____closed__4(); +lean_mark_persistent(l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_171____closed__4); +l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_171____closed__5 = _init_l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_171____closed__5(); +lean_mark_persistent(l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_171____closed__5); +l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_171____closed__6 = _init_l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_171____closed__6(); +lean_mark_persistent(l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_171____closed__6); +l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_171____closed__7 = _init_l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_171____closed__7(); +lean_mark_persistent(l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_171____closed__7); +l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_171____closed__8 = _init_l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_171____closed__8(); +lean_mark_persistent(l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_171____closed__8); +l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_171____closed__9 = _init_l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_171____closed__9(); +lean_mark_persistent(l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_171____closed__9); +l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_171____closed__10 = _init_l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_171____closed__10(); +lean_mark_persistent(l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_171____closed__10); +l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_171____closed__11 = _init_l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_171____closed__11(); +lean_mark_persistent(l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_171____closed__11); +l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_171____closed__12 = _init_l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_171____closed__12(); +lean_mark_persistent(l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_171____closed__12); +l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_171____closed__13 = _init_l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_171____closed__13(); +lean_mark_persistent(l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_171____closed__13); +l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_171____closed__14 = _init_l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_171____closed__14(); +lean_mark_persistent(l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_171____closed__14); +l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_171____closed__15 = _init_l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_171____closed__15(); +lean_mark_persistent(l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_171____closed__15); +if (builtin) {res = l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_171_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_226____closed__1 = _init_l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_226____closed__1(); -lean_mark_persistent(l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_226____closed__1); -if (builtin) {res = l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_226_(lean_io_mk_world()); +}l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_173____closed__1 = _init_l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_173____closed__1(); +lean_mark_persistent(l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_173____closed__1); +if (builtin) {res = l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_173_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_228____closed__1 = _init_l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_228____closed__1(); -lean_mark_persistent(l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_228____closed__1); -if (builtin) {res = l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_228_(lean_io_mk_world()); +}l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_175____closed__1 = _init_l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_175____closed__1(); +lean_mark_persistent(l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_175____closed__1); +if (builtin) {res = l___regBuiltin_String_reduceAppend_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_175_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); }l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String_0__String_reduceListChar___lambda__1___closed__1 = _init_l___private_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String_0__String_reduceListChar___lambda__1___closed__1(); @@ -1200,27 +1169,27 @@ l_String_reduceMk___closed__1 = _init_l_String_reduceMk___closed__1(); lean_mark_persistent(l_String_reduceMk___closed__1); l_String_reduceMk___closed__2 = _init_l_String_reduceMk___closed__2(); lean_mark_persistent(l_String_reduceMk___closed__2); -l___regBuiltin_String_reduceMk_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_479____closed__1 = _init_l___regBuiltin_String_reduceMk_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_479____closed__1(); -lean_mark_persistent(l___regBuiltin_String_reduceMk_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_479____closed__1); -l___regBuiltin_String_reduceMk_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_479____closed__2 = _init_l___regBuiltin_String_reduceMk_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_479____closed__2(); -lean_mark_persistent(l___regBuiltin_String_reduceMk_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_479____closed__2); -l___regBuiltin_String_reduceMk_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_479____closed__3 = _init_l___regBuiltin_String_reduceMk_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_479____closed__3(); -lean_mark_persistent(l___regBuiltin_String_reduceMk_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_479____closed__3); -l___regBuiltin_String_reduceMk_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_479____closed__4 = _init_l___regBuiltin_String_reduceMk_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_479____closed__4(); -lean_mark_persistent(l___regBuiltin_String_reduceMk_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_479____closed__4); -l___regBuiltin_String_reduceMk_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_479____closed__5 = _init_l___regBuiltin_String_reduceMk_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_479____closed__5(); -lean_mark_persistent(l___regBuiltin_String_reduceMk_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_479____closed__5); -l___regBuiltin_String_reduceMk_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_479____closed__6 = _init_l___regBuiltin_String_reduceMk_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_479____closed__6(); -lean_mark_persistent(l___regBuiltin_String_reduceMk_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_479____closed__6); -l___regBuiltin_String_reduceMk_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_479____closed__7 = _init_l___regBuiltin_String_reduceMk_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_479____closed__7(); -lean_mark_persistent(l___regBuiltin_String_reduceMk_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_479____closed__7); -if (builtin) {res = l___regBuiltin_String_reduceMk_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_479_(lean_io_mk_world()); +l___regBuiltin_String_reduceMk_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_426____closed__1 = _init_l___regBuiltin_String_reduceMk_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_426____closed__1(); +lean_mark_persistent(l___regBuiltin_String_reduceMk_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_426____closed__1); +l___regBuiltin_String_reduceMk_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_426____closed__2 = _init_l___regBuiltin_String_reduceMk_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_426____closed__2(); +lean_mark_persistent(l___regBuiltin_String_reduceMk_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_426____closed__2); +l___regBuiltin_String_reduceMk_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_426____closed__3 = _init_l___regBuiltin_String_reduceMk_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_426____closed__3(); +lean_mark_persistent(l___regBuiltin_String_reduceMk_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_426____closed__3); +l___regBuiltin_String_reduceMk_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_426____closed__4 = _init_l___regBuiltin_String_reduceMk_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_426____closed__4(); +lean_mark_persistent(l___regBuiltin_String_reduceMk_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_426____closed__4); +l___regBuiltin_String_reduceMk_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_426____closed__5 = _init_l___regBuiltin_String_reduceMk_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_426____closed__5(); +lean_mark_persistent(l___regBuiltin_String_reduceMk_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_426____closed__5); +l___regBuiltin_String_reduceMk_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_426____closed__6 = _init_l___regBuiltin_String_reduceMk_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_426____closed__6(); +lean_mark_persistent(l___regBuiltin_String_reduceMk_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_426____closed__6); +l___regBuiltin_String_reduceMk_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_426____closed__7 = _init_l___regBuiltin_String_reduceMk_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_426____closed__7(); +lean_mark_persistent(l___regBuiltin_String_reduceMk_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_426____closed__7); +if (builtin) {res = l___regBuiltin_String_reduceMk_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_426_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_String_reduceMk_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_481_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_String_reduceMk_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_428_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_String_reduceMk_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_483_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_String_reduceMk_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_String___hyg_430_(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)); diff --git a/stage0/stdlib/Lean/Meta/Tactic/Simp/BuiltinSimprocs/UInt.c b/stage0/stdlib/Lean/Meta/Tactic/Simp/BuiltinSimprocs/UInt.c index c8494a0ae8..99e39c2e15 100644 --- a/stage0/stdlib/Lean/Meta/Tactic/Simp/BuiltinSimprocs/UInt.c +++ b/stage0/stdlib/Lean/Meta/Tactic/Simp/BuiltinSimprocs/UInt.c @@ -1,6 +1,6 @@ // Lean compiler output // Module: Lean.Meta.Tactic.Simp.BuiltinSimprocs.UInt -// Imports: Lean.Meta.Tactic.Simp.BuiltinSimprocs.Nat +// Imports: Lean.Meta.LitValues Lean.Meta.Tactic.Simp.BuiltinSimprocs.Nat #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -13,2087 +13,1670 @@ #ifdef __cplusplus extern "C" { #endif -static lean_object* l___regBuiltin_USize_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15866____closed__4; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__182; 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*); -static lean_object* l___regBuiltin_UInt32_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12903____closed__7; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__78; -static lean_object* l___regBuiltin_UInt16_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11422____closed__1; -static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__512; -static lean_object* l___regBuiltin_UInt64_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14263____closed__1; +LEAN_EXPORT lean_object* l___regBuiltin_UInt64_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12332_(lean_object*); +LEAN_EXPORT lean_object* l___regBuiltin_UInt32_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10875_(lean_object*); static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__128; +static lean_object* l___regBuiltin_UInt64_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12045____closed__4; +static lean_object* l___regBuiltin_UInt32_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10793____closed__3; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__393; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__420; lean_object* l_Lean_Expr_const___override(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___regBuiltin_UInt16_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11340_(lean_object*); static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__96; -static lean_object* l___regBuiltin_UInt32_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13104____closed__6; -static lean_object* l___regBuiltin_UInt32_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12944____closed__5; -LEAN_EXPORT lean_object* l___regBuiltin_USize_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15706_(lean_object*); -static lean_object* l___regBuiltin_UInt64_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14344____closed__3; +LEAN_EXPORT lean_object* l_UInt64_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511____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___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__355; -static lean_object* l___regBuiltin_UInt32_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12498____closed__4; -static lean_object* l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10414____closed__16; +static lean_object* l___regBuiltin_UInt64_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12838____closed__2; +static lean_object* l___regBuiltin_UInt16_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9381____closed__4; +static lean_object* l___regBuiltin_UInt16_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9461____closed__6; +static lean_object* l___regBuiltin_UInt64_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12410____closed__9; +LEAN_EXPORT lean_object* l___regBuiltin_UInt8_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8209_(lean_object*); +static lean_object* l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8535____closed__11; LEAN_EXPORT lean_object* l_UInt64_reduceToNat(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___regBuiltin_UInt64_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14545____closed__4; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__358; -static lean_object* l___regBuiltin_UInt16_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11855____closed__3; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__28; -LEAN_EXPORT lean_object* l___regBuiltin_USize_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15990_(lean_object*); uint8_t lean_uint8_sub(uint8_t, uint8_t); -static lean_object* l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__2; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__149; -LEAN_EXPORT lean_object* l___regBuiltin_UInt16_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11301_(lean_object*); -LEAN_EXPORT lean_object* l___regBuiltin_UInt16_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11137_(lean_object*); -LEAN_EXPORT lean_object* l___regBuiltin_UInt32_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__13298_(lean_object*); +static lean_object* l___regBuiltin_UInt16_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9867____closed__12; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__4; +LEAN_EXPORT lean_object* l_UInt8_reduceEq____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____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_UInt64_reduceLT___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_UInt16_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419_(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___regBuiltin_UInt32_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12863____closed__7; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__310; -LEAN_EXPORT lean_object* l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____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_USize_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15866____closed__5; -LEAN_EXPORT lean_object* l___regBuiltin_USize_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15745_(lean_object*); +static lean_object* l___regBuiltin_UInt64_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12085____closed__1; +LEAN_EXPORT lean_object* l___regBuiltin_UInt64_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12531_(lean_object*); static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__110; -static lean_object* l___regBuiltin_UInt32_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12903____closed__4; -static lean_object* l___regBuiltin_UInt32_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12903____closed__14; +static lean_object* l___regBuiltin_UInt64_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12205____closed__8; +static lean_object* l___regBuiltin_UInt64_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12410____closed__10; +LEAN_EXPORT lean_object* l___regBuiltin_UInt16_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__10174_(lean_object*); static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__112; -static lean_object* l___regBuiltin_UInt64_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14385____closed__4; -LEAN_EXPORT lean_object* l___regBuiltin_UInt64_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14547_(lean_object*); static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__378; -static lean_object* l___regBuiltin_UInt64_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14099____closed__3; -static lean_object* l___regBuiltin_UInt64_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14425____closed__4; -LEAN_EXPORT lean_object* l_UInt16_reduceBEq____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419____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_UInt32_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11199____closed__5; +static lean_object* l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8454____closed__6; +static lean_object* l___regBuiltin_UInt64_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12450____closed__14; LEAN_EXPORT lean_object* l_UInt8_reduceLT___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_reduceEq____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742_(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___regBuiltin_UInt32_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13104____closed__2; +static lean_object* l___regBuiltin_UInt16_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10098____closed__4; lean_object* l_Lean_Syntax_mkNameLit(lean_object*, lean_object*); -static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__561; +LEAN_EXPORT lean_object* l___regBuiltin_UInt64_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12838_(lean_object*); uint8_t lean_uint8_dec_lt(uint8_t, uint8_t); +LEAN_EXPORT lean_object* l___regBuiltin_UInt16_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9625_(lean_object*); +LEAN_EXPORT lean_object* l___regBuiltin_UInt32_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11000_(lean_object*); +static lean_object* l___regBuiltin_UInt64_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12165____closed__4; lean_object* l_Lean_mkNatLit(lean_object*); static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__495; -LEAN_EXPORT lean_object* l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____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_USize_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_16102____closed__2; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__166; -LEAN_EXPORT lean_object* l___regBuiltin_UInt8_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9817_(lean_object*); static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__54; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__305; -LEAN_EXPORT lean_object* l___regBuiltin_UInt32_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12542_(lean_object*); -static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__557; +static lean_object* l___regBuiltin_UInt64_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12646____closed__5; +LEAN_EXPORT lean_object* l___regBuiltin_UInt32_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11078_(lean_object*); +static lean_object* l___regBuiltin_UInt32_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11078____closed__6; LEAN_EXPORT lean_object* l_UInt32_reduceToNat___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___regBuiltin_UInt8_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9899____closed__1; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__159; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__270; -LEAN_EXPORT lean_object* l_UInt64_reduceBEq____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301____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_UInt32_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11506____closed__14; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__81; -static lean_object* l___regBuiltin_UInt64_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14344____closed__6; +static lean_object* l___regBuiltin_UInt64_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12531____closed__7; +LEAN_EXPORT lean_object* l___regBuiltin_UInt8_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8133_(lean_object*); +static lean_object* l___regBuiltin_UInt16_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9746____closed__2; +static lean_object* l___regBuiltin_UInt16_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9421____closed__3; +static lean_object* l___regBuiltin_UInt16_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9746____closed__6; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__350; -static lean_object* l___regBuiltin_UInt64_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14737____closed__7; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__476; -LEAN_EXPORT lean_object* l___regBuiltin_UInt32_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12502_(lean_object*); +static lean_object* l___regBuiltin_UInt8_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8209____closed__3; +LEAN_EXPORT lean_object* l_UInt32_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179_(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__58; -static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__556; -LEAN_EXPORT lean_object* l___regBuiltin_UInt16_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11260_(lean_object*); -static lean_object* l___regBuiltin_UInt32_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13220____closed__5; -static lean_object* l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__15; +LEAN_EXPORT lean_object* l___regBuiltin_UInt8_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8768_(lean_object*); +LEAN_EXPORT lean_object* l___regBuiltin_UInt16_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9746_(lean_object*); static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__276; -LEAN_EXPORT lean_object* l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978_(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___regBuiltin_UInt64_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12045____closed__5; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__106; lean_object* lean_mk_empty_array_with_capacity(lean_object*); -static lean_object* l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10102____closed__13; -static lean_object* l___regBuiltin_UInt64_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13979____closed__2; +static lean_object* l___regBuiltin_UInt64_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12287____closed__3; +static lean_object* l___regBuiltin_UInt32_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11506____closed__1; +static lean_object* l___regBuiltin_UInt16_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9501____closed__8; LEAN_EXPORT lean_object* l_UInt64_reduceDiv___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_UInt8_isValue____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978_(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___regBuiltin_UInt16_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11258____closed__3; -static lean_object* l___regBuiltin_UInt8_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9736____closed__8; -LEAN_EXPORT lean_object* l___regBuiltin_USize_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15708_(lean_object*); -LEAN_EXPORT lean_object* l___regBuiltin_UInt32_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12865_(lean_object*); -static lean_object* l___regBuiltin_USize_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15785____closed__14; +static lean_object* l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8454____closed__7; +static lean_object* l___regBuiltin_UInt32_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11199____closed__4; +static lean_object* l___regBuiltin_UInt32_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10833____closed__4; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__139; -static lean_object* l___regBuiltin_USize_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15826____closed__12; -static lean_object* l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__22; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__87; -static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__596; -static lean_object* l___regBuiltin_UInt64_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14181____closed__5; -static lean_object* l___regBuiltin_UInt8_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10222____closed__2; -static lean_object* l_UInt16_toExprCore___closed__2; +LEAN_EXPORT lean_object* l_UInt32_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179_(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___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__20; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__381; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__255; -LEAN_EXPORT lean_object* l_UInt8_reduceBEq____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____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_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9501____closed__1; +static lean_object* l___regBuiltin_UInt32_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10753____closed__6; +static lean_object* l___regBuiltin_UInt16_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9786____closed__14; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__417; +static lean_object* l___regBuiltin_UInt8_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8129____closed__5; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__206; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__244; -LEAN_EXPORT lean_object* l___regBuiltin_UInt8_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9778_(lean_object*); -LEAN_EXPORT lean_object* l___regBuiltin_UInt32_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12500_(lean_object*); -static lean_object* l___regBuiltin_UInt32_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12578____closed__2; -LEAN_EXPORT lean_object* l___regBuiltin_UInt64_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14739_(lean_object*); +static lean_object* l___regBuiltin_UInt8_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8766____closed__4; +LEAN_EXPORT lean_object* l___regBuiltin_UInt8_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8650_(lean_object*); +static lean_object* l___regBuiltin_UInt64_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12125____closed__1; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__397; -static lean_object* l___regBuiltin_USize_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15380____closed__7; -static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__601; uint32_t lean_uint32_mod(uint32_t, uint32_t); +static lean_object* l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8495____closed__9; lean_object* lean_uint32_to_nat(uint32_t); static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__370; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__303; -LEAN_EXPORT lean_object* l___regBuiltin_UInt16_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11779_(lean_object*); +lean_object* l_Lean_Meta_getNatValue_x3f(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__18; -LEAN_EXPORT lean_object* l___regBuiltin_UInt8_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10338_(lean_object*); -LEAN_EXPORT lean_object* l_USize_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_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8842____closed__15; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__380; LEAN_EXPORT lean_object* l_UInt32_reduceSub(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___regBuiltin_UInt32_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12944____closed__10; -static lean_object* l___regBuiltin_UInt32_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12618____closed__6; -static lean_object* l___regBuiltin_UInt64_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14385____closed__14; -static lean_object* l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__9; -static lean_object* l___regBuiltin_USize_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15460____closed__2; uint64_t lean_uint64_mod(uint64_t, uint64_t); -static lean_object* l___regBuiltin_UInt32_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12578____closed__1; -static lean_object* l___regBuiltin_UInt64_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14425____closed__15; -LEAN_EXPORT lean_object* l_USize_reduceBEq____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742____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_USize_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15785____closed__5; -static lean_object* l___regBuiltin_USize_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15380____closed__6; -static lean_object* l___regBuiltin_USize_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15745____closed__3; -static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__603; -static lean_object* l___regBuiltin_UInt16_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11217____closed__5; -static lean_object* l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9620____closed__1; -LEAN_EXPORT lean_object* l___regBuiltin_UInt64_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14185_(lean_object*); +static lean_object* l___regBuiltin_UInt8_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8291____closed__5; +static lean_object* l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8454____closed__15; +LEAN_EXPORT lean_object* l___regBuiltin_UInt64_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12369_(lean_object*); +static lean_object* l___regBuiltin_UInt64_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12045____closed__9; +static lean_object* l___regBuiltin_UInt16_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9582____closed__4; +static lean_object* l___regBuiltin_UInt64_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12410____closed__13; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__297; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__199; -static lean_object* l___regBuiltin_UInt16_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11057____closed__3; LEAN_EXPORT lean_object* l_UInt8_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_UInt32_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12903____closed__6; -static lean_object* l___regBuiltin_UInt16_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11177____closed__1; +LEAN_EXPORT lean_object* l___regBuiltin_UInt16_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9385_(lean_object*); static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__325; -static lean_object* l___regBuiltin_UInt16_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11462____closed__7; -LEAN_EXPORT lean_object* l_UInt64_reduceEq____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301____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_UInt32_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12944____closed__9; -static lean_object* l___regBuiltin_UInt32_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13220____closed__4; -static lean_object* l_USize_toExprCore___closed__1; -lean_object* lean_whnf(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_UInt64_reduceBinPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511_(lean_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_UInt8_reduceBEq____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515_(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_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8089_(lean_object*); +static lean_object* l___regBuiltin_UInt64_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12165____closed__3; +LEAN_EXPORT lean_object* l_UInt8_reduceEq____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____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___regBuiltin_UInt64_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12766_(lean_object*); static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__386; -LEAN_EXPORT lean_object* l_UInt16_reduceBinPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419____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_UInt16_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11426_(lean_object*); -LEAN_EXPORT lean_object* l___regBuiltin_UInt64_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13943_(lean_object*); -static lean_object* l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10102____closed__15; +static lean_object* l___regBuiltin_UInt64_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12838____closed__12; +static lean_object* l___regBuiltin_UInt32_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10833____closed__1; +LEAN_EXPORT lean_object* l___regBuiltin_UInt64_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12450_(lean_object*); +static lean_object* l___regBuiltin_UInt32_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10914____closed__3; LEAN_EXPORT lean_object* l_UInt8_reduceGT(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -uint8_t lean_usize_dec_le(size_t, size_t); -LEAN_EXPORT lean_object* l_UInt32_reduceNe____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860____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_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9656____closed__2; uint16_t lean_uint16_mod(uint16_t, uint16_t); -static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__531; -static lean_object* l___regBuiltin_UInt16_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11543____closed__8; -LEAN_EXPORT lean_object* l_USize_reduceBEq____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742____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_UInt64_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301____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___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__539; -LEAN_EXPORT lean_object* l___regBuiltin_UInt8_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9858_(lean_object*); -static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__521; -LEAN_EXPORT lean_object* l_USize_reduceGT___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_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10715_(lean_object*); +static lean_object* l___regBuiltin_UInt64_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12531____closed__6; +static lean_object* l___regBuiltin_UInt8_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8291____closed__7; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__389; +LEAN_EXPORT lean_object* l___regBuiltin_UInt32_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10717_(lean_object*); +static lean_object* l___regBuiltin_UInt16_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9746____closed__12; static lean_object* l_commandDeclare__uint__simprocs_____closed__10; -static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__525; -LEAN_EXPORT lean_object* l_UInt16_reduceEq____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419____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_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10414____closed__7; +static lean_object* l___regBuiltin_UInt32_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11118____closed__12; +LEAN_EXPORT lean_object* l___regBuiltin_UInt32_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10918_(lean_object*); +LEAN_EXPORT lean_object* l___regBuiltin_UInt16_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9463_(lean_object*); +static lean_object* l___regBuiltin_UInt64_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12838____closed__6; static lean_object* l_UInt16_reduceOfNatCore___closed__1; -static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__522; +static lean_object* l___regBuiltin_UInt32_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10753____closed__1; LEAN_EXPORT lean_object* l_UInt16_fromExpr___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__17; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__438; -LEAN_EXPORT lean_object* l___regBuiltin_UInt32_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12826_(lean_object*); -LEAN_EXPORT lean_object* l_UInt8_reduceBNe____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____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___regBuiltin_UInt16_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9709_(lean_object*); static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__352; 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*); -static lean_object* l___regBuiltin_UInt16_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11663____closed__4; -lean_object* l_Lean_mkAppB(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10025_(lean_object*); -static lean_object* l___regBuiltin_UInt32_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12781____closed__1; uint8_t lean_uint16_dec_lt(uint16_t, uint16_t); -LEAN_EXPORT lean_object* l___regBuiltin_UInt32_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__13296_(lean_object*); static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__12; -static lean_object* l___regBuiltin_UInt16_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11057____closed__9; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__67; -LEAN_EXPORT lean_object* l_USize_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742_(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___regBuiltin_UInt64_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14099____closed__5; -LEAN_EXPORT lean_object* l_USize_reduceGE___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_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742____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_UInt8_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8209____closed__8; +LEAN_EXPORT lean_object* l___regBuiltin_UInt16_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9541_(lean_object*); +LEAN_EXPORT lean_object* l___regBuiltin_UInt64_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12764_(lean_object*); +static lean_object* l___regBuiltin_UInt64_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12410____closed__4; +static lean_object* l___regBuiltin_UInt16_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9867____closed__1; +static lean_object* l___regBuiltin_UInt64_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12369____closed__1; +LEAN_EXPORT lean_object* l___regBuiltin_UInt64_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12328_(lean_object*); static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__21; -static lean_object* l___regBuiltin_UInt64_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14385____closed__9; -static lean_object* l___regBuiltin_USize_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__16178____closed__1; +LEAN_EXPORT lean_object* l_UInt32_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179____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___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__141; -static lean_object* l___regBuiltin_UInt64_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14304____closed__1; -static lean_object* l___regBuiltin_UInt16_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11057____closed__1; +LEAN_EXPORT lean_object* l_UInt16_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847____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_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8334_(lean_object*); static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__42; -static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__529; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__145; LEAN_EXPORT lean_object* l_UInt32_reduceMul___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_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10062____closed__8; +LEAN_EXPORT lean_object* l___regBuiltin_UInt64_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12648_(lean_object*); +LEAN_EXPORT lean_object* l_UInt32_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179____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___regBuiltin_UInt32_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10755_(lean_object*); static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__122; -static lean_object* l___regBuiltin_UInt64_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14222____closed__2; -static lean_object* l___regBuiltin_USize_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15745____closed__5; +LEAN_EXPORT lean_object* l___regBuiltin_UInt32_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11080_(lean_object*); static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__267; -static lean_object* l___regBuiltin_UInt16_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11855____closed__4; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__313; -static lean_object* l___regBuiltin_UInt16_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11217____closed__6; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__84; +static lean_object* l___regBuiltin_UInt16_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9827____closed__6; uint8_t l_Lean_Expr_isAppOfArity(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___regBuiltin_UInt64_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14222_(lean_object*); static lean_object* l_UInt8_reduceToNat___closed__1; -static lean_object* l_USize_fromExpr___closed__1; -LEAN_EXPORT lean_object* l___regBuiltin_UInt64_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13983_(lean_object*); -LEAN_EXPORT lean_object* l___regBuiltin_UInt32_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12658_(lean_object*); +static lean_object* l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8535____closed__17; LEAN_EXPORT lean_object* l_UInt16_reduceLE(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__612; -static lean_object* l___regBuiltin_UInt16_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11503____closed__5; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__153; -static lean_object* l___regBuiltin_UInt64_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14181____closed__6; +static lean_object* l___regBuiltin_UInt16_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9867____closed__6; 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_USize_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15870_(lean_object*); -static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__510; -LEAN_EXPORT lean_object* l___regBuiltin_UInt16_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11385_(lean_object*); -static lean_object* l___regBuiltin_UInt8_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9656____closed__7; +static lean_object* l___regBuiltin_UInt16_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9541____closed__5; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__444; -static lean_object* l___regBuiltin_UInt8_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10338____closed__3; -LEAN_EXPORT lean_object* l___regBuiltin_UInt64_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14181_(lean_object*); -static lean_object* l___regBuiltin_UInt8_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9858____closed__7; -static lean_object* l___regBuiltin_UInt16_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11177____closed__7; +static lean_object* l___regBuiltin_UInt32_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10955____closed__2; +static lean_object* l___regBuiltin_UInt8_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8250____closed__1; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__337; -LEAN_EXPORT lean_object* l___regBuiltin_UInt64_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14306_(lean_object*); lean_object* l_Lean_Syntax_getId(lean_object*); -static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__515; -static lean_object* l___regBuiltin_UInt16_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11462____closed__9; +static lean_object* l___regBuiltin_UInt16_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9746____closed__8; +LEAN_EXPORT lean_object* l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____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_UInt64_reduceOfNatCore___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_UInt32_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13220____closed__1; -static lean_object* l___regBuiltin_USize_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__16178____closed__11; -static lean_object* l___regBuiltin_UInt8_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9656____closed__9; -static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__587; -static lean_object* l___regBuiltin_USize_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15785____closed__13; +static lean_object* l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8495____closed__2; +static lean_object* l___regBuiltin_UInt16_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9623____closed__5; +LEAN_EXPORT lean_object* l___regBuiltin_UInt32_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10996_(lean_object*); LEAN_EXPORT lean_object* l_UInt64_reduceMod___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_USize_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15540____closed__7; -static lean_object* l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__6; -LEAN_EXPORT lean_object* l___regBuiltin_USize_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15542_(lean_object*); -LEAN_EXPORT lean_object* l_UInt16_reduceNe____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419____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_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10021____closed__12; -static lean_object* l___regBuiltin_UInt64_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14661____closed__2; -static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__577; -LEAN_EXPORT lean_object* l___regBuiltin_UInt64_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13981_(lean_object*); +static lean_object* l___regBuiltin_UInt64_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12450____closed__12; +static lean_object* l___regBuiltin_UInt16_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__10174____closed__1; +static lean_object* l___regBuiltin_UInt64_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12328____closed__1; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__308; -static lean_object* l___regBuiltin_USize_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15540____closed__3; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__268; lean_object* lean_array_push(lean_object*, lean_object*); -static lean_object* l___regBuiltin_UInt8_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9736____closed__4; -static lean_object* l___regBuiltin_UInt16_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11779____closed__2; -static lean_object* l___regBuiltin_UInt8_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9696____closed__5; +static lean_object* l___regBuiltin_UInt16_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9541____closed__3; +LEAN_EXPORT lean_object* l___regBuiltin_UInt64_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12085_(lean_object*); +LEAN_EXPORT lean_object* l___regBuiltin_UInt16_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9786_(lean_object*); +static lean_object* l___regBuiltin_UInt64_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12205____closed__5; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__100; -LEAN_EXPORT lean_object* l___regBuiltin_UInt8_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10226_(lean_object*); -LEAN_EXPORT lean_object* l_USize_reduceBNe____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742____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_UInt64_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14737____closed__8; +LEAN_EXPORT lean_object* l___regBuiltin_UInt64_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12165_(lean_object*); +static lean_object* l___regBuiltin_UInt32_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11159____closed__6; +static lean_object* l___regBuiltin_UInt32_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10914____closed__2; +LEAN_EXPORT lean_object* l___regBuiltin_UInt64_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12493_(lean_object*); static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__302; +static lean_object* l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8842____closed__13; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__162; -static lean_object* l___regBuiltin_UInt16_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11543____closed__15; -static lean_object* l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9616____closed__12; -size_t lean_usize_mul(size_t, size_t); -static lean_object* l___regBuiltin_UInt32_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12658____closed__8; -LEAN_EXPORT lean_object* l_USize_reduceNe____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742____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_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9616____closed__7; +static lean_object* l___regBuiltin_UInt8_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8209____closed__6; +static lean_object* l___regBuiltin_UInt16_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9582____closed__6; +static lean_object* l___regBuiltin_UInt16_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9786____closed__3; +LEAN_EXPORT lean_object* l___regBuiltin_UInt8_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8093_(lean_object*); +static lean_object* l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; +LEAN_EXPORT lean_object* l_UInt16_isValue____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847_(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_UInt64_reduceOfNatCore___closed__1; -static lean_object* l___regBuiltin_UInt64_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14425____closed__11; -static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__499; +static lean_object* l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__6; +static lean_object* l___regBuiltin_UInt16_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9867____closed__13; LEAN_EXPORT lean_object* l_UInt16_reduceGE(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_UInt64_reduceEq____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301____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_UInt32_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10793____closed__8; LEAN_EXPORT lean_object* l_UInt8_reduceMul___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__39; -LEAN_EXPORT lean_object* l___regBuiltin_UInt8_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10224_(lean_object*); +LEAN_EXPORT lean_object* l___regBuiltin_UInt8_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8213_(lean_object*); static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__326; +static lean_object* l___regBuiltin_UInt64_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12287____closed__6; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__362; uint8_t lean_uint64_dec_lt(uint64_t, uint64_t); +LEAN_EXPORT lean_object* l_UInt32_reduceEq____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179____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_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12450____closed__13; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__365; +static lean_object* l___regBuiltin_UInt32_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11506____closed__12; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__165; -LEAN_EXPORT lean_object* l___regBuiltin_UInt64_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14665_(lean_object*); static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__312; -uint8_t lean_usize_dec_eq(size_t, size_t); -static lean_object* l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10062____closed__13; -LEAN_EXPORT lean_object* l___regBuiltin_UInt32_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12905_(lean_object*); -static lean_object* l___regBuiltin_USize_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15581____closed__3; -static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__599; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__204; -static lean_object* l___regBuiltin_UInt64_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14385____closed__15; -LEAN_EXPORT lean_object* l___regBuiltin_USize_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__16180_(lean_object*); +static lean_object* l___regBuiltin_UInt16_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9786____closed__10; +LEAN_EXPORT lean_object* l___regBuiltin_UInt32_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11316_(lean_object*); static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__130; -static lean_object* l___regBuiltin_UInt16_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11097____closed__7; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__146; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__155; -LEAN_EXPORT lean_object* l___regBuiltin_UInt64_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14427_(lean_object*); +static lean_object* l___regBuiltin_UInt32_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10833____closed__8; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__424; -static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__602; -static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__505; -LEAN_EXPORT lean_object* l___regBuiltin_UInt32_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12986_(lean_object*); -static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__509; +static lean_object* l___regBuiltin_UInt8_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8209____closed__2; +LEAN_EXPORT lean_object* l___regBuiltin_UInt8_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8129_(lean_object*); static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__258; -static lean_object* l___regBuiltin_UInt16_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11663____closed__3; -static lean_object* l___regBuiltin_USize_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15785____closed__4; -static lean_object* l___regBuiltin_UInt64_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13939____closed__1; -static lean_object* l___regBuiltin_UInt64_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14425____closed__8; +static lean_object* l___regBuiltin_UInt8_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8250____closed__5; +static lean_object* l___regBuiltin_UInt16_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9381____closed__1; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__227; -static lean_object* l___regBuiltin_UInt16_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11503____closed__2; -static lean_object* l___regBuiltin_UInt16_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11855____closed__13; -static lean_object* l___regBuiltin_UInt32_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12944____closed__6; +LEAN_EXPORT lean_object* l___regBuiltin_UInt64_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12248_(lean_object*); +static lean_object* l___regBuiltin_UInt32_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11430____closed__2; LEAN_EXPORT lean_object* l_UInt64_reduceMul___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__530; +static lean_object* l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8049____closed__2; +static lean_object* l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__19; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__416; -static lean_object* l_UInt8_toExprCore___closed__1; -static lean_object* l___regBuiltin_UInt16_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11422____closed__10; -static lean_object* l___regBuiltin_UInt32_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12863____closed__4; -static lean_object* l___regBuiltin_UInt64_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14099____closed__1; -static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__588; -LEAN_EXPORT lean_object* l___regBuiltin_UInt64_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14103_(lean_object*); -LEAN_EXPORT lean_object* l___regBuiltin_UInt8_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9740_(lean_object*); +static lean_object* l___regBuiltin_UInt64_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12838____closed__14; +static lean_object* l___regBuiltin_UInt8_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8291____closed__2; +LEAN_EXPORT lean_object* l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515_(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___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8454____closed__16; +static lean_object* l___regBuiltin_UInt64_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12531____closed__15; +static lean_object* l___regBuiltin_UInt64_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12205____closed__7; +static lean_object* l___regBuiltin_UInt64_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12531____closed__2; +LEAN_EXPORT lean_object* l___regBuiltin_UInt64_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12169_(lean_object*); +static lean_object* l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8535____closed__9; +LEAN_EXPORT lean_object* l_UInt16_reduceNe____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847____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_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9421____closed__4; +LEAN_EXPORT lean_object* l___regBuiltin_UInt16_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9664_(lean_object*); static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__37; -static lean_object* l___regBuiltin_UInt16_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11855____closed__9; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__44; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__29; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__252; -static lean_object* l___regBuiltin_UInt16_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11217____closed__8; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__187; -static lean_object* l___regBuiltin_UInt64_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14545____closed__1; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__63; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__164; -static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__559; -static lean_object* l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__1; -static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__555; -LEAN_EXPORT lean_object* l___regBuiltin_UInt64_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14545_(lean_object*); +static lean_object* l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8842____closed__2; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__71; +static lean_object* l___regBuiltin_UInt64_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12045____closed__7; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__360; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__235; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__340; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__113; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__179; -static lean_object* l___regBuiltin_UInt32_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12538____closed__2; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__343; -LEAN_EXPORT lean_object* l___regBuiltin_UInt8_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9776_(lean_object*); -static lean_object* l___regBuiltin_USize_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15986____closed__6; +static lean_object* l___regBuiltin_UInt32_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11078____closed__12; +static lean_object* l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8049____closed__4; LEAN_EXPORT lean_object* l_UInt16_reduceMul(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__485; -static lean_object* l___regBuiltin_UInt16_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11855____closed__14; -static lean_object* l_UInt8_fromExpr___closed__3; -static lean_object* l___regBuiltin_USize_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15622____closed__5; -static lean_object* l___regBuiltin_USize_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__16178____closed__5; -static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__625; +static lean_object* l___regBuiltin_UInt32_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11078____closed__9; +static lean_object* l___regBuiltin_UInt32_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11506____closed__5; +LEAN_EXPORT lean_object* l___regBuiltin_UInt16_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10102_(lean_object*); +static lean_object* l___regBuiltin_UInt16_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9746____closed__4; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__293; -static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__524; -static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__500; -static lean_object* l___regBuiltin_UInt16_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11855____closed__6; +LEAN_EXPORT lean_object* l___regBuiltin_UInt16_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9584_(lean_object*); +static lean_object* l___regBuiltin_UInt64_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12205____closed__3; +static lean_object* l___regBuiltin_UInt16_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9582____closed__3; +static lean_object* l___regBuiltin_UInt16_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9786____closed__5; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__361; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__191; -LEAN_EXPORT lean_object* l___regBuiltin_USize_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15583_(lean_object*); -static lean_object* l___regBuiltin_UInt8_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9696____closed__7; +static lean_object* l___regBuiltin_UInt32_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11199____closed__1; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__57; -static lean_object* l___regBuiltin_UInt32_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13220____closed__3; LEAN_EXPORT lean_object* l_UInt16_reduceAdd___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_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__10; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__385; -LEAN_EXPORT lean_object* l_UInt32_toExprCore(uint32_t); -static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__613; +static lean_object* l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8454____closed__3; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__401; +static lean_object* l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__22; +static lean_object* l___regBuiltin_UInt32_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11078____closed__10; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__425; -static lean_object* l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__9; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__92; -LEAN_EXPORT lean_object* l___regBuiltin_UInt16_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11505_(lean_object*); -LEAN_EXPORT lean_object* l_UInt64_reduceBEq____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301_(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__585; +static lean_object* l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8535____closed__4; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__15; -static lean_object* l___regBuiltin_UInt32_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12699____closed__1; -static lean_object* l___regBuiltin_UInt16_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11422____closed__3; -static lean_object* l___regBuiltin_UInt32_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12578____closed__6; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__262; +LEAN_EXPORT lean_object* l___regBuiltin_UInt64_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12840_(lean_object*); LEAN_EXPORT lean_object* l_UInt16_reduceOfNatCore(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___regBuiltin_UInt8_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9817____closed__5; -static lean_object* l___regBuiltin_UInt16_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11503____closed__11; -static lean_object* l___regBuiltin_USize_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15745____closed__1; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__226; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__189; -LEAN_EXPORT lean_object* l___regBuiltin_UInt8_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9656_(lean_object*); -static lean_object* l___regBuiltin_UInt32_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12863____closed__11; +static lean_object* l___regBuiltin_UInt64_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12646____closed__6; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__222; -static lean_object* l___regBuiltin_UInt8_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9696____closed__4; -static lean_object* l___regBuiltin_UInt32_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12984____closed__4; -static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__558; -static lean_object* l___regBuiltin_USize_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__16178____closed__3; -LEAN_EXPORT lean_object* l_UInt64_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301____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___regBuiltin_UInt16_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9461_(lean_object*); +LEAN_EXPORT lean_object* l___regBuiltin_UInt32_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11159_(lean_object*); +LEAN_EXPORT lean_object* l___regBuiltin_UInt64_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12125_(lean_object*); +static lean_object* l___regBuiltin_UInt8_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8250____closed__7; LEAN_EXPORT lean_object* l_UInt16_reduceLE___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_UInt32_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12822____closed__2; +static lean_object* l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8495____closed__1; +static lean_object* l___regBuiltin_UInt64_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12085____closed__7; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__48; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__348; -static lean_object* l___regBuiltin_USize_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15826____closed__8; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__339; 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___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__178; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__346; -LEAN_EXPORT lean_object* l_UInt32_toExpr(lean_object*); lean_object* l_Lean_Meta_Simp_evalPropStep(lean_object*, uint8_t, 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__69; +static lean_object* l___regBuiltin_UInt16_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__10174____closed__5; +static lean_object* l___regBuiltin_UInt16_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9501____closed__3; 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_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11097____closed__1; -LEAN_EXPORT lean_object* l_USize_reduceEq____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742____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_UInt16_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__10174____closed__10; +static lean_object* l___regBuiltin_UInt16_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9786____closed__11; static lean_object* l_commandDeclare__uint__simprocs_____closed__8; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__167; +static lean_object* l___regBuiltin_UInt64_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12205____closed__1; +static lean_object* l___regBuiltin_UInt32_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11118____closed__14; +static lean_object* l___regBuiltin_UInt64_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12287____closed__5; +static lean_object* l___regBuiltin_UInt16_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9381____closed__5; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__451; -LEAN_EXPORT lean_object* l_USize_reduceGT(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___regBuiltin_UInt32_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12658____closed__4; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__472; -static lean_object* l___regBuiltin_UInt32_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13104____closed__4; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__374; -static lean_object* l___regBuiltin_USize_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__16178____closed__2; -static lean_object* l___regBuiltin_UInt8_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9736____closed__10; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__481; +static lean_object* l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8535____closed__14; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__73; -static lean_object* l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__7; -static lean_object* l___regBuiltin_UInt16_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11381____closed__1; +LEAN_EXPORT lean_object* l_UInt8_reduceNe____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515_(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__445; -static lean_object* l___regBuiltin_UInt16_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11855____closed__1; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__478; -LEAN_EXPORT lean_object* l___regBuiltin_UInt64_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14663_(lean_object*); lean_object* l_Lean_Syntax_node5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___regBuiltin_UInt32_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12740____closed__5; +LEAN_EXPORT lean_object* l___regBuiltin_UInt8_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8652_(lean_object*); static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__319; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__479; -static lean_object* l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10062____closed__10; -static lean_object* l___regBuiltin_UInt8_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10338____closed__2; +LEAN_EXPORT lean_object* l_UInt16_reduceEq____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847____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____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9746____closed__9; uint8_t l_Lean_Syntax_isOfKind(lean_object*, lean_object*); -static lean_object* l___regBuiltin_UInt32_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12984____closed__11; -static lean_object* l___regBuiltin_UInt16_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11503____closed__1; -static lean_object* l___regBuiltin_UInt8_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10338____closed__1; -static lean_object* l___regBuiltin_UInt8_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9736____closed__1; -static lean_object* l___regBuiltin_USize_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15704____closed__1; -static lean_object* l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10021____closed__1; -LEAN_EXPORT lean_object* l___regBuiltin_UInt32_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12582_(lean_object*); +static lean_object* l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__9; +LEAN_EXPORT lean_object* l___regBuiltin_UInt8_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8091_(lean_object*); +static lean_object* l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__2; 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_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8495____closed__7; +static lean_object* l___regBuiltin_UInt32_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11078____closed__4; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__168; +LEAN_EXPORT lean_object* l_UInt16_reduceBinPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847____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___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__27; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__53; +static lean_object* l___regBuiltin_UInt64_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12450____closed__4; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__221; -static lean_object* l___regBuiltin_UInt32_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12903____closed__5; LEAN_EXPORT lean_object* l_UInt64_reduceOfNatCore___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_UInt16_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11503____closed__3; -LEAN_EXPORT lean_object* l___regBuiltin_UInt32_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12903_(lean_object*); -static lean_object* l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10062____closed__9; -LEAN_EXPORT lean_object* l___regBuiltin_UInt16_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11543_(lean_object*); +static lean_object* l___regBuiltin_UInt32_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11118____closed__11; +static lean_object* l___regBuiltin_UInt16_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9786____closed__1; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__457; -static lean_object* l___regBuiltin_UInt32_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12944____closed__13; +static lean_object* l___regBuiltin_UInt16_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9501____closed__7; +static lean_object* l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8535____closed__2; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__173; -static lean_object* l___regBuiltin_UInt64_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13939____closed__6; -static lean_object* l___regBuiltin_UInt64_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14344____closed__5; -LEAN_EXPORT lean_object* l_USize_reduceToNat___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_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____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__190; -static lean_object* l_USize_fromExpr___closed__2; -static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__598; -static lean_object* l___regBuiltin_USize_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15704____closed__2; +LEAN_EXPORT lean_object* l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8049_(lean_object*); +static lean_object* l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__6; +static lean_object* l___regBuiltin_UInt64_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12410____closed__3; +static lean_object* l___regBuiltin_UInt8_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8209____closed__1; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__487; -static lean_object* l___regBuiltin_UInt16_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11217____closed__4; -static lean_object* l___regBuiltin_UInt16_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11855____closed__12; -static lean_object* l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10102____closed__14; -static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__579; +static lean_object* l___regBuiltin_UInt32_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11159____closed__15; LEAN_EXPORT lean_object* l_UInt16_reduceMul___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_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14140____closed__4; LEAN_EXPORT lean_object* l_UInt64_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_UInt64_reduceAdd___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_UInt8_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9700_(lean_object*); -LEAN_EXPORT lean_object* l___regBuiltin_UInt16_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11507_(lean_object*); -static lean_object* l___regBuiltin_UInt32_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12538____closed__7; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__322; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__473; -LEAN_EXPORT lean_object* l___regBuiltin_UInt8_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9901_(lean_object*); -static lean_object* l___regBuiltin_UInt32_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12944____closed__3; -static lean_object* l___regBuiltin_USize_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15663____closed__1; -static lean_object* l___regBuiltin_USize_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15826____closed__2; -LEAN_EXPORT lean_object* l___regBuiltin_UInt16_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11855_(lean_object*); -static lean_object* l___regBuiltin_USize_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15745____closed__9; +static lean_object* l___regBuiltin_UInt8_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8089____closed__8; +static lean_object* l___regBuiltin_UInt16_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9827____closed__5; +static lean_object* l___regBuiltin_UInt64_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12531____closed__9; 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___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10062____closed__17; static lean_object* l_commandDeclare__uint__simprocs_____closed__1; -static lean_object* l___regBuiltin_UInt64_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14181____closed__2; -LEAN_EXPORT lean_object* l_USize_isValue____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742_(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_USize_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_USize_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742_(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___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__3; +LEAN_EXPORT lean_object* l___regBuiltin_UInt16_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9465_(lean_object*); static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__175; -static lean_object* l___regBuiltin_USize_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15420____closed__6; -LEAN_EXPORT lean_object* l___regBuiltin_UInt16_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11665_(lean_object*); -static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__621; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__436; -static lean_object* l___regBuiltin_USize_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15826____closed__1; -static lean_object* l___regBuiltin_UInt64_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14425____closed__1; LEAN_EXPORT lean_object* l_UInt64_reduceGT(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__469; -static lean_object* l___regBuiltin_UInt8_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9817____closed__2; -LEAN_EXPORT lean_object* l_USize_reduceDiv(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___regBuiltin_USize_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15540____closed__1; -static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__569; -static lean_object* l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__10; -static lean_object* l___regBuiltin_UInt32_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12944____closed__4; -static lean_object* l_USize_reduceToNat___closed__1; -LEAN_EXPORT lean_object* l___regBuiltin_UInt32_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12781_(lean_object*); -static lean_object* l___regBuiltin_UInt16_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11258____closed__1; -static lean_object* l___regBuiltin_UInt32_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12863____closed__8; -LEAN_EXPORT lean_object* l___regBuiltin_USize_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_16104_(lean_object*); -static lean_object* l___regBuiltin_UInt32_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12618____closed__7; -static lean_object* l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10414____closed__3; +static lean_object* l___regBuiltin_UInt16_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9381____closed__6; +static lean_object* l___regBuiltin_UInt16_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9746____closed__10; +LEAN_EXPORT lean_object* l___regBuiltin_UInt32_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11118_(lean_object*); +LEAN_EXPORT lean_object* l_UInt64_reduceNe____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511_(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Level_ofNat(lean_object*); +static lean_object* l___regBuiltin_UInt64_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12450____closed__6; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__185; lean_object* l_Lean_Expr_appArg_x21(lean_object*); static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__335; -static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__576; -static lean_object* l___regBuiltin_UInt16_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11340____closed__2; -static lean_object* l___regBuiltin_UInt16_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11057____closed__2; -static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__581; -static lean_object* l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9616____closed__4; -LEAN_EXPORT lean_object* l___regBuiltin_UInt16_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11221_(lean_object*); +static lean_object* l___regBuiltin_UInt32_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10753____closed__7; +static lean_object* l___regBuiltin_UInt32_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11159____closed__8; +LEAN_EXPORT lean_object* l___regBuiltin_UInt32_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10998_(lean_object*); static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__211; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__260; -static lean_object* l___regBuiltin_UInt64_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14222____closed__1; -static lean_object* l___regBuiltin_UInt16_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11340____closed__1; +static lean_object* l___regBuiltin_UInt64_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12531____closed__11; +LEAN_EXPORT lean_object* l___regBuiltin_UInt64_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12209_(lean_object*); LEAN_EXPORT lean_object* l_UInt16_reduceMul___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__535; -static lean_object* l___regBuiltin_UInt32_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12984____closed__2; -static lean_object* l___regBuiltin_USize_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15460____closed__6; +LEAN_EXPORT lean_object* l___regBuiltin_UInt16_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9421_(lean_object*); +static lean_object* l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8495____closed__10; +static lean_object* l___regBuiltin_UInt8_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8089____closed__6; +static lean_object* l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__6; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__304; -static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__563; -LEAN_EXPORT lean_object* l_UInt32_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860_(lean_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_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14344_(lean_object*); -static lean_object* l___regBuiltin_USize_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15540____closed__5; -LEAN_EXPORT lean_object* l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10064_(lean_object*); -static lean_object* l___regBuiltin_UInt8_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9776____closed__2; -static lean_object* l___regBuiltin_UInt8_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9736____closed__5; +static lean_object* l___regBuiltin_UInt32_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10793____closed__5; +static lean_object* l___regBuiltin_UInt16_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9582____closed__1; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__197; -LEAN_EXPORT lean_object* l___regBuiltin_UInt16_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11061_(lean_object*); -LEAN_EXPORT lean_object* l___regBuiltin_UInt64_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14348_(lean_object*); +static lean_object* l___regBuiltin_UInt64_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12085____closed__4; +static lean_object* l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8842____closed__4; +static lean_object* l___regBuiltin_UInt16_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9746____closed__5; LEAN_EXPORT lean_object* l_UInt64_reduceLE(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___regBuiltin_USize_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15986____closed__3; +LEAN_EXPORT lean_object* l_UInt32_reduceBEq____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179_(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__411; -static lean_object* l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10021____closed__15; +static lean_object* l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8842____closed__7; static lean_object* l_commandDeclare__uint__simprocs_____closed__11; -static lean_object* l___regBuiltin_UInt64_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14304____closed__12; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__188; -LEAN_EXPORT lean_object* l_UInt16_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419____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___regBuiltin_UInt16_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10098____closed__3; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__345; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__212; -static lean_object* l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10414____closed__1; -LEAN_EXPORT lean_object* l_UInt8_reduceEq____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____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_USize_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15826____closed__5; -static lean_object* l___regBuiltin_UInt16_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11422____closed__6; LEAN_EXPORT lean_object* l_UInt8_reduceDiv___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_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14019____closed__6; -LEAN_EXPORT lean_object* l_UInt16_reduceBNe____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419____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_USize_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15420____closed__4; -LEAN_EXPORT lean_object* l___regBuiltin_UInt16_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11783_(lean_object*); -static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__516; -static lean_object* l___regBuiltin_UInt16_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11217____closed__3; -static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__590; -static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__606; -static lean_object* l___regBuiltin_UInt8_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10338____closed__4; -static lean_object* l___regBuiltin_UInt16_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11462____closed__10; +LEAN_EXPORT lean_object* l_UInt8_reduceBEq____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____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_UInt16_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9786____closed__8; +LEAN_EXPORT lean_object* l_UInt64_reduceBNe____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511_(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__18; +static lean_object* l___regBuiltin_UInt32_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11159____closed__1; +LEAN_EXPORT lean_object* l___regBuiltin_UInt8_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8770_(lean_object*); static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__121; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__1; +static lean_object* l___regBuiltin_UInt64_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12491____closed__12; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__161; -static lean_object* l___regBuiltin_UInt64_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14019____closed__7; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__259; -static lean_object* l___regBuiltin_UInt16_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11422____closed__13; -static lean_object* l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10021____closed__17; +static lean_object* l___regBuiltin_UInt64_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12246____closed__3; +static lean_object* l___regBuiltin_UInt64_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12838____closed__1; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__484; -LEAN_EXPORT lean_object* l___regBuiltin_UInt32_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12907_(lean_object*); +LEAN_EXPORT lean_object* l___regBuiltin_UInt16_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9505_(lean_object*); static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__359; -static lean_object* l___regBuiltin_USize_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__16178____closed__12; +static lean_object* l___regBuiltin_UInt32_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10793____closed__2; +static lean_object* l___regBuiltin_UInt64_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12531____closed__5; +static lean_object* l___regBuiltin_UInt8_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8129____closed__3; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__418; -static lean_object* l___regBuiltin_UInt32_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12944____closed__2; -static lean_object* l___regBuiltin_UInt32_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12863____closed__2; -static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__616; -static lean_object* l___regBuiltin_USize_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__16178____closed__7; +LEAN_EXPORT lean_object* l___regBuiltin_UInt64_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12250_(lean_object*); +LEAN_EXPORT lean_object* l___regBuiltin_UInt16_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9383_(lean_object*); +static lean_object* l___regBuiltin_UInt16_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9421____closed__2; +static lean_object* l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__8; +LEAN_EXPORT lean_object* l_UInt64_reduceBNe____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511____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_UInt16_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9623____closed__2; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__151; -static lean_object* l___regBuiltin_UInt64_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14661____closed__1; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__494; -static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__566; -static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__544; -LEAN_EXPORT lean_object* l_UInt8_toExprCore___boxed(lean_object*); -static lean_object* l___regBuiltin_UInt16_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11543____closed__13; -LEAN_EXPORT lean_object* l___regBuiltin_UInt64_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14304_(lean_object*); -LEAN_EXPORT lean_object* l___regBuiltin_UInt16_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11381_(lean_object*); static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__463; -static lean_object* l___regBuiltin_USize_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15420____closed__1; -LEAN_EXPORT lean_object* l_UInt32_isValue____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860_(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Name_mkStr3(lean_object*, lean_object*, lean_object*); +static lean_object* l___regBuiltin_UInt8_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8250____closed__4; 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_UInt32_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__13296____closed__7; -static lean_object* l___regBuiltin_USize_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15500____closed__8; -static lean_object* l___regBuiltin_UInt16_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11258____closed__2; -static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__622; -LEAN_EXPORT lean_object* l___regBuiltin_UInt16_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11344_(lean_object*); -LEAN_EXPORT lean_object* l___regBuiltin_UInt16_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11781_(lean_object*); +static lean_object* l___regBuiltin_UInt32_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10713____closed__4; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__407; -static lean_object* l___regBuiltin_USize_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15745____closed__13; LEAN_EXPORT lean_object* l_UInt32_fromExpr(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___regBuiltin_UInt32_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12944____closed__15; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__344; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__203; -static lean_object* l___regBuiltin_UInt16_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11503____closed__13; -static lean_object* l___regBuiltin_UInt8_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9776____closed__5; -static lean_object* l___regBuiltin_UInt32_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12944____closed__11; -static lean_object* l___regBuiltin_UInt64_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14059____closed__4; -LEAN_EXPORT lean_object* l_USize_toExprCore___boxed(lean_object*); static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__290; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__301; -static lean_object* l___regBuiltin_UInt32_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12498____closed__5; -static lean_object* l___regBuiltin_UInt16_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11462____closed__1; -static lean_object* l___regBuiltin_UInt16_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11097____closed__4; -static lean_object* l___regBuiltin_UInt16_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11217____closed__2; -static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__610; +static lean_object* l___regBuiltin_UInt32_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10713____closed__6; +static lean_object* l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8049____closed__3; +LEAN_EXPORT lean_object* l___regBuiltin_UInt64_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12330_(lean_object*); +LEAN_EXPORT lean_object* l___regBuiltin_UInt32_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11506_(lean_object*); static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__64; -static lean_object* l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10102____closed__9; -size_t lean_usize_of_nat(lean_object*); -static lean_object* l___regBuiltin_USize_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15826____closed__4; +LEAN_EXPORT lean_object* l___regBuiltin_UInt16_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10100_(lean_object*); static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__13; -static lean_object* l___regBuiltin_UInt8_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9817____closed__7; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__131; -LEAN_EXPORT lean_object* l_USize_reduceDiv___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_UInt32_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11199____closed__13; +static lean_object* l___regBuiltin_UInt32_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11118____closed__7; +static lean_object* l___regBuiltin_UInt8_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8129____closed__7; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__241; +LEAN_EXPORT lean_object* l_UInt8_reduceBNe____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____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_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9623____closed__1; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__403; -LEAN_EXPORT lean_object* l_UInt64_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301_(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___regBuiltin_UInt32_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__13296____closed__5; -static lean_object* l___regBuiltin_UInt32_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12578____closed__8; -static lean_object* l___regBuiltin_UInt32_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12984____closed__10; -static lean_object* l___regBuiltin_USize_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15986____closed__4; +LEAN_EXPORT lean_object* l_UInt8_reduceNe____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____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____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9746____closed__1; +static lean_object* l___regBuiltin_UInt32_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11314____closed__2; LEAN_EXPORT lean_object* l_UInt32_reduceDiv___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_UInt32_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__13296____closed__14; -static lean_object* l___regBuiltin_UInt64_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13939____closed__2; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__25; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__413; +static lean_object* l___regBuiltin_UInt32_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10914____closed__6; LEAN_EXPORT lean_object* l_UInt16_reduceDiv(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__83; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__410; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__111; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__449; -static lean_object* l___regBuiltin_UInt32_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12822____closed__1; -static lean_object* l___regBuiltin_UInt64_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14019____closed__5; -LEAN_EXPORT lean_object* l___regBuiltin_UInt32_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12785_(lean_object*); -LEAN_EXPORT lean_object* l___regBuiltin_USize_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15787_(lean_object*); -LEAN_EXPORT lean_object* l___regBuiltin_UInt16_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11545_(lean_object*); -static lean_object* l___regBuiltin_UInt32_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__13296____closed__6; -LEAN_EXPORT lean_object* l_UInt64_reduceBNe____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301____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_UInt8_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8169____closed__7; +LEAN_EXPORT lean_object* l___regBuiltin_UInt8_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8252_(lean_object*); static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__142; -static lean_object* l___regBuiltin_UInt8_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9817____closed__6; -static lean_object* l___regBuiltin_UInt64_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14019____closed__2; -static lean_object* l___regBuiltin_UInt64_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13979____closed__8; -static lean_object* l___regBuiltin_USize_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15420____closed__3; -LEAN_EXPORT lean_object* l___regBuiltin_UInt64_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14019_(lean_object*); -LEAN_EXPORT lean_object* l___regBuiltin_UInt64_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14549_(lean_object*); -static lean_object* l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10102____closed__12; -LEAN_EXPORT lean_object* l_USize_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742____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_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860____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___regBuiltin_UInt32_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10795_(lean_object*); +LEAN_EXPORT lean_object* l___regBuiltin_UInt64_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12167_(lean_object*); +static lean_object* l___regBuiltin_UInt16_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9501____closed__6; +LEAN_EXPORT lean_object* l___regBuiltin_UInt32_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10955_(lean_object*); +static lean_object* l___regBuiltin_UInt64_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12531____closed__4; +static lean_object* l___regBuiltin_UInt16_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9541____closed__7; +static lean_object* l___regBuiltin_UInt16_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9827____closed__3; +static lean_object* l___regBuiltin_UInt16_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9982____closed__1; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__86; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__101; static lean_object* l_UInt64_reduceToNat___closed__1; -LEAN_EXPORT lean_object* l_UInt32_reduceEq____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860____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_UInt32_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12740____closed__6; -LEAN_EXPORT lean_object* l___regBuiltin_UInt16_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11462_(lean_object*); -LEAN_EXPORT lean_object* l_UInt32_reduceEq____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860____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_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11201_(lean_object*); static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__377; uint8_t l_instDecidableNot___rarg(uint8_t); -LEAN_EXPORT lean_object* l___regBuiltin_UInt32_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12662_(lean_object*); -LEAN_EXPORT lean_object* l_UInt16_isValue____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419____boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10062____closed__6; -static lean_object* l___regBuiltin_USize_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15460____closed__3; +static lean_object* l_UInt32_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179____lambda__1___closed__2; +static lean_object* l___regBuiltin_UInt64_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12646____closed__3; +static lean_object* l___regBuiltin_UInt64_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12838____closed__7; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__74; -static lean_object* l___regBuiltin_UInt16_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11543____closed__6; +static lean_object* l___regBuiltin_UInt64_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12531____closed__3; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__342; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__6; uint32_t lean_uint32_mul(uint32_t, uint32_t); -static lean_object* l___regBuiltin_UInt32_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12984____closed__6; -static lean_object* l___regBuiltin_USize_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15622____closed__2; -LEAN_EXPORT lean_object* l___regBuiltin_USize_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15462_(lean_object*); +static lean_object* l___regBuiltin_UInt16_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10098____closed__1; extern lean_object* l_Lean_Meta_Simp_builtinSimprocsRef; -LEAN_EXPORT lean_object* l_USize_reduceLE___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__565; -static lean_object* l___regBuiltin_UInt8_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9776____closed__1; -static lean_object* l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10414____closed__5; +static lean_object* l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8842____closed__3; +static lean_object* l___regBuiltin_UInt64_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12646____closed__4; +LEAN_EXPORT lean_object* l_UInt32_reduceBinPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179____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__294; -static lean_object* l___regBuiltin_UInt32_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13220____closed__2; +static lean_object* l___regBuiltin_UInt64_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12491____closed__13; +static lean_object* l___regBuiltin_UInt64_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12410____closed__11; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__250; LEAN_EXPORT lean_object* l_UInt64_reduceDiv___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___regBuiltin_UInt16_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9829_(lean_object*); +static lean_object* l___regBuiltin_UInt16_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10098____closed__5; LEAN_EXPORT lean_object* l_UInt32_reduceGE___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_UInt32_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12578____closed__5; -static lean_object* l___regBuiltin_USize_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15380____closed__2; -LEAN_EXPORT lean_object* l___regBuiltin_UInt32_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12701_(lean_object*); +static lean_object* l___regBuiltin_UInt32_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10873____closed__4; +static lean_object* l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8454____closed__11; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__422; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__60; +LEAN_EXPORT lean_object* l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8454_(lean_object*); static lean_object* l_UInt32_fromExpr___closed__2; -LEAN_EXPORT lean_object* l_UInt16_toExprCore(uint16_t); -static lean_object* l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10021____closed__6; -LEAN_EXPORT lean_object* l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10062_(lean_object*); +static lean_object* l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8842____closed__12; +static lean_object* l___regBuiltin_UInt8_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8766____closed__3; +LEAN_EXPORT lean_object* l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8844_(lean_object*); static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__137; -static lean_object* l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10021____closed__7; -static lean_object* l___regBuiltin_UInt16_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11543____closed__2; -static lean_object* l___regBuiltin_UInt32_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12903____closed__10; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__217; -static lean_object* l___regBuiltin_UInt64_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13939____closed__8; +static lean_object* l___regBuiltin_UInt64_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12165____closed__5; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__269; -LEAN_EXPORT lean_object* l___regBuiltin_USize_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15704_(lean_object*); +static lean_object* l___regBuiltin_UInt8_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8089____closed__4; LEAN_EXPORT lean_object* l_UInt16_reduceLE___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___regBuiltin_UInt16_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9503_(lean_object*); LEAN_EXPORT lean_object* l_UInt8_fromExpr(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_UInt32_reduceMul___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___regBuiltin_UInt64_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14059_(lean_object*); static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__46; -static lean_object* l___regBuiltin_USize_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15866____closed__3; +static lean_object* l___regBuiltin_UInt64_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12450____closed__11; lean_object* lean_uint16_to_nat(uint16_t); -static lean_object* l___regBuiltin_UInt16_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11663____closed__6; +static lean_object* l___regBuiltin_UInt64_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12410____closed__12; +static lean_object* l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8454____closed__18; LEAN_EXPORT lean_object* l_UInt16_reduceToNat___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___regBuiltin_UInt16_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11057____closed__6; -static lean_object* l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__5; -LEAN_EXPORT lean_object* l___regBuiltin_UInt16_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11464_(lean_object*); -static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__592; +static lean_object* l___regBuiltin_UInt8_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8766____closed__1; +static lean_object* l___regBuiltin_UInt16_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__10174____closed__9; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__200; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__218; -LEAN_EXPORT lean_object* l_UInt64_reduceBinPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301_(lean_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_UInt8_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10222_(lean_object*); -static lean_object* l___regBuiltin_UInt8_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10222____closed__6; -static lean_object* l___regBuiltin_USize_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15581____closed__5; -static lean_object* l___regBuiltin_UInt8_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10222____closed__4; +static lean_object* l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__4; +LEAN_EXPORT lean_object* l_UInt64_reduceBEq____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511_(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_UInt8_reduceGE___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___regBuiltin_UInt32_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10793_(lean_object*); +static lean_object* l___regBuiltin_UInt8_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8129____closed__9; LEAN_EXPORT lean_object* l_UInt8_reduceLT(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___regBuiltin_UInt16_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11137____closed__7; -static lean_object* l___regBuiltin_UInt32_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12863____closed__3; -static lean_object* l___regBuiltin_UInt64_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14059____closed__5; +static lean_object* l___regBuiltin_UInt64_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12328____closed__2; +static lean_object* l_UInt32_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179____lambda__1___closed__1; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__466; -LEAN_EXPORT lean_object* l_USize_reduceSub___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_UInt8_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9656____closed__3; -static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__503; +static lean_object* l___regBuiltin_UInt8_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8089____closed__2; +static lean_object* l___regBuiltin_UInt16_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9381____closed__9; +static lean_object* l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8049____closed__5; +static lean_object* l___regBuiltin_UInt32_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11199____closed__3; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__448; -LEAN_EXPORT lean_object* l___regBuiltin_UInt64_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14099_(lean_object*); +LEAN_EXPORT lean_object* l___regBuiltin_UInt64_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12246_(lean_object*); LEAN_EXPORT lean_object* l_UInt32_reduceMod___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__375; -static lean_object* l___regBuiltin_UInt64_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14059____closed__2; lean_object* l_Lean_SourceInfo_fromRef(lean_object*, uint8_t); -static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__618; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__288; -LEAN_EXPORT lean_object* l___regBuiltin_UInt64_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14737_(lean_object*); -LEAN_EXPORT lean_object* l___regBuiltin_UInt64_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14142_(lean_object*); -static lean_object* l___regBuiltin_UInt32_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12903____closed__3; uint8_t lean_uint32_dec_le(uint32_t, uint32_t); -static lean_object* l___regBuiltin_USize_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15866____closed__14; +static lean_object* l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8049____closed__8; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__470; +LEAN_EXPORT lean_object* l_UInt64_reduceBinPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511____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__232; +static lean_object* l___regBuiltin_UInt32_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11159____closed__2; +static lean_object* l___regBuiltin_UInt64_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12531____closed__14; +static lean_object* l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8049____closed__10; uint32_t lean_uint32_of_nat(lean_object*); +LEAN_EXPORT lean_object* l___regBuiltin_UInt16_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__10176_(lean_object*); static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__2; +LEAN_EXPORT lean_object* l___regBuiltin_UInt32_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11203_(lean_object*); LEAN_EXPORT lean_object* l_UInt64_reduceLT___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__125; -LEAN_EXPORT lean_object* l___regBuiltin_USize_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15663_(lean_object*); 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__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__126; -static lean_object* l___regBuiltin_UInt64_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13939____closed__9; -static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__593; -static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__562; +static lean_object* l___regBuiltin_UInt8_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8169____closed__1; +static lean_object* l___regBuiltin_UInt16_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9461____closed__3; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__56; -static lean_object* l___regBuiltin_UInt16_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11543____closed__11; -static lean_object* l___regBuiltin_UInt32_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12863____closed__12; -static lean_object* l___regBuiltin_UInt64_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13939____closed__7; -static lean_object* l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10062____closed__14; -static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__536; -static lean_object* l___regBuiltin_UInt64_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14737____closed__10; -static lean_object* l_UInt32_toExprCore___closed__1; +static lean_object* l___regBuiltin_UInt16_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9541____closed__2; +static lean_object* l___regBuiltin_UInt32_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11118____closed__1; +static lean_object* l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8842____closed__9; +LEAN_EXPORT lean_object* l_UInt32_reduceEq____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179____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__324; -static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__597; -static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__584; -static lean_object* l___regBuiltin_UInt8_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9776____closed__7; -LEAN_EXPORT lean_object* l_USize_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742____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_UInt64_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14545____closed__5; -static lean_object* l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10414____closed__14; -static lean_object* l___regBuiltin_UInt64_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14385____closed__5; +static lean_object* l___regBuiltin_UInt64_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12125____closed__2; +LEAN_EXPORT lean_object* l___regBuiltin_UInt16_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9831_(lean_object*); +LEAN_EXPORT lean_object* l_UInt32_reduceNe____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179_(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____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9746____closed__3; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__118; -static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__518; -static lean_object* l___regBuiltin_USize_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15380____closed__3; lean_object* lean_uint64_to_nat(uint64_t); -static lean_object* l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10102____closed__5; -static lean_object* l___regBuiltin_UInt16_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11422____closed__9; +LEAN_EXPORT lean_object* l___regBuiltin_UInt32_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11122_(lean_object*); +LEAN_EXPORT lean_object* l___regBuiltin_UInt16_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9668_(lean_object*); +LEAN_EXPORT lean_object* l___regBuiltin_UInt16_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9501_(lean_object*); +LEAN_EXPORT lean_object* l_UInt32_reduceNe____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179____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___regBuiltin_UInt8_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8293_(lean_object*); static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__441; -LEAN_EXPORT lean_object* l_UInt32_reduceNe____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860_(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____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11503____closed__15; -static lean_object* l___regBuiltin_UInt32_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12863____closed__6; +static lean_object* l___regBuiltin_UInt32_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11078____closed__1; +static lean_object* l___regBuiltin_UInt32_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10955____closed__5; +static lean_object* l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8495____closed__3; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__412; +static lean_object* l___regBuiltin_UInt32_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10873____closed__2; LEAN_EXPORT lean_object* l_UInt32_reduceLE(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__489; +static lean_object* l___regBuiltin_UInt16_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9827____closed__9; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__363; -LEAN_EXPORT lean_object* l_UInt64_reduceBinPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301____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_USize_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15540____closed__6; -LEAN_EXPORT lean_object* l___regBuiltin_UInt16_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11099_(lean_object*); -static lean_object* l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +static lean_object* l___regBuiltin_UInt16_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9786____closed__2; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__192; -static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__513; -static lean_object* l___regBuiltin_USize_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15785____closed__6; -static lean_object* l___regBuiltin_UInt32_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__13296____closed__9; +static lean_object* l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__11; +LEAN_EXPORT lean_object* l_UInt16_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847_(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__76; -static lean_object* l___regBuiltin_UInt64_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14737____closed__4; -LEAN_EXPORT lean_object* l___regBuiltin_UInt64_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14661_(lean_object*); -LEAN_EXPORT lean_object* l___regBuiltin_UInt8_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10340_(lean_object*); -static lean_object* l_UInt16_toExprCore___closed__3; +static lean_object* l___regBuiltin_UInt16_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9786____closed__6; +static lean_object* l___regBuiltin_UInt16_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9381____closed__8; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__94; -static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__526; +LEAN_EXPORT lean_object* l___regBuiltin_UInt8_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8291_(lean_object*); +static lean_object* l___regBuiltin_UInt32_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10713____closed__7; +static lean_object* l___regBuiltin_UInt32_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10753____closed__4; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__390; -static lean_object* l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10021____closed__10; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__483; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__114; -LEAN_EXPORT lean_object* l___regBuiltin_UInt64_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14140_(lean_object*); static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__456; -static lean_object* l___regBuiltin_USize_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15745____closed__8; -LEAN_EXPORT lean_object* l_USize_reduceMod___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_UInt32_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12903____closed__13; +LEAN_EXPORT lean_object* l___regBuiltin_UInt32_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11508_(lean_object*); static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__329; -static lean_object* l___regBuiltin_UInt32_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12984____closed__7; -static lean_object* l___regBuiltin_UInt16_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11462____closed__4; -static lean_object* l___regBuiltin_UInt8_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9776____closed__3; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__240; -static lean_object* l___regBuiltin_UInt16_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11097____closed__8; -static lean_object* l___regBuiltin_UInt8_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9776____closed__4; +static lean_object* l___regBuiltin_UInt32_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10713____closed__5; +LEAN_EXPORT lean_object* l_UInt32_reduceBinPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179_(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__117; -LEAN_EXPORT lean_object* l_UInt32_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860____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___regBuiltin_UInt64_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12838____closed__11; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__50; -static lean_object* l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10414____closed__2; -LEAN_EXPORT lean_object* l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978_(lean_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_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14267_(lean_object*); -static lean_object* l___regBuiltin_UInt64_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14344____closed__11; +LEAN_EXPORT lean_object* l___regBuiltin_UInt32_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11041_(lean_object*); +static lean_object* l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8842____closed__5; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__193; static lean_object* l_UInt8_reduceOfNatCore___closed__1; -static lean_object* l___regBuiltin_UInt8_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10338____closed__5; uint8_t lean_uint8_mod(uint8_t, uint8_t); -static lean_object* l___regBuiltin_UInt16_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11462____closed__14; -LEAN_EXPORT lean_object* l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9620_(lean_object*); -LEAN_EXPORT lean_object* l_UInt64_reduceNe____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301____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_reduceMod(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__490; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__251; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__398; -static lean_object* l___regBuiltin_USize_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15826____closed__3; -LEAN_EXPORT lean_object* l___regBuiltin_UInt64_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14023_(lean_object*); LEAN_EXPORT lean_object* l_UInt8_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__474; +static lean_object* l___regBuiltin_UInt8_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8250____closed__2; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__80; LEAN_EXPORT lean_object* l_UInt16_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___regBuiltin_UInt64_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14019____closed__8; -LEAN_EXPORT lean_object* l___regBuiltin_USize_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15460_(lean_object*); +static lean_object* l___regBuiltin_UInt64_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12085____closed__6; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__254; -static lean_object* l___regBuiltin_UInt16_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11422____closed__11; +static lean_object* l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__15; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__205; +static lean_object* l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__21; +static lean_object* l___regBuiltin_UInt8_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8129____closed__6; uint32_t lean_uint32_div(uint32_t, uint32_t); -static lean_object* l_UInt32_toExpr___closed__1; +LEAN_EXPORT lean_object* l_UInt8_isValue____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____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__446; -LEAN_EXPORT lean_object* l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9618_(lean_object*); -static lean_object* l___regBuiltin_UInt8_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9817____closed__9; -LEAN_EXPORT lean_object* l_UInt64_isValue____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301_(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__553; -static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__552; -static lean_object* l___regBuiltin_UInt64_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14140____closed__1; -static lean_object* l___regBuiltin_UInt64_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14099____closed__4; +static lean_object* l___regBuiltin_UInt32_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10793____closed__7; +static lean_object* l___regBuiltin_UInt8_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8129____closed__8; +static lean_object* l___regBuiltin_UInt16_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9541____closed__6; +LEAN_EXPORT lean_object* l___regBuiltin_UInt64_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12089_(lean_object*); +static lean_object* l___regBuiltin_UInt64_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12491____closed__7; +LEAN_EXPORT lean_object* l_UInt16_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847____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_UInt16_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9543_(lean_object*); +LEAN_EXPORT lean_object* l___regBuiltin_UInt8_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8336_(lean_object*); lean_object* lean_uint64_to_nat(uint64_t); -LEAN_EXPORT lean_object* l_UInt16_isValue____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419_(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_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12948_(lean_object*); -LEAN_EXPORT lean_object* l___regBuiltin_UInt64_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14226_(lean_object*); +static lean_object* l___regBuiltin_UInt32_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11118____closed__3; +static lean_object* l___regBuiltin_UInt32_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10753____closed__2; +static lean_object* l___regBuiltin_UInt32_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11199____closed__8; LEAN_EXPORT lean_object* l_UInt32_reduceOfNatCore___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__437; -static lean_object* l___regBuiltin_UInt32_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12984____closed__8; -LEAN_EXPORT lean_object* l_USize_reduceAdd(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___regBuiltin_UInt64_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14344____closed__7; -static lean_object* l___regBuiltin_UInt16_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11422____closed__14; +static lean_object* l___regBuiltin_UInt16_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9827____closed__15; +static lean_object* l___regBuiltin_UInt32_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10753____closed__3; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__439; -static lean_object* l___regBuiltin_UInt16_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11137____closed__2; -static lean_object* l___regBuiltin_UInt16_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11462____closed__11; -static lean_object* l___regBuiltin_UInt8_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9899____closed__2; +static lean_object* l___regBuiltin_UInt64_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12085____closed__3; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__242; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__488; -static lean_object* l___regBuiltin_UInt8_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9736____closed__7; -static lean_object* l___regBuiltin_UInt32_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12863____closed__9; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__372; LEAN_EXPORT lean_object* l_UInt16_reduceDiv___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_UInt64_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14059____closed__6; -LEAN_EXPORT lean_object* l___regBuiltin_UInt32_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12984_(lean_object*); -static lean_object* l___regBuiltin_UInt32_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__13296____closed__1; +LEAN_EXPORT lean_object* l_UInt16_reduceBNe____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847____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__249; +static lean_object* l___regBuiltin_UInt64_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12287____closed__1; lean_object* l_Lean_quoteNameMk(lean_object*); -static lean_object* l___regBuiltin_UInt8_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9776____closed__8; +static lean_object* l___regBuiltin_UInt32_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11037____closed__2; +static lean_object* l___regBuiltin_UInt32_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10833____closed__7; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__133; -static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__580; +LEAN_EXPORT lean_object* l___regBuiltin_UInt8_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8250_(lean_object*); uint16_t lean_uint16_div(uint16_t, uint16_t); -LEAN_EXPORT lean_object* l___regBuiltin_UInt32_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13220_(lean_object*); -static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__574; -static lean_object* l___regBuiltin_UInt16_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11097____closed__2; -static lean_object* l___regBuiltin_USize_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15420____closed__2; -LEAN_EXPORT lean_object* l_UInt64_reduceBEq____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301____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_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10062____closed__16; -static lean_object* l___regBuiltin_UInt8_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10222____closed__3; -static lean_object* l___regBuiltin_UInt16_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11663____closed__5; -static lean_object* l___regBuiltin_UInt32_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12538____closed__1; -static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__547; -static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__573; -LEAN_EXPORT lean_object* l___regBuiltin_USize_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15424_(lean_object*); +static lean_object* l___regBuiltin_UInt64_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12287____closed__2; static lean_object* l_commandDeclare__uint__simprocs_____closed__7; -static lean_object* l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__20; +static lean_object* l___regBuiltin_UInt32_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10753____closed__8; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__321; -LEAN_EXPORT lean_object* l___regBuiltin_UInt8_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9736_(lean_object*); -static lean_object* l___regBuiltin_UInt32_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12903____closed__1; +static lean_object* l___regBuiltin_UInt64_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12125____closed__6; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__30; -static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__549; -LEAN_EXPORT lean_object* l___regBuiltin_USize_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_16106_(lean_object*); -LEAN_EXPORT lean_object* l___regBuiltin_UInt8_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9660_(lean_object*); -LEAN_EXPORT lean_object* l_UInt32_reduceEq____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860_(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_UInt8_fromExpr___closed__1; -LEAN_EXPORT lean_object* l___regBuiltin_USize_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15828_(lean_object*); -static lean_object* l___regBuiltin_UInt32_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12498____closed__1; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__376; -LEAN_EXPORT lean_object* l___regBuiltin_USize_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15544_(lean_object*); -LEAN_EXPORT lean_object* l___regBuiltin_USize_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15988_(lean_object*); -LEAN_EXPORT lean_object* l___regBuiltin_UInt8_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9698_(lean_object*); -static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__546; -static lean_object* l___regBuiltin_UInt64_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14385____closed__11; -static lean_object* l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__11; -static lean_object* l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__2; -static lean_object* l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9616____closed__5; +static lean_object* l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__2; +static lean_object* l___regBuiltin_UInt32_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11159____closed__11; +LEAN_EXPORT lean_object* l___regBuiltin_UInt32_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10835_(lean_object*); +static lean_object* l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8049____closed__7; +static lean_object* l___regBuiltin_UInt16_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9827____closed__13; +static lean_object* l___regBuiltin_UInt64_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12246____closed__6; LEAN_EXPORT lean_object* l_UInt16_reduceSub___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__108; -static lean_object* l___regBuiltin_USize_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15663____closed__2; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__247; -LEAN_EXPORT lean_object* l___regBuiltin_USize_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15585_(lean_object*); -static lean_object* l___regBuiltin_UInt32_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12699____closed__4; -LEAN_EXPORT lean_object* l___regBuiltin_UInt16_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11383_(lean_object*); -static lean_object* l___regBuiltin_USize_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15745____closed__7; -static lean_object* l___regBuiltin_UInt16_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11137____closed__1; -static lean_object* l___regBuiltin_UInt16_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11217____closed__7; -LEAN_EXPORT lean_object* l___regBuiltin_UInt16_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11663_(lean_object*); -LEAN_EXPORT lean_object* l___regBuiltin_UInt16_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11667_(lean_object*); -LEAN_EXPORT lean_object* l_USize_reduceNe____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742_(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____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9664____closed__1; +static lean_object* l___regBuiltin_UInt32_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10873____closed__7; +LEAN_EXPORT lean_object* l_UInt8_reduceBinPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____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_UInt64_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12491____closed__8; +static lean_object* l___regBuiltin_UInt16_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9827____closed__7; +LEAN_EXPORT lean_object* l_UInt64_reduceBinPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511____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___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; -static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__541; +LEAN_EXPORT lean_object* l___regBuiltin_UInt8_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8254_(lean_object*); static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__237; -static lean_object* l___regBuiltin_UInt16_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11177____closed__3; -LEAN_EXPORT lean_object* l___regBuiltin_UInt32_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12744_(lean_object*); +LEAN_EXPORT lean_object* l___regBuiltin_UInt32_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10914_(lean_object*); +static lean_object* l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8842____closed__16; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__265; -static lean_object* l___regBuiltin_UInt64_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14344____closed__10; -static lean_object* l_UInt64_toExpr___closed__1; -static lean_object* l___regBuiltin_UInt32_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12498____closed__8; -static lean_object* l___regBuiltin_UInt64_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14385____closed__6; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__284; -LEAN_EXPORT lean_object* l_UInt16_reduceEq____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419____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_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9858____closed__6; 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*); -static lean_object* l___regBuiltin_UInt64_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14019____closed__4; +static lean_object* l___regBuiltin_UInt8_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8650____closed__6; +LEAN_EXPORT lean_object* l___regBuiltin_UInt8_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8377_(lean_object*); uint64_t lean_uint64_add(uint64_t, uint64_t); -static lean_object* l_UInt32_toExprCore___closed__3; +LEAN_EXPORT lean_object* l___regBuiltin_UInt32_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10757_(lean_object*); static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__11; lean_object* l_Lean_Name_num___override(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___regBuiltin_UInt32_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12699_(lean_object*); -LEAN_EXPORT lean_object* l_USize_reduceBinPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742____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___regBuiltin_UInt32_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12660_(lean_object*); lean_object* l_Lean_Syntax_node3(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__296; -static lean_object* l___regBuiltin_UInt8_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9696____closed__8; -static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__507; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__392; -LEAN_EXPORT lean_object* l___regBuiltin_UInt32_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12540_(lean_object*); +static lean_object* l___regBuiltin_UInt16_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9541____closed__4; +LEAN_EXPORT lean_object* l___regBuiltin_UInt8_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8173_(lean_object*); lean_object* l_Lean_Name_append(lean_object*, lean_object*); -static lean_object* l___regBuiltin_USize_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15745____closed__4; LEAN_EXPORT lean_object* l_UInt32_reduceAdd___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_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10102____closed__2; -static lean_object* l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10414____closed__9; +LEAN_EXPORT lean_object* l_UInt8_isValue____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515_(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___regBuiltin_UInt16_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9461____closed__8; +static lean_object* l___regBuiltin_UInt8_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8089____closed__7; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__152; -static lean_object* l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__21; -static lean_object* l___regBuiltin_UInt8_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9696____closed__6; -LEAN_EXPORT lean_object* l___regBuiltin_UInt16_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11057_(lean_object*); +static lean_object* l___regBuiltin_UInt8_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8169____closed__3; +LEAN_EXPORT lean_object* l___regBuiltin_UInt16_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9582_(lean_object*); static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__49; -static lean_object* l___regBuiltin_USize_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15785____closed__11; +LEAN_EXPORT lean_object* l_UInt8_reduceBEq____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____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__23; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__357; -LEAN_EXPORT lean_object* l_UInt8_reduceNe____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____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__263; -static lean_object* l___regBuiltin_USize_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15866____closed__6; -static lean_object* l___regBuiltin_UInt32_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12538____closed__3; +static lean_object* l___regBuiltin_UInt16_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__10174____closed__13; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__157; -static lean_object* l___regBuiltin_UInt32_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12984____closed__13; -static lean_object* l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9616____closed__3; -static lean_object* l___regBuiltin_UInt32_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__13296____closed__2; +LEAN_EXPORT lean_object* l_UInt64_reduceEq____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511____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_commandDeclare__uint__simprocs_____closed__6; -extern lean_object* l_Lean_levelZero; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__22; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__230; -static lean_object* l___regBuiltin_USize_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15826____closed__6; -static lean_object* l___regBuiltin_UInt8_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9656____closed__8; +static lean_object* l___regBuiltin_UInt32_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11506____closed__3; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__351; -LEAN_EXPORT lean_object* l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____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_UInt16_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847____lambda__1___closed__3; LEAN_EXPORT lean_object* l_UInt64_fromExpr___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_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15380____closed__1; LEAN_EXPORT lean_object* l_UInt8_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_UInt16_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11299_(lean_object*); +static lean_object* l___regBuiltin_UInt8_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8650____closed__2; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__406; -LEAN_EXPORT lean_object* l___regBuiltin_UInt32_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13108_(lean_object*); -static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__527; -static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__604; -static lean_object* l___regBuiltin_USize_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15785____closed__10; +static lean_object* l___regBuiltin_UInt32_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11506____closed__11; LEAN_EXPORT lean_object* l_UInt64_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__127; -LEAN_EXPORT lean_object* l_UInt16_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419____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___regBuiltin_UInt32_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12498_(lean_object*); +static lean_object* l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__8; +static lean_object* l___regBuiltin_UInt8_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8209____closed__5; +static lean_object* l___regBuiltin_UInt32_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10793____closed__6; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__196; LEAN_EXPORT lean_object* l_UInt16_reduceOfNatCore___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_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14344____closed__8; -static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__523; +static lean_object* l___regBuiltin_UInt8_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8169____closed__5; LEAN_EXPORT lean_object* l_UInt64_reduceGT___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_UInt32_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12658____closed__5; +LEAN_EXPORT lean_object* l___regBuiltin_UInt64_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12762_(lean_object*); uint64_t lean_uint64_div(uint64_t, uint64_t); -static lean_object* l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__13; -static lean_object* l___regBuiltin_UInt64_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14737____closed__14; -static lean_object* l___regBuiltin_UInt64_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14181____closed__4; +static lean_object* l___regBuiltin_UInt16_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9982____closed__5; +static lean_object* l___regBuiltin_UInt16_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9827____closed__11; +static lean_object* l___regBuiltin_UInt64_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12531____closed__1; +LEAN_EXPORT lean_object* l___regBuiltin_UInt16_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9707_(lean_object*); +static lean_object* l___regBuiltin_UInt64_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12045____closed__6; LEAN_EXPORT lean_object* l_UInt64_reduceMod___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_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11258____closed__4; +static lean_object* l___regBuiltin_UInt16_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10098____closed__2; +LEAN_EXPORT lean_object* l___regBuiltin_UInt8_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8332_(lean_object*); static lean_object* l_UInt32_fromExpr___closed__1; -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*); -LEAN_EXPORT lean_object* l___regBuiltin_USize_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__16178_(lean_object*); -static lean_object* l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10102____closed__3; +LEAN_EXPORT lean_object* l_UInt16_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847____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_UInt64_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12410____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*); -static lean_object* l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9616____closed__9; -static lean_object* l___regBuiltin_UInt64_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14304____closed__10; -LEAN_EXPORT lean_object* l___regBuiltin_UInt64_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13939_(lean_object*); +static lean_object* l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8495____closed__4; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__79; -static lean_object* l___regBuiltin_UInt64_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14737____closed__2; +static lean_object* l___regBuiltin_UInt8_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8089____closed__1; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__486; -static lean_object* l___regBuiltin_UInt64_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14425____closed__14; -static lean_object* l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10102____closed__10; -static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__538; +static lean_object* l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8051____closed__1; +static lean_object* l___regBuiltin_UInt32_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10793____closed__1; +static lean_object* l___regBuiltin_UInt64_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12205____closed__6; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__26; -static lean_object* l___regBuiltin_UInt16_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11503____closed__4; +static lean_object* l___regBuiltin_UInt64_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12246____closed__5; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__330; +LEAN_EXPORT lean_object* l___regBuiltin_UInt64_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12412_(lean_object*); static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__318; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__77; -static lean_object* l_UInt8_toExprCore___closed__4; -static lean_object* l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10062____closed__2; +static lean_object* l___regBuiltin_UInt32_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11314____closed__1; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__19; +static lean_object* l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__9; +static lean_object* l___regBuiltin_UInt16_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__10174____closed__14; +LEAN_EXPORT lean_object* l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8416_(lean_object*); static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__88; -LEAN_EXPORT lean_object* l___regBuiltin_UInt8_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9860_(lean_object*); static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__285; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__238; LEAN_EXPORT lean_object* l_UInt16_reduceAdd___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__138; -static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__533; uint8_t lean_uint8_mul(uint8_t, uint8_t); static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__272; -static lean_object* l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__8; -LEAN_EXPORT lean_object* l_UInt8_reduceBinPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____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_UInt32_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179____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* l_Lean_addMacroScope(lean_object*, lean_object*, lean_object*); -static lean_object* l___regBuiltin_UInt8_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9776____closed__9; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__384; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__51; -static lean_object* l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9616____closed__10; -static lean_object* l___regBuiltin_USize_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__16178____closed__10; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__35; -static lean_object* l___regBuiltin_UInt64_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14385____closed__13; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__317; -static lean_object* l___regBuiltin_UInt16_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11503____closed__14; -LEAN_EXPORT lean_object* l_USize_reduceMul___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___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10066_(lean_object*); -static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__548; -static lean_object* l___regBuiltin_USize_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15380____closed__4; -static lean_object* l___regBuiltin_UInt8_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9696____closed__1; -static lean_object* l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__3; -LEAN_EXPORT lean_object* l___regBuiltin_USize_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15384_(lean_object*); -static lean_object* l___regBuiltin_USize_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15581____closed__6; +LEAN_EXPORT lean_object* l_UInt64_reduceBNe____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511____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_UInt32_reduceLE___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_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10021____closed__19; +static lean_object* l___regBuiltin_UInt16_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9867____closed__11; +static lean_object* l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8049____closed__1; uint16_t lean_uint16_of_nat(lean_object*); -LEAN_EXPORT lean_object* l_USize_reduceNe____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742____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_UInt32_reduceBinPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860____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_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9985_(lean_object*); +static lean_object* l___regBuiltin_UInt16_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9786____closed__9; +LEAN_EXPORT lean_object* l___regBuiltin_UInt32_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11161_(lean_object*); lean_object* l_Lean_Name_str___override(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_USize_reduceBinPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742____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___regBuiltin_USize_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15986____closed__5; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__328; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__93; -static lean_object* l_UInt32_toExprCore___closed__2; -static lean_object* l___regBuiltin_USize_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15745____closed__12; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__210; -static lean_object* l___regBuiltin_USize_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15866____closed__15; -LEAN_EXPORT lean_object* l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10106_(lean_object*); +static lean_object* l___regBuiltin_UInt64_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12125____closed__5; LEAN_EXPORT lean_object* l_UInt16_reduceGT(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____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12531____closed__8; LEAN_EXPORT lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_UInt32_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860_(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___regBuiltin_UInt16_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9827____closed__10; +LEAN_EXPORT lean_object* l___regBuiltin_UInt64_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12414_(lean_object*); static lean_object* l_UInt16_reduceToNat___closed__1; -static lean_object* l___regBuiltin_UInt32_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12984____closed__15; +static lean_object* l___regBuiltin_UInt32_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11118____closed__8; +LEAN_EXPORT lean_object* l_UInt32_reduceBNe____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179____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___regBuiltin_UInt64_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12371_(lean_object*); +static lean_object* l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8535____closed__3; +static lean_object* l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8842____closed__1; +static lean_object* l___regBuiltin_UInt32_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11430____closed__5; +LEAN_EXPORT lean_object* l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____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* l_Lean_Syntax_node2(lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___regBuiltin_USize_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15785____closed__7; LEAN_EXPORT lean_object* l_UInt32_fromExpr___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_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14140____closed__6; -static lean_object* l___regBuiltin_USize_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15866____closed__13; +static lean_object* l___regBuiltin_UInt64_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12125____closed__3; LEAN_EXPORT lean_object* l_UInt8_reduceDiv(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_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12742_(lean_object*); LEAN_EXPORT lean_object* l_UInt64_reduceGE(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___regBuiltin_UInt32_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12944____closed__14; -LEAN_EXPORT lean_object* l_UInt32_reduceBEq____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860_(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__537; +static lean_object* l___regBuiltin_UInt32_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10713____closed__9; +static lean_object* l___regBuiltin_UInt8_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8089____closed__5; +LEAN_EXPORT lean_object* l_UInt16_isValue____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847____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__426; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__233; uint64_t lean_uint64_mul(uint64_t, uint64_t); -static lean_object* l___regBuiltin_UInt8_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9696____closed__3; +LEAN_EXPORT lean_object* l___regBuiltin_UInt8_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8375_(lean_object*); static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__427; -static lean_object* l___regBuiltin_UInt8_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9858____closed__8; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__368; -LEAN_EXPORT lean_object* l___regBuiltin_UInt64_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13941_(lean_object*); -static lean_object* l___regBuiltin_UInt64_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14019____closed__1; +LEAN_EXPORT lean_object* l_UInt64_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511____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_UInt32_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10873____closed__6; +static lean_object* l___regBuiltin_UInt16_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9746____closed__14; lean_object* l_Lean_Syntax_getArg(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_UInt64_isValue____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301____boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8495____closed__13; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__331; -LEAN_EXPORT lean_object* l_UInt64_reduceEq____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301_(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_UInt64_reduceSub(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10021____closed__3; -static lean_object* l___regBuiltin_UInt16_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11503____closed__8; -static lean_object* l___regBuiltin_UInt64_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14304____closed__4; LEAN_EXPORT lean_object* l_UInt16_reduceOfNatCore___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_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11303_(lean_object*); -static lean_object* l___regBuiltin_UInt64_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14099____closed__7; -static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__532; +LEAN_EXPORT lean_object* l___regBuiltin_UInt8_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8211_(lean_object*); +static lean_object* l___regBuiltin_UInt16_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9867____closed__5; +static lean_object* l___regBuiltin_UInt64_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12491____closed__3; LEAN_EXPORT lean_object* l_UInt8_reduceOfNatCore___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__627; -static lean_object* l___regBuiltin_USize_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15785____closed__9; -static lean_object* l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10102____closed__1; -static lean_object* l___regBuiltin_UInt32_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__13296____closed__12; -LEAN_EXPORT lean_object* l_UInt32_reduceBNe____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860____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_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10021____closed__4; -static lean_object* l___regBuiltin_UInt32_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12578____closed__7; -static lean_object* l___regBuiltin_USize_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15622____closed__4; +static lean_object* l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8049____closed__12; +static lean_object* l___regBuiltin_UInt32_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11159____closed__13; +static lean_object* l___regBuiltin_UInt32_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11078____closed__14; +static lean_object* l___regBuiltin_UInt32_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11078____closed__2; +static lean_object* l___regBuiltin_UInt32_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11314____closed__5; +static lean_object* l___regBuiltin_UInt8_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8169____closed__8; +static lean_object* l___regBuiltin_UInt32_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10914____closed__4; +LEAN_EXPORT lean_object* l_UInt16_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847_(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_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__3; +static lean_object* l___regBuiltin_UInt32_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11118____closed__10; +static lean_object* l___regBuiltin_UInt32_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10713____closed__3; LEAN_EXPORT lean_object* l_UInt8_reduceAdd___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_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10414____closed__15; -static lean_object* l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10021____closed__9; +static lean_object* l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8535____closed__5; LEAN_EXPORT lean_object* l_UInt32_reduceLT(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___regBuiltin_UInt16_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9786____closed__7; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__454; -LEAN_EXPORT lean_object* l___regBuiltin_UInt32_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12620_(lean_object*); static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__105; static lean_object* l_commandDeclare__uint__simprocs_____closed__5; -static lean_object* l___regBuiltin_UInt64_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14425____closed__13; -static lean_object* l___regBuiltin_UInt16_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11503____closed__9; +static lean_object* l___regBuiltin_UInt16_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9421____closed__1; +static lean_object* l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8535____closed__13; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__219; -static lean_object* l___regBuiltin_UInt64_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14344____closed__4; +static lean_object* l___regBuiltin_UInt16_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9867____closed__3; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__356; -static lean_object* l___regBuiltin_UInt64_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14425____closed__3; -static lean_object* l___regBuiltin_UInt16_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11422____closed__8; -LEAN_EXPORT lean_object* l___regBuiltin_USize_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15830_(lean_object*); static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__496; LEAN_EXPORT lean_object* l_UInt16_reduceGE___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__626; +static lean_object* l___regBuiltin_UInt64_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12246____closed__4; LEAN_EXPORT lean_object* l_UInt8_reduceGE___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____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12824_(lean_object*); -LEAN_EXPORT lean_object* l___regBuiltin_USize_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15667_(lean_object*); -static lean_object* l___regBuiltin_UInt64_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14737____closed__13; +static lean_object* l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8842____closed__6; +static lean_object* l___regBuiltin_UInt8_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8650____closed__7; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__283; -static lean_object* l___regBuiltin_UInt8_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9817____closed__1; +static lean_object* l___regBuiltin_UInt64_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12205____closed__4; LEAN_EXPORT lean_object* l_UInt8_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_UInt16_reduceBinPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419_(lean_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_USize_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15826_(lean_object*); +static lean_object* l___regBuiltin_UInt64_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12125____closed__7; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__299; -static lean_object* l___regBuiltin_UInt16_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11462____closed__2; lean_object* l_Lean_Expr_appFn_x21(lean_object*); -LEAN_EXPORT lean_object* l_USize_reduceLT(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___regBuiltin_UInt32_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12740____closed__4; lean_object* lean_mk_syntax_ident(lean_object*); -LEAN_EXPORT lean_object* l_USize_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_UInt64_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14265_(lean_object*); -static lean_object* l___regBuiltin_UInt64_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14304____closed__2; -static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__575; -static lean_object* l___regBuiltin_USize_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__16178____closed__6; -static lean_object* l_USize_toExpr___closed__1; LEAN_EXPORT lean_object* l_UInt64_reduceLE___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_UInt8_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9696____closed__9; -LEAN_EXPORT lean_object* l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10416_(lean_object*); LEAN_EXPORT lean_object* l_UInt64_reduceOfNatCore(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_UInt64_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301____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___regBuiltin_UInt16_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9867____closed__9; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__415; -lean_object* lean_usize_to_nat(size_t); -static lean_object* l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9616____closed__6; -static lean_object* l___regBuiltin_USize_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15380____closed__8; -static lean_object* l___regBuiltin_UInt32_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12658____closed__7; -static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__608; -static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__589; +static lean_object* l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8842____closed__8; +LEAN_EXPORT lean_object* l___regBuiltin_UInt16_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9425_(lean_object*); +LEAN_EXPORT lean_object* l___regBuiltin_UInt8_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8654_(lean_object*); +LEAN_EXPORT lean_object* l___regBuiltin_UInt64_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12495_(lean_object*); +LEAN_EXPORT lean_object* l_UInt16_reduceBinPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847____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_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8454____closed__13; +static lean_object* l___regBuiltin_UInt64_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12205____closed__2; +LEAN_EXPORT lean_object* l_UInt64_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511_(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_uint16_dec_eq(uint16_t, uint16_t); -LEAN_EXPORT lean_object* l___regBuiltin_USize_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15380_(lean_object*); -LEAN_EXPORT lean_object* l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9616_(lean_object*); +static lean_object* l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8454____closed__8; +static lean_object* l___regBuiltin_UInt32_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11199____closed__7; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__311; -static lean_object* l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10102____closed__7; -LEAN_EXPORT lean_object* l___regBuiltin_UInt32_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12578_(lean_object*); -static lean_object* l___regBuiltin_UInt8_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10222____closed__5; -LEAN_EXPORT lean_object* l_UInt8_reduceBEq____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978_(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_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9705_(lean_object*); static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__228; LEAN_EXPORT lean_object* l_UInt8_reduceSub(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10021____closed__5; -static lean_object* l___regBuiltin_USize_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__16178____closed__13; -LEAN_EXPORT lean_object* l_USize_reduceSub(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_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12045_(lean_object*); +static lean_object* l___regBuiltin_UInt8_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8129____closed__2; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__275; uint8_t lean_uint8_div(uint8_t, uint8_t); -static lean_object* l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10021____closed__18; -static lean_object* l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; -static lean_object* l___regBuiltin_UInt64_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14304____closed__8; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__43; -static lean_object* l___regBuiltin_UInt16_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11543____closed__1; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__460; -static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__554; -static lean_object* l___regBuiltin_UInt16_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11258____closed__5; -static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__519; +LEAN_EXPORT lean_object* l_UInt8_reduceNe____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____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__183; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__414; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__440; -static lean_object* l___regBuiltin_UInt32_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12903____closed__2; -static lean_object* l___regBuiltin_UInt32_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12903____closed__12; +static lean_object* l___regBuiltin_UInt16_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9664____closed__2; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__309; -static lean_object* l___regBuiltin_UInt32_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12578____closed__4; -static lean_object* l___regBuiltin_UInt16_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11299____closed__5; +static lean_object* l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8049____closed__11; uint16_t lean_uint16_sub(uint16_t, uint16_t); +static lean_object* l___regBuiltin_UInt32_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10833____closed__3; +static lean_object* l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8535____closed__16; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__388; +static lean_object* l___regBuiltin_UInt16_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9705____closed__1; LEAN_EXPORT lean_object* l_UInt64_reduceLE___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_UInt16_reduceGT___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__34; -static lean_object* l___regBuiltin_UInt64_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13939____closed__4; -static lean_object* l___regBuiltin_UInt16_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11177____closed__5; -static lean_object* l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9616____closed__8; -size_t lean_usize_mod(size_t, size_t); static lean_object* l_commandDeclare__uint__simprocs_____closed__9; +static lean_object* l___regBuiltin_UInt16_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9461____closed__4; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__354; -static lean_object* l___regBuiltin_UInt32_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__13296____closed__11; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__399; -static lean_object* l___regBuiltin_UInt64_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14019____closed__3; -LEAN_EXPORT lean_object* l___regBuiltin_UInt32_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12822_(lean_object*); -static lean_object* l___regBuiltin_USize_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15866____closed__9; -static lean_object* l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10062____closed__3; -static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__568; -lean_object* lean_usize_to_nat(size_t); -static lean_object* l___regBuiltin_UInt32_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12699____closed__2; -LEAN_EXPORT lean_object* l_UInt8_reduceEq____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978_(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10062____closed__7; -static lean_object* l___regBuiltin_UInt64_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14344____closed__1; +static lean_object* l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__2; +LEAN_EXPORT lean_object* l_UInt32_reduceBEq____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179____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__306; -static lean_object* l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10102____closed__8; -static lean_object* l___regBuiltin_UInt16_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11543____closed__14; -static lean_object* l___regBuiltin_USize_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15500____closed__1; +static lean_object* l___regBuiltin_UInt16_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9501____closed__4; +static lean_object* l___regBuiltin_UInt32_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11199____closed__11; uint64_t lean_uint64_sub(uint64_t, uint64_t); static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__5; -LEAN_EXPORT lean_object* l___regBuiltin_UInt8_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9738_(lean_object*); -static lean_object* l___regBuiltin_UInt8_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9736____closed__3; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__65; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__7; -static lean_object* l___regBuiltin_USize_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_16102____closed__5; -LEAN_EXPORT lean_object* l_UInt32_reduceNe____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860____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_UInt64_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12531____closed__10; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__364; +static lean_object* l___regBuiltin_UInt64_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12838____closed__3; +LEAN_EXPORT lean_object* l_UInt16_reduceNe____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847____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_commandDeclare__uint__simprocs_____closed__3; +static lean_object* l___regBuiltin_UInt32_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10914____closed__1; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__315; -LEAN_EXPORT lean_object* l___regBuiltin_UInt32_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13224_(lean_object*); -static lean_object* l___regBuiltin_UInt64_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14425____closed__10; +LEAN_EXPORT lean_object* l___regBuiltin_UInt8_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8171_(lean_object*); static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__134; -static lean_object* l___regBuiltin_UInt32_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12984____closed__5; +static lean_object* l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8495____closed__14; +static lean_object* l___regBuiltin_UInt64_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12838____closed__10; +static lean_object* l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__16; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__464; -LEAN_EXPORT lean_object* l___regBuiltin_UInt64_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14101_(lean_object*); -static lean_object* l___regBuiltin_UInt16_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11177____closed__8; -static lean_object* l___regBuiltin_USize_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15622____closed__1; -static lean_object* l___regBuiltin_UInt64_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14425____closed__9; -LEAN_EXPORT lean_object* l_UInt8_reduceBEq____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____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_UInt16_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11299____closed__6; +LEAN_EXPORT lean_object* l___regBuiltin_UInt32_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10916_(lean_object*); +LEAN_EXPORT lean_object* l_UInt16_reduceBNe____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847____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_UInt16_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__10174____closed__12; +LEAN_EXPORT lean_object* l_UInt16_reduceBinPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847_(lean_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_UInt8_reduceSub___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_USize_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15581____closed__2; -LEAN_EXPORT lean_object* l___regBuiltin_UInt16_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11424_(lean_object*); -static lean_object* l___regBuiltin_UInt64_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14545____closed__2; +static lean_object* l___regBuiltin_UInt8_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8650____closed__4; +static lean_object* l___regBuiltin_UInt16_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9705____closed__2; +static lean_object* l___regBuiltin_UInt32_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11506____closed__2; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__38; -LEAN_EXPORT lean_object* l_UInt16_reduceNe____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419____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_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13979____closed__6; -static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__504; +static lean_object* l___regBuiltin_UInt32_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10833____closed__5; +LEAN_EXPORT lean_object* l_UInt32_reduceBNe____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179_(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__59; -static lean_object* l___regBuiltin_USize_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15500____closed__3; -LEAN_EXPORT lean_object* l___regBuiltin_USize_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15665_(lean_object*); +static lean_object* l___regBuiltin_UInt64_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12491____closed__10; +LEAN_EXPORT lean_object* l_UInt64_reduceBEq____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511____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__434; +static lean_object* l___regBuiltin_UInt64_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12838____closed__5; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__107; -static lean_object* l___regBuiltin_USize_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15826____closed__9; +LEAN_EXPORT lean_object* l___regBuiltin_UInt64_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12491_(lean_object*); +static lean_object* l___regBuiltin_UInt64_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12838____closed__9; +static lean_object* l___regBuiltin_UInt32_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11159____closed__12; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__224; +static lean_object* l___regBuiltin_UInt32_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10873____closed__5; LEAN_EXPORT lean_object* l_UInt8_reduceLE___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_UInt8_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9862_(lean_object*); -LEAN_EXPORT lean_object* l_UInt64_toExprCore(uint64_t); -LEAN_EXPORT lean_object* l___regBuiltin_UInt64_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14021_(lean_object*); static lean_object* l_UInt32_reduceToNat___closed__1; +static lean_object* l___regBuiltin_UInt8_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8089____closed__9; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__201; -static lean_object* l___regBuiltin_UInt16_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11217____closed__1; +LEAN_EXPORT lean_object* l___regBuiltin_UInt64_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12287_(lean_object*); static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__216; -static lean_object* l___regBuiltin_UInt32_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12618____closed__3; -static lean_object* l___regBuiltin_UInt64_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14344____closed__12; -LEAN_EXPORT lean_object* l_UInt8_isValue____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____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_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12450____closed__7; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__264; -static lean_object* l___regBuiltin_USize_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15420____closed__5; +LEAN_EXPORT lean_object* l___regBuiltin_UInt16_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9982_(lean_object*); static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__14; -static lean_object* l___regBuiltin_UInt16_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11462____closed__8; -static lean_object* l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10414____closed__8; -static lean_object* l___regBuiltin_UInt32_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__13296____closed__8; -static lean_object* l___regBuiltin_USize_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_16102____closed__4; +LEAN_EXPORT lean_object* l___regBuiltin_UInt64_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12087_(lean_object*); LEAN_EXPORT lean_object* l_UInt8_fromExpr___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_USize_toExprCore___closed__3; lean_object* l_Lean_Syntax_node4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_USize_reduceMod___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_UInt32_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12944____closed__8; -static lean_object* l___regBuiltin_UInt16_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11057____closed__7; -static lean_object* l___regBuiltin_UInt64_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14737____closed__1; +LEAN_EXPORT lean_object* l___regBuiltin_UInt64_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12127_(lean_object*); +LEAN_EXPORT lean_object* l___regBuiltin_UInt16_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9623_(lean_object*); +static lean_object* l___regBuiltin_UInt64_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12762____closed__1; +static lean_object* l___regBuiltin_UInt8_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8373____closed__2; LEAN_EXPORT lean_object* l_UInt8_reduceDiv___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_UInt16_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11299____closed__3; -static lean_object* l___regBuiltin_UInt16_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11503____closed__7; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__109; -static lean_object* l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__12; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__115; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__52; +static lean_object* l___regBuiltin_UInt32_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11078____closed__3; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__47; -static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__502; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__55; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__423; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__103; -LEAN_EXPORT lean_object* l___regBuiltin_UInt8_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9696_(lean_object*); LEAN_EXPORT lean_object* l_UInt32_reduceMod___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_UInt16_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11299____closed__4; -static lean_object* l___regBuiltin_UInt32_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13104____closed__5; -LEAN_EXPORT lean_object* l___regBuiltin_UInt8_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9819_(lean_object*); -static lean_object* l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__4; -static lean_object* l___regBuiltin_UInt16_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11503____closed__10; -LEAN_EXPORT lean_object* l_UInt16_toExprCore___boxed(lean_object*); +static lean_object* l___regBuiltin_UInt8_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8169____closed__2; +static lean_object* l___regBuiltin_UInt32_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11199____closed__15; +static lean_object* l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__5; +LEAN_EXPORT lean_object* l_UInt64_reduceBEq____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511____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_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__13; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__198; +LEAN_EXPORT lean_object* l___regBuiltin_UInt16_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9984_(lean_object*); +lean_object* l_Lean_Meta_getOfNatValue_x3f(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__12; 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; -static lean_object* l___regBuiltin_UInt32_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12618____closed__1; -static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__567; -static lean_object* l___regBuiltin_UInt64_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14737____closed__12; +LEAN_EXPORT lean_object* l___regBuiltin_UInt16_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9586_(lean_object*); +static lean_object* l___regBuiltin_UInt8_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8089____closed__3; +static lean_object* l___regBuiltin_UInt32_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10955____closed__3; +static lean_object* l___regBuiltin_UInt64_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12410____closed__8; +static lean_object* l___regBuiltin_UInt32_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11078____closed__13; +LEAN_EXPORT lean_object* l_UInt64_reduceEq____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511____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__156; -static lean_object* l___regBuiltin_USize_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15826____closed__15; -LEAN_EXPORT lean_object* l___regBuiltin_USize_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15540_(lean_object*); -LEAN_EXPORT lean_object* l_UInt8_reduceNe____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____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_UInt32_reduceBNe____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860_(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___regBuiltin_UInt64_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13939____closed__3; -LEAN_EXPORT lean_object* l___regBuiltin_UInt32_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12622_(lean_object*); +LEAN_EXPORT lean_object* l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8456_(lean_object*); +LEAN_EXPORT lean_object* l___regBuiltin_UInt16_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9867_(lean_object*); +static lean_object* l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__1; +static lean_object* l___regBuiltin_UInt64_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12450____closed__9; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__243; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__91; +static lean_object* l___regBuiltin_UInt32_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11199____closed__10; +LEAN_EXPORT lean_object* l_UInt16_reduceNe____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847_(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__184; static lean_object* l_commandDeclare__uint__simprocs_____closed__2; +static lean_object* l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8454____closed__14; LEAN_EXPORT lean_object* l_UInt8_reduceToNat___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_UInt16_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11097____closed__5; -static lean_object* l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__18; -static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__615; -static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__528; -LEAN_EXPORT lean_object* l_UInt64_reduceBinPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301____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___regBuiltin_USize_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15785____closed__2; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__332; -static lean_object* l___regBuiltin_UInt16_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11855____closed__5; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__497; -static lean_object* l___regBuiltin_UInt16_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11137____closed__4; -static lean_object* l___regBuiltin_USize_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15622____closed__3; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__314; +LEAN_EXPORT lean_object* l___regBuiltin_UInt64_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12410_(lean_object*); uint32_t lean_uint32_sub(uint32_t, uint32_t); -LEAN_EXPORT lean_object* l_UInt64_reduceBNe____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301____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_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14545____closed__6; +static lean_object* l___regBuiltin_UInt64_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12491____closed__14; +LEAN_EXPORT lean_object* l___regBuiltin_UInt32_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10959_(lean_object*); +static lean_object* l___regBuiltin_UInt8_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8209____closed__7; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__281; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__176; -static lean_object* l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__3; -LEAN_EXPORT lean_object* l_UInt64_reduceNe____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301____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_UInt8_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9940____closed__2; -static lean_object* l___regBuiltin_UInt32_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12618____closed__8; -LEAN_EXPORT lean_object* l___regBuiltin_UInt64_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14346_(lean_object*); -static lean_object* l___regBuiltin_UInt16_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11543____closed__9; -LEAN_EXPORT lean_object* l___regBuiltin_UInt8_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9942_(lean_object*); +static lean_object* l___regBuiltin_UInt64_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12410____closed__7; +LEAN_EXPORT lean_object* l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8495_(lean_object*); +static lean_object* l___regBuiltin_UInt64_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12450____closed__1; +static lean_object* l___regBuiltin_UInt16_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9827____closed__12; +static lean_object* l___regBuiltin_UInt64_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12450____closed__10; +static lean_object* l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8454____closed__4; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__66; -static lean_object* l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__8; -static lean_object* l___regBuiltin_USize_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15866____closed__7; -LEAN_EXPORT lean_object* l_USize_reduceLE(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_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12988_(lean_object*); -static lean_object* l___regBuiltin_USize_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_16102____closed__3; -static lean_object* l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9616____closed__1; -static lean_object* l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10021____closed__8; -LEAN_EXPORT lean_object* l___regBuiltin_UInt64_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14385_(lean_object*); +static lean_object* l___regBuiltin_UInt32_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11037____closed__1; +LEAN_EXPORT lean_object* l___regBuiltin_UInt16_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9666_(lean_object*); +LEAN_EXPORT lean_object* l___regBuiltin_UInt16_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9748_(lean_object*); +static lean_object* l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; +static lean_object* l___regBuiltin_UInt64_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12085____closed__2; +static lean_object* l___regBuiltin_UInt32_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10833____closed__2; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__36; -static lean_object* l___regBuiltin_UInt32_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12658____closed__1; -static lean_object* l___regBuiltin_USize_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15540____closed__2; -static lean_object* l___regBuiltin_UInt64_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14425____closed__6; +static lean_object* l___regBuiltin_UInt8_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8291____closed__8; +static lean_object* l___regBuiltin_UInt64_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12045____closed__1; +LEAN_EXPORT lean_object* l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8499_(lean_object*); static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__261; -static lean_object* l___regBuiltin_UInt32_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12944____closed__7; -static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__628; -static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__550; -LEAN_EXPORT lean_object* l_UInt16_reduceBNe____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419____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___regBuiltin_UInt8_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9780_(lean_object*); -LEAN_EXPORT lean_object* l___regBuiltin_USize_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15382_(lean_object*); +static lean_object* l___regBuiltin_UInt16_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9623____closed__3; +static lean_object* l___regBuiltin_UInt16_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__10174____closed__2; LEAN_EXPORT lean_object* l_UInt64_reduceMul___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_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10021____closed__14; +static lean_object* l___regBuiltin_UInt16_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9827____closed__4; lean_object* l___private_Init_Meta_0__Lean_getEscapedNameParts_x3f(lean_object*, lean_object*); -static lean_object* l___regBuiltin_UInt64_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13979____closed__5; -LEAN_EXPORT lean_object* l___regBuiltin_USize_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15986_(lean_object*); -static lean_object* l___regBuiltin_UInt64_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14385____closed__10; -static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__517; +LEAN_EXPORT lean_object* l___regBuiltin_UInt16_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9750_(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*); +LEAN_EXPORT lean_object* l___regBuiltin_UInt16_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9545_(lean_object*); +static lean_object* l___regBuiltin_UInt16_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__10174____closed__3; +static lean_object* l___regBuiltin_UInt8_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8089____closed__10; +static lean_object* l___regBuiltin_UInt64_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12450____closed__2; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__116; lean_object* l_Lean_Expr_app___override(lean_object*, lean_object*); -static lean_object* l___regBuiltin_UInt32_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__13296____closed__13; -static lean_object* l___regBuiltin_UInt32_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12658____closed__2; -static lean_object* l___regBuiltin_USize_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15826____closed__7; -static lean_object* l___regBuiltin_UInt8_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9776____closed__6; -static lean_object* l___regBuiltin_UInt64_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14737____closed__11; +static lean_object* l_UInt64_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511____lambda__1___closed__2; +static lean_object* l___regBuiltin_UInt32_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11078____closed__7; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__140; -static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__551; -static lean_object* l___regBuiltin_USize_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15826____closed__11; -static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__508; -LEAN_EXPORT lean_object* l_USize_isValue____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742____boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_UInt16_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847____lambda__1___closed__1; +LEAN_EXPORT lean_object* l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515_(lean_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_UInt8_reduceMod___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__33; +static lean_object* l___regBuiltin_UInt32_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11430____closed__3; lean_object* l_Lean_Meta_Simp_registerBuiltinSimproc(lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_USize_reduceOfNatCore___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_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10102____closed__17; +LEAN_EXPORT lean_object* l___regBuiltin_UInt32_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11432_(lean_object*); +static lean_object* l___regBuiltin_UInt8_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8129____closed__1; +static lean_object* l___regBuiltin_UInt8_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8650____closed__1; LEAN_EXPORT lean_object* l_UInt64_fromExpr(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__7; -static lean_object* l___regBuiltin_USize_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__16178____closed__4; +static lean_object* l___regBuiltin_UInt64_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12646____closed__1; +LEAN_EXPORT lean_object* l___regBuiltin_UInt32_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10873_(lean_object*); +static lean_object* l___regBuiltin_UInt64_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12491____closed__1; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__455; -static lean_object* l___regBuiltin_UInt32_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12740____closed__1; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__404; +LEAN_EXPORT lean_object* l___regBuiltin_UInt64_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12452_(lean_object*); LEAN_EXPORT lean_object* l_UInt64_reduceToNat___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__186; lean_object* l_Lean_mkApp3(lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___regBuiltin_UInt16_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9867____closed__2; +static lean_object* l___regBuiltin_UInt64_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12410____closed__14; +static lean_object* l___regBuiltin_UInt32_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11314____closed__4; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__119; +static lean_object* l___regBuiltin_UInt64_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12045____closed__8; uint16_t lean_uint16_add(uint16_t, uint16_t); -static lean_object* l___regBuiltin_UInt16_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11057____closed__8; -static lean_object* l___regBuiltin_UInt16_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11137____closed__3; -static lean_object* l___regBuiltin_UInt16_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11422____closed__7; -static lean_object* l___regBuiltin_UInt64_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14385____closed__7; -LEAN_EXPORT lean_object* l_USize_reduceGE(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_USize_reduceMod(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_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14144_(lean_object*); -static lean_object* l___regBuiltin_USize_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15785____closed__12; +LEAN_EXPORT lean_object* l_UInt32_reduceNe____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179____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_UInt64_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12491____closed__9; +static lean_object* l___regBuiltin_UInt64_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12491____closed__2; 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_UInt64_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13979____closed__7; -static lean_object* l___regBuiltin_UInt32_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12699____closed__5; -LEAN_EXPORT lean_object* l___regBuiltin_UInt32_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12618_(lean_object*); -static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__600; -LEAN_EXPORT lean_object* l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10102_(lean_object*); -LEAN_EXPORT lean_object* l___regBuiltin_UInt16_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11258_(lean_object*); -static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__586; -static lean_object* l___regBuiltin_UInt64_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14344____closed__13; -LEAN_EXPORT lean_object* l___regBuiltin_UInt8_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9944_(lean_object*); -static lean_object* l___regBuiltin_USize_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15745____closed__14; +LEAN_EXPORT lean_object* l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414_(lean_object*); +LEAN_EXPORT lean_object* l_UInt32_isValue____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179____boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___regBuiltin_UInt8_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8250____closed__6; +LEAN_EXPORT lean_object* l___regBuiltin_UInt64_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12291_(lean_object*); +LEAN_EXPORT lean_object* l_UInt8_reduceEq____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515_(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__16; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__452; +static lean_object* l___regBuiltin_UInt64_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12450____closed__3; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__471; -static lean_object* l___regBuiltin_UInt8_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10222____closed__7; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__195; -LEAN_EXPORT lean_object* l_UInt8_reduceBNe____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978_(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___regBuiltin_USize_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15785____closed__1; -static lean_object* l___regBuiltin_UInt16_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11462____closed__13; -LEAN_EXPORT lean_object* l___regBuiltin_UInt32_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12946_(lean_object*); -static lean_object* l___regBuiltin_UInt32_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12538____closed__5; +LEAN_EXPORT lean_object* l___regBuiltin_UInt64_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12373_(lean_object*); +LEAN_EXPORT lean_object* l___regBuiltin_UInt16_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10098_(lean_object*); +LEAN_EXPORT lean_object* l___regBuiltin_UInt64_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12533_(lean_object*); lean_object* l_Lean_mkRawNatLit(lean_object*); -static lean_object* l___regBuiltin_USize_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15866____closed__10; -static lean_object* l___regBuiltin_UInt16_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11462____closed__3; -LEAN_EXPORT lean_object* l___regBuiltin_USize_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15581_(lean_object*); -static lean_object* l___regBuiltin_UInt32_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12538____closed__6; +static lean_object* l___regBuiltin_UInt16_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9461____closed__7; +LEAN_EXPORT lean_object* l_UInt16_reduceBEq____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847____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__323; -static lean_object* l___regBuiltin_UInt32_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12618____closed__4; -static lean_object* l___regBuiltin_UInt32_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12658____closed__6; -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*); -static lean_object* l___regBuiltin_UInt32_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13104____closed__3; -static lean_object* l___regBuiltin_USize_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15380____closed__9; +LEAN_EXPORT lean_object* l_UInt16_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847____lambda__1(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_uint32_dec_eq(uint32_t, uint32_t); -static lean_object* l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10062____closed__1; -LEAN_EXPORT lean_object* l___regBuiltin_UInt16_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11262_(lean_object*); -static lean_object* l___regBuiltin_UInt64_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14344____closed__9; -static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__511; +static lean_object* l___regBuiltin_UInt16_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9827____closed__2; +static lean_object* l___regBuiltin_UInt64_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12246____closed__2; +LEAN_EXPORT lean_object* l___regBuiltin_UInt64_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12047_(lean_object*); +LEAN_EXPORT lean_object* l_UInt16_reduceBEq____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847____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_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8454____closed__9; lean_object* l_Lean_Name_mkStr2(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_UInt32_reduceGE(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__295; +static lean_object* l___regBuiltin_UInt32_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10833____closed__6; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__286; -static lean_object* l___regBuiltin_USize_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15785____closed__3; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__367; LEAN_EXPORT lean_object* l_UInt8_reduceGE(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__492; -LEAN_EXPORT lean_object* l_UInt8_isValue____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____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_UInt8_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9656____closed__5; +static lean_object* l___regBuiltin_UInt8_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8291____closed__6; +static lean_object* l___regBuiltin_UInt16_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9746____closed__7; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__154; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__98; -LEAN_EXPORT lean_object* l___regBuiltin_USize_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15500_(lean_object*); LEAN_EXPORT lean_object* l_commandDeclare__uint__simprocs__; -static lean_object* l___regBuiltin_UInt64_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14263____closed__2; -static lean_object* l___regBuiltin_UInt64_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14304____closed__5; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__31; -LEAN_EXPORT lean_object* l_USize_reduceBNe____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742____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_Lean_Meta_Simp_addSimprocBuiltinAttrCore(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*); static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__97; -static lean_object* l___regBuiltin_UInt32_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__13296____closed__10; -static lean_object* l_UInt64_toExprCore___closed__3; -LEAN_EXPORT lean_object* l___regBuiltin_UInt64_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14183_(lean_object*); +static lean_object* l___regBuiltin_UInt16_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9421____closed__6; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__207; -LEAN_EXPORT lean_object* l___regBuiltin_UInt16_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11179_(lean_object*); -static lean_object* l___regBuiltin_UInt64_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14181____closed__1; -static lean_object* l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__4; +LEAN_EXPORT lean_object* l_UInt64_isValue____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511____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_reduceDiv(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_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14224_(lean_object*); +LEAN_EXPORT lean_object* l___regBuiltin_UInt32_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10713_(lean_object*); +LEAN_EXPORT lean_object* l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____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___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__405; -LEAN_EXPORT lean_object* l_USize_reduceAdd___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_USize_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__16178____closed__8; -LEAN_EXPORT lean_object* l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9983_(lean_object*); -LEAN_EXPORT lean_object* l_UInt8_reduceNe____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978_(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___regBuiltin_UInt8_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9736____closed__6; -LEAN_EXPORT lean_object* l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10021_(lean_object*); -static lean_object* l___regBuiltin_UInt16_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11663____closed__1; -LEAN_EXPORT lean_object* l___regBuiltin_UInt32_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12740_(lean_object*); -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___regBuiltin_USize_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_16102____closed__1; -static lean_object* l___regBuiltin_USize_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15622____closed__6; -LEAN_EXPORT lean_object* l_UInt16_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419____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_USize_toExprCore(size_t); +static lean_object* l___regBuiltin_UInt64_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12491____closed__11; +LEAN_EXPORT lean_object* l___regBuiltin_UInt64_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12646_(lean_object*); +LEAN_EXPORT lean_object* l___regBuiltin_UInt64_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12535_(lean_object*); +LEAN_EXPORT lean_object* l_UInt32_isValue____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179_(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8495____closed__16; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__430; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__257; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__292; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__408; -static lean_object* l___regBuiltin_UInt64_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14304____closed__11; +static lean_object* l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__4; +static lean_object* l___regBuiltin_UInt32_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11118____closed__6; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__320; +LEAN_EXPORT lean_object* l_UInt8_reduceBNe____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515_(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t lean_uint16_dec_le(uint16_t, uint16_t); -LEAN_EXPORT lean_object* l_UInt64_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301____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_UInt64_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12165____closed__8; LEAN_EXPORT lean_object* l_UInt32_reduceOfNatCore(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__45; -static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__594; -static lean_object* l___regBuiltin_UInt32_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12863____closed__5; +static lean_object* l___regBuiltin_UInt32_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10873____closed__1; +LEAN_EXPORT lean_object* l_UInt16_reduceEq____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847_(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_node1(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___regBuiltin_UInt32_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11314_(lean_object*); static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__104; -LEAN_EXPORT lean_object* l_USize_reduceDiv___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__395; +LEAN_EXPORT lean_object* l___regBuiltin_UInt16_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9627_(lean_object*); static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__160; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__124; -static lean_object* l___regBuiltin_UInt64_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14425____closed__5; +static lean_object* l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8842____closed__11; +static lean_object* l___regBuiltin_UInt32_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11430____closed__1; LEAN_EXPORT lean_object* l_UInt8_reduceGT___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_USize_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15460____closed__1; -LEAN_EXPORT lean_object* l___regBuiltin_USize_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15749_(lean_object*); -static lean_object* l___regBuiltin_UInt64_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14059____closed__1; -LEAN_EXPORT lean_object* l___regBuiltin_UInt8_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9821_(lean_object*); -static lean_object* l___regBuiltin_UInt64_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14140____closed__2; +static lean_object* l___regBuiltin_UInt32_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11159____closed__5; +static lean_object* l___regBuiltin_UInt32_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11314____closed__6; +static lean_object* l___regBuiltin_UInt16_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9381____closed__7; +static lean_object* l___regBuiltin_UInt8_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8250____closed__8; 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___regBuiltin_UInt16_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11855____closed__10; -static lean_object* l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10021____closed__16; -static lean_object* l___regBuiltin_UInt64_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14140____closed__5; -static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__542; 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___regBuiltin_USize_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15789_(lean_object*); -LEAN_EXPORT lean_object* l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10023_(lean_object*); -static lean_object* l___regBuiltin_UInt16_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11779____closed__3; -static lean_object* l___regBuiltin_USize_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15745____closed__10; -static lean_object* l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10102____closed__6; -LEAN_EXPORT lean_object* l_UInt64_reduceNe____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301_(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8049____closed__6; +static lean_object* l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8053____closed__1; +LEAN_EXPORT lean_object* l_UInt64_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511____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___regBuiltin_UInt32_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10873____closed__3; LEAN_EXPORT lean_object* l_UInt32_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___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__220; -static lean_object* l___regBuiltin_UInt32_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12699____closed__3; -static lean_object* l___regBuiltin_UInt64_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14737____closed__5; -static lean_object* l___regBuiltin_UInt64_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14661____closed__3; -static lean_object* l___regBuiltin_USize_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15866____closed__12; -static lean_object* l___regBuiltin_USize_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15785____closed__8; +static lean_object* l___regBuiltin_UInt32_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11118____closed__13; LEAN_EXPORT lean_object* l_UInt16_reduceDiv___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_reduceBinPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742_(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___regBuiltin_UInt16_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11543____closed__3; -static lean_object* l___regBuiltin_USize_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15826____closed__14; -static lean_object* l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10062____closed__12; -static lean_object* l___regBuiltin_UInt8_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9656____closed__10; -static lean_object* l___regBuiltin_USize_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15986____closed__2; -static lean_object* l___regBuiltin_UInt32_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12903____closed__9; -static lean_object* l___regBuiltin_UInt64_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14099____closed__2; +static lean_object* l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8454____closed__1; +static lean_object* l___regBuiltin_UInt8_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8766____closed__5; +LEAN_EXPORT lean_object* l___regBuiltin_UInt32_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11430_(lean_object*); +static lean_object* l___regBuiltin_UInt64_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12085____closed__5; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__421; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__32; -LEAN_EXPORT lean_object* l___regBuiltin_USize_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_16102_(lean_object*); -static lean_object* l___regBuiltin_UInt32_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12984____closed__9; -static lean_object* l___regBuiltin_UInt32_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12658____closed__3; -LEAN_EXPORT lean_object* l___regBuiltin_USize_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15464_(lean_object*); -LEAN_EXPORT lean_object* l___regBuiltin_UInt16_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11857_(lean_object*); -static lean_object* l___regBuiltin_UInt16_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11503____closed__12; -static lean_object* l___regBuiltin_UInt32_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12618____closed__5; +static lean_object* l___regBuiltin_UInt64_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12410____closed__6; +LEAN_EXPORT lean_object* l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8497_(lean_object*); static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__17; lean_object* lean_uint16_to_nat(uint16_t); -static lean_object* l_UInt16_toExpr___closed__1; +LEAN_EXPORT lean_object* l_UInt16_reduceEq____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847____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_UInt64_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12045____closed__2; +static lean_object* l___regBuiltin_UInt16_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9582____closed__5; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__369; -static lean_object* l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10062____closed__11; +static lean_object* l___regBuiltin_UInt32_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10713____closed__2; +static lean_object* l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__14; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__213; +static lean_object* l___regBuiltin_UInt64_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12838____closed__8; 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*); -static lean_object* l___regBuiltin_UInt32_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12578____closed__3; -LEAN_EXPORT lean_object* l_USize_toExpr(lean_object*); -LEAN_EXPORT lean_object* l_UInt64_reduceBNe____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301_(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_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15747_(lean_object*); -LEAN_EXPORT lean_object* l_UInt16_reduceEq____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419_(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*); +static lean_object* l___regBuiltin_UInt64_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12165____closed__6; +LEAN_EXPORT lean_object* l___regBuiltin_UInt16_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9423_(lean_object*); +LEAN_EXPORT lean_object* l___regBuiltin_UInt16_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9871_(lean_object*); LEAN_EXPORT lean_object* l_UInt16_reduceToNat___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__135; -LEAN_EXPORT lean_object* l_USize_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___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10102____closed__4; -LEAN_EXPORT lean_object* l_UInt64_toExprCore___boxed(lean_object*); +static lean_object* l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__4; +static lean_object* l___regBuiltin_UInt16_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9867____closed__4; LEAN_EXPORT lean_object* l_UInt32_reduceGE___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_UInt32_reduceBinPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179____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___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__278; -static lean_object* l___regBuiltin_USize_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15745____closed__11; +static lean_object* l___regBuiltin_UInt16_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9501____closed__5; +static lean_object* l___regBuiltin_UInt16_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9867____closed__7; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__72; -LEAN_EXPORT lean_object* l___regBuiltin_UInt16_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11503_(lean_object*); -static lean_object* l___regBuiltin_UInt16_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11503____closed__6; +static lean_object* l___regBuiltin_UInt16_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9623____closed__6; +static lean_object* l___regBuiltin_UInt32_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10713____closed__8; LEAN_EXPORT lean_object* l_UInt64_reduceGT___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___regBuiltin_UInt32_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10877_(lean_object*); static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__307; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__236; +LEAN_EXPORT lean_object* l___regBuiltin_UInt8_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8373_(lean_object*); static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__82; -static lean_object* l___regBuiltin_UInt8_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9858____closed__3; -LEAN_EXPORT lean_object* l___regBuiltin_USize_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15502_(lean_object*); -static lean_object* l___regBuiltin_UInt64_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14099____closed__8; -static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__611; +static lean_object* l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8495____closed__11; +LEAN_EXPORT lean_object* l___regBuiltin_UInt32_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10957_(lean_object*); static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__95; -static lean_object* l___regBuiltin_UInt64_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14059____closed__7; -LEAN_EXPORT lean_object* l___regBuiltin_USize_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15785_(lean_object*); +LEAN_EXPORT lean_object* l___regBuiltin_UInt32_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11082_(lean_object*); +LEAN_EXPORT lean_object* l_UInt64_reduceEq____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511_(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_UInt16_reduceBEq____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847_(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_UInt32_reduceMod(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8535____closed__7; +static lean_object* l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8842____closed__10; LEAN_EXPORT lean_object* l_UInt32_reduceGT(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__102; -static lean_object* l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10021____closed__13; +static lean_object* l___regBuiltin_UInt64_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12531____closed__13; +static lean_object* l___regBuiltin_UInt8_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8209____closed__10; uint8_t lean_uint64_dec_le(uint64_t, uint64_t); -static lean_object* l___regBuiltin_USize_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15420____closed__8; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__462; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__208; -static lean_object* l___regBuiltin_UInt64_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14425____closed__2; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__289; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__123; uint8_t lean_uint8_dec_le(uint8_t, uint8_t); +static lean_object* l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8454____closed__10; LEAN_EXPORT lean_object* l_UInt8_reduceOfNatCore___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_UInt8_reduceOfNatCore(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__482; -static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__506; -static lean_object* l___regBuiltin_UInt16_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11543____closed__12; -LEAN_EXPORT lean_object* l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____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_isValue____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860____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_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15460____closed__8; -LEAN_EXPORT lean_object* l_UInt32_reduceBNe____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860____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_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9461____closed__1; +LEAN_EXPORT lean_object* l_UInt8_reduceBNe____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____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__465; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__143; -static lean_object* l___regBuiltin_USize_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15380____closed__5; -LEAN_EXPORT lean_object* l___regBuiltin_USize_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15622_(lean_object*); +LEAN_EXPORT lean_object* l___regBuiltin_UInt32_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11318_(lean_object*); +static lean_object* l___regBuiltin_UInt8_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8291____closed__3; +static lean_object* l___regBuiltin_UInt32_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11118____closed__9; LEAN_EXPORT lean_object* l_UInt16_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_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10414____closed__13; +LEAN_EXPORT lean_object* l___regBuiltin_UInt8_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8169_(lean_object*); static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__366; +LEAN_EXPORT lean_object* l_UInt16_reduceBNe____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847_(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__435; -static lean_object* l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10414____closed__4; -LEAN_EXPORT lean_object* l_USize_reduceMul(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_UInt16_fromExpr___closed__2; -static lean_object* l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10021____closed__2; -static lean_object* l___regBuiltin_UInt16_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11137____closed__8; -static lean_object* l_UInt8_toExpr___closed__1; -static lean_object* l___regBuiltin_UInt64_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14304____closed__13; +static lean_object* l___regBuiltin_UInt64_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12531____closed__12; +static lean_object* l___regBuiltin_UInt32_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10914____closed__5; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__170; +static lean_object* l___regBuiltin_UInt32_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10793____closed__4; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__223; -static lean_object* l___regBuiltin_USize_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15460____closed__7; -LEAN_EXPORT lean_object* l___regBuiltin_UInt16_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11547_(lean_object*); -static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__543; 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_EXPORT lean_object* l___regBuiltin_UInt16_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11422_(lean_object*); -LEAN_EXPORT lean_object* l___regBuiltin_UInt8_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9899_(lean_object*); -static lean_object* l___regBuiltin_UInt8_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9858____closed__4; -static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__623; +static lean_object* l___regBuiltin_UInt16_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9867____closed__14; +static lean_object* l___regBuiltin_UInt64_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12491____closed__15; +LEAN_EXPORT lean_object* l___regBuiltin_UInt64_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12129_(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*); -static lean_object* l___regBuiltin_UInt32_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12740____closed__2; -LEAN_EXPORT lean_object* l_UInt8_toExprCore(uint8_t); -LEAN_EXPORT lean_object* l_USize_reduceMul___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_UInt16_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11855____closed__2; -static lean_object* l___regBuiltin_USize_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15866____closed__2; -static lean_object* l___regBuiltin_UInt16_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11543____closed__4; +static lean_object* l___regBuiltin_UInt32_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11159____closed__7; +static lean_object* l___regBuiltin_UInt32_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11506____closed__7; +static lean_object* l___regBuiltin_UInt32_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10713____closed__1; +LEAN_EXPORT lean_object* l___regBuiltin_UInt32_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10797_(lean_object*); static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__334; -static lean_object* l___regBuiltin_UInt16_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11097____closed__3; +static lean_object* l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8535____closed__8; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__172; 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*); -static lean_object* l___regBuiltin_USize_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15581____closed__1; -static lean_object* l___regBuiltin_UInt32_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12538____closed__4; -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*); -static lean_object* l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__19; -static lean_object* l___regBuiltin_USize_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15866____closed__11; +static lean_object* l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__5; +static lean_object* l___regBuiltin_UInt16_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9501____closed__2; +static lean_object* l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8049____closed__9; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__493; -static lean_object* l___regBuiltin_UInt16_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11543____closed__10; +static lean_object* l___regBuiltin_UInt32_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10955____closed__1; +LEAN_EXPORT lean_object* l_UInt32_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179____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___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__8; uint8_t lean_uint8_of_nat(lean_object*); -static lean_object* l___regBuiltin_UInt32_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12944____closed__12; +static lean_object* l___regBuiltin_UInt16_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__10174____closed__6; +static lean_object* l___regBuiltin_UInt64_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12165____closed__7; +static lean_object* l___regBuiltin_UInt8_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8373____closed__1; +static lean_object* l___regBuiltin_UInt64_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12491____closed__5; +static lean_object* l___regBuiltin_UInt8_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8291____closed__4; +LEAN_EXPORT lean_object* l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8458_(lean_object*); static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__171; -LEAN_EXPORT lean_object* l_UInt16_reduceBEq____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419_(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___regBuiltin_UInt16_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11177____closed__4; -static lean_object* l___regBuiltin_UInt64_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14059____closed__3; -static lean_object* l___regBuiltin_UInt64_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14344____closed__14; -static lean_object* l___regBuiltin_UInt64_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14737____closed__3; -LEAN_EXPORT lean_object* l___regBuiltin_UInt64_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14308_(lean_object*); -static lean_object* l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__6; -LEAN_EXPORT lean_object* l_USize_reduceGE___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_UInt8_reduceBinPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____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___regBuiltin_UInt32_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10996____closed__1; +static lean_object* l___regBuiltin_UInt8_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8650____closed__3; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__498; uint8_t lean_uint64_dec_eq(uint64_t, uint64_t); static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__90; static lean_object* l_UInt32_reduceOfNatCore___closed__1; +static lean_object* l___regBuiltin_UInt32_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11159____closed__10; +static lean_object* l___regBuiltin_UInt64_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12165____closed__2; LEAN_EXPORT lean_object* l_UInt8_reduceToNat___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_String_intercalate(lean_object*, lean_object*); -static lean_object* l_UInt8_toExprCore___closed__3; -static lean_object* l___regBuiltin_UInt64_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14304____closed__14; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__428; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__461; -size_t lean_usize_sub(size_t, size_t); +LEAN_EXPORT lean_object* l___regBuiltin_UInt64_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12205_(lean_object*); static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__353; -static lean_object* l___regBuiltin_UInt16_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11422____closed__12; -LEAN_EXPORT lean_object* l___regBuiltin_UInt32_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12703_(lean_object*); static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__129; -static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__572; -LEAN_EXPORT lean_object* l___regBuiltin_UInt64_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13979_(lean_object*); -LEAN_EXPORT lean_object* l_UInt64_toExpr(lean_object*); +static lean_object* l___regBuiltin_UInt8_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8766____closed__2; +LEAN_EXPORT lean_object* l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8051_(lean_object*); +static lean_object* l___regBuiltin_UInt16_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9827____closed__14; static lean_object* l_commandDeclare__uint__simprocs_____closed__4; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__282; -LEAN_EXPORT lean_object* l_UInt8_reduceBinPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____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___regBuiltin_UInt32_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11159____closed__14; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__132; -static lean_object* l___regBuiltin_USize_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15866____closed__1; -static lean_object* l___regBuiltin_UInt64_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14737____closed__6; -static lean_object* l___regBuiltin_UInt32_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12498____closed__2; -static lean_object* l___regBuiltin_UInt16_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11543____closed__7; -LEAN_EXPORT lean_object* l___regBuiltin_UInt16_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11101_(lean_object*); +LEAN_EXPORT lean_object* l_UInt32_reduceBEq____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179____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_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_USize_reduceBNe____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742_(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___regBuiltin_UInt8_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9858____closed__2; -static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__564; +static lean_object* l___regBuiltin_UInt64_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12410____closed__1; +static lean_object* l___regBuiltin_UInt16_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9421____closed__5; +static lean_object* l_UInt64_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511____lambda__1___closed__3; +static lean_object* l___regBuiltin_UInt64_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12410____closed__5; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__468; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__477; -LEAN_EXPORT lean_object* l_UInt64_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301_(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___regBuiltin_UInt8_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9736____closed__9; +static lean_object* l___regBuiltin_UInt64_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12450____closed__5; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__432; +static lean_object* l___regBuiltin_UInt32_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11314____closed__3; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__379; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__75; -static lean_object* l_USize_reduceOfNatCore___closed__1; -static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__617; -static lean_object* l___regBuiltin_UInt8_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9696____closed__2; +static lean_object* l___regBuiltin_UInt8_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8209____closed__4; lean_object* lean_uint8_to_nat(uint8_t); -static lean_object* l___regBuiltin_UInt64_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14344____closed__2; -static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__540; +LEAN_EXPORT lean_object* l___regBuiltin_UInt16_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9790_(lean_object*); static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__147; -size_t lean_usize_add(size_t, size_t); static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__40; -LEAN_EXPORT lean_object* l_USize_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_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9582____closed__2; +static lean_object* l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__5; uint8_t lean_uint32_dec_lt(uint32_t, uint32_t); -static lean_object* l___regBuiltin_UInt8_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9940____closed__1; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__215; LEAN_EXPORT lean_object* l_UInt16_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__467; -static lean_object* l___regBuiltin_UInt64_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14425____closed__12; -static lean_object* l___regBuiltin_UInt16_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11422____closed__5; -static lean_object* l___regBuiltin_USize_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15500____closed__7; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__61; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__400; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__475; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__480; -static lean_object* l___regBuiltin_UInt32_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12903____closed__11; -static lean_object* l___regBuiltin_UInt16_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11177____closed__6; -static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__570; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__245; -LEAN_EXPORT lean_object* l___regBuiltin_USize_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15866_(lean_object*); +static lean_object* l___regBuiltin_UInt64_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12125____closed__8; +LEAN_EXPORT lean_object* l___regBuiltin_UInt32_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11163_(lean_object*); +static lean_object* l___regBuiltin_UInt32_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11078____closed__5; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__271; -static lean_object* l___regBuiltin_UInt32_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12984____closed__12; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__181; LEAN_EXPORT lean_object* l_UInt8_reduceMul___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_UInt16_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11299____closed__2; -static lean_object* l___regBuiltin_UInt64_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14304____closed__3; +LEAN_EXPORT lean_object* l___regBuiltin_UInt8_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8766_(lean_object*); +LEAN_EXPORT lean_object* l_UInt32_reduceEq____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179_(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__234; static lean_object* l_UInt64_fromExpr___closed__1; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__298; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__273; -LEAN_EXPORT lean_object* l___regBuiltin_UInt32_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12538_(lean_object*); -static lean_object* l___regBuiltin_USize_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15500____closed__5; -static lean_object* l___regBuiltin_UInt32_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12984____closed__3; -static lean_object* l___regBuiltin_UInt8_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9817____closed__4; +static lean_object* l___regBuiltin_UInt16_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9982____closed__3; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__158; -static lean_object* l___regBuiltin_UInt64_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14099____closed__6; LEAN_EXPORT lean_object* l_UInt32_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_UInt32_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12863____closed__10; -static lean_object* l___regBuiltin_UInt32_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12984____closed__14; -static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__609; -LEAN_EXPORT lean_object* l_USize_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742____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___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9616____closed__2; +LEAN_EXPORT lean_object* l_UInt64_reduceNe____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511____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_UInt32_reduceMul(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___regBuiltin_UInt8_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10222____closed__1; -static lean_object* l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__16; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__333; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__491; -LEAN_EXPORT lean_object* l___regBuiltin_UInt16_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11342_(lean_object*); -LEAN_EXPORT lean_object* l___regBuiltin_USize_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15420_(lean_object*); -static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__545; -static lean_object* l___regBuiltin_UInt8_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9656____closed__4; +LEAN_EXPORT lean_object* l___regBuiltin_UInt32_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10753_(lean_object*); +static lean_object* l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8454____closed__12; +LEAN_EXPORT lean_object* l___regBuiltin_UInt16_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9381_(lean_object*); +static lean_object* l___regBuiltin_UInt64_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12491____closed__6; LEAN_EXPORT lean_object* l_UInt16_reduceGE___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__239; -LEAN_EXPORT lean_object* l_USize_reduceEq____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742____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___regBuiltin_UInt16_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11097_(lean_object*); +LEAN_EXPORT lean_object* l___regBuiltin_UInt8_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8131_(lean_object*); +static lean_object* l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__7; +static lean_object* l___regBuiltin_UInt16_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__10174____closed__8; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__229; -static lean_object* l___regBuiltin_UInt32_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12498____closed__3; -static lean_object* l___regBuiltin_UInt64_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14140____closed__3; -LEAN_EXPORT lean_object* l___regBuiltin_UInt8_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9903_(lean_object*); +static lean_object* l___regBuiltin_UInt32_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11118____closed__4; +static lean_object* l___regBuiltin_UInt8_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8250____closed__3; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__373; LEAN_EXPORT lean_object* l_UInt16_reduceToNat(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__194; -LEAN_EXPORT lean_object* l___regBuiltin_UInt64_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14425_(lean_object*); LEAN_EXPORT lean_object* l_UInt32_reduceAdd___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_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13979____closed__3; -static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__514; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__209; -static lean_object* l___regBuiltin_UInt16_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11057____closed__5; +static lean_object* l___regBuiltin_UInt32_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11506____closed__4; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__148; -static lean_object* l___regBuiltin_UInt32_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12944____closed__1; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__120; -static lean_object* l___regBuiltin_USize_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15420____closed__7; -static lean_object* l_USize_toExprCore___closed__2; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__274; -static lean_object* l___regBuiltin_UInt32_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12863____closed__13; -static lean_object* l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__5; -LEAN_EXPORT lean_object* l___regBuiltin_UInt16_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11141_(lean_object*); -static lean_object* l___regBuiltin_UInt8_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9656____closed__1; -static lean_object* l___regBuiltin_UInt8_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9656____closed__6; -static lean_object* l___regBuiltin_UInt8_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9736____closed__2; +static lean_object* l___regBuiltin_UInt16_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9867____closed__15; +static lean_object* l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8495____closed__12; +static lean_object* l___regBuiltin_UInt8_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8250____closed__9; +static lean_object* l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8842____closed__14; +static lean_object* l___regBuiltin_UInt8_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8291____closed__1; +LEAN_EXPORT lean_object* l_UInt64_reduceNe____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511____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_UInt64_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511____lambda__1___closed__1; lean_object* l_Lean_Name_mkStr4(lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_UInt8_reduceBNe____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____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_UInt32_reduceBNe____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179____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__458; -static lean_object* l___regBuiltin_USize_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15745____closed__6; -static lean_object* l___regBuiltin_USize_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15826____closed__10; +static lean_object* l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8495____closed__17; +static lean_object* l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8535____closed__12; uint32_t lean_uint32_add(uint32_t, uint32_t); static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__163; -LEAN_EXPORT lean_object* l_USize_reduceAdd___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_UInt32_reduceBinPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860____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_UInt64_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14304____closed__9; -LEAN_EXPORT lean_object* l___regBuiltin_USize_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15868_(lean_object*); static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__338; -LEAN_EXPORT lean_object* l___regBuiltin_UInt32_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12580_(lean_object*); +static lean_object* l___regBuiltin_UInt64_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12838____closed__13; +static lean_object* l___regBuiltin_UInt64_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12762____closed__5; +static lean_object* l___regBuiltin_UInt16_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9381____closed__3; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__409; -static lean_object* l_UInt16_toExprCore___closed__1; -static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__578; -static lean_object* l___regBuiltin_UInt64_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14385____closed__2; -static lean_object* l___regBuiltin_USize_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__16178____closed__9; -static lean_object* l___regBuiltin_UInt64_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13939____closed__5; +static lean_object* l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8454____closed__17; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__202; -static lean_object* l___regBuiltin_USize_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15745____closed__2; -lean_object* l_Nat_fromExpr_x3f(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____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14059____closed__8; -LEAN_EXPORT lean_object* l_UInt32_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860____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_UInt32_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12538____closed__8; -static lean_object* l___regBuiltin_UInt16_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11097____closed__6; -static lean_object* l___regBuiltin_UInt16_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11663____closed__2; +static lean_object* l_UInt32_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179____lambda__1___closed__3; +static lean_object* l___regBuiltin_UInt16_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__10174____closed__11; +LEAN_EXPORT lean_object* l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8418_(lean_object*); +static lean_object* l___regBuiltin_UInt64_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12287____closed__4; +static lean_object* l___regBuiltin_UInt32_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11159____closed__3; +static lean_object* l___regBuiltin_UInt32_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11506____closed__6; +LEAN_EXPORT lean_object* l_UInt64_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511____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_UInt16_reduceSub(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_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10342_(lean_object*); -LEAN_EXPORT lean_object* l___regBuiltin_USize_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15624_(lean_object*); -static lean_object* l___regBuiltin_UInt16_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11258____closed__6; -LEAN_EXPORT lean_object* l___regBuiltin_UInt32_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12783_(lean_object*); +static lean_object* l___regBuiltin_UInt16_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9786____closed__13; +static lean_object* l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8535____closed__1; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__391; -LEAN_EXPORT lean_object* l___regBuiltin_UInt32_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13106_(lean_object*); lean_object* lean_string_append(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___regBuiltin_UInt16_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9869_(lean_object*); LEAN_EXPORT lean_object* l_UInt64_reduceLT(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__571; -static lean_object* l___regBuiltin_UInt64_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13979____closed__1; -static lean_object* l___regBuiltin_UInt32_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12984____closed__1; -static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__534; -static lean_object* l___regBuiltin_USize_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15500____closed__2; -static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__582; -LEAN_EXPORT lean_object* l_UInt16_reduceNe____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419_(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____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__10174____closed__4; +LEAN_EXPORT lean_object* l___regBuiltin_UInt32_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11120_(lean_object*); +LEAN_EXPORT lean_object* l___regBuiltin_UInt8_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8295_(lean_object*); +static lean_object* l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__10; +static lean_object* l___regBuiltin_UInt64_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12246____closed__1; +static lean_object* l___regBuiltin_UInt64_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12762____closed__2; LEAN_EXPORT lean_object* l_UInt32_reduceDiv___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__85; +static lean_object* l___regBuiltin_UInt32_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10955____closed__6; +static lean_object* l___regBuiltin_UInt32_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11159____closed__4; +LEAN_EXPORT lean_object* l___regBuiltin_UInt32_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11039_(lean_object*); LEAN_EXPORT lean_object* l_UInt16_reduceLT(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10062____closed__4; -LEAN_EXPORT lean_object* l_USize_reduceBEq____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742_(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_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9788_(lean_object*); +LEAN_EXPORT lean_object* l___regBuiltin_UInt64_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12207_(lean_object*); +static lean_object* l___regBuiltin_UInt8_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8129____closed__10; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__387; -LEAN_EXPORT lean_object* l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10104_(lean_object*); +static lean_object* l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8454____closed__5; +static lean_object* l___regBuiltin_UInt32_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11078____closed__11; +static lean_object* l___regBuiltin_UInt32_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10996____closed__2; static lean_object* l_UInt16_fromExpr___closed__1; -static lean_object* l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10102____closed__11; LEAN_EXPORT lean_object* l_UInt8_reduceAdd___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_UInt16_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9623____closed__4; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__20; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__253; +static lean_object* l___regBuiltin_UInt16_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9982____closed__2; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__136; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__396; +static lean_object* l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__3; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__442; LEAN_EXPORT lean_object* l_UInt32_reduceOfNatCore___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_UInt8_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9940_(lean_object*); -static lean_object* l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10414____closed__11; LEAN_EXPORT lean_object* l_UInt64_reduceGE___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__619; -static lean_object* l___regBuiltin_USize_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15460____closed__5; -static lean_object* l___regBuiltin_UInt16_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11543____closed__5; -static lean_object* l___regBuiltin_USize_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15540____closed__4; +static lean_object* l___regBuiltin_UInt64_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12125____closed__4; +static lean_object* l___regBuiltin_UInt64_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12045____closed__3; +LEAN_EXPORT lean_object* l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8053_(lean_object*); +static lean_object* l___regBuiltin_UInt16_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9746____closed__11; +static lean_object* l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8495____closed__6; +LEAN_EXPORT lean_object* l_UInt8_isValue____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____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_UInt16_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9982____closed__4; LEAN_EXPORT lean_object* l_UInt8_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__371; LEAN_EXPORT lean_object* l_UInt64_reduceAdd___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_USize_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15581____closed__4; -LEAN_EXPORT lean_object* l___regBuiltin_UInt64_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14263_(lean_object*); -static lean_object* l___regBuiltin_UInt32_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12903____closed__8; -LEAN_EXPORT lean_object* l_UInt16_reduceBNe____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419_(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___regBuiltin_UInt16_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11137____closed__6; -static lean_object* l___regBuiltin_USize_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15500____closed__6; -static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__614; -static lean_object* l___regBuiltin_UInt16_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11462____closed__6; +static lean_object* l___regBuiltin_UInt32_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11506____closed__10; static lean_object* l_UInt8_fromExpr___closed__2; -static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__501; -LEAN_EXPORT lean_object* l_UInt16_reduceBEq____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419____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_UInt32_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11199____closed__6; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__300; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__429; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__89; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__447; -static lean_object* l_UInt64_toExprCore___closed__2; +static lean_object* l___regBuiltin_UInt16_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9541____closed__8; extern lean_object* l_Lean_Meta_Simp_builtinSEvalprocsRef; -static lean_object* l___regBuiltin_UInt16_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11057____closed__4; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__174; -static lean_object* l___regBuiltin_UInt32_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12781____closed__2; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__316; +LEAN_EXPORT lean_object* l___regBuiltin_UInt64_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12454_(lean_object*); uint16_t lean_uint16_mul(uint16_t, uint16_t); static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__291; -LEAN_EXPORT lean_object* l___regBuiltin_UInt64_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14063_(lean_object*); -static lean_object* l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__10; -static lean_object* l___regBuiltin_UInt16_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11137____closed__5; -static lean_object* l___regBuiltin_UInt64_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14385____closed__8; -static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__620; -static lean_object* l___regBuiltin_UInt64_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14545____closed__3; -uint8_t lean_usize_dec_lt(size_t, size_t); +static lean_object* l___regBuiltin_UInt32_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11199____closed__12; +static lean_object* l___regBuiltin_UInt8_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8650____closed__5; LEAN_EXPORT lean_object* l_UInt32_reduceToNat(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___regBuiltin_UInt32_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12498____closed__9; -static lean_object* l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9618____closed__1; -LEAN_EXPORT lean_object* l___regBuiltin_USize_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15504_(lean_object*); -static lean_object* l___regBuiltin_USize_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15460____closed__4; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__443; -static lean_object* l___regBuiltin_USize_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__16178____closed__14; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__341; LEAN_EXPORT lean_object* l_UInt32_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_UInt8_reduceEq____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____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_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981_(lean_object*); +static lean_object* l_UInt16_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847____lambda__1___closed__2; +static lean_object* l___regBuiltin_UInt16_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9746____closed__13; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__347; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__248; -static lean_object* l___regBuiltin_UInt64_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14385____closed__3; -static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__629; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__419; -static lean_object* l___regBuiltin_UInt8_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9858____closed__1; -static lean_object* l___regBuiltin_UInt64_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14385____closed__1; -LEAN_EXPORT lean_object* l___regBuiltin_UInt32_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13104_(lean_object*); +static lean_object* l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8495____closed__8; +static lean_object* l___regBuiltin_UInt16_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9867____closed__8; +static lean_object* l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__7; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__256; -static lean_object* l___regBuiltin_UInt16_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11462____closed__12; -static lean_object* l___regBuiltin_UInt64_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14661____closed__5; -static lean_object* l___regBuiltin_UInt32_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12699____closed__6; -static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__560; -LEAN_EXPORT lean_object* l___regBuiltin_UInt16_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11219_(lean_object*); -LEAN_EXPORT lean_object* l___regBuiltin_UInt32_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12944_(lean_object*); +static lean_object* l___regBuiltin_UInt16_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9786____closed__4; +static lean_object* l___regBuiltin_UInt32_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10955____closed__4; +static lean_object* l___regBuiltin_UInt16_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__10174____closed__7; LEAN_EXPORT lean_object* l_UInt32_reduceGT___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_UInt64_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14304____closed__6; +static lean_object* l___regBuiltin_UInt32_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11118____closed__2; +static lean_object* l___regBuiltin_UInt16_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9421____closed__8; +static lean_object* l___regBuiltin_UInt32_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11159____closed__9; +static lean_object* l___regBuiltin_UInt8_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8332____closed__1; +static lean_object* l___regBuiltin_UInt64_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12085____closed__8; +static lean_object* l___regBuiltin_UInt8_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8332____closed__2; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__383; -static lean_object* l___regBuiltin_USize_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15986____closed__1; -static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__583; -static lean_object* l___regBuiltin_UInt16_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11462____closed__5; -static lean_object* l___regBuiltin_UInt16_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11855____closed__11; -static lean_object* l___regBuiltin_UInt32_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12498____closed__6; -LEAN_EXPORT lean_object* l_USize_reduceOfNatCore___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___regBuiltin_UInt32_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12863_(lean_object*); +static lean_object* l___regBuiltin_UInt16_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9461____closed__2; +static lean_object* l___regBuiltin_UInt32_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11199____closed__14; +static lean_object* l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8535____closed__6; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__8; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__336; -static lean_object* l___regBuiltin_USize_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15540____closed__8; +static lean_object* l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__7; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__431; -static lean_object* l___regBuiltin_UInt64_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13979____closed__4; -static lean_object* l___regBuiltin_UInt32_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__13296____closed__3; -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_UInt32_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12740____closed__3; -LEAN_EXPORT lean_object* l_UInt16_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419____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___regBuiltin_UInt32_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11199____closed__2; +LEAN_EXPORT lean_object* l___regBuiltin_UInt64_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12049_(lean_object*); 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*); -LEAN_EXPORT lean_object* l___regBuiltin_UInt8_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9658_(lean_object*); -static lean_object* l___regBuiltin_UInt8_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9817____closed__3; -static lean_object* l___regBuiltin_UInt16_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11779____closed__4; -LEAN_EXPORT lean_object* l___regBuiltin_UInt64_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14061_(lean_object*); -static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__520; -static lean_object* l___regBuiltin_UInt8_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9776____closed__10; -static lean_object* l___regBuiltin_UInt16_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11177____closed__2; +static lean_object* l___regBuiltin_UInt32_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11430____closed__4; +static lean_object* l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8535____closed__10; +static lean_object* l___regBuiltin_UInt8_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8169____closed__6; +static lean_object* l___regBuiltin_UInt8_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8209____closed__9; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__9; -static lean_object* l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10102____closed__16; -LEAN_EXPORT lean_object* l_UInt16_toExpr(lean_object*); -static lean_object* l___regBuiltin_UInt64_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14737____closed__9; -static lean_object* l___regBuiltin_UInt32_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12863____closed__14; +static lean_object* l___regBuiltin_UInt64_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12646____closed__2; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__99; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__450; +static lean_object* l___regBuiltin_UInt8_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8169____closed__10; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__382; -LEAN_EXPORT lean_object* l_UInt32_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860____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_UInt64_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511_(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_uint8_dec_eq(uint8_t, uint8_t); -static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__624; +static lean_object* l___regBuiltin_UInt32_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11506____closed__13; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__453; -LEAN_EXPORT lean_object* l___regBuiltin_USize_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15422_(lean_object*); +static lean_object* l___regBuiltin_UInt64_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12165____closed__1; +LEAN_EXPORT lean_object* l___regBuiltin_UInt64_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12289_(lean_object*); lean_object* l_String_toSubstring_x27(lean_object*); -LEAN_EXPORT lean_object* l_UInt32_reduceBinPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860_(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___regBuiltin_UInt32_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11078____closed__8; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__394; -static lean_object* l___regBuiltin_UInt64_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14385____closed__12; -LEAN_EXPORT lean_object* l_UInt16_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419_(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___regBuiltin_UInt16_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11855____closed__8; +static lean_object* l___regBuiltin_UInt64_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12450____closed__8; +static lean_object* l___regBuiltin_UInt32_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10873____closed__8; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__3; -LEAN_EXPORT lean_object* l___regBuiltin_UInt16_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11177_(lean_object*); -static lean_object* l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10021____closed__11; +LEAN_EXPORT lean_object* l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8535_(lean_object*); +static lean_object* l___regBuiltin_UInt16_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9381____closed__2; +static lean_object* l___regBuiltin_UInt64_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12491____closed__4; LEAN_EXPORT lean_object* l_UInt8_reduceLE(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_UInt8_reduceBinPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515_(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__277; -static lean_object* l___regBuiltin_USize_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15500____closed__4; -LEAN_EXPORT lean_object* l_UInt32_reduceBEq____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860____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_UInt8_reduceBinPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978_(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___regBuiltin_UInt8_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9696____closed__10; +static lean_object* l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8454____closed__19; +static lean_object* l___regBuiltin_UInt32_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11506____closed__8; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__246; -LEAN_EXPORT lean_object* l___regBuiltin_USize_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15626_(lean_object*); static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__144; -LEAN_EXPORT lean_object* l_USize_reduceOfNatCore(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8535____closed__15; lean_object* lean_uint32_to_nat(uint32_t); +LEAN_EXPORT lean_object* l___regBuiltin_UInt32_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11199_(lean_object*); static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__266; -static lean_object* l___regBuiltin_UInt32_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12863____closed__1; -LEAN_EXPORT lean_object* l___regBuiltin_UInt16_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11181_(lean_object*); -static lean_object* l___regBuiltin_UInt32_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13104____closed__1; +static lean_object* l___regBuiltin_UInt16_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9786____closed__12; +static lean_object* l___regBuiltin_UInt16_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9982____closed__6; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__180; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__402; -LEAN_EXPORT lean_object* l___regBuiltin_UInt16_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11059_(lean_object*); -LEAN_EXPORT lean_object* l___regBuiltin_UInt16_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11139_(lean_object*); -LEAN_EXPORT lean_object* l___regBuiltin_UInt32_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12867_(lean_object*); -static lean_object* l___regBuiltin_UInt8_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9858____closed__5; -static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__595; -static lean_object* l___regBuiltin_UInt64_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14661____closed__4; -static lean_object* l___regBuiltin_UInt64_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14304____closed__7; -static lean_object* l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10062____closed__5; +LEAN_EXPORT lean_object* l___regBuiltin_UInt16_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9986_(lean_object*); +LEAN_EXPORT lean_object* l___regBuiltin_UInt32_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10837_(lean_object*); +static lean_object* l___regBuiltin_UInt16_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9867____closed__10; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__68; -static lean_object* l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10414____closed__12; -static lean_object* l_UInt64_toExprCore___closed__1; +static lean_object* l___regBuiltin_UInt64_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12838____closed__4; +LEAN_EXPORT lean_object* l_UInt64_isValue____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511_(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___regBuiltin_UInt64_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12762____closed__4; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__150; -static lean_object* l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__14; -static lean_object* l___regBuiltin_USize_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15826____closed__13; -LEAN_EXPORT lean_object* l___regBuiltin_UInt32_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13222_(lean_object*); +static lean_object* l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8495____closed__5; +LEAN_EXPORT lean_object* l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8537_(lean_object*); static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__433; -static lean_object* l___regBuiltin_UInt64_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14181____closed__3; -LEAN_EXPORT lean_object* l___regBuiltin_UInt64_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14387_(lean_object*); +static lean_object* l___regBuiltin_UInt32_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10753____closed__5; +LEAN_EXPORT lean_object* l___regBuiltin_UInt32_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11434_(lean_object*); static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__41; -static lean_object* l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10062____closed__15; -LEAN_EXPORT lean_object* l_UInt32_toExprCore___boxed(lean_object*); +static lean_object* l___regBuiltin_UInt8_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8169____closed__9; +static lean_object* l___regBuiltin_UInt64_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12762____closed__3; +LEAN_EXPORT lean_object* l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8539_(lean_object*); LEAN_EXPORT lean_object* l_UInt16_fromExpr(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___regBuiltin_UInt8_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8129____closed__4; +LEAN_EXPORT lean_object* l___regBuiltin_UInt64_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12650_(lean_object*); static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__287; -LEAN_EXPORT lean_object* l_UInt8_toExpr(lean_object*); -static lean_object* l___regBuiltin_UInt16_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11779____closed__5; -static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__605; -static lean_object* l___regBuiltin_UInt8_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9817____closed__8; +static lean_object* l___regBuiltin_UInt32_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11199____closed__9; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__24; +static lean_object* l___regBuiltin_UInt16_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9827____closed__8; +LEAN_EXPORT lean_object* l___regBuiltin_UInt16_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9827_(lean_object*); static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__169; -LEAN_EXPORT lean_object* l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10414_(lean_object*); -static lean_object* l___regBuiltin_UInt16_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11422____closed__2; -static lean_object* l___regBuiltin_UInt32_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12498____closed__7; +static lean_object* l___regBuiltin_UInt16_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9421____closed__7; +static lean_object* l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__17; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__280; -static lean_object* l___regBuiltin_UInt16_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11779____closed__1; -static lean_object* l___regBuiltin_USize_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15866____closed__8; -static lean_object* l___regBuiltin_UInt32_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__13296____closed__4; -LEAN_EXPORT lean_object* l_UInt32_reduceBEq____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860____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_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10414____closed__10; -static lean_object* l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10414____closed__6; -static lean_object* l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9616____closed__11; -static lean_object* l_UInt8_toExprCore___closed__2; -static lean_object* l___regBuiltin_UInt32_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12618____closed__2; +LEAN_EXPORT lean_object* l___regBuiltin_UInt32_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10833_(lean_object*); +static lean_object* l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8454____closed__2; +static lean_object* l___regBuiltin_UInt64_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12369____closed__2; +static lean_object* l___regBuiltin_UInt16_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9461____closed__5; +static lean_object* l___regBuiltin_UInt32_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11118____closed__5; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__459; -size_t lean_usize_div(size_t, size_t); -LEAN_EXPORT lean_object* l___regBuiltin_UInt64_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14389_(lean_object*); -static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__607; 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___regBuiltin_UInt16_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11217_(lean_object*); -static lean_object* l___regBuiltin_UInt16_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11381____closed__2; -LEAN_EXPORT lean_object* l_UInt16_reduceBinPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419____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_UInt8_toExprCore___closed__5; -static lean_object* l___regBuiltin_UInt16_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11422____closed__4; -LEAN_EXPORT lean_object* l___regBuiltin_UInt16_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11466_(lean_object*); -static lean_object* l___regBuiltin_UInt16_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11299____closed__1; -static lean_object* l___regBuiltin_UInt16_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11855____closed__7; +static lean_object* l___regBuiltin_UInt16_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9541____closed__1; +LEAN_EXPORT lean_object* l___regBuiltin_UInt32_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11037_(lean_object*); +LEAN_EXPORT lean_object* l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8842_(lean_object*); 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*); -LEAN_EXPORT lean_object* l___regBuiltin_UInt64_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14429_(lean_object*); +static lean_object* l___regBuiltin_UInt32_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11506____closed__9; 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*); +static lean_object* l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8495____closed__15; +static lean_object* l___regBuiltin_UInt16_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9827____closed__1; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__62; -static lean_object* l___regBuiltin_UInt64_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14425____closed__7; +static lean_object* l___regBuiltin_UInt8_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8169____closed__4; 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__591; static lean_object* _init_l_commandDeclare__uint__simprocs_____closed__1() { _start: { @@ -2297,7 +1880,7 @@ static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UI _start: { lean_object* x_1; -x_1 = lean_mk_string_from_bytes("toExprCore", 10); +x_1 = lean_mk_string_from_bytes("null", 4); return x_1; } } @@ -2314,66 +1897,12 @@ return x_3; static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__12() { _start: { -lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__11; -x_2 = lean_mk_syntax_ident(x_1); -return x_2; -} -} -static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__13() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("toExpr", 6); -return x_1; -} -} -static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__14() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__13; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__15() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__14; -x_2 = lean_mk_syntax_ident(x_1); -return x_2; -} -} -static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__16() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("null", 4); -return x_1; -} -} -static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__17() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__16; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__18() { -_start: -{ lean_object* x_1; x_1 = lean_mk_string_from_bytes("Lean", 4); return x_1; } } -static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__19() { +static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__13() { _start: { lean_object* x_1; @@ -2381,7 +1910,7 @@ x_1 = lean_mk_string_from_bytes("Parser", 6); return x_1; } } -static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__20() { +static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__14() { _start: { lean_object* x_1; @@ -2389,7 +1918,7 @@ x_1 = lean_mk_string_from_bytes("Command", 7); return x_1; } } -static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__21() { +static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__15() { _start: { lean_object* x_1; @@ -2397,19 +1926,19 @@ x_1 = lean_mk_string_from_bytes("namespace", 9); return x_1; } } -static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__22() { +static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__16() { _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__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__18; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__19; -x_3 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__20; -x_4 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__21; +x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__12; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__13; +x_3 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__14; +x_4 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__15; x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); return x_5; } } -static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__23() { +static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__17() { _start: { lean_object* x_1; @@ -2417,19 +1946,19 @@ x_1 = lean_mk_string_from_bytes("declaration", 11); return x_1; } } -static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__24() { +static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__18() { _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__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__18; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__19; -x_3 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__20; -x_4 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__23; +x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__12; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__13; +x_3 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__14; +x_4 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__17; x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); return x_5; } } -static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__25() { +static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__19() { _start: { lean_object* x_1; @@ -2437,19 +1966,19 @@ x_1 = lean_mk_string_from_bytes("declModifiers", 13); return x_1; } } -static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__26() { +static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____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__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__18; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__19; -x_3 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__20; -x_4 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__25; +x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__12; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__13; +x_3 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__14; +x_4 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____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__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__27() { +static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__21() { _start: { lean_object* x_1; lean_object* x_2; @@ -2458,47 +1987,27 @@ x_2 = lean_mk_empty_array_with_capacity(x_1); return x_2; } } -static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__28() { +static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__22() { _start: { lean_object* x_1; -x_1 = lean_mk_string_from_bytes("structure", 9); +x_1 = lean_mk_string_from_bytes("def", 3); return x_1; } } -static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__29() { +static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__23() { _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__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__18; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__19; -x_3 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__20; -x_4 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__28; +x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__12; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__13; +x_3 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__14; +x_4 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__22; x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); return x_5; } } -static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__30() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("structureTk", 11); -return x_1; -} -} -static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__31() { -_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__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__18; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__19; -x_3 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__20; -x_4 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__30; -x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); -return x_5; -} -} -static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__32() { +static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__24() { _start: { lean_object* x_1; @@ -2506,121 +2015,76 @@ x_1 = lean_mk_string_from_bytes("declId", 6); return x_1; } } -static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__33() { +static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__25() { _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__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__18; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__19; -x_3 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__20; -x_4 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__32; +x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__12; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__13; +x_3 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__14; +x_4 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__24; x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); return x_5; } } -static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__34() { +static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__26() { _start: { -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("Value", 5); -return x_1; +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = lean_box(2); +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__11; +x_3 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__21; +x_4 = lean_alloc_ctor(1, 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___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__35() { +static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__27() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__34; -x_2 = l_String_toSubstring_x27(x_1); +x_1 = lean_unsigned_to_nat(2u); +x_2 = lean_mk_empty_array_with_capacity(x_1); return x_2; } } -static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__36() { +static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__28() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__34; -x_3 = l_Lean_Name_str___override(x_1, x_2); +x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__27; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__9; +x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__37() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("where", 5); -return x_1; -} -} -static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__38() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("structFields", 12); -return x_1; -} -} -static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____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__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__18; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__19; -x_3 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__20; -x_4 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____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__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__40() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("structSimpleBinder", 18); -return x_1; -} -} -static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__41() { -_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__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__18; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__19; -x_3 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__20; -x_4 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__40; -x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); -return x_5; -} -} -static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__42() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("ofNatFn", 7); -return x_1; -} -} -static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__43() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__42; -x_2 = l_String_toSubstring_x27(x_1); -return x_2; -} -} -static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__44() { +static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__29() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__42; -x_3 = l_Lean_Name_str___override(x_1, x_2); +x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__28; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__26; +x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__45() { +static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__30() { +_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___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__25; +x_3 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__29; +x_4 = lean_alloc_ctor(1, 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___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__31() { _start: { lean_object* x_1; @@ -2628,19 +2092,19 @@ x_1 = lean_mk_string_from_bytes("optDeclSig", 10); return x_1; } } -static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__46() { +static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____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__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__18; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__19; -x_3 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__20; -x_4 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__45; +x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__12; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__13; +x_3 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__14; +x_4 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____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__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__47() { +static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__33() { _start: { lean_object* x_1; @@ -2648,27 +2112,62 @@ x_1 = lean_mk_string_from_bytes("Term", 4); return x_1; } } -static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__48() { +static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__34() { _start: { lean_object* x_1; -x_1 = lean_mk_string_from_bytes("typeSpec", 8); +x_1 = lean_mk_string_from_bytes("explicitBinder", 14); return x_1; } } -static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__49() { +static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__35() { _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__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__18; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__19; -x_3 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__47; -x_4 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__48; +x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__12; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__13; +x_3 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__33; +x_4 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__34; x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); return x_5; } } -static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__50() { +static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__36() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("(", 1); +return x_1; +} +} +static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__37() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("e", 1); +return x_1; +} +} +static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__38() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__37; +x_2 = l_String_toSubstring_x27(x_1); +return x_2; +} +} +static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__39() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__37; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__40() { _start: { lean_object* x_1; @@ -2676,7 +2175,7 @@ x_1 = lean_mk_string_from_bytes(":", 1); return x_1; } } -static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__51() { +static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__41() { _start: { lean_object* x_1; @@ -2684,96 +2183,194 @@ x_1 = lean_mk_string_from_bytes("Expr", 4); return x_1; } } -static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__52() { +static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__42() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__51; +x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__41; x_2 = l_String_toSubstring_x27(x_1); return x_2; } } -static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__53() { +static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__43() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__51; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__41; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__54() { +static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__44() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__18; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__51; +x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__12; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__41; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } -static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__55() { +static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__45() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__54; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__44; 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___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__56() { +static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__46() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__54; +x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__44; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__57() { +static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__47() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__56; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__46; 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___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__58() { +static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__48() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__55; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__57; +x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__45; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__47; 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___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__59() { +static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__49() { _start: { lean_object* x_1; -x_1 = lean_mk_string_from_bytes("value", 5); +x_1 = lean_mk_string_from_bytes(")", 1); return x_1; } } +static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__50() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("typeSpec", 8); +return x_1; +} +} +static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__51() { +_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__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__12; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__13; +x_3 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__33; +x_4 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__50; +x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); +return x_5; +} +} +static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__52() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("app", 3); +return x_1; +} +} +static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__53() { +_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__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__12; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__13; +x_3 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__33; +x_4 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__52; +x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); +return x_5; +} +} +static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__54() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("SimpM", 5); +return x_1; +} +} +static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__55() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__54; +x_2 = l_String_toSubstring_x27(x_1); +return x_2; +} +} +static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____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__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__54; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__57() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("Meta", 4); +return x_1; +} +} +static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__58() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("Simp", 4); +return x_1; +} +} +static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__59() { +_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__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__12; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__57; +x_3 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__58; +x_4 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__54; +x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); +return x_5; +} +} static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__60() { _start: { -lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__59; -x_2 = l_String_toSubstring_x27(x_1); -return x_2; +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__59; +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___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__61() { @@ -2781,8 +2378,10 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__59; -x_3 = l_Lean_Name_str___override(x_1, x_2); +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__60; +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; } } @@ -2790,7 +2389,7 @@ static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UI _start: { lean_object* x_1; -x_1 = lean_mk_string_from_bytes("optDeriving", 11); +x_1 = lean_mk_string_from_bytes("paren", 5); return x_1; } } @@ -2798,9 +2397,9 @@ static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UI _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__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__18; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__19; -x_3 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__20; +x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__12; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__13; +x_3 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__33; x_4 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__62; x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); return x_5; @@ -2810,288 +2409,290 @@ static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UI _start: { lean_object* x_1; -x_1 = lean_mk_string_from_bytes("def", 3); +x_1 = lean_mk_string_from_bytes("Option", 6); return x_1; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__65() { _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__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__18; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__19; -x_3 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__20; -x_4 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__64; -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__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__64; +x_2 = l_String_toSubstring_x27(x_1); +return x_2; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__66() { _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___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__17; -x_3 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__27; -x_4 = lean_alloc_ctor(1, 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; +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__64; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__67() { _start: { -lean_object* x_1; lean_object* x_2; -x_1 = lean_unsigned_to_nat(2u); -x_2 = lean_mk_empty_array_with_capacity(x_1); -return x_2; +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__66; +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___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__68() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__67; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__9; -x_3 = lean_array_push(x_1, x_2); -return x_3; +lean_object* x_1; lean_object* x_2; +x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__66; +x_2 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__69() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__68; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__66; -x_3 = lean_array_push(x_1, x_2); +x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__12; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__64; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__70() { _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___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__33; -x_3 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__69; -x_4 = lean_alloc_ctor(1, 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___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__71() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("explicitBinder", 14); -return x_1; -} -} -static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__72() { -_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__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__18; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__19; -x_3 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__47; -x_4 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__71; -x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); -return x_5; -} -} -static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__73() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("(", 1); -return x_1; -} -} -static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__74() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("e", 1); -return x_1; -} -} -static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__75() { -_start: -{ lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__74; -x_2 = l_String_toSubstring_x27(x_1); -return x_2; -} -} -static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__76() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__74; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__77() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes(")", 1); -return x_1; -} -} -static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__78() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("app", 3); -return x_1; -} -} -static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__79() { -_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__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__18; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__19; -x_3 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__47; -x_4 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__78; -x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); -return x_5; -} -} -static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__80() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("OptionT", 7); -return x_1; -} -} -static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__81() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__80; -x_2 = l_String_toSubstring_x27(x_1); -return x_2; -} -} -static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__82() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__80; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__83() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__82; -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___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__84() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__82; +x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__69; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__85() { +static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__71() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__84; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__70; 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___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__86() { +static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__72() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__83; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__85; +x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__68; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__71; 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___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__87() { +static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__73() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__67; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__72; +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___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__74() { _start: { lean_object* x_1; -x_1 = lean_mk_string_from_bytes("SimpM", 5); +x_1 = lean_mk_string_from_bytes("declValSimple", 13); return x_1; } } +static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__75() { +_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__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__12; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__13; +x_3 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__14; +x_4 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__74; +x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); +return x_5; +} +} +static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__76() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes(":=", 2); +return x_1; +} +} +static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__77() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("do", 2); +return x_1; +} +} +static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__78() { +_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__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__12; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__13; +x_3 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__33; +x_4 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__77; +x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); +return x_5; +} +} +static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__79() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("doSeqIndent", 11); +return x_1; +} +} +static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__80() { +_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__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__12; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__13; +x_3 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__33; +x_4 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__79; +x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); +return x_5; +} +} +static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__81() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("doSeqItem", 9); +return x_1; +} +} +static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__82() { +_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__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__12; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__13; +x_3 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__33; +x_4 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__81; +x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); +return x_5; +} +} +static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__83() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("doLetArrow", 10); +return x_1; +} +} +static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__84() { +_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__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__12; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__13; +x_3 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__33; +x_4 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__83; +x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); +return x_5; +} +} +static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__85() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("let", 3); +return x_1; +} +} +static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__86() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("doPatDecl", 9); +return x_1; +} +} +static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____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__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__12; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__13; +x_3 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__33; +x_4 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____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__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__88() { _start: { -lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__87; -x_2 = l_String_toSubstring_x27(x_1); -return x_2; +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("some", 4); +return x_1; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__89() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__87; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; +lean_object* x_1; lean_object* x_2; +x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__88; +x_2 = l_String_toSubstring_x27(x_1); +return x_2; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__90() { _start: { -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("Meta", 4); -return x_1; +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__88; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__91() { _start: { -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("Simp", 4); -return x_1; +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__64; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__88; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__92() { _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__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__18; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__90; -x_3 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__91; -x_4 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__87; -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; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__91; +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___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__93() { @@ -3109,68 +2710,63 @@ return x_3; static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__94() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__93; -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; +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("tuple", 5); +return x_1; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__95() { _start: { -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("declValSimple", 13); -return x_1; +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__12; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__13; +x_3 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__33; +x_4 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__94; +x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); +return x_5; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____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__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__18; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__19; -x_3 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__20; -x_4 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__95; -x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); -return x_5; +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("n", 1); +return x_1; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__97() { _start: { -lean_object* x_1; -x_1 = lean_mk_string_from_bytes(":=", 2); -return x_1; +lean_object* x_1; lean_object* x_2; +x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__96; +x_2 = l_String_toSubstring_x27(x_1); +return x_2; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__98() { _start: { -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("do", 2); -return x_1; +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__96; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__99() { _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__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__18; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__19; -x_3 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__47; -x_4 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__98; -x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); -return x_5; +lean_object* x_1; +x_1 = lean_mk_string_from_bytes(",", 1); +return x_1; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__100() { _start: { lean_object* x_1; -x_1 = lean_mk_string_from_bytes("doSeqIndent", 11); +x_1 = lean_mk_string_from_bytes("hole", 4); return x_1; } } @@ -3178,9 +2774,9 @@ static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UI _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__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__18; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__19; -x_3 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__47; +x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__12; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__13; +x_3 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__33; x_4 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__100; x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); return x_5; @@ -3190,20 +2786,16 @@ static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UI _start: { lean_object* x_1; -x_1 = lean_mk_string_from_bytes("doSeqItem", 9); +x_1 = lean_mk_string_from_bytes("_", 1); return x_1; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__103() { _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__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__18; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__19; -x_3 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__47; -x_4 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__102; -x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); -return x_5; +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("←", 3); +return x_1; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__104() { @@ -3218,9 +2810,9 @@ static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UI _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__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__18; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__19; -x_3 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__47; +x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__12; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__13; +x_3 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__33; x_4 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__104; x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); return x_5; @@ -3230,7 +2822,7 @@ static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UI _start: { lean_object* x_1; -x_1 = lean_mk_string_from_bytes("guard", 5); +x_1 = lean_mk_string_from_bytes("getOfNatValue\?", 14); return x_1; } } @@ -3256,314 +2848,327 @@ return x_3; static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__109() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__108; -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; +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__12; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__57; +x_3 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__106; +x_4 = l_Lean_Name_mkStr3(x_1, x_2, x_3); +return x_4; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__110() { _start: { -lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__108; -x_2 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_2, 0, x_1); -return x_2; +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__109; +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___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__111() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__110; -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; +lean_object* x_1; lean_object* x_2; +x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__109; +x_2 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__112() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__109; +x_1 = lean_box(0); x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__111; x_3 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_3, 0, x_1); -lean_ctor_set(x_3, 1, x_2); +lean_ctor_set(x_3, 0, x_2); +lean_ctor_set(x_3, 1, x_1); return x_3; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__113() { _start: { -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("paren", 5); -return x_1; +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__110; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__112; +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___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__114() { _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__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__18; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__19; -x_3 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__47; -x_4 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__113; -x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); -return x_5; +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("|", 1); +return x_1; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__115() { _start: { lean_object* x_1; -x_1 = lean_mk_string_from_bytes("e.isAppOfArity", 14); +x_1 = lean_mk_string_from_bytes("doReturn", 8); return x_1; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__116() { _start: { -lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__115; -x_2 = l_String_toSubstring_x27(x_1); -return x_2; +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__12; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__13; +x_3 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__33; +x_4 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__115; +x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); +return x_5; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__117() { _start: { lean_object* x_1; -x_1 = lean_mk_string_from_bytes("isAppOfArity", 12); +x_1 = lean_mk_string_from_bytes("return", 6); return x_1; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__118() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__74; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__117; -x_3 = l_Lean_Name_mkStr2(x_1, x_2); -return x_3; +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("none", 4); +return x_1; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__119() { _start: { -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("doubleQuotedName", 16); -return x_1; +lean_object* x_1; lean_object* x_2; +x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__118; +x_2 = l_String_toSubstring_x27(x_1); +return x_2; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__120() { _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__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__18; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__19; -x_3 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__47; -x_4 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__119; -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; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__118; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__121() { _start: { -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("`", 1); -return x_1; +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__64; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__118; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__122() { _start: { -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("OfNat.ofNat", 11); -return x_1; +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__121; +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___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__123() { _start: { -lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__122; -x_2 = l_String_toSubstring_x27(x_1); -return x_2; +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__122; +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___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__124() { _start: { lean_object* x_1; -x_1 = lean_mk_string_from_bytes("OfNat", 5); +x_1 = lean_mk_string_from_bytes("Termination", 11); return x_1; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__125() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__124; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__1; -x_3 = l_Lean_Name_mkStr2(x_1, x_2); -return x_3; +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("suffix", 6); +return x_1; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__126() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__125; -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; +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__12; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__13; +x_3 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__124; +x_4 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__125; +x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); +return x_5; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__127() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__126; -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; +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("attributes", 10); +return x_1; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__128() { _start: { -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("num", 3); -return x_1; +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__12; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__13; +x_3 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__33; +x_4 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____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__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__129() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__128; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("@[", 2); +return x_1; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__130() { _start: { lean_object* x_1; -x_1 = lean_mk_string_from_bytes("3", 1); +x_1 = lean_mk_string_from_bytes("attrInstance", 12); return x_1; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__131() { _start: { -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("doLetArrow", 10); -return x_1; +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__12; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__13; +x_3 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__33; +x_4 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____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__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__132() { _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__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__18; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__19; -x_3 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__47; -x_4 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__131; -x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); -return x_5; +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("attrKind", 8); +return x_1; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__133() { _start: { -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("let", 3); -return x_1; +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__12; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__13; +x_3 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__33; +x_4 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__132; +x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); +return x_5; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__134() { _start: { lean_object* x_1; -x_1 = lean_mk_string_from_bytes("doIdDecl", 8); +x_1 = lean_mk_string_from_bytes("Attr", 4); return x_1; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____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__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__18; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__19; -x_3 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__47; -x_4 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__134; -x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); -return x_5; +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("simple", 6); +return x_1; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__136() { _start: { -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("type", 4); -return x_1; +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__12; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__13; +x_3 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__134; +x_4 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__135; +x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); +return x_5; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__137() { _start: { -lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__136; -x_2 = l_String_toSubstring_x27(x_1); -return x_2; +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("inline", 6); +return x_1; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____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__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__136; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; +lean_object* x_1; lean_object* x_2; +x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__137; +x_2 = l_String_toSubstring_x27(x_1); +return x_2; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__139() { _start: { -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("←", 3); -return x_1; +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__137; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__140() { _start: { -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("whnf", 4); -return x_1; +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__139; +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___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__141() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__140; -x_2 = l_String_toSubstring_x27(x_1); +x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__139; +x_2 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_2, 0, x_1); return x_2; } } @@ -3572,95 +3177,92 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__140; -x_3 = l_Lean_Name_str___override(x_1, x_2); +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__141; +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___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__143() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__18; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__90; -x_3 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__140; -x_4 = l_Lean_Name_mkStr3(x_1, x_2, x_3); -return x_4; +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__140; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__142; +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___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____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__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__143; -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; +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("]", 1); +return x_1; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__145() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__144; -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; +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("reduceBin", 9); +return x_1; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__146() { _start: { -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("e.appFn!.appFn!.appArg!", 23); -return x_1; +lean_object* x_1; lean_object* x_2; +x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__145; +x_2 = l_String_toSubstring_x27(x_1); +return x_2; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__147() { _start: { -lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__146; -x_2 = l_String_toSubstring_x27(x_1); -return x_2; +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__145; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__148() { _start: { lean_object* x_1; -x_1 = lean_mk_string_from_bytes("appFn!", 6); +x_1 = lean_mk_string_from_bytes("declName", 8); return x_1; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__149() { _start: { -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("appArg!", 7); -return x_1; +lean_object* x_1; lean_object* x_2; +x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__148; +x_2 = l_String_toSubstring_x27(x_1); +return x_2; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__150() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__74; +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__148; -x_3 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__149; -x_4 = l_Lean_Name_mkStr4(x_1, x_2, x_2, x_3); -return x_4; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__151() { _start: { lean_object* x_1; -x_1 = lean_mk_string_from_bytes("type.isConstOf", 14); +x_1 = lean_mk_string_from_bytes("Name", 4); return x_1; } } @@ -3676,17 +3278,19 @@ return x_2; static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__153() { _start: { -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("isConstOf", 9); -return x_1; +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__151; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__154() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__136; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__153; +x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__12; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__151; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } @@ -3694,309 +3298,322 @@ return x_3; static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__155() { _start: { -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("Nat.fromExpr\?", 13); -return x_1; +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__154; +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___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__156() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__155; -x_2 = l_String_toSubstring_x27(x_1); +x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__154; +x_2 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_2, 0, x_1); return x_2; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__157() { _start: { +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__156; +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___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__158() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__155; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__157; +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___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__159() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("arity", 5); +return x_1; +} +} +static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__160() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__159; +x_2 = l_String_toSubstring_x27(x_1); +return x_2; +} +} +static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__161() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__159; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__162() { +_start: +{ lean_object* x_1; x_1 = lean_mk_string_from_bytes("Nat", 3); return x_1; } } -static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__158() { +static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__163() { _start: { -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("fromExpr\?", 9); -return x_1; +lean_object* x_1; lean_object* x_2; +x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__162; +x_2 = l_String_toSubstring_x27(x_1); +return x_2; } } -static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__159() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__157; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__158; -x_3 = l_Lean_Name_mkStr2(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__160() { +static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____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__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__159; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__162; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__165() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__164; 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___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__161() { +static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__166() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__159; +x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__164; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__162() { +static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__167() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__161; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__166; 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___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__163() { +static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__168() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__160; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__162; +x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__165; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__167; 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___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__164() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("e.appFn!.appArg!", 16); -return x_1; -} -} -static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__165() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__164; -x_2 = l_String_toSubstring_x27(x_1); -return x_2; -} -} -static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__166() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__74; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__148; -x_3 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__149; -x_4 = l_Lean_Name_mkStr3(x_1, x_2, x_3); -return x_4; -} -} -static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__167() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("doLet", 5); -return x_1; -} -} -static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__168() { -_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__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__18; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__19; -x_3 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__47; -x_4 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__167; -x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); -return x_5; -} -} static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__169() { _start: { lean_object* x_1; -x_1 = lean_mk_string_from_bytes("letDecl", 7); +x_1 = lean_mk_string_from_bytes("op", 2); return x_1; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__170() { _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__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__18; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__19; -x_3 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__47; -x_4 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__169; -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__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__169; +x_2 = l_String_toSubstring_x27(x_1); +return x_2; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__171() { _start: { -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("letIdDecl", 9); -return x_1; +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__169; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__172() { _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__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__18; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__19; -x_3 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__47; -x_4 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__171; -x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); -return x_5; +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("arrow", 5); +return x_1; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__173() { _start: { -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("doReturn", 8); -return x_1; +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__12; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__13; +x_3 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__33; +x_4 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__172; +x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); +return x_5; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____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__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__18; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__19; -x_3 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__47; -x_4 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__173; -x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); -return x_5; +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("→", 3); +return x_1; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__175() { _start: { lean_object* x_1; -x_1 = lean_mk_string_from_bytes("return", 6); +x_1 = lean_mk_string_from_bytes("Step", 4); return x_1; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__176() { _start: { -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("structInst", 10); -return x_1; +lean_object* x_1; lean_object* x_2; +x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__175; +x_2 = l_String_toSubstring_x27(x_1); +return x_2; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__177() { _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__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__18; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__19; -x_3 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__47; -x_4 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__176; -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; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__175; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__178() { _start: { -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("{", 1); -return x_1; +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__12; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__57; +x_3 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__58; +x_4 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__175; +x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); +return x_5; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__179() { _start: { -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("structInstFieldAbbrev", 21); -return x_1; +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__178; +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___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____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__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__18; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__19; -x_3 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__47; -x_4 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__179; -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__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__178; +x_2 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__181() { _start: { -lean_object* x_1; -x_1 = lean_mk_string_from_bytes(",", 1); -return x_1; +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__180; +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___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__182() { _start: { -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("structInstField", 15); -return x_1; +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__179; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__181; +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___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__183() { _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__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__18; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__19; -x_3 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__47; -x_4 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__182; -x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); -return x_5; +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("doUnless", 8); +return x_1; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__184() { _start: { -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("structInstLVal", 14); -return x_1; +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__12; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__13; +x_3 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__33; +x_4 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____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__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__185() { _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__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__18; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__19; -x_3 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__47; -x_4 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__184; -x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); -return x_5; +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("unless", 6); +return x_1; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__186() { _start: { lean_object* x_1; -x_1 = lean_mk_string_from_bytes("e.appFn!.appFn!", 15); +x_1 = lean_mk_string_from_bytes("e.isAppOfArity", 14); return x_1; } } @@ -4012,46 +3629,46 @@ return x_2; static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__188() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__74; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__148; -x_3 = l_Lean_Name_mkStr3(x_1, x_2, x_2); -return x_3; +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("isAppOfArity", 12); +return x_1; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__189() { _start: { -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("optEllipsis", 11); -return x_1; +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__37; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__188; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__190() { _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__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__18; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__19; -x_3 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__47; -x_4 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__189; -x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); -return x_5; +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("dotIdent", 8); +return x_1; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__191() { _start: { -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("}", 1); -return x_1; +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__12; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__13; +x_3 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__33; +x_4 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__190; +x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); +return x_5; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__192() { _start: { lean_object* x_1; -x_1 = lean_mk_string_from_bytes("Termination", 11); +x_1 = lean_mk_string_from_bytes(".", 1); return x_1; } } @@ -4059,157 +3676,142 @@ static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UI _start: { lean_object* x_1; -x_1 = lean_mk_string_from_bytes("suffix", 6); +x_1 = lean_mk_string_from_bytes("continue", 8); return x_1; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____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__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__18; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__19; -x_3 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__192; -x_4 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__193; -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__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__193; +x_2 = l_String_toSubstring_x27(x_1); +return x_2; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__195() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__67; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__12; -x_3 = lean_array_push(x_1, x_2); +x_1 = lean_box(0); +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__193; +x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__196() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__195; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__66; -x_3 = lean_array_push(x_1, x_2); -return x_3; +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("e.appFn!.appArg!", 16); +return x_1; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__197() { _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___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__33; -x_3 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__196; -x_4 = lean_alloc_ctor(1, 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; +lean_object* x_1; lean_object* x_2; +x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__196; +x_2 = l_String_toSubstring_x27(x_1); +return x_2; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__198() { _start: { lean_object* x_1; -x_1 = lean_mk_string_from_bytes("v", 1); +x_1 = lean_mk_string_from_bytes("appFn!", 6); return x_1; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__199() { _start: { -lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__198; -x_2 = l_String_toSubstring_x27(x_1); -return x_2; +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("appArg!", 7); +return x_1; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__200() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__37; x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__198; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; +x_3 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__199; +x_4 = l_Lean_Name_mkStr3(x_1, x_2, x_3); +return x_4; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__201() { _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__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__18; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__19; -x_3 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__47; -x_4 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__133; -x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); -return x_5; +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("m", 1); +return x_1; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__202() { _start: { -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("vExpr", 5); -return x_1; +lean_object* x_1; lean_object* x_2; +x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__201; +x_2 = l_String_toSubstring_x27(x_1); +return x_2; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__203() { _start: { -lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__202; -x_2 = l_String_toSubstring_x27(x_1); -return x_2; +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__201; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__204() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__202; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("e.appArg!", 9); +return x_1; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__205() { _start: { -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("mkRawNatLit", 11); -return x_1; +lean_object* x_1; lean_object* x_2; +x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__204; +x_2 = l_String_toSubstring_x27(x_1); +return x_2; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__206() { _start: { -lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__205; -x_2 = l_String_toSubstring_x27(x_1); -return x_2; +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__37; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__199; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__207() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__205; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("done", 4); +return x_1; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__208() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__18; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__205; -x_3 = l_Lean_Name_mkStr2(x_1, x_2); -return x_3; +lean_object* x_1; lean_object* x_2; +x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__207; +x_2 = l_String_toSubstring_x27(x_1); +return x_2; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__209() { @@ -4217,87 +3819,84 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__208; -x_3 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_3, 0, x_2); -lean_ctor_set(x_3, 1, x_1); +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__207; +x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__210() { _start: { -lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__208; -x_2 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_2, 0, x_1); -return x_2; +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("structInst", 10); +return x_1; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__211() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__210; -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; +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__12; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__13; +x_3 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__33; +x_4 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____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__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__212() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__209; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__211; -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; +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("{", 1); +return x_1; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__213() { _start: { lean_object* x_1; -x_1 = lean_mk_string_from_bytes("v.val", 5); +x_1 = lean_mk_string_from_bytes("structInstField", 15); return x_1; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__214() { _start: { -lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__213; -x_2 = l_String_toSubstring_x27(x_1); -return x_2; +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__12; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__13; +x_3 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__33; +x_4 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__213; +x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); +return x_5; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__215() { _start: { lean_object* x_1; -x_1 = lean_mk_string_from_bytes("val", 3); +x_1 = lean_mk_string_from_bytes("structInstLVal", 14); return x_1; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__216() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__198; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__215; -x_3 = l_Lean_Name_mkStr2(x_1, x_2); -return x_3; +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__12; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__13; +x_3 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__33; +x_4 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__215; +x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); +return x_5; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__217() { _start: { lean_object* x_1; -x_1 = lean_mk_string_from_bytes("mkApp3", 6); +x_1 = lean_mk_string_from_bytes("expr", 4); return x_1; } } @@ -4323,139 +3922,125 @@ return x_3; static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__220() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__18; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__217; -x_3 = l_Lean_Name_mkStr2(x_1, x_2); -return x_3; +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("toExpr", 6); +return x_1; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__221() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__220; -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; +lean_object* x_1; lean_object* x_2; +x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__220; +x_2 = l_String_toSubstring_x27(x_1); +return x_2; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__222() { _start: { -lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__220; -x_2 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_2, 0, x_1); -return x_2; +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__220; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__223() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__222; -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; +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("ToExpr", 6); +return x_1; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__224() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__221; +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__12; x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__223; -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; +x_3 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__220; +x_4 = l_Lean_Name_mkStr3(x_1, x_2, x_3); +return x_4; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__225() { _start: { -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("mkConst", 7); -return x_1; +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__224; +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___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__226() { _start: { -lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__225; -x_2 = l_String_toSubstring_x27(x_1); -return x_2; +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__225; +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___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__227() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__225; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("optEllipsis", 11); +return x_1; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__228() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__18; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__225; -x_3 = l_Lean_Name_mkStr2(x_1, x_2); -return x_3; +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__12; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__13; +x_3 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__33; +x_4 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__227; +x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); +return x_5; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____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__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__228; -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; +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("}", 1); +return x_1; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__230() { _start: { -lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__228; -x_2 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_2, 0, x_1); -return x_2; +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("reduceBinPred", 13); +return x_1; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____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__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__230; -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; +lean_object* x_1; lean_object* x_2; +x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__230; +x_2 = l_String_toSubstring_x27(x_1); +return x_2; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__232() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__229; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__231; -x_3 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_3, 0, x_1); -lean_ctor_set(x_3, 1, x_2); +x_1 = lean_box(0); +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__230; +x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } @@ -4463,13 +4048,22 @@ static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UI _start: { lean_object* x_1; -x_1 = lean_mk_string_from_bytes("term[_]", 7); +x_1 = lean_mk_string_from_bytes("Bool", 4); return x_1; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__234() { _start: { +lean_object* x_1; lean_object* x_2; +x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__233; +x_2 = l_String_toSubstring_x27(x_1); +return x_2; +} +} +static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__235() { +_start: +{ lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__233; @@ -4477,28 +4071,25 @@ x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__235() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("[", 1); -return x_1; -} -} static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__236() { _start: { -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("levelZero", 9); -return x_1; +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__235; +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___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__237() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__236; -x_2 = l_String_toSubstring_x27(x_1); +x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__235; +x_2 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_2, 0, x_1); return x_2; } } @@ -4507,8 +4098,10 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__236; -x_3 = l_Lean_Name_str___override(x_1, x_2); +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__237; +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; } } @@ -4516,31 +4109,28 @@ static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UI _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__18; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__236; -x_3 = l_Lean_Name_mkStr2(x_1, x_2); +x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__236; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__238; +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___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____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__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__239; -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; +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("evalPropStep", 12); +return x_1; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__241() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__239; -x_2 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_2, 0, x_1); +x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__240; +x_2 = l_String_toSubstring_x27(x_1); return x_2; } } @@ -4549,201 +4139,199 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__241; -x_3 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_3, 0, x_2); -lean_ctor_set(x_3, 1, x_1); +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__240; +x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__243() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__240; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__242; -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; +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__12; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__57; +x_3 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__58; +x_4 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__240; +x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); +return x_5; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__244() { _start: { -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("]", 1); -return x_1; +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__243; +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___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__245() { _start: { -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("mkApp", 5); -return x_1; +lean_object* x_1; lean_object* x_2; +x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__243; +x_2 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__246() { _start: { -lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__245; -x_2 = l_String_toSubstring_x27(x_1); -return x_2; +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__245; +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___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____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__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__245; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__248() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__18; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__245; -x_3 = l_Lean_Name_mkStr2(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__249() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__248; -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___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__250() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__248; -x_2 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____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__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__250; -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___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__252() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__249; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__251; +x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__244; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__246; 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___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__248() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("reduceBoolPred", 14); +return x_1; +} +} +static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__249() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__248; +x_2 = l_String_toSubstring_x27(x_1); +return x_2; +} +} +static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____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__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__248; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__251() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("command__Builtin_simproc__[_]_(_):=_", 36); +return x_1; +} +} +static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__252() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__12; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__13; +x_3 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__251; +x_4 = l_Lean_Name_mkStr3(x_1, x_2, x_3); +return x_4; +} +} static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__253() { _start: { lean_object* x_1; -x_1 = lean_mk_string_from_bytes("instOfNat", 9); +x_1 = lean_mk_string_from_bytes("builtin_simproc", 15); return x_1; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__254() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__253; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("[", 1); +return x_1; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__255() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__67; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__15; -x_3 = lean_array_push(x_1, x_2); -return x_3; +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("simp", 4); +return x_1; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__256() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; +lean_object* x_1; lean_object* x_2; x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__255; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__66; -x_3 = lean_array_push(x_1, x_2); -return x_3; +x_2 = l_String_toSubstring_x27(x_1); +return x_2; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__257() { _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___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__33; -x_3 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__256; -x_4 = lean_alloc_ctor(1, 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; +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__255; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__258() { _start: { -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("v.value.val", 11); -return x_1; +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__12; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__57; +x_3 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__58; +x_4 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__255; +x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); +return x_5; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__259() { _start: { -lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__258; -x_2 = l_String_toSubstring_x27(x_1); -return x_2; +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__258; +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___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__260() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__198; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__59; -x_3 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__215; -x_4 = l_Lean_Name_mkStr3(x_1, x_2, x_3); -return x_4; +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__259; +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___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__261() { _start: { lean_object* x_1; -x_1 = lean_mk_string_from_bytes("mkApp2", 6); +x_1 = lean_mk_string_from_bytes("seval", 5); return x_1; } } @@ -4769,11 +4357,9 @@ return x_3; static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__264() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__18; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__261; -x_3 = l_Lean_Name_mkStr2(x_1, x_2); -return x_3; +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("reduceAdd", 9); +return x_1; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__265() { @@ -4782,9 +4368,7 @@ _start: lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__264; -x_3 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_3, 0, x_2); -lean_ctor_set(x_3, 1, x_1); +x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } @@ -4792,68 +4376,62 @@ static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UI _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__264; -x_2 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_2, 0, x_1); +x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__265; +x_2 = lean_mk_syntax_ident(x_1); return x_2; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__267() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__266; -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; +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("typeAscription", 14); +return x_1; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__268() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__265; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__267; -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; +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__12; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__13; +x_3 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__33; +x_4 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__267; +x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); +return x_5; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__269() { _start: { lean_object* x_1; -x_1 = lean_mk_string_from_bytes("v.ofNatFn", 9); +x_1 = lean_mk_string_from_bytes("term_+_", 7); return x_1; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__270() { _start: { -lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__269; -x_2 = l_String_toSubstring_x27(x_1); -return x_2; +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__269; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__271() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__198; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__42; -x_3 = l_Lean_Name_mkStr2(x_1, x_2); -return x_3; +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("+", 1); +return x_1; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__272() { _start: { lean_object* x_1; -x_1 = lean_mk_string_from_bytes("attributes", 10); +x_1 = lean_mk_string_from_bytes("doubleQuotedName", 16); return x_1; } } @@ -4861,9 +4439,9 @@ static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UI _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__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__18; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__19; -x_3 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__47; +x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__12; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__13; +x_3 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__33; x_4 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__272; x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); return x_5; @@ -4873,7 +4451,7 @@ static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UI _start: { lean_object* x_1; -x_1 = lean_mk_string_from_bytes("@[", 2); +x_1 = lean_mk_string_from_bytes("`", 1); return x_1; } } @@ -4881,90 +4459,80 @@ static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UI _start: { lean_object* x_1; -x_1 = lean_mk_string_from_bytes("attrInstance", 12); +x_1 = lean_mk_string_from_bytes("HAdd.hAdd", 9); return x_1; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__276() { _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__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__18; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__19; -x_3 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__47; -x_4 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__275; -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__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__275; +x_2 = l_String_toSubstring_x27(x_1); +return x_2; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__277() { _start: { lean_object* x_1; -x_1 = lean_mk_string_from_bytes("attrKind", 8); +x_1 = lean_mk_string_from_bytes("HAdd", 4); return x_1; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__278() { _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__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__18; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__19; -x_3 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__47; -x_4 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__277; -x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); -return x_5; +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("hAdd", 4); +return x_1; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__279() { _start: { -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("Attr", 4); -return x_1; +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__277; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__278; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__280() { _start: { -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("simple", 6); -return x_1; +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__279; +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___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__281() { _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__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__18; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__19; -x_3 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__279; -x_4 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__280; -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; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__280; +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___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__282() { _start: { lean_object* x_1; -x_1 = lean_mk_string_from_bytes("inline", 6); +x_1 = lean_mk_string_from_bytes("num", 3); return x_1; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__283() { _start: { -lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__282; -x_2 = l_String_toSubstring_x27(x_1); -return x_2; -} -} -static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____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__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__282; @@ -4972,72 +4540,62 @@ x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } +static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__284() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("6", 1); +return x_1; +} +} static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__285() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__284; -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; +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("cdot", 4); +return x_1; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__286() { _start: { -lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__284; -x_2 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_2, 0, x_1); -return x_2; +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__12; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__13; +x_3 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__33; +x_4 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__285; +x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); +return x_5; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____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__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__286; -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; +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("·", 2); +return x_1; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__288() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__285; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__287; -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; +lean_object* x_1; lean_object* x_2; +x_1 = lean_unsigned_to_nat(11u); +x_2 = lean_mk_empty_array_with_capacity(x_1); +return x_2; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__289() { _start: { lean_object* x_1; -x_1 = lean_mk_string_from_bytes("reduceBin", 9); +x_1 = lean_mk_string_from_bytes("reduceMul", 9); return x_1; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__290() { _start: { -lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__289; -x_2 = l_String_toSubstring_x27(x_1); -return x_2; -} -} -static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__291() { -_start: -{ lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__289; @@ -5045,26 +4603,26 @@ x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } +static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__291() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__290; +x_2 = lean_mk_syntax_ident(x_1); +return x_2; +} +} static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__292() { _start: { lean_object* x_1; -x_1 = lean_mk_string_from_bytes("declName", 8); +x_1 = lean_mk_string_from_bytes("term_*_", 7); return x_1; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__293() { _start: { -lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__292; -x_2 = l_String_toSubstring_x27(x_1); -return x_2; -} -} -static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__294() { -_start: -{ lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__292; @@ -5072,11 +4630,19 @@ x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } +static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__294() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("*", 1); +return x_1; +} +} static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__295() { _start: { lean_object* x_1; -x_1 = lean_mk_string_from_bytes("Name", 4); +x_1 = lean_mk_string_from_bytes("HMul.hMul", 9); return x_1; } } @@ -5092,43 +4658,39 @@ return x_2; static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__297() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__295; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("HMul", 4); +return x_1; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__298() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__18; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__295; -x_3 = l_Lean_Name_mkStr2(x_1, x_2); -return x_3; +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("hMul", 4); +return x_1; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__299() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); +x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__297; x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__298; -x_3 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_3, 0, x_2); -lean_ctor_set(x_3, 1, x_1); +x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__300() { _start: { -lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__298; -x_2 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_2, 0, x_1); -return x_2; +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__299; +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___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__301() { @@ -5146,21 +4708,19 @@ return x_3; static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__302() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__299; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__301; -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; +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("reduceSub", 9); +return x_1; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__303() { _start: { -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("arity", 5); -return x_1; +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__302; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__304() { @@ -5168,100 +4728,89 @@ _start: { lean_object* x_1; lean_object* x_2; x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__303; -x_2 = l_String_toSubstring_x27(x_1); +x_2 = lean_mk_syntax_ident(x_1); return x_2; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____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__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__303; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("term_-_", 7); +return x_1; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__306() { _start: { -lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__157; -x_2 = l_String_toSubstring_x27(x_1); -return x_2; +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__305; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__307() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__157; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("-", 1); +return x_1; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__308() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__307; -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; +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("HSub.hSub", 9); +return x_1; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__309() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__307; -x_2 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_2, 0, x_1); +x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__308; +x_2 = l_String_toSubstring_x27(x_1); return x_2; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__310() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__309; -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; +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("HSub", 4); +return x_1; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__311() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__308; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__310; -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; +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("hSub", 4); +return x_1; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__312() { _start: { -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("op", 2); -return x_1; +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__310; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__311; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__313() { _start: { -lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__312; -x_2 = l_String_toSubstring_x27(x_1); -return x_2; +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__312; +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___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__314() { @@ -5269,8 +4818,10 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__312; -x_3 = l_Lean_Name_str___override(x_1, x_2); +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__313; +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; } } @@ -5278,50 +4829,40 @@ static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UI _start: { lean_object* x_1; -x_1 = lean_mk_string_from_bytes("arrow", 5); +x_1 = lean_mk_string_from_bytes("reduceDiv", 9); return x_1; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____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__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__18; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__19; -x_3 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__47; -x_4 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__315; -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; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__315; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__317() { _start: { -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("→", 3); -return x_1; +lean_object* x_1; lean_object* x_2; +x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__316; +x_2 = lean_mk_syntax_ident(x_1); +return x_2; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__318() { _start: { lean_object* x_1; -x_1 = lean_mk_string_from_bytes("Step", 4); +x_1 = lean_mk_string_from_bytes("term_/_", 7); return x_1; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__319() { _start: { -lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__318; -x_2 = l_String_toSubstring_x27(x_1); -return x_2; -} -} -static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__320() { -_start: -{ lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__318; @@ -5329,182 +4870,175 @@ x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } +static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__320() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("/", 1); +return x_1; +} +} static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__321() { _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__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__18; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__90; -x_3 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__91; -x_4 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__318; -x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); -return x_5; +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("HDiv.hDiv", 9); +return x_1; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____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__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__321; -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; +lean_object* x_1; lean_object* x_2; +x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__321; +x_2 = l_String_toSubstring_x27(x_1); +return x_2; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__323() { _start: { -lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__321; -x_2 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_2, 0, x_1); -return x_2; +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("HDiv", 4); +return x_1; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__324() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__323; -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; +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("hDiv", 4); +return x_1; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__325() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__322; +x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__323; x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__324; -x_3 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_3, 0, x_1); -lean_ctor_set(x_3, 1, x_2); +x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__326() { _start: { -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("doUnless", 8); -return x_1; +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__325; +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___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__327() { _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__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__18; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__19; -x_3 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__47; -x_4 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__326; -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; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__326; +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___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__328() { _start: { lean_object* x_1; -x_1 = lean_mk_string_from_bytes("unless", 6); +x_1 = lean_mk_string_from_bytes("reduceMod", 9); return x_1; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__329() { _start: { -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("dotIdent", 8); -return x_1; +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__328; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__330() { _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__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__18; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__19; -x_3 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__47; -x_4 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__329; -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__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__329; +x_2 = lean_mk_syntax_ident(x_1); +return x_2; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__331() { _start: { lean_object* x_1; -x_1 = lean_mk_string_from_bytes(".", 1); +x_1 = lean_mk_string_from_bytes("term_%_", 7); return x_1; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__332() { _start: { -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("continue", 8); -return x_1; +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__331; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__333() { _start: { -lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__332; -x_2 = l_String_toSubstring_x27(x_1); -return x_2; +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("%", 1); +return x_1; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__334() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__332; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("HMod.hMod", 9); +return x_1; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__335() { _start: { -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("doPatDecl", 9); -return x_1; +lean_object* x_1; lean_object* x_2; +x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__334; +x_2 = l_String_toSubstring_x27(x_1); +return x_2; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__336() { _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__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__18; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__19; -x_3 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__47; -x_4 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__335; -x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); -return x_5; +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("HMod", 4); +return x_1; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__337() { _start: { lean_object* x_1; -x_1 = lean_mk_string_from_bytes("some", 4); +x_1 = lean_mk_string_from_bytes("hMod", 4); return x_1; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__338() { _start: { -lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__337; -x_2 = l_String_toSubstring_x27(x_1); -return x_2; +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__336; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__337; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__339() { @@ -5512,27 +5046,31 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__337; -x_3 = l_Lean_Name_str___override(x_1, x_2); +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__338; +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___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__340() { _start: { -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("Option", 6); -return x_1; +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__339; +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___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__341() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__340; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__337; -x_3 = l_Lean_Name_mkStr2(x_1, x_2); -return x_3; +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("reduceLT", 8); +return x_1; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__342() { @@ -5541,44 +5079,30 @@ _start: lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__341; -x_3 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_3, 0, x_2); -lean_ctor_set(x_3, 1, x_1); +x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__343() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__342; -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; +lean_object* x_1; lean_object* x_2; +x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__342; +x_2 = lean_mk_syntax_ident(x_1); +return x_2; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__344() { _start: { lean_object* x_1; -x_1 = lean_mk_string_from_bytes("n", 1); +x_1 = lean_mk_string_from_bytes("term_<_", 7); return x_1; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__345() { _start: { -lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__344; -x_2 = l_String_toSubstring_x27(x_1); -return x_2; -} -} -static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__346() { -_start: -{ lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__344; @@ -5586,65 +5110,78 @@ x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } +static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__346() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("<", 1); +return x_1; +} +} static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__347() { _start: { lean_object* x_1; -x_1 = lean_mk_string_from_bytes("|", 1); +x_1 = lean_mk_string_from_bytes("LT.lt", 5); return x_1; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__348() { _start: { -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("m", 1); -return x_1; +lean_object* x_1; lean_object* x_2; +x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__347; +x_2 = l_String_toSubstring_x27(x_1); +return x_2; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__349() { _start: { -lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__348; -x_2 = l_String_toSubstring_x27(x_1); -return x_2; +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("LT", 2); +return x_1; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____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__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__348; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("lt", 2); +return x_1; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__351() { _start: { -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("e.appArg!", 9); -return x_1; +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__349; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__350; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__352() { _start: { -lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__351; -x_2 = l_String_toSubstring_x27(x_1); -return x_2; +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__351; +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___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__353() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__74; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__149; -x_3 = l_Lean_Name_mkStr2(x_1, x_2); +x_1 = lean_box(0); +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__352; +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; } } @@ -5652,17 +5189,16 @@ static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UI _start: { lean_object* x_1; -x_1 = lean_mk_string_from_bytes("r", 1); +x_1 = lean_mk_string_from_bytes("4", 1); return x_1; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__355() { _start: { -lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__354; -x_2 = l_String_toSubstring_x27(x_1); -return x_2; +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("reduceLE", 8); +return x_1; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__356() { @@ -5670,7 +5206,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__354; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__355; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } @@ -5678,43 +5214,43 @@ return x_3; static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__357() { _start: { -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("with", 4); -return x_1; +lean_object* x_1; lean_object* x_2; +x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__356; +x_2 = lean_mk_syntax_ident(x_1); +return x_2; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__358() { _start: { lean_object* x_1; -x_1 = lean_mk_string_from_bytes("n.value", 7); +x_1 = lean_mk_string_from_bytes("term_≤_", 9); return x_1; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__359() { _start: { -lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__358; -x_2 = l_String_toSubstring_x27(x_1); -return x_2; +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__358; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__360() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__344; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__59; -x_3 = l_Lean_Name_mkStr2(x_1, x_2); -return x_3; +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("≤", 3); +return x_1; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__361() { _start: { lean_object* x_1; -x_1 = lean_mk_string_from_bytes("m.value", 7); +x_1 = lean_mk_string_from_bytes("LE.le", 5); return x_1; } } @@ -5730,28 +5266,27 @@ return x_2; static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__363() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__348; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__59; -x_3 = l_Lean_Name_mkStr2(x_1, x_2); -return x_3; +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("LE", 2); +return x_1; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__364() { _start: { lean_object* x_1; -x_1 = lean_mk_string_from_bytes("done", 4); +x_1 = lean_mk_string_from_bytes("le", 2); return x_1; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__365() { _start: { -lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__364; -x_2 = l_String_toSubstring_x27(x_1); -return x_2; +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__363; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__364; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__366() { @@ -5759,26 +5294,31 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__364; -x_3 = l_Lean_Name_str___override(x_1, x_2); +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__365; +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___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__367() { _start: { -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("expr", 4); -return x_1; +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__366; +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___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__368() { _start: { -lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__367; -x_2 = l_String_toSubstring_x27(x_1); -return x_2; +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("reduceGT", 8); +return x_1; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__369() { @@ -5786,7 +5326,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__367; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__368; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } @@ -5794,18 +5334,18 @@ return x_3; static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__370() { _start: { -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("reduceBinPred", 13); -return x_1; +lean_object* x_1; lean_object* x_2; +x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__369; +x_2 = lean_mk_syntax_ident(x_1); +return x_2; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__371() { _start: { -lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__370; -x_2 = l_String_toSubstring_x27(x_1); -return x_2; +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("term_>_", 7); +return x_1; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__372() { @@ -5813,7 +5353,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__370; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__371; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } @@ -5822,60 +5362,50 @@ static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UI _start: { lean_object* x_1; -x_1 = lean_mk_string_from_bytes("Bool", 4); +x_1 = lean_mk_string_from_bytes(">", 1); return x_1; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__374() { _start: { -lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__373; -x_2 = l_String_toSubstring_x27(x_1); -return x_2; +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("GT.gt", 5); +return x_1; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____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__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__373; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; +lean_object* x_1; lean_object* x_2; +x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__374; +x_2 = l_String_toSubstring_x27(x_1); +return x_2; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__376() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__375; -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; +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("GT", 2); +return x_1; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__377() { _start: { -lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__375; -x_2 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_2, 0, x_1); -return x_2; +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("gt", 2); +return x_1; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__378() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); +x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__376; x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__377; -x_3 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_3, 0, x_2); -lean_ctor_set(x_3, 1, x_1); +x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } @@ -5883,29 +5413,32 @@ static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UI _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__376; +x_1 = lean_box(0); x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__378; x_3 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_3, 0, x_1); -lean_ctor_set(x_3, 1, x_2); +lean_ctor_set(x_3, 0, x_2); +lean_ctor_set(x_3, 1, x_1); return x_3; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__380() { _start: { -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("evalPropStep", 12); -return x_1; +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__379; +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___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__381() { _start: { -lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__380; -x_2 = l_String_toSubstring_x27(x_1); -return x_2; +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("reduceGE", 8); +return x_1; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__382() { @@ -5913,7 +5446,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__380; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__381; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } @@ -5921,112 +5454,102 @@ return x_3; static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__383() { _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__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__18; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__90; -x_3 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__91; -x_4 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__380; -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__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__382; +x_2 = lean_mk_syntax_ident(x_1); +return x_2; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__384() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__383; -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; +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("term_≥_", 9); +return x_1; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__385() { _start: { -lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__383; -x_2 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_2, 0, x_1); -return x_2; +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__384; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__386() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__385; -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; +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("≥", 3); +return x_1; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__387() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__384; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__386; -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; +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("GE.ge", 5); +return x_1; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__388() { _start: { -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("reduceBoolPred", 14); -return x_1; +lean_object* x_1; lean_object* x_2; +x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__387; +x_2 = l_String_toSubstring_x27(x_1); +return x_2; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__389() { _start: { -lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__388; -x_2 = l_String_toSubstring_x27(x_1); -return x_2; +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("GE", 2); +return x_1; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____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__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__388; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("ge", 2); +return x_1; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__391() { _start: { -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("Lean.toExpr", 11); -return x_1; +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__389; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__390; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__392() { _start: { -lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__391; -x_2 = l_String_toSubstring_x27(x_1); -return x_2; +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__391; +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___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__393() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__18; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__13; -x_3 = l_Lean_Name_mkStr2(x_1, x_2); +x_1 = lean_box(0); +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__392; +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; } } @@ -6034,19 +5557,17 @@ static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UI _start: { lean_object* x_1; -x_1 = lean_mk_string_from_bytes("ToExpr", 6); +x_1 = lean_mk_string_from_bytes("reduceEq", 8); return x_1; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__395() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__18; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__394; -x_3 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__13; -x_4 = l_Lean_Name_mkStr3(x_1, x_2, x_3); -return x_4; +lean_object* x_1; lean_object* x_2; +x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__394; +x_2 = l_String_toSubstring_x27(x_1); +return x_2; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__396() { @@ -6054,67 +5575,62 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__395; -x_3 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_3, 0, x_2); -lean_ctor_set(x_3, 1, x_1); +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__394; +x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____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__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__396; -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; +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("term_=_", 7); +return x_1; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__398() { _start: { -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("command__Builtin_simproc__[_]_(_):=_", 36); -return x_1; +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__397; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__399() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__18; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__19; -x_3 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__398; -x_4 = l_Lean_Name_mkStr3(x_1, x_2, x_3); -return x_4; +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("=", 1); +return x_1; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__400() { _start: { lean_object* x_1; -x_1 = lean_mk_string_from_bytes("builtin_simproc", 15); +x_1 = lean_mk_string_from_bytes("Eq", 2); return x_1; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__401() { _start: { -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("simp", 4); -return x_1; +lean_object* x_1; lean_object* x_2; +x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__400; +x_2 = l_String_toSubstring_x27(x_1); +return x_2; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__402() { _start: { -lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__401; -x_2 = l_String_toSubstring_x27(x_1); -return x_2; +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__400; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__403() { @@ -6122,21 +5638,21 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__401; -x_3 = l_Lean_Name_str___override(x_1, x_2); +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__402; +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___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__404() { _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__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__18; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__90; -x_3 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__91; -x_4 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__401; -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__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__402; +x_2 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__405() { @@ -6155,11 +5671,11 @@ static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UI _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); +x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__403; x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__405; x_3 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_3, 0, x_2); -lean_ctor_set(x_3, 1, x_1); +lean_ctor_set(x_3, 0, x_1); +lean_ctor_set(x_3, 1, x_2); return x_3; } } @@ -6167,82 +5683,78 @@ static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UI _start: { lean_object* x_1; -x_1 = lean_mk_string_from_bytes("seval", 5); +x_1 = lean_mk_string_from_bytes("3", 1); return x_1; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__408() { _start: { -lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__407; -x_2 = l_String_toSubstring_x27(x_1); -return x_2; +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("reduceNe", 8); +return x_1; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____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__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__407; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; +lean_object* x_1; lean_object* x_2; +x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__408; +x_2 = l_String_toSubstring_x27(x_1); +return x_2; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__410() { _start: { -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("reduceAdd", 9); -return x_1; +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__408; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__411() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__410; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("term_≠_", 9); +return x_1; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__412() { _start: { -lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__411; -x_2 = lean_mk_syntax_ident(x_1); -return x_2; +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__411; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__413() { _start: { lean_object* x_1; -x_1 = lean_mk_string_from_bytes("typeAscription", 14); +x_1 = lean_mk_string_from_bytes("≠", 3); return x_1; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__414() { _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__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__18; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__19; -x_3 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__47; -x_4 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__413; -x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); -return x_5; +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("Ne", 2); +return x_1; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__415() { _start: { -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("term_+_", 7); -return x_1; +lean_object* x_1; lean_object* x_2; +x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__414; +x_2 = l_String_toSubstring_x27(x_1); +return x_2; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__416() { @@ -6250,7 +5762,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__415; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__414; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } @@ -6258,44 +5770,54 @@ return x_3; static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__417() { _start: { -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("hole", 4); -return x_1; +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__416; +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___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__418() { _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__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__18; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__19; -x_3 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__47; -x_4 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__417; -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__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__416; +x_2 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__419() { _start: { -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("_", 1); -return x_1; +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__418; +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___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__420() { _start: { -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("+", 1); -return x_1; +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__417; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__419; +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___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__421() { _start: { lean_object* x_1; -x_1 = lean_mk_string_from_bytes("HAdd.hAdd", 9); +x_1 = lean_mk_string_from_bytes("reduceBEq", 9); return x_1; } } @@ -6311,16 +5833,18 @@ return x_2; static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__423() { _start: { -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("HAdd", 4); -return x_1; +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__421; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__424() { _start: { lean_object* x_1; -x_1 = lean_mk_string_from_bytes("hAdd", 4); +x_1 = lean_mk_string_from_bytes("term_==_", 8); return x_1; } } @@ -6328,97 +5852,93 @@ static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UI _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__423; +x_1 = lean_box(0); x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__424; -x_3 = l_Lean_Name_mkStr2(x_1, x_2); +x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__426() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__425; -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; +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("==", 2); +return x_1; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__427() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__426; -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; +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("BEq.beq", 7); +return x_1; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__428() { _start: { -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("6", 1); -return x_1; +lean_object* x_1; lean_object* x_2; +x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__427; +x_2 = l_String_toSubstring_x27(x_1); +return x_2; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__429() { _start: { lean_object* x_1; -x_1 = lean_mk_string_from_bytes("cdot", 4); +x_1 = lean_mk_string_from_bytes("BEq", 3); return x_1; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__430() { _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__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__18; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__19; -x_3 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__47; -x_4 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__429; -x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); -return x_5; +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("beq", 3); +return x_1; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__431() { _start: { -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("·", 2); -return x_1; +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__429; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__430; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__432() { _start: { -lean_object* x_1; lean_object* x_2; -x_1 = lean_unsigned_to_nat(11u); -x_2 = lean_mk_empty_array_with_capacity(x_1); -return x_2; +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__431; +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___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__433() { _start: { -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("reduceMul", 9); -return x_1; +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__432; +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___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__434() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__433; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("reduceBNe", 9); +return x_1; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__435() { @@ -6426,89 +5946,93 @@ _start: { lean_object* x_1; lean_object* x_2; x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__434; -x_2 = lean_mk_syntax_ident(x_1); +x_2 = l_String_toSubstring_x27(x_1); return x_2; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__436() { _start: { -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("term_*_", 7); -return x_1; +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__434; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__437() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__436; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("term_!=_", 8); +return x_1; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__438() { _start: { -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("*", 1); -return x_1; +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__437; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__439() { _start: { lean_object* x_1; -x_1 = lean_mk_string_from_bytes("HMul.hMul", 9); +x_1 = lean_mk_string_from_bytes("!=", 2); return x_1; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__440() { _start: { -lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__439; -x_2 = l_String_toSubstring_x27(x_1); -return x_2; +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("bne", 3); +return x_1; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__441() { _start: { -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("HMul", 4); -return x_1; +lean_object* x_1; lean_object* x_2; +x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__440; +x_2 = l_String_toSubstring_x27(x_1); +return x_2; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__442() { _start: { -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("hMul", 4); -return x_1; +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__440; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__443() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__441; +x_1 = lean_box(0); x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__442; -x_3 = l_Lean_Name_mkStr2(x_1, x_2); +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___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__444() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__443; -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; +lean_object* x_1; lean_object* x_2; +x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__442; +x_2 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__445() { @@ -6526,78 +6050,87 @@ return x_3; static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__446() { _start: { -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("reduceSub", 9); -return x_1; +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__443; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__445; +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___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__447() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__446; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("reduceOfNatCore", 15); +return x_1; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__448() { _start: { -lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__447; -x_2 = lean_mk_syntax_ident(x_1); -return x_2; +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__447; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__449() { _start: { -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("term_-_", 7); -return x_1; +lean_object* x_1; lean_object* x_2; +x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__448; +x_2 = lean_mk_syntax_ident(x_1); +return x_2; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__450() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__449; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("fun", 3); +return x_1; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__451() { _start: { -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("-", 1); -return x_1; +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__12; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__13; +x_3 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__33; +x_4 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__450; +x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); +return x_5; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__452() { _start: { lean_object* x_1; -x_1 = lean_mk_string_from_bytes("HSub.hSub", 9); +x_1 = lean_mk_string_from_bytes("basicFun", 8); return x_1; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__453() { _start: { -lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__452; -x_2 = l_String_toSubstring_x27(x_1); -return x_2; +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__12; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__13; +x_3 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__33; +x_4 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__452; +x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); +return x_5; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__454() { _start: { lean_object* x_1; -x_1 = lean_mk_string_from_bytes("HSub", 4); +x_1 = lean_mk_string_from_bytes("=>", 2); return x_1; } } @@ -6605,30 +6138,25 @@ static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UI _start: { lean_object* x_1; -x_1 = lean_mk_string_from_bytes("hSub", 4); +x_1 = lean_mk_string_from_bytes("2", 1); return x_1; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__456() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__454; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__455; -x_3 = l_Lean_Name_mkStr2(x_1, x_2); -return x_3; +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("value", 5); +return x_1; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__457() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__456; -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; +lean_object* x_1; lean_object* x_2; +x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__456; +x_2 = l_String_toSubstring_x27(x_1); +return x_2; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__458() { @@ -6636,10 +6164,8 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__457; -x_3 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_3, 0, x_2); -lean_ctor_set(x_3, 1, x_1); +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__456; +x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } @@ -6647,35 +6173,35 @@ static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UI _start: { lean_object* x_1; -x_1 = lean_mk_string_from_bytes("reduceDiv", 9); +x_1 = lean_mk_string_from_bytes("Nat.fromExpr\?", 13); return x_1; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____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__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__459; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; +lean_object* x_1; lean_object* x_2; +x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__459; +x_2 = l_String_toSubstring_x27(x_1); +return x_2; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__461() { _start: { -lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__460; -x_2 = lean_mk_syntax_ident(x_1); -return x_2; +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("fromExpr\?", 9); +return x_1; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__462() { _start: { -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("term_/_", 7); -return x_1; +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__162; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__461; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__463() { @@ -6684,1329 +6210,134 @@ _start: lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__462; -x_3 = l_Lean_Name_str___override(x_1, x_2); +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___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__464() { _start: { -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("/", 1); -return x_1; +lean_object* x_1; lean_object* x_2; +x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__462; +x_2 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__465() { _start: { -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("HDiv.hDiv", 9); -return x_1; +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__464; +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___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__466() { _start: { -lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__465; -x_2 = l_String_toSubstring_x27(x_1); -return x_2; +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__463; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__465; +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___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__467() { _start: { lean_object* x_1; -x_1 = lean_mk_string_from_bytes("HDiv", 4); +x_1 = lean_mk_string_from_bytes("doLet", 5); return x_1; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__468() { _start: { -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("hDiv", 4); -return x_1; +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__12; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__13; +x_3 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__33; +x_4 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__467; +x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); +return x_5; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__469() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__467; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__468; -x_3 = l_Lean_Name_mkStr2(x_1, x_2); -return x_3; +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("letDecl", 7); +return x_1; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____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__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__469; -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; +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__12; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__13; +x_3 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__33; +x_4 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__469; +x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); +return x_5; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__471() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__470; -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; +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("letIdDecl", 9); +return x_1; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__472() { _start: { -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("reduceMod", 9); -return x_1; +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__12; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__13; +x_3 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__33; +x_4 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__471; +x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); +return x_5; } } static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__473() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__472; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__474() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__473; -x_2 = lean_mk_syntax_ident(x_1); -return x_2; -} -} -static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__475() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("term_%_", 7); -return x_1; -} -} -static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__476() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__475; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__477() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("%", 1); -return x_1; -} -} -static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__478() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("HMod.hMod", 9); -return x_1; -} -} -static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__479() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__478; -x_2 = l_String_toSubstring_x27(x_1); -return x_2; -} -} -static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__480() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("HMod", 4); -return x_1; -} -} -static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__481() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("hMod", 4); -return x_1; -} -} -static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__482() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__480; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__481; -x_3 = l_Lean_Name_mkStr2(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__483() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__482; -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___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__484() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__483; -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___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__485() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("reduceLT", 8); -return x_1; -} -} -static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__486() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__485; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__487() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__486; -x_2 = lean_mk_syntax_ident(x_1); -return x_2; -} -} -static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__488() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("term_<_", 7); -return x_1; -} -} -static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__489() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__488; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__490() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("<", 1); -return x_1; -} -} -static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__491() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("LT.lt", 5); -return x_1; -} -} -static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__492() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__491; -x_2 = l_String_toSubstring_x27(x_1); -return x_2; -} -} -static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__493() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("LT", 2); -return x_1; -} -} -static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__494() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("lt", 2); -return x_1; -} -} -static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__495() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__493; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__494; -x_3 = l_Lean_Name_mkStr2(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__496() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__495; -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___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__497() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__496; -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___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__498() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("4", 1); -return x_1; -} -} -static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__499() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("reduceLE", 8); -return x_1; -} -} -static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__500() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__499; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__501() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__500; -x_2 = lean_mk_syntax_ident(x_1); -return x_2; -} -} -static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__502() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("term_≤_", 9); -return x_1; -} -} -static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____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__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__502; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__504() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("≤", 3); -return x_1; -} -} -static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__505() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("LE.le", 5); -return x_1; -} -} -static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__506() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__505; -x_2 = l_String_toSubstring_x27(x_1); -return x_2; -} -} -static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__507() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("LE", 2); -return x_1; -} -} -static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__508() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("le", 2); -return x_1; -} -} -static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__509() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__507; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__508; -x_3 = l_Lean_Name_mkStr2(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__510() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__509; -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___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__511() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__510; -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___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__512() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("reduceGT", 8); -return x_1; -} -} -static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__513() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__512; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__514() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__513; -x_2 = lean_mk_syntax_ident(x_1); -return x_2; -} -} -static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__515() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("term_>_", 7); -return x_1; -} -} -static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__516() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__515; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__517() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes(">", 1); -return x_1; -} -} -static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__518() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("GT.gt", 5); -return x_1; -} -} -static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__519() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__518; -x_2 = l_String_toSubstring_x27(x_1); -return x_2; -} -} -static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__520() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("GT", 2); -return x_1; -} -} -static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__521() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("gt", 2); -return x_1; -} -} -static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__522() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__520; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__521; -x_3 = l_Lean_Name_mkStr2(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__523() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__522; -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___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__524() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__523; -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___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__525() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("reduceGE", 8); -return x_1; -} -} -static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__526() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__525; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__527() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__526; -x_2 = lean_mk_syntax_ident(x_1); -return x_2; -} -} -static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__528() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("term_≥_", 9); -return x_1; -} -} -static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__529() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__528; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__530() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("≥", 3); -return x_1; -} -} -static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__531() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("GE.ge", 5); -return x_1; -} -} -static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__532() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__531; -x_2 = l_String_toSubstring_x27(x_1); -return x_2; -} -} -static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__533() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("GE", 2); -return x_1; -} -} -static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__534() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("ge", 2); -return x_1; -} -} -static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__535() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__533; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__534; -x_3 = l_Lean_Name_mkStr2(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__536() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__535; -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___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__537() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__536; -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___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__538() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("reduceEq", 8); -return x_1; -} -} -static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__539() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__538; -x_2 = l_String_toSubstring_x27(x_1); -return x_2; -} -} -static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__540() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__538; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__541() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("term_=_", 7); -return x_1; -} -} -static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__542() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__541; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__543() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("=", 1); -return x_1; -} -} -static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__544() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("Eq", 2); -return x_1; -} -} -static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__545() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__544; -x_2 = l_String_toSubstring_x27(x_1); -return x_2; -} -} -static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__546() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__544; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____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__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__546; -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___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__548() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__546; -x_2 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____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__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__548; -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___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__550() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__547; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__549; -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___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__551() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("reduceNe", 8); -return x_1; -} -} -static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__552() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__551; -x_2 = l_String_toSubstring_x27(x_1); -return x_2; -} -} -static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__553() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__551; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__554() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("term_≠_", 9); -return x_1; -} -} -static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__555() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__554; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__556() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("≠", 3); -return x_1; -} -} -static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__557() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("Ne", 2); -return x_1; -} -} -static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__558() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__557; -x_2 = l_String_toSubstring_x27(x_1); -return x_2; -} -} -static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__559() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__557; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__560() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__559; -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___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__561() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__559; -x_2 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__562() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__561; -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___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__563() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__560; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__562; -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___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__564() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("reduceBEq", 9); -return x_1; -} -} -static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__565() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__564; -x_2 = l_String_toSubstring_x27(x_1); -return x_2; -} -} -static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__566() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__564; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__567() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("term_==_", 8); -return x_1; -} -} -static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__568() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__567; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__569() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("==", 2); -return x_1; -} -} -static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__570() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("BEq.beq", 7); -return x_1; -} -} -static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__571() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__570; -x_2 = l_String_toSubstring_x27(x_1); -return x_2; -} -} -static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__572() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("BEq", 3); -return x_1; -} -} -static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__573() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("beq", 3); -return x_1; -} -} -static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__574() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__572; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__573; -x_3 = l_Lean_Name_mkStr2(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____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__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__574; -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___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__576() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__575; -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___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__577() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("reduceBNe", 9); -return x_1; -} -} -static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__578() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__577; -x_2 = l_String_toSubstring_x27(x_1); -return x_2; -} -} -static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__579() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__577; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__580() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("term_!=_", 8); -return x_1; -} -} -static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____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__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__580; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__582() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("!=", 2); -return x_1; -} -} -static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__583() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("bne", 3); -return x_1; -} -} -static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__584() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__583; -x_2 = l_String_toSubstring_x27(x_1); -return x_2; -} -} -static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__585() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__583; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__586() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__585; -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___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__587() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__585; -x_2 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__588() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__587; -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___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__589() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__586; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__588; -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___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__590() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("reduceOfNatCore", 15); -return x_1; -} -} -static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____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__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__590; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__592() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__591; -x_2 = lean_mk_syntax_ident(x_1); -return x_2; -} -} -static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__593() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("fun", 3); -return x_1; -} -} -static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__594() { -_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__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__18; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__19; -x_3 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__47; -x_4 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__593; -x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); -return x_5; -} -} -static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__595() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("basicFun", 8); -return x_1; -} -} -static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__596() { -_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__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__18; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__19; -x_3 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__47; -x_4 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__595; -x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); -return x_5; -} -} -static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__597() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("=>", 2); -return x_1; -} -} -static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__598() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("2", 1); -return x_1; -} -} -static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__599() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("eNew", 4); -return x_1; -} -} -static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__600() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__599; -x_2 = l_String_toSubstring_x27(x_1); -return x_2; -} -} -static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__601() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__599; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__602() { -_start: -{ lean_object* x_1; x_1 = lean_mk_string_from_bytes("reduceToNat", 11); return x_1; } } -static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__603() { +static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__474() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__602; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__473; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__604() { +static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__475() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__603; +x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__474; x_2 = lean_mk_syntax_ident(x_1); return x_2; } } -static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__605() { +static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__476() { _start: { lean_object* x_1; @@ -8014,117 +6345,34 @@ x_1 = lean_mk_string_from_bytes("1", 1); return x_1; } } -static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__606() { +static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__477() { _start: { lean_object* x_1; -x_1 = lean_mk_string_from_bytes("v.value", 7); +x_1 = lean_mk_string_from_bytes("v", 1); return x_1; } } -static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__607() { +static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__478() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__606; +x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__477; x_2 = l_String_toSubstring_x27(x_1); return x_2; } } -static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__608() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__198; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__59; -x_3 = l_Lean_Name_mkStr2(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__609() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("mkNatLit", 8); -return x_1; -} -} -static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__610() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__609; -x_2 = l_String_toSubstring_x27(x_1); -return x_2; -} -} -static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__611() { +static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__479() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__609; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__477; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__612() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__18; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__609; -x_3 = l_Lean_Name_mkStr2(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__613() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__612; -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___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__614() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__612; -x_2 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__615() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__614; -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___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__616() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__613; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__615; -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___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__617() { +static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__480() { _start: { lean_object* x_1; @@ -8132,19 +6380,19 @@ x_1 = lean_mk_string_from_bytes("docComment", 10); return x_1; } } -static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__618() { +static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__481() { _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__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__18; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__19; -x_3 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__20; -x_4 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__617; +x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__12; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__13; +x_3 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__14; +x_4 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__480; x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); return x_5; } } -static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__619() { +static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__482() { _start: { lean_object* x_1; @@ -8152,7 +6400,7 @@ x_1 = lean_mk_string_from_bytes("/--", 3); return x_1; } } -static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__620() { +static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__483() { _start: { lean_object* x_1; @@ -8160,7 +6408,7 @@ x_1 = lean_mk_string_from_bytes("Return `.done` for UInt values. We don't want t return x_1; } } -static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__621() { +static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__484() { _start: { lean_object* x_1; @@ -8168,26 +6416,85 @@ x_1 = lean_mk_string_from_bytes("isValue", 7); return x_1; } } -static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__622() { +static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__485() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__621; +x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__484; x_2 = l_String_toSubstring_x27(x_1); return x_2; } } -static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__623() { +static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__486() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__621; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__484; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__624() { +static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__487() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("OfNat.ofNat", 11); +return x_1; +} +} +static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__488() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__487; +x_2 = l_String_toSubstring_x27(x_1); +return x_2; +} +} +static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__489() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("OfNat", 5); +return x_1; +} +} +static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__490() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__489; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__1; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__491() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__490; +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___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__492() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__491; +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___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__493() { _start: { lean_object* x_1; @@ -8195,28 +6502,28 @@ x_1 = lean_mk_string_from_bytes("end", 3); return x_1; } } -static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__625() { +static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__494() { _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__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__18; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__19; -x_3 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__20; -x_4 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__624; +x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__12; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__13; +x_3 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__14; +x_4 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__493; x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); return x_5; } } -static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__626() { +static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__495() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = lean_unsigned_to_nat(25u); +x_1 = lean_unsigned_to_nat(22u); x_2 = lean_mk_empty_array_with_capacity(x_1); return x_2; } } -static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__627() { +static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__496() { _start: { lean_object* x_1; @@ -8224,19 +6531,19 @@ x_1 = lean_mk_string_from_bytes("quotedName", 10); return x_1; } } -static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__628() { +static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__497() { _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__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__18; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__19; -x_3 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__47; -x_4 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__627; +x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__12; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__13; +x_3 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__33; +x_4 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__496; x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); return x_5; } } -static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__629() { +static lean_object* _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__498() { _start: { lean_object* x_1; lean_object* x_2; @@ -8265,7 +6572,7 @@ return x_7; } else { -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; uint8_t 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_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; uint8_t 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; x_8 = lean_unsigned_to_nat(1u); x_9 = l_Lean_Syntax_getArg(x_1, x_8); lean_dec(x_1); @@ -8290,482 +6597,485 @@ lean_inc(x_22); x_23 = lean_ctor_get(x_2, 1); lean_inc(x_23); lean_dec(x_2); -x_24 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__21; +x_24 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__15; lean_inc(x_21); x_25 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_25, 0, x_21); lean_ctor_set(x_25, 1, x_24); -x_26 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__22; +x_26 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__16; lean_inc(x_9); lean_inc(x_21); x_27 = l_Lean_Syntax_node2(x_21, x_26, x_25, x_9); -x_28 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__17; -x_29 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__27; +x_28 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__11; +x_29 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__21; lean_inc(x_21); x_30 = lean_alloc_ctor(1, 3, 0); lean_ctor_set(x_30, 0, x_21); lean_ctor_set(x_30, 1, x_28); lean_ctor_set(x_30, 2, x_29); -x_31 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__26; +x_31 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__20; lean_inc_n(x_30, 6); lean_inc(x_21); x_32 = l_Lean_Syntax_node6(x_21, x_31, x_30, x_30, x_30, x_30, x_30, x_30); -x_33 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__28; +x_33 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__22; lean_inc(x_21); x_34 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_34, 0, x_21); lean_ctor_set(x_34, 1, x_33); -x_35 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__31; +x_35 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__36; lean_inc(x_21); -x_36 = l_Lean_Syntax_node1(x_21, x_35, x_34); -x_37 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__36; +x_36 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_36, 0, x_21); +lean_ctor_set(x_36, 1, x_35); +x_37 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__39; lean_inc(x_22); lean_inc(x_23); x_38 = l_Lean_addMacroScope(x_23, x_37, x_22); x_39 = lean_box(0); -x_40 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__35; +x_40 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__38; lean_inc(x_21); x_41 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_41, 0, x_21); lean_ctor_set(x_41, 1, x_40); lean_ctor_set(x_41, 2, x_38); lean_ctor_set(x_41, 3, x_39); -x_42 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__33; -lean_inc(x_30); lean_inc(x_41); lean_inc(x_21); -x_43 = l_Lean_Syntax_node2(x_21, x_42, x_41, x_30); -x_44 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__37; +x_42 = l_Lean_Syntax_node1(x_21, x_28, x_41); +x_43 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__40; lean_inc(x_21); -x_45 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_45, 0, x_21); -lean_ctor_set(x_45, 1, x_44); -x_46 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__44; +x_44 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_44, 0, x_21); +lean_ctor_set(x_44, 1, x_43); +x_45 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__43; lean_inc(x_22); lean_inc(x_23); -x_47 = l_Lean_addMacroScope(x_23, x_46, x_22); -x_48 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__43; +x_46 = l_Lean_addMacroScope(x_23, x_45, x_22); +x_47 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__42; +x_48 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__48; lean_inc(x_21); x_49 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_49, 0, x_21); -lean_ctor_set(x_49, 1, x_48); -lean_ctor_set(x_49, 2, x_47); -lean_ctor_set(x_49, 3, x_39); -x_50 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__50; +lean_ctor_set(x_49, 1, x_47); +lean_ctor_set(x_49, 2, x_46); +lean_ctor_set(x_49, 3, x_48); +lean_inc(x_44); lean_inc(x_21); -x_51 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_51, 0, x_21); -lean_ctor_set(x_51, 1, x_50); -x_52 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__53; +x_50 = l_Lean_Syntax_node2(x_21, x_28, x_44, x_49); +x_51 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__49; +lean_inc(x_21); +x_52 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_52, 0, x_21); +lean_ctor_set(x_52, 1, x_51); +x_53 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__35; +lean_inc(x_52); +lean_inc(x_30); +lean_inc(x_42); +lean_inc(x_36); +lean_inc(x_21); +x_54 = l_Lean_Syntax_node5(x_21, x_53, x_36, x_42, x_50, x_30, x_52); +lean_inc(x_54); +lean_inc(x_21); +x_55 = l_Lean_Syntax_node1(x_21, x_28, x_54); +x_56 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__56; lean_inc(x_22); lean_inc(x_23); -x_53 = l_Lean_addMacroScope(x_23, x_52, x_22); -x_54 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__52; -x_55 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__58; +x_57 = l_Lean_addMacroScope(x_23, x_56, x_22); +x_58 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__55; +x_59 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__61; lean_inc(x_21); -x_56 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_56, 0, x_21); -lean_ctor_set(x_56, 1, x_54); -lean_ctor_set(x_56, 2, x_53); -lean_ctor_set(x_56, 3, x_55); -x_57 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__49; -lean_inc(x_56); -lean_inc(x_51); -lean_inc(x_21); -x_58 = l_Lean_Syntax_node2(x_21, x_57, x_51, x_56); -lean_inc(x_21); -x_59 = l_Lean_Syntax_node1(x_21, x_28, x_58); -x_60 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__46; -lean_inc(x_59); -lean_inc(x_30); -lean_inc(x_21); -x_61 = l_Lean_Syntax_node2(x_21, x_60, x_30, x_59); -x_62 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__41; -lean_inc(x_30); -lean_inc(x_49); -lean_inc(x_32); -lean_inc(x_21); -x_63 = l_Lean_Syntax_node4(x_21, x_62, x_32, x_49, x_61, x_30); -x_64 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__61; +x_60 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_60, 0, x_21); +lean_ctor_set(x_60, 1, x_58); +lean_ctor_set(x_60, 2, x_57); +lean_ctor_set(x_60, 3, x_59); +x_61 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__66; lean_inc(x_22); lean_inc(x_23); -x_65 = l_Lean_addMacroScope(x_23, x_64, x_22); -x_66 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__60; +x_62 = l_Lean_addMacroScope(x_23, x_61, x_22); +x_63 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__65; +x_64 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__73; lean_inc(x_21); -x_67 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_67, 0, x_21); -lean_ctor_set(x_67, 1, x_66); -lean_ctor_set(x_67, 2, x_65); -lean_ctor_set(x_67, 3, x_39); +x_65 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_65, 0, x_21); +lean_ctor_set(x_65, 1, x_63); +lean_ctor_set(x_65, 2, x_62); +lean_ctor_set(x_65, 3, x_64); lean_inc(x_9); -lean_inc(x_51); lean_inc(x_21); -x_68 = l_Lean_Syntax_node2(x_21, x_57, x_51, x_9); +x_66 = l_Lean_Syntax_node1(x_21, x_28, x_9); +x_67 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__53; +lean_inc(x_66); lean_inc(x_21); -x_69 = l_Lean_Syntax_node1(x_21, x_28, x_68); -lean_inc(x_30); +x_68 = l_Lean_Syntax_node2(x_21, x_67, x_65, x_66); +x_69 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__63; +lean_inc(x_52); +lean_inc(x_36); lean_inc(x_21); -x_70 = l_Lean_Syntax_node2(x_21, x_60, x_30, x_69); -lean_inc(x_30); -lean_inc(x_67); -lean_inc(x_32); +x_70 = l_Lean_Syntax_node3(x_21, x_69, x_36, x_68, x_52); lean_inc(x_21); -x_71 = l_Lean_Syntax_node4(x_21, x_62, x_32, x_67, x_70, x_30); +x_71 = l_Lean_Syntax_node1(x_21, x_28, x_70); +lean_inc(x_60); lean_inc(x_21); -x_72 = l_Lean_Syntax_node2(x_21, x_28, x_63, x_71); -x_73 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__39; +x_72 = l_Lean_Syntax_node2(x_21, x_67, x_60, x_71); +x_73 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__51; +lean_inc(x_44); lean_inc(x_21); -x_74 = l_Lean_Syntax_node1(x_21, x_73, x_72); -lean_inc(x_30); +x_74 = l_Lean_Syntax_node2(x_21, x_73, x_44, x_72); lean_inc(x_21); -x_75 = l_Lean_Syntax_node3(x_21, x_28, x_45, x_30, x_74); -x_76 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__63; -lean_inc(x_30); +x_75 = l_Lean_Syntax_node1(x_21, x_28, x_74); +x_76 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__32; lean_inc(x_21); -x_77 = l_Lean_Syntax_node1(x_21, x_76, x_30); -x_78 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__29; -lean_inc_n(x_30, 3); +x_77 = l_Lean_Syntax_node2(x_21, x_76, x_55, x_75); +x_78 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__76; lean_inc(x_21); -x_79 = l_Lean_Syntax_node7(x_21, x_78, x_36, x_43, x_30, x_30, x_30, x_75, x_77); -x_80 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__24; -lean_inc(x_32); +x_79 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_79, 0, x_21); +lean_ctor_set(x_79, 1, x_78); +x_80 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__77; lean_inc(x_21); -x_81 = l_Lean_Syntax_node2(x_21, x_80, x_32, x_79); -x_82 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__64; +x_81 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_81, 0, x_21); +lean_ctor_set(x_81, 1, x_80); +x_82 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__85; lean_inc(x_21); x_83 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_83, 0, x_21); lean_ctor_set(x_83, 1, x_82); -x_84 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__73; -lean_inc(x_21); -x_85 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_85, 0, x_21); -lean_ctor_set(x_85, 1, x_84); -x_86 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__76; +x_84 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__90; lean_inc(x_22); lean_inc(x_23); -x_87 = l_Lean_addMacroScope(x_23, x_86, x_22); -x_88 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__75; +x_85 = l_Lean_addMacroScope(x_23, x_84, x_22); +x_86 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__89; +x_87 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__93; lean_inc(x_21); -x_89 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_89, 0, x_21); -lean_ctor_set(x_89, 1, x_88); -lean_ctor_set(x_89, 2, x_87); -lean_ctor_set(x_89, 3, x_39); -lean_inc(x_89); -lean_inc(x_21); -x_90 = l_Lean_Syntax_node1(x_21, x_28, x_89); -lean_inc(x_51); -lean_inc(x_21); -x_91 = l_Lean_Syntax_node2(x_21, x_28, x_51, x_56); -x_92 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__77; -lean_inc(x_21); -x_93 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_93, 0, x_21); -lean_ctor_set(x_93, 1, x_92); -x_94 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__72; -lean_inc(x_93); -lean_inc(x_30); -lean_inc(x_90); -lean_inc(x_85); -lean_inc(x_21); -x_95 = l_Lean_Syntax_node5(x_21, x_94, x_85, x_90, x_91, x_30, x_93); -lean_inc(x_95); -lean_inc(x_21); -x_96 = l_Lean_Syntax_node1(x_21, x_28, x_95); -x_97 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__82; +x_88 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_88, 0, x_21); +lean_ctor_set(x_88, 1, x_86); +lean_ctor_set(x_88, 2, x_85); +lean_ctor_set(x_88, 3, x_87); +x_89 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__98; lean_inc(x_22); lean_inc(x_23); -x_98 = l_Lean_addMacroScope(x_23, x_97, x_22); -x_99 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__81; -x_100 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__86; +x_90 = l_Lean_addMacroScope(x_23, x_89, x_22); +x_91 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__97; lean_inc(x_21); -x_101 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_101, 0, x_21); -lean_ctor_set(x_101, 1, x_99); -lean_ctor_set(x_101, 2, x_98); -lean_ctor_set(x_101, 3, x_100); -x_102 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__89; -lean_inc(x_22); -lean_inc(x_23); -x_103 = l_Lean_addMacroScope(x_23, x_102, x_22); -x_104 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__88; -x_105 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__94; +x_92 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_92, 0, x_21); +lean_ctor_set(x_92, 1, x_91); +lean_ctor_set(x_92, 2, x_90); +lean_ctor_set(x_92, 3, x_39); +x_93 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__99; lean_inc(x_21); -x_106 = lean_alloc_ctor(3, 4, 0); +x_94 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_94, 0, x_21); +lean_ctor_set(x_94, 1, x_93); +x_95 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__102; +lean_inc(x_21); +x_96 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_96, 0, x_21); +lean_ctor_set(x_96, 1, x_95); +x_97 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__101; +lean_inc(x_21); +x_98 = l_Lean_Syntax_node1(x_21, x_97, x_96); +lean_inc(x_98); +lean_inc(x_21); +x_99 = l_Lean_Syntax_node1(x_21, x_28, x_98); +lean_inc(x_99); +lean_inc(x_94); +lean_inc(x_92); +lean_inc(x_21); +x_100 = l_Lean_Syntax_node3(x_21, x_28, x_92, x_94, x_99); +x_101 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__95; +lean_inc(x_52); +lean_inc(x_36); +lean_inc(x_21); +x_102 = l_Lean_Syntax_node3(x_21, x_101, x_36, x_100, x_52); +lean_inc(x_21); +x_103 = l_Lean_Syntax_node1(x_21, x_28, x_102); +lean_inc(x_88); +lean_inc(x_21); +x_104 = l_Lean_Syntax_node2(x_21, x_67, x_88, x_103); +x_105 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__103; +lean_inc(x_21); +x_106 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_106, 0, x_21); -lean_ctor_set(x_106, 1, x_104); -lean_ctor_set(x_106, 2, x_103); -lean_ctor_set(x_106, 3, x_105); -lean_inc(x_41); -lean_inc(x_106); +lean_ctor_set(x_106, 1, x_105); +x_107 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__108; +lean_inc(x_22); +lean_inc(x_23); +x_108 = l_Lean_addMacroScope(x_23, x_107, x_22); +x_109 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__107; +x_110 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__113; lean_inc(x_21); -x_107 = l_Lean_Syntax_node2(x_21, x_28, x_106, x_41); -x_108 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__79; -lean_inc(x_21); -x_109 = l_Lean_Syntax_node2(x_21, x_108, x_101, x_107); -lean_inc(x_51); -lean_inc(x_21); -x_110 = l_Lean_Syntax_node2(x_21, x_57, x_51, x_109); -lean_inc(x_21); -x_111 = l_Lean_Syntax_node1(x_21, x_28, x_110); -lean_inc(x_21); -x_112 = l_Lean_Syntax_node2(x_21, x_60, x_96, x_111); -x_113 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__97; +x_111 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_111, 0, x_21); +lean_ctor_set(x_111, 1, x_109); +lean_ctor_set(x_111, 2, x_108); +lean_ctor_set(x_111, 3, x_110); +lean_inc(x_10); +x_112 = l___private_Init_Meta_0__Lean_getEscapedNameParts_x3f(x_39, x_10); +x_113 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__114; lean_inc(x_21); x_114 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_114, 0, x_21); lean_ctor_set(x_114, 1, x_113); -x_115 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__98; +x_115 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__117; lean_inc(x_21); x_116 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_116, 0, x_21); lean_ctor_set(x_116, 1, x_115); -x_117 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__108; +x_117 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__120; lean_inc(x_22); lean_inc(x_23); x_118 = l_Lean_addMacroScope(x_23, x_117, x_22); -x_119 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__107; -x_120 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__112; +x_119 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__119; +x_120 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__123; lean_inc(x_21); x_121 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_121, 0, x_21); lean_ctor_set(x_121, 1, x_119); lean_ctor_set(x_121, 2, x_118); lean_ctor_set(x_121, 3, x_120); -x_122 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__118; -lean_inc(x_22); -lean_inc(x_23); -x_123 = l_Lean_addMacroScope(x_23, x_122, x_22); -x_124 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__116; lean_inc(x_21); -x_125 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_125, 0, x_21); -lean_ctor_set(x_125, 1, x_124); -lean_ctor_set(x_125, 2, x_123); -lean_ctor_set(x_125, 3, x_39); -x_126 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__121; +x_122 = l_Lean_Syntax_node1(x_21, x_28, x_121); +x_123 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__116; +lean_inc(x_116); lean_inc(x_21); -x_127 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_127, 0, x_21); -lean_ctor_set(x_127, 1, x_126); -x_128 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__125; -lean_inc(x_22); -lean_inc(x_23); -x_129 = l_Lean_addMacroScope(x_23, x_128, x_22); -x_130 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__123; -x_131 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__127; +x_124 = l_Lean_Syntax_node2(x_21, x_123, x_116, x_122); +x_125 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__82; +lean_inc(x_30); lean_inc(x_21); -x_132 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_132, 0, x_21); -lean_ctor_set(x_132, 1, x_130); -lean_ctor_set(x_132, 2, x_129); -lean_ctor_set(x_132, 3, x_131); -x_133 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__120; +x_126 = l_Lean_Syntax_node2(x_21, x_125, x_124, x_30); +lean_inc(x_21); +x_127 = l_Lean_Syntax_node1(x_21, x_28, x_126); +x_128 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__80; +lean_inc(x_21); +x_129 = l_Lean_Syntax_node1(x_21, x_128, x_127); +lean_inc(x_114); +lean_inc(x_21); +x_130 = l_Lean_Syntax_node2(x_21, x_28, x_114, x_129); +x_131 = lean_mk_syntax_ident(x_12); +lean_inc(x_92); +lean_inc(x_21); +x_132 = l_Lean_Syntax_node1(x_21, x_28, x_92); lean_inc(x_132); -lean_inc_n(x_127, 2); +lean_inc(x_131); lean_inc(x_21); -x_134 = l_Lean_Syntax_node3(x_21, x_133, x_127, x_127, x_132); -x_135 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__130; +x_133 = l_Lean_Syntax_node2(x_21, x_67, x_131, x_132); lean_inc(x_21); -x_136 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_136, 0, x_21); -lean_ctor_set(x_136, 1, x_135); -x_137 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__129; +x_134 = l_Lean_Syntax_node1(x_21, x_28, x_133); +lean_inc(x_116); lean_inc(x_21); -x_138 = l_Lean_Syntax_node1(x_21, x_137, x_136); -lean_inc(x_138); -lean_inc(x_134); +x_135 = l_Lean_Syntax_node2(x_21, x_123, x_116, x_134); +lean_inc(x_30); lean_inc(x_21); -x_139 = l_Lean_Syntax_node2(x_21, x_28, x_134, x_138); -lean_inc(x_125); +x_136 = l_Lean_Syntax_node2(x_21, x_125, x_135, x_30); +x_137 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__126; +lean_inc_n(x_30, 2); lean_inc(x_21); -x_140 = l_Lean_Syntax_node2(x_21, x_108, x_125, x_139); -x_141 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__114; -lean_inc(x_93); -lean_inc(x_85); +x_138 = l_Lean_Syntax_node2(x_21, x_137, x_30, x_30); +x_139 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__129; lean_inc(x_21); -x_142 = l_Lean_Syntax_node3(x_21, x_141, x_85, x_140, x_93); +x_140 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_140, 0, x_21); +lean_ctor_set(x_140, 1, x_139); +x_141 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__133; +lean_inc(x_30); +lean_inc(x_21); +x_142 = l_Lean_Syntax_node1(x_21, x_141, x_30); +x_143 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__139; +lean_inc(x_22); +lean_inc(x_23); +x_144 = l_Lean_addMacroScope(x_23, x_143, x_22); +x_145 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__138; +x_146 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__143; +lean_inc(x_21); +x_147 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_147, 0, x_21); +lean_ctor_set(x_147, 1, x_145); +lean_ctor_set(x_147, 2, x_144); +lean_ctor_set(x_147, 3, x_146); +x_148 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__136; +lean_inc(x_30); +lean_inc(x_21); +x_149 = l_Lean_Syntax_node2(x_21, x_148, x_147, x_30); +x_150 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__131; lean_inc(x_142); lean_inc(x_21); -x_143 = l_Lean_Syntax_node1(x_21, x_28, x_142); -lean_inc(x_121); +x_151 = l_Lean_Syntax_node2(x_21, x_150, x_142, x_149); lean_inc(x_21); -x_144 = l_Lean_Syntax_node2(x_21, x_108, x_121, x_143); -x_145 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__105; +x_152 = l_Lean_Syntax_node1(x_21, x_28, x_151); +x_153 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__144; lean_inc(x_21); -x_146 = l_Lean_Syntax_node1(x_21, x_145, x_144); -x_147 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__103; -lean_inc(x_30); -lean_inc(x_21); -x_148 = l_Lean_Syntax_node2(x_21, x_147, x_146, x_30); -x_149 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__133; -lean_inc(x_21); -x_150 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_150, 0, x_21); -lean_ctor_set(x_150, 1, x_149); -x_151 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__138; -lean_inc(x_22); -lean_inc(x_23); -x_152 = l_Lean_addMacroScope(x_23, x_151, x_22); -x_153 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__137; -lean_inc(x_21); -x_154 = lean_alloc_ctor(3, 4, 0); +x_154 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_154, 0, x_21); lean_ctor_set(x_154, 1, x_153); -lean_ctor_set(x_154, 2, x_152); -lean_ctor_set(x_154, 3, x_39); -x_155 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__139; +x_155 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__128; +lean_inc(x_154); lean_inc(x_21); -x_156 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_156, 0, x_21); -lean_ctor_set(x_156, 1, x_155); -x_157 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__142; +x_156 = l_Lean_Syntax_node3(x_21, x_155, x_140, x_152, x_154); +lean_inc(x_21); +x_157 = l_Lean_Syntax_node1(x_21, x_28, x_156); +lean_inc_n(x_30, 5); +lean_inc(x_21); +x_158 = l_Lean_Syntax_node6(x_21, x_31, x_30, x_157, x_30, x_30, x_30, x_30); +x_159 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__147; lean_inc(x_22); lean_inc(x_23); -x_158 = l_Lean_addMacroScope(x_23, x_157, x_22); -x_159 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__141; -x_160 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__145; +x_160 = l_Lean_addMacroScope(x_23, x_159, x_22); +x_161 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__146; lean_inc(x_21); -x_161 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_161, 0, x_21); -lean_ctor_set(x_161, 1, x_159); -lean_ctor_set(x_161, 2, x_158); -lean_ctor_set(x_161, 3, x_160); -x_162 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__150; +x_162 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_162, 0, x_21); +lean_ctor_set(x_162, 1, x_161); +lean_ctor_set(x_162, 2, x_160); +lean_ctor_set(x_162, 3, x_39); +x_163 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__25; +lean_inc(x_30); +lean_inc(x_162); +lean_inc(x_21); +x_164 = l_Lean_Syntax_node2(x_21, x_163, x_162, x_30); +x_165 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__150; lean_inc(x_22); lean_inc(x_23); -x_163 = l_Lean_addMacroScope(x_23, x_162, x_22); -x_164 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__147; +x_166 = l_Lean_addMacroScope(x_23, x_165, x_22); +x_167 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__149; lean_inc(x_21); -x_165 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_165, 0, x_21); -lean_ctor_set(x_165, 1, x_164); -lean_ctor_set(x_165, 2, x_163); -lean_ctor_set(x_165, 3, x_39); +x_168 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_168, 0, x_21); +lean_ctor_set(x_168, 1, x_167); +lean_ctor_set(x_168, 2, x_166); +lean_ctor_set(x_168, 3, x_39); +lean_inc(x_168); lean_inc(x_21); -x_166 = l_Lean_Syntax_node1(x_21, x_28, x_165); -lean_inc(x_21); -x_167 = l_Lean_Syntax_node2(x_21, x_108, x_161, x_166); -lean_inc(x_21); -x_168 = l_Lean_Syntax_node1(x_21, x_145, x_167); -x_169 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__135; -lean_inc(x_156); -lean_inc(x_30); -lean_inc(x_21); -x_170 = l_Lean_Syntax_node4(x_21, x_169, x_154, x_30, x_156, x_168); -x_171 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__132; -lean_inc(x_30); -lean_inc(x_150); -lean_inc(x_21); -x_172 = l_Lean_Syntax_node3(x_21, x_171, x_150, x_30, x_170); -lean_inc(x_30); -lean_inc(x_21); -x_173 = l_Lean_Syntax_node2(x_21, x_147, x_172, x_30); -x_174 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__154; +x_169 = l_Lean_Syntax_node1(x_21, x_28, x_168); +x_170 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__153; lean_inc(x_22); lean_inc(x_23); -x_175 = l_Lean_addMacroScope(x_23, x_174, x_22); -x_176 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__152; +x_171 = l_Lean_addMacroScope(x_23, x_170, x_22); +x_172 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__152; +x_173 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__158; lean_inc(x_21); -x_177 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_177, 0, x_21); -lean_ctor_set(x_177, 1, x_176); -lean_ctor_set(x_177, 2, x_175); -lean_ctor_set(x_177, 3, x_39); -lean_inc(x_10); -x_178 = l___private_Init_Meta_0__Lean_getEscapedNameParts_x3f(x_39, x_10); -x_179 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__159; +x_174 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_174, 0, x_21); +lean_ctor_set(x_174, 1, x_172); +lean_ctor_set(x_174, 2, x_171); +lean_ctor_set(x_174, 3, x_173); +lean_inc(x_44); +lean_inc(x_21); +x_175 = l_Lean_Syntax_node2(x_21, x_28, x_44, x_174); +lean_inc(x_52); +lean_inc(x_30); +lean_inc(x_36); +lean_inc(x_21); +x_176 = l_Lean_Syntax_node5(x_21, x_53, x_36, x_169, x_175, x_30, x_52); +x_177 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__161; lean_inc(x_22); lean_inc(x_23); -x_180 = l_Lean_addMacroScope(x_23, x_179, x_22); -x_181 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__156; -x_182 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__163; +x_178 = l_Lean_addMacroScope(x_23, x_177, x_22); +x_179 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__160; lean_inc(x_21); -x_183 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_183, 0, x_21); -lean_ctor_set(x_183, 1, x_181); -lean_ctor_set(x_183, 2, x_180); -lean_ctor_set(x_183, 3, x_182); -x_184 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__166; +x_180 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_180, 0, x_21); +lean_ctor_set(x_180, 1, x_179); +lean_ctor_set(x_180, 2, x_178); +lean_ctor_set(x_180, 3, x_39); +lean_inc(x_180); +lean_inc(x_21); +x_181 = l_Lean_Syntax_node1(x_21, x_28, x_180); +x_182 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__164; lean_inc(x_22); lean_inc(x_23); -x_185 = l_Lean_addMacroScope(x_23, x_184, x_22); -x_186 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__165; +x_183 = l_Lean_addMacroScope(x_23, x_182, x_22); +x_184 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__163; +x_185 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__168; lean_inc(x_21); -x_187 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_187, 0, x_21); -lean_ctor_set(x_187, 1, x_186); -lean_ctor_set(x_187, 2, x_185); -lean_ctor_set(x_187, 3, x_39); +x_186 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_186, 0, x_21); +lean_ctor_set(x_186, 1, x_184); +lean_ctor_set(x_186, 2, x_183); +lean_ctor_set(x_186, 3, x_185); +lean_inc(x_44); lean_inc(x_21); -x_188 = l_Lean_Syntax_node1(x_21, x_28, x_187); -lean_inc(x_188); -lean_inc(x_21); -x_189 = l_Lean_Syntax_node2(x_21, x_108, x_183, x_188); -lean_inc(x_21); -x_190 = l_Lean_Syntax_node1(x_21, x_145, x_189); -lean_inc(x_190); -lean_inc(x_156); +x_187 = l_Lean_Syntax_node2(x_21, x_28, x_44, x_186); +lean_inc(x_52); lean_inc(x_30); -lean_inc(x_67); +lean_inc(x_36); lean_inc(x_21); -x_191 = l_Lean_Syntax_node4(x_21, x_169, x_67, x_30, x_156, x_190); -lean_inc(x_30); -lean_inc(x_150); +x_188 = l_Lean_Syntax_node5(x_21, x_53, x_36, x_181, x_187, x_30, x_52); +x_189 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__171; +lean_inc(x_22); +lean_inc(x_23); +x_190 = l_Lean_addMacroScope(x_23, x_189, x_22); +x_191 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__170; lean_inc(x_21); -x_192 = l_Lean_Syntax_node3(x_21, x_171, x_150, x_30, x_191); -lean_inc(x_30); +x_192 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_192, 0, x_21); +lean_ctor_set(x_192, 1, x_191); +lean_ctor_set(x_192, 2, x_190); +lean_ctor_set(x_192, 3, x_39); +lean_inc(x_192); lean_inc(x_21); -x_193 = l_Lean_Syntax_node2(x_21, x_147, x_192, x_30); -x_194 = lean_mk_syntax_ident(x_12); -lean_inc(x_67); +x_193 = l_Lean_Syntax_node1(x_21, x_28, x_192); +x_194 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__174; lean_inc(x_21); -x_195 = l_Lean_Syntax_node1(x_21, x_28, x_67); +x_195 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_195, 0, x_21); +lean_ctor_set(x_195, 1, x_194); +x_196 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__173; lean_inc(x_195); +lean_inc_n(x_9, 2); lean_inc(x_21); -x_196 = l_Lean_Syntax_node2(x_21, x_108, x_194, x_195); -x_197 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__172; -lean_inc(x_114); -lean_inc_n(x_30, 2); -lean_inc(x_67); +x_197 = l_Lean_Syntax_node3(x_21, x_196, x_9, x_195, x_9); +lean_inc(x_195); +lean_inc(x_9); lean_inc(x_21); -x_198 = l_Lean_Syntax_node5(x_21, x_197, x_67, x_30, x_30, x_114, x_196); -x_199 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__170; +x_198 = l_Lean_Syntax_node3(x_21, x_196, x_9, x_195, x_197); +lean_inc(x_44); lean_inc(x_21); -x_200 = l_Lean_Syntax_node1(x_21, x_199, x_198); -x_201 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__168; +x_199 = l_Lean_Syntax_node2(x_21, x_28, x_44, x_198); +lean_inc(x_52); lean_inc(x_30); -lean_inc(x_150); +lean_inc(x_193); +lean_inc(x_36); lean_inc(x_21); -x_202 = l_Lean_Syntax_node3(x_21, x_201, x_150, x_30, x_200); -lean_inc(x_30); +x_200 = l_Lean_Syntax_node5(x_21, x_53, x_36, x_193, x_199, x_30, x_52); +lean_inc(x_54); +lean_inc(x_188); +lean_inc(x_176); lean_inc(x_21); -x_203 = l_Lean_Syntax_node2(x_21, x_147, x_202, x_30); -x_204 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__175; +x_201 = l_Lean_Syntax_node4(x_21, x_28, x_176, x_188, x_200, x_54); +x_202 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__177; +lean_inc(x_22); +lean_inc(x_23); +x_203 = l_Lean_addMacroScope(x_23, x_202, x_22); +x_204 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__176; +x_205 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__182; lean_inc(x_21); -x_205 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_205, 0, x_21); -lean_ctor_set(x_205, 1, x_204); -x_206 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__178; +x_206 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_206, 0, x_21); +lean_ctor_set(x_206, 1, x_204); +lean_ctor_set(x_206, 2, x_203); +lean_ctor_set(x_206, 3, x_205); lean_inc(x_21); -x_207 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_207, 0, x_21); -lean_ctor_set(x_207, 1, x_206); -x_208 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__180; -lean_inc(x_67); +x_207 = l_Lean_Syntax_node1(x_21, x_28, x_206); lean_inc(x_21); -x_209 = l_Lean_Syntax_node1(x_21, x_208, x_67); -x_210 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__181; +x_208 = l_Lean_Syntax_node2(x_21, x_67, x_60, x_207); +lean_inc(x_44); lean_inc(x_21); -x_211 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_211, 0, x_21); -lean_ctor_set(x_211, 1, x_210); +x_209 = l_Lean_Syntax_node2(x_21, x_73, x_44, x_208); +lean_inc(x_21); +x_210 = l_Lean_Syntax_node1(x_21, x_28, x_209); +lean_inc(x_210); +lean_inc(x_21); +x_211 = l_Lean_Syntax_node2(x_21, x_76, x_201, x_210); x_212 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__185; -lean_inc(x_30); lean_inc(x_21); -x_213 = l_Lean_Syntax_node2(x_21, x_212, x_49, x_30); -x_214 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__188; +x_213 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_213, 0, x_21); +lean_ctor_set(x_213, 1, x_212); +x_214 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__189; lean_inc(x_22); lean_inc(x_23); x_215 = l_Lean_addMacroScope(x_23, x_214, x_22); @@ -8776,2458 +7086,1846 @@ lean_ctor_set(x_217, 0, x_21); lean_ctor_set(x_217, 1, x_216); lean_ctor_set(x_217, 2, x_215); lean_ctor_set(x_217, 3, x_39); -x_218 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__183; -lean_inc(x_114); lean_inc(x_21); -x_219 = l_Lean_Syntax_node3(x_21, x_218, x_213, x_114, x_217); -lean_inc(x_211); +x_218 = l_Lean_Syntax_node2(x_21, x_28, x_168, x_180); +lean_inc(x_217); lean_inc(x_21); -x_220 = l_Lean_Syntax_node3(x_21, x_28, x_209, x_211, x_219); -x_221 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__190; +x_219 = l_Lean_Syntax_node2(x_21, x_67, x_217, x_218); +x_220 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__192; +lean_inc(x_21); +x_221 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_221, 0, x_21); +lean_ctor_set(x_221, 1, x_220); +x_222 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__195; +lean_inc(x_22); +lean_inc(x_23); +x_223 = l_Lean_addMacroScope(x_23, x_222, x_22); +x_224 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__194; +lean_inc(x_21); +x_225 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_225, 0, x_21); +lean_ctor_set(x_225, 1, x_224); +lean_ctor_set(x_225, 2, x_223); +lean_ctor_set(x_225, 3, x_39); +x_226 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__191; +lean_inc(x_221); +lean_inc(x_21); +x_227 = l_Lean_Syntax_node2(x_21, x_226, x_221, x_225); +lean_inc(x_21); +x_228 = l_Lean_Syntax_node1(x_21, x_28, x_227); +lean_inc(x_116); +lean_inc(x_21); +x_229 = l_Lean_Syntax_node2(x_21, x_123, x_116, x_228); lean_inc(x_30); lean_inc(x_21); -x_222 = l_Lean_Syntax_node1(x_21, x_221, x_30); -x_223 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__191; +x_230 = l_Lean_Syntax_node2(x_21, x_125, x_229, x_30); lean_inc(x_21); -x_224 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_224, 0, x_21); -lean_ctor_set(x_224, 1, x_223); -x_225 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__177; -lean_inc(x_224); -lean_inc(x_222); -lean_inc_n(x_30, 2); -lean_inc(x_207); +x_231 = l_Lean_Syntax_node1(x_21, x_28, x_230); lean_inc(x_21); -x_226 = l_Lean_Syntax_node6(x_21, x_225, x_207, x_30, x_220, x_222, x_30, x_224); +x_232 = l_Lean_Syntax_node1(x_21, x_128, x_231); +x_233 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__184; +lean_inc(x_232); +lean_inc(x_81); +lean_inc(x_213); lean_inc(x_21); -x_227 = l_Lean_Syntax_node1(x_21, x_28, x_226); -x_228 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__174; -lean_inc(x_205); -lean_inc(x_21); -x_229 = l_Lean_Syntax_node2(x_21, x_228, x_205, x_227); +x_234 = l_Lean_Syntax_node4(x_21, x_233, x_213, x_219, x_81, x_232); lean_inc(x_30); lean_inc(x_21); -x_230 = l_Lean_Syntax_node2(x_21, x_147, x_229, x_30); -x_231 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__194; -lean_inc_n(x_30, 2); +x_235 = l_Lean_Syntax_node2(x_21, x_125, x_234, x_30); +lean_inc(x_132); +lean_inc(x_88); lean_inc(x_21); -x_232 = l_Lean_Syntax_node2(x_21, x_231, x_30, x_30); -x_233 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__200; +x_236 = l_Lean_Syntax_node2(x_21, x_67, x_88, x_132); +x_237 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__200; lean_inc(x_22); lean_inc(x_23); -x_234 = l_Lean_addMacroScope(x_23, x_233, x_22); -x_235 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__199; +x_238 = l_Lean_addMacroScope(x_23, x_237, x_22); +x_239 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__197; lean_inc(x_21); -x_236 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_236, 0, x_21); -lean_ctor_set(x_236, 1, x_235); -lean_ctor_set(x_236, 2, x_234); -lean_ctor_set(x_236, 3, x_39); +x_240 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_240, 0, x_21); +lean_ctor_set(x_240, 1, x_239); +lean_ctor_set(x_240, 2, x_238); +lean_ctor_set(x_240, 3, x_39); lean_inc(x_21); -x_237 = l_Lean_Syntax_node1(x_21, x_28, x_236); -lean_inc(x_9); -lean_inc(x_51); +x_241 = l_Lean_Syntax_node1(x_21, x_28, x_240); +x_242 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__9; +lean_inc(x_241); lean_inc(x_21); -x_238 = l_Lean_Syntax_node2(x_21, x_28, x_51, x_9); -lean_inc(x_93); +x_243 = l_Lean_Syntax_node2(x_21, x_67, x_242, x_241); +lean_inc(x_52); +lean_inc(x_36); +lean_inc(x_21); +x_244 = l_Lean_Syntax_node3(x_21, x_69, x_36, x_243, x_52); +x_245 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__105; +lean_inc(x_21); +x_246 = l_Lean_Syntax_node1(x_21, x_245, x_244); +lean_inc(x_232); +lean_inc(x_21); +x_247 = l_Lean_Syntax_node2(x_21, x_28, x_114, x_232); +x_248 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__87; +lean_inc(x_247); +lean_inc(x_106); +lean_inc(x_21); +x_249 = l_Lean_Syntax_node4(x_21, x_248, x_236, x_106, x_246, x_247); +x_250 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__84; lean_inc(x_30); -lean_inc(x_237); -lean_inc(x_85); +lean_inc(x_83); lean_inc(x_21); -x_239 = l_Lean_Syntax_node5(x_21, x_94, x_85, x_237, x_238, x_30, x_93); +x_251 = l_Lean_Syntax_node3(x_21, x_250, x_83, x_30, x_249); +lean_inc(x_30); lean_inc(x_21); -x_240 = l_Lean_Syntax_node1(x_21, x_28, x_239); -lean_inc(x_59); -lean_inc(x_21); -x_241 = l_Lean_Syntax_node2(x_21, x_60, x_240, x_59); -x_242 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__204; +x_252 = l_Lean_Syntax_node2(x_21, x_125, x_251, x_30); +x_253 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__203; lean_inc(x_22); lean_inc(x_23); -x_243 = l_Lean_addMacroScope(x_23, x_242, x_22); -x_244 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__203; +x_254 = l_Lean_addMacroScope(x_23, x_253, x_22); +x_255 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__202; lean_inc(x_21); -x_245 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_245, 0, x_21); -lean_ctor_set(x_245, 1, x_244); -lean_ctor_set(x_245, 2, x_243); -lean_ctor_set(x_245, 3, x_39); -x_246 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__207; -lean_inc(x_22); -lean_inc(x_23); -x_247 = l_Lean_addMacroScope(x_23, x_246, x_22); -x_248 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__206; -x_249 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__212; +x_256 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_256, 0, x_21); +lean_ctor_set(x_256, 1, x_255); +lean_ctor_set(x_256, 2, x_254); +lean_ctor_set(x_256, 3, x_39); +lean_inc(x_256); lean_inc(x_21); -x_250 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_250, 0, x_21); -lean_ctor_set(x_250, 1, x_248); -lean_ctor_set(x_250, 2, x_247); -lean_ctor_set(x_250, 3, x_249); -x_251 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__216; -lean_inc(x_22); -lean_inc(x_23); -x_252 = l_Lean_addMacroScope(x_23, x_251, x_22); -x_253 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__214; +x_257 = l_Lean_Syntax_node1(x_21, x_28, x_256); +lean_inc(x_88); lean_inc(x_21); -x_254 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_254, 0, x_21); -lean_ctor_set(x_254, 1, x_253); -lean_ctor_set(x_254, 2, x_252); -lean_ctor_set(x_254, 3, x_39); -lean_inc(x_21); -x_255 = l_Lean_Syntax_node1(x_21, x_28, x_254); -lean_inc(x_250); -lean_inc(x_21); -x_256 = l_Lean_Syntax_node2(x_21, x_108, x_250, x_255); -lean_inc(x_114); -lean_inc_n(x_30, 2); -lean_inc(x_245); -lean_inc(x_21); -x_257 = l_Lean_Syntax_node5(x_21, x_197, x_245, x_30, x_30, x_114, x_256); -lean_inc(x_21); -x_258 = l_Lean_Syntax_node1(x_21, x_199, x_257); -x_259 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__219; +x_258 = l_Lean_Syntax_node2(x_21, x_67, x_88, x_257); +x_259 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__206; lean_inc(x_22); lean_inc(x_23); x_260 = l_Lean_addMacroScope(x_23, x_259, x_22); -x_261 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__218; -x_262 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__224; +x_261 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__205; lean_inc(x_21); -x_263 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_263, 0, x_21); -lean_ctor_set(x_263, 1, x_261); -lean_ctor_set(x_263, 2, x_260); -lean_ctor_set(x_263, 3, x_262); -x_264 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__227; -lean_inc(x_22); -lean_inc(x_23); -x_265 = l_Lean_addMacroScope(x_23, x_264, x_22); -x_266 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__226; -x_267 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__232; +x_262 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_262, 0, x_21); +lean_ctor_set(x_262, 1, x_261); +lean_ctor_set(x_262, 2, x_260); +lean_ctor_set(x_262, 3, x_39); lean_inc(x_21); -x_268 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_268, 0, x_21); -lean_ctor_set(x_268, 1, x_266); -lean_ctor_set(x_268, 2, x_265); -lean_ctor_set(x_268, 3, x_267); -x_269 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__235; +x_263 = l_Lean_Syntax_node1(x_21, x_28, x_262); lean_inc(x_21); -x_270 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_270, 0, x_21); -lean_ctor_set(x_270, 1, x_269); -x_271 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__238; -lean_inc(x_22); -lean_inc(x_23); -x_272 = l_Lean_addMacroScope(x_23, x_271, x_22); -x_273 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__237; -x_274 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__243; +x_264 = l_Lean_Syntax_node2(x_21, x_67, x_242, x_263); +lean_inc(x_52); +lean_inc(x_36); lean_inc(x_21); -x_275 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_275, 0, x_21); -lean_ctor_set(x_275, 1, x_273); -lean_ctor_set(x_275, 2, x_272); -lean_ctor_set(x_275, 3, x_274); +x_265 = l_Lean_Syntax_node3(x_21, x_69, x_36, x_264, x_52); lean_inc(x_21); -x_276 = l_Lean_Syntax_node1(x_21, x_28, x_275); -x_277 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__244; +x_266 = l_Lean_Syntax_node1(x_21, x_245, x_265); +lean_inc(x_247); +lean_inc(x_266); +lean_inc(x_106); lean_inc(x_21); -x_278 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_278, 0, x_21); -lean_ctor_set(x_278, 1, x_277); -x_279 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__234; -lean_inc(x_278); -lean_inc(x_270); -lean_inc(x_21); -x_280 = l_Lean_Syntax_node3(x_21, x_279, x_270, x_276, x_278); -lean_inc(x_21); -x_281 = l_Lean_Syntax_node2(x_21, x_28, x_134, x_280); -lean_inc(x_268); -lean_inc(x_21); -x_282 = l_Lean_Syntax_node2(x_21, x_108, x_268, x_281); -lean_inc(x_93); -lean_inc(x_85); -lean_inc(x_21); -x_283 = l_Lean_Syntax_node3(x_21, x_141, x_85, x_282, x_93); -x_284 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__247; -lean_inc(x_22); -lean_inc(x_23); -x_285 = l_Lean_addMacroScope(x_23, x_284, x_22); -x_286 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__246; -x_287 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__252; -lean_inc(x_21); -x_288 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_288, 0, x_21); -lean_ctor_set(x_288, 1, x_286); -lean_ctor_set(x_288, 2, x_285); -lean_ctor_set(x_288, 3, x_287); -x_289 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__254; -lean_inc(x_10); -x_290 = l_Lean_Name_append(x_10, x_289); -lean_inc(x_290); -x_291 = l___private_Init_Meta_0__Lean_getEscapedNameParts_x3f(x_39, x_290); -lean_inc(x_51); -lean_inc(x_21); -x_292 = l_Lean_Syntax_node2(x_21, x_28, x_51, x_41); -lean_inc(x_93); +x_267 = l_Lean_Syntax_node4(x_21, x_248, x_258, x_106, x_266, x_247); lean_inc(x_30); -lean_inc(x_237); -lean_inc(x_85); +lean_inc(x_83); lean_inc(x_21); -x_293 = l_Lean_Syntax_node5(x_21, x_94, x_85, x_237, x_292, x_30, x_93); +x_268 = l_Lean_Syntax_node3(x_21, x_250, x_83, x_30, x_267); +lean_inc(x_30); lean_inc(x_21); -x_294 = l_Lean_Syntax_node1(x_21, x_28, x_293); -lean_inc(x_21); -x_295 = l_Lean_Syntax_node2(x_21, x_60, x_294, x_59); -x_296 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__260; +x_269 = l_Lean_Syntax_node2(x_21, x_125, x_268, x_30); +x_270 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__209; lean_inc(x_22); lean_inc(x_23); -x_297 = l_Lean_addMacroScope(x_23, x_296, x_22); -x_298 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__259; +x_271 = l_Lean_addMacroScope(x_23, x_270, x_22); +x_272 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__208; lean_inc(x_21); -x_299 = lean_alloc_ctor(3, 4, 0); +x_273 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_273, 0, x_21); +lean_ctor_set(x_273, 1, x_272); +lean_ctor_set(x_273, 2, x_271); +lean_ctor_set(x_273, 3, x_39); +lean_inc(x_221); +lean_inc(x_21); +x_274 = l_Lean_Syntax_node2(x_21, x_226, x_221, x_273); +x_275 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__212; +lean_inc(x_21); +x_276 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_276, 0, x_21); +lean_ctor_set(x_276, 1, x_275); +x_277 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__219; +lean_inc(x_22); +lean_inc(x_23); +x_278 = l_Lean_addMacroScope(x_23, x_277, x_22); +x_279 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__218; +lean_inc(x_21); +x_280 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_280, 0, x_21); +lean_ctor_set(x_280, 1, x_279); +lean_ctor_set(x_280, 2, x_278); +lean_ctor_set(x_280, 3, x_39); +x_281 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__216; +lean_inc(x_30); +lean_inc(x_21); +x_282 = l_Lean_Syntax_node2(x_21, x_281, x_280, x_30); +x_283 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__222; +lean_inc(x_22); +lean_inc(x_23); +x_284 = l_Lean_addMacroScope(x_23, x_283, x_22); +x_285 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__221; +x_286 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__226; +lean_inc(x_21); +x_287 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_287, 0, x_21); +lean_ctor_set(x_287, 1, x_285); +lean_ctor_set(x_287, 2, x_284); +lean_ctor_set(x_287, 3, x_286); +lean_inc(x_92); +lean_inc(x_21); +x_288 = l_Lean_Syntax_node2(x_21, x_28, x_92, x_256); +lean_inc(x_21); +x_289 = l_Lean_Syntax_node2(x_21, x_67, x_192, x_288); +lean_inc(x_52); +lean_inc(x_36); +lean_inc(x_21); +x_290 = l_Lean_Syntax_node3(x_21, x_69, x_36, x_289, x_52); +lean_inc(x_290); +lean_inc(x_21); +x_291 = l_Lean_Syntax_node1(x_21, x_28, x_290); +lean_inc(x_287); +lean_inc(x_21); +x_292 = l_Lean_Syntax_node2(x_21, x_67, x_287, x_291); +x_293 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__214; +lean_inc(x_79); +lean_inc(x_282); +lean_inc(x_21); +x_294 = l_Lean_Syntax_node3(x_21, x_293, x_282, x_79, x_292); +lean_inc(x_21); +x_295 = l_Lean_Syntax_node1(x_21, x_28, x_294); +x_296 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__228; +lean_inc(x_30); +lean_inc(x_21); +x_297 = l_Lean_Syntax_node1(x_21, x_296, x_30); +x_298 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__229; +lean_inc(x_21); +x_299 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_299, 0, x_21); lean_ctor_set(x_299, 1, x_298); -lean_ctor_set(x_299, 2, x_297); -lean_ctor_set(x_299, 3, x_39); -lean_inc(x_21); -x_300 = l_Lean_Syntax_node1(x_21, x_28, x_299); -lean_inc(x_21); -x_301 = l_Lean_Syntax_node2(x_21, x_108, x_250, x_300); -lean_inc(x_114); +x_300 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__211; +lean_inc(x_299); +lean_inc(x_297); lean_inc_n(x_30, 2); -lean_inc(x_245); +lean_inc(x_276); lean_inc(x_21); -x_302 = l_Lean_Syntax_node5(x_21, x_197, x_245, x_30, x_30, x_114, x_301); +x_301 = l_Lean_Syntax_node6(x_21, x_300, x_276, x_30, x_295, x_297, x_30, x_299); lean_inc(x_21); -x_303 = l_Lean_Syntax_node1(x_21, x_199, x_302); -x_304 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__263; -lean_inc(x_22); -lean_inc(x_23); -x_305 = l_Lean_addMacroScope(x_23, x_304, x_22); -x_306 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__262; -x_307 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__268; +x_302 = l_Lean_Syntax_node1(x_21, x_28, x_301); +lean_inc(x_274); lean_inc(x_21); -x_308 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_308, 0, x_21); -lean_ctor_set(x_308, 1, x_306); -lean_ctor_set(x_308, 2, x_305); -lean_ctor_set(x_308, 3, x_307); -x_309 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__271; -lean_inc(x_22); -lean_inc(x_23); -x_310 = l_Lean_addMacroScope(x_23, x_309, x_22); -x_311 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__270; +x_303 = l_Lean_Syntax_node2(x_21, x_67, x_274, x_302); lean_inc(x_21); -x_312 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_312, 0, x_21); -lean_ctor_set(x_312, 1, x_311); -lean_ctor_set(x_312, 2, x_310); -lean_ctor_set(x_312, 3, x_39); -x_313 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__274; +x_304 = l_Lean_Syntax_node1(x_21, x_28, x_303); +lean_inc(x_116); lean_inc(x_21); -x_314 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_314, 0, x_21); -lean_ctor_set(x_314, 1, x_313); -x_315 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__278; +x_305 = l_Lean_Syntax_node2(x_21, x_123, x_116, x_304); lean_inc(x_30); lean_inc(x_21); -x_316 = l_Lean_Syntax_node1(x_21, x_315, x_30); -x_317 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__284; +x_306 = l_Lean_Syntax_node2(x_21, x_125, x_305, x_30); +lean_inc(x_269); +lean_inc(x_252); +lean_inc(x_235); +lean_inc(x_21); +x_307 = l_Lean_Syntax_node4(x_21, x_28, x_235, x_252, x_269, x_306); +lean_inc(x_21); +x_308 = l_Lean_Syntax_node1(x_21, x_128, x_307); +x_309 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__78; +lean_inc(x_81); +lean_inc(x_21); +x_310 = l_Lean_Syntax_node2(x_21, x_309, x_81, x_308); +x_311 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__75; +lean_inc(x_30); +lean_inc(x_138); +lean_inc(x_79); +lean_inc(x_21); +x_312 = l_Lean_Syntax_node4(x_21, x_311, x_79, x_310, x_138, x_30); +x_313 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__23; +lean_inc(x_30); +lean_inc(x_312); +lean_inc(x_34); +lean_inc(x_21); +x_314 = l_Lean_Syntax_node5(x_21, x_313, x_34, x_164, x_211, x_312, x_30); +x_315 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__18; +lean_inc(x_158); +lean_inc(x_21); +x_316 = l_Lean_Syntax_node2(x_21, x_315, x_158, x_314); +x_317 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__232; lean_inc(x_22); lean_inc(x_23); x_318 = l_Lean_addMacroScope(x_23, x_317, x_22); -x_319 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__283; -x_320 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__288; +x_319 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__231; lean_inc(x_21); -x_321 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_321, 0, x_21); -lean_ctor_set(x_321, 1, x_319); -lean_ctor_set(x_321, 2, x_318); -lean_ctor_set(x_321, 3, x_320); -x_322 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__281; +x_320 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_320, 0, x_21); +lean_ctor_set(x_320, 1, x_319); +lean_ctor_set(x_320, 2, x_318); +lean_ctor_set(x_320, 3, x_39); lean_inc(x_30); +lean_inc(x_320); lean_inc(x_21); -x_323 = l_Lean_Syntax_node2(x_21, x_322, x_321, x_30); -x_324 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__276; -lean_inc(x_316); -lean_inc(x_21); -x_325 = l_Lean_Syntax_node2(x_21, x_324, x_316, x_323); -lean_inc(x_21); -x_326 = l_Lean_Syntax_node1(x_21, x_28, x_325); -x_327 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__273; -lean_inc(x_278); -lean_inc(x_21); -x_328 = l_Lean_Syntax_node3(x_21, x_327, x_314, x_326, x_278); -lean_inc(x_21); -x_329 = l_Lean_Syntax_node1(x_21, x_28, x_328); -lean_inc_n(x_30, 5); -lean_inc(x_21); -x_330 = l_Lean_Syntax_node6(x_21, x_31, x_30, x_329, x_30, x_30, x_30, x_30); -x_331 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__291; +x_321 = l_Lean_Syntax_node2(x_21, x_163, x_320, x_30); +x_322 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__235; lean_inc(x_22); lean_inc(x_23); -x_332 = l_Lean_addMacroScope(x_23, x_331, x_22); -x_333 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__290; +x_323 = l_Lean_addMacroScope(x_23, x_322, x_22); +x_324 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__234; +x_325 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__239; lean_inc(x_21); -x_334 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_334, 0, x_21); -lean_ctor_set(x_334, 1, x_333); -lean_ctor_set(x_334, 2, x_332); -lean_ctor_set(x_334, 3, x_39); +x_326 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_326, 0, x_21); +lean_ctor_set(x_326, 1, x_324); +lean_ctor_set(x_326, 2, x_323); +lean_ctor_set(x_326, 3, x_325); +lean_inc(x_195); +lean_inc(x_9); +lean_inc(x_21); +x_327 = l_Lean_Syntax_node3(x_21, x_196, x_9, x_195, x_326); +lean_inc(x_21); +x_328 = l_Lean_Syntax_node3(x_21, x_196, x_9, x_195, x_327); +lean_inc(x_44); +lean_inc(x_21); +x_329 = l_Lean_Syntax_node2(x_21, x_28, x_44, x_328); +lean_inc(x_52); lean_inc(x_30); -lean_inc(x_334); +lean_inc(x_36); lean_inc(x_21); -x_335 = l_Lean_Syntax_node2(x_21, x_42, x_334, x_30); -x_336 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__294; +x_330 = l_Lean_Syntax_node5(x_21, x_53, x_36, x_193, x_329, x_30, x_52); +lean_inc(x_21); +x_331 = l_Lean_Syntax_node4(x_21, x_28, x_176, x_188, x_330, x_54); +lean_inc(x_21); +x_332 = l_Lean_Syntax_node2(x_21, x_76, x_331, x_210); +x_333 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__242; lean_inc(x_22); lean_inc(x_23); -x_337 = l_Lean_addMacroScope(x_23, x_336, x_22); -x_338 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__293; +x_334 = l_Lean_addMacroScope(x_23, x_333, x_22); +x_335 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__241; +x_336 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__247; lean_inc(x_21); -x_339 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_339, 0, x_21); -lean_ctor_set(x_339, 1, x_338); -lean_ctor_set(x_339, 2, x_337); -lean_ctor_set(x_339, 3, x_39); -lean_inc(x_339); +x_337 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_337, 0, x_21); +lean_ctor_set(x_337, 1, x_335); +lean_ctor_set(x_337, 2, x_334); +lean_ctor_set(x_337, 3, x_336); +lean_inc(x_41); lean_inc(x_21); -x_340 = l_Lean_Syntax_node1(x_21, x_28, x_339); -x_341 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__297; -lean_inc(x_22); -lean_inc(x_23); -x_342 = l_Lean_addMacroScope(x_23, x_341, x_22); -x_343 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__296; -x_344 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__302; +x_338 = l_Lean_Syntax_node2(x_21, x_28, x_41, x_290); lean_inc(x_21); -x_345 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_345, 0, x_21); -lean_ctor_set(x_345, 1, x_343); -lean_ctor_set(x_345, 2, x_342); -lean_ctor_set(x_345, 3, x_344); -lean_inc(x_51); +x_339 = l_Lean_Syntax_node2(x_21, x_67, x_337, x_338); lean_inc(x_21); -x_346 = l_Lean_Syntax_node2(x_21, x_28, x_51, x_345); -lean_inc(x_93); +x_340 = l_Lean_Syntax_node1(x_21, x_245, x_339); lean_inc(x_30); -lean_inc(x_85); lean_inc(x_21); -x_347 = l_Lean_Syntax_node5(x_21, x_94, x_85, x_340, x_346, x_30, x_93); -x_348 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__305; +x_341 = l_Lean_Syntax_node2(x_21, x_125, x_340, x_30); +lean_inc(x_21); +x_342 = l_Lean_Syntax_node4(x_21, x_28, x_235, x_252, x_269, x_341); +lean_inc(x_21); +x_343 = l_Lean_Syntax_node1(x_21, x_128, x_342); +lean_inc(x_81); +lean_inc(x_21); +x_344 = l_Lean_Syntax_node2(x_21, x_309, x_81, x_343); +lean_inc(x_30); +lean_inc(x_138); +lean_inc(x_79); +lean_inc(x_21); +x_345 = l_Lean_Syntax_node4(x_21, x_311, x_79, x_344, x_138, x_30); +lean_inc(x_30); +lean_inc(x_332); +lean_inc(x_34); +lean_inc(x_21); +x_346 = l_Lean_Syntax_node5(x_21, x_313, x_34, x_321, x_332, x_345, x_30); +lean_inc(x_158); +lean_inc(x_21); +x_347 = l_Lean_Syntax_node2(x_21, x_315, x_158, x_346); +x_348 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__250; lean_inc(x_22); lean_inc(x_23); x_349 = l_Lean_addMacroScope(x_23, x_348, x_22); -x_350 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__304; +x_350 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__249; lean_inc(x_21); x_351 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_351, 0, x_21); lean_ctor_set(x_351, 1, x_350); lean_ctor_set(x_351, 2, x_349); lean_ctor_set(x_351, 3, x_39); +lean_inc(x_30); lean_inc(x_351); lean_inc(x_21); -x_352 = l_Lean_Syntax_node1(x_21, x_28, x_351); -x_353 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__307; -lean_inc(x_22); -lean_inc(x_23); -x_354 = l_Lean_addMacroScope(x_23, x_353, x_22); -x_355 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__306; -x_356 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__311; -lean_inc(x_21); -x_357 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_357, 0, x_21); -lean_ctor_set(x_357, 1, x_355); -lean_ctor_set(x_357, 2, x_354); -lean_ctor_set(x_357, 3, x_356); -lean_inc(x_51); -lean_inc(x_21); -x_358 = l_Lean_Syntax_node2(x_21, x_28, x_51, x_357); -lean_inc(x_93); +x_352 = l_Lean_Syntax_node2(x_21, x_163, x_351, x_30); lean_inc(x_30); -lean_inc(x_85); +lean_inc(x_34); lean_inc(x_21); -x_359 = l_Lean_Syntax_node5(x_21, x_94, x_85, x_352, x_358, x_30, x_93); -x_360 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__314; +x_353 = l_Lean_Syntax_node5(x_21, x_313, x_34, x_352, x_332, x_312, x_30); +lean_inc(x_21); +x_354 = l_Lean_Syntax_node2(x_21, x_315, x_158, x_353); +x_355 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__253; +lean_inc(x_21); +x_356 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_356, 0, x_21); +lean_ctor_set(x_356, 1, x_355); +x_357 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__254; +lean_inc(x_21); +x_358 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_358, 0, x_21); +lean_ctor_set(x_358, 1, x_357); +x_359 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__257; lean_inc(x_22); lean_inc(x_23); -x_361 = l_Lean_addMacroScope(x_23, x_360, x_22); -x_362 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__313; +x_360 = l_Lean_addMacroScope(x_23, x_359, x_22); +x_361 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__256; +x_362 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__260; lean_inc(x_21); x_363 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_363, 0, x_21); -lean_ctor_set(x_363, 1, x_362); -lean_ctor_set(x_363, 2, x_361); -lean_ctor_set(x_363, 3, x_39); -lean_inc(x_363); -lean_inc(x_21); -x_364 = l_Lean_Syntax_node1(x_21, x_28, x_363); -x_365 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__317; -lean_inc(x_21); -x_366 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_366, 0, x_21); -lean_ctor_set(x_366, 1, x_365); -x_367 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__316; -lean_inc(x_366); -lean_inc_n(x_9, 2); -lean_inc(x_21); -x_368 = l_Lean_Syntax_node3(x_21, x_367, x_9, x_366, x_9); -lean_inc(x_366); -lean_inc(x_9); -lean_inc(x_21); -x_369 = l_Lean_Syntax_node3(x_21, x_367, x_9, x_366, x_368); -lean_inc(x_51); -lean_inc(x_21); -x_370 = l_Lean_Syntax_node2(x_21, x_28, x_51, x_369); -lean_inc(x_93); -lean_inc(x_30); -lean_inc(x_364); -lean_inc(x_85); -lean_inc(x_21); -x_371 = l_Lean_Syntax_node5(x_21, x_94, x_85, x_364, x_370, x_30, x_93); -lean_inc(x_95); -lean_inc(x_359); -lean_inc(x_347); -lean_inc(x_21); -x_372 = l_Lean_Syntax_node4(x_21, x_28, x_347, x_359, x_371, x_95); -x_373 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__320; +lean_ctor_set(x_363, 1, x_361); +lean_ctor_set(x_363, 2, x_360); +lean_ctor_set(x_363, 3, x_362); +x_364 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__263; lean_inc(x_22); lean_inc(x_23); -x_374 = l_Lean_addMacroScope(x_23, x_373, x_22); -x_375 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__319; -x_376 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__325; +x_365 = l_Lean_addMacroScope(x_23, x_364, x_22); +x_366 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__262; lean_inc(x_21); -x_377 = lean_alloc_ctor(3, 4, 0); +x_367 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_367, 0, x_21); +lean_ctor_set(x_367, 1, x_366); +lean_ctor_set(x_367, 2, x_365); +lean_ctor_set(x_367, 3, x_39); +lean_inc(x_367); +lean_inc(x_21); +x_368 = l_Lean_Syntax_node3(x_21, x_28, x_363, x_94, x_367); +lean_inc(x_154); +lean_inc(x_358); +lean_inc(x_21); +x_369 = l_Lean_Syntax_node3(x_21, x_28, x_358, x_368, x_154); +x_370 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__271; +lean_inc(x_21); +x_371 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_371, 0, x_21); +lean_ctor_set(x_371, 1, x_370); +x_372 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__270; +lean_inc(x_371); +lean_inc_n(x_98, 2); +lean_inc(x_21); +x_373 = l_Lean_Syntax_node3(x_21, x_372, x_98, x_371, x_98); +x_374 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__268; +lean_inc(x_52); +lean_inc(x_66); +lean_inc(x_44); +lean_inc(x_36); +lean_inc(x_21); +x_375 = l_Lean_Syntax_node5(x_21, x_374, x_36, x_373, x_44, x_66, x_52); +x_376 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__274; +lean_inc(x_21); +x_377 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_377, 0, x_21); -lean_ctor_set(x_377, 1, x_375); -lean_ctor_set(x_377, 2, x_374); -lean_ctor_set(x_377, 3, x_376); -lean_inc(x_21); -x_378 = l_Lean_Syntax_node1(x_21, x_28, x_377); -lean_inc(x_21); -x_379 = l_Lean_Syntax_node2(x_21, x_108, x_106, x_378); -lean_inc(x_51); -lean_inc(x_21); -x_380 = l_Lean_Syntax_node2(x_21, x_57, x_51, x_379); -lean_inc(x_21); -x_381 = l_Lean_Syntax_node1(x_21, x_28, x_380); -lean_inc(x_381); -lean_inc(x_21); -x_382 = l_Lean_Syntax_node2(x_21, x_60, x_372, x_381); -x_383 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__328; -lean_inc(x_21); -x_384 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_384, 0, x_21); -lean_ctor_set(x_384, 1, x_383); -lean_inc(x_21); -x_385 = l_Lean_Syntax_node2(x_21, x_28, x_339, x_351); -lean_inc(x_125); -lean_inc(x_21); -x_386 = l_Lean_Syntax_node2(x_21, x_108, x_125, x_385); -x_387 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__331; -lean_inc(x_21); -x_388 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_388, 0, x_21); -lean_ctor_set(x_388, 1, x_387); -x_389 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__334; +lean_ctor_set(x_377, 1, x_376); +x_378 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__279; lean_inc(x_22); lean_inc(x_23); -x_390 = l_Lean_addMacroScope(x_23, x_389, x_22); -x_391 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__333; +x_379 = l_Lean_addMacroScope(x_23, x_378, x_22); +x_380 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__276; +x_381 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__281; lean_inc(x_21); -x_392 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_392, 0, x_21); -lean_ctor_set(x_392, 1, x_391); -lean_ctor_set(x_392, 2, x_390); -lean_ctor_set(x_392, 3, x_39); -x_393 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__330; +x_382 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_382, 0, x_21); +lean_ctor_set(x_382, 1, x_380); +lean_ctor_set(x_382, 2, x_379); +lean_ctor_set(x_382, 3, x_381); +x_383 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__273; +lean_inc_n(x_377, 2); +lean_inc(x_21); +x_384 = l_Lean_Syntax_node3(x_21, x_383, x_377, x_377, x_382); +x_385 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__284; +lean_inc(x_21); +x_386 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_386, 0, x_21); +lean_ctor_set(x_386, 1, x_385); +x_387 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__283; +lean_inc(x_21); +x_388 = l_Lean_Syntax_node1(x_21, x_387, x_386); +x_389 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__287; +lean_inc(x_21); +x_390 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_390, 0, x_21); +lean_ctor_set(x_390, 1, x_389); +x_391 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__286; +lean_inc(x_21); +x_392 = l_Lean_Syntax_node1(x_21, x_391, x_390); +lean_inc_n(x_392, 2); +lean_inc(x_21); +x_393 = l_Lean_Syntax_node3(x_21, x_372, x_392, x_371, x_392); +lean_inc(x_52); +lean_inc(x_36); +lean_inc(x_21); +x_394 = l_Lean_Syntax_node3(x_21, x_69, x_36, x_393, x_52); lean_inc(x_388); lean_inc(x_21); -x_394 = l_Lean_Syntax_node2(x_21, x_393, x_388, x_392); +x_395 = l_Lean_Syntax_node3(x_21, x_28, x_384, x_388, x_394); +lean_inc(x_162); lean_inc(x_21); -x_395 = l_Lean_Syntax_node1(x_21, x_28, x_394); -lean_inc(x_205); -lean_inc(x_21); -x_396 = l_Lean_Syntax_node2(x_21, x_228, x_205, x_395); +x_396 = l_Lean_Syntax_node2(x_21, x_67, x_162, x_395); +x_397 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__288; lean_inc(x_30); -lean_inc(x_21); -x_397 = l_Lean_Syntax_node2(x_21, x_147, x_396, x_30); -lean_inc(x_21); -x_398 = l_Lean_Syntax_node1(x_21, x_28, x_397); -x_399 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__101; -lean_inc(x_21); -x_400 = l_Lean_Syntax_node1(x_21, x_399, x_398); -x_401 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__327; -lean_inc(x_400); -lean_inc(x_116); -lean_inc(x_384); -lean_inc(x_21); -x_402 = l_Lean_Syntax_node4(x_21, x_401, x_384, x_386, x_116, x_400); +x_398 = lean_array_push(x_397, x_30); +lean_inc(x_142); +x_399 = lean_array_push(x_398, x_142); +lean_inc(x_356); +x_400 = lean_array_push(x_399, x_356); lean_inc(x_30); +x_401 = lean_array_push(x_400, x_30); +x_402 = lean_array_push(x_401, x_369); +x_403 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__266; +lean_inc(x_402); +x_404 = lean_array_push(x_402, x_403); +lean_inc(x_36); +x_405 = lean_array_push(x_404, x_36); +x_406 = lean_array_push(x_405, x_375); +lean_inc(x_52); +x_407 = lean_array_push(x_406, x_52); +lean_inc(x_79); +x_408 = lean_array_push(x_407, x_79); +x_409 = lean_array_push(x_408, x_396); +x_410 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__252; lean_inc(x_21); -x_403 = l_Lean_Syntax_node2(x_21, x_147, x_402, x_30); -x_404 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__339; -lean_inc(x_22); -lean_inc(x_23); -x_405 = l_Lean_addMacroScope(x_23, x_404, x_22); -x_406 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__338; -x_407 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__343; +x_411 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_411, 0, x_21); +lean_ctor_set(x_411, 1, x_410); +lean_ctor_set(x_411, 2, x_409); +x_412 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__294; lean_inc(x_21); -x_408 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_408, 0, x_21); -lean_ctor_set(x_408, 1, x_406); -lean_ctor_set(x_408, 2, x_405); -lean_ctor_set(x_408, 3, x_407); -x_409 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__346; -lean_inc(x_22); -lean_inc(x_23); -x_410 = l_Lean_addMacroScope(x_23, x_409, x_22); -x_411 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__345; -lean_inc(x_21); -x_412 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_412, 0, x_21); -lean_ctor_set(x_412, 1, x_411); -lean_ctor_set(x_412, 2, x_410); -lean_ctor_set(x_412, 3, x_39); -lean_inc(x_412); -lean_inc(x_21); -x_413 = l_Lean_Syntax_node1(x_21, x_28, x_412); +x_413 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_413, 0, x_21); +lean_ctor_set(x_413, 1, x_412); +x_414 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__293; lean_inc(x_413); -lean_inc(x_408); +lean_inc_n(x_98, 2); lean_inc(x_21); -x_414 = l_Lean_Syntax_node2(x_21, x_108, x_408, x_413); -x_415 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__9; +x_415 = l_Lean_Syntax_node3(x_21, x_414, x_98, x_413, x_98); +lean_inc(x_52); +lean_inc(x_66); +lean_inc(x_44); +lean_inc(x_36); lean_inc(x_21); -x_416 = l_Lean_Syntax_node2(x_21, x_108, x_415, x_188); -lean_inc(x_93); -lean_inc(x_85); -lean_inc(x_21); -x_417 = l_Lean_Syntax_node3(x_21, x_141, x_85, x_416, x_93); -lean_inc(x_21); -x_418 = l_Lean_Syntax_node1(x_21, x_145, x_417); -x_419 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__347; -lean_inc(x_21); -x_420 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_420, 0, x_21); -lean_ctor_set(x_420, 1, x_419); -lean_inc(x_400); -lean_inc(x_21); -x_421 = l_Lean_Syntax_node2(x_21, x_28, x_420, x_400); -x_422 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__336; -lean_inc(x_421); -lean_inc(x_156); -lean_inc(x_21); -x_423 = l_Lean_Syntax_node4(x_21, x_422, x_414, x_156, x_418, x_421); -lean_inc(x_30); -lean_inc(x_150); -lean_inc(x_21); -x_424 = l_Lean_Syntax_node3(x_21, x_171, x_150, x_30, x_423); -lean_inc(x_30); -lean_inc(x_21); -x_425 = l_Lean_Syntax_node2(x_21, x_147, x_424, x_30); -x_426 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__350; +x_416 = l_Lean_Syntax_node5(x_21, x_374, x_36, x_415, x_44, x_66, x_52); +x_417 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__299; lean_inc(x_22); lean_inc(x_23); -x_427 = l_Lean_addMacroScope(x_23, x_426, x_22); -x_428 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__349; +x_418 = l_Lean_addMacroScope(x_23, x_417, x_22); +x_419 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__296; +x_420 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__301; lean_inc(x_21); -x_429 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_429, 0, x_21); -lean_ctor_set(x_429, 1, x_428); -lean_ctor_set(x_429, 2, x_427); -lean_ctor_set(x_429, 3, x_39); +x_421 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_421, 0, x_21); +lean_ctor_set(x_421, 1, x_419); +lean_ctor_set(x_421, 2, x_418); +lean_ctor_set(x_421, 3, x_420); +lean_inc_n(x_377, 2); lean_inc(x_21); -x_430 = l_Lean_Syntax_node1(x_21, x_28, x_429); -lean_inc(x_408); +x_422 = l_Lean_Syntax_node3(x_21, x_383, x_377, x_377, x_421); +lean_inc_n(x_392, 2); lean_inc(x_21); -x_431 = l_Lean_Syntax_node2(x_21, x_108, x_408, x_430); -x_432 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__353; -lean_inc(x_22); -lean_inc(x_23); -x_433 = l_Lean_addMacroScope(x_23, x_432, x_22); -x_434 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__352; +x_423 = l_Lean_Syntax_node3(x_21, x_414, x_392, x_413, x_392); +lean_inc(x_52); +lean_inc(x_36); lean_inc(x_21); -x_435 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_435, 0, x_21); -lean_ctor_set(x_435, 1, x_434); -lean_ctor_set(x_435, 2, x_433); -lean_ctor_set(x_435, 3, x_39); -lean_inc(x_21); -x_436 = l_Lean_Syntax_node1(x_21, x_28, x_435); -lean_inc(x_21); -x_437 = l_Lean_Syntax_node2(x_21, x_108, x_415, x_436); -lean_inc(x_93); -lean_inc(x_85); -lean_inc(x_21); -x_438 = l_Lean_Syntax_node3(x_21, x_141, x_85, x_437, x_93); -lean_inc(x_21); -x_439 = l_Lean_Syntax_node1(x_21, x_145, x_438); -lean_inc(x_421); -lean_inc(x_439); -lean_inc(x_156); -lean_inc(x_21); -x_440 = l_Lean_Syntax_node4(x_21, x_422, x_431, x_156, x_439, x_421); -lean_inc(x_30); -lean_inc(x_150); -lean_inc(x_21); -x_441 = l_Lean_Syntax_node3(x_21, x_171, x_150, x_30, x_440); -lean_inc(x_30); -lean_inc(x_21); -x_442 = l_Lean_Syntax_node2(x_21, x_147, x_441, x_30); -x_443 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__356; -lean_inc(x_22); -lean_inc(x_23); -x_444 = l_Lean_addMacroScope(x_23, x_443, x_22); -x_445 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__355; -lean_inc(x_21); -x_446 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_446, 0, x_21); -lean_ctor_set(x_446, 1, x_445); -lean_ctor_set(x_446, 2, x_444); -lean_ctor_set(x_446, 3, x_39); -x_447 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__357; -lean_inc(x_21); -x_448 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_448, 0, x_21); -lean_ctor_set(x_448, 1, x_447); -lean_inc(x_413); -lean_inc(x_21); -x_449 = l_Lean_Syntax_node2(x_21, x_28, x_413, x_448); -lean_inc(x_30); -lean_inc(x_21); -x_450 = l_Lean_Syntax_node2(x_21, x_212, x_67, x_30); -x_451 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__360; -lean_inc(x_22); -lean_inc(x_23); -x_452 = l_Lean_addMacroScope(x_23, x_451, x_22); -x_453 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__359; -lean_inc(x_21); -x_454 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_454, 0, x_21); -lean_ctor_set(x_454, 1, x_453); -lean_ctor_set(x_454, 2, x_452); -lean_ctor_set(x_454, 3, x_39); -x_455 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__363; -lean_inc(x_22); -lean_inc(x_23); -x_456 = l_Lean_addMacroScope(x_23, x_455, x_22); -x_457 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__362; -lean_inc(x_21); -x_458 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_458, 0, x_21); -lean_ctor_set(x_458, 1, x_457); -lean_ctor_set(x_458, 2, x_456); -lean_ctor_set(x_458, 3, x_39); -lean_inc(x_21); -x_459 = l_Lean_Syntax_node2(x_21, x_28, x_454, x_458); -lean_inc(x_21); -x_460 = l_Lean_Syntax_node2(x_21, x_108, x_363, x_459); -lean_inc(x_460); -lean_inc(x_114); -lean_inc(x_21); -x_461 = l_Lean_Syntax_node3(x_21, x_218, x_450, x_114, x_460); -lean_inc(x_21); -x_462 = l_Lean_Syntax_node1(x_21, x_28, x_461); -lean_inc(x_224); -lean_inc(x_30); -lean_inc(x_222); -lean_inc(x_207); -lean_inc(x_21); -x_463 = l_Lean_Syntax_node6(x_21, x_225, x_207, x_449, x_462, x_222, x_30, x_224); -lean_inc(x_114); -lean_inc_n(x_30, 2); -lean_inc(x_446); -lean_inc(x_21); -x_464 = l_Lean_Syntax_node5(x_21, x_197, x_446, x_30, x_30, x_114, x_463); -lean_inc(x_21); -x_465 = l_Lean_Syntax_node1(x_21, x_199, x_464); -lean_inc(x_30); -lean_inc(x_150); -lean_inc(x_21); -x_466 = l_Lean_Syntax_node3(x_21, x_201, x_150, x_30, x_465); -lean_inc(x_30); -lean_inc(x_21); -x_467 = l_Lean_Syntax_node2(x_21, x_147, x_466, x_30); -x_468 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__366; -lean_inc(x_22); -lean_inc(x_23); -x_469 = l_Lean_addMacroScope(x_23, x_468, x_22); -x_470 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__365; -lean_inc(x_21); -x_471 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_471, 0, x_21); -lean_ctor_set(x_471, 1, x_470); -lean_ctor_set(x_471, 2, x_469); -lean_ctor_set(x_471, 3, x_39); +x_424 = l_Lean_Syntax_node3(x_21, x_69, x_36, x_423, x_52); lean_inc(x_388); lean_inc(x_21); -x_472 = l_Lean_Syntax_node2(x_21, x_393, x_388, x_471); -x_473 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__369; +x_425 = l_Lean_Syntax_node3(x_21, x_28, x_422, x_388, x_424); +lean_inc(x_162); +lean_inc(x_21); +x_426 = l_Lean_Syntax_node2(x_21, x_67, x_162, x_425); +x_427 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__291; +lean_inc(x_402); +x_428 = lean_array_push(x_402, x_427); +lean_inc(x_36); +x_429 = lean_array_push(x_428, x_36); +x_430 = lean_array_push(x_429, x_416); +lean_inc(x_52); +x_431 = lean_array_push(x_430, x_52); +lean_inc(x_79); +x_432 = lean_array_push(x_431, x_79); +x_433 = lean_array_push(x_432, x_426); +lean_inc(x_21); +x_434 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_434, 0, x_21); +lean_ctor_set(x_434, 1, x_410); +lean_ctor_set(x_434, 2, x_433); +x_435 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__307; +lean_inc(x_21); +x_436 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_436, 0, x_21); +lean_ctor_set(x_436, 1, x_435); +x_437 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__306; +lean_inc(x_436); +lean_inc_n(x_98, 2); +lean_inc(x_21); +x_438 = l_Lean_Syntax_node3(x_21, x_437, x_98, x_436, x_98); +lean_inc(x_52); +lean_inc(x_66); +lean_inc(x_44); +lean_inc(x_36); +lean_inc(x_21); +x_439 = l_Lean_Syntax_node5(x_21, x_374, x_36, x_438, x_44, x_66, x_52); +x_440 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__312; lean_inc(x_22); lean_inc(x_23); -x_474 = l_Lean_addMacroScope(x_23, x_473, x_22); -x_475 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__368; +x_441 = l_Lean_addMacroScope(x_23, x_440, x_22); +x_442 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__309; +x_443 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__314; lean_inc(x_21); -x_476 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_476, 0, x_21); -lean_ctor_set(x_476, 1, x_475); -lean_ctor_set(x_476, 2, x_474); -lean_ctor_set(x_476, 3, x_39); -lean_inc(x_30); +x_444 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_444, 0, x_21); +lean_ctor_set(x_444, 1, x_442); +lean_ctor_set(x_444, 2, x_441); +lean_ctor_set(x_444, 3, x_443); +lean_inc_n(x_377, 2); lean_inc(x_21); -x_477 = l_Lean_Syntax_node2(x_21, x_212, x_476, x_30); +x_445 = l_Lean_Syntax_node3(x_21, x_383, x_377, x_377, x_444); +lean_inc_n(x_392, 2); lean_inc(x_21); -x_478 = l_Lean_Syntax_node1(x_21, x_28, x_446); -x_479 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__15; +x_446 = l_Lean_Syntax_node3(x_21, x_437, x_392, x_436, x_392); +lean_inc(x_52); +lean_inc(x_36); lean_inc(x_21); -x_480 = l_Lean_Syntax_node2(x_21, x_108, x_479, x_478); -lean_inc(x_114); -lean_inc(x_477); +x_447 = l_Lean_Syntax_node3(x_21, x_69, x_36, x_446, x_52); +lean_inc(x_388); lean_inc(x_21); -x_481 = l_Lean_Syntax_node3(x_21, x_218, x_477, x_114, x_480); +x_448 = l_Lean_Syntax_node3(x_21, x_28, x_445, x_388, x_447); +lean_inc(x_162); lean_inc(x_21); -x_482 = l_Lean_Syntax_node1(x_21, x_28, x_481); -lean_inc(x_224); -lean_inc(x_222); -lean_inc_n(x_30, 2); -lean_inc(x_207); +x_449 = l_Lean_Syntax_node2(x_21, x_67, x_162, x_448); +x_450 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__304; +lean_inc(x_402); +x_451 = lean_array_push(x_402, x_450); +lean_inc(x_36); +x_452 = lean_array_push(x_451, x_36); +x_453 = lean_array_push(x_452, x_439); +lean_inc(x_52); +x_454 = lean_array_push(x_453, x_52); +lean_inc(x_79); +x_455 = lean_array_push(x_454, x_79); +x_456 = lean_array_push(x_455, x_449); lean_inc(x_21); -x_483 = l_Lean_Syntax_node6(x_21, x_225, x_207, x_30, x_482, x_222, x_30, x_224); +x_457 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_457, 0, x_21); +lean_ctor_set(x_457, 1, x_410); +lean_ctor_set(x_457, 2, x_456); +x_458 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__320; lean_inc(x_21); -x_484 = l_Lean_Syntax_node1(x_21, x_28, x_483); -lean_inc(x_472); +x_459 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_459, 0, x_21); +lean_ctor_set(x_459, 1, x_458); +x_460 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__319; +lean_inc(x_459); +lean_inc_n(x_98, 2); lean_inc(x_21); -x_485 = l_Lean_Syntax_node2(x_21, x_108, x_472, x_484); +x_461 = l_Lean_Syntax_node3(x_21, x_460, x_98, x_459, x_98); +lean_inc(x_52); +lean_inc(x_66); +lean_inc(x_44); +lean_inc(x_36); lean_inc(x_21); -x_486 = l_Lean_Syntax_node1(x_21, x_28, x_485); -lean_inc(x_205); -lean_inc(x_21); -x_487 = l_Lean_Syntax_node2(x_21, x_228, x_205, x_486); -lean_inc(x_30); -lean_inc(x_21); -x_488 = l_Lean_Syntax_node2(x_21, x_147, x_487, x_30); -lean_inc(x_442); -lean_inc(x_425); -lean_inc(x_403); -lean_inc(x_21); -x_489 = l_Lean_Syntax_node5(x_21, x_28, x_403, x_425, x_442, x_467, x_488); -lean_inc(x_21); -x_490 = l_Lean_Syntax_node1(x_21, x_399, x_489); -x_491 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__99; -lean_inc(x_116); -lean_inc(x_21); -x_492 = l_Lean_Syntax_node2(x_21, x_491, x_116, x_490); -x_493 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__96; -lean_inc(x_30); -lean_inc(x_232); -lean_inc(x_114); -lean_inc(x_21); -x_494 = l_Lean_Syntax_node4(x_21, x_493, x_114, x_492, x_232, x_30); -x_495 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__65; -lean_inc(x_30); -lean_inc(x_83); -lean_inc(x_21); -x_496 = l_Lean_Syntax_node5(x_21, x_495, x_83, x_335, x_382, x_494, x_30); -lean_inc(x_330); -lean_inc(x_21); -x_497 = l_Lean_Syntax_node2(x_21, x_80, x_330, x_496); -x_498 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__372; +x_462 = l_Lean_Syntax_node5(x_21, x_374, x_36, x_461, x_44, x_66, x_52); +x_463 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__325; lean_inc(x_22); lean_inc(x_23); -x_499 = l_Lean_addMacroScope(x_23, x_498, x_22); -x_500 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__371; +x_464 = l_Lean_addMacroScope(x_23, x_463, x_22); +x_465 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__322; +x_466 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__327; lean_inc(x_21); -x_501 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_501, 0, x_21); -lean_ctor_set(x_501, 1, x_500); -lean_ctor_set(x_501, 2, x_499); -lean_ctor_set(x_501, 3, x_39); -lean_inc(x_30); -lean_inc(x_501); +x_467 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_467, 0, x_21); +lean_ctor_set(x_467, 1, x_465); +lean_ctor_set(x_467, 2, x_464); +lean_ctor_set(x_467, 3, x_466); +lean_inc_n(x_377, 2); lean_inc(x_21); -x_502 = l_Lean_Syntax_node2(x_21, x_42, x_501, x_30); -x_503 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__375; +x_468 = l_Lean_Syntax_node3(x_21, x_383, x_377, x_377, x_467); +lean_inc_n(x_392, 2); +lean_inc(x_21); +x_469 = l_Lean_Syntax_node3(x_21, x_460, x_392, x_459, x_392); +lean_inc(x_52); +lean_inc(x_36); +lean_inc(x_21); +x_470 = l_Lean_Syntax_node3(x_21, x_69, x_36, x_469, x_52); +lean_inc(x_388); +lean_inc(x_21); +x_471 = l_Lean_Syntax_node3(x_21, x_28, x_468, x_388, x_470); +lean_inc(x_162); +lean_inc(x_21); +x_472 = l_Lean_Syntax_node2(x_21, x_67, x_162, x_471); +x_473 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__317; +lean_inc(x_402); +x_474 = lean_array_push(x_402, x_473); +lean_inc(x_36); +x_475 = lean_array_push(x_474, x_36); +x_476 = lean_array_push(x_475, x_462); +lean_inc(x_52); +x_477 = lean_array_push(x_476, x_52); +lean_inc(x_79); +x_478 = lean_array_push(x_477, x_79); +x_479 = lean_array_push(x_478, x_472); +lean_inc(x_21); +x_480 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_480, 0, x_21); +lean_ctor_set(x_480, 1, x_410); +lean_ctor_set(x_480, 2, x_479); +x_481 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__333; +lean_inc(x_21); +x_482 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_482, 0, x_21); +lean_ctor_set(x_482, 1, x_481); +x_483 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__332; +lean_inc(x_482); +lean_inc_n(x_98, 2); +lean_inc(x_21); +x_484 = l_Lean_Syntax_node3(x_21, x_483, x_98, x_482, x_98); +lean_inc(x_52); +lean_inc(x_66); +lean_inc(x_44); +lean_inc(x_36); +lean_inc(x_21); +x_485 = l_Lean_Syntax_node5(x_21, x_374, x_36, x_484, x_44, x_66, x_52); +x_486 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__338; lean_inc(x_22); lean_inc(x_23); -x_504 = l_Lean_addMacroScope(x_23, x_503, x_22); -x_505 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__374; -x_506 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__379; +x_487 = l_Lean_addMacroScope(x_23, x_486, x_22); +x_488 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__335; +x_489 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__340; lean_inc(x_21); -x_507 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_507, 0, x_21); -lean_ctor_set(x_507, 1, x_505); -lean_ctor_set(x_507, 2, x_504); -lean_ctor_set(x_507, 3, x_506); -lean_inc(x_366); -lean_inc(x_9); +x_490 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_490, 0, x_21); +lean_ctor_set(x_490, 1, x_488); +lean_ctor_set(x_490, 2, x_487); +lean_ctor_set(x_490, 3, x_489); +lean_inc_n(x_377, 2); lean_inc(x_21); -x_508 = l_Lean_Syntax_node3(x_21, x_367, x_9, x_366, x_507); -lean_inc(x_9); +x_491 = l_Lean_Syntax_node3(x_21, x_383, x_377, x_377, x_490); +lean_inc(x_392); lean_inc(x_21); -x_509 = l_Lean_Syntax_node3(x_21, x_367, x_9, x_366, x_508); -lean_inc(x_51); +x_492 = l_Lean_Syntax_node3(x_21, x_483, x_392, x_482, x_392); +lean_inc(x_52); +lean_inc(x_36); lean_inc(x_21); -x_510 = l_Lean_Syntax_node2(x_21, x_28, x_51, x_509); -lean_inc(x_93); -lean_inc(x_30); -lean_inc(x_85); +x_493 = l_Lean_Syntax_node3(x_21, x_69, x_36, x_492, x_52); lean_inc(x_21); -x_511 = l_Lean_Syntax_node5(x_21, x_94, x_85, x_364, x_510, x_30, x_93); +x_494 = l_Lean_Syntax_node3(x_21, x_28, x_491, x_388, x_493); lean_inc(x_21); -x_512 = l_Lean_Syntax_node4(x_21, x_28, x_347, x_359, x_511, x_95); +x_495 = l_Lean_Syntax_node2(x_21, x_67, x_162, x_494); +x_496 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__330; +lean_inc(x_402); +x_497 = lean_array_push(x_402, x_496); +lean_inc(x_36); +x_498 = lean_array_push(x_497, x_36); +x_499 = lean_array_push(x_498, x_485); +lean_inc(x_52); +x_500 = lean_array_push(x_499, x_52); +lean_inc(x_79); +x_501 = lean_array_push(x_500, x_79); +x_502 = lean_array_push(x_501, x_495); lean_inc(x_21); -x_513 = l_Lean_Syntax_node2(x_21, x_60, x_512, x_381); -x_514 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__382; +x_503 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_503, 0, x_21); +lean_ctor_set(x_503, 1, x_410); +lean_ctor_set(x_503, 2, x_502); +lean_inc(x_52); +lean_inc(x_66); +lean_inc(x_44); +lean_inc(x_98); +lean_inc(x_36); +lean_inc(x_21); +x_504 = l_Lean_Syntax_node5(x_21, x_374, x_36, x_98, x_44, x_66, x_52); +x_505 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__346; +lean_inc(x_21); +x_506 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_506, 0, x_21); +lean_ctor_set(x_506, 1, x_505); +x_507 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__345; +lean_inc(x_98); +lean_inc(x_506); +lean_inc(x_504); +lean_inc(x_21); +x_508 = l_Lean_Syntax_node3(x_21, x_507, x_504, x_506, x_98); +x_509 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__351; lean_inc(x_22); lean_inc(x_23); -x_515 = l_Lean_addMacroScope(x_23, x_514, x_22); -x_516 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__381; -x_517 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__387; +x_510 = l_Lean_addMacroScope(x_23, x_509, x_22); +x_511 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__348; +x_512 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__353; lean_inc(x_21); -x_518 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_518, 0, x_21); -lean_ctor_set(x_518, 1, x_516); -lean_ctor_set(x_518, 2, x_515); -lean_ctor_set(x_518, 3, x_517); -lean_inc(x_93); -lean_inc(x_85); +x_513 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_513, 0, x_21); +lean_ctor_set(x_513, 1, x_511); +lean_ctor_set(x_513, 2, x_510); +lean_ctor_set(x_513, 3, x_512); +lean_inc_n(x_377, 2); lean_inc(x_21); -x_519 = l_Lean_Syntax_node3(x_21, x_141, x_85, x_460, x_93); -lean_inc(x_519); -lean_inc(x_89); +x_514 = l_Lean_Syntax_node3(x_21, x_383, x_377, x_377, x_513); +x_515 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__354; lean_inc(x_21); -x_520 = l_Lean_Syntax_node2(x_21, x_28, x_89, x_519); +x_516 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_516, 0, x_21); +lean_ctor_set(x_516, 1, x_515); lean_inc(x_21); -x_521 = l_Lean_Syntax_node2(x_21, x_108, x_518, x_520); +x_517 = l_Lean_Syntax_node1(x_21, x_387, x_516); lean_inc(x_21); -x_522 = l_Lean_Syntax_node1(x_21, x_145, x_521); -lean_inc(x_30); +x_518 = l_Lean_Syntax_node1(x_21, x_391, x_221); +lean_inc_n(x_518, 2); lean_inc(x_21); -x_523 = l_Lean_Syntax_node2(x_21, x_147, x_522, x_30); -lean_inc(x_442); -lean_inc(x_425); -lean_inc(x_403); +x_519 = l_Lean_Syntax_node3(x_21, x_507, x_518, x_506, x_518); +lean_inc(x_52); +lean_inc(x_36); lean_inc(x_21); -x_524 = l_Lean_Syntax_node4(x_21, x_28, x_403, x_425, x_442, x_523); +x_520 = l_Lean_Syntax_node3(x_21, x_69, x_36, x_519, x_52); +lean_inc(x_517); lean_inc(x_21); -x_525 = l_Lean_Syntax_node1(x_21, x_399, x_524); -lean_inc(x_116); +x_521 = l_Lean_Syntax_node3(x_21, x_28, x_514, x_517, x_520); +lean_inc(x_320); lean_inc(x_21); -x_526 = l_Lean_Syntax_node2(x_21, x_491, x_116, x_525); -lean_inc(x_30); -lean_inc(x_232); -lean_inc(x_114); +x_522 = l_Lean_Syntax_node2(x_21, x_67, x_320, x_521); +x_523 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__343; +lean_inc(x_402); +x_524 = lean_array_push(x_402, x_523); +lean_inc(x_36); +x_525 = lean_array_push(x_524, x_36); +x_526 = lean_array_push(x_525, x_508); +lean_inc(x_52); +x_527 = lean_array_push(x_526, x_52); +lean_inc(x_79); +x_528 = lean_array_push(x_527, x_79); +x_529 = lean_array_push(x_528, x_522); lean_inc(x_21); -x_527 = l_Lean_Syntax_node4(x_21, x_493, x_114, x_526, x_232, x_30); -lean_inc(x_30); -lean_inc(x_513); -lean_inc(x_83); +x_530 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_530, 0, x_21); +lean_ctor_set(x_530, 1, x_410); +lean_ctor_set(x_530, 2, x_529); +x_531 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__360; lean_inc(x_21); -x_528 = l_Lean_Syntax_node5(x_21, x_495, x_83, x_502, x_513, x_527, x_30); -lean_inc(x_330); +x_532 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_532, 0, x_21); +lean_ctor_set(x_532, 1, x_531); +x_533 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__359; +lean_inc(x_98); +lean_inc(x_532); +lean_inc(x_504); lean_inc(x_21); -x_529 = l_Lean_Syntax_node2(x_21, x_80, x_330, x_528); -x_530 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__390; -lean_inc(x_22); -lean_inc(x_23); -x_531 = l_Lean_addMacroScope(x_23, x_530, x_22); -x_532 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__389; -lean_inc(x_21); -x_533 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_533, 0, x_21); -lean_ctor_set(x_533, 1, x_532); -lean_ctor_set(x_533, 2, x_531); -lean_ctor_set(x_533, 3, x_39); -lean_inc(x_30); -lean_inc(x_533); -lean_inc(x_21); -x_534 = l_Lean_Syntax_node2(x_21, x_42, x_533, x_30); -x_535 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__393; +x_534 = l_Lean_Syntax_node3(x_21, x_533, x_504, x_532, x_98); +x_535 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__365; lean_inc(x_22); lean_inc(x_23); x_536 = l_Lean_addMacroScope(x_23, x_535, x_22); -x_537 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__392; -x_538 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__397; +x_537 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__362; +x_538 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__367; lean_inc(x_21); x_539 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_539, 0, x_21); lean_ctor_set(x_539, 1, x_537); lean_ctor_set(x_539, 2, x_536); lean_ctor_set(x_539, 3, x_538); +lean_inc_n(x_377, 2); lean_inc(x_21); -x_540 = l_Lean_Syntax_node1(x_21, x_28, x_519); +x_540 = l_Lean_Syntax_node3(x_21, x_383, x_377, x_377, x_539); +lean_inc_n(x_518, 2); lean_inc(x_21); -x_541 = l_Lean_Syntax_node2(x_21, x_108, x_539, x_540); -lean_inc(x_114); -lean_inc(x_477); +x_541 = l_Lean_Syntax_node3(x_21, x_533, x_518, x_532, x_518); +lean_inc(x_52); +lean_inc(x_36); lean_inc(x_21); -x_542 = l_Lean_Syntax_node3(x_21, x_218, x_477, x_114, x_541); +x_542 = l_Lean_Syntax_node3(x_21, x_69, x_36, x_541, x_52); +lean_inc(x_517); lean_inc(x_21); -x_543 = l_Lean_Syntax_node1(x_21, x_28, x_542); -lean_inc(x_224); -lean_inc(x_222); -lean_inc_n(x_30, 2); -lean_inc(x_207); +x_543 = l_Lean_Syntax_node3(x_21, x_28, x_540, x_517, x_542); +lean_inc(x_320); lean_inc(x_21); -x_544 = l_Lean_Syntax_node6(x_21, x_225, x_207, x_30, x_543, x_222, x_30, x_224); +x_544 = l_Lean_Syntax_node2(x_21, x_67, x_320, x_543); +x_545 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__357; +lean_inc(x_402); +x_546 = lean_array_push(x_402, x_545); +lean_inc(x_36); +x_547 = lean_array_push(x_546, x_36); +x_548 = lean_array_push(x_547, x_534); +lean_inc(x_52); +x_549 = lean_array_push(x_548, x_52); +lean_inc(x_79); +x_550 = lean_array_push(x_549, x_79); +x_551 = lean_array_push(x_550, x_544); lean_inc(x_21); -x_545 = l_Lean_Syntax_node1(x_21, x_28, x_544); -lean_inc(x_472); +x_552 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_552, 0, x_21); +lean_ctor_set(x_552, 1, x_410); +lean_ctor_set(x_552, 2, x_551); +x_553 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__373; lean_inc(x_21); -x_546 = l_Lean_Syntax_node2(x_21, x_108, x_472, x_545); +x_554 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_554, 0, x_21); +lean_ctor_set(x_554, 1, x_553); +x_555 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__372; +lean_inc(x_98); +lean_inc(x_554); +lean_inc(x_504); lean_inc(x_21); -x_547 = l_Lean_Syntax_node1(x_21, x_28, x_546); -lean_inc(x_205); +x_556 = l_Lean_Syntax_node3(x_21, x_555, x_504, x_554, x_98); +x_557 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__378; +lean_inc(x_22); +lean_inc(x_23); +x_558 = l_Lean_addMacroScope(x_23, x_557, x_22); +x_559 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__375; +x_560 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__380; lean_inc(x_21); -x_548 = l_Lean_Syntax_node2(x_21, x_228, x_205, x_547); -lean_inc(x_30); +x_561 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_561, 0, x_21); +lean_ctor_set(x_561, 1, x_559); +lean_ctor_set(x_561, 2, x_558); +lean_ctor_set(x_561, 3, x_560); +lean_inc_n(x_377, 2); lean_inc(x_21); -x_549 = l_Lean_Syntax_node2(x_21, x_147, x_548, x_30); +x_562 = l_Lean_Syntax_node3(x_21, x_383, x_377, x_377, x_561); +lean_inc_n(x_518, 2); lean_inc(x_21); -x_550 = l_Lean_Syntax_node4(x_21, x_28, x_403, x_425, x_442, x_549); +x_563 = l_Lean_Syntax_node3(x_21, x_555, x_518, x_554, x_518); +lean_inc(x_52); +lean_inc(x_36); lean_inc(x_21); -x_551 = l_Lean_Syntax_node1(x_21, x_399, x_550); -lean_inc(x_116); +x_564 = l_Lean_Syntax_node3(x_21, x_69, x_36, x_563, x_52); +lean_inc(x_517); lean_inc(x_21); -x_552 = l_Lean_Syntax_node2(x_21, x_491, x_116, x_551); -lean_inc(x_30); -lean_inc(x_232); -lean_inc(x_114); +x_565 = l_Lean_Syntax_node3(x_21, x_28, x_562, x_517, x_564); +lean_inc(x_320); lean_inc(x_21); -x_553 = l_Lean_Syntax_node4(x_21, x_493, x_114, x_552, x_232, x_30); +x_566 = l_Lean_Syntax_node2(x_21, x_67, x_320, x_565); +x_567 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__370; +lean_inc(x_402); +x_568 = lean_array_push(x_402, x_567); +lean_inc(x_36); +x_569 = lean_array_push(x_568, x_36); +x_570 = lean_array_push(x_569, x_556); +lean_inc(x_52); +x_571 = lean_array_push(x_570, x_52); +lean_inc(x_79); +x_572 = lean_array_push(x_571, x_79); +x_573 = lean_array_push(x_572, x_566); +lean_inc(x_21); +x_574 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_574, 0, x_21); +lean_ctor_set(x_574, 1, x_410); +lean_ctor_set(x_574, 2, x_573); +x_575 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__386; +lean_inc(x_21); +x_576 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_576, 0, x_21); +lean_ctor_set(x_576, 1, x_575); +x_577 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__385; +lean_inc(x_98); +lean_inc(x_576); +lean_inc(x_504); +lean_inc(x_21); +x_578 = l_Lean_Syntax_node3(x_21, x_577, x_504, x_576, x_98); +x_579 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__391; +lean_inc(x_22); +lean_inc(x_23); +x_580 = l_Lean_addMacroScope(x_23, x_579, x_22); +x_581 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__388; +x_582 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__393; +lean_inc(x_21); +x_583 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_583, 0, x_21); +lean_ctor_set(x_583, 1, x_581); +lean_ctor_set(x_583, 2, x_580); +lean_ctor_set(x_583, 3, x_582); +lean_inc_n(x_377, 2); +lean_inc(x_21); +x_584 = l_Lean_Syntax_node3(x_21, x_383, x_377, x_377, x_583); +lean_inc_n(x_518, 2); +lean_inc(x_21); +x_585 = l_Lean_Syntax_node3(x_21, x_577, x_518, x_576, x_518); +lean_inc(x_52); +lean_inc(x_36); +lean_inc(x_21); +x_586 = l_Lean_Syntax_node3(x_21, x_69, x_36, x_585, x_52); +lean_inc(x_517); +lean_inc(x_21); +x_587 = l_Lean_Syntax_node3(x_21, x_28, x_584, x_517, x_586); +lean_inc(x_320); +lean_inc(x_21); +x_588 = l_Lean_Syntax_node2(x_21, x_67, x_320, x_587); +x_589 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__383; +lean_inc(x_402); +x_590 = lean_array_push(x_402, x_589); +lean_inc(x_36); +x_591 = lean_array_push(x_590, x_36); +x_592 = lean_array_push(x_591, x_578); +lean_inc(x_52); +x_593 = lean_array_push(x_592, x_52); +lean_inc(x_79); +x_594 = lean_array_push(x_593, x_79); +x_595 = lean_array_push(x_594, x_588); +lean_inc(x_21); +x_596 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_596, 0, x_21); +lean_ctor_set(x_596, 1, x_410); +lean_ctor_set(x_596, 2, x_595); +x_597 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__396; +lean_inc(x_22); +lean_inc(x_23); +x_598 = l_Lean_addMacroScope(x_23, x_597, x_22); +x_599 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__395; +lean_inc(x_21); +x_600 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_600, 0, x_21); +lean_ctor_set(x_600, 1, x_599); +lean_ctor_set(x_600, 2, x_598); +lean_ctor_set(x_600, 3, x_39); +x_601 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__399; +lean_inc(x_21); +x_602 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_602, 0, x_21); +lean_ctor_set(x_602, 1, x_601); +x_603 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__398; +lean_inc(x_98); +lean_inc(x_602); +lean_inc(x_504); +lean_inc(x_21); +x_604 = l_Lean_Syntax_node3(x_21, x_603, x_504, x_602, x_98); +x_605 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__402; +lean_inc(x_22); +lean_inc(x_23); +x_606 = l_Lean_addMacroScope(x_23, x_605, x_22); +x_607 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__401; +x_608 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__406; +lean_inc(x_21); +x_609 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_609, 0, x_21); +lean_ctor_set(x_609, 1, x_607); +lean_ctor_set(x_609, 2, x_606); +lean_ctor_set(x_609, 3, x_608); +lean_inc_n(x_377, 2); +lean_inc(x_21); +x_610 = l_Lean_Syntax_node3(x_21, x_383, x_377, x_377, x_609); +x_611 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__407; +lean_inc(x_21); +x_612 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_612, 0, x_21); +lean_ctor_set(x_612, 1, x_611); +lean_inc(x_21); +x_613 = l_Lean_Syntax_node1(x_21, x_387, x_612); +lean_inc_n(x_518, 2); +lean_inc(x_21); +x_614 = l_Lean_Syntax_node3(x_21, x_603, x_518, x_602, x_518); +lean_inc(x_52); +lean_inc(x_36); +lean_inc(x_21); +x_615 = l_Lean_Syntax_node3(x_21, x_69, x_36, x_614, x_52); +lean_inc(x_613); +lean_inc(x_21); +x_616 = l_Lean_Syntax_node3(x_21, x_28, x_610, x_613, x_615); +lean_inc(x_320); +lean_inc(x_21); +x_617 = l_Lean_Syntax_node2(x_21, x_67, x_320, x_616); +lean_inc(x_402); +x_618 = lean_array_push(x_402, x_600); +lean_inc(x_36); +x_619 = lean_array_push(x_618, x_36); +x_620 = lean_array_push(x_619, x_604); +lean_inc(x_52); +x_621 = lean_array_push(x_620, x_52); +lean_inc(x_79); +x_622 = lean_array_push(x_621, x_79); +x_623 = lean_array_push(x_622, x_617); +lean_inc(x_21); +x_624 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_624, 0, x_21); +lean_ctor_set(x_624, 1, x_410); +lean_ctor_set(x_624, 2, x_623); +x_625 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__410; +lean_inc(x_22); +lean_inc(x_23); +x_626 = l_Lean_addMacroScope(x_23, x_625, x_22); +x_627 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__409; +lean_inc(x_21); +x_628 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_628, 0, x_21); +lean_ctor_set(x_628, 1, x_627); +lean_ctor_set(x_628, 2, x_626); +lean_ctor_set(x_628, 3, x_39); +x_629 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__413; +lean_inc(x_21); +x_630 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_630, 0, x_21); +lean_ctor_set(x_630, 1, x_629); +x_631 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__412; +lean_inc(x_98); +lean_inc(x_630); +lean_inc(x_504); +lean_inc(x_21); +x_632 = l_Lean_Syntax_node3(x_21, x_631, x_504, x_630, x_98); +x_633 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__416; +lean_inc(x_22); +lean_inc(x_23); +x_634 = l_Lean_addMacroScope(x_23, x_633, x_22); +x_635 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__415; +x_636 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__420; +lean_inc(x_21); +x_637 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_637, 0, x_21); +lean_ctor_set(x_637, 1, x_635); +lean_ctor_set(x_637, 2, x_634); +lean_ctor_set(x_637, 3, x_636); +lean_inc_n(x_377, 2); +lean_inc(x_21); +x_638 = l_Lean_Syntax_node3(x_21, x_383, x_377, x_377, x_637); +lean_inc_n(x_518, 2); +lean_inc(x_21); +x_639 = l_Lean_Syntax_node3(x_21, x_631, x_518, x_630, x_518); +lean_inc(x_52); +lean_inc(x_36); +lean_inc(x_21); +x_640 = l_Lean_Syntax_node3(x_21, x_69, x_36, x_639, x_52); +lean_inc(x_613); +lean_inc(x_21); +x_641 = l_Lean_Syntax_node3(x_21, x_28, x_638, x_613, x_640); +lean_inc(x_21); +x_642 = l_Lean_Syntax_node2(x_21, x_67, x_320, x_641); +lean_inc(x_402); +x_643 = lean_array_push(x_402, x_628); +lean_inc(x_36); +x_644 = lean_array_push(x_643, x_36); +x_645 = lean_array_push(x_644, x_632); +lean_inc(x_52); +x_646 = lean_array_push(x_645, x_52); +lean_inc(x_79); +x_647 = lean_array_push(x_646, x_79); +x_648 = lean_array_push(x_647, x_642); +lean_inc(x_21); +x_649 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_649, 0, x_21); +lean_ctor_set(x_649, 1, x_410); +lean_ctor_set(x_649, 2, x_648); +x_650 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__423; +lean_inc(x_22); +lean_inc(x_23); +x_651 = l_Lean_addMacroScope(x_23, x_650, x_22); +x_652 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__422; +lean_inc(x_21); +x_653 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_653, 0, x_21); +lean_ctor_set(x_653, 1, x_652); +lean_ctor_set(x_653, 2, x_651); +lean_ctor_set(x_653, 3, x_39); +x_654 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__426; +lean_inc(x_21); +x_655 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_655, 0, x_21); +lean_ctor_set(x_655, 1, x_654); +x_656 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__425; +lean_inc(x_98); +lean_inc(x_655); +lean_inc(x_504); +lean_inc(x_21); +x_657 = l_Lean_Syntax_node3(x_21, x_656, x_504, x_655, x_98); +x_658 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__431; +lean_inc(x_22); +lean_inc(x_23); +x_659 = l_Lean_addMacroScope(x_23, x_658, x_22); +x_660 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__428; +x_661 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__433; +lean_inc(x_21); +x_662 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_662, 0, x_21); +lean_ctor_set(x_662, 1, x_660); +lean_ctor_set(x_662, 2, x_659); +lean_ctor_set(x_662, 3, x_661); +lean_inc_n(x_377, 2); +lean_inc(x_21); +x_663 = l_Lean_Syntax_node3(x_21, x_383, x_377, x_377, x_662); +lean_inc_n(x_518, 2); +lean_inc(x_21); +x_664 = l_Lean_Syntax_node3(x_21, x_656, x_518, x_655, x_518); +lean_inc(x_52); +lean_inc(x_36); +lean_inc(x_21); +x_665 = l_Lean_Syntax_node3(x_21, x_69, x_36, x_664, x_52); +lean_inc(x_517); +lean_inc(x_21); +x_666 = l_Lean_Syntax_node3(x_21, x_28, x_663, x_517, x_665); +lean_inc(x_351); +lean_inc(x_21); +x_667 = l_Lean_Syntax_node2(x_21, x_67, x_351, x_666); +lean_inc(x_402); +x_668 = lean_array_push(x_402, x_653); +lean_inc(x_36); +x_669 = lean_array_push(x_668, x_36); +x_670 = lean_array_push(x_669, x_657); +lean_inc(x_52); +x_671 = lean_array_push(x_670, x_52); +lean_inc(x_79); +x_672 = lean_array_push(x_671, x_79); +x_673 = lean_array_push(x_672, x_667); +lean_inc(x_21); +x_674 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_674, 0, x_21); +lean_ctor_set(x_674, 1, x_410); +lean_ctor_set(x_674, 2, x_673); +x_675 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__436; +lean_inc(x_22); +lean_inc(x_23); +x_676 = l_Lean_addMacroScope(x_23, x_675, x_22); +x_677 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__435; +lean_inc(x_21); +x_678 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_678, 0, x_21); +lean_ctor_set(x_678, 1, x_677); +lean_ctor_set(x_678, 2, x_676); +lean_ctor_set(x_678, 3, x_39); +x_679 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__439; +lean_inc(x_21); +x_680 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_680, 0, x_21); +lean_ctor_set(x_680, 1, x_679); +x_681 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__438; +lean_inc(x_98); +lean_inc(x_680); +lean_inc(x_21); +x_682 = l_Lean_Syntax_node3(x_21, x_681, x_504, x_680, x_98); +x_683 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__442; +lean_inc(x_22); +lean_inc(x_23); +x_684 = l_Lean_addMacroScope(x_23, x_683, x_22); +x_685 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__441; +x_686 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__446; +lean_inc(x_21); +x_687 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_687, 0, x_21); +lean_ctor_set(x_687, 1, x_685); +lean_ctor_set(x_687, 2, x_684); +lean_ctor_set(x_687, 3, x_686); +lean_inc_n(x_377, 2); +lean_inc(x_21); +x_688 = l_Lean_Syntax_node3(x_21, x_383, x_377, x_377, x_687); +lean_inc(x_518); +lean_inc(x_21); +x_689 = l_Lean_Syntax_node3(x_21, x_681, x_518, x_680, x_518); +lean_inc(x_52); +lean_inc(x_36); +lean_inc(x_21); +x_690 = l_Lean_Syntax_node3(x_21, x_69, x_36, x_689, x_52); +lean_inc(x_21); +x_691 = l_Lean_Syntax_node3(x_21, x_28, x_688, x_517, x_690); +lean_inc(x_21); +x_692 = l_Lean_Syntax_node2(x_21, x_67, x_351, x_691); +lean_inc(x_402); +x_693 = lean_array_push(x_402, x_678); +lean_inc(x_36); +x_694 = lean_array_push(x_693, x_36); +x_695 = lean_array_push(x_694, x_682); +lean_inc(x_52); +x_696 = lean_array_push(x_695, x_52); +lean_inc(x_79); +x_697 = lean_array_push(x_696, x_79); +x_698 = lean_array_push(x_697, x_692); +lean_inc(x_21); +x_699 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_699, 0, x_21); +lean_ctor_set(x_699, 1, x_410); +lean_ctor_set(x_699, 2, x_698); +lean_inc(x_98); +lean_inc(x_21); +x_700 = l_Lean_Syntax_node2(x_21, x_28, x_98, x_98); +lean_inc(x_15); +lean_inc(x_21); +x_701 = l_Lean_Syntax_node2(x_21, x_67, x_15, x_700); +x_702 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__450; +lean_inc(x_21); +x_703 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_703, 0, x_21); +lean_ctor_set(x_703, 1, x_702); +x_704 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__454; +lean_inc(x_21); +x_705 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_705, 0, x_21); +lean_ctor_set(x_705, 1, x_704); +x_706 = l_Lean_Syntax_getId(x_15); +lean_dec(x_15); +lean_inc(x_706); +x_707 = l___private_Init_Meta_0__Lean_getEscapedNameParts_x3f(x_39, x_706); +x_708 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__455; +lean_inc(x_21); +x_709 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_709, 0, x_21); +lean_ctor_set(x_709, 1, x_708); +lean_inc(x_21); +x_710 = l_Lean_Syntax_node1(x_21, x_387, x_709); +x_711 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__458; +lean_inc(x_22); +lean_inc(x_23); +x_712 = l_Lean_addMacroScope(x_23, x_711, x_22); +x_713 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__457; +lean_inc(x_21); +x_714 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_714, 0, x_21); +lean_ctor_set(x_714, 1, x_713); +lean_ctor_set(x_714, 2, x_712); +lean_ctor_set(x_714, 3, x_39); +lean_inc(x_714); +lean_inc(x_21); +x_715 = l_Lean_Syntax_node1(x_21, x_28, x_714); +lean_inc(x_715); +lean_inc(x_88); +lean_inc(x_21); +x_716 = l_Lean_Syntax_node2(x_21, x_67, x_88, x_715); +x_717 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__462; +lean_inc(x_22); +lean_inc(x_23); +x_718 = l_Lean_addMacroScope(x_23, x_717, x_22); +x_719 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__460; +x_720 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__466; +lean_inc(x_21); +x_721 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_721, 0, x_21); +lean_ctor_set(x_721, 1, x_719); +lean_ctor_set(x_721, 2, x_718); +lean_ctor_set(x_721, 3, x_720); +lean_inc(x_21); +x_722 = l_Lean_Syntax_node2(x_21, x_67, x_721, x_241); +lean_inc(x_21); +x_723 = l_Lean_Syntax_node1(x_21, x_245, x_722); +lean_inc(x_247); +lean_inc(x_106); +lean_inc(x_21); +x_724 = l_Lean_Syntax_node4(x_21, x_248, x_716, x_106, x_723, x_247); lean_inc(x_30); lean_inc(x_83); lean_inc(x_21); -x_554 = l_Lean_Syntax_node5(x_21, x_495, x_83, x_534, x_513, x_553, x_30); -lean_inc(x_21); -x_555 = l_Lean_Syntax_node2(x_21, x_80, x_330, x_554); -x_556 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__400; -lean_inc(x_21); -x_557 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_557, 0, x_21); -lean_ctor_set(x_557, 1, x_556); -x_558 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__403; -lean_inc(x_22); -lean_inc(x_23); -x_559 = l_Lean_addMacroScope(x_23, x_558, x_22); -x_560 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__402; -x_561 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__406; -lean_inc(x_21); -x_562 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_562, 0, x_21); -lean_ctor_set(x_562, 1, x_560); -lean_ctor_set(x_562, 2, x_559); -lean_ctor_set(x_562, 3, x_561); -x_563 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__409; -lean_inc(x_22); -lean_inc(x_23); -x_564 = l_Lean_addMacroScope(x_23, x_563, x_22); -x_565 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__408; -lean_inc(x_21); -x_566 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_566, 0, x_21); -lean_ctor_set(x_566, 1, x_565); -lean_ctor_set(x_566, 2, x_564); -lean_ctor_set(x_566, 3, x_39); -lean_inc(x_566); -lean_inc(x_21); -x_567 = l_Lean_Syntax_node3(x_21, x_28, x_562, x_211, x_566); -lean_inc(x_278); -lean_inc(x_270); -lean_inc(x_21); -x_568 = l_Lean_Syntax_node3(x_21, x_28, x_270, x_567, x_278); -x_569 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__419; -lean_inc(x_21); -x_570 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_570, 0, x_21); -lean_ctor_set(x_570, 1, x_569); -x_571 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__418; -lean_inc(x_21); -x_572 = l_Lean_Syntax_node1(x_21, x_571, x_570); -x_573 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__420; -lean_inc(x_21); -x_574 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_574, 0, x_21); -lean_ctor_set(x_574, 1, x_573); -x_575 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__416; -lean_inc(x_574); -lean_inc_n(x_572, 2); -lean_inc(x_21); -x_576 = l_Lean_Syntax_node3(x_21, x_575, x_572, x_574, x_572); -lean_inc(x_21); -x_577 = l_Lean_Syntax_node1(x_21, x_28, x_9); -x_578 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__414; -lean_inc(x_93); -lean_inc(x_577); -lean_inc(x_51); -lean_inc(x_85); -lean_inc(x_21); -x_579 = l_Lean_Syntax_node5(x_21, x_578, x_85, x_576, x_51, x_577, x_93); -x_580 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__425; -lean_inc(x_22); -lean_inc(x_23); -x_581 = l_Lean_addMacroScope(x_23, x_580, x_22); -x_582 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__422; -x_583 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__427; -lean_inc(x_21); -x_584 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_584, 0, x_21); -lean_ctor_set(x_584, 1, x_582); -lean_ctor_set(x_584, 2, x_581); -lean_ctor_set(x_584, 3, x_583); -lean_inc_n(x_127, 2); -lean_inc(x_21); -x_585 = l_Lean_Syntax_node3(x_21, x_133, x_127, x_127, x_584); -x_586 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__428; -lean_inc(x_21); -x_587 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_587, 0, x_21); -lean_ctor_set(x_587, 1, x_586); -lean_inc(x_21); -x_588 = l_Lean_Syntax_node1(x_21, x_137, x_587); -x_589 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__431; -lean_inc(x_21); -x_590 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_590, 0, x_21); -lean_ctor_set(x_590, 1, x_589); -x_591 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__430; -lean_inc(x_21); -x_592 = l_Lean_Syntax_node1(x_21, x_591, x_590); -lean_inc_n(x_592, 2); -lean_inc(x_21); -x_593 = l_Lean_Syntax_node3(x_21, x_575, x_592, x_574, x_592); -lean_inc(x_93); -lean_inc(x_85); -lean_inc(x_21); -x_594 = l_Lean_Syntax_node3(x_21, x_141, x_85, x_593, x_93); -lean_inc(x_588); -lean_inc(x_21); -x_595 = l_Lean_Syntax_node3(x_21, x_28, x_585, x_588, x_594); -lean_inc(x_334); -lean_inc(x_21); -x_596 = l_Lean_Syntax_node2(x_21, x_108, x_334, x_595); -x_597 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__432; +x_725 = l_Lean_Syntax_node3(x_21, x_250, x_83, x_30, x_724); lean_inc(x_30); -x_598 = lean_array_push(x_597, x_30); -lean_inc(x_316); -x_599 = lean_array_push(x_598, x_316); -lean_inc(x_557); -x_600 = lean_array_push(x_599, x_557); +lean_inc(x_21); +x_726 = l_Lean_Syntax_node2(x_21, x_125, x_725, x_30); +lean_inc(x_715); +lean_inc(x_21); +x_727 = l_Lean_Syntax_node2(x_21, x_67, x_131, x_715); +x_728 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__472; +lean_inc(x_79); +lean_inc_n(x_30, 2); +lean_inc(x_21); +x_729 = l_Lean_Syntax_node5(x_21, x_728, x_714, x_30, x_30, x_79, x_727); +x_730 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__470; +lean_inc(x_21); +x_731 = l_Lean_Syntax_node1(x_21, x_730, x_729); +x_732 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__468; lean_inc(x_30); -x_601 = lean_array_push(x_600, x_30); -x_602 = lean_array_push(x_601, x_568); -x_603 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__412; -lean_inc(x_602); -x_604 = lean_array_push(x_602, x_603); -lean_inc(x_85); -x_605 = lean_array_push(x_604, x_85); -x_606 = lean_array_push(x_605, x_579); -lean_inc(x_93); -x_607 = lean_array_push(x_606, x_93); -lean_inc(x_114); -x_608 = lean_array_push(x_607, x_114); -x_609 = lean_array_push(x_608, x_596); -x_610 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__399; +lean_inc(x_83); lean_inc(x_21); -x_611 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_611, 0, x_21); -lean_ctor_set(x_611, 1, x_610); -lean_ctor_set(x_611, 2, x_609); -x_612 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__438; +x_733 = l_Lean_Syntax_node3(x_21, x_732, x_83, x_30, x_731); +lean_inc(x_30); lean_inc(x_21); -x_613 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_613, 0, x_21); -lean_ctor_set(x_613, 1, x_612); -x_614 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__437; -lean_inc(x_613); -lean_inc_n(x_572, 2); +x_734 = l_Lean_Syntax_node2(x_21, x_125, x_733, x_30); +lean_inc(x_287); lean_inc(x_21); -x_615 = l_Lean_Syntax_node3(x_21, x_614, x_572, x_613, x_572); -lean_inc(x_93); -lean_inc(x_577); -lean_inc(x_51); -lean_inc(x_85); +x_735 = l_Lean_Syntax_node2(x_21, x_67, x_287, x_715); +lean_inc(x_79); +lean_inc(x_282); lean_inc(x_21); -x_616 = l_Lean_Syntax_node5(x_21, x_578, x_85, x_615, x_51, x_577, x_93); -x_617 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__443; -lean_inc(x_22); -lean_inc(x_23); -x_618 = l_Lean_addMacroScope(x_23, x_617, x_22); -x_619 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__440; -x_620 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__445; +x_736 = l_Lean_Syntax_node3(x_21, x_293, x_282, x_79, x_735); lean_inc(x_21); -x_621 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_621, 0, x_21); -lean_ctor_set(x_621, 1, x_619); -lean_ctor_set(x_621, 2, x_618); -lean_ctor_set(x_621, 3, x_620); -lean_inc_n(x_127, 2); +x_737 = l_Lean_Syntax_node1(x_21, x_28, x_736); +lean_inc(x_299); +lean_inc(x_297); +lean_inc_n(x_30, 2); +lean_inc(x_276); lean_inc(x_21); -x_622 = l_Lean_Syntax_node3(x_21, x_133, x_127, x_127, x_621); -lean_inc_n(x_592, 2); +x_738 = l_Lean_Syntax_node6(x_21, x_300, x_276, x_30, x_737, x_297, x_30, x_299); lean_inc(x_21); -x_623 = l_Lean_Syntax_node3(x_21, x_614, x_592, x_613, x_592); -lean_inc(x_93); -lean_inc(x_85); +x_739 = l_Lean_Syntax_node1(x_21, x_28, x_738); +lean_inc(x_274); lean_inc(x_21); -x_624 = l_Lean_Syntax_node3(x_21, x_141, x_85, x_623, x_93); -lean_inc(x_588); +x_740 = l_Lean_Syntax_node2(x_21, x_67, x_274, x_739); lean_inc(x_21); -x_625 = l_Lean_Syntax_node3(x_21, x_28, x_622, x_588, x_624); -lean_inc(x_334); +x_741 = l_Lean_Syntax_node1(x_21, x_28, x_740); +lean_inc(x_116); lean_inc(x_21); -x_626 = l_Lean_Syntax_node2(x_21, x_108, x_334, x_625); -x_627 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__435; -lean_inc(x_602); -x_628 = lean_array_push(x_602, x_627); -lean_inc(x_85); -x_629 = lean_array_push(x_628, x_85); -x_630 = lean_array_push(x_629, x_616); -lean_inc(x_93); -x_631 = lean_array_push(x_630, x_93); -lean_inc(x_114); -x_632 = lean_array_push(x_631, x_114); -x_633 = lean_array_push(x_632, x_626); +x_742 = l_Lean_Syntax_node2(x_21, x_123, x_116, x_741); +lean_inc(x_30); lean_inc(x_21); -x_634 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_634, 0, x_21); -lean_ctor_set(x_634, 1, x_610); -lean_ctor_set(x_634, 2, x_633); -x_635 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__451; +x_743 = l_Lean_Syntax_node2(x_21, x_125, x_742, x_30); +x_744 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__449; +lean_inc(x_402); +x_745 = lean_array_push(x_402, x_744); +lean_inc(x_36); +x_746 = lean_array_push(x_745, x_36); +x_747 = lean_array_push(x_746, x_701); +lean_inc(x_52); +x_748 = lean_array_push(x_747, x_52); +lean_inc(x_79); +x_749 = lean_array_push(x_748, x_79); +lean_inc(x_99); +lean_inc(x_18); lean_inc(x_21); -x_636 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_636, 0, x_21); -lean_ctor_set(x_636, 1, x_635); -x_637 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__450; -lean_inc(x_636); -lean_inc_n(x_572, 2); -lean_inc(x_21); -x_638 = l_Lean_Syntax_node3(x_21, x_637, x_572, x_636, x_572); -lean_inc(x_93); -lean_inc(x_577); -lean_inc(x_51); -lean_inc(x_85); -lean_inc(x_21); -x_639 = l_Lean_Syntax_node5(x_21, x_578, x_85, x_638, x_51, x_577, x_93); -x_640 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__456; -lean_inc(x_22); -lean_inc(x_23); -x_641 = l_Lean_addMacroScope(x_23, x_640, x_22); -x_642 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__453; -x_643 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__458; -lean_inc(x_21); -x_644 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_644, 0, x_21); -lean_ctor_set(x_644, 1, x_642); -lean_ctor_set(x_644, 2, x_641); -lean_ctor_set(x_644, 3, x_643); -lean_inc_n(x_127, 2); -lean_inc(x_21); -x_645 = l_Lean_Syntax_node3(x_21, x_133, x_127, x_127, x_644); -lean_inc_n(x_592, 2); -lean_inc(x_21); -x_646 = l_Lean_Syntax_node3(x_21, x_637, x_592, x_636, x_592); -lean_inc(x_93); -lean_inc(x_85); -lean_inc(x_21); -x_647 = l_Lean_Syntax_node3(x_21, x_141, x_85, x_646, x_93); -lean_inc(x_588); -lean_inc(x_21); -x_648 = l_Lean_Syntax_node3(x_21, x_28, x_645, x_588, x_647); -lean_inc(x_334); -lean_inc(x_21); -x_649 = l_Lean_Syntax_node2(x_21, x_108, x_334, x_648); -x_650 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__448; -lean_inc(x_602); -x_651 = lean_array_push(x_602, x_650); -lean_inc(x_85); -x_652 = lean_array_push(x_651, x_85); -x_653 = lean_array_push(x_652, x_639); -lean_inc(x_93); -x_654 = lean_array_push(x_653, x_93); -lean_inc(x_114); -x_655 = lean_array_push(x_654, x_114); -x_656 = lean_array_push(x_655, x_649); -lean_inc(x_21); -x_657 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_657, 0, x_21); -lean_ctor_set(x_657, 1, x_610); -lean_ctor_set(x_657, 2, x_656); -x_658 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__464; -lean_inc(x_21); -x_659 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_659, 0, x_21); -lean_ctor_set(x_659, 1, x_658); -x_660 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__463; -lean_inc(x_659); -lean_inc_n(x_572, 2); -lean_inc(x_21); -x_661 = l_Lean_Syntax_node3(x_21, x_660, x_572, x_659, x_572); -lean_inc(x_93); -lean_inc(x_577); -lean_inc(x_51); -lean_inc(x_85); -lean_inc(x_21); -x_662 = l_Lean_Syntax_node5(x_21, x_578, x_85, x_661, x_51, x_577, x_93); -x_663 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__469; -lean_inc(x_22); -lean_inc(x_23); -x_664 = l_Lean_addMacroScope(x_23, x_663, x_22); -x_665 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__466; -x_666 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__471; -lean_inc(x_21); -x_667 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_667, 0, x_21); -lean_ctor_set(x_667, 1, x_665); -lean_ctor_set(x_667, 2, x_664); -lean_ctor_set(x_667, 3, x_666); -lean_inc_n(x_127, 2); -lean_inc(x_21); -x_668 = l_Lean_Syntax_node3(x_21, x_133, x_127, x_127, x_667); -lean_inc_n(x_592, 2); -lean_inc(x_21); -x_669 = l_Lean_Syntax_node3(x_21, x_660, x_592, x_659, x_592); -lean_inc(x_93); -lean_inc(x_85); -lean_inc(x_21); -x_670 = l_Lean_Syntax_node3(x_21, x_141, x_85, x_669, x_93); -lean_inc(x_588); -lean_inc(x_21); -x_671 = l_Lean_Syntax_node3(x_21, x_28, x_668, x_588, x_670); -lean_inc(x_334); -lean_inc(x_21); -x_672 = l_Lean_Syntax_node2(x_21, x_108, x_334, x_671); -x_673 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__461; -lean_inc(x_602); -x_674 = lean_array_push(x_602, x_673); -lean_inc(x_85); -x_675 = lean_array_push(x_674, x_85); -x_676 = lean_array_push(x_675, x_662); -lean_inc(x_93); -x_677 = lean_array_push(x_676, x_93); -lean_inc(x_114); -x_678 = lean_array_push(x_677, x_114); -x_679 = lean_array_push(x_678, x_672); -lean_inc(x_21); -x_680 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_680, 0, x_21); -lean_ctor_set(x_680, 1, x_610); -lean_ctor_set(x_680, 2, x_679); -x_681 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__477; -lean_inc(x_21); -x_682 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_682, 0, x_21); -lean_ctor_set(x_682, 1, x_681); -x_683 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__476; -lean_inc(x_682); -lean_inc_n(x_572, 2); -lean_inc(x_21); -x_684 = l_Lean_Syntax_node3(x_21, x_683, x_572, x_682, x_572); -lean_inc(x_93); -lean_inc(x_577); -lean_inc(x_51); -lean_inc(x_85); -lean_inc(x_21); -x_685 = l_Lean_Syntax_node5(x_21, x_578, x_85, x_684, x_51, x_577, x_93); -x_686 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__482; -lean_inc(x_22); -lean_inc(x_23); -x_687 = l_Lean_addMacroScope(x_23, x_686, x_22); -x_688 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__479; -x_689 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__484; -lean_inc(x_21); -x_690 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_690, 0, x_21); -lean_ctor_set(x_690, 1, x_688); -lean_ctor_set(x_690, 2, x_687); -lean_ctor_set(x_690, 3, x_689); -lean_inc_n(x_127, 2); -lean_inc(x_21); -x_691 = l_Lean_Syntax_node3(x_21, x_133, x_127, x_127, x_690); -lean_inc(x_592); -lean_inc(x_21); -x_692 = l_Lean_Syntax_node3(x_21, x_683, x_592, x_682, x_592); -lean_inc(x_93); -lean_inc(x_85); -lean_inc(x_21); -x_693 = l_Lean_Syntax_node3(x_21, x_141, x_85, x_692, x_93); -lean_inc(x_21); -x_694 = l_Lean_Syntax_node3(x_21, x_28, x_691, x_588, x_693); -lean_inc(x_21); -x_695 = l_Lean_Syntax_node2(x_21, x_108, x_334, x_694); -x_696 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__474; -lean_inc(x_602); -x_697 = lean_array_push(x_602, x_696); -lean_inc(x_85); -x_698 = lean_array_push(x_697, x_85); -x_699 = lean_array_push(x_698, x_685); -lean_inc(x_93); -x_700 = lean_array_push(x_699, x_93); -lean_inc(x_114); -x_701 = lean_array_push(x_700, x_114); -x_702 = lean_array_push(x_701, x_695); -lean_inc(x_21); -x_703 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_703, 0, x_21); -lean_ctor_set(x_703, 1, x_610); -lean_ctor_set(x_703, 2, x_702); -lean_inc(x_93); -lean_inc(x_577); -lean_inc(x_51); -lean_inc(x_572); -lean_inc(x_85); -lean_inc(x_21); -x_704 = l_Lean_Syntax_node5(x_21, x_578, x_85, x_572, x_51, x_577, x_93); -x_705 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__490; -lean_inc(x_21); -x_706 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_706, 0, x_21); -lean_ctor_set(x_706, 1, x_705); -x_707 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__489; -lean_inc(x_572); -lean_inc(x_706); -lean_inc(x_704); -lean_inc(x_21); -x_708 = l_Lean_Syntax_node3(x_21, x_707, x_704, x_706, x_572); -x_709 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__495; -lean_inc(x_22); -lean_inc(x_23); -x_710 = l_Lean_addMacroScope(x_23, x_709, x_22); -x_711 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__492; -x_712 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__497; -lean_inc(x_21); -x_713 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_713, 0, x_21); -lean_ctor_set(x_713, 1, x_711); -lean_ctor_set(x_713, 2, x_710); -lean_ctor_set(x_713, 3, x_712); -lean_inc_n(x_127, 2); -lean_inc(x_21); -x_714 = l_Lean_Syntax_node3(x_21, x_133, x_127, x_127, x_713); -x_715 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__498; -lean_inc(x_21); -x_716 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_716, 0, x_21); -lean_ctor_set(x_716, 1, x_715); -lean_inc(x_21); -x_717 = l_Lean_Syntax_node1(x_21, x_137, x_716); -lean_inc(x_21); -x_718 = l_Lean_Syntax_node1(x_21, x_591, x_388); -lean_inc_n(x_718, 2); -lean_inc(x_21); -x_719 = l_Lean_Syntax_node3(x_21, x_707, x_718, x_706, x_718); -lean_inc(x_93); -lean_inc(x_85); -lean_inc(x_21); -x_720 = l_Lean_Syntax_node3(x_21, x_141, x_85, x_719, x_93); -lean_inc(x_717); -lean_inc(x_21); -x_721 = l_Lean_Syntax_node3(x_21, x_28, x_714, x_717, x_720); -lean_inc(x_501); -lean_inc(x_21); -x_722 = l_Lean_Syntax_node2(x_21, x_108, x_501, x_721); -x_723 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__487; -lean_inc(x_602); -x_724 = lean_array_push(x_602, x_723); -lean_inc(x_85); -x_725 = lean_array_push(x_724, x_85); -x_726 = lean_array_push(x_725, x_708); -lean_inc(x_93); -x_727 = lean_array_push(x_726, x_93); -lean_inc(x_114); -x_728 = lean_array_push(x_727, x_114); -x_729 = lean_array_push(x_728, x_722); -lean_inc(x_21); -x_730 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_730, 0, x_21); -lean_ctor_set(x_730, 1, x_610); -lean_ctor_set(x_730, 2, x_729); -x_731 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__504; -lean_inc(x_21); -x_732 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_732, 0, x_21); -lean_ctor_set(x_732, 1, x_731); -x_733 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__503; -lean_inc(x_572); -lean_inc(x_732); -lean_inc(x_704); -lean_inc(x_21); -x_734 = l_Lean_Syntax_node3(x_21, x_733, x_704, x_732, x_572); -x_735 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__509; -lean_inc(x_22); -lean_inc(x_23); -x_736 = l_Lean_addMacroScope(x_23, x_735, x_22); -x_737 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__506; -x_738 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__511; -lean_inc(x_21); -x_739 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_739, 0, x_21); -lean_ctor_set(x_739, 1, x_737); -lean_ctor_set(x_739, 2, x_736); -lean_ctor_set(x_739, 3, x_738); -lean_inc_n(x_127, 2); -lean_inc(x_21); -x_740 = l_Lean_Syntax_node3(x_21, x_133, x_127, x_127, x_739); -lean_inc_n(x_718, 2); -lean_inc(x_21); -x_741 = l_Lean_Syntax_node3(x_21, x_733, x_718, x_732, x_718); -lean_inc(x_93); -lean_inc(x_85); -lean_inc(x_21); -x_742 = l_Lean_Syntax_node3(x_21, x_141, x_85, x_741, x_93); -lean_inc(x_717); -lean_inc(x_21); -x_743 = l_Lean_Syntax_node3(x_21, x_28, x_740, x_717, x_742); -lean_inc(x_501); -lean_inc(x_21); -x_744 = l_Lean_Syntax_node2(x_21, x_108, x_501, x_743); -x_745 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__501; -lean_inc(x_602); -x_746 = lean_array_push(x_602, x_745); -lean_inc(x_85); -x_747 = lean_array_push(x_746, x_85); -x_748 = lean_array_push(x_747, x_734); -lean_inc(x_93); -x_749 = lean_array_push(x_748, x_93); -lean_inc(x_114); -x_750 = lean_array_push(x_749, x_114); -x_751 = lean_array_push(x_750, x_744); -lean_inc(x_21); -x_752 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_752, 0, x_21); -lean_ctor_set(x_752, 1, x_610); -lean_ctor_set(x_752, 2, x_751); -x_753 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__517; +x_750 = l_Lean_Syntax_node2(x_21, x_67, x_18, x_99); +x_751 = l_Lean_Syntax_getId(x_18); +lean_inc(x_751); +x_752 = l___private_Init_Meta_0__Lean_getEscapedNameParts_x3f(x_39, x_751); +x_753 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__476; lean_inc(x_21); x_754 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_754, 0, x_21); lean_ctor_set(x_754, 1, x_753); -x_755 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__516; -lean_inc(x_572); -lean_inc(x_754); -lean_inc(x_704); lean_inc(x_21); -x_756 = l_Lean_Syntax_node3(x_21, x_755, x_704, x_754, x_572); -x_757 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__522; +x_755 = l_Lean_Syntax_node1(x_21, x_387, x_754); +x_756 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__479; lean_inc(x_22); lean_inc(x_23); -x_758 = l_Lean_addMacroScope(x_23, x_757, x_22); -x_759 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__519; -x_760 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__524; +x_757 = l_Lean_addMacroScope(x_23, x_756, x_22); +x_758 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__478; lean_inc(x_21); -x_761 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_761, 0, x_21); -lean_ctor_set(x_761, 1, x_759); -lean_ctor_set(x_761, 2, x_758); -lean_ctor_set(x_761, 3, x_760); -lean_inc_n(x_127, 2); +x_759 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_759, 0, x_21); +lean_ctor_set(x_759, 1, x_758); +lean_ctor_set(x_759, 2, x_757); +lean_ctor_set(x_759, 3, x_39); lean_inc(x_21); -x_762 = l_Lean_Syntax_node3(x_21, x_133, x_127, x_127, x_761); -lean_inc_n(x_718, 2); +x_760 = l_Lean_Syntax_node1(x_21, x_28, x_759); +lean_inc(x_760); lean_inc(x_21); -x_763 = l_Lean_Syntax_node3(x_21, x_755, x_718, x_754, x_718); -lean_inc(x_93); -lean_inc(x_85); +x_761 = l_Lean_Syntax_node2(x_21, x_67, x_88, x_760); +lean_inc(x_106); lean_inc(x_21); -x_764 = l_Lean_Syntax_node3(x_21, x_141, x_85, x_763, x_93); -lean_inc(x_717); +x_762 = l_Lean_Syntax_node4(x_21, x_248, x_761, x_106, x_266, x_247); +lean_inc(x_30); +lean_inc(x_83); lean_inc(x_21); -x_765 = l_Lean_Syntax_node3(x_21, x_28, x_762, x_717, x_764); -lean_inc(x_501); +x_763 = l_Lean_Syntax_node3(x_21, x_250, x_83, x_30, x_762); +lean_inc(x_30); lean_inc(x_21); -x_766 = l_Lean_Syntax_node2(x_21, x_108, x_501, x_765); -x_767 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__514; -lean_inc(x_602); -x_768 = lean_array_push(x_602, x_767); -lean_inc(x_85); -x_769 = lean_array_push(x_768, x_85); -x_770 = lean_array_push(x_769, x_756); -lean_inc(x_93); -x_771 = lean_array_push(x_770, x_93); -lean_inc(x_114); -x_772 = lean_array_push(x_771, x_114); -x_773 = lean_array_push(x_772, x_766); +x_764 = l_Lean_Syntax_node2(x_21, x_125, x_763, x_30); lean_inc(x_21); -x_774 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_774, 0, x_21); -lean_ctor_set(x_774, 1, x_610); -lean_ctor_set(x_774, 2, x_773); -x_775 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__530; +x_765 = l_Lean_Syntax_node2(x_21, x_67, x_18, x_760); +lean_inc(x_79); +lean_inc_n(x_30, 2); lean_inc(x_21); -x_776 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_776, 0, x_21); -lean_ctor_set(x_776, 1, x_775); -x_777 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__529; -lean_inc(x_572); -lean_inc(x_776); -lean_inc(x_704); +x_766 = l_Lean_Syntax_node5(x_21, x_728, x_92, x_30, x_30, x_79, x_765); lean_inc(x_21); -x_778 = l_Lean_Syntax_node3(x_21, x_777, x_704, x_776, x_572); -x_779 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__535; +x_767 = l_Lean_Syntax_node1(x_21, x_730, x_766); +lean_inc(x_30); +lean_inc(x_83); +lean_inc(x_21); +x_768 = l_Lean_Syntax_node3(x_21, x_732, x_83, x_30, x_767); +lean_inc(x_30); +lean_inc(x_21); +x_769 = l_Lean_Syntax_node2(x_21, x_125, x_768, x_30); +lean_inc(x_21); +x_770 = l_Lean_Syntax_node2(x_21, x_67, x_287, x_132); +lean_inc(x_79); +lean_inc(x_282); +lean_inc(x_21); +x_771 = l_Lean_Syntax_node3(x_21, x_293, x_282, x_79, x_770); +lean_inc(x_21); +x_772 = l_Lean_Syntax_node1(x_21, x_28, x_771); +lean_inc(x_299); +lean_inc(x_297); +lean_inc_n(x_30, 2); +lean_inc(x_276); +lean_inc(x_21); +x_773 = l_Lean_Syntax_node6(x_21, x_300, x_276, x_30, x_772, x_297, x_30, x_299); +lean_inc(x_21); +x_774 = l_Lean_Syntax_node1(x_21, x_28, x_773); +lean_inc(x_274); +lean_inc(x_21); +x_775 = l_Lean_Syntax_node2(x_21, x_67, x_274, x_774); +lean_inc(x_21); +x_776 = l_Lean_Syntax_node1(x_21, x_28, x_775); +lean_inc(x_116); +lean_inc(x_21); +x_777 = l_Lean_Syntax_node2(x_21, x_123, x_116, x_776); +lean_inc(x_30); +lean_inc(x_21); +x_778 = l_Lean_Syntax_node2(x_21, x_125, x_777, x_30); +x_779 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__475; +x_780 = lean_array_push(x_402, x_779); +lean_inc(x_36); +x_781 = lean_array_push(x_780, x_36); +x_782 = lean_array_push(x_781, x_750); +lean_inc(x_52); +x_783 = lean_array_push(x_782, x_52); +lean_inc(x_79); +x_784 = lean_array_push(x_783, x_79); +x_785 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__482; +lean_inc(x_21); +x_786 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_786, 0, x_21); +lean_ctor_set(x_786, 1, x_785); +x_787 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__483; +lean_inc(x_21); +x_788 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_788, 0, x_21); +lean_ctor_set(x_788, 1, x_787); +x_789 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__481; +lean_inc(x_21); +x_790 = l_Lean_Syntax_node2(x_21, x_789, x_786, x_788); +lean_inc(x_21); +x_791 = l_Lean_Syntax_node1(x_21, x_28, x_790); +lean_inc(x_21); +x_792 = l_Lean_Syntax_node1(x_21, x_28, x_367); +lean_inc(x_21); +x_793 = l_Lean_Syntax_node3(x_21, x_28, x_358, x_792, x_154); +x_794 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__486; lean_inc(x_22); lean_inc(x_23); -x_780 = l_Lean_addMacroScope(x_23, x_779, x_22); -x_781 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__532; -x_782 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__537; +x_795 = l_Lean_addMacroScope(x_23, x_794, x_22); +x_796 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__485; lean_inc(x_21); -x_783 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_783, 0, x_21); -lean_ctor_set(x_783, 1, x_781); -lean_ctor_set(x_783, 2, x_780); -lean_ctor_set(x_783, 3, x_782); -lean_inc_n(x_127, 2); +x_797 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_797, 0, x_21); +lean_ctor_set(x_797, 1, x_796); +lean_ctor_set(x_797, 2, x_795); +lean_ctor_set(x_797, 3, x_39); +x_798 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__490; +x_799 = l_Lean_addMacroScope(x_23, x_798, x_22); +x_800 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__488; +x_801 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__492; lean_inc(x_21); -x_784 = l_Lean_Syntax_node3(x_21, x_133, x_127, x_127, x_783); -lean_inc_n(x_718, 2); -lean_inc(x_21); -x_785 = l_Lean_Syntax_node3(x_21, x_777, x_718, x_776, x_718); -lean_inc(x_93); -lean_inc(x_85); -lean_inc(x_21); -x_786 = l_Lean_Syntax_node3(x_21, x_141, x_85, x_785, x_93); -lean_inc(x_717); -lean_inc(x_21); -x_787 = l_Lean_Syntax_node3(x_21, x_28, x_784, x_717, x_786); -lean_inc(x_501); -lean_inc(x_21); -x_788 = l_Lean_Syntax_node2(x_21, x_108, x_501, x_787); -x_789 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__527; -lean_inc(x_602); -x_790 = lean_array_push(x_602, x_789); -lean_inc(x_85); -x_791 = lean_array_push(x_790, x_85); -x_792 = lean_array_push(x_791, x_778); -lean_inc(x_93); -x_793 = lean_array_push(x_792, x_93); -lean_inc(x_114); -x_794 = lean_array_push(x_793, x_114); -x_795 = lean_array_push(x_794, x_788); -lean_inc(x_21); -x_796 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_796, 0, x_21); -lean_ctor_set(x_796, 1, x_610); -lean_ctor_set(x_796, 2, x_795); -x_797 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__540; -lean_inc(x_22); -lean_inc(x_23); -x_798 = l_Lean_addMacroScope(x_23, x_797, x_22); -x_799 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__539; -lean_inc(x_21); -x_800 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_800, 0, x_21); -lean_ctor_set(x_800, 1, x_799); -lean_ctor_set(x_800, 2, x_798); -lean_ctor_set(x_800, 3, x_39); -x_801 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__543; -lean_inc(x_21); -x_802 = lean_alloc_ctor(2, 2, 0); +x_802 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_802, 0, x_21); -lean_ctor_set(x_802, 1, x_801); -x_803 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__542; -lean_inc(x_572); +lean_ctor_set(x_802, 1, x_800); +lean_ctor_set(x_802, 2, x_799); +lean_ctor_set(x_802, 3, x_801); lean_inc(x_802); -lean_inc(x_704); lean_inc(x_21); -x_804 = l_Lean_Syntax_node3(x_21, x_803, x_704, x_802, x_572); -x_805 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__546; -lean_inc(x_22); -lean_inc(x_23); -x_806 = l_Lean_addMacroScope(x_23, x_805, x_22); -x_807 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__545; -x_808 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__550; +x_803 = l_Lean_Syntax_node2(x_21, x_67, x_802, x_99); +lean_inc(x_52); +lean_inc(x_66); +lean_inc(x_36); lean_inc(x_21); -x_809 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_809, 0, x_21); -lean_ctor_set(x_809, 1, x_807); -lean_ctor_set(x_809, 2, x_806); -lean_ctor_set(x_809, 3, x_808); -lean_inc_n(x_127, 2); +x_804 = l_Lean_Syntax_node5(x_21, x_374, x_36, x_803, x_44, x_66, x_52); +lean_inc(x_377); lean_inc(x_21); -x_810 = l_Lean_Syntax_node3(x_21, x_133, x_127, x_127, x_809); -lean_inc_n(x_718, 2); +x_805 = l_Lean_Syntax_node3(x_21, x_383, x_377, x_377, x_802); lean_inc(x_21); -x_811 = l_Lean_Syntax_node3(x_21, x_803, x_718, x_802, x_718); -lean_inc(x_93); -lean_inc(x_85); +x_806 = l_Lean_Syntax_node2(x_21, x_28, x_805, x_613); +lean_inc(x_217); lean_inc(x_21); -x_812 = l_Lean_Syntax_node3(x_21, x_141, x_85, x_811, x_93); -lean_inc(x_138); +x_807 = l_Lean_Syntax_node2(x_21, x_67, x_217, x_806); +lean_inc(x_52); +lean_inc(x_36); lean_inc(x_21); -x_813 = l_Lean_Syntax_node3(x_21, x_28, x_810, x_138, x_812); -lean_inc(x_501); +x_808 = l_Lean_Syntax_node3(x_21, x_69, x_36, x_807, x_52); +lean_inc(x_232); +lean_inc(x_81); +lean_inc(x_213); lean_inc(x_21); -x_814 = l_Lean_Syntax_node2(x_21, x_108, x_501, x_813); -lean_inc(x_602); -x_815 = lean_array_push(x_602, x_800); -lean_inc(x_85); -x_816 = lean_array_push(x_815, x_85); -x_817 = lean_array_push(x_816, x_804); -lean_inc(x_93); -x_818 = lean_array_push(x_817, x_93); -lean_inc(x_114); -x_819 = lean_array_push(x_818, x_114); -x_820 = lean_array_push(x_819, x_814); -lean_inc(x_21); -x_821 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_821, 0, x_21); -lean_ctor_set(x_821, 1, x_610); -lean_ctor_set(x_821, 2, x_820); -x_822 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__553; -lean_inc(x_22); -lean_inc(x_23); -x_823 = l_Lean_addMacroScope(x_23, x_822, x_22); -x_824 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__552; -lean_inc(x_21); -x_825 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_825, 0, x_21); -lean_ctor_set(x_825, 1, x_824); -lean_ctor_set(x_825, 2, x_823); -lean_ctor_set(x_825, 3, x_39); -x_826 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__556; -lean_inc(x_21); -x_827 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_827, 0, x_21); -lean_ctor_set(x_827, 1, x_826); -x_828 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__555; -lean_inc(x_572); -lean_inc(x_827); -lean_inc(x_704); -lean_inc(x_21); -x_829 = l_Lean_Syntax_node3(x_21, x_828, x_704, x_827, x_572); -x_830 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__559; -lean_inc(x_22); -lean_inc(x_23); -x_831 = l_Lean_addMacroScope(x_23, x_830, x_22); -x_832 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__558; -x_833 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__563; -lean_inc(x_21); -x_834 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_834, 0, x_21); -lean_ctor_set(x_834, 1, x_832); -lean_ctor_set(x_834, 2, x_831); -lean_ctor_set(x_834, 3, x_833); -lean_inc_n(x_127, 2); -lean_inc(x_21); -x_835 = l_Lean_Syntax_node3(x_21, x_133, x_127, x_127, x_834); -lean_inc_n(x_718, 2); -lean_inc(x_21); -x_836 = l_Lean_Syntax_node3(x_21, x_828, x_718, x_827, x_718); -lean_inc(x_93); -lean_inc(x_85); -lean_inc(x_21); -x_837 = l_Lean_Syntax_node3(x_21, x_141, x_85, x_836, x_93); -lean_inc(x_21); -x_838 = l_Lean_Syntax_node3(x_21, x_28, x_835, x_138, x_837); -lean_inc(x_21); -x_839 = l_Lean_Syntax_node2(x_21, x_108, x_501, x_838); -lean_inc(x_602); -x_840 = lean_array_push(x_602, x_825); -lean_inc(x_85); -x_841 = lean_array_push(x_840, x_85); -x_842 = lean_array_push(x_841, x_829); -lean_inc(x_93); -x_843 = lean_array_push(x_842, x_93); -lean_inc(x_114); -x_844 = lean_array_push(x_843, x_114); -x_845 = lean_array_push(x_844, x_839); -lean_inc(x_21); -x_846 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_846, 0, x_21); -lean_ctor_set(x_846, 1, x_610); -lean_ctor_set(x_846, 2, x_845); -x_847 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__566; -lean_inc(x_22); -lean_inc(x_23); -x_848 = l_Lean_addMacroScope(x_23, x_847, x_22); -x_849 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__565; -lean_inc(x_21); -x_850 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_850, 0, x_21); -lean_ctor_set(x_850, 1, x_849); -lean_ctor_set(x_850, 2, x_848); -lean_ctor_set(x_850, 3, x_39); -x_851 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__569; -lean_inc(x_21); -x_852 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_852, 0, x_21); -lean_ctor_set(x_852, 1, x_851); -x_853 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__568; -lean_inc(x_572); -lean_inc(x_852); -lean_inc(x_704); -lean_inc(x_21); -x_854 = l_Lean_Syntax_node3(x_21, x_853, x_704, x_852, x_572); -x_855 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__574; -lean_inc(x_22); -lean_inc(x_23); -x_856 = l_Lean_addMacroScope(x_23, x_855, x_22); -x_857 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__571; -x_858 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__576; -lean_inc(x_21); -x_859 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_859, 0, x_21); -lean_ctor_set(x_859, 1, x_857); -lean_ctor_set(x_859, 2, x_856); -lean_ctor_set(x_859, 3, x_858); -lean_inc_n(x_127, 2); -lean_inc(x_21); -x_860 = l_Lean_Syntax_node3(x_21, x_133, x_127, x_127, x_859); -lean_inc_n(x_718, 2); -lean_inc(x_21); -x_861 = l_Lean_Syntax_node3(x_21, x_853, x_718, x_852, x_718); -lean_inc(x_93); -lean_inc(x_85); -lean_inc(x_21); -x_862 = l_Lean_Syntax_node3(x_21, x_141, x_85, x_861, x_93); -lean_inc(x_717); -lean_inc(x_21); -x_863 = l_Lean_Syntax_node3(x_21, x_28, x_860, x_717, x_862); -lean_inc(x_533); -lean_inc(x_21); -x_864 = l_Lean_Syntax_node2(x_21, x_108, x_533, x_863); -lean_inc(x_602); -x_865 = lean_array_push(x_602, x_850); -lean_inc(x_85); -x_866 = lean_array_push(x_865, x_85); -x_867 = lean_array_push(x_866, x_854); -lean_inc(x_93); -x_868 = lean_array_push(x_867, x_93); -lean_inc(x_114); -x_869 = lean_array_push(x_868, x_114); -x_870 = lean_array_push(x_869, x_864); -lean_inc(x_21); -x_871 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_871, 0, x_21); -lean_ctor_set(x_871, 1, x_610); -lean_ctor_set(x_871, 2, x_870); -x_872 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__579; -lean_inc(x_22); -lean_inc(x_23); -x_873 = l_Lean_addMacroScope(x_23, x_872, x_22); -x_874 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__578; -lean_inc(x_21); -x_875 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_875, 0, x_21); -lean_ctor_set(x_875, 1, x_874); -lean_ctor_set(x_875, 2, x_873); -lean_ctor_set(x_875, 3, x_39); -x_876 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__582; -lean_inc(x_21); -x_877 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_877, 0, x_21); -lean_ctor_set(x_877, 1, x_876); -x_878 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__581; -lean_inc(x_572); -lean_inc(x_877); -lean_inc(x_21); -x_879 = l_Lean_Syntax_node3(x_21, x_878, x_704, x_877, x_572); -x_880 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__585; -lean_inc(x_22); -lean_inc(x_23); -x_881 = l_Lean_addMacroScope(x_23, x_880, x_22); -x_882 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__584; -x_883 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__589; -lean_inc(x_21); -x_884 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_884, 0, x_21); -lean_ctor_set(x_884, 1, x_882); -lean_ctor_set(x_884, 2, x_881); -lean_ctor_set(x_884, 3, x_883); -lean_inc(x_127); -lean_inc(x_21); -x_885 = l_Lean_Syntax_node3(x_21, x_133, x_127, x_127, x_884); -lean_inc(x_718); -lean_inc(x_21); -x_886 = l_Lean_Syntax_node3(x_21, x_878, x_718, x_877, x_718); -lean_inc(x_93); -lean_inc(x_85); -lean_inc(x_21); -x_887 = l_Lean_Syntax_node3(x_21, x_141, x_85, x_886, x_93); -lean_inc(x_21); -x_888 = l_Lean_Syntax_node3(x_21, x_28, x_885, x_717, x_887); -lean_inc(x_21); -x_889 = l_Lean_Syntax_node2(x_21, x_108, x_533, x_888); -lean_inc(x_602); -x_890 = lean_array_push(x_602, x_875); -lean_inc(x_85); -x_891 = lean_array_push(x_890, x_85); -x_892 = lean_array_push(x_891, x_879); -lean_inc(x_93); -x_893 = lean_array_push(x_892, x_93); -lean_inc(x_114); -x_894 = lean_array_push(x_893, x_114); -x_895 = lean_array_push(x_894, x_889); -lean_inc(x_21); -x_896 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_896, 0, x_21); -lean_ctor_set(x_896, 1, x_610); -lean_ctor_set(x_896, 2, x_895); -lean_inc_n(x_572, 2); -lean_inc(x_21); -x_897 = l_Lean_Syntax_node2(x_21, x_28, x_572, x_572); -lean_inc(x_15); -lean_inc(x_21); -x_898 = l_Lean_Syntax_node2(x_21, x_108, x_15, x_897); -x_899 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__593; -lean_inc(x_21); -x_900 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_900, 0, x_21); -lean_ctor_set(x_900, 1, x_899); -x_901 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__597; -lean_inc(x_21); -x_902 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_902, 0, x_21); -lean_ctor_set(x_902, 1, x_901); -x_903 = l_Lean_Syntax_getId(x_15); -lean_dec(x_15); -lean_inc(x_903); -x_904 = l___private_Init_Meta_0__Lean_getEscapedNameParts_x3f(x_39, x_903); -x_905 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__598; -lean_inc(x_21); -x_906 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_906, 0, x_21); -lean_ctor_set(x_906, 1, x_905); -lean_inc(x_21); -x_907 = l_Lean_Syntax_node1(x_21, x_137, x_906); -lean_inc(x_195); -lean_inc(x_408); -lean_inc(x_21); -x_908 = l_Lean_Syntax_node2(x_21, x_108, x_408, x_195); -lean_inc(x_421); -lean_inc(x_156); -lean_inc(x_21); -x_909 = l_Lean_Syntax_node4(x_21, x_422, x_908, x_156, x_190, x_421); -lean_inc(x_30); -lean_inc(x_150); -lean_inc(x_21); -x_910 = l_Lean_Syntax_node3(x_21, x_171, x_150, x_30, x_909); +x_809 = l_Lean_Syntax_node4(x_21, x_233, x_213, x_808, x_81, x_232); lean_inc(x_30); lean_inc(x_21); -x_911 = l_Lean_Syntax_node2(x_21, x_147, x_910, x_30); -x_912 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__601; -lean_inc(x_22); -lean_inc(x_23); -x_913 = l_Lean_addMacroScope(x_23, x_912, x_22); -x_914 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__600; +x_810 = l_Lean_Syntax_node2(x_21, x_125, x_809, x_30); +lean_inc(x_41); +lean_inc(x_79); lean_inc(x_21); -x_915 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_915, 0, x_21); -lean_ctor_set(x_915, 1, x_914); -lean_ctor_set(x_915, 2, x_913); -lean_ctor_set(x_915, 3, x_39); -x_916 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__12; +x_811 = l_Lean_Syntax_node3(x_21, x_293, x_282, x_79, x_41); lean_inc(x_21); -x_917 = l_Lean_Syntax_node2(x_21, x_108, x_916, x_195); -lean_inc(x_114); -lean_inc_n(x_30, 2); -lean_inc(x_915); -lean_inc(x_21); -x_918 = l_Lean_Syntax_node5(x_21, x_197, x_915, x_30, x_30, x_114, x_917); -lean_inc(x_21); -x_919 = l_Lean_Syntax_node1(x_21, x_199, x_918); -lean_inc(x_30); -lean_inc(x_150); -lean_inc(x_21); -x_920 = l_Lean_Syntax_node3(x_21, x_201, x_150, x_30, x_919); -lean_inc(x_30); -lean_inc(x_21); -x_921 = l_Lean_Syntax_node2(x_21, x_147, x_920, x_30); -lean_inc(x_114); -lean_inc(x_477); -lean_inc(x_21); -x_922 = l_Lean_Syntax_node3(x_21, x_218, x_477, x_114, x_915); -lean_inc(x_21); -x_923 = l_Lean_Syntax_node1(x_21, x_28, x_922); -lean_inc(x_224); -lean_inc(x_222); -lean_inc_n(x_30, 2); -lean_inc(x_207); -lean_inc(x_21); -x_924 = l_Lean_Syntax_node6(x_21, x_225, x_207, x_30, x_923, x_222, x_30, x_224); -lean_inc(x_21); -x_925 = l_Lean_Syntax_node1(x_21, x_28, x_924); -lean_inc(x_472); -lean_inc(x_21); -x_926 = l_Lean_Syntax_node2(x_21, x_108, x_472, x_925); -lean_inc(x_21); -x_927 = l_Lean_Syntax_node1(x_21, x_28, x_926); -lean_inc(x_205); -lean_inc(x_21); -x_928 = l_Lean_Syntax_node2(x_21, x_228, x_205, x_927); -lean_inc(x_30); -lean_inc(x_21); -x_929 = l_Lean_Syntax_node2(x_21, x_147, x_928, x_30); -x_930 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__592; -lean_inc(x_602); -x_931 = lean_array_push(x_602, x_930); -lean_inc(x_85); -x_932 = lean_array_push(x_931, x_85); -x_933 = lean_array_push(x_932, x_898); -lean_inc(x_93); -x_934 = lean_array_push(x_933, x_93); -lean_inc(x_114); -x_935 = lean_array_push(x_934, x_114); -lean_inc(x_21); -x_936 = l_Lean_Syntax_node1(x_21, x_28, x_572); -lean_inc(x_936); -lean_inc(x_18); -lean_inc(x_21); -x_937 = l_Lean_Syntax_node2(x_21, x_108, x_18, x_936); -x_938 = l_Lean_Syntax_getId(x_18); -lean_inc(x_938); -x_939 = l___private_Init_Meta_0__Lean_getEscapedNameParts_x3f(x_39, x_938); -x_940 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__605; -lean_inc(x_21); -x_941 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_941, 0, x_21); -lean_ctor_set(x_941, 1, x_940); -lean_inc(x_21); -x_942 = l_Lean_Syntax_node1(x_21, x_137, x_941); -lean_inc(x_21); -x_943 = l_Lean_Syntax_node2(x_21, x_108, x_408, x_237); -lean_inc(x_21); -x_944 = l_Lean_Syntax_node4(x_21, x_422, x_943, x_156, x_439, x_421); -lean_inc(x_30); -lean_inc(x_150); -lean_inc(x_21); -x_945 = l_Lean_Syntax_node3(x_21, x_171, x_150, x_30, x_944); -lean_inc(x_30); -lean_inc(x_21); -x_946 = l_Lean_Syntax_node2(x_21, x_147, x_945, x_30); -x_947 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__608; -lean_inc(x_22); -lean_inc(x_23); -x_948 = l_Lean_addMacroScope(x_23, x_947, x_22); -x_949 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__607; -lean_inc(x_21); -x_950 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_950, 0, x_21); -lean_ctor_set(x_950, 1, x_949); -lean_ctor_set(x_950, 2, x_948); -lean_ctor_set(x_950, 3, x_39); -lean_inc(x_21); -x_951 = l_Lean_Syntax_node1(x_21, x_28, x_950); -lean_inc(x_21); -x_952 = l_Lean_Syntax_node2(x_21, x_108, x_18, x_951); -lean_inc(x_114); +x_812 = l_Lean_Syntax_node1(x_21, x_28, x_811); lean_inc_n(x_30, 2); lean_inc(x_21); -x_953 = l_Lean_Syntax_node5(x_21, x_197, x_412, x_30, x_30, x_114, x_952); +x_813 = l_Lean_Syntax_node6(x_21, x_300, x_276, x_30, x_812, x_297, x_30, x_299); lean_inc(x_21); -x_954 = l_Lean_Syntax_node1(x_21, x_199, x_953); -lean_inc(x_30); -lean_inc(x_150); +x_814 = l_Lean_Syntax_node1(x_21, x_28, x_813); lean_inc(x_21); -x_955 = l_Lean_Syntax_node3(x_21, x_201, x_150, x_30, x_954); +x_815 = l_Lean_Syntax_node2(x_21, x_67, x_274, x_814); +lean_inc(x_21); +x_816 = l_Lean_Syntax_node1(x_21, x_28, x_815); +lean_inc(x_21); +x_817 = l_Lean_Syntax_node2(x_21, x_123, x_116, x_816); lean_inc(x_30); lean_inc(x_21); -x_956 = l_Lean_Syntax_node2(x_21, x_147, x_955, x_30); -x_957 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__611; -lean_inc(x_22); -lean_inc(x_23); -x_958 = l_Lean_addMacroScope(x_23, x_957, x_22); -x_959 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__610; -x_960 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__616; +x_818 = l_Lean_Syntax_node2(x_21, x_125, x_817, x_30); lean_inc(x_21); -x_961 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_961, 0, x_21); -lean_ctor_set(x_961, 1, x_959); -lean_ctor_set(x_961, 2, x_958); -lean_ctor_set(x_961, 3, x_960); +x_819 = l_Lean_Syntax_node2(x_21, x_28, x_810, x_818); lean_inc(x_21); -x_962 = l_Lean_Syntax_node2(x_21, x_108, x_961, x_413); -lean_inc(x_114); -lean_inc(x_477); +x_820 = l_Lean_Syntax_node1(x_21, x_128, x_819); +lean_inc(x_81); lean_inc(x_21); -x_963 = l_Lean_Syntax_node3(x_21, x_218, x_477, x_114, x_962); -lean_inc(x_21); -x_964 = l_Lean_Syntax_node1(x_21, x_28, x_963); -lean_inc(x_224); -lean_inc(x_222); -lean_inc_n(x_30, 2); -lean_inc(x_207); -lean_inc(x_21); -x_965 = l_Lean_Syntax_node6(x_21, x_225, x_207, x_30, x_964, x_222, x_30, x_224); -lean_inc(x_21); -x_966 = l_Lean_Syntax_node1(x_21, x_28, x_965); -lean_inc(x_472); -lean_inc(x_21); -x_967 = l_Lean_Syntax_node2(x_21, x_108, x_472, x_966); -lean_inc(x_21); -x_968 = l_Lean_Syntax_node1(x_21, x_28, x_967); -lean_inc(x_205); -lean_inc(x_21); -x_969 = l_Lean_Syntax_node2(x_21, x_228, x_205, x_968); +x_821 = l_Lean_Syntax_node2(x_21, x_309, x_81, x_820); +x_822 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__453; +lean_inc(x_705); lean_inc(x_30); +lean_inc(x_42); lean_inc(x_21); -x_970 = l_Lean_Syntax_node2(x_21, x_147, x_969, x_30); -x_971 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__604; -x_972 = lean_array_push(x_602, x_971); -lean_inc(x_85); -x_973 = lean_array_push(x_972, x_85); -x_974 = lean_array_push(x_973, x_937); -lean_inc(x_93); -x_975 = lean_array_push(x_974, x_93); -lean_inc(x_114); -x_976 = lean_array_push(x_975, x_114); -x_977 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__619; +x_823 = l_Lean_Syntax_node4(x_21, x_822, x_42, x_30, x_705, x_821); +x_824 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__451; +lean_inc(x_703); lean_inc(x_21); -x_978 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_978, 0, x_21); -lean_ctor_set(x_978, 1, x_977); -x_979 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__620; -lean_inc(x_21); -x_980 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_980, 0, x_21); -lean_ctor_set(x_980, 1, x_979); -x_981 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__618; -lean_inc(x_21); -x_982 = l_Lean_Syntax_node2(x_21, x_981, x_978, x_980); -lean_inc(x_21); -x_983 = l_Lean_Syntax_node1(x_21, x_28, x_982); -lean_inc(x_21); -x_984 = l_Lean_Syntax_node1(x_21, x_28, x_566); -lean_inc(x_21); -x_985 = l_Lean_Syntax_node3(x_21, x_28, x_270, x_984, x_278); -x_986 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__623; -x_987 = l_Lean_addMacroScope(x_23, x_986, x_22); -x_988 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__622; -lean_inc(x_21); -x_989 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_989, 0, x_21); -lean_ctor_set(x_989, 1, x_988); -lean_ctor_set(x_989, 2, x_987); -lean_ctor_set(x_989, 3, x_39); -lean_inc(x_21); -x_990 = l_Lean_Syntax_node2(x_21, x_108, x_132, x_936); -lean_inc(x_93); -lean_inc(x_577); -lean_inc(x_85); -lean_inc(x_21); -x_991 = l_Lean_Syntax_node5(x_21, x_578, x_85, x_990, x_51, x_577, x_93); -lean_inc(x_400); -lean_inc(x_116); -lean_inc(x_384); -lean_inc(x_21); -x_992 = l_Lean_Syntax_node4(x_21, x_401, x_384, x_142, x_116, x_400); +x_825 = l_Lean_Syntax_node2(x_21, x_824, x_703, x_823); +x_826 = lean_array_push(x_397, x_791); +x_827 = lean_array_push(x_826, x_142); +x_828 = lean_array_push(x_827, x_356); lean_inc(x_30); +x_829 = lean_array_push(x_828, x_30); +x_830 = lean_array_push(x_829, x_793); +x_831 = lean_array_push(x_830, x_797); +x_832 = lean_array_push(x_831, x_36); +x_833 = lean_array_push(x_832, x_804); +x_834 = lean_array_push(x_833, x_52); +lean_inc(x_79); +x_835 = lean_array_push(x_834, x_79); +x_836 = lean_array_push(x_835, x_825); lean_inc(x_21); -x_993 = l_Lean_Syntax_node2(x_21, x_147, x_992, x_30); -lean_inc(x_114); +x_837 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_837, 0, x_21); +lean_ctor_set(x_837, 1, x_410); +lean_ctor_set(x_837, 2, x_836); +x_838 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__493; lean_inc(x_21); -x_994 = l_Lean_Syntax_node3(x_21, x_218, x_477, x_114, x_89); +x_839 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_839, 0, x_21); +lean_ctor_set(x_839, 1, x_838); +x_840 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__494; lean_inc(x_21); -x_995 = l_Lean_Syntax_node1(x_21, x_28, x_994); -lean_inc_n(x_30, 2); -lean_inc(x_21); -x_996 = l_Lean_Syntax_node6(x_21, x_225, x_207, x_30, x_995, x_222, x_30, x_224); -lean_inc(x_21); -x_997 = l_Lean_Syntax_node1(x_21, x_28, x_996); -lean_inc(x_21); -x_998 = l_Lean_Syntax_node2(x_21, x_108, x_472, x_997); -lean_inc(x_21); -x_999 = l_Lean_Syntax_node1(x_21, x_28, x_998); -lean_inc(x_21); -x_1000 = l_Lean_Syntax_node2(x_21, x_228, x_205, x_999); -lean_inc(x_30); -lean_inc(x_21); -x_1001 = l_Lean_Syntax_node2(x_21, x_147, x_1000, x_30); -lean_inc(x_21); -x_1002 = l_Lean_Syntax_node2(x_21, x_28, x_993, x_1001); -lean_inc(x_21); -x_1003 = l_Lean_Syntax_node1(x_21, x_399, x_1002); -lean_inc(x_116); -lean_inc(x_21); -x_1004 = l_Lean_Syntax_node2(x_21, x_491, x_116, x_1003); -x_1005 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__596; -lean_inc(x_902); -lean_inc(x_30); -lean_inc(x_90); -lean_inc(x_21); -x_1006 = l_Lean_Syntax_node4(x_21, x_1005, x_90, x_30, x_902, x_1004); -x_1007 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__594; -lean_inc(x_900); -lean_inc(x_21); -x_1008 = l_Lean_Syntax_node2(x_21, x_1007, x_900, x_1006); -x_1009 = lean_array_push(x_597, x_983); -x_1010 = lean_array_push(x_1009, x_316); -x_1011 = lean_array_push(x_1010, x_557); -lean_inc(x_30); -x_1012 = lean_array_push(x_1011, x_30); -x_1013 = lean_array_push(x_1012, x_985); -x_1014 = lean_array_push(x_1013, x_989); -lean_inc(x_85); -x_1015 = lean_array_push(x_1014, x_85); -x_1016 = lean_array_push(x_1015, x_991); -lean_inc(x_93); -x_1017 = lean_array_push(x_1016, x_93); -lean_inc(x_114); -x_1018 = lean_array_push(x_1017, x_114); -x_1019 = lean_array_push(x_1018, x_1008); -lean_inc(x_21); -x_1020 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_1020, 0, x_21); -lean_ctor_set(x_1020, 1, x_610); -lean_ctor_set(x_1020, 2, x_1019); -x_1021 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__624; -lean_inc(x_21); -x_1022 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_1022, 0, x_21); -lean_ctor_set(x_1022, 1, x_1021); -x_1023 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__625; -lean_inc(x_21); -x_1024 = l_Lean_Syntax_node2(x_21, x_1023, x_1022, x_577); -x_1025 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__626; -x_1026 = lean_array_push(x_1025, x_27); -x_1027 = lean_array_push(x_1026, x_81); -if (lean_obj_tag(x_178) == 0) +x_841 = l_Lean_Syntax_node2(x_21, x_840, x_839, x_66); +x_842 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__495; +x_843 = lean_array_push(x_842, x_27); +if (lean_obj_tag(x_112) == 0) { -lean_object* x_1164; -x_1164 = l_Lean_quoteNameMk(x_10); -x_1028 = x_1164; -goto block_1163; +lean_object* x_942; +x_942 = l_Lean_quoteNameMk(x_10); +x_844 = x_942; +goto block_941; } else { -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_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_dec(x_10); -x_1165 = lean_ctor_get(x_178, 0); -lean_inc(x_1165); -lean_dec(x_178); -x_1166 = l_String_intercalate(x_387, x_1165); -x_1167 = lean_string_append(x_126, x_1166); -lean_dec(x_1166); -x_1168 = lean_box(2); -x_1169 = l_Lean_Syntax_mkNameLit(x_1167, x_1168); -x_1170 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__629; -x_1171 = lean_array_push(x_1170, x_1169); -x_1172 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__628; -x_1173 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_1173, 0, x_1168); -lean_ctor_set(x_1173, 1, x_1172); -lean_ctor_set(x_1173, 2, x_1171); -x_1028 = x_1173; -goto block_1163; +x_943 = lean_ctor_get(x_112, 0); +lean_inc(x_943); +lean_dec(x_112); +x_944 = l_String_intercalate(x_220, x_943); +x_945 = lean_string_append(x_376, x_944); +lean_dec(x_944); +x_946 = lean_box(2); +x_947 = l_Lean_Syntax_mkNameLit(x_945, x_946); +x_948 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__498; +x_949 = lean_array_push(x_948, x_947); +x_950 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__497; +x_951 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_951, 0, x_946); +lean_ctor_set(x_951, 1, x_950); +lean_ctor_set(x_951, 2, x_949); +x_844 = x_951; +goto block_941; } -block_1163: +block_941: { -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_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_inc(x_21); -x_1029 = l_Lean_Syntax_node1(x_21, x_28, x_1028); -lean_inc(x_1029); +x_845 = l_Lean_Syntax_node2(x_21, x_28, x_41, x_844); lean_inc(x_21); -x_1030 = l_Lean_Syntax_node2(x_21, x_108, x_177, x_1029); -lean_inc(x_93); -lean_inc(x_85); +x_846 = l_Lean_Syntax_node2(x_21, x_67, x_111, x_845); lean_inc(x_21); -x_1031 = l_Lean_Syntax_node3(x_21, x_141, x_85, x_1030, x_93); +x_847 = l_Lean_Syntax_node1(x_21, x_245, x_846); lean_inc(x_21); -x_1032 = l_Lean_Syntax_node1(x_21, x_28, x_1031); -lean_inc(x_21); -x_1033 = l_Lean_Syntax_node2(x_21, x_108, x_121, x_1032); -lean_inc(x_21); -x_1034 = l_Lean_Syntax_node1(x_21, x_145, x_1033); +x_848 = l_Lean_Syntax_node4(x_21, x_248, x_104, x_106, x_847, x_130); lean_inc(x_30); lean_inc(x_21); -x_1035 = l_Lean_Syntax_node2(x_21, x_147, x_1034, x_30); -lean_inc(x_203); -lean_inc(x_21); -x_1036 = l_Lean_Syntax_node6(x_21, x_28, x_148, x_173, x_1035, x_193, x_203, x_230); -lean_inc(x_21); -x_1037 = l_Lean_Syntax_node1(x_21, x_399, x_1036); -lean_inc(x_116); -lean_inc(x_21); -x_1038 = l_Lean_Syntax_node2(x_21, x_491, x_116, x_1037); +x_849 = l_Lean_Syntax_node3(x_21, x_250, x_83, x_30, x_848); lean_inc(x_30); +lean_inc(x_21); +x_850 = l_Lean_Syntax_node2(x_21, x_125, x_849, x_30); +lean_inc(x_21); +x_851 = l_Lean_Syntax_node2(x_21, x_28, x_850, x_136); +lean_inc(x_21); +x_852 = l_Lean_Syntax_node1(x_21, x_128, x_851); +lean_inc(x_81); +lean_inc(x_21); +x_853 = l_Lean_Syntax_node2(x_21, x_309, x_81, x_852); +lean_inc(x_30); +lean_inc(x_21); +x_854 = l_Lean_Syntax_node4(x_21, x_311, x_79, x_853, x_138, x_30); +x_855 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__30; +lean_inc(x_30); +lean_inc(x_21); +x_856 = l_Lean_Syntax_node5(x_21, x_313, x_34, x_855, x_77, x_854, x_30); +lean_inc(x_21); +x_857 = l_Lean_Syntax_node2(x_21, x_315, x_32, x_856); +x_858 = lean_array_push(x_843, x_857); +x_859 = lean_array_push(x_858, x_316); +x_860 = lean_array_push(x_859, x_347); +x_861 = lean_array_push(x_860, x_354); +x_862 = lean_array_push(x_861, x_411); +x_863 = lean_array_push(x_862, x_434); +x_864 = lean_array_push(x_863, x_457); +x_865 = lean_array_push(x_864, x_480); +x_866 = lean_array_push(x_865, x_503); +x_867 = lean_array_push(x_866, x_530); +x_868 = lean_array_push(x_867, x_552); +x_869 = lean_array_push(x_868, x_574); +x_870 = lean_array_push(x_869, x_596); +x_871 = lean_array_push(x_870, x_624); +x_872 = lean_array_push(x_871, x_649); +x_873 = lean_array_push(x_872, x_674); +x_874 = lean_array_push(x_873, x_699); +if (lean_obj_tag(x_707) == 0) +{ +lean_object* x_931; +x_931 = l_Lean_quoteNameMk(x_706); +x_875 = x_931; +goto block_930; +} +else +{ +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_dec(x_706); +x_932 = lean_ctor_get(x_707, 0); +lean_inc(x_932); +lean_dec(x_707); +x_933 = l_String_intercalate(x_220, x_932); +x_934 = lean_string_append(x_376, x_933); +lean_dec(x_933); +x_935 = lean_box(2); +x_936 = l_Lean_Syntax_mkNameLit(x_934, x_935); +x_937 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__498; +x_938 = lean_array_push(x_937, x_936); +x_939 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__497; +x_940 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_940, 0, x_935); +lean_ctor_set(x_940, 1, x_939); +lean_ctor_set(x_940, 2, x_938); +x_875 = x_940; +goto block_930; +} +block_930: +{ +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_inc(x_21); +x_876 = l_Lean_Syntax_node2(x_21, x_28, x_875, x_710); +lean_inc(x_217); +lean_inc(x_21); +x_877 = l_Lean_Syntax_node2(x_21, x_67, x_217, x_876); lean_inc(x_232); -lean_inc(x_114); +lean_inc(x_81); +lean_inc(x_213); lean_inc(x_21); -x_1039 = l_Lean_Syntax_node4(x_21, x_493, x_114, x_1038, x_232, x_30); -x_1040 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__70; +x_878 = l_Lean_Syntax_node4(x_21, x_233, x_213, x_877, x_81, x_232); lean_inc(x_30); -lean_inc(x_83); lean_inc(x_21); -x_1041 = l_Lean_Syntax_node5(x_21, x_495, x_83, x_1040, x_112, x_1039, x_30); -lean_inc(x_32); +x_879 = l_Lean_Syntax_node2(x_21, x_125, x_878, x_30); lean_inc(x_21); -x_1042 = l_Lean_Syntax_node2(x_21, x_80, x_32, x_1041); -lean_inc(x_268); +x_880 = l_Lean_Syntax_node4(x_21, x_28, x_879, x_726, x_734, x_743); lean_inc(x_21); -x_1043 = l_Lean_Syntax_node2(x_21, x_108, x_268, x_1029); -lean_inc(x_93); -lean_inc(x_85); +x_881 = l_Lean_Syntax_node1(x_21, x_128, x_880); +lean_inc(x_81); lean_inc(x_21); -x_1044 = l_Lean_Syntax_node3(x_21, x_141, x_85, x_1043, x_93); -x_1045 = lean_array_push(x_1027, x_1042); -if (lean_obj_tag(x_291) == 0) +x_882 = l_Lean_Syntax_node2(x_21, x_309, x_81, x_881); +lean_inc(x_705); +lean_inc(x_30); +lean_inc(x_42); +lean_inc(x_21); +x_883 = l_Lean_Syntax_node4(x_21, x_822, x_42, x_30, x_705, x_882); +lean_inc(x_703); +lean_inc(x_21); +x_884 = l_Lean_Syntax_node2(x_21, x_824, x_703, x_883); +x_885 = lean_array_push(x_749, x_884); +lean_inc(x_21); +x_886 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_886, 0, x_21); +lean_ctor_set(x_886, 1, x_410); +lean_ctor_set(x_886, 2, x_885); +x_887 = lean_array_push(x_874, x_886); +if (lean_obj_tag(x_752) == 0) { -lean_object* x_1153; -x_1153 = l_Lean_quoteNameMk(x_290); -x_1046 = x_1153; -goto block_1152; +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; +x_888 = l_Lean_quoteNameMk(x_751); +lean_inc(x_21); +x_889 = l_Lean_Syntax_node2(x_21, x_28, x_888, x_755); +lean_inc(x_21); +x_890 = l_Lean_Syntax_node2(x_21, x_67, x_217, x_889); +lean_inc(x_81); +lean_inc(x_21); +x_891 = l_Lean_Syntax_node4(x_21, x_233, x_213, x_890, x_81, x_232); +lean_inc(x_30); +lean_inc(x_21); +x_892 = l_Lean_Syntax_node2(x_21, x_125, x_891, x_30); +lean_inc(x_21); +x_893 = l_Lean_Syntax_node4(x_21, x_28, x_892, x_764, x_769, x_778); +lean_inc(x_21); +x_894 = l_Lean_Syntax_node1(x_21, x_128, x_893); +lean_inc(x_21); +x_895 = l_Lean_Syntax_node2(x_21, x_309, x_81, x_894); +lean_inc(x_21); +x_896 = l_Lean_Syntax_node4(x_21, x_822, x_42, x_30, x_705, x_895); +lean_inc(x_21); +x_897 = l_Lean_Syntax_node2(x_21, x_824, x_703, x_896); +x_898 = lean_array_push(x_784, x_897); +lean_inc(x_21); +x_899 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_899, 0, x_21); +lean_ctor_set(x_899, 1, x_410); +lean_ctor_set(x_899, 2, x_898); +x_900 = lean_array_push(x_887, x_899); +x_901 = lean_array_push(x_900, x_837); +x_902 = lean_array_push(x_901, x_841); +x_903 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_903, 0, x_21); +lean_ctor_set(x_903, 1, x_28); +lean_ctor_set(x_903, 2, x_902); +x_904 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_904, 0, x_903); +lean_ctor_set(x_904, 1, x_3); +return x_904; } else { -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_dec(x_290); -x_1154 = lean_ctor_get(x_291, 0); -lean_inc(x_1154); -lean_dec(x_291); -x_1155 = l_String_intercalate(x_387, x_1154); -x_1156 = lean_string_append(x_126, x_1155); -lean_dec(x_1155); -x_1157 = lean_box(2); -x_1158 = l_Lean_Syntax_mkNameLit(x_1156, x_1157); -x_1159 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__629; -x_1160 = lean_array_push(x_1159, x_1158); -x_1161 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__628; -x_1162 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_1162, 0, x_1157); -lean_ctor_set(x_1162, 1, x_1161); -lean_ctor_set(x_1162, 2, x_1160); -x_1046 = x_1162; -goto block_1152; -} -block_1152: -{ -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_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_dec(x_751); +x_905 = lean_ctor_get(x_752, 0); +lean_inc(x_905); +lean_dec(x_752); +x_906 = l_String_intercalate(x_220, x_905); +x_907 = lean_string_append(x_376, x_906); +lean_dec(x_906); +x_908 = lean_box(2); +x_909 = l_Lean_Syntax_mkNameLit(x_907, x_908); +x_910 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__498; +x_911 = lean_array_push(x_910, x_909); +x_912 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__497; +x_913 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_913, 0, x_908); +lean_ctor_set(x_913, 1, x_912); +lean_ctor_set(x_913, 2, x_911); lean_inc(x_21); -x_1047 = l_Lean_Syntax_node1(x_21, x_28, x_1046); +x_914 = l_Lean_Syntax_node2(x_21, x_28, x_913, x_755); lean_inc(x_21); -x_1048 = l_Lean_Syntax_node2(x_21, x_108, x_268, x_1047); -lean_inc(x_93); -lean_inc(x_85); +x_915 = l_Lean_Syntax_node2(x_21, x_67, x_217, x_914); +lean_inc(x_81); lean_inc(x_21); -x_1049 = l_Lean_Syntax_node3(x_21, x_141, x_85, x_1048, x_93); -lean_inc(x_245); -lean_inc(x_21); -x_1050 = l_Lean_Syntax_node2(x_21, x_28, x_1049, x_245); -lean_inc(x_21); -x_1051 = l_Lean_Syntax_node2(x_21, x_108, x_288, x_1050); -lean_inc(x_21); -x_1052 = l_Lean_Syntax_node3(x_21, x_141, x_85, x_1051, x_93); -lean_inc(x_1052); -lean_inc(x_245); -lean_inc(x_21); -x_1053 = l_Lean_Syntax_node4(x_21, x_28, x_283, x_1044, x_245, x_1052); -lean_inc(x_21); -x_1054 = l_Lean_Syntax_node2(x_21, x_108, x_263, x_1053); -x_1055 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__201; -lean_inc(x_30); -lean_inc(x_150); -lean_inc(x_21); -x_1056 = l_Lean_Syntax_node4(x_21, x_1055, x_150, x_258, x_30, x_1054); -lean_inc(x_30); -lean_inc(x_232); -lean_inc(x_114); -lean_inc(x_21); -x_1057 = l_Lean_Syntax_node4(x_21, x_493, x_114, x_1056, x_232, x_30); -x_1058 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__197; -lean_inc(x_30); -lean_inc(x_83); -lean_inc(x_21); -x_1059 = l_Lean_Syntax_node5(x_21, x_495, x_83, x_1058, x_241, x_1057, x_30); -lean_inc(x_32); -lean_inc(x_21); -x_1060 = l_Lean_Syntax_node2(x_21, x_80, x_32, x_1059); -lean_inc(x_21); -x_1061 = l_Lean_Syntax_node3(x_21, x_28, x_312, x_245, x_1052); -lean_inc(x_21); -x_1062 = l_Lean_Syntax_node2(x_21, x_108, x_308, x_1061); +x_916 = l_Lean_Syntax_node4(x_21, x_233, x_213, x_915, x_81, x_232); lean_inc(x_30); lean_inc(x_21); -x_1063 = l_Lean_Syntax_node4(x_21, x_1055, x_150, x_303, x_30, x_1062); -lean_inc(x_30); +x_917 = l_Lean_Syntax_node2(x_21, x_125, x_916, x_30); lean_inc(x_21); -x_1064 = l_Lean_Syntax_node4(x_21, x_493, x_114, x_1063, x_232, x_30); -x_1065 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__257; -lean_inc(x_30); +x_918 = l_Lean_Syntax_node4(x_21, x_28, x_917, x_764, x_769, x_778); lean_inc(x_21); -x_1066 = l_Lean_Syntax_node5(x_21, x_495, x_83, x_1065, x_295, x_1064, x_30); +x_919 = l_Lean_Syntax_node1(x_21, x_128, x_918); lean_inc(x_21); -x_1067 = l_Lean_Syntax_node2(x_21, x_80, x_32, x_1066); -x_1068 = lean_array_push(x_1045, x_1060); -x_1069 = lean_array_push(x_1068, x_1067); -x_1070 = lean_array_push(x_1069, x_497); -x_1071 = lean_array_push(x_1070, x_529); -x_1072 = lean_array_push(x_1071, x_555); -x_1073 = lean_array_push(x_1072, x_611); -x_1074 = lean_array_push(x_1073, x_634); -x_1075 = lean_array_push(x_1074, x_657); -x_1076 = lean_array_push(x_1075, x_680); -x_1077 = lean_array_push(x_1076, x_703); -x_1078 = lean_array_push(x_1077, x_730); -x_1079 = lean_array_push(x_1078, x_752); -x_1080 = lean_array_push(x_1079, x_774); -x_1081 = lean_array_push(x_1080, x_796); -x_1082 = lean_array_push(x_1081, x_821); -x_1083 = lean_array_push(x_1082, x_846); -x_1084 = lean_array_push(x_1083, x_871); -x_1085 = lean_array_push(x_1084, x_896); -if (lean_obj_tag(x_904) == 0) -{ -lean_object* x_1142; -x_1142 = l_Lean_quoteNameMk(x_903); -x_1086 = x_1142; -goto block_1141; -} -else -{ -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_dec(x_903); -x_1143 = lean_ctor_get(x_904, 0); -lean_inc(x_1143); -lean_dec(x_904); -x_1144 = l_String_intercalate(x_387, x_1143); -x_1145 = lean_string_append(x_126, x_1144); -lean_dec(x_1144); -x_1146 = lean_box(2); -x_1147 = l_Lean_Syntax_mkNameLit(x_1145, x_1146); -x_1148 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__629; -x_1149 = lean_array_push(x_1148, x_1147); -x_1150 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__628; -x_1151 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_1151, 0, x_1146); -lean_ctor_set(x_1151, 1, x_1150); -lean_ctor_set(x_1151, 2, x_1149); -x_1086 = x_1151; -goto block_1141; -} -block_1141: -{ -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; +x_920 = l_Lean_Syntax_node2(x_21, x_309, x_81, x_919); lean_inc(x_21); -x_1087 = l_Lean_Syntax_node2(x_21, x_28, x_1086, x_907); -lean_inc(x_125); +x_921 = l_Lean_Syntax_node4(x_21, x_822, x_42, x_30, x_705, x_920); lean_inc(x_21); -x_1088 = l_Lean_Syntax_node2(x_21, x_108, x_125, x_1087); -lean_inc(x_400); -lean_inc(x_116); -lean_inc(x_384); +x_922 = l_Lean_Syntax_node2(x_21, x_824, x_703, x_921); +x_923 = lean_array_push(x_784, x_922); lean_inc(x_21); -x_1089 = l_Lean_Syntax_node4(x_21, x_401, x_384, x_1088, x_116, x_400); -lean_inc(x_30); -lean_inc(x_21); -x_1090 = l_Lean_Syntax_node2(x_21, x_147, x_1089, x_30); -lean_inc(x_21); -x_1091 = l_Lean_Syntax_node5(x_21, x_28, x_1090, x_911, x_203, x_921, x_929); -lean_inc(x_21); -x_1092 = l_Lean_Syntax_node1(x_21, x_399, x_1091); -lean_inc(x_116); -lean_inc(x_21); -x_1093 = l_Lean_Syntax_node2(x_21, x_491, x_116, x_1092); -lean_inc(x_902); -lean_inc(x_30); -lean_inc(x_90); -lean_inc(x_21); -x_1094 = l_Lean_Syntax_node4(x_21, x_1005, x_90, x_30, x_902, x_1093); -lean_inc(x_900); -lean_inc(x_21); -x_1095 = l_Lean_Syntax_node2(x_21, x_1007, x_900, x_1094); -x_1096 = lean_array_push(x_935, x_1095); -lean_inc(x_21); -x_1097 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_1097, 0, x_21); -lean_ctor_set(x_1097, 1, x_610); -lean_ctor_set(x_1097, 2, x_1096); -x_1098 = lean_array_push(x_1085, x_1097); -if (lean_obj_tag(x_939) == 0) -{ -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; -x_1099 = l_Lean_quoteNameMk(x_938); -lean_inc(x_21); -x_1100 = l_Lean_Syntax_node2(x_21, x_28, x_1099, x_942); -lean_inc(x_21); -x_1101 = l_Lean_Syntax_node2(x_21, x_108, x_125, x_1100); -lean_inc(x_116); -lean_inc(x_21); -x_1102 = l_Lean_Syntax_node4(x_21, x_401, x_384, x_1101, x_116, x_400); -lean_inc(x_30); -lean_inc(x_21); -x_1103 = l_Lean_Syntax_node2(x_21, x_147, x_1102, x_30); -lean_inc(x_21); -x_1104 = l_Lean_Syntax_node4(x_21, x_28, x_1103, x_946, x_956, x_970); -lean_inc(x_21); -x_1105 = l_Lean_Syntax_node1(x_21, x_399, x_1104); -lean_inc(x_21); -x_1106 = l_Lean_Syntax_node2(x_21, x_491, x_116, x_1105); -lean_inc(x_21); -x_1107 = l_Lean_Syntax_node4(x_21, x_1005, x_90, x_30, x_902, x_1106); -lean_inc(x_21); -x_1108 = l_Lean_Syntax_node2(x_21, x_1007, x_900, x_1107); -x_1109 = lean_array_push(x_976, x_1108); -lean_inc(x_21); -x_1110 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_1110, 0, x_21); -lean_ctor_set(x_1110, 1, x_610); -lean_ctor_set(x_1110, 2, x_1109); -x_1111 = lean_array_push(x_1098, x_1110); -x_1112 = lean_array_push(x_1111, x_1020); -x_1113 = lean_array_push(x_1112, x_1024); -x_1114 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_1114, 0, x_21); -lean_ctor_set(x_1114, 1, x_28); -lean_ctor_set(x_1114, 2, x_1113); -x_1115 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_1115, 0, x_1114); -lean_ctor_set(x_1115, 1, x_3); -return x_1115; -} -else -{ -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_dec(x_938); -x_1116 = lean_ctor_get(x_939, 0); -lean_inc(x_1116); -lean_dec(x_939); -x_1117 = l_String_intercalate(x_387, x_1116); -x_1118 = lean_string_append(x_126, x_1117); -lean_dec(x_1117); -x_1119 = lean_box(2); -x_1120 = l_Lean_Syntax_mkNameLit(x_1118, x_1119); -x_1121 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__629; -x_1122 = lean_array_push(x_1121, x_1120); -x_1123 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__628; -x_1124 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_1124, 0, x_1119); -lean_ctor_set(x_1124, 1, x_1123); -lean_ctor_set(x_1124, 2, x_1122); -lean_inc(x_21); -x_1125 = l_Lean_Syntax_node2(x_21, x_28, x_1124, x_942); -lean_inc(x_21); -x_1126 = l_Lean_Syntax_node2(x_21, x_108, x_125, x_1125); -lean_inc(x_116); -lean_inc(x_21); -x_1127 = l_Lean_Syntax_node4(x_21, x_401, x_384, x_1126, x_116, x_400); -lean_inc(x_30); -lean_inc(x_21); -x_1128 = l_Lean_Syntax_node2(x_21, x_147, x_1127, x_30); -lean_inc(x_21); -x_1129 = l_Lean_Syntax_node4(x_21, x_28, x_1128, x_946, x_956, x_970); -lean_inc(x_21); -x_1130 = l_Lean_Syntax_node1(x_21, x_399, x_1129); -lean_inc(x_21); -x_1131 = l_Lean_Syntax_node2(x_21, x_491, x_116, x_1130); -lean_inc(x_21); -x_1132 = l_Lean_Syntax_node4(x_21, x_1005, x_90, x_30, x_902, x_1131); -lean_inc(x_21); -x_1133 = l_Lean_Syntax_node2(x_21, x_1007, x_900, x_1132); -x_1134 = lean_array_push(x_976, x_1133); -lean_inc(x_21); -x_1135 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_1135, 0, x_21); -lean_ctor_set(x_1135, 1, x_610); -lean_ctor_set(x_1135, 2, x_1134); -x_1136 = lean_array_push(x_1098, x_1135); -x_1137 = lean_array_push(x_1136, x_1020); -x_1138 = lean_array_push(x_1137, x_1024); -x_1139 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_1139, 0, x_21); -lean_ctor_set(x_1139, 1, x_28); -lean_ctor_set(x_1139, 2, x_1138); -x_1140 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_1140, 0, x_1139); -lean_ctor_set(x_1140, 1, x_3); -return x_1140; -} +x_924 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_924, 0, x_21); +lean_ctor_set(x_924, 1, x_410); +lean_ctor_set(x_924, 2, x_923); +x_925 = lean_array_push(x_887, x_924); +x_926 = lean_array_push(x_925, x_837); +x_927 = lean_array_push(x_926, x_841); +x_928 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_928, 0, x_21); +lean_ctor_set(x_928, 1, x_28); +lean_ctor_set(x_928, 2, x_927); +x_929 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_929, 0, x_928); +lean_ctor_set(x_929, 1, x_3); +return x_929; } } } @@ -11252,391 +8950,141 @@ x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l_UInt8_fromExpr___closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = lean_box(0); -x_2 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_2, 0, x_1); -return x_2; -} -} LEAN_EXPORT lean_object* l_UInt8_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; uint8_t x_12; lean_object* x_13; lean_object* x_14; -x_10 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__125; -x_11 = lean_unsigned_to_nat(3u); -x_12 = l_Lean_Expr_isAppOfArity(x_1, x_10, x_11); -if (x_12 == 0) +lean_object* x_10; lean_object* x_11; +x_10 = l_UInt8_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_87; -x_87 = lean_box(0); -x_13 = x_87; -x_14 = x_9; -goto block_86; -} -else +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_88; -x_88 = l_UInt8_fromExpr___closed__3; -x_13 = x_88; -x_14 = x_9; -goto block_86; -} -block_86: +uint8_t x_13; +x_13 = !lean_is_exclusive(x_11); +if (x_13 == 0) { -if (lean_obj_tag(x_13) == 0) -{ -lean_object* x_15; lean_object* x_16; -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_1); +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); -x_16 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_16, 0, x_15); -lean_ctor_set(x_16, 1, x_14); -return x_16; +lean_ctor_set(x_11, 0, x_15); +return x_11; } else { -lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; -lean_dec(x_13); -x_17 = l_Lean_Expr_appFn_x21(x_1); -lean_inc(x_17); -x_18 = l_Lean_Expr_appFn_x21(x_17); -x_19 = l_Lean_Expr_appArg_x21(x_18); -lean_inc(x_8); -lean_inc(x_7); -lean_inc(x_6); -lean_inc(x_5); -x_20 = lean_whnf(x_19, x_5, x_6, x_7, x_8, x_14); -if (lean_obj_tag(x_20) == 0) +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_21; -x_21 = !lean_is_exclusive(x_20); -if (x_21 == 0) +uint8_t x_19; +x_19 = !lean_is_exclusive(x_12); +if (x_19 == 0) { -lean_object* x_22; lean_object* x_23; lean_object* x_24; uint8_t x_25; -x_22 = lean_ctor_get(x_20, 0); -x_23 = lean_ctor_get(x_20, 1); -x_24 = l_UInt8_fromExpr___closed__2; -x_25 = l_Lean_Expr_isConstOf(x_22, x_24); +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; uint8_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); -if (x_25 == 0) -{ -lean_object* x_26; -lean_dec(x_18); -lean_dec(x_17); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -x_26 = lean_box(0); -lean_ctor_set(x_20, 0, x_26); -return x_20; +x_23 = lean_ctor_get(x_21, 0); +lean_inc(x_23); +lean_dec(x_21); +x_24 = lean_uint8_of_nat(x_23); +lean_dec(x_23); +x_25 = lean_box(x_24); +lean_ctor_set(x_12, 0, x_25); +return x_11; } else { -lean_object* x_27; lean_object* x_28; -lean_free_object(x_20); -x_27 = l_Lean_Expr_appArg_x21(x_17); -lean_dec(x_17); -x_28 = l_Nat_fromExpr_x3f(x_27, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_23); -lean_dec(x_5); -if (lean_obj_tag(x_28) == 0) -{ -lean_object* x_29; -x_29 = lean_ctor_get(x_28, 0); -lean_inc(x_29); -if (lean_obj_tag(x_29) == 0) -{ -uint8_t x_30; -lean_dec(x_18); -x_30 = !lean_is_exclusive(x_28); -if (x_30 == 0) -{ -lean_object* x_31; lean_object* x_32; -x_31 = lean_ctor_get(x_28, 0); -lean_dec(x_31); -x_32 = lean_box(0); -lean_ctor_set(x_28, 0, x_32); -return x_28; +lean_object* x_26; lean_object* x_27; lean_object* x_28; uint8_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_uint8_of_nat(x_28); +lean_dec(x_28); +x_30 = lean_box(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_33; lean_object* x_34; lean_object* x_35; -x_33 = lean_ctor_get(x_28, 1); +lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; uint8_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); -lean_dec(x_28); -x_34 = lean_box(0); -x_35 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_35, 0, x_34); -lean_ctor_set(x_35, 1, x_33); -return x_35; +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_uint8_of_nat(x_35); +lean_dec(x_35); +x_37 = lean_box(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_36; -x_36 = !lean_is_exclusive(x_28); -if (x_36 == 0) +uint8_t x_40; +x_40 = !lean_is_exclusive(x_11); +if (x_40 == 0) { -lean_object* x_37; uint8_t x_38; -x_37 = lean_ctor_get(x_28, 0); -lean_dec(x_37); -x_38 = !lean_is_exclusive(x_29); -if (x_38 == 0) -{ -lean_object* x_39; uint8_t x_40; lean_object* x_41; -x_39 = lean_ctor_get(x_29, 0); -x_40 = lean_uint8_of_nat(x_39); -lean_dec(x_39); -x_41 = lean_alloc_ctor(0, 1, 1); -lean_ctor_set(x_41, 0, x_18); -lean_ctor_set_uint8(x_41, sizeof(void*)*1, x_40); -lean_ctor_set(x_29, 0, x_41); -return x_28; +return x_11; } else { -lean_object* x_42; uint8_t x_43; lean_object* x_44; lean_object* x_45; -x_42 = lean_ctor_get(x_29, 0); +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_dec(x_29); -x_43 = lean_uint8_of_nat(x_42); -lean_dec(x_42); -x_44 = lean_alloc_ctor(0, 1, 1); -lean_ctor_set(x_44, 0, x_18); -lean_ctor_set_uint8(x_44, sizeof(void*)*1, x_43); -x_45 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_45, 0, x_44); -lean_ctor_set(x_28, 0, x_45); -return x_28; -} -} -else -{ -lean_object* x_46; lean_object* x_47; lean_object* x_48; uint8_t x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; -x_46 = lean_ctor_get(x_28, 1); -lean_inc(x_46); -lean_dec(x_28); -x_47 = lean_ctor_get(x_29, 0); -lean_inc(x_47); -if (lean_is_exclusive(x_29)) { - lean_ctor_release(x_29, 0); - x_48 = x_29; -} else { - lean_dec_ref(x_29); - x_48 = lean_box(0); -} -x_49 = lean_uint8_of_nat(x_47); -lean_dec(x_47); -x_50 = lean_alloc_ctor(0, 1, 1); -lean_ctor_set(x_50, 0, x_18); -lean_ctor_set_uint8(x_50, sizeof(void*)*1, x_49); -if (lean_is_scalar(x_48)) { - x_51 = lean_alloc_ctor(1, 1, 0); -} else { - x_51 = x_48; -} -lean_ctor_set(x_51, 0, x_50); -x_52 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_52, 0, x_51); -lean_ctor_set(x_52, 1, x_46); -return x_52; -} -} -} -else -{ -uint8_t x_53; -lean_dec(x_18); -x_53 = !lean_is_exclusive(x_28); -if (x_53 == 0) -{ -return x_28; -} -else -{ -lean_object* x_54; lean_object* x_55; lean_object* x_56; -x_54 = lean_ctor_get(x_28, 0); -x_55 = lean_ctor_get(x_28, 1); -lean_inc(x_55); -lean_inc(x_54); -lean_dec(x_28); -x_56 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_56, 0, x_54); -lean_ctor_set(x_56, 1, x_55); -return x_56; -} -} -} -} -else -{ -lean_object* x_57; lean_object* x_58; lean_object* x_59; uint8_t x_60; -x_57 = lean_ctor_get(x_20, 0); -x_58 = lean_ctor_get(x_20, 1); -lean_inc(x_58); -lean_inc(x_57); -lean_dec(x_20); -x_59 = l_UInt8_fromExpr___closed__2; -x_60 = l_Lean_Expr_isConstOf(x_57, x_59); -lean_dec(x_57); -if (x_60 == 0) -{ -lean_object* x_61; lean_object* x_62; -lean_dec(x_18); -lean_dec(x_17); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -x_61 = lean_box(0); -x_62 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_62, 0, x_61); -lean_ctor_set(x_62, 1, x_58); -return x_62; -} -else -{ -lean_object* x_63; lean_object* x_64; -x_63 = l_Lean_Expr_appArg_x21(x_17); -lean_dec(x_17); -x_64 = l_Nat_fromExpr_x3f(x_63, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_58); -lean_dec(x_5); -if (lean_obj_tag(x_64) == 0) -{ -lean_object* x_65; -x_65 = lean_ctor_get(x_64, 0); -lean_inc(x_65); -if (lean_obj_tag(x_65) == 0) -{ -lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; -lean_dec(x_18); -x_66 = lean_ctor_get(x_64, 1); -lean_inc(x_66); -if (lean_is_exclusive(x_64)) { - lean_ctor_release(x_64, 0); - lean_ctor_release(x_64, 1); - x_67 = x_64; -} else { - lean_dec_ref(x_64); - x_67 = lean_box(0); -} -x_68 = lean_box(0); -if (lean_is_scalar(x_67)) { - x_69 = lean_alloc_ctor(0, 2, 0); -} else { - x_69 = x_67; -} -lean_ctor_set(x_69, 0, x_68); -lean_ctor_set(x_69, 1, x_66); -return x_69; -} -else -{ -lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; uint8_t x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; -x_70 = lean_ctor_get(x_64, 1); -lean_inc(x_70); -if (lean_is_exclusive(x_64)) { - lean_ctor_release(x_64, 0); - lean_ctor_release(x_64, 1); - x_71 = x_64; -} else { - lean_dec_ref(x_64); - x_71 = lean_box(0); -} -x_72 = lean_ctor_get(x_65, 0); -lean_inc(x_72); -if (lean_is_exclusive(x_65)) { - lean_ctor_release(x_65, 0); - x_73 = x_65; -} else { - lean_dec_ref(x_65); - x_73 = lean_box(0); -} -x_74 = lean_uint8_of_nat(x_72); -lean_dec(x_72); -x_75 = lean_alloc_ctor(0, 1, 1); -lean_ctor_set(x_75, 0, x_18); -lean_ctor_set_uint8(x_75, sizeof(void*)*1, x_74); -if (lean_is_scalar(x_73)) { - x_76 = lean_alloc_ctor(1, 1, 0); -} else { - x_76 = x_73; -} -lean_ctor_set(x_76, 0, x_75); -if (lean_is_scalar(x_71)) { - x_77 = lean_alloc_ctor(0, 2, 0); -} else { - x_77 = x_71; -} -lean_ctor_set(x_77, 0, x_76); -lean_ctor_set(x_77, 1, x_70); -return x_77; -} -} -else -{ -lean_object* x_78; lean_object* x_79; lean_object* x_80; lean_object* x_81; -lean_dec(x_18); -x_78 = lean_ctor_get(x_64, 0); -lean_inc(x_78); -x_79 = lean_ctor_get(x_64, 1); -lean_inc(x_79); -if (lean_is_exclusive(x_64)) { - lean_ctor_release(x_64, 0); - lean_ctor_release(x_64, 1); - x_80 = x_64; -} else { - lean_dec_ref(x_64); - x_80 = lean_box(0); -} -if (lean_is_scalar(x_80)) { - x_81 = lean_alloc_ctor(1, 2, 0); -} else { - x_81 = x_80; -} -lean_ctor_set(x_81, 0, x_78); -lean_ctor_set(x_81, 1, x_79); -return x_81; -} -} -} -} -else -{ -uint8_t x_82; -lean_dec(x_18); -lean_dec(x_17); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -x_82 = !lean_is_exclusive(x_20); -if (x_82 == 0) -{ -return x_20; -} -else -{ -lean_object* x_83; lean_object* x_84; lean_object* x_85; -x_83 = lean_ctor_get(x_20, 0); -x_84 = lean_ctor_get(x_20, 1); -lean_inc(x_84); -lean_inc(x_83); -lean_dec(x_20); -x_85 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_85, 0, x_83); -lean_ctor_set(x_85, 1, x_84); -return x_85; -} -} +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; } } } @@ -11649,114 +9097,11 @@ x_10 = l_UInt8_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); +lean_dec(x_1); return x_10; } } -static lean_object* _init_l_UInt8_toExprCore___closed__1() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l_Lean_levelZero; -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_UInt8_toExprCore___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__125; -x_2 = l_UInt8_toExprCore___closed__1; -x_3 = l_Lean_Expr_const___override(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_UInt8_toExprCore___closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l_UInt8_fromExpr___closed__2; -x_3 = l_Lean_Expr_const___override(x_2, x_1); -return x_3; -} -} -static lean_object* _init_l_UInt8_toExprCore___closed__4() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_UInt8_fromExpr___closed__1; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__253; -x_3 = l_Lean_Name_mkStr2(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_UInt8_toExprCore___closed__5() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l_UInt8_toExprCore___closed__4; -x_3 = l_Lean_Expr_const___override(x_2, x_1); -return x_3; -} -} -LEAN_EXPORT lean_object* l_UInt8_toExprCore(uint8_t x_1) { -_start: -{ -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; -x_2 = lean_uint8_to_nat(x_1); -x_3 = l_Lean_mkRawNatLit(x_2); -x_4 = l_UInt8_toExprCore___closed__5; -lean_inc(x_3); -x_5 = l_Lean_Expr_app___override(x_4, x_3); -x_6 = l_UInt8_toExprCore___closed__2; -x_7 = l_UInt8_toExprCore___closed__3; -x_8 = l_Lean_mkApp3(x_6, x_7, x_3, x_5); -return x_8; -} -} -LEAN_EXPORT lean_object* l_UInt8_toExprCore___boxed(lean_object* x_1) { -_start: -{ -uint8_t x_2; lean_object* x_3; -x_2 = lean_unbox(x_1); -lean_dec(x_1); -x_3 = l_UInt8_toExprCore(x_2); -return x_3; -} -} -static lean_object* _init_l_UInt8_toExpr___closed__1() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l_UInt8_toExprCore___closed__4; -x_3 = l_Lean_Expr_const___override(x_2, x_1); -return x_3; -} -} -LEAN_EXPORT lean_object* l_UInt8_toExpr(lean_object* x_1) { -_start: -{ -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; -x_2 = lean_ctor_get_uint8(x_1, sizeof(void*)*1); -x_3 = lean_uint8_to_nat(x_2); -x_4 = l_Lean_mkRawNatLit(x_3); -x_5 = lean_ctor_get(x_1, 0); -lean_inc(x_5); -lean_dec(x_1); -x_6 = l_UInt8_toExpr___closed__1; -lean_inc(x_4); -x_7 = l_Lean_Expr_app___override(x_6, x_4); -x_8 = l_Lean_mkAppB(x_5, x_4, x_7); -return x_8; -} -} -static lean_object* _init_l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1() { +static lean_object* _init_l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1() { _start: { lean_object* x_1; lean_object* x_2; @@ -11766,7 +9111,76 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -LEAN_EXPORT lean_object* l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____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, lean_object* x_11) { +static lean_object* _init_l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = lean_unsigned_to_nat(0u); +x_2 = l_Lean_Level_ofNat(x_1); +return x_2; +} +} +static lean_object* _init_l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__2; +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_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__490; +x_2 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__3; +x_3 = l_Lean_Expr_const___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_UInt8_fromExpr___closed__2; +x_3 = l_Lean_Expr_const___override(x_2, x_1); +return x_3; +} +} +static lean_object* _init_l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__6() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("instOfNat", 9); +return x_1; +} +} +static lean_object* _init_l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__7() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_UInt8_fromExpr___closed__1; +x_2 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__6; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__8() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__7; +x_3 = l_Lean_Expr_const___override(x_2, x_1); +return x_3; +} +} +LEAN_EXPORT lean_object* l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____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, lean_object* x_11) { _start: { lean_object* x_12; lean_object* x_13; lean_object* x_14; @@ -11779,6 +9193,7 @@ lean_inc(x_9); lean_inc(x_8); lean_inc(x_7); x_14 = l_UInt8_fromExpr(x_13, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_13); if (lean_obj_tag(x_14) == 0) { lean_object* x_15; @@ -11799,7 +9214,7 @@ if (x_16 == 0) lean_object* x_17; lean_object* x_18; x_17 = lean_ctor_get(x_14, 0); lean_dec(x_17); -x_18 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_18 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; lean_ctor_set(x_14, 0, x_18); return x_14; } @@ -11809,7 +9224,7 @@ lean_object* x_19; lean_object* x_20; lean_object* x_21; x_19 = lean_ctor_get(x_14, 1); lean_inc(x_19); lean_dec(x_14); -x_20 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_20 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; x_21 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_21, 0, x_20); lean_ctor_set(x_21, 1, x_19); @@ -11828,6 +9243,7 @@ lean_dec(x_15); x_24 = l_Lean_Expr_appArg_x21(x_1); lean_dec(x_1); x_25 = l_UInt8_fromExpr(x_24, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_22); +lean_dec(x_24); if (lean_obj_tag(x_25) == 0) { lean_object* x_26; @@ -11844,7 +9260,7 @@ if (x_27 == 0) lean_object* x_28; lean_object* x_29; x_28 = lean_ctor_get(x_25, 0); lean_dec(x_28); -x_29 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_29 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; lean_ctor_set(x_25, 0, x_29); return x_25; } @@ -11854,7 +9270,7 @@ lean_object* x_30; lean_object* x_31; lean_object* x_32; x_30 = lean_ctor_get(x_25, 1); lean_inc(x_30); lean_dec(x_25); -x_31 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_31 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; x_32 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_32, 0, x_31); lean_ctor_set(x_32, 1, x_30); @@ -11867,179 +9283,130 @@ uint8_t x_33; x_33 = !lean_is_exclusive(x_25); if (x_33 == 0) { -lean_object* x_34; lean_object* x_35; uint8_t x_36; +lean_object* x_34; 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; lean_object* x_43; lean_object* x_44; lean_object* x_45; uint32_t x_46; uint8_t x_47; lean_object* x_48; lean_object* x_49; x_34 = lean_ctor_get(x_25, 0); lean_dec(x_34); x_35 = lean_ctor_get(x_26, 0); lean_inc(x_35); lean_dec(x_26); -x_36 = !lean_is_exclusive(x_23); -if (x_36 == 0) -{ -uint8_t x_37; uint8_t x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; uint8_t x_42; lean_object* x_43; lean_object* x_44; uint32_t x_45; uint8_t x_46; lean_object* x_47; lean_object* x_48; -x_37 = lean_ctor_get_uint8(x_23, sizeof(void*)*1); -x_38 = lean_ctor_get_uint8(x_35, sizeof(void*)*1); -lean_dec(x_35); -x_39 = lean_box(x_37); -x_40 = lean_box(x_38); -x_41 = lean_apply_2(x_2, x_39, x_40); -x_42 = lean_unbox(x_41); -lean_dec(x_41); -lean_ctor_set_uint8(x_23, sizeof(void*)*1, x_42); -x_43 = l_UInt8_toExpr(x_23); -x_44 = lean_box(0); -x_45 = 0; -x_46 = 1; -x_47 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_47, 0, x_43); -lean_ctor_set(x_47, 1, x_44); -lean_ctor_set_uint32(x_47, sizeof(void*)*2, x_45); -lean_ctor_set_uint8(x_47, sizeof(void*)*2 + 4, x_46); -x_48 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_48, 0, x_47); -lean_ctor_set(x_25, 0, x_48); +x_36 = lean_apply_2(x_2, x_23, x_35); +x_37 = lean_unbox(x_36); +lean_dec(x_36); +x_38 = lean_uint8_to_nat(x_37); +x_39 = l_Lean_mkRawNatLit(x_38); +x_40 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__8; +lean_inc(x_39); +x_41 = l_Lean_Expr_app___override(x_40, x_39); +x_42 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__4; +x_43 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__5; +x_44 = l_Lean_mkApp3(x_42, x_43, x_39, x_41); +x_45 = lean_box(0); +x_46 = 0; +x_47 = 1; +x_48 = lean_alloc_ctor(0, 2, 5); +lean_ctor_set(x_48, 0, x_44); +lean_ctor_set(x_48, 1, x_45); +lean_ctor_set_uint32(x_48, sizeof(void*)*2, x_46); +lean_ctor_set_uint8(x_48, sizeof(void*)*2 + 4, x_47); +x_49 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_49, 0, x_48); +lean_ctor_set(x_25, 0, x_49); return x_25; } else { -lean_object* x_49; uint8_t x_50; uint8_t x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; uint8_t x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; uint32_t x_59; uint8_t x_60; lean_object* x_61; lean_object* x_62; -x_49 = lean_ctor_get(x_23, 0); -x_50 = lean_ctor_get_uint8(x_23, sizeof(void*)*1); -lean_inc(x_49); -lean_dec(x_23); -x_51 = lean_ctor_get_uint8(x_35, sizeof(void*)*1); -lean_dec(x_35); -x_52 = lean_box(x_50); -x_53 = lean_box(x_51); -x_54 = lean_apply_2(x_2, x_52, x_53); -x_55 = lean_unbox(x_54); -lean_dec(x_54); -x_56 = lean_alloc_ctor(0, 1, 1); -lean_ctor_set(x_56, 0, x_49); -lean_ctor_set_uint8(x_56, sizeof(void*)*1, x_55); -x_57 = l_UInt8_toExpr(x_56); -x_58 = lean_box(0); -x_59 = 0; -x_60 = 1; -x_61 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_61, 0, x_57); -lean_ctor_set(x_61, 1, x_58); -lean_ctor_set_uint32(x_61, sizeof(void*)*2, x_59); -lean_ctor_set_uint8(x_61, sizeof(void*)*2 + 4, x_60); -x_62 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_62, 0, x_61); -lean_ctor_set(x_25, 0, x_62); -return x_25; -} -} -else -{ -lean_object* x_63; lean_object* x_64; lean_object* x_65; uint8_t x_66; lean_object* x_67; uint8_t 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_object* x_75; uint32_t x_76; uint8_t x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; -x_63 = lean_ctor_get(x_25, 1); -lean_inc(x_63); +lean_object* x_50; lean_object* x_51; lean_object* x_52; uint8_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; lean_object* x_60; lean_object* x_61; uint32_t x_62; uint8_t x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; +x_50 = lean_ctor_get(x_25, 1); +lean_inc(x_50); lean_dec(x_25); -x_64 = lean_ctor_get(x_26, 0); -lean_inc(x_64); +x_51 = lean_ctor_get(x_26, 0); +lean_inc(x_51); lean_dec(x_26); -x_65 = lean_ctor_get(x_23, 0); -lean_inc(x_65); -x_66 = lean_ctor_get_uint8(x_23, sizeof(void*)*1); -if (lean_is_exclusive(x_23)) { - lean_ctor_release(x_23, 0); - x_67 = x_23; -} else { - lean_dec_ref(x_23); - x_67 = lean_box(0); -} -x_68 = lean_ctor_get_uint8(x_64, sizeof(void*)*1); -lean_dec(x_64); -x_69 = lean_box(x_66); -x_70 = lean_box(x_68); -x_71 = lean_apply_2(x_2, x_69, x_70); -x_72 = lean_unbox(x_71); -lean_dec(x_71); -if (lean_is_scalar(x_67)) { - x_73 = lean_alloc_ctor(0, 1, 1); -} else { - x_73 = x_67; -} -lean_ctor_set(x_73, 0, x_65); -lean_ctor_set_uint8(x_73, sizeof(void*)*1, x_72); -x_74 = l_UInt8_toExpr(x_73); -x_75 = lean_box(0); -x_76 = 0; -x_77 = 1; -x_78 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_78, 0, x_74); -lean_ctor_set(x_78, 1, x_75); -lean_ctor_set_uint32(x_78, sizeof(void*)*2, x_76); -lean_ctor_set_uint8(x_78, sizeof(void*)*2 + 4, x_77); -x_79 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_79, 0, 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_63); -return x_80; +x_52 = lean_apply_2(x_2, x_23, x_51); +x_53 = lean_unbox(x_52); +lean_dec(x_52); +x_54 = lean_uint8_to_nat(x_53); +x_55 = l_Lean_mkRawNatLit(x_54); +x_56 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__8; +lean_inc(x_55); +x_57 = l_Lean_Expr_app___override(x_56, x_55); +x_58 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__4; +x_59 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__5; +x_60 = l_Lean_mkApp3(x_58, x_59, x_55, x_57); +x_61 = lean_box(0); +x_62 = 0; +x_63 = 1; +x_64 = lean_alloc_ctor(0, 2, 5); +lean_ctor_set(x_64, 0, x_60); +lean_ctor_set(x_64, 1, x_61); +lean_ctor_set_uint32(x_64, sizeof(void*)*2, x_62); +lean_ctor_set_uint8(x_64, sizeof(void*)*2 + 4, x_63); +x_65 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_65, 0, x_64); +x_66 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_66, 0, x_65); +lean_ctor_set(x_66, 1, x_50); +return x_66; } } } else { -uint8_t x_81; +uint8_t x_67; lean_dec(x_23); lean_dec(x_2); -x_81 = !lean_is_exclusive(x_25); -if (x_81 == 0) +x_67 = !lean_is_exclusive(x_25); +if (x_67 == 0) { return x_25; } else { -lean_object* x_82; lean_object* x_83; lean_object* x_84; -x_82 = lean_ctor_get(x_25, 0); -x_83 = lean_ctor_get(x_25, 1); -lean_inc(x_83); -lean_inc(x_82); +lean_object* x_68; lean_object* x_69; lean_object* x_70; +x_68 = lean_ctor_get(x_25, 0); +x_69 = lean_ctor_get(x_25, 1); +lean_inc(x_69); +lean_inc(x_68); lean_dec(x_25); -x_84 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_84, 0, x_82); -lean_ctor_set(x_84, 1, x_83); -return x_84; +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 { -uint8_t x_85; +uint8_t x_71; lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); lean_dec(x_7); lean_dec(x_2); lean_dec(x_1); -x_85 = !lean_is_exclusive(x_14); -if (x_85 == 0) +x_71 = !lean_is_exclusive(x_14); +if (x_71 == 0) { return x_14; } else { -lean_object* x_86; lean_object* x_87; lean_object* x_88; -x_86 = lean_ctor_get(x_14, 0); -x_87 = lean_ctor_get(x_14, 1); -lean_inc(x_87); -lean_inc(x_86); +lean_object* x_72; lean_object* x_73; lean_object* x_74; +x_72 = lean_ctor_get(x_14, 0); +x_73 = lean_ctor_get(x_14, 1); +lean_inc(x_73); +lean_inc(x_72); lean_dec(x_14); -x_88 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_88, 0, x_86); -lean_ctor_set(x_88, 1, x_87); -return x_88; +x_74 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_74, 0, x_72); +lean_ctor_set(x_74, 1, x_73); +return x_74; } } } } -LEAN_EXPORT lean_object* l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978_(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_EXPORT lean_object* l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515_(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: { uint8_t x_13; @@ -12057,7 +9424,7 @@ lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); -x_14 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_14 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____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_12); @@ -12067,7 +9434,7 @@ else { lean_object* x_16; lean_object* x_17; x_16 = lean_box(0); -x_17 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1(x_4, x_3, x_16, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +x_17 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1(x_4, x_3, x_16, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); @@ -12075,11 +9442,11 @@ return x_17; } } } -LEAN_EXPORT lean_object* l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____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, lean_object* x_11) { +LEAN_EXPORT lean_object* l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____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, lean_object* x_11) { _start: { lean_object* x_12; -x_12 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +x_12 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); @@ -12087,7 +9454,7 @@ lean_dec(x_3); return x_12; } } -LEAN_EXPORT lean_object* l_UInt8_reduceBinPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____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, lean_object* x_11) { +LEAN_EXPORT lean_object* l_UInt8_reduceBinPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____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, lean_object* x_11) { _start: { lean_object* x_12; lean_object* x_13; lean_object* x_14; @@ -12100,6 +9467,7 @@ lean_inc(x_9); lean_inc(x_8); lean_inc(x_7); x_14 = l_UInt8_fromExpr(x_13, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_13); if (lean_obj_tag(x_14) == 0) { lean_object* x_15; @@ -12120,7 +9488,7 @@ if (x_16 == 0) lean_object* x_17; lean_object* x_18; x_17 = lean_ctor_get(x_14, 0); lean_dec(x_17); -x_18 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_18 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; lean_ctor_set(x_14, 0, x_18); return x_14; } @@ -12130,7 +9498,7 @@ lean_object* x_19; lean_object* x_20; lean_object* x_21; x_19 = lean_ctor_get(x_14, 1); lean_inc(x_19); lean_dec(x_14); -x_20 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_20 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; x_21 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_21, 0, x_20); lean_ctor_set(x_21, 1, x_19); @@ -12152,6 +9520,7 @@ lean_inc(x_9); lean_inc(x_8); lean_inc(x_7); x_25 = l_UInt8_fromExpr(x_24, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_22); +lean_dec(x_24); if (lean_obj_tag(x_25) == 0) { lean_object* x_26; @@ -12173,7 +9542,7 @@ if (x_27 == 0) lean_object* x_28; lean_object* x_29; x_28 = lean_ctor_get(x_25, 0); lean_dec(x_28); -x_29 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_29 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; lean_ctor_set(x_25, 0, x_29); return x_25; } @@ -12183,7 +9552,7 @@ lean_object* x_30; lean_object* x_31; lean_object* x_32; x_30 = lean_ctor_get(x_25, 1); lean_inc(x_30); lean_dec(x_25); -x_31 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_31 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; x_32 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_32, 0, x_31); lean_ctor_set(x_32, 1, x_30); @@ -12192,29 +9561,23 @@ return x_32; } else { -lean_object* x_33; lean_object* x_34; uint8_t x_35; uint8_t x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; uint8_t x_40; lean_object* x_41; +lean_object* x_33; lean_object* x_34; lean_object* x_35; uint8_t x_36; lean_object* x_37; x_33 = lean_ctor_get(x_25, 1); lean_inc(x_33); lean_dec(x_25); x_34 = lean_ctor_get(x_26, 0); lean_inc(x_34); lean_dec(x_26); -x_35 = lean_ctor_get_uint8(x_23, sizeof(void*)*1); -lean_dec(x_23); -x_36 = lean_ctor_get_uint8(x_34, sizeof(void*)*1); -lean_dec(x_34); -x_37 = lean_box(x_35); -x_38 = lean_box(x_36); -x_39 = lean_apply_2(x_2, x_37, x_38); -x_40 = lean_unbox(x_39); -lean_dec(x_39); -x_41 = l_Lean_Meta_Simp_evalPropStep(x_1, x_40, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_33); -return x_41; +x_35 = lean_apply_2(x_2, x_23, x_34); +x_36 = lean_unbox(x_35); +lean_dec(x_35); +x_37 = l_Lean_Meta_Simp_evalPropStep(x_1, x_36, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_33); +return x_37; } } else { -uint8_t x_42; +uint8_t x_38; lean_dec(x_23); lean_dec(x_10); lean_dec(x_9); @@ -12222,19 +9585,49 @@ lean_dec(x_8); lean_dec(x_7); lean_dec(x_2); lean_dec(x_1); -x_42 = !lean_is_exclusive(x_25); -if (x_42 == 0) +x_38 = !lean_is_exclusive(x_25); +if (x_38 == 0) { return x_25; } else { +lean_object* x_39; lean_object* x_40; lean_object* x_41; +x_39 = lean_ctor_get(x_25, 0); +x_40 = lean_ctor_get(x_25, 1); +lean_inc(x_40); +lean_inc(x_39); +lean_dec(x_25); +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; +} +} +} +} +else +{ +uint8_t x_42; +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_2); +lean_dec(x_1); +x_42 = !lean_is_exclusive(x_14); +if (x_42 == 0) +{ +return x_14; +} +else +{ lean_object* x_43; lean_object* x_44; lean_object* x_45; -x_43 = lean_ctor_get(x_25, 0); -x_44 = lean_ctor_get(x_25, 1); +x_43 = lean_ctor_get(x_14, 0); +x_44 = lean_ctor_get(x_14, 1); lean_inc(x_44); lean_inc(x_43); -lean_dec(x_25); +lean_dec(x_14); x_45 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_45, 0, x_43); lean_ctor_set(x_45, 1, x_44); @@ -12243,37 +9636,7 @@ return x_45; } } } -else -{ -uint8_t x_46; -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_2); -lean_dec(x_1); -x_46 = !lean_is_exclusive(x_14); -if (x_46 == 0) -{ -return x_14; -} -else -{ -lean_object* x_47; lean_object* x_48; lean_object* x_49; -x_47 = lean_ctor_get(x_14, 0); -x_48 = lean_ctor_get(x_14, 1); -lean_inc(x_48); -lean_inc(x_47); -lean_dec(x_14); -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_EXPORT lean_object* l_UInt8_reduceBinPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978_(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_EXPORT lean_object* l_UInt8_reduceBinPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515_(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: { uint8_t x_13; @@ -12291,7 +9654,7 @@ lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); -x_14 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_14 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____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_12); @@ -12301,7 +9664,7 @@ else { lean_object* x_16; lean_object* x_17; x_16 = lean_box(0); -x_17 = l_UInt8_reduceBinPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1(x_4, x_3, x_16, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +x_17 = l_UInt8_reduceBinPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1(x_4, x_3, x_16, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); @@ -12309,11 +9672,11 @@ return x_17; } } } -LEAN_EXPORT lean_object* l_UInt8_reduceBinPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____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, lean_object* x_11) { +LEAN_EXPORT lean_object* l_UInt8_reduceBinPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____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, lean_object* x_11) { _start: { lean_object* x_12; -x_12 = l_UInt8_reduceBinPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +x_12 = l_UInt8_reduceBinPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); @@ -12321,7 +9684,7 @@ lean_dec(x_3); return x_12; } } -static lean_object* _init_l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1() { +static lean_object* _init_l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1() { _start: { lean_object* x_1; @@ -12329,33 +9692,33 @@ x_1 = lean_mk_string_from_bytes("false", 5); return x_1; } } -static lean_object* _init_l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__2() { +static lean_object* _init_l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__373; -x_2 = l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__233; +x_2 = l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } -static lean_object* _init_l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__3() { +static lean_object* _init_l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__2; +x_2 = l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__2; x_3 = l_Lean_Expr_const___override(x_2, x_1); return x_3; } } -static lean_object* _init_l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__4() { +static lean_object* _init_l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__4() { _start: { lean_object* x_1; uint32_t x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; x_1 = lean_box(0); x_2 = 0; -x_3 = l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__3; +x_3 = l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__3; x_4 = 1; x_5 = lean_alloc_ctor(0, 2, 5); lean_ctor_set(x_5, 0, x_3); @@ -12365,17 +9728,17 @@ lean_ctor_set_uint8(x_5, sizeof(void*)*2 + 4, x_4); return x_5; } } -static lean_object* _init_l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__5() { +static lean_object* _init_l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__5() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__4; +x_1 = l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__4; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__6() { +static lean_object* _init_l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__6() { _start: { lean_object* x_1; @@ -12383,33 +9746,33 @@ x_1 = lean_mk_string_from_bytes("true", 4); return x_1; } } -static lean_object* _init_l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__7() { +static lean_object* _init_l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__373; -x_2 = l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__6; +x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__233; +x_2 = l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__6; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } -static lean_object* _init_l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__8() { +static lean_object* _init_l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__7; +x_2 = l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__7; x_3 = l_Lean_Expr_const___override(x_2, x_1); return x_3; } } -static lean_object* _init_l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__9() { +static lean_object* _init_l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__9() { _start: { lean_object* x_1; uint32_t x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; x_1 = lean_box(0); x_2 = 0; -x_3 = l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__8; +x_3 = l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__8; x_4 = 1; x_5 = lean_alloc_ctor(0, 2, 5); lean_ctor_set(x_5, 0, x_3); @@ -12419,17 +9782,17 @@ lean_ctor_set_uint8(x_5, sizeof(void*)*2 + 4, x_4); return x_5; } } -static lean_object* _init_l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__10() { +static lean_object* _init_l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__10() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__9; +x_1 = l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__9; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -LEAN_EXPORT lean_object* l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____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, lean_object* x_11) { +LEAN_EXPORT lean_object* l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____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, lean_object* x_11) { _start: { lean_object* x_12; lean_object* x_13; lean_object* x_14; @@ -12442,6 +9805,7 @@ lean_inc(x_9); lean_inc(x_8); lean_inc(x_7); x_14 = l_UInt8_fromExpr(x_13, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_13); if (lean_obj_tag(x_14) == 0) { lean_object* x_15; @@ -12462,7 +9826,7 @@ if (x_16 == 0) lean_object* x_17; lean_object* x_18; x_17 = lean_ctor_get(x_14, 0); lean_dec(x_17); -x_18 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_18 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; lean_ctor_set(x_14, 0, x_18); return x_14; } @@ -12472,7 +9836,7 @@ lean_object* x_19; lean_object* x_20; lean_object* x_21; x_19 = lean_ctor_get(x_14, 1); lean_inc(x_19); lean_dec(x_14); -x_20 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_20 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; x_21 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_21, 0, x_20); lean_ctor_set(x_21, 1, x_19); @@ -12491,6 +9855,7 @@ lean_dec(x_15); x_24 = l_Lean_Expr_appArg_x21(x_1); lean_dec(x_1); x_25 = l_UInt8_fromExpr(x_24, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_22); +lean_dec(x_24); if (lean_obj_tag(x_25) == 0) { lean_object* x_26; @@ -12507,7 +9872,7 @@ if (x_27 == 0) lean_object* x_28; lean_object* x_29; x_28 = lean_ctor_get(x_25, 0); lean_dec(x_28); -x_29 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_29 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; lean_ctor_set(x_25, 0, x_29); return x_25; } @@ -12517,7 +9882,7 @@ lean_object* x_30; lean_object* x_31; lean_object* x_32; x_30 = lean_ctor_get(x_25, 1); lean_inc(x_30); lean_dec(x_25); -x_31 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_31 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; x_32 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_32, 0, x_31); lean_ctor_set(x_32, 1, x_30); @@ -12530,132 +9895,120 @@ uint8_t x_33; x_33 = !lean_is_exclusive(x_25); if (x_33 == 0) { -lean_object* x_34; lean_object* x_35; uint8_t x_36; uint8_t x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; uint8_t x_41; +lean_object* x_34; lean_object* x_35; lean_object* x_36; uint8_t x_37; x_34 = lean_ctor_get(x_25, 0); lean_dec(x_34); x_35 = lean_ctor_get(x_26, 0); lean_inc(x_35); lean_dec(x_26); -x_36 = lean_ctor_get_uint8(x_23, sizeof(void*)*1); -lean_dec(x_23); -x_37 = lean_ctor_get_uint8(x_35, sizeof(void*)*1); -lean_dec(x_35); -x_38 = lean_box(x_36); -x_39 = lean_box(x_37); -x_40 = lean_apply_2(x_2, x_38, x_39); -x_41 = lean_unbox(x_40); -lean_dec(x_40); -if (x_41 == 0) +x_36 = lean_apply_2(x_2, x_23, x_35); +x_37 = lean_unbox(x_36); +lean_dec(x_36); +if (x_37 == 0) { -lean_object* x_42; -x_42 = l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__5; -lean_ctor_set(x_25, 0, x_42); +lean_object* x_38; +x_38 = l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__5; +lean_ctor_set(x_25, 0, x_38); return x_25; } else { -lean_object* x_43; -x_43 = l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__10; -lean_ctor_set(x_25, 0, x_43); +lean_object* x_39; +x_39 = l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__10; +lean_ctor_set(x_25, 0, x_39); return x_25; } } else { -lean_object* x_44; lean_object* x_45; uint8_t x_46; uint8_t x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; uint8_t x_51; -x_44 = lean_ctor_get(x_25, 1); -lean_inc(x_44); +lean_object* x_40; lean_object* x_41; lean_object* x_42; uint8_t x_43; +x_40 = lean_ctor_get(x_25, 1); +lean_inc(x_40); lean_dec(x_25); -x_45 = lean_ctor_get(x_26, 0); -lean_inc(x_45); +x_41 = lean_ctor_get(x_26, 0); +lean_inc(x_41); lean_dec(x_26); -x_46 = lean_ctor_get_uint8(x_23, sizeof(void*)*1); -lean_dec(x_23); -x_47 = lean_ctor_get_uint8(x_45, sizeof(void*)*1); -lean_dec(x_45); -x_48 = lean_box(x_46); -x_49 = lean_box(x_47); -x_50 = lean_apply_2(x_2, x_48, x_49); -x_51 = lean_unbox(x_50); -lean_dec(x_50); -if (x_51 == 0) +x_42 = lean_apply_2(x_2, x_23, x_41); +x_43 = lean_unbox(x_42); +lean_dec(x_42); +if (x_43 == 0) { -lean_object* x_52; lean_object* x_53; -x_52 = l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__5; -x_53 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_53, 0, x_52); -lean_ctor_set(x_53, 1, x_44); -return x_53; +lean_object* x_44; lean_object* x_45; +x_44 = l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__5; +x_45 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_45, 0, x_44); +lean_ctor_set(x_45, 1, x_40); +return x_45; } else { -lean_object* x_54; lean_object* x_55; -x_54 = l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__10; -x_55 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_55, 0, x_54); -lean_ctor_set(x_55, 1, x_44); -return x_55; +lean_object* x_46; lean_object* x_47; +x_46 = l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__10; +x_47 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_47, 0, x_46); +lean_ctor_set(x_47, 1, x_40); +return x_47; } } } } else { -uint8_t x_56; +uint8_t x_48; lean_dec(x_23); lean_dec(x_2); -x_56 = !lean_is_exclusive(x_25); -if (x_56 == 0) +x_48 = !lean_is_exclusive(x_25); +if (x_48 == 0) { return x_25; } else { -lean_object* x_57; lean_object* x_58; lean_object* x_59; -x_57 = lean_ctor_get(x_25, 0); -x_58 = lean_ctor_get(x_25, 1); -lean_inc(x_58); -lean_inc(x_57); +lean_object* x_49; lean_object* x_50; lean_object* x_51; +x_49 = lean_ctor_get(x_25, 0); +x_50 = lean_ctor_get(x_25, 1); +lean_inc(x_50); +lean_inc(x_49); lean_dec(x_25); -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; +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 { -uint8_t x_60; +uint8_t x_52; lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); lean_dec(x_7); lean_dec(x_2); lean_dec(x_1); -x_60 = !lean_is_exclusive(x_14); -if (x_60 == 0) +x_52 = !lean_is_exclusive(x_14); +if (x_52 == 0) { return x_14; } else { -lean_object* x_61; lean_object* x_62; lean_object* x_63; -x_61 = lean_ctor_get(x_14, 0); -x_62 = lean_ctor_get(x_14, 1); -lean_inc(x_62); -lean_inc(x_61); +lean_object* x_53; lean_object* x_54; lean_object* x_55; +x_53 = lean_ctor_get(x_14, 0); +x_54 = lean_ctor_get(x_14, 1); +lean_inc(x_54); +lean_inc(x_53); lean_dec(x_14); -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; +x_55 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_55, 0, x_53); +lean_ctor_set(x_55, 1, x_54); +return x_55; } } } } -LEAN_EXPORT lean_object* l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978_(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_EXPORT lean_object* l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515_(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: { uint8_t x_13; @@ -12673,7 +10026,7 @@ lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); -x_14 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_14 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____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_12); @@ -12683,7 +10036,7 @@ else { lean_object* x_16; lean_object* x_17; x_16 = lean_box(0); -x_17 = l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1(x_4, x_3, x_16, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +x_17 = l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1(x_4, x_3, x_16, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); @@ -12691,11 +10044,11 @@ return x_17; } } } -LEAN_EXPORT lean_object* l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____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, lean_object* x_11) { +LEAN_EXPORT lean_object* l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____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, lean_object* x_11) { _start: { lean_object* x_12; -x_12 = l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +x_12 = l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); @@ -12716,6 +10069,7 @@ lean_inc(x_8); lean_inc(x_7); lean_inc(x_6); x_13 = l_UInt8_fromExpr(x_12, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_12); if (lean_obj_tag(x_13) == 0) { lean_object* x_14; @@ -12735,7 +10089,7 @@ if (x_15 == 0) lean_object* x_16; lean_object* x_17; x_16 = lean_ctor_get(x_13, 0); lean_dec(x_16); -x_17 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_17 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; lean_ctor_set(x_13, 0, x_17); return x_13; } @@ -12745,7 +10099,7 @@ lean_object* x_18; lean_object* x_19; lean_object* x_20; x_18 = lean_ctor_get(x_13, 1); lean_inc(x_18); lean_dec(x_13); -x_19 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_19 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; x_20 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_20, 0, x_19); lean_ctor_set(x_20, 1, x_18); @@ -12764,6 +10118,7 @@ lean_dec(x_14); x_23 = l_Lean_Expr_appArg_x21(x_1); lean_dec(x_1); x_24 = l_UInt8_fromExpr(x_23, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_21); +lean_dec(x_23); if (lean_obj_tag(x_24) == 0) { lean_object* x_25; @@ -12779,7 +10134,7 @@ if (x_26 == 0) lean_object* x_27; lean_object* x_28; x_27 = lean_ctor_get(x_24, 0); lean_dec(x_27); -x_28 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_28 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; lean_ctor_set(x_24, 0, x_28); return x_24; } @@ -12789,7 +10144,7 @@ lean_object* x_29; lean_object* x_30; lean_object* x_31; x_29 = lean_ctor_get(x_24, 1); lean_inc(x_29); lean_dec(x_24); -x_30 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_30 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; x_31 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_31, 0, x_30); lean_ctor_set(x_31, 1, x_29); @@ -12802,160 +10157,127 @@ uint8_t x_32; x_32 = !lean_is_exclusive(x_24); if (x_32 == 0) { -lean_object* x_33; lean_object* x_34; uint8_t x_35; +lean_object* x_33; lean_object* x_34; uint8_t x_35; uint8_t 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; uint32_t x_46; uint8_t x_47; lean_object* x_48; lean_object* x_49; x_33 = lean_ctor_get(x_24, 0); lean_dec(x_33); x_34 = lean_ctor_get(x_25, 0); lean_inc(x_34); lean_dec(x_25); -x_35 = !lean_is_exclusive(x_22); -if (x_35 == 0) -{ -uint8_t x_36; uint8_t x_37; uint8_t x_38; lean_object* x_39; lean_object* x_40; uint32_t x_41; uint8_t x_42; lean_object* x_43; lean_object* x_44; -x_36 = lean_ctor_get_uint8(x_22, sizeof(void*)*1); -x_37 = lean_ctor_get_uint8(x_34, sizeof(void*)*1); -lean_dec(x_34); -x_38 = lean_uint8_add(x_36, x_37); -lean_ctor_set_uint8(x_22, sizeof(void*)*1, x_38); -x_39 = l_UInt8_toExpr(x_22); -x_40 = lean_box(0); -x_41 = 0; -x_42 = 1; -x_43 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_43, 0, x_39); -lean_ctor_set(x_43, 1, x_40); -lean_ctor_set_uint32(x_43, sizeof(void*)*2, x_41); -lean_ctor_set_uint8(x_43, sizeof(void*)*2 + 4, x_42); -x_44 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_44, 0, x_43); -lean_ctor_set(x_24, 0, x_44); -return x_24; -} -else -{ -lean_object* x_45; uint8_t x_46; uint8_t x_47; uint8_t x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; uint32_t x_52; uint8_t x_53; lean_object* x_54; lean_object* x_55; -x_45 = lean_ctor_get(x_22, 0); -x_46 = lean_ctor_get_uint8(x_22, sizeof(void*)*1); -lean_inc(x_45); +x_35 = lean_unbox(x_22); lean_dec(x_22); -x_47 = lean_ctor_get_uint8(x_34, sizeof(void*)*1); +x_36 = lean_unbox(x_34); lean_dec(x_34); -x_48 = lean_uint8_add(x_46, x_47); -x_49 = lean_alloc_ctor(0, 1, 1); -lean_ctor_set(x_49, 0, x_45); -lean_ctor_set_uint8(x_49, sizeof(void*)*1, x_48); -x_50 = l_UInt8_toExpr(x_49); -x_51 = lean_box(0); -x_52 = 0; -x_53 = 1; -x_54 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_54, 0, x_50); -lean_ctor_set(x_54, 1, x_51); -lean_ctor_set_uint32(x_54, sizeof(void*)*2, x_52); -lean_ctor_set_uint8(x_54, sizeof(void*)*2 + 4, x_53); -x_55 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_55, 0, x_54); -lean_ctor_set(x_24, 0, x_55); +x_37 = lean_uint8_add(x_35, x_36); +x_38 = lean_uint8_to_nat(x_37); +x_39 = l_Lean_mkRawNatLit(x_38); +x_40 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__8; +lean_inc(x_39); +x_41 = l_Lean_Expr_app___override(x_40, x_39); +x_42 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__4; +x_43 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__5; +x_44 = l_Lean_mkApp3(x_42, x_43, x_39, x_41); +x_45 = lean_box(0); +x_46 = 0; +x_47 = 1; +x_48 = lean_alloc_ctor(0, 2, 5); +lean_ctor_set(x_48, 0, x_44); +lean_ctor_set(x_48, 1, x_45); +lean_ctor_set_uint32(x_48, sizeof(void*)*2, x_46); +lean_ctor_set_uint8(x_48, sizeof(void*)*2 + 4, x_47); +x_49 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_49, 0, x_48); +lean_ctor_set(x_24, 0, x_49); return x_24; } -} else { -lean_object* x_56; lean_object* x_57; lean_object* x_58; uint8_t x_59; lean_object* x_60; uint8_t x_61; uint8_t x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; uint32_t x_66; uint8_t x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; -x_56 = lean_ctor_get(x_24, 1); -lean_inc(x_56); +lean_object* x_50; lean_object* x_51; uint8_t x_52; uint8_t x_53; uint8_t 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; uint32_t x_63; uint8_t x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; +x_50 = lean_ctor_get(x_24, 1); +lean_inc(x_50); lean_dec(x_24); -x_57 = lean_ctor_get(x_25, 0); -lean_inc(x_57); +x_51 = lean_ctor_get(x_25, 0); +lean_inc(x_51); lean_dec(x_25); -x_58 = lean_ctor_get(x_22, 0); -lean_inc(x_58); -x_59 = lean_ctor_get_uint8(x_22, sizeof(void*)*1); -if (lean_is_exclusive(x_22)) { - lean_ctor_release(x_22, 0); - x_60 = x_22; -} else { - lean_dec_ref(x_22); - x_60 = lean_box(0); -} -x_61 = lean_ctor_get_uint8(x_57, sizeof(void*)*1); -lean_dec(x_57); -x_62 = lean_uint8_add(x_59, x_61); -if (lean_is_scalar(x_60)) { - x_63 = lean_alloc_ctor(0, 1, 1); -} else { - x_63 = x_60; -} -lean_ctor_set(x_63, 0, x_58); -lean_ctor_set_uint8(x_63, sizeof(void*)*1, x_62); -x_64 = l_UInt8_toExpr(x_63); -x_65 = lean_box(0); -x_66 = 0; -x_67 = 1; -x_68 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_68, 0, x_64); -lean_ctor_set(x_68, 1, x_65); -lean_ctor_set_uint32(x_68, sizeof(void*)*2, x_66); -lean_ctor_set_uint8(x_68, sizeof(void*)*2 + 4, x_67); -x_69 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_69, 0, x_68); -x_70 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_70, 0, x_69); -lean_ctor_set(x_70, 1, x_56); -return x_70; +x_52 = lean_unbox(x_22); +lean_dec(x_22); +x_53 = lean_unbox(x_51); +lean_dec(x_51); +x_54 = lean_uint8_add(x_52, x_53); +x_55 = lean_uint8_to_nat(x_54); +x_56 = l_Lean_mkRawNatLit(x_55); +x_57 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__8; +lean_inc(x_56); +x_58 = l_Lean_Expr_app___override(x_57, x_56); +x_59 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__4; +x_60 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__5; +x_61 = l_Lean_mkApp3(x_59, x_60, x_56, x_58); +x_62 = lean_box(0); +x_63 = 0; +x_64 = 1; +x_65 = lean_alloc_ctor(0, 2, 5); +lean_ctor_set(x_65, 0, x_61); +lean_ctor_set(x_65, 1, x_62); +lean_ctor_set_uint32(x_65, sizeof(void*)*2, x_63); +lean_ctor_set_uint8(x_65, sizeof(void*)*2 + 4, x_64); +x_66 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_66, 0, x_65); +x_67 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_67, 0, x_66); +lean_ctor_set(x_67, 1, x_50); +return x_67; } } } else { -uint8_t x_71; +uint8_t x_68; lean_dec(x_22); -x_71 = !lean_is_exclusive(x_24); -if (x_71 == 0) +x_68 = !lean_is_exclusive(x_24); +if (x_68 == 0) { return x_24; } else { -lean_object* x_72; lean_object* x_73; lean_object* x_74; -x_72 = lean_ctor_get(x_24, 0); -x_73 = lean_ctor_get(x_24, 1); -lean_inc(x_73); -lean_inc(x_72); +lean_object* x_69; lean_object* x_70; lean_object* x_71; +x_69 = lean_ctor_get(x_24, 0); +x_70 = lean_ctor_get(x_24, 1); +lean_inc(x_70); +lean_inc(x_69); lean_dec(x_24); -x_74 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_74, 0, x_72); -lean_ctor_set(x_74, 1, x_73); -return x_74; +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; } } } } else { -uint8_t x_75; +uint8_t x_72; lean_dec(x_9); lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_1); -x_75 = !lean_is_exclusive(x_13); -if (x_75 == 0) +x_72 = !lean_is_exclusive(x_13); +if (x_72 == 0) { return x_13; } else { -lean_object* x_76; lean_object* x_77; lean_object* x_78; -x_76 = lean_ctor_get(x_13, 0); -x_77 = lean_ctor_get(x_13, 1); -lean_inc(x_77); -lean_inc(x_76); +lean_object* x_73; lean_object* x_74; lean_object* x_75; +x_73 = lean_ctor_get(x_13, 0); +x_74 = lean_ctor_get(x_13, 1); +lean_inc(x_74); +lean_inc(x_73); lean_dec(x_13); -x_78 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_78, 0, x_76); -lean_ctor_set(x_78, 1, x_77); -return x_78; +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; } } } @@ -12964,7 +10286,7 @@ LEAN_EXPORT lean_object* l_UInt8_reduceAdd(lean_object* x_1, lean_object* x_2, l _start: { lean_object* x_10; lean_object* x_11; uint8_t x_12; -x_10 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__425; +x_10 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__279; x_11 = lean_unsigned_to_nat(6u); x_12 = l_Lean_Expr_isAppOfArity(x_1, x_10, x_11); if (x_12 == 0) @@ -12978,7 +10300,7 @@ lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_13 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_13 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; x_14 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_14, 0, x_13); lean_ctor_set(x_14, 1, x_9); @@ -13008,21 +10330,21 @@ lean_dec(x_2); return x_11; } } -static lean_object* _init_l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9616____closed__1() { +static lean_object* _init_l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8049____closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_UInt8_fromExpr___closed__1; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__410; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__264; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9616____closed__2() { +static lean_object* _init_l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8049____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__425; +x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__279; x_2 = lean_unsigned_to_nat(6u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -13030,7 +10352,7 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9616____closed__3() { +static lean_object* _init_l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8049____closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -13042,7 +10364,7 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9616____closed__4() { +static lean_object* _init_l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8049____closed__4() { _start: { lean_object* x_1; lean_object* x_2; @@ -13051,77 +10373,77 @@ x_2 = lean_mk_empty_array_with_capacity(x_1); return x_2; } } -static lean_object* _init_l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9616____closed__5() { +static lean_object* _init_l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8049____closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9616____closed__4; -x_2 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9616____closed__2; +x_1 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8049____closed__4; +x_2 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8049____closed__2; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9616____closed__6() { +static lean_object* _init_l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8049____closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9616____closed__5; -x_2 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9616____closed__3; +x_1 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8049____closed__5; +x_2 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8049____closed__3; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9616____closed__7() { +static lean_object* _init_l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8049____closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9616____closed__6; -x_2 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9616____closed__3; +x_1 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8049____closed__6; +x_2 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8049____closed__3; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9616____closed__8() { +static lean_object* _init_l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8049____closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9616____closed__7; -x_2 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9616____closed__3; +x_1 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8049____closed__7; +x_2 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8049____closed__3; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9616____closed__9() { +static lean_object* _init_l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8049____closed__9() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9616____closed__8; +x_1 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8049____closed__8; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9616____closed__10() { +static lean_object* _init_l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8049____closed__10() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9616____closed__9; +x_1 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8049____closed__9; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9616____closed__11() { +static lean_object* _init_l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8049____closed__11() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9616____closed__10; +x_1 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8049____closed__10; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9616____closed__12() { +static lean_object* _init_l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8049____closed__12() { _start: { lean_object* x_1; @@ -13129,18 +10451,18 @@ x_1 = lean_alloc_closure((void*)(l_UInt8_reduceAdd), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9616_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8049_(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_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9616____closed__1; -x_3 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9616____closed__11; -x_4 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9616____closed__12; +x_2 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8049____closed__1; +x_3 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8049____closed__11; +x_4 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8049____closed__12; x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); return x_5; } } -static lean_object* _init_l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9618____closed__1() { +static lean_object* _init_l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8051____closed__1() { _start: { lean_object* x_1; @@ -13148,19 +10470,19 @@ x_1 = l_Lean_Meta_Simp_builtinSimprocsRef; return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9618_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8051_(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____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9618____closed__1; -x_3 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9616____closed__1; +x_2 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8051____closed__1; +x_3 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8049____closed__1; x_4 = 1; -x_5 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9616____closed__12; +x_5 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8049____closed__12; 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___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9620____closed__1() { +static lean_object* _init_l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8053____closed__1() { _start: { lean_object* x_1; @@ -13168,14 +10490,14 @@ x_1 = l_Lean_Meta_Simp_builtinSEvalprocsRef; return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9620_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8053_(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____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9620____closed__1; -x_3 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9616____closed__1; +x_2 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8053____closed__1; +x_3 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8049____closed__1; x_4 = 1; -x_5 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9616____closed__12; +x_5 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8049____closed__12; x_6 = l_Lean_Meta_Simp_addSimprocBuiltinAttrCore(x_2, x_3, x_4, x_5, x_1); return x_6; } @@ -13193,6 +10515,7 @@ lean_inc(x_8); lean_inc(x_7); lean_inc(x_6); x_13 = l_UInt8_fromExpr(x_12, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_12); if (lean_obj_tag(x_13) == 0) { lean_object* x_14; @@ -13212,7 +10535,7 @@ if (x_15 == 0) lean_object* x_16; lean_object* x_17; x_16 = lean_ctor_get(x_13, 0); lean_dec(x_16); -x_17 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_17 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; lean_ctor_set(x_13, 0, x_17); return x_13; } @@ -13222,7 +10545,7 @@ lean_object* x_18; lean_object* x_19; lean_object* x_20; x_18 = lean_ctor_get(x_13, 1); lean_inc(x_18); lean_dec(x_13); -x_19 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_19 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; x_20 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_20, 0, x_19); lean_ctor_set(x_20, 1, x_18); @@ -13241,6 +10564,7 @@ lean_dec(x_14); x_23 = l_Lean_Expr_appArg_x21(x_1); lean_dec(x_1); x_24 = l_UInt8_fromExpr(x_23, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_21); +lean_dec(x_23); if (lean_obj_tag(x_24) == 0) { lean_object* x_25; @@ -13256,7 +10580,7 @@ if (x_26 == 0) lean_object* x_27; lean_object* x_28; x_27 = lean_ctor_get(x_24, 0); lean_dec(x_27); -x_28 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_28 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; lean_ctor_set(x_24, 0, x_28); return x_24; } @@ -13266,7 +10590,7 @@ lean_object* x_29; lean_object* x_30; lean_object* x_31; x_29 = lean_ctor_get(x_24, 1); lean_inc(x_29); lean_dec(x_24); -x_30 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_30 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; x_31 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_31, 0, x_30); lean_ctor_set(x_31, 1, x_29); @@ -13279,160 +10603,127 @@ uint8_t x_32; x_32 = !lean_is_exclusive(x_24); if (x_32 == 0) { -lean_object* x_33; lean_object* x_34; uint8_t x_35; +lean_object* x_33; lean_object* x_34; uint8_t x_35; uint8_t 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; uint32_t x_46; uint8_t x_47; lean_object* x_48; lean_object* x_49; x_33 = lean_ctor_get(x_24, 0); lean_dec(x_33); x_34 = lean_ctor_get(x_25, 0); lean_inc(x_34); lean_dec(x_25); -x_35 = !lean_is_exclusive(x_22); -if (x_35 == 0) -{ -uint8_t x_36; uint8_t x_37; uint8_t x_38; lean_object* x_39; lean_object* x_40; uint32_t x_41; uint8_t x_42; lean_object* x_43; lean_object* x_44; -x_36 = lean_ctor_get_uint8(x_22, sizeof(void*)*1); -x_37 = lean_ctor_get_uint8(x_34, sizeof(void*)*1); -lean_dec(x_34); -x_38 = lean_uint8_mul(x_36, x_37); -lean_ctor_set_uint8(x_22, sizeof(void*)*1, x_38); -x_39 = l_UInt8_toExpr(x_22); -x_40 = lean_box(0); -x_41 = 0; -x_42 = 1; -x_43 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_43, 0, x_39); -lean_ctor_set(x_43, 1, x_40); -lean_ctor_set_uint32(x_43, sizeof(void*)*2, x_41); -lean_ctor_set_uint8(x_43, sizeof(void*)*2 + 4, x_42); -x_44 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_44, 0, x_43); -lean_ctor_set(x_24, 0, x_44); -return x_24; -} -else -{ -lean_object* x_45; uint8_t x_46; uint8_t x_47; uint8_t x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; uint32_t x_52; uint8_t x_53; lean_object* x_54; lean_object* x_55; -x_45 = lean_ctor_get(x_22, 0); -x_46 = lean_ctor_get_uint8(x_22, sizeof(void*)*1); -lean_inc(x_45); +x_35 = lean_unbox(x_22); lean_dec(x_22); -x_47 = lean_ctor_get_uint8(x_34, sizeof(void*)*1); +x_36 = lean_unbox(x_34); lean_dec(x_34); -x_48 = lean_uint8_mul(x_46, x_47); -x_49 = lean_alloc_ctor(0, 1, 1); -lean_ctor_set(x_49, 0, x_45); -lean_ctor_set_uint8(x_49, sizeof(void*)*1, x_48); -x_50 = l_UInt8_toExpr(x_49); -x_51 = lean_box(0); -x_52 = 0; -x_53 = 1; -x_54 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_54, 0, x_50); -lean_ctor_set(x_54, 1, x_51); -lean_ctor_set_uint32(x_54, sizeof(void*)*2, x_52); -lean_ctor_set_uint8(x_54, sizeof(void*)*2 + 4, x_53); -x_55 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_55, 0, x_54); -lean_ctor_set(x_24, 0, x_55); +x_37 = lean_uint8_mul(x_35, x_36); +x_38 = lean_uint8_to_nat(x_37); +x_39 = l_Lean_mkRawNatLit(x_38); +x_40 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__8; +lean_inc(x_39); +x_41 = l_Lean_Expr_app___override(x_40, x_39); +x_42 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__4; +x_43 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__5; +x_44 = l_Lean_mkApp3(x_42, x_43, x_39, x_41); +x_45 = lean_box(0); +x_46 = 0; +x_47 = 1; +x_48 = lean_alloc_ctor(0, 2, 5); +lean_ctor_set(x_48, 0, x_44); +lean_ctor_set(x_48, 1, x_45); +lean_ctor_set_uint32(x_48, sizeof(void*)*2, x_46); +lean_ctor_set_uint8(x_48, sizeof(void*)*2 + 4, x_47); +x_49 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_49, 0, x_48); +lean_ctor_set(x_24, 0, x_49); return x_24; } -} else { -lean_object* x_56; lean_object* x_57; lean_object* x_58; uint8_t x_59; lean_object* x_60; uint8_t x_61; uint8_t x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; uint32_t x_66; uint8_t x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; -x_56 = lean_ctor_get(x_24, 1); -lean_inc(x_56); +lean_object* x_50; lean_object* x_51; uint8_t x_52; uint8_t x_53; uint8_t 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; uint32_t x_63; uint8_t x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; +x_50 = lean_ctor_get(x_24, 1); +lean_inc(x_50); lean_dec(x_24); -x_57 = lean_ctor_get(x_25, 0); -lean_inc(x_57); +x_51 = lean_ctor_get(x_25, 0); +lean_inc(x_51); lean_dec(x_25); -x_58 = lean_ctor_get(x_22, 0); -lean_inc(x_58); -x_59 = lean_ctor_get_uint8(x_22, sizeof(void*)*1); -if (lean_is_exclusive(x_22)) { - lean_ctor_release(x_22, 0); - x_60 = x_22; -} else { - lean_dec_ref(x_22); - x_60 = lean_box(0); -} -x_61 = lean_ctor_get_uint8(x_57, sizeof(void*)*1); -lean_dec(x_57); -x_62 = lean_uint8_mul(x_59, x_61); -if (lean_is_scalar(x_60)) { - x_63 = lean_alloc_ctor(0, 1, 1); -} else { - x_63 = x_60; -} -lean_ctor_set(x_63, 0, x_58); -lean_ctor_set_uint8(x_63, sizeof(void*)*1, x_62); -x_64 = l_UInt8_toExpr(x_63); -x_65 = lean_box(0); -x_66 = 0; -x_67 = 1; -x_68 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_68, 0, x_64); -lean_ctor_set(x_68, 1, x_65); -lean_ctor_set_uint32(x_68, sizeof(void*)*2, x_66); -lean_ctor_set_uint8(x_68, sizeof(void*)*2 + 4, x_67); -x_69 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_69, 0, x_68); -x_70 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_70, 0, x_69); -lean_ctor_set(x_70, 1, x_56); -return x_70; +x_52 = lean_unbox(x_22); +lean_dec(x_22); +x_53 = lean_unbox(x_51); +lean_dec(x_51); +x_54 = lean_uint8_mul(x_52, x_53); +x_55 = lean_uint8_to_nat(x_54); +x_56 = l_Lean_mkRawNatLit(x_55); +x_57 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__8; +lean_inc(x_56); +x_58 = l_Lean_Expr_app___override(x_57, x_56); +x_59 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__4; +x_60 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__5; +x_61 = l_Lean_mkApp3(x_59, x_60, x_56, x_58); +x_62 = lean_box(0); +x_63 = 0; +x_64 = 1; +x_65 = lean_alloc_ctor(0, 2, 5); +lean_ctor_set(x_65, 0, x_61); +lean_ctor_set(x_65, 1, x_62); +lean_ctor_set_uint32(x_65, sizeof(void*)*2, x_63); +lean_ctor_set_uint8(x_65, sizeof(void*)*2 + 4, x_64); +x_66 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_66, 0, x_65); +x_67 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_67, 0, x_66); +lean_ctor_set(x_67, 1, x_50); +return x_67; } } } else { -uint8_t x_71; +uint8_t x_68; lean_dec(x_22); -x_71 = !lean_is_exclusive(x_24); -if (x_71 == 0) +x_68 = !lean_is_exclusive(x_24); +if (x_68 == 0) { return x_24; } else { -lean_object* x_72; lean_object* x_73; lean_object* x_74; -x_72 = lean_ctor_get(x_24, 0); -x_73 = lean_ctor_get(x_24, 1); -lean_inc(x_73); -lean_inc(x_72); +lean_object* x_69; lean_object* x_70; lean_object* x_71; +x_69 = lean_ctor_get(x_24, 0); +x_70 = lean_ctor_get(x_24, 1); +lean_inc(x_70); +lean_inc(x_69); lean_dec(x_24); -x_74 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_74, 0, x_72); -lean_ctor_set(x_74, 1, x_73); -return x_74; +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; } } } } else { -uint8_t x_75; +uint8_t x_72; lean_dec(x_9); lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_1); -x_75 = !lean_is_exclusive(x_13); -if (x_75 == 0) +x_72 = !lean_is_exclusive(x_13); +if (x_72 == 0) { return x_13; } else { -lean_object* x_76; lean_object* x_77; lean_object* x_78; -x_76 = lean_ctor_get(x_13, 0); -x_77 = lean_ctor_get(x_13, 1); -lean_inc(x_77); -lean_inc(x_76); +lean_object* x_73; lean_object* x_74; lean_object* x_75; +x_73 = lean_ctor_get(x_13, 0); +x_74 = lean_ctor_get(x_13, 1); +lean_inc(x_74); +lean_inc(x_73); lean_dec(x_13); -x_78 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_78, 0, x_76); -lean_ctor_set(x_78, 1, x_77); -return x_78; +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; } } } @@ -13441,7 +10732,7 @@ LEAN_EXPORT lean_object* l_UInt8_reduceMul(lean_object* x_1, lean_object* x_2, l _start: { lean_object* x_10; lean_object* x_11; uint8_t x_12; -x_10 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__443; +x_10 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__299; x_11 = lean_unsigned_to_nat(6u); x_12 = l_Lean_Expr_isAppOfArity(x_1, x_10, x_11); if (x_12 == 0) @@ -13455,7 +10746,7 @@ lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_13 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_13 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; x_14 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_14, 0, x_13); lean_ctor_set(x_14, 1, x_9); @@ -13485,21 +10776,21 @@ lean_dec(x_2); return x_11; } } -static lean_object* _init_l___regBuiltin_UInt8_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9656____closed__1() { +static lean_object* _init_l___regBuiltin_UInt8_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8089____closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_UInt8_fromExpr___closed__1; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__433; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__289; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt8_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9656____closed__2() { +static lean_object* _init_l___regBuiltin_UInt8_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8089____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__443; +x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__299; x_2 = lean_unsigned_to_nat(6u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -13507,77 +10798,77 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt8_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9656____closed__3() { +static lean_object* _init_l___regBuiltin_UInt8_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8089____closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9616____closed__4; -x_2 = l___regBuiltin_UInt8_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9656____closed__2; +x_1 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8049____closed__4; +x_2 = l___regBuiltin_UInt8_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8089____closed__2; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt8_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9656____closed__4() { +static lean_object* _init_l___regBuiltin_UInt8_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8089____closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt8_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9656____closed__3; -x_2 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9616____closed__3; +x_1 = l___regBuiltin_UInt8_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8089____closed__3; +x_2 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8049____closed__3; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt8_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9656____closed__5() { +static lean_object* _init_l___regBuiltin_UInt8_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8089____closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt8_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9656____closed__4; -x_2 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9616____closed__3; +x_1 = l___regBuiltin_UInt8_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8089____closed__4; +x_2 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8049____closed__3; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt8_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9656____closed__6() { +static lean_object* _init_l___regBuiltin_UInt8_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8089____closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt8_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9656____closed__5; -x_2 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9616____closed__3; +x_1 = l___regBuiltin_UInt8_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8089____closed__5; +x_2 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8049____closed__3; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt8_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9656____closed__7() { +static lean_object* _init_l___regBuiltin_UInt8_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8089____closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt8_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9656____closed__6; +x_1 = l___regBuiltin_UInt8_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8089____closed__6; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt8_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9656____closed__8() { +static lean_object* _init_l___regBuiltin_UInt8_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8089____closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt8_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9656____closed__7; +x_1 = l___regBuiltin_UInt8_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8089____closed__7; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt8_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9656____closed__9() { +static lean_object* _init_l___regBuiltin_UInt8_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8089____closed__9() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt8_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9656____closed__8; +x_1 = l___regBuiltin_UInt8_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8089____closed__8; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt8_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9656____closed__10() { +static lean_object* _init_l___regBuiltin_UInt8_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8089____closed__10() { _start: { lean_object* x_1; @@ -13585,37 +10876,37 @@ x_1 = lean_alloc_closure((void*)(l_UInt8_reduceMul), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_UInt8_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9656_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_UInt8_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8089_(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_UInt8_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9656____closed__1; -x_3 = l___regBuiltin_UInt8_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9656____closed__9; -x_4 = l___regBuiltin_UInt8_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9656____closed__10; +x_2 = l___regBuiltin_UInt8_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8089____closed__1; +x_3 = l___regBuiltin_UInt8_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8089____closed__9; +x_4 = l___regBuiltin_UInt8_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8089____closed__10; x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); return x_5; } } -LEAN_EXPORT lean_object* l___regBuiltin_UInt8_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9658_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_UInt8_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8091_(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____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9618____closed__1; -x_3 = l___regBuiltin_UInt8_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9656____closed__1; +x_2 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8051____closed__1; +x_3 = l___regBuiltin_UInt8_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8089____closed__1; x_4 = 1; -x_5 = l___regBuiltin_UInt8_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9656____closed__10; +x_5 = l___regBuiltin_UInt8_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8089____closed__10; 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_UInt8_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9660_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_UInt8_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8093_(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____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9620____closed__1; -x_3 = l___regBuiltin_UInt8_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9656____closed__1; +x_2 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8053____closed__1; +x_3 = l___regBuiltin_UInt8_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8089____closed__1; x_4 = 1; -x_5 = l___regBuiltin_UInt8_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9656____closed__10; +x_5 = l___regBuiltin_UInt8_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8089____closed__10; x_6 = l_Lean_Meta_Simp_addSimprocBuiltinAttrCore(x_2, x_3, x_4, x_5, x_1); return x_6; } @@ -13633,6 +10924,7 @@ lean_inc(x_8); lean_inc(x_7); lean_inc(x_6); x_13 = l_UInt8_fromExpr(x_12, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_12); if (lean_obj_tag(x_13) == 0) { lean_object* x_14; @@ -13652,7 +10944,7 @@ if (x_15 == 0) lean_object* x_16; lean_object* x_17; x_16 = lean_ctor_get(x_13, 0); lean_dec(x_16); -x_17 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_17 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; lean_ctor_set(x_13, 0, x_17); return x_13; } @@ -13662,7 +10954,7 @@ lean_object* x_18; lean_object* x_19; lean_object* x_20; x_18 = lean_ctor_get(x_13, 1); lean_inc(x_18); lean_dec(x_13); -x_19 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_19 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; x_20 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_20, 0, x_19); lean_ctor_set(x_20, 1, x_18); @@ -13681,6 +10973,7 @@ lean_dec(x_14); x_23 = l_Lean_Expr_appArg_x21(x_1); lean_dec(x_1); x_24 = l_UInt8_fromExpr(x_23, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_21); +lean_dec(x_23); if (lean_obj_tag(x_24) == 0) { lean_object* x_25; @@ -13696,7 +10989,7 @@ if (x_26 == 0) lean_object* x_27; lean_object* x_28; x_27 = lean_ctor_get(x_24, 0); lean_dec(x_27); -x_28 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_28 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; lean_ctor_set(x_24, 0, x_28); return x_24; } @@ -13706,7 +10999,7 @@ lean_object* x_29; lean_object* x_30; lean_object* x_31; x_29 = lean_ctor_get(x_24, 1); lean_inc(x_29); lean_dec(x_24); -x_30 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_30 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; x_31 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_31, 0, x_30); lean_ctor_set(x_31, 1, x_29); @@ -13719,160 +11012,127 @@ uint8_t x_32; x_32 = !lean_is_exclusive(x_24); if (x_32 == 0) { -lean_object* x_33; lean_object* x_34; uint8_t x_35; +lean_object* x_33; lean_object* x_34; uint8_t x_35; uint8_t 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; uint32_t x_46; uint8_t x_47; lean_object* x_48; lean_object* x_49; x_33 = lean_ctor_get(x_24, 0); lean_dec(x_33); x_34 = lean_ctor_get(x_25, 0); lean_inc(x_34); lean_dec(x_25); -x_35 = !lean_is_exclusive(x_22); -if (x_35 == 0) -{ -uint8_t x_36; uint8_t x_37; uint8_t x_38; lean_object* x_39; lean_object* x_40; uint32_t x_41; uint8_t x_42; lean_object* x_43; lean_object* x_44; -x_36 = lean_ctor_get_uint8(x_22, sizeof(void*)*1); -x_37 = lean_ctor_get_uint8(x_34, sizeof(void*)*1); -lean_dec(x_34); -x_38 = lean_uint8_sub(x_36, x_37); -lean_ctor_set_uint8(x_22, sizeof(void*)*1, x_38); -x_39 = l_UInt8_toExpr(x_22); -x_40 = lean_box(0); -x_41 = 0; -x_42 = 1; -x_43 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_43, 0, x_39); -lean_ctor_set(x_43, 1, x_40); -lean_ctor_set_uint32(x_43, sizeof(void*)*2, x_41); -lean_ctor_set_uint8(x_43, sizeof(void*)*2 + 4, x_42); -x_44 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_44, 0, x_43); -lean_ctor_set(x_24, 0, x_44); -return x_24; -} -else -{ -lean_object* x_45; uint8_t x_46; uint8_t x_47; uint8_t x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; uint32_t x_52; uint8_t x_53; lean_object* x_54; lean_object* x_55; -x_45 = lean_ctor_get(x_22, 0); -x_46 = lean_ctor_get_uint8(x_22, sizeof(void*)*1); -lean_inc(x_45); +x_35 = lean_unbox(x_22); lean_dec(x_22); -x_47 = lean_ctor_get_uint8(x_34, sizeof(void*)*1); +x_36 = lean_unbox(x_34); lean_dec(x_34); -x_48 = lean_uint8_sub(x_46, x_47); -x_49 = lean_alloc_ctor(0, 1, 1); -lean_ctor_set(x_49, 0, x_45); -lean_ctor_set_uint8(x_49, sizeof(void*)*1, x_48); -x_50 = l_UInt8_toExpr(x_49); -x_51 = lean_box(0); -x_52 = 0; -x_53 = 1; -x_54 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_54, 0, x_50); -lean_ctor_set(x_54, 1, x_51); -lean_ctor_set_uint32(x_54, sizeof(void*)*2, x_52); -lean_ctor_set_uint8(x_54, sizeof(void*)*2 + 4, x_53); -x_55 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_55, 0, x_54); -lean_ctor_set(x_24, 0, x_55); +x_37 = lean_uint8_sub(x_35, x_36); +x_38 = lean_uint8_to_nat(x_37); +x_39 = l_Lean_mkRawNatLit(x_38); +x_40 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__8; +lean_inc(x_39); +x_41 = l_Lean_Expr_app___override(x_40, x_39); +x_42 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__4; +x_43 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__5; +x_44 = l_Lean_mkApp3(x_42, x_43, x_39, x_41); +x_45 = lean_box(0); +x_46 = 0; +x_47 = 1; +x_48 = lean_alloc_ctor(0, 2, 5); +lean_ctor_set(x_48, 0, x_44); +lean_ctor_set(x_48, 1, x_45); +lean_ctor_set_uint32(x_48, sizeof(void*)*2, x_46); +lean_ctor_set_uint8(x_48, sizeof(void*)*2 + 4, x_47); +x_49 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_49, 0, x_48); +lean_ctor_set(x_24, 0, x_49); return x_24; } -} else { -lean_object* x_56; lean_object* x_57; lean_object* x_58; uint8_t x_59; lean_object* x_60; uint8_t x_61; uint8_t x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; uint32_t x_66; uint8_t x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; -x_56 = lean_ctor_get(x_24, 1); -lean_inc(x_56); +lean_object* x_50; lean_object* x_51; uint8_t x_52; uint8_t x_53; uint8_t 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; uint32_t x_63; uint8_t x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; +x_50 = lean_ctor_get(x_24, 1); +lean_inc(x_50); lean_dec(x_24); -x_57 = lean_ctor_get(x_25, 0); -lean_inc(x_57); +x_51 = lean_ctor_get(x_25, 0); +lean_inc(x_51); lean_dec(x_25); -x_58 = lean_ctor_get(x_22, 0); -lean_inc(x_58); -x_59 = lean_ctor_get_uint8(x_22, sizeof(void*)*1); -if (lean_is_exclusive(x_22)) { - lean_ctor_release(x_22, 0); - x_60 = x_22; -} else { - lean_dec_ref(x_22); - x_60 = lean_box(0); -} -x_61 = lean_ctor_get_uint8(x_57, sizeof(void*)*1); -lean_dec(x_57); -x_62 = lean_uint8_sub(x_59, x_61); -if (lean_is_scalar(x_60)) { - x_63 = lean_alloc_ctor(0, 1, 1); -} else { - x_63 = x_60; -} -lean_ctor_set(x_63, 0, x_58); -lean_ctor_set_uint8(x_63, sizeof(void*)*1, x_62); -x_64 = l_UInt8_toExpr(x_63); -x_65 = lean_box(0); -x_66 = 0; -x_67 = 1; -x_68 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_68, 0, x_64); -lean_ctor_set(x_68, 1, x_65); -lean_ctor_set_uint32(x_68, sizeof(void*)*2, x_66); -lean_ctor_set_uint8(x_68, sizeof(void*)*2 + 4, x_67); -x_69 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_69, 0, x_68); -x_70 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_70, 0, x_69); -lean_ctor_set(x_70, 1, x_56); -return x_70; +x_52 = lean_unbox(x_22); +lean_dec(x_22); +x_53 = lean_unbox(x_51); +lean_dec(x_51); +x_54 = lean_uint8_sub(x_52, x_53); +x_55 = lean_uint8_to_nat(x_54); +x_56 = l_Lean_mkRawNatLit(x_55); +x_57 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__8; +lean_inc(x_56); +x_58 = l_Lean_Expr_app___override(x_57, x_56); +x_59 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__4; +x_60 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__5; +x_61 = l_Lean_mkApp3(x_59, x_60, x_56, x_58); +x_62 = lean_box(0); +x_63 = 0; +x_64 = 1; +x_65 = lean_alloc_ctor(0, 2, 5); +lean_ctor_set(x_65, 0, x_61); +lean_ctor_set(x_65, 1, x_62); +lean_ctor_set_uint32(x_65, sizeof(void*)*2, x_63); +lean_ctor_set_uint8(x_65, sizeof(void*)*2 + 4, x_64); +x_66 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_66, 0, x_65); +x_67 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_67, 0, x_66); +lean_ctor_set(x_67, 1, x_50); +return x_67; } } } else { -uint8_t x_71; +uint8_t x_68; lean_dec(x_22); -x_71 = !lean_is_exclusive(x_24); -if (x_71 == 0) +x_68 = !lean_is_exclusive(x_24); +if (x_68 == 0) { return x_24; } else { -lean_object* x_72; lean_object* x_73; lean_object* x_74; -x_72 = lean_ctor_get(x_24, 0); -x_73 = lean_ctor_get(x_24, 1); -lean_inc(x_73); -lean_inc(x_72); +lean_object* x_69; lean_object* x_70; lean_object* x_71; +x_69 = lean_ctor_get(x_24, 0); +x_70 = lean_ctor_get(x_24, 1); +lean_inc(x_70); +lean_inc(x_69); lean_dec(x_24); -x_74 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_74, 0, x_72); -lean_ctor_set(x_74, 1, x_73); -return x_74; +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; } } } } else { -uint8_t x_75; +uint8_t x_72; lean_dec(x_9); lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_1); -x_75 = !lean_is_exclusive(x_13); -if (x_75 == 0) +x_72 = !lean_is_exclusive(x_13); +if (x_72 == 0) { return x_13; } else { -lean_object* x_76; lean_object* x_77; lean_object* x_78; -x_76 = lean_ctor_get(x_13, 0); -x_77 = lean_ctor_get(x_13, 1); -lean_inc(x_77); -lean_inc(x_76); +lean_object* x_73; lean_object* x_74; lean_object* x_75; +x_73 = lean_ctor_get(x_13, 0); +x_74 = lean_ctor_get(x_13, 1); +lean_inc(x_74); +lean_inc(x_73); lean_dec(x_13); -x_78 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_78, 0, x_76); -lean_ctor_set(x_78, 1, x_77); -return x_78; +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; } } } @@ -13881,7 +11141,7 @@ LEAN_EXPORT lean_object* l_UInt8_reduceSub(lean_object* x_1, lean_object* x_2, l _start: { lean_object* x_10; lean_object* x_11; uint8_t x_12; -x_10 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__456; +x_10 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__312; x_11 = lean_unsigned_to_nat(6u); x_12 = l_Lean_Expr_isAppOfArity(x_1, x_10, x_11); if (x_12 == 0) @@ -13895,7 +11155,7 @@ lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_13 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_13 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; x_14 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_14, 0, x_13); lean_ctor_set(x_14, 1, x_9); @@ -13925,21 +11185,21 @@ lean_dec(x_2); return x_11; } } -static lean_object* _init_l___regBuiltin_UInt8_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9696____closed__1() { +static lean_object* _init_l___regBuiltin_UInt8_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8129____closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_UInt8_fromExpr___closed__1; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__446; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__302; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt8_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9696____closed__2() { +static lean_object* _init_l___regBuiltin_UInt8_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8129____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__456; +x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__312; x_2 = lean_unsigned_to_nat(6u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -13947,77 +11207,77 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt8_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9696____closed__3() { +static lean_object* _init_l___regBuiltin_UInt8_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8129____closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9616____closed__4; -x_2 = l___regBuiltin_UInt8_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9696____closed__2; +x_1 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8049____closed__4; +x_2 = l___regBuiltin_UInt8_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8129____closed__2; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt8_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9696____closed__4() { +static lean_object* _init_l___regBuiltin_UInt8_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8129____closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt8_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9696____closed__3; -x_2 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9616____closed__3; +x_1 = l___regBuiltin_UInt8_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8129____closed__3; +x_2 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8049____closed__3; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt8_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9696____closed__5() { +static lean_object* _init_l___regBuiltin_UInt8_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8129____closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt8_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9696____closed__4; -x_2 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9616____closed__3; +x_1 = l___regBuiltin_UInt8_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8129____closed__4; +x_2 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8049____closed__3; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt8_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9696____closed__6() { +static lean_object* _init_l___regBuiltin_UInt8_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8129____closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt8_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9696____closed__5; -x_2 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9616____closed__3; +x_1 = l___regBuiltin_UInt8_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8129____closed__5; +x_2 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8049____closed__3; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt8_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9696____closed__7() { +static lean_object* _init_l___regBuiltin_UInt8_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8129____closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt8_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9696____closed__6; +x_1 = l___regBuiltin_UInt8_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8129____closed__6; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt8_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9696____closed__8() { +static lean_object* _init_l___regBuiltin_UInt8_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8129____closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt8_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9696____closed__7; +x_1 = l___regBuiltin_UInt8_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8129____closed__7; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt8_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9696____closed__9() { +static lean_object* _init_l___regBuiltin_UInt8_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8129____closed__9() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt8_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9696____closed__8; +x_1 = l___regBuiltin_UInt8_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8129____closed__8; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt8_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9696____closed__10() { +static lean_object* _init_l___regBuiltin_UInt8_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8129____closed__10() { _start: { lean_object* x_1; @@ -14025,37 +11285,37 @@ x_1 = lean_alloc_closure((void*)(l_UInt8_reduceSub), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_UInt8_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9696_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_UInt8_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8129_(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_UInt8_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9696____closed__1; -x_3 = l___regBuiltin_UInt8_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9696____closed__9; -x_4 = l___regBuiltin_UInt8_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9696____closed__10; +x_2 = l___regBuiltin_UInt8_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8129____closed__1; +x_3 = l___regBuiltin_UInt8_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8129____closed__9; +x_4 = l___regBuiltin_UInt8_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8129____closed__10; x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); return x_5; } } -LEAN_EXPORT lean_object* l___regBuiltin_UInt8_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9698_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_UInt8_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8131_(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____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9618____closed__1; -x_3 = l___regBuiltin_UInt8_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9696____closed__1; +x_2 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8051____closed__1; +x_3 = l___regBuiltin_UInt8_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8129____closed__1; x_4 = 1; -x_5 = l___regBuiltin_UInt8_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9696____closed__10; +x_5 = l___regBuiltin_UInt8_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8129____closed__10; 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_UInt8_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9700_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_UInt8_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8133_(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____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9620____closed__1; -x_3 = l___regBuiltin_UInt8_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9696____closed__1; +x_2 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8053____closed__1; +x_3 = l___regBuiltin_UInt8_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8129____closed__1; x_4 = 1; -x_5 = l___regBuiltin_UInt8_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9696____closed__10; +x_5 = l___regBuiltin_UInt8_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8129____closed__10; x_6 = l_Lean_Meta_Simp_addSimprocBuiltinAttrCore(x_2, x_3, x_4, x_5, x_1); return x_6; } @@ -14073,6 +11333,7 @@ lean_inc(x_8); lean_inc(x_7); lean_inc(x_6); x_13 = l_UInt8_fromExpr(x_12, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_12); if (lean_obj_tag(x_13) == 0) { lean_object* x_14; @@ -14092,7 +11353,7 @@ if (x_15 == 0) lean_object* x_16; lean_object* x_17; x_16 = lean_ctor_get(x_13, 0); lean_dec(x_16); -x_17 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_17 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; lean_ctor_set(x_13, 0, x_17); return x_13; } @@ -14102,7 +11363,7 @@ lean_object* x_18; lean_object* x_19; lean_object* x_20; x_18 = lean_ctor_get(x_13, 1); lean_inc(x_18); lean_dec(x_13); -x_19 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_19 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; x_20 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_20, 0, x_19); lean_ctor_set(x_20, 1, x_18); @@ -14121,6 +11382,7 @@ lean_dec(x_14); x_23 = l_Lean_Expr_appArg_x21(x_1); lean_dec(x_1); x_24 = l_UInt8_fromExpr(x_23, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_21); +lean_dec(x_23); if (lean_obj_tag(x_24) == 0) { lean_object* x_25; @@ -14136,7 +11398,7 @@ if (x_26 == 0) lean_object* x_27; lean_object* x_28; x_27 = lean_ctor_get(x_24, 0); lean_dec(x_27); -x_28 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_28 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; lean_ctor_set(x_24, 0, x_28); return x_24; } @@ -14146,7 +11408,7 @@ lean_object* x_29; lean_object* x_30; lean_object* x_31; x_29 = lean_ctor_get(x_24, 1); lean_inc(x_29); lean_dec(x_24); -x_30 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_30 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; x_31 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_31, 0, x_30); lean_ctor_set(x_31, 1, x_29); @@ -14159,160 +11421,127 @@ uint8_t x_32; x_32 = !lean_is_exclusive(x_24); if (x_32 == 0) { -lean_object* x_33; lean_object* x_34; uint8_t x_35; +lean_object* x_33; lean_object* x_34; uint8_t x_35; uint8_t 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; uint32_t x_46; uint8_t x_47; lean_object* x_48; lean_object* x_49; x_33 = lean_ctor_get(x_24, 0); lean_dec(x_33); x_34 = lean_ctor_get(x_25, 0); lean_inc(x_34); lean_dec(x_25); -x_35 = !lean_is_exclusive(x_22); -if (x_35 == 0) -{ -uint8_t x_36; uint8_t x_37; uint8_t x_38; lean_object* x_39; lean_object* x_40; uint32_t x_41; uint8_t x_42; lean_object* x_43; lean_object* x_44; -x_36 = lean_ctor_get_uint8(x_22, sizeof(void*)*1); -x_37 = lean_ctor_get_uint8(x_34, sizeof(void*)*1); -lean_dec(x_34); -x_38 = lean_uint8_div(x_36, x_37); -lean_ctor_set_uint8(x_22, sizeof(void*)*1, x_38); -x_39 = l_UInt8_toExpr(x_22); -x_40 = lean_box(0); -x_41 = 0; -x_42 = 1; -x_43 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_43, 0, x_39); -lean_ctor_set(x_43, 1, x_40); -lean_ctor_set_uint32(x_43, sizeof(void*)*2, x_41); -lean_ctor_set_uint8(x_43, sizeof(void*)*2 + 4, x_42); -x_44 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_44, 0, x_43); -lean_ctor_set(x_24, 0, x_44); -return x_24; -} -else -{ -lean_object* x_45; uint8_t x_46; uint8_t x_47; uint8_t x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; uint32_t x_52; uint8_t x_53; lean_object* x_54; lean_object* x_55; -x_45 = lean_ctor_get(x_22, 0); -x_46 = lean_ctor_get_uint8(x_22, sizeof(void*)*1); -lean_inc(x_45); +x_35 = lean_unbox(x_22); lean_dec(x_22); -x_47 = lean_ctor_get_uint8(x_34, sizeof(void*)*1); +x_36 = lean_unbox(x_34); lean_dec(x_34); -x_48 = lean_uint8_div(x_46, x_47); -x_49 = lean_alloc_ctor(0, 1, 1); -lean_ctor_set(x_49, 0, x_45); -lean_ctor_set_uint8(x_49, sizeof(void*)*1, x_48); -x_50 = l_UInt8_toExpr(x_49); -x_51 = lean_box(0); -x_52 = 0; -x_53 = 1; -x_54 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_54, 0, x_50); -lean_ctor_set(x_54, 1, x_51); -lean_ctor_set_uint32(x_54, sizeof(void*)*2, x_52); -lean_ctor_set_uint8(x_54, sizeof(void*)*2 + 4, x_53); -x_55 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_55, 0, x_54); -lean_ctor_set(x_24, 0, x_55); +x_37 = lean_uint8_div(x_35, x_36); +x_38 = lean_uint8_to_nat(x_37); +x_39 = l_Lean_mkRawNatLit(x_38); +x_40 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__8; +lean_inc(x_39); +x_41 = l_Lean_Expr_app___override(x_40, x_39); +x_42 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__4; +x_43 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__5; +x_44 = l_Lean_mkApp3(x_42, x_43, x_39, x_41); +x_45 = lean_box(0); +x_46 = 0; +x_47 = 1; +x_48 = lean_alloc_ctor(0, 2, 5); +lean_ctor_set(x_48, 0, x_44); +lean_ctor_set(x_48, 1, x_45); +lean_ctor_set_uint32(x_48, sizeof(void*)*2, x_46); +lean_ctor_set_uint8(x_48, sizeof(void*)*2 + 4, x_47); +x_49 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_49, 0, x_48); +lean_ctor_set(x_24, 0, x_49); return x_24; } -} else { -lean_object* x_56; lean_object* x_57; lean_object* x_58; uint8_t x_59; lean_object* x_60; uint8_t x_61; uint8_t x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; uint32_t x_66; uint8_t x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; -x_56 = lean_ctor_get(x_24, 1); -lean_inc(x_56); +lean_object* x_50; lean_object* x_51; uint8_t x_52; uint8_t x_53; uint8_t 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; uint32_t x_63; uint8_t x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; +x_50 = lean_ctor_get(x_24, 1); +lean_inc(x_50); lean_dec(x_24); -x_57 = lean_ctor_get(x_25, 0); -lean_inc(x_57); +x_51 = lean_ctor_get(x_25, 0); +lean_inc(x_51); lean_dec(x_25); -x_58 = lean_ctor_get(x_22, 0); -lean_inc(x_58); -x_59 = lean_ctor_get_uint8(x_22, sizeof(void*)*1); -if (lean_is_exclusive(x_22)) { - lean_ctor_release(x_22, 0); - x_60 = x_22; -} else { - lean_dec_ref(x_22); - x_60 = lean_box(0); -} -x_61 = lean_ctor_get_uint8(x_57, sizeof(void*)*1); -lean_dec(x_57); -x_62 = lean_uint8_div(x_59, x_61); -if (lean_is_scalar(x_60)) { - x_63 = lean_alloc_ctor(0, 1, 1); -} else { - x_63 = x_60; -} -lean_ctor_set(x_63, 0, x_58); -lean_ctor_set_uint8(x_63, sizeof(void*)*1, x_62); -x_64 = l_UInt8_toExpr(x_63); -x_65 = lean_box(0); -x_66 = 0; -x_67 = 1; -x_68 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_68, 0, x_64); -lean_ctor_set(x_68, 1, x_65); -lean_ctor_set_uint32(x_68, sizeof(void*)*2, x_66); -lean_ctor_set_uint8(x_68, sizeof(void*)*2 + 4, x_67); -x_69 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_69, 0, x_68); -x_70 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_70, 0, x_69); -lean_ctor_set(x_70, 1, x_56); -return x_70; +x_52 = lean_unbox(x_22); +lean_dec(x_22); +x_53 = lean_unbox(x_51); +lean_dec(x_51); +x_54 = lean_uint8_div(x_52, x_53); +x_55 = lean_uint8_to_nat(x_54); +x_56 = l_Lean_mkRawNatLit(x_55); +x_57 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__8; +lean_inc(x_56); +x_58 = l_Lean_Expr_app___override(x_57, x_56); +x_59 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__4; +x_60 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__5; +x_61 = l_Lean_mkApp3(x_59, x_60, x_56, x_58); +x_62 = lean_box(0); +x_63 = 0; +x_64 = 1; +x_65 = lean_alloc_ctor(0, 2, 5); +lean_ctor_set(x_65, 0, x_61); +lean_ctor_set(x_65, 1, x_62); +lean_ctor_set_uint32(x_65, sizeof(void*)*2, x_63); +lean_ctor_set_uint8(x_65, sizeof(void*)*2 + 4, x_64); +x_66 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_66, 0, x_65); +x_67 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_67, 0, x_66); +lean_ctor_set(x_67, 1, x_50); +return x_67; } } } else { -uint8_t x_71; +uint8_t x_68; lean_dec(x_22); -x_71 = !lean_is_exclusive(x_24); -if (x_71 == 0) +x_68 = !lean_is_exclusive(x_24); +if (x_68 == 0) { return x_24; } else { -lean_object* x_72; lean_object* x_73; lean_object* x_74; -x_72 = lean_ctor_get(x_24, 0); -x_73 = lean_ctor_get(x_24, 1); -lean_inc(x_73); -lean_inc(x_72); +lean_object* x_69; lean_object* x_70; lean_object* x_71; +x_69 = lean_ctor_get(x_24, 0); +x_70 = lean_ctor_get(x_24, 1); +lean_inc(x_70); +lean_inc(x_69); lean_dec(x_24); -x_74 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_74, 0, x_72); -lean_ctor_set(x_74, 1, x_73); -return x_74; +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; } } } } else { -uint8_t x_75; +uint8_t x_72; lean_dec(x_9); lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_1); -x_75 = !lean_is_exclusive(x_13); -if (x_75 == 0) +x_72 = !lean_is_exclusive(x_13); +if (x_72 == 0) { return x_13; } else { -lean_object* x_76; lean_object* x_77; lean_object* x_78; -x_76 = lean_ctor_get(x_13, 0); -x_77 = lean_ctor_get(x_13, 1); -lean_inc(x_77); -lean_inc(x_76); +lean_object* x_73; lean_object* x_74; lean_object* x_75; +x_73 = lean_ctor_get(x_13, 0); +x_74 = lean_ctor_get(x_13, 1); +lean_inc(x_74); +lean_inc(x_73); lean_dec(x_13); -x_78 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_78, 0, x_76); -lean_ctor_set(x_78, 1, x_77); -return x_78; +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; } } } @@ -14321,7 +11550,7 @@ LEAN_EXPORT lean_object* l_UInt8_reduceDiv(lean_object* x_1, lean_object* x_2, l _start: { lean_object* x_10; lean_object* x_11; uint8_t x_12; -x_10 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__469; +x_10 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__325; x_11 = lean_unsigned_to_nat(6u); x_12 = l_Lean_Expr_isAppOfArity(x_1, x_10, x_11); if (x_12 == 0) @@ -14335,7 +11564,7 @@ lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_13 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_13 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; x_14 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_14, 0, x_13); lean_ctor_set(x_14, 1, x_9); @@ -14365,21 +11594,21 @@ lean_dec(x_2); return x_11; } } -static lean_object* _init_l___regBuiltin_UInt8_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9736____closed__1() { +static lean_object* _init_l___regBuiltin_UInt8_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8169____closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_UInt8_fromExpr___closed__1; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__459; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__315; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt8_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9736____closed__2() { +static lean_object* _init_l___regBuiltin_UInt8_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8169____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__469; +x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__325; x_2 = lean_unsigned_to_nat(6u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -14387,77 +11616,77 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt8_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9736____closed__3() { +static lean_object* _init_l___regBuiltin_UInt8_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8169____closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9616____closed__4; -x_2 = l___regBuiltin_UInt8_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9736____closed__2; +x_1 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8049____closed__4; +x_2 = l___regBuiltin_UInt8_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8169____closed__2; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt8_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9736____closed__4() { +static lean_object* _init_l___regBuiltin_UInt8_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8169____closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt8_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9736____closed__3; -x_2 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9616____closed__3; +x_1 = l___regBuiltin_UInt8_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8169____closed__3; +x_2 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8049____closed__3; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt8_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9736____closed__5() { +static lean_object* _init_l___regBuiltin_UInt8_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8169____closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt8_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9736____closed__4; -x_2 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9616____closed__3; +x_1 = l___regBuiltin_UInt8_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8169____closed__4; +x_2 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8049____closed__3; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt8_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9736____closed__6() { +static lean_object* _init_l___regBuiltin_UInt8_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8169____closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt8_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9736____closed__5; -x_2 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9616____closed__3; +x_1 = l___regBuiltin_UInt8_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8169____closed__5; +x_2 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8049____closed__3; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt8_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9736____closed__7() { +static lean_object* _init_l___regBuiltin_UInt8_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8169____closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt8_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9736____closed__6; +x_1 = l___regBuiltin_UInt8_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8169____closed__6; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt8_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9736____closed__8() { +static lean_object* _init_l___regBuiltin_UInt8_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8169____closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt8_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9736____closed__7; +x_1 = l___regBuiltin_UInt8_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8169____closed__7; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt8_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9736____closed__9() { +static lean_object* _init_l___regBuiltin_UInt8_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8169____closed__9() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt8_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9736____closed__8; +x_1 = l___regBuiltin_UInt8_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8169____closed__8; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt8_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9736____closed__10() { +static lean_object* _init_l___regBuiltin_UInt8_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8169____closed__10() { _start: { lean_object* x_1; @@ -14465,37 +11694,37 @@ x_1 = lean_alloc_closure((void*)(l_UInt8_reduceDiv), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_UInt8_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9736_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_UInt8_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8169_(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_UInt8_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9736____closed__1; -x_3 = l___regBuiltin_UInt8_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9736____closed__9; -x_4 = l___regBuiltin_UInt8_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9736____closed__10; +x_2 = l___regBuiltin_UInt8_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8169____closed__1; +x_3 = l___regBuiltin_UInt8_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8169____closed__9; +x_4 = l___regBuiltin_UInt8_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8169____closed__10; x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); return x_5; } } -LEAN_EXPORT lean_object* l___regBuiltin_UInt8_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9738_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_UInt8_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8171_(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____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9618____closed__1; -x_3 = l___regBuiltin_UInt8_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9736____closed__1; +x_2 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8051____closed__1; +x_3 = l___regBuiltin_UInt8_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8169____closed__1; x_4 = 1; -x_5 = l___regBuiltin_UInt8_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9736____closed__10; +x_5 = l___regBuiltin_UInt8_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8169____closed__10; 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_UInt8_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9740_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_UInt8_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8173_(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____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9620____closed__1; -x_3 = l___regBuiltin_UInt8_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9736____closed__1; +x_2 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8053____closed__1; +x_3 = l___regBuiltin_UInt8_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8169____closed__1; x_4 = 1; -x_5 = l___regBuiltin_UInt8_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9736____closed__10; +x_5 = l___regBuiltin_UInt8_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8169____closed__10; x_6 = l_Lean_Meta_Simp_addSimprocBuiltinAttrCore(x_2, x_3, x_4, x_5, x_1); return x_6; } @@ -14513,6 +11742,7 @@ lean_inc(x_8); lean_inc(x_7); lean_inc(x_6); x_13 = l_UInt8_fromExpr(x_12, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_12); if (lean_obj_tag(x_13) == 0) { lean_object* x_14; @@ -14532,7 +11762,7 @@ if (x_15 == 0) lean_object* x_16; lean_object* x_17; x_16 = lean_ctor_get(x_13, 0); lean_dec(x_16); -x_17 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_17 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; lean_ctor_set(x_13, 0, x_17); return x_13; } @@ -14542,7 +11772,7 @@ lean_object* x_18; lean_object* x_19; lean_object* x_20; x_18 = lean_ctor_get(x_13, 1); lean_inc(x_18); lean_dec(x_13); -x_19 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_19 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; x_20 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_20, 0, x_19); lean_ctor_set(x_20, 1, x_18); @@ -14561,6 +11791,7 @@ lean_dec(x_14); x_23 = l_Lean_Expr_appArg_x21(x_1); lean_dec(x_1); x_24 = l_UInt8_fromExpr(x_23, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_21); +lean_dec(x_23); if (lean_obj_tag(x_24) == 0) { lean_object* x_25; @@ -14576,7 +11807,7 @@ if (x_26 == 0) lean_object* x_27; lean_object* x_28; x_27 = lean_ctor_get(x_24, 0); lean_dec(x_27); -x_28 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_28 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; lean_ctor_set(x_24, 0, x_28); return x_24; } @@ -14586,7 +11817,7 @@ lean_object* x_29; lean_object* x_30; lean_object* x_31; x_29 = lean_ctor_get(x_24, 1); lean_inc(x_29); lean_dec(x_24); -x_30 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_30 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; x_31 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_31, 0, x_30); lean_ctor_set(x_31, 1, x_29); @@ -14599,160 +11830,127 @@ uint8_t x_32; x_32 = !lean_is_exclusive(x_24); if (x_32 == 0) { -lean_object* x_33; lean_object* x_34; uint8_t x_35; +lean_object* x_33; lean_object* x_34; uint8_t x_35; uint8_t 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; uint32_t x_46; uint8_t x_47; lean_object* x_48; lean_object* x_49; x_33 = lean_ctor_get(x_24, 0); lean_dec(x_33); x_34 = lean_ctor_get(x_25, 0); lean_inc(x_34); lean_dec(x_25); -x_35 = !lean_is_exclusive(x_22); -if (x_35 == 0) -{ -uint8_t x_36; uint8_t x_37; uint8_t x_38; lean_object* x_39; lean_object* x_40; uint32_t x_41; uint8_t x_42; lean_object* x_43; lean_object* x_44; -x_36 = lean_ctor_get_uint8(x_22, sizeof(void*)*1); -x_37 = lean_ctor_get_uint8(x_34, sizeof(void*)*1); -lean_dec(x_34); -x_38 = lean_uint8_mod(x_36, x_37); -lean_ctor_set_uint8(x_22, sizeof(void*)*1, x_38); -x_39 = l_UInt8_toExpr(x_22); -x_40 = lean_box(0); -x_41 = 0; -x_42 = 1; -x_43 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_43, 0, x_39); -lean_ctor_set(x_43, 1, x_40); -lean_ctor_set_uint32(x_43, sizeof(void*)*2, x_41); -lean_ctor_set_uint8(x_43, sizeof(void*)*2 + 4, x_42); -x_44 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_44, 0, x_43); -lean_ctor_set(x_24, 0, x_44); -return x_24; -} -else -{ -lean_object* x_45; uint8_t x_46; uint8_t x_47; uint8_t x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; uint32_t x_52; uint8_t x_53; lean_object* x_54; lean_object* x_55; -x_45 = lean_ctor_get(x_22, 0); -x_46 = lean_ctor_get_uint8(x_22, sizeof(void*)*1); -lean_inc(x_45); +x_35 = lean_unbox(x_22); lean_dec(x_22); -x_47 = lean_ctor_get_uint8(x_34, sizeof(void*)*1); +x_36 = lean_unbox(x_34); lean_dec(x_34); -x_48 = lean_uint8_mod(x_46, x_47); -x_49 = lean_alloc_ctor(0, 1, 1); -lean_ctor_set(x_49, 0, x_45); -lean_ctor_set_uint8(x_49, sizeof(void*)*1, x_48); -x_50 = l_UInt8_toExpr(x_49); -x_51 = lean_box(0); -x_52 = 0; -x_53 = 1; -x_54 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_54, 0, x_50); -lean_ctor_set(x_54, 1, x_51); -lean_ctor_set_uint32(x_54, sizeof(void*)*2, x_52); -lean_ctor_set_uint8(x_54, sizeof(void*)*2 + 4, x_53); -x_55 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_55, 0, x_54); -lean_ctor_set(x_24, 0, x_55); +x_37 = lean_uint8_mod(x_35, x_36); +x_38 = lean_uint8_to_nat(x_37); +x_39 = l_Lean_mkRawNatLit(x_38); +x_40 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__8; +lean_inc(x_39); +x_41 = l_Lean_Expr_app___override(x_40, x_39); +x_42 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__4; +x_43 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__5; +x_44 = l_Lean_mkApp3(x_42, x_43, x_39, x_41); +x_45 = lean_box(0); +x_46 = 0; +x_47 = 1; +x_48 = lean_alloc_ctor(0, 2, 5); +lean_ctor_set(x_48, 0, x_44); +lean_ctor_set(x_48, 1, x_45); +lean_ctor_set_uint32(x_48, sizeof(void*)*2, x_46); +lean_ctor_set_uint8(x_48, sizeof(void*)*2 + 4, x_47); +x_49 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_49, 0, x_48); +lean_ctor_set(x_24, 0, x_49); return x_24; } -} else { -lean_object* x_56; lean_object* x_57; lean_object* x_58; uint8_t x_59; lean_object* x_60; uint8_t x_61; uint8_t x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; uint32_t x_66; uint8_t x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; -x_56 = lean_ctor_get(x_24, 1); -lean_inc(x_56); +lean_object* x_50; lean_object* x_51; uint8_t x_52; uint8_t x_53; uint8_t 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; uint32_t x_63; uint8_t x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; +x_50 = lean_ctor_get(x_24, 1); +lean_inc(x_50); lean_dec(x_24); -x_57 = lean_ctor_get(x_25, 0); -lean_inc(x_57); +x_51 = lean_ctor_get(x_25, 0); +lean_inc(x_51); lean_dec(x_25); -x_58 = lean_ctor_get(x_22, 0); -lean_inc(x_58); -x_59 = lean_ctor_get_uint8(x_22, sizeof(void*)*1); -if (lean_is_exclusive(x_22)) { - lean_ctor_release(x_22, 0); - x_60 = x_22; -} else { - lean_dec_ref(x_22); - x_60 = lean_box(0); -} -x_61 = lean_ctor_get_uint8(x_57, sizeof(void*)*1); -lean_dec(x_57); -x_62 = lean_uint8_mod(x_59, x_61); -if (lean_is_scalar(x_60)) { - x_63 = lean_alloc_ctor(0, 1, 1); -} else { - x_63 = x_60; -} -lean_ctor_set(x_63, 0, x_58); -lean_ctor_set_uint8(x_63, sizeof(void*)*1, x_62); -x_64 = l_UInt8_toExpr(x_63); -x_65 = lean_box(0); -x_66 = 0; -x_67 = 1; -x_68 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_68, 0, x_64); -lean_ctor_set(x_68, 1, x_65); -lean_ctor_set_uint32(x_68, sizeof(void*)*2, x_66); -lean_ctor_set_uint8(x_68, sizeof(void*)*2 + 4, x_67); -x_69 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_69, 0, x_68); -x_70 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_70, 0, x_69); -lean_ctor_set(x_70, 1, x_56); -return x_70; +x_52 = lean_unbox(x_22); +lean_dec(x_22); +x_53 = lean_unbox(x_51); +lean_dec(x_51); +x_54 = lean_uint8_mod(x_52, x_53); +x_55 = lean_uint8_to_nat(x_54); +x_56 = l_Lean_mkRawNatLit(x_55); +x_57 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__8; +lean_inc(x_56); +x_58 = l_Lean_Expr_app___override(x_57, x_56); +x_59 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__4; +x_60 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__5; +x_61 = l_Lean_mkApp3(x_59, x_60, x_56, x_58); +x_62 = lean_box(0); +x_63 = 0; +x_64 = 1; +x_65 = lean_alloc_ctor(0, 2, 5); +lean_ctor_set(x_65, 0, x_61); +lean_ctor_set(x_65, 1, x_62); +lean_ctor_set_uint32(x_65, sizeof(void*)*2, x_63); +lean_ctor_set_uint8(x_65, sizeof(void*)*2 + 4, x_64); +x_66 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_66, 0, x_65); +x_67 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_67, 0, x_66); +lean_ctor_set(x_67, 1, x_50); +return x_67; } } } else { -uint8_t x_71; +uint8_t x_68; lean_dec(x_22); -x_71 = !lean_is_exclusive(x_24); -if (x_71 == 0) +x_68 = !lean_is_exclusive(x_24); +if (x_68 == 0) { return x_24; } else { -lean_object* x_72; lean_object* x_73; lean_object* x_74; -x_72 = lean_ctor_get(x_24, 0); -x_73 = lean_ctor_get(x_24, 1); -lean_inc(x_73); -lean_inc(x_72); +lean_object* x_69; lean_object* x_70; lean_object* x_71; +x_69 = lean_ctor_get(x_24, 0); +x_70 = lean_ctor_get(x_24, 1); +lean_inc(x_70); +lean_inc(x_69); lean_dec(x_24); -x_74 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_74, 0, x_72); -lean_ctor_set(x_74, 1, x_73); -return x_74; +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; } } } } else { -uint8_t x_75; +uint8_t x_72; lean_dec(x_9); lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_1); -x_75 = !lean_is_exclusive(x_13); -if (x_75 == 0) +x_72 = !lean_is_exclusive(x_13); +if (x_72 == 0) { return x_13; } else { -lean_object* x_76; lean_object* x_77; lean_object* x_78; -x_76 = lean_ctor_get(x_13, 0); -x_77 = lean_ctor_get(x_13, 1); -lean_inc(x_77); -lean_inc(x_76); +lean_object* x_73; lean_object* x_74; lean_object* x_75; +x_73 = lean_ctor_get(x_13, 0); +x_74 = lean_ctor_get(x_13, 1); +lean_inc(x_74); +lean_inc(x_73); lean_dec(x_13); -x_78 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_78, 0, x_76); -lean_ctor_set(x_78, 1, x_77); -return x_78; +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; } } } @@ -14761,7 +11959,7 @@ LEAN_EXPORT lean_object* l_UInt8_reduceMod(lean_object* x_1, lean_object* x_2, l _start: { lean_object* x_10; lean_object* x_11; uint8_t x_12; -x_10 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__482; +x_10 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__338; x_11 = lean_unsigned_to_nat(6u); x_12 = l_Lean_Expr_isAppOfArity(x_1, x_10, x_11); if (x_12 == 0) @@ -14775,7 +11973,7 @@ lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_13 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_13 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; x_14 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_14, 0, x_13); lean_ctor_set(x_14, 1, x_9); @@ -14805,21 +12003,21 @@ lean_dec(x_2); return x_11; } } -static lean_object* _init_l___regBuiltin_UInt8_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9776____closed__1() { +static lean_object* _init_l___regBuiltin_UInt8_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8209____closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_UInt8_fromExpr___closed__1; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__472; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__328; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt8_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9776____closed__2() { +static lean_object* _init_l___regBuiltin_UInt8_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8209____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__482; +x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__338; x_2 = lean_unsigned_to_nat(6u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -14827,77 +12025,77 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt8_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9776____closed__3() { +static lean_object* _init_l___regBuiltin_UInt8_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8209____closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9616____closed__4; -x_2 = l___regBuiltin_UInt8_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9776____closed__2; +x_1 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8049____closed__4; +x_2 = l___regBuiltin_UInt8_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8209____closed__2; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt8_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9776____closed__4() { +static lean_object* _init_l___regBuiltin_UInt8_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8209____closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt8_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9776____closed__3; -x_2 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9616____closed__3; +x_1 = l___regBuiltin_UInt8_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8209____closed__3; +x_2 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8049____closed__3; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt8_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9776____closed__5() { +static lean_object* _init_l___regBuiltin_UInt8_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8209____closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt8_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9776____closed__4; -x_2 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9616____closed__3; +x_1 = l___regBuiltin_UInt8_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8209____closed__4; +x_2 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8049____closed__3; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt8_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9776____closed__6() { +static lean_object* _init_l___regBuiltin_UInt8_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8209____closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt8_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9776____closed__5; -x_2 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9616____closed__3; +x_1 = l___regBuiltin_UInt8_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8209____closed__5; +x_2 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8049____closed__3; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt8_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9776____closed__7() { +static lean_object* _init_l___regBuiltin_UInt8_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8209____closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt8_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9776____closed__6; +x_1 = l___regBuiltin_UInt8_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8209____closed__6; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt8_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9776____closed__8() { +static lean_object* _init_l___regBuiltin_UInt8_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8209____closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt8_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9776____closed__7; +x_1 = l___regBuiltin_UInt8_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8209____closed__7; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt8_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9776____closed__9() { +static lean_object* _init_l___regBuiltin_UInt8_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8209____closed__9() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt8_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9776____closed__8; +x_1 = l___regBuiltin_UInt8_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8209____closed__8; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt8_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9776____closed__10() { +static lean_object* _init_l___regBuiltin_UInt8_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8209____closed__10() { _start: { lean_object* x_1; @@ -14905,37 +12103,37 @@ x_1 = lean_alloc_closure((void*)(l_UInt8_reduceMod), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_UInt8_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9776_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_UInt8_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8209_(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_UInt8_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9776____closed__1; -x_3 = l___regBuiltin_UInt8_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9776____closed__9; -x_4 = l___regBuiltin_UInt8_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9776____closed__10; +x_2 = l___regBuiltin_UInt8_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8209____closed__1; +x_3 = l___regBuiltin_UInt8_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8209____closed__9; +x_4 = l___regBuiltin_UInt8_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8209____closed__10; x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); return x_5; } } -LEAN_EXPORT lean_object* l___regBuiltin_UInt8_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9778_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_UInt8_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8211_(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____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9618____closed__1; -x_3 = l___regBuiltin_UInt8_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9776____closed__1; +x_2 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8051____closed__1; +x_3 = l___regBuiltin_UInt8_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8209____closed__1; x_4 = 1; -x_5 = l___regBuiltin_UInt8_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9776____closed__10; +x_5 = l___regBuiltin_UInt8_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8209____closed__10; 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_UInt8_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9780_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_UInt8_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8213_(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____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9620____closed__1; -x_3 = l___regBuiltin_UInt8_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9776____closed__1; +x_2 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8053____closed__1; +x_3 = l___regBuiltin_UInt8_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8209____closed__1; x_4 = 1; -x_5 = l___regBuiltin_UInt8_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9776____closed__10; +x_5 = l___regBuiltin_UInt8_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8209____closed__10; x_6 = l_Lean_Meta_Simp_addSimprocBuiltinAttrCore(x_2, x_3, x_4, x_5, x_1); return x_6; } @@ -14953,6 +12151,7 @@ lean_inc(x_8); lean_inc(x_7); lean_inc(x_6); x_13 = l_UInt8_fromExpr(x_12, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_12); if (lean_obj_tag(x_13) == 0) { lean_object* x_14; @@ -14972,7 +12171,7 @@ if (x_15 == 0) lean_object* x_16; lean_object* x_17; x_16 = lean_ctor_get(x_13, 0); lean_dec(x_16); -x_17 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_17 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; lean_ctor_set(x_13, 0, x_17); return x_13; } @@ -14982,7 +12181,7 @@ lean_object* x_18; lean_object* x_19; lean_object* x_20; x_18 = lean_ctor_get(x_13, 1); lean_inc(x_18); lean_dec(x_13); -x_19 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_19 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; x_20 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_20, 0, x_19); lean_ctor_set(x_20, 1, x_18); @@ -15004,6 +12203,7 @@ lean_inc(x_8); lean_inc(x_7); lean_inc(x_6); x_24 = l_UInt8_fromExpr(x_23, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_21); +lean_dec(x_23); if (lean_obj_tag(x_24) == 0) { lean_object* x_25; @@ -15024,7 +12224,7 @@ if (x_26 == 0) lean_object* x_27; lean_object* x_28; x_27 = lean_ctor_get(x_24, 0); lean_dec(x_27); -x_28 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_28 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; lean_ctor_set(x_24, 0, x_28); return x_24; } @@ -15034,7 +12234,7 @@ lean_object* x_29; lean_object* x_30; lean_object* x_31; x_29 = lean_ctor_get(x_24, 1); lean_inc(x_29); lean_dec(x_24); -x_30 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_30 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; x_31 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_31, 0, x_30); lean_ctor_set(x_31, 1, x_29); @@ -15050,9 +12250,9 @@ lean_dec(x_24); x_33 = lean_ctor_get(x_25, 0); lean_inc(x_33); lean_dec(x_25); -x_34 = lean_ctor_get_uint8(x_22, sizeof(void*)*1); +x_34 = lean_unbox(x_22); lean_dec(x_22); -x_35 = lean_ctor_get_uint8(x_33, sizeof(void*)*1); +x_35 = lean_unbox(x_33); lean_dec(x_33); x_36 = lean_uint8_dec_lt(x_34, x_35); x_37 = l_Lean_Meta_Simp_evalPropStep(x_1, x_36, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_32); @@ -15122,7 +12322,7 @@ LEAN_EXPORT lean_object* l_UInt8_reduceLT(lean_object* x_1, lean_object* x_2, le _start: { lean_object* x_10; lean_object* x_11; uint8_t x_12; -x_10 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__495; +x_10 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__351; x_11 = lean_unsigned_to_nat(4u); x_12 = l_Lean_Expr_isAppOfArity(x_1, x_10, x_11); if (x_12 == 0) @@ -15136,7 +12336,7 @@ lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_13 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_13 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; x_14 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_14, 0, x_13); lean_ctor_set(x_14, 1, x_9); @@ -15166,21 +12366,21 @@ lean_dec(x_2); return x_11; } } -static lean_object* _init_l___regBuiltin_UInt8_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9817____closed__1() { +static lean_object* _init_l___regBuiltin_UInt8_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8250____closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_UInt8_fromExpr___closed__1; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__485; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__341; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt8_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9817____closed__2() { +static lean_object* _init_l___regBuiltin_UInt8_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8250____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__495; +x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__351; x_2 = lean_unsigned_to_nat(4u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -15188,7 +12388,7 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt8_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9817____closed__3() { +static lean_object* _init_l___regBuiltin_UInt8_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8250____closed__3() { _start: { lean_object* x_1; lean_object* x_2; @@ -15197,57 +12397,57 @@ x_2 = lean_mk_empty_array_with_capacity(x_1); return x_2; } } -static lean_object* _init_l___regBuiltin_UInt8_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9817____closed__4() { +static lean_object* _init_l___regBuiltin_UInt8_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8250____closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt8_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9817____closed__3; -x_2 = l___regBuiltin_UInt8_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9817____closed__2; +x_1 = l___regBuiltin_UInt8_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8250____closed__3; +x_2 = l___regBuiltin_UInt8_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8250____closed__2; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt8_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9817____closed__5() { +static lean_object* _init_l___regBuiltin_UInt8_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8250____closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt8_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9817____closed__4; -x_2 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9616____closed__3; +x_1 = l___regBuiltin_UInt8_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8250____closed__4; +x_2 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8049____closed__3; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt8_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9817____closed__6() { +static lean_object* _init_l___regBuiltin_UInt8_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8250____closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt8_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9817____closed__5; +x_1 = l___regBuiltin_UInt8_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8250____closed__5; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt8_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9817____closed__7() { +static lean_object* _init_l___regBuiltin_UInt8_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8250____closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt8_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9817____closed__6; +x_1 = l___regBuiltin_UInt8_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8250____closed__6; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt8_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9817____closed__8() { +static lean_object* _init_l___regBuiltin_UInt8_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8250____closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt8_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9817____closed__7; +x_1 = l___regBuiltin_UInt8_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8250____closed__7; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt8_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9817____closed__9() { +static lean_object* _init_l___regBuiltin_UInt8_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8250____closed__9() { _start: { lean_object* x_1; @@ -15255,37 +12455,37 @@ x_1 = lean_alloc_closure((void*)(l_UInt8_reduceLT), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_UInt8_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9817_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_UInt8_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8250_(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_UInt8_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9817____closed__1; -x_3 = l___regBuiltin_UInt8_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9817____closed__8; -x_4 = l___regBuiltin_UInt8_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9817____closed__9; +x_2 = l___regBuiltin_UInt8_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8250____closed__1; +x_3 = l___regBuiltin_UInt8_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8250____closed__8; +x_4 = l___regBuiltin_UInt8_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8250____closed__9; x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); return x_5; } } -LEAN_EXPORT lean_object* l___regBuiltin_UInt8_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9819_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_UInt8_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8252_(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____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9618____closed__1; -x_3 = l___regBuiltin_UInt8_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9817____closed__1; +x_2 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8051____closed__1; +x_3 = l___regBuiltin_UInt8_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8250____closed__1; x_4 = 1; -x_5 = l___regBuiltin_UInt8_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9817____closed__9; +x_5 = l___regBuiltin_UInt8_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8250____closed__9; 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_UInt8_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9821_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_UInt8_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8254_(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____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9620____closed__1; -x_3 = l___regBuiltin_UInt8_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9817____closed__1; +x_2 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8053____closed__1; +x_3 = l___regBuiltin_UInt8_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8250____closed__1; x_4 = 1; -x_5 = l___regBuiltin_UInt8_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9817____closed__9; +x_5 = l___regBuiltin_UInt8_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8250____closed__9; x_6 = l_Lean_Meta_Simp_addSimprocBuiltinAttrCore(x_2, x_3, x_4, x_5, x_1); return x_6; } @@ -15303,6 +12503,7 @@ lean_inc(x_8); lean_inc(x_7); lean_inc(x_6); x_13 = l_UInt8_fromExpr(x_12, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_12); if (lean_obj_tag(x_13) == 0) { lean_object* x_14; @@ -15322,7 +12523,7 @@ if (x_15 == 0) lean_object* x_16; lean_object* x_17; x_16 = lean_ctor_get(x_13, 0); lean_dec(x_16); -x_17 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_17 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; lean_ctor_set(x_13, 0, x_17); return x_13; } @@ -15332,7 +12533,7 @@ lean_object* x_18; lean_object* x_19; lean_object* x_20; x_18 = lean_ctor_get(x_13, 1); lean_inc(x_18); lean_dec(x_13); -x_19 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_19 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; x_20 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_20, 0, x_19); lean_ctor_set(x_20, 1, x_18); @@ -15354,6 +12555,7 @@ lean_inc(x_8); lean_inc(x_7); lean_inc(x_6); x_24 = l_UInt8_fromExpr(x_23, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_21); +lean_dec(x_23); if (lean_obj_tag(x_24) == 0) { lean_object* x_25; @@ -15374,7 +12576,7 @@ if (x_26 == 0) lean_object* x_27; lean_object* x_28; x_27 = lean_ctor_get(x_24, 0); lean_dec(x_27); -x_28 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_28 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; lean_ctor_set(x_24, 0, x_28); return x_24; } @@ -15384,7 +12586,7 @@ lean_object* x_29; lean_object* x_30; lean_object* x_31; x_29 = lean_ctor_get(x_24, 1); lean_inc(x_29); lean_dec(x_24); -x_30 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_30 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; x_31 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_31, 0, x_30); lean_ctor_set(x_31, 1, x_29); @@ -15400,9 +12602,9 @@ lean_dec(x_24); x_33 = lean_ctor_get(x_25, 0); lean_inc(x_33); lean_dec(x_25); -x_34 = lean_ctor_get_uint8(x_22, sizeof(void*)*1); +x_34 = lean_unbox(x_22); lean_dec(x_22); -x_35 = lean_ctor_get_uint8(x_33, sizeof(void*)*1); +x_35 = lean_unbox(x_33); lean_dec(x_33); x_36 = lean_uint8_dec_le(x_34, x_35); x_37 = l_Lean_Meta_Simp_evalPropStep(x_1, x_36, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_32); @@ -15472,7 +12674,7 @@ LEAN_EXPORT lean_object* l_UInt8_reduceLE(lean_object* x_1, lean_object* x_2, le _start: { lean_object* x_10; lean_object* x_11; uint8_t x_12; -x_10 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__509; +x_10 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__365; x_11 = lean_unsigned_to_nat(4u); x_12 = l_Lean_Expr_isAppOfArity(x_1, x_10, x_11); if (x_12 == 0) @@ -15486,7 +12688,7 @@ lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_13 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_13 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; x_14 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_14, 0, x_13); lean_ctor_set(x_14, 1, x_9); @@ -15516,21 +12718,21 @@ lean_dec(x_2); return x_11; } } -static lean_object* _init_l___regBuiltin_UInt8_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9858____closed__1() { +static lean_object* _init_l___regBuiltin_UInt8_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8291____closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_UInt8_fromExpr___closed__1; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__499; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__355; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt8_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9858____closed__2() { +static lean_object* _init_l___regBuiltin_UInt8_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8291____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__509; +x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__365; x_2 = lean_unsigned_to_nat(4u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -15538,57 +12740,57 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt8_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9858____closed__3() { +static lean_object* _init_l___regBuiltin_UInt8_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8291____closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt8_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9817____closed__3; -x_2 = l___regBuiltin_UInt8_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9858____closed__2; +x_1 = l___regBuiltin_UInt8_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8250____closed__3; +x_2 = l___regBuiltin_UInt8_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8291____closed__2; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt8_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9858____closed__4() { +static lean_object* _init_l___regBuiltin_UInt8_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8291____closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt8_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9858____closed__3; -x_2 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9616____closed__3; +x_1 = l___regBuiltin_UInt8_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8291____closed__3; +x_2 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8049____closed__3; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt8_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9858____closed__5() { +static lean_object* _init_l___regBuiltin_UInt8_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8291____closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt8_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9858____closed__4; +x_1 = l___regBuiltin_UInt8_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8291____closed__4; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt8_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9858____closed__6() { +static lean_object* _init_l___regBuiltin_UInt8_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8291____closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt8_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9858____closed__5; +x_1 = l___regBuiltin_UInt8_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8291____closed__5; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt8_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9858____closed__7() { +static lean_object* _init_l___regBuiltin_UInt8_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8291____closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt8_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9858____closed__6; +x_1 = l___regBuiltin_UInt8_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8291____closed__6; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt8_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9858____closed__8() { +static lean_object* _init_l___regBuiltin_UInt8_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8291____closed__8() { _start: { lean_object* x_1; @@ -15596,37 +12798,37 @@ x_1 = lean_alloc_closure((void*)(l_UInt8_reduceLE), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_UInt8_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9858_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_UInt8_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8291_(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_UInt8_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9858____closed__1; -x_3 = l___regBuiltin_UInt8_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9858____closed__7; -x_4 = l___regBuiltin_UInt8_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9858____closed__8; +x_2 = l___regBuiltin_UInt8_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8291____closed__1; +x_3 = l___regBuiltin_UInt8_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8291____closed__7; +x_4 = l___regBuiltin_UInt8_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8291____closed__8; x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); return x_5; } } -LEAN_EXPORT lean_object* l___regBuiltin_UInt8_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9860_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_UInt8_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8293_(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____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9618____closed__1; -x_3 = l___regBuiltin_UInt8_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9858____closed__1; +x_2 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8051____closed__1; +x_3 = l___regBuiltin_UInt8_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8291____closed__1; x_4 = 1; -x_5 = l___regBuiltin_UInt8_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9858____closed__8; +x_5 = l___regBuiltin_UInt8_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8291____closed__8; 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_UInt8_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9862_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_UInt8_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8295_(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____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9620____closed__1; -x_3 = l___regBuiltin_UInt8_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9858____closed__1; +x_2 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8053____closed__1; +x_3 = l___regBuiltin_UInt8_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8291____closed__1; x_4 = 1; -x_5 = l___regBuiltin_UInt8_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9858____closed__8; +x_5 = l___regBuiltin_UInt8_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8291____closed__8; x_6 = l_Lean_Meta_Simp_addSimprocBuiltinAttrCore(x_2, x_3, x_4, x_5, x_1); return x_6; } @@ -15644,6 +12846,7 @@ lean_inc(x_8); lean_inc(x_7); lean_inc(x_6); x_13 = l_UInt8_fromExpr(x_12, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_12); if (lean_obj_tag(x_13) == 0) { lean_object* x_14; @@ -15663,7 +12866,7 @@ if (x_15 == 0) lean_object* x_16; lean_object* x_17; x_16 = lean_ctor_get(x_13, 0); lean_dec(x_16); -x_17 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_17 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; lean_ctor_set(x_13, 0, x_17); return x_13; } @@ -15673,7 +12876,7 @@ lean_object* x_18; lean_object* x_19; lean_object* x_20; x_18 = lean_ctor_get(x_13, 1); lean_inc(x_18); lean_dec(x_13); -x_19 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_19 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; x_20 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_20, 0, x_19); lean_ctor_set(x_20, 1, x_18); @@ -15695,6 +12898,7 @@ lean_inc(x_8); lean_inc(x_7); lean_inc(x_6); x_24 = l_UInt8_fromExpr(x_23, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_21); +lean_dec(x_23); if (lean_obj_tag(x_24) == 0) { lean_object* x_25; @@ -15715,7 +12919,7 @@ if (x_26 == 0) lean_object* x_27; lean_object* x_28; x_27 = lean_ctor_get(x_24, 0); lean_dec(x_27); -x_28 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_28 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; lean_ctor_set(x_24, 0, x_28); return x_24; } @@ -15725,7 +12929,7 @@ lean_object* x_29; lean_object* x_30; lean_object* x_31; x_29 = lean_ctor_get(x_24, 1); lean_inc(x_29); lean_dec(x_24); -x_30 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_30 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; x_31 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_31, 0, x_30); lean_ctor_set(x_31, 1, x_29); @@ -15741,11 +12945,11 @@ lean_dec(x_24); x_33 = lean_ctor_get(x_25, 0); lean_inc(x_33); lean_dec(x_25); -x_34 = lean_ctor_get_uint8(x_22, sizeof(void*)*1); -lean_dec(x_22); -x_35 = lean_ctor_get_uint8(x_33, sizeof(void*)*1); +x_34 = lean_unbox(x_33); lean_dec(x_33); -x_36 = lean_uint8_dec_lt(x_35, x_34); +x_35 = lean_unbox(x_22); +lean_dec(x_22); +x_36 = lean_uint8_dec_lt(x_34, x_35); x_37 = l_Lean_Meta_Simp_evalPropStep(x_1, x_36, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_32); return x_37; } @@ -15813,7 +13017,7 @@ LEAN_EXPORT lean_object* l_UInt8_reduceGT(lean_object* x_1, lean_object* x_2, le _start: { lean_object* x_10; lean_object* x_11; uint8_t x_12; -x_10 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__522; +x_10 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__378; x_11 = lean_unsigned_to_nat(4u); x_12 = l_Lean_Expr_isAppOfArity(x_1, x_10, x_11); if (x_12 == 0) @@ -15827,7 +13031,7 @@ lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_13 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_13 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; x_14 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_14, 0, x_13); lean_ctor_set(x_14, 1, x_9); @@ -15857,17 +13061,17 @@ lean_dec(x_2); return x_11; } } -static lean_object* _init_l___regBuiltin_UInt8_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9899____closed__1() { +static lean_object* _init_l___regBuiltin_UInt8_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8332____closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_UInt8_fromExpr___closed__1; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__512; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__368; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt8_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9899____closed__2() { +static lean_object* _init_l___regBuiltin_UInt8_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8332____closed__2() { _start: { lean_object* x_1; @@ -15875,37 +13079,37 @@ x_1 = lean_alloc_closure((void*)(l_UInt8_reduceGT), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_UInt8_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9899_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_UInt8_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8332_(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_UInt8_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9899____closed__1; -x_3 = l___regBuiltin_UInt8_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9817____closed__8; -x_4 = l___regBuiltin_UInt8_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9899____closed__2; +x_2 = l___regBuiltin_UInt8_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8332____closed__1; +x_3 = l___regBuiltin_UInt8_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8250____closed__8; +x_4 = l___regBuiltin_UInt8_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8332____closed__2; x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); return x_5; } } -LEAN_EXPORT lean_object* l___regBuiltin_UInt8_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9901_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_UInt8_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8334_(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____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9618____closed__1; -x_3 = l___regBuiltin_UInt8_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9899____closed__1; +x_2 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8051____closed__1; +x_3 = l___regBuiltin_UInt8_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8332____closed__1; x_4 = 1; -x_5 = l___regBuiltin_UInt8_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9899____closed__2; +x_5 = l___regBuiltin_UInt8_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8332____closed__2; 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_UInt8_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9903_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_UInt8_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8336_(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____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9620____closed__1; -x_3 = l___regBuiltin_UInt8_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9899____closed__1; +x_2 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8053____closed__1; +x_3 = l___regBuiltin_UInt8_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8332____closed__1; x_4 = 1; -x_5 = l___regBuiltin_UInt8_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9899____closed__2; +x_5 = l___regBuiltin_UInt8_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8332____closed__2; x_6 = l_Lean_Meta_Simp_addSimprocBuiltinAttrCore(x_2, x_3, x_4, x_5, x_1); return x_6; } @@ -15923,6 +13127,7 @@ lean_inc(x_8); lean_inc(x_7); lean_inc(x_6); x_13 = l_UInt8_fromExpr(x_12, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_12); if (lean_obj_tag(x_13) == 0) { lean_object* x_14; @@ -15942,7 +13147,7 @@ if (x_15 == 0) lean_object* x_16; lean_object* x_17; x_16 = lean_ctor_get(x_13, 0); lean_dec(x_16); -x_17 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_17 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; lean_ctor_set(x_13, 0, x_17); return x_13; } @@ -15952,7 +13157,7 @@ lean_object* x_18; lean_object* x_19; lean_object* x_20; x_18 = lean_ctor_get(x_13, 1); lean_inc(x_18); lean_dec(x_13); -x_19 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_19 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; x_20 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_20, 0, x_19); lean_ctor_set(x_20, 1, x_18); @@ -15974,6 +13179,7 @@ lean_inc(x_8); lean_inc(x_7); lean_inc(x_6); x_24 = l_UInt8_fromExpr(x_23, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_21); +lean_dec(x_23); if (lean_obj_tag(x_24) == 0) { lean_object* x_25; @@ -15994,7 +13200,7 @@ if (x_26 == 0) lean_object* x_27; lean_object* x_28; x_27 = lean_ctor_get(x_24, 0); lean_dec(x_27); -x_28 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_28 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; lean_ctor_set(x_24, 0, x_28); return x_24; } @@ -16004,7 +13210,7 @@ lean_object* x_29; lean_object* x_30; lean_object* x_31; x_29 = lean_ctor_get(x_24, 1); lean_inc(x_29); lean_dec(x_24); -x_30 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_30 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; x_31 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_31, 0, x_30); lean_ctor_set(x_31, 1, x_29); @@ -16020,11 +13226,11 @@ lean_dec(x_24); x_33 = lean_ctor_get(x_25, 0); lean_inc(x_33); lean_dec(x_25); -x_34 = lean_ctor_get_uint8(x_22, sizeof(void*)*1); -lean_dec(x_22); -x_35 = lean_ctor_get_uint8(x_33, sizeof(void*)*1); +x_34 = lean_unbox(x_33); lean_dec(x_33); -x_36 = lean_uint8_dec_le(x_35, x_34); +x_35 = lean_unbox(x_22); +lean_dec(x_22); +x_36 = lean_uint8_dec_le(x_34, x_35); x_37 = l_Lean_Meta_Simp_evalPropStep(x_1, x_36, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_32); return x_37; } @@ -16092,7 +13298,7 @@ LEAN_EXPORT lean_object* l_UInt8_reduceGE(lean_object* x_1, lean_object* x_2, le _start: { lean_object* x_10; lean_object* x_11; uint8_t x_12; -x_10 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__535; +x_10 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__391; x_11 = lean_unsigned_to_nat(4u); x_12 = l_Lean_Expr_isAppOfArity(x_1, x_10, x_11); if (x_12 == 0) @@ -16106,7 +13312,7 @@ lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_13 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_13 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; x_14 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_14, 0, x_13); lean_ctor_set(x_14, 1, x_9); @@ -16136,17 +13342,17 @@ lean_dec(x_2); return x_11; } } -static lean_object* _init_l___regBuiltin_UInt8_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9940____closed__1() { +static lean_object* _init_l___regBuiltin_UInt8_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8373____closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_UInt8_fromExpr___closed__1; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__525; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__381; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt8_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9940____closed__2() { +static lean_object* _init_l___regBuiltin_UInt8_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8373____closed__2() { _start: { lean_object* x_1; @@ -16154,42 +13360,42 @@ x_1 = lean_alloc_closure((void*)(l_UInt8_reduceGE), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_UInt8_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9940_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_UInt8_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8373_(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_UInt8_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9940____closed__1; -x_3 = l___regBuiltin_UInt8_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9858____closed__7; -x_4 = l___regBuiltin_UInt8_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9940____closed__2; +x_2 = l___regBuiltin_UInt8_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8373____closed__1; +x_3 = l___regBuiltin_UInt8_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8291____closed__7; +x_4 = l___regBuiltin_UInt8_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8373____closed__2; x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); return x_5; } } -LEAN_EXPORT lean_object* l___regBuiltin_UInt8_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9942_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_UInt8_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8375_(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____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9618____closed__1; -x_3 = l___regBuiltin_UInt8_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9940____closed__1; +x_2 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8051____closed__1; +x_3 = l___regBuiltin_UInt8_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8373____closed__1; x_4 = 1; -x_5 = l___regBuiltin_UInt8_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9940____closed__2; +x_5 = l___regBuiltin_UInt8_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8373____closed__2; 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_UInt8_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9944_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_UInt8_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8377_(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____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9620____closed__1; -x_3 = l___regBuiltin_UInt8_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9940____closed__1; +x_2 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8053____closed__1; +x_3 = l___regBuiltin_UInt8_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8373____closed__1; x_4 = 1; -x_5 = l___regBuiltin_UInt8_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9940____closed__2; +x_5 = l___regBuiltin_UInt8_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8373____closed__2; 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_UInt8_reduceEq____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____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) { +LEAN_EXPORT lean_object* l_UInt8_reduceEq____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____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; @@ -16202,6 +13408,7 @@ lean_inc(x_8); lean_inc(x_7); lean_inc(x_6); x_13 = l_UInt8_fromExpr(x_12, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_12); if (lean_obj_tag(x_13) == 0) { lean_object* x_14; @@ -16221,7 +13428,7 @@ if (x_15 == 0) lean_object* x_16; lean_object* x_17; x_16 = lean_ctor_get(x_13, 0); lean_dec(x_16); -x_17 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_17 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; lean_ctor_set(x_13, 0, x_17); return x_13; } @@ -16231,7 +13438,7 @@ lean_object* x_18; lean_object* x_19; lean_object* x_20; x_18 = lean_ctor_get(x_13, 1); lean_inc(x_18); lean_dec(x_13); -x_19 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_19 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; x_20 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_20, 0, x_19); lean_ctor_set(x_20, 1, x_18); @@ -16253,6 +13460,7 @@ lean_inc(x_8); lean_inc(x_7); lean_inc(x_6); x_24 = l_UInt8_fromExpr(x_23, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_21); +lean_dec(x_23); if (lean_obj_tag(x_24) == 0) { lean_object* x_25; @@ -16273,7 +13481,7 @@ if (x_26 == 0) lean_object* x_27; lean_object* x_28; x_27 = lean_ctor_get(x_24, 0); lean_dec(x_27); -x_28 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_28 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; lean_ctor_set(x_24, 0, x_28); return x_24; } @@ -16283,7 +13491,7 @@ lean_object* x_29; lean_object* x_30; lean_object* x_31; x_29 = lean_ctor_get(x_24, 1); lean_inc(x_29); lean_dec(x_24); -x_30 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_30 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; x_31 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_31, 0, x_30); lean_ctor_set(x_31, 1, x_29); @@ -16299,9 +13507,9 @@ lean_dec(x_24); x_33 = lean_ctor_get(x_25, 0); lean_inc(x_33); lean_dec(x_25); -x_34 = lean_ctor_get_uint8(x_22, sizeof(void*)*1); +x_34 = lean_unbox(x_22); lean_dec(x_22); -x_35 = lean_ctor_get_uint8(x_33, sizeof(void*)*1); +x_35 = lean_unbox(x_33); lean_dec(x_33); x_36 = lean_uint8_dec_eq(x_34, x_35); x_37 = l_Lean_Meta_Simp_evalPropStep(x_1, x_36, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_32); @@ -16367,11 +13575,11 @@ return x_45; } } } -LEAN_EXPORT lean_object* l_UInt8_reduceEq____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978_(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_EXPORT lean_object* l_UInt8_reduceEq____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515_(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; uint8_t x_12; -x_10 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__546; +x_10 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__402; x_11 = lean_unsigned_to_nat(3u); x_12 = l_Lean_Expr_isAppOfArity(x_1, x_10, x_11); if (x_12 == 0) @@ -16385,7 +13593,7 @@ lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_13 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_13 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; x_14 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_14, 0, x_13); lean_ctor_set(x_14, 1, x_9); @@ -16395,7 +13603,7 @@ else { lean_object* x_15; lean_object* x_16; x_15 = lean_box(0); -x_16 = l_UInt8_reduceEq____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1(x_1, x_15, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_16 = l_UInt8_reduceEq____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1(x_1, x_15, 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); @@ -16403,11 +13611,11 @@ return x_16; } } } -LEAN_EXPORT lean_object* l_UInt8_reduceEq____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____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) { +LEAN_EXPORT lean_object* l_UInt8_reduceEq____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____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_UInt8_reduceEq____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_11 = l_UInt8_reduceEq____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____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); @@ -16415,17 +13623,17 @@ lean_dec(x_2); return x_11; } } -static lean_object* _init_l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__1() { +static lean_object* _init_l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_UInt8_fromExpr___closed__2; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__538; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__394; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__2() { +static lean_object* _init_l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__2() { _start: { lean_object* x_1; @@ -16433,37 +13641,37 @@ x_1 = lean_mk_string_from_bytes("_@", 2); return x_1; } } -static lean_object* _init_l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__3() { +static lean_object* _init_l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__1; -x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__2; +x_1 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__1; +x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__2; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__4() { +static lean_object* _init_l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__3; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__18; +x_1 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__3; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__12; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__5() { +static lean_object* _init_l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__4; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__90; +x_1 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__4; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__57; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__6() { +static lean_object* _init_l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__6() { _start: { lean_object* x_1; @@ -16471,27 +13679,27 @@ x_1 = lean_mk_string_from_bytes("Tactic", 6); return x_1; } } -static lean_object* _init_l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__7() { +static lean_object* _init_l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__5; -x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__6; +x_1 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__5; +x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__6; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__8() { +static lean_object* _init_l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__7; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__91; +x_1 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__7; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__58; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__9() { +static lean_object* _init_l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__9() { _start: { lean_object* x_1; @@ -16499,17 +13707,17 @@ x_1 = lean_mk_string_from_bytes("BuiltinSimprocs", 15); return x_1; } } -static lean_object* _init_l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__10() { +static lean_object* _init_l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__10() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__8; -x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__9; +x_1 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__8; +x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__9; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__11() { +static lean_object* _init_l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__11() { _start: { lean_object* x_1; @@ -16517,17 +13725,17 @@ x_1 = lean_mk_string_from_bytes("UInt", 4); return x_1; } } -static lean_object* _init_l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__12() { +static lean_object* _init_l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__12() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__10; -x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__11; +x_1 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__10; +x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__11; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__13() { +static lean_object* _init_l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__13() { _start: { lean_object* x_1; @@ -16535,31 +13743,31 @@ x_1 = lean_mk_string_from_bytes("_hyg", 4); return x_1; } } -static lean_object* _init_l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__14() { +static lean_object* _init_l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__14() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__12; -x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__13; +x_1 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__12; +x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__13; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__15() { +static lean_object* _init_l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__15() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__14; -x_2 = lean_unsigned_to_nat(8978u); +x_1 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__14; +x_2 = lean_unsigned_to_nat(7515u); x_3 = l_Lean_Name_num___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__16() { +static lean_object* _init_l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__16() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__546; +x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__402; x_2 = lean_unsigned_to_nat(3u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -16567,7 +13775,7 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__17() { +static lean_object* _init_l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__17() { _start: { lean_object* x_1; lean_object* x_2; @@ -16576,90 +13784,90 @@ x_2 = lean_mk_empty_array_with_capacity(x_1); return x_2; } } -static lean_object* _init_l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__18() { +static lean_object* _init_l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__18() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__17; -x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__16; +x_1 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__17; +x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__16; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__19() { +static lean_object* _init_l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__19() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__18; -x_2 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9616____closed__3; +x_1 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__18; +x_2 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8049____closed__3; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__20() { +static lean_object* _init_l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__20() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__19; +x_1 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__19; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__21() { +static lean_object* _init_l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__21() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__20; +x_1 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__20; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__22() { +static lean_object* _init_l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__22() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_UInt8_reduceEq____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978_), 9, 0); +x_1 = lean_alloc_closure((void*)(l_UInt8_reduceEq____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515_), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414_(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_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__15; -x_3 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__21; -x_4 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__22; +x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__15; +x_3 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__21; +x_4 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__22; x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); return x_5; } } -LEAN_EXPORT lean_object* l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9983_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8416_(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____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9618____closed__1; -x_3 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__15; +x_2 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8051____closed__1; +x_3 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__15; x_4 = 1; -x_5 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__22; +x_5 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__22; 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_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9985_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8418_(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____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9620____closed__1; -x_3 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__15; +x_2 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8053____closed__1; +x_3 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__15; x_4 = 1; -x_5 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__22; +x_5 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__22; 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_UInt8_reduceNe____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____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) { +LEAN_EXPORT lean_object* l_UInt8_reduceNe____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____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; @@ -16672,6 +13880,7 @@ lean_inc(x_8); lean_inc(x_7); lean_inc(x_6); x_13 = l_UInt8_fromExpr(x_12, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_12); if (lean_obj_tag(x_13) == 0) { lean_object* x_14; @@ -16691,7 +13900,7 @@ if (x_15 == 0) lean_object* x_16; lean_object* x_17; x_16 = lean_ctor_get(x_13, 0); lean_dec(x_16); -x_17 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_17 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; lean_ctor_set(x_13, 0, x_17); return x_13; } @@ -16701,7 +13910,7 @@ lean_object* x_18; lean_object* x_19; lean_object* x_20; x_18 = lean_ctor_get(x_13, 1); lean_inc(x_18); lean_dec(x_13); -x_19 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_19 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; x_20 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_20, 0, x_19); lean_ctor_set(x_20, 1, x_18); @@ -16723,6 +13932,7 @@ lean_inc(x_8); lean_inc(x_7); lean_inc(x_6); x_24 = l_UInt8_fromExpr(x_23, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_21); +lean_dec(x_23); if (lean_obj_tag(x_24) == 0) { lean_object* x_25; @@ -16743,7 +13953,7 @@ if (x_26 == 0) lean_object* x_27; lean_object* x_28; x_27 = lean_ctor_get(x_24, 0); lean_dec(x_27); -x_28 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_28 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; lean_ctor_set(x_24, 0, x_28); return x_24; } @@ -16753,7 +13963,7 @@ lean_object* x_29; lean_object* x_30; lean_object* x_31; x_29 = lean_ctor_get(x_24, 1); lean_inc(x_29); lean_dec(x_24); -x_30 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_30 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; x_31 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_31, 0, x_30); lean_ctor_set(x_31, 1, x_29); @@ -16769,9 +13979,9 @@ lean_dec(x_24); x_33 = lean_ctor_get(x_25, 0); lean_inc(x_33); lean_dec(x_25); -x_34 = lean_ctor_get_uint8(x_22, sizeof(void*)*1); +x_34 = lean_unbox(x_22); lean_dec(x_22); -x_35 = lean_ctor_get_uint8(x_33, sizeof(void*)*1); +x_35 = lean_unbox(x_33); lean_dec(x_33); x_36 = lean_uint8_dec_eq(x_34, x_35); x_37 = l_instDecidableNot___rarg(x_36); @@ -16838,11 +14048,11 @@ return x_46; } } } -LEAN_EXPORT lean_object* l_UInt8_reduceNe____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978_(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_EXPORT lean_object* l_UInt8_reduceNe____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515_(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; uint8_t x_12; -x_10 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__559; +x_10 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__416; x_11 = lean_unsigned_to_nat(3u); x_12 = l_Lean_Expr_isAppOfArity(x_1, x_10, x_11); if (x_12 == 0) @@ -16856,7 +14066,7 @@ lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_13 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_13 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; x_14 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_14, 0, x_13); lean_ctor_set(x_14, 1, x_9); @@ -16866,7 +14076,7 @@ else { lean_object* x_15; lean_object* x_16; x_15 = lean_box(0); -x_16 = l_UInt8_reduceNe____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1(x_1, x_15, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_16 = l_UInt8_reduceNe____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1(x_1, x_15, 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); @@ -16874,11 +14084,11 @@ return x_16; } } } -LEAN_EXPORT lean_object* l_UInt8_reduceNe____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____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) { +LEAN_EXPORT lean_object* l_UInt8_reduceNe____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____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_UInt8_reduceNe____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_11 = l_UInt8_reduceNe____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____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); @@ -16886,107 +14096,107 @@ lean_dec(x_2); return x_11; } } -static lean_object* _init_l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10021____closed__1() { +static lean_object* _init_l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8454____closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_UInt8_fromExpr___closed__2; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__551; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__408; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10021____closed__2() { +static lean_object* _init_l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8454____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10021____closed__1; -x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__2; +x_1 = l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8454____closed__1; +x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__2; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10021____closed__3() { +static lean_object* _init_l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8454____closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10021____closed__2; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__18; +x_1 = l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8454____closed__2; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__12; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10021____closed__4() { +static lean_object* _init_l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8454____closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10021____closed__3; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__90; +x_1 = l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8454____closed__3; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__57; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10021____closed__5() { +static lean_object* _init_l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8454____closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10021____closed__4; -x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__6; +x_1 = l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8454____closed__4; +x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__6; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10021____closed__6() { +static lean_object* _init_l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8454____closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10021____closed__5; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__91; +x_1 = l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8454____closed__5; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__58; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10021____closed__7() { +static lean_object* _init_l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8454____closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10021____closed__6; -x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__9; +x_1 = l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8454____closed__6; +x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__9; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10021____closed__8() { +static lean_object* _init_l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8454____closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10021____closed__7; -x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__11; +x_1 = l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8454____closed__7; +x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__11; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10021____closed__9() { +static lean_object* _init_l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8454____closed__9() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10021____closed__8; -x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__13; +x_1 = l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8454____closed__8; +x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__13; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10021____closed__10() { +static lean_object* _init_l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8454____closed__10() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10021____closed__9; -x_2 = lean_unsigned_to_nat(8978u); +x_1 = l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8454____closed__9; +x_2 = lean_unsigned_to_nat(7515u); x_3 = l_Lean_Name_num___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10021____closed__11() { +static lean_object* _init_l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8454____closed__11() { _start: { lean_object* x_1; @@ -16994,21 +14204,21 @@ x_1 = lean_mk_string_from_bytes("Not", 3); return x_1; } } -static lean_object* _init_l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10021____closed__12() { +static lean_object* _init_l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8454____closed__12() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10021____closed__11; +x_2 = l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8454____closed__11; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10021____closed__13() { +static lean_object* _init_l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8454____closed__13() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10021____closed__12; +x_1 = l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8454____closed__12; x_2 = lean_unsigned_to_nat(1u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -17016,100 +14226,100 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10021____closed__14() { +static lean_object* _init_l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8454____closed__14() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt8_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9817____closed__3; -x_2 = l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10021____closed__13; +x_1 = l___regBuiltin_UInt8_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8250____closed__3; +x_2 = l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8454____closed__13; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10021____closed__15() { +static lean_object* _init_l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8454____closed__15() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10021____closed__14; -x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__16; +x_1 = l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8454____closed__14; +x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__16; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10021____closed__16() { +static lean_object* _init_l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8454____closed__16() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10021____closed__15; -x_2 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9616____closed__3; +x_1 = l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8454____closed__15; +x_2 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8049____closed__3; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10021____closed__17() { +static lean_object* _init_l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8454____closed__17() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10021____closed__16; +x_1 = l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8454____closed__16; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10021____closed__18() { +static lean_object* _init_l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8454____closed__18() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10021____closed__17; +x_1 = l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8454____closed__17; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10021____closed__19() { +static lean_object* _init_l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8454____closed__19() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_UInt8_reduceNe____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978_), 9, 0); +x_1 = lean_alloc_closure((void*)(l_UInt8_reduceNe____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515_), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10021_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8454_(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_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10021____closed__10; -x_3 = l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10021____closed__18; -x_4 = l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10021____closed__19; +x_2 = l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8454____closed__10; +x_3 = l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8454____closed__18; +x_4 = l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8454____closed__19; x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); return x_5; } } -LEAN_EXPORT lean_object* l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10023_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8456_(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____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9618____closed__1; -x_3 = l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10021____closed__10; +x_2 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8051____closed__1; +x_3 = l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8454____closed__10; x_4 = 1; -x_5 = l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10021____closed__19; +x_5 = l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8454____closed__19; 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_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10025_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8458_(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____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9620____closed__1; -x_3 = l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10021____closed__10; +x_2 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8053____closed__1; +x_3 = l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8454____closed__10; x_4 = 1; -x_5 = l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10021____closed__19; +x_5 = l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8454____closed__19; 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_UInt8_reduceBEq____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____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) { +LEAN_EXPORT lean_object* l_UInt8_reduceBEq____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____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; @@ -17122,6 +14332,7 @@ lean_inc(x_8); lean_inc(x_7); lean_inc(x_6); x_13 = l_UInt8_fromExpr(x_12, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_12); if (lean_obj_tag(x_13) == 0) { lean_object* x_14; @@ -17141,7 +14352,7 @@ if (x_15 == 0) lean_object* x_16; lean_object* x_17; x_16 = lean_ctor_get(x_13, 0); lean_dec(x_16); -x_17 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_17 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; lean_ctor_set(x_13, 0, x_17); return x_13; } @@ -17151,7 +14362,7 @@ lean_object* x_18; lean_object* x_19; lean_object* x_20; x_18 = lean_ctor_get(x_13, 1); lean_inc(x_18); lean_dec(x_13); -x_19 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_19 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; x_20 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_20, 0, x_19); lean_ctor_set(x_20, 1, x_18); @@ -17170,6 +14381,7 @@ lean_dec(x_14); x_23 = l_Lean_Expr_appArg_x21(x_1); lean_dec(x_1); x_24 = l_UInt8_fromExpr(x_23, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_21); +lean_dec(x_23); if (lean_obj_tag(x_24) == 0) { lean_object* x_25; @@ -17185,7 +14397,7 @@ if (x_26 == 0) lean_object* x_27; lean_object* x_28; x_27 = lean_ctor_get(x_24, 0); lean_dec(x_27); -x_28 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_28 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; lean_ctor_set(x_24, 0, x_28); return x_24; } @@ -17195,7 +14407,7 @@ lean_object* x_29; lean_object* x_30; lean_object* x_31; x_29 = lean_ctor_get(x_24, 1); lean_inc(x_29); lean_dec(x_24); -x_30 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_30 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; x_31 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_31, 0, x_30); lean_ctor_set(x_31, 1, x_29); @@ -17214,22 +14426,22 @@ lean_dec(x_33); x_34 = lean_ctor_get(x_25, 0); lean_inc(x_34); lean_dec(x_25); -x_35 = lean_ctor_get_uint8(x_22, sizeof(void*)*1); +x_35 = lean_unbox(x_22); lean_dec(x_22); -x_36 = lean_ctor_get_uint8(x_34, sizeof(void*)*1); +x_36 = lean_unbox(x_34); lean_dec(x_34); x_37 = lean_uint8_dec_eq(x_35, x_36); if (x_37 == 0) { lean_object* x_38; -x_38 = l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__5; +x_38 = l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__5; lean_ctor_set(x_24, 0, x_38); return x_24; } else { lean_object* x_39; -x_39 = l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__10; +x_39 = l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__10; lean_ctor_set(x_24, 0, x_39); return x_24; } @@ -17243,15 +14455,15 @@ lean_dec(x_24); x_41 = lean_ctor_get(x_25, 0); lean_inc(x_41); lean_dec(x_25); -x_42 = lean_ctor_get_uint8(x_22, sizeof(void*)*1); +x_42 = lean_unbox(x_22); lean_dec(x_22); -x_43 = lean_ctor_get_uint8(x_41, sizeof(void*)*1); +x_43 = lean_unbox(x_41); lean_dec(x_41); x_44 = lean_uint8_dec_eq(x_42, x_43); if (x_44 == 0) { lean_object* x_45; lean_object* x_46; -x_45 = l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__5; +x_45 = l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__5; x_46 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_46, 0, x_45); lean_ctor_set(x_46, 1, x_40); @@ -17260,7 +14472,7 @@ return x_46; else { lean_object* x_47; lean_object* x_48; -x_47 = l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__10; +x_47 = l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__10; x_48 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_48, 0, x_47); lean_ctor_set(x_48, 1, x_40); @@ -17323,11 +14535,11 @@ return x_56; } } } -LEAN_EXPORT lean_object* l_UInt8_reduceBEq____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978_(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_EXPORT lean_object* l_UInt8_reduceBEq____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515_(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; uint8_t x_12; -x_10 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__574; +x_10 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__431; x_11 = lean_unsigned_to_nat(4u); x_12 = l_Lean_Expr_isAppOfArity(x_1, x_10, x_11); if (x_12 == 0) @@ -17341,7 +14553,7 @@ lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_13 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_13 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; x_14 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_14, 0, x_13); lean_ctor_set(x_14, 1, x_9); @@ -17351,7 +14563,7 @@ else { lean_object* x_15; lean_object* x_16; x_15 = lean_box(0); -x_16 = l_UInt8_reduceBEq____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1(x_1, x_15, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_16 = l_UInt8_reduceBEq____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1(x_1, x_15, 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); @@ -17359,11 +14571,11 @@ return x_16; } } } -LEAN_EXPORT lean_object* l_UInt8_reduceBEq____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____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) { +LEAN_EXPORT lean_object* l_UInt8_reduceBEq____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____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_UInt8_reduceBEq____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_11 = l_UInt8_reduceBEq____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____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); @@ -17371,111 +14583,111 @@ lean_dec(x_2); return x_11; } } -static lean_object* _init_l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10062____closed__1() { +static lean_object* _init_l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8495____closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_UInt8_fromExpr___closed__2; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__564; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__421; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10062____closed__2() { +static lean_object* _init_l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8495____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10062____closed__1; -x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__2; +x_1 = l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8495____closed__1; +x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__2; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10062____closed__3() { +static lean_object* _init_l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8495____closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10062____closed__2; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__18; +x_1 = l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8495____closed__2; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__12; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10062____closed__4() { +static lean_object* _init_l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8495____closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10062____closed__3; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__90; +x_1 = l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8495____closed__3; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__57; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10062____closed__5() { +static lean_object* _init_l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8495____closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10062____closed__4; -x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__6; +x_1 = l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8495____closed__4; +x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__6; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10062____closed__6() { +static lean_object* _init_l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8495____closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10062____closed__5; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__91; +x_1 = l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8495____closed__5; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__58; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10062____closed__7() { +static lean_object* _init_l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8495____closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10062____closed__6; -x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__9; +x_1 = l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8495____closed__6; +x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__9; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10062____closed__8() { +static lean_object* _init_l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8495____closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10062____closed__7; -x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__11; +x_1 = l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8495____closed__7; +x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__11; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10062____closed__9() { +static lean_object* _init_l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8495____closed__9() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10062____closed__8; -x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__13; +x_1 = l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8495____closed__8; +x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__13; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10062____closed__10() { +static lean_object* _init_l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8495____closed__10() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10062____closed__9; -x_2 = lean_unsigned_to_nat(8978u); +x_1 = l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8495____closed__9; +x_2 = lean_unsigned_to_nat(7515u); x_3 = l_Lean_Name_num___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10062____closed__11() { +static lean_object* _init_l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8495____closed__11() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__574; +x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__431; x_2 = lean_unsigned_to_nat(4u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -17483,100 +14695,100 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10062____closed__12() { +static lean_object* _init_l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8495____closed__12() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt8_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9817____closed__3; -x_2 = l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10062____closed__11; +x_1 = l___regBuiltin_UInt8_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8250____closed__3; +x_2 = l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8495____closed__11; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10062____closed__13() { +static lean_object* _init_l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8495____closed__13() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10062____closed__12; -x_2 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9616____closed__3; +x_1 = l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8495____closed__12; +x_2 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8049____closed__3; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10062____closed__14() { +static lean_object* _init_l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8495____closed__14() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10062____closed__13; +x_1 = l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8495____closed__13; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10062____closed__15() { +static lean_object* _init_l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8495____closed__15() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10062____closed__14; +x_1 = l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8495____closed__14; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10062____closed__16() { +static lean_object* _init_l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8495____closed__16() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10062____closed__15; +x_1 = l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8495____closed__15; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10062____closed__17() { +static lean_object* _init_l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8495____closed__17() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_UInt8_reduceBEq____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978_), 9, 0); +x_1 = lean_alloc_closure((void*)(l_UInt8_reduceBEq____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515_), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10062_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8495_(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_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10062____closed__10; -x_3 = l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10062____closed__16; -x_4 = l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10062____closed__17; +x_2 = l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8495____closed__10; +x_3 = l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8495____closed__16; +x_4 = l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8495____closed__17; x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); return x_5; } } -LEAN_EXPORT lean_object* l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10064_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8497_(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____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9618____closed__1; -x_3 = l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10062____closed__10; +x_2 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8051____closed__1; +x_3 = l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8495____closed__10; x_4 = 1; -x_5 = l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10062____closed__17; +x_5 = l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8495____closed__17; 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_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10066_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8499_(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____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9620____closed__1; -x_3 = l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10062____closed__10; +x_2 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8053____closed__1; +x_3 = l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8495____closed__10; x_4 = 1; -x_5 = l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10062____closed__17; +x_5 = l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8495____closed__17; 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_UInt8_reduceBNe____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____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) { +LEAN_EXPORT lean_object* l_UInt8_reduceBNe____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____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; @@ -17589,6 +14801,7 @@ lean_inc(x_8); lean_inc(x_7); lean_inc(x_6); x_13 = l_UInt8_fromExpr(x_12, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_12); if (lean_obj_tag(x_13) == 0) { lean_object* x_14; @@ -17608,7 +14821,7 @@ if (x_15 == 0) lean_object* x_16; lean_object* x_17; x_16 = lean_ctor_get(x_13, 0); lean_dec(x_16); -x_17 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_17 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; lean_ctor_set(x_13, 0, x_17); return x_13; } @@ -17618,7 +14831,7 @@ lean_object* x_18; lean_object* x_19; lean_object* x_20; x_18 = lean_ctor_get(x_13, 1); lean_inc(x_18); lean_dec(x_13); -x_19 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_19 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; x_20 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_20, 0, x_19); lean_ctor_set(x_20, 1, x_18); @@ -17637,6 +14850,7 @@ lean_dec(x_14); x_23 = l_Lean_Expr_appArg_x21(x_1); lean_dec(x_1); x_24 = l_UInt8_fromExpr(x_23, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_21); +lean_dec(x_23); if (lean_obj_tag(x_24) == 0) { lean_object* x_25; @@ -17652,7 +14866,7 @@ if (x_26 == 0) lean_object* x_27; lean_object* x_28; x_27 = lean_ctor_get(x_24, 0); lean_dec(x_27); -x_28 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_28 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; lean_ctor_set(x_24, 0, x_28); return x_24; } @@ -17662,7 +14876,7 @@ lean_object* x_29; lean_object* x_30; lean_object* x_31; x_29 = lean_ctor_get(x_24, 1); lean_inc(x_29); lean_dec(x_24); -x_30 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_30 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; x_31 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_31, 0, x_30); lean_ctor_set(x_31, 1, x_29); @@ -17681,22 +14895,22 @@ lean_dec(x_33); x_34 = lean_ctor_get(x_25, 0); lean_inc(x_34); lean_dec(x_25); -x_35 = lean_ctor_get_uint8(x_22, sizeof(void*)*1); +x_35 = lean_unbox(x_22); lean_dec(x_22); -x_36 = lean_ctor_get_uint8(x_34, sizeof(void*)*1); +x_36 = lean_unbox(x_34); lean_dec(x_34); x_37 = lean_uint8_dec_eq(x_35, x_36); if (x_37 == 0) { lean_object* x_38; -x_38 = l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__10; +x_38 = l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__10; lean_ctor_set(x_24, 0, x_38); return x_24; } else { lean_object* x_39; -x_39 = l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__5; +x_39 = l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__5; lean_ctor_set(x_24, 0, x_39); return x_24; } @@ -17710,15 +14924,15 @@ lean_dec(x_24); x_41 = lean_ctor_get(x_25, 0); lean_inc(x_41); lean_dec(x_25); -x_42 = lean_ctor_get_uint8(x_22, sizeof(void*)*1); +x_42 = lean_unbox(x_22); lean_dec(x_22); -x_43 = lean_ctor_get_uint8(x_41, sizeof(void*)*1); +x_43 = lean_unbox(x_41); lean_dec(x_41); x_44 = lean_uint8_dec_eq(x_42, x_43); if (x_44 == 0) { lean_object* x_45; lean_object* x_46; -x_45 = l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__10; +x_45 = l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__10; x_46 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_46, 0, x_45); lean_ctor_set(x_46, 1, x_40); @@ -17727,7 +14941,7 @@ return x_46; else { lean_object* x_47; lean_object* x_48; -x_47 = l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__5; +x_47 = l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__5; x_48 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_48, 0, x_47); lean_ctor_set(x_48, 1, x_40); @@ -17790,11 +15004,11 @@ return x_56; } } } -LEAN_EXPORT lean_object* l_UInt8_reduceBNe____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978_(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_EXPORT lean_object* l_UInt8_reduceBNe____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515_(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; uint8_t x_12; -x_10 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__585; +x_10 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__442; x_11 = lean_unsigned_to_nat(4u); x_12 = l_Lean_Expr_isAppOfArity(x_1, x_10, x_11); if (x_12 == 0) @@ -17808,7 +15022,7 @@ lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_13 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_13 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; x_14 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_14, 0, x_13); lean_ctor_set(x_14, 1, x_9); @@ -17818,7 +15032,7 @@ else { lean_object* x_15; lean_object* x_16; x_15 = lean_box(0); -x_16 = l_UInt8_reduceBNe____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1(x_1, x_15, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_16 = l_UInt8_reduceBNe____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1(x_1, x_15, 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); @@ -17826,11 +15040,11 @@ return x_16; } } } -LEAN_EXPORT lean_object* l_UInt8_reduceBNe____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____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) { +LEAN_EXPORT lean_object* l_UInt8_reduceBNe____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____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_UInt8_reduceBNe____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_11 = l_UInt8_reduceBNe____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____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); @@ -17838,111 +15052,111 @@ lean_dec(x_2); return x_11; } } -static lean_object* _init_l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10102____closed__1() { +static lean_object* _init_l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8535____closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_UInt8_fromExpr___closed__2; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__577; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__434; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10102____closed__2() { +static lean_object* _init_l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8535____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10102____closed__1; -x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__2; +x_1 = l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8535____closed__1; +x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__2; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10102____closed__3() { +static lean_object* _init_l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8535____closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10102____closed__2; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__18; +x_1 = l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8535____closed__2; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__12; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10102____closed__4() { +static lean_object* _init_l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8535____closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10102____closed__3; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__90; +x_1 = l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8535____closed__3; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__57; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10102____closed__5() { +static lean_object* _init_l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8535____closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10102____closed__4; -x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__6; +x_1 = l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8535____closed__4; +x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__6; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10102____closed__6() { +static lean_object* _init_l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8535____closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10102____closed__5; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__91; +x_1 = l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8535____closed__5; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__58; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10102____closed__7() { +static lean_object* _init_l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8535____closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10102____closed__6; -x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__9; +x_1 = l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8535____closed__6; +x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__9; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10102____closed__8() { +static lean_object* _init_l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8535____closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10102____closed__7; -x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__11; +x_1 = l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8535____closed__7; +x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__11; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10102____closed__9() { +static lean_object* _init_l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8535____closed__9() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10102____closed__8; -x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__13; +x_1 = l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8535____closed__8; +x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__13; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10102____closed__10() { +static lean_object* _init_l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8535____closed__10() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10102____closed__9; -x_2 = lean_unsigned_to_nat(8978u); +x_1 = l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8535____closed__9; +x_2 = lean_unsigned_to_nat(7515u); x_3 = l_Lean_Name_num___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10102____closed__11() { +static lean_object* _init_l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8535____closed__11() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__585; +x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__442; x_2 = lean_unsigned_to_nat(4u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -17950,95 +15164,95 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10102____closed__12() { +static lean_object* _init_l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8535____closed__12() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt8_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9817____closed__3; -x_2 = l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10102____closed__11; +x_1 = l___regBuiltin_UInt8_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8250____closed__3; +x_2 = l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8535____closed__11; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10102____closed__13() { +static lean_object* _init_l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8535____closed__13() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10102____closed__12; -x_2 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9616____closed__3; +x_1 = l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8535____closed__12; +x_2 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8049____closed__3; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10102____closed__14() { +static lean_object* _init_l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8535____closed__14() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10102____closed__13; +x_1 = l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8535____closed__13; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10102____closed__15() { +static lean_object* _init_l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8535____closed__15() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10102____closed__14; +x_1 = l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8535____closed__14; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10102____closed__16() { +static lean_object* _init_l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8535____closed__16() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10102____closed__15; +x_1 = l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8535____closed__15; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10102____closed__17() { +static lean_object* _init_l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8535____closed__17() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_UInt8_reduceBNe____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978_), 9, 0); +x_1 = lean_alloc_closure((void*)(l_UInt8_reduceBNe____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515_), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10102_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8535_(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_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10102____closed__10; -x_3 = l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10102____closed__16; -x_4 = l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10102____closed__17; +x_2 = l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8535____closed__10; +x_3 = l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8535____closed__16; +x_4 = l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8535____closed__17; x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); return x_5; } } -LEAN_EXPORT lean_object* l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10104_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8537_(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____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9618____closed__1; -x_3 = l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10102____closed__10; +x_2 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8051____closed__1; +x_3 = l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8535____closed__10; x_4 = 1; -x_5 = l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10102____closed__17; +x_5 = l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8535____closed__17; 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_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10106_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8539_(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____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9620____closed__1; -x_3 = l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10102____closed__10; +x_2 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8053____closed__1; +x_3 = l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8535____closed__10; x_4 = 1; -x_5 = l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10102____closed__17; +x_5 = l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8535____closed__17; x_6 = l_Lean_Meta_Simp_addSimprocBuiltinAttrCore(x_2, x_3, x_4, x_5, x_1); return x_6; } @@ -18050,7 +15264,7 @@ lean_object* x_11; lean_object* x_12; lean_object* x_13; x_11 = l_Lean_Expr_appFn_x21(x_1); x_12 = l_Lean_Expr_appArg_x21(x_11); lean_dec(x_11); -x_13 = l_Nat_fromExpr_x3f(x_12, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_13 = l_Lean_Meta_getNatValue_x3f(x_12, x_6, x_7, x_8, x_9, x_10); if (lean_obj_tag(x_13) == 0) { lean_object* x_14; @@ -18065,7 +15279,7 @@ if (x_15 == 0) lean_object* x_16; lean_object* x_17; x_16 = lean_ctor_get(x_13, 0); lean_dec(x_16); -x_17 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_17 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; lean_ctor_set(x_13, 0, x_17); return x_13; } @@ -18075,7 +15289,7 @@ lean_object* x_18; lean_object* x_19; lean_object* x_20; x_18 = lean_ctor_get(x_13, 1); lean_inc(x_18); lean_dec(x_13); -x_19 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_19 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; x_20 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_20, 0, x_19); lean_ctor_set(x_20, 1, x_18); @@ -18088,7 +15302,7 @@ uint8_t x_21; x_21 = !lean_is_exclusive(x_13); if (x_21 == 0) { -lean_object* x_22; lean_object* x_23; uint8_t x_24; lean_object* x_25; lean_object* x_26; uint32_t x_27; uint8_t x_28; lean_object* x_29; lean_object* x_30; +lean_object* 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; uint32_t x_33; uint8_t x_34; lean_object* x_35; lean_object* x_36; x_22 = lean_ctor_get(x_13, 0); lean_dec(x_22); x_23 = lean_ctor_get(x_14, 0); @@ -18096,69 +15310,83 @@ lean_inc(x_23); lean_dec(x_14); x_24 = lean_uint8_of_nat(x_23); lean_dec(x_23); -x_25 = l_UInt8_toExprCore(x_24); -x_26 = lean_box(0); -x_27 = 0; -x_28 = 1; -x_29 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_29, 0, x_25); -lean_ctor_set(x_29, 1, x_26); -lean_ctor_set_uint32(x_29, sizeof(void*)*2, x_27); -lean_ctor_set_uint8(x_29, sizeof(void*)*2 + 4, x_28); -x_30 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_30, 0, x_29); -lean_ctor_set(x_13, 0, x_30); +x_25 = lean_uint8_to_nat(x_24); +x_26 = l_Lean_mkRawNatLit(x_25); +x_27 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__8; +lean_inc(x_26); +x_28 = l_Lean_Expr_app___override(x_27, x_26); +x_29 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__4; +x_30 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__5; +x_31 = l_Lean_mkApp3(x_29, x_30, x_26, x_28); +x_32 = lean_box(0); +x_33 = 0; +x_34 = 1; +x_35 = lean_alloc_ctor(0, 2, 5); +lean_ctor_set(x_35, 0, x_31); +lean_ctor_set(x_35, 1, x_32); +lean_ctor_set_uint32(x_35, sizeof(void*)*2, x_33); +lean_ctor_set_uint8(x_35, sizeof(void*)*2 + 4, x_34); +x_36 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_36, 0, x_35); +lean_ctor_set(x_13, 0, x_36); return x_13; } else { -lean_object* x_31; lean_object* x_32; uint8_t x_33; lean_object* x_34; lean_object* x_35; uint32_t x_36; uint8_t x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; -x_31 = lean_ctor_get(x_13, 1); -lean_inc(x_31); +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_object* x_47; uint32_t x_48; uint8_t x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; +x_37 = lean_ctor_get(x_13, 1); +lean_inc(x_37); lean_dec(x_13); -x_32 = lean_ctor_get(x_14, 0); -lean_inc(x_32); +x_38 = lean_ctor_get(x_14, 0); +lean_inc(x_38); lean_dec(x_14); -x_33 = lean_uint8_of_nat(x_32); -lean_dec(x_32); -x_34 = l_UInt8_toExprCore(x_33); -x_35 = lean_box(0); -x_36 = 0; -x_37 = 1; -x_38 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_38, 0, x_34); -lean_ctor_set(x_38, 1, x_35); -lean_ctor_set_uint32(x_38, sizeof(void*)*2, x_36); -lean_ctor_set_uint8(x_38, sizeof(void*)*2 + 4, x_37); -x_39 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_39, 0, x_38); -x_40 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_40, 0, x_39); -lean_ctor_set(x_40, 1, x_31); -return x_40; +x_39 = lean_uint8_of_nat(x_38); +lean_dec(x_38); +x_40 = lean_uint8_to_nat(x_39); +x_41 = l_Lean_mkRawNatLit(x_40); +x_42 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__8; +lean_inc(x_41); +x_43 = l_Lean_Expr_app___override(x_42, x_41); +x_44 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__4; +x_45 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__5; +x_46 = l_Lean_mkApp3(x_44, x_45, x_41, x_43); +x_47 = lean_box(0); +x_48 = 0; +x_49 = 1; +x_50 = lean_alloc_ctor(0, 2, 5); +lean_ctor_set(x_50, 0, x_46); +lean_ctor_set(x_50, 1, x_47); +lean_ctor_set_uint32(x_50, sizeof(void*)*2, x_48); +lean_ctor_set_uint8(x_50, sizeof(void*)*2 + 4, x_49); +x_51 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_51, 0, x_50); +x_52 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_52, 0, x_51); +lean_ctor_set(x_52, 1, x_37); +return x_52; } } } else { -uint8_t x_41; -x_41 = !lean_is_exclusive(x_13); -if (x_41 == 0) +uint8_t x_53; +x_53 = !lean_is_exclusive(x_13); +if (x_53 == 0) { return x_13; } else { -lean_object* x_42; lean_object* x_43; lean_object* x_44; -x_42 = lean_ctor_get(x_13, 0); -x_43 = lean_ctor_get(x_13, 1); -lean_inc(x_43); -lean_inc(x_42); +lean_object* x_54; lean_object* x_55; lean_object* x_56; +x_54 = lean_ctor_get(x_13, 0); +x_55 = lean_ctor_get(x_13, 1); +lean_inc(x_55); +lean_inc(x_54); lean_dec(x_13); -x_44 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_44, 0, x_42); -lean_ctor_set(x_44, 1, x_43); -return x_44; +x_56 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_56, 0, x_54); +lean_ctor_set(x_56, 1, x_55); +return x_56; } } } @@ -18191,7 +15419,7 @@ lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_13 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_13 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; x_14 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_14, 0, x_13); lean_ctor_set(x_14, 1, x_9); @@ -18202,7 +15430,6 @@ else lean_object* x_15; lean_object* x_16; x_15 = lean_box(0); x_16 = l_UInt8_reduceOfNatCore___lambda__1(x_1, x_15, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); -lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); @@ -18215,7 +15442,6 @@ _start: { lean_object* x_11; x_11 = l_UInt8_reduceOfNatCore___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_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); @@ -18223,17 +15449,17 @@ lean_dec(x_2); return x_11; } } -static lean_object* _init_l___regBuiltin_UInt8_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10222____closed__1() { +static lean_object* _init_l___regBuiltin_UInt8_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8650____closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_UInt8_fromExpr___closed__1; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__590; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__447; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt8_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10222____closed__2() { +static lean_object* _init_l___regBuiltin_UInt8_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8650____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -18245,7 +15471,7 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt8_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10222____closed__3() { +static lean_object* _init_l___regBuiltin_UInt8_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8650____closed__3() { _start: { lean_object* x_1; lean_object* x_2; @@ -18254,37 +15480,37 @@ x_2 = lean_mk_empty_array_with_capacity(x_1); return x_2; } } -static lean_object* _init_l___regBuiltin_UInt8_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10222____closed__4() { +static lean_object* _init_l___regBuiltin_UInt8_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8650____closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt8_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10222____closed__3; -x_2 = l___regBuiltin_UInt8_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10222____closed__2; +x_1 = l___regBuiltin_UInt8_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8650____closed__3; +x_2 = l___regBuiltin_UInt8_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8650____closed__2; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt8_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10222____closed__5() { +static lean_object* _init_l___regBuiltin_UInt8_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8650____closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt8_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10222____closed__4; +x_1 = l___regBuiltin_UInt8_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8650____closed__4; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt8_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10222____closed__6() { +static lean_object* _init_l___regBuiltin_UInt8_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8650____closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt8_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10222____closed__5; +x_1 = l___regBuiltin_UInt8_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8650____closed__5; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt8_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10222____closed__7() { +static lean_object* _init_l___regBuiltin_UInt8_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8650____closed__7() { _start: { lean_object* x_1; @@ -18292,37 +15518,37 @@ x_1 = lean_alloc_closure((void*)(l_UInt8_reduceOfNatCore), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_UInt8_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10222_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_UInt8_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8650_(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_UInt8_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10222____closed__1; -x_3 = l___regBuiltin_UInt8_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10222____closed__6; -x_4 = l___regBuiltin_UInt8_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10222____closed__7; +x_2 = l___regBuiltin_UInt8_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8650____closed__1; +x_3 = l___regBuiltin_UInt8_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8650____closed__6; +x_4 = l___regBuiltin_UInt8_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8650____closed__7; x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); return x_5; } } -LEAN_EXPORT lean_object* l___regBuiltin_UInt8_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10224_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_UInt8_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8652_(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____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9618____closed__1; -x_3 = l___regBuiltin_UInt8_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10222____closed__1; +x_2 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8051____closed__1; +x_3 = l___regBuiltin_UInt8_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8650____closed__1; x_4 = 1; -x_5 = l___regBuiltin_UInt8_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10222____closed__7; +x_5 = l___regBuiltin_UInt8_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8650____closed__7; 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_UInt8_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10226_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_UInt8_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8654_(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____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9620____closed__1; -x_3 = l___regBuiltin_UInt8_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10222____closed__1; +x_2 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8053____closed__1; +x_3 = l___regBuiltin_UInt8_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8650____closed__1; x_4 = 1; -x_5 = l___regBuiltin_UInt8_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10222____closed__7; +x_5 = l___regBuiltin_UInt8_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8650____closed__7; x_6 = l_Lean_Meta_Simp_addSimprocBuiltinAttrCore(x_2, x_3, x_4, x_5, x_1); return x_6; } @@ -18333,6 +15559,7 @@ _start: lean_object* x_11; lean_object* x_12; x_11 = l_Lean_Expr_appArg_x21(x_1); x_12 = l_UInt8_fromExpr(x_11, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_11); if (lean_obj_tag(x_12) == 0) { lean_object* x_13; @@ -18347,7 +15574,7 @@ if (x_14 == 0) lean_object* x_15; lean_object* x_16; x_15 = lean_ctor_get(x_12, 0); lean_dec(x_15); -x_16 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_16 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; lean_ctor_set(x_12, 0, x_16); return x_12; } @@ -18357,7 +15584,7 @@ lean_object* x_17; lean_object* x_18; lean_object* x_19; x_17 = lean_ctor_get(x_12, 1); lean_inc(x_17); lean_dec(x_12); -x_18 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_18 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; x_19 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_19, 0, x_18); lean_ctor_set(x_19, 1, x_17); @@ -18376,7 +15603,7 @@ lean_dec(x_21); x_22 = lean_ctor_get(x_13, 0); lean_inc(x_22); lean_dec(x_13); -x_23 = lean_ctor_get_uint8(x_22, sizeof(void*)*1); +x_23 = lean_unbox(x_22); lean_dec(x_22); x_24 = lean_uint8_to_nat(x_23); x_25 = l_Lean_mkNatLit(x_24); @@ -18402,7 +15629,7 @@ lean_dec(x_12); x_32 = lean_ctor_get(x_13, 0); lean_inc(x_32); lean_dec(x_13); -x_33 = lean_ctor_get_uint8(x_32, sizeof(void*)*1); +x_33 = lean_unbox(x_32); lean_dec(x_32); x_34 = lean_uint8_to_nat(x_33); x_35 = l_Lean_mkNatLit(x_34); @@ -18474,7 +15701,7 @@ lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); -x_13 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_13 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; x_14 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_14, 0, x_13); lean_ctor_set(x_14, 1, x_9); @@ -18514,17 +15741,17 @@ lean_dec(x_1); return x_10; } } -static lean_object* _init_l___regBuiltin_UInt8_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10338____closed__1() { +static lean_object* _init_l___regBuiltin_UInt8_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8766____closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_UInt8_fromExpr___closed__1; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__602; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__473; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt8_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10338____closed__2() { +static lean_object* _init_l___regBuiltin_UInt8_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8766____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -18536,27 +15763,27 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt8_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10338____closed__3() { +static lean_object* _init_l___regBuiltin_UInt8_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8766____closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__67; -x_2 = l___regBuiltin_UInt8_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10338____closed__2; +x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__27; +x_2 = l___regBuiltin_UInt8_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8766____closed__2; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt8_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10338____closed__4() { +static lean_object* _init_l___regBuiltin_UInt8_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8766____closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt8_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10338____closed__3; +x_1 = l___regBuiltin_UInt8_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8766____closed__3; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt8_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10338____closed__5() { +static lean_object* _init_l___regBuiltin_UInt8_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8766____closed__5() { _start: { lean_object* x_1; @@ -18564,42 +15791,42 @@ x_1 = lean_alloc_closure((void*)(l_UInt8_reduceToNat___boxed), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_UInt8_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10338_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_UInt8_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8766_(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_UInt8_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10338____closed__1; -x_3 = l___regBuiltin_UInt8_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10338____closed__4; -x_4 = l___regBuiltin_UInt8_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10338____closed__5; +x_2 = l___regBuiltin_UInt8_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8766____closed__1; +x_3 = l___regBuiltin_UInt8_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8766____closed__4; +x_4 = l___regBuiltin_UInt8_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8766____closed__5; x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); return x_5; } } -LEAN_EXPORT lean_object* l___regBuiltin_UInt8_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10340_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_UInt8_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8768_(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____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9618____closed__1; -x_3 = l___regBuiltin_UInt8_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10338____closed__1; +x_2 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8051____closed__1; +x_3 = l___regBuiltin_UInt8_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8766____closed__1; x_4 = 1; -x_5 = l___regBuiltin_UInt8_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10338____closed__5; +x_5 = l___regBuiltin_UInt8_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8766____closed__5; 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_UInt8_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10342_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_UInt8_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8770_(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____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9620____closed__1; -x_3 = l___regBuiltin_UInt8_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10338____closed__1; +x_2 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8053____closed__1; +x_3 = l___regBuiltin_UInt8_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8766____closed__1; x_4 = 1; -x_5 = l___regBuiltin_UInt8_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10338____closed__5; +x_5 = l___regBuiltin_UInt8_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8766____closed__5; 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_UInt8_isValue____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____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) { +LEAN_EXPORT lean_object* l_UInt8_isValue____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____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; uint32_t x_12; uint8_t x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; @@ -18619,11 +15846,11 @@ lean_ctor_set(x_16, 1, x_10); return x_16; } } -LEAN_EXPORT lean_object* l_UInt8_isValue____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978_(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_EXPORT lean_object* l_UInt8_isValue____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515_(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; uint8_t x_12; -x_10 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__125; +x_10 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__490; x_11 = lean_unsigned_to_nat(3u); x_12 = l_Lean_Expr_isAppOfArity(x_1, x_10, x_11); if (x_12 == 0) @@ -18637,7 +15864,7 @@ lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_13 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_13 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; x_14 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_14, 0, x_13); lean_ctor_set(x_14, 1, x_9); @@ -18647,7 +15874,7 @@ else { lean_object* x_15; lean_object* x_16; x_15 = lean_box(0); -x_16 = l_UInt8_isValue____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1(x_1, x_15, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_16 = l_UInt8_isValue____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1(x_1, x_15, 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); @@ -18659,11 +15886,11 @@ return x_16; } } } -LEAN_EXPORT lean_object* l_UInt8_isValue____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____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) { +LEAN_EXPORT lean_object* l_UInt8_isValue____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____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_UInt8_isValue____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_11 = l_UInt8_isValue____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____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_9); lean_dec(x_8); lean_dec(x_7); @@ -18675,111 +15902,111 @@ lean_dec(x_2); return x_11; } } -static lean_object* _init_l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10414____closed__1() { +static lean_object* _init_l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8842____closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_UInt8_fromExpr___closed__2; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__621; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__484; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10414____closed__2() { +static lean_object* _init_l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8842____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10414____closed__1; -x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__2; +x_1 = l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8842____closed__1; +x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__2; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10414____closed__3() { +static lean_object* _init_l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8842____closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10414____closed__2; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__18; +x_1 = l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8842____closed__2; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__12; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10414____closed__4() { +static lean_object* _init_l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8842____closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10414____closed__3; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__90; +x_1 = l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8842____closed__3; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__57; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10414____closed__5() { +static lean_object* _init_l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8842____closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10414____closed__4; -x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__6; +x_1 = l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8842____closed__4; +x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__6; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10414____closed__6() { +static lean_object* _init_l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8842____closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10414____closed__5; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__91; +x_1 = l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8842____closed__5; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__58; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10414____closed__7() { +static lean_object* _init_l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8842____closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10414____closed__6; -x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__9; +x_1 = l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8842____closed__6; +x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__9; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10414____closed__8() { +static lean_object* _init_l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8842____closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10414____closed__7; -x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__11; +x_1 = l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8842____closed__7; +x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__11; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10414____closed__9() { +static lean_object* _init_l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8842____closed__9() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10414____closed__8; -x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__13; +x_1 = l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8842____closed__8; +x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__13; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10414____closed__10() { +static lean_object* _init_l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8842____closed__10() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10414____closed__9; -x_2 = lean_unsigned_to_nat(8978u); +x_1 = l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8842____closed__9; +x_2 = lean_unsigned_to_nat(7515u); x_3 = l_Lean_Name_num___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10414____closed__11() { +static lean_object* _init_l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8842____closed__11() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__125; +x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__490; x_2 = lean_unsigned_to_nat(3u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -18787,73 +16014,73 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10414____closed__12() { +static lean_object* _init_l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8842____closed__12() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__17; -x_2 = l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10414____closed__11; +x_1 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__17; +x_2 = l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8842____closed__11; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10414____closed__13() { +static lean_object* _init_l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8842____closed__13() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10414____closed__12; -x_2 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9616____closed__3; +x_1 = l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8842____closed__12; +x_2 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8049____closed__3; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10414____closed__14() { +static lean_object* _init_l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8842____closed__14() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10414____closed__13; +x_1 = l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8842____closed__13; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10414____closed__15() { +static lean_object* _init_l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8842____closed__15() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10414____closed__14; +x_1 = l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8842____closed__14; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10414____closed__16() { +static lean_object* _init_l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8842____closed__16() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_UInt8_isValue____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978_), 9, 0); +x_1 = lean_alloc_closure((void*)(l_UInt8_isValue____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515_), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10414_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8842_(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_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10414____closed__10; -x_3 = l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10414____closed__15; -x_4 = l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10414____closed__16; +x_2 = l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8842____closed__10; +x_3 = l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8842____closed__15; +x_4 = l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8842____closed__16; x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); return x_5; } } -LEAN_EXPORT lean_object* l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10416_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8844_(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____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9620____closed__1; -x_3 = l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10414____closed__10; +x_2 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8053____closed__1; +x_3 = l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8842____closed__10; x_4 = 1; -x_5 = l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10414____closed__16; +x_5 = l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8842____closed__16; x_6 = l_Lean_Meta_Simp_addSimprocBuiltinAttrCore(x_2, x_3, x_4, x_5, x_1); return x_6; } @@ -18879,378 +16106,138 @@ return x_3; LEAN_EXPORT lean_object* l_UInt16_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; uint8_t x_12; lean_object* x_13; lean_object* x_14; -x_10 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__125; -x_11 = lean_unsigned_to_nat(3u); -x_12 = l_Lean_Expr_isAppOfArity(x_1, x_10, x_11); -if (x_12 == 0) +lean_object* x_10; lean_object* x_11; +x_10 = l_UInt16_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_87; -x_87 = lean_box(0); -x_13 = x_87; -x_14 = x_9; -goto block_86; -} -else +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_88; -x_88 = l_UInt8_fromExpr___closed__3; -x_13 = x_88; -x_14 = x_9; -goto block_86; -} -block_86: +uint8_t x_13; +x_13 = !lean_is_exclusive(x_11); +if (x_13 == 0) { -if (lean_obj_tag(x_13) == 0) -{ -lean_object* x_15; lean_object* x_16; -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_1); +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); -x_16 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_16, 0, x_15); -lean_ctor_set(x_16, 1, x_14); -return x_16; +lean_ctor_set(x_11, 0, x_15); +return x_11; } else { -lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; -lean_dec(x_13); -x_17 = l_Lean_Expr_appFn_x21(x_1); -lean_inc(x_17); -x_18 = l_Lean_Expr_appFn_x21(x_17); -x_19 = l_Lean_Expr_appArg_x21(x_18); -lean_inc(x_8); -lean_inc(x_7); -lean_inc(x_6); -lean_inc(x_5); -x_20 = lean_whnf(x_19, x_5, x_6, x_7, x_8, x_14); -if (lean_obj_tag(x_20) == 0) +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_21; -x_21 = !lean_is_exclusive(x_20); -if (x_21 == 0) +uint8_t x_19; +x_19 = !lean_is_exclusive(x_12); +if (x_19 == 0) { -lean_object* x_22; lean_object* x_23; lean_object* x_24; uint8_t x_25; -x_22 = lean_ctor_get(x_20, 0); -x_23 = lean_ctor_get(x_20, 1); -x_24 = l_UInt16_fromExpr___closed__2; -x_25 = l_Lean_Expr_isConstOf(x_22, x_24); +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; uint16_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); -if (x_25 == 0) -{ -lean_object* x_26; -lean_dec(x_18); -lean_dec(x_17); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -x_26 = lean_box(0); -lean_ctor_set(x_20, 0, x_26); -return x_20; +x_23 = lean_ctor_get(x_21, 0); +lean_inc(x_23); +lean_dec(x_21); +x_24 = lean_uint16_of_nat(x_23); +lean_dec(x_23); +x_25 = lean_box(x_24); +lean_ctor_set(x_12, 0, x_25); +return x_11; } else { -lean_object* x_27; lean_object* x_28; -lean_free_object(x_20); -x_27 = l_Lean_Expr_appArg_x21(x_17); -lean_dec(x_17); -x_28 = l_Nat_fromExpr_x3f(x_27, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_23); -lean_dec(x_5); -if (lean_obj_tag(x_28) == 0) -{ -lean_object* x_29; -x_29 = lean_ctor_get(x_28, 0); -lean_inc(x_29); -if (lean_obj_tag(x_29) == 0) -{ -uint8_t x_30; -lean_dec(x_18); -x_30 = !lean_is_exclusive(x_28); -if (x_30 == 0) -{ -lean_object* x_31; lean_object* x_32; -x_31 = lean_ctor_get(x_28, 0); -lean_dec(x_31); -x_32 = lean_box(0); -lean_ctor_set(x_28, 0, x_32); -return x_28; +lean_object* x_26; lean_object* x_27; lean_object* x_28; uint16_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_uint16_of_nat(x_28); +lean_dec(x_28); +x_30 = lean_box(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_33; lean_object* x_34; lean_object* x_35; -x_33 = lean_ctor_get(x_28, 1); +lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; uint16_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); -lean_dec(x_28); -x_34 = lean_box(0); -x_35 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_35, 0, x_34); -lean_ctor_set(x_35, 1, x_33); -return x_35; +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_uint16_of_nat(x_35); +lean_dec(x_35); +x_37 = lean_box(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_36; -x_36 = !lean_is_exclusive(x_28); -if (x_36 == 0) +uint8_t x_40; +x_40 = !lean_is_exclusive(x_11); +if (x_40 == 0) { -lean_object* x_37; uint8_t x_38; -x_37 = lean_ctor_get(x_28, 0); -lean_dec(x_37); -x_38 = !lean_is_exclusive(x_29); -if (x_38 == 0) -{ -lean_object* x_39; uint16_t x_40; lean_object* x_41; -x_39 = lean_ctor_get(x_29, 0); -x_40 = lean_uint16_of_nat(x_39); -lean_dec(x_39); -x_41 = lean_alloc_ctor(0, 1, 2); -lean_ctor_set(x_41, 0, x_18); -lean_ctor_set_uint16(x_41, sizeof(void*)*1, x_40); -lean_ctor_set(x_29, 0, x_41); -return x_28; +return x_11; } else { -lean_object* x_42; uint16_t x_43; lean_object* x_44; lean_object* x_45; -x_42 = lean_ctor_get(x_29, 0); +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_dec(x_29); -x_43 = lean_uint16_of_nat(x_42); -lean_dec(x_42); -x_44 = lean_alloc_ctor(0, 1, 2); -lean_ctor_set(x_44, 0, x_18); -lean_ctor_set_uint16(x_44, sizeof(void*)*1, x_43); -x_45 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_45, 0, x_44); -lean_ctor_set(x_28, 0, x_45); -return x_28; -} -} -else -{ -lean_object* x_46; lean_object* x_47; lean_object* x_48; uint16_t x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; -x_46 = lean_ctor_get(x_28, 1); -lean_inc(x_46); -lean_dec(x_28); -x_47 = lean_ctor_get(x_29, 0); -lean_inc(x_47); -if (lean_is_exclusive(x_29)) { - lean_ctor_release(x_29, 0); - x_48 = x_29; -} else { - lean_dec_ref(x_29); - x_48 = lean_box(0); -} -x_49 = lean_uint16_of_nat(x_47); -lean_dec(x_47); -x_50 = lean_alloc_ctor(0, 1, 2); -lean_ctor_set(x_50, 0, x_18); -lean_ctor_set_uint16(x_50, sizeof(void*)*1, x_49); -if (lean_is_scalar(x_48)) { - x_51 = lean_alloc_ctor(1, 1, 0); -} else { - x_51 = x_48; -} -lean_ctor_set(x_51, 0, x_50); -x_52 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_52, 0, x_51); -lean_ctor_set(x_52, 1, x_46); -return x_52; -} -} -} -else -{ -uint8_t x_53; -lean_dec(x_18); -x_53 = !lean_is_exclusive(x_28); -if (x_53 == 0) -{ -return x_28; -} -else -{ -lean_object* x_54; lean_object* x_55; lean_object* x_56; -x_54 = lean_ctor_get(x_28, 0); -x_55 = lean_ctor_get(x_28, 1); -lean_inc(x_55); -lean_inc(x_54); -lean_dec(x_28); -x_56 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_56, 0, x_54); -lean_ctor_set(x_56, 1, x_55); -return x_56; -} -} -} -} -else -{ -lean_object* x_57; lean_object* x_58; lean_object* x_59; uint8_t x_60; -x_57 = lean_ctor_get(x_20, 0); -x_58 = lean_ctor_get(x_20, 1); -lean_inc(x_58); -lean_inc(x_57); -lean_dec(x_20); -x_59 = l_UInt16_fromExpr___closed__2; -x_60 = l_Lean_Expr_isConstOf(x_57, x_59); -lean_dec(x_57); -if (x_60 == 0) -{ -lean_object* x_61; lean_object* x_62; -lean_dec(x_18); -lean_dec(x_17); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -x_61 = lean_box(0); -x_62 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_62, 0, x_61); -lean_ctor_set(x_62, 1, x_58); -return x_62; -} -else -{ -lean_object* x_63; lean_object* x_64; -x_63 = l_Lean_Expr_appArg_x21(x_17); -lean_dec(x_17); -x_64 = l_Nat_fromExpr_x3f(x_63, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_58); -lean_dec(x_5); -if (lean_obj_tag(x_64) == 0) -{ -lean_object* x_65; -x_65 = lean_ctor_get(x_64, 0); -lean_inc(x_65); -if (lean_obj_tag(x_65) == 0) -{ -lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; -lean_dec(x_18); -x_66 = lean_ctor_get(x_64, 1); -lean_inc(x_66); -if (lean_is_exclusive(x_64)) { - lean_ctor_release(x_64, 0); - lean_ctor_release(x_64, 1); - x_67 = x_64; -} else { - lean_dec_ref(x_64); - x_67 = lean_box(0); -} -x_68 = lean_box(0); -if (lean_is_scalar(x_67)) { - x_69 = lean_alloc_ctor(0, 2, 0); -} else { - x_69 = x_67; -} -lean_ctor_set(x_69, 0, x_68); -lean_ctor_set(x_69, 1, x_66); -return x_69; -} -else -{ -lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; uint16_t x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; -x_70 = lean_ctor_get(x_64, 1); -lean_inc(x_70); -if (lean_is_exclusive(x_64)) { - lean_ctor_release(x_64, 0); - lean_ctor_release(x_64, 1); - x_71 = x_64; -} else { - lean_dec_ref(x_64); - x_71 = lean_box(0); -} -x_72 = lean_ctor_get(x_65, 0); -lean_inc(x_72); -if (lean_is_exclusive(x_65)) { - lean_ctor_release(x_65, 0); - x_73 = x_65; -} else { - lean_dec_ref(x_65); - x_73 = lean_box(0); -} -x_74 = lean_uint16_of_nat(x_72); -lean_dec(x_72); -x_75 = lean_alloc_ctor(0, 1, 2); -lean_ctor_set(x_75, 0, x_18); -lean_ctor_set_uint16(x_75, sizeof(void*)*1, x_74); -if (lean_is_scalar(x_73)) { - x_76 = lean_alloc_ctor(1, 1, 0); -} else { - x_76 = x_73; -} -lean_ctor_set(x_76, 0, x_75); -if (lean_is_scalar(x_71)) { - x_77 = lean_alloc_ctor(0, 2, 0); -} else { - x_77 = x_71; -} -lean_ctor_set(x_77, 0, x_76); -lean_ctor_set(x_77, 1, x_70); -return x_77; -} -} -else -{ -lean_object* x_78; lean_object* x_79; lean_object* x_80; lean_object* x_81; -lean_dec(x_18); -x_78 = lean_ctor_get(x_64, 0); -lean_inc(x_78); -x_79 = lean_ctor_get(x_64, 1); -lean_inc(x_79); -if (lean_is_exclusive(x_64)) { - lean_ctor_release(x_64, 0); - lean_ctor_release(x_64, 1); - x_80 = x_64; -} else { - lean_dec_ref(x_64); - x_80 = lean_box(0); -} -if (lean_is_scalar(x_80)) { - x_81 = lean_alloc_ctor(1, 2, 0); -} else { - x_81 = x_80; -} -lean_ctor_set(x_81, 0, x_78); -lean_ctor_set(x_81, 1, x_79); -return x_81; -} -} -} -} -else -{ -uint8_t x_82; -lean_dec(x_18); -lean_dec(x_17); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -x_82 = !lean_is_exclusive(x_20); -if (x_82 == 0) -{ -return x_20; -} -else -{ -lean_object* x_83; lean_object* x_84; lean_object* x_85; -x_83 = lean_ctor_get(x_20, 0); -x_84 = lean_ctor_get(x_20, 1); -lean_inc(x_84); -lean_inc(x_83); -lean_dec(x_20); -x_85 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_85, 0, x_83); -lean_ctor_set(x_85, 1, x_84); -return x_85; -} -} +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; } } } @@ -19263,10 +16250,11 @@ x_10 = l_UInt16_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); +lean_dec(x_1); return x_10; } } -static lean_object* _init_l_UInt16_toExprCore___closed__1() { +static lean_object* _init_l_UInt16_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847____lambda__1___closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -19276,79 +16264,27 @@ x_3 = l_Lean_Expr_const___override(x_2, x_1); return x_3; } } -static lean_object* _init_l_UInt16_toExprCore___closed__2() { +static lean_object* _init_l_UInt16_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847____lambda__1___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_UInt16_fromExpr___closed__1; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__253; +x_2 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__6; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } -static lean_object* _init_l_UInt16_toExprCore___closed__3() { +static lean_object* _init_l_UInt16_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847____lambda__1___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_UInt16_toExprCore___closed__2; +x_2 = l_UInt16_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847____lambda__1___closed__2; x_3 = l_Lean_Expr_const___override(x_2, x_1); return x_3; } } -LEAN_EXPORT lean_object* l_UInt16_toExprCore(uint16_t x_1) { -_start: -{ -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; -x_2 = lean_uint16_to_nat(x_1); -x_3 = l_Lean_mkRawNatLit(x_2); -x_4 = l_UInt16_toExprCore___closed__3; -lean_inc(x_3); -x_5 = l_Lean_Expr_app___override(x_4, x_3); -x_6 = l_UInt8_toExprCore___closed__2; -x_7 = l_UInt16_toExprCore___closed__1; -x_8 = l_Lean_mkApp3(x_6, x_7, x_3, x_5); -return x_8; -} -} -LEAN_EXPORT lean_object* l_UInt16_toExprCore___boxed(lean_object* x_1) { -_start: -{ -uint16_t x_2; lean_object* x_3; -x_2 = lean_unbox(x_1); -lean_dec(x_1); -x_3 = l_UInt16_toExprCore(x_2); -return x_3; -} -} -static lean_object* _init_l_UInt16_toExpr___closed__1() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l_UInt16_toExprCore___closed__2; -x_3 = l_Lean_Expr_const___override(x_2, x_1); -return x_3; -} -} -LEAN_EXPORT lean_object* l_UInt16_toExpr(lean_object* x_1) { -_start: -{ -uint16_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; -x_2 = lean_ctor_get_uint16(x_1, sizeof(void*)*1); -x_3 = lean_uint16_to_nat(x_2); -x_4 = l_Lean_mkRawNatLit(x_3); -x_5 = lean_ctor_get(x_1, 0); -lean_inc(x_5); -lean_dec(x_1); -x_6 = l_UInt16_toExpr___closed__1; -lean_inc(x_4); -x_7 = l_Lean_Expr_app___override(x_6, x_4); -x_8 = l_Lean_mkAppB(x_5, x_4, x_7); -return x_8; -} -} -LEAN_EXPORT lean_object* l_UInt16_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419____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, lean_object* x_11) { +LEAN_EXPORT lean_object* l_UInt16_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847____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, lean_object* x_11) { _start: { lean_object* x_12; lean_object* x_13; lean_object* x_14; @@ -19361,6 +16297,7 @@ lean_inc(x_9); lean_inc(x_8); lean_inc(x_7); x_14 = l_UInt16_fromExpr(x_13, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_13); if (lean_obj_tag(x_14) == 0) { lean_object* x_15; @@ -19381,7 +16318,7 @@ if (x_16 == 0) lean_object* x_17; lean_object* x_18; x_17 = lean_ctor_get(x_14, 0); lean_dec(x_17); -x_18 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_18 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; lean_ctor_set(x_14, 0, x_18); return x_14; } @@ -19391,7 +16328,7 @@ lean_object* x_19; lean_object* x_20; lean_object* x_21; x_19 = lean_ctor_get(x_14, 1); lean_inc(x_19); lean_dec(x_14); -x_20 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_20 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; x_21 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_21, 0, x_20); lean_ctor_set(x_21, 1, x_19); @@ -19410,6 +16347,7 @@ lean_dec(x_15); x_24 = l_Lean_Expr_appArg_x21(x_1); lean_dec(x_1); x_25 = l_UInt16_fromExpr(x_24, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_22); +lean_dec(x_24); if (lean_obj_tag(x_25) == 0) { lean_object* x_26; @@ -19426,7 +16364,7 @@ if (x_27 == 0) lean_object* x_28; lean_object* x_29; x_28 = lean_ctor_get(x_25, 0); lean_dec(x_28); -x_29 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_29 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; lean_ctor_set(x_25, 0, x_29); return x_25; } @@ -19436,7 +16374,7 @@ lean_object* x_30; lean_object* x_31; lean_object* x_32; x_30 = lean_ctor_get(x_25, 1); lean_inc(x_30); lean_dec(x_25); -x_31 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_31 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; x_32 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_32, 0, x_31); lean_ctor_set(x_32, 1, x_30); @@ -19449,179 +16387,130 @@ uint8_t x_33; x_33 = !lean_is_exclusive(x_25); if (x_33 == 0) { -lean_object* x_34; lean_object* x_35; uint8_t x_36; +lean_object* x_34; lean_object* x_35; lean_object* x_36; uint16_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; uint32_t x_46; uint8_t x_47; lean_object* x_48; lean_object* x_49; x_34 = lean_ctor_get(x_25, 0); lean_dec(x_34); x_35 = lean_ctor_get(x_26, 0); lean_inc(x_35); lean_dec(x_26); -x_36 = !lean_is_exclusive(x_23); -if (x_36 == 0) -{ -uint16_t x_37; uint16_t x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; uint16_t x_42; lean_object* x_43; lean_object* x_44; uint32_t x_45; uint8_t x_46; lean_object* x_47; lean_object* x_48; -x_37 = lean_ctor_get_uint16(x_23, sizeof(void*)*1); -x_38 = lean_ctor_get_uint16(x_35, sizeof(void*)*1); -lean_dec(x_35); -x_39 = lean_box(x_37); -x_40 = lean_box(x_38); -x_41 = lean_apply_2(x_2, x_39, x_40); -x_42 = lean_unbox(x_41); -lean_dec(x_41); -lean_ctor_set_uint16(x_23, sizeof(void*)*1, x_42); -x_43 = l_UInt16_toExpr(x_23); -x_44 = lean_box(0); -x_45 = 0; -x_46 = 1; -x_47 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_47, 0, x_43); -lean_ctor_set(x_47, 1, x_44); -lean_ctor_set_uint32(x_47, sizeof(void*)*2, x_45); -lean_ctor_set_uint8(x_47, sizeof(void*)*2 + 4, x_46); -x_48 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_48, 0, x_47); -lean_ctor_set(x_25, 0, x_48); +x_36 = lean_apply_2(x_2, x_23, x_35); +x_37 = lean_unbox(x_36); +lean_dec(x_36); +x_38 = lean_uint16_to_nat(x_37); +x_39 = l_Lean_mkRawNatLit(x_38); +x_40 = l_UInt16_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847____lambda__1___closed__3; +lean_inc(x_39); +x_41 = l_Lean_Expr_app___override(x_40, x_39); +x_42 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__4; +x_43 = l_UInt16_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847____lambda__1___closed__1; +x_44 = l_Lean_mkApp3(x_42, x_43, x_39, x_41); +x_45 = lean_box(0); +x_46 = 0; +x_47 = 1; +x_48 = lean_alloc_ctor(0, 2, 5); +lean_ctor_set(x_48, 0, x_44); +lean_ctor_set(x_48, 1, x_45); +lean_ctor_set_uint32(x_48, sizeof(void*)*2, x_46); +lean_ctor_set_uint8(x_48, sizeof(void*)*2 + 4, x_47); +x_49 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_49, 0, x_48); +lean_ctor_set(x_25, 0, x_49); return x_25; } else { -lean_object* x_49; uint16_t x_50; uint16_t x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; uint16_t x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; uint32_t x_59; uint8_t x_60; lean_object* x_61; lean_object* x_62; -x_49 = lean_ctor_get(x_23, 0); -x_50 = lean_ctor_get_uint16(x_23, sizeof(void*)*1); -lean_inc(x_49); -lean_dec(x_23); -x_51 = lean_ctor_get_uint16(x_35, sizeof(void*)*1); -lean_dec(x_35); -x_52 = lean_box(x_50); -x_53 = lean_box(x_51); -x_54 = lean_apply_2(x_2, x_52, x_53); -x_55 = lean_unbox(x_54); -lean_dec(x_54); -x_56 = lean_alloc_ctor(0, 1, 2); -lean_ctor_set(x_56, 0, x_49); -lean_ctor_set_uint16(x_56, sizeof(void*)*1, x_55); -x_57 = l_UInt16_toExpr(x_56); -x_58 = lean_box(0); -x_59 = 0; -x_60 = 1; -x_61 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_61, 0, x_57); -lean_ctor_set(x_61, 1, x_58); -lean_ctor_set_uint32(x_61, sizeof(void*)*2, x_59); -lean_ctor_set_uint8(x_61, sizeof(void*)*2 + 4, x_60); -x_62 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_62, 0, x_61); -lean_ctor_set(x_25, 0, x_62); -return x_25; -} -} -else -{ -lean_object* x_63; lean_object* x_64; lean_object* x_65; uint16_t x_66; lean_object* x_67; uint16_t x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; uint16_t x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; uint32_t x_76; uint8_t x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; -x_63 = lean_ctor_get(x_25, 1); -lean_inc(x_63); +lean_object* x_50; lean_object* x_51; lean_object* x_52; uint16_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; lean_object* x_60; lean_object* x_61; uint32_t x_62; uint8_t x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; +x_50 = lean_ctor_get(x_25, 1); +lean_inc(x_50); lean_dec(x_25); -x_64 = lean_ctor_get(x_26, 0); -lean_inc(x_64); +x_51 = lean_ctor_get(x_26, 0); +lean_inc(x_51); lean_dec(x_26); -x_65 = lean_ctor_get(x_23, 0); -lean_inc(x_65); -x_66 = lean_ctor_get_uint16(x_23, sizeof(void*)*1); -if (lean_is_exclusive(x_23)) { - lean_ctor_release(x_23, 0); - x_67 = x_23; -} else { - lean_dec_ref(x_23); - x_67 = lean_box(0); -} -x_68 = lean_ctor_get_uint16(x_64, sizeof(void*)*1); -lean_dec(x_64); -x_69 = lean_box(x_66); -x_70 = lean_box(x_68); -x_71 = lean_apply_2(x_2, x_69, x_70); -x_72 = lean_unbox(x_71); -lean_dec(x_71); -if (lean_is_scalar(x_67)) { - x_73 = lean_alloc_ctor(0, 1, 2); -} else { - x_73 = x_67; -} -lean_ctor_set(x_73, 0, x_65); -lean_ctor_set_uint16(x_73, sizeof(void*)*1, x_72); -x_74 = l_UInt16_toExpr(x_73); -x_75 = lean_box(0); -x_76 = 0; -x_77 = 1; -x_78 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_78, 0, x_74); -lean_ctor_set(x_78, 1, x_75); -lean_ctor_set_uint32(x_78, sizeof(void*)*2, x_76); -lean_ctor_set_uint8(x_78, sizeof(void*)*2 + 4, x_77); -x_79 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_79, 0, 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_63); -return x_80; +x_52 = lean_apply_2(x_2, x_23, x_51); +x_53 = lean_unbox(x_52); +lean_dec(x_52); +x_54 = lean_uint16_to_nat(x_53); +x_55 = l_Lean_mkRawNatLit(x_54); +x_56 = l_UInt16_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847____lambda__1___closed__3; +lean_inc(x_55); +x_57 = l_Lean_Expr_app___override(x_56, x_55); +x_58 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__4; +x_59 = l_UInt16_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847____lambda__1___closed__1; +x_60 = l_Lean_mkApp3(x_58, x_59, x_55, x_57); +x_61 = lean_box(0); +x_62 = 0; +x_63 = 1; +x_64 = lean_alloc_ctor(0, 2, 5); +lean_ctor_set(x_64, 0, x_60); +lean_ctor_set(x_64, 1, x_61); +lean_ctor_set_uint32(x_64, sizeof(void*)*2, x_62); +lean_ctor_set_uint8(x_64, sizeof(void*)*2 + 4, x_63); +x_65 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_65, 0, x_64); +x_66 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_66, 0, x_65); +lean_ctor_set(x_66, 1, x_50); +return x_66; } } } else { -uint8_t x_81; +uint8_t x_67; lean_dec(x_23); lean_dec(x_2); -x_81 = !lean_is_exclusive(x_25); -if (x_81 == 0) +x_67 = !lean_is_exclusive(x_25); +if (x_67 == 0) { return x_25; } else { -lean_object* x_82; lean_object* x_83; lean_object* x_84; -x_82 = lean_ctor_get(x_25, 0); -x_83 = lean_ctor_get(x_25, 1); -lean_inc(x_83); -lean_inc(x_82); +lean_object* x_68; lean_object* x_69; lean_object* x_70; +x_68 = lean_ctor_get(x_25, 0); +x_69 = lean_ctor_get(x_25, 1); +lean_inc(x_69); +lean_inc(x_68); lean_dec(x_25); -x_84 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_84, 0, x_82); -lean_ctor_set(x_84, 1, x_83); -return x_84; +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 { -uint8_t x_85; +uint8_t x_71; lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); lean_dec(x_7); lean_dec(x_2); lean_dec(x_1); -x_85 = !lean_is_exclusive(x_14); -if (x_85 == 0) +x_71 = !lean_is_exclusive(x_14); +if (x_71 == 0) { return x_14; } else { -lean_object* x_86; lean_object* x_87; lean_object* x_88; -x_86 = lean_ctor_get(x_14, 0); -x_87 = lean_ctor_get(x_14, 1); -lean_inc(x_87); -lean_inc(x_86); +lean_object* x_72; lean_object* x_73; lean_object* x_74; +x_72 = lean_ctor_get(x_14, 0); +x_73 = lean_ctor_get(x_14, 1); +lean_inc(x_73); +lean_inc(x_72); lean_dec(x_14); -x_88 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_88, 0, x_86); -lean_ctor_set(x_88, 1, x_87); -return x_88; +x_74 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_74, 0, x_72); +lean_ctor_set(x_74, 1, x_73); +return x_74; } } } } -LEAN_EXPORT lean_object* l_UInt16_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419_(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_EXPORT lean_object* l_UInt16_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847_(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: { uint8_t x_13; @@ -19639,7 +16528,7 @@ lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); -x_14 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_14 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____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_12); @@ -19649,7 +16538,7 @@ else { lean_object* x_16; lean_object* x_17; x_16 = lean_box(0); -x_17 = l_UInt16_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419____lambda__1(x_4, x_3, x_16, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +x_17 = l_UInt16_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847____lambda__1(x_4, x_3, x_16, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); @@ -19657,11 +16546,11 @@ return x_17; } } } -LEAN_EXPORT lean_object* l_UInt16_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419____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, lean_object* x_11) { +LEAN_EXPORT lean_object* l_UInt16_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847____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, lean_object* x_11) { _start: { lean_object* x_12; -x_12 = l_UInt16_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419____lambda__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +x_12 = l_UInt16_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847____lambda__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); @@ -19669,7 +16558,7 @@ lean_dec(x_3); return x_12; } } -LEAN_EXPORT lean_object* l_UInt16_reduceBinPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419____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, lean_object* x_11) { +LEAN_EXPORT lean_object* l_UInt16_reduceBinPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847____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, lean_object* x_11) { _start: { lean_object* x_12; lean_object* x_13; lean_object* x_14; @@ -19682,6 +16571,7 @@ lean_inc(x_9); lean_inc(x_8); lean_inc(x_7); x_14 = l_UInt16_fromExpr(x_13, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_13); if (lean_obj_tag(x_14) == 0) { lean_object* x_15; @@ -19702,7 +16592,7 @@ if (x_16 == 0) lean_object* x_17; lean_object* x_18; x_17 = lean_ctor_get(x_14, 0); lean_dec(x_17); -x_18 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_18 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; lean_ctor_set(x_14, 0, x_18); return x_14; } @@ -19712,7 +16602,7 @@ lean_object* x_19; lean_object* x_20; lean_object* x_21; x_19 = lean_ctor_get(x_14, 1); lean_inc(x_19); lean_dec(x_14); -x_20 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_20 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; x_21 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_21, 0, x_20); lean_ctor_set(x_21, 1, x_19); @@ -19734,6 +16624,7 @@ lean_inc(x_9); lean_inc(x_8); lean_inc(x_7); x_25 = l_UInt16_fromExpr(x_24, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_22); +lean_dec(x_24); if (lean_obj_tag(x_25) == 0) { lean_object* x_26; @@ -19755,7 +16646,7 @@ if (x_27 == 0) lean_object* x_28; lean_object* x_29; x_28 = lean_ctor_get(x_25, 0); lean_dec(x_28); -x_29 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_29 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; lean_ctor_set(x_25, 0, x_29); return x_25; } @@ -19765,7 +16656,7 @@ lean_object* x_30; lean_object* x_31; lean_object* x_32; x_30 = lean_ctor_get(x_25, 1); lean_inc(x_30); lean_dec(x_25); -x_31 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_31 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; x_32 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_32, 0, x_31); lean_ctor_set(x_32, 1, x_30); @@ -19774,29 +16665,23 @@ return x_32; } else { -lean_object* x_33; lean_object* x_34; uint16_t x_35; uint16_t x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; uint8_t x_40; lean_object* x_41; +lean_object* x_33; lean_object* x_34; lean_object* x_35; uint8_t x_36; lean_object* x_37; x_33 = lean_ctor_get(x_25, 1); lean_inc(x_33); lean_dec(x_25); x_34 = lean_ctor_get(x_26, 0); lean_inc(x_34); lean_dec(x_26); -x_35 = lean_ctor_get_uint16(x_23, sizeof(void*)*1); -lean_dec(x_23); -x_36 = lean_ctor_get_uint16(x_34, sizeof(void*)*1); -lean_dec(x_34); -x_37 = lean_box(x_35); -x_38 = lean_box(x_36); -x_39 = lean_apply_2(x_2, x_37, x_38); -x_40 = lean_unbox(x_39); -lean_dec(x_39); -x_41 = l_Lean_Meta_Simp_evalPropStep(x_1, x_40, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_33); -return x_41; +x_35 = lean_apply_2(x_2, x_23, x_34); +x_36 = lean_unbox(x_35); +lean_dec(x_35); +x_37 = l_Lean_Meta_Simp_evalPropStep(x_1, x_36, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_33); +return x_37; } } else { -uint8_t x_42; +uint8_t x_38; lean_dec(x_23); lean_dec(x_10); lean_dec(x_9); @@ -19804,19 +16689,49 @@ lean_dec(x_8); lean_dec(x_7); lean_dec(x_2); lean_dec(x_1); -x_42 = !lean_is_exclusive(x_25); -if (x_42 == 0) +x_38 = !lean_is_exclusive(x_25); +if (x_38 == 0) { return x_25; } else { +lean_object* x_39; lean_object* x_40; lean_object* x_41; +x_39 = lean_ctor_get(x_25, 0); +x_40 = lean_ctor_get(x_25, 1); +lean_inc(x_40); +lean_inc(x_39); +lean_dec(x_25); +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; +} +} +} +} +else +{ +uint8_t x_42; +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_2); +lean_dec(x_1); +x_42 = !lean_is_exclusive(x_14); +if (x_42 == 0) +{ +return x_14; +} +else +{ lean_object* x_43; lean_object* x_44; lean_object* x_45; -x_43 = lean_ctor_get(x_25, 0); -x_44 = lean_ctor_get(x_25, 1); +x_43 = lean_ctor_get(x_14, 0); +x_44 = lean_ctor_get(x_14, 1); lean_inc(x_44); lean_inc(x_43); -lean_dec(x_25); +lean_dec(x_14); x_45 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_45, 0, x_43); lean_ctor_set(x_45, 1, x_44); @@ -19825,37 +16740,7 @@ return x_45; } } } -else -{ -uint8_t x_46; -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_2); -lean_dec(x_1); -x_46 = !lean_is_exclusive(x_14); -if (x_46 == 0) -{ -return x_14; -} -else -{ -lean_object* x_47; lean_object* x_48; lean_object* x_49; -x_47 = lean_ctor_get(x_14, 0); -x_48 = lean_ctor_get(x_14, 1); -lean_inc(x_48); -lean_inc(x_47); -lean_dec(x_14); -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_EXPORT lean_object* l_UInt16_reduceBinPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419_(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_EXPORT lean_object* l_UInt16_reduceBinPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847_(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: { uint8_t x_13; @@ -19873,7 +16758,7 @@ lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); -x_14 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_14 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____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_12); @@ -19883,7 +16768,7 @@ else { lean_object* x_16; lean_object* x_17; x_16 = lean_box(0); -x_17 = l_UInt16_reduceBinPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419____lambda__1(x_4, x_3, x_16, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +x_17 = l_UInt16_reduceBinPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847____lambda__1(x_4, x_3, x_16, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); @@ -19891,11 +16776,11 @@ return x_17; } } } -LEAN_EXPORT lean_object* l_UInt16_reduceBinPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419____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, lean_object* x_11) { +LEAN_EXPORT lean_object* l_UInt16_reduceBinPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847____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, lean_object* x_11) { _start: { lean_object* x_12; -x_12 = l_UInt16_reduceBinPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419____lambda__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +x_12 = l_UInt16_reduceBinPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847____lambda__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); @@ -19903,7 +16788,7 @@ lean_dec(x_3); return x_12; } } -LEAN_EXPORT lean_object* l_UInt16_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419____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, lean_object* x_11) { +LEAN_EXPORT lean_object* l_UInt16_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847____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, lean_object* x_11) { _start: { lean_object* x_12; lean_object* x_13; lean_object* x_14; @@ -19916,6 +16801,7 @@ lean_inc(x_9); lean_inc(x_8); lean_inc(x_7); x_14 = l_UInt16_fromExpr(x_13, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_13); if (lean_obj_tag(x_14) == 0) { lean_object* x_15; @@ -19936,7 +16822,7 @@ if (x_16 == 0) lean_object* x_17; lean_object* x_18; x_17 = lean_ctor_get(x_14, 0); lean_dec(x_17); -x_18 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_18 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; lean_ctor_set(x_14, 0, x_18); return x_14; } @@ -19946,7 +16832,7 @@ lean_object* x_19; lean_object* x_20; lean_object* x_21; x_19 = lean_ctor_get(x_14, 1); lean_inc(x_19); lean_dec(x_14); -x_20 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_20 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; x_21 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_21, 0, x_20); lean_ctor_set(x_21, 1, x_19); @@ -19965,6 +16851,7 @@ lean_dec(x_15); x_24 = l_Lean_Expr_appArg_x21(x_1); lean_dec(x_1); x_25 = l_UInt16_fromExpr(x_24, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_22); +lean_dec(x_24); if (lean_obj_tag(x_25) == 0) { lean_object* x_26; @@ -19981,7 +16868,7 @@ if (x_27 == 0) lean_object* x_28; lean_object* x_29; x_28 = lean_ctor_get(x_25, 0); lean_dec(x_28); -x_29 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_29 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; lean_ctor_set(x_25, 0, x_29); return x_25; } @@ -19991,7 +16878,7 @@ lean_object* x_30; lean_object* x_31; lean_object* x_32; x_30 = lean_ctor_get(x_25, 1); lean_inc(x_30); lean_dec(x_25); -x_31 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_31 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; x_32 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_32, 0, x_31); lean_ctor_set(x_32, 1, x_30); @@ -20004,132 +16891,120 @@ uint8_t x_33; x_33 = !lean_is_exclusive(x_25); if (x_33 == 0) { -lean_object* x_34; lean_object* x_35; uint16_t x_36; uint16_t x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; uint8_t x_41; +lean_object* x_34; lean_object* x_35; lean_object* x_36; uint8_t x_37; x_34 = lean_ctor_get(x_25, 0); lean_dec(x_34); x_35 = lean_ctor_get(x_26, 0); lean_inc(x_35); lean_dec(x_26); -x_36 = lean_ctor_get_uint16(x_23, sizeof(void*)*1); -lean_dec(x_23); -x_37 = lean_ctor_get_uint16(x_35, sizeof(void*)*1); -lean_dec(x_35); -x_38 = lean_box(x_36); -x_39 = lean_box(x_37); -x_40 = lean_apply_2(x_2, x_38, x_39); -x_41 = lean_unbox(x_40); -lean_dec(x_40); -if (x_41 == 0) +x_36 = lean_apply_2(x_2, x_23, x_35); +x_37 = lean_unbox(x_36); +lean_dec(x_36); +if (x_37 == 0) { -lean_object* x_42; -x_42 = l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__5; -lean_ctor_set(x_25, 0, x_42); +lean_object* x_38; +x_38 = l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__5; +lean_ctor_set(x_25, 0, x_38); return x_25; } else { -lean_object* x_43; -x_43 = l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__10; -lean_ctor_set(x_25, 0, x_43); +lean_object* x_39; +x_39 = l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__10; +lean_ctor_set(x_25, 0, x_39); return x_25; } } else { -lean_object* x_44; lean_object* x_45; uint16_t x_46; uint16_t x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; uint8_t x_51; -x_44 = lean_ctor_get(x_25, 1); -lean_inc(x_44); +lean_object* x_40; lean_object* x_41; lean_object* x_42; uint8_t x_43; +x_40 = lean_ctor_get(x_25, 1); +lean_inc(x_40); lean_dec(x_25); -x_45 = lean_ctor_get(x_26, 0); -lean_inc(x_45); +x_41 = lean_ctor_get(x_26, 0); +lean_inc(x_41); lean_dec(x_26); -x_46 = lean_ctor_get_uint16(x_23, sizeof(void*)*1); -lean_dec(x_23); -x_47 = lean_ctor_get_uint16(x_45, sizeof(void*)*1); -lean_dec(x_45); -x_48 = lean_box(x_46); -x_49 = lean_box(x_47); -x_50 = lean_apply_2(x_2, x_48, x_49); -x_51 = lean_unbox(x_50); -lean_dec(x_50); -if (x_51 == 0) +x_42 = lean_apply_2(x_2, x_23, x_41); +x_43 = lean_unbox(x_42); +lean_dec(x_42); +if (x_43 == 0) { -lean_object* x_52; lean_object* x_53; -x_52 = l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__5; -x_53 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_53, 0, x_52); -lean_ctor_set(x_53, 1, x_44); -return x_53; +lean_object* x_44; lean_object* x_45; +x_44 = l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__5; +x_45 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_45, 0, x_44); +lean_ctor_set(x_45, 1, x_40); +return x_45; } else { -lean_object* x_54; lean_object* x_55; -x_54 = l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__10; -x_55 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_55, 0, x_54); -lean_ctor_set(x_55, 1, x_44); -return x_55; +lean_object* x_46; lean_object* x_47; +x_46 = l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__10; +x_47 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_47, 0, x_46); +lean_ctor_set(x_47, 1, x_40); +return x_47; } } } } else { -uint8_t x_56; +uint8_t x_48; lean_dec(x_23); lean_dec(x_2); -x_56 = !lean_is_exclusive(x_25); -if (x_56 == 0) +x_48 = !lean_is_exclusive(x_25); +if (x_48 == 0) { return x_25; } else { -lean_object* x_57; lean_object* x_58; lean_object* x_59; -x_57 = lean_ctor_get(x_25, 0); -x_58 = lean_ctor_get(x_25, 1); -lean_inc(x_58); -lean_inc(x_57); +lean_object* x_49; lean_object* x_50; lean_object* x_51; +x_49 = lean_ctor_get(x_25, 0); +x_50 = lean_ctor_get(x_25, 1); +lean_inc(x_50); +lean_inc(x_49); lean_dec(x_25); -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; +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 { -uint8_t x_60; +uint8_t x_52; lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); lean_dec(x_7); lean_dec(x_2); lean_dec(x_1); -x_60 = !lean_is_exclusive(x_14); -if (x_60 == 0) +x_52 = !lean_is_exclusive(x_14); +if (x_52 == 0) { return x_14; } else { -lean_object* x_61; lean_object* x_62; lean_object* x_63; -x_61 = lean_ctor_get(x_14, 0); -x_62 = lean_ctor_get(x_14, 1); -lean_inc(x_62); -lean_inc(x_61); +lean_object* x_53; lean_object* x_54; lean_object* x_55; +x_53 = lean_ctor_get(x_14, 0); +x_54 = lean_ctor_get(x_14, 1); +lean_inc(x_54); +lean_inc(x_53); lean_dec(x_14); -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; +x_55 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_55, 0, x_53); +lean_ctor_set(x_55, 1, x_54); +return x_55; } } } } -LEAN_EXPORT lean_object* l_UInt16_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419_(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_EXPORT lean_object* l_UInt16_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847_(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: { uint8_t x_13; @@ -20147,7 +17022,7 @@ lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); -x_14 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_14 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____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_12); @@ -20157,7 +17032,7 @@ else { lean_object* x_16; lean_object* x_17; x_16 = lean_box(0); -x_17 = l_UInt16_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419____lambda__1(x_4, x_3, x_16, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +x_17 = l_UInt16_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847____lambda__1(x_4, x_3, x_16, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); @@ -20165,11 +17040,11 @@ return x_17; } } } -LEAN_EXPORT lean_object* l_UInt16_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419____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, lean_object* x_11) { +LEAN_EXPORT lean_object* l_UInt16_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847____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, lean_object* x_11) { _start: { lean_object* x_12; -x_12 = l_UInt16_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419____lambda__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +x_12 = l_UInt16_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847____lambda__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); @@ -20190,6 +17065,7 @@ lean_inc(x_8); lean_inc(x_7); lean_inc(x_6); x_13 = l_UInt16_fromExpr(x_12, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_12); if (lean_obj_tag(x_13) == 0) { lean_object* x_14; @@ -20209,7 +17085,7 @@ if (x_15 == 0) lean_object* x_16; lean_object* x_17; x_16 = lean_ctor_get(x_13, 0); lean_dec(x_16); -x_17 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_17 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; lean_ctor_set(x_13, 0, x_17); return x_13; } @@ -20219,7 +17095,7 @@ lean_object* x_18; lean_object* x_19; lean_object* x_20; x_18 = lean_ctor_get(x_13, 1); lean_inc(x_18); lean_dec(x_13); -x_19 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_19 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; x_20 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_20, 0, x_19); lean_ctor_set(x_20, 1, x_18); @@ -20238,6 +17114,7 @@ lean_dec(x_14); x_23 = l_Lean_Expr_appArg_x21(x_1); lean_dec(x_1); x_24 = l_UInt16_fromExpr(x_23, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_21); +lean_dec(x_23); if (lean_obj_tag(x_24) == 0) { lean_object* x_25; @@ -20253,7 +17130,7 @@ if (x_26 == 0) lean_object* x_27; lean_object* x_28; x_27 = lean_ctor_get(x_24, 0); lean_dec(x_27); -x_28 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_28 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; lean_ctor_set(x_24, 0, x_28); return x_24; } @@ -20263,7 +17140,7 @@ lean_object* x_29; lean_object* x_30; lean_object* x_31; x_29 = lean_ctor_get(x_24, 1); lean_inc(x_29); lean_dec(x_24); -x_30 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_30 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; x_31 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_31, 0, x_30); lean_ctor_set(x_31, 1, x_29); @@ -20276,160 +17153,127 @@ uint8_t x_32; x_32 = !lean_is_exclusive(x_24); if (x_32 == 0) { -lean_object* x_33; lean_object* x_34; uint8_t x_35; +lean_object* x_33; lean_object* x_34; uint16_t x_35; uint16_t x_36; uint16_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; uint32_t x_46; uint8_t x_47; lean_object* x_48; lean_object* x_49; x_33 = lean_ctor_get(x_24, 0); lean_dec(x_33); x_34 = lean_ctor_get(x_25, 0); lean_inc(x_34); lean_dec(x_25); -x_35 = !lean_is_exclusive(x_22); -if (x_35 == 0) -{ -uint16_t x_36; uint16_t x_37; uint16_t x_38; lean_object* x_39; lean_object* x_40; uint32_t x_41; uint8_t x_42; lean_object* x_43; lean_object* x_44; -x_36 = lean_ctor_get_uint16(x_22, sizeof(void*)*1); -x_37 = lean_ctor_get_uint16(x_34, sizeof(void*)*1); -lean_dec(x_34); -x_38 = lean_uint16_add(x_36, x_37); -lean_ctor_set_uint16(x_22, sizeof(void*)*1, x_38); -x_39 = l_UInt16_toExpr(x_22); -x_40 = lean_box(0); -x_41 = 0; -x_42 = 1; -x_43 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_43, 0, x_39); -lean_ctor_set(x_43, 1, x_40); -lean_ctor_set_uint32(x_43, sizeof(void*)*2, x_41); -lean_ctor_set_uint8(x_43, sizeof(void*)*2 + 4, x_42); -x_44 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_44, 0, x_43); -lean_ctor_set(x_24, 0, x_44); -return x_24; -} -else -{ -lean_object* x_45; uint16_t x_46; uint16_t x_47; uint16_t x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; uint32_t x_52; uint8_t x_53; lean_object* x_54; lean_object* x_55; -x_45 = lean_ctor_get(x_22, 0); -x_46 = lean_ctor_get_uint16(x_22, sizeof(void*)*1); -lean_inc(x_45); +x_35 = lean_unbox(x_22); lean_dec(x_22); -x_47 = lean_ctor_get_uint16(x_34, sizeof(void*)*1); +x_36 = lean_unbox(x_34); lean_dec(x_34); -x_48 = lean_uint16_add(x_46, x_47); -x_49 = lean_alloc_ctor(0, 1, 2); -lean_ctor_set(x_49, 0, x_45); -lean_ctor_set_uint16(x_49, sizeof(void*)*1, x_48); -x_50 = l_UInt16_toExpr(x_49); -x_51 = lean_box(0); -x_52 = 0; -x_53 = 1; -x_54 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_54, 0, x_50); -lean_ctor_set(x_54, 1, x_51); -lean_ctor_set_uint32(x_54, sizeof(void*)*2, x_52); -lean_ctor_set_uint8(x_54, sizeof(void*)*2 + 4, x_53); -x_55 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_55, 0, x_54); -lean_ctor_set(x_24, 0, x_55); +x_37 = lean_uint16_add(x_35, x_36); +x_38 = lean_uint16_to_nat(x_37); +x_39 = l_Lean_mkRawNatLit(x_38); +x_40 = l_UInt16_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847____lambda__1___closed__3; +lean_inc(x_39); +x_41 = l_Lean_Expr_app___override(x_40, x_39); +x_42 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__4; +x_43 = l_UInt16_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847____lambda__1___closed__1; +x_44 = l_Lean_mkApp3(x_42, x_43, x_39, x_41); +x_45 = lean_box(0); +x_46 = 0; +x_47 = 1; +x_48 = lean_alloc_ctor(0, 2, 5); +lean_ctor_set(x_48, 0, x_44); +lean_ctor_set(x_48, 1, x_45); +lean_ctor_set_uint32(x_48, sizeof(void*)*2, x_46); +lean_ctor_set_uint8(x_48, sizeof(void*)*2 + 4, x_47); +x_49 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_49, 0, x_48); +lean_ctor_set(x_24, 0, x_49); return x_24; } -} else { -lean_object* x_56; lean_object* x_57; lean_object* x_58; uint16_t x_59; lean_object* x_60; uint16_t x_61; uint16_t x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; uint32_t x_66; uint8_t x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; -x_56 = lean_ctor_get(x_24, 1); -lean_inc(x_56); +lean_object* x_50; lean_object* x_51; uint16_t x_52; uint16_t x_53; uint16_t 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; uint32_t x_63; uint8_t x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; +x_50 = lean_ctor_get(x_24, 1); +lean_inc(x_50); lean_dec(x_24); -x_57 = lean_ctor_get(x_25, 0); -lean_inc(x_57); +x_51 = lean_ctor_get(x_25, 0); +lean_inc(x_51); lean_dec(x_25); -x_58 = lean_ctor_get(x_22, 0); -lean_inc(x_58); -x_59 = lean_ctor_get_uint16(x_22, sizeof(void*)*1); -if (lean_is_exclusive(x_22)) { - lean_ctor_release(x_22, 0); - x_60 = x_22; -} else { - lean_dec_ref(x_22); - x_60 = lean_box(0); -} -x_61 = lean_ctor_get_uint16(x_57, sizeof(void*)*1); -lean_dec(x_57); -x_62 = lean_uint16_add(x_59, x_61); -if (lean_is_scalar(x_60)) { - x_63 = lean_alloc_ctor(0, 1, 2); -} else { - x_63 = x_60; -} -lean_ctor_set(x_63, 0, x_58); -lean_ctor_set_uint16(x_63, sizeof(void*)*1, x_62); -x_64 = l_UInt16_toExpr(x_63); -x_65 = lean_box(0); -x_66 = 0; -x_67 = 1; -x_68 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_68, 0, x_64); -lean_ctor_set(x_68, 1, x_65); -lean_ctor_set_uint32(x_68, sizeof(void*)*2, x_66); -lean_ctor_set_uint8(x_68, sizeof(void*)*2 + 4, x_67); -x_69 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_69, 0, x_68); -x_70 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_70, 0, x_69); -lean_ctor_set(x_70, 1, x_56); -return x_70; +x_52 = lean_unbox(x_22); +lean_dec(x_22); +x_53 = lean_unbox(x_51); +lean_dec(x_51); +x_54 = lean_uint16_add(x_52, x_53); +x_55 = lean_uint16_to_nat(x_54); +x_56 = l_Lean_mkRawNatLit(x_55); +x_57 = l_UInt16_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847____lambda__1___closed__3; +lean_inc(x_56); +x_58 = l_Lean_Expr_app___override(x_57, x_56); +x_59 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__4; +x_60 = l_UInt16_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847____lambda__1___closed__1; +x_61 = l_Lean_mkApp3(x_59, x_60, x_56, x_58); +x_62 = lean_box(0); +x_63 = 0; +x_64 = 1; +x_65 = lean_alloc_ctor(0, 2, 5); +lean_ctor_set(x_65, 0, x_61); +lean_ctor_set(x_65, 1, x_62); +lean_ctor_set_uint32(x_65, sizeof(void*)*2, x_63); +lean_ctor_set_uint8(x_65, sizeof(void*)*2 + 4, x_64); +x_66 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_66, 0, x_65); +x_67 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_67, 0, x_66); +lean_ctor_set(x_67, 1, x_50); +return x_67; } } } else { -uint8_t x_71; +uint8_t x_68; lean_dec(x_22); -x_71 = !lean_is_exclusive(x_24); -if (x_71 == 0) +x_68 = !lean_is_exclusive(x_24); +if (x_68 == 0) { return x_24; } else { -lean_object* x_72; lean_object* x_73; lean_object* x_74; -x_72 = lean_ctor_get(x_24, 0); -x_73 = lean_ctor_get(x_24, 1); -lean_inc(x_73); -lean_inc(x_72); +lean_object* x_69; lean_object* x_70; lean_object* x_71; +x_69 = lean_ctor_get(x_24, 0); +x_70 = lean_ctor_get(x_24, 1); +lean_inc(x_70); +lean_inc(x_69); lean_dec(x_24); -x_74 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_74, 0, x_72); -lean_ctor_set(x_74, 1, x_73); -return x_74; +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; } } } } else { -uint8_t x_75; +uint8_t x_72; lean_dec(x_9); lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_1); -x_75 = !lean_is_exclusive(x_13); -if (x_75 == 0) +x_72 = !lean_is_exclusive(x_13); +if (x_72 == 0) { return x_13; } else { -lean_object* x_76; lean_object* x_77; lean_object* x_78; -x_76 = lean_ctor_get(x_13, 0); -x_77 = lean_ctor_get(x_13, 1); -lean_inc(x_77); -lean_inc(x_76); +lean_object* x_73; lean_object* x_74; lean_object* x_75; +x_73 = lean_ctor_get(x_13, 0); +x_74 = lean_ctor_get(x_13, 1); +lean_inc(x_74); +lean_inc(x_73); lean_dec(x_13); -x_78 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_78, 0, x_76); -lean_ctor_set(x_78, 1, x_77); -return x_78; +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; } } } @@ -20438,7 +17282,7 @@ LEAN_EXPORT lean_object* l_UInt16_reduceAdd(lean_object* x_1, lean_object* x_2, _start: { lean_object* x_10; lean_object* x_11; uint8_t x_12; -x_10 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__425; +x_10 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__279; x_11 = lean_unsigned_to_nat(6u); x_12 = l_Lean_Expr_isAppOfArity(x_1, x_10, x_11); if (x_12 == 0) @@ -20452,7 +17296,7 @@ lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_13 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_13 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; x_14 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_14, 0, x_13); lean_ctor_set(x_14, 1, x_9); @@ -20482,17 +17326,17 @@ lean_dec(x_2); return x_11; } } -static lean_object* _init_l___regBuiltin_UInt16_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11057____closed__1() { +static lean_object* _init_l___regBuiltin_UInt16_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9381____closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_UInt16_fromExpr___closed__1; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__410; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__264; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt16_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11057____closed__2() { +static lean_object* _init_l___regBuiltin_UInt16_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9381____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -20504,67 +17348,67 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt16_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11057____closed__3() { +static lean_object* _init_l___regBuiltin_UInt16_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9381____closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9616____closed__5; -x_2 = l___regBuiltin_UInt16_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11057____closed__2; +x_1 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8049____closed__5; +x_2 = l___regBuiltin_UInt16_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9381____closed__2; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt16_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11057____closed__4() { +static lean_object* _init_l___regBuiltin_UInt16_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9381____closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt16_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11057____closed__3; -x_2 = l___regBuiltin_UInt16_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11057____closed__2; +x_1 = l___regBuiltin_UInt16_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9381____closed__3; +x_2 = l___regBuiltin_UInt16_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9381____closed__2; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt16_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11057____closed__5() { +static lean_object* _init_l___regBuiltin_UInt16_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9381____closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt16_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11057____closed__4; -x_2 = l___regBuiltin_UInt16_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11057____closed__2; +x_1 = l___regBuiltin_UInt16_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9381____closed__4; +x_2 = l___regBuiltin_UInt16_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9381____closed__2; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt16_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11057____closed__6() { +static lean_object* _init_l___regBuiltin_UInt16_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9381____closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt16_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11057____closed__5; +x_1 = l___regBuiltin_UInt16_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9381____closed__5; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt16_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11057____closed__7() { +static lean_object* _init_l___regBuiltin_UInt16_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9381____closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt16_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11057____closed__6; +x_1 = l___regBuiltin_UInt16_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9381____closed__6; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt16_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11057____closed__8() { +static lean_object* _init_l___regBuiltin_UInt16_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9381____closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt16_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11057____closed__7; +x_1 = l___regBuiltin_UInt16_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9381____closed__7; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt16_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11057____closed__9() { +static lean_object* _init_l___regBuiltin_UInt16_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9381____closed__9() { _start: { lean_object* x_1; @@ -20572,37 +17416,37 @@ x_1 = lean_alloc_closure((void*)(l_UInt16_reduceAdd), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_UInt16_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11057_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_UInt16_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9381_(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_UInt16_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11057____closed__1; -x_3 = l___regBuiltin_UInt16_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11057____closed__8; -x_4 = l___regBuiltin_UInt16_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11057____closed__9; +x_2 = l___regBuiltin_UInt16_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9381____closed__1; +x_3 = l___regBuiltin_UInt16_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9381____closed__8; +x_4 = l___regBuiltin_UInt16_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9381____closed__9; x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); return x_5; } } -LEAN_EXPORT lean_object* l___regBuiltin_UInt16_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11059_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_UInt16_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9383_(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____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9618____closed__1; -x_3 = l___regBuiltin_UInt16_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11057____closed__1; +x_2 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8051____closed__1; +x_3 = l___regBuiltin_UInt16_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9381____closed__1; x_4 = 1; -x_5 = l___regBuiltin_UInt16_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11057____closed__9; +x_5 = l___regBuiltin_UInt16_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9381____closed__9; 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_UInt16_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11061_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_UInt16_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9385_(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____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9620____closed__1; -x_3 = l___regBuiltin_UInt16_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11057____closed__1; +x_2 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8053____closed__1; +x_3 = l___regBuiltin_UInt16_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9381____closed__1; x_4 = 1; -x_5 = l___regBuiltin_UInt16_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11057____closed__9; +x_5 = l___regBuiltin_UInt16_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9381____closed__9; x_6 = l_Lean_Meta_Simp_addSimprocBuiltinAttrCore(x_2, x_3, x_4, x_5, x_1); return x_6; } @@ -20620,6 +17464,7 @@ lean_inc(x_8); lean_inc(x_7); lean_inc(x_6); x_13 = l_UInt16_fromExpr(x_12, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_12); if (lean_obj_tag(x_13) == 0) { lean_object* x_14; @@ -20639,7 +17484,7 @@ if (x_15 == 0) lean_object* x_16; lean_object* x_17; x_16 = lean_ctor_get(x_13, 0); lean_dec(x_16); -x_17 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_17 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; lean_ctor_set(x_13, 0, x_17); return x_13; } @@ -20649,7 +17494,7 @@ lean_object* x_18; lean_object* x_19; lean_object* x_20; x_18 = lean_ctor_get(x_13, 1); lean_inc(x_18); lean_dec(x_13); -x_19 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_19 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; x_20 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_20, 0, x_19); lean_ctor_set(x_20, 1, x_18); @@ -20668,6 +17513,7 @@ lean_dec(x_14); x_23 = l_Lean_Expr_appArg_x21(x_1); lean_dec(x_1); x_24 = l_UInt16_fromExpr(x_23, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_21); +lean_dec(x_23); if (lean_obj_tag(x_24) == 0) { lean_object* x_25; @@ -20683,7 +17529,7 @@ if (x_26 == 0) lean_object* x_27; lean_object* x_28; x_27 = lean_ctor_get(x_24, 0); lean_dec(x_27); -x_28 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_28 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; lean_ctor_set(x_24, 0, x_28); return x_24; } @@ -20693,7 +17539,7 @@ lean_object* x_29; lean_object* x_30; lean_object* x_31; x_29 = lean_ctor_get(x_24, 1); lean_inc(x_29); lean_dec(x_24); -x_30 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_30 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; x_31 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_31, 0, x_30); lean_ctor_set(x_31, 1, x_29); @@ -20706,160 +17552,127 @@ uint8_t x_32; x_32 = !lean_is_exclusive(x_24); if (x_32 == 0) { -lean_object* x_33; lean_object* x_34; uint8_t x_35; +lean_object* x_33; lean_object* x_34; uint16_t x_35; uint16_t x_36; uint16_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; uint32_t x_46; uint8_t x_47; lean_object* x_48; lean_object* x_49; x_33 = lean_ctor_get(x_24, 0); lean_dec(x_33); x_34 = lean_ctor_get(x_25, 0); lean_inc(x_34); lean_dec(x_25); -x_35 = !lean_is_exclusive(x_22); -if (x_35 == 0) -{ -uint16_t x_36; uint16_t x_37; uint16_t x_38; lean_object* x_39; lean_object* x_40; uint32_t x_41; uint8_t x_42; lean_object* x_43; lean_object* x_44; -x_36 = lean_ctor_get_uint16(x_22, sizeof(void*)*1); -x_37 = lean_ctor_get_uint16(x_34, sizeof(void*)*1); -lean_dec(x_34); -x_38 = lean_uint16_mul(x_36, x_37); -lean_ctor_set_uint16(x_22, sizeof(void*)*1, x_38); -x_39 = l_UInt16_toExpr(x_22); -x_40 = lean_box(0); -x_41 = 0; -x_42 = 1; -x_43 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_43, 0, x_39); -lean_ctor_set(x_43, 1, x_40); -lean_ctor_set_uint32(x_43, sizeof(void*)*2, x_41); -lean_ctor_set_uint8(x_43, sizeof(void*)*2 + 4, x_42); -x_44 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_44, 0, x_43); -lean_ctor_set(x_24, 0, x_44); -return x_24; -} -else -{ -lean_object* x_45; uint16_t x_46; uint16_t x_47; uint16_t x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; uint32_t x_52; uint8_t x_53; lean_object* x_54; lean_object* x_55; -x_45 = lean_ctor_get(x_22, 0); -x_46 = lean_ctor_get_uint16(x_22, sizeof(void*)*1); -lean_inc(x_45); +x_35 = lean_unbox(x_22); lean_dec(x_22); -x_47 = lean_ctor_get_uint16(x_34, sizeof(void*)*1); +x_36 = lean_unbox(x_34); lean_dec(x_34); -x_48 = lean_uint16_mul(x_46, x_47); -x_49 = lean_alloc_ctor(0, 1, 2); -lean_ctor_set(x_49, 0, x_45); -lean_ctor_set_uint16(x_49, sizeof(void*)*1, x_48); -x_50 = l_UInt16_toExpr(x_49); -x_51 = lean_box(0); -x_52 = 0; -x_53 = 1; -x_54 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_54, 0, x_50); -lean_ctor_set(x_54, 1, x_51); -lean_ctor_set_uint32(x_54, sizeof(void*)*2, x_52); -lean_ctor_set_uint8(x_54, sizeof(void*)*2 + 4, x_53); -x_55 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_55, 0, x_54); -lean_ctor_set(x_24, 0, x_55); +x_37 = lean_uint16_mul(x_35, x_36); +x_38 = lean_uint16_to_nat(x_37); +x_39 = l_Lean_mkRawNatLit(x_38); +x_40 = l_UInt16_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847____lambda__1___closed__3; +lean_inc(x_39); +x_41 = l_Lean_Expr_app___override(x_40, x_39); +x_42 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__4; +x_43 = l_UInt16_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847____lambda__1___closed__1; +x_44 = l_Lean_mkApp3(x_42, x_43, x_39, x_41); +x_45 = lean_box(0); +x_46 = 0; +x_47 = 1; +x_48 = lean_alloc_ctor(0, 2, 5); +lean_ctor_set(x_48, 0, x_44); +lean_ctor_set(x_48, 1, x_45); +lean_ctor_set_uint32(x_48, sizeof(void*)*2, x_46); +lean_ctor_set_uint8(x_48, sizeof(void*)*2 + 4, x_47); +x_49 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_49, 0, x_48); +lean_ctor_set(x_24, 0, x_49); return x_24; } -} else { -lean_object* x_56; lean_object* x_57; lean_object* x_58; uint16_t x_59; lean_object* x_60; uint16_t x_61; uint16_t x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; uint32_t x_66; uint8_t x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; -x_56 = lean_ctor_get(x_24, 1); -lean_inc(x_56); +lean_object* x_50; lean_object* x_51; uint16_t x_52; uint16_t x_53; uint16_t 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; uint32_t x_63; uint8_t x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; +x_50 = lean_ctor_get(x_24, 1); +lean_inc(x_50); lean_dec(x_24); -x_57 = lean_ctor_get(x_25, 0); -lean_inc(x_57); +x_51 = lean_ctor_get(x_25, 0); +lean_inc(x_51); lean_dec(x_25); -x_58 = lean_ctor_get(x_22, 0); -lean_inc(x_58); -x_59 = lean_ctor_get_uint16(x_22, sizeof(void*)*1); -if (lean_is_exclusive(x_22)) { - lean_ctor_release(x_22, 0); - x_60 = x_22; -} else { - lean_dec_ref(x_22); - x_60 = lean_box(0); -} -x_61 = lean_ctor_get_uint16(x_57, sizeof(void*)*1); -lean_dec(x_57); -x_62 = lean_uint16_mul(x_59, x_61); -if (lean_is_scalar(x_60)) { - x_63 = lean_alloc_ctor(0, 1, 2); -} else { - x_63 = x_60; -} -lean_ctor_set(x_63, 0, x_58); -lean_ctor_set_uint16(x_63, sizeof(void*)*1, x_62); -x_64 = l_UInt16_toExpr(x_63); -x_65 = lean_box(0); -x_66 = 0; -x_67 = 1; -x_68 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_68, 0, x_64); -lean_ctor_set(x_68, 1, x_65); -lean_ctor_set_uint32(x_68, sizeof(void*)*2, x_66); -lean_ctor_set_uint8(x_68, sizeof(void*)*2 + 4, x_67); -x_69 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_69, 0, x_68); -x_70 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_70, 0, x_69); -lean_ctor_set(x_70, 1, x_56); -return x_70; +x_52 = lean_unbox(x_22); +lean_dec(x_22); +x_53 = lean_unbox(x_51); +lean_dec(x_51); +x_54 = lean_uint16_mul(x_52, x_53); +x_55 = lean_uint16_to_nat(x_54); +x_56 = l_Lean_mkRawNatLit(x_55); +x_57 = l_UInt16_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847____lambda__1___closed__3; +lean_inc(x_56); +x_58 = l_Lean_Expr_app___override(x_57, x_56); +x_59 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__4; +x_60 = l_UInt16_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847____lambda__1___closed__1; +x_61 = l_Lean_mkApp3(x_59, x_60, x_56, x_58); +x_62 = lean_box(0); +x_63 = 0; +x_64 = 1; +x_65 = lean_alloc_ctor(0, 2, 5); +lean_ctor_set(x_65, 0, x_61); +lean_ctor_set(x_65, 1, x_62); +lean_ctor_set_uint32(x_65, sizeof(void*)*2, x_63); +lean_ctor_set_uint8(x_65, sizeof(void*)*2 + 4, x_64); +x_66 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_66, 0, x_65); +x_67 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_67, 0, x_66); +lean_ctor_set(x_67, 1, x_50); +return x_67; } } } else { -uint8_t x_71; +uint8_t x_68; lean_dec(x_22); -x_71 = !lean_is_exclusive(x_24); -if (x_71 == 0) +x_68 = !lean_is_exclusive(x_24); +if (x_68 == 0) { return x_24; } else { -lean_object* x_72; lean_object* x_73; lean_object* x_74; -x_72 = lean_ctor_get(x_24, 0); -x_73 = lean_ctor_get(x_24, 1); -lean_inc(x_73); -lean_inc(x_72); +lean_object* x_69; lean_object* x_70; lean_object* x_71; +x_69 = lean_ctor_get(x_24, 0); +x_70 = lean_ctor_get(x_24, 1); +lean_inc(x_70); +lean_inc(x_69); lean_dec(x_24); -x_74 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_74, 0, x_72); -lean_ctor_set(x_74, 1, x_73); -return x_74; +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; } } } } else { -uint8_t x_75; +uint8_t x_72; lean_dec(x_9); lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_1); -x_75 = !lean_is_exclusive(x_13); -if (x_75 == 0) +x_72 = !lean_is_exclusive(x_13); +if (x_72 == 0) { return x_13; } else { -lean_object* x_76; lean_object* x_77; lean_object* x_78; -x_76 = lean_ctor_get(x_13, 0); -x_77 = lean_ctor_get(x_13, 1); -lean_inc(x_77); -lean_inc(x_76); +lean_object* x_73; lean_object* x_74; lean_object* x_75; +x_73 = lean_ctor_get(x_13, 0); +x_74 = lean_ctor_get(x_13, 1); +lean_inc(x_74); +lean_inc(x_73); lean_dec(x_13); -x_78 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_78, 0, x_76); -lean_ctor_set(x_78, 1, x_77); -return x_78; +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; } } } @@ -20868,7 +17681,7 @@ LEAN_EXPORT lean_object* l_UInt16_reduceMul(lean_object* x_1, lean_object* x_2, _start: { lean_object* x_10; lean_object* x_11; uint8_t x_12; -x_10 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__443; +x_10 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__299; x_11 = lean_unsigned_to_nat(6u); x_12 = l_Lean_Expr_isAppOfArity(x_1, x_10, x_11); if (x_12 == 0) @@ -20882,7 +17695,7 @@ lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_13 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_13 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; x_14 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_14, 0, x_13); lean_ctor_set(x_14, 1, x_9); @@ -20912,77 +17725,77 @@ lean_dec(x_2); return x_11; } } -static lean_object* _init_l___regBuiltin_UInt16_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11097____closed__1() { +static lean_object* _init_l___regBuiltin_UInt16_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9421____closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_UInt16_fromExpr___closed__1; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__433; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__289; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt16_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11097____closed__2() { +static lean_object* _init_l___regBuiltin_UInt16_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9421____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt8_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9656____closed__3; -x_2 = l___regBuiltin_UInt16_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11057____closed__2; +x_1 = l___regBuiltin_UInt8_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8089____closed__3; +x_2 = l___regBuiltin_UInt16_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9381____closed__2; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt16_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11097____closed__3() { +static lean_object* _init_l___regBuiltin_UInt16_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9421____closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt16_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11097____closed__2; -x_2 = l___regBuiltin_UInt16_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11057____closed__2; +x_1 = l___regBuiltin_UInt16_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9421____closed__2; +x_2 = l___regBuiltin_UInt16_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9381____closed__2; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt16_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11097____closed__4() { +static lean_object* _init_l___regBuiltin_UInt16_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9421____closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt16_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11097____closed__3; -x_2 = l___regBuiltin_UInt16_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11057____closed__2; +x_1 = l___regBuiltin_UInt16_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9421____closed__3; +x_2 = l___regBuiltin_UInt16_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9381____closed__2; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt16_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11097____closed__5() { +static lean_object* _init_l___regBuiltin_UInt16_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9421____closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt16_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11097____closed__4; +x_1 = l___regBuiltin_UInt16_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9421____closed__4; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt16_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11097____closed__6() { +static lean_object* _init_l___regBuiltin_UInt16_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9421____closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt16_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11097____closed__5; +x_1 = l___regBuiltin_UInt16_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9421____closed__5; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt16_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11097____closed__7() { +static lean_object* _init_l___regBuiltin_UInt16_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9421____closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt16_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11097____closed__6; +x_1 = l___regBuiltin_UInt16_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9421____closed__6; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt16_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11097____closed__8() { +static lean_object* _init_l___regBuiltin_UInt16_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9421____closed__8() { _start: { lean_object* x_1; @@ -20990,37 +17803,37 @@ x_1 = lean_alloc_closure((void*)(l_UInt16_reduceMul), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_UInt16_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11097_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_UInt16_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9421_(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_UInt16_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11097____closed__1; -x_3 = l___regBuiltin_UInt16_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11097____closed__7; -x_4 = l___regBuiltin_UInt16_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11097____closed__8; +x_2 = l___regBuiltin_UInt16_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9421____closed__1; +x_3 = l___regBuiltin_UInt16_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9421____closed__7; +x_4 = l___regBuiltin_UInt16_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9421____closed__8; x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); return x_5; } } -LEAN_EXPORT lean_object* l___regBuiltin_UInt16_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11099_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_UInt16_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9423_(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____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9618____closed__1; -x_3 = l___regBuiltin_UInt16_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11097____closed__1; +x_2 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8051____closed__1; +x_3 = l___regBuiltin_UInt16_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9421____closed__1; x_4 = 1; -x_5 = l___regBuiltin_UInt16_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11097____closed__8; +x_5 = l___regBuiltin_UInt16_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9421____closed__8; 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_UInt16_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11101_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_UInt16_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9425_(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____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9620____closed__1; -x_3 = l___regBuiltin_UInt16_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11097____closed__1; +x_2 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8053____closed__1; +x_3 = l___regBuiltin_UInt16_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9421____closed__1; x_4 = 1; -x_5 = l___regBuiltin_UInt16_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11097____closed__8; +x_5 = l___regBuiltin_UInt16_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9421____closed__8; x_6 = l_Lean_Meta_Simp_addSimprocBuiltinAttrCore(x_2, x_3, x_4, x_5, x_1); return x_6; } @@ -21038,6 +17851,7 @@ lean_inc(x_8); lean_inc(x_7); lean_inc(x_6); x_13 = l_UInt16_fromExpr(x_12, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_12); if (lean_obj_tag(x_13) == 0) { lean_object* x_14; @@ -21057,7 +17871,7 @@ if (x_15 == 0) lean_object* x_16; lean_object* x_17; x_16 = lean_ctor_get(x_13, 0); lean_dec(x_16); -x_17 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_17 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; lean_ctor_set(x_13, 0, x_17); return x_13; } @@ -21067,7 +17881,7 @@ lean_object* x_18; lean_object* x_19; lean_object* x_20; x_18 = lean_ctor_get(x_13, 1); lean_inc(x_18); lean_dec(x_13); -x_19 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_19 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; x_20 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_20, 0, x_19); lean_ctor_set(x_20, 1, x_18); @@ -21086,6 +17900,7 @@ lean_dec(x_14); x_23 = l_Lean_Expr_appArg_x21(x_1); lean_dec(x_1); x_24 = l_UInt16_fromExpr(x_23, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_21); +lean_dec(x_23); if (lean_obj_tag(x_24) == 0) { lean_object* x_25; @@ -21101,7 +17916,7 @@ if (x_26 == 0) lean_object* x_27; lean_object* x_28; x_27 = lean_ctor_get(x_24, 0); lean_dec(x_27); -x_28 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_28 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; lean_ctor_set(x_24, 0, x_28); return x_24; } @@ -21111,7 +17926,7 @@ lean_object* x_29; lean_object* x_30; lean_object* x_31; x_29 = lean_ctor_get(x_24, 1); lean_inc(x_29); lean_dec(x_24); -x_30 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_30 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; x_31 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_31, 0, x_30); lean_ctor_set(x_31, 1, x_29); @@ -21124,160 +17939,127 @@ uint8_t x_32; x_32 = !lean_is_exclusive(x_24); if (x_32 == 0) { -lean_object* x_33; lean_object* x_34; uint8_t x_35; +lean_object* x_33; lean_object* x_34; uint16_t x_35; uint16_t x_36; uint16_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; uint32_t x_46; uint8_t x_47; lean_object* x_48; lean_object* x_49; x_33 = lean_ctor_get(x_24, 0); lean_dec(x_33); x_34 = lean_ctor_get(x_25, 0); lean_inc(x_34); lean_dec(x_25); -x_35 = !lean_is_exclusive(x_22); -if (x_35 == 0) -{ -uint16_t x_36; uint16_t x_37; uint16_t x_38; lean_object* x_39; lean_object* x_40; uint32_t x_41; uint8_t x_42; lean_object* x_43; lean_object* x_44; -x_36 = lean_ctor_get_uint16(x_22, sizeof(void*)*1); -x_37 = lean_ctor_get_uint16(x_34, sizeof(void*)*1); -lean_dec(x_34); -x_38 = lean_uint16_sub(x_36, x_37); -lean_ctor_set_uint16(x_22, sizeof(void*)*1, x_38); -x_39 = l_UInt16_toExpr(x_22); -x_40 = lean_box(0); -x_41 = 0; -x_42 = 1; -x_43 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_43, 0, x_39); -lean_ctor_set(x_43, 1, x_40); -lean_ctor_set_uint32(x_43, sizeof(void*)*2, x_41); -lean_ctor_set_uint8(x_43, sizeof(void*)*2 + 4, x_42); -x_44 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_44, 0, x_43); -lean_ctor_set(x_24, 0, x_44); -return x_24; -} -else -{ -lean_object* x_45; uint16_t x_46; uint16_t x_47; uint16_t x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; uint32_t x_52; uint8_t x_53; lean_object* x_54; lean_object* x_55; -x_45 = lean_ctor_get(x_22, 0); -x_46 = lean_ctor_get_uint16(x_22, sizeof(void*)*1); -lean_inc(x_45); +x_35 = lean_unbox(x_22); lean_dec(x_22); -x_47 = lean_ctor_get_uint16(x_34, sizeof(void*)*1); +x_36 = lean_unbox(x_34); lean_dec(x_34); -x_48 = lean_uint16_sub(x_46, x_47); -x_49 = lean_alloc_ctor(0, 1, 2); -lean_ctor_set(x_49, 0, x_45); -lean_ctor_set_uint16(x_49, sizeof(void*)*1, x_48); -x_50 = l_UInt16_toExpr(x_49); -x_51 = lean_box(0); -x_52 = 0; -x_53 = 1; -x_54 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_54, 0, x_50); -lean_ctor_set(x_54, 1, x_51); -lean_ctor_set_uint32(x_54, sizeof(void*)*2, x_52); -lean_ctor_set_uint8(x_54, sizeof(void*)*2 + 4, x_53); -x_55 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_55, 0, x_54); -lean_ctor_set(x_24, 0, x_55); +x_37 = lean_uint16_sub(x_35, x_36); +x_38 = lean_uint16_to_nat(x_37); +x_39 = l_Lean_mkRawNatLit(x_38); +x_40 = l_UInt16_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847____lambda__1___closed__3; +lean_inc(x_39); +x_41 = l_Lean_Expr_app___override(x_40, x_39); +x_42 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__4; +x_43 = l_UInt16_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847____lambda__1___closed__1; +x_44 = l_Lean_mkApp3(x_42, x_43, x_39, x_41); +x_45 = lean_box(0); +x_46 = 0; +x_47 = 1; +x_48 = lean_alloc_ctor(0, 2, 5); +lean_ctor_set(x_48, 0, x_44); +lean_ctor_set(x_48, 1, x_45); +lean_ctor_set_uint32(x_48, sizeof(void*)*2, x_46); +lean_ctor_set_uint8(x_48, sizeof(void*)*2 + 4, x_47); +x_49 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_49, 0, x_48); +lean_ctor_set(x_24, 0, x_49); return x_24; } -} else { -lean_object* x_56; lean_object* x_57; lean_object* x_58; uint16_t x_59; lean_object* x_60; uint16_t x_61; uint16_t x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; uint32_t x_66; uint8_t x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; -x_56 = lean_ctor_get(x_24, 1); -lean_inc(x_56); +lean_object* x_50; lean_object* x_51; uint16_t x_52; uint16_t x_53; uint16_t 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; uint32_t x_63; uint8_t x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; +x_50 = lean_ctor_get(x_24, 1); +lean_inc(x_50); lean_dec(x_24); -x_57 = lean_ctor_get(x_25, 0); -lean_inc(x_57); +x_51 = lean_ctor_get(x_25, 0); +lean_inc(x_51); lean_dec(x_25); -x_58 = lean_ctor_get(x_22, 0); -lean_inc(x_58); -x_59 = lean_ctor_get_uint16(x_22, sizeof(void*)*1); -if (lean_is_exclusive(x_22)) { - lean_ctor_release(x_22, 0); - x_60 = x_22; -} else { - lean_dec_ref(x_22); - x_60 = lean_box(0); -} -x_61 = lean_ctor_get_uint16(x_57, sizeof(void*)*1); -lean_dec(x_57); -x_62 = lean_uint16_sub(x_59, x_61); -if (lean_is_scalar(x_60)) { - x_63 = lean_alloc_ctor(0, 1, 2); -} else { - x_63 = x_60; -} -lean_ctor_set(x_63, 0, x_58); -lean_ctor_set_uint16(x_63, sizeof(void*)*1, x_62); -x_64 = l_UInt16_toExpr(x_63); -x_65 = lean_box(0); -x_66 = 0; -x_67 = 1; -x_68 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_68, 0, x_64); -lean_ctor_set(x_68, 1, x_65); -lean_ctor_set_uint32(x_68, sizeof(void*)*2, x_66); -lean_ctor_set_uint8(x_68, sizeof(void*)*2 + 4, x_67); -x_69 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_69, 0, x_68); -x_70 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_70, 0, x_69); -lean_ctor_set(x_70, 1, x_56); -return x_70; +x_52 = lean_unbox(x_22); +lean_dec(x_22); +x_53 = lean_unbox(x_51); +lean_dec(x_51); +x_54 = lean_uint16_sub(x_52, x_53); +x_55 = lean_uint16_to_nat(x_54); +x_56 = l_Lean_mkRawNatLit(x_55); +x_57 = l_UInt16_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847____lambda__1___closed__3; +lean_inc(x_56); +x_58 = l_Lean_Expr_app___override(x_57, x_56); +x_59 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__4; +x_60 = l_UInt16_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847____lambda__1___closed__1; +x_61 = l_Lean_mkApp3(x_59, x_60, x_56, x_58); +x_62 = lean_box(0); +x_63 = 0; +x_64 = 1; +x_65 = lean_alloc_ctor(0, 2, 5); +lean_ctor_set(x_65, 0, x_61); +lean_ctor_set(x_65, 1, x_62); +lean_ctor_set_uint32(x_65, sizeof(void*)*2, x_63); +lean_ctor_set_uint8(x_65, sizeof(void*)*2 + 4, x_64); +x_66 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_66, 0, x_65); +x_67 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_67, 0, x_66); +lean_ctor_set(x_67, 1, x_50); +return x_67; } } } else { -uint8_t x_71; +uint8_t x_68; lean_dec(x_22); -x_71 = !lean_is_exclusive(x_24); -if (x_71 == 0) +x_68 = !lean_is_exclusive(x_24); +if (x_68 == 0) { return x_24; } else { -lean_object* x_72; lean_object* x_73; lean_object* x_74; -x_72 = lean_ctor_get(x_24, 0); -x_73 = lean_ctor_get(x_24, 1); -lean_inc(x_73); -lean_inc(x_72); +lean_object* x_69; lean_object* x_70; lean_object* x_71; +x_69 = lean_ctor_get(x_24, 0); +x_70 = lean_ctor_get(x_24, 1); +lean_inc(x_70); +lean_inc(x_69); lean_dec(x_24); -x_74 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_74, 0, x_72); -lean_ctor_set(x_74, 1, x_73); -return x_74; +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; } } } } else { -uint8_t x_75; +uint8_t x_72; lean_dec(x_9); lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_1); -x_75 = !lean_is_exclusive(x_13); -if (x_75 == 0) +x_72 = !lean_is_exclusive(x_13); +if (x_72 == 0) { return x_13; } else { -lean_object* x_76; lean_object* x_77; lean_object* x_78; -x_76 = lean_ctor_get(x_13, 0); -x_77 = lean_ctor_get(x_13, 1); -lean_inc(x_77); -lean_inc(x_76); +lean_object* x_73; lean_object* x_74; lean_object* x_75; +x_73 = lean_ctor_get(x_13, 0); +x_74 = lean_ctor_get(x_13, 1); +lean_inc(x_74); +lean_inc(x_73); lean_dec(x_13); -x_78 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_78, 0, x_76); -lean_ctor_set(x_78, 1, x_77); -return x_78; +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; } } } @@ -21286,7 +18068,7 @@ LEAN_EXPORT lean_object* l_UInt16_reduceSub(lean_object* x_1, lean_object* x_2, _start: { lean_object* x_10; lean_object* x_11; uint8_t x_12; -x_10 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__456; +x_10 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__312; x_11 = lean_unsigned_to_nat(6u); x_12 = l_Lean_Expr_isAppOfArity(x_1, x_10, x_11); if (x_12 == 0) @@ -21300,7 +18082,7 @@ lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_13 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_13 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; x_14 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_14, 0, x_13); lean_ctor_set(x_14, 1, x_9); @@ -21330,77 +18112,77 @@ lean_dec(x_2); return x_11; } } -static lean_object* _init_l___regBuiltin_UInt16_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11137____closed__1() { +static lean_object* _init_l___regBuiltin_UInt16_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9461____closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_UInt16_fromExpr___closed__1; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__446; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__302; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt16_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11137____closed__2() { +static lean_object* _init_l___regBuiltin_UInt16_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9461____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt8_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9696____closed__3; -x_2 = l___regBuiltin_UInt16_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11057____closed__2; +x_1 = l___regBuiltin_UInt8_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8129____closed__3; +x_2 = l___regBuiltin_UInt16_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9381____closed__2; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt16_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11137____closed__3() { +static lean_object* _init_l___regBuiltin_UInt16_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9461____closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt16_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11137____closed__2; -x_2 = l___regBuiltin_UInt16_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11057____closed__2; +x_1 = l___regBuiltin_UInt16_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9461____closed__2; +x_2 = l___regBuiltin_UInt16_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9381____closed__2; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt16_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11137____closed__4() { +static lean_object* _init_l___regBuiltin_UInt16_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9461____closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt16_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11137____closed__3; -x_2 = l___regBuiltin_UInt16_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11057____closed__2; +x_1 = l___regBuiltin_UInt16_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9461____closed__3; +x_2 = l___regBuiltin_UInt16_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9381____closed__2; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt16_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11137____closed__5() { +static lean_object* _init_l___regBuiltin_UInt16_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9461____closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt16_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11137____closed__4; +x_1 = l___regBuiltin_UInt16_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9461____closed__4; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt16_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11137____closed__6() { +static lean_object* _init_l___regBuiltin_UInt16_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9461____closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt16_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11137____closed__5; +x_1 = l___regBuiltin_UInt16_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9461____closed__5; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt16_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11137____closed__7() { +static lean_object* _init_l___regBuiltin_UInt16_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9461____closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt16_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11137____closed__6; +x_1 = l___regBuiltin_UInt16_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9461____closed__6; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt16_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11137____closed__8() { +static lean_object* _init_l___regBuiltin_UInt16_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9461____closed__8() { _start: { lean_object* x_1; @@ -21408,37 +18190,37 @@ x_1 = lean_alloc_closure((void*)(l_UInt16_reduceSub), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_UInt16_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11137_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_UInt16_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9461_(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_UInt16_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11137____closed__1; -x_3 = l___regBuiltin_UInt16_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11137____closed__7; -x_4 = l___regBuiltin_UInt16_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11137____closed__8; +x_2 = l___regBuiltin_UInt16_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9461____closed__1; +x_3 = l___regBuiltin_UInt16_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9461____closed__7; +x_4 = l___regBuiltin_UInt16_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9461____closed__8; x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); return x_5; } } -LEAN_EXPORT lean_object* l___regBuiltin_UInt16_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11139_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_UInt16_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9463_(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____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9618____closed__1; -x_3 = l___regBuiltin_UInt16_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11137____closed__1; +x_2 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8051____closed__1; +x_3 = l___regBuiltin_UInt16_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9461____closed__1; x_4 = 1; -x_5 = l___regBuiltin_UInt16_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11137____closed__8; +x_5 = l___regBuiltin_UInt16_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9461____closed__8; 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_UInt16_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11141_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_UInt16_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9465_(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____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9620____closed__1; -x_3 = l___regBuiltin_UInt16_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11137____closed__1; +x_2 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8053____closed__1; +x_3 = l___regBuiltin_UInt16_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9461____closed__1; x_4 = 1; -x_5 = l___regBuiltin_UInt16_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11137____closed__8; +x_5 = l___regBuiltin_UInt16_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9461____closed__8; x_6 = l_Lean_Meta_Simp_addSimprocBuiltinAttrCore(x_2, x_3, x_4, x_5, x_1); return x_6; } @@ -21456,6 +18238,7 @@ lean_inc(x_8); lean_inc(x_7); lean_inc(x_6); x_13 = l_UInt16_fromExpr(x_12, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_12); if (lean_obj_tag(x_13) == 0) { lean_object* x_14; @@ -21475,7 +18258,7 @@ if (x_15 == 0) lean_object* x_16; lean_object* x_17; x_16 = lean_ctor_get(x_13, 0); lean_dec(x_16); -x_17 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_17 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; lean_ctor_set(x_13, 0, x_17); return x_13; } @@ -21485,7 +18268,7 @@ lean_object* x_18; lean_object* x_19; lean_object* x_20; x_18 = lean_ctor_get(x_13, 1); lean_inc(x_18); lean_dec(x_13); -x_19 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_19 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; x_20 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_20, 0, x_19); lean_ctor_set(x_20, 1, x_18); @@ -21504,6 +18287,7 @@ lean_dec(x_14); x_23 = l_Lean_Expr_appArg_x21(x_1); lean_dec(x_1); x_24 = l_UInt16_fromExpr(x_23, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_21); +lean_dec(x_23); if (lean_obj_tag(x_24) == 0) { lean_object* x_25; @@ -21519,7 +18303,7 @@ if (x_26 == 0) lean_object* x_27; lean_object* x_28; x_27 = lean_ctor_get(x_24, 0); lean_dec(x_27); -x_28 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_28 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; lean_ctor_set(x_24, 0, x_28); return x_24; } @@ -21529,7 +18313,7 @@ lean_object* x_29; lean_object* x_30; lean_object* x_31; x_29 = lean_ctor_get(x_24, 1); lean_inc(x_29); lean_dec(x_24); -x_30 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_30 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; x_31 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_31, 0, x_30); lean_ctor_set(x_31, 1, x_29); @@ -21542,160 +18326,127 @@ uint8_t x_32; x_32 = !lean_is_exclusive(x_24); if (x_32 == 0) { -lean_object* x_33; lean_object* x_34; uint8_t x_35; +lean_object* x_33; lean_object* x_34; uint16_t x_35; uint16_t x_36; uint16_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; uint32_t x_46; uint8_t x_47; lean_object* x_48; lean_object* x_49; x_33 = lean_ctor_get(x_24, 0); lean_dec(x_33); x_34 = lean_ctor_get(x_25, 0); lean_inc(x_34); lean_dec(x_25); -x_35 = !lean_is_exclusive(x_22); -if (x_35 == 0) -{ -uint16_t x_36; uint16_t x_37; uint16_t x_38; lean_object* x_39; lean_object* x_40; uint32_t x_41; uint8_t x_42; lean_object* x_43; lean_object* x_44; -x_36 = lean_ctor_get_uint16(x_22, sizeof(void*)*1); -x_37 = lean_ctor_get_uint16(x_34, sizeof(void*)*1); -lean_dec(x_34); -x_38 = lean_uint16_div(x_36, x_37); -lean_ctor_set_uint16(x_22, sizeof(void*)*1, x_38); -x_39 = l_UInt16_toExpr(x_22); -x_40 = lean_box(0); -x_41 = 0; -x_42 = 1; -x_43 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_43, 0, x_39); -lean_ctor_set(x_43, 1, x_40); -lean_ctor_set_uint32(x_43, sizeof(void*)*2, x_41); -lean_ctor_set_uint8(x_43, sizeof(void*)*2 + 4, x_42); -x_44 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_44, 0, x_43); -lean_ctor_set(x_24, 0, x_44); -return x_24; -} -else -{ -lean_object* x_45; uint16_t x_46; uint16_t x_47; uint16_t x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; uint32_t x_52; uint8_t x_53; lean_object* x_54; lean_object* x_55; -x_45 = lean_ctor_get(x_22, 0); -x_46 = lean_ctor_get_uint16(x_22, sizeof(void*)*1); -lean_inc(x_45); +x_35 = lean_unbox(x_22); lean_dec(x_22); -x_47 = lean_ctor_get_uint16(x_34, sizeof(void*)*1); +x_36 = lean_unbox(x_34); lean_dec(x_34); -x_48 = lean_uint16_div(x_46, x_47); -x_49 = lean_alloc_ctor(0, 1, 2); -lean_ctor_set(x_49, 0, x_45); -lean_ctor_set_uint16(x_49, sizeof(void*)*1, x_48); -x_50 = l_UInt16_toExpr(x_49); -x_51 = lean_box(0); -x_52 = 0; -x_53 = 1; -x_54 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_54, 0, x_50); -lean_ctor_set(x_54, 1, x_51); -lean_ctor_set_uint32(x_54, sizeof(void*)*2, x_52); -lean_ctor_set_uint8(x_54, sizeof(void*)*2 + 4, x_53); -x_55 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_55, 0, x_54); -lean_ctor_set(x_24, 0, x_55); +x_37 = lean_uint16_div(x_35, x_36); +x_38 = lean_uint16_to_nat(x_37); +x_39 = l_Lean_mkRawNatLit(x_38); +x_40 = l_UInt16_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847____lambda__1___closed__3; +lean_inc(x_39); +x_41 = l_Lean_Expr_app___override(x_40, x_39); +x_42 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__4; +x_43 = l_UInt16_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847____lambda__1___closed__1; +x_44 = l_Lean_mkApp3(x_42, x_43, x_39, x_41); +x_45 = lean_box(0); +x_46 = 0; +x_47 = 1; +x_48 = lean_alloc_ctor(0, 2, 5); +lean_ctor_set(x_48, 0, x_44); +lean_ctor_set(x_48, 1, x_45); +lean_ctor_set_uint32(x_48, sizeof(void*)*2, x_46); +lean_ctor_set_uint8(x_48, sizeof(void*)*2 + 4, x_47); +x_49 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_49, 0, x_48); +lean_ctor_set(x_24, 0, x_49); return x_24; } -} else { -lean_object* x_56; lean_object* x_57; lean_object* x_58; uint16_t x_59; lean_object* x_60; uint16_t x_61; uint16_t x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; uint32_t x_66; uint8_t x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; -x_56 = lean_ctor_get(x_24, 1); -lean_inc(x_56); +lean_object* x_50; lean_object* x_51; uint16_t x_52; uint16_t x_53; uint16_t 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; uint32_t x_63; uint8_t x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; +x_50 = lean_ctor_get(x_24, 1); +lean_inc(x_50); lean_dec(x_24); -x_57 = lean_ctor_get(x_25, 0); -lean_inc(x_57); +x_51 = lean_ctor_get(x_25, 0); +lean_inc(x_51); lean_dec(x_25); -x_58 = lean_ctor_get(x_22, 0); -lean_inc(x_58); -x_59 = lean_ctor_get_uint16(x_22, sizeof(void*)*1); -if (lean_is_exclusive(x_22)) { - lean_ctor_release(x_22, 0); - x_60 = x_22; -} else { - lean_dec_ref(x_22); - x_60 = lean_box(0); -} -x_61 = lean_ctor_get_uint16(x_57, sizeof(void*)*1); -lean_dec(x_57); -x_62 = lean_uint16_div(x_59, x_61); -if (lean_is_scalar(x_60)) { - x_63 = lean_alloc_ctor(0, 1, 2); -} else { - x_63 = x_60; -} -lean_ctor_set(x_63, 0, x_58); -lean_ctor_set_uint16(x_63, sizeof(void*)*1, x_62); -x_64 = l_UInt16_toExpr(x_63); -x_65 = lean_box(0); -x_66 = 0; -x_67 = 1; -x_68 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_68, 0, x_64); -lean_ctor_set(x_68, 1, x_65); -lean_ctor_set_uint32(x_68, sizeof(void*)*2, x_66); -lean_ctor_set_uint8(x_68, sizeof(void*)*2 + 4, x_67); -x_69 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_69, 0, x_68); -x_70 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_70, 0, x_69); -lean_ctor_set(x_70, 1, x_56); -return x_70; +x_52 = lean_unbox(x_22); +lean_dec(x_22); +x_53 = lean_unbox(x_51); +lean_dec(x_51); +x_54 = lean_uint16_div(x_52, x_53); +x_55 = lean_uint16_to_nat(x_54); +x_56 = l_Lean_mkRawNatLit(x_55); +x_57 = l_UInt16_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847____lambda__1___closed__3; +lean_inc(x_56); +x_58 = l_Lean_Expr_app___override(x_57, x_56); +x_59 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__4; +x_60 = l_UInt16_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847____lambda__1___closed__1; +x_61 = l_Lean_mkApp3(x_59, x_60, x_56, x_58); +x_62 = lean_box(0); +x_63 = 0; +x_64 = 1; +x_65 = lean_alloc_ctor(0, 2, 5); +lean_ctor_set(x_65, 0, x_61); +lean_ctor_set(x_65, 1, x_62); +lean_ctor_set_uint32(x_65, sizeof(void*)*2, x_63); +lean_ctor_set_uint8(x_65, sizeof(void*)*2 + 4, x_64); +x_66 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_66, 0, x_65); +x_67 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_67, 0, x_66); +lean_ctor_set(x_67, 1, x_50); +return x_67; } } } else { -uint8_t x_71; +uint8_t x_68; lean_dec(x_22); -x_71 = !lean_is_exclusive(x_24); -if (x_71 == 0) +x_68 = !lean_is_exclusive(x_24); +if (x_68 == 0) { return x_24; } else { -lean_object* x_72; lean_object* x_73; lean_object* x_74; -x_72 = lean_ctor_get(x_24, 0); -x_73 = lean_ctor_get(x_24, 1); -lean_inc(x_73); -lean_inc(x_72); +lean_object* x_69; lean_object* x_70; lean_object* x_71; +x_69 = lean_ctor_get(x_24, 0); +x_70 = lean_ctor_get(x_24, 1); +lean_inc(x_70); +lean_inc(x_69); lean_dec(x_24); -x_74 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_74, 0, x_72); -lean_ctor_set(x_74, 1, x_73); -return x_74; +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; } } } } else { -uint8_t x_75; +uint8_t x_72; lean_dec(x_9); lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_1); -x_75 = !lean_is_exclusive(x_13); -if (x_75 == 0) +x_72 = !lean_is_exclusive(x_13); +if (x_72 == 0) { return x_13; } else { -lean_object* x_76; lean_object* x_77; lean_object* x_78; -x_76 = lean_ctor_get(x_13, 0); -x_77 = lean_ctor_get(x_13, 1); -lean_inc(x_77); -lean_inc(x_76); +lean_object* x_73; lean_object* x_74; lean_object* x_75; +x_73 = lean_ctor_get(x_13, 0); +x_74 = lean_ctor_get(x_13, 1); +lean_inc(x_74); +lean_inc(x_73); lean_dec(x_13); -x_78 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_78, 0, x_76); -lean_ctor_set(x_78, 1, x_77); -return x_78; +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; } } } @@ -21704,7 +18455,7 @@ LEAN_EXPORT lean_object* l_UInt16_reduceDiv(lean_object* x_1, lean_object* x_2, _start: { lean_object* x_10; lean_object* x_11; uint8_t x_12; -x_10 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__469; +x_10 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__325; x_11 = lean_unsigned_to_nat(6u); x_12 = l_Lean_Expr_isAppOfArity(x_1, x_10, x_11); if (x_12 == 0) @@ -21718,7 +18469,7 @@ lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_13 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_13 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; x_14 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_14, 0, x_13); lean_ctor_set(x_14, 1, x_9); @@ -21748,77 +18499,77 @@ lean_dec(x_2); return x_11; } } -static lean_object* _init_l___regBuiltin_UInt16_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11177____closed__1() { +static lean_object* _init_l___regBuiltin_UInt16_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9501____closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_UInt16_fromExpr___closed__1; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__459; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__315; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt16_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11177____closed__2() { +static lean_object* _init_l___regBuiltin_UInt16_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9501____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt8_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9736____closed__3; -x_2 = l___regBuiltin_UInt16_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11057____closed__2; +x_1 = l___regBuiltin_UInt8_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8169____closed__3; +x_2 = l___regBuiltin_UInt16_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9381____closed__2; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt16_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11177____closed__3() { +static lean_object* _init_l___regBuiltin_UInt16_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9501____closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt16_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11177____closed__2; -x_2 = l___regBuiltin_UInt16_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11057____closed__2; +x_1 = l___regBuiltin_UInt16_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9501____closed__2; +x_2 = l___regBuiltin_UInt16_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9381____closed__2; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt16_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11177____closed__4() { +static lean_object* _init_l___regBuiltin_UInt16_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9501____closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt16_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11177____closed__3; -x_2 = l___regBuiltin_UInt16_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11057____closed__2; +x_1 = l___regBuiltin_UInt16_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9501____closed__3; +x_2 = l___regBuiltin_UInt16_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9381____closed__2; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt16_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11177____closed__5() { +static lean_object* _init_l___regBuiltin_UInt16_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9501____closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt16_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11177____closed__4; +x_1 = l___regBuiltin_UInt16_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9501____closed__4; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt16_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11177____closed__6() { +static lean_object* _init_l___regBuiltin_UInt16_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9501____closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt16_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11177____closed__5; +x_1 = l___regBuiltin_UInt16_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9501____closed__5; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt16_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11177____closed__7() { +static lean_object* _init_l___regBuiltin_UInt16_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9501____closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt16_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11177____closed__6; +x_1 = l___regBuiltin_UInt16_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9501____closed__6; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt16_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11177____closed__8() { +static lean_object* _init_l___regBuiltin_UInt16_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9501____closed__8() { _start: { lean_object* x_1; @@ -21826,37 +18577,37 @@ x_1 = lean_alloc_closure((void*)(l_UInt16_reduceDiv), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_UInt16_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11177_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_UInt16_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9501_(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_UInt16_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11177____closed__1; -x_3 = l___regBuiltin_UInt16_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11177____closed__7; -x_4 = l___regBuiltin_UInt16_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11177____closed__8; +x_2 = l___regBuiltin_UInt16_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9501____closed__1; +x_3 = l___regBuiltin_UInt16_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9501____closed__7; +x_4 = l___regBuiltin_UInt16_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9501____closed__8; x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); return x_5; } } -LEAN_EXPORT lean_object* l___regBuiltin_UInt16_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11179_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_UInt16_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9503_(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____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9618____closed__1; -x_3 = l___regBuiltin_UInt16_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11177____closed__1; +x_2 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8051____closed__1; +x_3 = l___regBuiltin_UInt16_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9501____closed__1; x_4 = 1; -x_5 = l___regBuiltin_UInt16_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11177____closed__8; +x_5 = l___regBuiltin_UInt16_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9501____closed__8; 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_UInt16_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11181_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_UInt16_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9505_(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____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9620____closed__1; -x_3 = l___regBuiltin_UInt16_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11177____closed__1; +x_2 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8053____closed__1; +x_3 = l___regBuiltin_UInt16_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9501____closed__1; x_4 = 1; -x_5 = l___regBuiltin_UInt16_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11177____closed__8; +x_5 = l___regBuiltin_UInt16_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9501____closed__8; x_6 = l_Lean_Meta_Simp_addSimprocBuiltinAttrCore(x_2, x_3, x_4, x_5, x_1); return x_6; } @@ -21874,6 +18625,7 @@ lean_inc(x_8); lean_inc(x_7); lean_inc(x_6); x_13 = l_UInt16_fromExpr(x_12, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_12); if (lean_obj_tag(x_13) == 0) { lean_object* x_14; @@ -21893,7 +18645,7 @@ if (x_15 == 0) lean_object* x_16; lean_object* x_17; x_16 = lean_ctor_get(x_13, 0); lean_dec(x_16); -x_17 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_17 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; lean_ctor_set(x_13, 0, x_17); return x_13; } @@ -21903,7 +18655,7 @@ lean_object* x_18; lean_object* x_19; lean_object* x_20; x_18 = lean_ctor_get(x_13, 1); lean_inc(x_18); lean_dec(x_13); -x_19 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_19 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; x_20 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_20, 0, x_19); lean_ctor_set(x_20, 1, x_18); @@ -21922,6 +18674,7 @@ lean_dec(x_14); x_23 = l_Lean_Expr_appArg_x21(x_1); lean_dec(x_1); x_24 = l_UInt16_fromExpr(x_23, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_21); +lean_dec(x_23); if (lean_obj_tag(x_24) == 0) { lean_object* x_25; @@ -21937,7 +18690,7 @@ if (x_26 == 0) lean_object* x_27; lean_object* x_28; x_27 = lean_ctor_get(x_24, 0); lean_dec(x_27); -x_28 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_28 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; lean_ctor_set(x_24, 0, x_28); return x_24; } @@ -21947,7 +18700,7 @@ lean_object* x_29; lean_object* x_30; lean_object* x_31; x_29 = lean_ctor_get(x_24, 1); lean_inc(x_29); lean_dec(x_24); -x_30 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_30 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; x_31 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_31, 0, x_30); lean_ctor_set(x_31, 1, x_29); @@ -21960,160 +18713,127 @@ uint8_t x_32; x_32 = !lean_is_exclusive(x_24); if (x_32 == 0) { -lean_object* x_33; lean_object* x_34; uint8_t x_35; +lean_object* x_33; lean_object* x_34; uint16_t x_35; uint16_t x_36; uint16_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; uint32_t x_46; uint8_t x_47; lean_object* x_48; lean_object* x_49; x_33 = lean_ctor_get(x_24, 0); lean_dec(x_33); x_34 = lean_ctor_get(x_25, 0); lean_inc(x_34); lean_dec(x_25); -x_35 = !lean_is_exclusive(x_22); -if (x_35 == 0) -{ -uint16_t x_36; uint16_t x_37; uint16_t x_38; lean_object* x_39; lean_object* x_40; uint32_t x_41; uint8_t x_42; lean_object* x_43; lean_object* x_44; -x_36 = lean_ctor_get_uint16(x_22, sizeof(void*)*1); -x_37 = lean_ctor_get_uint16(x_34, sizeof(void*)*1); -lean_dec(x_34); -x_38 = lean_uint16_mod(x_36, x_37); -lean_ctor_set_uint16(x_22, sizeof(void*)*1, x_38); -x_39 = l_UInt16_toExpr(x_22); -x_40 = lean_box(0); -x_41 = 0; -x_42 = 1; -x_43 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_43, 0, x_39); -lean_ctor_set(x_43, 1, x_40); -lean_ctor_set_uint32(x_43, sizeof(void*)*2, x_41); -lean_ctor_set_uint8(x_43, sizeof(void*)*2 + 4, x_42); -x_44 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_44, 0, x_43); -lean_ctor_set(x_24, 0, x_44); -return x_24; -} -else -{ -lean_object* x_45; uint16_t x_46; uint16_t x_47; uint16_t x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; uint32_t x_52; uint8_t x_53; lean_object* x_54; lean_object* x_55; -x_45 = lean_ctor_get(x_22, 0); -x_46 = lean_ctor_get_uint16(x_22, sizeof(void*)*1); -lean_inc(x_45); +x_35 = lean_unbox(x_22); lean_dec(x_22); -x_47 = lean_ctor_get_uint16(x_34, sizeof(void*)*1); +x_36 = lean_unbox(x_34); lean_dec(x_34); -x_48 = lean_uint16_mod(x_46, x_47); -x_49 = lean_alloc_ctor(0, 1, 2); -lean_ctor_set(x_49, 0, x_45); -lean_ctor_set_uint16(x_49, sizeof(void*)*1, x_48); -x_50 = l_UInt16_toExpr(x_49); -x_51 = lean_box(0); -x_52 = 0; -x_53 = 1; -x_54 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_54, 0, x_50); -lean_ctor_set(x_54, 1, x_51); -lean_ctor_set_uint32(x_54, sizeof(void*)*2, x_52); -lean_ctor_set_uint8(x_54, sizeof(void*)*2 + 4, x_53); -x_55 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_55, 0, x_54); -lean_ctor_set(x_24, 0, x_55); +x_37 = lean_uint16_mod(x_35, x_36); +x_38 = lean_uint16_to_nat(x_37); +x_39 = l_Lean_mkRawNatLit(x_38); +x_40 = l_UInt16_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847____lambda__1___closed__3; +lean_inc(x_39); +x_41 = l_Lean_Expr_app___override(x_40, x_39); +x_42 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__4; +x_43 = l_UInt16_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847____lambda__1___closed__1; +x_44 = l_Lean_mkApp3(x_42, x_43, x_39, x_41); +x_45 = lean_box(0); +x_46 = 0; +x_47 = 1; +x_48 = lean_alloc_ctor(0, 2, 5); +lean_ctor_set(x_48, 0, x_44); +lean_ctor_set(x_48, 1, x_45); +lean_ctor_set_uint32(x_48, sizeof(void*)*2, x_46); +lean_ctor_set_uint8(x_48, sizeof(void*)*2 + 4, x_47); +x_49 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_49, 0, x_48); +lean_ctor_set(x_24, 0, x_49); return x_24; } -} else { -lean_object* x_56; lean_object* x_57; lean_object* x_58; uint16_t x_59; lean_object* x_60; uint16_t x_61; uint16_t x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; uint32_t x_66; uint8_t x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; -x_56 = lean_ctor_get(x_24, 1); -lean_inc(x_56); +lean_object* x_50; lean_object* x_51; uint16_t x_52; uint16_t x_53; uint16_t 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; uint32_t x_63; uint8_t x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; +x_50 = lean_ctor_get(x_24, 1); +lean_inc(x_50); lean_dec(x_24); -x_57 = lean_ctor_get(x_25, 0); -lean_inc(x_57); +x_51 = lean_ctor_get(x_25, 0); +lean_inc(x_51); lean_dec(x_25); -x_58 = lean_ctor_get(x_22, 0); -lean_inc(x_58); -x_59 = lean_ctor_get_uint16(x_22, sizeof(void*)*1); -if (lean_is_exclusive(x_22)) { - lean_ctor_release(x_22, 0); - x_60 = x_22; -} else { - lean_dec_ref(x_22); - x_60 = lean_box(0); -} -x_61 = lean_ctor_get_uint16(x_57, sizeof(void*)*1); -lean_dec(x_57); -x_62 = lean_uint16_mod(x_59, x_61); -if (lean_is_scalar(x_60)) { - x_63 = lean_alloc_ctor(0, 1, 2); -} else { - x_63 = x_60; -} -lean_ctor_set(x_63, 0, x_58); -lean_ctor_set_uint16(x_63, sizeof(void*)*1, x_62); -x_64 = l_UInt16_toExpr(x_63); -x_65 = lean_box(0); -x_66 = 0; -x_67 = 1; -x_68 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_68, 0, x_64); -lean_ctor_set(x_68, 1, x_65); -lean_ctor_set_uint32(x_68, sizeof(void*)*2, x_66); -lean_ctor_set_uint8(x_68, sizeof(void*)*2 + 4, x_67); -x_69 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_69, 0, x_68); -x_70 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_70, 0, x_69); -lean_ctor_set(x_70, 1, x_56); -return x_70; +x_52 = lean_unbox(x_22); +lean_dec(x_22); +x_53 = lean_unbox(x_51); +lean_dec(x_51); +x_54 = lean_uint16_mod(x_52, x_53); +x_55 = lean_uint16_to_nat(x_54); +x_56 = l_Lean_mkRawNatLit(x_55); +x_57 = l_UInt16_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847____lambda__1___closed__3; +lean_inc(x_56); +x_58 = l_Lean_Expr_app___override(x_57, x_56); +x_59 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__4; +x_60 = l_UInt16_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847____lambda__1___closed__1; +x_61 = l_Lean_mkApp3(x_59, x_60, x_56, x_58); +x_62 = lean_box(0); +x_63 = 0; +x_64 = 1; +x_65 = lean_alloc_ctor(0, 2, 5); +lean_ctor_set(x_65, 0, x_61); +lean_ctor_set(x_65, 1, x_62); +lean_ctor_set_uint32(x_65, sizeof(void*)*2, x_63); +lean_ctor_set_uint8(x_65, sizeof(void*)*2 + 4, x_64); +x_66 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_66, 0, x_65); +x_67 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_67, 0, x_66); +lean_ctor_set(x_67, 1, x_50); +return x_67; } } } else { -uint8_t x_71; +uint8_t x_68; lean_dec(x_22); -x_71 = !lean_is_exclusive(x_24); -if (x_71 == 0) +x_68 = !lean_is_exclusive(x_24); +if (x_68 == 0) { return x_24; } else { -lean_object* x_72; lean_object* x_73; lean_object* x_74; -x_72 = lean_ctor_get(x_24, 0); -x_73 = lean_ctor_get(x_24, 1); -lean_inc(x_73); -lean_inc(x_72); +lean_object* x_69; lean_object* x_70; lean_object* x_71; +x_69 = lean_ctor_get(x_24, 0); +x_70 = lean_ctor_get(x_24, 1); +lean_inc(x_70); +lean_inc(x_69); lean_dec(x_24); -x_74 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_74, 0, x_72); -lean_ctor_set(x_74, 1, x_73); -return x_74; +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; } } } } else { -uint8_t x_75; +uint8_t x_72; lean_dec(x_9); lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_1); -x_75 = !lean_is_exclusive(x_13); -if (x_75 == 0) +x_72 = !lean_is_exclusive(x_13); +if (x_72 == 0) { return x_13; } else { -lean_object* x_76; lean_object* x_77; lean_object* x_78; -x_76 = lean_ctor_get(x_13, 0); -x_77 = lean_ctor_get(x_13, 1); -lean_inc(x_77); -lean_inc(x_76); +lean_object* x_73; lean_object* x_74; lean_object* x_75; +x_73 = lean_ctor_get(x_13, 0); +x_74 = lean_ctor_get(x_13, 1); +lean_inc(x_74); +lean_inc(x_73); lean_dec(x_13); -x_78 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_78, 0, x_76); -lean_ctor_set(x_78, 1, x_77); -return x_78; +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; } } } @@ -22122,7 +18842,7 @@ LEAN_EXPORT lean_object* l_UInt16_reduceMod(lean_object* x_1, lean_object* x_2, _start: { lean_object* x_10; lean_object* x_11; uint8_t x_12; -x_10 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__482; +x_10 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__338; x_11 = lean_unsigned_to_nat(6u); x_12 = l_Lean_Expr_isAppOfArity(x_1, x_10, x_11); if (x_12 == 0) @@ -22136,7 +18856,7 @@ lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_13 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_13 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; x_14 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_14, 0, x_13); lean_ctor_set(x_14, 1, x_9); @@ -22166,77 +18886,77 @@ lean_dec(x_2); return x_11; } } -static lean_object* _init_l___regBuiltin_UInt16_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11217____closed__1() { +static lean_object* _init_l___regBuiltin_UInt16_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9541____closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_UInt16_fromExpr___closed__1; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__472; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__328; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt16_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11217____closed__2() { +static lean_object* _init_l___regBuiltin_UInt16_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9541____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt8_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9776____closed__3; -x_2 = l___regBuiltin_UInt16_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11057____closed__2; +x_1 = l___regBuiltin_UInt8_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8209____closed__3; +x_2 = l___regBuiltin_UInt16_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9381____closed__2; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt16_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11217____closed__3() { +static lean_object* _init_l___regBuiltin_UInt16_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9541____closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt16_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11217____closed__2; -x_2 = l___regBuiltin_UInt16_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11057____closed__2; +x_1 = l___regBuiltin_UInt16_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9541____closed__2; +x_2 = l___regBuiltin_UInt16_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9381____closed__2; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt16_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11217____closed__4() { +static lean_object* _init_l___regBuiltin_UInt16_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9541____closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt16_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11217____closed__3; -x_2 = l___regBuiltin_UInt16_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11057____closed__2; +x_1 = l___regBuiltin_UInt16_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9541____closed__3; +x_2 = l___regBuiltin_UInt16_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9381____closed__2; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt16_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11217____closed__5() { +static lean_object* _init_l___regBuiltin_UInt16_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9541____closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt16_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11217____closed__4; +x_1 = l___regBuiltin_UInt16_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9541____closed__4; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt16_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11217____closed__6() { +static lean_object* _init_l___regBuiltin_UInt16_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9541____closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt16_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11217____closed__5; +x_1 = l___regBuiltin_UInt16_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9541____closed__5; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt16_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11217____closed__7() { +static lean_object* _init_l___regBuiltin_UInt16_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9541____closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt16_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11217____closed__6; +x_1 = l___regBuiltin_UInt16_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9541____closed__6; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt16_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11217____closed__8() { +static lean_object* _init_l___regBuiltin_UInt16_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9541____closed__8() { _start: { lean_object* x_1; @@ -22244,37 +18964,37 @@ x_1 = lean_alloc_closure((void*)(l_UInt16_reduceMod), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_UInt16_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11217_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_UInt16_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9541_(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_UInt16_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11217____closed__1; -x_3 = l___regBuiltin_UInt16_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11217____closed__7; -x_4 = l___regBuiltin_UInt16_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11217____closed__8; +x_2 = l___regBuiltin_UInt16_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9541____closed__1; +x_3 = l___regBuiltin_UInt16_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9541____closed__7; +x_4 = l___regBuiltin_UInt16_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9541____closed__8; x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); return x_5; } } -LEAN_EXPORT lean_object* l___regBuiltin_UInt16_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11219_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_UInt16_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9543_(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____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9618____closed__1; -x_3 = l___regBuiltin_UInt16_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11217____closed__1; +x_2 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8051____closed__1; +x_3 = l___regBuiltin_UInt16_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9541____closed__1; x_4 = 1; -x_5 = l___regBuiltin_UInt16_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11217____closed__8; +x_5 = l___regBuiltin_UInt16_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9541____closed__8; 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_UInt16_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11221_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_UInt16_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9545_(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____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9620____closed__1; -x_3 = l___regBuiltin_UInt16_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11217____closed__1; +x_2 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8053____closed__1; +x_3 = l___regBuiltin_UInt16_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9541____closed__1; x_4 = 1; -x_5 = l___regBuiltin_UInt16_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11217____closed__8; +x_5 = l___regBuiltin_UInt16_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9541____closed__8; x_6 = l_Lean_Meta_Simp_addSimprocBuiltinAttrCore(x_2, x_3, x_4, x_5, x_1); return x_6; } @@ -22292,6 +19012,7 @@ lean_inc(x_8); lean_inc(x_7); lean_inc(x_6); x_13 = l_UInt16_fromExpr(x_12, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_12); if (lean_obj_tag(x_13) == 0) { lean_object* x_14; @@ -22311,7 +19032,7 @@ if (x_15 == 0) lean_object* x_16; lean_object* x_17; x_16 = lean_ctor_get(x_13, 0); lean_dec(x_16); -x_17 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_17 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; lean_ctor_set(x_13, 0, x_17); return x_13; } @@ -22321,7 +19042,7 @@ lean_object* x_18; lean_object* x_19; lean_object* x_20; x_18 = lean_ctor_get(x_13, 1); lean_inc(x_18); lean_dec(x_13); -x_19 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_19 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; x_20 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_20, 0, x_19); lean_ctor_set(x_20, 1, x_18); @@ -22343,6 +19064,7 @@ lean_inc(x_8); lean_inc(x_7); lean_inc(x_6); x_24 = l_UInt16_fromExpr(x_23, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_21); +lean_dec(x_23); if (lean_obj_tag(x_24) == 0) { lean_object* x_25; @@ -22363,7 +19085,7 @@ if (x_26 == 0) lean_object* x_27; lean_object* x_28; x_27 = lean_ctor_get(x_24, 0); lean_dec(x_27); -x_28 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_28 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; lean_ctor_set(x_24, 0, x_28); return x_24; } @@ -22373,7 +19095,7 @@ lean_object* x_29; lean_object* x_30; lean_object* x_31; x_29 = lean_ctor_get(x_24, 1); lean_inc(x_29); lean_dec(x_24); -x_30 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_30 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; x_31 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_31, 0, x_30); lean_ctor_set(x_31, 1, x_29); @@ -22389,9 +19111,9 @@ lean_dec(x_24); x_33 = lean_ctor_get(x_25, 0); lean_inc(x_33); lean_dec(x_25); -x_34 = lean_ctor_get_uint16(x_22, sizeof(void*)*1); +x_34 = lean_unbox(x_22); lean_dec(x_22); -x_35 = lean_ctor_get_uint16(x_33, sizeof(void*)*1); +x_35 = lean_unbox(x_33); lean_dec(x_33); x_36 = lean_uint16_dec_lt(x_34, x_35); x_37 = l_Lean_Meta_Simp_evalPropStep(x_1, x_36, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_32); @@ -22461,7 +19183,7 @@ LEAN_EXPORT lean_object* l_UInt16_reduceLT(lean_object* x_1, lean_object* x_2, l _start: { lean_object* x_10; lean_object* x_11; uint8_t x_12; -x_10 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__495; +x_10 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__351; x_11 = lean_unsigned_to_nat(4u); x_12 = l_Lean_Expr_isAppOfArity(x_1, x_10, x_11); if (x_12 == 0) @@ -22475,7 +19197,7 @@ lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_13 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_13 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; x_14 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_14, 0, x_13); lean_ctor_set(x_14, 1, x_9); @@ -22505,57 +19227,57 @@ lean_dec(x_2); return x_11; } } -static lean_object* _init_l___regBuiltin_UInt16_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11258____closed__1() { +static lean_object* _init_l___regBuiltin_UInt16_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9582____closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_UInt16_fromExpr___closed__1; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__485; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__341; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt16_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11258____closed__2() { +static lean_object* _init_l___regBuiltin_UInt16_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9582____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt8_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9817____closed__4; -x_2 = l___regBuiltin_UInt16_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11057____closed__2; +x_1 = l___regBuiltin_UInt8_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8250____closed__4; +x_2 = l___regBuiltin_UInt16_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9381____closed__2; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt16_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11258____closed__3() { +static lean_object* _init_l___regBuiltin_UInt16_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9582____closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt16_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11258____closed__2; +x_1 = l___regBuiltin_UInt16_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9582____closed__2; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt16_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11258____closed__4() { +static lean_object* _init_l___regBuiltin_UInt16_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9582____closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt16_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11258____closed__3; +x_1 = l___regBuiltin_UInt16_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9582____closed__3; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt16_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11258____closed__5() { +static lean_object* _init_l___regBuiltin_UInt16_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9582____closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt16_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11258____closed__4; +x_1 = l___regBuiltin_UInt16_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9582____closed__4; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt16_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11258____closed__6() { +static lean_object* _init_l___regBuiltin_UInt16_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9582____closed__6() { _start: { lean_object* x_1; @@ -22563,37 +19285,37 @@ x_1 = lean_alloc_closure((void*)(l_UInt16_reduceLT), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_UInt16_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11258_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_UInt16_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9582_(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_UInt16_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11258____closed__1; -x_3 = l___regBuiltin_UInt16_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11258____closed__5; -x_4 = l___regBuiltin_UInt16_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11258____closed__6; +x_2 = l___regBuiltin_UInt16_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9582____closed__1; +x_3 = l___regBuiltin_UInt16_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9582____closed__5; +x_4 = l___regBuiltin_UInt16_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9582____closed__6; x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); return x_5; } } -LEAN_EXPORT lean_object* l___regBuiltin_UInt16_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11260_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_UInt16_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9584_(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____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9618____closed__1; -x_3 = l___regBuiltin_UInt16_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11258____closed__1; +x_2 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8051____closed__1; +x_3 = l___regBuiltin_UInt16_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9582____closed__1; x_4 = 1; -x_5 = l___regBuiltin_UInt16_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11258____closed__6; +x_5 = l___regBuiltin_UInt16_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9582____closed__6; 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_UInt16_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11262_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_UInt16_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9586_(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____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9620____closed__1; -x_3 = l___regBuiltin_UInt16_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11258____closed__1; +x_2 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8053____closed__1; +x_3 = l___regBuiltin_UInt16_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9582____closed__1; x_4 = 1; -x_5 = l___regBuiltin_UInt16_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11258____closed__6; +x_5 = l___regBuiltin_UInt16_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9582____closed__6; x_6 = l_Lean_Meta_Simp_addSimprocBuiltinAttrCore(x_2, x_3, x_4, x_5, x_1); return x_6; } @@ -22611,6 +19333,7 @@ lean_inc(x_8); lean_inc(x_7); lean_inc(x_6); x_13 = l_UInt16_fromExpr(x_12, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_12); if (lean_obj_tag(x_13) == 0) { lean_object* x_14; @@ -22630,7 +19353,7 @@ if (x_15 == 0) lean_object* x_16; lean_object* x_17; x_16 = lean_ctor_get(x_13, 0); lean_dec(x_16); -x_17 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_17 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; lean_ctor_set(x_13, 0, x_17); return x_13; } @@ -22640,7 +19363,7 @@ lean_object* x_18; lean_object* x_19; lean_object* x_20; x_18 = lean_ctor_get(x_13, 1); lean_inc(x_18); lean_dec(x_13); -x_19 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_19 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; x_20 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_20, 0, x_19); lean_ctor_set(x_20, 1, x_18); @@ -22662,6 +19385,7 @@ lean_inc(x_8); lean_inc(x_7); lean_inc(x_6); x_24 = l_UInt16_fromExpr(x_23, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_21); +lean_dec(x_23); if (lean_obj_tag(x_24) == 0) { lean_object* x_25; @@ -22682,7 +19406,7 @@ if (x_26 == 0) lean_object* x_27; lean_object* x_28; x_27 = lean_ctor_get(x_24, 0); lean_dec(x_27); -x_28 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_28 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; lean_ctor_set(x_24, 0, x_28); return x_24; } @@ -22692,7 +19416,7 @@ lean_object* x_29; lean_object* x_30; lean_object* x_31; x_29 = lean_ctor_get(x_24, 1); lean_inc(x_29); lean_dec(x_24); -x_30 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_30 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; x_31 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_31, 0, x_30); lean_ctor_set(x_31, 1, x_29); @@ -22708,9 +19432,9 @@ lean_dec(x_24); x_33 = lean_ctor_get(x_25, 0); lean_inc(x_33); lean_dec(x_25); -x_34 = lean_ctor_get_uint16(x_22, sizeof(void*)*1); +x_34 = lean_unbox(x_22); lean_dec(x_22); -x_35 = lean_ctor_get_uint16(x_33, sizeof(void*)*1); +x_35 = lean_unbox(x_33); lean_dec(x_33); x_36 = lean_uint16_dec_le(x_34, x_35); x_37 = l_Lean_Meta_Simp_evalPropStep(x_1, x_36, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_32); @@ -22780,7 +19504,7 @@ LEAN_EXPORT lean_object* l_UInt16_reduceLE(lean_object* x_1, lean_object* x_2, l _start: { lean_object* x_10; lean_object* x_11; uint8_t x_12; -x_10 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__509; +x_10 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__365; x_11 = lean_unsigned_to_nat(4u); x_12 = l_Lean_Expr_isAppOfArity(x_1, x_10, x_11); if (x_12 == 0) @@ -22794,7 +19518,7 @@ lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_13 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_13 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; x_14 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_14, 0, x_13); lean_ctor_set(x_14, 1, x_9); @@ -22824,57 +19548,57 @@ lean_dec(x_2); return x_11; } } -static lean_object* _init_l___regBuiltin_UInt16_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11299____closed__1() { +static lean_object* _init_l___regBuiltin_UInt16_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9623____closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_UInt16_fromExpr___closed__1; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__499; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__355; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt16_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11299____closed__2() { +static lean_object* _init_l___regBuiltin_UInt16_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9623____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt8_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9858____closed__3; -x_2 = l___regBuiltin_UInt16_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11057____closed__2; +x_1 = l___regBuiltin_UInt8_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8291____closed__3; +x_2 = l___regBuiltin_UInt16_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9381____closed__2; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt16_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11299____closed__3() { +static lean_object* _init_l___regBuiltin_UInt16_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9623____closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt16_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11299____closed__2; +x_1 = l___regBuiltin_UInt16_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9623____closed__2; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt16_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11299____closed__4() { +static lean_object* _init_l___regBuiltin_UInt16_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9623____closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt16_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11299____closed__3; +x_1 = l___regBuiltin_UInt16_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9623____closed__3; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt16_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11299____closed__5() { +static lean_object* _init_l___regBuiltin_UInt16_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9623____closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt16_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11299____closed__4; +x_1 = l___regBuiltin_UInt16_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9623____closed__4; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt16_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11299____closed__6() { +static lean_object* _init_l___regBuiltin_UInt16_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9623____closed__6() { _start: { lean_object* x_1; @@ -22882,37 +19606,37 @@ x_1 = lean_alloc_closure((void*)(l_UInt16_reduceLE), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_UInt16_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11299_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_UInt16_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9623_(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_UInt16_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11299____closed__1; -x_3 = l___regBuiltin_UInt16_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11299____closed__5; -x_4 = l___regBuiltin_UInt16_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11299____closed__6; +x_2 = l___regBuiltin_UInt16_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9623____closed__1; +x_3 = l___regBuiltin_UInt16_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9623____closed__5; +x_4 = l___regBuiltin_UInt16_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9623____closed__6; x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); return x_5; } } -LEAN_EXPORT lean_object* l___regBuiltin_UInt16_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11301_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_UInt16_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9625_(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____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9618____closed__1; -x_3 = l___regBuiltin_UInt16_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11299____closed__1; +x_2 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8051____closed__1; +x_3 = l___regBuiltin_UInt16_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9623____closed__1; x_4 = 1; -x_5 = l___regBuiltin_UInt16_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11299____closed__6; +x_5 = l___regBuiltin_UInt16_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9623____closed__6; 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_UInt16_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11303_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_UInt16_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9627_(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____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9620____closed__1; -x_3 = l___regBuiltin_UInt16_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11299____closed__1; +x_2 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8053____closed__1; +x_3 = l___regBuiltin_UInt16_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9623____closed__1; x_4 = 1; -x_5 = l___regBuiltin_UInt16_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11299____closed__6; +x_5 = l___regBuiltin_UInt16_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9623____closed__6; x_6 = l_Lean_Meta_Simp_addSimprocBuiltinAttrCore(x_2, x_3, x_4, x_5, x_1); return x_6; } @@ -22930,6 +19654,7 @@ lean_inc(x_8); lean_inc(x_7); lean_inc(x_6); x_13 = l_UInt16_fromExpr(x_12, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_12); if (lean_obj_tag(x_13) == 0) { lean_object* x_14; @@ -22949,7 +19674,7 @@ if (x_15 == 0) lean_object* x_16; lean_object* x_17; x_16 = lean_ctor_get(x_13, 0); lean_dec(x_16); -x_17 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_17 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; lean_ctor_set(x_13, 0, x_17); return x_13; } @@ -22959,7 +19684,7 @@ lean_object* x_18; lean_object* x_19; lean_object* x_20; x_18 = lean_ctor_get(x_13, 1); lean_inc(x_18); lean_dec(x_13); -x_19 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_19 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; x_20 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_20, 0, x_19); lean_ctor_set(x_20, 1, x_18); @@ -22981,6 +19706,7 @@ lean_inc(x_8); lean_inc(x_7); lean_inc(x_6); x_24 = l_UInt16_fromExpr(x_23, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_21); +lean_dec(x_23); if (lean_obj_tag(x_24) == 0) { lean_object* x_25; @@ -23001,7 +19727,7 @@ if (x_26 == 0) lean_object* x_27; lean_object* x_28; x_27 = lean_ctor_get(x_24, 0); lean_dec(x_27); -x_28 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_28 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; lean_ctor_set(x_24, 0, x_28); return x_24; } @@ -23011,7 +19737,7 @@ lean_object* x_29; lean_object* x_30; lean_object* x_31; x_29 = lean_ctor_get(x_24, 1); lean_inc(x_29); lean_dec(x_24); -x_30 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_30 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; x_31 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_31, 0, x_30); lean_ctor_set(x_31, 1, x_29); @@ -23027,11 +19753,11 @@ lean_dec(x_24); x_33 = lean_ctor_get(x_25, 0); lean_inc(x_33); lean_dec(x_25); -x_34 = lean_ctor_get_uint16(x_22, sizeof(void*)*1); -lean_dec(x_22); -x_35 = lean_ctor_get_uint16(x_33, sizeof(void*)*1); +x_34 = lean_unbox(x_33); lean_dec(x_33); -x_36 = lean_uint16_dec_lt(x_35, x_34); +x_35 = lean_unbox(x_22); +lean_dec(x_22); +x_36 = lean_uint16_dec_lt(x_34, x_35); x_37 = l_Lean_Meta_Simp_evalPropStep(x_1, x_36, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_32); return x_37; } @@ -23099,7 +19825,7 @@ LEAN_EXPORT lean_object* l_UInt16_reduceGT(lean_object* x_1, lean_object* x_2, l _start: { lean_object* x_10; lean_object* x_11; uint8_t x_12; -x_10 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__522; +x_10 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__378; x_11 = lean_unsigned_to_nat(4u); x_12 = l_Lean_Expr_isAppOfArity(x_1, x_10, x_11); if (x_12 == 0) @@ -23113,7 +19839,7 @@ lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_13 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_13 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; x_14 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_14, 0, x_13); lean_ctor_set(x_14, 1, x_9); @@ -23143,17 +19869,17 @@ lean_dec(x_2); return x_11; } } -static lean_object* _init_l___regBuiltin_UInt16_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11340____closed__1() { +static lean_object* _init_l___regBuiltin_UInt16_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9664____closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_UInt16_fromExpr___closed__1; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__512; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__368; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt16_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11340____closed__2() { +static lean_object* _init_l___regBuiltin_UInt16_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9664____closed__2() { _start: { lean_object* x_1; @@ -23161,37 +19887,37 @@ x_1 = lean_alloc_closure((void*)(l_UInt16_reduceGT), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_UInt16_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11340_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_UInt16_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9664_(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_UInt16_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11340____closed__1; -x_3 = l___regBuiltin_UInt16_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11258____closed__5; -x_4 = l___regBuiltin_UInt16_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11340____closed__2; +x_2 = l___regBuiltin_UInt16_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9664____closed__1; +x_3 = l___regBuiltin_UInt16_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9582____closed__5; +x_4 = l___regBuiltin_UInt16_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9664____closed__2; x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); return x_5; } } -LEAN_EXPORT lean_object* l___regBuiltin_UInt16_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11342_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_UInt16_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9666_(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____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9618____closed__1; -x_3 = l___regBuiltin_UInt16_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11340____closed__1; +x_2 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8051____closed__1; +x_3 = l___regBuiltin_UInt16_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9664____closed__1; x_4 = 1; -x_5 = l___regBuiltin_UInt16_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11340____closed__2; +x_5 = l___regBuiltin_UInt16_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9664____closed__2; 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_UInt16_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11344_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_UInt16_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9668_(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____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9620____closed__1; -x_3 = l___regBuiltin_UInt16_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11340____closed__1; +x_2 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8053____closed__1; +x_3 = l___regBuiltin_UInt16_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9664____closed__1; x_4 = 1; -x_5 = l___regBuiltin_UInt16_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11340____closed__2; +x_5 = l___regBuiltin_UInt16_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9664____closed__2; x_6 = l_Lean_Meta_Simp_addSimprocBuiltinAttrCore(x_2, x_3, x_4, x_5, x_1); return x_6; } @@ -23209,6 +19935,7 @@ lean_inc(x_8); lean_inc(x_7); lean_inc(x_6); x_13 = l_UInt16_fromExpr(x_12, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_12); if (lean_obj_tag(x_13) == 0) { lean_object* x_14; @@ -23228,7 +19955,7 @@ if (x_15 == 0) lean_object* x_16; lean_object* x_17; x_16 = lean_ctor_get(x_13, 0); lean_dec(x_16); -x_17 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_17 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; lean_ctor_set(x_13, 0, x_17); return x_13; } @@ -23238,7 +19965,7 @@ lean_object* x_18; lean_object* x_19; lean_object* x_20; x_18 = lean_ctor_get(x_13, 1); lean_inc(x_18); lean_dec(x_13); -x_19 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_19 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; x_20 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_20, 0, x_19); lean_ctor_set(x_20, 1, x_18); @@ -23260,6 +19987,7 @@ lean_inc(x_8); lean_inc(x_7); lean_inc(x_6); x_24 = l_UInt16_fromExpr(x_23, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_21); +lean_dec(x_23); if (lean_obj_tag(x_24) == 0) { lean_object* x_25; @@ -23280,7 +20008,7 @@ if (x_26 == 0) lean_object* x_27; lean_object* x_28; x_27 = lean_ctor_get(x_24, 0); lean_dec(x_27); -x_28 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_28 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; lean_ctor_set(x_24, 0, x_28); return x_24; } @@ -23290,7 +20018,7 @@ lean_object* x_29; lean_object* x_30; lean_object* x_31; x_29 = lean_ctor_get(x_24, 1); lean_inc(x_29); lean_dec(x_24); -x_30 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_30 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; x_31 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_31, 0, x_30); lean_ctor_set(x_31, 1, x_29); @@ -23306,11 +20034,11 @@ lean_dec(x_24); x_33 = lean_ctor_get(x_25, 0); lean_inc(x_33); lean_dec(x_25); -x_34 = lean_ctor_get_uint16(x_22, sizeof(void*)*1); -lean_dec(x_22); -x_35 = lean_ctor_get_uint16(x_33, sizeof(void*)*1); +x_34 = lean_unbox(x_33); lean_dec(x_33); -x_36 = lean_uint16_dec_le(x_35, x_34); +x_35 = lean_unbox(x_22); +lean_dec(x_22); +x_36 = lean_uint16_dec_le(x_34, x_35); x_37 = l_Lean_Meta_Simp_evalPropStep(x_1, x_36, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_32); return x_37; } @@ -23378,7 +20106,7 @@ LEAN_EXPORT lean_object* l_UInt16_reduceGE(lean_object* x_1, lean_object* x_2, l _start: { lean_object* x_10; lean_object* x_11; uint8_t x_12; -x_10 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__535; +x_10 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__391; x_11 = lean_unsigned_to_nat(4u); x_12 = l_Lean_Expr_isAppOfArity(x_1, x_10, x_11); if (x_12 == 0) @@ -23392,7 +20120,7 @@ lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_13 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_13 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; x_14 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_14, 0, x_13); lean_ctor_set(x_14, 1, x_9); @@ -23422,17 +20150,17 @@ lean_dec(x_2); return x_11; } } -static lean_object* _init_l___regBuiltin_UInt16_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11381____closed__1() { +static lean_object* _init_l___regBuiltin_UInt16_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9705____closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_UInt16_fromExpr___closed__1; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__525; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__381; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt16_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11381____closed__2() { +static lean_object* _init_l___regBuiltin_UInt16_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9705____closed__2() { _start: { lean_object* x_1; @@ -23440,42 +20168,42 @@ x_1 = lean_alloc_closure((void*)(l_UInt16_reduceGE), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_UInt16_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11381_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_UInt16_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9705_(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_UInt16_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11381____closed__1; -x_3 = l___regBuiltin_UInt16_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11299____closed__5; -x_4 = l___regBuiltin_UInt16_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11381____closed__2; +x_2 = l___regBuiltin_UInt16_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9705____closed__1; +x_3 = l___regBuiltin_UInt16_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9623____closed__5; +x_4 = l___regBuiltin_UInt16_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9705____closed__2; x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); return x_5; } } -LEAN_EXPORT lean_object* l___regBuiltin_UInt16_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11383_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_UInt16_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9707_(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____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9618____closed__1; -x_3 = l___regBuiltin_UInt16_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11381____closed__1; +x_2 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8051____closed__1; +x_3 = l___regBuiltin_UInt16_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9705____closed__1; x_4 = 1; -x_5 = l___regBuiltin_UInt16_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11381____closed__2; +x_5 = l___regBuiltin_UInt16_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9705____closed__2; 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_UInt16_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11385_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_UInt16_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9709_(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____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9620____closed__1; -x_3 = l___regBuiltin_UInt16_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11381____closed__1; +x_2 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8053____closed__1; +x_3 = l___regBuiltin_UInt16_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9705____closed__1; x_4 = 1; -x_5 = l___regBuiltin_UInt16_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11381____closed__2; +x_5 = l___regBuiltin_UInt16_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9705____closed__2; 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_UInt16_reduceEq____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419____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) { +LEAN_EXPORT lean_object* l_UInt16_reduceEq____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847____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; @@ -23488,6 +20216,7 @@ lean_inc(x_8); lean_inc(x_7); lean_inc(x_6); x_13 = l_UInt16_fromExpr(x_12, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_12); if (lean_obj_tag(x_13) == 0) { lean_object* x_14; @@ -23507,7 +20236,7 @@ if (x_15 == 0) lean_object* x_16; lean_object* x_17; x_16 = lean_ctor_get(x_13, 0); lean_dec(x_16); -x_17 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_17 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; lean_ctor_set(x_13, 0, x_17); return x_13; } @@ -23517,7 +20246,7 @@ lean_object* x_18; lean_object* x_19; lean_object* x_20; x_18 = lean_ctor_get(x_13, 1); lean_inc(x_18); lean_dec(x_13); -x_19 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_19 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; x_20 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_20, 0, x_19); lean_ctor_set(x_20, 1, x_18); @@ -23539,6 +20268,7 @@ lean_inc(x_8); lean_inc(x_7); lean_inc(x_6); x_24 = l_UInt16_fromExpr(x_23, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_21); +lean_dec(x_23); if (lean_obj_tag(x_24) == 0) { lean_object* x_25; @@ -23559,7 +20289,7 @@ if (x_26 == 0) lean_object* x_27; lean_object* x_28; x_27 = lean_ctor_get(x_24, 0); lean_dec(x_27); -x_28 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_28 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; lean_ctor_set(x_24, 0, x_28); return x_24; } @@ -23569,7 +20299,7 @@ lean_object* x_29; lean_object* x_30; lean_object* x_31; x_29 = lean_ctor_get(x_24, 1); lean_inc(x_29); lean_dec(x_24); -x_30 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_30 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; x_31 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_31, 0, x_30); lean_ctor_set(x_31, 1, x_29); @@ -23585,9 +20315,9 @@ lean_dec(x_24); x_33 = lean_ctor_get(x_25, 0); lean_inc(x_33); lean_dec(x_25); -x_34 = lean_ctor_get_uint16(x_22, sizeof(void*)*1); +x_34 = lean_unbox(x_22); lean_dec(x_22); -x_35 = lean_ctor_get_uint16(x_33, sizeof(void*)*1); +x_35 = lean_unbox(x_33); lean_dec(x_33); x_36 = lean_uint16_dec_eq(x_34, x_35); x_37 = l_Lean_Meta_Simp_evalPropStep(x_1, x_36, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_32); @@ -23653,11 +20383,11 @@ return x_45; } } } -LEAN_EXPORT lean_object* l_UInt16_reduceEq____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419_(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_EXPORT lean_object* l_UInt16_reduceEq____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847_(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; uint8_t x_12; -x_10 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__546; +x_10 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__402; x_11 = lean_unsigned_to_nat(3u); x_12 = l_Lean_Expr_isAppOfArity(x_1, x_10, x_11); if (x_12 == 0) @@ -23671,7 +20401,7 @@ lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_13 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_13 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; x_14 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_14, 0, x_13); lean_ctor_set(x_14, 1, x_9); @@ -23681,7 +20411,7 @@ else { lean_object* x_15; lean_object* x_16; x_15 = lean_box(0); -x_16 = l_UInt16_reduceEq____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419____lambda__1(x_1, x_15, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_16 = l_UInt16_reduceEq____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847____lambda__1(x_1, x_15, 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); @@ -23689,11 +20419,11 @@ return x_16; } } } -LEAN_EXPORT lean_object* l_UInt16_reduceEq____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419____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) { +LEAN_EXPORT lean_object* l_UInt16_reduceEq____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847____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_UInt16_reduceEq____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419____lambda__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_11 = l_UInt16_reduceEq____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847____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); @@ -23701,180 +20431,180 @@ lean_dec(x_2); return x_11; } } -static lean_object* _init_l___regBuiltin_UInt16_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11422____closed__1() { +static lean_object* _init_l___regBuiltin_UInt16_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9746____closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_UInt16_fromExpr___closed__2; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__538; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__394; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt16_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11422____closed__2() { +static lean_object* _init_l___regBuiltin_UInt16_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9746____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt16_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11422____closed__1; -x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__2; +x_1 = l___regBuiltin_UInt16_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9746____closed__1; +x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__2; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt16_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11422____closed__3() { +static lean_object* _init_l___regBuiltin_UInt16_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9746____closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt16_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11422____closed__2; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__18; +x_1 = l___regBuiltin_UInt16_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9746____closed__2; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__12; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt16_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11422____closed__4() { +static lean_object* _init_l___regBuiltin_UInt16_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9746____closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt16_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11422____closed__3; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__90; +x_1 = l___regBuiltin_UInt16_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9746____closed__3; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__57; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt16_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11422____closed__5() { +static lean_object* _init_l___regBuiltin_UInt16_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9746____closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt16_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11422____closed__4; -x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__6; +x_1 = l___regBuiltin_UInt16_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9746____closed__4; +x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__6; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt16_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11422____closed__6() { +static lean_object* _init_l___regBuiltin_UInt16_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9746____closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt16_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11422____closed__5; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__91; +x_1 = l___regBuiltin_UInt16_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9746____closed__5; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__58; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt16_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11422____closed__7() { +static lean_object* _init_l___regBuiltin_UInt16_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9746____closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt16_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11422____closed__6; -x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__9; +x_1 = l___regBuiltin_UInt16_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9746____closed__6; +x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__9; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt16_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11422____closed__8() { +static lean_object* _init_l___regBuiltin_UInt16_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9746____closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt16_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11422____closed__7; -x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__11; +x_1 = l___regBuiltin_UInt16_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9746____closed__7; +x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__11; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt16_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11422____closed__9() { +static lean_object* _init_l___regBuiltin_UInt16_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9746____closed__9() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt16_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11422____closed__8; -x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__13; +x_1 = l___regBuiltin_UInt16_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9746____closed__8; +x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__13; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt16_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11422____closed__10() { +static lean_object* _init_l___regBuiltin_UInt16_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9746____closed__10() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt16_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11422____closed__9; -x_2 = lean_unsigned_to_nat(10419u); +x_1 = l___regBuiltin_UInt16_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9746____closed__9; +x_2 = lean_unsigned_to_nat(8847u); x_3 = l_Lean_Name_num___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt16_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11422____closed__11() { +static lean_object* _init_l___regBuiltin_UInt16_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9746____closed__11() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__18; -x_2 = l___regBuiltin_UInt16_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11057____closed__2; +x_1 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__18; +x_2 = l___regBuiltin_UInt16_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9381____closed__2; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt16_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11422____closed__12() { +static lean_object* _init_l___regBuiltin_UInt16_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9746____closed__12() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt16_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11422____closed__11; +x_1 = l___regBuiltin_UInt16_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9746____closed__11; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt16_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11422____closed__13() { +static lean_object* _init_l___regBuiltin_UInt16_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9746____closed__13() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt16_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11422____closed__12; +x_1 = l___regBuiltin_UInt16_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9746____closed__12; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt16_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11422____closed__14() { +static lean_object* _init_l___regBuiltin_UInt16_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9746____closed__14() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_UInt16_reduceEq____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419_), 9, 0); +x_1 = lean_alloc_closure((void*)(l_UInt16_reduceEq____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847_), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_UInt16_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11422_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_UInt16_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9746_(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_UInt16_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11422____closed__10; -x_3 = l___regBuiltin_UInt16_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11422____closed__13; -x_4 = l___regBuiltin_UInt16_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11422____closed__14; +x_2 = l___regBuiltin_UInt16_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9746____closed__10; +x_3 = l___regBuiltin_UInt16_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9746____closed__13; +x_4 = l___regBuiltin_UInt16_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9746____closed__14; x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); return x_5; } } -LEAN_EXPORT lean_object* l___regBuiltin_UInt16_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11424_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_UInt16_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9748_(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____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9618____closed__1; -x_3 = l___regBuiltin_UInt16_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11422____closed__10; +x_2 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8051____closed__1; +x_3 = l___regBuiltin_UInt16_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9746____closed__10; x_4 = 1; -x_5 = l___regBuiltin_UInt16_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11422____closed__14; +x_5 = l___regBuiltin_UInt16_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9746____closed__14; 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_UInt16_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11426_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_UInt16_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9750_(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____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9620____closed__1; -x_3 = l___regBuiltin_UInt16_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11422____closed__10; +x_2 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8053____closed__1; +x_3 = l___regBuiltin_UInt16_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9746____closed__10; x_4 = 1; -x_5 = l___regBuiltin_UInt16_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11422____closed__14; +x_5 = l___regBuiltin_UInt16_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9746____closed__14; 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_UInt16_reduceNe____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419____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) { +LEAN_EXPORT lean_object* l_UInt16_reduceNe____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847____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; @@ -23887,6 +20617,7 @@ lean_inc(x_8); lean_inc(x_7); lean_inc(x_6); x_13 = l_UInt16_fromExpr(x_12, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_12); if (lean_obj_tag(x_13) == 0) { lean_object* x_14; @@ -23906,7 +20637,7 @@ if (x_15 == 0) lean_object* x_16; lean_object* x_17; x_16 = lean_ctor_get(x_13, 0); lean_dec(x_16); -x_17 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_17 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; lean_ctor_set(x_13, 0, x_17); return x_13; } @@ -23916,7 +20647,7 @@ lean_object* x_18; lean_object* x_19; lean_object* x_20; x_18 = lean_ctor_get(x_13, 1); lean_inc(x_18); lean_dec(x_13); -x_19 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_19 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; x_20 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_20, 0, x_19); lean_ctor_set(x_20, 1, x_18); @@ -23938,6 +20669,7 @@ lean_inc(x_8); lean_inc(x_7); lean_inc(x_6); x_24 = l_UInt16_fromExpr(x_23, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_21); +lean_dec(x_23); if (lean_obj_tag(x_24) == 0) { lean_object* x_25; @@ -23958,7 +20690,7 @@ if (x_26 == 0) lean_object* x_27; lean_object* x_28; x_27 = lean_ctor_get(x_24, 0); lean_dec(x_27); -x_28 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_28 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; lean_ctor_set(x_24, 0, x_28); return x_24; } @@ -23968,7 +20700,7 @@ lean_object* x_29; lean_object* x_30; lean_object* x_31; x_29 = lean_ctor_get(x_24, 1); lean_inc(x_29); lean_dec(x_24); -x_30 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_30 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; x_31 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_31, 0, x_30); lean_ctor_set(x_31, 1, x_29); @@ -23984,9 +20716,9 @@ lean_dec(x_24); x_33 = lean_ctor_get(x_25, 0); lean_inc(x_33); lean_dec(x_25); -x_34 = lean_ctor_get_uint16(x_22, sizeof(void*)*1); +x_34 = lean_unbox(x_22); lean_dec(x_22); -x_35 = lean_ctor_get_uint16(x_33, sizeof(void*)*1); +x_35 = lean_unbox(x_33); lean_dec(x_33); x_36 = lean_uint16_dec_eq(x_34, x_35); x_37 = l_instDecidableNot___rarg(x_36); @@ -24053,11 +20785,11 @@ return x_46; } } } -LEAN_EXPORT lean_object* l_UInt16_reduceNe____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419_(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_EXPORT lean_object* l_UInt16_reduceNe____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847_(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; uint8_t x_12; -x_10 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__559; +x_10 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__416; x_11 = lean_unsigned_to_nat(3u); x_12 = l_Lean_Expr_isAppOfArity(x_1, x_10, x_11); if (x_12 == 0) @@ -24071,7 +20803,7 @@ lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_13 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_13 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; x_14 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_14, 0, x_13); lean_ctor_set(x_14, 1, x_9); @@ -24081,7 +20813,7 @@ else { lean_object* x_15; lean_object* x_16; x_15 = lean_box(0); -x_16 = l_UInt16_reduceNe____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419____lambda__1(x_1, x_15, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_16 = l_UInt16_reduceNe____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847____lambda__1(x_1, x_15, 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); @@ -24089,11 +20821,11 @@ return x_16; } } } -LEAN_EXPORT lean_object* l_UInt16_reduceNe____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419____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) { +LEAN_EXPORT lean_object* l_UInt16_reduceNe____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847____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_UInt16_reduceNe____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419____lambda__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_11 = l_UInt16_reduceNe____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847____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); @@ -24101,180 +20833,180 @@ lean_dec(x_2); return x_11; } } -static lean_object* _init_l___regBuiltin_UInt16_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11462____closed__1() { +static lean_object* _init_l___regBuiltin_UInt16_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9786____closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_UInt16_fromExpr___closed__2; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__551; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__408; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt16_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11462____closed__2() { +static lean_object* _init_l___regBuiltin_UInt16_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9786____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt16_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11462____closed__1; -x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__2; +x_1 = l___regBuiltin_UInt16_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9786____closed__1; +x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__2; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt16_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11462____closed__3() { +static lean_object* _init_l___regBuiltin_UInt16_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9786____closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt16_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11462____closed__2; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__18; +x_1 = l___regBuiltin_UInt16_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9786____closed__2; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__12; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt16_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11462____closed__4() { +static lean_object* _init_l___regBuiltin_UInt16_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9786____closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt16_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11462____closed__3; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__90; +x_1 = l___regBuiltin_UInt16_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9786____closed__3; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__57; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt16_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11462____closed__5() { +static lean_object* _init_l___regBuiltin_UInt16_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9786____closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt16_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11462____closed__4; -x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__6; +x_1 = l___regBuiltin_UInt16_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9786____closed__4; +x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__6; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt16_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11462____closed__6() { +static lean_object* _init_l___regBuiltin_UInt16_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9786____closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt16_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11462____closed__5; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__91; +x_1 = l___regBuiltin_UInt16_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9786____closed__5; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__58; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt16_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11462____closed__7() { +static lean_object* _init_l___regBuiltin_UInt16_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9786____closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt16_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11462____closed__6; -x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__9; +x_1 = l___regBuiltin_UInt16_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9786____closed__6; +x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__9; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt16_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11462____closed__8() { +static lean_object* _init_l___regBuiltin_UInt16_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9786____closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt16_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11462____closed__7; -x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__11; +x_1 = l___regBuiltin_UInt16_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9786____closed__7; +x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__11; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt16_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11462____closed__9() { +static lean_object* _init_l___regBuiltin_UInt16_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9786____closed__9() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt16_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11462____closed__8; -x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__13; +x_1 = l___regBuiltin_UInt16_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9786____closed__8; +x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__13; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt16_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11462____closed__10() { +static lean_object* _init_l___regBuiltin_UInt16_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9786____closed__10() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt16_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11462____closed__9; -x_2 = lean_unsigned_to_nat(10419u); +x_1 = l___regBuiltin_UInt16_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9786____closed__9; +x_2 = lean_unsigned_to_nat(8847u); x_3 = l_Lean_Name_num___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt16_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11462____closed__11() { +static lean_object* _init_l___regBuiltin_UInt16_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9786____closed__11() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10021____closed__15; -x_2 = l___regBuiltin_UInt16_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11057____closed__2; +x_1 = l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8454____closed__15; +x_2 = l___regBuiltin_UInt16_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9381____closed__2; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt16_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11462____closed__12() { +static lean_object* _init_l___regBuiltin_UInt16_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9786____closed__12() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt16_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11462____closed__11; +x_1 = l___regBuiltin_UInt16_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9786____closed__11; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt16_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11462____closed__13() { +static lean_object* _init_l___regBuiltin_UInt16_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9786____closed__13() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt16_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11462____closed__12; +x_1 = l___regBuiltin_UInt16_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9786____closed__12; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt16_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11462____closed__14() { +static lean_object* _init_l___regBuiltin_UInt16_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9786____closed__14() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_UInt16_reduceNe____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419_), 9, 0); +x_1 = lean_alloc_closure((void*)(l_UInt16_reduceNe____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847_), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_UInt16_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11462_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_UInt16_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9786_(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_UInt16_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11462____closed__10; -x_3 = l___regBuiltin_UInt16_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11462____closed__13; -x_4 = l___regBuiltin_UInt16_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11462____closed__14; +x_2 = l___regBuiltin_UInt16_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9786____closed__10; +x_3 = l___regBuiltin_UInt16_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9786____closed__13; +x_4 = l___regBuiltin_UInt16_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9786____closed__14; x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); return x_5; } } -LEAN_EXPORT lean_object* l___regBuiltin_UInt16_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11464_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_UInt16_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9788_(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____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9618____closed__1; -x_3 = l___regBuiltin_UInt16_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11462____closed__10; +x_2 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8051____closed__1; +x_3 = l___regBuiltin_UInt16_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9786____closed__10; x_4 = 1; -x_5 = l___regBuiltin_UInt16_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11462____closed__14; +x_5 = l___regBuiltin_UInt16_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9786____closed__14; 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_UInt16_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11466_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_UInt16_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9790_(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____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9620____closed__1; -x_3 = l___regBuiltin_UInt16_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11462____closed__10; +x_2 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8053____closed__1; +x_3 = l___regBuiltin_UInt16_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9786____closed__10; x_4 = 1; -x_5 = l___regBuiltin_UInt16_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11462____closed__14; +x_5 = l___regBuiltin_UInt16_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9786____closed__14; 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_UInt16_reduceBEq____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419____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) { +LEAN_EXPORT lean_object* l_UInt16_reduceBEq____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847____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; @@ -24287,6 +21019,7 @@ lean_inc(x_8); lean_inc(x_7); lean_inc(x_6); x_13 = l_UInt16_fromExpr(x_12, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_12); if (lean_obj_tag(x_13) == 0) { lean_object* x_14; @@ -24306,7 +21039,7 @@ if (x_15 == 0) lean_object* x_16; lean_object* x_17; x_16 = lean_ctor_get(x_13, 0); lean_dec(x_16); -x_17 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_17 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; lean_ctor_set(x_13, 0, x_17); return x_13; } @@ -24316,7 +21049,7 @@ lean_object* x_18; lean_object* x_19; lean_object* x_20; x_18 = lean_ctor_get(x_13, 1); lean_inc(x_18); lean_dec(x_13); -x_19 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_19 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; x_20 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_20, 0, x_19); lean_ctor_set(x_20, 1, x_18); @@ -24335,6 +21068,7 @@ lean_dec(x_14); x_23 = l_Lean_Expr_appArg_x21(x_1); lean_dec(x_1); x_24 = l_UInt16_fromExpr(x_23, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_21); +lean_dec(x_23); if (lean_obj_tag(x_24) == 0) { lean_object* x_25; @@ -24350,7 +21084,7 @@ if (x_26 == 0) lean_object* x_27; lean_object* x_28; x_27 = lean_ctor_get(x_24, 0); lean_dec(x_27); -x_28 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_28 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; lean_ctor_set(x_24, 0, x_28); return x_24; } @@ -24360,7 +21094,7 @@ lean_object* x_29; lean_object* x_30; lean_object* x_31; x_29 = lean_ctor_get(x_24, 1); lean_inc(x_29); lean_dec(x_24); -x_30 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_30 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; x_31 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_31, 0, x_30); lean_ctor_set(x_31, 1, x_29); @@ -24379,22 +21113,22 @@ lean_dec(x_33); x_34 = lean_ctor_get(x_25, 0); lean_inc(x_34); lean_dec(x_25); -x_35 = lean_ctor_get_uint16(x_22, sizeof(void*)*1); +x_35 = lean_unbox(x_22); lean_dec(x_22); -x_36 = lean_ctor_get_uint16(x_34, sizeof(void*)*1); +x_36 = lean_unbox(x_34); lean_dec(x_34); x_37 = lean_uint16_dec_eq(x_35, x_36); if (x_37 == 0) { lean_object* x_38; -x_38 = l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__5; +x_38 = l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__5; lean_ctor_set(x_24, 0, x_38); return x_24; } else { lean_object* x_39; -x_39 = l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__10; +x_39 = l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__10; lean_ctor_set(x_24, 0, x_39); return x_24; } @@ -24408,15 +21142,15 @@ lean_dec(x_24); x_41 = lean_ctor_get(x_25, 0); lean_inc(x_41); lean_dec(x_25); -x_42 = lean_ctor_get_uint16(x_22, sizeof(void*)*1); +x_42 = lean_unbox(x_22); lean_dec(x_22); -x_43 = lean_ctor_get_uint16(x_41, sizeof(void*)*1); +x_43 = lean_unbox(x_41); lean_dec(x_41); x_44 = lean_uint16_dec_eq(x_42, x_43); if (x_44 == 0) { lean_object* x_45; lean_object* x_46; -x_45 = l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__5; +x_45 = l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__5; x_46 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_46, 0, x_45); lean_ctor_set(x_46, 1, x_40); @@ -24425,7 +21159,7 @@ return x_46; else { lean_object* x_47; lean_object* x_48; -x_47 = l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__10; +x_47 = l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__10; x_48 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_48, 0, x_47); lean_ctor_set(x_48, 1, x_40); @@ -24488,11 +21222,11 @@ return x_56; } } } -LEAN_EXPORT lean_object* l_UInt16_reduceBEq____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419_(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_EXPORT lean_object* l_UInt16_reduceBEq____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847_(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; uint8_t x_12; -x_10 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__574; +x_10 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__431; x_11 = lean_unsigned_to_nat(4u); x_12 = l_Lean_Expr_isAppOfArity(x_1, x_10, x_11); if (x_12 == 0) @@ -24506,7 +21240,7 @@ lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_13 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_13 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; x_14 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_14, 0, x_13); lean_ctor_set(x_14, 1, x_9); @@ -24516,7 +21250,7 @@ else { lean_object* x_15; lean_object* x_16; x_15 = lean_box(0); -x_16 = l_UInt16_reduceBEq____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419____lambda__1(x_1, x_15, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_16 = l_UInt16_reduceBEq____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847____lambda__1(x_1, x_15, 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); @@ -24524,11 +21258,11 @@ return x_16; } } } -LEAN_EXPORT lean_object* l_UInt16_reduceBEq____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419____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) { +LEAN_EXPORT lean_object* l_UInt16_reduceBEq____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847____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_UInt16_reduceBEq____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419____lambda__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_11 = l_UInt16_reduceBEq____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847____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); @@ -24536,190 +21270,190 @@ lean_dec(x_2); return x_11; } } -static lean_object* _init_l___regBuiltin_UInt16_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11503____closed__1() { +static lean_object* _init_l___regBuiltin_UInt16_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9827____closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_UInt16_fromExpr___closed__2; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__564; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__421; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt16_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11503____closed__2() { +static lean_object* _init_l___regBuiltin_UInt16_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9827____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt16_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11503____closed__1; -x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__2; +x_1 = l___regBuiltin_UInt16_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9827____closed__1; +x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__2; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt16_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11503____closed__3() { +static lean_object* _init_l___regBuiltin_UInt16_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9827____closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt16_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11503____closed__2; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__18; +x_1 = l___regBuiltin_UInt16_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9827____closed__2; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__12; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt16_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11503____closed__4() { +static lean_object* _init_l___regBuiltin_UInt16_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9827____closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt16_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11503____closed__3; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__90; +x_1 = l___regBuiltin_UInt16_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9827____closed__3; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__57; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt16_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11503____closed__5() { +static lean_object* _init_l___regBuiltin_UInt16_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9827____closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt16_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11503____closed__4; -x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__6; +x_1 = l___regBuiltin_UInt16_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9827____closed__4; +x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__6; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt16_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11503____closed__6() { +static lean_object* _init_l___regBuiltin_UInt16_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9827____closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt16_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11503____closed__5; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__91; +x_1 = l___regBuiltin_UInt16_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9827____closed__5; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__58; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt16_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11503____closed__7() { +static lean_object* _init_l___regBuiltin_UInt16_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9827____closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt16_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11503____closed__6; -x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__9; +x_1 = l___regBuiltin_UInt16_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9827____closed__6; +x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__9; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt16_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11503____closed__8() { +static lean_object* _init_l___regBuiltin_UInt16_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9827____closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt16_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11503____closed__7; -x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__11; +x_1 = l___regBuiltin_UInt16_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9827____closed__7; +x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__11; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt16_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11503____closed__9() { +static lean_object* _init_l___regBuiltin_UInt16_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9827____closed__9() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt16_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11503____closed__8; -x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__13; +x_1 = l___regBuiltin_UInt16_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9827____closed__8; +x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__13; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt16_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11503____closed__10() { +static lean_object* _init_l___regBuiltin_UInt16_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9827____closed__10() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt16_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11503____closed__9; -x_2 = lean_unsigned_to_nat(10419u); +x_1 = l___regBuiltin_UInt16_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9827____closed__9; +x_2 = lean_unsigned_to_nat(8847u); x_3 = l_Lean_Name_num___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt16_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11503____closed__11() { +static lean_object* _init_l___regBuiltin_UInt16_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9827____closed__11() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10062____closed__12; -x_2 = l___regBuiltin_UInt16_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11057____closed__2; +x_1 = l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8495____closed__12; +x_2 = l___regBuiltin_UInt16_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9381____closed__2; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt16_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11503____closed__12() { +static lean_object* _init_l___regBuiltin_UInt16_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9827____closed__12() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt16_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11503____closed__11; +x_1 = l___regBuiltin_UInt16_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9827____closed__11; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt16_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11503____closed__13() { +static lean_object* _init_l___regBuiltin_UInt16_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9827____closed__13() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt16_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11503____closed__12; +x_1 = l___regBuiltin_UInt16_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9827____closed__12; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt16_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11503____closed__14() { +static lean_object* _init_l___regBuiltin_UInt16_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9827____closed__14() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt16_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11503____closed__13; +x_1 = l___regBuiltin_UInt16_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9827____closed__13; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt16_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11503____closed__15() { +static lean_object* _init_l___regBuiltin_UInt16_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9827____closed__15() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_UInt16_reduceBEq____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419_), 9, 0); +x_1 = lean_alloc_closure((void*)(l_UInt16_reduceBEq____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847_), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_UInt16_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11503_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_UInt16_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9827_(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_UInt16_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11503____closed__10; -x_3 = l___regBuiltin_UInt16_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11503____closed__14; -x_4 = l___regBuiltin_UInt16_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11503____closed__15; +x_2 = l___regBuiltin_UInt16_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9827____closed__10; +x_3 = l___regBuiltin_UInt16_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9827____closed__14; +x_4 = l___regBuiltin_UInt16_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9827____closed__15; x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); return x_5; } } -LEAN_EXPORT lean_object* l___regBuiltin_UInt16_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11505_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_UInt16_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9829_(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____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9618____closed__1; -x_3 = l___regBuiltin_UInt16_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11503____closed__10; +x_2 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8051____closed__1; +x_3 = l___regBuiltin_UInt16_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9827____closed__10; x_4 = 1; -x_5 = l___regBuiltin_UInt16_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11503____closed__15; +x_5 = l___regBuiltin_UInt16_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9827____closed__15; 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_UInt16_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11507_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_UInt16_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9831_(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____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9620____closed__1; -x_3 = l___regBuiltin_UInt16_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11503____closed__10; +x_2 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8053____closed__1; +x_3 = l___regBuiltin_UInt16_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9827____closed__10; x_4 = 1; -x_5 = l___regBuiltin_UInt16_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11503____closed__15; +x_5 = l___regBuiltin_UInt16_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9827____closed__15; 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_UInt16_reduceBNe____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419____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) { +LEAN_EXPORT lean_object* l_UInt16_reduceBNe____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847____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; @@ -24732,6 +21466,7 @@ lean_inc(x_8); lean_inc(x_7); lean_inc(x_6); x_13 = l_UInt16_fromExpr(x_12, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_12); if (lean_obj_tag(x_13) == 0) { lean_object* x_14; @@ -24751,7 +21486,7 @@ if (x_15 == 0) lean_object* x_16; lean_object* x_17; x_16 = lean_ctor_get(x_13, 0); lean_dec(x_16); -x_17 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_17 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; lean_ctor_set(x_13, 0, x_17); return x_13; } @@ -24761,7 +21496,7 @@ lean_object* x_18; lean_object* x_19; lean_object* x_20; x_18 = lean_ctor_get(x_13, 1); lean_inc(x_18); lean_dec(x_13); -x_19 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_19 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; x_20 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_20, 0, x_19); lean_ctor_set(x_20, 1, x_18); @@ -24780,6 +21515,7 @@ lean_dec(x_14); x_23 = l_Lean_Expr_appArg_x21(x_1); lean_dec(x_1); x_24 = l_UInt16_fromExpr(x_23, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_21); +lean_dec(x_23); if (lean_obj_tag(x_24) == 0) { lean_object* x_25; @@ -24795,7 +21531,7 @@ if (x_26 == 0) lean_object* x_27; lean_object* x_28; x_27 = lean_ctor_get(x_24, 0); lean_dec(x_27); -x_28 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_28 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; lean_ctor_set(x_24, 0, x_28); return x_24; } @@ -24805,7 +21541,7 @@ lean_object* x_29; lean_object* x_30; lean_object* x_31; x_29 = lean_ctor_get(x_24, 1); lean_inc(x_29); lean_dec(x_24); -x_30 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_30 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; x_31 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_31, 0, x_30); lean_ctor_set(x_31, 1, x_29); @@ -24824,22 +21560,22 @@ lean_dec(x_33); x_34 = lean_ctor_get(x_25, 0); lean_inc(x_34); lean_dec(x_25); -x_35 = lean_ctor_get_uint16(x_22, sizeof(void*)*1); +x_35 = lean_unbox(x_22); lean_dec(x_22); -x_36 = lean_ctor_get_uint16(x_34, sizeof(void*)*1); +x_36 = lean_unbox(x_34); lean_dec(x_34); x_37 = lean_uint16_dec_eq(x_35, x_36); if (x_37 == 0) { lean_object* x_38; -x_38 = l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__10; +x_38 = l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__10; lean_ctor_set(x_24, 0, x_38); return x_24; } else { lean_object* x_39; -x_39 = l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__5; +x_39 = l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__5; lean_ctor_set(x_24, 0, x_39); return x_24; } @@ -24853,15 +21589,15 @@ lean_dec(x_24); x_41 = lean_ctor_get(x_25, 0); lean_inc(x_41); lean_dec(x_25); -x_42 = lean_ctor_get_uint16(x_22, sizeof(void*)*1); +x_42 = lean_unbox(x_22); lean_dec(x_22); -x_43 = lean_ctor_get_uint16(x_41, sizeof(void*)*1); +x_43 = lean_unbox(x_41); lean_dec(x_41); x_44 = lean_uint16_dec_eq(x_42, x_43); if (x_44 == 0) { lean_object* x_45; lean_object* x_46; -x_45 = l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__10; +x_45 = l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__10; x_46 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_46, 0, x_45); lean_ctor_set(x_46, 1, x_40); @@ -24870,7 +21606,7 @@ return x_46; else { lean_object* x_47; lean_object* x_48; -x_47 = l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__5; +x_47 = l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__5; x_48 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_48, 0, x_47); lean_ctor_set(x_48, 1, x_40); @@ -24933,11 +21669,11 @@ return x_56; } } } -LEAN_EXPORT lean_object* l_UInt16_reduceBNe____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419_(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_EXPORT lean_object* l_UInt16_reduceBNe____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847_(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; uint8_t x_12; -x_10 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__585; +x_10 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__442; x_11 = lean_unsigned_to_nat(4u); x_12 = l_Lean_Expr_isAppOfArity(x_1, x_10, x_11); if (x_12 == 0) @@ -24951,7 +21687,7 @@ lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_13 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_13 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; x_14 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_14, 0, x_13); lean_ctor_set(x_14, 1, x_9); @@ -24961,7 +21697,7 @@ else { lean_object* x_15; lean_object* x_16; x_15 = lean_box(0); -x_16 = l_UInt16_reduceBNe____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419____lambda__1(x_1, x_15, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_16 = l_UInt16_reduceBNe____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847____lambda__1(x_1, x_15, 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); @@ -24969,11 +21705,11 @@ return x_16; } } } -LEAN_EXPORT lean_object* l_UInt16_reduceBNe____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419____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) { +LEAN_EXPORT lean_object* l_UInt16_reduceBNe____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847____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_UInt16_reduceBNe____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419____lambda__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_11 = l_UInt16_reduceBNe____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847____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); @@ -24981,185 +21717,185 @@ lean_dec(x_2); return x_11; } } -static lean_object* _init_l___regBuiltin_UInt16_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11543____closed__1() { +static lean_object* _init_l___regBuiltin_UInt16_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9867____closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_UInt16_fromExpr___closed__2; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__577; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__434; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt16_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11543____closed__2() { +static lean_object* _init_l___regBuiltin_UInt16_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9867____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt16_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11543____closed__1; -x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__2; +x_1 = l___regBuiltin_UInt16_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9867____closed__1; +x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__2; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt16_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11543____closed__3() { +static lean_object* _init_l___regBuiltin_UInt16_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9867____closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt16_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11543____closed__2; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__18; +x_1 = l___regBuiltin_UInt16_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9867____closed__2; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__12; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt16_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11543____closed__4() { +static lean_object* _init_l___regBuiltin_UInt16_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9867____closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt16_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11543____closed__3; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__90; +x_1 = l___regBuiltin_UInt16_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9867____closed__3; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__57; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt16_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11543____closed__5() { +static lean_object* _init_l___regBuiltin_UInt16_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9867____closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt16_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11543____closed__4; -x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__6; +x_1 = l___regBuiltin_UInt16_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9867____closed__4; +x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__6; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt16_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11543____closed__6() { +static lean_object* _init_l___regBuiltin_UInt16_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9867____closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt16_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11543____closed__5; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__91; +x_1 = l___regBuiltin_UInt16_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9867____closed__5; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__58; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt16_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11543____closed__7() { +static lean_object* _init_l___regBuiltin_UInt16_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9867____closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt16_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11543____closed__6; -x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__9; +x_1 = l___regBuiltin_UInt16_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9867____closed__6; +x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__9; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt16_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11543____closed__8() { +static lean_object* _init_l___regBuiltin_UInt16_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9867____closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt16_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11543____closed__7; -x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__11; +x_1 = l___regBuiltin_UInt16_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9867____closed__7; +x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__11; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt16_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11543____closed__9() { +static lean_object* _init_l___regBuiltin_UInt16_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9867____closed__9() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt16_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11543____closed__8; -x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__13; +x_1 = l___regBuiltin_UInt16_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9867____closed__8; +x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__13; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt16_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11543____closed__10() { +static lean_object* _init_l___regBuiltin_UInt16_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9867____closed__10() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt16_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11543____closed__9; -x_2 = lean_unsigned_to_nat(10419u); +x_1 = l___regBuiltin_UInt16_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9867____closed__9; +x_2 = lean_unsigned_to_nat(8847u); x_3 = l_Lean_Name_num___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt16_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11543____closed__11() { +static lean_object* _init_l___regBuiltin_UInt16_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9867____closed__11() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10102____closed__12; -x_2 = l___regBuiltin_UInt16_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11057____closed__2; +x_1 = l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8535____closed__12; +x_2 = l___regBuiltin_UInt16_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9381____closed__2; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt16_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11543____closed__12() { +static lean_object* _init_l___regBuiltin_UInt16_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9867____closed__12() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt16_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11543____closed__11; +x_1 = l___regBuiltin_UInt16_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9867____closed__11; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt16_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11543____closed__13() { +static lean_object* _init_l___regBuiltin_UInt16_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9867____closed__13() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt16_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11543____closed__12; +x_1 = l___regBuiltin_UInt16_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9867____closed__12; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt16_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11543____closed__14() { +static lean_object* _init_l___regBuiltin_UInt16_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9867____closed__14() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt16_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11543____closed__13; +x_1 = l___regBuiltin_UInt16_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9867____closed__13; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt16_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11543____closed__15() { +static lean_object* _init_l___regBuiltin_UInt16_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9867____closed__15() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_UInt16_reduceBNe____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419_), 9, 0); +x_1 = lean_alloc_closure((void*)(l_UInt16_reduceBNe____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847_), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_UInt16_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11543_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_UInt16_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9867_(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_UInt16_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11543____closed__10; -x_3 = l___regBuiltin_UInt16_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11543____closed__14; -x_4 = l___regBuiltin_UInt16_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11543____closed__15; +x_2 = l___regBuiltin_UInt16_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9867____closed__10; +x_3 = l___regBuiltin_UInt16_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9867____closed__14; +x_4 = l___regBuiltin_UInt16_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9867____closed__15; x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); return x_5; } } -LEAN_EXPORT lean_object* l___regBuiltin_UInt16_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11545_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_UInt16_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9869_(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____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9618____closed__1; -x_3 = l___regBuiltin_UInt16_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11543____closed__10; +x_2 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8051____closed__1; +x_3 = l___regBuiltin_UInt16_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9867____closed__10; x_4 = 1; -x_5 = l___regBuiltin_UInt16_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11543____closed__15; +x_5 = l___regBuiltin_UInt16_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9867____closed__15; 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_UInt16_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11547_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_UInt16_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9871_(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____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9620____closed__1; -x_3 = l___regBuiltin_UInt16_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11543____closed__10; +x_2 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8053____closed__1; +x_3 = l___regBuiltin_UInt16_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9867____closed__10; x_4 = 1; -x_5 = l___regBuiltin_UInt16_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11543____closed__15; +x_5 = l___regBuiltin_UInt16_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9867____closed__15; x_6 = l_Lean_Meta_Simp_addSimprocBuiltinAttrCore(x_2, x_3, x_4, x_5, x_1); return x_6; } @@ -25171,7 +21907,7 @@ lean_object* x_11; lean_object* x_12; lean_object* x_13; x_11 = l_Lean_Expr_appFn_x21(x_1); x_12 = l_Lean_Expr_appArg_x21(x_11); lean_dec(x_11); -x_13 = l_Nat_fromExpr_x3f(x_12, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_13 = l_Lean_Meta_getNatValue_x3f(x_12, x_6, x_7, x_8, x_9, x_10); if (lean_obj_tag(x_13) == 0) { lean_object* x_14; @@ -25186,7 +21922,7 @@ if (x_15 == 0) lean_object* x_16; lean_object* x_17; x_16 = lean_ctor_get(x_13, 0); lean_dec(x_16); -x_17 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_17 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; lean_ctor_set(x_13, 0, x_17); return x_13; } @@ -25196,7 +21932,7 @@ lean_object* x_18; lean_object* x_19; lean_object* x_20; x_18 = lean_ctor_get(x_13, 1); lean_inc(x_18); lean_dec(x_13); -x_19 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_19 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; x_20 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_20, 0, x_19); lean_ctor_set(x_20, 1, x_18); @@ -25209,7 +21945,7 @@ uint8_t x_21; x_21 = !lean_is_exclusive(x_13); if (x_21 == 0) { -lean_object* x_22; lean_object* x_23; uint16_t x_24; lean_object* x_25; lean_object* x_26; uint32_t x_27; uint8_t x_28; lean_object* x_29; lean_object* x_30; +lean_object* x_22; lean_object* x_23; uint16_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; uint32_t x_33; uint8_t x_34; lean_object* x_35; lean_object* x_36; x_22 = lean_ctor_get(x_13, 0); lean_dec(x_22); x_23 = lean_ctor_get(x_14, 0); @@ -25217,69 +21953,83 @@ lean_inc(x_23); lean_dec(x_14); x_24 = lean_uint16_of_nat(x_23); lean_dec(x_23); -x_25 = l_UInt16_toExprCore(x_24); -x_26 = lean_box(0); -x_27 = 0; -x_28 = 1; -x_29 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_29, 0, x_25); -lean_ctor_set(x_29, 1, x_26); -lean_ctor_set_uint32(x_29, sizeof(void*)*2, x_27); -lean_ctor_set_uint8(x_29, sizeof(void*)*2 + 4, x_28); -x_30 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_30, 0, x_29); -lean_ctor_set(x_13, 0, x_30); +x_25 = lean_uint16_to_nat(x_24); +x_26 = l_Lean_mkRawNatLit(x_25); +x_27 = l_UInt16_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847____lambda__1___closed__3; +lean_inc(x_26); +x_28 = l_Lean_Expr_app___override(x_27, x_26); +x_29 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__4; +x_30 = l_UInt16_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847____lambda__1___closed__1; +x_31 = l_Lean_mkApp3(x_29, x_30, x_26, x_28); +x_32 = lean_box(0); +x_33 = 0; +x_34 = 1; +x_35 = lean_alloc_ctor(0, 2, 5); +lean_ctor_set(x_35, 0, x_31); +lean_ctor_set(x_35, 1, x_32); +lean_ctor_set_uint32(x_35, sizeof(void*)*2, x_33); +lean_ctor_set_uint8(x_35, sizeof(void*)*2 + 4, x_34); +x_36 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_36, 0, x_35); +lean_ctor_set(x_13, 0, x_36); return x_13; } else { -lean_object* x_31; lean_object* x_32; uint16_t x_33; lean_object* x_34; lean_object* x_35; uint32_t x_36; uint8_t x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; -x_31 = lean_ctor_get(x_13, 1); -lean_inc(x_31); +lean_object* x_37; lean_object* x_38; uint16_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_object* x_47; uint32_t x_48; uint8_t x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; +x_37 = lean_ctor_get(x_13, 1); +lean_inc(x_37); lean_dec(x_13); -x_32 = lean_ctor_get(x_14, 0); -lean_inc(x_32); +x_38 = lean_ctor_get(x_14, 0); +lean_inc(x_38); lean_dec(x_14); -x_33 = lean_uint16_of_nat(x_32); -lean_dec(x_32); -x_34 = l_UInt16_toExprCore(x_33); -x_35 = lean_box(0); -x_36 = 0; -x_37 = 1; -x_38 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_38, 0, x_34); -lean_ctor_set(x_38, 1, x_35); -lean_ctor_set_uint32(x_38, sizeof(void*)*2, x_36); -lean_ctor_set_uint8(x_38, sizeof(void*)*2 + 4, x_37); -x_39 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_39, 0, x_38); -x_40 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_40, 0, x_39); -lean_ctor_set(x_40, 1, x_31); -return x_40; +x_39 = lean_uint16_of_nat(x_38); +lean_dec(x_38); +x_40 = lean_uint16_to_nat(x_39); +x_41 = l_Lean_mkRawNatLit(x_40); +x_42 = l_UInt16_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847____lambda__1___closed__3; +lean_inc(x_41); +x_43 = l_Lean_Expr_app___override(x_42, x_41); +x_44 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__4; +x_45 = l_UInt16_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847____lambda__1___closed__1; +x_46 = l_Lean_mkApp3(x_44, x_45, x_41, x_43); +x_47 = lean_box(0); +x_48 = 0; +x_49 = 1; +x_50 = lean_alloc_ctor(0, 2, 5); +lean_ctor_set(x_50, 0, x_46); +lean_ctor_set(x_50, 1, x_47); +lean_ctor_set_uint32(x_50, sizeof(void*)*2, x_48); +lean_ctor_set_uint8(x_50, sizeof(void*)*2 + 4, x_49); +x_51 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_51, 0, x_50); +x_52 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_52, 0, x_51); +lean_ctor_set(x_52, 1, x_37); +return x_52; } } } else { -uint8_t x_41; -x_41 = !lean_is_exclusive(x_13); -if (x_41 == 0) +uint8_t x_53; +x_53 = !lean_is_exclusive(x_13); +if (x_53 == 0) { return x_13; } else { -lean_object* x_42; lean_object* x_43; lean_object* x_44; -x_42 = lean_ctor_get(x_13, 0); -x_43 = lean_ctor_get(x_13, 1); -lean_inc(x_43); -lean_inc(x_42); +lean_object* x_54; lean_object* x_55; lean_object* x_56; +x_54 = lean_ctor_get(x_13, 0); +x_55 = lean_ctor_get(x_13, 1); +lean_inc(x_55); +lean_inc(x_54); lean_dec(x_13); -x_44 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_44, 0, x_42); -lean_ctor_set(x_44, 1, x_43); -return x_44; +x_56 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_56, 0, x_54); +lean_ctor_set(x_56, 1, x_55); +return x_56; } } } @@ -25312,7 +22062,7 @@ lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_13 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_13 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; x_14 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_14, 0, x_13); lean_ctor_set(x_14, 1, x_9); @@ -25323,7 +22073,6 @@ else lean_object* x_15; lean_object* x_16; x_15 = lean_box(0); x_16 = l_UInt16_reduceOfNatCore___lambda__1(x_1, x_15, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); -lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); @@ -25336,7 +22085,6 @@ _start: { lean_object* x_11; x_11 = l_UInt16_reduceOfNatCore___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_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); @@ -25344,17 +22092,17 @@ lean_dec(x_2); return x_11; } } -static lean_object* _init_l___regBuiltin_UInt16_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11663____closed__1() { +static lean_object* _init_l___regBuiltin_UInt16_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9982____closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_UInt16_fromExpr___closed__1; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__590; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__447; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt16_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11663____closed__2() { +static lean_object* _init_l___regBuiltin_UInt16_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9982____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -25366,37 +22114,37 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt16_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11663____closed__3() { +static lean_object* _init_l___regBuiltin_UInt16_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9982____closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt8_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10222____closed__3; -x_2 = l___regBuiltin_UInt16_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11663____closed__2; +x_1 = l___regBuiltin_UInt8_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8650____closed__3; +x_2 = l___regBuiltin_UInt16_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9982____closed__2; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt16_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11663____closed__4() { +static lean_object* _init_l___regBuiltin_UInt16_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9982____closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt16_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11663____closed__3; +x_1 = l___regBuiltin_UInt16_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9982____closed__3; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt16_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11663____closed__5() { +static lean_object* _init_l___regBuiltin_UInt16_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9982____closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt16_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11663____closed__4; +x_1 = l___regBuiltin_UInt16_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9982____closed__4; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt16_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11663____closed__6() { +static lean_object* _init_l___regBuiltin_UInt16_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9982____closed__6() { _start: { lean_object* x_1; @@ -25404,37 +22152,37 @@ x_1 = lean_alloc_closure((void*)(l_UInt16_reduceOfNatCore), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_UInt16_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11663_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_UInt16_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9982_(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_UInt16_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11663____closed__1; -x_3 = l___regBuiltin_UInt16_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11663____closed__5; -x_4 = l___regBuiltin_UInt16_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11663____closed__6; +x_2 = l___regBuiltin_UInt16_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9982____closed__1; +x_3 = l___regBuiltin_UInt16_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9982____closed__5; +x_4 = l___regBuiltin_UInt16_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9982____closed__6; x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); return x_5; } } -LEAN_EXPORT lean_object* l___regBuiltin_UInt16_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11665_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_UInt16_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9984_(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____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9618____closed__1; -x_3 = l___regBuiltin_UInt16_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11663____closed__1; +x_2 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8051____closed__1; +x_3 = l___regBuiltin_UInt16_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9982____closed__1; x_4 = 1; -x_5 = l___regBuiltin_UInt16_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11663____closed__6; +x_5 = l___regBuiltin_UInt16_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9982____closed__6; 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_UInt16_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11667_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_UInt16_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9986_(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____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9620____closed__1; -x_3 = l___regBuiltin_UInt16_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11663____closed__1; +x_2 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8053____closed__1; +x_3 = l___regBuiltin_UInt16_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9982____closed__1; x_4 = 1; -x_5 = l___regBuiltin_UInt16_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11663____closed__6; +x_5 = l___regBuiltin_UInt16_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9982____closed__6; x_6 = l_Lean_Meta_Simp_addSimprocBuiltinAttrCore(x_2, x_3, x_4, x_5, x_1); return x_6; } @@ -25445,6 +22193,7 @@ _start: lean_object* x_11; lean_object* x_12; x_11 = l_Lean_Expr_appArg_x21(x_1); x_12 = l_UInt16_fromExpr(x_11, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_11); if (lean_obj_tag(x_12) == 0) { lean_object* x_13; @@ -25459,7 +22208,7 @@ if (x_14 == 0) lean_object* x_15; lean_object* x_16; x_15 = lean_ctor_get(x_12, 0); lean_dec(x_15); -x_16 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_16 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; lean_ctor_set(x_12, 0, x_16); return x_12; } @@ -25469,7 +22218,7 @@ lean_object* x_17; lean_object* x_18; lean_object* x_19; x_17 = lean_ctor_get(x_12, 1); lean_inc(x_17); lean_dec(x_12); -x_18 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_18 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; x_19 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_19, 0, x_18); lean_ctor_set(x_19, 1, x_17); @@ -25488,7 +22237,7 @@ lean_dec(x_21); x_22 = lean_ctor_get(x_13, 0); lean_inc(x_22); lean_dec(x_13); -x_23 = lean_ctor_get_uint16(x_22, sizeof(void*)*1); +x_23 = lean_unbox(x_22); lean_dec(x_22); x_24 = lean_uint16_to_nat(x_23); x_25 = l_Lean_mkNatLit(x_24); @@ -25514,7 +22263,7 @@ lean_dec(x_12); x_32 = lean_ctor_get(x_13, 0); lean_inc(x_32); lean_dec(x_13); -x_33 = lean_ctor_get_uint16(x_32, sizeof(void*)*1); +x_33 = lean_unbox(x_32); lean_dec(x_32); x_34 = lean_uint16_to_nat(x_33); x_35 = l_Lean_mkNatLit(x_34); @@ -25586,7 +22335,7 @@ lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); -x_13 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_13 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; x_14 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_14, 0, x_13); lean_ctor_set(x_14, 1, x_9); @@ -25626,17 +22375,17 @@ lean_dec(x_1); return x_10; } } -static lean_object* _init_l___regBuiltin_UInt16_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11779____closed__1() { +static lean_object* _init_l___regBuiltin_UInt16_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10098____closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_UInt16_fromExpr___closed__1; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__602; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__473; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt16_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11779____closed__2() { +static lean_object* _init_l___regBuiltin_UInt16_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10098____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -25648,27 +22397,27 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt16_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11779____closed__3() { +static lean_object* _init_l___regBuiltin_UInt16_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10098____closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__67; -x_2 = l___regBuiltin_UInt16_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11779____closed__2; +x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__27; +x_2 = l___regBuiltin_UInt16_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10098____closed__2; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt16_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11779____closed__4() { +static lean_object* _init_l___regBuiltin_UInt16_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10098____closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt16_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11779____closed__3; +x_1 = l___regBuiltin_UInt16_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10098____closed__3; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt16_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11779____closed__5() { +static lean_object* _init_l___regBuiltin_UInt16_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10098____closed__5() { _start: { lean_object* x_1; @@ -25676,53 +22425,53 @@ x_1 = lean_alloc_closure((void*)(l_UInt16_reduceToNat___boxed), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_UInt16_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11779_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_UInt16_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10098_(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_UInt16_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11779____closed__1; -x_3 = l___regBuiltin_UInt16_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11779____closed__4; -x_4 = l___regBuiltin_UInt16_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11779____closed__5; +x_2 = l___regBuiltin_UInt16_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10098____closed__1; +x_3 = l___regBuiltin_UInt16_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10098____closed__4; +x_4 = l___regBuiltin_UInt16_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10098____closed__5; x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); return x_5; } } -LEAN_EXPORT lean_object* l___regBuiltin_UInt16_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11781_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_UInt16_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10100_(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____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9618____closed__1; -x_3 = l___regBuiltin_UInt16_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11779____closed__1; +x_2 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8051____closed__1; +x_3 = l___regBuiltin_UInt16_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10098____closed__1; x_4 = 1; -x_5 = l___regBuiltin_UInt16_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11779____closed__5; +x_5 = l___regBuiltin_UInt16_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10098____closed__5; 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_UInt16_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11783_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_UInt16_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10102_(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____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9620____closed__1; -x_3 = l___regBuiltin_UInt16_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11779____closed__1; +x_2 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8053____closed__1; +x_3 = l___regBuiltin_UInt16_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10098____closed__1; x_4 = 1; -x_5 = l___regBuiltin_UInt16_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11779____closed__5; +x_5 = l___regBuiltin_UInt16_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10098____closed__5; 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_UInt16_isValue____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419_(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_EXPORT lean_object* l_UInt16_isValue____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847_(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; uint8_t x_12; -x_10 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__125; +x_10 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__490; x_11 = lean_unsigned_to_nat(3u); x_12 = l_Lean_Expr_isAppOfArity(x_1, x_10, x_11); if (x_12 == 0) { lean_object* x_13; lean_object* x_14; lean_dec(x_1); -x_13 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_13 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; x_14 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_14, 0, x_13); lean_ctor_set(x_14, 1, x_9); @@ -25732,16 +22481,16 @@ else { lean_object* x_15; lean_object* x_16; x_15 = lean_box(0); -x_16 = l_UInt8_isValue____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1(x_1, x_15, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_16 = l_UInt8_isValue____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1(x_1, x_15, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); return x_16; } } } -LEAN_EXPORT lean_object* l_UInt16_isValue____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419____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_EXPORT lean_object* l_UInt16_isValue____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847____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_UInt16_isValue____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419_(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_10 = l_UInt16_isValue____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847_(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); @@ -25752,163 +22501,163 @@ lean_dec(x_2); return x_10; } } -static lean_object* _init_l___regBuiltin_UInt16_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11855____closed__1() { +static lean_object* _init_l___regBuiltin_UInt16_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__10174____closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_UInt16_fromExpr___closed__2; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__621; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__484; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt16_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11855____closed__2() { +static lean_object* _init_l___regBuiltin_UInt16_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__10174____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt16_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11855____closed__1; -x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__2; +x_1 = l___regBuiltin_UInt16_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__10174____closed__1; +x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__2; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt16_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11855____closed__3() { +static lean_object* _init_l___regBuiltin_UInt16_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__10174____closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt16_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11855____closed__2; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__18; +x_1 = l___regBuiltin_UInt16_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__10174____closed__2; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__12; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt16_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11855____closed__4() { +static lean_object* _init_l___regBuiltin_UInt16_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__10174____closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt16_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11855____closed__3; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__90; +x_1 = l___regBuiltin_UInt16_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__10174____closed__3; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__57; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt16_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11855____closed__5() { +static lean_object* _init_l___regBuiltin_UInt16_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__10174____closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt16_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11855____closed__4; -x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__6; +x_1 = l___regBuiltin_UInt16_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__10174____closed__4; +x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__6; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt16_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11855____closed__6() { +static lean_object* _init_l___regBuiltin_UInt16_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__10174____closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt16_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11855____closed__5; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__91; +x_1 = l___regBuiltin_UInt16_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__10174____closed__5; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__58; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt16_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11855____closed__7() { +static lean_object* _init_l___regBuiltin_UInt16_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__10174____closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt16_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11855____closed__6; -x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__9; +x_1 = l___regBuiltin_UInt16_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__10174____closed__6; +x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__9; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt16_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11855____closed__8() { +static lean_object* _init_l___regBuiltin_UInt16_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__10174____closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt16_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11855____closed__7; -x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__11; +x_1 = l___regBuiltin_UInt16_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__10174____closed__7; +x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__11; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt16_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11855____closed__9() { +static lean_object* _init_l___regBuiltin_UInt16_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__10174____closed__9() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt16_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11855____closed__8; -x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__13; +x_1 = l___regBuiltin_UInt16_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__10174____closed__8; +x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__13; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt16_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11855____closed__10() { +static lean_object* _init_l___regBuiltin_UInt16_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__10174____closed__10() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt16_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11855____closed__9; -x_2 = lean_unsigned_to_nat(10419u); +x_1 = l___regBuiltin_UInt16_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__10174____closed__9; +x_2 = lean_unsigned_to_nat(8847u); x_3 = l_Lean_Name_num___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt16_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11855____closed__11() { +static lean_object* _init_l___regBuiltin_UInt16_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__10174____closed__11() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10414____closed__12; -x_2 = l___regBuiltin_UInt16_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11057____closed__2; +x_1 = l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8842____closed__12; +x_2 = l___regBuiltin_UInt16_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9381____closed__2; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt16_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11855____closed__12() { +static lean_object* _init_l___regBuiltin_UInt16_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__10174____closed__12() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt16_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11855____closed__11; +x_1 = l___regBuiltin_UInt16_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__10174____closed__11; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt16_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11855____closed__13() { +static lean_object* _init_l___regBuiltin_UInt16_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__10174____closed__13() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt16_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11855____closed__12; +x_1 = l___regBuiltin_UInt16_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__10174____closed__12; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt16_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11855____closed__14() { +static lean_object* _init_l___regBuiltin_UInt16_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__10174____closed__14() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_UInt16_isValue____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419____boxed), 9, 0); +x_1 = lean_alloc_closure((void*)(l_UInt16_isValue____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847____boxed), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_UInt16_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11855_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_UInt16_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__10174_(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_UInt16_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11855____closed__10; -x_3 = l___regBuiltin_UInt16_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11855____closed__13; -x_4 = l___regBuiltin_UInt16_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11855____closed__14; +x_2 = l___regBuiltin_UInt16_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__10174____closed__10; +x_3 = l___regBuiltin_UInt16_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__10174____closed__13; +x_4 = l___regBuiltin_UInt16_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__10174____closed__14; x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); return x_5; } } -LEAN_EXPORT lean_object* l___regBuiltin_UInt16_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11857_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_UInt16_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__10176_(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____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9620____closed__1; -x_3 = l___regBuiltin_UInt16_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11855____closed__10; +x_2 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8053____closed__1; +x_3 = l___regBuiltin_UInt16_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__10174____closed__10; x_4 = 1; -x_5 = l___regBuiltin_UInt16_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11855____closed__14; +x_5 = l___regBuiltin_UInt16_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__10174____closed__14; x_6 = l_Lean_Meta_Simp_addSimprocBuiltinAttrCore(x_2, x_3, x_4, x_5, x_1); return x_6; } @@ -25934,378 +22683,138 @@ return x_3; LEAN_EXPORT lean_object* l_UInt32_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; uint8_t x_12; lean_object* x_13; lean_object* x_14; -x_10 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__125; -x_11 = lean_unsigned_to_nat(3u); -x_12 = l_Lean_Expr_isAppOfArity(x_1, x_10, x_11); -if (x_12 == 0) +lean_object* x_10; lean_object* x_11; +x_10 = l_UInt32_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_87; -x_87 = lean_box(0); -x_13 = x_87; -x_14 = x_9; -goto block_86; -} -else +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_88; -x_88 = l_UInt8_fromExpr___closed__3; -x_13 = x_88; -x_14 = x_9; -goto block_86; -} -block_86: +uint8_t x_13; +x_13 = !lean_is_exclusive(x_11); +if (x_13 == 0) { -if (lean_obj_tag(x_13) == 0) -{ -lean_object* x_15; lean_object* x_16; -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_1); +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); -x_16 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_16, 0, x_15); -lean_ctor_set(x_16, 1, x_14); -return x_16; +lean_ctor_set(x_11, 0, x_15); +return x_11; } else { -lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; -lean_dec(x_13); -x_17 = l_Lean_Expr_appFn_x21(x_1); -lean_inc(x_17); -x_18 = l_Lean_Expr_appFn_x21(x_17); -x_19 = l_Lean_Expr_appArg_x21(x_18); -lean_inc(x_8); -lean_inc(x_7); -lean_inc(x_6); -lean_inc(x_5); -x_20 = lean_whnf(x_19, x_5, x_6, x_7, x_8, x_14); -if (lean_obj_tag(x_20) == 0) +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_21; -x_21 = !lean_is_exclusive(x_20); -if (x_21 == 0) +uint8_t x_19; +x_19 = !lean_is_exclusive(x_12); +if (x_19 == 0) { -lean_object* x_22; lean_object* x_23; lean_object* x_24; uint8_t x_25; -x_22 = lean_ctor_get(x_20, 0); -x_23 = lean_ctor_get(x_20, 1); -x_24 = l_UInt32_fromExpr___closed__2; -x_25 = l_Lean_Expr_isConstOf(x_22, x_24); +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; uint32_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); -if (x_25 == 0) -{ -lean_object* x_26; -lean_dec(x_18); -lean_dec(x_17); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -x_26 = lean_box(0); -lean_ctor_set(x_20, 0, x_26); -return x_20; +x_23 = lean_ctor_get(x_21, 0); +lean_inc(x_23); +lean_dec(x_21); +x_24 = lean_uint32_of_nat(x_23); +lean_dec(x_23); +x_25 = lean_box_uint32(x_24); +lean_ctor_set(x_12, 0, x_25); +return x_11; } else { -lean_object* x_27; lean_object* x_28; -lean_free_object(x_20); -x_27 = l_Lean_Expr_appArg_x21(x_17); -lean_dec(x_17); -x_28 = l_Nat_fromExpr_x3f(x_27, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_23); -lean_dec(x_5); -if (lean_obj_tag(x_28) == 0) -{ -lean_object* x_29; -x_29 = lean_ctor_get(x_28, 0); -lean_inc(x_29); -if (lean_obj_tag(x_29) == 0) -{ -uint8_t x_30; -lean_dec(x_18); -x_30 = !lean_is_exclusive(x_28); -if (x_30 == 0) -{ -lean_object* x_31; lean_object* x_32; -x_31 = lean_ctor_get(x_28, 0); -lean_dec(x_31); -x_32 = lean_box(0); -lean_ctor_set(x_28, 0, x_32); -return x_28; +lean_object* x_26; lean_object* x_27; lean_object* x_28; uint32_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_uint32_of_nat(x_28); +lean_dec(x_28); +x_30 = lean_box_uint32(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_33; lean_object* x_34; lean_object* x_35; -x_33 = lean_ctor_get(x_28, 1); +lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; uint32_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); -lean_dec(x_28); -x_34 = lean_box(0); -x_35 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_35, 0, x_34); -lean_ctor_set(x_35, 1, x_33); -return x_35; +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_uint32_of_nat(x_35); +lean_dec(x_35); +x_37 = lean_box_uint32(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_36; -x_36 = !lean_is_exclusive(x_28); -if (x_36 == 0) +uint8_t x_40; +x_40 = !lean_is_exclusive(x_11); +if (x_40 == 0) { -lean_object* x_37; uint8_t x_38; -x_37 = lean_ctor_get(x_28, 0); -lean_dec(x_37); -x_38 = !lean_is_exclusive(x_29); -if (x_38 == 0) -{ -lean_object* x_39; uint32_t x_40; lean_object* x_41; -x_39 = lean_ctor_get(x_29, 0); -x_40 = lean_uint32_of_nat(x_39); -lean_dec(x_39); -x_41 = lean_alloc_ctor(0, 1, 4); -lean_ctor_set(x_41, 0, x_18); -lean_ctor_set_uint32(x_41, sizeof(void*)*1, x_40); -lean_ctor_set(x_29, 0, x_41); -return x_28; +return x_11; } else { -lean_object* x_42; uint32_t x_43; lean_object* x_44; lean_object* x_45; -x_42 = lean_ctor_get(x_29, 0); +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_dec(x_29); -x_43 = lean_uint32_of_nat(x_42); -lean_dec(x_42); -x_44 = lean_alloc_ctor(0, 1, 4); -lean_ctor_set(x_44, 0, x_18); -lean_ctor_set_uint32(x_44, sizeof(void*)*1, x_43); -x_45 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_45, 0, x_44); -lean_ctor_set(x_28, 0, x_45); -return x_28; -} -} -else -{ -lean_object* x_46; lean_object* x_47; lean_object* x_48; uint32_t x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; -x_46 = lean_ctor_get(x_28, 1); -lean_inc(x_46); -lean_dec(x_28); -x_47 = lean_ctor_get(x_29, 0); -lean_inc(x_47); -if (lean_is_exclusive(x_29)) { - lean_ctor_release(x_29, 0); - x_48 = x_29; -} else { - lean_dec_ref(x_29); - x_48 = lean_box(0); -} -x_49 = lean_uint32_of_nat(x_47); -lean_dec(x_47); -x_50 = lean_alloc_ctor(0, 1, 4); -lean_ctor_set(x_50, 0, x_18); -lean_ctor_set_uint32(x_50, sizeof(void*)*1, x_49); -if (lean_is_scalar(x_48)) { - x_51 = lean_alloc_ctor(1, 1, 0); -} else { - x_51 = x_48; -} -lean_ctor_set(x_51, 0, x_50); -x_52 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_52, 0, x_51); -lean_ctor_set(x_52, 1, x_46); -return x_52; -} -} -} -else -{ -uint8_t x_53; -lean_dec(x_18); -x_53 = !lean_is_exclusive(x_28); -if (x_53 == 0) -{ -return x_28; -} -else -{ -lean_object* x_54; lean_object* x_55; lean_object* x_56; -x_54 = lean_ctor_get(x_28, 0); -x_55 = lean_ctor_get(x_28, 1); -lean_inc(x_55); -lean_inc(x_54); -lean_dec(x_28); -x_56 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_56, 0, x_54); -lean_ctor_set(x_56, 1, x_55); -return x_56; -} -} -} -} -else -{ -lean_object* x_57; lean_object* x_58; lean_object* x_59; uint8_t x_60; -x_57 = lean_ctor_get(x_20, 0); -x_58 = lean_ctor_get(x_20, 1); -lean_inc(x_58); -lean_inc(x_57); -lean_dec(x_20); -x_59 = l_UInt32_fromExpr___closed__2; -x_60 = l_Lean_Expr_isConstOf(x_57, x_59); -lean_dec(x_57); -if (x_60 == 0) -{ -lean_object* x_61; lean_object* x_62; -lean_dec(x_18); -lean_dec(x_17); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -x_61 = lean_box(0); -x_62 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_62, 0, x_61); -lean_ctor_set(x_62, 1, x_58); -return x_62; -} -else -{ -lean_object* x_63; lean_object* x_64; -x_63 = l_Lean_Expr_appArg_x21(x_17); -lean_dec(x_17); -x_64 = l_Nat_fromExpr_x3f(x_63, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_58); -lean_dec(x_5); -if (lean_obj_tag(x_64) == 0) -{ -lean_object* x_65; -x_65 = lean_ctor_get(x_64, 0); -lean_inc(x_65); -if (lean_obj_tag(x_65) == 0) -{ -lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; -lean_dec(x_18); -x_66 = lean_ctor_get(x_64, 1); -lean_inc(x_66); -if (lean_is_exclusive(x_64)) { - lean_ctor_release(x_64, 0); - lean_ctor_release(x_64, 1); - x_67 = x_64; -} else { - lean_dec_ref(x_64); - x_67 = lean_box(0); -} -x_68 = lean_box(0); -if (lean_is_scalar(x_67)) { - x_69 = lean_alloc_ctor(0, 2, 0); -} else { - x_69 = x_67; -} -lean_ctor_set(x_69, 0, x_68); -lean_ctor_set(x_69, 1, x_66); -return x_69; -} -else -{ -lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; uint32_t x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; -x_70 = lean_ctor_get(x_64, 1); -lean_inc(x_70); -if (lean_is_exclusive(x_64)) { - lean_ctor_release(x_64, 0); - lean_ctor_release(x_64, 1); - x_71 = x_64; -} else { - lean_dec_ref(x_64); - x_71 = lean_box(0); -} -x_72 = lean_ctor_get(x_65, 0); -lean_inc(x_72); -if (lean_is_exclusive(x_65)) { - lean_ctor_release(x_65, 0); - x_73 = x_65; -} else { - lean_dec_ref(x_65); - x_73 = lean_box(0); -} -x_74 = lean_uint32_of_nat(x_72); -lean_dec(x_72); -x_75 = lean_alloc_ctor(0, 1, 4); -lean_ctor_set(x_75, 0, x_18); -lean_ctor_set_uint32(x_75, sizeof(void*)*1, x_74); -if (lean_is_scalar(x_73)) { - x_76 = lean_alloc_ctor(1, 1, 0); -} else { - x_76 = x_73; -} -lean_ctor_set(x_76, 0, x_75); -if (lean_is_scalar(x_71)) { - x_77 = lean_alloc_ctor(0, 2, 0); -} else { - x_77 = x_71; -} -lean_ctor_set(x_77, 0, x_76); -lean_ctor_set(x_77, 1, x_70); -return x_77; -} -} -else -{ -lean_object* x_78; lean_object* x_79; lean_object* x_80; lean_object* x_81; -lean_dec(x_18); -x_78 = lean_ctor_get(x_64, 0); -lean_inc(x_78); -x_79 = lean_ctor_get(x_64, 1); -lean_inc(x_79); -if (lean_is_exclusive(x_64)) { - lean_ctor_release(x_64, 0); - lean_ctor_release(x_64, 1); - x_80 = x_64; -} else { - lean_dec_ref(x_64); - x_80 = lean_box(0); -} -if (lean_is_scalar(x_80)) { - x_81 = lean_alloc_ctor(1, 2, 0); -} else { - x_81 = x_80; -} -lean_ctor_set(x_81, 0, x_78); -lean_ctor_set(x_81, 1, x_79); -return x_81; -} -} -} -} -else -{ -uint8_t x_82; -lean_dec(x_18); -lean_dec(x_17); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -x_82 = !lean_is_exclusive(x_20); -if (x_82 == 0) -{ -return x_20; -} -else -{ -lean_object* x_83; lean_object* x_84; lean_object* x_85; -x_83 = lean_ctor_get(x_20, 0); -x_84 = lean_ctor_get(x_20, 1); -lean_inc(x_84); -lean_inc(x_83); -lean_dec(x_20); -x_85 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_85, 0, x_83); -lean_ctor_set(x_85, 1, x_84); -return x_85; -} -} +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; } } } @@ -26318,10 +22827,11 @@ x_10 = l_UInt32_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); +lean_dec(x_1); return x_10; } } -static lean_object* _init_l_UInt32_toExprCore___closed__1() { +static lean_object* _init_l_UInt32_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179____lambda__1___closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -26331,79 +22841,27 @@ x_3 = l_Lean_Expr_const___override(x_2, x_1); return x_3; } } -static lean_object* _init_l_UInt32_toExprCore___closed__2() { +static lean_object* _init_l_UInt32_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179____lambda__1___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_UInt32_fromExpr___closed__1; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__253; +x_2 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__6; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } -static lean_object* _init_l_UInt32_toExprCore___closed__3() { +static lean_object* _init_l_UInt32_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179____lambda__1___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_UInt32_toExprCore___closed__2; +x_2 = l_UInt32_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179____lambda__1___closed__2; x_3 = l_Lean_Expr_const___override(x_2, x_1); return x_3; } } -LEAN_EXPORT lean_object* l_UInt32_toExprCore(uint32_t x_1) { -_start: -{ -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; -x_2 = lean_uint32_to_nat(x_1); -x_3 = l_Lean_mkRawNatLit(x_2); -x_4 = l_UInt32_toExprCore___closed__3; -lean_inc(x_3); -x_5 = l_Lean_Expr_app___override(x_4, x_3); -x_6 = l_UInt8_toExprCore___closed__2; -x_7 = l_UInt32_toExprCore___closed__1; -x_8 = l_Lean_mkApp3(x_6, x_7, x_3, x_5); -return x_8; -} -} -LEAN_EXPORT lean_object* l_UInt32_toExprCore___boxed(lean_object* x_1) { -_start: -{ -uint32_t x_2; lean_object* x_3; -x_2 = lean_unbox_uint32(x_1); -lean_dec(x_1); -x_3 = l_UInt32_toExprCore(x_2); -return x_3; -} -} -static lean_object* _init_l_UInt32_toExpr___closed__1() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l_UInt32_toExprCore___closed__2; -x_3 = l_Lean_Expr_const___override(x_2, x_1); -return x_3; -} -} -LEAN_EXPORT lean_object* l_UInt32_toExpr(lean_object* x_1) { -_start: -{ -uint32_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; -x_2 = lean_ctor_get_uint32(x_1, sizeof(void*)*1); -x_3 = lean_uint32_to_nat(x_2); -x_4 = l_Lean_mkRawNatLit(x_3); -x_5 = lean_ctor_get(x_1, 0); -lean_inc(x_5); -lean_dec(x_1); -x_6 = l_UInt32_toExpr___closed__1; -lean_inc(x_4); -x_7 = l_Lean_Expr_app___override(x_6, x_4); -x_8 = l_Lean_mkAppB(x_5, x_4, x_7); -return x_8; -} -} -LEAN_EXPORT lean_object* l_UInt32_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860____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, lean_object* x_11) { +LEAN_EXPORT lean_object* l_UInt32_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179____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, lean_object* x_11) { _start: { lean_object* x_12; lean_object* x_13; lean_object* x_14; @@ -26416,6 +22874,7 @@ lean_inc(x_9); lean_inc(x_8); lean_inc(x_7); x_14 = l_UInt32_fromExpr(x_13, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_13); if (lean_obj_tag(x_14) == 0) { lean_object* x_15; @@ -26436,7 +22895,7 @@ if (x_16 == 0) lean_object* x_17; lean_object* x_18; x_17 = lean_ctor_get(x_14, 0); lean_dec(x_17); -x_18 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_18 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; lean_ctor_set(x_14, 0, x_18); return x_14; } @@ -26446,7 +22905,7 @@ lean_object* x_19; lean_object* x_20; lean_object* x_21; x_19 = lean_ctor_get(x_14, 1); lean_inc(x_19); lean_dec(x_14); -x_20 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_20 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; x_21 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_21, 0, x_20); lean_ctor_set(x_21, 1, x_19); @@ -26465,6 +22924,7 @@ lean_dec(x_15); x_24 = l_Lean_Expr_appArg_x21(x_1); lean_dec(x_1); x_25 = l_UInt32_fromExpr(x_24, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_22); +lean_dec(x_24); if (lean_obj_tag(x_25) == 0) { lean_object* x_26; @@ -26481,7 +22941,7 @@ if (x_27 == 0) lean_object* x_28; lean_object* x_29; x_28 = lean_ctor_get(x_25, 0); lean_dec(x_28); -x_29 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_29 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; lean_ctor_set(x_25, 0, x_29); return x_25; } @@ -26491,7 +22951,7 @@ lean_object* x_30; lean_object* x_31; lean_object* x_32; x_30 = lean_ctor_get(x_25, 1); lean_inc(x_30); lean_dec(x_25); -x_31 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_31 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; x_32 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_32, 0, x_31); lean_ctor_set(x_32, 1, x_30); @@ -26504,179 +22964,130 @@ uint8_t x_33; x_33 = !lean_is_exclusive(x_25); if (x_33 == 0) { -lean_object* x_34; lean_object* x_35; uint8_t x_36; +lean_object* x_34; lean_object* x_35; lean_object* x_36; uint32_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; uint32_t x_46; uint8_t x_47; lean_object* x_48; lean_object* x_49; x_34 = lean_ctor_get(x_25, 0); lean_dec(x_34); x_35 = lean_ctor_get(x_26, 0); lean_inc(x_35); lean_dec(x_26); -x_36 = !lean_is_exclusive(x_23); -if (x_36 == 0) -{ -uint32_t x_37; uint32_t x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; uint32_t x_42; lean_object* x_43; lean_object* x_44; uint32_t x_45; uint8_t x_46; lean_object* x_47; lean_object* x_48; -x_37 = lean_ctor_get_uint32(x_23, sizeof(void*)*1); -x_38 = lean_ctor_get_uint32(x_35, sizeof(void*)*1); -lean_dec(x_35); -x_39 = lean_box_uint32(x_37); -x_40 = lean_box_uint32(x_38); -x_41 = lean_apply_2(x_2, x_39, x_40); -x_42 = lean_unbox_uint32(x_41); -lean_dec(x_41); -lean_ctor_set_uint32(x_23, sizeof(void*)*1, x_42); -x_43 = l_UInt32_toExpr(x_23); -x_44 = lean_box(0); -x_45 = 0; -x_46 = 1; -x_47 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_47, 0, x_43); -lean_ctor_set(x_47, 1, x_44); -lean_ctor_set_uint32(x_47, sizeof(void*)*2, x_45); -lean_ctor_set_uint8(x_47, sizeof(void*)*2 + 4, x_46); -x_48 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_48, 0, x_47); -lean_ctor_set(x_25, 0, x_48); +x_36 = lean_apply_2(x_2, x_23, x_35); +x_37 = lean_unbox_uint32(x_36); +lean_dec(x_36); +x_38 = lean_uint32_to_nat(x_37); +x_39 = l_Lean_mkRawNatLit(x_38); +x_40 = l_UInt32_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179____lambda__1___closed__3; +lean_inc(x_39); +x_41 = l_Lean_Expr_app___override(x_40, x_39); +x_42 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__4; +x_43 = l_UInt32_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179____lambda__1___closed__1; +x_44 = l_Lean_mkApp3(x_42, x_43, x_39, x_41); +x_45 = lean_box(0); +x_46 = 0; +x_47 = 1; +x_48 = lean_alloc_ctor(0, 2, 5); +lean_ctor_set(x_48, 0, x_44); +lean_ctor_set(x_48, 1, x_45); +lean_ctor_set_uint32(x_48, sizeof(void*)*2, x_46); +lean_ctor_set_uint8(x_48, sizeof(void*)*2 + 4, x_47); +x_49 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_49, 0, x_48); +lean_ctor_set(x_25, 0, x_49); return x_25; } else { -lean_object* x_49; uint32_t x_50; uint32_t x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; uint32_t x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; uint32_t x_59; uint8_t x_60; lean_object* x_61; lean_object* x_62; -x_49 = lean_ctor_get(x_23, 0); -x_50 = lean_ctor_get_uint32(x_23, sizeof(void*)*1); -lean_inc(x_49); -lean_dec(x_23); -x_51 = lean_ctor_get_uint32(x_35, sizeof(void*)*1); -lean_dec(x_35); -x_52 = lean_box_uint32(x_50); -x_53 = lean_box_uint32(x_51); -x_54 = lean_apply_2(x_2, x_52, x_53); -x_55 = lean_unbox_uint32(x_54); -lean_dec(x_54); -x_56 = lean_alloc_ctor(0, 1, 4); -lean_ctor_set(x_56, 0, x_49); -lean_ctor_set_uint32(x_56, sizeof(void*)*1, x_55); -x_57 = l_UInt32_toExpr(x_56); -x_58 = lean_box(0); -x_59 = 0; -x_60 = 1; -x_61 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_61, 0, x_57); -lean_ctor_set(x_61, 1, x_58); -lean_ctor_set_uint32(x_61, sizeof(void*)*2, x_59); -lean_ctor_set_uint8(x_61, sizeof(void*)*2 + 4, x_60); -x_62 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_62, 0, x_61); -lean_ctor_set(x_25, 0, x_62); -return x_25; -} -} -else -{ -lean_object* x_63; lean_object* x_64; lean_object* x_65; uint32_t x_66; lean_object* x_67; uint32_t x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; uint32_t x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; uint32_t x_76; uint8_t x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; -x_63 = lean_ctor_get(x_25, 1); -lean_inc(x_63); +lean_object* x_50; lean_object* x_51; lean_object* x_52; uint32_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; lean_object* x_60; lean_object* x_61; uint32_t x_62; uint8_t x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; +x_50 = lean_ctor_get(x_25, 1); +lean_inc(x_50); lean_dec(x_25); -x_64 = lean_ctor_get(x_26, 0); -lean_inc(x_64); +x_51 = lean_ctor_get(x_26, 0); +lean_inc(x_51); lean_dec(x_26); -x_65 = lean_ctor_get(x_23, 0); -lean_inc(x_65); -x_66 = lean_ctor_get_uint32(x_23, sizeof(void*)*1); -if (lean_is_exclusive(x_23)) { - lean_ctor_release(x_23, 0); - x_67 = x_23; -} else { - lean_dec_ref(x_23); - x_67 = lean_box(0); -} -x_68 = lean_ctor_get_uint32(x_64, sizeof(void*)*1); -lean_dec(x_64); -x_69 = lean_box_uint32(x_66); -x_70 = lean_box_uint32(x_68); -x_71 = lean_apply_2(x_2, x_69, x_70); -x_72 = lean_unbox_uint32(x_71); -lean_dec(x_71); -if (lean_is_scalar(x_67)) { - x_73 = lean_alloc_ctor(0, 1, 4); -} else { - x_73 = x_67; -} -lean_ctor_set(x_73, 0, x_65); -lean_ctor_set_uint32(x_73, sizeof(void*)*1, x_72); -x_74 = l_UInt32_toExpr(x_73); -x_75 = lean_box(0); -x_76 = 0; -x_77 = 1; -x_78 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_78, 0, x_74); -lean_ctor_set(x_78, 1, x_75); -lean_ctor_set_uint32(x_78, sizeof(void*)*2, x_76); -lean_ctor_set_uint8(x_78, sizeof(void*)*2 + 4, x_77); -x_79 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_79, 0, 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_63); -return x_80; +x_52 = lean_apply_2(x_2, x_23, x_51); +x_53 = lean_unbox_uint32(x_52); +lean_dec(x_52); +x_54 = lean_uint32_to_nat(x_53); +x_55 = l_Lean_mkRawNatLit(x_54); +x_56 = l_UInt32_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179____lambda__1___closed__3; +lean_inc(x_55); +x_57 = l_Lean_Expr_app___override(x_56, x_55); +x_58 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__4; +x_59 = l_UInt32_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179____lambda__1___closed__1; +x_60 = l_Lean_mkApp3(x_58, x_59, x_55, x_57); +x_61 = lean_box(0); +x_62 = 0; +x_63 = 1; +x_64 = lean_alloc_ctor(0, 2, 5); +lean_ctor_set(x_64, 0, x_60); +lean_ctor_set(x_64, 1, x_61); +lean_ctor_set_uint32(x_64, sizeof(void*)*2, x_62); +lean_ctor_set_uint8(x_64, sizeof(void*)*2 + 4, x_63); +x_65 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_65, 0, x_64); +x_66 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_66, 0, x_65); +lean_ctor_set(x_66, 1, x_50); +return x_66; } } } else { -uint8_t x_81; +uint8_t x_67; lean_dec(x_23); lean_dec(x_2); -x_81 = !lean_is_exclusive(x_25); -if (x_81 == 0) +x_67 = !lean_is_exclusive(x_25); +if (x_67 == 0) { return x_25; } else { -lean_object* x_82; lean_object* x_83; lean_object* x_84; -x_82 = lean_ctor_get(x_25, 0); -x_83 = lean_ctor_get(x_25, 1); -lean_inc(x_83); -lean_inc(x_82); +lean_object* x_68; lean_object* x_69; lean_object* x_70; +x_68 = lean_ctor_get(x_25, 0); +x_69 = lean_ctor_get(x_25, 1); +lean_inc(x_69); +lean_inc(x_68); lean_dec(x_25); -x_84 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_84, 0, x_82); -lean_ctor_set(x_84, 1, x_83); -return x_84; +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 { -uint8_t x_85; +uint8_t x_71; lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); lean_dec(x_7); lean_dec(x_2); lean_dec(x_1); -x_85 = !lean_is_exclusive(x_14); -if (x_85 == 0) +x_71 = !lean_is_exclusive(x_14); +if (x_71 == 0) { return x_14; } else { -lean_object* x_86; lean_object* x_87; lean_object* x_88; -x_86 = lean_ctor_get(x_14, 0); -x_87 = lean_ctor_get(x_14, 1); -lean_inc(x_87); -lean_inc(x_86); +lean_object* x_72; lean_object* x_73; lean_object* x_74; +x_72 = lean_ctor_get(x_14, 0); +x_73 = lean_ctor_get(x_14, 1); +lean_inc(x_73); +lean_inc(x_72); lean_dec(x_14); -x_88 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_88, 0, x_86); -lean_ctor_set(x_88, 1, x_87); -return x_88; +x_74 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_74, 0, x_72); +lean_ctor_set(x_74, 1, x_73); +return x_74; } } } } -LEAN_EXPORT lean_object* l_UInt32_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860_(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_EXPORT lean_object* l_UInt32_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179_(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: { uint8_t x_13; @@ -26694,7 +23105,7 @@ lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); -x_14 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_14 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____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_12); @@ -26704,7 +23115,7 @@ else { lean_object* x_16; lean_object* x_17; x_16 = lean_box(0); -x_17 = l_UInt32_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860____lambda__1(x_4, x_3, x_16, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +x_17 = l_UInt32_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179____lambda__1(x_4, x_3, x_16, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); @@ -26712,11 +23123,11 @@ return x_17; } } } -LEAN_EXPORT lean_object* l_UInt32_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860____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, lean_object* x_11) { +LEAN_EXPORT lean_object* l_UInt32_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179____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, lean_object* x_11) { _start: { lean_object* x_12; -x_12 = l_UInt32_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860____lambda__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +x_12 = l_UInt32_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179____lambda__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); @@ -26724,7 +23135,7 @@ lean_dec(x_3); return x_12; } } -LEAN_EXPORT lean_object* l_UInt32_reduceBinPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860____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, lean_object* x_11) { +LEAN_EXPORT lean_object* l_UInt32_reduceBinPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179____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, lean_object* x_11) { _start: { lean_object* x_12; lean_object* x_13; lean_object* x_14; @@ -26737,6 +23148,7 @@ lean_inc(x_9); lean_inc(x_8); lean_inc(x_7); x_14 = l_UInt32_fromExpr(x_13, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_13); if (lean_obj_tag(x_14) == 0) { lean_object* x_15; @@ -26757,7 +23169,7 @@ if (x_16 == 0) lean_object* x_17; lean_object* x_18; x_17 = lean_ctor_get(x_14, 0); lean_dec(x_17); -x_18 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_18 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; lean_ctor_set(x_14, 0, x_18); return x_14; } @@ -26767,7 +23179,7 @@ lean_object* x_19; lean_object* x_20; lean_object* x_21; x_19 = lean_ctor_get(x_14, 1); lean_inc(x_19); lean_dec(x_14); -x_20 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_20 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; x_21 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_21, 0, x_20); lean_ctor_set(x_21, 1, x_19); @@ -26789,6 +23201,7 @@ lean_inc(x_9); lean_inc(x_8); lean_inc(x_7); x_25 = l_UInt32_fromExpr(x_24, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_22); +lean_dec(x_24); if (lean_obj_tag(x_25) == 0) { lean_object* x_26; @@ -26810,7 +23223,7 @@ if (x_27 == 0) lean_object* x_28; lean_object* x_29; x_28 = lean_ctor_get(x_25, 0); lean_dec(x_28); -x_29 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_29 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; lean_ctor_set(x_25, 0, x_29); return x_25; } @@ -26820,7 +23233,7 @@ lean_object* x_30; lean_object* x_31; lean_object* x_32; x_30 = lean_ctor_get(x_25, 1); lean_inc(x_30); lean_dec(x_25); -x_31 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_31 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; x_32 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_32, 0, x_31); lean_ctor_set(x_32, 1, x_30); @@ -26829,29 +23242,23 @@ return x_32; } else { -lean_object* x_33; lean_object* x_34; uint32_t x_35; uint32_t x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; uint8_t x_40; lean_object* x_41; +lean_object* x_33; lean_object* x_34; lean_object* x_35; uint8_t x_36; lean_object* x_37; x_33 = lean_ctor_get(x_25, 1); lean_inc(x_33); lean_dec(x_25); x_34 = lean_ctor_get(x_26, 0); lean_inc(x_34); lean_dec(x_26); -x_35 = lean_ctor_get_uint32(x_23, sizeof(void*)*1); -lean_dec(x_23); -x_36 = lean_ctor_get_uint32(x_34, sizeof(void*)*1); -lean_dec(x_34); -x_37 = lean_box_uint32(x_35); -x_38 = lean_box_uint32(x_36); -x_39 = lean_apply_2(x_2, x_37, x_38); -x_40 = lean_unbox(x_39); -lean_dec(x_39); -x_41 = l_Lean_Meta_Simp_evalPropStep(x_1, x_40, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_33); -return x_41; +x_35 = lean_apply_2(x_2, x_23, x_34); +x_36 = lean_unbox(x_35); +lean_dec(x_35); +x_37 = l_Lean_Meta_Simp_evalPropStep(x_1, x_36, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_33); +return x_37; } } else { -uint8_t x_42; +uint8_t x_38; lean_dec(x_23); lean_dec(x_10); lean_dec(x_9); @@ -26859,19 +23266,49 @@ lean_dec(x_8); lean_dec(x_7); lean_dec(x_2); lean_dec(x_1); -x_42 = !lean_is_exclusive(x_25); -if (x_42 == 0) +x_38 = !lean_is_exclusive(x_25); +if (x_38 == 0) { return x_25; } else { +lean_object* x_39; lean_object* x_40; lean_object* x_41; +x_39 = lean_ctor_get(x_25, 0); +x_40 = lean_ctor_get(x_25, 1); +lean_inc(x_40); +lean_inc(x_39); +lean_dec(x_25); +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; +} +} +} +} +else +{ +uint8_t x_42; +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_2); +lean_dec(x_1); +x_42 = !lean_is_exclusive(x_14); +if (x_42 == 0) +{ +return x_14; +} +else +{ lean_object* x_43; lean_object* x_44; lean_object* x_45; -x_43 = lean_ctor_get(x_25, 0); -x_44 = lean_ctor_get(x_25, 1); +x_43 = lean_ctor_get(x_14, 0); +x_44 = lean_ctor_get(x_14, 1); lean_inc(x_44); lean_inc(x_43); -lean_dec(x_25); +lean_dec(x_14); x_45 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_45, 0, x_43); lean_ctor_set(x_45, 1, x_44); @@ -26880,37 +23317,7 @@ return x_45; } } } -else -{ -uint8_t x_46; -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_2); -lean_dec(x_1); -x_46 = !lean_is_exclusive(x_14); -if (x_46 == 0) -{ -return x_14; -} -else -{ -lean_object* x_47; lean_object* x_48; lean_object* x_49; -x_47 = lean_ctor_get(x_14, 0); -x_48 = lean_ctor_get(x_14, 1); -lean_inc(x_48); -lean_inc(x_47); -lean_dec(x_14); -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_EXPORT lean_object* l_UInt32_reduceBinPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860_(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_EXPORT lean_object* l_UInt32_reduceBinPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179_(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: { uint8_t x_13; @@ -26928,7 +23335,7 @@ lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); -x_14 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_14 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____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_12); @@ -26938,7 +23345,7 @@ else { lean_object* x_16; lean_object* x_17; x_16 = lean_box(0); -x_17 = l_UInt32_reduceBinPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860____lambda__1(x_4, x_3, x_16, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +x_17 = l_UInt32_reduceBinPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179____lambda__1(x_4, x_3, x_16, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); @@ -26946,11 +23353,11 @@ return x_17; } } } -LEAN_EXPORT lean_object* l_UInt32_reduceBinPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860____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, lean_object* x_11) { +LEAN_EXPORT lean_object* l_UInt32_reduceBinPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179____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, lean_object* x_11) { _start: { lean_object* x_12; -x_12 = l_UInt32_reduceBinPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860____lambda__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +x_12 = l_UInt32_reduceBinPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179____lambda__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); @@ -26958,7 +23365,7 @@ lean_dec(x_3); return x_12; } } -LEAN_EXPORT lean_object* l_UInt32_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860____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, lean_object* x_11) { +LEAN_EXPORT lean_object* l_UInt32_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179____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, lean_object* x_11) { _start: { lean_object* x_12; lean_object* x_13; lean_object* x_14; @@ -26971,6 +23378,7 @@ lean_inc(x_9); lean_inc(x_8); lean_inc(x_7); x_14 = l_UInt32_fromExpr(x_13, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_13); if (lean_obj_tag(x_14) == 0) { lean_object* x_15; @@ -26991,7 +23399,7 @@ if (x_16 == 0) lean_object* x_17; lean_object* x_18; x_17 = lean_ctor_get(x_14, 0); lean_dec(x_17); -x_18 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_18 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; lean_ctor_set(x_14, 0, x_18); return x_14; } @@ -27001,7 +23409,7 @@ lean_object* x_19; lean_object* x_20; lean_object* x_21; x_19 = lean_ctor_get(x_14, 1); lean_inc(x_19); lean_dec(x_14); -x_20 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_20 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; x_21 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_21, 0, x_20); lean_ctor_set(x_21, 1, x_19); @@ -27020,6 +23428,7 @@ lean_dec(x_15); x_24 = l_Lean_Expr_appArg_x21(x_1); lean_dec(x_1); x_25 = l_UInt32_fromExpr(x_24, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_22); +lean_dec(x_24); if (lean_obj_tag(x_25) == 0) { lean_object* x_26; @@ -27036,7 +23445,7 @@ if (x_27 == 0) lean_object* x_28; lean_object* x_29; x_28 = lean_ctor_get(x_25, 0); lean_dec(x_28); -x_29 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_29 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; lean_ctor_set(x_25, 0, x_29); return x_25; } @@ -27046,7 +23455,7 @@ lean_object* x_30; lean_object* x_31; lean_object* x_32; x_30 = lean_ctor_get(x_25, 1); lean_inc(x_30); lean_dec(x_25); -x_31 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_31 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; x_32 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_32, 0, x_31); lean_ctor_set(x_32, 1, x_30); @@ -27059,132 +23468,120 @@ uint8_t x_33; x_33 = !lean_is_exclusive(x_25); if (x_33 == 0) { -lean_object* x_34; lean_object* x_35; uint32_t x_36; uint32_t x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; uint8_t x_41; +lean_object* x_34; lean_object* x_35; lean_object* x_36; uint8_t x_37; x_34 = lean_ctor_get(x_25, 0); lean_dec(x_34); x_35 = lean_ctor_get(x_26, 0); lean_inc(x_35); lean_dec(x_26); -x_36 = lean_ctor_get_uint32(x_23, sizeof(void*)*1); -lean_dec(x_23); -x_37 = lean_ctor_get_uint32(x_35, sizeof(void*)*1); -lean_dec(x_35); -x_38 = lean_box_uint32(x_36); -x_39 = lean_box_uint32(x_37); -x_40 = lean_apply_2(x_2, x_38, x_39); -x_41 = lean_unbox(x_40); -lean_dec(x_40); -if (x_41 == 0) +x_36 = lean_apply_2(x_2, x_23, x_35); +x_37 = lean_unbox(x_36); +lean_dec(x_36); +if (x_37 == 0) { -lean_object* x_42; -x_42 = l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__5; -lean_ctor_set(x_25, 0, x_42); +lean_object* x_38; +x_38 = l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__5; +lean_ctor_set(x_25, 0, x_38); return x_25; } else { -lean_object* x_43; -x_43 = l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__10; -lean_ctor_set(x_25, 0, x_43); +lean_object* x_39; +x_39 = l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__10; +lean_ctor_set(x_25, 0, x_39); return x_25; } } else { -lean_object* x_44; lean_object* x_45; uint32_t x_46; uint32_t x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; uint8_t x_51; -x_44 = lean_ctor_get(x_25, 1); -lean_inc(x_44); +lean_object* x_40; lean_object* x_41; lean_object* x_42; uint8_t x_43; +x_40 = lean_ctor_get(x_25, 1); +lean_inc(x_40); lean_dec(x_25); -x_45 = lean_ctor_get(x_26, 0); -lean_inc(x_45); +x_41 = lean_ctor_get(x_26, 0); +lean_inc(x_41); lean_dec(x_26); -x_46 = lean_ctor_get_uint32(x_23, sizeof(void*)*1); -lean_dec(x_23); -x_47 = lean_ctor_get_uint32(x_45, sizeof(void*)*1); -lean_dec(x_45); -x_48 = lean_box_uint32(x_46); -x_49 = lean_box_uint32(x_47); -x_50 = lean_apply_2(x_2, x_48, x_49); -x_51 = lean_unbox(x_50); -lean_dec(x_50); -if (x_51 == 0) +x_42 = lean_apply_2(x_2, x_23, x_41); +x_43 = lean_unbox(x_42); +lean_dec(x_42); +if (x_43 == 0) { -lean_object* x_52; lean_object* x_53; -x_52 = l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__5; -x_53 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_53, 0, x_52); -lean_ctor_set(x_53, 1, x_44); -return x_53; +lean_object* x_44; lean_object* x_45; +x_44 = l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__5; +x_45 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_45, 0, x_44); +lean_ctor_set(x_45, 1, x_40); +return x_45; } else { -lean_object* x_54; lean_object* x_55; -x_54 = l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__10; -x_55 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_55, 0, x_54); -lean_ctor_set(x_55, 1, x_44); -return x_55; +lean_object* x_46; lean_object* x_47; +x_46 = l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__10; +x_47 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_47, 0, x_46); +lean_ctor_set(x_47, 1, x_40); +return x_47; } } } } else { -uint8_t x_56; +uint8_t x_48; lean_dec(x_23); lean_dec(x_2); -x_56 = !lean_is_exclusive(x_25); -if (x_56 == 0) +x_48 = !lean_is_exclusive(x_25); +if (x_48 == 0) { return x_25; } else { -lean_object* x_57; lean_object* x_58; lean_object* x_59; -x_57 = lean_ctor_get(x_25, 0); -x_58 = lean_ctor_get(x_25, 1); -lean_inc(x_58); -lean_inc(x_57); +lean_object* x_49; lean_object* x_50; lean_object* x_51; +x_49 = lean_ctor_get(x_25, 0); +x_50 = lean_ctor_get(x_25, 1); +lean_inc(x_50); +lean_inc(x_49); lean_dec(x_25); -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; +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 { -uint8_t x_60; +uint8_t x_52; lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); lean_dec(x_7); lean_dec(x_2); lean_dec(x_1); -x_60 = !lean_is_exclusive(x_14); -if (x_60 == 0) +x_52 = !lean_is_exclusive(x_14); +if (x_52 == 0) { return x_14; } else { -lean_object* x_61; lean_object* x_62; lean_object* x_63; -x_61 = lean_ctor_get(x_14, 0); -x_62 = lean_ctor_get(x_14, 1); -lean_inc(x_62); -lean_inc(x_61); +lean_object* x_53; lean_object* x_54; lean_object* x_55; +x_53 = lean_ctor_get(x_14, 0); +x_54 = lean_ctor_get(x_14, 1); +lean_inc(x_54); +lean_inc(x_53); lean_dec(x_14); -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; +x_55 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_55, 0, x_53); +lean_ctor_set(x_55, 1, x_54); +return x_55; } } } } -LEAN_EXPORT lean_object* l_UInt32_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860_(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_EXPORT lean_object* l_UInt32_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179_(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: { uint8_t x_13; @@ -27202,7 +23599,7 @@ lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); -x_14 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_14 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____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_12); @@ -27212,7 +23609,7 @@ else { lean_object* x_16; lean_object* x_17; x_16 = lean_box(0); -x_17 = l_UInt32_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860____lambda__1(x_4, x_3, x_16, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +x_17 = l_UInt32_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179____lambda__1(x_4, x_3, x_16, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); @@ -27220,11 +23617,11 @@ return x_17; } } } -LEAN_EXPORT lean_object* l_UInt32_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860____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, lean_object* x_11) { +LEAN_EXPORT lean_object* l_UInt32_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179____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, lean_object* x_11) { _start: { lean_object* x_12; -x_12 = l_UInt32_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860____lambda__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +x_12 = l_UInt32_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179____lambda__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); @@ -27245,6 +23642,7 @@ lean_inc(x_8); lean_inc(x_7); lean_inc(x_6); x_13 = l_UInt32_fromExpr(x_12, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_12); if (lean_obj_tag(x_13) == 0) { lean_object* x_14; @@ -27264,7 +23662,7 @@ if (x_15 == 0) lean_object* x_16; lean_object* x_17; x_16 = lean_ctor_get(x_13, 0); lean_dec(x_16); -x_17 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_17 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; lean_ctor_set(x_13, 0, x_17); return x_13; } @@ -27274,7 +23672,7 @@ lean_object* x_18; lean_object* x_19; lean_object* x_20; x_18 = lean_ctor_get(x_13, 1); lean_inc(x_18); lean_dec(x_13); -x_19 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_19 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; x_20 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_20, 0, x_19); lean_ctor_set(x_20, 1, x_18); @@ -27293,6 +23691,7 @@ lean_dec(x_14); x_23 = l_Lean_Expr_appArg_x21(x_1); lean_dec(x_1); x_24 = l_UInt32_fromExpr(x_23, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_21); +lean_dec(x_23); if (lean_obj_tag(x_24) == 0) { lean_object* x_25; @@ -27308,7 +23707,7 @@ if (x_26 == 0) lean_object* x_27; lean_object* x_28; x_27 = lean_ctor_get(x_24, 0); lean_dec(x_27); -x_28 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_28 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; lean_ctor_set(x_24, 0, x_28); return x_24; } @@ -27318,7 +23717,7 @@ lean_object* x_29; lean_object* x_30; lean_object* x_31; x_29 = lean_ctor_get(x_24, 1); lean_inc(x_29); lean_dec(x_24); -x_30 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_30 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; x_31 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_31, 0, x_30); lean_ctor_set(x_31, 1, x_29); @@ -27331,160 +23730,127 @@ uint8_t x_32; x_32 = !lean_is_exclusive(x_24); if (x_32 == 0) { -lean_object* x_33; lean_object* x_34; uint8_t x_35; +lean_object* x_33; lean_object* x_34; uint32_t x_35; uint32_t x_36; uint32_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; uint32_t x_46; uint8_t x_47; lean_object* x_48; lean_object* x_49; x_33 = lean_ctor_get(x_24, 0); lean_dec(x_33); x_34 = lean_ctor_get(x_25, 0); lean_inc(x_34); lean_dec(x_25); -x_35 = !lean_is_exclusive(x_22); -if (x_35 == 0) -{ -uint32_t x_36; uint32_t x_37; uint32_t x_38; lean_object* x_39; lean_object* x_40; uint32_t x_41; uint8_t x_42; lean_object* x_43; lean_object* x_44; -x_36 = lean_ctor_get_uint32(x_22, sizeof(void*)*1); -x_37 = lean_ctor_get_uint32(x_34, sizeof(void*)*1); -lean_dec(x_34); -x_38 = lean_uint32_add(x_36, x_37); -lean_ctor_set_uint32(x_22, sizeof(void*)*1, x_38); -x_39 = l_UInt32_toExpr(x_22); -x_40 = lean_box(0); -x_41 = 0; -x_42 = 1; -x_43 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_43, 0, x_39); -lean_ctor_set(x_43, 1, x_40); -lean_ctor_set_uint32(x_43, sizeof(void*)*2, x_41); -lean_ctor_set_uint8(x_43, sizeof(void*)*2 + 4, x_42); -x_44 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_44, 0, x_43); -lean_ctor_set(x_24, 0, x_44); -return x_24; -} -else -{ -lean_object* x_45; uint32_t x_46; uint32_t x_47; uint32_t x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; uint32_t x_52; uint8_t x_53; lean_object* x_54; lean_object* x_55; -x_45 = lean_ctor_get(x_22, 0); -x_46 = lean_ctor_get_uint32(x_22, sizeof(void*)*1); -lean_inc(x_45); +x_35 = lean_unbox_uint32(x_22); lean_dec(x_22); -x_47 = lean_ctor_get_uint32(x_34, sizeof(void*)*1); +x_36 = lean_unbox_uint32(x_34); lean_dec(x_34); -x_48 = lean_uint32_add(x_46, x_47); -x_49 = lean_alloc_ctor(0, 1, 4); -lean_ctor_set(x_49, 0, x_45); -lean_ctor_set_uint32(x_49, sizeof(void*)*1, x_48); -x_50 = l_UInt32_toExpr(x_49); -x_51 = lean_box(0); -x_52 = 0; -x_53 = 1; -x_54 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_54, 0, x_50); -lean_ctor_set(x_54, 1, x_51); -lean_ctor_set_uint32(x_54, sizeof(void*)*2, x_52); -lean_ctor_set_uint8(x_54, sizeof(void*)*2 + 4, x_53); -x_55 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_55, 0, x_54); -lean_ctor_set(x_24, 0, x_55); +x_37 = lean_uint32_add(x_35, x_36); +x_38 = lean_uint32_to_nat(x_37); +x_39 = l_Lean_mkRawNatLit(x_38); +x_40 = l_UInt32_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179____lambda__1___closed__3; +lean_inc(x_39); +x_41 = l_Lean_Expr_app___override(x_40, x_39); +x_42 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__4; +x_43 = l_UInt32_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179____lambda__1___closed__1; +x_44 = l_Lean_mkApp3(x_42, x_43, x_39, x_41); +x_45 = lean_box(0); +x_46 = 0; +x_47 = 1; +x_48 = lean_alloc_ctor(0, 2, 5); +lean_ctor_set(x_48, 0, x_44); +lean_ctor_set(x_48, 1, x_45); +lean_ctor_set_uint32(x_48, sizeof(void*)*2, x_46); +lean_ctor_set_uint8(x_48, sizeof(void*)*2 + 4, x_47); +x_49 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_49, 0, x_48); +lean_ctor_set(x_24, 0, x_49); return x_24; } -} else { -lean_object* x_56; lean_object* x_57; lean_object* x_58; uint32_t x_59; lean_object* x_60; uint32_t x_61; uint32_t x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; uint32_t x_66; uint8_t x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; -x_56 = lean_ctor_get(x_24, 1); -lean_inc(x_56); +lean_object* x_50; lean_object* x_51; uint32_t x_52; uint32_t x_53; uint32_t 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; uint32_t x_63; uint8_t x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; +x_50 = lean_ctor_get(x_24, 1); +lean_inc(x_50); lean_dec(x_24); -x_57 = lean_ctor_get(x_25, 0); -lean_inc(x_57); +x_51 = lean_ctor_get(x_25, 0); +lean_inc(x_51); lean_dec(x_25); -x_58 = lean_ctor_get(x_22, 0); -lean_inc(x_58); -x_59 = lean_ctor_get_uint32(x_22, sizeof(void*)*1); -if (lean_is_exclusive(x_22)) { - lean_ctor_release(x_22, 0); - x_60 = x_22; -} else { - lean_dec_ref(x_22); - x_60 = lean_box(0); -} -x_61 = lean_ctor_get_uint32(x_57, sizeof(void*)*1); -lean_dec(x_57); -x_62 = lean_uint32_add(x_59, x_61); -if (lean_is_scalar(x_60)) { - x_63 = lean_alloc_ctor(0, 1, 4); -} else { - x_63 = x_60; -} -lean_ctor_set(x_63, 0, x_58); -lean_ctor_set_uint32(x_63, sizeof(void*)*1, x_62); -x_64 = l_UInt32_toExpr(x_63); -x_65 = lean_box(0); -x_66 = 0; -x_67 = 1; -x_68 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_68, 0, x_64); -lean_ctor_set(x_68, 1, x_65); -lean_ctor_set_uint32(x_68, sizeof(void*)*2, x_66); -lean_ctor_set_uint8(x_68, sizeof(void*)*2 + 4, x_67); -x_69 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_69, 0, x_68); -x_70 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_70, 0, x_69); -lean_ctor_set(x_70, 1, x_56); -return x_70; +x_52 = lean_unbox_uint32(x_22); +lean_dec(x_22); +x_53 = lean_unbox_uint32(x_51); +lean_dec(x_51); +x_54 = lean_uint32_add(x_52, x_53); +x_55 = lean_uint32_to_nat(x_54); +x_56 = l_Lean_mkRawNatLit(x_55); +x_57 = l_UInt32_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179____lambda__1___closed__3; +lean_inc(x_56); +x_58 = l_Lean_Expr_app___override(x_57, x_56); +x_59 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__4; +x_60 = l_UInt32_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179____lambda__1___closed__1; +x_61 = l_Lean_mkApp3(x_59, x_60, x_56, x_58); +x_62 = lean_box(0); +x_63 = 0; +x_64 = 1; +x_65 = lean_alloc_ctor(0, 2, 5); +lean_ctor_set(x_65, 0, x_61); +lean_ctor_set(x_65, 1, x_62); +lean_ctor_set_uint32(x_65, sizeof(void*)*2, x_63); +lean_ctor_set_uint8(x_65, sizeof(void*)*2 + 4, x_64); +x_66 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_66, 0, x_65); +x_67 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_67, 0, x_66); +lean_ctor_set(x_67, 1, x_50); +return x_67; } } } else { -uint8_t x_71; +uint8_t x_68; lean_dec(x_22); -x_71 = !lean_is_exclusive(x_24); -if (x_71 == 0) +x_68 = !lean_is_exclusive(x_24); +if (x_68 == 0) { return x_24; } else { -lean_object* x_72; lean_object* x_73; lean_object* x_74; -x_72 = lean_ctor_get(x_24, 0); -x_73 = lean_ctor_get(x_24, 1); -lean_inc(x_73); -lean_inc(x_72); +lean_object* x_69; lean_object* x_70; lean_object* x_71; +x_69 = lean_ctor_get(x_24, 0); +x_70 = lean_ctor_get(x_24, 1); +lean_inc(x_70); +lean_inc(x_69); lean_dec(x_24); -x_74 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_74, 0, x_72); -lean_ctor_set(x_74, 1, x_73); -return x_74; +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; } } } } else { -uint8_t x_75; +uint8_t x_72; lean_dec(x_9); lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_1); -x_75 = !lean_is_exclusive(x_13); -if (x_75 == 0) +x_72 = !lean_is_exclusive(x_13); +if (x_72 == 0) { return x_13; } else { -lean_object* x_76; lean_object* x_77; lean_object* x_78; -x_76 = lean_ctor_get(x_13, 0); -x_77 = lean_ctor_get(x_13, 1); -lean_inc(x_77); -lean_inc(x_76); +lean_object* x_73; lean_object* x_74; lean_object* x_75; +x_73 = lean_ctor_get(x_13, 0); +x_74 = lean_ctor_get(x_13, 1); +lean_inc(x_74); +lean_inc(x_73); lean_dec(x_13); -x_78 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_78, 0, x_76); -lean_ctor_set(x_78, 1, x_77); -return x_78; +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; } } } @@ -27493,7 +23859,7 @@ LEAN_EXPORT lean_object* l_UInt32_reduceAdd(lean_object* x_1, lean_object* x_2, _start: { lean_object* x_10; lean_object* x_11; uint8_t x_12; -x_10 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__425; +x_10 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__279; x_11 = lean_unsigned_to_nat(6u); x_12 = l_Lean_Expr_isAppOfArity(x_1, x_10, x_11); if (x_12 == 0) @@ -27507,7 +23873,7 @@ lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_13 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_13 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; x_14 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_14, 0, x_13); lean_ctor_set(x_14, 1, x_9); @@ -27537,17 +23903,17 @@ lean_dec(x_2); return x_11; } } -static lean_object* _init_l___regBuiltin_UInt32_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12498____closed__1() { +static lean_object* _init_l___regBuiltin_UInt32_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10713____closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_UInt32_fromExpr___closed__1; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__410; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__264; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt32_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12498____closed__2() { +static lean_object* _init_l___regBuiltin_UInt32_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10713____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -27559,67 +23925,67 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt32_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12498____closed__3() { +static lean_object* _init_l___regBuiltin_UInt32_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10713____closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9616____closed__5; -x_2 = l___regBuiltin_UInt32_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12498____closed__2; +x_1 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8049____closed__5; +x_2 = l___regBuiltin_UInt32_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10713____closed__2; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt32_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12498____closed__4() { +static lean_object* _init_l___regBuiltin_UInt32_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10713____closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt32_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12498____closed__3; -x_2 = l___regBuiltin_UInt32_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12498____closed__2; +x_1 = l___regBuiltin_UInt32_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10713____closed__3; +x_2 = l___regBuiltin_UInt32_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10713____closed__2; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt32_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12498____closed__5() { +static lean_object* _init_l___regBuiltin_UInt32_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10713____closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt32_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12498____closed__4; -x_2 = l___regBuiltin_UInt32_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12498____closed__2; +x_1 = l___regBuiltin_UInt32_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10713____closed__4; +x_2 = l___regBuiltin_UInt32_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10713____closed__2; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt32_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12498____closed__6() { +static lean_object* _init_l___regBuiltin_UInt32_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10713____closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt32_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12498____closed__5; +x_1 = l___regBuiltin_UInt32_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10713____closed__5; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt32_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12498____closed__7() { +static lean_object* _init_l___regBuiltin_UInt32_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10713____closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt32_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12498____closed__6; +x_1 = l___regBuiltin_UInt32_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10713____closed__6; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt32_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12498____closed__8() { +static lean_object* _init_l___regBuiltin_UInt32_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10713____closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt32_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12498____closed__7; +x_1 = l___regBuiltin_UInt32_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10713____closed__7; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt32_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12498____closed__9() { +static lean_object* _init_l___regBuiltin_UInt32_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10713____closed__9() { _start: { lean_object* x_1; @@ -27627,37 +23993,37 @@ x_1 = lean_alloc_closure((void*)(l_UInt32_reduceAdd), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_UInt32_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12498_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_UInt32_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10713_(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_UInt32_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12498____closed__1; -x_3 = l___regBuiltin_UInt32_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12498____closed__8; -x_4 = l___regBuiltin_UInt32_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12498____closed__9; +x_2 = l___regBuiltin_UInt32_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10713____closed__1; +x_3 = l___regBuiltin_UInt32_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10713____closed__8; +x_4 = l___regBuiltin_UInt32_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10713____closed__9; x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); return x_5; } } -LEAN_EXPORT lean_object* l___regBuiltin_UInt32_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12500_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_UInt32_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10715_(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____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9618____closed__1; -x_3 = l___regBuiltin_UInt32_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12498____closed__1; +x_2 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8051____closed__1; +x_3 = l___regBuiltin_UInt32_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10713____closed__1; x_4 = 1; -x_5 = l___regBuiltin_UInt32_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12498____closed__9; +x_5 = l___regBuiltin_UInt32_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10713____closed__9; 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_UInt32_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12502_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_UInt32_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10717_(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____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9620____closed__1; -x_3 = l___regBuiltin_UInt32_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12498____closed__1; +x_2 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8053____closed__1; +x_3 = l___regBuiltin_UInt32_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10713____closed__1; x_4 = 1; -x_5 = l___regBuiltin_UInt32_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12498____closed__9; +x_5 = l___regBuiltin_UInt32_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10713____closed__9; x_6 = l_Lean_Meta_Simp_addSimprocBuiltinAttrCore(x_2, x_3, x_4, x_5, x_1); return x_6; } @@ -27675,6 +24041,7 @@ lean_inc(x_8); lean_inc(x_7); lean_inc(x_6); x_13 = l_UInt32_fromExpr(x_12, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_12); if (lean_obj_tag(x_13) == 0) { lean_object* x_14; @@ -27694,7 +24061,7 @@ if (x_15 == 0) lean_object* x_16; lean_object* x_17; x_16 = lean_ctor_get(x_13, 0); lean_dec(x_16); -x_17 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_17 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; lean_ctor_set(x_13, 0, x_17); return x_13; } @@ -27704,7 +24071,7 @@ lean_object* x_18; lean_object* x_19; lean_object* x_20; x_18 = lean_ctor_get(x_13, 1); lean_inc(x_18); lean_dec(x_13); -x_19 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_19 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; x_20 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_20, 0, x_19); lean_ctor_set(x_20, 1, x_18); @@ -27723,6 +24090,7 @@ lean_dec(x_14); x_23 = l_Lean_Expr_appArg_x21(x_1); lean_dec(x_1); x_24 = l_UInt32_fromExpr(x_23, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_21); +lean_dec(x_23); if (lean_obj_tag(x_24) == 0) { lean_object* x_25; @@ -27738,7 +24106,7 @@ if (x_26 == 0) lean_object* x_27; lean_object* x_28; x_27 = lean_ctor_get(x_24, 0); lean_dec(x_27); -x_28 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_28 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; lean_ctor_set(x_24, 0, x_28); return x_24; } @@ -27748,7 +24116,7 @@ lean_object* x_29; lean_object* x_30; lean_object* x_31; x_29 = lean_ctor_get(x_24, 1); lean_inc(x_29); lean_dec(x_24); -x_30 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_30 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; x_31 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_31, 0, x_30); lean_ctor_set(x_31, 1, x_29); @@ -27761,160 +24129,127 @@ uint8_t x_32; x_32 = !lean_is_exclusive(x_24); if (x_32 == 0) { -lean_object* x_33; lean_object* x_34; uint8_t x_35; +lean_object* x_33; lean_object* x_34; uint32_t x_35; uint32_t x_36; uint32_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; uint32_t x_46; uint8_t x_47; lean_object* x_48; lean_object* x_49; x_33 = lean_ctor_get(x_24, 0); lean_dec(x_33); x_34 = lean_ctor_get(x_25, 0); lean_inc(x_34); lean_dec(x_25); -x_35 = !lean_is_exclusive(x_22); -if (x_35 == 0) -{ -uint32_t x_36; uint32_t x_37; uint32_t x_38; lean_object* x_39; lean_object* x_40; uint32_t x_41; uint8_t x_42; lean_object* x_43; lean_object* x_44; -x_36 = lean_ctor_get_uint32(x_22, sizeof(void*)*1); -x_37 = lean_ctor_get_uint32(x_34, sizeof(void*)*1); -lean_dec(x_34); -x_38 = lean_uint32_mul(x_36, x_37); -lean_ctor_set_uint32(x_22, sizeof(void*)*1, x_38); -x_39 = l_UInt32_toExpr(x_22); -x_40 = lean_box(0); -x_41 = 0; -x_42 = 1; -x_43 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_43, 0, x_39); -lean_ctor_set(x_43, 1, x_40); -lean_ctor_set_uint32(x_43, sizeof(void*)*2, x_41); -lean_ctor_set_uint8(x_43, sizeof(void*)*2 + 4, x_42); -x_44 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_44, 0, x_43); -lean_ctor_set(x_24, 0, x_44); -return x_24; -} -else -{ -lean_object* x_45; uint32_t x_46; uint32_t x_47; uint32_t x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; uint32_t x_52; uint8_t x_53; lean_object* x_54; lean_object* x_55; -x_45 = lean_ctor_get(x_22, 0); -x_46 = lean_ctor_get_uint32(x_22, sizeof(void*)*1); -lean_inc(x_45); +x_35 = lean_unbox_uint32(x_22); lean_dec(x_22); -x_47 = lean_ctor_get_uint32(x_34, sizeof(void*)*1); +x_36 = lean_unbox_uint32(x_34); lean_dec(x_34); -x_48 = lean_uint32_mul(x_46, x_47); -x_49 = lean_alloc_ctor(0, 1, 4); -lean_ctor_set(x_49, 0, x_45); -lean_ctor_set_uint32(x_49, sizeof(void*)*1, x_48); -x_50 = l_UInt32_toExpr(x_49); -x_51 = lean_box(0); -x_52 = 0; -x_53 = 1; -x_54 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_54, 0, x_50); -lean_ctor_set(x_54, 1, x_51); -lean_ctor_set_uint32(x_54, sizeof(void*)*2, x_52); -lean_ctor_set_uint8(x_54, sizeof(void*)*2 + 4, x_53); -x_55 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_55, 0, x_54); -lean_ctor_set(x_24, 0, x_55); +x_37 = lean_uint32_mul(x_35, x_36); +x_38 = lean_uint32_to_nat(x_37); +x_39 = l_Lean_mkRawNatLit(x_38); +x_40 = l_UInt32_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179____lambda__1___closed__3; +lean_inc(x_39); +x_41 = l_Lean_Expr_app___override(x_40, x_39); +x_42 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__4; +x_43 = l_UInt32_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179____lambda__1___closed__1; +x_44 = l_Lean_mkApp3(x_42, x_43, x_39, x_41); +x_45 = lean_box(0); +x_46 = 0; +x_47 = 1; +x_48 = lean_alloc_ctor(0, 2, 5); +lean_ctor_set(x_48, 0, x_44); +lean_ctor_set(x_48, 1, x_45); +lean_ctor_set_uint32(x_48, sizeof(void*)*2, x_46); +lean_ctor_set_uint8(x_48, sizeof(void*)*2 + 4, x_47); +x_49 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_49, 0, x_48); +lean_ctor_set(x_24, 0, x_49); return x_24; } -} else { -lean_object* x_56; lean_object* x_57; lean_object* x_58; uint32_t x_59; lean_object* x_60; uint32_t x_61; uint32_t x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; uint32_t x_66; uint8_t x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; -x_56 = lean_ctor_get(x_24, 1); -lean_inc(x_56); +lean_object* x_50; lean_object* x_51; uint32_t x_52; uint32_t x_53; uint32_t 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; uint32_t x_63; uint8_t x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; +x_50 = lean_ctor_get(x_24, 1); +lean_inc(x_50); lean_dec(x_24); -x_57 = lean_ctor_get(x_25, 0); -lean_inc(x_57); +x_51 = lean_ctor_get(x_25, 0); +lean_inc(x_51); lean_dec(x_25); -x_58 = lean_ctor_get(x_22, 0); -lean_inc(x_58); -x_59 = lean_ctor_get_uint32(x_22, sizeof(void*)*1); -if (lean_is_exclusive(x_22)) { - lean_ctor_release(x_22, 0); - x_60 = x_22; -} else { - lean_dec_ref(x_22); - x_60 = lean_box(0); -} -x_61 = lean_ctor_get_uint32(x_57, sizeof(void*)*1); -lean_dec(x_57); -x_62 = lean_uint32_mul(x_59, x_61); -if (lean_is_scalar(x_60)) { - x_63 = lean_alloc_ctor(0, 1, 4); -} else { - x_63 = x_60; -} -lean_ctor_set(x_63, 0, x_58); -lean_ctor_set_uint32(x_63, sizeof(void*)*1, x_62); -x_64 = l_UInt32_toExpr(x_63); -x_65 = lean_box(0); -x_66 = 0; -x_67 = 1; -x_68 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_68, 0, x_64); -lean_ctor_set(x_68, 1, x_65); -lean_ctor_set_uint32(x_68, sizeof(void*)*2, x_66); -lean_ctor_set_uint8(x_68, sizeof(void*)*2 + 4, x_67); -x_69 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_69, 0, x_68); -x_70 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_70, 0, x_69); -lean_ctor_set(x_70, 1, x_56); -return x_70; +x_52 = lean_unbox_uint32(x_22); +lean_dec(x_22); +x_53 = lean_unbox_uint32(x_51); +lean_dec(x_51); +x_54 = lean_uint32_mul(x_52, x_53); +x_55 = lean_uint32_to_nat(x_54); +x_56 = l_Lean_mkRawNatLit(x_55); +x_57 = l_UInt32_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179____lambda__1___closed__3; +lean_inc(x_56); +x_58 = l_Lean_Expr_app___override(x_57, x_56); +x_59 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__4; +x_60 = l_UInt32_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179____lambda__1___closed__1; +x_61 = l_Lean_mkApp3(x_59, x_60, x_56, x_58); +x_62 = lean_box(0); +x_63 = 0; +x_64 = 1; +x_65 = lean_alloc_ctor(0, 2, 5); +lean_ctor_set(x_65, 0, x_61); +lean_ctor_set(x_65, 1, x_62); +lean_ctor_set_uint32(x_65, sizeof(void*)*2, x_63); +lean_ctor_set_uint8(x_65, sizeof(void*)*2 + 4, x_64); +x_66 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_66, 0, x_65); +x_67 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_67, 0, x_66); +lean_ctor_set(x_67, 1, x_50); +return x_67; } } } else { -uint8_t x_71; +uint8_t x_68; lean_dec(x_22); -x_71 = !lean_is_exclusive(x_24); -if (x_71 == 0) +x_68 = !lean_is_exclusive(x_24); +if (x_68 == 0) { return x_24; } else { -lean_object* x_72; lean_object* x_73; lean_object* x_74; -x_72 = lean_ctor_get(x_24, 0); -x_73 = lean_ctor_get(x_24, 1); -lean_inc(x_73); -lean_inc(x_72); +lean_object* x_69; lean_object* x_70; lean_object* x_71; +x_69 = lean_ctor_get(x_24, 0); +x_70 = lean_ctor_get(x_24, 1); +lean_inc(x_70); +lean_inc(x_69); lean_dec(x_24); -x_74 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_74, 0, x_72); -lean_ctor_set(x_74, 1, x_73); -return x_74; +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; } } } } else { -uint8_t x_75; +uint8_t x_72; lean_dec(x_9); lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_1); -x_75 = !lean_is_exclusive(x_13); -if (x_75 == 0) +x_72 = !lean_is_exclusive(x_13); +if (x_72 == 0) { return x_13; } else { -lean_object* x_76; lean_object* x_77; lean_object* x_78; -x_76 = lean_ctor_get(x_13, 0); -x_77 = lean_ctor_get(x_13, 1); -lean_inc(x_77); -lean_inc(x_76); +lean_object* x_73; lean_object* x_74; lean_object* x_75; +x_73 = lean_ctor_get(x_13, 0); +x_74 = lean_ctor_get(x_13, 1); +lean_inc(x_74); +lean_inc(x_73); lean_dec(x_13); -x_78 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_78, 0, x_76); -lean_ctor_set(x_78, 1, x_77); -return x_78; +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; } } } @@ -27923,7 +24258,7 @@ LEAN_EXPORT lean_object* l_UInt32_reduceMul(lean_object* x_1, lean_object* x_2, _start: { lean_object* x_10; lean_object* x_11; uint8_t x_12; -x_10 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__443; +x_10 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__299; x_11 = lean_unsigned_to_nat(6u); x_12 = l_Lean_Expr_isAppOfArity(x_1, x_10, x_11); if (x_12 == 0) @@ -27937,7 +24272,7 @@ lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_13 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_13 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; x_14 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_14, 0, x_13); lean_ctor_set(x_14, 1, x_9); @@ -27967,77 +24302,77 @@ lean_dec(x_2); return x_11; } } -static lean_object* _init_l___regBuiltin_UInt32_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12538____closed__1() { +static lean_object* _init_l___regBuiltin_UInt32_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10753____closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_UInt32_fromExpr___closed__1; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__433; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__289; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt32_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12538____closed__2() { +static lean_object* _init_l___regBuiltin_UInt32_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10753____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt8_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9656____closed__3; -x_2 = l___regBuiltin_UInt32_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12498____closed__2; +x_1 = l___regBuiltin_UInt8_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8089____closed__3; +x_2 = l___regBuiltin_UInt32_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10713____closed__2; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt32_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12538____closed__3() { +static lean_object* _init_l___regBuiltin_UInt32_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10753____closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt32_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12538____closed__2; -x_2 = l___regBuiltin_UInt32_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12498____closed__2; +x_1 = l___regBuiltin_UInt32_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10753____closed__2; +x_2 = l___regBuiltin_UInt32_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10713____closed__2; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt32_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12538____closed__4() { +static lean_object* _init_l___regBuiltin_UInt32_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10753____closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt32_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12538____closed__3; -x_2 = l___regBuiltin_UInt32_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12498____closed__2; +x_1 = l___regBuiltin_UInt32_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10753____closed__3; +x_2 = l___regBuiltin_UInt32_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10713____closed__2; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt32_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12538____closed__5() { +static lean_object* _init_l___regBuiltin_UInt32_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10753____closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt32_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12538____closed__4; +x_1 = l___regBuiltin_UInt32_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10753____closed__4; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt32_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12538____closed__6() { +static lean_object* _init_l___regBuiltin_UInt32_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10753____closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt32_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12538____closed__5; +x_1 = l___regBuiltin_UInt32_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10753____closed__5; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt32_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12538____closed__7() { +static lean_object* _init_l___regBuiltin_UInt32_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10753____closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt32_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12538____closed__6; +x_1 = l___regBuiltin_UInt32_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10753____closed__6; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt32_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12538____closed__8() { +static lean_object* _init_l___regBuiltin_UInt32_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10753____closed__8() { _start: { lean_object* x_1; @@ -28045,37 +24380,37 @@ x_1 = lean_alloc_closure((void*)(l_UInt32_reduceMul), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_UInt32_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12538_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_UInt32_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10753_(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_UInt32_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12538____closed__1; -x_3 = l___regBuiltin_UInt32_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12538____closed__7; -x_4 = l___regBuiltin_UInt32_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12538____closed__8; +x_2 = l___regBuiltin_UInt32_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10753____closed__1; +x_3 = l___regBuiltin_UInt32_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10753____closed__7; +x_4 = l___regBuiltin_UInt32_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10753____closed__8; x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); return x_5; } } -LEAN_EXPORT lean_object* l___regBuiltin_UInt32_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12540_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_UInt32_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10755_(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____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9618____closed__1; -x_3 = l___regBuiltin_UInt32_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12538____closed__1; +x_2 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8051____closed__1; +x_3 = l___regBuiltin_UInt32_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10753____closed__1; x_4 = 1; -x_5 = l___regBuiltin_UInt32_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12538____closed__8; +x_5 = l___regBuiltin_UInt32_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10753____closed__8; 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_UInt32_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12542_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_UInt32_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10757_(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____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9620____closed__1; -x_3 = l___regBuiltin_UInt32_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12538____closed__1; +x_2 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8053____closed__1; +x_3 = l___regBuiltin_UInt32_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10753____closed__1; x_4 = 1; -x_5 = l___regBuiltin_UInt32_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12538____closed__8; +x_5 = l___regBuiltin_UInt32_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10753____closed__8; x_6 = l_Lean_Meta_Simp_addSimprocBuiltinAttrCore(x_2, x_3, x_4, x_5, x_1); return x_6; } @@ -28093,6 +24428,7 @@ lean_inc(x_8); lean_inc(x_7); lean_inc(x_6); x_13 = l_UInt32_fromExpr(x_12, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_12); if (lean_obj_tag(x_13) == 0) { lean_object* x_14; @@ -28112,7 +24448,7 @@ if (x_15 == 0) lean_object* x_16; lean_object* x_17; x_16 = lean_ctor_get(x_13, 0); lean_dec(x_16); -x_17 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_17 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; lean_ctor_set(x_13, 0, x_17); return x_13; } @@ -28122,7 +24458,7 @@ lean_object* x_18; lean_object* x_19; lean_object* x_20; x_18 = lean_ctor_get(x_13, 1); lean_inc(x_18); lean_dec(x_13); -x_19 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_19 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; x_20 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_20, 0, x_19); lean_ctor_set(x_20, 1, x_18); @@ -28141,6 +24477,7 @@ lean_dec(x_14); x_23 = l_Lean_Expr_appArg_x21(x_1); lean_dec(x_1); x_24 = l_UInt32_fromExpr(x_23, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_21); +lean_dec(x_23); if (lean_obj_tag(x_24) == 0) { lean_object* x_25; @@ -28156,7 +24493,7 @@ if (x_26 == 0) lean_object* x_27; lean_object* x_28; x_27 = lean_ctor_get(x_24, 0); lean_dec(x_27); -x_28 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_28 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; lean_ctor_set(x_24, 0, x_28); return x_24; } @@ -28166,7 +24503,7 @@ lean_object* x_29; lean_object* x_30; lean_object* x_31; x_29 = lean_ctor_get(x_24, 1); lean_inc(x_29); lean_dec(x_24); -x_30 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_30 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; x_31 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_31, 0, x_30); lean_ctor_set(x_31, 1, x_29); @@ -28179,160 +24516,127 @@ uint8_t x_32; x_32 = !lean_is_exclusive(x_24); if (x_32 == 0) { -lean_object* x_33; lean_object* x_34; uint8_t x_35; +lean_object* x_33; lean_object* x_34; uint32_t x_35; uint32_t x_36; uint32_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; uint32_t x_46; uint8_t x_47; lean_object* x_48; lean_object* x_49; x_33 = lean_ctor_get(x_24, 0); lean_dec(x_33); x_34 = lean_ctor_get(x_25, 0); lean_inc(x_34); lean_dec(x_25); -x_35 = !lean_is_exclusive(x_22); -if (x_35 == 0) -{ -uint32_t x_36; uint32_t x_37; uint32_t x_38; lean_object* x_39; lean_object* x_40; uint32_t x_41; uint8_t x_42; lean_object* x_43; lean_object* x_44; -x_36 = lean_ctor_get_uint32(x_22, sizeof(void*)*1); -x_37 = lean_ctor_get_uint32(x_34, sizeof(void*)*1); -lean_dec(x_34); -x_38 = lean_uint32_sub(x_36, x_37); -lean_ctor_set_uint32(x_22, sizeof(void*)*1, x_38); -x_39 = l_UInt32_toExpr(x_22); -x_40 = lean_box(0); -x_41 = 0; -x_42 = 1; -x_43 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_43, 0, x_39); -lean_ctor_set(x_43, 1, x_40); -lean_ctor_set_uint32(x_43, sizeof(void*)*2, x_41); -lean_ctor_set_uint8(x_43, sizeof(void*)*2 + 4, x_42); -x_44 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_44, 0, x_43); -lean_ctor_set(x_24, 0, x_44); -return x_24; -} -else -{ -lean_object* x_45; uint32_t x_46; uint32_t x_47; uint32_t x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; uint32_t x_52; uint8_t x_53; lean_object* x_54; lean_object* x_55; -x_45 = lean_ctor_get(x_22, 0); -x_46 = lean_ctor_get_uint32(x_22, sizeof(void*)*1); -lean_inc(x_45); +x_35 = lean_unbox_uint32(x_22); lean_dec(x_22); -x_47 = lean_ctor_get_uint32(x_34, sizeof(void*)*1); +x_36 = lean_unbox_uint32(x_34); lean_dec(x_34); -x_48 = lean_uint32_sub(x_46, x_47); -x_49 = lean_alloc_ctor(0, 1, 4); -lean_ctor_set(x_49, 0, x_45); -lean_ctor_set_uint32(x_49, sizeof(void*)*1, x_48); -x_50 = l_UInt32_toExpr(x_49); -x_51 = lean_box(0); -x_52 = 0; -x_53 = 1; -x_54 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_54, 0, x_50); -lean_ctor_set(x_54, 1, x_51); -lean_ctor_set_uint32(x_54, sizeof(void*)*2, x_52); -lean_ctor_set_uint8(x_54, sizeof(void*)*2 + 4, x_53); -x_55 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_55, 0, x_54); -lean_ctor_set(x_24, 0, x_55); +x_37 = lean_uint32_sub(x_35, x_36); +x_38 = lean_uint32_to_nat(x_37); +x_39 = l_Lean_mkRawNatLit(x_38); +x_40 = l_UInt32_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179____lambda__1___closed__3; +lean_inc(x_39); +x_41 = l_Lean_Expr_app___override(x_40, x_39); +x_42 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__4; +x_43 = l_UInt32_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179____lambda__1___closed__1; +x_44 = l_Lean_mkApp3(x_42, x_43, x_39, x_41); +x_45 = lean_box(0); +x_46 = 0; +x_47 = 1; +x_48 = lean_alloc_ctor(0, 2, 5); +lean_ctor_set(x_48, 0, x_44); +lean_ctor_set(x_48, 1, x_45); +lean_ctor_set_uint32(x_48, sizeof(void*)*2, x_46); +lean_ctor_set_uint8(x_48, sizeof(void*)*2 + 4, x_47); +x_49 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_49, 0, x_48); +lean_ctor_set(x_24, 0, x_49); return x_24; } -} else { -lean_object* x_56; lean_object* x_57; lean_object* x_58; uint32_t x_59; lean_object* x_60; uint32_t x_61; uint32_t x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; uint32_t x_66; uint8_t x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; -x_56 = lean_ctor_get(x_24, 1); -lean_inc(x_56); +lean_object* x_50; lean_object* x_51; uint32_t x_52; uint32_t x_53; uint32_t 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; uint32_t x_63; uint8_t x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; +x_50 = lean_ctor_get(x_24, 1); +lean_inc(x_50); lean_dec(x_24); -x_57 = lean_ctor_get(x_25, 0); -lean_inc(x_57); +x_51 = lean_ctor_get(x_25, 0); +lean_inc(x_51); lean_dec(x_25); -x_58 = lean_ctor_get(x_22, 0); -lean_inc(x_58); -x_59 = lean_ctor_get_uint32(x_22, sizeof(void*)*1); -if (lean_is_exclusive(x_22)) { - lean_ctor_release(x_22, 0); - x_60 = x_22; -} else { - lean_dec_ref(x_22); - x_60 = lean_box(0); -} -x_61 = lean_ctor_get_uint32(x_57, sizeof(void*)*1); -lean_dec(x_57); -x_62 = lean_uint32_sub(x_59, x_61); -if (lean_is_scalar(x_60)) { - x_63 = lean_alloc_ctor(0, 1, 4); -} else { - x_63 = x_60; -} -lean_ctor_set(x_63, 0, x_58); -lean_ctor_set_uint32(x_63, sizeof(void*)*1, x_62); -x_64 = l_UInt32_toExpr(x_63); -x_65 = lean_box(0); -x_66 = 0; -x_67 = 1; -x_68 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_68, 0, x_64); -lean_ctor_set(x_68, 1, x_65); -lean_ctor_set_uint32(x_68, sizeof(void*)*2, x_66); -lean_ctor_set_uint8(x_68, sizeof(void*)*2 + 4, x_67); -x_69 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_69, 0, x_68); -x_70 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_70, 0, x_69); -lean_ctor_set(x_70, 1, x_56); -return x_70; +x_52 = lean_unbox_uint32(x_22); +lean_dec(x_22); +x_53 = lean_unbox_uint32(x_51); +lean_dec(x_51); +x_54 = lean_uint32_sub(x_52, x_53); +x_55 = lean_uint32_to_nat(x_54); +x_56 = l_Lean_mkRawNatLit(x_55); +x_57 = l_UInt32_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179____lambda__1___closed__3; +lean_inc(x_56); +x_58 = l_Lean_Expr_app___override(x_57, x_56); +x_59 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__4; +x_60 = l_UInt32_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179____lambda__1___closed__1; +x_61 = l_Lean_mkApp3(x_59, x_60, x_56, x_58); +x_62 = lean_box(0); +x_63 = 0; +x_64 = 1; +x_65 = lean_alloc_ctor(0, 2, 5); +lean_ctor_set(x_65, 0, x_61); +lean_ctor_set(x_65, 1, x_62); +lean_ctor_set_uint32(x_65, sizeof(void*)*2, x_63); +lean_ctor_set_uint8(x_65, sizeof(void*)*2 + 4, x_64); +x_66 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_66, 0, x_65); +x_67 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_67, 0, x_66); +lean_ctor_set(x_67, 1, x_50); +return x_67; } } } else { -uint8_t x_71; +uint8_t x_68; lean_dec(x_22); -x_71 = !lean_is_exclusive(x_24); -if (x_71 == 0) +x_68 = !lean_is_exclusive(x_24); +if (x_68 == 0) { return x_24; } else { -lean_object* x_72; lean_object* x_73; lean_object* x_74; -x_72 = lean_ctor_get(x_24, 0); -x_73 = lean_ctor_get(x_24, 1); -lean_inc(x_73); -lean_inc(x_72); +lean_object* x_69; lean_object* x_70; lean_object* x_71; +x_69 = lean_ctor_get(x_24, 0); +x_70 = lean_ctor_get(x_24, 1); +lean_inc(x_70); +lean_inc(x_69); lean_dec(x_24); -x_74 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_74, 0, x_72); -lean_ctor_set(x_74, 1, x_73); -return x_74; +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; } } } } else { -uint8_t x_75; +uint8_t x_72; lean_dec(x_9); lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_1); -x_75 = !lean_is_exclusive(x_13); -if (x_75 == 0) +x_72 = !lean_is_exclusive(x_13); +if (x_72 == 0) { return x_13; } else { -lean_object* x_76; lean_object* x_77; lean_object* x_78; -x_76 = lean_ctor_get(x_13, 0); -x_77 = lean_ctor_get(x_13, 1); -lean_inc(x_77); -lean_inc(x_76); +lean_object* x_73; lean_object* x_74; lean_object* x_75; +x_73 = lean_ctor_get(x_13, 0); +x_74 = lean_ctor_get(x_13, 1); +lean_inc(x_74); +lean_inc(x_73); lean_dec(x_13); -x_78 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_78, 0, x_76); -lean_ctor_set(x_78, 1, x_77); -return x_78; +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; } } } @@ -28341,7 +24645,7 @@ LEAN_EXPORT lean_object* l_UInt32_reduceSub(lean_object* x_1, lean_object* x_2, _start: { lean_object* x_10; lean_object* x_11; uint8_t x_12; -x_10 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__456; +x_10 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__312; x_11 = lean_unsigned_to_nat(6u); x_12 = l_Lean_Expr_isAppOfArity(x_1, x_10, x_11); if (x_12 == 0) @@ -28355,7 +24659,7 @@ lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_13 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_13 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; x_14 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_14, 0, x_13); lean_ctor_set(x_14, 1, x_9); @@ -28385,77 +24689,77 @@ lean_dec(x_2); return x_11; } } -static lean_object* _init_l___regBuiltin_UInt32_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12578____closed__1() { +static lean_object* _init_l___regBuiltin_UInt32_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10793____closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_UInt32_fromExpr___closed__1; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__446; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__302; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt32_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12578____closed__2() { +static lean_object* _init_l___regBuiltin_UInt32_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10793____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt8_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9696____closed__3; -x_2 = l___regBuiltin_UInt32_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12498____closed__2; +x_1 = l___regBuiltin_UInt8_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8129____closed__3; +x_2 = l___regBuiltin_UInt32_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10713____closed__2; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt32_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12578____closed__3() { +static lean_object* _init_l___regBuiltin_UInt32_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10793____closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt32_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12578____closed__2; -x_2 = l___regBuiltin_UInt32_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12498____closed__2; +x_1 = l___regBuiltin_UInt32_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10793____closed__2; +x_2 = l___regBuiltin_UInt32_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10713____closed__2; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt32_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12578____closed__4() { +static lean_object* _init_l___regBuiltin_UInt32_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10793____closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt32_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12578____closed__3; -x_2 = l___regBuiltin_UInt32_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12498____closed__2; +x_1 = l___regBuiltin_UInt32_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10793____closed__3; +x_2 = l___regBuiltin_UInt32_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10713____closed__2; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt32_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12578____closed__5() { +static lean_object* _init_l___regBuiltin_UInt32_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10793____closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt32_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12578____closed__4; +x_1 = l___regBuiltin_UInt32_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10793____closed__4; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt32_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12578____closed__6() { +static lean_object* _init_l___regBuiltin_UInt32_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10793____closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt32_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12578____closed__5; +x_1 = l___regBuiltin_UInt32_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10793____closed__5; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt32_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12578____closed__7() { +static lean_object* _init_l___regBuiltin_UInt32_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10793____closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt32_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12578____closed__6; +x_1 = l___regBuiltin_UInt32_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10793____closed__6; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt32_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12578____closed__8() { +static lean_object* _init_l___regBuiltin_UInt32_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10793____closed__8() { _start: { lean_object* x_1; @@ -28463,37 +24767,37 @@ x_1 = lean_alloc_closure((void*)(l_UInt32_reduceSub), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_UInt32_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12578_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_UInt32_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10793_(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_UInt32_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12578____closed__1; -x_3 = l___regBuiltin_UInt32_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12578____closed__7; -x_4 = l___regBuiltin_UInt32_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12578____closed__8; +x_2 = l___regBuiltin_UInt32_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10793____closed__1; +x_3 = l___regBuiltin_UInt32_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10793____closed__7; +x_4 = l___regBuiltin_UInt32_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10793____closed__8; x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); return x_5; } } -LEAN_EXPORT lean_object* l___regBuiltin_UInt32_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12580_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_UInt32_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10795_(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____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9618____closed__1; -x_3 = l___regBuiltin_UInt32_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12578____closed__1; +x_2 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8051____closed__1; +x_3 = l___regBuiltin_UInt32_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10793____closed__1; x_4 = 1; -x_5 = l___regBuiltin_UInt32_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12578____closed__8; +x_5 = l___regBuiltin_UInt32_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10793____closed__8; 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_UInt32_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12582_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_UInt32_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10797_(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____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9620____closed__1; -x_3 = l___regBuiltin_UInt32_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12578____closed__1; +x_2 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8053____closed__1; +x_3 = l___regBuiltin_UInt32_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10793____closed__1; x_4 = 1; -x_5 = l___regBuiltin_UInt32_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12578____closed__8; +x_5 = l___regBuiltin_UInt32_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10793____closed__8; x_6 = l_Lean_Meta_Simp_addSimprocBuiltinAttrCore(x_2, x_3, x_4, x_5, x_1); return x_6; } @@ -28511,6 +24815,7 @@ lean_inc(x_8); lean_inc(x_7); lean_inc(x_6); x_13 = l_UInt32_fromExpr(x_12, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_12); if (lean_obj_tag(x_13) == 0) { lean_object* x_14; @@ -28530,7 +24835,7 @@ if (x_15 == 0) lean_object* x_16; lean_object* x_17; x_16 = lean_ctor_get(x_13, 0); lean_dec(x_16); -x_17 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_17 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; lean_ctor_set(x_13, 0, x_17); return x_13; } @@ -28540,7 +24845,7 @@ lean_object* x_18; lean_object* x_19; lean_object* x_20; x_18 = lean_ctor_get(x_13, 1); lean_inc(x_18); lean_dec(x_13); -x_19 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_19 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; x_20 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_20, 0, x_19); lean_ctor_set(x_20, 1, x_18); @@ -28559,6 +24864,7 @@ lean_dec(x_14); x_23 = l_Lean_Expr_appArg_x21(x_1); lean_dec(x_1); x_24 = l_UInt32_fromExpr(x_23, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_21); +lean_dec(x_23); if (lean_obj_tag(x_24) == 0) { lean_object* x_25; @@ -28574,7 +24880,7 @@ if (x_26 == 0) lean_object* x_27; lean_object* x_28; x_27 = lean_ctor_get(x_24, 0); lean_dec(x_27); -x_28 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_28 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; lean_ctor_set(x_24, 0, x_28); return x_24; } @@ -28584,7 +24890,7 @@ lean_object* x_29; lean_object* x_30; lean_object* x_31; x_29 = lean_ctor_get(x_24, 1); lean_inc(x_29); lean_dec(x_24); -x_30 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_30 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; x_31 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_31, 0, x_30); lean_ctor_set(x_31, 1, x_29); @@ -28597,160 +24903,127 @@ uint8_t x_32; x_32 = !lean_is_exclusive(x_24); if (x_32 == 0) { -lean_object* x_33; lean_object* x_34; uint8_t x_35; +lean_object* x_33; lean_object* x_34; uint32_t x_35; uint32_t x_36; uint32_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; uint32_t x_46; uint8_t x_47; lean_object* x_48; lean_object* x_49; x_33 = lean_ctor_get(x_24, 0); lean_dec(x_33); x_34 = lean_ctor_get(x_25, 0); lean_inc(x_34); lean_dec(x_25); -x_35 = !lean_is_exclusive(x_22); -if (x_35 == 0) -{ -uint32_t x_36; uint32_t x_37; uint32_t x_38; lean_object* x_39; lean_object* x_40; uint32_t x_41; uint8_t x_42; lean_object* x_43; lean_object* x_44; -x_36 = lean_ctor_get_uint32(x_22, sizeof(void*)*1); -x_37 = lean_ctor_get_uint32(x_34, sizeof(void*)*1); -lean_dec(x_34); -x_38 = lean_uint32_div(x_36, x_37); -lean_ctor_set_uint32(x_22, sizeof(void*)*1, x_38); -x_39 = l_UInt32_toExpr(x_22); -x_40 = lean_box(0); -x_41 = 0; -x_42 = 1; -x_43 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_43, 0, x_39); -lean_ctor_set(x_43, 1, x_40); -lean_ctor_set_uint32(x_43, sizeof(void*)*2, x_41); -lean_ctor_set_uint8(x_43, sizeof(void*)*2 + 4, x_42); -x_44 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_44, 0, x_43); -lean_ctor_set(x_24, 0, x_44); -return x_24; -} -else -{ -lean_object* x_45; uint32_t x_46; uint32_t x_47; uint32_t x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; uint32_t x_52; uint8_t x_53; lean_object* x_54; lean_object* x_55; -x_45 = lean_ctor_get(x_22, 0); -x_46 = lean_ctor_get_uint32(x_22, sizeof(void*)*1); -lean_inc(x_45); +x_35 = lean_unbox_uint32(x_22); lean_dec(x_22); -x_47 = lean_ctor_get_uint32(x_34, sizeof(void*)*1); +x_36 = lean_unbox_uint32(x_34); lean_dec(x_34); -x_48 = lean_uint32_div(x_46, x_47); -x_49 = lean_alloc_ctor(0, 1, 4); -lean_ctor_set(x_49, 0, x_45); -lean_ctor_set_uint32(x_49, sizeof(void*)*1, x_48); -x_50 = l_UInt32_toExpr(x_49); -x_51 = lean_box(0); -x_52 = 0; -x_53 = 1; -x_54 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_54, 0, x_50); -lean_ctor_set(x_54, 1, x_51); -lean_ctor_set_uint32(x_54, sizeof(void*)*2, x_52); -lean_ctor_set_uint8(x_54, sizeof(void*)*2 + 4, x_53); -x_55 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_55, 0, x_54); -lean_ctor_set(x_24, 0, x_55); +x_37 = lean_uint32_div(x_35, x_36); +x_38 = lean_uint32_to_nat(x_37); +x_39 = l_Lean_mkRawNatLit(x_38); +x_40 = l_UInt32_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179____lambda__1___closed__3; +lean_inc(x_39); +x_41 = l_Lean_Expr_app___override(x_40, x_39); +x_42 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__4; +x_43 = l_UInt32_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179____lambda__1___closed__1; +x_44 = l_Lean_mkApp3(x_42, x_43, x_39, x_41); +x_45 = lean_box(0); +x_46 = 0; +x_47 = 1; +x_48 = lean_alloc_ctor(0, 2, 5); +lean_ctor_set(x_48, 0, x_44); +lean_ctor_set(x_48, 1, x_45); +lean_ctor_set_uint32(x_48, sizeof(void*)*2, x_46); +lean_ctor_set_uint8(x_48, sizeof(void*)*2 + 4, x_47); +x_49 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_49, 0, x_48); +lean_ctor_set(x_24, 0, x_49); return x_24; } -} else { -lean_object* x_56; lean_object* x_57; lean_object* x_58; uint32_t x_59; lean_object* x_60; uint32_t x_61; uint32_t x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; uint32_t x_66; uint8_t x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; -x_56 = lean_ctor_get(x_24, 1); -lean_inc(x_56); +lean_object* x_50; lean_object* x_51; uint32_t x_52; uint32_t x_53; uint32_t 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; uint32_t x_63; uint8_t x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; +x_50 = lean_ctor_get(x_24, 1); +lean_inc(x_50); lean_dec(x_24); -x_57 = lean_ctor_get(x_25, 0); -lean_inc(x_57); +x_51 = lean_ctor_get(x_25, 0); +lean_inc(x_51); lean_dec(x_25); -x_58 = lean_ctor_get(x_22, 0); -lean_inc(x_58); -x_59 = lean_ctor_get_uint32(x_22, sizeof(void*)*1); -if (lean_is_exclusive(x_22)) { - lean_ctor_release(x_22, 0); - x_60 = x_22; -} else { - lean_dec_ref(x_22); - x_60 = lean_box(0); -} -x_61 = lean_ctor_get_uint32(x_57, sizeof(void*)*1); -lean_dec(x_57); -x_62 = lean_uint32_div(x_59, x_61); -if (lean_is_scalar(x_60)) { - x_63 = lean_alloc_ctor(0, 1, 4); -} else { - x_63 = x_60; -} -lean_ctor_set(x_63, 0, x_58); -lean_ctor_set_uint32(x_63, sizeof(void*)*1, x_62); -x_64 = l_UInt32_toExpr(x_63); -x_65 = lean_box(0); -x_66 = 0; -x_67 = 1; -x_68 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_68, 0, x_64); -lean_ctor_set(x_68, 1, x_65); -lean_ctor_set_uint32(x_68, sizeof(void*)*2, x_66); -lean_ctor_set_uint8(x_68, sizeof(void*)*2 + 4, x_67); -x_69 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_69, 0, x_68); -x_70 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_70, 0, x_69); -lean_ctor_set(x_70, 1, x_56); -return x_70; +x_52 = lean_unbox_uint32(x_22); +lean_dec(x_22); +x_53 = lean_unbox_uint32(x_51); +lean_dec(x_51); +x_54 = lean_uint32_div(x_52, x_53); +x_55 = lean_uint32_to_nat(x_54); +x_56 = l_Lean_mkRawNatLit(x_55); +x_57 = l_UInt32_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179____lambda__1___closed__3; +lean_inc(x_56); +x_58 = l_Lean_Expr_app___override(x_57, x_56); +x_59 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__4; +x_60 = l_UInt32_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179____lambda__1___closed__1; +x_61 = l_Lean_mkApp3(x_59, x_60, x_56, x_58); +x_62 = lean_box(0); +x_63 = 0; +x_64 = 1; +x_65 = lean_alloc_ctor(0, 2, 5); +lean_ctor_set(x_65, 0, x_61); +lean_ctor_set(x_65, 1, x_62); +lean_ctor_set_uint32(x_65, sizeof(void*)*2, x_63); +lean_ctor_set_uint8(x_65, sizeof(void*)*2 + 4, x_64); +x_66 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_66, 0, x_65); +x_67 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_67, 0, x_66); +lean_ctor_set(x_67, 1, x_50); +return x_67; } } } else { -uint8_t x_71; +uint8_t x_68; lean_dec(x_22); -x_71 = !lean_is_exclusive(x_24); -if (x_71 == 0) +x_68 = !lean_is_exclusive(x_24); +if (x_68 == 0) { return x_24; } else { -lean_object* x_72; lean_object* x_73; lean_object* x_74; -x_72 = lean_ctor_get(x_24, 0); -x_73 = lean_ctor_get(x_24, 1); -lean_inc(x_73); -lean_inc(x_72); +lean_object* x_69; lean_object* x_70; lean_object* x_71; +x_69 = lean_ctor_get(x_24, 0); +x_70 = lean_ctor_get(x_24, 1); +lean_inc(x_70); +lean_inc(x_69); lean_dec(x_24); -x_74 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_74, 0, x_72); -lean_ctor_set(x_74, 1, x_73); -return x_74; +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; } } } } else { -uint8_t x_75; +uint8_t x_72; lean_dec(x_9); lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_1); -x_75 = !lean_is_exclusive(x_13); -if (x_75 == 0) +x_72 = !lean_is_exclusive(x_13); +if (x_72 == 0) { return x_13; } else { -lean_object* x_76; lean_object* x_77; lean_object* x_78; -x_76 = lean_ctor_get(x_13, 0); -x_77 = lean_ctor_get(x_13, 1); -lean_inc(x_77); -lean_inc(x_76); +lean_object* x_73; lean_object* x_74; lean_object* x_75; +x_73 = lean_ctor_get(x_13, 0); +x_74 = lean_ctor_get(x_13, 1); +lean_inc(x_74); +lean_inc(x_73); lean_dec(x_13); -x_78 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_78, 0, x_76); -lean_ctor_set(x_78, 1, x_77); -return x_78; +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; } } } @@ -28759,7 +25032,7 @@ LEAN_EXPORT lean_object* l_UInt32_reduceDiv(lean_object* x_1, lean_object* x_2, _start: { lean_object* x_10; lean_object* x_11; uint8_t x_12; -x_10 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__469; +x_10 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__325; x_11 = lean_unsigned_to_nat(6u); x_12 = l_Lean_Expr_isAppOfArity(x_1, x_10, x_11); if (x_12 == 0) @@ -28773,7 +25046,7 @@ lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_13 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_13 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; x_14 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_14, 0, x_13); lean_ctor_set(x_14, 1, x_9); @@ -28803,77 +25076,77 @@ lean_dec(x_2); return x_11; } } -static lean_object* _init_l___regBuiltin_UInt32_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12618____closed__1() { +static lean_object* _init_l___regBuiltin_UInt32_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10833____closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_UInt32_fromExpr___closed__1; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__459; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__315; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt32_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12618____closed__2() { +static lean_object* _init_l___regBuiltin_UInt32_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10833____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt8_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9736____closed__3; -x_2 = l___regBuiltin_UInt32_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12498____closed__2; +x_1 = l___regBuiltin_UInt8_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8169____closed__3; +x_2 = l___regBuiltin_UInt32_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10713____closed__2; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt32_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12618____closed__3() { +static lean_object* _init_l___regBuiltin_UInt32_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10833____closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt32_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12618____closed__2; -x_2 = l___regBuiltin_UInt32_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12498____closed__2; +x_1 = l___regBuiltin_UInt32_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10833____closed__2; +x_2 = l___regBuiltin_UInt32_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10713____closed__2; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt32_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12618____closed__4() { +static lean_object* _init_l___regBuiltin_UInt32_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10833____closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt32_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12618____closed__3; -x_2 = l___regBuiltin_UInt32_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12498____closed__2; +x_1 = l___regBuiltin_UInt32_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10833____closed__3; +x_2 = l___regBuiltin_UInt32_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10713____closed__2; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt32_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12618____closed__5() { +static lean_object* _init_l___regBuiltin_UInt32_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10833____closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt32_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12618____closed__4; +x_1 = l___regBuiltin_UInt32_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10833____closed__4; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt32_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12618____closed__6() { +static lean_object* _init_l___regBuiltin_UInt32_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10833____closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt32_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12618____closed__5; +x_1 = l___regBuiltin_UInt32_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10833____closed__5; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt32_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12618____closed__7() { +static lean_object* _init_l___regBuiltin_UInt32_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10833____closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt32_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12618____closed__6; +x_1 = l___regBuiltin_UInt32_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10833____closed__6; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt32_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12618____closed__8() { +static lean_object* _init_l___regBuiltin_UInt32_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10833____closed__8() { _start: { lean_object* x_1; @@ -28881,37 +25154,37 @@ x_1 = lean_alloc_closure((void*)(l_UInt32_reduceDiv), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_UInt32_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12618_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_UInt32_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10833_(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_UInt32_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12618____closed__1; -x_3 = l___regBuiltin_UInt32_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12618____closed__7; -x_4 = l___regBuiltin_UInt32_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12618____closed__8; +x_2 = l___regBuiltin_UInt32_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10833____closed__1; +x_3 = l___regBuiltin_UInt32_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10833____closed__7; +x_4 = l___regBuiltin_UInt32_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10833____closed__8; x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); return x_5; } } -LEAN_EXPORT lean_object* l___regBuiltin_UInt32_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12620_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_UInt32_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10835_(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____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9618____closed__1; -x_3 = l___regBuiltin_UInt32_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12618____closed__1; +x_2 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8051____closed__1; +x_3 = l___regBuiltin_UInt32_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10833____closed__1; x_4 = 1; -x_5 = l___regBuiltin_UInt32_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12618____closed__8; +x_5 = l___regBuiltin_UInt32_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10833____closed__8; 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_UInt32_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12622_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_UInt32_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10837_(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____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9620____closed__1; -x_3 = l___regBuiltin_UInt32_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12618____closed__1; +x_2 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8053____closed__1; +x_3 = l___regBuiltin_UInt32_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10833____closed__1; x_4 = 1; -x_5 = l___regBuiltin_UInt32_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12618____closed__8; +x_5 = l___regBuiltin_UInt32_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10833____closed__8; x_6 = l_Lean_Meta_Simp_addSimprocBuiltinAttrCore(x_2, x_3, x_4, x_5, x_1); return x_6; } @@ -28929,6 +25202,7 @@ lean_inc(x_8); lean_inc(x_7); lean_inc(x_6); x_13 = l_UInt32_fromExpr(x_12, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_12); if (lean_obj_tag(x_13) == 0) { lean_object* x_14; @@ -28948,7 +25222,7 @@ if (x_15 == 0) lean_object* x_16; lean_object* x_17; x_16 = lean_ctor_get(x_13, 0); lean_dec(x_16); -x_17 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_17 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; lean_ctor_set(x_13, 0, x_17); return x_13; } @@ -28958,7 +25232,7 @@ lean_object* x_18; lean_object* x_19; lean_object* x_20; x_18 = lean_ctor_get(x_13, 1); lean_inc(x_18); lean_dec(x_13); -x_19 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_19 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; x_20 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_20, 0, x_19); lean_ctor_set(x_20, 1, x_18); @@ -28977,6 +25251,7 @@ lean_dec(x_14); x_23 = l_Lean_Expr_appArg_x21(x_1); lean_dec(x_1); x_24 = l_UInt32_fromExpr(x_23, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_21); +lean_dec(x_23); if (lean_obj_tag(x_24) == 0) { lean_object* x_25; @@ -28992,7 +25267,7 @@ if (x_26 == 0) lean_object* x_27; lean_object* x_28; x_27 = lean_ctor_get(x_24, 0); lean_dec(x_27); -x_28 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_28 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; lean_ctor_set(x_24, 0, x_28); return x_24; } @@ -29002,7 +25277,7 @@ lean_object* x_29; lean_object* x_30; lean_object* x_31; x_29 = lean_ctor_get(x_24, 1); lean_inc(x_29); lean_dec(x_24); -x_30 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_30 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; x_31 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_31, 0, x_30); lean_ctor_set(x_31, 1, x_29); @@ -29015,160 +25290,127 @@ uint8_t x_32; x_32 = !lean_is_exclusive(x_24); if (x_32 == 0) { -lean_object* x_33; lean_object* x_34; uint8_t x_35; +lean_object* x_33; lean_object* x_34; uint32_t x_35; uint32_t x_36; uint32_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; uint32_t x_46; uint8_t x_47; lean_object* x_48; lean_object* x_49; x_33 = lean_ctor_get(x_24, 0); lean_dec(x_33); x_34 = lean_ctor_get(x_25, 0); lean_inc(x_34); lean_dec(x_25); -x_35 = !lean_is_exclusive(x_22); -if (x_35 == 0) -{ -uint32_t x_36; uint32_t x_37; uint32_t x_38; lean_object* x_39; lean_object* x_40; uint32_t x_41; uint8_t x_42; lean_object* x_43; lean_object* x_44; -x_36 = lean_ctor_get_uint32(x_22, sizeof(void*)*1); -x_37 = lean_ctor_get_uint32(x_34, sizeof(void*)*1); -lean_dec(x_34); -x_38 = lean_uint32_mod(x_36, x_37); -lean_ctor_set_uint32(x_22, sizeof(void*)*1, x_38); -x_39 = l_UInt32_toExpr(x_22); -x_40 = lean_box(0); -x_41 = 0; -x_42 = 1; -x_43 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_43, 0, x_39); -lean_ctor_set(x_43, 1, x_40); -lean_ctor_set_uint32(x_43, sizeof(void*)*2, x_41); -lean_ctor_set_uint8(x_43, sizeof(void*)*2 + 4, x_42); -x_44 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_44, 0, x_43); -lean_ctor_set(x_24, 0, x_44); -return x_24; -} -else -{ -lean_object* x_45; uint32_t x_46; uint32_t x_47; uint32_t x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; uint32_t x_52; uint8_t x_53; lean_object* x_54; lean_object* x_55; -x_45 = lean_ctor_get(x_22, 0); -x_46 = lean_ctor_get_uint32(x_22, sizeof(void*)*1); -lean_inc(x_45); +x_35 = lean_unbox_uint32(x_22); lean_dec(x_22); -x_47 = lean_ctor_get_uint32(x_34, sizeof(void*)*1); +x_36 = lean_unbox_uint32(x_34); lean_dec(x_34); -x_48 = lean_uint32_mod(x_46, x_47); -x_49 = lean_alloc_ctor(0, 1, 4); -lean_ctor_set(x_49, 0, x_45); -lean_ctor_set_uint32(x_49, sizeof(void*)*1, x_48); -x_50 = l_UInt32_toExpr(x_49); -x_51 = lean_box(0); -x_52 = 0; -x_53 = 1; -x_54 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_54, 0, x_50); -lean_ctor_set(x_54, 1, x_51); -lean_ctor_set_uint32(x_54, sizeof(void*)*2, x_52); -lean_ctor_set_uint8(x_54, sizeof(void*)*2 + 4, x_53); -x_55 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_55, 0, x_54); -lean_ctor_set(x_24, 0, x_55); +x_37 = lean_uint32_mod(x_35, x_36); +x_38 = lean_uint32_to_nat(x_37); +x_39 = l_Lean_mkRawNatLit(x_38); +x_40 = l_UInt32_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179____lambda__1___closed__3; +lean_inc(x_39); +x_41 = l_Lean_Expr_app___override(x_40, x_39); +x_42 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__4; +x_43 = l_UInt32_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179____lambda__1___closed__1; +x_44 = l_Lean_mkApp3(x_42, x_43, x_39, x_41); +x_45 = lean_box(0); +x_46 = 0; +x_47 = 1; +x_48 = lean_alloc_ctor(0, 2, 5); +lean_ctor_set(x_48, 0, x_44); +lean_ctor_set(x_48, 1, x_45); +lean_ctor_set_uint32(x_48, sizeof(void*)*2, x_46); +lean_ctor_set_uint8(x_48, sizeof(void*)*2 + 4, x_47); +x_49 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_49, 0, x_48); +lean_ctor_set(x_24, 0, x_49); return x_24; } -} else { -lean_object* x_56; lean_object* x_57; lean_object* x_58; uint32_t x_59; lean_object* x_60; uint32_t x_61; uint32_t x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; uint32_t x_66; uint8_t x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; -x_56 = lean_ctor_get(x_24, 1); -lean_inc(x_56); +lean_object* x_50; lean_object* x_51; uint32_t x_52; uint32_t x_53; uint32_t 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; uint32_t x_63; uint8_t x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; +x_50 = lean_ctor_get(x_24, 1); +lean_inc(x_50); lean_dec(x_24); -x_57 = lean_ctor_get(x_25, 0); -lean_inc(x_57); +x_51 = lean_ctor_get(x_25, 0); +lean_inc(x_51); lean_dec(x_25); -x_58 = lean_ctor_get(x_22, 0); -lean_inc(x_58); -x_59 = lean_ctor_get_uint32(x_22, sizeof(void*)*1); -if (lean_is_exclusive(x_22)) { - lean_ctor_release(x_22, 0); - x_60 = x_22; -} else { - lean_dec_ref(x_22); - x_60 = lean_box(0); -} -x_61 = lean_ctor_get_uint32(x_57, sizeof(void*)*1); -lean_dec(x_57); -x_62 = lean_uint32_mod(x_59, x_61); -if (lean_is_scalar(x_60)) { - x_63 = lean_alloc_ctor(0, 1, 4); -} else { - x_63 = x_60; -} -lean_ctor_set(x_63, 0, x_58); -lean_ctor_set_uint32(x_63, sizeof(void*)*1, x_62); -x_64 = l_UInt32_toExpr(x_63); -x_65 = lean_box(0); -x_66 = 0; -x_67 = 1; -x_68 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_68, 0, x_64); -lean_ctor_set(x_68, 1, x_65); -lean_ctor_set_uint32(x_68, sizeof(void*)*2, x_66); -lean_ctor_set_uint8(x_68, sizeof(void*)*2 + 4, x_67); -x_69 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_69, 0, x_68); -x_70 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_70, 0, x_69); -lean_ctor_set(x_70, 1, x_56); -return x_70; +x_52 = lean_unbox_uint32(x_22); +lean_dec(x_22); +x_53 = lean_unbox_uint32(x_51); +lean_dec(x_51); +x_54 = lean_uint32_mod(x_52, x_53); +x_55 = lean_uint32_to_nat(x_54); +x_56 = l_Lean_mkRawNatLit(x_55); +x_57 = l_UInt32_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179____lambda__1___closed__3; +lean_inc(x_56); +x_58 = l_Lean_Expr_app___override(x_57, x_56); +x_59 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__4; +x_60 = l_UInt32_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179____lambda__1___closed__1; +x_61 = l_Lean_mkApp3(x_59, x_60, x_56, x_58); +x_62 = lean_box(0); +x_63 = 0; +x_64 = 1; +x_65 = lean_alloc_ctor(0, 2, 5); +lean_ctor_set(x_65, 0, x_61); +lean_ctor_set(x_65, 1, x_62); +lean_ctor_set_uint32(x_65, sizeof(void*)*2, x_63); +lean_ctor_set_uint8(x_65, sizeof(void*)*2 + 4, x_64); +x_66 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_66, 0, x_65); +x_67 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_67, 0, x_66); +lean_ctor_set(x_67, 1, x_50); +return x_67; } } } else { -uint8_t x_71; +uint8_t x_68; lean_dec(x_22); -x_71 = !lean_is_exclusive(x_24); -if (x_71 == 0) +x_68 = !lean_is_exclusive(x_24); +if (x_68 == 0) { return x_24; } else { -lean_object* x_72; lean_object* x_73; lean_object* x_74; -x_72 = lean_ctor_get(x_24, 0); -x_73 = lean_ctor_get(x_24, 1); -lean_inc(x_73); -lean_inc(x_72); +lean_object* x_69; lean_object* x_70; lean_object* x_71; +x_69 = lean_ctor_get(x_24, 0); +x_70 = lean_ctor_get(x_24, 1); +lean_inc(x_70); +lean_inc(x_69); lean_dec(x_24); -x_74 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_74, 0, x_72); -lean_ctor_set(x_74, 1, x_73); -return x_74; +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; } } } } else { -uint8_t x_75; +uint8_t x_72; lean_dec(x_9); lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_1); -x_75 = !lean_is_exclusive(x_13); -if (x_75 == 0) +x_72 = !lean_is_exclusive(x_13); +if (x_72 == 0) { return x_13; } else { -lean_object* x_76; lean_object* x_77; lean_object* x_78; -x_76 = lean_ctor_get(x_13, 0); -x_77 = lean_ctor_get(x_13, 1); -lean_inc(x_77); -lean_inc(x_76); +lean_object* x_73; lean_object* x_74; lean_object* x_75; +x_73 = lean_ctor_get(x_13, 0); +x_74 = lean_ctor_get(x_13, 1); +lean_inc(x_74); +lean_inc(x_73); lean_dec(x_13); -x_78 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_78, 0, x_76); -lean_ctor_set(x_78, 1, x_77); -return x_78; +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; } } } @@ -29177,7 +25419,7 @@ LEAN_EXPORT lean_object* l_UInt32_reduceMod(lean_object* x_1, lean_object* x_2, _start: { lean_object* x_10; lean_object* x_11; uint8_t x_12; -x_10 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__482; +x_10 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__338; x_11 = lean_unsigned_to_nat(6u); x_12 = l_Lean_Expr_isAppOfArity(x_1, x_10, x_11); if (x_12 == 0) @@ -29191,7 +25433,7 @@ lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_13 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_13 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; x_14 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_14, 0, x_13); lean_ctor_set(x_14, 1, x_9); @@ -29221,77 +25463,77 @@ lean_dec(x_2); return x_11; } } -static lean_object* _init_l___regBuiltin_UInt32_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12658____closed__1() { +static lean_object* _init_l___regBuiltin_UInt32_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10873____closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_UInt32_fromExpr___closed__1; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__472; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__328; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt32_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12658____closed__2() { +static lean_object* _init_l___regBuiltin_UInt32_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10873____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt8_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9776____closed__3; -x_2 = l___regBuiltin_UInt32_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12498____closed__2; +x_1 = l___regBuiltin_UInt8_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8209____closed__3; +x_2 = l___regBuiltin_UInt32_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10713____closed__2; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt32_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12658____closed__3() { +static lean_object* _init_l___regBuiltin_UInt32_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10873____closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt32_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12658____closed__2; -x_2 = l___regBuiltin_UInt32_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12498____closed__2; +x_1 = l___regBuiltin_UInt32_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10873____closed__2; +x_2 = l___regBuiltin_UInt32_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10713____closed__2; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt32_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12658____closed__4() { +static lean_object* _init_l___regBuiltin_UInt32_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10873____closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt32_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12658____closed__3; -x_2 = l___regBuiltin_UInt32_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12498____closed__2; +x_1 = l___regBuiltin_UInt32_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10873____closed__3; +x_2 = l___regBuiltin_UInt32_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10713____closed__2; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt32_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12658____closed__5() { +static lean_object* _init_l___regBuiltin_UInt32_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10873____closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt32_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12658____closed__4; +x_1 = l___regBuiltin_UInt32_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10873____closed__4; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt32_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12658____closed__6() { +static lean_object* _init_l___regBuiltin_UInt32_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10873____closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt32_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12658____closed__5; +x_1 = l___regBuiltin_UInt32_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10873____closed__5; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt32_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12658____closed__7() { +static lean_object* _init_l___regBuiltin_UInt32_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10873____closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt32_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12658____closed__6; +x_1 = l___regBuiltin_UInt32_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10873____closed__6; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt32_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12658____closed__8() { +static lean_object* _init_l___regBuiltin_UInt32_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10873____closed__8() { _start: { lean_object* x_1; @@ -29299,37 +25541,37 @@ x_1 = lean_alloc_closure((void*)(l_UInt32_reduceMod), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_UInt32_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12658_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_UInt32_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10873_(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_UInt32_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12658____closed__1; -x_3 = l___regBuiltin_UInt32_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12658____closed__7; -x_4 = l___regBuiltin_UInt32_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12658____closed__8; +x_2 = l___regBuiltin_UInt32_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10873____closed__1; +x_3 = l___regBuiltin_UInt32_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10873____closed__7; +x_4 = l___regBuiltin_UInt32_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10873____closed__8; x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); return x_5; } } -LEAN_EXPORT lean_object* l___regBuiltin_UInt32_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12660_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_UInt32_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10875_(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____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9618____closed__1; -x_3 = l___regBuiltin_UInt32_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12658____closed__1; +x_2 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8051____closed__1; +x_3 = l___regBuiltin_UInt32_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10873____closed__1; x_4 = 1; -x_5 = l___regBuiltin_UInt32_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12658____closed__8; +x_5 = l___regBuiltin_UInt32_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10873____closed__8; 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_UInt32_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12662_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_UInt32_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10877_(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____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9620____closed__1; -x_3 = l___regBuiltin_UInt32_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12658____closed__1; +x_2 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8053____closed__1; +x_3 = l___regBuiltin_UInt32_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10873____closed__1; x_4 = 1; -x_5 = l___regBuiltin_UInt32_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12658____closed__8; +x_5 = l___regBuiltin_UInt32_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10873____closed__8; x_6 = l_Lean_Meta_Simp_addSimprocBuiltinAttrCore(x_2, x_3, x_4, x_5, x_1); return x_6; } @@ -29347,6 +25589,7 @@ lean_inc(x_8); lean_inc(x_7); lean_inc(x_6); x_13 = l_UInt32_fromExpr(x_12, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_12); if (lean_obj_tag(x_13) == 0) { lean_object* x_14; @@ -29366,7 +25609,7 @@ if (x_15 == 0) lean_object* x_16; lean_object* x_17; x_16 = lean_ctor_get(x_13, 0); lean_dec(x_16); -x_17 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_17 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; lean_ctor_set(x_13, 0, x_17); return x_13; } @@ -29376,7 +25619,7 @@ lean_object* x_18; lean_object* x_19; lean_object* x_20; x_18 = lean_ctor_get(x_13, 1); lean_inc(x_18); lean_dec(x_13); -x_19 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_19 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; x_20 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_20, 0, x_19); lean_ctor_set(x_20, 1, x_18); @@ -29398,6 +25641,7 @@ lean_inc(x_8); lean_inc(x_7); lean_inc(x_6); x_24 = l_UInt32_fromExpr(x_23, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_21); +lean_dec(x_23); if (lean_obj_tag(x_24) == 0) { lean_object* x_25; @@ -29418,7 +25662,7 @@ if (x_26 == 0) lean_object* x_27; lean_object* x_28; x_27 = lean_ctor_get(x_24, 0); lean_dec(x_27); -x_28 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_28 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; lean_ctor_set(x_24, 0, x_28); return x_24; } @@ -29428,7 +25672,7 @@ lean_object* x_29; lean_object* x_30; lean_object* x_31; x_29 = lean_ctor_get(x_24, 1); lean_inc(x_29); lean_dec(x_24); -x_30 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_30 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; x_31 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_31, 0, x_30); lean_ctor_set(x_31, 1, x_29); @@ -29444,9 +25688,9 @@ lean_dec(x_24); x_33 = lean_ctor_get(x_25, 0); lean_inc(x_33); lean_dec(x_25); -x_34 = lean_ctor_get_uint32(x_22, sizeof(void*)*1); +x_34 = lean_unbox_uint32(x_22); lean_dec(x_22); -x_35 = lean_ctor_get_uint32(x_33, sizeof(void*)*1); +x_35 = lean_unbox_uint32(x_33); lean_dec(x_33); x_36 = lean_uint32_dec_lt(x_34, x_35); x_37 = l_Lean_Meta_Simp_evalPropStep(x_1, x_36, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_32); @@ -29516,7 +25760,7 @@ LEAN_EXPORT lean_object* l_UInt32_reduceLT(lean_object* x_1, lean_object* x_2, l _start: { lean_object* x_10; lean_object* x_11; uint8_t x_12; -x_10 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__495; +x_10 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__351; x_11 = lean_unsigned_to_nat(4u); x_12 = l_Lean_Expr_isAppOfArity(x_1, x_10, x_11); if (x_12 == 0) @@ -29530,7 +25774,7 @@ lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_13 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_13 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; x_14 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_14, 0, x_13); lean_ctor_set(x_14, 1, x_9); @@ -29560,57 +25804,57 @@ lean_dec(x_2); return x_11; } } -static lean_object* _init_l___regBuiltin_UInt32_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12699____closed__1() { +static lean_object* _init_l___regBuiltin_UInt32_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10914____closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_UInt32_fromExpr___closed__1; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__485; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__341; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt32_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12699____closed__2() { +static lean_object* _init_l___regBuiltin_UInt32_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10914____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt8_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9817____closed__4; -x_2 = l___regBuiltin_UInt32_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12498____closed__2; +x_1 = l___regBuiltin_UInt8_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8250____closed__4; +x_2 = l___regBuiltin_UInt32_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10713____closed__2; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt32_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12699____closed__3() { +static lean_object* _init_l___regBuiltin_UInt32_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10914____closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt32_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12699____closed__2; +x_1 = l___regBuiltin_UInt32_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10914____closed__2; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt32_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12699____closed__4() { +static lean_object* _init_l___regBuiltin_UInt32_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10914____closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt32_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12699____closed__3; +x_1 = l___regBuiltin_UInt32_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10914____closed__3; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt32_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12699____closed__5() { +static lean_object* _init_l___regBuiltin_UInt32_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10914____closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt32_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12699____closed__4; +x_1 = l___regBuiltin_UInt32_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10914____closed__4; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt32_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12699____closed__6() { +static lean_object* _init_l___regBuiltin_UInt32_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10914____closed__6() { _start: { lean_object* x_1; @@ -29618,37 +25862,37 @@ x_1 = lean_alloc_closure((void*)(l_UInt32_reduceLT), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_UInt32_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12699_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_UInt32_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10914_(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_UInt32_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12699____closed__1; -x_3 = l___regBuiltin_UInt32_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12699____closed__5; -x_4 = l___regBuiltin_UInt32_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12699____closed__6; +x_2 = l___regBuiltin_UInt32_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10914____closed__1; +x_3 = l___regBuiltin_UInt32_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10914____closed__5; +x_4 = l___regBuiltin_UInt32_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10914____closed__6; x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); return x_5; } } -LEAN_EXPORT lean_object* l___regBuiltin_UInt32_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12701_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_UInt32_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10916_(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____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9618____closed__1; -x_3 = l___regBuiltin_UInt32_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12699____closed__1; +x_2 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8051____closed__1; +x_3 = l___regBuiltin_UInt32_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10914____closed__1; x_4 = 1; -x_5 = l___regBuiltin_UInt32_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12699____closed__6; +x_5 = l___regBuiltin_UInt32_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10914____closed__6; 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_UInt32_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12703_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_UInt32_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10918_(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____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9620____closed__1; -x_3 = l___regBuiltin_UInt32_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12699____closed__1; +x_2 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8053____closed__1; +x_3 = l___regBuiltin_UInt32_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10914____closed__1; x_4 = 1; -x_5 = l___regBuiltin_UInt32_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12699____closed__6; +x_5 = l___regBuiltin_UInt32_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10914____closed__6; x_6 = l_Lean_Meta_Simp_addSimprocBuiltinAttrCore(x_2, x_3, x_4, x_5, x_1); return x_6; } @@ -29666,6 +25910,7 @@ lean_inc(x_8); lean_inc(x_7); lean_inc(x_6); x_13 = l_UInt32_fromExpr(x_12, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_12); if (lean_obj_tag(x_13) == 0) { lean_object* x_14; @@ -29685,7 +25930,7 @@ if (x_15 == 0) lean_object* x_16; lean_object* x_17; x_16 = lean_ctor_get(x_13, 0); lean_dec(x_16); -x_17 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_17 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; lean_ctor_set(x_13, 0, x_17); return x_13; } @@ -29695,7 +25940,7 @@ lean_object* x_18; lean_object* x_19; lean_object* x_20; x_18 = lean_ctor_get(x_13, 1); lean_inc(x_18); lean_dec(x_13); -x_19 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_19 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; x_20 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_20, 0, x_19); lean_ctor_set(x_20, 1, x_18); @@ -29717,6 +25962,7 @@ lean_inc(x_8); lean_inc(x_7); lean_inc(x_6); x_24 = l_UInt32_fromExpr(x_23, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_21); +lean_dec(x_23); if (lean_obj_tag(x_24) == 0) { lean_object* x_25; @@ -29737,7 +25983,7 @@ if (x_26 == 0) lean_object* x_27; lean_object* x_28; x_27 = lean_ctor_get(x_24, 0); lean_dec(x_27); -x_28 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_28 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; lean_ctor_set(x_24, 0, x_28); return x_24; } @@ -29747,7 +25993,7 @@ lean_object* x_29; lean_object* x_30; lean_object* x_31; x_29 = lean_ctor_get(x_24, 1); lean_inc(x_29); lean_dec(x_24); -x_30 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_30 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; x_31 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_31, 0, x_30); lean_ctor_set(x_31, 1, x_29); @@ -29763,9 +26009,9 @@ lean_dec(x_24); x_33 = lean_ctor_get(x_25, 0); lean_inc(x_33); lean_dec(x_25); -x_34 = lean_ctor_get_uint32(x_22, sizeof(void*)*1); +x_34 = lean_unbox_uint32(x_22); lean_dec(x_22); -x_35 = lean_ctor_get_uint32(x_33, sizeof(void*)*1); +x_35 = lean_unbox_uint32(x_33); lean_dec(x_33); x_36 = lean_uint32_dec_le(x_34, x_35); x_37 = l_Lean_Meta_Simp_evalPropStep(x_1, x_36, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_32); @@ -29835,7 +26081,7 @@ LEAN_EXPORT lean_object* l_UInt32_reduceLE(lean_object* x_1, lean_object* x_2, l _start: { lean_object* x_10; lean_object* x_11; uint8_t x_12; -x_10 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__509; +x_10 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__365; x_11 = lean_unsigned_to_nat(4u); x_12 = l_Lean_Expr_isAppOfArity(x_1, x_10, x_11); if (x_12 == 0) @@ -29849,7 +26095,7 @@ lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_13 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_13 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; x_14 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_14, 0, x_13); lean_ctor_set(x_14, 1, x_9); @@ -29879,57 +26125,57 @@ lean_dec(x_2); return x_11; } } -static lean_object* _init_l___regBuiltin_UInt32_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12740____closed__1() { +static lean_object* _init_l___regBuiltin_UInt32_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10955____closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_UInt32_fromExpr___closed__1; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__499; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__355; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt32_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12740____closed__2() { +static lean_object* _init_l___regBuiltin_UInt32_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10955____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt8_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9858____closed__3; -x_2 = l___regBuiltin_UInt32_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12498____closed__2; +x_1 = l___regBuiltin_UInt8_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8291____closed__3; +x_2 = l___regBuiltin_UInt32_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10713____closed__2; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt32_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12740____closed__3() { +static lean_object* _init_l___regBuiltin_UInt32_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10955____closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt32_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12740____closed__2; +x_1 = l___regBuiltin_UInt32_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10955____closed__2; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt32_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12740____closed__4() { +static lean_object* _init_l___regBuiltin_UInt32_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10955____closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt32_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12740____closed__3; +x_1 = l___regBuiltin_UInt32_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10955____closed__3; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt32_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12740____closed__5() { +static lean_object* _init_l___regBuiltin_UInt32_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10955____closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt32_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12740____closed__4; +x_1 = l___regBuiltin_UInt32_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10955____closed__4; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt32_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12740____closed__6() { +static lean_object* _init_l___regBuiltin_UInt32_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10955____closed__6() { _start: { lean_object* x_1; @@ -29937,37 +26183,37 @@ x_1 = lean_alloc_closure((void*)(l_UInt32_reduceLE), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_UInt32_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12740_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_UInt32_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10955_(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_UInt32_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12740____closed__1; -x_3 = l___regBuiltin_UInt32_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12740____closed__5; -x_4 = l___regBuiltin_UInt32_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12740____closed__6; +x_2 = l___regBuiltin_UInt32_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10955____closed__1; +x_3 = l___regBuiltin_UInt32_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10955____closed__5; +x_4 = l___regBuiltin_UInt32_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10955____closed__6; x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); return x_5; } } -LEAN_EXPORT lean_object* l___regBuiltin_UInt32_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12742_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_UInt32_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10957_(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____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9618____closed__1; -x_3 = l___regBuiltin_UInt32_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12740____closed__1; +x_2 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8051____closed__1; +x_3 = l___regBuiltin_UInt32_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10955____closed__1; x_4 = 1; -x_5 = l___regBuiltin_UInt32_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12740____closed__6; +x_5 = l___regBuiltin_UInt32_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10955____closed__6; 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_UInt32_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12744_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_UInt32_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10959_(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____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9620____closed__1; -x_3 = l___regBuiltin_UInt32_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12740____closed__1; +x_2 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8053____closed__1; +x_3 = l___regBuiltin_UInt32_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10955____closed__1; x_4 = 1; -x_5 = l___regBuiltin_UInt32_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12740____closed__6; +x_5 = l___regBuiltin_UInt32_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10955____closed__6; x_6 = l_Lean_Meta_Simp_addSimprocBuiltinAttrCore(x_2, x_3, x_4, x_5, x_1); return x_6; } @@ -29985,6 +26231,7 @@ lean_inc(x_8); lean_inc(x_7); lean_inc(x_6); x_13 = l_UInt32_fromExpr(x_12, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_12); if (lean_obj_tag(x_13) == 0) { lean_object* x_14; @@ -30004,7 +26251,7 @@ if (x_15 == 0) lean_object* x_16; lean_object* x_17; x_16 = lean_ctor_get(x_13, 0); lean_dec(x_16); -x_17 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_17 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; lean_ctor_set(x_13, 0, x_17); return x_13; } @@ -30014,7 +26261,7 @@ lean_object* x_18; lean_object* x_19; lean_object* x_20; x_18 = lean_ctor_get(x_13, 1); lean_inc(x_18); lean_dec(x_13); -x_19 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_19 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; x_20 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_20, 0, x_19); lean_ctor_set(x_20, 1, x_18); @@ -30036,6 +26283,7 @@ lean_inc(x_8); lean_inc(x_7); lean_inc(x_6); x_24 = l_UInt32_fromExpr(x_23, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_21); +lean_dec(x_23); if (lean_obj_tag(x_24) == 0) { lean_object* x_25; @@ -30056,7 +26304,7 @@ if (x_26 == 0) lean_object* x_27; lean_object* x_28; x_27 = lean_ctor_get(x_24, 0); lean_dec(x_27); -x_28 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_28 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; lean_ctor_set(x_24, 0, x_28); return x_24; } @@ -30066,7 +26314,7 @@ lean_object* x_29; lean_object* x_30; lean_object* x_31; x_29 = lean_ctor_get(x_24, 1); lean_inc(x_29); lean_dec(x_24); -x_30 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_30 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; x_31 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_31, 0, x_30); lean_ctor_set(x_31, 1, x_29); @@ -30082,11 +26330,11 @@ lean_dec(x_24); x_33 = lean_ctor_get(x_25, 0); lean_inc(x_33); lean_dec(x_25); -x_34 = lean_ctor_get_uint32(x_22, sizeof(void*)*1); -lean_dec(x_22); -x_35 = lean_ctor_get_uint32(x_33, sizeof(void*)*1); +x_34 = lean_unbox_uint32(x_33); lean_dec(x_33); -x_36 = lean_uint32_dec_lt(x_35, x_34); +x_35 = lean_unbox_uint32(x_22); +lean_dec(x_22); +x_36 = lean_uint32_dec_lt(x_34, x_35); x_37 = l_Lean_Meta_Simp_evalPropStep(x_1, x_36, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_32); return x_37; } @@ -30154,7 +26402,7 @@ LEAN_EXPORT lean_object* l_UInt32_reduceGT(lean_object* x_1, lean_object* x_2, l _start: { lean_object* x_10; lean_object* x_11; uint8_t x_12; -x_10 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__522; +x_10 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__378; x_11 = lean_unsigned_to_nat(4u); x_12 = l_Lean_Expr_isAppOfArity(x_1, x_10, x_11); if (x_12 == 0) @@ -30168,7 +26416,7 @@ lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_13 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_13 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; x_14 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_14, 0, x_13); lean_ctor_set(x_14, 1, x_9); @@ -30198,17 +26446,17 @@ lean_dec(x_2); return x_11; } } -static lean_object* _init_l___regBuiltin_UInt32_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12781____closed__1() { +static lean_object* _init_l___regBuiltin_UInt32_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10996____closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_UInt32_fromExpr___closed__1; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__512; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__368; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt32_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12781____closed__2() { +static lean_object* _init_l___regBuiltin_UInt32_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10996____closed__2() { _start: { lean_object* x_1; @@ -30216,37 +26464,37 @@ x_1 = lean_alloc_closure((void*)(l_UInt32_reduceGT), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_UInt32_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12781_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_UInt32_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10996_(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_UInt32_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12781____closed__1; -x_3 = l___regBuiltin_UInt32_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12699____closed__5; -x_4 = l___regBuiltin_UInt32_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12781____closed__2; +x_2 = l___regBuiltin_UInt32_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10996____closed__1; +x_3 = l___regBuiltin_UInt32_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10914____closed__5; +x_4 = l___regBuiltin_UInt32_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10996____closed__2; x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); return x_5; } } -LEAN_EXPORT lean_object* l___regBuiltin_UInt32_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12783_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_UInt32_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10998_(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____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9618____closed__1; -x_3 = l___regBuiltin_UInt32_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12781____closed__1; +x_2 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8051____closed__1; +x_3 = l___regBuiltin_UInt32_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10996____closed__1; x_4 = 1; -x_5 = l___regBuiltin_UInt32_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12781____closed__2; +x_5 = l___regBuiltin_UInt32_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10996____closed__2; 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_UInt32_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12785_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_UInt32_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11000_(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____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9620____closed__1; -x_3 = l___regBuiltin_UInt32_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12781____closed__1; +x_2 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8053____closed__1; +x_3 = l___regBuiltin_UInt32_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10996____closed__1; x_4 = 1; -x_5 = l___regBuiltin_UInt32_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12781____closed__2; +x_5 = l___regBuiltin_UInt32_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10996____closed__2; x_6 = l_Lean_Meta_Simp_addSimprocBuiltinAttrCore(x_2, x_3, x_4, x_5, x_1); return x_6; } @@ -30264,6 +26512,7 @@ lean_inc(x_8); lean_inc(x_7); lean_inc(x_6); x_13 = l_UInt32_fromExpr(x_12, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_12); if (lean_obj_tag(x_13) == 0) { lean_object* x_14; @@ -30283,7 +26532,7 @@ if (x_15 == 0) lean_object* x_16; lean_object* x_17; x_16 = lean_ctor_get(x_13, 0); lean_dec(x_16); -x_17 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_17 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; lean_ctor_set(x_13, 0, x_17); return x_13; } @@ -30293,7 +26542,7 @@ lean_object* x_18; lean_object* x_19; lean_object* x_20; x_18 = lean_ctor_get(x_13, 1); lean_inc(x_18); lean_dec(x_13); -x_19 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_19 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; x_20 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_20, 0, x_19); lean_ctor_set(x_20, 1, x_18); @@ -30315,6 +26564,7 @@ lean_inc(x_8); lean_inc(x_7); lean_inc(x_6); x_24 = l_UInt32_fromExpr(x_23, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_21); +lean_dec(x_23); if (lean_obj_tag(x_24) == 0) { lean_object* x_25; @@ -30335,7 +26585,7 @@ if (x_26 == 0) lean_object* x_27; lean_object* x_28; x_27 = lean_ctor_get(x_24, 0); lean_dec(x_27); -x_28 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_28 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; lean_ctor_set(x_24, 0, x_28); return x_24; } @@ -30345,7 +26595,7 @@ lean_object* x_29; lean_object* x_30; lean_object* x_31; x_29 = lean_ctor_get(x_24, 1); lean_inc(x_29); lean_dec(x_24); -x_30 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_30 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; x_31 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_31, 0, x_30); lean_ctor_set(x_31, 1, x_29); @@ -30361,11 +26611,11 @@ lean_dec(x_24); x_33 = lean_ctor_get(x_25, 0); lean_inc(x_33); lean_dec(x_25); -x_34 = lean_ctor_get_uint32(x_22, sizeof(void*)*1); -lean_dec(x_22); -x_35 = lean_ctor_get_uint32(x_33, sizeof(void*)*1); +x_34 = lean_unbox_uint32(x_33); lean_dec(x_33); -x_36 = lean_uint32_dec_le(x_35, x_34); +x_35 = lean_unbox_uint32(x_22); +lean_dec(x_22); +x_36 = lean_uint32_dec_le(x_34, x_35); x_37 = l_Lean_Meta_Simp_evalPropStep(x_1, x_36, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_32); return x_37; } @@ -30433,7 +26683,7 @@ LEAN_EXPORT lean_object* l_UInt32_reduceGE(lean_object* x_1, lean_object* x_2, l _start: { lean_object* x_10; lean_object* x_11; uint8_t x_12; -x_10 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__535; +x_10 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__391; x_11 = lean_unsigned_to_nat(4u); x_12 = l_Lean_Expr_isAppOfArity(x_1, x_10, x_11); if (x_12 == 0) @@ -30447,7 +26697,7 @@ lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_13 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_13 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; x_14 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_14, 0, x_13); lean_ctor_set(x_14, 1, x_9); @@ -30477,17 +26727,17 @@ lean_dec(x_2); return x_11; } } -static lean_object* _init_l___regBuiltin_UInt32_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12822____closed__1() { +static lean_object* _init_l___regBuiltin_UInt32_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11037____closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_UInt32_fromExpr___closed__1; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__525; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__381; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt32_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12822____closed__2() { +static lean_object* _init_l___regBuiltin_UInt32_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11037____closed__2() { _start: { lean_object* x_1; @@ -30495,42 +26745,42 @@ x_1 = lean_alloc_closure((void*)(l_UInt32_reduceGE), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_UInt32_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12822_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_UInt32_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11037_(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_UInt32_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12822____closed__1; -x_3 = l___regBuiltin_UInt32_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12740____closed__5; -x_4 = l___regBuiltin_UInt32_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12822____closed__2; +x_2 = l___regBuiltin_UInt32_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11037____closed__1; +x_3 = l___regBuiltin_UInt32_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10955____closed__5; +x_4 = l___regBuiltin_UInt32_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11037____closed__2; x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); return x_5; } } -LEAN_EXPORT lean_object* l___regBuiltin_UInt32_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12824_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_UInt32_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11039_(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____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9618____closed__1; -x_3 = l___regBuiltin_UInt32_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12822____closed__1; +x_2 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8051____closed__1; +x_3 = l___regBuiltin_UInt32_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11037____closed__1; x_4 = 1; -x_5 = l___regBuiltin_UInt32_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12822____closed__2; +x_5 = l___regBuiltin_UInt32_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11037____closed__2; 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_UInt32_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12826_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_UInt32_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11041_(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____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9620____closed__1; -x_3 = l___regBuiltin_UInt32_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12822____closed__1; +x_2 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8053____closed__1; +x_3 = l___regBuiltin_UInt32_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11037____closed__1; x_4 = 1; -x_5 = l___regBuiltin_UInt32_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12822____closed__2; +x_5 = l___regBuiltin_UInt32_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11037____closed__2; 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_UInt32_reduceEq____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860____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) { +LEAN_EXPORT lean_object* l_UInt32_reduceEq____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179____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; @@ -30543,6 +26793,7 @@ lean_inc(x_8); lean_inc(x_7); lean_inc(x_6); x_13 = l_UInt32_fromExpr(x_12, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_12); if (lean_obj_tag(x_13) == 0) { lean_object* x_14; @@ -30562,7 +26813,7 @@ if (x_15 == 0) lean_object* x_16; lean_object* x_17; x_16 = lean_ctor_get(x_13, 0); lean_dec(x_16); -x_17 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_17 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; lean_ctor_set(x_13, 0, x_17); return x_13; } @@ -30572,7 +26823,7 @@ lean_object* x_18; lean_object* x_19; lean_object* x_20; x_18 = lean_ctor_get(x_13, 1); lean_inc(x_18); lean_dec(x_13); -x_19 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_19 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; x_20 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_20, 0, x_19); lean_ctor_set(x_20, 1, x_18); @@ -30594,6 +26845,7 @@ lean_inc(x_8); lean_inc(x_7); lean_inc(x_6); x_24 = l_UInt32_fromExpr(x_23, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_21); +lean_dec(x_23); if (lean_obj_tag(x_24) == 0) { lean_object* x_25; @@ -30614,7 +26866,7 @@ if (x_26 == 0) lean_object* x_27; lean_object* x_28; x_27 = lean_ctor_get(x_24, 0); lean_dec(x_27); -x_28 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_28 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; lean_ctor_set(x_24, 0, x_28); return x_24; } @@ -30624,7 +26876,7 @@ lean_object* x_29; lean_object* x_30; lean_object* x_31; x_29 = lean_ctor_get(x_24, 1); lean_inc(x_29); lean_dec(x_24); -x_30 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_30 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; x_31 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_31, 0, x_30); lean_ctor_set(x_31, 1, x_29); @@ -30640,9 +26892,9 @@ lean_dec(x_24); x_33 = lean_ctor_get(x_25, 0); lean_inc(x_33); lean_dec(x_25); -x_34 = lean_ctor_get_uint32(x_22, sizeof(void*)*1); +x_34 = lean_unbox_uint32(x_22); lean_dec(x_22); -x_35 = lean_ctor_get_uint32(x_33, sizeof(void*)*1); +x_35 = lean_unbox_uint32(x_33); lean_dec(x_33); x_36 = lean_uint32_dec_eq(x_34, x_35); x_37 = l_Lean_Meta_Simp_evalPropStep(x_1, x_36, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_32); @@ -30708,11 +26960,11 @@ return x_45; } } } -LEAN_EXPORT lean_object* l_UInt32_reduceEq____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860_(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_EXPORT lean_object* l_UInt32_reduceEq____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179_(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; uint8_t x_12; -x_10 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__546; +x_10 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__402; x_11 = lean_unsigned_to_nat(3u); x_12 = l_Lean_Expr_isAppOfArity(x_1, x_10, x_11); if (x_12 == 0) @@ -30726,7 +26978,7 @@ lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_13 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_13 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; x_14 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_14, 0, x_13); lean_ctor_set(x_14, 1, x_9); @@ -30736,7 +26988,7 @@ else { lean_object* x_15; lean_object* x_16; x_15 = lean_box(0); -x_16 = l_UInt32_reduceEq____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860____lambda__1(x_1, x_15, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_16 = l_UInt32_reduceEq____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179____lambda__1(x_1, x_15, 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); @@ -30744,11 +26996,11 @@ return x_16; } } } -LEAN_EXPORT lean_object* l_UInt32_reduceEq____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860____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) { +LEAN_EXPORT lean_object* l_UInt32_reduceEq____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179____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_UInt32_reduceEq____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860____lambda__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_11 = l_UInt32_reduceEq____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179____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); @@ -30756,180 +27008,180 @@ lean_dec(x_2); return x_11; } } -static lean_object* _init_l___regBuiltin_UInt32_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12863____closed__1() { +static lean_object* _init_l___regBuiltin_UInt32_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11078____closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_UInt32_fromExpr___closed__2; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__538; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__394; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt32_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12863____closed__2() { +static lean_object* _init_l___regBuiltin_UInt32_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11078____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt32_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12863____closed__1; -x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__2; +x_1 = l___regBuiltin_UInt32_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11078____closed__1; +x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__2; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt32_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12863____closed__3() { +static lean_object* _init_l___regBuiltin_UInt32_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11078____closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt32_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12863____closed__2; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__18; +x_1 = l___regBuiltin_UInt32_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11078____closed__2; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__12; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt32_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12863____closed__4() { +static lean_object* _init_l___regBuiltin_UInt32_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11078____closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt32_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12863____closed__3; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__90; +x_1 = l___regBuiltin_UInt32_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11078____closed__3; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__57; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt32_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12863____closed__5() { +static lean_object* _init_l___regBuiltin_UInt32_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11078____closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt32_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12863____closed__4; -x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__6; +x_1 = l___regBuiltin_UInt32_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11078____closed__4; +x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__6; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt32_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12863____closed__6() { +static lean_object* _init_l___regBuiltin_UInt32_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11078____closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt32_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12863____closed__5; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__91; +x_1 = l___regBuiltin_UInt32_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11078____closed__5; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__58; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt32_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12863____closed__7() { +static lean_object* _init_l___regBuiltin_UInt32_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11078____closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt32_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12863____closed__6; -x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__9; +x_1 = l___regBuiltin_UInt32_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11078____closed__6; +x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__9; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt32_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12863____closed__8() { +static lean_object* _init_l___regBuiltin_UInt32_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11078____closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt32_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12863____closed__7; -x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__11; +x_1 = l___regBuiltin_UInt32_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11078____closed__7; +x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__11; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt32_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12863____closed__9() { +static lean_object* _init_l___regBuiltin_UInt32_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11078____closed__9() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt32_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12863____closed__8; -x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__13; +x_1 = l___regBuiltin_UInt32_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11078____closed__8; +x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__13; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt32_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12863____closed__10() { +static lean_object* _init_l___regBuiltin_UInt32_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11078____closed__10() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt32_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12863____closed__9; -x_2 = lean_unsigned_to_nat(11860u); +x_1 = l___regBuiltin_UInt32_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11078____closed__9; +x_2 = lean_unsigned_to_nat(10179u); x_3 = l_Lean_Name_num___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt32_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12863____closed__11() { +static lean_object* _init_l___regBuiltin_UInt32_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11078____closed__11() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__18; -x_2 = l___regBuiltin_UInt32_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12498____closed__2; +x_1 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__18; +x_2 = l___regBuiltin_UInt32_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10713____closed__2; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt32_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12863____closed__12() { +static lean_object* _init_l___regBuiltin_UInt32_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11078____closed__12() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt32_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12863____closed__11; +x_1 = l___regBuiltin_UInt32_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11078____closed__11; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt32_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12863____closed__13() { +static lean_object* _init_l___regBuiltin_UInt32_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11078____closed__13() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt32_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12863____closed__12; +x_1 = l___regBuiltin_UInt32_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11078____closed__12; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt32_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12863____closed__14() { +static lean_object* _init_l___regBuiltin_UInt32_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11078____closed__14() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_UInt32_reduceEq____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860_), 9, 0); +x_1 = lean_alloc_closure((void*)(l_UInt32_reduceEq____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179_), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_UInt32_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12863_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_UInt32_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11078_(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_UInt32_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12863____closed__10; -x_3 = l___regBuiltin_UInt32_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12863____closed__13; -x_4 = l___regBuiltin_UInt32_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12863____closed__14; +x_2 = l___regBuiltin_UInt32_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11078____closed__10; +x_3 = l___regBuiltin_UInt32_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11078____closed__13; +x_4 = l___regBuiltin_UInt32_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11078____closed__14; x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); return x_5; } } -LEAN_EXPORT lean_object* l___regBuiltin_UInt32_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12865_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_UInt32_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11080_(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____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9618____closed__1; -x_3 = l___regBuiltin_UInt32_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12863____closed__10; +x_2 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8051____closed__1; +x_3 = l___regBuiltin_UInt32_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11078____closed__10; x_4 = 1; -x_5 = l___regBuiltin_UInt32_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12863____closed__14; +x_5 = l___regBuiltin_UInt32_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11078____closed__14; 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_UInt32_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12867_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_UInt32_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11082_(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____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9620____closed__1; -x_3 = l___regBuiltin_UInt32_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12863____closed__10; +x_2 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8053____closed__1; +x_3 = l___regBuiltin_UInt32_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11078____closed__10; x_4 = 1; -x_5 = l___regBuiltin_UInt32_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12863____closed__14; +x_5 = l___regBuiltin_UInt32_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11078____closed__14; 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_UInt32_reduceNe____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860____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) { +LEAN_EXPORT lean_object* l_UInt32_reduceNe____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179____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; @@ -30942,6 +27194,7 @@ lean_inc(x_8); lean_inc(x_7); lean_inc(x_6); x_13 = l_UInt32_fromExpr(x_12, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_12); if (lean_obj_tag(x_13) == 0) { lean_object* x_14; @@ -30961,7 +27214,7 @@ if (x_15 == 0) lean_object* x_16; lean_object* x_17; x_16 = lean_ctor_get(x_13, 0); lean_dec(x_16); -x_17 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_17 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; lean_ctor_set(x_13, 0, x_17); return x_13; } @@ -30971,7 +27224,7 @@ lean_object* x_18; lean_object* x_19; lean_object* x_20; x_18 = lean_ctor_get(x_13, 1); lean_inc(x_18); lean_dec(x_13); -x_19 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_19 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; x_20 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_20, 0, x_19); lean_ctor_set(x_20, 1, x_18); @@ -30993,6 +27246,7 @@ lean_inc(x_8); lean_inc(x_7); lean_inc(x_6); x_24 = l_UInt32_fromExpr(x_23, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_21); +lean_dec(x_23); if (lean_obj_tag(x_24) == 0) { lean_object* x_25; @@ -31013,7 +27267,7 @@ if (x_26 == 0) lean_object* x_27; lean_object* x_28; x_27 = lean_ctor_get(x_24, 0); lean_dec(x_27); -x_28 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_28 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; lean_ctor_set(x_24, 0, x_28); return x_24; } @@ -31023,7 +27277,7 @@ lean_object* x_29; lean_object* x_30; lean_object* x_31; x_29 = lean_ctor_get(x_24, 1); lean_inc(x_29); lean_dec(x_24); -x_30 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_30 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; x_31 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_31, 0, x_30); lean_ctor_set(x_31, 1, x_29); @@ -31039,9 +27293,9 @@ lean_dec(x_24); x_33 = lean_ctor_get(x_25, 0); lean_inc(x_33); lean_dec(x_25); -x_34 = lean_ctor_get_uint32(x_22, sizeof(void*)*1); +x_34 = lean_unbox_uint32(x_22); lean_dec(x_22); -x_35 = lean_ctor_get_uint32(x_33, sizeof(void*)*1); +x_35 = lean_unbox_uint32(x_33); lean_dec(x_33); x_36 = lean_uint32_dec_eq(x_34, x_35); x_37 = l_instDecidableNot___rarg(x_36); @@ -31108,11 +27362,11 @@ return x_46; } } } -LEAN_EXPORT lean_object* l_UInt32_reduceNe____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860_(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_EXPORT lean_object* l_UInt32_reduceNe____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179_(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; uint8_t x_12; -x_10 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__559; +x_10 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__416; x_11 = lean_unsigned_to_nat(3u); x_12 = l_Lean_Expr_isAppOfArity(x_1, x_10, x_11); if (x_12 == 0) @@ -31126,7 +27380,7 @@ lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_13 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_13 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; x_14 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_14, 0, x_13); lean_ctor_set(x_14, 1, x_9); @@ -31136,7 +27390,7 @@ else { lean_object* x_15; lean_object* x_16; x_15 = lean_box(0); -x_16 = l_UInt32_reduceNe____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860____lambda__1(x_1, x_15, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_16 = l_UInt32_reduceNe____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179____lambda__1(x_1, x_15, 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); @@ -31144,11 +27398,11 @@ return x_16; } } } -LEAN_EXPORT lean_object* l_UInt32_reduceNe____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860____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) { +LEAN_EXPORT lean_object* l_UInt32_reduceNe____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179____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_UInt32_reduceNe____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860____lambda__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_11 = l_UInt32_reduceNe____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179____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); @@ -31156,180 +27410,180 @@ lean_dec(x_2); return x_11; } } -static lean_object* _init_l___regBuiltin_UInt32_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12903____closed__1() { +static lean_object* _init_l___regBuiltin_UInt32_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11118____closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_UInt32_fromExpr___closed__2; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__551; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__408; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt32_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12903____closed__2() { +static lean_object* _init_l___regBuiltin_UInt32_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11118____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt32_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12903____closed__1; -x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__2; +x_1 = l___regBuiltin_UInt32_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11118____closed__1; +x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__2; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt32_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12903____closed__3() { +static lean_object* _init_l___regBuiltin_UInt32_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11118____closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt32_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12903____closed__2; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__18; +x_1 = l___regBuiltin_UInt32_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11118____closed__2; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__12; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt32_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12903____closed__4() { +static lean_object* _init_l___regBuiltin_UInt32_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11118____closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt32_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12903____closed__3; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__90; +x_1 = l___regBuiltin_UInt32_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11118____closed__3; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__57; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt32_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12903____closed__5() { +static lean_object* _init_l___regBuiltin_UInt32_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11118____closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt32_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12903____closed__4; -x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__6; +x_1 = l___regBuiltin_UInt32_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11118____closed__4; +x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__6; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt32_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12903____closed__6() { +static lean_object* _init_l___regBuiltin_UInt32_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11118____closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt32_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12903____closed__5; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__91; +x_1 = l___regBuiltin_UInt32_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11118____closed__5; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__58; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt32_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12903____closed__7() { +static lean_object* _init_l___regBuiltin_UInt32_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11118____closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt32_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12903____closed__6; -x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__9; +x_1 = l___regBuiltin_UInt32_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11118____closed__6; +x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__9; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt32_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12903____closed__8() { +static lean_object* _init_l___regBuiltin_UInt32_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11118____closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt32_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12903____closed__7; -x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__11; +x_1 = l___regBuiltin_UInt32_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11118____closed__7; +x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__11; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt32_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12903____closed__9() { +static lean_object* _init_l___regBuiltin_UInt32_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11118____closed__9() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt32_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12903____closed__8; -x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__13; +x_1 = l___regBuiltin_UInt32_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11118____closed__8; +x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__13; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt32_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12903____closed__10() { +static lean_object* _init_l___regBuiltin_UInt32_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11118____closed__10() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt32_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12903____closed__9; -x_2 = lean_unsigned_to_nat(11860u); +x_1 = l___regBuiltin_UInt32_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11118____closed__9; +x_2 = lean_unsigned_to_nat(10179u); x_3 = l_Lean_Name_num___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt32_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12903____closed__11() { +static lean_object* _init_l___regBuiltin_UInt32_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11118____closed__11() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10021____closed__15; -x_2 = l___regBuiltin_UInt32_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12498____closed__2; +x_1 = l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8454____closed__15; +x_2 = l___regBuiltin_UInt32_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10713____closed__2; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt32_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12903____closed__12() { +static lean_object* _init_l___regBuiltin_UInt32_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11118____closed__12() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt32_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12903____closed__11; +x_1 = l___regBuiltin_UInt32_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11118____closed__11; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt32_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12903____closed__13() { +static lean_object* _init_l___regBuiltin_UInt32_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11118____closed__13() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt32_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12903____closed__12; +x_1 = l___regBuiltin_UInt32_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11118____closed__12; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt32_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12903____closed__14() { +static lean_object* _init_l___regBuiltin_UInt32_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11118____closed__14() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_UInt32_reduceNe____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860_), 9, 0); +x_1 = lean_alloc_closure((void*)(l_UInt32_reduceNe____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179_), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_UInt32_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12903_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_UInt32_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11118_(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_UInt32_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12903____closed__10; -x_3 = l___regBuiltin_UInt32_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12903____closed__13; -x_4 = l___regBuiltin_UInt32_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12903____closed__14; +x_2 = l___regBuiltin_UInt32_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11118____closed__10; +x_3 = l___regBuiltin_UInt32_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11118____closed__13; +x_4 = l___regBuiltin_UInt32_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11118____closed__14; x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); return x_5; } } -LEAN_EXPORT lean_object* l___regBuiltin_UInt32_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12905_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_UInt32_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11120_(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____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9618____closed__1; -x_3 = l___regBuiltin_UInt32_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12903____closed__10; +x_2 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8051____closed__1; +x_3 = l___regBuiltin_UInt32_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11118____closed__10; x_4 = 1; -x_5 = l___regBuiltin_UInt32_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12903____closed__14; +x_5 = l___regBuiltin_UInt32_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11118____closed__14; 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_UInt32_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12907_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_UInt32_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11122_(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____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9620____closed__1; -x_3 = l___regBuiltin_UInt32_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12903____closed__10; +x_2 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8053____closed__1; +x_3 = l___regBuiltin_UInt32_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11118____closed__10; x_4 = 1; -x_5 = l___regBuiltin_UInt32_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12903____closed__14; +x_5 = l___regBuiltin_UInt32_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11118____closed__14; 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_UInt32_reduceBEq____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860____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) { +LEAN_EXPORT lean_object* l_UInt32_reduceBEq____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179____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; @@ -31342,6 +27596,7 @@ lean_inc(x_8); lean_inc(x_7); lean_inc(x_6); x_13 = l_UInt32_fromExpr(x_12, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_12); if (lean_obj_tag(x_13) == 0) { lean_object* x_14; @@ -31361,7 +27616,7 @@ if (x_15 == 0) lean_object* x_16; lean_object* x_17; x_16 = lean_ctor_get(x_13, 0); lean_dec(x_16); -x_17 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_17 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; lean_ctor_set(x_13, 0, x_17); return x_13; } @@ -31371,7 +27626,7 @@ lean_object* x_18; lean_object* x_19; lean_object* x_20; x_18 = lean_ctor_get(x_13, 1); lean_inc(x_18); lean_dec(x_13); -x_19 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_19 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; x_20 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_20, 0, x_19); lean_ctor_set(x_20, 1, x_18); @@ -31390,6 +27645,7 @@ lean_dec(x_14); x_23 = l_Lean_Expr_appArg_x21(x_1); lean_dec(x_1); x_24 = l_UInt32_fromExpr(x_23, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_21); +lean_dec(x_23); if (lean_obj_tag(x_24) == 0) { lean_object* x_25; @@ -31405,7 +27661,7 @@ if (x_26 == 0) lean_object* x_27; lean_object* x_28; x_27 = lean_ctor_get(x_24, 0); lean_dec(x_27); -x_28 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_28 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; lean_ctor_set(x_24, 0, x_28); return x_24; } @@ -31415,7 +27671,7 @@ lean_object* x_29; lean_object* x_30; lean_object* x_31; x_29 = lean_ctor_get(x_24, 1); lean_inc(x_29); lean_dec(x_24); -x_30 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_30 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; x_31 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_31, 0, x_30); lean_ctor_set(x_31, 1, x_29); @@ -31434,22 +27690,22 @@ lean_dec(x_33); x_34 = lean_ctor_get(x_25, 0); lean_inc(x_34); lean_dec(x_25); -x_35 = lean_ctor_get_uint32(x_22, sizeof(void*)*1); +x_35 = lean_unbox_uint32(x_22); lean_dec(x_22); -x_36 = lean_ctor_get_uint32(x_34, sizeof(void*)*1); +x_36 = lean_unbox_uint32(x_34); lean_dec(x_34); x_37 = lean_uint32_dec_eq(x_35, x_36); if (x_37 == 0) { lean_object* x_38; -x_38 = l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__5; +x_38 = l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__5; lean_ctor_set(x_24, 0, x_38); return x_24; } else { lean_object* x_39; -x_39 = l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__10; +x_39 = l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__10; lean_ctor_set(x_24, 0, x_39); return x_24; } @@ -31463,15 +27719,15 @@ lean_dec(x_24); x_41 = lean_ctor_get(x_25, 0); lean_inc(x_41); lean_dec(x_25); -x_42 = lean_ctor_get_uint32(x_22, sizeof(void*)*1); +x_42 = lean_unbox_uint32(x_22); lean_dec(x_22); -x_43 = lean_ctor_get_uint32(x_41, sizeof(void*)*1); +x_43 = lean_unbox_uint32(x_41); lean_dec(x_41); x_44 = lean_uint32_dec_eq(x_42, x_43); if (x_44 == 0) { lean_object* x_45; lean_object* x_46; -x_45 = l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__5; +x_45 = l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__5; x_46 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_46, 0, x_45); lean_ctor_set(x_46, 1, x_40); @@ -31480,7 +27736,7 @@ return x_46; else { lean_object* x_47; lean_object* x_48; -x_47 = l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__10; +x_47 = l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__10; x_48 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_48, 0, x_47); lean_ctor_set(x_48, 1, x_40); @@ -31543,11 +27799,11 @@ return x_56; } } } -LEAN_EXPORT lean_object* l_UInt32_reduceBEq____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860_(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_EXPORT lean_object* l_UInt32_reduceBEq____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179_(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; uint8_t x_12; -x_10 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__574; +x_10 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__431; x_11 = lean_unsigned_to_nat(4u); x_12 = l_Lean_Expr_isAppOfArity(x_1, x_10, x_11); if (x_12 == 0) @@ -31561,7 +27817,7 @@ lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_13 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_13 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; x_14 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_14, 0, x_13); lean_ctor_set(x_14, 1, x_9); @@ -31571,7 +27827,7 @@ else { lean_object* x_15; lean_object* x_16; x_15 = lean_box(0); -x_16 = l_UInt32_reduceBEq____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860____lambda__1(x_1, x_15, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_16 = l_UInt32_reduceBEq____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179____lambda__1(x_1, x_15, 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); @@ -31579,11 +27835,11 @@ return x_16; } } } -LEAN_EXPORT lean_object* l_UInt32_reduceBEq____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860____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) { +LEAN_EXPORT lean_object* l_UInt32_reduceBEq____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179____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_UInt32_reduceBEq____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860____lambda__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_11 = l_UInt32_reduceBEq____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179____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); @@ -31591,190 +27847,190 @@ lean_dec(x_2); return x_11; } } -static lean_object* _init_l___regBuiltin_UInt32_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12944____closed__1() { +static lean_object* _init_l___regBuiltin_UInt32_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11159____closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_UInt32_fromExpr___closed__2; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__564; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__421; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt32_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12944____closed__2() { +static lean_object* _init_l___regBuiltin_UInt32_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11159____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt32_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12944____closed__1; -x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__2; +x_1 = l___regBuiltin_UInt32_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11159____closed__1; +x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__2; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt32_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12944____closed__3() { +static lean_object* _init_l___regBuiltin_UInt32_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11159____closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt32_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12944____closed__2; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__18; +x_1 = l___regBuiltin_UInt32_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11159____closed__2; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__12; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt32_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12944____closed__4() { +static lean_object* _init_l___regBuiltin_UInt32_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11159____closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt32_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12944____closed__3; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__90; +x_1 = l___regBuiltin_UInt32_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11159____closed__3; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__57; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt32_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12944____closed__5() { +static lean_object* _init_l___regBuiltin_UInt32_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11159____closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt32_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12944____closed__4; -x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__6; +x_1 = l___regBuiltin_UInt32_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11159____closed__4; +x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__6; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt32_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12944____closed__6() { +static lean_object* _init_l___regBuiltin_UInt32_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11159____closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt32_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12944____closed__5; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__91; +x_1 = l___regBuiltin_UInt32_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11159____closed__5; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__58; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt32_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12944____closed__7() { +static lean_object* _init_l___regBuiltin_UInt32_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11159____closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt32_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12944____closed__6; -x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__9; +x_1 = l___regBuiltin_UInt32_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11159____closed__6; +x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__9; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt32_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12944____closed__8() { +static lean_object* _init_l___regBuiltin_UInt32_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11159____closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt32_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12944____closed__7; -x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__11; +x_1 = l___regBuiltin_UInt32_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11159____closed__7; +x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__11; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt32_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12944____closed__9() { +static lean_object* _init_l___regBuiltin_UInt32_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11159____closed__9() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt32_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12944____closed__8; -x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__13; +x_1 = l___regBuiltin_UInt32_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11159____closed__8; +x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__13; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt32_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12944____closed__10() { +static lean_object* _init_l___regBuiltin_UInt32_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11159____closed__10() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt32_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12944____closed__9; -x_2 = lean_unsigned_to_nat(11860u); +x_1 = l___regBuiltin_UInt32_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11159____closed__9; +x_2 = lean_unsigned_to_nat(10179u); x_3 = l_Lean_Name_num___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt32_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12944____closed__11() { +static lean_object* _init_l___regBuiltin_UInt32_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11159____closed__11() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10062____closed__12; -x_2 = l___regBuiltin_UInt32_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12498____closed__2; +x_1 = l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8495____closed__12; +x_2 = l___regBuiltin_UInt32_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10713____closed__2; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt32_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12944____closed__12() { +static lean_object* _init_l___regBuiltin_UInt32_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11159____closed__12() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt32_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12944____closed__11; +x_1 = l___regBuiltin_UInt32_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11159____closed__11; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt32_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12944____closed__13() { +static lean_object* _init_l___regBuiltin_UInt32_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11159____closed__13() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt32_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12944____closed__12; +x_1 = l___regBuiltin_UInt32_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11159____closed__12; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt32_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12944____closed__14() { +static lean_object* _init_l___regBuiltin_UInt32_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11159____closed__14() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt32_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12944____closed__13; +x_1 = l___regBuiltin_UInt32_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11159____closed__13; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt32_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12944____closed__15() { +static lean_object* _init_l___regBuiltin_UInt32_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11159____closed__15() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_UInt32_reduceBEq____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860_), 9, 0); +x_1 = lean_alloc_closure((void*)(l_UInt32_reduceBEq____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179_), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_UInt32_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12944_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_UInt32_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11159_(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_UInt32_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12944____closed__10; -x_3 = l___regBuiltin_UInt32_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12944____closed__14; -x_4 = l___regBuiltin_UInt32_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12944____closed__15; +x_2 = l___regBuiltin_UInt32_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11159____closed__10; +x_3 = l___regBuiltin_UInt32_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11159____closed__14; +x_4 = l___regBuiltin_UInt32_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11159____closed__15; x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); return x_5; } } -LEAN_EXPORT lean_object* l___regBuiltin_UInt32_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12946_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_UInt32_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11161_(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____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9618____closed__1; -x_3 = l___regBuiltin_UInt32_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12944____closed__10; +x_2 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8051____closed__1; +x_3 = l___regBuiltin_UInt32_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11159____closed__10; x_4 = 1; -x_5 = l___regBuiltin_UInt32_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12944____closed__15; +x_5 = l___regBuiltin_UInt32_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11159____closed__15; 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_UInt32_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12948_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_UInt32_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11163_(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____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9620____closed__1; -x_3 = l___regBuiltin_UInt32_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12944____closed__10; +x_2 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8053____closed__1; +x_3 = l___regBuiltin_UInt32_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11159____closed__10; x_4 = 1; -x_5 = l___regBuiltin_UInt32_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12944____closed__15; +x_5 = l___regBuiltin_UInt32_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11159____closed__15; 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_UInt32_reduceBNe____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860____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) { +LEAN_EXPORT lean_object* l_UInt32_reduceBNe____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179____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; @@ -31787,6 +28043,7 @@ lean_inc(x_8); lean_inc(x_7); lean_inc(x_6); x_13 = l_UInt32_fromExpr(x_12, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_12); if (lean_obj_tag(x_13) == 0) { lean_object* x_14; @@ -31806,7 +28063,7 @@ if (x_15 == 0) lean_object* x_16; lean_object* x_17; x_16 = lean_ctor_get(x_13, 0); lean_dec(x_16); -x_17 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_17 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; lean_ctor_set(x_13, 0, x_17); return x_13; } @@ -31816,7 +28073,7 @@ lean_object* x_18; lean_object* x_19; lean_object* x_20; x_18 = lean_ctor_get(x_13, 1); lean_inc(x_18); lean_dec(x_13); -x_19 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_19 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; x_20 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_20, 0, x_19); lean_ctor_set(x_20, 1, x_18); @@ -31835,6 +28092,7 @@ lean_dec(x_14); x_23 = l_Lean_Expr_appArg_x21(x_1); lean_dec(x_1); x_24 = l_UInt32_fromExpr(x_23, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_21); +lean_dec(x_23); if (lean_obj_tag(x_24) == 0) { lean_object* x_25; @@ -31850,7 +28108,7 @@ if (x_26 == 0) lean_object* x_27; lean_object* x_28; x_27 = lean_ctor_get(x_24, 0); lean_dec(x_27); -x_28 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_28 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; lean_ctor_set(x_24, 0, x_28); return x_24; } @@ -31860,7 +28118,7 @@ lean_object* x_29; lean_object* x_30; lean_object* x_31; x_29 = lean_ctor_get(x_24, 1); lean_inc(x_29); lean_dec(x_24); -x_30 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_30 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; x_31 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_31, 0, x_30); lean_ctor_set(x_31, 1, x_29); @@ -31879,22 +28137,22 @@ lean_dec(x_33); x_34 = lean_ctor_get(x_25, 0); lean_inc(x_34); lean_dec(x_25); -x_35 = lean_ctor_get_uint32(x_22, sizeof(void*)*1); +x_35 = lean_unbox_uint32(x_22); lean_dec(x_22); -x_36 = lean_ctor_get_uint32(x_34, sizeof(void*)*1); +x_36 = lean_unbox_uint32(x_34); lean_dec(x_34); x_37 = lean_uint32_dec_eq(x_35, x_36); if (x_37 == 0) { lean_object* x_38; -x_38 = l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__10; +x_38 = l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__10; lean_ctor_set(x_24, 0, x_38); return x_24; } else { lean_object* x_39; -x_39 = l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__5; +x_39 = l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__5; lean_ctor_set(x_24, 0, x_39); return x_24; } @@ -31908,15 +28166,15 @@ lean_dec(x_24); x_41 = lean_ctor_get(x_25, 0); lean_inc(x_41); lean_dec(x_25); -x_42 = lean_ctor_get_uint32(x_22, sizeof(void*)*1); +x_42 = lean_unbox_uint32(x_22); lean_dec(x_22); -x_43 = lean_ctor_get_uint32(x_41, sizeof(void*)*1); +x_43 = lean_unbox_uint32(x_41); lean_dec(x_41); x_44 = lean_uint32_dec_eq(x_42, x_43); if (x_44 == 0) { lean_object* x_45; lean_object* x_46; -x_45 = l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__10; +x_45 = l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__10; x_46 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_46, 0, x_45); lean_ctor_set(x_46, 1, x_40); @@ -31925,7 +28183,7 @@ return x_46; else { lean_object* x_47; lean_object* x_48; -x_47 = l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__5; +x_47 = l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__5; x_48 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_48, 0, x_47); lean_ctor_set(x_48, 1, x_40); @@ -31988,11 +28246,11 @@ return x_56; } } } -LEAN_EXPORT lean_object* l_UInt32_reduceBNe____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860_(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_EXPORT lean_object* l_UInt32_reduceBNe____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179_(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; uint8_t x_12; -x_10 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__585; +x_10 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__442; x_11 = lean_unsigned_to_nat(4u); x_12 = l_Lean_Expr_isAppOfArity(x_1, x_10, x_11); if (x_12 == 0) @@ -32006,7 +28264,7 @@ lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_13 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_13 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; x_14 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_14, 0, x_13); lean_ctor_set(x_14, 1, x_9); @@ -32016,7 +28274,7 @@ else { lean_object* x_15; lean_object* x_16; x_15 = lean_box(0); -x_16 = l_UInt32_reduceBNe____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860____lambda__1(x_1, x_15, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_16 = l_UInt32_reduceBNe____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179____lambda__1(x_1, x_15, 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); @@ -32024,11 +28282,11 @@ return x_16; } } } -LEAN_EXPORT lean_object* l_UInt32_reduceBNe____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860____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) { +LEAN_EXPORT lean_object* l_UInt32_reduceBNe____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179____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_UInt32_reduceBNe____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860____lambda__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_11 = l_UInt32_reduceBNe____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179____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); @@ -32036,185 +28294,185 @@ lean_dec(x_2); return x_11; } } -static lean_object* _init_l___regBuiltin_UInt32_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12984____closed__1() { +static lean_object* _init_l___regBuiltin_UInt32_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11199____closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_UInt32_fromExpr___closed__2; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__577; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__434; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt32_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12984____closed__2() { +static lean_object* _init_l___regBuiltin_UInt32_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11199____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt32_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12984____closed__1; -x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__2; +x_1 = l___regBuiltin_UInt32_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11199____closed__1; +x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__2; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt32_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12984____closed__3() { +static lean_object* _init_l___regBuiltin_UInt32_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11199____closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt32_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12984____closed__2; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__18; +x_1 = l___regBuiltin_UInt32_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11199____closed__2; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__12; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt32_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12984____closed__4() { +static lean_object* _init_l___regBuiltin_UInt32_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11199____closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt32_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12984____closed__3; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__90; +x_1 = l___regBuiltin_UInt32_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11199____closed__3; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__57; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt32_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12984____closed__5() { +static lean_object* _init_l___regBuiltin_UInt32_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11199____closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt32_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12984____closed__4; -x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__6; +x_1 = l___regBuiltin_UInt32_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11199____closed__4; +x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__6; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt32_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12984____closed__6() { +static lean_object* _init_l___regBuiltin_UInt32_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11199____closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt32_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12984____closed__5; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__91; +x_1 = l___regBuiltin_UInt32_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11199____closed__5; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__58; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt32_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12984____closed__7() { +static lean_object* _init_l___regBuiltin_UInt32_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11199____closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt32_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12984____closed__6; -x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__9; +x_1 = l___regBuiltin_UInt32_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11199____closed__6; +x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__9; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt32_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12984____closed__8() { +static lean_object* _init_l___regBuiltin_UInt32_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11199____closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt32_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12984____closed__7; -x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__11; +x_1 = l___regBuiltin_UInt32_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11199____closed__7; +x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__11; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt32_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12984____closed__9() { +static lean_object* _init_l___regBuiltin_UInt32_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11199____closed__9() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt32_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12984____closed__8; -x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__13; +x_1 = l___regBuiltin_UInt32_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11199____closed__8; +x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__13; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt32_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12984____closed__10() { +static lean_object* _init_l___regBuiltin_UInt32_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11199____closed__10() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt32_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12984____closed__9; -x_2 = lean_unsigned_to_nat(11860u); +x_1 = l___regBuiltin_UInt32_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11199____closed__9; +x_2 = lean_unsigned_to_nat(10179u); x_3 = l_Lean_Name_num___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt32_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12984____closed__11() { +static lean_object* _init_l___regBuiltin_UInt32_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11199____closed__11() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10102____closed__12; -x_2 = l___regBuiltin_UInt32_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12498____closed__2; +x_1 = l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8535____closed__12; +x_2 = l___regBuiltin_UInt32_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10713____closed__2; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt32_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12984____closed__12() { +static lean_object* _init_l___regBuiltin_UInt32_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11199____closed__12() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt32_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12984____closed__11; +x_1 = l___regBuiltin_UInt32_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11199____closed__11; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt32_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12984____closed__13() { +static lean_object* _init_l___regBuiltin_UInt32_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11199____closed__13() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt32_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12984____closed__12; +x_1 = l___regBuiltin_UInt32_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11199____closed__12; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt32_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12984____closed__14() { +static lean_object* _init_l___regBuiltin_UInt32_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11199____closed__14() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt32_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12984____closed__13; +x_1 = l___regBuiltin_UInt32_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11199____closed__13; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt32_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12984____closed__15() { +static lean_object* _init_l___regBuiltin_UInt32_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11199____closed__15() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_UInt32_reduceBNe____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860_), 9, 0); +x_1 = lean_alloc_closure((void*)(l_UInt32_reduceBNe____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179_), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_UInt32_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12984_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_UInt32_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11199_(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_UInt32_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12984____closed__10; -x_3 = l___regBuiltin_UInt32_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12984____closed__14; -x_4 = l___regBuiltin_UInt32_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12984____closed__15; +x_2 = l___regBuiltin_UInt32_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11199____closed__10; +x_3 = l___regBuiltin_UInt32_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11199____closed__14; +x_4 = l___regBuiltin_UInt32_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11199____closed__15; x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); return x_5; } } -LEAN_EXPORT lean_object* l___regBuiltin_UInt32_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12986_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_UInt32_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11201_(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____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9618____closed__1; -x_3 = l___regBuiltin_UInt32_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12984____closed__10; +x_2 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8051____closed__1; +x_3 = l___regBuiltin_UInt32_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11199____closed__10; x_4 = 1; -x_5 = l___regBuiltin_UInt32_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12984____closed__15; +x_5 = l___regBuiltin_UInt32_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11199____closed__15; 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_UInt32_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12988_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_UInt32_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11203_(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____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9620____closed__1; -x_3 = l___regBuiltin_UInt32_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12984____closed__10; +x_2 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8053____closed__1; +x_3 = l___regBuiltin_UInt32_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11199____closed__10; x_4 = 1; -x_5 = l___regBuiltin_UInt32_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12984____closed__15; +x_5 = l___regBuiltin_UInt32_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11199____closed__15; x_6 = l_Lean_Meta_Simp_addSimprocBuiltinAttrCore(x_2, x_3, x_4, x_5, x_1); return x_6; } @@ -32226,7 +28484,7 @@ lean_object* x_11; lean_object* x_12; lean_object* x_13; x_11 = l_Lean_Expr_appFn_x21(x_1); x_12 = l_Lean_Expr_appArg_x21(x_11); lean_dec(x_11); -x_13 = l_Nat_fromExpr_x3f(x_12, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_13 = l_Lean_Meta_getNatValue_x3f(x_12, x_6, x_7, x_8, x_9, x_10); if (lean_obj_tag(x_13) == 0) { lean_object* x_14; @@ -32241,7 +28499,7 @@ if (x_15 == 0) lean_object* x_16; lean_object* x_17; x_16 = lean_ctor_get(x_13, 0); lean_dec(x_16); -x_17 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_17 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; lean_ctor_set(x_13, 0, x_17); return x_13; } @@ -32251,7 +28509,7 @@ lean_object* x_18; lean_object* x_19; lean_object* x_20; x_18 = lean_ctor_get(x_13, 1); lean_inc(x_18); lean_dec(x_13); -x_19 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_19 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; x_20 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_20, 0, x_19); lean_ctor_set(x_20, 1, x_18); @@ -32264,7 +28522,7 @@ uint8_t x_21; x_21 = !lean_is_exclusive(x_13); if (x_21 == 0) { -lean_object* x_22; lean_object* x_23; uint32_t x_24; lean_object* x_25; lean_object* x_26; uint32_t x_27; uint8_t x_28; lean_object* x_29; lean_object* x_30; +lean_object* x_22; lean_object* x_23; uint32_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; uint32_t x_33; uint8_t x_34; lean_object* x_35; lean_object* x_36; x_22 = lean_ctor_get(x_13, 0); lean_dec(x_22); x_23 = lean_ctor_get(x_14, 0); @@ -32272,69 +28530,83 @@ lean_inc(x_23); lean_dec(x_14); x_24 = lean_uint32_of_nat(x_23); lean_dec(x_23); -x_25 = l_UInt32_toExprCore(x_24); -x_26 = lean_box(0); -x_27 = 0; -x_28 = 1; -x_29 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_29, 0, x_25); -lean_ctor_set(x_29, 1, x_26); -lean_ctor_set_uint32(x_29, sizeof(void*)*2, x_27); -lean_ctor_set_uint8(x_29, sizeof(void*)*2 + 4, x_28); -x_30 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_30, 0, x_29); -lean_ctor_set(x_13, 0, x_30); +x_25 = lean_uint32_to_nat(x_24); +x_26 = l_Lean_mkRawNatLit(x_25); +x_27 = l_UInt32_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179____lambda__1___closed__3; +lean_inc(x_26); +x_28 = l_Lean_Expr_app___override(x_27, x_26); +x_29 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__4; +x_30 = l_UInt32_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179____lambda__1___closed__1; +x_31 = l_Lean_mkApp3(x_29, x_30, x_26, x_28); +x_32 = lean_box(0); +x_33 = 0; +x_34 = 1; +x_35 = lean_alloc_ctor(0, 2, 5); +lean_ctor_set(x_35, 0, x_31); +lean_ctor_set(x_35, 1, x_32); +lean_ctor_set_uint32(x_35, sizeof(void*)*2, x_33); +lean_ctor_set_uint8(x_35, sizeof(void*)*2 + 4, x_34); +x_36 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_36, 0, x_35); +lean_ctor_set(x_13, 0, x_36); return x_13; } else { -lean_object* x_31; lean_object* x_32; uint32_t x_33; lean_object* x_34; lean_object* x_35; uint32_t x_36; uint8_t x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; -x_31 = lean_ctor_get(x_13, 1); -lean_inc(x_31); +lean_object* x_37; lean_object* x_38; uint32_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_object* x_47; uint32_t x_48; uint8_t x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; +x_37 = lean_ctor_get(x_13, 1); +lean_inc(x_37); lean_dec(x_13); -x_32 = lean_ctor_get(x_14, 0); -lean_inc(x_32); +x_38 = lean_ctor_get(x_14, 0); +lean_inc(x_38); lean_dec(x_14); -x_33 = lean_uint32_of_nat(x_32); -lean_dec(x_32); -x_34 = l_UInt32_toExprCore(x_33); -x_35 = lean_box(0); -x_36 = 0; -x_37 = 1; -x_38 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_38, 0, x_34); -lean_ctor_set(x_38, 1, x_35); -lean_ctor_set_uint32(x_38, sizeof(void*)*2, x_36); -lean_ctor_set_uint8(x_38, sizeof(void*)*2 + 4, x_37); -x_39 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_39, 0, x_38); -x_40 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_40, 0, x_39); -lean_ctor_set(x_40, 1, x_31); -return x_40; +x_39 = lean_uint32_of_nat(x_38); +lean_dec(x_38); +x_40 = lean_uint32_to_nat(x_39); +x_41 = l_Lean_mkRawNatLit(x_40); +x_42 = l_UInt32_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179____lambda__1___closed__3; +lean_inc(x_41); +x_43 = l_Lean_Expr_app___override(x_42, x_41); +x_44 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__4; +x_45 = l_UInt32_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179____lambda__1___closed__1; +x_46 = l_Lean_mkApp3(x_44, x_45, x_41, x_43); +x_47 = lean_box(0); +x_48 = 0; +x_49 = 1; +x_50 = lean_alloc_ctor(0, 2, 5); +lean_ctor_set(x_50, 0, x_46); +lean_ctor_set(x_50, 1, x_47); +lean_ctor_set_uint32(x_50, sizeof(void*)*2, x_48); +lean_ctor_set_uint8(x_50, sizeof(void*)*2 + 4, x_49); +x_51 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_51, 0, x_50); +x_52 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_52, 0, x_51); +lean_ctor_set(x_52, 1, x_37); +return x_52; } } } else { -uint8_t x_41; -x_41 = !lean_is_exclusive(x_13); -if (x_41 == 0) +uint8_t x_53; +x_53 = !lean_is_exclusive(x_13); +if (x_53 == 0) { return x_13; } else { -lean_object* x_42; lean_object* x_43; lean_object* x_44; -x_42 = lean_ctor_get(x_13, 0); -x_43 = lean_ctor_get(x_13, 1); -lean_inc(x_43); -lean_inc(x_42); +lean_object* x_54; lean_object* x_55; lean_object* x_56; +x_54 = lean_ctor_get(x_13, 0); +x_55 = lean_ctor_get(x_13, 1); +lean_inc(x_55); +lean_inc(x_54); lean_dec(x_13); -x_44 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_44, 0, x_42); -lean_ctor_set(x_44, 1, x_43); -return x_44; +x_56 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_56, 0, x_54); +lean_ctor_set(x_56, 1, x_55); +return x_56; } } } @@ -32367,7 +28639,7 @@ lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_13 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_13 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; x_14 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_14, 0, x_13); lean_ctor_set(x_14, 1, x_9); @@ -32378,7 +28650,6 @@ else lean_object* x_15; lean_object* x_16; x_15 = lean_box(0); x_16 = l_UInt32_reduceOfNatCore___lambda__1(x_1, x_15, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); -lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); @@ -32391,7 +28662,6 @@ _start: { lean_object* x_11; x_11 = l_UInt32_reduceOfNatCore___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_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); @@ -32399,17 +28669,17 @@ lean_dec(x_2); return x_11; } } -static lean_object* _init_l___regBuiltin_UInt32_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13104____closed__1() { +static lean_object* _init_l___regBuiltin_UInt32_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11314____closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_UInt32_fromExpr___closed__1; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__590; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__447; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt32_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13104____closed__2() { +static lean_object* _init_l___regBuiltin_UInt32_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11314____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -32421,37 +28691,37 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt32_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13104____closed__3() { +static lean_object* _init_l___regBuiltin_UInt32_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11314____closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt8_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10222____closed__3; -x_2 = l___regBuiltin_UInt32_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13104____closed__2; +x_1 = l___regBuiltin_UInt8_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8650____closed__3; +x_2 = l___regBuiltin_UInt32_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11314____closed__2; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt32_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13104____closed__4() { +static lean_object* _init_l___regBuiltin_UInt32_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11314____closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt32_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13104____closed__3; +x_1 = l___regBuiltin_UInt32_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11314____closed__3; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt32_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13104____closed__5() { +static lean_object* _init_l___regBuiltin_UInt32_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11314____closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt32_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13104____closed__4; +x_1 = l___regBuiltin_UInt32_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11314____closed__4; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt32_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13104____closed__6() { +static lean_object* _init_l___regBuiltin_UInt32_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11314____closed__6() { _start: { lean_object* x_1; @@ -32459,37 +28729,37 @@ x_1 = lean_alloc_closure((void*)(l_UInt32_reduceOfNatCore), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_UInt32_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13104_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_UInt32_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11314_(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_UInt32_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13104____closed__1; -x_3 = l___regBuiltin_UInt32_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13104____closed__5; -x_4 = l___regBuiltin_UInt32_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13104____closed__6; +x_2 = l___regBuiltin_UInt32_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11314____closed__1; +x_3 = l___regBuiltin_UInt32_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11314____closed__5; +x_4 = l___regBuiltin_UInt32_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11314____closed__6; x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); return x_5; } } -LEAN_EXPORT lean_object* l___regBuiltin_UInt32_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13106_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_UInt32_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11316_(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____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9618____closed__1; -x_3 = l___regBuiltin_UInt32_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13104____closed__1; +x_2 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8051____closed__1; +x_3 = l___regBuiltin_UInt32_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11314____closed__1; x_4 = 1; -x_5 = l___regBuiltin_UInt32_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13104____closed__6; +x_5 = l___regBuiltin_UInt32_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11314____closed__6; 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_UInt32_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13108_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_UInt32_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11318_(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____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9620____closed__1; -x_3 = l___regBuiltin_UInt32_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13104____closed__1; +x_2 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8053____closed__1; +x_3 = l___regBuiltin_UInt32_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11314____closed__1; x_4 = 1; -x_5 = l___regBuiltin_UInt32_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13104____closed__6; +x_5 = l___regBuiltin_UInt32_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11314____closed__6; x_6 = l_Lean_Meta_Simp_addSimprocBuiltinAttrCore(x_2, x_3, x_4, x_5, x_1); return x_6; } @@ -32500,6 +28770,7 @@ _start: lean_object* x_11; lean_object* x_12; x_11 = l_Lean_Expr_appArg_x21(x_1); x_12 = l_UInt32_fromExpr(x_11, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_11); if (lean_obj_tag(x_12) == 0) { lean_object* x_13; @@ -32514,7 +28785,7 @@ if (x_14 == 0) lean_object* x_15; lean_object* x_16; x_15 = lean_ctor_get(x_12, 0); lean_dec(x_15); -x_16 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_16 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; lean_ctor_set(x_12, 0, x_16); return x_12; } @@ -32524,7 +28795,7 @@ lean_object* x_17; lean_object* x_18; lean_object* x_19; x_17 = lean_ctor_get(x_12, 1); lean_inc(x_17); lean_dec(x_12); -x_18 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_18 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; x_19 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_19, 0, x_18); lean_ctor_set(x_19, 1, x_17); @@ -32543,7 +28814,7 @@ lean_dec(x_21); x_22 = lean_ctor_get(x_13, 0); lean_inc(x_22); lean_dec(x_13); -x_23 = lean_ctor_get_uint32(x_22, sizeof(void*)*1); +x_23 = lean_unbox_uint32(x_22); lean_dec(x_22); x_24 = lean_uint32_to_nat(x_23); x_25 = l_Lean_mkNatLit(x_24); @@ -32569,7 +28840,7 @@ lean_dec(x_12); x_32 = lean_ctor_get(x_13, 0); lean_inc(x_32); lean_dec(x_13); -x_33 = lean_ctor_get_uint32(x_32, sizeof(void*)*1); +x_33 = lean_unbox_uint32(x_32); lean_dec(x_32); x_34 = lean_uint32_to_nat(x_33); x_35 = l_Lean_mkNatLit(x_34); @@ -32641,7 +28912,7 @@ lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); -x_13 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_13 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; x_14 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_14, 0, x_13); lean_ctor_set(x_14, 1, x_9); @@ -32681,17 +28952,17 @@ lean_dec(x_1); return x_10; } } -static lean_object* _init_l___regBuiltin_UInt32_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13220____closed__1() { +static lean_object* _init_l___regBuiltin_UInt32_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11430____closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_UInt32_fromExpr___closed__1; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__602; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__473; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt32_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13220____closed__2() { +static lean_object* _init_l___regBuiltin_UInt32_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11430____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -32703,27 +28974,27 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt32_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13220____closed__3() { +static lean_object* _init_l___regBuiltin_UInt32_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11430____closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__67; -x_2 = l___regBuiltin_UInt32_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13220____closed__2; +x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__27; +x_2 = l___regBuiltin_UInt32_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11430____closed__2; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt32_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13220____closed__4() { +static lean_object* _init_l___regBuiltin_UInt32_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11430____closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt32_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13220____closed__3; +x_1 = l___regBuiltin_UInt32_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11430____closed__3; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt32_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13220____closed__5() { +static lean_object* _init_l___regBuiltin_UInt32_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11430____closed__5() { _start: { lean_object* x_1; @@ -32731,53 +29002,53 @@ x_1 = lean_alloc_closure((void*)(l_UInt32_reduceToNat___boxed), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_UInt32_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13220_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_UInt32_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11430_(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_UInt32_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13220____closed__1; -x_3 = l___regBuiltin_UInt32_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13220____closed__4; -x_4 = l___regBuiltin_UInt32_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13220____closed__5; +x_2 = l___regBuiltin_UInt32_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11430____closed__1; +x_3 = l___regBuiltin_UInt32_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11430____closed__4; +x_4 = l___regBuiltin_UInt32_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11430____closed__5; x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); return x_5; } } -LEAN_EXPORT lean_object* l___regBuiltin_UInt32_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13222_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_UInt32_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11432_(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____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9618____closed__1; -x_3 = l___regBuiltin_UInt32_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13220____closed__1; +x_2 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8051____closed__1; +x_3 = l___regBuiltin_UInt32_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11430____closed__1; x_4 = 1; -x_5 = l___regBuiltin_UInt32_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13220____closed__5; +x_5 = l___regBuiltin_UInt32_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11430____closed__5; 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_UInt32_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13224_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_UInt32_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11434_(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____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9620____closed__1; -x_3 = l___regBuiltin_UInt32_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13220____closed__1; +x_2 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8053____closed__1; +x_3 = l___regBuiltin_UInt32_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11430____closed__1; x_4 = 1; -x_5 = l___regBuiltin_UInt32_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13220____closed__5; +x_5 = l___regBuiltin_UInt32_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11430____closed__5; 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_UInt32_isValue____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860_(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_EXPORT lean_object* l_UInt32_isValue____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179_(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; uint8_t x_12; -x_10 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__125; +x_10 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__490; x_11 = lean_unsigned_to_nat(3u); x_12 = l_Lean_Expr_isAppOfArity(x_1, x_10, x_11); if (x_12 == 0) { lean_object* x_13; lean_object* x_14; lean_dec(x_1); -x_13 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_13 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; x_14 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_14, 0, x_13); lean_ctor_set(x_14, 1, x_9); @@ -32787,16 +29058,16 @@ else { lean_object* x_15; lean_object* x_16; x_15 = lean_box(0); -x_16 = l_UInt8_isValue____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1(x_1, x_15, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_16 = l_UInt8_isValue____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1(x_1, x_15, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); return x_16; } } } -LEAN_EXPORT lean_object* l_UInt32_isValue____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860____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_EXPORT lean_object* l_UInt32_isValue____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179____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_UInt32_isValue____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860_(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_10 = l_UInt32_isValue____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179_(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); @@ -32807,163 +29078,163 @@ lean_dec(x_2); return x_10; } } -static lean_object* _init_l___regBuiltin_UInt32_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__13296____closed__1() { +static lean_object* _init_l___regBuiltin_UInt32_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11506____closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_UInt32_fromExpr___closed__2; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__621; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__484; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt32_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__13296____closed__2() { +static lean_object* _init_l___regBuiltin_UInt32_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11506____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt32_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__13296____closed__1; -x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__2; +x_1 = l___regBuiltin_UInt32_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11506____closed__1; +x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__2; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt32_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__13296____closed__3() { +static lean_object* _init_l___regBuiltin_UInt32_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11506____closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt32_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__13296____closed__2; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__18; +x_1 = l___regBuiltin_UInt32_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11506____closed__2; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__12; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt32_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__13296____closed__4() { +static lean_object* _init_l___regBuiltin_UInt32_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11506____closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt32_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__13296____closed__3; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__90; +x_1 = l___regBuiltin_UInt32_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11506____closed__3; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__57; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt32_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__13296____closed__5() { +static lean_object* _init_l___regBuiltin_UInt32_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11506____closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt32_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__13296____closed__4; -x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__6; +x_1 = l___regBuiltin_UInt32_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11506____closed__4; +x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__6; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt32_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__13296____closed__6() { +static lean_object* _init_l___regBuiltin_UInt32_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11506____closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt32_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__13296____closed__5; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__91; +x_1 = l___regBuiltin_UInt32_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11506____closed__5; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__58; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt32_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__13296____closed__7() { +static lean_object* _init_l___regBuiltin_UInt32_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11506____closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt32_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__13296____closed__6; -x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__9; +x_1 = l___regBuiltin_UInt32_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11506____closed__6; +x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__9; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt32_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__13296____closed__8() { +static lean_object* _init_l___regBuiltin_UInt32_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11506____closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt32_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__13296____closed__7; -x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__11; +x_1 = l___regBuiltin_UInt32_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11506____closed__7; +x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__11; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt32_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__13296____closed__9() { +static lean_object* _init_l___regBuiltin_UInt32_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11506____closed__9() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt32_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__13296____closed__8; -x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__13; +x_1 = l___regBuiltin_UInt32_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11506____closed__8; +x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__13; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt32_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__13296____closed__10() { +static lean_object* _init_l___regBuiltin_UInt32_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11506____closed__10() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt32_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__13296____closed__9; -x_2 = lean_unsigned_to_nat(11860u); +x_1 = l___regBuiltin_UInt32_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11506____closed__9; +x_2 = lean_unsigned_to_nat(10179u); x_3 = l_Lean_Name_num___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt32_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__13296____closed__11() { +static lean_object* _init_l___regBuiltin_UInt32_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11506____closed__11() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10414____closed__12; -x_2 = l___regBuiltin_UInt32_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12498____closed__2; +x_1 = l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8842____closed__12; +x_2 = l___regBuiltin_UInt32_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10713____closed__2; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt32_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__13296____closed__12() { +static lean_object* _init_l___regBuiltin_UInt32_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11506____closed__12() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt32_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__13296____closed__11; +x_1 = l___regBuiltin_UInt32_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11506____closed__11; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt32_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__13296____closed__13() { +static lean_object* _init_l___regBuiltin_UInt32_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11506____closed__13() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt32_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__13296____closed__12; +x_1 = l___regBuiltin_UInt32_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11506____closed__12; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt32_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__13296____closed__14() { +static lean_object* _init_l___regBuiltin_UInt32_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11506____closed__14() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_UInt32_isValue____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860____boxed), 9, 0); +x_1 = lean_alloc_closure((void*)(l_UInt32_isValue____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179____boxed), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_UInt32_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__13296_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_UInt32_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11506_(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_UInt32_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__13296____closed__10; -x_3 = l___regBuiltin_UInt32_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__13296____closed__13; -x_4 = l___regBuiltin_UInt32_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__13296____closed__14; +x_2 = l___regBuiltin_UInt32_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11506____closed__10; +x_3 = l___regBuiltin_UInt32_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11506____closed__13; +x_4 = l___regBuiltin_UInt32_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11506____closed__14; x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); return x_5; } } -LEAN_EXPORT lean_object* l___regBuiltin_UInt32_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__13298_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_UInt32_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11508_(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____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9620____closed__1; -x_3 = l___regBuiltin_UInt32_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__13296____closed__10; +x_2 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8053____closed__1; +x_3 = l___regBuiltin_UInt32_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11506____closed__10; x_4 = 1; -x_5 = l___regBuiltin_UInt32_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__13296____closed__14; +x_5 = l___regBuiltin_UInt32_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11506____closed__14; x_6 = l_Lean_Meta_Simp_addSimprocBuiltinAttrCore(x_2, x_3, x_4, x_5, x_1); return x_6; } @@ -32989,378 +29260,138 @@ return x_3; LEAN_EXPORT lean_object* l_UInt64_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; uint8_t x_12; lean_object* x_13; lean_object* x_14; -x_10 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__125; -x_11 = lean_unsigned_to_nat(3u); -x_12 = l_Lean_Expr_isAppOfArity(x_1, x_10, x_11); -if (x_12 == 0) +lean_object* x_10; lean_object* x_11; +x_10 = l_UInt64_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_87; -x_87 = lean_box(0); -x_13 = x_87; -x_14 = x_9; -goto block_86; -} -else +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_88; -x_88 = l_UInt8_fromExpr___closed__3; -x_13 = x_88; -x_14 = x_9; -goto block_86; -} -block_86: +uint8_t x_13; +x_13 = !lean_is_exclusive(x_11); +if (x_13 == 0) { -if (lean_obj_tag(x_13) == 0) -{ -lean_object* x_15; lean_object* x_16; -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_1); +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); -x_16 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_16, 0, x_15); -lean_ctor_set(x_16, 1, x_14); -return x_16; +lean_ctor_set(x_11, 0, x_15); +return x_11; } else { -lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; -lean_dec(x_13); -x_17 = l_Lean_Expr_appFn_x21(x_1); -lean_inc(x_17); -x_18 = l_Lean_Expr_appFn_x21(x_17); -x_19 = l_Lean_Expr_appArg_x21(x_18); -lean_inc(x_8); -lean_inc(x_7); -lean_inc(x_6); -lean_inc(x_5); -x_20 = lean_whnf(x_19, x_5, x_6, x_7, x_8, x_14); -if (lean_obj_tag(x_20) == 0) +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_21; -x_21 = !lean_is_exclusive(x_20); -if (x_21 == 0) +uint8_t x_19; +x_19 = !lean_is_exclusive(x_12); +if (x_19 == 0) { -lean_object* x_22; lean_object* x_23; lean_object* x_24; uint8_t x_25; -x_22 = lean_ctor_get(x_20, 0); -x_23 = lean_ctor_get(x_20, 1); -x_24 = l_UInt64_fromExpr___closed__2; -x_25 = l_Lean_Expr_isConstOf(x_22, x_24); +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; uint64_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); -if (x_25 == 0) -{ -lean_object* x_26; -lean_dec(x_18); -lean_dec(x_17); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -x_26 = lean_box(0); -lean_ctor_set(x_20, 0, x_26); -return x_20; +x_23 = lean_ctor_get(x_21, 0); +lean_inc(x_23); +lean_dec(x_21); +x_24 = lean_uint64_of_nat(x_23); +lean_dec(x_23); +x_25 = lean_box_uint64(x_24); +lean_ctor_set(x_12, 0, x_25); +return x_11; } else { -lean_object* x_27; lean_object* x_28; -lean_free_object(x_20); -x_27 = l_Lean_Expr_appArg_x21(x_17); -lean_dec(x_17); -x_28 = l_Nat_fromExpr_x3f(x_27, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_23); -lean_dec(x_5); -if (lean_obj_tag(x_28) == 0) -{ -lean_object* x_29; -x_29 = lean_ctor_get(x_28, 0); -lean_inc(x_29); -if (lean_obj_tag(x_29) == 0) -{ -uint8_t x_30; -lean_dec(x_18); -x_30 = !lean_is_exclusive(x_28); -if (x_30 == 0) -{ -lean_object* x_31; lean_object* x_32; -x_31 = lean_ctor_get(x_28, 0); -lean_dec(x_31); -x_32 = lean_box(0); -lean_ctor_set(x_28, 0, x_32); -return x_28; +lean_object* x_26; lean_object* x_27; lean_object* x_28; uint64_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_uint64_of_nat(x_28); +lean_dec(x_28); +x_30 = lean_box_uint64(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_33; lean_object* x_34; lean_object* x_35; -x_33 = lean_ctor_get(x_28, 1); +lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; uint64_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); -lean_dec(x_28); -x_34 = lean_box(0); -x_35 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_35, 0, x_34); -lean_ctor_set(x_35, 1, x_33); -return x_35; +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_uint64_of_nat(x_35); +lean_dec(x_35); +x_37 = lean_box_uint64(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_36; -x_36 = !lean_is_exclusive(x_28); -if (x_36 == 0) +uint8_t x_40; +x_40 = !lean_is_exclusive(x_11); +if (x_40 == 0) { -lean_object* x_37; uint8_t x_38; -x_37 = lean_ctor_get(x_28, 0); -lean_dec(x_37); -x_38 = !lean_is_exclusive(x_29); -if (x_38 == 0) -{ -lean_object* x_39; uint64_t x_40; lean_object* x_41; -x_39 = lean_ctor_get(x_29, 0); -x_40 = lean_uint64_of_nat(x_39); -lean_dec(x_39); -x_41 = lean_alloc_ctor(0, 1, 8); -lean_ctor_set(x_41, 0, x_18); -lean_ctor_set_uint64(x_41, sizeof(void*)*1, x_40); -lean_ctor_set(x_29, 0, x_41); -return x_28; +return x_11; } else { -lean_object* x_42; uint64_t x_43; lean_object* x_44; lean_object* x_45; -x_42 = lean_ctor_get(x_29, 0); +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_dec(x_29); -x_43 = lean_uint64_of_nat(x_42); -lean_dec(x_42); -x_44 = lean_alloc_ctor(0, 1, 8); -lean_ctor_set(x_44, 0, x_18); -lean_ctor_set_uint64(x_44, sizeof(void*)*1, x_43); -x_45 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_45, 0, x_44); -lean_ctor_set(x_28, 0, x_45); -return x_28; -} -} -else -{ -lean_object* x_46; lean_object* x_47; lean_object* x_48; uint64_t x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; -x_46 = lean_ctor_get(x_28, 1); -lean_inc(x_46); -lean_dec(x_28); -x_47 = lean_ctor_get(x_29, 0); -lean_inc(x_47); -if (lean_is_exclusive(x_29)) { - lean_ctor_release(x_29, 0); - x_48 = x_29; -} else { - lean_dec_ref(x_29); - x_48 = lean_box(0); -} -x_49 = lean_uint64_of_nat(x_47); -lean_dec(x_47); -x_50 = lean_alloc_ctor(0, 1, 8); -lean_ctor_set(x_50, 0, x_18); -lean_ctor_set_uint64(x_50, sizeof(void*)*1, x_49); -if (lean_is_scalar(x_48)) { - x_51 = lean_alloc_ctor(1, 1, 0); -} else { - x_51 = x_48; -} -lean_ctor_set(x_51, 0, x_50); -x_52 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_52, 0, x_51); -lean_ctor_set(x_52, 1, x_46); -return x_52; -} -} -} -else -{ -uint8_t x_53; -lean_dec(x_18); -x_53 = !lean_is_exclusive(x_28); -if (x_53 == 0) -{ -return x_28; -} -else -{ -lean_object* x_54; lean_object* x_55; lean_object* x_56; -x_54 = lean_ctor_get(x_28, 0); -x_55 = lean_ctor_get(x_28, 1); -lean_inc(x_55); -lean_inc(x_54); -lean_dec(x_28); -x_56 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_56, 0, x_54); -lean_ctor_set(x_56, 1, x_55); -return x_56; -} -} -} -} -else -{ -lean_object* x_57; lean_object* x_58; lean_object* x_59; uint8_t x_60; -x_57 = lean_ctor_get(x_20, 0); -x_58 = lean_ctor_get(x_20, 1); -lean_inc(x_58); -lean_inc(x_57); -lean_dec(x_20); -x_59 = l_UInt64_fromExpr___closed__2; -x_60 = l_Lean_Expr_isConstOf(x_57, x_59); -lean_dec(x_57); -if (x_60 == 0) -{ -lean_object* x_61; lean_object* x_62; -lean_dec(x_18); -lean_dec(x_17); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -x_61 = lean_box(0); -x_62 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_62, 0, x_61); -lean_ctor_set(x_62, 1, x_58); -return x_62; -} -else -{ -lean_object* x_63; lean_object* x_64; -x_63 = l_Lean_Expr_appArg_x21(x_17); -lean_dec(x_17); -x_64 = l_Nat_fromExpr_x3f(x_63, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_58); -lean_dec(x_5); -if (lean_obj_tag(x_64) == 0) -{ -lean_object* x_65; -x_65 = lean_ctor_get(x_64, 0); -lean_inc(x_65); -if (lean_obj_tag(x_65) == 0) -{ -lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; -lean_dec(x_18); -x_66 = lean_ctor_get(x_64, 1); -lean_inc(x_66); -if (lean_is_exclusive(x_64)) { - lean_ctor_release(x_64, 0); - lean_ctor_release(x_64, 1); - x_67 = x_64; -} else { - lean_dec_ref(x_64); - x_67 = lean_box(0); -} -x_68 = lean_box(0); -if (lean_is_scalar(x_67)) { - x_69 = lean_alloc_ctor(0, 2, 0); -} else { - x_69 = x_67; -} -lean_ctor_set(x_69, 0, x_68); -lean_ctor_set(x_69, 1, x_66); -return x_69; -} -else -{ -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; -x_70 = lean_ctor_get(x_64, 1); -lean_inc(x_70); -if (lean_is_exclusive(x_64)) { - lean_ctor_release(x_64, 0); - lean_ctor_release(x_64, 1); - x_71 = x_64; -} else { - lean_dec_ref(x_64); - x_71 = lean_box(0); -} -x_72 = lean_ctor_get(x_65, 0); -lean_inc(x_72); -if (lean_is_exclusive(x_65)) { - lean_ctor_release(x_65, 0); - x_73 = x_65; -} else { - lean_dec_ref(x_65); - x_73 = lean_box(0); -} -x_74 = lean_uint64_of_nat(x_72); -lean_dec(x_72); -x_75 = lean_alloc_ctor(0, 1, 8); -lean_ctor_set(x_75, 0, x_18); -lean_ctor_set_uint64(x_75, sizeof(void*)*1, x_74); -if (lean_is_scalar(x_73)) { - x_76 = lean_alloc_ctor(1, 1, 0); -} else { - x_76 = x_73; -} -lean_ctor_set(x_76, 0, x_75); -if (lean_is_scalar(x_71)) { - x_77 = lean_alloc_ctor(0, 2, 0); -} else { - x_77 = x_71; -} -lean_ctor_set(x_77, 0, x_76); -lean_ctor_set(x_77, 1, x_70); -return x_77; -} -} -else -{ -lean_object* x_78; lean_object* x_79; lean_object* x_80; lean_object* x_81; -lean_dec(x_18); -x_78 = lean_ctor_get(x_64, 0); -lean_inc(x_78); -x_79 = lean_ctor_get(x_64, 1); -lean_inc(x_79); -if (lean_is_exclusive(x_64)) { - lean_ctor_release(x_64, 0); - lean_ctor_release(x_64, 1); - x_80 = x_64; -} else { - lean_dec_ref(x_64); - x_80 = lean_box(0); -} -if (lean_is_scalar(x_80)) { - x_81 = lean_alloc_ctor(1, 2, 0); -} else { - x_81 = x_80; -} -lean_ctor_set(x_81, 0, x_78); -lean_ctor_set(x_81, 1, x_79); -return x_81; -} -} -} -} -else -{ -uint8_t x_82; -lean_dec(x_18); -lean_dec(x_17); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -x_82 = !lean_is_exclusive(x_20); -if (x_82 == 0) -{ -return x_20; -} -else -{ -lean_object* x_83; lean_object* x_84; lean_object* x_85; -x_83 = lean_ctor_get(x_20, 0); -x_84 = lean_ctor_get(x_20, 1); -lean_inc(x_84); -lean_inc(x_83); -lean_dec(x_20); -x_85 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_85, 0, x_83); -lean_ctor_set(x_85, 1, x_84); -return x_85; -} -} +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; } } } @@ -33373,10 +29404,11 @@ x_10 = l_UInt64_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); +lean_dec(x_1); return x_10; } } -static lean_object* _init_l_UInt64_toExprCore___closed__1() { +static lean_object* _init_l_UInt64_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511____lambda__1___closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -33386,79 +29418,27 @@ x_3 = l_Lean_Expr_const___override(x_2, x_1); return x_3; } } -static lean_object* _init_l_UInt64_toExprCore___closed__2() { +static lean_object* _init_l_UInt64_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511____lambda__1___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_UInt64_fromExpr___closed__1; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__253; +x_2 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__6; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } -static lean_object* _init_l_UInt64_toExprCore___closed__3() { +static lean_object* _init_l_UInt64_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511____lambda__1___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_UInt64_toExprCore___closed__2; +x_2 = l_UInt64_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511____lambda__1___closed__2; x_3 = l_Lean_Expr_const___override(x_2, x_1); return x_3; } } -LEAN_EXPORT lean_object* l_UInt64_toExprCore(uint64_t x_1) { -_start: -{ -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; -x_2 = lean_uint64_to_nat(x_1); -x_3 = l_Lean_mkRawNatLit(x_2); -x_4 = l_UInt64_toExprCore___closed__3; -lean_inc(x_3); -x_5 = l_Lean_Expr_app___override(x_4, x_3); -x_6 = l_UInt8_toExprCore___closed__2; -x_7 = l_UInt64_toExprCore___closed__1; -x_8 = l_Lean_mkApp3(x_6, x_7, x_3, x_5); -return x_8; -} -} -LEAN_EXPORT lean_object* l_UInt64_toExprCore___boxed(lean_object* x_1) { -_start: -{ -uint64_t x_2; lean_object* x_3; -x_2 = lean_unbox_uint64(x_1); -lean_dec(x_1); -x_3 = l_UInt64_toExprCore(x_2); -return x_3; -} -} -static lean_object* _init_l_UInt64_toExpr___closed__1() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l_UInt64_toExprCore___closed__2; -x_3 = l_Lean_Expr_const___override(x_2, x_1); -return x_3; -} -} -LEAN_EXPORT lean_object* l_UInt64_toExpr(lean_object* x_1) { -_start: -{ -uint64_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; -x_2 = lean_ctor_get_uint64(x_1, sizeof(void*)*1); -x_3 = lean_uint64_to_nat(x_2); -x_4 = l_Lean_mkRawNatLit(x_3); -x_5 = lean_ctor_get(x_1, 0); -lean_inc(x_5); -lean_dec(x_1); -x_6 = l_UInt64_toExpr___closed__1; -lean_inc(x_4); -x_7 = l_Lean_Expr_app___override(x_6, x_4); -x_8 = l_Lean_mkAppB(x_5, x_4, x_7); -return x_8; -} -} -LEAN_EXPORT lean_object* l_UInt64_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301____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, lean_object* x_11) { +LEAN_EXPORT lean_object* l_UInt64_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511____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, lean_object* x_11) { _start: { lean_object* x_12; lean_object* x_13; lean_object* x_14; @@ -33471,6 +29451,7 @@ lean_inc(x_9); lean_inc(x_8); lean_inc(x_7); x_14 = l_UInt64_fromExpr(x_13, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_13); if (lean_obj_tag(x_14) == 0) { lean_object* x_15; @@ -33491,7 +29472,7 @@ if (x_16 == 0) lean_object* x_17; lean_object* x_18; x_17 = lean_ctor_get(x_14, 0); lean_dec(x_17); -x_18 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_18 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; lean_ctor_set(x_14, 0, x_18); return x_14; } @@ -33501,7 +29482,7 @@ lean_object* x_19; lean_object* x_20; lean_object* x_21; x_19 = lean_ctor_get(x_14, 1); lean_inc(x_19); lean_dec(x_14); -x_20 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_20 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; x_21 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_21, 0, x_20); lean_ctor_set(x_21, 1, x_19); @@ -33520,6 +29501,7 @@ lean_dec(x_15); x_24 = l_Lean_Expr_appArg_x21(x_1); lean_dec(x_1); x_25 = l_UInt64_fromExpr(x_24, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_22); +lean_dec(x_24); if (lean_obj_tag(x_25) == 0) { lean_object* x_26; @@ -33536,7 +29518,7 @@ if (x_27 == 0) lean_object* x_28; lean_object* x_29; x_28 = lean_ctor_get(x_25, 0); lean_dec(x_28); -x_29 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_29 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; lean_ctor_set(x_25, 0, x_29); return x_25; } @@ -33546,7 +29528,7 @@ lean_object* x_30; lean_object* x_31; lean_object* x_32; x_30 = lean_ctor_get(x_25, 1); lean_inc(x_30); lean_dec(x_25); -x_31 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_31 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; x_32 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_32, 0, x_31); lean_ctor_set(x_32, 1, x_30); @@ -33559,179 +29541,130 @@ uint8_t x_33; x_33 = !lean_is_exclusive(x_25); if (x_33 == 0) { -lean_object* x_34; lean_object* x_35; uint8_t x_36; +lean_object* x_34; lean_object* x_35; lean_object* x_36; uint64_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; uint32_t x_46; uint8_t x_47; lean_object* x_48; lean_object* x_49; x_34 = lean_ctor_get(x_25, 0); lean_dec(x_34); x_35 = lean_ctor_get(x_26, 0); lean_inc(x_35); lean_dec(x_26); -x_36 = !lean_is_exclusive(x_23); -if (x_36 == 0) -{ -uint64_t x_37; uint64_t x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; uint64_t x_42; lean_object* x_43; lean_object* x_44; uint32_t x_45; uint8_t x_46; lean_object* x_47; lean_object* x_48; -x_37 = lean_ctor_get_uint64(x_23, sizeof(void*)*1); -x_38 = lean_ctor_get_uint64(x_35, sizeof(void*)*1); -lean_dec(x_35); -x_39 = lean_box_uint64(x_37); -x_40 = lean_box_uint64(x_38); -x_41 = lean_apply_2(x_2, x_39, x_40); -x_42 = lean_unbox_uint64(x_41); -lean_dec(x_41); -lean_ctor_set_uint64(x_23, sizeof(void*)*1, x_42); -x_43 = l_UInt64_toExpr(x_23); -x_44 = lean_box(0); -x_45 = 0; -x_46 = 1; -x_47 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_47, 0, x_43); -lean_ctor_set(x_47, 1, x_44); -lean_ctor_set_uint32(x_47, sizeof(void*)*2, x_45); -lean_ctor_set_uint8(x_47, sizeof(void*)*2 + 4, x_46); -x_48 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_48, 0, x_47); -lean_ctor_set(x_25, 0, x_48); +x_36 = lean_apply_2(x_2, x_23, x_35); +x_37 = lean_unbox_uint64(x_36); +lean_dec(x_36); +x_38 = lean_uint64_to_nat(x_37); +x_39 = l_Lean_mkRawNatLit(x_38); +x_40 = l_UInt64_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511____lambda__1___closed__3; +lean_inc(x_39); +x_41 = l_Lean_Expr_app___override(x_40, x_39); +x_42 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__4; +x_43 = l_UInt64_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511____lambda__1___closed__1; +x_44 = l_Lean_mkApp3(x_42, x_43, x_39, x_41); +x_45 = lean_box(0); +x_46 = 0; +x_47 = 1; +x_48 = lean_alloc_ctor(0, 2, 5); +lean_ctor_set(x_48, 0, x_44); +lean_ctor_set(x_48, 1, x_45); +lean_ctor_set_uint32(x_48, sizeof(void*)*2, x_46); +lean_ctor_set_uint8(x_48, sizeof(void*)*2 + 4, x_47); +x_49 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_49, 0, x_48); +lean_ctor_set(x_25, 0, x_49); return x_25; } else { -lean_object* x_49; uint64_t x_50; uint64_t x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; uint64_t x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; uint32_t x_59; uint8_t x_60; lean_object* x_61; lean_object* x_62; -x_49 = lean_ctor_get(x_23, 0); -x_50 = lean_ctor_get_uint64(x_23, sizeof(void*)*1); -lean_inc(x_49); -lean_dec(x_23); -x_51 = lean_ctor_get_uint64(x_35, sizeof(void*)*1); -lean_dec(x_35); -x_52 = lean_box_uint64(x_50); -x_53 = lean_box_uint64(x_51); -x_54 = lean_apply_2(x_2, x_52, x_53); -x_55 = lean_unbox_uint64(x_54); -lean_dec(x_54); -x_56 = lean_alloc_ctor(0, 1, 8); -lean_ctor_set(x_56, 0, x_49); -lean_ctor_set_uint64(x_56, sizeof(void*)*1, x_55); -x_57 = l_UInt64_toExpr(x_56); -x_58 = lean_box(0); -x_59 = 0; -x_60 = 1; -x_61 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_61, 0, x_57); -lean_ctor_set(x_61, 1, x_58); -lean_ctor_set_uint32(x_61, sizeof(void*)*2, x_59); -lean_ctor_set_uint8(x_61, sizeof(void*)*2 + 4, x_60); -x_62 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_62, 0, x_61); -lean_ctor_set(x_25, 0, x_62); -return x_25; -} -} -else -{ -lean_object* x_63; lean_object* x_64; lean_object* x_65; uint64_t x_66; lean_object* x_67; uint64_t 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; uint32_t x_76; uint8_t x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; -x_63 = lean_ctor_get(x_25, 1); -lean_inc(x_63); +lean_object* x_50; lean_object* x_51; lean_object* x_52; 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; lean_object* x_60; lean_object* x_61; uint32_t x_62; uint8_t x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; +x_50 = lean_ctor_get(x_25, 1); +lean_inc(x_50); lean_dec(x_25); -x_64 = lean_ctor_get(x_26, 0); -lean_inc(x_64); +x_51 = lean_ctor_get(x_26, 0); +lean_inc(x_51); lean_dec(x_26); -x_65 = lean_ctor_get(x_23, 0); -lean_inc(x_65); -x_66 = lean_ctor_get_uint64(x_23, sizeof(void*)*1); -if (lean_is_exclusive(x_23)) { - lean_ctor_release(x_23, 0); - x_67 = x_23; -} else { - lean_dec_ref(x_23); - x_67 = lean_box(0); -} -x_68 = lean_ctor_get_uint64(x_64, sizeof(void*)*1); -lean_dec(x_64); -x_69 = lean_box_uint64(x_66); -x_70 = lean_box_uint64(x_68); -x_71 = lean_apply_2(x_2, x_69, x_70); -x_72 = lean_unbox_uint64(x_71); -lean_dec(x_71); -if (lean_is_scalar(x_67)) { - x_73 = lean_alloc_ctor(0, 1, 8); -} else { - x_73 = x_67; -} -lean_ctor_set(x_73, 0, x_65); -lean_ctor_set_uint64(x_73, sizeof(void*)*1, x_72); -x_74 = l_UInt64_toExpr(x_73); -x_75 = lean_box(0); -x_76 = 0; -x_77 = 1; -x_78 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_78, 0, x_74); -lean_ctor_set(x_78, 1, x_75); -lean_ctor_set_uint32(x_78, sizeof(void*)*2, x_76); -lean_ctor_set_uint8(x_78, sizeof(void*)*2 + 4, x_77); -x_79 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_79, 0, 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_63); -return x_80; +x_52 = lean_apply_2(x_2, x_23, x_51); +x_53 = lean_unbox_uint64(x_52); +lean_dec(x_52); +x_54 = lean_uint64_to_nat(x_53); +x_55 = l_Lean_mkRawNatLit(x_54); +x_56 = l_UInt64_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511____lambda__1___closed__3; +lean_inc(x_55); +x_57 = l_Lean_Expr_app___override(x_56, x_55); +x_58 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__4; +x_59 = l_UInt64_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511____lambda__1___closed__1; +x_60 = l_Lean_mkApp3(x_58, x_59, x_55, x_57); +x_61 = lean_box(0); +x_62 = 0; +x_63 = 1; +x_64 = lean_alloc_ctor(0, 2, 5); +lean_ctor_set(x_64, 0, x_60); +lean_ctor_set(x_64, 1, x_61); +lean_ctor_set_uint32(x_64, sizeof(void*)*2, x_62); +lean_ctor_set_uint8(x_64, sizeof(void*)*2 + 4, x_63); +x_65 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_65, 0, x_64); +x_66 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_66, 0, x_65); +lean_ctor_set(x_66, 1, x_50); +return x_66; } } } else { -uint8_t x_81; +uint8_t x_67; lean_dec(x_23); lean_dec(x_2); -x_81 = !lean_is_exclusive(x_25); -if (x_81 == 0) +x_67 = !lean_is_exclusive(x_25); +if (x_67 == 0) { return x_25; } else { -lean_object* x_82; lean_object* x_83; lean_object* x_84; -x_82 = lean_ctor_get(x_25, 0); -x_83 = lean_ctor_get(x_25, 1); -lean_inc(x_83); -lean_inc(x_82); +lean_object* x_68; lean_object* x_69; lean_object* x_70; +x_68 = lean_ctor_get(x_25, 0); +x_69 = lean_ctor_get(x_25, 1); +lean_inc(x_69); +lean_inc(x_68); lean_dec(x_25); -x_84 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_84, 0, x_82); -lean_ctor_set(x_84, 1, x_83); -return x_84; +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 { -uint8_t x_85; +uint8_t x_71; lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); lean_dec(x_7); lean_dec(x_2); lean_dec(x_1); -x_85 = !lean_is_exclusive(x_14); -if (x_85 == 0) +x_71 = !lean_is_exclusive(x_14); +if (x_71 == 0) { return x_14; } else { -lean_object* x_86; lean_object* x_87; lean_object* x_88; -x_86 = lean_ctor_get(x_14, 0); -x_87 = lean_ctor_get(x_14, 1); -lean_inc(x_87); -lean_inc(x_86); +lean_object* x_72; lean_object* x_73; lean_object* x_74; +x_72 = lean_ctor_get(x_14, 0); +x_73 = lean_ctor_get(x_14, 1); +lean_inc(x_73); +lean_inc(x_72); lean_dec(x_14); -x_88 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_88, 0, x_86); -lean_ctor_set(x_88, 1, x_87); -return x_88; +x_74 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_74, 0, x_72); +lean_ctor_set(x_74, 1, x_73); +return x_74; } } } } -LEAN_EXPORT lean_object* l_UInt64_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301_(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_EXPORT lean_object* l_UInt64_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511_(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: { uint8_t x_13; @@ -33749,7 +29682,7 @@ lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); -x_14 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_14 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____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_12); @@ -33759,7 +29692,7 @@ else { lean_object* x_16; lean_object* x_17; x_16 = lean_box(0); -x_17 = l_UInt64_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301____lambda__1(x_4, x_3, x_16, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +x_17 = l_UInt64_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511____lambda__1(x_4, x_3, x_16, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); @@ -33767,11 +29700,11 @@ return x_17; } } } -LEAN_EXPORT lean_object* l_UInt64_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301____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, lean_object* x_11) { +LEAN_EXPORT lean_object* l_UInt64_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511____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, lean_object* x_11) { _start: { lean_object* x_12; -x_12 = l_UInt64_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301____lambda__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +x_12 = l_UInt64_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511____lambda__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); @@ -33779,7 +29712,7 @@ lean_dec(x_3); return x_12; } } -LEAN_EXPORT lean_object* l_UInt64_reduceBinPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301____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, lean_object* x_11) { +LEAN_EXPORT lean_object* l_UInt64_reduceBinPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511____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, lean_object* x_11) { _start: { lean_object* x_12; lean_object* x_13; lean_object* x_14; @@ -33792,6 +29725,7 @@ lean_inc(x_9); lean_inc(x_8); lean_inc(x_7); x_14 = l_UInt64_fromExpr(x_13, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_13); if (lean_obj_tag(x_14) == 0) { lean_object* x_15; @@ -33812,7 +29746,7 @@ if (x_16 == 0) lean_object* x_17; lean_object* x_18; x_17 = lean_ctor_get(x_14, 0); lean_dec(x_17); -x_18 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_18 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; lean_ctor_set(x_14, 0, x_18); return x_14; } @@ -33822,7 +29756,7 @@ lean_object* x_19; lean_object* x_20; lean_object* x_21; x_19 = lean_ctor_get(x_14, 1); lean_inc(x_19); lean_dec(x_14); -x_20 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_20 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; x_21 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_21, 0, x_20); lean_ctor_set(x_21, 1, x_19); @@ -33844,6 +29778,7 @@ lean_inc(x_9); lean_inc(x_8); lean_inc(x_7); x_25 = l_UInt64_fromExpr(x_24, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_22); +lean_dec(x_24); if (lean_obj_tag(x_25) == 0) { lean_object* x_26; @@ -33865,7 +29800,7 @@ if (x_27 == 0) lean_object* x_28; lean_object* x_29; x_28 = lean_ctor_get(x_25, 0); lean_dec(x_28); -x_29 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_29 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; lean_ctor_set(x_25, 0, x_29); return x_25; } @@ -33875,7 +29810,7 @@ lean_object* x_30; lean_object* x_31; lean_object* x_32; x_30 = lean_ctor_get(x_25, 1); lean_inc(x_30); lean_dec(x_25); -x_31 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_31 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; x_32 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_32, 0, x_31); lean_ctor_set(x_32, 1, x_30); @@ -33884,29 +29819,23 @@ return x_32; } else { -lean_object* x_33; lean_object* x_34; uint64_t x_35; uint64_t x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; uint8_t x_40; lean_object* x_41; +lean_object* x_33; lean_object* x_34; lean_object* x_35; uint8_t x_36; lean_object* x_37; x_33 = lean_ctor_get(x_25, 1); lean_inc(x_33); lean_dec(x_25); x_34 = lean_ctor_get(x_26, 0); lean_inc(x_34); lean_dec(x_26); -x_35 = lean_ctor_get_uint64(x_23, sizeof(void*)*1); -lean_dec(x_23); -x_36 = lean_ctor_get_uint64(x_34, sizeof(void*)*1); -lean_dec(x_34); -x_37 = lean_box_uint64(x_35); -x_38 = lean_box_uint64(x_36); -x_39 = lean_apply_2(x_2, x_37, x_38); -x_40 = lean_unbox(x_39); -lean_dec(x_39); -x_41 = l_Lean_Meta_Simp_evalPropStep(x_1, x_40, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_33); -return x_41; +x_35 = lean_apply_2(x_2, x_23, x_34); +x_36 = lean_unbox(x_35); +lean_dec(x_35); +x_37 = l_Lean_Meta_Simp_evalPropStep(x_1, x_36, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_33); +return x_37; } } else { -uint8_t x_42; +uint8_t x_38; lean_dec(x_23); lean_dec(x_10); lean_dec(x_9); @@ -33914,19 +29843,49 @@ lean_dec(x_8); lean_dec(x_7); lean_dec(x_2); lean_dec(x_1); -x_42 = !lean_is_exclusive(x_25); -if (x_42 == 0) +x_38 = !lean_is_exclusive(x_25); +if (x_38 == 0) { return x_25; } else { +lean_object* x_39; lean_object* x_40; lean_object* x_41; +x_39 = lean_ctor_get(x_25, 0); +x_40 = lean_ctor_get(x_25, 1); +lean_inc(x_40); +lean_inc(x_39); +lean_dec(x_25); +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; +} +} +} +} +else +{ +uint8_t x_42; +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_2); +lean_dec(x_1); +x_42 = !lean_is_exclusive(x_14); +if (x_42 == 0) +{ +return x_14; +} +else +{ lean_object* x_43; lean_object* x_44; lean_object* x_45; -x_43 = lean_ctor_get(x_25, 0); -x_44 = lean_ctor_get(x_25, 1); +x_43 = lean_ctor_get(x_14, 0); +x_44 = lean_ctor_get(x_14, 1); lean_inc(x_44); lean_inc(x_43); -lean_dec(x_25); +lean_dec(x_14); x_45 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_45, 0, x_43); lean_ctor_set(x_45, 1, x_44); @@ -33935,37 +29894,7 @@ return x_45; } } } -else -{ -uint8_t x_46; -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_2); -lean_dec(x_1); -x_46 = !lean_is_exclusive(x_14); -if (x_46 == 0) -{ -return x_14; -} -else -{ -lean_object* x_47; lean_object* x_48; lean_object* x_49; -x_47 = lean_ctor_get(x_14, 0); -x_48 = lean_ctor_get(x_14, 1); -lean_inc(x_48); -lean_inc(x_47); -lean_dec(x_14); -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_EXPORT lean_object* l_UInt64_reduceBinPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301_(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_EXPORT lean_object* l_UInt64_reduceBinPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511_(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: { uint8_t x_13; @@ -33983,7 +29912,7 @@ lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); -x_14 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_14 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____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_12); @@ -33993,7 +29922,7 @@ else { lean_object* x_16; lean_object* x_17; x_16 = lean_box(0); -x_17 = l_UInt64_reduceBinPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301____lambda__1(x_4, x_3, x_16, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +x_17 = l_UInt64_reduceBinPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511____lambda__1(x_4, x_3, x_16, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); @@ -34001,11 +29930,11 @@ return x_17; } } } -LEAN_EXPORT lean_object* l_UInt64_reduceBinPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301____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, lean_object* x_11) { +LEAN_EXPORT lean_object* l_UInt64_reduceBinPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511____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, lean_object* x_11) { _start: { lean_object* x_12; -x_12 = l_UInt64_reduceBinPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301____lambda__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +x_12 = l_UInt64_reduceBinPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511____lambda__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); @@ -34013,7 +29942,7 @@ lean_dec(x_3); return x_12; } } -LEAN_EXPORT lean_object* l_UInt64_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301____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, lean_object* x_11) { +LEAN_EXPORT lean_object* l_UInt64_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511____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, lean_object* x_11) { _start: { lean_object* x_12; lean_object* x_13; lean_object* x_14; @@ -34026,6 +29955,7 @@ lean_inc(x_9); lean_inc(x_8); lean_inc(x_7); x_14 = l_UInt64_fromExpr(x_13, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_13); if (lean_obj_tag(x_14) == 0) { lean_object* x_15; @@ -34046,7 +29976,7 @@ if (x_16 == 0) lean_object* x_17; lean_object* x_18; x_17 = lean_ctor_get(x_14, 0); lean_dec(x_17); -x_18 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_18 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; lean_ctor_set(x_14, 0, x_18); return x_14; } @@ -34056,7 +29986,7 @@ lean_object* x_19; lean_object* x_20; lean_object* x_21; x_19 = lean_ctor_get(x_14, 1); lean_inc(x_19); lean_dec(x_14); -x_20 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_20 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; x_21 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_21, 0, x_20); lean_ctor_set(x_21, 1, x_19); @@ -34075,6 +30005,7 @@ lean_dec(x_15); x_24 = l_Lean_Expr_appArg_x21(x_1); lean_dec(x_1); x_25 = l_UInt64_fromExpr(x_24, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_22); +lean_dec(x_24); if (lean_obj_tag(x_25) == 0) { lean_object* x_26; @@ -34091,7 +30022,7 @@ if (x_27 == 0) lean_object* x_28; lean_object* x_29; x_28 = lean_ctor_get(x_25, 0); lean_dec(x_28); -x_29 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_29 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; lean_ctor_set(x_25, 0, x_29); return x_25; } @@ -34101,7 +30032,7 @@ lean_object* x_30; lean_object* x_31; lean_object* x_32; x_30 = lean_ctor_get(x_25, 1); lean_inc(x_30); lean_dec(x_25); -x_31 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_31 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; x_32 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_32, 0, x_31); lean_ctor_set(x_32, 1, x_30); @@ -34114,132 +30045,120 @@ uint8_t x_33; x_33 = !lean_is_exclusive(x_25); if (x_33 == 0) { -lean_object* x_34; lean_object* x_35; uint64_t x_36; uint64_t x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; uint8_t x_41; +lean_object* x_34; lean_object* x_35; lean_object* x_36; uint8_t x_37; x_34 = lean_ctor_get(x_25, 0); lean_dec(x_34); x_35 = lean_ctor_get(x_26, 0); lean_inc(x_35); lean_dec(x_26); -x_36 = lean_ctor_get_uint64(x_23, sizeof(void*)*1); -lean_dec(x_23); -x_37 = lean_ctor_get_uint64(x_35, sizeof(void*)*1); -lean_dec(x_35); -x_38 = lean_box_uint64(x_36); -x_39 = lean_box_uint64(x_37); -x_40 = lean_apply_2(x_2, x_38, x_39); -x_41 = lean_unbox(x_40); -lean_dec(x_40); -if (x_41 == 0) +x_36 = lean_apply_2(x_2, x_23, x_35); +x_37 = lean_unbox(x_36); +lean_dec(x_36); +if (x_37 == 0) { -lean_object* x_42; -x_42 = l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__5; -lean_ctor_set(x_25, 0, x_42); +lean_object* x_38; +x_38 = l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__5; +lean_ctor_set(x_25, 0, x_38); return x_25; } else { -lean_object* x_43; -x_43 = l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__10; -lean_ctor_set(x_25, 0, x_43); +lean_object* x_39; +x_39 = l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__10; +lean_ctor_set(x_25, 0, x_39); return x_25; } } else { -lean_object* x_44; lean_object* x_45; uint64_t x_46; uint64_t x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; uint8_t x_51; -x_44 = lean_ctor_get(x_25, 1); -lean_inc(x_44); +lean_object* x_40; lean_object* x_41; lean_object* x_42; uint8_t x_43; +x_40 = lean_ctor_get(x_25, 1); +lean_inc(x_40); lean_dec(x_25); -x_45 = lean_ctor_get(x_26, 0); -lean_inc(x_45); +x_41 = lean_ctor_get(x_26, 0); +lean_inc(x_41); lean_dec(x_26); -x_46 = lean_ctor_get_uint64(x_23, sizeof(void*)*1); -lean_dec(x_23); -x_47 = lean_ctor_get_uint64(x_45, sizeof(void*)*1); -lean_dec(x_45); -x_48 = lean_box_uint64(x_46); -x_49 = lean_box_uint64(x_47); -x_50 = lean_apply_2(x_2, x_48, x_49); -x_51 = lean_unbox(x_50); -lean_dec(x_50); -if (x_51 == 0) +x_42 = lean_apply_2(x_2, x_23, x_41); +x_43 = lean_unbox(x_42); +lean_dec(x_42); +if (x_43 == 0) { -lean_object* x_52; lean_object* x_53; -x_52 = l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__5; -x_53 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_53, 0, x_52); -lean_ctor_set(x_53, 1, x_44); -return x_53; +lean_object* x_44; lean_object* x_45; +x_44 = l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__5; +x_45 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_45, 0, x_44); +lean_ctor_set(x_45, 1, x_40); +return x_45; } else { -lean_object* x_54; lean_object* x_55; -x_54 = l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__10; -x_55 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_55, 0, x_54); -lean_ctor_set(x_55, 1, x_44); -return x_55; +lean_object* x_46; lean_object* x_47; +x_46 = l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__10; +x_47 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_47, 0, x_46); +lean_ctor_set(x_47, 1, x_40); +return x_47; } } } } else { -uint8_t x_56; +uint8_t x_48; lean_dec(x_23); lean_dec(x_2); -x_56 = !lean_is_exclusive(x_25); -if (x_56 == 0) +x_48 = !lean_is_exclusive(x_25); +if (x_48 == 0) { return x_25; } else { -lean_object* x_57; lean_object* x_58; lean_object* x_59; -x_57 = lean_ctor_get(x_25, 0); -x_58 = lean_ctor_get(x_25, 1); -lean_inc(x_58); -lean_inc(x_57); +lean_object* x_49; lean_object* x_50; lean_object* x_51; +x_49 = lean_ctor_get(x_25, 0); +x_50 = lean_ctor_get(x_25, 1); +lean_inc(x_50); +lean_inc(x_49); lean_dec(x_25); -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; +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 { -uint8_t x_60; +uint8_t x_52; lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); lean_dec(x_7); lean_dec(x_2); lean_dec(x_1); -x_60 = !lean_is_exclusive(x_14); -if (x_60 == 0) +x_52 = !lean_is_exclusive(x_14); +if (x_52 == 0) { return x_14; } else { -lean_object* x_61; lean_object* x_62; lean_object* x_63; -x_61 = lean_ctor_get(x_14, 0); -x_62 = lean_ctor_get(x_14, 1); -lean_inc(x_62); -lean_inc(x_61); +lean_object* x_53; lean_object* x_54; lean_object* x_55; +x_53 = lean_ctor_get(x_14, 0); +x_54 = lean_ctor_get(x_14, 1); +lean_inc(x_54); +lean_inc(x_53); lean_dec(x_14); -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; +x_55 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_55, 0, x_53); +lean_ctor_set(x_55, 1, x_54); +return x_55; } } } } -LEAN_EXPORT lean_object* l_UInt64_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301_(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_EXPORT lean_object* l_UInt64_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511_(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: { uint8_t x_13; @@ -34257,7 +30176,7 @@ lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); -x_14 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_14 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____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_12); @@ -34267,7 +30186,7 @@ else { lean_object* x_16; lean_object* x_17; x_16 = lean_box(0); -x_17 = l_UInt64_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301____lambda__1(x_4, x_3, x_16, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +x_17 = l_UInt64_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511____lambda__1(x_4, x_3, x_16, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); @@ -34275,11 +30194,11 @@ return x_17; } } } -LEAN_EXPORT lean_object* l_UInt64_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301____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, lean_object* x_11) { +LEAN_EXPORT lean_object* l_UInt64_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511____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, lean_object* x_11) { _start: { lean_object* x_12; -x_12 = l_UInt64_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301____lambda__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +x_12 = l_UInt64_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511____lambda__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); @@ -34300,6 +30219,7 @@ lean_inc(x_8); lean_inc(x_7); lean_inc(x_6); x_13 = l_UInt64_fromExpr(x_12, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_12); if (lean_obj_tag(x_13) == 0) { lean_object* x_14; @@ -34319,7 +30239,7 @@ if (x_15 == 0) lean_object* x_16; lean_object* x_17; x_16 = lean_ctor_get(x_13, 0); lean_dec(x_16); -x_17 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_17 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; lean_ctor_set(x_13, 0, x_17); return x_13; } @@ -34329,7 +30249,7 @@ lean_object* x_18; lean_object* x_19; lean_object* x_20; x_18 = lean_ctor_get(x_13, 1); lean_inc(x_18); lean_dec(x_13); -x_19 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_19 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; x_20 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_20, 0, x_19); lean_ctor_set(x_20, 1, x_18); @@ -34348,6 +30268,7 @@ lean_dec(x_14); x_23 = l_Lean_Expr_appArg_x21(x_1); lean_dec(x_1); x_24 = l_UInt64_fromExpr(x_23, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_21); +lean_dec(x_23); if (lean_obj_tag(x_24) == 0) { lean_object* x_25; @@ -34363,7 +30284,7 @@ if (x_26 == 0) lean_object* x_27; lean_object* x_28; x_27 = lean_ctor_get(x_24, 0); lean_dec(x_27); -x_28 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_28 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; lean_ctor_set(x_24, 0, x_28); return x_24; } @@ -34373,7 +30294,7 @@ lean_object* x_29; lean_object* x_30; lean_object* x_31; x_29 = lean_ctor_get(x_24, 1); lean_inc(x_29); lean_dec(x_24); -x_30 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_30 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; x_31 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_31, 0, x_30); lean_ctor_set(x_31, 1, x_29); @@ -34386,160 +30307,127 @@ uint8_t x_32; x_32 = !lean_is_exclusive(x_24); if (x_32 == 0) { -lean_object* x_33; lean_object* x_34; uint8_t x_35; +lean_object* x_33; lean_object* x_34; uint64_t x_35; uint64_t x_36; uint64_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; uint32_t x_46; uint8_t x_47; lean_object* x_48; lean_object* x_49; x_33 = lean_ctor_get(x_24, 0); lean_dec(x_33); x_34 = lean_ctor_get(x_25, 0); lean_inc(x_34); lean_dec(x_25); -x_35 = !lean_is_exclusive(x_22); -if (x_35 == 0) -{ -uint64_t x_36; uint64_t x_37; uint64_t x_38; lean_object* x_39; lean_object* x_40; uint32_t x_41; uint8_t x_42; lean_object* x_43; lean_object* x_44; -x_36 = lean_ctor_get_uint64(x_22, sizeof(void*)*1); -x_37 = lean_ctor_get_uint64(x_34, sizeof(void*)*1); -lean_dec(x_34); -x_38 = lean_uint64_add(x_36, x_37); -lean_ctor_set_uint64(x_22, sizeof(void*)*1, x_38); -x_39 = l_UInt64_toExpr(x_22); -x_40 = lean_box(0); -x_41 = 0; -x_42 = 1; -x_43 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_43, 0, x_39); -lean_ctor_set(x_43, 1, x_40); -lean_ctor_set_uint32(x_43, sizeof(void*)*2, x_41); -lean_ctor_set_uint8(x_43, sizeof(void*)*2 + 4, x_42); -x_44 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_44, 0, x_43); -lean_ctor_set(x_24, 0, x_44); -return x_24; -} -else -{ -lean_object* x_45; uint64_t x_46; uint64_t x_47; uint64_t x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; uint32_t x_52; uint8_t x_53; lean_object* x_54; lean_object* x_55; -x_45 = lean_ctor_get(x_22, 0); -x_46 = lean_ctor_get_uint64(x_22, sizeof(void*)*1); -lean_inc(x_45); +x_35 = lean_unbox_uint64(x_22); lean_dec(x_22); -x_47 = lean_ctor_get_uint64(x_34, sizeof(void*)*1); +x_36 = lean_unbox_uint64(x_34); lean_dec(x_34); -x_48 = lean_uint64_add(x_46, x_47); -x_49 = lean_alloc_ctor(0, 1, 8); -lean_ctor_set(x_49, 0, x_45); -lean_ctor_set_uint64(x_49, sizeof(void*)*1, x_48); -x_50 = l_UInt64_toExpr(x_49); -x_51 = lean_box(0); -x_52 = 0; -x_53 = 1; -x_54 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_54, 0, x_50); -lean_ctor_set(x_54, 1, x_51); -lean_ctor_set_uint32(x_54, sizeof(void*)*2, x_52); -lean_ctor_set_uint8(x_54, sizeof(void*)*2 + 4, x_53); -x_55 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_55, 0, x_54); -lean_ctor_set(x_24, 0, x_55); +x_37 = lean_uint64_add(x_35, x_36); +x_38 = lean_uint64_to_nat(x_37); +x_39 = l_Lean_mkRawNatLit(x_38); +x_40 = l_UInt64_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511____lambda__1___closed__3; +lean_inc(x_39); +x_41 = l_Lean_Expr_app___override(x_40, x_39); +x_42 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__4; +x_43 = l_UInt64_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511____lambda__1___closed__1; +x_44 = l_Lean_mkApp3(x_42, x_43, x_39, x_41); +x_45 = lean_box(0); +x_46 = 0; +x_47 = 1; +x_48 = lean_alloc_ctor(0, 2, 5); +lean_ctor_set(x_48, 0, x_44); +lean_ctor_set(x_48, 1, x_45); +lean_ctor_set_uint32(x_48, sizeof(void*)*2, x_46); +lean_ctor_set_uint8(x_48, sizeof(void*)*2 + 4, x_47); +x_49 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_49, 0, x_48); +lean_ctor_set(x_24, 0, x_49); return x_24; } -} else { -lean_object* x_56; lean_object* x_57; lean_object* x_58; uint64_t x_59; lean_object* x_60; uint64_t x_61; uint64_t x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; uint32_t x_66; uint8_t x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; -x_56 = lean_ctor_get(x_24, 1); -lean_inc(x_56); +lean_object* x_50; lean_object* x_51; uint64_t x_52; uint64_t x_53; uint64_t 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; uint32_t x_63; uint8_t x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; +x_50 = lean_ctor_get(x_24, 1); +lean_inc(x_50); lean_dec(x_24); -x_57 = lean_ctor_get(x_25, 0); -lean_inc(x_57); +x_51 = lean_ctor_get(x_25, 0); +lean_inc(x_51); lean_dec(x_25); -x_58 = lean_ctor_get(x_22, 0); -lean_inc(x_58); -x_59 = lean_ctor_get_uint64(x_22, sizeof(void*)*1); -if (lean_is_exclusive(x_22)) { - lean_ctor_release(x_22, 0); - x_60 = x_22; -} else { - lean_dec_ref(x_22); - x_60 = lean_box(0); -} -x_61 = lean_ctor_get_uint64(x_57, sizeof(void*)*1); -lean_dec(x_57); -x_62 = lean_uint64_add(x_59, x_61); -if (lean_is_scalar(x_60)) { - x_63 = lean_alloc_ctor(0, 1, 8); -} else { - x_63 = x_60; -} -lean_ctor_set(x_63, 0, x_58); -lean_ctor_set_uint64(x_63, sizeof(void*)*1, x_62); -x_64 = l_UInt64_toExpr(x_63); -x_65 = lean_box(0); -x_66 = 0; -x_67 = 1; -x_68 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_68, 0, x_64); -lean_ctor_set(x_68, 1, x_65); -lean_ctor_set_uint32(x_68, sizeof(void*)*2, x_66); -lean_ctor_set_uint8(x_68, sizeof(void*)*2 + 4, x_67); -x_69 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_69, 0, x_68); -x_70 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_70, 0, x_69); -lean_ctor_set(x_70, 1, x_56); -return x_70; +x_52 = lean_unbox_uint64(x_22); +lean_dec(x_22); +x_53 = lean_unbox_uint64(x_51); +lean_dec(x_51); +x_54 = lean_uint64_add(x_52, x_53); +x_55 = lean_uint64_to_nat(x_54); +x_56 = l_Lean_mkRawNatLit(x_55); +x_57 = l_UInt64_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511____lambda__1___closed__3; +lean_inc(x_56); +x_58 = l_Lean_Expr_app___override(x_57, x_56); +x_59 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__4; +x_60 = l_UInt64_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511____lambda__1___closed__1; +x_61 = l_Lean_mkApp3(x_59, x_60, x_56, x_58); +x_62 = lean_box(0); +x_63 = 0; +x_64 = 1; +x_65 = lean_alloc_ctor(0, 2, 5); +lean_ctor_set(x_65, 0, x_61); +lean_ctor_set(x_65, 1, x_62); +lean_ctor_set_uint32(x_65, sizeof(void*)*2, x_63); +lean_ctor_set_uint8(x_65, sizeof(void*)*2 + 4, x_64); +x_66 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_66, 0, x_65); +x_67 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_67, 0, x_66); +lean_ctor_set(x_67, 1, x_50); +return x_67; } } } else { -uint8_t x_71; +uint8_t x_68; lean_dec(x_22); -x_71 = !lean_is_exclusive(x_24); -if (x_71 == 0) +x_68 = !lean_is_exclusive(x_24); +if (x_68 == 0) { return x_24; } else { -lean_object* x_72; lean_object* x_73; lean_object* x_74; -x_72 = lean_ctor_get(x_24, 0); -x_73 = lean_ctor_get(x_24, 1); -lean_inc(x_73); -lean_inc(x_72); +lean_object* x_69; lean_object* x_70; lean_object* x_71; +x_69 = lean_ctor_get(x_24, 0); +x_70 = lean_ctor_get(x_24, 1); +lean_inc(x_70); +lean_inc(x_69); lean_dec(x_24); -x_74 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_74, 0, x_72); -lean_ctor_set(x_74, 1, x_73); -return x_74; +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; } } } } else { -uint8_t x_75; +uint8_t x_72; lean_dec(x_9); lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_1); -x_75 = !lean_is_exclusive(x_13); -if (x_75 == 0) +x_72 = !lean_is_exclusive(x_13); +if (x_72 == 0) { return x_13; } else { -lean_object* x_76; lean_object* x_77; lean_object* x_78; -x_76 = lean_ctor_get(x_13, 0); -x_77 = lean_ctor_get(x_13, 1); -lean_inc(x_77); -lean_inc(x_76); +lean_object* x_73; lean_object* x_74; lean_object* x_75; +x_73 = lean_ctor_get(x_13, 0); +x_74 = lean_ctor_get(x_13, 1); +lean_inc(x_74); +lean_inc(x_73); lean_dec(x_13); -x_78 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_78, 0, x_76); -lean_ctor_set(x_78, 1, x_77); -return x_78; +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; } } } @@ -34548,7 +30436,7 @@ LEAN_EXPORT lean_object* l_UInt64_reduceAdd(lean_object* x_1, lean_object* x_2, _start: { lean_object* x_10; lean_object* x_11; uint8_t x_12; -x_10 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__425; +x_10 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__279; x_11 = lean_unsigned_to_nat(6u); x_12 = l_Lean_Expr_isAppOfArity(x_1, x_10, x_11); if (x_12 == 0) @@ -34562,7 +30450,7 @@ lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_13 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_13 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; x_14 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_14, 0, x_13); lean_ctor_set(x_14, 1, x_9); @@ -34592,17 +30480,17 @@ lean_dec(x_2); return x_11; } } -static lean_object* _init_l___regBuiltin_UInt64_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13939____closed__1() { +static lean_object* _init_l___regBuiltin_UInt64_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12045____closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_UInt64_fromExpr___closed__1; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__410; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__264; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt64_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13939____closed__2() { +static lean_object* _init_l___regBuiltin_UInt64_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12045____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -34614,67 +30502,67 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt64_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13939____closed__3() { +static lean_object* _init_l___regBuiltin_UInt64_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12045____closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9616____closed__5; -x_2 = l___regBuiltin_UInt64_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13939____closed__2; +x_1 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8049____closed__5; +x_2 = l___regBuiltin_UInt64_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12045____closed__2; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt64_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13939____closed__4() { +static lean_object* _init_l___regBuiltin_UInt64_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12045____closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt64_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13939____closed__3; -x_2 = l___regBuiltin_UInt64_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13939____closed__2; +x_1 = l___regBuiltin_UInt64_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12045____closed__3; +x_2 = l___regBuiltin_UInt64_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12045____closed__2; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt64_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13939____closed__5() { +static lean_object* _init_l___regBuiltin_UInt64_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12045____closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt64_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13939____closed__4; -x_2 = l___regBuiltin_UInt64_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13939____closed__2; +x_1 = l___regBuiltin_UInt64_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12045____closed__4; +x_2 = l___regBuiltin_UInt64_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12045____closed__2; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt64_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13939____closed__6() { +static lean_object* _init_l___regBuiltin_UInt64_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12045____closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt64_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13939____closed__5; +x_1 = l___regBuiltin_UInt64_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12045____closed__5; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt64_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13939____closed__7() { +static lean_object* _init_l___regBuiltin_UInt64_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12045____closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt64_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13939____closed__6; +x_1 = l___regBuiltin_UInt64_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12045____closed__6; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt64_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13939____closed__8() { +static lean_object* _init_l___regBuiltin_UInt64_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12045____closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt64_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13939____closed__7; +x_1 = l___regBuiltin_UInt64_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12045____closed__7; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt64_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13939____closed__9() { +static lean_object* _init_l___regBuiltin_UInt64_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12045____closed__9() { _start: { lean_object* x_1; @@ -34682,37 +30570,37 @@ x_1 = lean_alloc_closure((void*)(l_UInt64_reduceAdd), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_UInt64_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13939_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_UInt64_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12045_(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_UInt64_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13939____closed__1; -x_3 = l___regBuiltin_UInt64_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13939____closed__8; -x_4 = l___regBuiltin_UInt64_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13939____closed__9; +x_2 = l___regBuiltin_UInt64_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12045____closed__1; +x_3 = l___regBuiltin_UInt64_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12045____closed__8; +x_4 = l___regBuiltin_UInt64_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12045____closed__9; x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); return x_5; } } -LEAN_EXPORT lean_object* l___regBuiltin_UInt64_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13941_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_UInt64_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12047_(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____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9618____closed__1; -x_3 = l___regBuiltin_UInt64_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13939____closed__1; +x_2 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8051____closed__1; +x_3 = l___regBuiltin_UInt64_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12045____closed__1; x_4 = 1; -x_5 = l___regBuiltin_UInt64_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13939____closed__9; +x_5 = l___regBuiltin_UInt64_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12045____closed__9; 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_UInt64_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13943_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_UInt64_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12049_(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____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9620____closed__1; -x_3 = l___regBuiltin_UInt64_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13939____closed__1; +x_2 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8053____closed__1; +x_3 = l___regBuiltin_UInt64_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12045____closed__1; x_4 = 1; -x_5 = l___regBuiltin_UInt64_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13939____closed__9; +x_5 = l___regBuiltin_UInt64_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12045____closed__9; x_6 = l_Lean_Meta_Simp_addSimprocBuiltinAttrCore(x_2, x_3, x_4, x_5, x_1); return x_6; } @@ -34730,6 +30618,7 @@ lean_inc(x_8); lean_inc(x_7); lean_inc(x_6); x_13 = l_UInt64_fromExpr(x_12, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_12); if (lean_obj_tag(x_13) == 0) { lean_object* x_14; @@ -34749,7 +30638,7 @@ if (x_15 == 0) lean_object* x_16; lean_object* x_17; x_16 = lean_ctor_get(x_13, 0); lean_dec(x_16); -x_17 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_17 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; lean_ctor_set(x_13, 0, x_17); return x_13; } @@ -34759,7 +30648,7 @@ lean_object* x_18; lean_object* x_19; lean_object* x_20; x_18 = lean_ctor_get(x_13, 1); lean_inc(x_18); lean_dec(x_13); -x_19 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_19 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; x_20 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_20, 0, x_19); lean_ctor_set(x_20, 1, x_18); @@ -34778,6 +30667,7 @@ lean_dec(x_14); x_23 = l_Lean_Expr_appArg_x21(x_1); lean_dec(x_1); x_24 = l_UInt64_fromExpr(x_23, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_21); +lean_dec(x_23); if (lean_obj_tag(x_24) == 0) { lean_object* x_25; @@ -34793,7 +30683,7 @@ if (x_26 == 0) lean_object* x_27; lean_object* x_28; x_27 = lean_ctor_get(x_24, 0); lean_dec(x_27); -x_28 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_28 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; lean_ctor_set(x_24, 0, x_28); return x_24; } @@ -34803,7 +30693,7 @@ lean_object* x_29; lean_object* x_30; lean_object* x_31; x_29 = lean_ctor_get(x_24, 1); lean_inc(x_29); lean_dec(x_24); -x_30 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_30 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; x_31 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_31, 0, x_30); lean_ctor_set(x_31, 1, x_29); @@ -34816,160 +30706,127 @@ uint8_t x_32; x_32 = !lean_is_exclusive(x_24); if (x_32 == 0) { -lean_object* x_33; lean_object* x_34; uint8_t x_35; +lean_object* x_33; lean_object* x_34; uint64_t x_35; uint64_t x_36; uint64_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; uint32_t x_46; uint8_t x_47; lean_object* x_48; lean_object* x_49; x_33 = lean_ctor_get(x_24, 0); lean_dec(x_33); x_34 = lean_ctor_get(x_25, 0); lean_inc(x_34); lean_dec(x_25); -x_35 = !lean_is_exclusive(x_22); -if (x_35 == 0) -{ -uint64_t x_36; uint64_t x_37; uint64_t x_38; lean_object* x_39; lean_object* x_40; uint32_t x_41; uint8_t x_42; lean_object* x_43; lean_object* x_44; -x_36 = lean_ctor_get_uint64(x_22, sizeof(void*)*1); -x_37 = lean_ctor_get_uint64(x_34, sizeof(void*)*1); -lean_dec(x_34); -x_38 = lean_uint64_mul(x_36, x_37); -lean_ctor_set_uint64(x_22, sizeof(void*)*1, x_38); -x_39 = l_UInt64_toExpr(x_22); -x_40 = lean_box(0); -x_41 = 0; -x_42 = 1; -x_43 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_43, 0, x_39); -lean_ctor_set(x_43, 1, x_40); -lean_ctor_set_uint32(x_43, sizeof(void*)*2, x_41); -lean_ctor_set_uint8(x_43, sizeof(void*)*2 + 4, x_42); -x_44 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_44, 0, x_43); -lean_ctor_set(x_24, 0, x_44); -return x_24; -} -else -{ -lean_object* x_45; uint64_t x_46; uint64_t x_47; uint64_t x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; uint32_t x_52; uint8_t x_53; lean_object* x_54; lean_object* x_55; -x_45 = lean_ctor_get(x_22, 0); -x_46 = lean_ctor_get_uint64(x_22, sizeof(void*)*1); -lean_inc(x_45); +x_35 = lean_unbox_uint64(x_22); lean_dec(x_22); -x_47 = lean_ctor_get_uint64(x_34, sizeof(void*)*1); +x_36 = lean_unbox_uint64(x_34); lean_dec(x_34); -x_48 = lean_uint64_mul(x_46, x_47); -x_49 = lean_alloc_ctor(0, 1, 8); -lean_ctor_set(x_49, 0, x_45); -lean_ctor_set_uint64(x_49, sizeof(void*)*1, x_48); -x_50 = l_UInt64_toExpr(x_49); -x_51 = lean_box(0); -x_52 = 0; -x_53 = 1; -x_54 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_54, 0, x_50); -lean_ctor_set(x_54, 1, x_51); -lean_ctor_set_uint32(x_54, sizeof(void*)*2, x_52); -lean_ctor_set_uint8(x_54, sizeof(void*)*2 + 4, x_53); -x_55 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_55, 0, x_54); -lean_ctor_set(x_24, 0, x_55); +x_37 = lean_uint64_mul(x_35, x_36); +x_38 = lean_uint64_to_nat(x_37); +x_39 = l_Lean_mkRawNatLit(x_38); +x_40 = l_UInt64_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511____lambda__1___closed__3; +lean_inc(x_39); +x_41 = l_Lean_Expr_app___override(x_40, x_39); +x_42 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__4; +x_43 = l_UInt64_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511____lambda__1___closed__1; +x_44 = l_Lean_mkApp3(x_42, x_43, x_39, x_41); +x_45 = lean_box(0); +x_46 = 0; +x_47 = 1; +x_48 = lean_alloc_ctor(0, 2, 5); +lean_ctor_set(x_48, 0, x_44); +lean_ctor_set(x_48, 1, x_45); +lean_ctor_set_uint32(x_48, sizeof(void*)*2, x_46); +lean_ctor_set_uint8(x_48, sizeof(void*)*2 + 4, x_47); +x_49 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_49, 0, x_48); +lean_ctor_set(x_24, 0, x_49); return x_24; } -} else { -lean_object* x_56; lean_object* x_57; lean_object* x_58; uint64_t x_59; lean_object* x_60; uint64_t x_61; uint64_t x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; uint32_t x_66; uint8_t x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; -x_56 = lean_ctor_get(x_24, 1); -lean_inc(x_56); +lean_object* x_50; lean_object* x_51; uint64_t x_52; uint64_t x_53; uint64_t 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; uint32_t x_63; uint8_t x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; +x_50 = lean_ctor_get(x_24, 1); +lean_inc(x_50); lean_dec(x_24); -x_57 = lean_ctor_get(x_25, 0); -lean_inc(x_57); +x_51 = lean_ctor_get(x_25, 0); +lean_inc(x_51); lean_dec(x_25); -x_58 = lean_ctor_get(x_22, 0); -lean_inc(x_58); -x_59 = lean_ctor_get_uint64(x_22, sizeof(void*)*1); -if (lean_is_exclusive(x_22)) { - lean_ctor_release(x_22, 0); - x_60 = x_22; -} else { - lean_dec_ref(x_22); - x_60 = lean_box(0); -} -x_61 = lean_ctor_get_uint64(x_57, sizeof(void*)*1); -lean_dec(x_57); -x_62 = lean_uint64_mul(x_59, x_61); -if (lean_is_scalar(x_60)) { - x_63 = lean_alloc_ctor(0, 1, 8); -} else { - x_63 = x_60; -} -lean_ctor_set(x_63, 0, x_58); -lean_ctor_set_uint64(x_63, sizeof(void*)*1, x_62); -x_64 = l_UInt64_toExpr(x_63); -x_65 = lean_box(0); -x_66 = 0; -x_67 = 1; -x_68 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_68, 0, x_64); -lean_ctor_set(x_68, 1, x_65); -lean_ctor_set_uint32(x_68, sizeof(void*)*2, x_66); -lean_ctor_set_uint8(x_68, sizeof(void*)*2 + 4, x_67); -x_69 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_69, 0, x_68); -x_70 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_70, 0, x_69); -lean_ctor_set(x_70, 1, x_56); -return x_70; +x_52 = lean_unbox_uint64(x_22); +lean_dec(x_22); +x_53 = lean_unbox_uint64(x_51); +lean_dec(x_51); +x_54 = lean_uint64_mul(x_52, x_53); +x_55 = lean_uint64_to_nat(x_54); +x_56 = l_Lean_mkRawNatLit(x_55); +x_57 = l_UInt64_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511____lambda__1___closed__3; +lean_inc(x_56); +x_58 = l_Lean_Expr_app___override(x_57, x_56); +x_59 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__4; +x_60 = l_UInt64_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511____lambda__1___closed__1; +x_61 = l_Lean_mkApp3(x_59, x_60, x_56, x_58); +x_62 = lean_box(0); +x_63 = 0; +x_64 = 1; +x_65 = lean_alloc_ctor(0, 2, 5); +lean_ctor_set(x_65, 0, x_61); +lean_ctor_set(x_65, 1, x_62); +lean_ctor_set_uint32(x_65, sizeof(void*)*2, x_63); +lean_ctor_set_uint8(x_65, sizeof(void*)*2 + 4, x_64); +x_66 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_66, 0, x_65); +x_67 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_67, 0, x_66); +lean_ctor_set(x_67, 1, x_50); +return x_67; } } } else { -uint8_t x_71; +uint8_t x_68; lean_dec(x_22); -x_71 = !lean_is_exclusive(x_24); -if (x_71 == 0) +x_68 = !lean_is_exclusive(x_24); +if (x_68 == 0) { return x_24; } else { -lean_object* x_72; lean_object* x_73; lean_object* x_74; -x_72 = lean_ctor_get(x_24, 0); -x_73 = lean_ctor_get(x_24, 1); -lean_inc(x_73); -lean_inc(x_72); +lean_object* x_69; lean_object* x_70; lean_object* x_71; +x_69 = lean_ctor_get(x_24, 0); +x_70 = lean_ctor_get(x_24, 1); +lean_inc(x_70); +lean_inc(x_69); lean_dec(x_24); -x_74 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_74, 0, x_72); -lean_ctor_set(x_74, 1, x_73); -return x_74; +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; } } } } else { -uint8_t x_75; +uint8_t x_72; lean_dec(x_9); lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_1); -x_75 = !lean_is_exclusive(x_13); -if (x_75 == 0) +x_72 = !lean_is_exclusive(x_13); +if (x_72 == 0) { return x_13; } else { -lean_object* x_76; lean_object* x_77; lean_object* x_78; -x_76 = lean_ctor_get(x_13, 0); -x_77 = lean_ctor_get(x_13, 1); -lean_inc(x_77); -lean_inc(x_76); +lean_object* x_73; lean_object* x_74; lean_object* x_75; +x_73 = lean_ctor_get(x_13, 0); +x_74 = lean_ctor_get(x_13, 1); +lean_inc(x_74); +lean_inc(x_73); lean_dec(x_13); -x_78 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_78, 0, x_76); -lean_ctor_set(x_78, 1, x_77); -return x_78; +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; } } } @@ -34978,7 +30835,7 @@ LEAN_EXPORT lean_object* l_UInt64_reduceMul(lean_object* x_1, lean_object* x_2, _start: { lean_object* x_10; lean_object* x_11; uint8_t x_12; -x_10 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__443; +x_10 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__299; x_11 = lean_unsigned_to_nat(6u); x_12 = l_Lean_Expr_isAppOfArity(x_1, x_10, x_11); if (x_12 == 0) @@ -34992,7 +30849,7 @@ lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_13 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_13 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; x_14 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_14, 0, x_13); lean_ctor_set(x_14, 1, x_9); @@ -35022,77 +30879,77 @@ lean_dec(x_2); return x_11; } } -static lean_object* _init_l___regBuiltin_UInt64_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13979____closed__1() { +static lean_object* _init_l___regBuiltin_UInt64_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12085____closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_UInt64_fromExpr___closed__1; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__433; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__289; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt64_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13979____closed__2() { +static lean_object* _init_l___regBuiltin_UInt64_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12085____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt8_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9656____closed__3; -x_2 = l___regBuiltin_UInt64_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13939____closed__2; +x_1 = l___regBuiltin_UInt8_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8089____closed__3; +x_2 = l___regBuiltin_UInt64_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12045____closed__2; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt64_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13979____closed__3() { +static lean_object* _init_l___regBuiltin_UInt64_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12085____closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt64_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13979____closed__2; -x_2 = l___regBuiltin_UInt64_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13939____closed__2; +x_1 = l___regBuiltin_UInt64_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12085____closed__2; +x_2 = l___regBuiltin_UInt64_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12045____closed__2; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt64_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13979____closed__4() { +static lean_object* _init_l___regBuiltin_UInt64_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12085____closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt64_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13979____closed__3; -x_2 = l___regBuiltin_UInt64_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13939____closed__2; +x_1 = l___regBuiltin_UInt64_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12085____closed__3; +x_2 = l___regBuiltin_UInt64_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12045____closed__2; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt64_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13979____closed__5() { +static lean_object* _init_l___regBuiltin_UInt64_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12085____closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt64_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13979____closed__4; +x_1 = l___regBuiltin_UInt64_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12085____closed__4; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt64_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13979____closed__6() { +static lean_object* _init_l___regBuiltin_UInt64_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12085____closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt64_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13979____closed__5; +x_1 = l___regBuiltin_UInt64_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12085____closed__5; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt64_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13979____closed__7() { +static lean_object* _init_l___regBuiltin_UInt64_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12085____closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt64_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13979____closed__6; +x_1 = l___regBuiltin_UInt64_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12085____closed__6; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt64_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13979____closed__8() { +static lean_object* _init_l___regBuiltin_UInt64_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12085____closed__8() { _start: { lean_object* x_1; @@ -35100,37 +30957,37 @@ x_1 = lean_alloc_closure((void*)(l_UInt64_reduceMul), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_UInt64_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13979_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_UInt64_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12085_(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_UInt64_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13979____closed__1; -x_3 = l___regBuiltin_UInt64_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13979____closed__7; -x_4 = l___regBuiltin_UInt64_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13979____closed__8; +x_2 = l___regBuiltin_UInt64_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12085____closed__1; +x_3 = l___regBuiltin_UInt64_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12085____closed__7; +x_4 = l___regBuiltin_UInt64_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12085____closed__8; x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); return x_5; } } -LEAN_EXPORT lean_object* l___regBuiltin_UInt64_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13981_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_UInt64_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12087_(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____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9618____closed__1; -x_3 = l___regBuiltin_UInt64_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13979____closed__1; +x_2 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8051____closed__1; +x_3 = l___regBuiltin_UInt64_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12085____closed__1; x_4 = 1; -x_5 = l___regBuiltin_UInt64_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13979____closed__8; +x_5 = l___regBuiltin_UInt64_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12085____closed__8; 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_UInt64_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13983_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_UInt64_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12089_(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____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9620____closed__1; -x_3 = l___regBuiltin_UInt64_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13979____closed__1; +x_2 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8053____closed__1; +x_3 = l___regBuiltin_UInt64_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12085____closed__1; x_4 = 1; -x_5 = l___regBuiltin_UInt64_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13979____closed__8; +x_5 = l___regBuiltin_UInt64_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12085____closed__8; x_6 = l_Lean_Meta_Simp_addSimprocBuiltinAttrCore(x_2, x_3, x_4, x_5, x_1); return x_6; } @@ -35148,6 +31005,7 @@ lean_inc(x_8); lean_inc(x_7); lean_inc(x_6); x_13 = l_UInt64_fromExpr(x_12, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_12); if (lean_obj_tag(x_13) == 0) { lean_object* x_14; @@ -35167,7 +31025,7 @@ if (x_15 == 0) lean_object* x_16; lean_object* x_17; x_16 = lean_ctor_get(x_13, 0); lean_dec(x_16); -x_17 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_17 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; lean_ctor_set(x_13, 0, x_17); return x_13; } @@ -35177,7 +31035,7 @@ lean_object* x_18; lean_object* x_19; lean_object* x_20; x_18 = lean_ctor_get(x_13, 1); lean_inc(x_18); lean_dec(x_13); -x_19 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_19 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; x_20 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_20, 0, x_19); lean_ctor_set(x_20, 1, x_18); @@ -35196,6 +31054,7 @@ lean_dec(x_14); x_23 = l_Lean_Expr_appArg_x21(x_1); lean_dec(x_1); x_24 = l_UInt64_fromExpr(x_23, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_21); +lean_dec(x_23); if (lean_obj_tag(x_24) == 0) { lean_object* x_25; @@ -35211,7 +31070,7 @@ if (x_26 == 0) lean_object* x_27; lean_object* x_28; x_27 = lean_ctor_get(x_24, 0); lean_dec(x_27); -x_28 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_28 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; lean_ctor_set(x_24, 0, x_28); return x_24; } @@ -35221,7 +31080,7 @@ lean_object* x_29; lean_object* x_30; lean_object* x_31; x_29 = lean_ctor_get(x_24, 1); lean_inc(x_29); lean_dec(x_24); -x_30 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_30 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; x_31 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_31, 0, x_30); lean_ctor_set(x_31, 1, x_29); @@ -35234,160 +31093,127 @@ uint8_t x_32; x_32 = !lean_is_exclusive(x_24); if (x_32 == 0) { -lean_object* x_33; lean_object* x_34; uint8_t x_35; +lean_object* x_33; lean_object* x_34; uint64_t x_35; uint64_t x_36; uint64_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; uint32_t x_46; uint8_t x_47; lean_object* x_48; lean_object* x_49; x_33 = lean_ctor_get(x_24, 0); lean_dec(x_33); x_34 = lean_ctor_get(x_25, 0); lean_inc(x_34); lean_dec(x_25); -x_35 = !lean_is_exclusive(x_22); -if (x_35 == 0) -{ -uint64_t x_36; uint64_t x_37; uint64_t x_38; lean_object* x_39; lean_object* x_40; uint32_t x_41; uint8_t x_42; lean_object* x_43; lean_object* x_44; -x_36 = lean_ctor_get_uint64(x_22, sizeof(void*)*1); -x_37 = lean_ctor_get_uint64(x_34, sizeof(void*)*1); -lean_dec(x_34); -x_38 = lean_uint64_sub(x_36, x_37); -lean_ctor_set_uint64(x_22, sizeof(void*)*1, x_38); -x_39 = l_UInt64_toExpr(x_22); -x_40 = lean_box(0); -x_41 = 0; -x_42 = 1; -x_43 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_43, 0, x_39); -lean_ctor_set(x_43, 1, x_40); -lean_ctor_set_uint32(x_43, sizeof(void*)*2, x_41); -lean_ctor_set_uint8(x_43, sizeof(void*)*2 + 4, x_42); -x_44 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_44, 0, x_43); -lean_ctor_set(x_24, 0, x_44); -return x_24; -} -else -{ -lean_object* x_45; uint64_t x_46; uint64_t x_47; uint64_t x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; uint32_t x_52; uint8_t x_53; lean_object* x_54; lean_object* x_55; -x_45 = lean_ctor_get(x_22, 0); -x_46 = lean_ctor_get_uint64(x_22, sizeof(void*)*1); -lean_inc(x_45); +x_35 = lean_unbox_uint64(x_22); lean_dec(x_22); -x_47 = lean_ctor_get_uint64(x_34, sizeof(void*)*1); +x_36 = lean_unbox_uint64(x_34); lean_dec(x_34); -x_48 = lean_uint64_sub(x_46, x_47); -x_49 = lean_alloc_ctor(0, 1, 8); -lean_ctor_set(x_49, 0, x_45); -lean_ctor_set_uint64(x_49, sizeof(void*)*1, x_48); -x_50 = l_UInt64_toExpr(x_49); -x_51 = lean_box(0); -x_52 = 0; -x_53 = 1; -x_54 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_54, 0, x_50); -lean_ctor_set(x_54, 1, x_51); -lean_ctor_set_uint32(x_54, sizeof(void*)*2, x_52); -lean_ctor_set_uint8(x_54, sizeof(void*)*2 + 4, x_53); -x_55 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_55, 0, x_54); -lean_ctor_set(x_24, 0, x_55); +x_37 = lean_uint64_sub(x_35, x_36); +x_38 = lean_uint64_to_nat(x_37); +x_39 = l_Lean_mkRawNatLit(x_38); +x_40 = l_UInt64_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511____lambda__1___closed__3; +lean_inc(x_39); +x_41 = l_Lean_Expr_app___override(x_40, x_39); +x_42 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__4; +x_43 = l_UInt64_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511____lambda__1___closed__1; +x_44 = l_Lean_mkApp3(x_42, x_43, x_39, x_41); +x_45 = lean_box(0); +x_46 = 0; +x_47 = 1; +x_48 = lean_alloc_ctor(0, 2, 5); +lean_ctor_set(x_48, 0, x_44); +lean_ctor_set(x_48, 1, x_45); +lean_ctor_set_uint32(x_48, sizeof(void*)*2, x_46); +lean_ctor_set_uint8(x_48, sizeof(void*)*2 + 4, x_47); +x_49 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_49, 0, x_48); +lean_ctor_set(x_24, 0, x_49); return x_24; } -} else { -lean_object* x_56; lean_object* x_57; lean_object* x_58; uint64_t x_59; lean_object* x_60; uint64_t x_61; uint64_t x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; uint32_t x_66; uint8_t x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; -x_56 = lean_ctor_get(x_24, 1); -lean_inc(x_56); +lean_object* x_50; lean_object* x_51; uint64_t x_52; uint64_t x_53; uint64_t 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; uint32_t x_63; uint8_t x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; +x_50 = lean_ctor_get(x_24, 1); +lean_inc(x_50); lean_dec(x_24); -x_57 = lean_ctor_get(x_25, 0); -lean_inc(x_57); +x_51 = lean_ctor_get(x_25, 0); +lean_inc(x_51); lean_dec(x_25); -x_58 = lean_ctor_get(x_22, 0); -lean_inc(x_58); -x_59 = lean_ctor_get_uint64(x_22, sizeof(void*)*1); -if (lean_is_exclusive(x_22)) { - lean_ctor_release(x_22, 0); - x_60 = x_22; -} else { - lean_dec_ref(x_22); - x_60 = lean_box(0); -} -x_61 = lean_ctor_get_uint64(x_57, sizeof(void*)*1); -lean_dec(x_57); -x_62 = lean_uint64_sub(x_59, x_61); -if (lean_is_scalar(x_60)) { - x_63 = lean_alloc_ctor(0, 1, 8); -} else { - x_63 = x_60; -} -lean_ctor_set(x_63, 0, x_58); -lean_ctor_set_uint64(x_63, sizeof(void*)*1, x_62); -x_64 = l_UInt64_toExpr(x_63); -x_65 = lean_box(0); -x_66 = 0; -x_67 = 1; -x_68 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_68, 0, x_64); -lean_ctor_set(x_68, 1, x_65); -lean_ctor_set_uint32(x_68, sizeof(void*)*2, x_66); -lean_ctor_set_uint8(x_68, sizeof(void*)*2 + 4, x_67); -x_69 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_69, 0, x_68); -x_70 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_70, 0, x_69); -lean_ctor_set(x_70, 1, x_56); -return x_70; +x_52 = lean_unbox_uint64(x_22); +lean_dec(x_22); +x_53 = lean_unbox_uint64(x_51); +lean_dec(x_51); +x_54 = lean_uint64_sub(x_52, x_53); +x_55 = lean_uint64_to_nat(x_54); +x_56 = l_Lean_mkRawNatLit(x_55); +x_57 = l_UInt64_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511____lambda__1___closed__3; +lean_inc(x_56); +x_58 = l_Lean_Expr_app___override(x_57, x_56); +x_59 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__4; +x_60 = l_UInt64_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511____lambda__1___closed__1; +x_61 = l_Lean_mkApp3(x_59, x_60, x_56, x_58); +x_62 = lean_box(0); +x_63 = 0; +x_64 = 1; +x_65 = lean_alloc_ctor(0, 2, 5); +lean_ctor_set(x_65, 0, x_61); +lean_ctor_set(x_65, 1, x_62); +lean_ctor_set_uint32(x_65, sizeof(void*)*2, x_63); +lean_ctor_set_uint8(x_65, sizeof(void*)*2 + 4, x_64); +x_66 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_66, 0, x_65); +x_67 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_67, 0, x_66); +lean_ctor_set(x_67, 1, x_50); +return x_67; } } } else { -uint8_t x_71; +uint8_t x_68; lean_dec(x_22); -x_71 = !lean_is_exclusive(x_24); -if (x_71 == 0) +x_68 = !lean_is_exclusive(x_24); +if (x_68 == 0) { return x_24; } else { -lean_object* x_72; lean_object* x_73; lean_object* x_74; -x_72 = lean_ctor_get(x_24, 0); -x_73 = lean_ctor_get(x_24, 1); -lean_inc(x_73); -lean_inc(x_72); +lean_object* x_69; lean_object* x_70; lean_object* x_71; +x_69 = lean_ctor_get(x_24, 0); +x_70 = lean_ctor_get(x_24, 1); +lean_inc(x_70); +lean_inc(x_69); lean_dec(x_24); -x_74 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_74, 0, x_72); -lean_ctor_set(x_74, 1, x_73); -return x_74; +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; } } } } else { -uint8_t x_75; +uint8_t x_72; lean_dec(x_9); lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_1); -x_75 = !lean_is_exclusive(x_13); -if (x_75 == 0) +x_72 = !lean_is_exclusive(x_13); +if (x_72 == 0) { return x_13; } else { -lean_object* x_76; lean_object* x_77; lean_object* x_78; -x_76 = lean_ctor_get(x_13, 0); -x_77 = lean_ctor_get(x_13, 1); -lean_inc(x_77); -lean_inc(x_76); +lean_object* x_73; lean_object* x_74; lean_object* x_75; +x_73 = lean_ctor_get(x_13, 0); +x_74 = lean_ctor_get(x_13, 1); +lean_inc(x_74); +lean_inc(x_73); lean_dec(x_13); -x_78 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_78, 0, x_76); -lean_ctor_set(x_78, 1, x_77); -return x_78; +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; } } } @@ -35396,7 +31222,7 @@ LEAN_EXPORT lean_object* l_UInt64_reduceSub(lean_object* x_1, lean_object* x_2, _start: { lean_object* x_10; lean_object* x_11; uint8_t x_12; -x_10 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__456; +x_10 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__312; x_11 = lean_unsigned_to_nat(6u); x_12 = l_Lean_Expr_isAppOfArity(x_1, x_10, x_11); if (x_12 == 0) @@ -35410,7 +31236,7 @@ lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_13 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_13 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; x_14 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_14, 0, x_13); lean_ctor_set(x_14, 1, x_9); @@ -35440,77 +31266,77 @@ lean_dec(x_2); return x_11; } } -static lean_object* _init_l___regBuiltin_UInt64_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14019____closed__1() { +static lean_object* _init_l___regBuiltin_UInt64_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12125____closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_UInt64_fromExpr___closed__1; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__446; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__302; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt64_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14019____closed__2() { +static lean_object* _init_l___regBuiltin_UInt64_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12125____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt8_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9696____closed__3; -x_2 = l___regBuiltin_UInt64_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13939____closed__2; +x_1 = l___regBuiltin_UInt8_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8129____closed__3; +x_2 = l___regBuiltin_UInt64_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12045____closed__2; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt64_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14019____closed__3() { +static lean_object* _init_l___regBuiltin_UInt64_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12125____closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt64_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14019____closed__2; -x_2 = l___regBuiltin_UInt64_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13939____closed__2; +x_1 = l___regBuiltin_UInt64_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12125____closed__2; +x_2 = l___regBuiltin_UInt64_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12045____closed__2; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt64_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14019____closed__4() { +static lean_object* _init_l___regBuiltin_UInt64_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12125____closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt64_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14019____closed__3; -x_2 = l___regBuiltin_UInt64_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13939____closed__2; +x_1 = l___regBuiltin_UInt64_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12125____closed__3; +x_2 = l___regBuiltin_UInt64_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12045____closed__2; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt64_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14019____closed__5() { +static lean_object* _init_l___regBuiltin_UInt64_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12125____closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt64_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14019____closed__4; +x_1 = l___regBuiltin_UInt64_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12125____closed__4; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt64_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14019____closed__6() { +static lean_object* _init_l___regBuiltin_UInt64_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12125____closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt64_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14019____closed__5; +x_1 = l___regBuiltin_UInt64_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12125____closed__5; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt64_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14019____closed__7() { +static lean_object* _init_l___regBuiltin_UInt64_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12125____closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt64_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14019____closed__6; +x_1 = l___regBuiltin_UInt64_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12125____closed__6; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt64_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14019____closed__8() { +static lean_object* _init_l___regBuiltin_UInt64_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12125____closed__8() { _start: { lean_object* x_1; @@ -35518,37 +31344,37 @@ x_1 = lean_alloc_closure((void*)(l_UInt64_reduceSub), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_UInt64_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14019_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_UInt64_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12125_(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_UInt64_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14019____closed__1; -x_3 = l___regBuiltin_UInt64_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14019____closed__7; -x_4 = l___regBuiltin_UInt64_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14019____closed__8; +x_2 = l___regBuiltin_UInt64_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12125____closed__1; +x_3 = l___regBuiltin_UInt64_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12125____closed__7; +x_4 = l___regBuiltin_UInt64_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12125____closed__8; x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); return x_5; } } -LEAN_EXPORT lean_object* l___regBuiltin_UInt64_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14021_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_UInt64_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12127_(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____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9618____closed__1; -x_3 = l___regBuiltin_UInt64_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14019____closed__1; +x_2 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8051____closed__1; +x_3 = l___regBuiltin_UInt64_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12125____closed__1; x_4 = 1; -x_5 = l___regBuiltin_UInt64_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14019____closed__8; +x_5 = l___regBuiltin_UInt64_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12125____closed__8; 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_UInt64_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14023_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_UInt64_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12129_(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____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9620____closed__1; -x_3 = l___regBuiltin_UInt64_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14019____closed__1; +x_2 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8053____closed__1; +x_3 = l___regBuiltin_UInt64_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12125____closed__1; x_4 = 1; -x_5 = l___regBuiltin_UInt64_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14019____closed__8; +x_5 = l___regBuiltin_UInt64_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12125____closed__8; x_6 = l_Lean_Meta_Simp_addSimprocBuiltinAttrCore(x_2, x_3, x_4, x_5, x_1); return x_6; } @@ -35566,6 +31392,7 @@ lean_inc(x_8); lean_inc(x_7); lean_inc(x_6); x_13 = l_UInt64_fromExpr(x_12, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_12); if (lean_obj_tag(x_13) == 0) { lean_object* x_14; @@ -35585,7 +31412,7 @@ if (x_15 == 0) lean_object* x_16; lean_object* x_17; x_16 = lean_ctor_get(x_13, 0); lean_dec(x_16); -x_17 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_17 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; lean_ctor_set(x_13, 0, x_17); return x_13; } @@ -35595,7 +31422,7 @@ lean_object* x_18; lean_object* x_19; lean_object* x_20; x_18 = lean_ctor_get(x_13, 1); lean_inc(x_18); lean_dec(x_13); -x_19 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_19 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; x_20 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_20, 0, x_19); lean_ctor_set(x_20, 1, x_18); @@ -35614,6 +31441,7 @@ lean_dec(x_14); x_23 = l_Lean_Expr_appArg_x21(x_1); lean_dec(x_1); x_24 = l_UInt64_fromExpr(x_23, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_21); +lean_dec(x_23); if (lean_obj_tag(x_24) == 0) { lean_object* x_25; @@ -35629,7 +31457,7 @@ if (x_26 == 0) lean_object* x_27; lean_object* x_28; x_27 = lean_ctor_get(x_24, 0); lean_dec(x_27); -x_28 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_28 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; lean_ctor_set(x_24, 0, x_28); return x_24; } @@ -35639,7 +31467,7 @@ lean_object* x_29; lean_object* x_30; lean_object* x_31; x_29 = lean_ctor_get(x_24, 1); lean_inc(x_29); lean_dec(x_24); -x_30 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_30 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; x_31 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_31, 0, x_30); lean_ctor_set(x_31, 1, x_29); @@ -35652,160 +31480,127 @@ uint8_t x_32; x_32 = !lean_is_exclusive(x_24); if (x_32 == 0) { -lean_object* x_33; lean_object* x_34; uint8_t x_35; +lean_object* x_33; lean_object* x_34; uint64_t x_35; uint64_t x_36; uint64_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; uint32_t x_46; uint8_t x_47; lean_object* x_48; lean_object* x_49; x_33 = lean_ctor_get(x_24, 0); lean_dec(x_33); x_34 = lean_ctor_get(x_25, 0); lean_inc(x_34); lean_dec(x_25); -x_35 = !lean_is_exclusive(x_22); -if (x_35 == 0) -{ -uint64_t x_36; uint64_t x_37; uint64_t x_38; lean_object* x_39; lean_object* x_40; uint32_t x_41; uint8_t x_42; lean_object* x_43; lean_object* x_44; -x_36 = lean_ctor_get_uint64(x_22, sizeof(void*)*1); -x_37 = lean_ctor_get_uint64(x_34, sizeof(void*)*1); -lean_dec(x_34); -x_38 = lean_uint64_div(x_36, x_37); -lean_ctor_set_uint64(x_22, sizeof(void*)*1, x_38); -x_39 = l_UInt64_toExpr(x_22); -x_40 = lean_box(0); -x_41 = 0; -x_42 = 1; -x_43 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_43, 0, x_39); -lean_ctor_set(x_43, 1, x_40); -lean_ctor_set_uint32(x_43, sizeof(void*)*2, x_41); -lean_ctor_set_uint8(x_43, sizeof(void*)*2 + 4, x_42); -x_44 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_44, 0, x_43); -lean_ctor_set(x_24, 0, x_44); -return x_24; -} -else -{ -lean_object* x_45; uint64_t x_46; uint64_t x_47; uint64_t x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; uint32_t x_52; uint8_t x_53; lean_object* x_54; lean_object* x_55; -x_45 = lean_ctor_get(x_22, 0); -x_46 = lean_ctor_get_uint64(x_22, sizeof(void*)*1); -lean_inc(x_45); +x_35 = lean_unbox_uint64(x_22); lean_dec(x_22); -x_47 = lean_ctor_get_uint64(x_34, sizeof(void*)*1); +x_36 = lean_unbox_uint64(x_34); lean_dec(x_34); -x_48 = lean_uint64_div(x_46, x_47); -x_49 = lean_alloc_ctor(0, 1, 8); -lean_ctor_set(x_49, 0, x_45); -lean_ctor_set_uint64(x_49, sizeof(void*)*1, x_48); -x_50 = l_UInt64_toExpr(x_49); -x_51 = lean_box(0); -x_52 = 0; -x_53 = 1; -x_54 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_54, 0, x_50); -lean_ctor_set(x_54, 1, x_51); -lean_ctor_set_uint32(x_54, sizeof(void*)*2, x_52); -lean_ctor_set_uint8(x_54, sizeof(void*)*2 + 4, x_53); -x_55 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_55, 0, x_54); -lean_ctor_set(x_24, 0, x_55); +x_37 = lean_uint64_div(x_35, x_36); +x_38 = lean_uint64_to_nat(x_37); +x_39 = l_Lean_mkRawNatLit(x_38); +x_40 = l_UInt64_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511____lambda__1___closed__3; +lean_inc(x_39); +x_41 = l_Lean_Expr_app___override(x_40, x_39); +x_42 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__4; +x_43 = l_UInt64_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511____lambda__1___closed__1; +x_44 = l_Lean_mkApp3(x_42, x_43, x_39, x_41); +x_45 = lean_box(0); +x_46 = 0; +x_47 = 1; +x_48 = lean_alloc_ctor(0, 2, 5); +lean_ctor_set(x_48, 0, x_44); +lean_ctor_set(x_48, 1, x_45); +lean_ctor_set_uint32(x_48, sizeof(void*)*2, x_46); +lean_ctor_set_uint8(x_48, sizeof(void*)*2 + 4, x_47); +x_49 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_49, 0, x_48); +lean_ctor_set(x_24, 0, x_49); return x_24; } -} else { -lean_object* x_56; lean_object* x_57; lean_object* x_58; uint64_t x_59; lean_object* x_60; uint64_t x_61; uint64_t x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; uint32_t x_66; uint8_t x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; -x_56 = lean_ctor_get(x_24, 1); -lean_inc(x_56); +lean_object* x_50; lean_object* x_51; uint64_t x_52; uint64_t x_53; uint64_t 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; uint32_t x_63; uint8_t x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; +x_50 = lean_ctor_get(x_24, 1); +lean_inc(x_50); lean_dec(x_24); -x_57 = lean_ctor_get(x_25, 0); -lean_inc(x_57); +x_51 = lean_ctor_get(x_25, 0); +lean_inc(x_51); lean_dec(x_25); -x_58 = lean_ctor_get(x_22, 0); -lean_inc(x_58); -x_59 = lean_ctor_get_uint64(x_22, sizeof(void*)*1); -if (lean_is_exclusive(x_22)) { - lean_ctor_release(x_22, 0); - x_60 = x_22; -} else { - lean_dec_ref(x_22); - x_60 = lean_box(0); -} -x_61 = lean_ctor_get_uint64(x_57, sizeof(void*)*1); -lean_dec(x_57); -x_62 = lean_uint64_div(x_59, x_61); -if (lean_is_scalar(x_60)) { - x_63 = lean_alloc_ctor(0, 1, 8); -} else { - x_63 = x_60; -} -lean_ctor_set(x_63, 0, x_58); -lean_ctor_set_uint64(x_63, sizeof(void*)*1, x_62); -x_64 = l_UInt64_toExpr(x_63); -x_65 = lean_box(0); -x_66 = 0; -x_67 = 1; -x_68 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_68, 0, x_64); -lean_ctor_set(x_68, 1, x_65); -lean_ctor_set_uint32(x_68, sizeof(void*)*2, x_66); -lean_ctor_set_uint8(x_68, sizeof(void*)*2 + 4, x_67); -x_69 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_69, 0, x_68); -x_70 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_70, 0, x_69); -lean_ctor_set(x_70, 1, x_56); -return x_70; +x_52 = lean_unbox_uint64(x_22); +lean_dec(x_22); +x_53 = lean_unbox_uint64(x_51); +lean_dec(x_51); +x_54 = lean_uint64_div(x_52, x_53); +x_55 = lean_uint64_to_nat(x_54); +x_56 = l_Lean_mkRawNatLit(x_55); +x_57 = l_UInt64_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511____lambda__1___closed__3; +lean_inc(x_56); +x_58 = l_Lean_Expr_app___override(x_57, x_56); +x_59 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__4; +x_60 = l_UInt64_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511____lambda__1___closed__1; +x_61 = l_Lean_mkApp3(x_59, x_60, x_56, x_58); +x_62 = lean_box(0); +x_63 = 0; +x_64 = 1; +x_65 = lean_alloc_ctor(0, 2, 5); +lean_ctor_set(x_65, 0, x_61); +lean_ctor_set(x_65, 1, x_62); +lean_ctor_set_uint32(x_65, sizeof(void*)*2, x_63); +lean_ctor_set_uint8(x_65, sizeof(void*)*2 + 4, x_64); +x_66 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_66, 0, x_65); +x_67 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_67, 0, x_66); +lean_ctor_set(x_67, 1, x_50); +return x_67; } } } else { -uint8_t x_71; +uint8_t x_68; lean_dec(x_22); -x_71 = !lean_is_exclusive(x_24); -if (x_71 == 0) +x_68 = !lean_is_exclusive(x_24); +if (x_68 == 0) { return x_24; } else { -lean_object* x_72; lean_object* x_73; lean_object* x_74; -x_72 = lean_ctor_get(x_24, 0); -x_73 = lean_ctor_get(x_24, 1); -lean_inc(x_73); -lean_inc(x_72); +lean_object* x_69; lean_object* x_70; lean_object* x_71; +x_69 = lean_ctor_get(x_24, 0); +x_70 = lean_ctor_get(x_24, 1); +lean_inc(x_70); +lean_inc(x_69); lean_dec(x_24); -x_74 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_74, 0, x_72); -lean_ctor_set(x_74, 1, x_73); -return x_74; +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; } } } } else { -uint8_t x_75; +uint8_t x_72; lean_dec(x_9); lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_1); -x_75 = !lean_is_exclusive(x_13); -if (x_75 == 0) +x_72 = !lean_is_exclusive(x_13); +if (x_72 == 0) { return x_13; } else { -lean_object* x_76; lean_object* x_77; lean_object* x_78; -x_76 = lean_ctor_get(x_13, 0); -x_77 = lean_ctor_get(x_13, 1); -lean_inc(x_77); -lean_inc(x_76); +lean_object* x_73; lean_object* x_74; lean_object* x_75; +x_73 = lean_ctor_get(x_13, 0); +x_74 = lean_ctor_get(x_13, 1); +lean_inc(x_74); +lean_inc(x_73); lean_dec(x_13); -x_78 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_78, 0, x_76); -lean_ctor_set(x_78, 1, x_77); -return x_78; +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; } } } @@ -35814,7 +31609,7 @@ LEAN_EXPORT lean_object* l_UInt64_reduceDiv(lean_object* x_1, lean_object* x_2, _start: { lean_object* x_10; lean_object* x_11; uint8_t x_12; -x_10 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__469; +x_10 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__325; x_11 = lean_unsigned_to_nat(6u); x_12 = l_Lean_Expr_isAppOfArity(x_1, x_10, x_11); if (x_12 == 0) @@ -35828,7 +31623,7 @@ lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_13 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_13 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; x_14 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_14, 0, x_13); lean_ctor_set(x_14, 1, x_9); @@ -35858,77 +31653,77 @@ lean_dec(x_2); return x_11; } } -static lean_object* _init_l___regBuiltin_UInt64_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14059____closed__1() { +static lean_object* _init_l___regBuiltin_UInt64_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12165____closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_UInt64_fromExpr___closed__1; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__459; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__315; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt64_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14059____closed__2() { +static lean_object* _init_l___regBuiltin_UInt64_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12165____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt8_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9736____closed__3; -x_2 = l___regBuiltin_UInt64_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13939____closed__2; +x_1 = l___regBuiltin_UInt8_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8169____closed__3; +x_2 = l___regBuiltin_UInt64_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12045____closed__2; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt64_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14059____closed__3() { +static lean_object* _init_l___regBuiltin_UInt64_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12165____closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt64_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14059____closed__2; -x_2 = l___regBuiltin_UInt64_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13939____closed__2; +x_1 = l___regBuiltin_UInt64_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12165____closed__2; +x_2 = l___regBuiltin_UInt64_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12045____closed__2; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt64_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14059____closed__4() { +static lean_object* _init_l___regBuiltin_UInt64_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12165____closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt64_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14059____closed__3; -x_2 = l___regBuiltin_UInt64_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13939____closed__2; +x_1 = l___regBuiltin_UInt64_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12165____closed__3; +x_2 = l___regBuiltin_UInt64_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12045____closed__2; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt64_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14059____closed__5() { +static lean_object* _init_l___regBuiltin_UInt64_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12165____closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt64_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14059____closed__4; +x_1 = l___regBuiltin_UInt64_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12165____closed__4; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt64_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14059____closed__6() { +static lean_object* _init_l___regBuiltin_UInt64_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12165____closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt64_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14059____closed__5; +x_1 = l___regBuiltin_UInt64_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12165____closed__5; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt64_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14059____closed__7() { +static lean_object* _init_l___regBuiltin_UInt64_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12165____closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt64_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14059____closed__6; +x_1 = l___regBuiltin_UInt64_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12165____closed__6; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt64_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14059____closed__8() { +static lean_object* _init_l___regBuiltin_UInt64_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12165____closed__8() { _start: { lean_object* x_1; @@ -35936,37 +31731,37 @@ x_1 = lean_alloc_closure((void*)(l_UInt64_reduceDiv), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_UInt64_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14059_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_UInt64_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12165_(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_UInt64_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14059____closed__1; -x_3 = l___regBuiltin_UInt64_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14059____closed__7; -x_4 = l___regBuiltin_UInt64_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14059____closed__8; +x_2 = l___regBuiltin_UInt64_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12165____closed__1; +x_3 = l___regBuiltin_UInt64_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12165____closed__7; +x_4 = l___regBuiltin_UInt64_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12165____closed__8; x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); return x_5; } } -LEAN_EXPORT lean_object* l___regBuiltin_UInt64_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14061_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_UInt64_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12167_(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____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9618____closed__1; -x_3 = l___regBuiltin_UInt64_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14059____closed__1; +x_2 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8051____closed__1; +x_3 = l___regBuiltin_UInt64_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12165____closed__1; x_4 = 1; -x_5 = l___regBuiltin_UInt64_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14059____closed__8; +x_5 = l___regBuiltin_UInt64_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12165____closed__8; 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_UInt64_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14063_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_UInt64_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12169_(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____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9620____closed__1; -x_3 = l___regBuiltin_UInt64_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14059____closed__1; +x_2 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8053____closed__1; +x_3 = l___regBuiltin_UInt64_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12165____closed__1; x_4 = 1; -x_5 = l___regBuiltin_UInt64_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14059____closed__8; +x_5 = l___regBuiltin_UInt64_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12165____closed__8; x_6 = l_Lean_Meta_Simp_addSimprocBuiltinAttrCore(x_2, x_3, x_4, x_5, x_1); return x_6; } @@ -35984,6 +31779,7 @@ lean_inc(x_8); lean_inc(x_7); lean_inc(x_6); x_13 = l_UInt64_fromExpr(x_12, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_12); if (lean_obj_tag(x_13) == 0) { lean_object* x_14; @@ -36003,7 +31799,7 @@ if (x_15 == 0) lean_object* x_16; lean_object* x_17; x_16 = lean_ctor_get(x_13, 0); lean_dec(x_16); -x_17 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_17 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; lean_ctor_set(x_13, 0, x_17); return x_13; } @@ -36013,7 +31809,7 @@ lean_object* x_18; lean_object* x_19; lean_object* x_20; x_18 = lean_ctor_get(x_13, 1); lean_inc(x_18); lean_dec(x_13); -x_19 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_19 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; x_20 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_20, 0, x_19); lean_ctor_set(x_20, 1, x_18); @@ -36032,6 +31828,7 @@ lean_dec(x_14); x_23 = l_Lean_Expr_appArg_x21(x_1); lean_dec(x_1); x_24 = l_UInt64_fromExpr(x_23, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_21); +lean_dec(x_23); if (lean_obj_tag(x_24) == 0) { lean_object* x_25; @@ -36047,7 +31844,7 @@ if (x_26 == 0) lean_object* x_27; lean_object* x_28; x_27 = lean_ctor_get(x_24, 0); lean_dec(x_27); -x_28 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_28 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; lean_ctor_set(x_24, 0, x_28); return x_24; } @@ -36057,7 +31854,7 @@ lean_object* x_29; lean_object* x_30; lean_object* x_31; x_29 = lean_ctor_get(x_24, 1); lean_inc(x_29); lean_dec(x_24); -x_30 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_30 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; x_31 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_31, 0, x_30); lean_ctor_set(x_31, 1, x_29); @@ -36070,160 +31867,127 @@ uint8_t x_32; x_32 = !lean_is_exclusive(x_24); if (x_32 == 0) { -lean_object* x_33; lean_object* x_34; uint8_t x_35; +lean_object* x_33; lean_object* x_34; uint64_t x_35; uint64_t x_36; uint64_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; uint32_t x_46; uint8_t x_47; lean_object* x_48; lean_object* x_49; x_33 = lean_ctor_get(x_24, 0); lean_dec(x_33); x_34 = lean_ctor_get(x_25, 0); lean_inc(x_34); lean_dec(x_25); -x_35 = !lean_is_exclusive(x_22); -if (x_35 == 0) -{ -uint64_t x_36; uint64_t x_37; uint64_t x_38; lean_object* x_39; lean_object* x_40; uint32_t x_41; uint8_t x_42; lean_object* x_43; lean_object* x_44; -x_36 = lean_ctor_get_uint64(x_22, sizeof(void*)*1); -x_37 = lean_ctor_get_uint64(x_34, sizeof(void*)*1); -lean_dec(x_34); -x_38 = lean_uint64_mod(x_36, x_37); -lean_ctor_set_uint64(x_22, sizeof(void*)*1, x_38); -x_39 = l_UInt64_toExpr(x_22); -x_40 = lean_box(0); -x_41 = 0; -x_42 = 1; -x_43 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_43, 0, x_39); -lean_ctor_set(x_43, 1, x_40); -lean_ctor_set_uint32(x_43, sizeof(void*)*2, x_41); -lean_ctor_set_uint8(x_43, sizeof(void*)*2 + 4, x_42); -x_44 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_44, 0, x_43); -lean_ctor_set(x_24, 0, x_44); -return x_24; -} -else -{ -lean_object* x_45; uint64_t x_46; uint64_t x_47; uint64_t x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; uint32_t x_52; uint8_t x_53; lean_object* x_54; lean_object* x_55; -x_45 = lean_ctor_get(x_22, 0); -x_46 = lean_ctor_get_uint64(x_22, sizeof(void*)*1); -lean_inc(x_45); +x_35 = lean_unbox_uint64(x_22); lean_dec(x_22); -x_47 = lean_ctor_get_uint64(x_34, sizeof(void*)*1); +x_36 = lean_unbox_uint64(x_34); lean_dec(x_34); -x_48 = lean_uint64_mod(x_46, x_47); -x_49 = lean_alloc_ctor(0, 1, 8); -lean_ctor_set(x_49, 0, x_45); -lean_ctor_set_uint64(x_49, sizeof(void*)*1, x_48); -x_50 = l_UInt64_toExpr(x_49); -x_51 = lean_box(0); -x_52 = 0; -x_53 = 1; -x_54 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_54, 0, x_50); -lean_ctor_set(x_54, 1, x_51); -lean_ctor_set_uint32(x_54, sizeof(void*)*2, x_52); -lean_ctor_set_uint8(x_54, sizeof(void*)*2 + 4, x_53); -x_55 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_55, 0, x_54); -lean_ctor_set(x_24, 0, x_55); +x_37 = lean_uint64_mod(x_35, x_36); +x_38 = lean_uint64_to_nat(x_37); +x_39 = l_Lean_mkRawNatLit(x_38); +x_40 = l_UInt64_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511____lambda__1___closed__3; +lean_inc(x_39); +x_41 = l_Lean_Expr_app___override(x_40, x_39); +x_42 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__4; +x_43 = l_UInt64_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511____lambda__1___closed__1; +x_44 = l_Lean_mkApp3(x_42, x_43, x_39, x_41); +x_45 = lean_box(0); +x_46 = 0; +x_47 = 1; +x_48 = lean_alloc_ctor(0, 2, 5); +lean_ctor_set(x_48, 0, x_44); +lean_ctor_set(x_48, 1, x_45); +lean_ctor_set_uint32(x_48, sizeof(void*)*2, x_46); +lean_ctor_set_uint8(x_48, sizeof(void*)*2 + 4, x_47); +x_49 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_49, 0, x_48); +lean_ctor_set(x_24, 0, x_49); return x_24; } -} else { -lean_object* x_56; lean_object* x_57; lean_object* x_58; uint64_t x_59; lean_object* x_60; uint64_t x_61; uint64_t x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; uint32_t x_66; uint8_t x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; -x_56 = lean_ctor_get(x_24, 1); -lean_inc(x_56); +lean_object* x_50; lean_object* x_51; uint64_t x_52; uint64_t x_53; uint64_t 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; uint32_t x_63; uint8_t x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; +x_50 = lean_ctor_get(x_24, 1); +lean_inc(x_50); lean_dec(x_24); -x_57 = lean_ctor_get(x_25, 0); -lean_inc(x_57); +x_51 = lean_ctor_get(x_25, 0); +lean_inc(x_51); lean_dec(x_25); -x_58 = lean_ctor_get(x_22, 0); -lean_inc(x_58); -x_59 = lean_ctor_get_uint64(x_22, sizeof(void*)*1); -if (lean_is_exclusive(x_22)) { - lean_ctor_release(x_22, 0); - x_60 = x_22; -} else { - lean_dec_ref(x_22); - x_60 = lean_box(0); -} -x_61 = lean_ctor_get_uint64(x_57, sizeof(void*)*1); -lean_dec(x_57); -x_62 = lean_uint64_mod(x_59, x_61); -if (lean_is_scalar(x_60)) { - x_63 = lean_alloc_ctor(0, 1, 8); -} else { - x_63 = x_60; -} -lean_ctor_set(x_63, 0, x_58); -lean_ctor_set_uint64(x_63, sizeof(void*)*1, x_62); -x_64 = l_UInt64_toExpr(x_63); -x_65 = lean_box(0); -x_66 = 0; -x_67 = 1; -x_68 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_68, 0, x_64); -lean_ctor_set(x_68, 1, x_65); -lean_ctor_set_uint32(x_68, sizeof(void*)*2, x_66); -lean_ctor_set_uint8(x_68, sizeof(void*)*2 + 4, x_67); -x_69 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_69, 0, x_68); -x_70 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_70, 0, x_69); -lean_ctor_set(x_70, 1, x_56); -return x_70; +x_52 = lean_unbox_uint64(x_22); +lean_dec(x_22); +x_53 = lean_unbox_uint64(x_51); +lean_dec(x_51); +x_54 = lean_uint64_mod(x_52, x_53); +x_55 = lean_uint64_to_nat(x_54); +x_56 = l_Lean_mkRawNatLit(x_55); +x_57 = l_UInt64_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511____lambda__1___closed__3; +lean_inc(x_56); +x_58 = l_Lean_Expr_app___override(x_57, x_56); +x_59 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__4; +x_60 = l_UInt64_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511____lambda__1___closed__1; +x_61 = l_Lean_mkApp3(x_59, x_60, x_56, x_58); +x_62 = lean_box(0); +x_63 = 0; +x_64 = 1; +x_65 = lean_alloc_ctor(0, 2, 5); +lean_ctor_set(x_65, 0, x_61); +lean_ctor_set(x_65, 1, x_62); +lean_ctor_set_uint32(x_65, sizeof(void*)*2, x_63); +lean_ctor_set_uint8(x_65, sizeof(void*)*2 + 4, x_64); +x_66 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_66, 0, x_65); +x_67 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_67, 0, x_66); +lean_ctor_set(x_67, 1, x_50); +return x_67; } } } else { -uint8_t x_71; +uint8_t x_68; lean_dec(x_22); -x_71 = !lean_is_exclusive(x_24); -if (x_71 == 0) +x_68 = !lean_is_exclusive(x_24); +if (x_68 == 0) { return x_24; } else { -lean_object* x_72; lean_object* x_73; lean_object* x_74; -x_72 = lean_ctor_get(x_24, 0); -x_73 = lean_ctor_get(x_24, 1); -lean_inc(x_73); -lean_inc(x_72); +lean_object* x_69; lean_object* x_70; lean_object* x_71; +x_69 = lean_ctor_get(x_24, 0); +x_70 = lean_ctor_get(x_24, 1); +lean_inc(x_70); +lean_inc(x_69); lean_dec(x_24); -x_74 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_74, 0, x_72); -lean_ctor_set(x_74, 1, x_73); -return x_74; +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; } } } } else { -uint8_t x_75; +uint8_t x_72; lean_dec(x_9); lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_1); -x_75 = !lean_is_exclusive(x_13); -if (x_75 == 0) +x_72 = !lean_is_exclusive(x_13); +if (x_72 == 0) { return x_13; } else { -lean_object* x_76; lean_object* x_77; lean_object* x_78; -x_76 = lean_ctor_get(x_13, 0); -x_77 = lean_ctor_get(x_13, 1); -lean_inc(x_77); -lean_inc(x_76); +lean_object* x_73; lean_object* x_74; lean_object* x_75; +x_73 = lean_ctor_get(x_13, 0); +x_74 = lean_ctor_get(x_13, 1); +lean_inc(x_74); +lean_inc(x_73); lean_dec(x_13); -x_78 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_78, 0, x_76); -lean_ctor_set(x_78, 1, x_77); -return x_78; +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; } } } @@ -36232,7 +31996,7 @@ LEAN_EXPORT lean_object* l_UInt64_reduceMod(lean_object* x_1, lean_object* x_2, _start: { lean_object* x_10; lean_object* x_11; uint8_t x_12; -x_10 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__482; +x_10 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__338; x_11 = lean_unsigned_to_nat(6u); x_12 = l_Lean_Expr_isAppOfArity(x_1, x_10, x_11); if (x_12 == 0) @@ -36246,7 +32010,7 @@ lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_13 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_13 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; x_14 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_14, 0, x_13); lean_ctor_set(x_14, 1, x_9); @@ -36276,77 +32040,77 @@ lean_dec(x_2); return x_11; } } -static lean_object* _init_l___regBuiltin_UInt64_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14099____closed__1() { +static lean_object* _init_l___regBuiltin_UInt64_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12205____closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_UInt64_fromExpr___closed__1; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__472; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__328; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt64_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14099____closed__2() { +static lean_object* _init_l___regBuiltin_UInt64_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12205____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt8_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9776____closed__3; -x_2 = l___regBuiltin_UInt64_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13939____closed__2; +x_1 = l___regBuiltin_UInt8_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8209____closed__3; +x_2 = l___regBuiltin_UInt64_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12045____closed__2; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt64_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14099____closed__3() { +static lean_object* _init_l___regBuiltin_UInt64_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12205____closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt64_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14099____closed__2; -x_2 = l___regBuiltin_UInt64_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13939____closed__2; +x_1 = l___regBuiltin_UInt64_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12205____closed__2; +x_2 = l___regBuiltin_UInt64_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12045____closed__2; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt64_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14099____closed__4() { +static lean_object* _init_l___regBuiltin_UInt64_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12205____closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt64_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14099____closed__3; -x_2 = l___regBuiltin_UInt64_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13939____closed__2; +x_1 = l___regBuiltin_UInt64_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12205____closed__3; +x_2 = l___regBuiltin_UInt64_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12045____closed__2; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt64_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14099____closed__5() { +static lean_object* _init_l___regBuiltin_UInt64_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12205____closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt64_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14099____closed__4; +x_1 = l___regBuiltin_UInt64_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12205____closed__4; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt64_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14099____closed__6() { +static lean_object* _init_l___regBuiltin_UInt64_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12205____closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt64_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14099____closed__5; +x_1 = l___regBuiltin_UInt64_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12205____closed__5; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt64_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14099____closed__7() { +static lean_object* _init_l___regBuiltin_UInt64_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12205____closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt64_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14099____closed__6; +x_1 = l___regBuiltin_UInt64_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12205____closed__6; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt64_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14099____closed__8() { +static lean_object* _init_l___regBuiltin_UInt64_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12205____closed__8() { _start: { lean_object* x_1; @@ -36354,37 +32118,37 @@ x_1 = lean_alloc_closure((void*)(l_UInt64_reduceMod), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_UInt64_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14099_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_UInt64_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12205_(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_UInt64_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14099____closed__1; -x_3 = l___regBuiltin_UInt64_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14099____closed__7; -x_4 = l___regBuiltin_UInt64_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14099____closed__8; +x_2 = l___regBuiltin_UInt64_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12205____closed__1; +x_3 = l___regBuiltin_UInt64_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12205____closed__7; +x_4 = l___regBuiltin_UInt64_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12205____closed__8; x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); return x_5; } } -LEAN_EXPORT lean_object* l___regBuiltin_UInt64_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14101_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_UInt64_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12207_(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____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9618____closed__1; -x_3 = l___regBuiltin_UInt64_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14099____closed__1; +x_2 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8051____closed__1; +x_3 = l___regBuiltin_UInt64_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12205____closed__1; x_4 = 1; -x_5 = l___regBuiltin_UInt64_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14099____closed__8; +x_5 = l___regBuiltin_UInt64_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12205____closed__8; 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_UInt64_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14103_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_UInt64_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12209_(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____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9620____closed__1; -x_3 = l___regBuiltin_UInt64_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14099____closed__1; +x_2 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8053____closed__1; +x_3 = l___regBuiltin_UInt64_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12205____closed__1; x_4 = 1; -x_5 = l___regBuiltin_UInt64_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14099____closed__8; +x_5 = l___regBuiltin_UInt64_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12205____closed__8; x_6 = l_Lean_Meta_Simp_addSimprocBuiltinAttrCore(x_2, x_3, x_4, x_5, x_1); return x_6; } @@ -36402,6 +32166,7 @@ lean_inc(x_8); lean_inc(x_7); lean_inc(x_6); x_13 = l_UInt64_fromExpr(x_12, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_12); if (lean_obj_tag(x_13) == 0) { lean_object* x_14; @@ -36421,7 +32186,7 @@ if (x_15 == 0) lean_object* x_16; lean_object* x_17; x_16 = lean_ctor_get(x_13, 0); lean_dec(x_16); -x_17 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_17 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; lean_ctor_set(x_13, 0, x_17); return x_13; } @@ -36431,7 +32196,7 @@ lean_object* x_18; lean_object* x_19; lean_object* x_20; x_18 = lean_ctor_get(x_13, 1); lean_inc(x_18); lean_dec(x_13); -x_19 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_19 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; x_20 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_20, 0, x_19); lean_ctor_set(x_20, 1, x_18); @@ -36453,6 +32218,7 @@ lean_inc(x_8); lean_inc(x_7); lean_inc(x_6); x_24 = l_UInt64_fromExpr(x_23, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_21); +lean_dec(x_23); if (lean_obj_tag(x_24) == 0) { lean_object* x_25; @@ -36473,7 +32239,7 @@ if (x_26 == 0) lean_object* x_27; lean_object* x_28; x_27 = lean_ctor_get(x_24, 0); lean_dec(x_27); -x_28 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_28 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; lean_ctor_set(x_24, 0, x_28); return x_24; } @@ -36483,7 +32249,7 @@ lean_object* x_29; lean_object* x_30; lean_object* x_31; x_29 = lean_ctor_get(x_24, 1); lean_inc(x_29); lean_dec(x_24); -x_30 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_30 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; x_31 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_31, 0, x_30); lean_ctor_set(x_31, 1, x_29); @@ -36499,9 +32265,9 @@ lean_dec(x_24); x_33 = lean_ctor_get(x_25, 0); lean_inc(x_33); lean_dec(x_25); -x_34 = lean_ctor_get_uint64(x_22, sizeof(void*)*1); +x_34 = lean_unbox_uint64(x_22); lean_dec(x_22); -x_35 = lean_ctor_get_uint64(x_33, sizeof(void*)*1); +x_35 = lean_unbox_uint64(x_33); lean_dec(x_33); x_36 = lean_uint64_dec_lt(x_34, x_35); x_37 = l_Lean_Meta_Simp_evalPropStep(x_1, x_36, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_32); @@ -36571,7 +32337,7 @@ LEAN_EXPORT lean_object* l_UInt64_reduceLT(lean_object* x_1, lean_object* x_2, l _start: { lean_object* x_10; lean_object* x_11; uint8_t x_12; -x_10 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__495; +x_10 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__351; x_11 = lean_unsigned_to_nat(4u); x_12 = l_Lean_Expr_isAppOfArity(x_1, x_10, x_11); if (x_12 == 0) @@ -36585,7 +32351,7 @@ lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_13 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_13 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; x_14 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_14, 0, x_13); lean_ctor_set(x_14, 1, x_9); @@ -36615,57 +32381,57 @@ lean_dec(x_2); return x_11; } } -static lean_object* _init_l___regBuiltin_UInt64_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14140____closed__1() { +static lean_object* _init_l___regBuiltin_UInt64_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12246____closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_UInt64_fromExpr___closed__1; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__485; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__341; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt64_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14140____closed__2() { +static lean_object* _init_l___regBuiltin_UInt64_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12246____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt8_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9817____closed__4; -x_2 = l___regBuiltin_UInt64_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13939____closed__2; +x_1 = l___regBuiltin_UInt8_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8250____closed__4; +x_2 = l___regBuiltin_UInt64_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12045____closed__2; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt64_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14140____closed__3() { +static lean_object* _init_l___regBuiltin_UInt64_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12246____closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt64_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14140____closed__2; +x_1 = l___regBuiltin_UInt64_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12246____closed__2; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt64_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14140____closed__4() { +static lean_object* _init_l___regBuiltin_UInt64_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12246____closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt64_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14140____closed__3; +x_1 = l___regBuiltin_UInt64_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12246____closed__3; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt64_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14140____closed__5() { +static lean_object* _init_l___regBuiltin_UInt64_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12246____closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt64_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14140____closed__4; +x_1 = l___regBuiltin_UInt64_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12246____closed__4; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt64_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14140____closed__6() { +static lean_object* _init_l___regBuiltin_UInt64_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12246____closed__6() { _start: { lean_object* x_1; @@ -36673,37 +32439,37 @@ x_1 = lean_alloc_closure((void*)(l_UInt64_reduceLT), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_UInt64_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14140_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_UInt64_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12246_(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_UInt64_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14140____closed__1; -x_3 = l___regBuiltin_UInt64_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14140____closed__5; -x_4 = l___regBuiltin_UInt64_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14140____closed__6; +x_2 = l___regBuiltin_UInt64_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12246____closed__1; +x_3 = l___regBuiltin_UInt64_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12246____closed__5; +x_4 = l___regBuiltin_UInt64_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12246____closed__6; x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); return x_5; } } -LEAN_EXPORT lean_object* l___regBuiltin_UInt64_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14142_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_UInt64_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12248_(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____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9618____closed__1; -x_3 = l___regBuiltin_UInt64_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14140____closed__1; +x_2 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8051____closed__1; +x_3 = l___regBuiltin_UInt64_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12246____closed__1; x_4 = 1; -x_5 = l___regBuiltin_UInt64_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14140____closed__6; +x_5 = l___regBuiltin_UInt64_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12246____closed__6; 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_UInt64_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14144_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_UInt64_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12250_(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____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9620____closed__1; -x_3 = l___regBuiltin_UInt64_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14140____closed__1; +x_2 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8053____closed__1; +x_3 = l___regBuiltin_UInt64_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12246____closed__1; x_4 = 1; -x_5 = l___regBuiltin_UInt64_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14140____closed__6; +x_5 = l___regBuiltin_UInt64_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12246____closed__6; x_6 = l_Lean_Meta_Simp_addSimprocBuiltinAttrCore(x_2, x_3, x_4, x_5, x_1); return x_6; } @@ -36721,6 +32487,7 @@ lean_inc(x_8); lean_inc(x_7); lean_inc(x_6); x_13 = l_UInt64_fromExpr(x_12, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_12); if (lean_obj_tag(x_13) == 0) { lean_object* x_14; @@ -36740,7 +32507,7 @@ if (x_15 == 0) lean_object* x_16; lean_object* x_17; x_16 = lean_ctor_get(x_13, 0); lean_dec(x_16); -x_17 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_17 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; lean_ctor_set(x_13, 0, x_17); return x_13; } @@ -36750,7 +32517,7 @@ lean_object* x_18; lean_object* x_19; lean_object* x_20; x_18 = lean_ctor_get(x_13, 1); lean_inc(x_18); lean_dec(x_13); -x_19 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_19 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; x_20 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_20, 0, x_19); lean_ctor_set(x_20, 1, x_18); @@ -36772,6 +32539,7 @@ lean_inc(x_8); lean_inc(x_7); lean_inc(x_6); x_24 = l_UInt64_fromExpr(x_23, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_21); +lean_dec(x_23); if (lean_obj_tag(x_24) == 0) { lean_object* x_25; @@ -36792,7 +32560,7 @@ if (x_26 == 0) lean_object* x_27; lean_object* x_28; x_27 = lean_ctor_get(x_24, 0); lean_dec(x_27); -x_28 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_28 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; lean_ctor_set(x_24, 0, x_28); return x_24; } @@ -36802,7 +32570,7 @@ lean_object* x_29; lean_object* x_30; lean_object* x_31; x_29 = lean_ctor_get(x_24, 1); lean_inc(x_29); lean_dec(x_24); -x_30 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_30 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; x_31 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_31, 0, x_30); lean_ctor_set(x_31, 1, x_29); @@ -36818,9 +32586,9 @@ lean_dec(x_24); x_33 = lean_ctor_get(x_25, 0); lean_inc(x_33); lean_dec(x_25); -x_34 = lean_ctor_get_uint64(x_22, sizeof(void*)*1); +x_34 = lean_unbox_uint64(x_22); lean_dec(x_22); -x_35 = lean_ctor_get_uint64(x_33, sizeof(void*)*1); +x_35 = lean_unbox_uint64(x_33); lean_dec(x_33); x_36 = lean_uint64_dec_le(x_34, x_35); x_37 = l_Lean_Meta_Simp_evalPropStep(x_1, x_36, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_32); @@ -36890,7 +32658,7 @@ LEAN_EXPORT lean_object* l_UInt64_reduceLE(lean_object* x_1, lean_object* x_2, l _start: { lean_object* x_10; lean_object* x_11; uint8_t x_12; -x_10 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__509; +x_10 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__365; x_11 = lean_unsigned_to_nat(4u); x_12 = l_Lean_Expr_isAppOfArity(x_1, x_10, x_11); if (x_12 == 0) @@ -36904,7 +32672,7 @@ lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_13 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_13 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; x_14 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_14, 0, x_13); lean_ctor_set(x_14, 1, x_9); @@ -36934,57 +32702,57 @@ lean_dec(x_2); return x_11; } } -static lean_object* _init_l___regBuiltin_UInt64_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14181____closed__1() { +static lean_object* _init_l___regBuiltin_UInt64_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12287____closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_UInt64_fromExpr___closed__1; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__499; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__355; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt64_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14181____closed__2() { +static lean_object* _init_l___regBuiltin_UInt64_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12287____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt8_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9858____closed__3; -x_2 = l___regBuiltin_UInt64_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13939____closed__2; +x_1 = l___regBuiltin_UInt8_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8291____closed__3; +x_2 = l___regBuiltin_UInt64_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12045____closed__2; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt64_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14181____closed__3() { +static lean_object* _init_l___regBuiltin_UInt64_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12287____closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt64_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14181____closed__2; +x_1 = l___regBuiltin_UInt64_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12287____closed__2; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt64_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14181____closed__4() { +static lean_object* _init_l___regBuiltin_UInt64_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12287____closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt64_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14181____closed__3; +x_1 = l___regBuiltin_UInt64_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12287____closed__3; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt64_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14181____closed__5() { +static lean_object* _init_l___regBuiltin_UInt64_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12287____closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt64_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14181____closed__4; +x_1 = l___regBuiltin_UInt64_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12287____closed__4; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt64_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14181____closed__6() { +static lean_object* _init_l___regBuiltin_UInt64_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12287____closed__6() { _start: { lean_object* x_1; @@ -36992,37 +32760,37 @@ x_1 = lean_alloc_closure((void*)(l_UInt64_reduceLE), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_UInt64_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14181_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_UInt64_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12287_(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_UInt64_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14181____closed__1; -x_3 = l___regBuiltin_UInt64_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14181____closed__5; -x_4 = l___regBuiltin_UInt64_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14181____closed__6; +x_2 = l___regBuiltin_UInt64_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12287____closed__1; +x_3 = l___regBuiltin_UInt64_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12287____closed__5; +x_4 = l___regBuiltin_UInt64_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12287____closed__6; x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); return x_5; } } -LEAN_EXPORT lean_object* l___regBuiltin_UInt64_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14183_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_UInt64_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12289_(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____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9618____closed__1; -x_3 = l___regBuiltin_UInt64_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14181____closed__1; +x_2 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8051____closed__1; +x_3 = l___regBuiltin_UInt64_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12287____closed__1; x_4 = 1; -x_5 = l___regBuiltin_UInt64_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14181____closed__6; +x_5 = l___regBuiltin_UInt64_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12287____closed__6; 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_UInt64_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14185_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_UInt64_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12291_(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____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9620____closed__1; -x_3 = l___regBuiltin_UInt64_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14181____closed__1; +x_2 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8053____closed__1; +x_3 = l___regBuiltin_UInt64_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12287____closed__1; x_4 = 1; -x_5 = l___regBuiltin_UInt64_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14181____closed__6; +x_5 = l___regBuiltin_UInt64_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12287____closed__6; x_6 = l_Lean_Meta_Simp_addSimprocBuiltinAttrCore(x_2, x_3, x_4, x_5, x_1); return x_6; } @@ -37040,6 +32808,7 @@ lean_inc(x_8); lean_inc(x_7); lean_inc(x_6); x_13 = l_UInt64_fromExpr(x_12, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_12); if (lean_obj_tag(x_13) == 0) { lean_object* x_14; @@ -37059,7 +32828,7 @@ if (x_15 == 0) lean_object* x_16; lean_object* x_17; x_16 = lean_ctor_get(x_13, 0); lean_dec(x_16); -x_17 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_17 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; lean_ctor_set(x_13, 0, x_17); return x_13; } @@ -37069,7 +32838,7 @@ lean_object* x_18; lean_object* x_19; lean_object* x_20; x_18 = lean_ctor_get(x_13, 1); lean_inc(x_18); lean_dec(x_13); -x_19 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_19 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; x_20 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_20, 0, x_19); lean_ctor_set(x_20, 1, x_18); @@ -37091,6 +32860,7 @@ lean_inc(x_8); lean_inc(x_7); lean_inc(x_6); x_24 = l_UInt64_fromExpr(x_23, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_21); +lean_dec(x_23); if (lean_obj_tag(x_24) == 0) { lean_object* x_25; @@ -37111,7 +32881,7 @@ if (x_26 == 0) lean_object* x_27; lean_object* x_28; x_27 = lean_ctor_get(x_24, 0); lean_dec(x_27); -x_28 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_28 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; lean_ctor_set(x_24, 0, x_28); return x_24; } @@ -37121,7 +32891,7 @@ lean_object* x_29; lean_object* x_30; lean_object* x_31; x_29 = lean_ctor_get(x_24, 1); lean_inc(x_29); lean_dec(x_24); -x_30 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_30 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; x_31 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_31, 0, x_30); lean_ctor_set(x_31, 1, x_29); @@ -37137,11 +32907,11 @@ lean_dec(x_24); x_33 = lean_ctor_get(x_25, 0); lean_inc(x_33); lean_dec(x_25); -x_34 = lean_ctor_get_uint64(x_22, sizeof(void*)*1); -lean_dec(x_22); -x_35 = lean_ctor_get_uint64(x_33, sizeof(void*)*1); +x_34 = lean_unbox_uint64(x_33); lean_dec(x_33); -x_36 = lean_uint64_dec_lt(x_35, x_34); +x_35 = lean_unbox_uint64(x_22); +lean_dec(x_22); +x_36 = lean_uint64_dec_lt(x_34, x_35); x_37 = l_Lean_Meta_Simp_evalPropStep(x_1, x_36, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_32); return x_37; } @@ -37209,7 +32979,7 @@ LEAN_EXPORT lean_object* l_UInt64_reduceGT(lean_object* x_1, lean_object* x_2, l _start: { lean_object* x_10; lean_object* x_11; uint8_t x_12; -x_10 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__522; +x_10 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__378; x_11 = lean_unsigned_to_nat(4u); x_12 = l_Lean_Expr_isAppOfArity(x_1, x_10, x_11); if (x_12 == 0) @@ -37223,7 +32993,7 @@ lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_13 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_13 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; x_14 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_14, 0, x_13); lean_ctor_set(x_14, 1, x_9); @@ -37253,17 +33023,17 @@ lean_dec(x_2); return x_11; } } -static lean_object* _init_l___regBuiltin_UInt64_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14222____closed__1() { +static lean_object* _init_l___regBuiltin_UInt64_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12328____closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_UInt64_fromExpr___closed__1; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__512; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__368; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt64_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14222____closed__2() { +static lean_object* _init_l___regBuiltin_UInt64_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12328____closed__2() { _start: { lean_object* x_1; @@ -37271,37 +33041,37 @@ x_1 = lean_alloc_closure((void*)(l_UInt64_reduceGT), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_UInt64_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14222_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_UInt64_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12328_(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_UInt64_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14222____closed__1; -x_3 = l___regBuiltin_UInt64_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14140____closed__5; -x_4 = l___regBuiltin_UInt64_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14222____closed__2; +x_2 = l___regBuiltin_UInt64_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12328____closed__1; +x_3 = l___regBuiltin_UInt64_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12246____closed__5; +x_4 = l___regBuiltin_UInt64_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12328____closed__2; x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); return x_5; } } -LEAN_EXPORT lean_object* l___regBuiltin_UInt64_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14224_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_UInt64_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12330_(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____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9618____closed__1; -x_3 = l___regBuiltin_UInt64_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14222____closed__1; +x_2 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8051____closed__1; +x_3 = l___regBuiltin_UInt64_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12328____closed__1; x_4 = 1; -x_5 = l___regBuiltin_UInt64_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14222____closed__2; +x_5 = l___regBuiltin_UInt64_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12328____closed__2; 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_UInt64_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14226_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_UInt64_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12332_(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____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9620____closed__1; -x_3 = l___regBuiltin_UInt64_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14222____closed__1; +x_2 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8053____closed__1; +x_3 = l___regBuiltin_UInt64_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12328____closed__1; x_4 = 1; -x_5 = l___regBuiltin_UInt64_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14222____closed__2; +x_5 = l___regBuiltin_UInt64_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12328____closed__2; x_6 = l_Lean_Meta_Simp_addSimprocBuiltinAttrCore(x_2, x_3, x_4, x_5, x_1); return x_6; } @@ -37319,6 +33089,7 @@ lean_inc(x_8); lean_inc(x_7); lean_inc(x_6); x_13 = l_UInt64_fromExpr(x_12, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_12); if (lean_obj_tag(x_13) == 0) { lean_object* x_14; @@ -37338,7 +33109,7 @@ if (x_15 == 0) lean_object* x_16; lean_object* x_17; x_16 = lean_ctor_get(x_13, 0); lean_dec(x_16); -x_17 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_17 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; lean_ctor_set(x_13, 0, x_17); return x_13; } @@ -37348,7 +33119,7 @@ lean_object* x_18; lean_object* x_19; lean_object* x_20; x_18 = lean_ctor_get(x_13, 1); lean_inc(x_18); lean_dec(x_13); -x_19 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_19 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; x_20 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_20, 0, x_19); lean_ctor_set(x_20, 1, x_18); @@ -37370,6 +33141,7 @@ lean_inc(x_8); lean_inc(x_7); lean_inc(x_6); x_24 = l_UInt64_fromExpr(x_23, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_21); +lean_dec(x_23); if (lean_obj_tag(x_24) == 0) { lean_object* x_25; @@ -37390,7 +33162,7 @@ if (x_26 == 0) lean_object* x_27; lean_object* x_28; x_27 = lean_ctor_get(x_24, 0); lean_dec(x_27); -x_28 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_28 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; lean_ctor_set(x_24, 0, x_28); return x_24; } @@ -37400,7 +33172,7 @@ lean_object* x_29; lean_object* x_30; lean_object* x_31; x_29 = lean_ctor_get(x_24, 1); lean_inc(x_29); lean_dec(x_24); -x_30 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_30 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; x_31 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_31, 0, x_30); lean_ctor_set(x_31, 1, x_29); @@ -37416,11 +33188,11 @@ lean_dec(x_24); x_33 = lean_ctor_get(x_25, 0); lean_inc(x_33); lean_dec(x_25); -x_34 = lean_ctor_get_uint64(x_22, sizeof(void*)*1); -lean_dec(x_22); -x_35 = lean_ctor_get_uint64(x_33, sizeof(void*)*1); +x_34 = lean_unbox_uint64(x_33); lean_dec(x_33); -x_36 = lean_uint64_dec_le(x_35, x_34); +x_35 = lean_unbox_uint64(x_22); +lean_dec(x_22); +x_36 = lean_uint64_dec_le(x_34, x_35); x_37 = l_Lean_Meta_Simp_evalPropStep(x_1, x_36, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_32); return x_37; } @@ -37488,7 +33260,7 @@ LEAN_EXPORT lean_object* l_UInt64_reduceGE(lean_object* x_1, lean_object* x_2, l _start: { lean_object* x_10; lean_object* x_11; uint8_t x_12; -x_10 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__535; +x_10 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__391; x_11 = lean_unsigned_to_nat(4u); x_12 = l_Lean_Expr_isAppOfArity(x_1, x_10, x_11); if (x_12 == 0) @@ -37502,7 +33274,7 @@ lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_13 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_13 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; x_14 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_14, 0, x_13); lean_ctor_set(x_14, 1, x_9); @@ -37532,17 +33304,17 @@ lean_dec(x_2); return x_11; } } -static lean_object* _init_l___regBuiltin_UInt64_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14263____closed__1() { +static lean_object* _init_l___regBuiltin_UInt64_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12369____closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_UInt64_fromExpr___closed__1; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__525; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__381; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt64_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14263____closed__2() { +static lean_object* _init_l___regBuiltin_UInt64_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12369____closed__2() { _start: { lean_object* x_1; @@ -37550,42 +33322,42 @@ x_1 = lean_alloc_closure((void*)(l_UInt64_reduceGE), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_UInt64_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14263_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_UInt64_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12369_(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_UInt64_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14263____closed__1; -x_3 = l___regBuiltin_UInt64_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14181____closed__5; -x_4 = l___regBuiltin_UInt64_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14263____closed__2; +x_2 = l___regBuiltin_UInt64_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12369____closed__1; +x_3 = l___regBuiltin_UInt64_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12287____closed__5; +x_4 = l___regBuiltin_UInt64_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12369____closed__2; x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); return x_5; } } -LEAN_EXPORT lean_object* l___regBuiltin_UInt64_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14265_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_UInt64_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12371_(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____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9618____closed__1; -x_3 = l___regBuiltin_UInt64_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14263____closed__1; +x_2 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8051____closed__1; +x_3 = l___regBuiltin_UInt64_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12369____closed__1; x_4 = 1; -x_5 = l___regBuiltin_UInt64_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14263____closed__2; +x_5 = l___regBuiltin_UInt64_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12369____closed__2; 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_UInt64_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14267_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_UInt64_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12373_(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____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9620____closed__1; -x_3 = l___regBuiltin_UInt64_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14263____closed__1; +x_2 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8053____closed__1; +x_3 = l___regBuiltin_UInt64_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12369____closed__1; x_4 = 1; -x_5 = l___regBuiltin_UInt64_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14263____closed__2; +x_5 = l___regBuiltin_UInt64_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12369____closed__2; 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_UInt64_reduceEq____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301____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) { +LEAN_EXPORT lean_object* l_UInt64_reduceEq____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511____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; @@ -37598,6 +33370,7 @@ lean_inc(x_8); lean_inc(x_7); lean_inc(x_6); x_13 = l_UInt64_fromExpr(x_12, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_12); if (lean_obj_tag(x_13) == 0) { lean_object* x_14; @@ -37617,7 +33390,7 @@ if (x_15 == 0) lean_object* x_16; lean_object* x_17; x_16 = lean_ctor_get(x_13, 0); lean_dec(x_16); -x_17 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_17 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; lean_ctor_set(x_13, 0, x_17); return x_13; } @@ -37627,7 +33400,7 @@ lean_object* x_18; lean_object* x_19; lean_object* x_20; x_18 = lean_ctor_get(x_13, 1); lean_inc(x_18); lean_dec(x_13); -x_19 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_19 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; x_20 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_20, 0, x_19); lean_ctor_set(x_20, 1, x_18); @@ -37649,6 +33422,7 @@ lean_inc(x_8); lean_inc(x_7); lean_inc(x_6); x_24 = l_UInt64_fromExpr(x_23, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_21); +lean_dec(x_23); if (lean_obj_tag(x_24) == 0) { lean_object* x_25; @@ -37669,7 +33443,7 @@ if (x_26 == 0) lean_object* x_27; lean_object* x_28; x_27 = lean_ctor_get(x_24, 0); lean_dec(x_27); -x_28 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_28 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; lean_ctor_set(x_24, 0, x_28); return x_24; } @@ -37679,7 +33453,7 @@ lean_object* x_29; lean_object* x_30; lean_object* x_31; x_29 = lean_ctor_get(x_24, 1); lean_inc(x_29); lean_dec(x_24); -x_30 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_30 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; x_31 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_31, 0, x_30); lean_ctor_set(x_31, 1, x_29); @@ -37695,9 +33469,9 @@ lean_dec(x_24); x_33 = lean_ctor_get(x_25, 0); lean_inc(x_33); lean_dec(x_25); -x_34 = lean_ctor_get_uint64(x_22, sizeof(void*)*1); +x_34 = lean_unbox_uint64(x_22); lean_dec(x_22); -x_35 = lean_ctor_get_uint64(x_33, sizeof(void*)*1); +x_35 = lean_unbox_uint64(x_33); lean_dec(x_33); x_36 = lean_uint64_dec_eq(x_34, x_35); x_37 = l_Lean_Meta_Simp_evalPropStep(x_1, x_36, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_32); @@ -37763,11 +33537,11 @@ return x_45; } } } -LEAN_EXPORT lean_object* l_UInt64_reduceEq____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301_(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_EXPORT lean_object* l_UInt64_reduceEq____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511_(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; uint8_t x_12; -x_10 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__546; +x_10 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__402; x_11 = lean_unsigned_to_nat(3u); x_12 = l_Lean_Expr_isAppOfArity(x_1, x_10, x_11); if (x_12 == 0) @@ -37781,7 +33555,7 @@ lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_13 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_13 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; x_14 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_14, 0, x_13); lean_ctor_set(x_14, 1, x_9); @@ -37791,7 +33565,7 @@ else { lean_object* x_15; lean_object* x_16; x_15 = lean_box(0); -x_16 = l_UInt64_reduceEq____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301____lambda__1(x_1, x_15, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_16 = l_UInt64_reduceEq____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511____lambda__1(x_1, x_15, 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); @@ -37799,11 +33573,11 @@ return x_16; } } } -LEAN_EXPORT lean_object* l_UInt64_reduceEq____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301____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) { +LEAN_EXPORT lean_object* l_UInt64_reduceEq____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511____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_UInt64_reduceEq____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301____lambda__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_11 = l_UInt64_reduceEq____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511____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); @@ -37811,180 +33585,180 @@ lean_dec(x_2); return x_11; } } -static lean_object* _init_l___regBuiltin_UInt64_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14304____closed__1() { +static lean_object* _init_l___regBuiltin_UInt64_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12410____closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_UInt64_fromExpr___closed__2; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__538; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__394; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt64_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14304____closed__2() { +static lean_object* _init_l___regBuiltin_UInt64_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12410____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt64_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14304____closed__1; -x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__2; +x_1 = l___regBuiltin_UInt64_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12410____closed__1; +x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__2; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt64_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14304____closed__3() { +static lean_object* _init_l___regBuiltin_UInt64_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12410____closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt64_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14304____closed__2; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__18; +x_1 = l___regBuiltin_UInt64_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12410____closed__2; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__12; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt64_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14304____closed__4() { +static lean_object* _init_l___regBuiltin_UInt64_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12410____closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt64_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14304____closed__3; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__90; +x_1 = l___regBuiltin_UInt64_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12410____closed__3; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__57; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt64_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14304____closed__5() { +static lean_object* _init_l___regBuiltin_UInt64_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12410____closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt64_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14304____closed__4; -x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__6; +x_1 = l___regBuiltin_UInt64_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12410____closed__4; +x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__6; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt64_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14304____closed__6() { +static lean_object* _init_l___regBuiltin_UInt64_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12410____closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt64_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14304____closed__5; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__91; +x_1 = l___regBuiltin_UInt64_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12410____closed__5; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__58; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt64_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14304____closed__7() { +static lean_object* _init_l___regBuiltin_UInt64_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12410____closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt64_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14304____closed__6; -x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__9; +x_1 = l___regBuiltin_UInt64_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12410____closed__6; +x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__9; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt64_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14304____closed__8() { +static lean_object* _init_l___regBuiltin_UInt64_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12410____closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt64_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14304____closed__7; -x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__11; +x_1 = l___regBuiltin_UInt64_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12410____closed__7; +x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__11; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt64_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14304____closed__9() { +static lean_object* _init_l___regBuiltin_UInt64_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12410____closed__9() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt64_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14304____closed__8; -x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__13; +x_1 = l___regBuiltin_UInt64_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12410____closed__8; +x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__13; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt64_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14304____closed__10() { +static lean_object* _init_l___regBuiltin_UInt64_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12410____closed__10() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt64_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14304____closed__9; -x_2 = lean_unsigned_to_nat(13301u); +x_1 = l___regBuiltin_UInt64_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12410____closed__9; +x_2 = lean_unsigned_to_nat(11511u); x_3 = l_Lean_Name_num___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt64_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14304____closed__11() { +static lean_object* _init_l___regBuiltin_UInt64_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12410____closed__11() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__18; -x_2 = l___regBuiltin_UInt64_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13939____closed__2; +x_1 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__18; +x_2 = l___regBuiltin_UInt64_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12045____closed__2; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt64_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14304____closed__12() { +static lean_object* _init_l___regBuiltin_UInt64_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12410____closed__12() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt64_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14304____closed__11; +x_1 = l___regBuiltin_UInt64_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12410____closed__11; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt64_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14304____closed__13() { +static lean_object* _init_l___regBuiltin_UInt64_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12410____closed__13() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt64_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14304____closed__12; +x_1 = l___regBuiltin_UInt64_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12410____closed__12; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt64_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14304____closed__14() { +static lean_object* _init_l___regBuiltin_UInt64_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12410____closed__14() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_UInt64_reduceEq____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301_), 9, 0); +x_1 = lean_alloc_closure((void*)(l_UInt64_reduceEq____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511_), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_UInt64_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14304_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_UInt64_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12410_(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_UInt64_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14304____closed__10; -x_3 = l___regBuiltin_UInt64_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14304____closed__13; -x_4 = l___regBuiltin_UInt64_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14304____closed__14; +x_2 = l___regBuiltin_UInt64_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12410____closed__10; +x_3 = l___regBuiltin_UInt64_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12410____closed__13; +x_4 = l___regBuiltin_UInt64_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12410____closed__14; x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); return x_5; } } -LEAN_EXPORT lean_object* l___regBuiltin_UInt64_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14306_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_UInt64_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12412_(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____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9618____closed__1; -x_3 = l___regBuiltin_UInt64_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14304____closed__10; +x_2 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8051____closed__1; +x_3 = l___regBuiltin_UInt64_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12410____closed__10; x_4 = 1; -x_5 = l___regBuiltin_UInt64_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14304____closed__14; +x_5 = l___regBuiltin_UInt64_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12410____closed__14; 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_UInt64_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14308_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_UInt64_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12414_(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____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9620____closed__1; -x_3 = l___regBuiltin_UInt64_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14304____closed__10; +x_2 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8053____closed__1; +x_3 = l___regBuiltin_UInt64_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12410____closed__10; x_4 = 1; -x_5 = l___regBuiltin_UInt64_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14304____closed__14; +x_5 = l___regBuiltin_UInt64_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12410____closed__14; 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_UInt64_reduceNe____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301____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) { +LEAN_EXPORT lean_object* l_UInt64_reduceNe____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511____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; @@ -37997,6 +33771,7 @@ lean_inc(x_8); lean_inc(x_7); lean_inc(x_6); x_13 = l_UInt64_fromExpr(x_12, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_12); if (lean_obj_tag(x_13) == 0) { lean_object* x_14; @@ -38016,7 +33791,7 @@ if (x_15 == 0) lean_object* x_16; lean_object* x_17; x_16 = lean_ctor_get(x_13, 0); lean_dec(x_16); -x_17 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_17 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; lean_ctor_set(x_13, 0, x_17); return x_13; } @@ -38026,7 +33801,7 @@ lean_object* x_18; lean_object* x_19; lean_object* x_20; x_18 = lean_ctor_get(x_13, 1); lean_inc(x_18); lean_dec(x_13); -x_19 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_19 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; x_20 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_20, 0, x_19); lean_ctor_set(x_20, 1, x_18); @@ -38048,6 +33823,7 @@ lean_inc(x_8); lean_inc(x_7); lean_inc(x_6); x_24 = l_UInt64_fromExpr(x_23, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_21); +lean_dec(x_23); if (lean_obj_tag(x_24) == 0) { lean_object* x_25; @@ -38068,7 +33844,7 @@ if (x_26 == 0) lean_object* x_27; lean_object* x_28; x_27 = lean_ctor_get(x_24, 0); lean_dec(x_27); -x_28 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_28 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; lean_ctor_set(x_24, 0, x_28); return x_24; } @@ -38078,7 +33854,7 @@ lean_object* x_29; lean_object* x_30; lean_object* x_31; x_29 = lean_ctor_get(x_24, 1); lean_inc(x_29); lean_dec(x_24); -x_30 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_30 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; x_31 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_31, 0, x_30); lean_ctor_set(x_31, 1, x_29); @@ -38094,9 +33870,9 @@ lean_dec(x_24); x_33 = lean_ctor_get(x_25, 0); lean_inc(x_33); lean_dec(x_25); -x_34 = lean_ctor_get_uint64(x_22, sizeof(void*)*1); +x_34 = lean_unbox_uint64(x_22); lean_dec(x_22); -x_35 = lean_ctor_get_uint64(x_33, sizeof(void*)*1); +x_35 = lean_unbox_uint64(x_33); lean_dec(x_33); x_36 = lean_uint64_dec_eq(x_34, x_35); x_37 = l_instDecidableNot___rarg(x_36); @@ -38163,11 +33939,11 @@ return x_46; } } } -LEAN_EXPORT lean_object* l_UInt64_reduceNe____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301_(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_EXPORT lean_object* l_UInt64_reduceNe____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511_(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; uint8_t x_12; -x_10 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__559; +x_10 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__416; x_11 = lean_unsigned_to_nat(3u); x_12 = l_Lean_Expr_isAppOfArity(x_1, x_10, x_11); if (x_12 == 0) @@ -38181,7 +33957,7 @@ lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_13 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_13 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; x_14 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_14, 0, x_13); lean_ctor_set(x_14, 1, x_9); @@ -38191,7 +33967,7 @@ else { lean_object* x_15; lean_object* x_16; x_15 = lean_box(0); -x_16 = l_UInt64_reduceNe____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301____lambda__1(x_1, x_15, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_16 = l_UInt64_reduceNe____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511____lambda__1(x_1, x_15, 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); @@ -38199,11 +33975,11 @@ return x_16; } } } -LEAN_EXPORT lean_object* l_UInt64_reduceNe____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301____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) { +LEAN_EXPORT lean_object* l_UInt64_reduceNe____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511____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_UInt64_reduceNe____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301____lambda__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_11 = l_UInt64_reduceNe____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511____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); @@ -38211,180 +33987,180 @@ lean_dec(x_2); return x_11; } } -static lean_object* _init_l___regBuiltin_UInt64_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14344____closed__1() { +static lean_object* _init_l___regBuiltin_UInt64_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12450____closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_UInt64_fromExpr___closed__2; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__551; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__408; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt64_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14344____closed__2() { +static lean_object* _init_l___regBuiltin_UInt64_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12450____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt64_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14344____closed__1; -x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__2; +x_1 = l___regBuiltin_UInt64_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12450____closed__1; +x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__2; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt64_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14344____closed__3() { +static lean_object* _init_l___regBuiltin_UInt64_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12450____closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt64_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14344____closed__2; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__18; +x_1 = l___regBuiltin_UInt64_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12450____closed__2; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__12; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt64_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14344____closed__4() { +static lean_object* _init_l___regBuiltin_UInt64_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12450____closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt64_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14344____closed__3; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__90; +x_1 = l___regBuiltin_UInt64_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12450____closed__3; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__57; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt64_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14344____closed__5() { +static lean_object* _init_l___regBuiltin_UInt64_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12450____closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt64_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14344____closed__4; -x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__6; +x_1 = l___regBuiltin_UInt64_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12450____closed__4; +x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__6; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt64_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14344____closed__6() { +static lean_object* _init_l___regBuiltin_UInt64_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12450____closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt64_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14344____closed__5; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__91; +x_1 = l___regBuiltin_UInt64_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12450____closed__5; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__58; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt64_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14344____closed__7() { +static lean_object* _init_l___regBuiltin_UInt64_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12450____closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt64_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14344____closed__6; -x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__9; +x_1 = l___regBuiltin_UInt64_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12450____closed__6; +x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__9; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt64_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14344____closed__8() { +static lean_object* _init_l___regBuiltin_UInt64_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12450____closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt64_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14344____closed__7; -x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__11; +x_1 = l___regBuiltin_UInt64_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12450____closed__7; +x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__11; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt64_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14344____closed__9() { +static lean_object* _init_l___regBuiltin_UInt64_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12450____closed__9() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt64_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14344____closed__8; -x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__13; +x_1 = l___regBuiltin_UInt64_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12450____closed__8; +x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__13; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt64_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14344____closed__10() { +static lean_object* _init_l___regBuiltin_UInt64_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12450____closed__10() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt64_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14344____closed__9; -x_2 = lean_unsigned_to_nat(13301u); +x_1 = l___regBuiltin_UInt64_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12450____closed__9; +x_2 = lean_unsigned_to_nat(11511u); x_3 = l_Lean_Name_num___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt64_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14344____closed__11() { +static lean_object* _init_l___regBuiltin_UInt64_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12450____closed__11() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10021____closed__15; -x_2 = l___regBuiltin_UInt64_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13939____closed__2; +x_1 = l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8454____closed__15; +x_2 = l___regBuiltin_UInt64_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12045____closed__2; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt64_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14344____closed__12() { +static lean_object* _init_l___regBuiltin_UInt64_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12450____closed__12() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt64_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14344____closed__11; +x_1 = l___regBuiltin_UInt64_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12450____closed__11; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt64_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14344____closed__13() { +static lean_object* _init_l___regBuiltin_UInt64_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12450____closed__13() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt64_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14344____closed__12; +x_1 = l___regBuiltin_UInt64_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12450____closed__12; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt64_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14344____closed__14() { +static lean_object* _init_l___regBuiltin_UInt64_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12450____closed__14() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_UInt64_reduceNe____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301_), 9, 0); +x_1 = lean_alloc_closure((void*)(l_UInt64_reduceNe____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511_), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_UInt64_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14344_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_UInt64_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12450_(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_UInt64_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14344____closed__10; -x_3 = l___regBuiltin_UInt64_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14344____closed__13; -x_4 = l___regBuiltin_UInt64_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14344____closed__14; +x_2 = l___regBuiltin_UInt64_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12450____closed__10; +x_3 = l___regBuiltin_UInt64_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12450____closed__13; +x_4 = l___regBuiltin_UInt64_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12450____closed__14; x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); return x_5; } } -LEAN_EXPORT lean_object* l___regBuiltin_UInt64_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14346_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_UInt64_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12452_(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____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9618____closed__1; -x_3 = l___regBuiltin_UInt64_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14344____closed__10; +x_2 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8051____closed__1; +x_3 = l___regBuiltin_UInt64_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12450____closed__10; x_4 = 1; -x_5 = l___regBuiltin_UInt64_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14344____closed__14; +x_5 = l___regBuiltin_UInt64_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12450____closed__14; 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_UInt64_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14348_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_UInt64_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12454_(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____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9620____closed__1; -x_3 = l___regBuiltin_UInt64_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14344____closed__10; +x_2 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8053____closed__1; +x_3 = l___regBuiltin_UInt64_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12450____closed__10; x_4 = 1; -x_5 = l___regBuiltin_UInt64_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14344____closed__14; +x_5 = l___regBuiltin_UInt64_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12450____closed__14; 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_UInt64_reduceBEq____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301____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) { +LEAN_EXPORT lean_object* l_UInt64_reduceBEq____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511____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; @@ -38397,6 +34173,7 @@ lean_inc(x_8); lean_inc(x_7); lean_inc(x_6); x_13 = l_UInt64_fromExpr(x_12, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_12); if (lean_obj_tag(x_13) == 0) { lean_object* x_14; @@ -38416,7 +34193,7 @@ if (x_15 == 0) lean_object* x_16; lean_object* x_17; x_16 = lean_ctor_get(x_13, 0); lean_dec(x_16); -x_17 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_17 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; lean_ctor_set(x_13, 0, x_17); return x_13; } @@ -38426,7 +34203,7 @@ lean_object* x_18; lean_object* x_19; lean_object* x_20; x_18 = lean_ctor_get(x_13, 1); lean_inc(x_18); lean_dec(x_13); -x_19 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_19 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; x_20 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_20, 0, x_19); lean_ctor_set(x_20, 1, x_18); @@ -38445,6 +34222,7 @@ lean_dec(x_14); x_23 = l_Lean_Expr_appArg_x21(x_1); lean_dec(x_1); x_24 = l_UInt64_fromExpr(x_23, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_21); +lean_dec(x_23); if (lean_obj_tag(x_24) == 0) { lean_object* x_25; @@ -38460,7 +34238,7 @@ if (x_26 == 0) lean_object* x_27; lean_object* x_28; x_27 = lean_ctor_get(x_24, 0); lean_dec(x_27); -x_28 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_28 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; lean_ctor_set(x_24, 0, x_28); return x_24; } @@ -38470,7 +34248,7 @@ lean_object* x_29; lean_object* x_30; lean_object* x_31; x_29 = lean_ctor_get(x_24, 1); lean_inc(x_29); lean_dec(x_24); -x_30 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_30 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; x_31 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_31, 0, x_30); lean_ctor_set(x_31, 1, x_29); @@ -38489,22 +34267,22 @@ lean_dec(x_33); x_34 = lean_ctor_get(x_25, 0); lean_inc(x_34); lean_dec(x_25); -x_35 = lean_ctor_get_uint64(x_22, sizeof(void*)*1); +x_35 = lean_unbox_uint64(x_22); lean_dec(x_22); -x_36 = lean_ctor_get_uint64(x_34, sizeof(void*)*1); +x_36 = lean_unbox_uint64(x_34); lean_dec(x_34); x_37 = lean_uint64_dec_eq(x_35, x_36); if (x_37 == 0) { lean_object* x_38; -x_38 = l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__5; +x_38 = l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__5; lean_ctor_set(x_24, 0, x_38); return x_24; } else { lean_object* x_39; -x_39 = l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__10; +x_39 = l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__10; lean_ctor_set(x_24, 0, x_39); return x_24; } @@ -38518,15 +34296,15 @@ lean_dec(x_24); x_41 = lean_ctor_get(x_25, 0); lean_inc(x_41); lean_dec(x_25); -x_42 = lean_ctor_get_uint64(x_22, sizeof(void*)*1); +x_42 = lean_unbox_uint64(x_22); lean_dec(x_22); -x_43 = lean_ctor_get_uint64(x_41, sizeof(void*)*1); +x_43 = lean_unbox_uint64(x_41); lean_dec(x_41); x_44 = lean_uint64_dec_eq(x_42, x_43); if (x_44 == 0) { lean_object* x_45; lean_object* x_46; -x_45 = l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__5; +x_45 = l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__5; x_46 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_46, 0, x_45); lean_ctor_set(x_46, 1, x_40); @@ -38535,7 +34313,7 @@ return x_46; else { lean_object* x_47; lean_object* x_48; -x_47 = l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__10; +x_47 = l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__10; x_48 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_48, 0, x_47); lean_ctor_set(x_48, 1, x_40); @@ -38598,11 +34376,11 @@ return x_56; } } } -LEAN_EXPORT lean_object* l_UInt64_reduceBEq____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301_(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_EXPORT lean_object* l_UInt64_reduceBEq____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511_(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; uint8_t x_12; -x_10 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__574; +x_10 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__431; x_11 = lean_unsigned_to_nat(4u); x_12 = l_Lean_Expr_isAppOfArity(x_1, x_10, x_11); if (x_12 == 0) @@ -38616,7 +34394,7 @@ lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_13 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_13 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; x_14 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_14, 0, x_13); lean_ctor_set(x_14, 1, x_9); @@ -38626,7 +34404,7 @@ else { lean_object* x_15; lean_object* x_16; x_15 = lean_box(0); -x_16 = l_UInt64_reduceBEq____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301____lambda__1(x_1, x_15, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_16 = l_UInt64_reduceBEq____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511____lambda__1(x_1, x_15, 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); @@ -38634,11 +34412,11 @@ return x_16; } } } -LEAN_EXPORT lean_object* l_UInt64_reduceBEq____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301____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) { +LEAN_EXPORT lean_object* l_UInt64_reduceBEq____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511____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_UInt64_reduceBEq____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301____lambda__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_11 = l_UInt64_reduceBEq____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511____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); @@ -38646,190 +34424,190 @@ lean_dec(x_2); return x_11; } } -static lean_object* _init_l___regBuiltin_UInt64_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14385____closed__1() { +static lean_object* _init_l___regBuiltin_UInt64_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12491____closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_UInt64_fromExpr___closed__2; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__564; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__421; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt64_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14385____closed__2() { +static lean_object* _init_l___regBuiltin_UInt64_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12491____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt64_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14385____closed__1; -x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__2; +x_1 = l___regBuiltin_UInt64_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12491____closed__1; +x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__2; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt64_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14385____closed__3() { +static lean_object* _init_l___regBuiltin_UInt64_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12491____closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt64_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14385____closed__2; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__18; +x_1 = l___regBuiltin_UInt64_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12491____closed__2; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__12; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt64_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14385____closed__4() { +static lean_object* _init_l___regBuiltin_UInt64_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12491____closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt64_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14385____closed__3; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__90; +x_1 = l___regBuiltin_UInt64_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12491____closed__3; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__57; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt64_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14385____closed__5() { +static lean_object* _init_l___regBuiltin_UInt64_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12491____closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt64_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14385____closed__4; -x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__6; +x_1 = l___regBuiltin_UInt64_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12491____closed__4; +x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__6; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt64_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14385____closed__6() { +static lean_object* _init_l___regBuiltin_UInt64_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12491____closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt64_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14385____closed__5; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__91; +x_1 = l___regBuiltin_UInt64_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12491____closed__5; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__58; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt64_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14385____closed__7() { +static lean_object* _init_l___regBuiltin_UInt64_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12491____closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt64_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14385____closed__6; -x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__9; +x_1 = l___regBuiltin_UInt64_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12491____closed__6; +x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__9; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt64_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14385____closed__8() { +static lean_object* _init_l___regBuiltin_UInt64_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12491____closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt64_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14385____closed__7; -x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__11; +x_1 = l___regBuiltin_UInt64_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12491____closed__7; +x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__11; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt64_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14385____closed__9() { +static lean_object* _init_l___regBuiltin_UInt64_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12491____closed__9() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt64_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14385____closed__8; -x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__13; +x_1 = l___regBuiltin_UInt64_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12491____closed__8; +x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__13; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt64_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14385____closed__10() { +static lean_object* _init_l___regBuiltin_UInt64_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12491____closed__10() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt64_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14385____closed__9; -x_2 = lean_unsigned_to_nat(13301u); +x_1 = l___regBuiltin_UInt64_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12491____closed__9; +x_2 = lean_unsigned_to_nat(11511u); x_3 = l_Lean_Name_num___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt64_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14385____closed__11() { +static lean_object* _init_l___regBuiltin_UInt64_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12491____closed__11() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10062____closed__12; -x_2 = l___regBuiltin_UInt64_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13939____closed__2; +x_1 = l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8495____closed__12; +x_2 = l___regBuiltin_UInt64_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12045____closed__2; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt64_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14385____closed__12() { +static lean_object* _init_l___regBuiltin_UInt64_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12491____closed__12() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt64_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14385____closed__11; +x_1 = l___regBuiltin_UInt64_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12491____closed__11; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt64_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14385____closed__13() { +static lean_object* _init_l___regBuiltin_UInt64_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12491____closed__13() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt64_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14385____closed__12; +x_1 = l___regBuiltin_UInt64_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12491____closed__12; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt64_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14385____closed__14() { +static lean_object* _init_l___regBuiltin_UInt64_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12491____closed__14() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt64_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14385____closed__13; +x_1 = l___regBuiltin_UInt64_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12491____closed__13; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt64_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14385____closed__15() { +static lean_object* _init_l___regBuiltin_UInt64_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12491____closed__15() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_UInt64_reduceBEq____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301_), 9, 0); +x_1 = lean_alloc_closure((void*)(l_UInt64_reduceBEq____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511_), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_UInt64_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14385_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_UInt64_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12491_(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_UInt64_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14385____closed__10; -x_3 = l___regBuiltin_UInt64_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14385____closed__14; -x_4 = l___regBuiltin_UInt64_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14385____closed__15; +x_2 = l___regBuiltin_UInt64_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12491____closed__10; +x_3 = l___regBuiltin_UInt64_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12491____closed__14; +x_4 = l___regBuiltin_UInt64_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12491____closed__15; x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); return x_5; } } -LEAN_EXPORT lean_object* l___regBuiltin_UInt64_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14387_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_UInt64_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12493_(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____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9618____closed__1; -x_3 = l___regBuiltin_UInt64_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14385____closed__10; +x_2 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8051____closed__1; +x_3 = l___regBuiltin_UInt64_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12491____closed__10; x_4 = 1; -x_5 = l___regBuiltin_UInt64_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14385____closed__15; +x_5 = l___regBuiltin_UInt64_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12491____closed__15; 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_UInt64_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14389_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_UInt64_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12495_(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____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9620____closed__1; -x_3 = l___regBuiltin_UInt64_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14385____closed__10; +x_2 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8053____closed__1; +x_3 = l___regBuiltin_UInt64_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12491____closed__10; x_4 = 1; -x_5 = l___regBuiltin_UInt64_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14385____closed__15; +x_5 = l___regBuiltin_UInt64_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12491____closed__15; 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_UInt64_reduceBNe____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301____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) { +LEAN_EXPORT lean_object* l_UInt64_reduceBNe____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511____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; @@ -38842,6 +34620,7 @@ lean_inc(x_8); lean_inc(x_7); lean_inc(x_6); x_13 = l_UInt64_fromExpr(x_12, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_12); if (lean_obj_tag(x_13) == 0) { lean_object* x_14; @@ -38861,7 +34640,7 @@ if (x_15 == 0) lean_object* x_16; lean_object* x_17; x_16 = lean_ctor_get(x_13, 0); lean_dec(x_16); -x_17 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_17 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; lean_ctor_set(x_13, 0, x_17); return x_13; } @@ -38871,7 +34650,7 @@ lean_object* x_18; lean_object* x_19; lean_object* x_20; x_18 = lean_ctor_get(x_13, 1); lean_inc(x_18); lean_dec(x_13); -x_19 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_19 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; x_20 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_20, 0, x_19); lean_ctor_set(x_20, 1, x_18); @@ -38890,6 +34669,7 @@ lean_dec(x_14); x_23 = l_Lean_Expr_appArg_x21(x_1); lean_dec(x_1); x_24 = l_UInt64_fromExpr(x_23, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_21); +lean_dec(x_23); if (lean_obj_tag(x_24) == 0) { lean_object* x_25; @@ -38905,7 +34685,7 @@ if (x_26 == 0) lean_object* x_27; lean_object* x_28; x_27 = lean_ctor_get(x_24, 0); lean_dec(x_27); -x_28 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_28 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; lean_ctor_set(x_24, 0, x_28); return x_24; } @@ -38915,7 +34695,7 @@ lean_object* x_29; lean_object* x_30; lean_object* x_31; x_29 = lean_ctor_get(x_24, 1); lean_inc(x_29); lean_dec(x_24); -x_30 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_30 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; x_31 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_31, 0, x_30); lean_ctor_set(x_31, 1, x_29); @@ -38934,22 +34714,22 @@ lean_dec(x_33); x_34 = lean_ctor_get(x_25, 0); lean_inc(x_34); lean_dec(x_25); -x_35 = lean_ctor_get_uint64(x_22, sizeof(void*)*1); +x_35 = lean_unbox_uint64(x_22); lean_dec(x_22); -x_36 = lean_ctor_get_uint64(x_34, sizeof(void*)*1); +x_36 = lean_unbox_uint64(x_34); lean_dec(x_34); x_37 = lean_uint64_dec_eq(x_35, x_36); if (x_37 == 0) { lean_object* x_38; -x_38 = l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__10; +x_38 = l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__10; lean_ctor_set(x_24, 0, x_38); return x_24; } else { lean_object* x_39; -x_39 = l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__5; +x_39 = l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__5; lean_ctor_set(x_24, 0, x_39); return x_24; } @@ -38963,15 +34743,15 @@ lean_dec(x_24); x_41 = lean_ctor_get(x_25, 0); lean_inc(x_41); lean_dec(x_25); -x_42 = lean_ctor_get_uint64(x_22, sizeof(void*)*1); +x_42 = lean_unbox_uint64(x_22); lean_dec(x_22); -x_43 = lean_ctor_get_uint64(x_41, sizeof(void*)*1); +x_43 = lean_unbox_uint64(x_41); lean_dec(x_41); x_44 = lean_uint64_dec_eq(x_42, x_43); if (x_44 == 0) { lean_object* x_45; lean_object* x_46; -x_45 = l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__10; +x_45 = l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__10; x_46 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_46, 0, x_45); lean_ctor_set(x_46, 1, x_40); @@ -38980,7 +34760,7 @@ return x_46; else { lean_object* x_47; lean_object* x_48; -x_47 = l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__5; +x_47 = l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__5; x_48 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_48, 0, x_47); lean_ctor_set(x_48, 1, x_40); @@ -39043,11 +34823,11 @@ return x_56; } } } -LEAN_EXPORT lean_object* l_UInt64_reduceBNe____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301_(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_EXPORT lean_object* l_UInt64_reduceBNe____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511_(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; uint8_t x_12; -x_10 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__585; +x_10 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__442; x_11 = lean_unsigned_to_nat(4u); x_12 = l_Lean_Expr_isAppOfArity(x_1, x_10, x_11); if (x_12 == 0) @@ -39061,7 +34841,7 @@ lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_13 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_13 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; x_14 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_14, 0, x_13); lean_ctor_set(x_14, 1, x_9); @@ -39071,7 +34851,7 @@ else { lean_object* x_15; lean_object* x_16; x_15 = lean_box(0); -x_16 = l_UInt64_reduceBNe____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301____lambda__1(x_1, x_15, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_16 = l_UInt64_reduceBNe____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511____lambda__1(x_1, x_15, 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); @@ -39079,11 +34859,11 @@ return x_16; } } } -LEAN_EXPORT lean_object* l_UInt64_reduceBNe____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301____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) { +LEAN_EXPORT lean_object* l_UInt64_reduceBNe____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511____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_UInt64_reduceBNe____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301____lambda__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_11 = l_UInt64_reduceBNe____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511____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); @@ -39091,185 +34871,185 @@ lean_dec(x_2); return x_11; } } -static lean_object* _init_l___regBuiltin_UInt64_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14425____closed__1() { +static lean_object* _init_l___regBuiltin_UInt64_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12531____closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_UInt64_fromExpr___closed__2; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__577; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__434; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt64_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14425____closed__2() { +static lean_object* _init_l___regBuiltin_UInt64_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12531____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt64_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14425____closed__1; -x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__2; +x_1 = l___regBuiltin_UInt64_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12531____closed__1; +x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__2; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt64_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14425____closed__3() { +static lean_object* _init_l___regBuiltin_UInt64_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12531____closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt64_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14425____closed__2; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__18; +x_1 = l___regBuiltin_UInt64_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12531____closed__2; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__12; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt64_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14425____closed__4() { +static lean_object* _init_l___regBuiltin_UInt64_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12531____closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt64_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14425____closed__3; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__90; +x_1 = l___regBuiltin_UInt64_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12531____closed__3; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__57; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt64_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14425____closed__5() { +static lean_object* _init_l___regBuiltin_UInt64_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12531____closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt64_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14425____closed__4; -x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__6; +x_1 = l___regBuiltin_UInt64_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12531____closed__4; +x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__6; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt64_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14425____closed__6() { +static lean_object* _init_l___regBuiltin_UInt64_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12531____closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt64_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14425____closed__5; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__91; +x_1 = l___regBuiltin_UInt64_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12531____closed__5; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__58; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt64_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14425____closed__7() { +static lean_object* _init_l___regBuiltin_UInt64_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12531____closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt64_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14425____closed__6; -x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__9; +x_1 = l___regBuiltin_UInt64_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12531____closed__6; +x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__9; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt64_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14425____closed__8() { +static lean_object* _init_l___regBuiltin_UInt64_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12531____closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt64_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14425____closed__7; -x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__11; +x_1 = l___regBuiltin_UInt64_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12531____closed__7; +x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__11; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt64_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14425____closed__9() { +static lean_object* _init_l___regBuiltin_UInt64_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12531____closed__9() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt64_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14425____closed__8; -x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__13; +x_1 = l___regBuiltin_UInt64_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12531____closed__8; +x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__13; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt64_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14425____closed__10() { +static lean_object* _init_l___regBuiltin_UInt64_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12531____closed__10() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt64_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14425____closed__9; -x_2 = lean_unsigned_to_nat(13301u); +x_1 = l___regBuiltin_UInt64_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12531____closed__9; +x_2 = lean_unsigned_to_nat(11511u); x_3 = l_Lean_Name_num___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt64_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14425____closed__11() { +static lean_object* _init_l___regBuiltin_UInt64_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12531____closed__11() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10102____closed__12; -x_2 = l___regBuiltin_UInt64_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13939____closed__2; +x_1 = l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8535____closed__12; +x_2 = l___regBuiltin_UInt64_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12045____closed__2; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt64_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14425____closed__12() { +static lean_object* _init_l___regBuiltin_UInt64_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12531____closed__12() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt64_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14425____closed__11; +x_1 = l___regBuiltin_UInt64_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12531____closed__11; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt64_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14425____closed__13() { +static lean_object* _init_l___regBuiltin_UInt64_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12531____closed__13() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt64_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14425____closed__12; +x_1 = l___regBuiltin_UInt64_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12531____closed__12; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt64_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14425____closed__14() { +static lean_object* _init_l___regBuiltin_UInt64_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12531____closed__14() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt64_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14425____closed__13; +x_1 = l___regBuiltin_UInt64_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12531____closed__13; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt64_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14425____closed__15() { +static lean_object* _init_l___regBuiltin_UInt64_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12531____closed__15() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_UInt64_reduceBNe____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301_), 9, 0); +x_1 = lean_alloc_closure((void*)(l_UInt64_reduceBNe____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511_), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_UInt64_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14425_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_UInt64_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12531_(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_UInt64_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14425____closed__10; -x_3 = l___regBuiltin_UInt64_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14425____closed__14; -x_4 = l___regBuiltin_UInt64_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14425____closed__15; +x_2 = l___regBuiltin_UInt64_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12531____closed__10; +x_3 = l___regBuiltin_UInt64_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12531____closed__14; +x_4 = l___regBuiltin_UInt64_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12531____closed__15; x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); return x_5; } } -LEAN_EXPORT lean_object* l___regBuiltin_UInt64_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14427_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_UInt64_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12533_(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____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9618____closed__1; -x_3 = l___regBuiltin_UInt64_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14425____closed__10; +x_2 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8051____closed__1; +x_3 = l___regBuiltin_UInt64_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12531____closed__10; x_4 = 1; -x_5 = l___regBuiltin_UInt64_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14425____closed__15; +x_5 = l___regBuiltin_UInt64_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12531____closed__15; 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_UInt64_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14429_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_UInt64_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12535_(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____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9620____closed__1; -x_3 = l___regBuiltin_UInt64_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14425____closed__10; +x_2 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8053____closed__1; +x_3 = l___regBuiltin_UInt64_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12531____closed__10; x_4 = 1; -x_5 = l___regBuiltin_UInt64_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14425____closed__15; +x_5 = l___regBuiltin_UInt64_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12531____closed__15; x_6 = l_Lean_Meta_Simp_addSimprocBuiltinAttrCore(x_2, x_3, x_4, x_5, x_1); return x_6; } @@ -39281,7 +35061,7 @@ lean_object* x_11; lean_object* x_12; lean_object* x_13; x_11 = l_Lean_Expr_appFn_x21(x_1); x_12 = l_Lean_Expr_appArg_x21(x_11); lean_dec(x_11); -x_13 = l_Nat_fromExpr_x3f(x_12, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_13 = l_Lean_Meta_getNatValue_x3f(x_12, x_6, x_7, x_8, x_9, x_10); if (lean_obj_tag(x_13) == 0) { lean_object* x_14; @@ -39296,7 +35076,7 @@ if (x_15 == 0) lean_object* x_16; lean_object* x_17; x_16 = lean_ctor_get(x_13, 0); lean_dec(x_16); -x_17 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_17 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; lean_ctor_set(x_13, 0, x_17); return x_13; } @@ -39306,7 +35086,7 @@ lean_object* x_18; lean_object* x_19; lean_object* x_20; x_18 = lean_ctor_get(x_13, 1); lean_inc(x_18); lean_dec(x_13); -x_19 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_19 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; x_20 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_20, 0, x_19); lean_ctor_set(x_20, 1, x_18); @@ -39319,7 +35099,7 @@ uint8_t x_21; x_21 = !lean_is_exclusive(x_13); if (x_21 == 0) { -lean_object* x_22; lean_object* x_23; uint64_t x_24; lean_object* x_25; lean_object* x_26; uint32_t x_27; uint8_t x_28; lean_object* x_29; lean_object* x_30; +lean_object* x_22; lean_object* x_23; uint64_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; uint32_t x_33; uint8_t x_34; lean_object* x_35; lean_object* x_36; x_22 = lean_ctor_get(x_13, 0); lean_dec(x_22); x_23 = lean_ctor_get(x_14, 0); @@ -39327,69 +35107,83 @@ lean_inc(x_23); lean_dec(x_14); x_24 = lean_uint64_of_nat(x_23); lean_dec(x_23); -x_25 = l_UInt64_toExprCore(x_24); -x_26 = lean_box(0); -x_27 = 0; -x_28 = 1; -x_29 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_29, 0, x_25); -lean_ctor_set(x_29, 1, x_26); -lean_ctor_set_uint32(x_29, sizeof(void*)*2, x_27); -lean_ctor_set_uint8(x_29, sizeof(void*)*2 + 4, x_28); -x_30 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_30, 0, x_29); -lean_ctor_set(x_13, 0, x_30); +x_25 = lean_uint64_to_nat(x_24); +x_26 = l_Lean_mkRawNatLit(x_25); +x_27 = l_UInt64_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511____lambda__1___closed__3; +lean_inc(x_26); +x_28 = l_Lean_Expr_app___override(x_27, x_26); +x_29 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__4; +x_30 = l_UInt64_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511____lambda__1___closed__1; +x_31 = l_Lean_mkApp3(x_29, x_30, x_26, x_28); +x_32 = lean_box(0); +x_33 = 0; +x_34 = 1; +x_35 = lean_alloc_ctor(0, 2, 5); +lean_ctor_set(x_35, 0, x_31); +lean_ctor_set(x_35, 1, x_32); +lean_ctor_set_uint32(x_35, sizeof(void*)*2, x_33); +lean_ctor_set_uint8(x_35, sizeof(void*)*2 + 4, x_34); +x_36 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_36, 0, x_35); +lean_ctor_set(x_13, 0, x_36); return x_13; } else { -lean_object* x_31; lean_object* x_32; uint64_t x_33; lean_object* x_34; lean_object* x_35; uint32_t x_36; uint8_t x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; -x_31 = lean_ctor_get(x_13, 1); -lean_inc(x_31); +lean_object* x_37; lean_object* x_38; uint64_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_object* x_47; uint32_t x_48; uint8_t x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; +x_37 = lean_ctor_get(x_13, 1); +lean_inc(x_37); lean_dec(x_13); -x_32 = lean_ctor_get(x_14, 0); -lean_inc(x_32); +x_38 = lean_ctor_get(x_14, 0); +lean_inc(x_38); lean_dec(x_14); -x_33 = lean_uint64_of_nat(x_32); -lean_dec(x_32); -x_34 = l_UInt64_toExprCore(x_33); -x_35 = lean_box(0); -x_36 = 0; -x_37 = 1; -x_38 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_38, 0, x_34); -lean_ctor_set(x_38, 1, x_35); -lean_ctor_set_uint32(x_38, sizeof(void*)*2, x_36); -lean_ctor_set_uint8(x_38, sizeof(void*)*2 + 4, x_37); -x_39 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_39, 0, x_38); -x_40 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_40, 0, x_39); -lean_ctor_set(x_40, 1, x_31); -return x_40; +x_39 = lean_uint64_of_nat(x_38); +lean_dec(x_38); +x_40 = lean_uint64_to_nat(x_39); +x_41 = l_Lean_mkRawNatLit(x_40); +x_42 = l_UInt64_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511____lambda__1___closed__3; +lean_inc(x_41); +x_43 = l_Lean_Expr_app___override(x_42, x_41); +x_44 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__4; +x_45 = l_UInt64_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511____lambda__1___closed__1; +x_46 = l_Lean_mkApp3(x_44, x_45, x_41, x_43); +x_47 = lean_box(0); +x_48 = 0; +x_49 = 1; +x_50 = lean_alloc_ctor(0, 2, 5); +lean_ctor_set(x_50, 0, x_46); +lean_ctor_set(x_50, 1, x_47); +lean_ctor_set_uint32(x_50, sizeof(void*)*2, x_48); +lean_ctor_set_uint8(x_50, sizeof(void*)*2 + 4, x_49); +x_51 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_51, 0, x_50); +x_52 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_52, 0, x_51); +lean_ctor_set(x_52, 1, x_37); +return x_52; } } } else { -uint8_t x_41; -x_41 = !lean_is_exclusive(x_13); -if (x_41 == 0) +uint8_t x_53; +x_53 = !lean_is_exclusive(x_13); +if (x_53 == 0) { return x_13; } else { -lean_object* x_42; lean_object* x_43; lean_object* x_44; -x_42 = lean_ctor_get(x_13, 0); -x_43 = lean_ctor_get(x_13, 1); -lean_inc(x_43); -lean_inc(x_42); +lean_object* x_54; lean_object* x_55; lean_object* x_56; +x_54 = lean_ctor_get(x_13, 0); +x_55 = lean_ctor_get(x_13, 1); +lean_inc(x_55); +lean_inc(x_54); lean_dec(x_13); -x_44 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_44, 0, x_42); -lean_ctor_set(x_44, 1, x_43); -return x_44; +x_56 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_56, 0, x_54); +lean_ctor_set(x_56, 1, x_55); +return x_56; } } } @@ -39422,7 +35216,7 @@ lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_13 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_13 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; x_14 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_14, 0, x_13); lean_ctor_set(x_14, 1, x_9); @@ -39433,7 +35227,6 @@ else lean_object* x_15; lean_object* x_16; x_15 = lean_box(0); x_16 = l_UInt64_reduceOfNatCore___lambda__1(x_1, x_15, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); -lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); @@ -39446,7 +35239,6 @@ _start: { lean_object* x_11; x_11 = l_UInt64_reduceOfNatCore___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_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); @@ -39454,17 +35246,17 @@ lean_dec(x_2); return x_11; } } -static lean_object* _init_l___regBuiltin_UInt64_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14545____closed__1() { +static lean_object* _init_l___regBuiltin_UInt64_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12646____closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_UInt64_fromExpr___closed__1; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__590; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__447; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt64_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14545____closed__2() { +static lean_object* _init_l___regBuiltin_UInt64_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12646____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -39476,37 +35268,37 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt64_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14545____closed__3() { +static lean_object* _init_l___regBuiltin_UInt64_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12646____closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt8_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10222____closed__3; -x_2 = l___regBuiltin_UInt64_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14545____closed__2; +x_1 = l___regBuiltin_UInt8_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8650____closed__3; +x_2 = l___regBuiltin_UInt64_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12646____closed__2; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt64_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14545____closed__4() { +static lean_object* _init_l___regBuiltin_UInt64_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12646____closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt64_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14545____closed__3; +x_1 = l___regBuiltin_UInt64_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12646____closed__3; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt64_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14545____closed__5() { +static lean_object* _init_l___regBuiltin_UInt64_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12646____closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt64_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14545____closed__4; +x_1 = l___regBuiltin_UInt64_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12646____closed__4; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt64_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14545____closed__6() { +static lean_object* _init_l___regBuiltin_UInt64_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12646____closed__6() { _start: { lean_object* x_1; @@ -39514,37 +35306,37 @@ x_1 = lean_alloc_closure((void*)(l_UInt64_reduceOfNatCore), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_UInt64_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14545_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_UInt64_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12646_(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_UInt64_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14545____closed__1; -x_3 = l___regBuiltin_UInt64_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14545____closed__5; -x_4 = l___regBuiltin_UInt64_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14545____closed__6; +x_2 = l___regBuiltin_UInt64_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12646____closed__1; +x_3 = l___regBuiltin_UInt64_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12646____closed__5; +x_4 = l___regBuiltin_UInt64_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12646____closed__6; x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); return x_5; } } -LEAN_EXPORT lean_object* l___regBuiltin_UInt64_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14547_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_UInt64_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12648_(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____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9618____closed__1; -x_3 = l___regBuiltin_UInt64_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14545____closed__1; +x_2 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8051____closed__1; +x_3 = l___regBuiltin_UInt64_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12646____closed__1; x_4 = 1; -x_5 = l___regBuiltin_UInt64_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14545____closed__6; +x_5 = l___regBuiltin_UInt64_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12646____closed__6; 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_UInt64_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14549_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_UInt64_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12650_(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____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9620____closed__1; -x_3 = l___regBuiltin_UInt64_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14545____closed__1; +x_2 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8053____closed__1; +x_3 = l___regBuiltin_UInt64_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12646____closed__1; x_4 = 1; -x_5 = l___regBuiltin_UInt64_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14545____closed__6; +x_5 = l___regBuiltin_UInt64_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12646____closed__6; x_6 = l_Lean_Meta_Simp_addSimprocBuiltinAttrCore(x_2, x_3, x_4, x_5, x_1); return x_6; } @@ -39555,6 +35347,7 @@ _start: lean_object* x_11; lean_object* x_12; x_11 = l_Lean_Expr_appArg_x21(x_1); x_12 = l_UInt64_fromExpr(x_11, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_11); if (lean_obj_tag(x_12) == 0) { lean_object* x_13; @@ -39569,7 +35362,7 @@ if (x_14 == 0) lean_object* x_15; lean_object* x_16; x_15 = lean_ctor_get(x_12, 0); lean_dec(x_15); -x_16 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_16 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; lean_ctor_set(x_12, 0, x_16); return x_12; } @@ -39579,7 +35372,7 @@ lean_object* x_17; lean_object* x_18; lean_object* x_19; x_17 = lean_ctor_get(x_12, 1); lean_inc(x_17); lean_dec(x_12); -x_18 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_18 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; x_19 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_19, 0, x_18); lean_ctor_set(x_19, 1, x_17); @@ -39598,7 +35391,7 @@ lean_dec(x_21); x_22 = lean_ctor_get(x_13, 0); lean_inc(x_22); lean_dec(x_13); -x_23 = lean_ctor_get_uint64(x_22, sizeof(void*)*1); +x_23 = lean_unbox_uint64(x_22); lean_dec(x_22); x_24 = lean_uint64_to_nat(x_23); x_25 = l_Lean_mkNatLit(x_24); @@ -39624,7 +35417,7 @@ lean_dec(x_12); x_32 = lean_ctor_get(x_13, 0); lean_inc(x_32); lean_dec(x_13); -x_33 = lean_ctor_get_uint64(x_32, sizeof(void*)*1); +x_33 = lean_unbox_uint64(x_32); lean_dec(x_32); x_34 = lean_uint64_to_nat(x_33); x_35 = l_Lean_mkNatLit(x_34); @@ -39696,7 +35489,7 @@ lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); -x_13 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_13 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; x_14 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_14, 0, x_13); lean_ctor_set(x_14, 1, x_9); @@ -39736,17 +35529,17 @@ lean_dec(x_1); return x_10; } } -static lean_object* _init_l___regBuiltin_UInt64_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14661____closed__1() { +static lean_object* _init_l___regBuiltin_UInt64_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12762____closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_UInt64_fromExpr___closed__1; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__602; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__473; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt64_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14661____closed__2() { +static lean_object* _init_l___regBuiltin_UInt64_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12762____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -39758,27 +35551,27 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt64_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14661____closed__3() { +static lean_object* _init_l___regBuiltin_UInt64_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12762____closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__67; -x_2 = l___regBuiltin_UInt64_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14661____closed__2; +x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__27; +x_2 = l___regBuiltin_UInt64_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12762____closed__2; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt64_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14661____closed__4() { +static lean_object* _init_l___regBuiltin_UInt64_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12762____closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt64_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14661____closed__3; +x_1 = l___regBuiltin_UInt64_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12762____closed__3; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt64_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14661____closed__5() { +static lean_object* _init_l___regBuiltin_UInt64_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12762____closed__5() { _start: { lean_object* x_1; @@ -39786,53 +35579,53 @@ x_1 = lean_alloc_closure((void*)(l_UInt64_reduceToNat___boxed), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_UInt64_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14661_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_UInt64_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12762_(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_UInt64_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14661____closed__1; -x_3 = l___regBuiltin_UInt64_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14661____closed__4; -x_4 = l___regBuiltin_UInt64_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14661____closed__5; +x_2 = l___regBuiltin_UInt64_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12762____closed__1; +x_3 = l___regBuiltin_UInt64_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12762____closed__4; +x_4 = l___regBuiltin_UInt64_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12762____closed__5; x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); return x_5; } } -LEAN_EXPORT lean_object* l___regBuiltin_UInt64_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14663_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_UInt64_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12764_(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____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9618____closed__1; -x_3 = l___regBuiltin_UInt64_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14661____closed__1; +x_2 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8051____closed__1; +x_3 = l___regBuiltin_UInt64_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12762____closed__1; x_4 = 1; -x_5 = l___regBuiltin_UInt64_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14661____closed__5; +x_5 = l___regBuiltin_UInt64_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12762____closed__5; 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_UInt64_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14665_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_UInt64_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12766_(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____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9620____closed__1; -x_3 = l___regBuiltin_UInt64_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14661____closed__1; +x_2 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8053____closed__1; +x_3 = l___regBuiltin_UInt64_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12762____closed__1; x_4 = 1; -x_5 = l___regBuiltin_UInt64_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14661____closed__5; +x_5 = l___regBuiltin_UInt64_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12762____closed__5; 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_UInt64_isValue____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301_(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_EXPORT lean_object* l_UInt64_isValue____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511_(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; uint8_t x_12; -x_10 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__125; +x_10 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__490; x_11 = lean_unsigned_to_nat(3u); x_12 = l_Lean_Expr_isAppOfArity(x_1, x_10, x_11); if (x_12 == 0) { lean_object* x_13; lean_object* x_14; lean_dec(x_1); -x_13 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; +x_13 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1; x_14 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_14, 0, x_13); lean_ctor_set(x_14, 1, x_9); @@ -39842,16 +35635,16 @@ else { lean_object* x_15; lean_object* x_16; x_15 = lean_box(0); -x_16 = l_UInt8_isValue____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1(x_1, x_15, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_16 = l_UInt8_isValue____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1(x_1, x_15, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); return x_16; } } } -LEAN_EXPORT lean_object* l_UInt64_isValue____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301____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_EXPORT lean_object* l_UInt64_isValue____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511____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_UInt64_isValue____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301_(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_10 = l_UInt64_isValue____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511_(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); @@ -39862,7228 +35655,177 @@ lean_dec(x_2); return x_10; } } -static lean_object* _init_l___regBuiltin_UInt64_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14737____closed__1() { +static lean_object* _init_l___regBuiltin_UInt64_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12838____closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_UInt64_fromExpr___closed__2; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__621; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__484; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt64_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14737____closed__2() { +static lean_object* _init_l___regBuiltin_UInt64_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12838____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt64_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14737____closed__1; -x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__2; +x_1 = l___regBuiltin_UInt64_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12838____closed__1; +x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__2; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt64_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14737____closed__3() { +static lean_object* _init_l___regBuiltin_UInt64_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12838____closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt64_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14737____closed__2; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__18; +x_1 = l___regBuiltin_UInt64_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12838____closed__2; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__12; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt64_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14737____closed__4() { +static lean_object* _init_l___regBuiltin_UInt64_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12838____closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt64_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14737____closed__3; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__90; +x_1 = l___regBuiltin_UInt64_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12838____closed__3; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__57; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt64_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14737____closed__5() { +static lean_object* _init_l___regBuiltin_UInt64_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12838____closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt64_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14737____closed__4; -x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__6; +x_1 = l___regBuiltin_UInt64_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12838____closed__4; +x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__6; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt64_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14737____closed__6() { +static lean_object* _init_l___regBuiltin_UInt64_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12838____closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt64_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14737____closed__5; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__91; +x_1 = l___regBuiltin_UInt64_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12838____closed__5; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__58; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt64_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14737____closed__7() { +static lean_object* _init_l___regBuiltin_UInt64_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12838____closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt64_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14737____closed__6; -x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__9; +x_1 = l___regBuiltin_UInt64_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12838____closed__6; +x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__9; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt64_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14737____closed__8() { +static lean_object* _init_l___regBuiltin_UInt64_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12838____closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt64_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14737____closed__7; -x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__11; +x_1 = l___regBuiltin_UInt64_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12838____closed__7; +x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__11; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt64_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14737____closed__9() { +static lean_object* _init_l___regBuiltin_UInt64_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12838____closed__9() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt64_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14737____closed__8; -x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__13; +x_1 = l___regBuiltin_UInt64_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12838____closed__8; +x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__13; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt64_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14737____closed__10() { +static lean_object* _init_l___regBuiltin_UInt64_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12838____closed__10() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt64_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14737____closed__9; -x_2 = lean_unsigned_to_nat(13301u); +x_1 = l___regBuiltin_UInt64_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12838____closed__9; +x_2 = lean_unsigned_to_nat(11511u); x_3 = l_Lean_Name_num___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt64_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14737____closed__11() { +static lean_object* _init_l___regBuiltin_UInt64_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12838____closed__11() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10414____closed__12; -x_2 = l___regBuiltin_UInt64_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13939____closed__2; +x_1 = l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8842____closed__12; +x_2 = l___regBuiltin_UInt64_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12045____closed__2; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt64_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14737____closed__12() { +static lean_object* _init_l___regBuiltin_UInt64_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12838____closed__12() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt64_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14737____closed__11; +x_1 = l___regBuiltin_UInt64_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12838____closed__11; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt64_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14737____closed__13() { +static lean_object* _init_l___regBuiltin_UInt64_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12838____closed__13() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt64_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14737____closed__12; +x_1 = l___regBuiltin_UInt64_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12838____closed__12; x_2 = lean_box(3); x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_UInt64_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14737____closed__14() { +static lean_object* _init_l___regBuiltin_UInt64_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12838____closed__14() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_UInt64_isValue____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301____boxed), 9, 0); +x_1 = lean_alloc_closure((void*)(l_UInt64_isValue____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511____boxed), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_UInt64_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14737_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_UInt64_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12838_(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_UInt64_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14737____closed__10; -x_3 = l___regBuiltin_UInt64_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14737____closed__13; -x_4 = l___regBuiltin_UInt64_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14737____closed__14; +x_2 = l___regBuiltin_UInt64_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12838____closed__10; +x_3 = l___regBuiltin_UInt64_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12838____closed__13; +x_4 = l___regBuiltin_UInt64_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12838____closed__14; x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); return x_5; } } -LEAN_EXPORT lean_object* l___regBuiltin_UInt64_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14739_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_UInt64_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12840_(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____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9620____closed__1; -x_3 = l___regBuiltin_UInt64_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14737____closed__10; +x_2 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8053____closed__1; +x_3 = l___regBuiltin_UInt64_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12838____closed__10; x_4 = 1; -x_5 = l___regBuiltin_UInt64_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14737____closed__14; -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_from_bytes("USize", 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; uint8_t x_12; lean_object* x_13; lean_object* x_14; -x_10 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__125; -x_11 = lean_unsigned_to_nat(3u); -x_12 = l_Lean_Expr_isAppOfArity(x_1, x_10, x_11); -if (x_12 == 0) -{ -lean_object* x_87; -x_87 = lean_box(0); -x_13 = x_87; -x_14 = x_9; -goto block_86; -} -else -{ -lean_object* x_88; -x_88 = l_UInt8_fromExpr___closed__3; -x_13 = x_88; -x_14 = x_9; -goto block_86; -} -block_86: -{ -if (lean_obj_tag(x_13) == 0) -{ -lean_object* x_15; lean_object* x_16; -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_1); -x_15 = lean_box(0); -x_16 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_16, 0, x_15); -lean_ctor_set(x_16, 1, x_14); -return x_16; -} -else -{ -lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; -lean_dec(x_13); -x_17 = l_Lean_Expr_appFn_x21(x_1); -lean_inc(x_17); -x_18 = l_Lean_Expr_appFn_x21(x_17); -x_19 = l_Lean_Expr_appArg_x21(x_18); -lean_inc(x_8); -lean_inc(x_7); -lean_inc(x_6); -lean_inc(x_5); -x_20 = lean_whnf(x_19, x_5, x_6, x_7, x_8, x_14); -if (lean_obj_tag(x_20) == 0) -{ -uint8_t x_21; -x_21 = !lean_is_exclusive(x_20); -if (x_21 == 0) -{ -lean_object* x_22; lean_object* x_23; lean_object* x_24; uint8_t x_25; -x_22 = lean_ctor_get(x_20, 0); -x_23 = lean_ctor_get(x_20, 1); -x_24 = l_USize_fromExpr___closed__2; -x_25 = l_Lean_Expr_isConstOf(x_22, x_24); -lean_dec(x_22); -if (x_25 == 0) -{ -lean_object* x_26; -lean_dec(x_18); -lean_dec(x_17); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -x_26 = lean_box(0); -lean_ctor_set(x_20, 0, x_26); -return x_20; -} -else -{ -lean_object* x_27; lean_object* x_28; -lean_free_object(x_20); -x_27 = l_Lean_Expr_appArg_x21(x_17); -lean_dec(x_17); -x_28 = l_Nat_fromExpr_x3f(x_27, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_23); -lean_dec(x_5); -if (lean_obj_tag(x_28) == 0) -{ -lean_object* x_29; -x_29 = lean_ctor_get(x_28, 0); -lean_inc(x_29); -if (lean_obj_tag(x_29) == 0) -{ -uint8_t x_30; -lean_dec(x_18); -x_30 = !lean_is_exclusive(x_28); -if (x_30 == 0) -{ -lean_object* x_31; lean_object* x_32; -x_31 = lean_ctor_get(x_28, 0); -lean_dec(x_31); -x_32 = lean_box(0); -lean_ctor_set(x_28, 0, x_32); -return x_28; -} -else -{ -lean_object* x_33; lean_object* x_34; lean_object* x_35; -x_33 = lean_ctor_get(x_28, 1); -lean_inc(x_33); -lean_dec(x_28); -x_34 = lean_box(0); -x_35 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_35, 0, x_34); -lean_ctor_set(x_35, 1, x_33); -return x_35; -} -} -else -{ -uint8_t x_36; -x_36 = !lean_is_exclusive(x_28); -if (x_36 == 0) -{ -lean_object* x_37; uint8_t x_38; -x_37 = lean_ctor_get(x_28, 0); -lean_dec(x_37); -x_38 = !lean_is_exclusive(x_29); -if (x_38 == 0) -{ -lean_object* x_39; size_t x_40; lean_object* x_41; -x_39 = lean_ctor_get(x_29, 0); -x_40 = lean_usize_of_nat(x_39); -lean_dec(x_39); -x_41 = lean_alloc_ctor(0, 1, sizeof(size_t)*1); -lean_ctor_set(x_41, 0, x_18); -lean_ctor_set_usize(x_41, 1, x_40); -lean_ctor_set(x_29, 0, x_41); -return x_28; -} -else -{ -lean_object* x_42; size_t x_43; lean_object* x_44; lean_object* x_45; -x_42 = lean_ctor_get(x_29, 0); -lean_inc(x_42); -lean_dec(x_29); -x_43 = lean_usize_of_nat(x_42); -lean_dec(x_42); -x_44 = lean_alloc_ctor(0, 1, sizeof(size_t)*1); -lean_ctor_set(x_44, 0, x_18); -lean_ctor_set_usize(x_44, 1, x_43); -x_45 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_45, 0, x_44); -lean_ctor_set(x_28, 0, x_45); -return x_28; -} -} -else -{ -lean_object* x_46; lean_object* x_47; lean_object* x_48; size_t x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; -x_46 = lean_ctor_get(x_28, 1); -lean_inc(x_46); -lean_dec(x_28); -x_47 = lean_ctor_get(x_29, 0); -lean_inc(x_47); -if (lean_is_exclusive(x_29)) { - lean_ctor_release(x_29, 0); - x_48 = x_29; -} else { - lean_dec_ref(x_29); - x_48 = lean_box(0); -} -x_49 = lean_usize_of_nat(x_47); -lean_dec(x_47); -x_50 = lean_alloc_ctor(0, 1, sizeof(size_t)*1); -lean_ctor_set(x_50, 0, x_18); -lean_ctor_set_usize(x_50, 1, x_49); -if (lean_is_scalar(x_48)) { - x_51 = lean_alloc_ctor(1, 1, 0); -} else { - x_51 = x_48; -} -lean_ctor_set(x_51, 0, x_50); -x_52 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_52, 0, x_51); -lean_ctor_set(x_52, 1, x_46); -return x_52; -} -} -} -else -{ -uint8_t x_53; -lean_dec(x_18); -x_53 = !lean_is_exclusive(x_28); -if (x_53 == 0) -{ -return x_28; -} -else -{ -lean_object* x_54; lean_object* x_55; lean_object* x_56; -x_54 = lean_ctor_get(x_28, 0); -x_55 = lean_ctor_get(x_28, 1); -lean_inc(x_55); -lean_inc(x_54); -lean_dec(x_28); -x_56 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_56, 0, x_54); -lean_ctor_set(x_56, 1, x_55); -return x_56; -} -} -} -} -else -{ -lean_object* x_57; lean_object* x_58; lean_object* x_59; uint8_t x_60; -x_57 = lean_ctor_get(x_20, 0); -x_58 = lean_ctor_get(x_20, 1); -lean_inc(x_58); -lean_inc(x_57); -lean_dec(x_20); -x_59 = l_USize_fromExpr___closed__2; -x_60 = l_Lean_Expr_isConstOf(x_57, x_59); -lean_dec(x_57); -if (x_60 == 0) -{ -lean_object* x_61; lean_object* x_62; -lean_dec(x_18); -lean_dec(x_17); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -x_61 = lean_box(0); -x_62 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_62, 0, x_61); -lean_ctor_set(x_62, 1, x_58); -return x_62; -} -else -{ -lean_object* x_63; lean_object* x_64; -x_63 = l_Lean_Expr_appArg_x21(x_17); -lean_dec(x_17); -x_64 = l_Nat_fromExpr_x3f(x_63, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_58); -lean_dec(x_5); -if (lean_obj_tag(x_64) == 0) -{ -lean_object* x_65; -x_65 = lean_ctor_get(x_64, 0); -lean_inc(x_65); -if (lean_obj_tag(x_65) == 0) -{ -lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; -lean_dec(x_18); -x_66 = lean_ctor_get(x_64, 1); -lean_inc(x_66); -if (lean_is_exclusive(x_64)) { - lean_ctor_release(x_64, 0); - lean_ctor_release(x_64, 1); - x_67 = x_64; -} else { - lean_dec_ref(x_64); - x_67 = lean_box(0); -} -x_68 = lean_box(0); -if (lean_is_scalar(x_67)) { - x_69 = lean_alloc_ctor(0, 2, 0); -} else { - x_69 = x_67; -} -lean_ctor_set(x_69, 0, x_68); -lean_ctor_set(x_69, 1, x_66); -return x_69; -} -else -{ -lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; size_t x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; -x_70 = lean_ctor_get(x_64, 1); -lean_inc(x_70); -if (lean_is_exclusive(x_64)) { - lean_ctor_release(x_64, 0); - lean_ctor_release(x_64, 1); - x_71 = x_64; -} else { - lean_dec_ref(x_64); - x_71 = lean_box(0); -} -x_72 = lean_ctor_get(x_65, 0); -lean_inc(x_72); -if (lean_is_exclusive(x_65)) { - lean_ctor_release(x_65, 0); - x_73 = x_65; -} else { - lean_dec_ref(x_65); - x_73 = lean_box(0); -} -x_74 = lean_usize_of_nat(x_72); -lean_dec(x_72); -x_75 = lean_alloc_ctor(0, 1, sizeof(size_t)*1); -lean_ctor_set(x_75, 0, x_18); -lean_ctor_set_usize(x_75, 1, x_74); -if (lean_is_scalar(x_73)) { - x_76 = lean_alloc_ctor(1, 1, 0); -} else { - x_76 = x_73; -} -lean_ctor_set(x_76, 0, x_75); -if (lean_is_scalar(x_71)) { - x_77 = lean_alloc_ctor(0, 2, 0); -} else { - x_77 = x_71; -} -lean_ctor_set(x_77, 0, x_76); -lean_ctor_set(x_77, 1, x_70); -return x_77; -} -} -else -{ -lean_object* x_78; lean_object* x_79; lean_object* x_80; lean_object* x_81; -lean_dec(x_18); -x_78 = lean_ctor_get(x_64, 0); -lean_inc(x_78); -x_79 = lean_ctor_get(x_64, 1); -lean_inc(x_79); -if (lean_is_exclusive(x_64)) { - lean_ctor_release(x_64, 0); - lean_ctor_release(x_64, 1); - x_80 = x_64; -} else { - lean_dec_ref(x_64); - x_80 = lean_box(0); -} -if (lean_is_scalar(x_80)) { - x_81 = lean_alloc_ctor(1, 2, 0); -} else { - x_81 = x_80; -} -lean_ctor_set(x_81, 0, x_78); -lean_ctor_set(x_81, 1, x_79); -return x_81; -} -} -} -} -else -{ -uint8_t x_82; -lean_dec(x_18); -lean_dec(x_17); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -x_82 = !lean_is_exclusive(x_20); -if (x_82 == 0) -{ -return x_20; -} -else -{ -lean_object* x_83; lean_object* x_84; lean_object* x_85; -x_83 = lean_ctor_get(x_20, 0); -x_84 = lean_ctor_get(x_20, 1); -lean_inc(x_84); -lean_inc(x_83); -lean_dec(x_20); -x_85 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_85, 0, x_83); -lean_ctor_set(x_85, 1, x_84); -return x_85; -} -} -} -} -} -} -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_toExprCore___closed__1() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l_USize_fromExpr___closed__2; -x_3 = l_Lean_Expr_const___override(x_2, x_1); -return x_3; -} -} -static lean_object* _init_l_USize_toExprCore___closed__2() { -_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__253; -x_3 = l_Lean_Name_mkStr2(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_USize_toExprCore___closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l_USize_toExprCore___closed__2; -x_3 = l_Lean_Expr_const___override(x_2, x_1); -return x_3; -} -} -LEAN_EXPORT lean_object* l_USize_toExprCore(size_t x_1) { -_start: -{ -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; -x_2 = lean_usize_to_nat(x_1); -x_3 = l_Lean_mkRawNatLit(x_2); -x_4 = l_USize_toExprCore___closed__3; -lean_inc(x_3); -x_5 = l_Lean_Expr_app___override(x_4, x_3); -x_6 = l_UInt8_toExprCore___closed__2; -x_7 = l_USize_toExprCore___closed__1; -x_8 = l_Lean_mkApp3(x_6, x_7, x_3, x_5); -return x_8; -} -} -LEAN_EXPORT lean_object* l_USize_toExprCore___boxed(lean_object* x_1) { -_start: -{ -size_t x_2; lean_object* x_3; -x_2 = lean_unbox_usize(x_1); -lean_dec(x_1); -x_3 = l_USize_toExprCore(x_2); -return x_3; -} -} -static lean_object* _init_l_USize_toExpr___closed__1() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l_USize_toExprCore___closed__2; -x_3 = l_Lean_Expr_const___override(x_2, x_1); -return x_3; -} -} -LEAN_EXPORT lean_object* l_USize_toExpr(lean_object* x_1) { -_start: -{ -size_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; -x_2 = lean_ctor_get_usize(x_1, 1); -x_3 = lean_usize_to_nat(x_2); -x_4 = l_Lean_mkRawNatLit(x_3); -x_5 = lean_ctor_get(x_1, 0); -lean_inc(x_5); -lean_dec(x_1); -x_6 = l_USize_toExpr___closed__1; -lean_inc(x_4); -x_7 = l_Lean_Expr_app___override(x_6, x_4); -x_8 = l_Lean_mkAppB(x_5, x_4, x_7); -return x_8; -} -} -LEAN_EXPORT lean_object* l_USize_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742____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, lean_object* x_11) { -_start: -{ -lean_object* x_12; lean_object* x_13; lean_object* x_14; -lean_inc(x_1); -x_12 = l_Lean_Expr_appFn_x21(x_1); -x_13 = l_Lean_Expr_appArg_x21(x_12); -lean_dec(x_12); -lean_inc(x_10); -lean_inc(x_9); -lean_inc(x_8); -lean_inc(x_7); -x_14 = l_USize_fromExpr(x_13, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); -if (lean_obj_tag(x_14) == 0) -{ -lean_object* x_15; -x_15 = lean_ctor_get(x_14, 0); -lean_inc(x_15); -if (lean_obj_tag(x_15) == 0) -{ -uint8_t x_16; -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_2); -lean_dec(x_1); -x_16 = !lean_is_exclusive(x_14); -if (x_16 == 0) -{ -lean_object* x_17; lean_object* x_18; -x_17 = lean_ctor_get(x_14, 0); -lean_dec(x_17); -x_18 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; -lean_ctor_set(x_14, 0, x_18); -return x_14; -} -else -{ -lean_object* x_19; lean_object* x_20; lean_object* x_21; -x_19 = lean_ctor_get(x_14, 1); -lean_inc(x_19); -lean_dec(x_14); -x_20 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; -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 -{ -lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; -x_22 = lean_ctor_get(x_14, 1); -lean_inc(x_22); -lean_dec(x_14); -x_23 = lean_ctor_get(x_15, 0); -lean_inc(x_23); -lean_dec(x_15); -x_24 = l_Lean_Expr_appArg_x21(x_1); -lean_dec(x_1); -x_25 = l_USize_fromExpr(x_24, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_22); -if (lean_obj_tag(x_25) == 0) -{ -lean_object* x_26; -x_26 = lean_ctor_get(x_25, 0); -lean_inc(x_26); -if (lean_obj_tag(x_26) == 0) -{ -uint8_t x_27; -lean_dec(x_23); -lean_dec(x_2); -x_27 = !lean_is_exclusive(x_25); -if (x_27 == 0) -{ -lean_object* x_28; lean_object* x_29; -x_28 = lean_ctor_get(x_25, 0); -lean_dec(x_28); -x_29 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; -lean_ctor_set(x_25, 0, x_29); -return x_25; -} -else -{ -lean_object* x_30; lean_object* x_31; lean_object* x_32; -x_30 = lean_ctor_get(x_25, 1); -lean_inc(x_30); -lean_dec(x_25); -x_31 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; -x_32 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_32, 0, x_31); -lean_ctor_set(x_32, 1, x_30); -return x_32; -} -} -else -{ -uint8_t x_33; -x_33 = !lean_is_exclusive(x_25); -if (x_33 == 0) -{ -lean_object* x_34; lean_object* x_35; uint8_t x_36; -x_34 = lean_ctor_get(x_25, 0); -lean_dec(x_34); -x_35 = lean_ctor_get(x_26, 0); -lean_inc(x_35); -lean_dec(x_26); -x_36 = !lean_is_exclusive(x_23); -if (x_36 == 0) -{ -size_t x_37; size_t x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; size_t x_42; lean_object* x_43; lean_object* x_44; uint32_t x_45; uint8_t x_46; lean_object* x_47; lean_object* x_48; -x_37 = lean_ctor_get_usize(x_23, 1); -x_38 = lean_ctor_get_usize(x_35, 1); -lean_dec(x_35); -x_39 = lean_box_usize(x_37); -x_40 = lean_box_usize(x_38); -x_41 = lean_apply_2(x_2, x_39, x_40); -x_42 = lean_unbox_usize(x_41); -lean_dec(x_41); -lean_ctor_set_usize(x_23, 1, x_42); -x_43 = l_USize_toExpr(x_23); -x_44 = lean_box(0); -x_45 = 0; -x_46 = 1; -x_47 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_47, 0, x_43); -lean_ctor_set(x_47, 1, x_44); -lean_ctor_set_uint32(x_47, sizeof(void*)*2, x_45); -lean_ctor_set_uint8(x_47, sizeof(void*)*2 + 4, x_46); -x_48 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_48, 0, x_47); -lean_ctor_set(x_25, 0, x_48); -return x_25; -} -else -{ -lean_object* x_49; size_t x_50; size_t x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; size_t x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; uint32_t x_59; uint8_t x_60; lean_object* x_61; lean_object* x_62; -x_49 = lean_ctor_get(x_23, 0); -x_50 = lean_ctor_get_usize(x_23, 1); -lean_inc(x_49); -lean_dec(x_23); -x_51 = lean_ctor_get_usize(x_35, 1); -lean_dec(x_35); -x_52 = lean_box_usize(x_50); -x_53 = lean_box_usize(x_51); -x_54 = lean_apply_2(x_2, x_52, x_53); -x_55 = lean_unbox_usize(x_54); -lean_dec(x_54); -x_56 = lean_alloc_ctor(0, 1, sizeof(size_t)*1); -lean_ctor_set(x_56, 0, x_49); -lean_ctor_set_usize(x_56, 1, x_55); -x_57 = l_USize_toExpr(x_56); -x_58 = lean_box(0); -x_59 = 0; -x_60 = 1; -x_61 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_61, 0, x_57); -lean_ctor_set(x_61, 1, x_58); -lean_ctor_set_uint32(x_61, sizeof(void*)*2, x_59); -lean_ctor_set_uint8(x_61, sizeof(void*)*2 + 4, x_60); -x_62 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_62, 0, x_61); -lean_ctor_set(x_25, 0, x_62); -return x_25; -} -} -else -{ -lean_object* x_63; lean_object* x_64; lean_object* x_65; size_t x_66; lean_object* x_67; size_t x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; size_t x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; uint32_t x_76; uint8_t x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; -x_63 = lean_ctor_get(x_25, 1); -lean_inc(x_63); -lean_dec(x_25); -x_64 = lean_ctor_get(x_26, 0); -lean_inc(x_64); -lean_dec(x_26); -x_65 = lean_ctor_get(x_23, 0); -lean_inc(x_65); -x_66 = lean_ctor_get_usize(x_23, 1); -if (lean_is_exclusive(x_23)) { - lean_ctor_release(x_23, 0); - x_67 = x_23; -} else { - lean_dec_ref(x_23); - x_67 = lean_box(0); -} -x_68 = lean_ctor_get_usize(x_64, 1); -lean_dec(x_64); -x_69 = lean_box_usize(x_66); -x_70 = lean_box_usize(x_68); -x_71 = lean_apply_2(x_2, x_69, x_70); -x_72 = lean_unbox_usize(x_71); -lean_dec(x_71); -if (lean_is_scalar(x_67)) { - x_73 = lean_alloc_ctor(0, 1, sizeof(size_t)*1); -} else { - x_73 = x_67; -} -lean_ctor_set(x_73, 0, x_65); -lean_ctor_set_usize(x_73, 1, x_72); -x_74 = l_USize_toExpr(x_73); -x_75 = lean_box(0); -x_76 = 0; -x_77 = 1; -x_78 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_78, 0, x_74); -lean_ctor_set(x_78, 1, x_75); -lean_ctor_set_uint32(x_78, sizeof(void*)*2, x_76); -lean_ctor_set_uint8(x_78, sizeof(void*)*2 + 4, x_77); -x_79 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_79, 0, 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_63); -return x_80; -} -} -} -else -{ -uint8_t x_81; -lean_dec(x_23); -lean_dec(x_2); -x_81 = !lean_is_exclusive(x_25); -if (x_81 == 0) -{ -return x_25; -} -else -{ -lean_object* x_82; lean_object* x_83; lean_object* x_84; -x_82 = lean_ctor_get(x_25, 0); -x_83 = lean_ctor_get(x_25, 1); -lean_inc(x_83); -lean_inc(x_82); -lean_dec(x_25); -x_84 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_84, 0, x_82); -lean_ctor_set(x_84, 1, x_83); -return x_84; -} -} -} -} -else -{ -uint8_t x_85; -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_2); -lean_dec(x_1); -x_85 = !lean_is_exclusive(x_14); -if (x_85 == 0) -{ -return x_14; -} -else -{ -lean_object* x_86; lean_object* x_87; lean_object* x_88; -x_86 = lean_ctor_get(x_14, 0); -x_87 = lean_ctor_get(x_14, 1); -lean_inc(x_87); -lean_inc(x_86); -lean_dec(x_14); -x_88 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_88, 0, x_86); -lean_ctor_set(x_88, 1, x_87); -return x_88; -} -} -} -} -LEAN_EXPORT lean_object* l_USize_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742_(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: -{ -uint8_t x_13; -x_13 = l_Lean_Expr_isAppOfArity(x_4, x_1, x_2); -lean_dec(x_1); -if (x_13 == 0) -{ -lean_object* x_14; lean_object* 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_5); -lean_dec(x_4); -lean_dec(x_3); -x_14 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____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_12); -return x_15; -} -else -{ -lean_object* x_16; lean_object* x_17; -x_16 = lean_box(0); -x_17 = l_USize_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742____lambda__1(x_4, x_3, x_16, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -return x_17; -} -} -} -LEAN_EXPORT lean_object* l_USize_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742____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, lean_object* x_11) { -_start: -{ -lean_object* x_12; -x_12 = l_USize_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742____lambda__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -return x_12; -} -} -LEAN_EXPORT lean_object* l_USize_reduceBinPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742____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, lean_object* x_11) { -_start: -{ -lean_object* x_12; lean_object* x_13; lean_object* x_14; -lean_inc(x_1); -x_12 = l_Lean_Expr_appFn_x21(x_1); -x_13 = l_Lean_Expr_appArg_x21(x_12); -lean_dec(x_12); -lean_inc(x_10); -lean_inc(x_9); -lean_inc(x_8); -lean_inc(x_7); -x_14 = l_USize_fromExpr(x_13, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); -if (lean_obj_tag(x_14) == 0) -{ -lean_object* x_15; -x_15 = lean_ctor_get(x_14, 0); -lean_inc(x_15); -if (lean_obj_tag(x_15) == 0) -{ -uint8_t x_16; -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_2); -lean_dec(x_1); -x_16 = !lean_is_exclusive(x_14); -if (x_16 == 0) -{ -lean_object* x_17; lean_object* x_18; -x_17 = lean_ctor_get(x_14, 0); -lean_dec(x_17); -x_18 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; -lean_ctor_set(x_14, 0, x_18); -return x_14; -} -else -{ -lean_object* x_19; lean_object* x_20; lean_object* x_21; -x_19 = lean_ctor_get(x_14, 1); -lean_inc(x_19); -lean_dec(x_14); -x_20 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; -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 -{ -lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; -x_22 = lean_ctor_get(x_14, 1); -lean_inc(x_22); -lean_dec(x_14); -x_23 = lean_ctor_get(x_15, 0); -lean_inc(x_23); -lean_dec(x_15); -x_24 = l_Lean_Expr_appArg_x21(x_1); -lean_inc(x_10); -lean_inc(x_9); -lean_inc(x_8); -lean_inc(x_7); -x_25 = l_USize_fromExpr(x_24, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_22); -if (lean_obj_tag(x_25) == 0) -{ -lean_object* x_26; -x_26 = lean_ctor_get(x_25, 0); -lean_inc(x_26); -if (lean_obj_tag(x_26) == 0) -{ -uint8_t x_27; -lean_dec(x_23); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_2); -lean_dec(x_1); -x_27 = !lean_is_exclusive(x_25); -if (x_27 == 0) -{ -lean_object* x_28; lean_object* x_29; -x_28 = lean_ctor_get(x_25, 0); -lean_dec(x_28); -x_29 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; -lean_ctor_set(x_25, 0, x_29); -return x_25; -} -else -{ -lean_object* x_30; lean_object* x_31; lean_object* x_32; -x_30 = lean_ctor_get(x_25, 1); -lean_inc(x_30); -lean_dec(x_25); -x_31 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; -x_32 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_32, 0, x_31); -lean_ctor_set(x_32, 1, x_30); -return x_32; -} -} -else -{ -lean_object* x_33; lean_object* x_34; size_t x_35; size_t x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; uint8_t x_40; lean_object* x_41; -x_33 = lean_ctor_get(x_25, 1); -lean_inc(x_33); -lean_dec(x_25); -x_34 = lean_ctor_get(x_26, 0); -lean_inc(x_34); -lean_dec(x_26); -x_35 = lean_ctor_get_usize(x_23, 1); -lean_dec(x_23); -x_36 = lean_ctor_get_usize(x_34, 1); -lean_dec(x_34); -x_37 = lean_box_usize(x_35); -x_38 = lean_box_usize(x_36); -x_39 = lean_apply_2(x_2, x_37, x_38); -x_40 = lean_unbox(x_39); -lean_dec(x_39); -x_41 = l_Lean_Meta_Simp_evalPropStep(x_1, x_40, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_33); -return x_41; -} -} -else -{ -uint8_t x_42; -lean_dec(x_23); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_2); -lean_dec(x_1); -x_42 = !lean_is_exclusive(x_25); -if (x_42 == 0) -{ -return x_25; -} -else -{ -lean_object* x_43; lean_object* x_44; lean_object* x_45; -x_43 = lean_ctor_get(x_25, 0); -x_44 = lean_ctor_get(x_25, 1); -lean_inc(x_44); -lean_inc(x_43); -lean_dec(x_25); -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 -{ -uint8_t x_46; -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_2); -lean_dec(x_1); -x_46 = !lean_is_exclusive(x_14); -if (x_46 == 0) -{ -return x_14; -} -else -{ -lean_object* x_47; lean_object* x_48; lean_object* x_49; -x_47 = lean_ctor_get(x_14, 0); -x_48 = lean_ctor_get(x_14, 1); -lean_inc(x_48); -lean_inc(x_47); -lean_dec(x_14); -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_EXPORT lean_object* l_USize_reduceBinPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742_(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: -{ -uint8_t x_13; -x_13 = l_Lean_Expr_isAppOfArity(x_4, x_1, x_2); -lean_dec(x_1); -if (x_13 == 0) -{ -lean_object* x_14; lean_object* 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_5); -lean_dec(x_4); -lean_dec(x_3); -x_14 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____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_12); -return x_15; -} -else -{ -lean_object* x_16; lean_object* x_17; -x_16 = lean_box(0); -x_17 = l_USize_reduceBinPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742____lambda__1(x_4, x_3, x_16, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -return x_17; -} -} -} -LEAN_EXPORT lean_object* l_USize_reduceBinPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742____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, lean_object* x_11) { -_start: -{ -lean_object* x_12; -x_12 = l_USize_reduceBinPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742____lambda__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -return x_12; -} -} -LEAN_EXPORT lean_object* l_USize_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742____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, lean_object* x_11) { -_start: -{ -lean_object* x_12; lean_object* x_13; lean_object* x_14; -lean_inc(x_1); -x_12 = l_Lean_Expr_appFn_x21(x_1); -x_13 = l_Lean_Expr_appArg_x21(x_12); -lean_dec(x_12); -lean_inc(x_10); -lean_inc(x_9); -lean_inc(x_8); -lean_inc(x_7); -x_14 = l_USize_fromExpr(x_13, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); -if (lean_obj_tag(x_14) == 0) -{ -lean_object* x_15; -x_15 = lean_ctor_get(x_14, 0); -lean_inc(x_15); -if (lean_obj_tag(x_15) == 0) -{ -uint8_t x_16; -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_2); -lean_dec(x_1); -x_16 = !lean_is_exclusive(x_14); -if (x_16 == 0) -{ -lean_object* x_17; lean_object* x_18; -x_17 = lean_ctor_get(x_14, 0); -lean_dec(x_17); -x_18 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; -lean_ctor_set(x_14, 0, x_18); -return x_14; -} -else -{ -lean_object* x_19; lean_object* x_20; lean_object* x_21; -x_19 = lean_ctor_get(x_14, 1); -lean_inc(x_19); -lean_dec(x_14); -x_20 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; -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 -{ -lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; -x_22 = lean_ctor_get(x_14, 1); -lean_inc(x_22); -lean_dec(x_14); -x_23 = lean_ctor_get(x_15, 0); -lean_inc(x_23); -lean_dec(x_15); -x_24 = l_Lean_Expr_appArg_x21(x_1); -lean_dec(x_1); -x_25 = l_USize_fromExpr(x_24, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_22); -if (lean_obj_tag(x_25) == 0) -{ -lean_object* x_26; -x_26 = lean_ctor_get(x_25, 0); -lean_inc(x_26); -if (lean_obj_tag(x_26) == 0) -{ -uint8_t x_27; -lean_dec(x_23); -lean_dec(x_2); -x_27 = !lean_is_exclusive(x_25); -if (x_27 == 0) -{ -lean_object* x_28; lean_object* x_29; -x_28 = lean_ctor_get(x_25, 0); -lean_dec(x_28); -x_29 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; -lean_ctor_set(x_25, 0, x_29); -return x_25; -} -else -{ -lean_object* x_30; lean_object* x_31; lean_object* x_32; -x_30 = lean_ctor_get(x_25, 1); -lean_inc(x_30); -lean_dec(x_25); -x_31 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; -x_32 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_32, 0, x_31); -lean_ctor_set(x_32, 1, x_30); -return x_32; -} -} -else -{ -uint8_t x_33; -x_33 = !lean_is_exclusive(x_25); -if (x_33 == 0) -{ -lean_object* x_34; lean_object* x_35; size_t x_36; size_t x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; uint8_t x_41; -x_34 = lean_ctor_get(x_25, 0); -lean_dec(x_34); -x_35 = lean_ctor_get(x_26, 0); -lean_inc(x_35); -lean_dec(x_26); -x_36 = lean_ctor_get_usize(x_23, 1); -lean_dec(x_23); -x_37 = lean_ctor_get_usize(x_35, 1); -lean_dec(x_35); -x_38 = lean_box_usize(x_36); -x_39 = lean_box_usize(x_37); -x_40 = lean_apply_2(x_2, x_38, x_39); -x_41 = lean_unbox(x_40); -lean_dec(x_40); -if (x_41 == 0) -{ -lean_object* x_42; -x_42 = l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__5; -lean_ctor_set(x_25, 0, x_42); -return x_25; -} -else -{ -lean_object* x_43; -x_43 = l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__10; -lean_ctor_set(x_25, 0, x_43); -return x_25; -} -} -else -{ -lean_object* x_44; lean_object* x_45; size_t x_46; size_t x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; uint8_t x_51; -x_44 = lean_ctor_get(x_25, 1); -lean_inc(x_44); -lean_dec(x_25); -x_45 = lean_ctor_get(x_26, 0); -lean_inc(x_45); -lean_dec(x_26); -x_46 = lean_ctor_get_usize(x_23, 1); -lean_dec(x_23); -x_47 = lean_ctor_get_usize(x_45, 1); -lean_dec(x_45); -x_48 = lean_box_usize(x_46); -x_49 = lean_box_usize(x_47); -x_50 = lean_apply_2(x_2, x_48, x_49); -x_51 = lean_unbox(x_50); -lean_dec(x_50); -if (x_51 == 0) -{ -lean_object* x_52; lean_object* x_53; -x_52 = l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__5; -x_53 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_53, 0, x_52); -lean_ctor_set(x_53, 1, x_44); -return x_53; -} -else -{ -lean_object* x_54; lean_object* x_55; -x_54 = l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__10; -x_55 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_55, 0, x_54); -lean_ctor_set(x_55, 1, x_44); -return x_55; -} -} -} -} -else -{ -uint8_t x_56; -lean_dec(x_23); -lean_dec(x_2); -x_56 = !lean_is_exclusive(x_25); -if (x_56 == 0) -{ -return x_25; -} -else -{ -lean_object* x_57; lean_object* x_58; lean_object* x_59; -x_57 = lean_ctor_get(x_25, 0); -x_58 = lean_ctor_get(x_25, 1); -lean_inc(x_58); -lean_inc(x_57); -lean_dec(x_25); -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_60; -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_2); -lean_dec(x_1); -x_60 = !lean_is_exclusive(x_14); -if (x_60 == 0) -{ -return x_14; -} -else -{ -lean_object* x_61; lean_object* x_62; lean_object* x_63; -x_61 = lean_ctor_get(x_14, 0); -x_62 = lean_ctor_get(x_14, 1); -lean_inc(x_62); -lean_inc(x_61); -lean_dec(x_14); -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; -} -} -} -} -LEAN_EXPORT lean_object* l_USize_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742_(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: -{ -uint8_t x_13; -x_13 = l_Lean_Expr_isAppOfArity(x_4, x_1, x_2); -lean_dec(x_1); -if (x_13 == 0) -{ -lean_object* x_14; lean_object* 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_5); -lean_dec(x_4); -lean_dec(x_3); -x_14 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____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_12); -return x_15; -} -else -{ -lean_object* x_16; lean_object* x_17; -x_16 = lean_box(0); -x_17 = l_USize_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742____lambda__1(x_4, x_3, x_16, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -return x_17; -} -} -} -LEAN_EXPORT lean_object* l_USize_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742____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, lean_object* x_11) { -_start: -{ -lean_object* x_12; -x_12 = l_USize_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742____lambda__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -return x_12; -} -} -LEAN_EXPORT lean_object* l_USize_reduceAdd___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; -lean_inc(x_1); -x_11 = l_Lean_Expr_appFn_x21(x_1); -x_12 = l_Lean_Expr_appArg_x21(x_11); -lean_dec(x_11); -lean_inc(x_9); -lean_inc(x_8); -lean_inc(x_7); -lean_inc(x_6); -x_13 = l_USize_fromExpr(x_12, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -if (lean_obj_tag(x_13) == 0) -{ -lean_object* x_14; -x_14 = lean_ctor_get(x_13, 0); -lean_inc(x_14); -if (lean_obj_tag(x_14) == 0) -{ -uint8_t x_15; -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_1); -x_15 = !lean_is_exclusive(x_13); -if (x_15 == 0) -{ -lean_object* x_16; lean_object* x_17; -x_16 = lean_ctor_get(x_13, 0); -lean_dec(x_16); -x_17 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; -lean_ctor_set(x_13, 0, x_17); -return x_13; -} -else -{ -lean_object* x_18; lean_object* x_19; lean_object* x_20; -x_18 = lean_ctor_get(x_13, 1); -lean_inc(x_18); -lean_dec(x_13); -x_19 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; -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 -{ -lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; -x_21 = lean_ctor_get(x_13, 1); -lean_inc(x_21); -lean_dec(x_13); -x_22 = lean_ctor_get(x_14, 0); -lean_inc(x_22); -lean_dec(x_14); -x_23 = l_Lean_Expr_appArg_x21(x_1); -lean_dec(x_1); -x_24 = l_USize_fromExpr(x_23, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_21); -if (lean_obj_tag(x_24) == 0) -{ -lean_object* x_25; -x_25 = lean_ctor_get(x_24, 0); -lean_inc(x_25); -if (lean_obj_tag(x_25) == 0) -{ -uint8_t x_26; -lean_dec(x_22); -x_26 = !lean_is_exclusive(x_24); -if (x_26 == 0) -{ -lean_object* x_27; lean_object* x_28; -x_27 = lean_ctor_get(x_24, 0); -lean_dec(x_27); -x_28 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; -lean_ctor_set(x_24, 0, x_28); -return x_24; -} -else -{ -lean_object* x_29; lean_object* x_30; lean_object* x_31; -x_29 = lean_ctor_get(x_24, 1); -lean_inc(x_29); -lean_dec(x_24); -x_30 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; -x_31 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_31, 0, x_30); -lean_ctor_set(x_31, 1, x_29); -return x_31; -} -} -else -{ -uint8_t x_32; -x_32 = !lean_is_exclusive(x_24); -if (x_32 == 0) -{ -lean_object* x_33; lean_object* x_34; uint8_t x_35; -x_33 = lean_ctor_get(x_24, 0); -lean_dec(x_33); -x_34 = lean_ctor_get(x_25, 0); -lean_inc(x_34); -lean_dec(x_25); -x_35 = !lean_is_exclusive(x_22); -if (x_35 == 0) -{ -size_t x_36; size_t x_37; size_t x_38; lean_object* x_39; lean_object* x_40; uint32_t x_41; uint8_t x_42; lean_object* x_43; lean_object* x_44; -x_36 = lean_ctor_get_usize(x_22, 1); -x_37 = lean_ctor_get_usize(x_34, 1); -lean_dec(x_34); -x_38 = lean_usize_add(x_36, x_37); -lean_ctor_set_usize(x_22, 1, x_38); -x_39 = l_USize_toExpr(x_22); -x_40 = lean_box(0); -x_41 = 0; -x_42 = 1; -x_43 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_43, 0, x_39); -lean_ctor_set(x_43, 1, x_40); -lean_ctor_set_uint32(x_43, sizeof(void*)*2, x_41); -lean_ctor_set_uint8(x_43, sizeof(void*)*2 + 4, x_42); -x_44 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_44, 0, x_43); -lean_ctor_set(x_24, 0, x_44); -return x_24; -} -else -{ -lean_object* x_45; size_t x_46; size_t x_47; size_t x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; uint32_t x_52; uint8_t x_53; lean_object* x_54; lean_object* x_55; -x_45 = lean_ctor_get(x_22, 0); -x_46 = lean_ctor_get_usize(x_22, 1); -lean_inc(x_45); -lean_dec(x_22); -x_47 = lean_ctor_get_usize(x_34, 1); -lean_dec(x_34); -x_48 = lean_usize_add(x_46, x_47); -x_49 = lean_alloc_ctor(0, 1, sizeof(size_t)*1); -lean_ctor_set(x_49, 0, x_45); -lean_ctor_set_usize(x_49, 1, x_48); -x_50 = l_USize_toExpr(x_49); -x_51 = lean_box(0); -x_52 = 0; -x_53 = 1; -x_54 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_54, 0, x_50); -lean_ctor_set(x_54, 1, x_51); -lean_ctor_set_uint32(x_54, sizeof(void*)*2, x_52); -lean_ctor_set_uint8(x_54, sizeof(void*)*2 + 4, x_53); -x_55 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_55, 0, x_54); -lean_ctor_set(x_24, 0, x_55); -return x_24; -} -} -else -{ -lean_object* x_56; lean_object* x_57; lean_object* x_58; size_t x_59; lean_object* x_60; size_t x_61; size_t x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; uint32_t x_66; uint8_t x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; -x_56 = lean_ctor_get(x_24, 1); -lean_inc(x_56); -lean_dec(x_24); -x_57 = lean_ctor_get(x_25, 0); -lean_inc(x_57); -lean_dec(x_25); -x_58 = lean_ctor_get(x_22, 0); -lean_inc(x_58); -x_59 = lean_ctor_get_usize(x_22, 1); -if (lean_is_exclusive(x_22)) { - lean_ctor_release(x_22, 0); - x_60 = x_22; -} else { - lean_dec_ref(x_22); - x_60 = lean_box(0); -} -x_61 = lean_ctor_get_usize(x_57, 1); -lean_dec(x_57); -x_62 = lean_usize_add(x_59, x_61); -if (lean_is_scalar(x_60)) { - x_63 = lean_alloc_ctor(0, 1, sizeof(size_t)*1); -} else { - x_63 = x_60; -} -lean_ctor_set(x_63, 0, x_58); -lean_ctor_set_usize(x_63, 1, x_62); -x_64 = l_USize_toExpr(x_63); -x_65 = lean_box(0); -x_66 = 0; -x_67 = 1; -x_68 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_68, 0, x_64); -lean_ctor_set(x_68, 1, x_65); -lean_ctor_set_uint32(x_68, sizeof(void*)*2, x_66); -lean_ctor_set_uint8(x_68, sizeof(void*)*2 + 4, x_67); -x_69 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_69, 0, x_68); -x_70 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_70, 0, x_69); -lean_ctor_set(x_70, 1, x_56); -return x_70; -} -} -} -else -{ -uint8_t x_71; -lean_dec(x_22); -x_71 = !lean_is_exclusive(x_24); -if (x_71 == 0) -{ -return x_24; -} -else -{ -lean_object* x_72; lean_object* x_73; lean_object* x_74; -x_72 = lean_ctor_get(x_24, 0); -x_73 = lean_ctor_get(x_24, 1); -lean_inc(x_73); -lean_inc(x_72); -lean_dec(x_24); -x_74 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_74, 0, x_72); -lean_ctor_set(x_74, 1, x_73); -return x_74; -} -} -} -} -else -{ -uint8_t x_75; -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_1); -x_75 = !lean_is_exclusive(x_13); -if (x_75 == 0) -{ -return x_13; -} -else -{ -lean_object* x_76; lean_object* x_77; lean_object* x_78; -x_76 = lean_ctor_get(x_13, 0); -x_77 = lean_ctor_get(x_13, 1); -lean_inc(x_77); -lean_inc(x_76); -lean_dec(x_13); -x_78 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_78, 0, x_76); -lean_ctor_set(x_78, 1, x_77); -return x_78; -} -} -} -} -LEAN_EXPORT lean_object* l_USize_reduceAdd(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; uint8_t x_12; -x_10 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__425; -x_11 = lean_unsigned_to_nat(6u); -x_12 = l_Lean_Expr_isAppOfArity(x_1, x_10, x_11); -if (x_12 == 0) -{ -lean_object* x_13; lean_object* x_14; -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); -x_13 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; -x_14 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_14, 0, x_13); -lean_ctor_set(x_14, 1, x_9); -return x_14; -} -else -{ -lean_object* x_15; lean_object* x_16; -x_15 = lean_box(0); -x_16 = l_USize_reduceAdd___lambda__1(x_1, x_15, 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_16; -} -} -} -LEAN_EXPORT lean_object* l_USize_reduceAdd___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_reduceAdd___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; -} -} -static lean_object* _init_l___regBuiltin_USize_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15380____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__410; -x_3 = l_Lean_Name_mkStr2(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___regBuiltin_USize_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15380____closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_USize_fromExpr___closed__2; -x_2 = lean_unsigned_to_nat(0u); -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_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15380____closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9616____closed__5; -x_2 = l___regBuiltin_USize_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15380____closed__2; -x_3 = lean_array_push(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___regBuiltin_USize_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15380____closed__4() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_USize_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15380____closed__3; -x_2 = l___regBuiltin_USize_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15380____closed__2; -x_3 = lean_array_push(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___regBuiltin_USize_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15380____closed__5() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_USize_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15380____closed__4; -x_2 = l___regBuiltin_USize_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15380____closed__2; -x_3 = lean_array_push(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___regBuiltin_USize_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15380____closed__6() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_USize_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15380____closed__5; -x_2 = lean_box(3); -x_3 = lean_array_push(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___regBuiltin_USize_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15380____closed__7() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_USize_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15380____closed__6; -x_2 = lean_box(3); -x_3 = lean_array_push(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___regBuiltin_USize_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15380____closed__8() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_USize_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15380____closed__7; -x_2 = lean_box(3); -x_3 = lean_array_push(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___regBuiltin_USize_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15380____closed__9() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_USize_reduceAdd), 9, 0); -return x_1; -} -} -LEAN_EXPORT lean_object* l___regBuiltin_USize_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15380_(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_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15380____closed__1; -x_3 = l___regBuiltin_USize_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15380____closed__8; -x_4 = l___regBuiltin_USize_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15380____closed__9; -x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); -return x_5; -} -} -LEAN_EXPORT lean_object* l___regBuiltin_USize_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15382_(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____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9618____closed__1; -x_3 = l___regBuiltin_USize_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15380____closed__1; -x_4 = 1; -x_5 = l___regBuiltin_USize_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15380____closed__9; -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_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15384_(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____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9620____closed__1; -x_3 = l___regBuiltin_USize_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15380____closed__1; -x_4 = 1; -x_5 = l___regBuiltin_USize_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15380____closed__9; -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_USize_reduceMul___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; -lean_inc(x_1); -x_11 = l_Lean_Expr_appFn_x21(x_1); -x_12 = l_Lean_Expr_appArg_x21(x_11); -lean_dec(x_11); -lean_inc(x_9); -lean_inc(x_8); -lean_inc(x_7); -lean_inc(x_6); -x_13 = l_USize_fromExpr(x_12, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -if (lean_obj_tag(x_13) == 0) -{ -lean_object* x_14; -x_14 = lean_ctor_get(x_13, 0); -lean_inc(x_14); -if (lean_obj_tag(x_14) == 0) -{ -uint8_t x_15; -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_1); -x_15 = !lean_is_exclusive(x_13); -if (x_15 == 0) -{ -lean_object* x_16; lean_object* x_17; -x_16 = lean_ctor_get(x_13, 0); -lean_dec(x_16); -x_17 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; -lean_ctor_set(x_13, 0, x_17); -return x_13; -} -else -{ -lean_object* x_18; lean_object* x_19; lean_object* x_20; -x_18 = lean_ctor_get(x_13, 1); -lean_inc(x_18); -lean_dec(x_13); -x_19 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; -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 -{ -lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; -x_21 = lean_ctor_get(x_13, 1); -lean_inc(x_21); -lean_dec(x_13); -x_22 = lean_ctor_get(x_14, 0); -lean_inc(x_22); -lean_dec(x_14); -x_23 = l_Lean_Expr_appArg_x21(x_1); -lean_dec(x_1); -x_24 = l_USize_fromExpr(x_23, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_21); -if (lean_obj_tag(x_24) == 0) -{ -lean_object* x_25; -x_25 = lean_ctor_get(x_24, 0); -lean_inc(x_25); -if (lean_obj_tag(x_25) == 0) -{ -uint8_t x_26; -lean_dec(x_22); -x_26 = !lean_is_exclusive(x_24); -if (x_26 == 0) -{ -lean_object* x_27; lean_object* x_28; -x_27 = lean_ctor_get(x_24, 0); -lean_dec(x_27); -x_28 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; -lean_ctor_set(x_24, 0, x_28); -return x_24; -} -else -{ -lean_object* x_29; lean_object* x_30; lean_object* x_31; -x_29 = lean_ctor_get(x_24, 1); -lean_inc(x_29); -lean_dec(x_24); -x_30 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; -x_31 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_31, 0, x_30); -lean_ctor_set(x_31, 1, x_29); -return x_31; -} -} -else -{ -uint8_t x_32; -x_32 = !lean_is_exclusive(x_24); -if (x_32 == 0) -{ -lean_object* x_33; lean_object* x_34; uint8_t x_35; -x_33 = lean_ctor_get(x_24, 0); -lean_dec(x_33); -x_34 = lean_ctor_get(x_25, 0); -lean_inc(x_34); -lean_dec(x_25); -x_35 = !lean_is_exclusive(x_22); -if (x_35 == 0) -{ -size_t x_36; size_t x_37; size_t x_38; lean_object* x_39; lean_object* x_40; uint32_t x_41; uint8_t x_42; lean_object* x_43; lean_object* x_44; -x_36 = lean_ctor_get_usize(x_22, 1); -x_37 = lean_ctor_get_usize(x_34, 1); -lean_dec(x_34); -x_38 = lean_usize_mul(x_36, x_37); -lean_ctor_set_usize(x_22, 1, x_38); -x_39 = l_USize_toExpr(x_22); -x_40 = lean_box(0); -x_41 = 0; -x_42 = 1; -x_43 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_43, 0, x_39); -lean_ctor_set(x_43, 1, x_40); -lean_ctor_set_uint32(x_43, sizeof(void*)*2, x_41); -lean_ctor_set_uint8(x_43, sizeof(void*)*2 + 4, x_42); -x_44 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_44, 0, x_43); -lean_ctor_set(x_24, 0, x_44); -return x_24; -} -else -{ -lean_object* x_45; size_t x_46; size_t x_47; size_t x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; uint32_t x_52; uint8_t x_53; lean_object* x_54; lean_object* x_55; -x_45 = lean_ctor_get(x_22, 0); -x_46 = lean_ctor_get_usize(x_22, 1); -lean_inc(x_45); -lean_dec(x_22); -x_47 = lean_ctor_get_usize(x_34, 1); -lean_dec(x_34); -x_48 = lean_usize_mul(x_46, x_47); -x_49 = lean_alloc_ctor(0, 1, sizeof(size_t)*1); -lean_ctor_set(x_49, 0, x_45); -lean_ctor_set_usize(x_49, 1, x_48); -x_50 = l_USize_toExpr(x_49); -x_51 = lean_box(0); -x_52 = 0; -x_53 = 1; -x_54 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_54, 0, x_50); -lean_ctor_set(x_54, 1, x_51); -lean_ctor_set_uint32(x_54, sizeof(void*)*2, x_52); -lean_ctor_set_uint8(x_54, sizeof(void*)*2 + 4, x_53); -x_55 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_55, 0, x_54); -lean_ctor_set(x_24, 0, x_55); -return x_24; -} -} -else -{ -lean_object* x_56; lean_object* x_57; lean_object* x_58; size_t x_59; lean_object* x_60; size_t x_61; size_t x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; uint32_t x_66; uint8_t x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; -x_56 = lean_ctor_get(x_24, 1); -lean_inc(x_56); -lean_dec(x_24); -x_57 = lean_ctor_get(x_25, 0); -lean_inc(x_57); -lean_dec(x_25); -x_58 = lean_ctor_get(x_22, 0); -lean_inc(x_58); -x_59 = lean_ctor_get_usize(x_22, 1); -if (lean_is_exclusive(x_22)) { - lean_ctor_release(x_22, 0); - x_60 = x_22; -} else { - lean_dec_ref(x_22); - x_60 = lean_box(0); -} -x_61 = lean_ctor_get_usize(x_57, 1); -lean_dec(x_57); -x_62 = lean_usize_mul(x_59, x_61); -if (lean_is_scalar(x_60)) { - x_63 = lean_alloc_ctor(0, 1, sizeof(size_t)*1); -} else { - x_63 = x_60; -} -lean_ctor_set(x_63, 0, x_58); -lean_ctor_set_usize(x_63, 1, x_62); -x_64 = l_USize_toExpr(x_63); -x_65 = lean_box(0); -x_66 = 0; -x_67 = 1; -x_68 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_68, 0, x_64); -lean_ctor_set(x_68, 1, x_65); -lean_ctor_set_uint32(x_68, sizeof(void*)*2, x_66); -lean_ctor_set_uint8(x_68, sizeof(void*)*2 + 4, x_67); -x_69 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_69, 0, x_68); -x_70 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_70, 0, x_69); -lean_ctor_set(x_70, 1, x_56); -return x_70; -} -} -} -else -{ -uint8_t x_71; -lean_dec(x_22); -x_71 = !lean_is_exclusive(x_24); -if (x_71 == 0) -{ -return x_24; -} -else -{ -lean_object* x_72; lean_object* x_73; lean_object* x_74; -x_72 = lean_ctor_get(x_24, 0); -x_73 = lean_ctor_get(x_24, 1); -lean_inc(x_73); -lean_inc(x_72); -lean_dec(x_24); -x_74 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_74, 0, x_72); -lean_ctor_set(x_74, 1, x_73); -return x_74; -} -} -} -} -else -{ -uint8_t x_75; -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_1); -x_75 = !lean_is_exclusive(x_13); -if (x_75 == 0) -{ -return x_13; -} -else -{ -lean_object* x_76; lean_object* x_77; lean_object* x_78; -x_76 = lean_ctor_get(x_13, 0); -x_77 = lean_ctor_get(x_13, 1); -lean_inc(x_77); -lean_inc(x_76); -lean_dec(x_13); -x_78 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_78, 0, x_76); -lean_ctor_set(x_78, 1, x_77); -return x_78; -} -} -} -} -LEAN_EXPORT lean_object* l_USize_reduceMul(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; uint8_t x_12; -x_10 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__443; -x_11 = lean_unsigned_to_nat(6u); -x_12 = l_Lean_Expr_isAppOfArity(x_1, x_10, x_11); -if (x_12 == 0) -{ -lean_object* x_13; lean_object* x_14; -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); -x_13 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; -x_14 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_14, 0, x_13); -lean_ctor_set(x_14, 1, x_9); -return x_14; -} -else -{ -lean_object* x_15; lean_object* x_16; -x_15 = lean_box(0); -x_16 = l_USize_reduceMul___lambda__1(x_1, x_15, 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_16; -} -} -} -LEAN_EXPORT lean_object* l_USize_reduceMul___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_reduceMul___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; -} -} -static lean_object* _init_l___regBuiltin_USize_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15420____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__433; -x_3 = l_Lean_Name_mkStr2(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___regBuiltin_USize_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15420____closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt8_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9656____closed__3; -x_2 = l___regBuiltin_USize_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15380____closed__2; -x_3 = lean_array_push(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___regBuiltin_USize_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15420____closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_USize_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15420____closed__2; -x_2 = l___regBuiltin_USize_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15380____closed__2; -x_3 = lean_array_push(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___regBuiltin_USize_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15420____closed__4() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_USize_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15420____closed__3; -x_2 = l___regBuiltin_USize_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15380____closed__2; -x_3 = lean_array_push(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___regBuiltin_USize_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15420____closed__5() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_USize_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15420____closed__4; -x_2 = lean_box(3); -x_3 = lean_array_push(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___regBuiltin_USize_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15420____closed__6() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_USize_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15420____closed__5; -x_2 = lean_box(3); -x_3 = lean_array_push(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___regBuiltin_USize_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15420____closed__7() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_USize_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15420____closed__6; -x_2 = lean_box(3); -x_3 = lean_array_push(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___regBuiltin_USize_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15420____closed__8() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_USize_reduceMul), 9, 0); -return x_1; -} -} -LEAN_EXPORT lean_object* l___regBuiltin_USize_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15420_(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_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15420____closed__1; -x_3 = l___regBuiltin_USize_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15420____closed__7; -x_4 = l___regBuiltin_USize_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15420____closed__8; -x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); -return x_5; -} -} -LEAN_EXPORT lean_object* l___regBuiltin_USize_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15422_(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____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9618____closed__1; -x_3 = l___regBuiltin_USize_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15420____closed__1; -x_4 = 1; -x_5 = l___regBuiltin_USize_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15420____closed__8; -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_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15424_(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____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9620____closed__1; -x_3 = l___regBuiltin_USize_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15420____closed__1; -x_4 = 1; -x_5 = l___regBuiltin_USize_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15420____closed__8; -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_USize_reduceSub___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; -lean_inc(x_1); -x_11 = l_Lean_Expr_appFn_x21(x_1); -x_12 = l_Lean_Expr_appArg_x21(x_11); -lean_dec(x_11); -lean_inc(x_9); -lean_inc(x_8); -lean_inc(x_7); -lean_inc(x_6); -x_13 = l_USize_fromExpr(x_12, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -if (lean_obj_tag(x_13) == 0) -{ -lean_object* x_14; -x_14 = lean_ctor_get(x_13, 0); -lean_inc(x_14); -if (lean_obj_tag(x_14) == 0) -{ -uint8_t x_15; -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_1); -x_15 = !lean_is_exclusive(x_13); -if (x_15 == 0) -{ -lean_object* x_16; lean_object* x_17; -x_16 = lean_ctor_get(x_13, 0); -lean_dec(x_16); -x_17 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; -lean_ctor_set(x_13, 0, x_17); -return x_13; -} -else -{ -lean_object* x_18; lean_object* x_19; lean_object* x_20; -x_18 = lean_ctor_get(x_13, 1); -lean_inc(x_18); -lean_dec(x_13); -x_19 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; -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 -{ -lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; -x_21 = lean_ctor_get(x_13, 1); -lean_inc(x_21); -lean_dec(x_13); -x_22 = lean_ctor_get(x_14, 0); -lean_inc(x_22); -lean_dec(x_14); -x_23 = l_Lean_Expr_appArg_x21(x_1); -lean_dec(x_1); -x_24 = l_USize_fromExpr(x_23, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_21); -if (lean_obj_tag(x_24) == 0) -{ -lean_object* x_25; -x_25 = lean_ctor_get(x_24, 0); -lean_inc(x_25); -if (lean_obj_tag(x_25) == 0) -{ -uint8_t x_26; -lean_dec(x_22); -x_26 = !lean_is_exclusive(x_24); -if (x_26 == 0) -{ -lean_object* x_27; lean_object* x_28; -x_27 = lean_ctor_get(x_24, 0); -lean_dec(x_27); -x_28 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; -lean_ctor_set(x_24, 0, x_28); -return x_24; -} -else -{ -lean_object* x_29; lean_object* x_30; lean_object* x_31; -x_29 = lean_ctor_get(x_24, 1); -lean_inc(x_29); -lean_dec(x_24); -x_30 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; -x_31 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_31, 0, x_30); -lean_ctor_set(x_31, 1, x_29); -return x_31; -} -} -else -{ -uint8_t x_32; -x_32 = !lean_is_exclusive(x_24); -if (x_32 == 0) -{ -lean_object* x_33; lean_object* x_34; uint8_t x_35; -x_33 = lean_ctor_get(x_24, 0); -lean_dec(x_33); -x_34 = lean_ctor_get(x_25, 0); -lean_inc(x_34); -lean_dec(x_25); -x_35 = !lean_is_exclusive(x_22); -if (x_35 == 0) -{ -size_t x_36; size_t x_37; size_t x_38; lean_object* x_39; lean_object* x_40; uint32_t x_41; uint8_t x_42; lean_object* x_43; lean_object* x_44; -x_36 = lean_ctor_get_usize(x_22, 1); -x_37 = lean_ctor_get_usize(x_34, 1); -lean_dec(x_34); -x_38 = lean_usize_sub(x_36, x_37); -lean_ctor_set_usize(x_22, 1, x_38); -x_39 = l_USize_toExpr(x_22); -x_40 = lean_box(0); -x_41 = 0; -x_42 = 1; -x_43 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_43, 0, x_39); -lean_ctor_set(x_43, 1, x_40); -lean_ctor_set_uint32(x_43, sizeof(void*)*2, x_41); -lean_ctor_set_uint8(x_43, sizeof(void*)*2 + 4, x_42); -x_44 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_44, 0, x_43); -lean_ctor_set(x_24, 0, x_44); -return x_24; -} -else -{ -lean_object* x_45; size_t x_46; size_t x_47; size_t x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; uint32_t x_52; uint8_t x_53; lean_object* x_54; lean_object* x_55; -x_45 = lean_ctor_get(x_22, 0); -x_46 = lean_ctor_get_usize(x_22, 1); -lean_inc(x_45); -lean_dec(x_22); -x_47 = lean_ctor_get_usize(x_34, 1); -lean_dec(x_34); -x_48 = lean_usize_sub(x_46, x_47); -x_49 = lean_alloc_ctor(0, 1, sizeof(size_t)*1); -lean_ctor_set(x_49, 0, x_45); -lean_ctor_set_usize(x_49, 1, x_48); -x_50 = l_USize_toExpr(x_49); -x_51 = lean_box(0); -x_52 = 0; -x_53 = 1; -x_54 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_54, 0, x_50); -lean_ctor_set(x_54, 1, x_51); -lean_ctor_set_uint32(x_54, sizeof(void*)*2, x_52); -lean_ctor_set_uint8(x_54, sizeof(void*)*2 + 4, x_53); -x_55 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_55, 0, x_54); -lean_ctor_set(x_24, 0, x_55); -return x_24; -} -} -else -{ -lean_object* x_56; lean_object* x_57; lean_object* x_58; size_t x_59; lean_object* x_60; size_t x_61; size_t x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; uint32_t x_66; uint8_t x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; -x_56 = lean_ctor_get(x_24, 1); -lean_inc(x_56); -lean_dec(x_24); -x_57 = lean_ctor_get(x_25, 0); -lean_inc(x_57); -lean_dec(x_25); -x_58 = lean_ctor_get(x_22, 0); -lean_inc(x_58); -x_59 = lean_ctor_get_usize(x_22, 1); -if (lean_is_exclusive(x_22)) { - lean_ctor_release(x_22, 0); - x_60 = x_22; -} else { - lean_dec_ref(x_22); - x_60 = lean_box(0); -} -x_61 = lean_ctor_get_usize(x_57, 1); -lean_dec(x_57); -x_62 = lean_usize_sub(x_59, x_61); -if (lean_is_scalar(x_60)) { - x_63 = lean_alloc_ctor(0, 1, sizeof(size_t)*1); -} else { - x_63 = x_60; -} -lean_ctor_set(x_63, 0, x_58); -lean_ctor_set_usize(x_63, 1, x_62); -x_64 = l_USize_toExpr(x_63); -x_65 = lean_box(0); -x_66 = 0; -x_67 = 1; -x_68 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_68, 0, x_64); -lean_ctor_set(x_68, 1, x_65); -lean_ctor_set_uint32(x_68, sizeof(void*)*2, x_66); -lean_ctor_set_uint8(x_68, sizeof(void*)*2 + 4, x_67); -x_69 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_69, 0, x_68); -x_70 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_70, 0, x_69); -lean_ctor_set(x_70, 1, x_56); -return x_70; -} -} -} -else -{ -uint8_t x_71; -lean_dec(x_22); -x_71 = !lean_is_exclusive(x_24); -if (x_71 == 0) -{ -return x_24; -} -else -{ -lean_object* x_72; lean_object* x_73; lean_object* x_74; -x_72 = lean_ctor_get(x_24, 0); -x_73 = lean_ctor_get(x_24, 1); -lean_inc(x_73); -lean_inc(x_72); -lean_dec(x_24); -x_74 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_74, 0, x_72); -lean_ctor_set(x_74, 1, x_73); -return x_74; -} -} -} -} -else -{ -uint8_t x_75; -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_1); -x_75 = !lean_is_exclusive(x_13); -if (x_75 == 0) -{ -return x_13; -} -else -{ -lean_object* x_76; lean_object* x_77; lean_object* x_78; -x_76 = lean_ctor_get(x_13, 0); -x_77 = lean_ctor_get(x_13, 1); -lean_inc(x_77); -lean_inc(x_76); -lean_dec(x_13); -x_78 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_78, 0, x_76); -lean_ctor_set(x_78, 1, x_77); -return x_78; -} -} -} -} -LEAN_EXPORT lean_object* l_USize_reduceSub(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; uint8_t x_12; -x_10 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__456; -x_11 = lean_unsigned_to_nat(6u); -x_12 = l_Lean_Expr_isAppOfArity(x_1, x_10, x_11); -if (x_12 == 0) -{ -lean_object* x_13; lean_object* x_14; -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); -x_13 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; -x_14 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_14, 0, x_13); -lean_ctor_set(x_14, 1, x_9); -return x_14; -} -else -{ -lean_object* x_15; lean_object* x_16; -x_15 = lean_box(0); -x_16 = l_USize_reduceSub___lambda__1(x_1, x_15, 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_16; -} -} -} -LEAN_EXPORT lean_object* l_USize_reduceSub___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_reduceSub___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; -} -} -static lean_object* _init_l___regBuiltin_USize_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15460____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__446; -x_3 = l_Lean_Name_mkStr2(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___regBuiltin_USize_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15460____closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt8_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9696____closed__3; -x_2 = l___regBuiltin_USize_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15380____closed__2; -x_3 = lean_array_push(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___regBuiltin_USize_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15460____closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_USize_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15460____closed__2; -x_2 = l___regBuiltin_USize_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15380____closed__2; -x_3 = lean_array_push(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___regBuiltin_USize_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15460____closed__4() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_USize_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15460____closed__3; -x_2 = l___regBuiltin_USize_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15380____closed__2; -x_3 = lean_array_push(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___regBuiltin_USize_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15460____closed__5() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_USize_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15460____closed__4; -x_2 = lean_box(3); -x_3 = lean_array_push(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___regBuiltin_USize_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15460____closed__6() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_USize_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15460____closed__5; -x_2 = lean_box(3); -x_3 = lean_array_push(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___regBuiltin_USize_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15460____closed__7() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_USize_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15460____closed__6; -x_2 = lean_box(3); -x_3 = lean_array_push(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___regBuiltin_USize_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15460____closed__8() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_USize_reduceSub), 9, 0); -return x_1; -} -} -LEAN_EXPORT lean_object* l___regBuiltin_USize_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15460_(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_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15460____closed__1; -x_3 = l___regBuiltin_USize_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15460____closed__7; -x_4 = l___regBuiltin_USize_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15460____closed__8; -x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); -return x_5; -} -} -LEAN_EXPORT lean_object* l___regBuiltin_USize_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15462_(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____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9618____closed__1; -x_3 = l___regBuiltin_USize_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15460____closed__1; -x_4 = 1; -x_5 = l___regBuiltin_USize_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15460____closed__8; -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_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15464_(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____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9620____closed__1; -x_3 = l___regBuiltin_USize_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15460____closed__1; -x_4 = 1; -x_5 = l___regBuiltin_USize_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15460____closed__8; -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_USize_reduceDiv___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; -lean_inc(x_1); -x_11 = l_Lean_Expr_appFn_x21(x_1); -x_12 = l_Lean_Expr_appArg_x21(x_11); -lean_dec(x_11); -lean_inc(x_9); -lean_inc(x_8); -lean_inc(x_7); -lean_inc(x_6); -x_13 = l_USize_fromExpr(x_12, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -if (lean_obj_tag(x_13) == 0) -{ -lean_object* x_14; -x_14 = lean_ctor_get(x_13, 0); -lean_inc(x_14); -if (lean_obj_tag(x_14) == 0) -{ -uint8_t x_15; -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_1); -x_15 = !lean_is_exclusive(x_13); -if (x_15 == 0) -{ -lean_object* x_16; lean_object* x_17; -x_16 = lean_ctor_get(x_13, 0); -lean_dec(x_16); -x_17 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; -lean_ctor_set(x_13, 0, x_17); -return x_13; -} -else -{ -lean_object* x_18; lean_object* x_19; lean_object* x_20; -x_18 = lean_ctor_get(x_13, 1); -lean_inc(x_18); -lean_dec(x_13); -x_19 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; -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 -{ -lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; -x_21 = lean_ctor_get(x_13, 1); -lean_inc(x_21); -lean_dec(x_13); -x_22 = lean_ctor_get(x_14, 0); -lean_inc(x_22); -lean_dec(x_14); -x_23 = l_Lean_Expr_appArg_x21(x_1); -lean_dec(x_1); -x_24 = l_USize_fromExpr(x_23, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_21); -if (lean_obj_tag(x_24) == 0) -{ -lean_object* x_25; -x_25 = lean_ctor_get(x_24, 0); -lean_inc(x_25); -if (lean_obj_tag(x_25) == 0) -{ -uint8_t x_26; -lean_dec(x_22); -x_26 = !lean_is_exclusive(x_24); -if (x_26 == 0) -{ -lean_object* x_27; lean_object* x_28; -x_27 = lean_ctor_get(x_24, 0); -lean_dec(x_27); -x_28 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; -lean_ctor_set(x_24, 0, x_28); -return x_24; -} -else -{ -lean_object* x_29; lean_object* x_30; lean_object* x_31; -x_29 = lean_ctor_get(x_24, 1); -lean_inc(x_29); -lean_dec(x_24); -x_30 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; -x_31 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_31, 0, x_30); -lean_ctor_set(x_31, 1, x_29); -return x_31; -} -} -else -{ -uint8_t x_32; -x_32 = !lean_is_exclusive(x_24); -if (x_32 == 0) -{ -lean_object* x_33; lean_object* x_34; uint8_t x_35; -x_33 = lean_ctor_get(x_24, 0); -lean_dec(x_33); -x_34 = lean_ctor_get(x_25, 0); -lean_inc(x_34); -lean_dec(x_25); -x_35 = !lean_is_exclusive(x_22); -if (x_35 == 0) -{ -size_t x_36; size_t x_37; size_t x_38; lean_object* x_39; lean_object* x_40; uint32_t x_41; uint8_t x_42; lean_object* x_43; lean_object* x_44; -x_36 = lean_ctor_get_usize(x_22, 1); -x_37 = lean_ctor_get_usize(x_34, 1); -lean_dec(x_34); -x_38 = lean_usize_div(x_36, x_37); -lean_ctor_set_usize(x_22, 1, x_38); -x_39 = l_USize_toExpr(x_22); -x_40 = lean_box(0); -x_41 = 0; -x_42 = 1; -x_43 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_43, 0, x_39); -lean_ctor_set(x_43, 1, x_40); -lean_ctor_set_uint32(x_43, sizeof(void*)*2, x_41); -lean_ctor_set_uint8(x_43, sizeof(void*)*2 + 4, x_42); -x_44 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_44, 0, x_43); -lean_ctor_set(x_24, 0, x_44); -return x_24; -} -else -{ -lean_object* x_45; size_t x_46; size_t x_47; size_t x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; uint32_t x_52; uint8_t x_53; lean_object* x_54; lean_object* x_55; -x_45 = lean_ctor_get(x_22, 0); -x_46 = lean_ctor_get_usize(x_22, 1); -lean_inc(x_45); -lean_dec(x_22); -x_47 = lean_ctor_get_usize(x_34, 1); -lean_dec(x_34); -x_48 = lean_usize_div(x_46, x_47); -x_49 = lean_alloc_ctor(0, 1, sizeof(size_t)*1); -lean_ctor_set(x_49, 0, x_45); -lean_ctor_set_usize(x_49, 1, x_48); -x_50 = l_USize_toExpr(x_49); -x_51 = lean_box(0); -x_52 = 0; -x_53 = 1; -x_54 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_54, 0, x_50); -lean_ctor_set(x_54, 1, x_51); -lean_ctor_set_uint32(x_54, sizeof(void*)*2, x_52); -lean_ctor_set_uint8(x_54, sizeof(void*)*2 + 4, x_53); -x_55 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_55, 0, x_54); -lean_ctor_set(x_24, 0, x_55); -return x_24; -} -} -else -{ -lean_object* x_56; lean_object* x_57; lean_object* x_58; size_t x_59; lean_object* x_60; size_t x_61; size_t x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; uint32_t x_66; uint8_t x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; -x_56 = lean_ctor_get(x_24, 1); -lean_inc(x_56); -lean_dec(x_24); -x_57 = lean_ctor_get(x_25, 0); -lean_inc(x_57); -lean_dec(x_25); -x_58 = lean_ctor_get(x_22, 0); -lean_inc(x_58); -x_59 = lean_ctor_get_usize(x_22, 1); -if (lean_is_exclusive(x_22)) { - lean_ctor_release(x_22, 0); - x_60 = x_22; -} else { - lean_dec_ref(x_22); - x_60 = lean_box(0); -} -x_61 = lean_ctor_get_usize(x_57, 1); -lean_dec(x_57); -x_62 = lean_usize_div(x_59, x_61); -if (lean_is_scalar(x_60)) { - x_63 = lean_alloc_ctor(0, 1, sizeof(size_t)*1); -} else { - x_63 = x_60; -} -lean_ctor_set(x_63, 0, x_58); -lean_ctor_set_usize(x_63, 1, x_62); -x_64 = l_USize_toExpr(x_63); -x_65 = lean_box(0); -x_66 = 0; -x_67 = 1; -x_68 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_68, 0, x_64); -lean_ctor_set(x_68, 1, x_65); -lean_ctor_set_uint32(x_68, sizeof(void*)*2, x_66); -lean_ctor_set_uint8(x_68, sizeof(void*)*2 + 4, x_67); -x_69 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_69, 0, x_68); -x_70 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_70, 0, x_69); -lean_ctor_set(x_70, 1, x_56); -return x_70; -} -} -} -else -{ -uint8_t x_71; -lean_dec(x_22); -x_71 = !lean_is_exclusive(x_24); -if (x_71 == 0) -{ -return x_24; -} -else -{ -lean_object* x_72; lean_object* x_73; lean_object* x_74; -x_72 = lean_ctor_get(x_24, 0); -x_73 = lean_ctor_get(x_24, 1); -lean_inc(x_73); -lean_inc(x_72); -lean_dec(x_24); -x_74 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_74, 0, x_72); -lean_ctor_set(x_74, 1, x_73); -return x_74; -} -} -} -} -else -{ -uint8_t x_75; -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_1); -x_75 = !lean_is_exclusive(x_13); -if (x_75 == 0) -{ -return x_13; -} -else -{ -lean_object* x_76; lean_object* x_77; lean_object* x_78; -x_76 = lean_ctor_get(x_13, 0); -x_77 = lean_ctor_get(x_13, 1); -lean_inc(x_77); -lean_inc(x_76); -lean_dec(x_13); -x_78 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_78, 0, x_76); -lean_ctor_set(x_78, 1, x_77); -return x_78; -} -} -} -} -LEAN_EXPORT lean_object* l_USize_reduceDiv(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; uint8_t x_12; -x_10 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__469; -x_11 = lean_unsigned_to_nat(6u); -x_12 = l_Lean_Expr_isAppOfArity(x_1, x_10, x_11); -if (x_12 == 0) -{ -lean_object* x_13; lean_object* x_14; -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); -x_13 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; -x_14 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_14, 0, x_13); -lean_ctor_set(x_14, 1, x_9); -return x_14; -} -else -{ -lean_object* x_15; lean_object* x_16; -x_15 = lean_box(0); -x_16 = l_USize_reduceDiv___lambda__1(x_1, x_15, 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_16; -} -} -} -LEAN_EXPORT lean_object* l_USize_reduceDiv___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_reduceDiv___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; -} -} -static lean_object* _init_l___regBuiltin_USize_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15500____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__459; -x_3 = l_Lean_Name_mkStr2(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___regBuiltin_USize_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15500____closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt8_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9736____closed__3; -x_2 = l___regBuiltin_USize_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15380____closed__2; -x_3 = lean_array_push(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___regBuiltin_USize_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15500____closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_USize_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15500____closed__2; -x_2 = l___regBuiltin_USize_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15380____closed__2; -x_3 = lean_array_push(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___regBuiltin_USize_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15500____closed__4() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_USize_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15500____closed__3; -x_2 = l___regBuiltin_USize_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15380____closed__2; -x_3 = lean_array_push(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___regBuiltin_USize_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15500____closed__5() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_USize_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15500____closed__4; -x_2 = lean_box(3); -x_3 = lean_array_push(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___regBuiltin_USize_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15500____closed__6() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_USize_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15500____closed__5; -x_2 = lean_box(3); -x_3 = lean_array_push(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___regBuiltin_USize_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15500____closed__7() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_USize_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15500____closed__6; -x_2 = lean_box(3); -x_3 = lean_array_push(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___regBuiltin_USize_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15500____closed__8() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_USize_reduceDiv), 9, 0); -return x_1; -} -} -LEAN_EXPORT lean_object* l___regBuiltin_USize_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15500_(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_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15500____closed__1; -x_3 = l___regBuiltin_USize_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15500____closed__7; -x_4 = l___regBuiltin_USize_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15500____closed__8; -x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); -return x_5; -} -} -LEAN_EXPORT lean_object* l___regBuiltin_USize_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15502_(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____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9618____closed__1; -x_3 = l___regBuiltin_USize_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15500____closed__1; -x_4 = 1; -x_5 = l___regBuiltin_USize_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15500____closed__8; -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_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15504_(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____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9620____closed__1; -x_3 = l___regBuiltin_USize_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15500____closed__1; -x_4 = 1; -x_5 = l___regBuiltin_USize_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15500____closed__8; -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_USize_reduceMod___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; -lean_inc(x_1); -x_11 = l_Lean_Expr_appFn_x21(x_1); -x_12 = l_Lean_Expr_appArg_x21(x_11); -lean_dec(x_11); -lean_inc(x_9); -lean_inc(x_8); -lean_inc(x_7); -lean_inc(x_6); -x_13 = l_USize_fromExpr(x_12, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -if (lean_obj_tag(x_13) == 0) -{ -lean_object* x_14; -x_14 = lean_ctor_get(x_13, 0); -lean_inc(x_14); -if (lean_obj_tag(x_14) == 0) -{ -uint8_t x_15; -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_1); -x_15 = !lean_is_exclusive(x_13); -if (x_15 == 0) -{ -lean_object* x_16; lean_object* x_17; -x_16 = lean_ctor_get(x_13, 0); -lean_dec(x_16); -x_17 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; -lean_ctor_set(x_13, 0, x_17); -return x_13; -} -else -{ -lean_object* x_18; lean_object* x_19; lean_object* x_20; -x_18 = lean_ctor_get(x_13, 1); -lean_inc(x_18); -lean_dec(x_13); -x_19 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; -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 -{ -lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; -x_21 = lean_ctor_get(x_13, 1); -lean_inc(x_21); -lean_dec(x_13); -x_22 = lean_ctor_get(x_14, 0); -lean_inc(x_22); -lean_dec(x_14); -x_23 = l_Lean_Expr_appArg_x21(x_1); -lean_dec(x_1); -x_24 = l_USize_fromExpr(x_23, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_21); -if (lean_obj_tag(x_24) == 0) -{ -lean_object* x_25; -x_25 = lean_ctor_get(x_24, 0); -lean_inc(x_25); -if (lean_obj_tag(x_25) == 0) -{ -uint8_t x_26; -lean_dec(x_22); -x_26 = !lean_is_exclusive(x_24); -if (x_26 == 0) -{ -lean_object* x_27; lean_object* x_28; -x_27 = lean_ctor_get(x_24, 0); -lean_dec(x_27); -x_28 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; -lean_ctor_set(x_24, 0, x_28); -return x_24; -} -else -{ -lean_object* x_29; lean_object* x_30; lean_object* x_31; -x_29 = lean_ctor_get(x_24, 1); -lean_inc(x_29); -lean_dec(x_24); -x_30 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; -x_31 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_31, 0, x_30); -lean_ctor_set(x_31, 1, x_29); -return x_31; -} -} -else -{ -uint8_t x_32; -x_32 = !lean_is_exclusive(x_24); -if (x_32 == 0) -{ -lean_object* x_33; lean_object* x_34; uint8_t x_35; -x_33 = lean_ctor_get(x_24, 0); -lean_dec(x_33); -x_34 = lean_ctor_get(x_25, 0); -lean_inc(x_34); -lean_dec(x_25); -x_35 = !lean_is_exclusive(x_22); -if (x_35 == 0) -{ -size_t x_36; size_t x_37; size_t x_38; lean_object* x_39; lean_object* x_40; uint32_t x_41; uint8_t x_42; lean_object* x_43; lean_object* x_44; -x_36 = lean_ctor_get_usize(x_22, 1); -x_37 = lean_ctor_get_usize(x_34, 1); -lean_dec(x_34); -x_38 = lean_usize_mod(x_36, x_37); -lean_ctor_set_usize(x_22, 1, x_38); -x_39 = l_USize_toExpr(x_22); -x_40 = lean_box(0); -x_41 = 0; -x_42 = 1; -x_43 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_43, 0, x_39); -lean_ctor_set(x_43, 1, x_40); -lean_ctor_set_uint32(x_43, sizeof(void*)*2, x_41); -lean_ctor_set_uint8(x_43, sizeof(void*)*2 + 4, x_42); -x_44 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_44, 0, x_43); -lean_ctor_set(x_24, 0, x_44); -return x_24; -} -else -{ -lean_object* x_45; size_t x_46; size_t x_47; size_t x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; uint32_t x_52; uint8_t x_53; lean_object* x_54; lean_object* x_55; -x_45 = lean_ctor_get(x_22, 0); -x_46 = lean_ctor_get_usize(x_22, 1); -lean_inc(x_45); -lean_dec(x_22); -x_47 = lean_ctor_get_usize(x_34, 1); -lean_dec(x_34); -x_48 = lean_usize_mod(x_46, x_47); -x_49 = lean_alloc_ctor(0, 1, sizeof(size_t)*1); -lean_ctor_set(x_49, 0, x_45); -lean_ctor_set_usize(x_49, 1, x_48); -x_50 = l_USize_toExpr(x_49); -x_51 = lean_box(0); -x_52 = 0; -x_53 = 1; -x_54 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_54, 0, x_50); -lean_ctor_set(x_54, 1, x_51); -lean_ctor_set_uint32(x_54, sizeof(void*)*2, x_52); -lean_ctor_set_uint8(x_54, sizeof(void*)*2 + 4, x_53); -x_55 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_55, 0, x_54); -lean_ctor_set(x_24, 0, x_55); -return x_24; -} -} -else -{ -lean_object* x_56; lean_object* x_57; lean_object* x_58; size_t x_59; lean_object* x_60; size_t x_61; size_t x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; uint32_t x_66; uint8_t x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; -x_56 = lean_ctor_get(x_24, 1); -lean_inc(x_56); -lean_dec(x_24); -x_57 = lean_ctor_get(x_25, 0); -lean_inc(x_57); -lean_dec(x_25); -x_58 = lean_ctor_get(x_22, 0); -lean_inc(x_58); -x_59 = lean_ctor_get_usize(x_22, 1); -if (lean_is_exclusive(x_22)) { - lean_ctor_release(x_22, 0); - x_60 = x_22; -} else { - lean_dec_ref(x_22); - x_60 = lean_box(0); -} -x_61 = lean_ctor_get_usize(x_57, 1); -lean_dec(x_57); -x_62 = lean_usize_mod(x_59, x_61); -if (lean_is_scalar(x_60)) { - x_63 = lean_alloc_ctor(0, 1, sizeof(size_t)*1); -} else { - x_63 = x_60; -} -lean_ctor_set(x_63, 0, x_58); -lean_ctor_set_usize(x_63, 1, x_62); -x_64 = l_USize_toExpr(x_63); -x_65 = lean_box(0); -x_66 = 0; -x_67 = 1; -x_68 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_68, 0, x_64); -lean_ctor_set(x_68, 1, x_65); -lean_ctor_set_uint32(x_68, sizeof(void*)*2, x_66); -lean_ctor_set_uint8(x_68, sizeof(void*)*2 + 4, x_67); -x_69 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_69, 0, x_68); -x_70 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_70, 0, x_69); -lean_ctor_set(x_70, 1, x_56); -return x_70; -} -} -} -else -{ -uint8_t x_71; -lean_dec(x_22); -x_71 = !lean_is_exclusive(x_24); -if (x_71 == 0) -{ -return x_24; -} -else -{ -lean_object* x_72; lean_object* x_73; lean_object* x_74; -x_72 = lean_ctor_get(x_24, 0); -x_73 = lean_ctor_get(x_24, 1); -lean_inc(x_73); -lean_inc(x_72); -lean_dec(x_24); -x_74 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_74, 0, x_72); -lean_ctor_set(x_74, 1, x_73); -return x_74; -} -} -} -} -else -{ -uint8_t x_75; -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_1); -x_75 = !lean_is_exclusive(x_13); -if (x_75 == 0) -{ -return x_13; -} -else -{ -lean_object* x_76; lean_object* x_77; lean_object* x_78; -x_76 = lean_ctor_get(x_13, 0); -x_77 = lean_ctor_get(x_13, 1); -lean_inc(x_77); -lean_inc(x_76); -lean_dec(x_13); -x_78 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_78, 0, x_76); -lean_ctor_set(x_78, 1, x_77); -return x_78; -} -} -} -} -LEAN_EXPORT lean_object* l_USize_reduceMod(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; uint8_t x_12; -x_10 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__482; -x_11 = lean_unsigned_to_nat(6u); -x_12 = l_Lean_Expr_isAppOfArity(x_1, x_10, x_11); -if (x_12 == 0) -{ -lean_object* x_13; lean_object* x_14; -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); -x_13 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; -x_14 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_14, 0, x_13); -lean_ctor_set(x_14, 1, x_9); -return x_14; -} -else -{ -lean_object* x_15; lean_object* x_16; -x_15 = lean_box(0); -x_16 = l_USize_reduceMod___lambda__1(x_1, x_15, 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_16; -} -} -} -LEAN_EXPORT lean_object* l_USize_reduceMod___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_reduceMod___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; -} -} -static lean_object* _init_l___regBuiltin_USize_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15540____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__472; -x_3 = l_Lean_Name_mkStr2(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___regBuiltin_USize_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15540____closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt8_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9776____closed__3; -x_2 = l___regBuiltin_USize_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15380____closed__2; -x_3 = lean_array_push(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___regBuiltin_USize_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15540____closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_USize_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15540____closed__2; -x_2 = l___regBuiltin_USize_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15380____closed__2; -x_3 = lean_array_push(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___regBuiltin_USize_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15540____closed__4() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_USize_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15540____closed__3; -x_2 = l___regBuiltin_USize_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15380____closed__2; -x_3 = lean_array_push(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___regBuiltin_USize_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15540____closed__5() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_USize_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15540____closed__4; -x_2 = lean_box(3); -x_3 = lean_array_push(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___regBuiltin_USize_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15540____closed__6() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_USize_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15540____closed__5; -x_2 = lean_box(3); -x_3 = lean_array_push(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___regBuiltin_USize_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15540____closed__7() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_USize_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15540____closed__6; -x_2 = lean_box(3); -x_3 = lean_array_push(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___regBuiltin_USize_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15540____closed__8() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_USize_reduceMod), 9, 0); -return x_1; -} -} -LEAN_EXPORT lean_object* l___regBuiltin_USize_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15540_(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_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15540____closed__1; -x_3 = l___regBuiltin_USize_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15540____closed__7; -x_4 = l___regBuiltin_USize_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15540____closed__8; -x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); -return x_5; -} -} -LEAN_EXPORT lean_object* l___regBuiltin_USize_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15542_(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____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9618____closed__1; -x_3 = l___regBuiltin_USize_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15540____closed__1; -x_4 = 1; -x_5 = l___regBuiltin_USize_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15540____closed__8; -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_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15544_(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____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9620____closed__1; -x_3 = l___regBuiltin_USize_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15540____closed__1; -x_4 = 1; -x_5 = l___regBuiltin_USize_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15540____closed__8; -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_USize_reduceLT___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; -lean_inc(x_1); -x_11 = l_Lean_Expr_appFn_x21(x_1); -x_12 = l_Lean_Expr_appArg_x21(x_11); -lean_dec(x_11); -lean_inc(x_9); -lean_inc(x_8); -lean_inc(x_7); -lean_inc(x_6); -x_13 = l_USize_fromExpr(x_12, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -if (lean_obj_tag(x_13) == 0) -{ -lean_object* x_14; -x_14 = lean_ctor_get(x_13, 0); -lean_inc(x_14); -if (lean_obj_tag(x_14) == 0) -{ -uint8_t x_15; -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_1); -x_15 = !lean_is_exclusive(x_13); -if (x_15 == 0) -{ -lean_object* x_16; lean_object* x_17; -x_16 = lean_ctor_get(x_13, 0); -lean_dec(x_16); -x_17 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; -lean_ctor_set(x_13, 0, x_17); -return x_13; -} -else -{ -lean_object* x_18; lean_object* x_19; lean_object* x_20; -x_18 = lean_ctor_get(x_13, 1); -lean_inc(x_18); -lean_dec(x_13); -x_19 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; -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 -{ -lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; -x_21 = lean_ctor_get(x_13, 1); -lean_inc(x_21); -lean_dec(x_13); -x_22 = lean_ctor_get(x_14, 0); -lean_inc(x_22); -lean_dec(x_14); -x_23 = l_Lean_Expr_appArg_x21(x_1); -lean_inc(x_9); -lean_inc(x_8); -lean_inc(x_7); -lean_inc(x_6); -x_24 = l_USize_fromExpr(x_23, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_21); -if (lean_obj_tag(x_24) == 0) -{ -lean_object* x_25; -x_25 = lean_ctor_get(x_24, 0); -lean_inc(x_25); -if (lean_obj_tag(x_25) == 0) -{ -uint8_t x_26; -lean_dec(x_22); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_1); -x_26 = !lean_is_exclusive(x_24); -if (x_26 == 0) -{ -lean_object* x_27; lean_object* x_28; -x_27 = lean_ctor_get(x_24, 0); -lean_dec(x_27); -x_28 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; -lean_ctor_set(x_24, 0, x_28); -return x_24; -} -else -{ -lean_object* x_29; lean_object* x_30; lean_object* x_31; -x_29 = lean_ctor_get(x_24, 1); -lean_inc(x_29); -lean_dec(x_24); -x_30 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; -x_31 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_31, 0, x_30); -lean_ctor_set(x_31, 1, x_29); -return x_31; -} -} -else -{ -lean_object* x_32; lean_object* x_33; size_t x_34; size_t x_35; uint8_t x_36; lean_object* x_37; -x_32 = lean_ctor_get(x_24, 1); -lean_inc(x_32); -lean_dec(x_24); -x_33 = lean_ctor_get(x_25, 0); -lean_inc(x_33); -lean_dec(x_25); -x_34 = lean_ctor_get_usize(x_22, 1); -lean_dec(x_22); -x_35 = lean_ctor_get_usize(x_33, 1); -lean_dec(x_33); -x_36 = lean_usize_dec_lt(x_34, x_35); -x_37 = l_Lean_Meta_Simp_evalPropStep(x_1, x_36, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_32); -return x_37; -} -} -else -{ -uint8_t x_38; -lean_dec(x_22); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_1); -x_38 = !lean_is_exclusive(x_24); -if (x_38 == 0) -{ -return x_24; -} -else -{ -lean_object* x_39; lean_object* x_40; lean_object* x_41; -x_39 = lean_ctor_get(x_24, 0); -x_40 = lean_ctor_get(x_24, 1); -lean_inc(x_40); -lean_inc(x_39); -lean_dec(x_24); -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; -} -} -} -} -else -{ -uint8_t x_42; -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_1); -x_42 = !lean_is_exclusive(x_13); -if (x_42 == 0) -{ -return x_13; -} -else -{ -lean_object* x_43; lean_object* x_44; lean_object* x_45; -x_43 = lean_ctor_get(x_13, 0); -x_44 = lean_ctor_get(x_13, 1); -lean_inc(x_44); -lean_inc(x_43); -lean_dec(x_13); -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_EXPORT lean_object* l_USize_reduceLT(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; uint8_t x_12; -x_10 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__495; -x_11 = lean_unsigned_to_nat(4u); -x_12 = l_Lean_Expr_isAppOfArity(x_1, x_10, x_11); -if (x_12 == 0) -{ -lean_object* x_13; lean_object* x_14; -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); -x_13 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; -x_14 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_14, 0, x_13); -lean_ctor_set(x_14, 1, x_9); -return x_14; -} -else -{ -lean_object* x_15; lean_object* x_16; -x_15 = lean_box(0); -x_16 = l_USize_reduceLT___lambda__1(x_1, x_15, 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_16; -} -} -} -LEAN_EXPORT lean_object* l_USize_reduceLT___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_reduceLT___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; -} -} -static lean_object* _init_l___regBuiltin_USize_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15581____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__485; -x_3 = l_Lean_Name_mkStr2(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___regBuiltin_USize_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15581____closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt8_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9817____closed__4; -x_2 = l___regBuiltin_USize_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15380____closed__2; -x_3 = lean_array_push(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___regBuiltin_USize_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15581____closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_USize_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15581____closed__2; -x_2 = lean_box(3); -x_3 = lean_array_push(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___regBuiltin_USize_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15581____closed__4() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_USize_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15581____closed__3; -x_2 = lean_box(3); -x_3 = lean_array_push(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___regBuiltin_USize_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15581____closed__5() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_USize_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15581____closed__4; -x_2 = lean_box(3); -x_3 = lean_array_push(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___regBuiltin_USize_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15581____closed__6() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_USize_reduceLT), 9, 0); -return x_1; -} -} -LEAN_EXPORT lean_object* l___regBuiltin_USize_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15581_(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_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15581____closed__1; -x_3 = l___regBuiltin_USize_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15581____closed__5; -x_4 = l___regBuiltin_USize_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15581____closed__6; -x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); -return x_5; -} -} -LEAN_EXPORT lean_object* l___regBuiltin_USize_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15583_(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____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9618____closed__1; -x_3 = l___regBuiltin_USize_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15581____closed__1; -x_4 = 1; -x_5 = l___regBuiltin_USize_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15581____closed__6; -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_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15585_(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____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9620____closed__1; -x_3 = l___regBuiltin_USize_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15581____closed__1; -x_4 = 1; -x_5 = l___regBuiltin_USize_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15581____closed__6; -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_USize_reduceLE___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; -lean_inc(x_1); -x_11 = l_Lean_Expr_appFn_x21(x_1); -x_12 = l_Lean_Expr_appArg_x21(x_11); -lean_dec(x_11); -lean_inc(x_9); -lean_inc(x_8); -lean_inc(x_7); -lean_inc(x_6); -x_13 = l_USize_fromExpr(x_12, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -if (lean_obj_tag(x_13) == 0) -{ -lean_object* x_14; -x_14 = lean_ctor_get(x_13, 0); -lean_inc(x_14); -if (lean_obj_tag(x_14) == 0) -{ -uint8_t x_15; -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_1); -x_15 = !lean_is_exclusive(x_13); -if (x_15 == 0) -{ -lean_object* x_16; lean_object* x_17; -x_16 = lean_ctor_get(x_13, 0); -lean_dec(x_16); -x_17 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; -lean_ctor_set(x_13, 0, x_17); -return x_13; -} -else -{ -lean_object* x_18; lean_object* x_19; lean_object* x_20; -x_18 = lean_ctor_get(x_13, 1); -lean_inc(x_18); -lean_dec(x_13); -x_19 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; -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 -{ -lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; -x_21 = lean_ctor_get(x_13, 1); -lean_inc(x_21); -lean_dec(x_13); -x_22 = lean_ctor_get(x_14, 0); -lean_inc(x_22); -lean_dec(x_14); -x_23 = l_Lean_Expr_appArg_x21(x_1); -lean_inc(x_9); -lean_inc(x_8); -lean_inc(x_7); -lean_inc(x_6); -x_24 = l_USize_fromExpr(x_23, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_21); -if (lean_obj_tag(x_24) == 0) -{ -lean_object* x_25; -x_25 = lean_ctor_get(x_24, 0); -lean_inc(x_25); -if (lean_obj_tag(x_25) == 0) -{ -uint8_t x_26; -lean_dec(x_22); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_1); -x_26 = !lean_is_exclusive(x_24); -if (x_26 == 0) -{ -lean_object* x_27; lean_object* x_28; -x_27 = lean_ctor_get(x_24, 0); -lean_dec(x_27); -x_28 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; -lean_ctor_set(x_24, 0, x_28); -return x_24; -} -else -{ -lean_object* x_29; lean_object* x_30; lean_object* x_31; -x_29 = lean_ctor_get(x_24, 1); -lean_inc(x_29); -lean_dec(x_24); -x_30 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; -x_31 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_31, 0, x_30); -lean_ctor_set(x_31, 1, x_29); -return x_31; -} -} -else -{ -lean_object* x_32; lean_object* x_33; size_t x_34; size_t x_35; uint8_t x_36; lean_object* x_37; -x_32 = lean_ctor_get(x_24, 1); -lean_inc(x_32); -lean_dec(x_24); -x_33 = lean_ctor_get(x_25, 0); -lean_inc(x_33); -lean_dec(x_25); -x_34 = lean_ctor_get_usize(x_22, 1); -lean_dec(x_22); -x_35 = lean_ctor_get_usize(x_33, 1); -lean_dec(x_33); -x_36 = lean_usize_dec_le(x_34, x_35); -x_37 = l_Lean_Meta_Simp_evalPropStep(x_1, x_36, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_32); -return x_37; -} -} -else -{ -uint8_t x_38; -lean_dec(x_22); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_1); -x_38 = !lean_is_exclusive(x_24); -if (x_38 == 0) -{ -return x_24; -} -else -{ -lean_object* x_39; lean_object* x_40; lean_object* x_41; -x_39 = lean_ctor_get(x_24, 0); -x_40 = lean_ctor_get(x_24, 1); -lean_inc(x_40); -lean_inc(x_39); -lean_dec(x_24); -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; -} -} -} -} -else -{ -uint8_t x_42; -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_1); -x_42 = !lean_is_exclusive(x_13); -if (x_42 == 0) -{ -return x_13; -} -else -{ -lean_object* x_43; lean_object* x_44; lean_object* x_45; -x_43 = lean_ctor_get(x_13, 0); -x_44 = lean_ctor_get(x_13, 1); -lean_inc(x_44); -lean_inc(x_43); -lean_dec(x_13); -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_EXPORT lean_object* l_USize_reduceLE(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; uint8_t x_12; -x_10 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__509; -x_11 = lean_unsigned_to_nat(4u); -x_12 = l_Lean_Expr_isAppOfArity(x_1, x_10, x_11); -if (x_12 == 0) -{ -lean_object* x_13; lean_object* x_14; -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); -x_13 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; -x_14 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_14, 0, x_13); -lean_ctor_set(x_14, 1, x_9); -return x_14; -} -else -{ -lean_object* x_15; lean_object* x_16; -x_15 = lean_box(0); -x_16 = l_USize_reduceLE___lambda__1(x_1, x_15, 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_16; -} -} -} -LEAN_EXPORT lean_object* l_USize_reduceLE___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_reduceLE___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; -} -} -static lean_object* _init_l___regBuiltin_USize_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15622____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__499; -x_3 = l_Lean_Name_mkStr2(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___regBuiltin_USize_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15622____closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt8_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9858____closed__3; -x_2 = l___regBuiltin_USize_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15380____closed__2; -x_3 = lean_array_push(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___regBuiltin_USize_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15622____closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_USize_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15622____closed__2; -x_2 = lean_box(3); -x_3 = lean_array_push(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___regBuiltin_USize_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15622____closed__4() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_USize_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15622____closed__3; -x_2 = lean_box(3); -x_3 = lean_array_push(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___regBuiltin_USize_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15622____closed__5() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_USize_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15622____closed__4; -x_2 = lean_box(3); -x_3 = lean_array_push(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___regBuiltin_USize_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15622____closed__6() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_USize_reduceLE), 9, 0); -return x_1; -} -} -LEAN_EXPORT lean_object* l___regBuiltin_USize_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15622_(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_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15622____closed__1; -x_3 = l___regBuiltin_USize_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15622____closed__5; -x_4 = l___regBuiltin_USize_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15622____closed__6; -x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); -return x_5; -} -} -LEAN_EXPORT lean_object* l___regBuiltin_USize_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15624_(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____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9618____closed__1; -x_3 = l___regBuiltin_USize_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15622____closed__1; -x_4 = 1; -x_5 = l___regBuiltin_USize_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15622____closed__6; -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_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15626_(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____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9620____closed__1; -x_3 = l___regBuiltin_USize_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15622____closed__1; -x_4 = 1; -x_5 = l___regBuiltin_USize_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15622____closed__6; -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_USize_reduceGT___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; -lean_inc(x_1); -x_11 = l_Lean_Expr_appFn_x21(x_1); -x_12 = l_Lean_Expr_appArg_x21(x_11); -lean_dec(x_11); -lean_inc(x_9); -lean_inc(x_8); -lean_inc(x_7); -lean_inc(x_6); -x_13 = l_USize_fromExpr(x_12, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -if (lean_obj_tag(x_13) == 0) -{ -lean_object* x_14; -x_14 = lean_ctor_get(x_13, 0); -lean_inc(x_14); -if (lean_obj_tag(x_14) == 0) -{ -uint8_t x_15; -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_1); -x_15 = !lean_is_exclusive(x_13); -if (x_15 == 0) -{ -lean_object* x_16; lean_object* x_17; -x_16 = lean_ctor_get(x_13, 0); -lean_dec(x_16); -x_17 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; -lean_ctor_set(x_13, 0, x_17); -return x_13; -} -else -{ -lean_object* x_18; lean_object* x_19; lean_object* x_20; -x_18 = lean_ctor_get(x_13, 1); -lean_inc(x_18); -lean_dec(x_13); -x_19 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; -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 -{ -lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; -x_21 = lean_ctor_get(x_13, 1); -lean_inc(x_21); -lean_dec(x_13); -x_22 = lean_ctor_get(x_14, 0); -lean_inc(x_22); -lean_dec(x_14); -x_23 = l_Lean_Expr_appArg_x21(x_1); -lean_inc(x_9); -lean_inc(x_8); -lean_inc(x_7); -lean_inc(x_6); -x_24 = l_USize_fromExpr(x_23, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_21); -if (lean_obj_tag(x_24) == 0) -{ -lean_object* x_25; -x_25 = lean_ctor_get(x_24, 0); -lean_inc(x_25); -if (lean_obj_tag(x_25) == 0) -{ -uint8_t x_26; -lean_dec(x_22); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_1); -x_26 = !lean_is_exclusive(x_24); -if (x_26 == 0) -{ -lean_object* x_27; lean_object* x_28; -x_27 = lean_ctor_get(x_24, 0); -lean_dec(x_27); -x_28 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; -lean_ctor_set(x_24, 0, x_28); -return x_24; -} -else -{ -lean_object* x_29; lean_object* x_30; lean_object* x_31; -x_29 = lean_ctor_get(x_24, 1); -lean_inc(x_29); -lean_dec(x_24); -x_30 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; -x_31 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_31, 0, x_30); -lean_ctor_set(x_31, 1, x_29); -return x_31; -} -} -else -{ -lean_object* x_32; lean_object* x_33; size_t x_34; size_t x_35; uint8_t x_36; lean_object* x_37; -x_32 = lean_ctor_get(x_24, 1); -lean_inc(x_32); -lean_dec(x_24); -x_33 = lean_ctor_get(x_25, 0); -lean_inc(x_33); -lean_dec(x_25); -x_34 = lean_ctor_get_usize(x_22, 1); -lean_dec(x_22); -x_35 = lean_ctor_get_usize(x_33, 1); -lean_dec(x_33); -x_36 = lean_usize_dec_lt(x_35, x_34); -x_37 = l_Lean_Meta_Simp_evalPropStep(x_1, x_36, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_32); -return x_37; -} -} -else -{ -uint8_t x_38; -lean_dec(x_22); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_1); -x_38 = !lean_is_exclusive(x_24); -if (x_38 == 0) -{ -return x_24; -} -else -{ -lean_object* x_39; lean_object* x_40; lean_object* x_41; -x_39 = lean_ctor_get(x_24, 0); -x_40 = lean_ctor_get(x_24, 1); -lean_inc(x_40); -lean_inc(x_39); -lean_dec(x_24); -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; -} -} -} -} -else -{ -uint8_t x_42; -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_1); -x_42 = !lean_is_exclusive(x_13); -if (x_42 == 0) -{ -return x_13; -} -else -{ -lean_object* x_43; lean_object* x_44; lean_object* x_45; -x_43 = lean_ctor_get(x_13, 0); -x_44 = lean_ctor_get(x_13, 1); -lean_inc(x_44); -lean_inc(x_43); -lean_dec(x_13); -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_EXPORT lean_object* l_USize_reduceGT(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; uint8_t x_12; -x_10 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__522; -x_11 = lean_unsigned_to_nat(4u); -x_12 = l_Lean_Expr_isAppOfArity(x_1, x_10, x_11); -if (x_12 == 0) -{ -lean_object* x_13; lean_object* x_14; -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); -x_13 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; -x_14 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_14, 0, x_13); -lean_ctor_set(x_14, 1, x_9); -return x_14; -} -else -{ -lean_object* x_15; lean_object* x_16; -x_15 = lean_box(0); -x_16 = l_USize_reduceGT___lambda__1(x_1, x_15, 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_16; -} -} -} -LEAN_EXPORT lean_object* l_USize_reduceGT___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_reduceGT___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; -} -} -static lean_object* _init_l___regBuiltin_USize_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15663____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__512; -x_3 = l_Lean_Name_mkStr2(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___regBuiltin_USize_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15663____closed__2() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_USize_reduceGT), 9, 0); -return x_1; -} -} -LEAN_EXPORT lean_object* l___regBuiltin_USize_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15663_(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_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15663____closed__1; -x_3 = l___regBuiltin_USize_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15581____closed__5; -x_4 = l___regBuiltin_USize_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15663____closed__2; -x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); -return x_5; -} -} -LEAN_EXPORT lean_object* l___regBuiltin_USize_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15665_(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____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9618____closed__1; -x_3 = l___regBuiltin_USize_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15663____closed__1; -x_4 = 1; -x_5 = l___regBuiltin_USize_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15663____closed__2; -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_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15667_(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____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9620____closed__1; -x_3 = l___regBuiltin_USize_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15663____closed__1; -x_4 = 1; -x_5 = l___regBuiltin_USize_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15663____closed__2; -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_USize_reduceGE___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; -lean_inc(x_1); -x_11 = l_Lean_Expr_appFn_x21(x_1); -x_12 = l_Lean_Expr_appArg_x21(x_11); -lean_dec(x_11); -lean_inc(x_9); -lean_inc(x_8); -lean_inc(x_7); -lean_inc(x_6); -x_13 = l_USize_fromExpr(x_12, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -if (lean_obj_tag(x_13) == 0) -{ -lean_object* x_14; -x_14 = lean_ctor_get(x_13, 0); -lean_inc(x_14); -if (lean_obj_tag(x_14) == 0) -{ -uint8_t x_15; -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_1); -x_15 = !lean_is_exclusive(x_13); -if (x_15 == 0) -{ -lean_object* x_16; lean_object* x_17; -x_16 = lean_ctor_get(x_13, 0); -lean_dec(x_16); -x_17 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; -lean_ctor_set(x_13, 0, x_17); -return x_13; -} -else -{ -lean_object* x_18; lean_object* x_19; lean_object* x_20; -x_18 = lean_ctor_get(x_13, 1); -lean_inc(x_18); -lean_dec(x_13); -x_19 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; -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 -{ -lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; -x_21 = lean_ctor_get(x_13, 1); -lean_inc(x_21); -lean_dec(x_13); -x_22 = lean_ctor_get(x_14, 0); -lean_inc(x_22); -lean_dec(x_14); -x_23 = l_Lean_Expr_appArg_x21(x_1); -lean_inc(x_9); -lean_inc(x_8); -lean_inc(x_7); -lean_inc(x_6); -x_24 = l_USize_fromExpr(x_23, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_21); -if (lean_obj_tag(x_24) == 0) -{ -lean_object* x_25; -x_25 = lean_ctor_get(x_24, 0); -lean_inc(x_25); -if (lean_obj_tag(x_25) == 0) -{ -uint8_t x_26; -lean_dec(x_22); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_1); -x_26 = !lean_is_exclusive(x_24); -if (x_26 == 0) -{ -lean_object* x_27; lean_object* x_28; -x_27 = lean_ctor_get(x_24, 0); -lean_dec(x_27); -x_28 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; -lean_ctor_set(x_24, 0, x_28); -return x_24; -} -else -{ -lean_object* x_29; lean_object* x_30; lean_object* x_31; -x_29 = lean_ctor_get(x_24, 1); -lean_inc(x_29); -lean_dec(x_24); -x_30 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; -x_31 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_31, 0, x_30); -lean_ctor_set(x_31, 1, x_29); -return x_31; -} -} -else -{ -lean_object* x_32; lean_object* x_33; size_t x_34; size_t x_35; uint8_t x_36; lean_object* x_37; -x_32 = lean_ctor_get(x_24, 1); -lean_inc(x_32); -lean_dec(x_24); -x_33 = lean_ctor_get(x_25, 0); -lean_inc(x_33); -lean_dec(x_25); -x_34 = lean_ctor_get_usize(x_22, 1); -lean_dec(x_22); -x_35 = lean_ctor_get_usize(x_33, 1); -lean_dec(x_33); -x_36 = lean_usize_dec_le(x_35, x_34); -x_37 = l_Lean_Meta_Simp_evalPropStep(x_1, x_36, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_32); -return x_37; -} -} -else -{ -uint8_t x_38; -lean_dec(x_22); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_1); -x_38 = !lean_is_exclusive(x_24); -if (x_38 == 0) -{ -return x_24; -} -else -{ -lean_object* x_39; lean_object* x_40; lean_object* x_41; -x_39 = lean_ctor_get(x_24, 0); -x_40 = lean_ctor_get(x_24, 1); -lean_inc(x_40); -lean_inc(x_39); -lean_dec(x_24); -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; -} -} -} -} -else -{ -uint8_t x_42; -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_1); -x_42 = !lean_is_exclusive(x_13); -if (x_42 == 0) -{ -return x_13; -} -else -{ -lean_object* x_43; lean_object* x_44; lean_object* x_45; -x_43 = lean_ctor_get(x_13, 0); -x_44 = lean_ctor_get(x_13, 1); -lean_inc(x_44); -lean_inc(x_43); -lean_dec(x_13); -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_EXPORT lean_object* l_USize_reduceGE(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; uint8_t x_12; -x_10 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__535; -x_11 = lean_unsigned_to_nat(4u); -x_12 = l_Lean_Expr_isAppOfArity(x_1, x_10, x_11); -if (x_12 == 0) -{ -lean_object* x_13; lean_object* x_14; -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); -x_13 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; -x_14 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_14, 0, x_13); -lean_ctor_set(x_14, 1, x_9); -return x_14; -} -else -{ -lean_object* x_15; lean_object* x_16; -x_15 = lean_box(0); -x_16 = l_USize_reduceGE___lambda__1(x_1, x_15, 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_16; -} -} -} -LEAN_EXPORT lean_object* l_USize_reduceGE___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_reduceGE___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; -} -} -static lean_object* _init_l___regBuiltin_USize_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15704____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__525; -x_3 = l_Lean_Name_mkStr2(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___regBuiltin_USize_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15704____closed__2() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_USize_reduceGE), 9, 0); -return x_1; -} -} -LEAN_EXPORT lean_object* l___regBuiltin_USize_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15704_(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_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15704____closed__1; -x_3 = l___regBuiltin_USize_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15622____closed__5; -x_4 = l___regBuiltin_USize_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15704____closed__2; -x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); -return x_5; -} -} -LEAN_EXPORT lean_object* l___regBuiltin_USize_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15706_(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____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9618____closed__1; -x_3 = l___regBuiltin_USize_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15704____closed__1; -x_4 = 1; -x_5 = l___regBuiltin_USize_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15704____closed__2; -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_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15708_(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____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9620____closed__1; -x_3 = l___regBuiltin_USize_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15704____closed__1; -x_4 = 1; -x_5 = l___regBuiltin_USize_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15704____closed__2; -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_USize_reduceEq____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742____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; -lean_inc(x_1); -x_11 = l_Lean_Expr_appFn_x21(x_1); -x_12 = l_Lean_Expr_appArg_x21(x_11); -lean_dec(x_11); -lean_inc(x_9); -lean_inc(x_8); -lean_inc(x_7); -lean_inc(x_6); -x_13 = l_USize_fromExpr(x_12, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -if (lean_obj_tag(x_13) == 0) -{ -lean_object* x_14; -x_14 = lean_ctor_get(x_13, 0); -lean_inc(x_14); -if (lean_obj_tag(x_14) == 0) -{ -uint8_t x_15; -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_1); -x_15 = !lean_is_exclusive(x_13); -if (x_15 == 0) -{ -lean_object* x_16; lean_object* x_17; -x_16 = lean_ctor_get(x_13, 0); -lean_dec(x_16); -x_17 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; -lean_ctor_set(x_13, 0, x_17); -return x_13; -} -else -{ -lean_object* x_18; lean_object* x_19; lean_object* x_20; -x_18 = lean_ctor_get(x_13, 1); -lean_inc(x_18); -lean_dec(x_13); -x_19 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; -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 -{ -lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; -x_21 = lean_ctor_get(x_13, 1); -lean_inc(x_21); -lean_dec(x_13); -x_22 = lean_ctor_get(x_14, 0); -lean_inc(x_22); -lean_dec(x_14); -x_23 = l_Lean_Expr_appArg_x21(x_1); -lean_inc(x_9); -lean_inc(x_8); -lean_inc(x_7); -lean_inc(x_6); -x_24 = l_USize_fromExpr(x_23, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_21); -if (lean_obj_tag(x_24) == 0) -{ -lean_object* x_25; -x_25 = lean_ctor_get(x_24, 0); -lean_inc(x_25); -if (lean_obj_tag(x_25) == 0) -{ -uint8_t x_26; -lean_dec(x_22); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_1); -x_26 = !lean_is_exclusive(x_24); -if (x_26 == 0) -{ -lean_object* x_27; lean_object* x_28; -x_27 = lean_ctor_get(x_24, 0); -lean_dec(x_27); -x_28 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; -lean_ctor_set(x_24, 0, x_28); -return x_24; -} -else -{ -lean_object* x_29; lean_object* x_30; lean_object* x_31; -x_29 = lean_ctor_get(x_24, 1); -lean_inc(x_29); -lean_dec(x_24); -x_30 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; -x_31 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_31, 0, x_30); -lean_ctor_set(x_31, 1, x_29); -return x_31; -} -} -else -{ -lean_object* x_32; lean_object* x_33; size_t x_34; size_t x_35; uint8_t x_36; lean_object* x_37; -x_32 = lean_ctor_get(x_24, 1); -lean_inc(x_32); -lean_dec(x_24); -x_33 = lean_ctor_get(x_25, 0); -lean_inc(x_33); -lean_dec(x_25); -x_34 = lean_ctor_get_usize(x_22, 1); -lean_dec(x_22); -x_35 = lean_ctor_get_usize(x_33, 1); -lean_dec(x_33); -x_36 = lean_usize_dec_eq(x_34, x_35); -x_37 = l_Lean_Meta_Simp_evalPropStep(x_1, x_36, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_32); -return x_37; -} -} -else -{ -uint8_t x_38; -lean_dec(x_22); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_1); -x_38 = !lean_is_exclusive(x_24); -if (x_38 == 0) -{ -return x_24; -} -else -{ -lean_object* x_39; lean_object* x_40; lean_object* x_41; -x_39 = lean_ctor_get(x_24, 0); -x_40 = lean_ctor_get(x_24, 1); -lean_inc(x_40); -lean_inc(x_39); -lean_dec(x_24); -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; -} -} -} -} -else -{ -uint8_t x_42; -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_1); -x_42 = !lean_is_exclusive(x_13); -if (x_42 == 0) -{ -return x_13; -} -else -{ -lean_object* x_43; lean_object* x_44; lean_object* x_45; -x_43 = lean_ctor_get(x_13, 0); -x_44 = lean_ctor_get(x_13, 1); -lean_inc(x_44); -lean_inc(x_43); -lean_dec(x_13); -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_EXPORT lean_object* l_USize_reduceEq____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742_(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; uint8_t x_12; -x_10 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__546; -x_11 = lean_unsigned_to_nat(3u); -x_12 = l_Lean_Expr_isAppOfArity(x_1, x_10, x_11); -if (x_12 == 0) -{ -lean_object* x_13; lean_object* x_14; -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); -x_13 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; -x_14 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_14, 0, x_13); -lean_ctor_set(x_14, 1, x_9); -return x_14; -} -else -{ -lean_object* x_15; lean_object* x_16; -x_15 = lean_box(0); -x_16 = l_USize_reduceEq____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742____lambda__1(x_1, x_15, 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_16; -} -} -} -LEAN_EXPORT lean_object* l_USize_reduceEq____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742____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_reduceEq____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742____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; -} -} -static lean_object* _init_l___regBuiltin_USize_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15745____closed__1() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_USize_fromExpr___closed__2; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__538; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___regBuiltin_USize_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15745____closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_USize_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15745____closed__1; -x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__2; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___regBuiltin_USize_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15745____closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_USize_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15745____closed__2; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__18; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___regBuiltin_USize_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15745____closed__4() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_USize_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15745____closed__3; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__90; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___regBuiltin_USize_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15745____closed__5() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_USize_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15745____closed__4; -x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__6; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___regBuiltin_USize_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15745____closed__6() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_USize_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15745____closed__5; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__91; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___regBuiltin_USize_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15745____closed__7() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_USize_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15745____closed__6; -x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__9; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___regBuiltin_USize_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15745____closed__8() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_USize_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15745____closed__7; -x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__11; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___regBuiltin_USize_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15745____closed__9() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_USize_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15745____closed__8; -x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__13; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___regBuiltin_USize_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15745____closed__10() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_USize_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15745____closed__9; -x_2 = lean_unsigned_to_nat(14742u); -x_3 = l_Lean_Name_num___override(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___regBuiltin_USize_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15745____closed__11() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__18; -x_2 = l___regBuiltin_USize_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15380____closed__2; -x_3 = lean_array_push(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___regBuiltin_USize_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15745____closed__12() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_USize_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15745____closed__11; -x_2 = lean_box(3); -x_3 = lean_array_push(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___regBuiltin_USize_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15745____closed__13() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_USize_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15745____closed__12; -x_2 = lean_box(3); -x_3 = lean_array_push(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___regBuiltin_USize_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15745____closed__14() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_USize_reduceEq____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742_), 9, 0); -return x_1; -} -} -LEAN_EXPORT lean_object* l___regBuiltin_USize_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15745_(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_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15745____closed__10; -x_3 = l___regBuiltin_USize_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15745____closed__13; -x_4 = l___regBuiltin_USize_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15745____closed__14; -x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); -return x_5; -} -} -LEAN_EXPORT lean_object* l___regBuiltin_USize_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15747_(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____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9618____closed__1; -x_3 = l___regBuiltin_USize_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15745____closed__10; -x_4 = 1; -x_5 = l___regBuiltin_USize_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15745____closed__14; -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_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15749_(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____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9620____closed__1; -x_3 = l___regBuiltin_USize_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15745____closed__10; -x_4 = 1; -x_5 = l___regBuiltin_USize_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15745____closed__14; -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_USize_reduceNe____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742____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; -lean_inc(x_1); -x_11 = l_Lean_Expr_appFn_x21(x_1); -x_12 = l_Lean_Expr_appArg_x21(x_11); -lean_dec(x_11); -lean_inc(x_9); -lean_inc(x_8); -lean_inc(x_7); -lean_inc(x_6); -x_13 = l_USize_fromExpr(x_12, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -if (lean_obj_tag(x_13) == 0) -{ -lean_object* x_14; -x_14 = lean_ctor_get(x_13, 0); -lean_inc(x_14); -if (lean_obj_tag(x_14) == 0) -{ -uint8_t x_15; -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_1); -x_15 = !lean_is_exclusive(x_13); -if (x_15 == 0) -{ -lean_object* x_16; lean_object* x_17; -x_16 = lean_ctor_get(x_13, 0); -lean_dec(x_16); -x_17 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; -lean_ctor_set(x_13, 0, x_17); -return x_13; -} -else -{ -lean_object* x_18; lean_object* x_19; lean_object* x_20; -x_18 = lean_ctor_get(x_13, 1); -lean_inc(x_18); -lean_dec(x_13); -x_19 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; -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 -{ -lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; -x_21 = lean_ctor_get(x_13, 1); -lean_inc(x_21); -lean_dec(x_13); -x_22 = lean_ctor_get(x_14, 0); -lean_inc(x_22); -lean_dec(x_14); -x_23 = l_Lean_Expr_appArg_x21(x_1); -lean_inc(x_9); -lean_inc(x_8); -lean_inc(x_7); -lean_inc(x_6); -x_24 = l_USize_fromExpr(x_23, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_21); -if (lean_obj_tag(x_24) == 0) -{ -lean_object* x_25; -x_25 = lean_ctor_get(x_24, 0); -lean_inc(x_25); -if (lean_obj_tag(x_25) == 0) -{ -uint8_t x_26; -lean_dec(x_22); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_1); -x_26 = !lean_is_exclusive(x_24); -if (x_26 == 0) -{ -lean_object* x_27; lean_object* x_28; -x_27 = lean_ctor_get(x_24, 0); -lean_dec(x_27); -x_28 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; -lean_ctor_set(x_24, 0, x_28); -return x_24; -} -else -{ -lean_object* x_29; lean_object* x_30; lean_object* x_31; -x_29 = lean_ctor_get(x_24, 1); -lean_inc(x_29); -lean_dec(x_24); -x_30 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; -x_31 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_31, 0, x_30); -lean_ctor_set(x_31, 1, x_29); -return x_31; -} -} -else -{ -lean_object* x_32; lean_object* x_33; size_t x_34; size_t x_35; uint8_t x_36; uint8_t x_37; lean_object* x_38; -x_32 = lean_ctor_get(x_24, 1); -lean_inc(x_32); -lean_dec(x_24); -x_33 = lean_ctor_get(x_25, 0); -lean_inc(x_33); -lean_dec(x_25); -x_34 = lean_ctor_get_usize(x_22, 1); -lean_dec(x_22); -x_35 = lean_ctor_get_usize(x_33, 1); -lean_dec(x_33); -x_36 = lean_usize_dec_eq(x_34, x_35); -x_37 = l_instDecidableNot___rarg(x_36); -x_38 = l_Lean_Meta_Simp_evalPropStep(x_1, x_37, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_32); -return x_38; -} -} -else -{ -uint8_t x_39; -lean_dec(x_22); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_1); -x_39 = !lean_is_exclusive(x_24); -if (x_39 == 0) -{ -return x_24; -} -else -{ -lean_object* x_40; lean_object* x_41; lean_object* x_42; -x_40 = lean_ctor_get(x_24, 0); -x_41 = lean_ctor_get(x_24, 1); -lean_inc(x_41); -lean_inc(x_40); -lean_dec(x_24); -x_42 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_42, 0, x_40); -lean_ctor_set(x_42, 1, x_41); -return x_42; -} -} -} -} -else -{ -uint8_t x_43; -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_1); -x_43 = !lean_is_exclusive(x_13); -if (x_43 == 0) -{ -return x_13; -} -else -{ -lean_object* x_44; lean_object* x_45; lean_object* x_46; -x_44 = lean_ctor_get(x_13, 0); -x_45 = lean_ctor_get(x_13, 1); -lean_inc(x_45); -lean_inc(x_44); -lean_dec(x_13); -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_EXPORT lean_object* l_USize_reduceNe____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742_(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; uint8_t x_12; -x_10 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__559; -x_11 = lean_unsigned_to_nat(3u); -x_12 = l_Lean_Expr_isAppOfArity(x_1, x_10, x_11); -if (x_12 == 0) -{ -lean_object* x_13; lean_object* x_14; -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); -x_13 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; -x_14 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_14, 0, x_13); -lean_ctor_set(x_14, 1, x_9); -return x_14; -} -else -{ -lean_object* x_15; lean_object* x_16; -x_15 = lean_box(0); -x_16 = l_USize_reduceNe____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742____lambda__1(x_1, x_15, 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_16; -} -} -} -LEAN_EXPORT lean_object* l_USize_reduceNe____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742____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_reduceNe____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742____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; -} -} -static lean_object* _init_l___regBuiltin_USize_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15785____closed__1() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_USize_fromExpr___closed__2; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__551; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___regBuiltin_USize_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15785____closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_USize_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15785____closed__1; -x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__2; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___regBuiltin_USize_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15785____closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_USize_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15785____closed__2; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__18; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___regBuiltin_USize_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15785____closed__4() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_USize_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15785____closed__3; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__90; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___regBuiltin_USize_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15785____closed__5() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_USize_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15785____closed__4; -x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__6; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___regBuiltin_USize_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15785____closed__6() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_USize_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15785____closed__5; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__91; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___regBuiltin_USize_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15785____closed__7() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_USize_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15785____closed__6; -x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__9; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___regBuiltin_USize_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15785____closed__8() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_USize_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15785____closed__7; -x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__11; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___regBuiltin_USize_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15785____closed__9() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_USize_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15785____closed__8; -x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__13; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___regBuiltin_USize_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15785____closed__10() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_USize_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15785____closed__9; -x_2 = lean_unsigned_to_nat(14742u); -x_3 = l_Lean_Name_num___override(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___regBuiltin_USize_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15785____closed__11() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10021____closed__15; -x_2 = l___regBuiltin_USize_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15380____closed__2; -x_3 = lean_array_push(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___regBuiltin_USize_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15785____closed__12() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_USize_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15785____closed__11; -x_2 = lean_box(3); -x_3 = lean_array_push(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___regBuiltin_USize_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15785____closed__13() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_USize_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15785____closed__12; -x_2 = lean_box(3); -x_3 = lean_array_push(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___regBuiltin_USize_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15785____closed__14() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_USize_reduceNe____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742_), 9, 0); -return x_1; -} -} -LEAN_EXPORT lean_object* l___regBuiltin_USize_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15785_(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_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15785____closed__10; -x_3 = l___regBuiltin_USize_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15785____closed__13; -x_4 = l___regBuiltin_USize_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15785____closed__14; -x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); -return x_5; -} -} -LEAN_EXPORT lean_object* l___regBuiltin_USize_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15787_(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____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9618____closed__1; -x_3 = l___regBuiltin_USize_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15785____closed__10; -x_4 = 1; -x_5 = l___regBuiltin_USize_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15785____closed__14; -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_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15789_(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____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9620____closed__1; -x_3 = l___regBuiltin_USize_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15785____closed__10; -x_4 = 1; -x_5 = l___regBuiltin_USize_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15785____closed__14; -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_USize_reduceBEq____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742____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; -lean_inc(x_1); -x_11 = l_Lean_Expr_appFn_x21(x_1); -x_12 = l_Lean_Expr_appArg_x21(x_11); -lean_dec(x_11); -lean_inc(x_9); -lean_inc(x_8); -lean_inc(x_7); -lean_inc(x_6); -x_13 = l_USize_fromExpr(x_12, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -if (lean_obj_tag(x_13) == 0) -{ -lean_object* x_14; -x_14 = lean_ctor_get(x_13, 0); -lean_inc(x_14); -if (lean_obj_tag(x_14) == 0) -{ -uint8_t x_15; -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_1); -x_15 = !lean_is_exclusive(x_13); -if (x_15 == 0) -{ -lean_object* x_16; lean_object* x_17; -x_16 = lean_ctor_get(x_13, 0); -lean_dec(x_16); -x_17 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; -lean_ctor_set(x_13, 0, x_17); -return x_13; -} -else -{ -lean_object* x_18; lean_object* x_19; lean_object* x_20; -x_18 = lean_ctor_get(x_13, 1); -lean_inc(x_18); -lean_dec(x_13); -x_19 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; -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 -{ -lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; -x_21 = lean_ctor_get(x_13, 1); -lean_inc(x_21); -lean_dec(x_13); -x_22 = lean_ctor_get(x_14, 0); -lean_inc(x_22); -lean_dec(x_14); -x_23 = l_Lean_Expr_appArg_x21(x_1); -lean_dec(x_1); -x_24 = l_USize_fromExpr(x_23, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_21); -if (lean_obj_tag(x_24) == 0) -{ -lean_object* x_25; -x_25 = lean_ctor_get(x_24, 0); -lean_inc(x_25); -if (lean_obj_tag(x_25) == 0) -{ -uint8_t x_26; -lean_dec(x_22); -x_26 = !lean_is_exclusive(x_24); -if (x_26 == 0) -{ -lean_object* x_27; lean_object* x_28; -x_27 = lean_ctor_get(x_24, 0); -lean_dec(x_27); -x_28 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; -lean_ctor_set(x_24, 0, x_28); -return x_24; -} -else -{ -lean_object* x_29; lean_object* x_30; lean_object* x_31; -x_29 = lean_ctor_get(x_24, 1); -lean_inc(x_29); -lean_dec(x_24); -x_30 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; -x_31 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_31, 0, x_30); -lean_ctor_set(x_31, 1, x_29); -return x_31; -} -} -else -{ -uint8_t x_32; -x_32 = !lean_is_exclusive(x_24); -if (x_32 == 0) -{ -lean_object* x_33; lean_object* x_34; size_t x_35; size_t x_36; uint8_t x_37; -x_33 = lean_ctor_get(x_24, 0); -lean_dec(x_33); -x_34 = lean_ctor_get(x_25, 0); -lean_inc(x_34); -lean_dec(x_25); -x_35 = lean_ctor_get_usize(x_22, 1); -lean_dec(x_22); -x_36 = lean_ctor_get_usize(x_34, 1); -lean_dec(x_34); -x_37 = lean_usize_dec_eq(x_35, x_36); -if (x_37 == 0) -{ -lean_object* x_38; -x_38 = l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__5; -lean_ctor_set(x_24, 0, x_38); -return x_24; -} -else -{ -lean_object* x_39; -x_39 = l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__10; -lean_ctor_set(x_24, 0, x_39); -return x_24; -} -} -else -{ -lean_object* x_40; lean_object* x_41; size_t x_42; size_t x_43; uint8_t x_44; -x_40 = lean_ctor_get(x_24, 1); -lean_inc(x_40); -lean_dec(x_24); -x_41 = lean_ctor_get(x_25, 0); -lean_inc(x_41); -lean_dec(x_25); -x_42 = lean_ctor_get_usize(x_22, 1); -lean_dec(x_22); -x_43 = lean_ctor_get_usize(x_41, 1); -lean_dec(x_41); -x_44 = lean_usize_dec_eq(x_42, x_43); -if (x_44 == 0) -{ -lean_object* x_45; lean_object* x_46; -x_45 = l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__5; -x_46 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_46, 0, x_45); -lean_ctor_set(x_46, 1, x_40); -return x_46; -} -else -{ -lean_object* x_47; lean_object* x_48; -x_47 = l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__10; -x_48 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_48, 0, x_47); -lean_ctor_set(x_48, 1, x_40); -return x_48; -} -} -} -} -else -{ -uint8_t x_49; -lean_dec(x_22); -x_49 = !lean_is_exclusive(x_24); -if (x_49 == 0) -{ -return x_24; -} -else -{ -lean_object* x_50; lean_object* x_51; lean_object* x_52; -x_50 = lean_ctor_get(x_24, 0); -x_51 = lean_ctor_get(x_24, 1); -lean_inc(x_51); -lean_inc(x_50); -lean_dec(x_24); -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 -{ -uint8_t x_53; -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_1); -x_53 = !lean_is_exclusive(x_13); -if (x_53 == 0) -{ -return x_13; -} -else -{ -lean_object* x_54; lean_object* x_55; lean_object* x_56; -x_54 = lean_ctor_get(x_13, 0); -x_55 = lean_ctor_get(x_13, 1); -lean_inc(x_55); -lean_inc(x_54); -lean_dec(x_13); -x_56 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_56, 0, x_54); -lean_ctor_set(x_56, 1, x_55); -return x_56; -} -} -} -} -LEAN_EXPORT lean_object* l_USize_reduceBEq____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742_(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; uint8_t x_12; -x_10 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__574; -x_11 = lean_unsigned_to_nat(4u); -x_12 = l_Lean_Expr_isAppOfArity(x_1, x_10, x_11); -if (x_12 == 0) -{ -lean_object* x_13; lean_object* x_14; -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); -x_13 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; -x_14 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_14, 0, x_13); -lean_ctor_set(x_14, 1, x_9); -return x_14; -} -else -{ -lean_object* x_15; lean_object* x_16; -x_15 = lean_box(0); -x_16 = l_USize_reduceBEq____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742____lambda__1(x_1, x_15, 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_16; -} -} -} -LEAN_EXPORT lean_object* l_USize_reduceBEq____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742____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_reduceBEq____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742____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; -} -} -static lean_object* _init_l___regBuiltin_USize_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15826____closed__1() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_USize_fromExpr___closed__2; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__564; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___regBuiltin_USize_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15826____closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_USize_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15826____closed__1; -x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__2; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___regBuiltin_USize_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15826____closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_USize_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15826____closed__2; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__18; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___regBuiltin_USize_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15826____closed__4() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_USize_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15826____closed__3; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__90; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___regBuiltin_USize_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15826____closed__5() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_USize_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15826____closed__4; -x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__6; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___regBuiltin_USize_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15826____closed__6() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_USize_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15826____closed__5; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__91; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___regBuiltin_USize_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15826____closed__7() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_USize_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15826____closed__6; -x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__9; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___regBuiltin_USize_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15826____closed__8() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_USize_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15826____closed__7; -x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__11; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___regBuiltin_USize_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15826____closed__9() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_USize_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15826____closed__8; -x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__13; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___regBuiltin_USize_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15826____closed__10() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_USize_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15826____closed__9; -x_2 = lean_unsigned_to_nat(14742u); -x_3 = l_Lean_Name_num___override(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___regBuiltin_USize_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15826____closed__11() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10062____closed__12; -x_2 = l___regBuiltin_USize_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15380____closed__2; -x_3 = lean_array_push(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___regBuiltin_USize_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15826____closed__12() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_USize_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15826____closed__11; -x_2 = lean_box(3); -x_3 = lean_array_push(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___regBuiltin_USize_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15826____closed__13() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_USize_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15826____closed__12; -x_2 = lean_box(3); -x_3 = lean_array_push(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___regBuiltin_USize_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15826____closed__14() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_USize_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15826____closed__13; -x_2 = lean_box(3); -x_3 = lean_array_push(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___regBuiltin_USize_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15826____closed__15() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_USize_reduceBEq____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742_), 9, 0); -return x_1; -} -} -LEAN_EXPORT lean_object* l___regBuiltin_USize_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15826_(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_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15826____closed__10; -x_3 = l___regBuiltin_USize_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15826____closed__14; -x_4 = l___regBuiltin_USize_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15826____closed__15; -x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); -return x_5; -} -} -LEAN_EXPORT lean_object* l___regBuiltin_USize_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15828_(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____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9618____closed__1; -x_3 = l___regBuiltin_USize_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15826____closed__10; -x_4 = 1; -x_5 = l___regBuiltin_USize_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15826____closed__15; -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_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15830_(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____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9620____closed__1; -x_3 = l___regBuiltin_USize_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15826____closed__10; -x_4 = 1; -x_5 = l___regBuiltin_USize_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15826____closed__15; -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_USize_reduceBNe____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742____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; -lean_inc(x_1); -x_11 = l_Lean_Expr_appFn_x21(x_1); -x_12 = l_Lean_Expr_appArg_x21(x_11); -lean_dec(x_11); -lean_inc(x_9); -lean_inc(x_8); -lean_inc(x_7); -lean_inc(x_6); -x_13 = l_USize_fromExpr(x_12, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -if (lean_obj_tag(x_13) == 0) -{ -lean_object* x_14; -x_14 = lean_ctor_get(x_13, 0); -lean_inc(x_14); -if (lean_obj_tag(x_14) == 0) -{ -uint8_t x_15; -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_1); -x_15 = !lean_is_exclusive(x_13); -if (x_15 == 0) -{ -lean_object* x_16; lean_object* x_17; -x_16 = lean_ctor_get(x_13, 0); -lean_dec(x_16); -x_17 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; -lean_ctor_set(x_13, 0, x_17); -return x_13; -} -else -{ -lean_object* x_18; lean_object* x_19; lean_object* x_20; -x_18 = lean_ctor_get(x_13, 1); -lean_inc(x_18); -lean_dec(x_13); -x_19 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; -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 -{ -lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; -x_21 = lean_ctor_get(x_13, 1); -lean_inc(x_21); -lean_dec(x_13); -x_22 = lean_ctor_get(x_14, 0); -lean_inc(x_22); -lean_dec(x_14); -x_23 = l_Lean_Expr_appArg_x21(x_1); -lean_dec(x_1); -x_24 = l_USize_fromExpr(x_23, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_21); -if (lean_obj_tag(x_24) == 0) -{ -lean_object* x_25; -x_25 = lean_ctor_get(x_24, 0); -lean_inc(x_25); -if (lean_obj_tag(x_25) == 0) -{ -uint8_t x_26; -lean_dec(x_22); -x_26 = !lean_is_exclusive(x_24); -if (x_26 == 0) -{ -lean_object* x_27; lean_object* x_28; -x_27 = lean_ctor_get(x_24, 0); -lean_dec(x_27); -x_28 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; -lean_ctor_set(x_24, 0, x_28); -return x_24; -} -else -{ -lean_object* x_29; lean_object* x_30; lean_object* x_31; -x_29 = lean_ctor_get(x_24, 1); -lean_inc(x_29); -lean_dec(x_24); -x_30 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; -x_31 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_31, 0, x_30); -lean_ctor_set(x_31, 1, x_29); -return x_31; -} -} -else -{ -uint8_t x_32; -x_32 = !lean_is_exclusive(x_24); -if (x_32 == 0) -{ -lean_object* x_33; lean_object* x_34; size_t x_35; size_t x_36; uint8_t x_37; -x_33 = lean_ctor_get(x_24, 0); -lean_dec(x_33); -x_34 = lean_ctor_get(x_25, 0); -lean_inc(x_34); -lean_dec(x_25); -x_35 = lean_ctor_get_usize(x_22, 1); -lean_dec(x_22); -x_36 = lean_ctor_get_usize(x_34, 1); -lean_dec(x_34); -x_37 = lean_usize_dec_eq(x_35, x_36); -if (x_37 == 0) -{ -lean_object* x_38; -x_38 = l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__10; -lean_ctor_set(x_24, 0, x_38); -return x_24; -} -else -{ -lean_object* x_39; -x_39 = l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__5; -lean_ctor_set(x_24, 0, x_39); -return x_24; -} -} -else -{ -lean_object* x_40; lean_object* x_41; size_t x_42; size_t x_43; uint8_t x_44; -x_40 = lean_ctor_get(x_24, 1); -lean_inc(x_40); -lean_dec(x_24); -x_41 = lean_ctor_get(x_25, 0); -lean_inc(x_41); -lean_dec(x_25); -x_42 = lean_ctor_get_usize(x_22, 1); -lean_dec(x_22); -x_43 = lean_ctor_get_usize(x_41, 1); -lean_dec(x_41); -x_44 = lean_usize_dec_eq(x_42, x_43); -if (x_44 == 0) -{ -lean_object* x_45; lean_object* x_46; -x_45 = l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__10; -x_46 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_46, 0, x_45); -lean_ctor_set(x_46, 1, x_40); -return x_46; -} -else -{ -lean_object* x_47; lean_object* x_48; -x_47 = l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__5; -x_48 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_48, 0, x_47); -lean_ctor_set(x_48, 1, x_40); -return x_48; -} -} -} -} -else -{ -uint8_t x_49; -lean_dec(x_22); -x_49 = !lean_is_exclusive(x_24); -if (x_49 == 0) -{ -return x_24; -} -else -{ -lean_object* x_50; lean_object* x_51; lean_object* x_52; -x_50 = lean_ctor_get(x_24, 0); -x_51 = lean_ctor_get(x_24, 1); -lean_inc(x_51); -lean_inc(x_50); -lean_dec(x_24); -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 -{ -uint8_t x_53; -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_1); -x_53 = !lean_is_exclusive(x_13); -if (x_53 == 0) -{ -return x_13; -} -else -{ -lean_object* x_54; lean_object* x_55; lean_object* x_56; -x_54 = lean_ctor_get(x_13, 0); -x_55 = lean_ctor_get(x_13, 1); -lean_inc(x_55); -lean_inc(x_54); -lean_dec(x_13); -x_56 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_56, 0, x_54); -lean_ctor_set(x_56, 1, x_55); -return x_56; -} -} -} -} -LEAN_EXPORT lean_object* l_USize_reduceBNe____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742_(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; uint8_t x_12; -x_10 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__585; -x_11 = lean_unsigned_to_nat(4u); -x_12 = l_Lean_Expr_isAppOfArity(x_1, x_10, x_11); -if (x_12 == 0) -{ -lean_object* x_13; lean_object* x_14; -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); -x_13 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; -x_14 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_14, 0, x_13); -lean_ctor_set(x_14, 1, x_9); -return x_14; -} -else -{ -lean_object* x_15; lean_object* x_16; -x_15 = lean_box(0); -x_16 = l_USize_reduceBNe____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742____lambda__1(x_1, x_15, 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_16; -} -} -} -LEAN_EXPORT lean_object* l_USize_reduceBNe____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742____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_reduceBNe____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742____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; -} -} -static lean_object* _init_l___regBuiltin_USize_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15866____closed__1() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_USize_fromExpr___closed__2; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__577; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___regBuiltin_USize_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15866____closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_USize_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15866____closed__1; -x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__2; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___regBuiltin_USize_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15866____closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_USize_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15866____closed__2; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__18; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___regBuiltin_USize_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15866____closed__4() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_USize_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15866____closed__3; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__90; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___regBuiltin_USize_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15866____closed__5() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_USize_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15866____closed__4; -x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__6; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___regBuiltin_USize_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15866____closed__6() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_USize_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15866____closed__5; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__91; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___regBuiltin_USize_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15866____closed__7() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_USize_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15866____closed__6; -x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__9; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___regBuiltin_USize_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15866____closed__8() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_USize_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15866____closed__7; -x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__11; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___regBuiltin_USize_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15866____closed__9() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_USize_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15866____closed__8; -x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__13; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___regBuiltin_USize_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15866____closed__10() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_USize_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15866____closed__9; -x_2 = lean_unsigned_to_nat(14742u); -x_3 = l_Lean_Name_num___override(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___regBuiltin_USize_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15866____closed__11() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10102____closed__12; -x_2 = l___regBuiltin_USize_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15380____closed__2; -x_3 = lean_array_push(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___regBuiltin_USize_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15866____closed__12() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_USize_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15866____closed__11; -x_2 = lean_box(3); -x_3 = lean_array_push(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___regBuiltin_USize_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15866____closed__13() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_USize_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15866____closed__12; -x_2 = lean_box(3); -x_3 = lean_array_push(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___regBuiltin_USize_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15866____closed__14() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_USize_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15866____closed__13; -x_2 = lean_box(3); -x_3 = lean_array_push(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___regBuiltin_USize_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15866____closed__15() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_USize_reduceBNe____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742_), 9, 0); -return x_1; -} -} -LEAN_EXPORT lean_object* l___regBuiltin_USize_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15866_(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_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15866____closed__10; -x_3 = l___regBuiltin_USize_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15866____closed__14; -x_4 = l___regBuiltin_USize_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15866____closed__15; -x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); -return x_5; -} -} -LEAN_EXPORT lean_object* l___regBuiltin_USize_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15868_(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____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9618____closed__1; -x_3 = l___regBuiltin_USize_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15866____closed__10; -x_4 = 1; -x_5 = l___regBuiltin_USize_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15866____closed__15; -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_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15870_(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____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9620____closed__1; -x_3 = l___regBuiltin_USize_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15866____closed__10; -x_4 = 1; -x_5 = l___regBuiltin_USize_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15866____closed__15; -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_USize_reduceOfNatCore___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_Expr_appFn_x21(x_1); -x_12 = l_Lean_Expr_appArg_x21(x_11); -lean_dec(x_11); -x_13 = l_Nat_fromExpr_x3f(x_12, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -if (lean_obj_tag(x_13) == 0) -{ -lean_object* x_14; -x_14 = lean_ctor_get(x_13, 0); -lean_inc(x_14); -if (lean_obj_tag(x_14) == 0) -{ -uint8_t x_15; -x_15 = !lean_is_exclusive(x_13); -if (x_15 == 0) -{ -lean_object* x_16; lean_object* x_17; -x_16 = lean_ctor_get(x_13, 0); -lean_dec(x_16); -x_17 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; -lean_ctor_set(x_13, 0, x_17); -return x_13; -} -else -{ -lean_object* x_18; lean_object* x_19; lean_object* x_20; -x_18 = lean_ctor_get(x_13, 1); -lean_inc(x_18); -lean_dec(x_13); -x_19 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; -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; -x_21 = !lean_is_exclusive(x_13); -if (x_21 == 0) -{ -lean_object* x_22; lean_object* x_23; size_t x_24; lean_object* x_25; lean_object* x_26; uint32_t x_27; uint8_t x_28; lean_object* x_29; lean_object* x_30; -x_22 = lean_ctor_get(x_13, 0); -lean_dec(x_22); -x_23 = lean_ctor_get(x_14, 0); -lean_inc(x_23); -lean_dec(x_14); -x_24 = lean_usize_of_nat(x_23); -lean_dec(x_23); -x_25 = l_USize_toExprCore(x_24); -x_26 = lean_box(0); -x_27 = 0; -x_28 = 1; -x_29 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_29, 0, x_25); -lean_ctor_set(x_29, 1, x_26); -lean_ctor_set_uint32(x_29, sizeof(void*)*2, x_27); -lean_ctor_set_uint8(x_29, sizeof(void*)*2 + 4, x_28); -x_30 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_30, 0, x_29); -lean_ctor_set(x_13, 0, x_30); -return x_13; -} -else -{ -lean_object* x_31; lean_object* x_32; size_t x_33; lean_object* x_34; lean_object* x_35; uint32_t x_36; uint8_t x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; -x_31 = lean_ctor_get(x_13, 1); -lean_inc(x_31); -lean_dec(x_13); -x_32 = lean_ctor_get(x_14, 0); -lean_inc(x_32); -lean_dec(x_14); -x_33 = lean_usize_of_nat(x_32); -lean_dec(x_32); -x_34 = l_USize_toExprCore(x_33); -x_35 = lean_box(0); -x_36 = 0; -x_37 = 1; -x_38 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_38, 0, x_34); -lean_ctor_set(x_38, 1, x_35); -lean_ctor_set_uint32(x_38, sizeof(void*)*2, x_36); -lean_ctor_set_uint8(x_38, sizeof(void*)*2 + 4, x_37); -x_39 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_39, 0, x_38); -x_40 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_40, 0, x_39); -lean_ctor_set(x_40, 1, x_31); -return x_40; -} -} -} -else -{ -uint8_t x_41; -x_41 = !lean_is_exclusive(x_13); -if (x_41 == 0) -{ -return x_13; -} -else -{ -lean_object* x_42; lean_object* x_43; lean_object* x_44; -x_42 = lean_ctor_get(x_13, 0); -x_43 = lean_ctor_get(x_13, 1); -lean_inc(x_43); -lean_inc(x_42); -lean_dec(x_13); -x_44 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_44, 0, x_42); -lean_ctor_set(x_44, 1, x_43); -return x_44; -} -} -} -} -static lean_object* _init_l_USize_reduceOfNatCore___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__3; -x_3 = l_Lean_Name_mkStr2(x_1, x_2); -return x_3; -} -} -LEAN_EXPORT lean_object* l_USize_reduceOfNatCore(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; uint8_t x_12; -x_10 = l_USize_reduceOfNatCore___closed__1; -x_11 = lean_unsigned_to_nat(2u); -x_12 = l_Lean_Expr_isAppOfArity(x_1, x_10, x_11); -if (x_12 == 0) -{ -lean_object* x_13; lean_object* x_14; -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); -x_13 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; -x_14 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_14, 0, x_13); -lean_ctor_set(x_14, 1, x_9); -return x_14; -} -else -{ -lean_object* x_15; lean_object* x_16; -x_15 = lean_box(0); -x_16 = l_USize_reduceOfNatCore___lambda__1(x_1, x_15, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -return x_16; -} -} -} -LEAN_EXPORT lean_object* l_USize_reduceOfNatCore___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_reduceOfNatCore___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_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -return x_11; -} -} -static lean_object* _init_l___regBuiltin_USize_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15986____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__590; -x_3 = l_Lean_Name_mkStr2(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___regBuiltin_USize_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15986____closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_USize_reduceOfNatCore___closed__1; -x_2 = lean_unsigned_to_nat(2u); -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_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15986____closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt8_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10222____closed__3; -x_2 = l___regBuiltin_USize_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15986____closed__2; -x_3 = lean_array_push(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___regBuiltin_USize_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15986____closed__4() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_USize_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15986____closed__3; -x_2 = lean_box(3); -x_3 = lean_array_push(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___regBuiltin_USize_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15986____closed__5() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_USize_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15986____closed__4; -x_2 = lean_box(3); -x_3 = lean_array_push(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___regBuiltin_USize_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15986____closed__6() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_USize_reduceOfNatCore), 9, 0); -return x_1; -} -} -LEAN_EXPORT lean_object* l___regBuiltin_USize_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15986_(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_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15986____closed__1; -x_3 = l___regBuiltin_USize_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15986____closed__5; -x_4 = l___regBuiltin_USize_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15986____closed__6; -x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); -return x_5; -} -} -LEAN_EXPORT lean_object* l___regBuiltin_USize_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15988_(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____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9618____closed__1; -x_3 = l___regBuiltin_USize_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15986____closed__1; -x_4 = 1; -x_5 = l___regBuiltin_USize_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15986____closed__6; -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_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15990_(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____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9620____closed__1; -x_3 = l___regBuiltin_USize_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15986____closed__1; -x_4 = 1; -x_5 = l___regBuiltin_USize_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15986____closed__6; -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_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; -x_11 = l_Lean_Expr_appArg_x21(x_1); -x_12 = l_USize_fromExpr(x_11, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -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; -x_14 = !lean_is_exclusive(x_12); -if (x_14 == 0) -{ -lean_object* x_15; lean_object* x_16; -x_15 = lean_ctor_get(x_12, 0); -lean_dec(x_15); -x_16 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; -lean_ctor_set(x_12, 0, x_16); -return x_12; -} -else -{ -lean_object* x_17; lean_object* x_18; lean_object* x_19; -x_17 = lean_ctor_get(x_12, 1); -lean_inc(x_17); -lean_dec(x_12); -x_18 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; -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 -{ -uint8_t x_20; -x_20 = !lean_is_exclusive(x_12); -if (x_20 == 0) -{ -lean_object* x_21; lean_object* x_22; size_t x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; uint32_t x_27; uint8_t x_28; lean_object* x_29; lean_object* x_30; -x_21 = lean_ctor_get(x_12, 0); -lean_dec(x_21); -x_22 = lean_ctor_get(x_13, 0); -lean_inc(x_22); -lean_dec(x_13); -x_23 = lean_ctor_get_usize(x_22, 1); -lean_dec(x_22); -x_24 = lean_usize_to_nat(x_23); -x_25 = l_Lean_mkNatLit(x_24); -x_26 = lean_box(0); -x_27 = 0; -x_28 = 1; -x_29 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_29, 0, x_25); -lean_ctor_set(x_29, 1, x_26); -lean_ctor_set_uint32(x_29, sizeof(void*)*2, x_27); -lean_ctor_set_uint8(x_29, sizeof(void*)*2 + 4, x_28); -x_30 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_30, 0, x_29); -lean_ctor_set(x_12, 0, x_30); -return x_12; -} -else -{ -lean_object* x_31; lean_object* x_32; size_t x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; uint32_t x_37; uint8_t x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; -x_31 = lean_ctor_get(x_12, 1); -lean_inc(x_31); -lean_dec(x_12); -x_32 = lean_ctor_get(x_13, 0); -lean_inc(x_32); -lean_dec(x_13); -x_33 = lean_ctor_get_usize(x_32, 1); -lean_dec(x_32); -x_34 = lean_usize_to_nat(x_33); -x_35 = l_Lean_mkNatLit(x_34); -x_36 = lean_box(0); -x_37 = 0; -x_38 = 1; -x_39 = lean_alloc_ctor(0, 2, 5); -lean_ctor_set(x_39, 0, x_35); -lean_ctor_set(x_39, 1, x_36); -lean_ctor_set_uint32(x_39, sizeof(void*)*2, x_37); -lean_ctor_set_uint8(x_39, sizeof(void*)*2 + 4, x_38); -x_40 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_40, 0, x_39); -x_41 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_41, 0, x_40); -lean_ctor_set(x_41, 1, x_31); -return x_41; -} -} -} -else -{ -uint8_t x_42; -x_42 = !lean_is_exclusive(x_12); -if (x_42 == 0) -{ -return x_12; -} -else -{ -lean_object* x_43; lean_object* x_44; lean_object* x_45; -x_43 = lean_ctor_get(x_12, 0); -x_44 = lean_ctor_get(x_12, 1); -lean_inc(x_44); -lean_inc(x_43); -lean_dec(x_12); -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; -} -} -} -} -static lean_object* _init_l_USize_reduceToNat___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__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; uint8_t x_12; -x_10 = l_USize_reduceToNat___closed__1; -x_11 = lean_unsigned_to_nat(1u); -x_12 = l_Lean_Expr_isAppOfArity(x_1, x_10, x_11); -if (x_12 == 0) -{ -lean_object* x_13; lean_object* x_14; -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); -x_13 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; -x_14 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_14, 0, x_13); -lean_ctor_set(x_14, 1, x_9); -return x_14; -} -else -{ -lean_object* x_15; lean_object* x_16; -x_15 = lean_box(0); -x_16 = l_USize_reduceToNat___lambda__1(x_1, x_15, 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_16; -} -} -} -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); -lean_dec(x_1); -return x_11; -} -} -LEAN_EXPORT lean_object* l_USize_reduceToNat___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(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); -lean_dec(x_1); -return x_10; -} -} -static lean_object* _init_l___regBuiltin_USize_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_16102____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__602; -x_3 = l_Lean_Name_mkStr2(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___regBuiltin_USize_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_16102____closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_USize_reduceToNat___closed__1; -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____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_16102____closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__67; -x_2 = l___regBuiltin_USize_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_16102____closed__2; -x_3 = lean_array_push(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___regBuiltin_USize_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_16102____closed__4() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_USize_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_16102____closed__3; -x_2 = lean_box(3); -x_3 = lean_array_push(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___regBuiltin_USize_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_16102____closed__5() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_USize_reduceToNat___boxed), 9, 0); -return x_1; -} -} -LEAN_EXPORT lean_object* l___regBuiltin_USize_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_16102_(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____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_16102____closed__1; -x_3 = l___regBuiltin_USize_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_16102____closed__4; -x_4 = l___regBuiltin_USize_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_16102____closed__5; -x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); -return x_5; -} -} -LEAN_EXPORT lean_object* l___regBuiltin_USize_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_16104_(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____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9618____closed__1; -x_3 = l___regBuiltin_USize_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_16102____closed__1; -x_4 = 1; -x_5 = l___regBuiltin_USize_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_16102____closed__5; -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____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_16106_(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____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9620____closed__1; -x_3 = l___regBuiltin_USize_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_16102____closed__1; -x_4 = 1; -x_5 = l___regBuiltin_USize_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_16102____closed__5; -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_USize_isValue____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742_(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; uint8_t x_12; -x_10 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__125; -x_11 = lean_unsigned_to_nat(3u); -x_12 = l_Lean_Expr_isAppOfArity(x_1, x_10, x_11); -if (x_12 == 0) -{ -lean_object* x_13; lean_object* x_14; -lean_dec(x_1); -x_13 = l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1; -x_14 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_14, 0, x_13); -lean_ctor_set(x_14, 1, x_9); -return x_14; -} -else -{ -lean_object* x_15; lean_object* x_16; -x_15 = lean_box(0); -x_16 = l_UInt8_isValue____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1(x_1, x_15, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); -return x_16; -} -} -} -LEAN_EXPORT lean_object* l_USize_isValue____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742____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_isValue____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742_(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); -return x_10; -} -} -static lean_object* _init_l___regBuiltin_USize_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__16178____closed__1() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_USize_fromExpr___closed__2; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__621; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___regBuiltin_USize_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__16178____closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_USize_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__16178____closed__1; -x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__2; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___regBuiltin_USize_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__16178____closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_USize_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__16178____closed__2; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__18; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___regBuiltin_USize_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__16178____closed__4() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_USize_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__16178____closed__3; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__90; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___regBuiltin_USize_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__16178____closed__5() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_USize_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__16178____closed__4; -x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__6; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___regBuiltin_USize_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__16178____closed__6() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_USize_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__16178____closed__5; -x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__91; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___regBuiltin_USize_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__16178____closed__7() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_USize_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__16178____closed__6; -x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__9; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___regBuiltin_USize_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__16178____closed__8() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_USize_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__16178____closed__7; -x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__11; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___regBuiltin_USize_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__16178____closed__9() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_USize_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__16178____closed__8; -x_2 = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__13; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___regBuiltin_USize_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__16178____closed__10() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_USize_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__16178____closed__9; -x_2 = lean_unsigned_to_nat(14742u); -x_3 = l_Lean_Name_num___override(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___regBuiltin_USize_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__16178____closed__11() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10414____closed__12; -x_2 = l___regBuiltin_USize_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15380____closed__2; -x_3 = lean_array_push(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___regBuiltin_USize_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__16178____closed__12() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_USize_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__16178____closed__11; -x_2 = lean_box(3); -x_3 = lean_array_push(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___regBuiltin_USize_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__16178____closed__13() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_USize_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__16178____closed__12; -x_2 = lean_box(3); -x_3 = lean_array_push(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___regBuiltin_USize_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__16178____closed__14() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_USize_isValue____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742____boxed), 9, 0); -return x_1; -} -} -LEAN_EXPORT lean_object* l___regBuiltin_USize_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__16178_(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_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__16178____closed__10; -x_3 = l___regBuiltin_USize_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__16178____closed__13; -x_4 = l___regBuiltin_USize_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__16178____closed__14; -x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); -return x_5; -} -} -LEAN_EXPORT lean_object* l___regBuiltin_USize_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__16180_(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____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9620____closed__1; -x_3 = l___regBuiltin_USize_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__16178____closed__10; -x_4 = 1; -x_5 = l___regBuiltin_USize_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__16178____closed__14; +x_5 = l___regBuiltin_UInt64_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12838____closed__14; 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; LEAN_EXPORT lean_object* initialize_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt(uint8_t builtin, lean_object* w) { lean_object * res; if (_G_initialized) return lean_io_result_mk_ok(lean_box(0)); _G_initialized = true; +res = initialize_Lean_Meta_LitValues(builtin, lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); res = initialize_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat(builtin, lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); @@ -48107,2555 +36849,1850 @@ l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__comman lean_mark_persistent(l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__497); l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__498 = _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__498(); lean_mark_persistent(l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__498); -l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__499 = _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__499(); -lean_mark_persistent(l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__499); -l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__500 = _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__500(); -lean_mark_persistent(l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__500); -l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__501 = _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__501(); -lean_mark_persistent(l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__501); -l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__502 = _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__502(); -lean_mark_persistent(l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__502); -l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__503 = _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__503(); -lean_mark_persistent(l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__503); -l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__504 = _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__504(); -lean_mark_persistent(l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__504); -l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__505 = _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__505(); -lean_mark_persistent(l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__505); -l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__506 = _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__506(); -lean_mark_persistent(l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__506); -l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__507 = _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__507(); -lean_mark_persistent(l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__507); -l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__508 = _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__508(); -lean_mark_persistent(l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__508); -l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__509 = _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__509(); -lean_mark_persistent(l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__509); -l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__510 = _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__510(); -lean_mark_persistent(l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__510); -l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__511 = _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__511(); -lean_mark_persistent(l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__511); -l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__512 = _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__512(); -lean_mark_persistent(l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__512); -l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__513 = _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__513(); -lean_mark_persistent(l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__513); -l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__514 = _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__514(); -lean_mark_persistent(l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__514); -l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__515 = _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__515(); -lean_mark_persistent(l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__515); -l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__516 = _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__516(); -lean_mark_persistent(l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__516); -l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__517 = _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__517(); -lean_mark_persistent(l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__517); -l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__518 = _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__518(); -lean_mark_persistent(l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__518); -l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__519 = _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__519(); -lean_mark_persistent(l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__519); -l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__520 = _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__520(); -lean_mark_persistent(l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__520); -l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__521 = _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__521(); -lean_mark_persistent(l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__521); -l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__522 = _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__522(); -lean_mark_persistent(l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__522); -l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__523 = _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__523(); -lean_mark_persistent(l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__523); -l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__524 = _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__524(); -lean_mark_persistent(l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__524); -l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__525 = _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__525(); -lean_mark_persistent(l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__525); -l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__526 = _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__526(); -lean_mark_persistent(l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__526); -l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__527 = _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__527(); -lean_mark_persistent(l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__527); -l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__528 = _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__528(); -lean_mark_persistent(l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__528); -l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__529 = _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__529(); -lean_mark_persistent(l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__529); -l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__530 = _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__530(); -lean_mark_persistent(l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__530); -l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__531 = _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__531(); -lean_mark_persistent(l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__531); -l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__532 = _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__532(); -lean_mark_persistent(l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__532); -l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__533 = _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__533(); -lean_mark_persistent(l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__533); -l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__534 = _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__534(); -lean_mark_persistent(l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__534); -l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__535 = _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__535(); -lean_mark_persistent(l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__535); -l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__536 = _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__536(); -lean_mark_persistent(l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__536); -l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__537 = _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__537(); -lean_mark_persistent(l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__537); -l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__538 = _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__538(); -lean_mark_persistent(l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__538); -l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__539 = _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__539(); -lean_mark_persistent(l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__539); -l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__540 = _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__540(); -lean_mark_persistent(l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__540); -l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__541 = _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__541(); -lean_mark_persistent(l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__541); -l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__542 = _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__542(); -lean_mark_persistent(l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__542); -l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__543 = _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__543(); -lean_mark_persistent(l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__543); -l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__544 = _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__544(); -lean_mark_persistent(l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__544); -l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__545 = _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__545(); -lean_mark_persistent(l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__545); -l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__546 = _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__546(); -lean_mark_persistent(l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__546); -l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__547 = _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__547(); -lean_mark_persistent(l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__547); -l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__548 = _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__548(); -lean_mark_persistent(l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__548); -l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__549 = _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__549(); -lean_mark_persistent(l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__549); -l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__550 = _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__550(); -lean_mark_persistent(l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__550); -l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__551 = _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__551(); -lean_mark_persistent(l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__551); -l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__552 = _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__552(); -lean_mark_persistent(l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__552); -l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__553 = _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__553(); -lean_mark_persistent(l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__553); -l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__554 = _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__554(); -lean_mark_persistent(l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__554); -l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__555 = _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__555(); -lean_mark_persistent(l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__555); -l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__556 = _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__556(); -lean_mark_persistent(l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__556); -l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__557 = _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__557(); -lean_mark_persistent(l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__557); -l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__558 = _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__558(); -lean_mark_persistent(l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__558); -l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__559 = _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__559(); -lean_mark_persistent(l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__559); -l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__560 = _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__560(); -lean_mark_persistent(l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__560); -l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__561 = _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__561(); -lean_mark_persistent(l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__561); -l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__562 = _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__562(); -lean_mark_persistent(l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__562); -l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__563 = _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__563(); -lean_mark_persistent(l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__563); -l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__564 = _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__564(); -lean_mark_persistent(l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__564); -l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__565 = _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__565(); -lean_mark_persistent(l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__565); -l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__566 = _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__566(); -lean_mark_persistent(l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__566); -l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__567 = _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__567(); -lean_mark_persistent(l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__567); -l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__568 = _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__568(); -lean_mark_persistent(l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__568); -l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__569 = _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__569(); -lean_mark_persistent(l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__569); -l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__570 = _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__570(); -lean_mark_persistent(l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__570); -l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__571 = _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__571(); -lean_mark_persistent(l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__571); -l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__572 = _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__572(); -lean_mark_persistent(l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__572); -l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__573 = _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__573(); -lean_mark_persistent(l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__573); -l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__574 = _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__574(); -lean_mark_persistent(l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__574); -l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__575 = _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__575(); -lean_mark_persistent(l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__575); -l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__576 = _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__576(); -lean_mark_persistent(l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__576); -l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__577 = _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__577(); -lean_mark_persistent(l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__577); -l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__578 = _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__578(); -lean_mark_persistent(l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__578); -l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__579 = _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__579(); -lean_mark_persistent(l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__579); -l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__580 = _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__580(); -lean_mark_persistent(l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__580); -l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__581 = _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__581(); -lean_mark_persistent(l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__581); -l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__582 = _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__582(); -lean_mark_persistent(l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__582); -l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__583 = _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__583(); -lean_mark_persistent(l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__583); -l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__584 = _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__584(); -lean_mark_persistent(l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__584); -l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__585 = _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__585(); -lean_mark_persistent(l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__585); -l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__586 = _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__586(); -lean_mark_persistent(l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__586); -l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__587 = _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__587(); -lean_mark_persistent(l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__587); -l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__588 = _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__588(); -lean_mark_persistent(l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__588); -l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__589 = _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__589(); -lean_mark_persistent(l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__589); -l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__590 = _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__590(); -lean_mark_persistent(l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__590); -l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__591 = _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__591(); -lean_mark_persistent(l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__591); -l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__592 = _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__592(); -lean_mark_persistent(l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__592); -l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__593 = _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__593(); -lean_mark_persistent(l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__593); -l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__594 = _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__594(); -lean_mark_persistent(l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__594); -l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__595 = _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__595(); -lean_mark_persistent(l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__595); -l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__596 = _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__596(); -lean_mark_persistent(l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__596); -l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__597 = _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__597(); -lean_mark_persistent(l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__597); -l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__598 = _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__598(); -lean_mark_persistent(l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__598); -l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__599 = _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__599(); -lean_mark_persistent(l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__599); -l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__600 = _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__600(); -lean_mark_persistent(l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__600); -l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__601 = _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__601(); -lean_mark_persistent(l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__601); -l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__602 = _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__602(); -lean_mark_persistent(l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__602); -l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__603 = _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__603(); -lean_mark_persistent(l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__603); -l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__604 = _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__604(); -lean_mark_persistent(l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__604); -l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__605 = _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__605(); -lean_mark_persistent(l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__605); -l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__606 = _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__606(); -lean_mark_persistent(l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__606); -l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__607 = _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__607(); -lean_mark_persistent(l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__607); -l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__608 = _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__608(); -lean_mark_persistent(l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__608); -l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__609 = _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__609(); -lean_mark_persistent(l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__609); -l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__610 = _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__610(); -lean_mark_persistent(l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__610); -l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__611 = _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__611(); -lean_mark_persistent(l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__611); -l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__612 = _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__612(); -lean_mark_persistent(l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__612); -l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__613 = _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__613(); -lean_mark_persistent(l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__613); -l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__614 = _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__614(); -lean_mark_persistent(l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__614); -l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__615 = _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__615(); -lean_mark_persistent(l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__615); -l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__616 = _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__616(); -lean_mark_persistent(l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__616); -l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__617 = _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__617(); -lean_mark_persistent(l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__617); -l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__618 = _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__618(); -lean_mark_persistent(l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__618); -l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__619 = _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__619(); -lean_mark_persistent(l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__619); -l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__620 = _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__620(); -lean_mark_persistent(l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__620); -l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__621 = _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__621(); -lean_mark_persistent(l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__621); -l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__622 = _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__622(); -lean_mark_persistent(l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__622); -l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__623 = _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__623(); -lean_mark_persistent(l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__623); -l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__624 = _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__624(); -lean_mark_persistent(l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__624); -l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__625 = _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__625(); -lean_mark_persistent(l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__625); -l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__626 = _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__626(); -lean_mark_persistent(l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__626); -l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__627 = _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__627(); -lean_mark_persistent(l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__627); -l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__628 = _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__628(); -lean_mark_persistent(l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__628); -l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__629 = _init_l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__629(); -lean_mark_persistent(l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__629); l_UInt8_fromExpr___closed__1 = _init_l_UInt8_fromExpr___closed__1(); lean_mark_persistent(l_UInt8_fromExpr___closed__1); l_UInt8_fromExpr___closed__2 = _init_l_UInt8_fromExpr___closed__2(); lean_mark_persistent(l_UInt8_fromExpr___closed__2); -l_UInt8_fromExpr___closed__3 = _init_l_UInt8_fromExpr___closed__3(); -lean_mark_persistent(l_UInt8_fromExpr___closed__3); -l_UInt8_toExprCore___closed__1 = _init_l_UInt8_toExprCore___closed__1(); -lean_mark_persistent(l_UInt8_toExprCore___closed__1); -l_UInt8_toExprCore___closed__2 = _init_l_UInt8_toExprCore___closed__2(); -lean_mark_persistent(l_UInt8_toExprCore___closed__2); -l_UInt8_toExprCore___closed__3 = _init_l_UInt8_toExprCore___closed__3(); -lean_mark_persistent(l_UInt8_toExprCore___closed__3); -l_UInt8_toExprCore___closed__4 = _init_l_UInt8_toExprCore___closed__4(); -lean_mark_persistent(l_UInt8_toExprCore___closed__4); -l_UInt8_toExprCore___closed__5 = _init_l_UInt8_toExprCore___closed__5(); -lean_mark_persistent(l_UInt8_toExprCore___closed__5); -l_UInt8_toExpr___closed__1 = _init_l_UInt8_toExpr___closed__1(); -lean_mark_persistent(l_UInt8_toExpr___closed__1); -l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1 = _init_l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1(); -lean_mark_persistent(l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1); -l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1 = _init_l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1(); -lean_mark_persistent(l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__1); -l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__2 = _init_l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__2(); -lean_mark_persistent(l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__2); -l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__3 = _init_l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__3(); -lean_mark_persistent(l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__3); -l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__4 = _init_l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__4(); -lean_mark_persistent(l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__4); -l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__5 = _init_l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__5(); -lean_mark_persistent(l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__5); -l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__6 = _init_l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__6(); -lean_mark_persistent(l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__6); -l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__7 = _init_l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__7(); -lean_mark_persistent(l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__7); -l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__8 = _init_l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__8(); -lean_mark_persistent(l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__8); -l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__9 = _init_l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__9(); -lean_mark_persistent(l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__9); -l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__10 = _init_l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__10(); -lean_mark_persistent(l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978____lambda__1___closed__10); -l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9616____closed__1 = _init_l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9616____closed__1(); -lean_mark_persistent(l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9616____closed__1); -l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9616____closed__2 = _init_l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9616____closed__2(); -lean_mark_persistent(l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9616____closed__2); -l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9616____closed__3 = _init_l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9616____closed__3(); -lean_mark_persistent(l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9616____closed__3); -l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9616____closed__4 = _init_l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9616____closed__4(); -lean_mark_persistent(l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9616____closed__4); -l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9616____closed__5 = _init_l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9616____closed__5(); -lean_mark_persistent(l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9616____closed__5); -l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9616____closed__6 = _init_l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9616____closed__6(); -lean_mark_persistent(l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9616____closed__6); -l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9616____closed__7 = _init_l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9616____closed__7(); -lean_mark_persistent(l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9616____closed__7); -l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9616____closed__8 = _init_l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9616____closed__8(); -lean_mark_persistent(l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9616____closed__8); -l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9616____closed__9 = _init_l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9616____closed__9(); -lean_mark_persistent(l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9616____closed__9); -l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9616____closed__10 = _init_l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9616____closed__10(); -lean_mark_persistent(l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9616____closed__10); -l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9616____closed__11 = _init_l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9616____closed__11(); -lean_mark_persistent(l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9616____closed__11); -l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9616____closed__12 = _init_l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9616____closed__12(); -lean_mark_persistent(l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9616____closed__12); -if (builtin) {res = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9616_(lean_io_mk_world()); +l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1 = _init_l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1(); +lean_mark_persistent(l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1); +l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__2 = _init_l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__2(); +lean_mark_persistent(l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__2); +l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__3 = _init_l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__3(); +lean_mark_persistent(l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__3); +l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__4 = _init_l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__4(); +lean_mark_persistent(l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__4); +l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__5 = _init_l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__5(); +lean_mark_persistent(l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__5); +l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__6 = _init_l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__6(); +lean_mark_persistent(l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__6); +l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__7 = _init_l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__7(); +lean_mark_persistent(l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__7); +l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__8 = _init_l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__8(); +lean_mark_persistent(l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__8); +l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1 = _init_l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1(); +lean_mark_persistent(l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__1); +l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__2 = _init_l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__2(); +lean_mark_persistent(l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__2); +l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__3 = _init_l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__3(); +lean_mark_persistent(l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__3); +l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__4 = _init_l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__4(); +lean_mark_persistent(l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__4); +l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__5 = _init_l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__5(); +lean_mark_persistent(l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__5); +l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__6 = _init_l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__6(); +lean_mark_persistent(l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__6); +l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__7 = _init_l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__7(); +lean_mark_persistent(l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__7); +l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__8 = _init_l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__8(); +lean_mark_persistent(l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__8); +l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__9 = _init_l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__9(); +lean_mark_persistent(l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__9); +l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__10 = _init_l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__10(); +lean_mark_persistent(l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515____lambda__1___closed__10); +l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8049____closed__1 = _init_l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8049____closed__1(); +lean_mark_persistent(l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8049____closed__1); +l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8049____closed__2 = _init_l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8049____closed__2(); +lean_mark_persistent(l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8049____closed__2); +l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8049____closed__3 = _init_l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8049____closed__3(); +lean_mark_persistent(l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8049____closed__3); +l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8049____closed__4 = _init_l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8049____closed__4(); +lean_mark_persistent(l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8049____closed__4); +l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8049____closed__5 = _init_l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8049____closed__5(); +lean_mark_persistent(l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8049____closed__5); +l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8049____closed__6 = _init_l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8049____closed__6(); +lean_mark_persistent(l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8049____closed__6); +l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8049____closed__7 = _init_l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8049____closed__7(); +lean_mark_persistent(l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8049____closed__7); +l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8049____closed__8 = _init_l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8049____closed__8(); +lean_mark_persistent(l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8049____closed__8); +l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8049____closed__9 = _init_l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8049____closed__9(); +lean_mark_persistent(l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8049____closed__9); +l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8049____closed__10 = _init_l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8049____closed__10(); +lean_mark_persistent(l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8049____closed__10); +l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8049____closed__11 = _init_l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8049____closed__11(); +lean_mark_persistent(l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8049____closed__11); +l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8049____closed__12 = _init_l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8049____closed__12(); +lean_mark_persistent(l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8049____closed__12); +if (builtin) {res = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8049_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9618____closed__1 = _init_l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9618____closed__1(); -lean_mark_persistent(l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9618____closed__1); -if (builtin) {res = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9618_(lean_io_mk_world()); +}l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8051____closed__1 = _init_l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8051____closed__1(); +lean_mark_persistent(l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8051____closed__1); +if (builtin) {res = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8051_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9620____closed__1 = _init_l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9620____closed__1(); -lean_mark_persistent(l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9620____closed__1); -if (builtin) {res = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9620_(lean_io_mk_world()); +}l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8053____closed__1 = _init_l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8053____closed__1(); +lean_mark_persistent(l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8053____closed__1); +if (builtin) {res = l___regBuiltin_UInt8_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8053_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}l___regBuiltin_UInt8_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9656____closed__1 = _init_l___regBuiltin_UInt8_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9656____closed__1(); -lean_mark_persistent(l___regBuiltin_UInt8_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9656____closed__1); -l___regBuiltin_UInt8_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9656____closed__2 = _init_l___regBuiltin_UInt8_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9656____closed__2(); -lean_mark_persistent(l___regBuiltin_UInt8_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9656____closed__2); -l___regBuiltin_UInt8_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9656____closed__3 = _init_l___regBuiltin_UInt8_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9656____closed__3(); -lean_mark_persistent(l___regBuiltin_UInt8_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9656____closed__3); -l___regBuiltin_UInt8_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9656____closed__4 = _init_l___regBuiltin_UInt8_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9656____closed__4(); -lean_mark_persistent(l___regBuiltin_UInt8_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9656____closed__4); -l___regBuiltin_UInt8_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9656____closed__5 = _init_l___regBuiltin_UInt8_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9656____closed__5(); -lean_mark_persistent(l___regBuiltin_UInt8_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9656____closed__5); -l___regBuiltin_UInt8_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9656____closed__6 = _init_l___regBuiltin_UInt8_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9656____closed__6(); -lean_mark_persistent(l___regBuiltin_UInt8_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9656____closed__6); -l___regBuiltin_UInt8_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9656____closed__7 = _init_l___regBuiltin_UInt8_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9656____closed__7(); -lean_mark_persistent(l___regBuiltin_UInt8_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9656____closed__7); -l___regBuiltin_UInt8_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9656____closed__8 = _init_l___regBuiltin_UInt8_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9656____closed__8(); -lean_mark_persistent(l___regBuiltin_UInt8_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9656____closed__8); -l___regBuiltin_UInt8_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9656____closed__9 = _init_l___regBuiltin_UInt8_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9656____closed__9(); -lean_mark_persistent(l___regBuiltin_UInt8_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9656____closed__9); -l___regBuiltin_UInt8_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9656____closed__10 = _init_l___regBuiltin_UInt8_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9656____closed__10(); -lean_mark_persistent(l___regBuiltin_UInt8_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9656____closed__10); -if (builtin) {res = l___regBuiltin_UInt8_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9656_(lean_io_mk_world()); +}l___regBuiltin_UInt8_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8089____closed__1 = _init_l___regBuiltin_UInt8_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8089____closed__1(); +lean_mark_persistent(l___regBuiltin_UInt8_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8089____closed__1); +l___regBuiltin_UInt8_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8089____closed__2 = _init_l___regBuiltin_UInt8_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8089____closed__2(); +lean_mark_persistent(l___regBuiltin_UInt8_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8089____closed__2); +l___regBuiltin_UInt8_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8089____closed__3 = _init_l___regBuiltin_UInt8_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8089____closed__3(); +lean_mark_persistent(l___regBuiltin_UInt8_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8089____closed__3); +l___regBuiltin_UInt8_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8089____closed__4 = _init_l___regBuiltin_UInt8_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8089____closed__4(); +lean_mark_persistent(l___regBuiltin_UInt8_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8089____closed__4); +l___regBuiltin_UInt8_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8089____closed__5 = _init_l___regBuiltin_UInt8_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8089____closed__5(); +lean_mark_persistent(l___regBuiltin_UInt8_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8089____closed__5); +l___regBuiltin_UInt8_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8089____closed__6 = _init_l___regBuiltin_UInt8_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8089____closed__6(); +lean_mark_persistent(l___regBuiltin_UInt8_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8089____closed__6); +l___regBuiltin_UInt8_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8089____closed__7 = _init_l___regBuiltin_UInt8_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8089____closed__7(); +lean_mark_persistent(l___regBuiltin_UInt8_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8089____closed__7); +l___regBuiltin_UInt8_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8089____closed__8 = _init_l___regBuiltin_UInt8_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8089____closed__8(); +lean_mark_persistent(l___regBuiltin_UInt8_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8089____closed__8); +l___regBuiltin_UInt8_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8089____closed__9 = _init_l___regBuiltin_UInt8_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8089____closed__9(); +lean_mark_persistent(l___regBuiltin_UInt8_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8089____closed__9); +l___regBuiltin_UInt8_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8089____closed__10 = _init_l___regBuiltin_UInt8_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8089____closed__10(); +lean_mark_persistent(l___regBuiltin_UInt8_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8089____closed__10); +if (builtin) {res = l___regBuiltin_UInt8_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8089_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_UInt8_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9658_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_UInt8_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8091_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_UInt8_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9660_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_UInt8_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8093_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}l___regBuiltin_UInt8_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9696____closed__1 = _init_l___regBuiltin_UInt8_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9696____closed__1(); -lean_mark_persistent(l___regBuiltin_UInt8_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9696____closed__1); -l___regBuiltin_UInt8_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9696____closed__2 = _init_l___regBuiltin_UInt8_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9696____closed__2(); -lean_mark_persistent(l___regBuiltin_UInt8_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9696____closed__2); -l___regBuiltin_UInt8_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9696____closed__3 = _init_l___regBuiltin_UInt8_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9696____closed__3(); -lean_mark_persistent(l___regBuiltin_UInt8_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9696____closed__3); -l___regBuiltin_UInt8_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9696____closed__4 = _init_l___regBuiltin_UInt8_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9696____closed__4(); -lean_mark_persistent(l___regBuiltin_UInt8_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9696____closed__4); -l___regBuiltin_UInt8_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9696____closed__5 = _init_l___regBuiltin_UInt8_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9696____closed__5(); -lean_mark_persistent(l___regBuiltin_UInt8_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9696____closed__5); -l___regBuiltin_UInt8_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9696____closed__6 = _init_l___regBuiltin_UInt8_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9696____closed__6(); -lean_mark_persistent(l___regBuiltin_UInt8_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9696____closed__6); -l___regBuiltin_UInt8_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9696____closed__7 = _init_l___regBuiltin_UInt8_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9696____closed__7(); -lean_mark_persistent(l___regBuiltin_UInt8_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9696____closed__7); -l___regBuiltin_UInt8_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9696____closed__8 = _init_l___regBuiltin_UInt8_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9696____closed__8(); -lean_mark_persistent(l___regBuiltin_UInt8_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9696____closed__8); -l___regBuiltin_UInt8_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9696____closed__9 = _init_l___regBuiltin_UInt8_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9696____closed__9(); -lean_mark_persistent(l___regBuiltin_UInt8_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9696____closed__9); -l___regBuiltin_UInt8_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9696____closed__10 = _init_l___regBuiltin_UInt8_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9696____closed__10(); -lean_mark_persistent(l___regBuiltin_UInt8_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9696____closed__10); -if (builtin) {res = l___regBuiltin_UInt8_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9696_(lean_io_mk_world()); +}l___regBuiltin_UInt8_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8129____closed__1 = _init_l___regBuiltin_UInt8_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8129____closed__1(); +lean_mark_persistent(l___regBuiltin_UInt8_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8129____closed__1); +l___regBuiltin_UInt8_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8129____closed__2 = _init_l___regBuiltin_UInt8_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8129____closed__2(); +lean_mark_persistent(l___regBuiltin_UInt8_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8129____closed__2); +l___regBuiltin_UInt8_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8129____closed__3 = _init_l___regBuiltin_UInt8_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8129____closed__3(); +lean_mark_persistent(l___regBuiltin_UInt8_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8129____closed__3); +l___regBuiltin_UInt8_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8129____closed__4 = _init_l___regBuiltin_UInt8_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8129____closed__4(); +lean_mark_persistent(l___regBuiltin_UInt8_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8129____closed__4); +l___regBuiltin_UInt8_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8129____closed__5 = _init_l___regBuiltin_UInt8_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8129____closed__5(); +lean_mark_persistent(l___regBuiltin_UInt8_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8129____closed__5); +l___regBuiltin_UInt8_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8129____closed__6 = _init_l___regBuiltin_UInt8_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8129____closed__6(); +lean_mark_persistent(l___regBuiltin_UInt8_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8129____closed__6); +l___regBuiltin_UInt8_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8129____closed__7 = _init_l___regBuiltin_UInt8_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8129____closed__7(); +lean_mark_persistent(l___regBuiltin_UInt8_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8129____closed__7); +l___regBuiltin_UInt8_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8129____closed__8 = _init_l___regBuiltin_UInt8_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8129____closed__8(); +lean_mark_persistent(l___regBuiltin_UInt8_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8129____closed__8); +l___regBuiltin_UInt8_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8129____closed__9 = _init_l___regBuiltin_UInt8_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8129____closed__9(); +lean_mark_persistent(l___regBuiltin_UInt8_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8129____closed__9); +l___regBuiltin_UInt8_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8129____closed__10 = _init_l___regBuiltin_UInt8_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8129____closed__10(); +lean_mark_persistent(l___regBuiltin_UInt8_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8129____closed__10); +if (builtin) {res = l___regBuiltin_UInt8_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8129_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_UInt8_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9698_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_UInt8_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8131_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_UInt8_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9700_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_UInt8_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8133_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}l___regBuiltin_UInt8_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9736____closed__1 = _init_l___regBuiltin_UInt8_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9736____closed__1(); -lean_mark_persistent(l___regBuiltin_UInt8_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9736____closed__1); -l___regBuiltin_UInt8_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9736____closed__2 = _init_l___regBuiltin_UInt8_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9736____closed__2(); -lean_mark_persistent(l___regBuiltin_UInt8_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9736____closed__2); -l___regBuiltin_UInt8_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9736____closed__3 = _init_l___regBuiltin_UInt8_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9736____closed__3(); -lean_mark_persistent(l___regBuiltin_UInt8_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9736____closed__3); -l___regBuiltin_UInt8_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9736____closed__4 = _init_l___regBuiltin_UInt8_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9736____closed__4(); -lean_mark_persistent(l___regBuiltin_UInt8_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9736____closed__4); -l___regBuiltin_UInt8_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9736____closed__5 = _init_l___regBuiltin_UInt8_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9736____closed__5(); -lean_mark_persistent(l___regBuiltin_UInt8_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9736____closed__5); -l___regBuiltin_UInt8_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9736____closed__6 = _init_l___regBuiltin_UInt8_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9736____closed__6(); -lean_mark_persistent(l___regBuiltin_UInt8_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9736____closed__6); -l___regBuiltin_UInt8_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9736____closed__7 = _init_l___regBuiltin_UInt8_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9736____closed__7(); -lean_mark_persistent(l___regBuiltin_UInt8_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9736____closed__7); -l___regBuiltin_UInt8_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9736____closed__8 = _init_l___regBuiltin_UInt8_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9736____closed__8(); -lean_mark_persistent(l___regBuiltin_UInt8_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9736____closed__8); -l___regBuiltin_UInt8_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9736____closed__9 = _init_l___regBuiltin_UInt8_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9736____closed__9(); -lean_mark_persistent(l___regBuiltin_UInt8_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9736____closed__9); -l___regBuiltin_UInt8_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9736____closed__10 = _init_l___regBuiltin_UInt8_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9736____closed__10(); -lean_mark_persistent(l___regBuiltin_UInt8_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9736____closed__10); -if (builtin) {res = l___regBuiltin_UInt8_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9736_(lean_io_mk_world()); +}l___regBuiltin_UInt8_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8169____closed__1 = _init_l___regBuiltin_UInt8_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8169____closed__1(); +lean_mark_persistent(l___regBuiltin_UInt8_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8169____closed__1); +l___regBuiltin_UInt8_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8169____closed__2 = _init_l___regBuiltin_UInt8_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8169____closed__2(); +lean_mark_persistent(l___regBuiltin_UInt8_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8169____closed__2); +l___regBuiltin_UInt8_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8169____closed__3 = _init_l___regBuiltin_UInt8_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8169____closed__3(); +lean_mark_persistent(l___regBuiltin_UInt8_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8169____closed__3); +l___regBuiltin_UInt8_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8169____closed__4 = _init_l___regBuiltin_UInt8_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8169____closed__4(); +lean_mark_persistent(l___regBuiltin_UInt8_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8169____closed__4); +l___regBuiltin_UInt8_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8169____closed__5 = _init_l___regBuiltin_UInt8_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8169____closed__5(); +lean_mark_persistent(l___regBuiltin_UInt8_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8169____closed__5); +l___regBuiltin_UInt8_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8169____closed__6 = _init_l___regBuiltin_UInt8_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8169____closed__6(); +lean_mark_persistent(l___regBuiltin_UInt8_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8169____closed__6); +l___regBuiltin_UInt8_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8169____closed__7 = _init_l___regBuiltin_UInt8_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8169____closed__7(); +lean_mark_persistent(l___regBuiltin_UInt8_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8169____closed__7); +l___regBuiltin_UInt8_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8169____closed__8 = _init_l___regBuiltin_UInt8_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8169____closed__8(); +lean_mark_persistent(l___regBuiltin_UInt8_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8169____closed__8); +l___regBuiltin_UInt8_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8169____closed__9 = _init_l___regBuiltin_UInt8_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8169____closed__9(); +lean_mark_persistent(l___regBuiltin_UInt8_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8169____closed__9); +l___regBuiltin_UInt8_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8169____closed__10 = _init_l___regBuiltin_UInt8_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8169____closed__10(); +lean_mark_persistent(l___regBuiltin_UInt8_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8169____closed__10); +if (builtin) {res = l___regBuiltin_UInt8_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8169_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_UInt8_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9738_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_UInt8_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8171_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_UInt8_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9740_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_UInt8_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8173_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}l___regBuiltin_UInt8_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9776____closed__1 = _init_l___regBuiltin_UInt8_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9776____closed__1(); -lean_mark_persistent(l___regBuiltin_UInt8_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9776____closed__1); -l___regBuiltin_UInt8_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9776____closed__2 = _init_l___regBuiltin_UInt8_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9776____closed__2(); -lean_mark_persistent(l___regBuiltin_UInt8_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9776____closed__2); -l___regBuiltin_UInt8_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9776____closed__3 = _init_l___regBuiltin_UInt8_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9776____closed__3(); -lean_mark_persistent(l___regBuiltin_UInt8_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9776____closed__3); -l___regBuiltin_UInt8_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9776____closed__4 = _init_l___regBuiltin_UInt8_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9776____closed__4(); -lean_mark_persistent(l___regBuiltin_UInt8_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9776____closed__4); -l___regBuiltin_UInt8_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9776____closed__5 = _init_l___regBuiltin_UInt8_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9776____closed__5(); -lean_mark_persistent(l___regBuiltin_UInt8_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9776____closed__5); -l___regBuiltin_UInt8_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9776____closed__6 = _init_l___regBuiltin_UInt8_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9776____closed__6(); -lean_mark_persistent(l___regBuiltin_UInt8_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9776____closed__6); -l___regBuiltin_UInt8_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9776____closed__7 = _init_l___regBuiltin_UInt8_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9776____closed__7(); -lean_mark_persistent(l___regBuiltin_UInt8_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9776____closed__7); -l___regBuiltin_UInt8_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9776____closed__8 = _init_l___regBuiltin_UInt8_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9776____closed__8(); -lean_mark_persistent(l___regBuiltin_UInt8_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9776____closed__8); -l___regBuiltin_UInt8_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9776____closed__9 = _init_l___regBuiltin_UInt8_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9776____closed__9(); -lean_mark_persistent(l___regBuiltin_UInt8_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9776____closed__9); -l___regBuiltin_UInt8_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9776____closed__10 = _init_l___regBuiltin_UInt8_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9776____closed__10(); -lean_mark_persistent(l___regBuiltin_UInt8_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9776____closed__10); -if (builtin) {res = l___regBuiltin_UInt8_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9776_(lean_io_mk_world()); +}l___regBuiltin_UInt8_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8209____closed__1 = _init_l___regBuiltin_UInt8_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8209____closed__1(); +lean_mark_persistent(l___regBuiltin_UInt8_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8209____closed__1); +l___regBuiltin_UInt8_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8209____closed__2 = _init_l___regBuiltin_UInt8_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8209____closed__2(); +lean_mark_persistent(l___regBuiltin_UInt8_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8209____closed__2); +l___regBuiltin_UInt8_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8209____closed__3 = _init_l___regBuiltin_UInt8_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8209____closed__3(); +lean_mark_persistent(l___regBuiltin_UInt8_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8209____closed__3); +l___regBuiltin_UInt8_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8209____closed__4 = _init_l___regBuiltin_UInt8_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8209____closed__4(); +lean_mark_persistent(l___regBuiltin_UInt8_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8209____closed__4); +l___regBuiltin_UInt8_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8209____closed__5 = _init_l___regBuiltin_UInt8_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8209____closed__5(); +lean_mark_persistent(l___regBuiltin_UInt8_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8209____closed__5); +l___regBuiltin_UInt8_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8209____closed__6 = _init_l___regBuiltin_UInt8_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8209____closed__6(); +lean_mark_persistent(l___regBuiltin_UInt8_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8209____closed__6); +l___regBuiltin_UInt8_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8209____closed__7 = _init_l___regBuiltin_UInt8_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8209____closed__7(); +lean_mark_persistent(l___regBuiltin_UInt8_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8209____closed__7); +l___regBuiltin_UInt8_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8209____closed__8 = _init_l___regBuiltin_UInt8_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8209____closed__8(); +lean_mark_persistent(l___regBuiltin_UInt8_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8209____closed__8); +l___regBuiltin_UInt8_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8209____closed__9 = _init_l___regBuiltin_UInt8_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8209____closed__9(); +lean_mark_persistent(l___regBuiltin_UInt8_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8209____closed__9); +l___regBuiltin_UInt8_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8209____closed__10 = _init_l___regBuiltin_UInt8_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8209____closed__10(); +lean_mark_persistent(l___regBuiltin_UInt8_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8209____closed__10); +if (builtin) {res = l___regBuiltin_UInt8_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8209_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_UInt8_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9778_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_UInt8_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8211_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_UInt8_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9780_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_UInt8_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8213_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}l___regBuiltin_UInt8_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9817____closed__1 = _init_l___regBuiltin_UInt8_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9817____closed__1(); -lean_mark_persistent(l___regBuiltin_UInt8_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9817____closed__1); -l___regBuiltin_UInt8_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9817____closed__2 = _init_l___regBuiltin_UInt8_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9817____closed__2(); -lean_mark_persistent(l___regBuiltin_UInt8_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9817____closed__2); -l___regBuiltin_UInt8_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9817____closed__3 = _init_l___regBuiltin_UInt8_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9817____closed__3(); -lean_mark_persistent(l___regBuiltin_UInt8_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9817____closed__3); -l___regBuiltin_UInt8_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9817____closed__4 = _init_l___regBuiltin_UInt8_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9817____closed__4(); -lean_mark_persistent(l___regBuiltin_UInt8_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9817____closed__4); -l___regBuiltin_UInt8_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9817____closed__5 = _init_l___regBuiltin_UInt8_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9817____closed__5(); -lean_mark_persistent(l___regBuiltin_UInt8_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9817____closed__5); -l___regBuiltin_UInt8_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9817____closed__6 = _init_l___regBuiltin_UInt8_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9817____closed__6(); -lean_mark_persistent(l___regBuiltin_UInt8_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9817____closed__6); -l___regBuiltin_UInt8_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9817____closed__7 = _init_l___regBuiltin_UInt8_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9817____closed__7(); -lean_mark_persistent(l___regBuiltin_UInt8_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9817____closed__7); -l___regBuiltin_UInt8_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9817____closed__8 = _init_l___regBuiltin_UInt8_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9817____closed__8(); -lean_mark_persistent(l___regBuiltin_UInt8_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9817____closed__8); -l___regBuiltin_UInt8_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9817____closed__9 = _init_l___regBuiltin_UInt8_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9817____closed__9(); -lean_mark_persistent(l___regBuiltin_UInt8_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9817____closed__9); -if (builtin) {res = l___regBuiltin_UInt8_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9817_(lean_io_mk_world()); +}l___regBuiltin_UInt8_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8250____closed__1 = _init_l___regBuiltin_UInt8_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8250____closed__1(); +lean_mark_persistent(l___regBuiltin_UInt8_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8250____closed__1); +l___regBuiltin_UInt8_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8250____closed__2 = _init_l___regBuiltin_UInt8_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8250____closed__2(); +lean_mark_persistent(l___regBuiltin_UInt8_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8250____closed__2); +l___regBuiltin_UInt8_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8250____closed__3 = _init_l___regBuiltin_UInt8_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8250____closed__3(); +lean_mark_persistent(l___regBuiltin_UInt8_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8250____closed__3); +l___regBuiltin_UInt8_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8250____closed__4 = _init_l___regBuiltin_UInt8_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8250____closed__4(); +lean_mark_persistent(l___regBuiltin_UInt8_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8250____closed__4); +l___regBuiltin_UInt8_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8250____closed__5 = _init_l___regBuiltin_UInt8_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8250____closed__5(); +lean_mark_persistent(l___regBuiltin_UInt8_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8250____closed__5); +l___regBuiltin_UInt8_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8250____closed__6 = _init_l___regBuiltin_UInt8_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8250____closed__6(); +lean_mark_persistent(l___regBuiltin_UInt8_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8250____closed__6); +l___regBuiltin_UInt8_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8250____closed__7 = _init_l___regBuiltin_UInt8_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8250____closed__7(); +lean_mark_persistent(l___regBuiltin_UInt8_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8250____closed__7); +l___regBuiltin_UInt8_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8250____closed__8 = _init_l___regBuiltin_UInt8_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8250____closed__8(); +lean_mark_persistent(l___regBuiltin_UInt8_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8250____closed__8); +l___regBuiltin_UInt8_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8250____closed__9 = _init_l___regBuiltin_UInt8_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8250____closed__9(); +lean_mark_persistent(l___regBuiltin_UInt8_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8250____closed__9); +if (builtin) {res = l___regBuiltin_UInt8_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8250_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_UInt8_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9819_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_UInt8_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8252_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_UInt8_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9821_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_UInt8_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8254_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}l___regBuiltin_UInt8_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9858____closed__1 = _init_l___regBuiltin_UInt8_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9858____closed__1(); -lean_mark_persistent(l___regBuiltin_UInt8_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9858____closed__1); -l___regBuiltin_UInt8_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9858____closed__2 = _init_l___regBuiltin_UInt8_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9858____closed__2(); -lean_mark_persistent(l___regBuiltin_UInt8_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9858____closed__2); -l___regBuiltin_UInt8_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9858____closed__3 = _init_l___regBuiltin_UInt8_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9858____closed__3(); -lean_mark_persistent(l___regBuiltin_UInt8_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9858____closed__3); -l___regBuiltin_UInt8_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9858____closed__4 = _init_l___regBuiltin_UInt8_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9858____closed__4(); -lean_mark_persistent(l___regBuiltin_UInt8_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9858____closed__4); -l___regBuiltin_UInt8_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9858____closed__5 = _init_l___regBuiltin_UInt8_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9858____closed__5(); -lean_mark_persistent(l___regBuiltin_UInt8_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9858____closed__5); -l___regBuiltin_UInt8_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9858____closed__6 = _init_l___regBuiltin_UInt8_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9858____closed__6(); -lean_mark_persistent(l___regBuiltin_UInt8_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9858____closed__6); -l___regBuiltin_UInt8_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9858____closed__7 = _init_l___regBuiltin_UInt8_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9858____closed__7(); -lean_mark_persistent(l___regBuiltin_UInt8_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9858____closed__7); -l___regBuiltin_UInt8_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9858____closed__8 = _init_l___regBuiltin_UInt8_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9858____closed__8(); -lean_mark_persistent(l___regBuiltin_UInt8_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9858____closed__8); -if (builtin) {res = l___regBuiltin_UInt8_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9858_(lean_io_mk_world()); +}l___regBuiltin_UInt8_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8291____closed__1 = _init_l___regBuiltin_UInt8_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8291____closed__1(); +lean_mark_persistent(l___regBuiltin_UInt8_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8291____closed__1); +l___regBuiltin_UInt8_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8291____closed__2 = _init_l___regBuiltin_UInt8_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8291____closed__2(); +lean_mark_persistent(l___regBuiltin_UInt8_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8291____closed__2); +l___regBuiltin_UInt8_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8291____closed__3 = _init_l___regBuiltin_UInt8_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8291____closed__3(); +lean_mark_persistent(l___regBuiltin_UInt8_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8291____closed__3); +l___regBuiltin_UInt8_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8291____closed__4 = _init_l___regBuiltin_UInt8_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8291____closed__4(); +lean_mark_persistent(l___regBuiltin_UInt8_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8291____closed__4); +l___regBuiltin_UInt8_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8291____closed__5 = _init_l___regBuiltin_UInt8_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8291____closed__5(); +lean_mark_persistent(l___regBuiltin_UInt8_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8291____closed__5); +l___regBuiltin_UInt8_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8291____closed__6 = _init_l___regBuiltin_UInt8_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8291____closed__6(); +lean_mark_persistent(l___regBuiltin_UInt8_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8291____closed__6); +l___regBuiltin_UInt8_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8291____closed__7 = _init_l___regBuiltin_UInt8_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8291____closed__7(); +lean_mark_persistent(l___regBuiltin_UInt8_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8291____closed__7); +l___regBuiltin_UInt8_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8291____closed__8 = _init_l___regBuiltin_UInt8_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8291____closed__8(); +lean_mark_persistent(l___regBuiltin_UInt8_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8291____closed__8); +if (builtin) {res = l___regBuiltin_UInt8_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8291_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_UInt8_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9860_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_UInt8_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8293_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_UInt8_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9862_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_UInt8_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8295_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}l___regBuiltin_UInt8_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9899____closed__1 = _init_l___regBuiltin_UInt8_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9899____closed__1(); -lean_mark_persistent(l___regBuiltin_UInt8_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9899____closed__1); -l___regBuiltin_UInt8_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9899____closed__2 = _init_l___regBuiltin_UInt8_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9899____closed__2(); -lean_mark_persistent(l___regBuiltin_UInt8_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9899____closed__2); -if (builtin) {res = l___regBuiltin_UInt8_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9899_(lean_io_mk_world()); +}l___regBuiltin_UInt8_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8332____closed__1 = _init_l___regBuiltin_UInt8_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8332____closed__1(); +lean_mark_persistent(l___regBuiltin_UInt8_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8332____closed__1); +l___regBuiltin_UInt8_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8332____closed__2 = _init_l___regBuiltin_UInt8_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8332____closed__2(); +lean_mark_persistent(l___regBuiltin_UInt8_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8332____closed__2); +if (builtin) {res = l___regBuiltin_UInt8_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8332_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_UInt8_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9901_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_UInt8_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8334_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_UInt8_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9903_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_UInt8_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8336_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}l___regBuiltin_UInt8_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9940____closed__1 = _init_l___regBuiltin_UInt8_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9940____closed__1(); -lean_mark_persistent(l___regBuiltin_UInt8_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9940____closed__1); -l___regBuiltin_UInt8_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9940____closed__2 = _init_l___regBuiltin_UInt8_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9940____closed__2(); -lean_mark_persistent(l___regBuiltin_UInt8_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9940____closed__2); -if (builtin) {res = l___regBuiltin_UInt8_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9940_(lean_io_mk_world()); +}l___regBuiltin_UInt8_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8373____closed__1 = _init_l___regBuiltin_UInt8_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8373____closed__1(); +lean_mark_persistent(l___regBuiltin_UInt8_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8373____closed__1); +l___regBuiltin_UInt8_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8373____closed__2 = _init_l___regBuiltin_UInt8_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8373____closed__2(); +lean_mark_persistent(l___regBuiltin_UInt8_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8373____closed__2); +if (builtin) {res = l___regBuiltin_UInt8_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8373_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_UInt8_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9942_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_UInt8_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8375_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_UInt8_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9944_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_UInt8_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8377_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__1 = _init_l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__1(); -lean_mark_persistent(l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__1); -l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__2 = _init_l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__2(); -lean_mark_persistent(l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__2); -l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__3 = _init_l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__3(); -lean_mark_persistent(l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__3); -l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__4 = _init_l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__4(); -lean_mark_persistent(l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__4); -l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__5 = _init_l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__5(); -lean_mark_persistent(l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__5); -l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__6 = _init_l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__6(); -lean_mark_persistent(l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__6); -l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__7 = _init_l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__7(); -lean_mark_persistent(l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__7); -l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__8 = _init_l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__8(); -lean_mark_persistent(l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__8); -l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__9 = _init_l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__9(); -lean_mark_persistent(l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__9); -l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__10 = _init_l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__10(); -lean_mark_persistent(l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__10); -l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__11 = _init_l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__11(); -lean_mark_persistent(l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__11); -l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__12 = _init_l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__12(); -lean_mark_persistent(l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__12); -l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__13 = _init_l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__13(); -lean_mark_persistent(l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__13); -l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__14 = _init_l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__14(); -lean_mark_persistent(l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__14); -l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__15 = _init_l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__15(); -lean_mark_persistent(l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__15); -l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__16 = _init_l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__16(); -lean_mark_persistent(l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__16); -l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__17 = _init_l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__17(); -lean_mark_persistent(l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__17); -l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__18 = _init_l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__18(); -lean_mark_persistent(l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__18); -l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__19 = _init_l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__19(); -lean_mark_persistent(l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__19); -l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__20 = _init_l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__20(); -lean_mark_persistent(l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__20); -l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__21 = _init_l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__21(); -lean_mark_persistent(l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__21); -l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__22 = _init_l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__22(); -lean_mark_persistent(l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981____closed__22); -if (builtin) {res = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9981_(lean_io_mk_world()); +}l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__1 = _init_l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__1(); +lean_mark_persistent(l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__1); +l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__2 = _init_l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__2(); +lean_mark_persistent(l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__2); +l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__3 = _init_l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__3(); +lean_mark_persistent(l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__3); +l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__4 = _init_l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__4(); +lean_mark_persistent(l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__4); +l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__5 = _init_l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__5(); +lean_mark_persistent(l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__5); +l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__6 = _init_l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__6(); +lean_mark_persistent(l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__6); +l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__7 = _init_l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__7(); +lean_mark_persistent(l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__7); +l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__8 = _init_l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__8(); +lean_mark_persistent(l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__8); +l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__9 = _init_l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__9(); +lean_mark_persistent(l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__9); +l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__10 = _init_l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__10(); +lean_mark_persistent(l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__10); +l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__11 = _init_l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__11(); +lean_mark_persistent(l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__11); +l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__12 = _init_l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__12(); +lean_mark_persistent(l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__12); +l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__13 = _init_l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__13(); +lean_mark_persistent(l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__13); +l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__14 = _init_l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__14(); +lean_mark_persistent(l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__14); +l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__15 = _init_l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__15(); +lean_mark_persistent(l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__15); +l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__16 = _init_l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__16(); +lean_mark_persistent(l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__16); +l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__17 = _init_l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__17(); +lean_mark_persistent(l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__17); +l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__18 = _init_l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__18(); +lean_mark_persistent(l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__18); +l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__19 = _init_l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__19(); +lean_mark_persistent(l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__19); +l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__20 = _init_l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__20(); +lean_mark_persistent(l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__20); +l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__21 = _init_l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__21(); +lean_mark_persistent(l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__21); +l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__22 = _init_l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__22(); +lean_mark_persistent(l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414____closed__22); +if (builtin) {res = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8414_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9983_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8416_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__9985_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_UInt8_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8418_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10021____closed__1 = _init_l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10021____closed__1(); -lean_mark_persistent(l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10021____closed__1); -l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10021____closed__2 = _init_l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10021____closed__2(); -lean_mark_persistent(l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10021____closed__2); -l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10021____closed__3 = _init_l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10021____closed__3(); -lean_mark_persistent(l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10021____closed__3); -l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10021____closed__4 = _init_l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10021____closed__4(); -lean_mark_persistent(l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10021____closed__4); -l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10021____closed__5 = _init_l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10021____closed__5(); -lean_mark_persistent(l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10021____closed__5); -l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10021____closed__6 = _init_l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10021____closed__6(); -lean_mark_persistent(l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10021____closed__6); -l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10021____closed__7 = _init_l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10021____closed__7(); -lean_mark_persistent(l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10021____closed__7); -l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10021____closed__8 = _init_l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10021____closed__8(); -lean_mark_persistent(l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10021____closed__8); -l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10021____closed__9 = _init_l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10021____closed__9(); -lean_mark_persistent(l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10021____closed__9); -l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10021____closed__10 = _init_l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10021____closed__10(); -lean_mark_persistent(l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10021____closed__10); -l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10021____closed__11 = _init_l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10021____closed__11(); -lean_mark_persistent(l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10021____closed__11); -l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10021____closed__12 = _init_l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10021____closed__12(); -lean_mark_persistent(l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10021____closed__12); -l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10021____closed__13 = _init_l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10021____closed__13(); -lean_mark_persistent(l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10021____closed__13); -l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10021____closed__14 = _init_l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10021____closed__14(); -lean_mark_persistent(l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10021____closed__14); -l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10021____closed__15 = _init_l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10021____closed__15(); -lean_mark_persistent(l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10021____closed__15); -l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10021____closed__16 = _init_l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10021____closed__16(); -lean_mark_persistent(l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10021____closed__16); -l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10021____closed__17 = _init_l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10021____closed__17(); -lean_mark_persistent(l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10021____closed__17); -l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10021____closed__18 = _init_l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10021____closed__18(); -lean_mark_persistent(l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10021____closed__18); -l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10021____closed__19 = _init_l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10021____closed__19(); -lean_mark_persistent(l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10021____closed__19); -if (builtin) {res = l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10021_(lean_io_mk_world()); +}l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8454____closed__1 = _init_l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8454____closed__1(); +lean_mark_persistent(l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8454____closed__1); +l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8454____closed__2 = _init_l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8454____closed__2(); +lean_mark_persistent(l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8454____closed__2); +l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8454____closed__3 = _init_l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8454____closed__3(); +lean_mark_persistent(l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8454____closed__3); +l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8454____closed__4 = _init_l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8454____closed__4(); +lean_mark_persistent(l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8454____closed__4); +l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8454____closed__5 = _init_l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8454____closed__5(); +lean_mark_persistent(l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8454____closed__5); +l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8454____closed__6 = _init_l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8454____closed__6(); +lean_mark_persistent(l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8454____closed__6); +l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8454____closed__7 = _init_l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8454____closed__7(); +lean_mark_persistent(l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8454____closed__7); +l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8454____closed__8 = _init_l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8454____closed__8(); +lean_mark_persistent(l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8454____closed__8); +l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8454____closed__9 = _init_l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8454____closed__9(); +lean_mark_persistent(l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8454____closed__9); +l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8454____closed__10 = _init_l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8454____closed__10(); +lean_mark_persistent(l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8454____closed__10); +l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8454____closed__11 = _init_l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8454____closed__11(); +lean_mark_persistent(l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8454____closed__11); +l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8454____closed__12 = _init_l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8454____closed__12(); +lean_mark_persistent(l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8454____closed__12); +l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8454____closed__13 = _init_l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8454____closed__13(); +lean_mark_persistent(l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8454____closed__13); +l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8454____closed__14 = _init_l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8454____closed__14(); +lean_mark_persistent(l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8454____closed__14); +l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8454____closed__15 = _init_l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8454____closed__15(); +lean_mark_persistent(l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8454____closed__15); +l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8454____closed__16 = _init_l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8454____closed__16(); +lean_mark_persistent(l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8454____closed__16); +l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8454____closed__17 = _init_l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8454____closed__17(); +lean_mark_persistent(l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8454____closed__17); +l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8454____closed__18 = _init_l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8454____closed__18(); +lean_mark_persistent(l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8454____closed__18); +l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8454____closed__19 = _init_l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8454____closed__19(); +lean_mark_persistent(l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8454____closed__19); +if (builtin) {res = l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8454_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10023_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8456_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10025_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_UInt8_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8458_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10062____closed__1 = _init_l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10062____closed__1(); -lean_mark_persistent(l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10062____closed__1); -l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10062____closed__2 = _init_l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10062____closed__2(); -lean_mark_persistent(l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10062____closed__2); -l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10062____closed__3 = _init_l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10062____closed__3(); -lean_mark_persistent(l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10062____closed__3); -l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10062____closed__4 = _init_l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10062____closed__4(); -lean_mark_persistent(l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10062____closed__4); -l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10062____closed__5 = _init_l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10062____closed__5(); -lean_mark_persistent(l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10062____closed__5); -l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10062____closed__6 = _init_l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10062____closed__6(); -lean_mark_persistent(l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10062____closed__6); -l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10062____closed__7 = _init_l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10062____closed__7(); -lean_mark_persistent(l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10062____closed__7); -l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10062____closed__8 = _init_l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10062____closed__8(); -lean_mark_persistent(l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10062____closed__8); -l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10062____closed__9 = _init_l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10062____closed__9(); -lean_mark_persistent(l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10062____closed__9); -l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10062____closed__10 = _init_l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10062____closed__10(); -lean_mark_persistent(l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10062____closed__10); -l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10062____closed__11 = _init_l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10062____closed__11(); -lean_mark_persistent(l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10062____closed__11); -l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10062____closed__12 = _init_l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10062____closed__12(); -lean_mark_persistent(l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10062____closed__12); -l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10062____closed__13 = _init_l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10062____closed__13(); -lean_mark_persistent(l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10062____closed__13); -l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10062____closed__14 = _init_l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10062____closed__14(); -lean_mark_persistent(l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10062____closed__14); -l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10062____closed__15 = _init_l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10062____closed__15(); -lean_mark_persistent(l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10062____closed__15); -l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10062____closed__16 = _init_l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10062____closed__16(); -lean_mark_persistent(l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10062____closed__16); -l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10062____closed__17 = _init_l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10062____closed__17(); -lean_mark_persistent(l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10062____closed__17); -if (builtin) {res = l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10062_(lean_io_mk_world()); +}l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8495____closed__1 = _init_l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8495____closed__1(); +lean_mark_persistent(l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8495____closed__1); +l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8495____closed__2 = _init_l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8495____closed__2(); +lean_mark_persistent(l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8495____closed__2); +l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8495____closed__3 = _init_l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8495____closed__3(); +lean_mark_persistent(l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8495____closed__3); +l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8495____closed__4 = _init_l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8495____closed__4(); +lean_mark_persistent(l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8495____closed__4); +l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8495____closed__5 = _init_l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8495____closed__5(); +lean_mark_persistent(l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8495____closed__5); +l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8495____closed__6 = _init_l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8495____closed__6(); +lean_mark_persistent(l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8495____closed__6); +l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8495____closed__7 = _init_l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8495____closed__7(); +lean_mark_persistent(l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8495____closed__7); +l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8495____closed__8 = _init_l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8495____closed__8(); +lean_mark_persistent(l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8495____closed__8); +l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8495____closed__9 = _init_l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8495____closed__9(); +lean_mark_persistent(l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8495____closed__9); +l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8495____closed__10 = _init_l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8495____closed__10(); +lean_mark_persistent(l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8495____closed__10); +l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8495____closed__11 = _init_l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8495____closed__11(); +lean_mark_persistent(l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8495____closed__11); +l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8495____closed__12 = _init_l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8495____closed__12(); +lean_mark_persistent(l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8495____closed__12); +l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8495____closed__13 = _init_l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8495____closed__13(); +lean_mark_persistent(l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8495____closed__13); +l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8495____closed__14 = _init_l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8495____closed__14(); +lean_mark_persistent(l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8495____closed__14); +l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8495____closed__15 = _init_l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8495____closed__15(); +lean_mark_persistent(l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8495____closed__15); +l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8495____closed__16 = _init_l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8495____closed__16(); +lean_mark_persistent(l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8495____closed__16); +l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8495____closed__17 = _init_l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8495____closed__17(); +lean_mark_persistent(l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8495____closed__17); +if (builtin) {res = l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8495_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10064_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8497_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10066_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_UInt8_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8499_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10102____closed__1 = _init_l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10102____closed__1(); -lean_mark_persistent(l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10102____closed__1); -l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10102____closed__2 = _init_l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10102____closed__2(); -lean_mark_persistent(l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10102____closed__2); -l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10102____closed__3 = _init_l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10102____closed__3(); -lean_mark_persistent(l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10102____closed__3); -l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10102____closed__4 = _init_l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10102____closed__4(); -lean_mark_persistent(l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10102____closed__4); -l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10102____closed__5 = _init_l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10102____closed__5(); -lean_mark_persistent(l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10102____closed__5); -l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10102____closed__6 = _init_l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10102____closed__6(); -lean_mark_persistent(l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10102____closed__6); -l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10102____closed__7 = _init_l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10102____closed__7(); -lean_mark_persistent(l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10102____closed__7); -l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10102____closed__8 = _init_l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10102____closed__8(); -lean_mark_persistent(l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10102____closed__8); -l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10102____closed__9 = _init_l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10102____closed__9(); -lean_mark_persistent(l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10102____closed__9); -l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10102____closed__10 = _init_l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10102____closed__10(); -lean_mark_persistent(l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10102____closed__10); -l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10102____closed__11 = _init_l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10102____closed__11(); -lean_mark_persistent(l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10102____closed__11); -l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10102____closed__12 = _init_l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10102____closed__12(); -lean_mark_persistent(l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10102____closed__12); -l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10102____closed__13 = _init_l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10102____closed__13(); -lean_mark_persistent(l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10102____closed__13); -l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10102____closed__14 = _init_l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10102____closed__14(); -lean_mark_persistent(l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10102____closed__14); -l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10102____closed__15 = _init_l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10102____closed__15(); -lean_mark_persistent(l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10102____closed__15); -l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10102____closed__16 = _init_l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10102____closed__16(); -lean_mark_persistent(l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10102____closed__16); -l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10102____closed__17 = _init_l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10102____closed__17(); -lean_mark_persistent(l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10102____closed__17); -if (builtin) {res = l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10102_(lean_io_mk_world()); +}l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8535____closed__1 = _init_l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8535____closed__1(); +lean_mark_persistent(l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8535____closed__1); +l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8535____closed__2 = _init_l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8535____closed__2(); +lean_mark_persistent(l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8535____closed__2); +l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8535____closed__3 = _init_l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8535____closed__3(); +lean_mark_persistent(l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8535____closed__3); +l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8535____closed__4 = _init_l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8535____closed__4(); +lean_mark_persistent(l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8535____closed__4); +l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8535____closed__5 = _init_l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8535____closed__5(); +lean_mark_persistent(l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8535____closed__5); +l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8535____closed__6 = _init_l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8535____closed__6(); +lean_mark_persistent(l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8535____closed__6); +l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8535____closed__7 = _init_l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8535____closed__7(); +lean_mark_persistent(l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8535____closed__7); +l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8535____closed__8 = _init_l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8535____closed__8(); +lean_mark_persistent(l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8535____closed__8); +l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8535____closed__9 = _init_l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8535____closed__9(); +lean_mark_persistent(l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8535____closed__9); +l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8535____closed__10 = _init_l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8535____closed__10(); +lean_mark_persistent(l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8535____closed__10); +l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8535____closed__11 = _init_l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8535____closed__11(); +lean_mark_persistent(l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8535____closed__11); +l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8535____closed__12 = _init_l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8535____closed__12(); +lean_mark_persistent(l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8535____closed__12); +l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8535____closed__13 = _init_l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8535____closed__13(); +lean_mark_persistent(l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8535____closed__13); +l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8535____closed__14 = _init_l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8535____closed__14(); +lean_mark_persistent(l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8535____closed__14); +l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8535____closed__15 = _init_l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8535____closed__15(); +lean_mark_persistent(l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8535____closed__15); +l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8535____closed__16 = _init_l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8535____closed__16(); +lean_mark_persistent(l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8535____closed__16); +l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8535____closed__17 = _init_l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8535____closed__17(); +lean_mark_persistent(l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8535____closed__17); +if (builtin) {res = l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8535_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10104_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8537_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10106_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_UInt8_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8539_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); }l_UInt8_reduceOfNatCore___closed__1 = _init_l_UInt8_reduceOfNatCore___closed__1(); lean_mark_persistent(l_UInt8_reduceOfNatCore___closed__1); -l___regBuiltin_UInt8_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10222____closed__1 = _init_l___regBuiltin_UInt8_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10222____closed__1(); -lean_mark_persistent(l___regBuiltin_UInt8_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10222____closed__1); -l___regBuiltin_UInt8_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10222____closed__2 = _init_l___regBuiltin_UInt8_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10222____closed__2(); -lean_mark_persistent(l___regBuiltin_UInt8_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10222____closed__2); -l___regBuiltin_UInt8_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10222____closed__3 = _init_l___regBuiltin_UInt8_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10222____closed__3(); -lean_mark_persistent(l___regBuiltin_UInt8_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10222____closed__3); -l___regBuiltin_UInt8_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10222____closed__4 = _init_l___regBuiltin_UInt8_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10222____closed__4(); -lean_mark_persistent(l___regBuiltin_UInt8_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10222____closed__4); -l___regBuiltin_UInt8_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10222____closed__5 = _init_l___regBuiltin_UInt8_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10222____closed__5(); -lean_mark_persistent(l___regBuiltin_UInt8_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10222____closed__5); -l___regBuiltin_UInt8_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10222____closed__6 = _init_l___regBuiltin_UInt8_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10222____closed__6(); -lean_mark_persistent(l___regBuiltin_UInt8_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10222____closed__6); -l___regBuiltin_UInt8_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10222____closed__7 = _init_l___regBuiltin_UInt8_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10222____closed__7(); -lean_mark_persistent(l___regBuiltin_UInt8_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10222____closed__7); -if (builtin) {res = l___regBuiltin_UInt8_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10222_(lean_io_mk_world()); +l___regBuiltin_UInt8_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8650____closed__1 = _init_l___regBuiltin_UInt8_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8650____closed__1(); +lean_mark_persistent(l___regBuiltin_UInt8_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8650____closed__1); +l___regBuiltin_UInt8_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8650____closed__2 = _init_l___regBuiltin_UInt8_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8650____closed__2(); +lean_mark_persistent(l___regBuiltin_UInt8_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8650____closed__2); +l___regBuiltin_UInt8_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8650____closed__3 = _init_l___regBuiltin_UInt8_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8650____closed__3(); +lean_mark_persistent(l___regBuiltin_UInt8_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8650____closed__3); +l___regBuiltin_UInt8_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8650____closed__4 = _init_l___regBuiltin_UInt8_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8650____closed__4(); +lean_mark_persistent(l___regBuiltin_UInt8_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8650____closed__4); +l___regBuiltin_UInt8_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8650____closed__5 = _init_l___regBuiltin_UInt8_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8650____closed__5(); +lean_mark_persistent(l___regBuiltin_UInt8_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8650____closed__5); +l___regBuiltin_UInt8_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8650____closed__6 = _init_l___regBuiltin_UInt8_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8650____closed__6(); +lean_mark_persistent(l___regBuiltin_UInt8_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8650____closed__6); +l___regBuiltin_UInt8_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8650____closed__7 = _init_l___regBuiltin_UInt8_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8650____closed__7(); +lean_mark_persistent(l___regBuiltin_UInt8_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8650____closed__7); +if (builtin) {res = l___regBuiltin_UInt8_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8650_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_UInt8_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10224_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_UInt8_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8652_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_UInt8_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10226_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_UInt8_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8654_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); }l_UInt8_reduceToNat___closed__1 = _init_l_UInt8_reduceToNat___closed__1(); lean_mark_persistent(l_UInt8_reduceToNat___closed__1); -l___regBuiltin_UInt8_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10338____closed__1 = _init_l___regBuiltin_UInt8_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10338____closed__1(); -lean_mark_persistent(l___regBuiltin_UInt8_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10338____closed__1); -l___regBuiltin_UInt8_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10338____closed__2 = _init_l___regBuiltin_UInt8_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10338____closed__2(); -lean_mark_persistent(l___regBuiltin_UInt8_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10338____closed__2); -l___regBuiltin_UInt8_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10338____closed__3 = _init_l___regBuiltin_UInt8_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10338____closed__3(); -lean_mark_persistent(l___regBuiltin_UInt8_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10338____closed__3); -l___regBuiltin_UInt8_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10338____closed__4 = _init_l___regBuiltin_UInt8_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10338____closed__4(); -lean_mark_persistent(l___regBuiltin_UInt8_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10338____closed__4); -l___regBuiltin_UInt8_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10338____closed__5 = _init_l___regBuiltin_UInt8_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10338____closed__5(); -lean_mark_persistent(l___regBuiltin_UInt8_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10338____closed__5); -if (builtin) {res = l___regBuiltin_UInt8_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10338_(lean_io_mk_world()); +l___regBuiltin_UInt8_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8766____closed__1 = _init_l___regBuiltin_UInt8_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8766____closed__1(); +lean_mark_persistent(l___regBuiltin_UInt8_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8766____closed__1); +l___regBuiltin_UInt8_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8766____closed__2 = _init_l___regBuiltin_UInt8_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8766____closed__2(); +lean_mark_persistent(l___regBuiltin_UInt8_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8766____closed__2); +l___regBuiltin_UInt8_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8766____closed__3 = _init_l___regBuiltin_UInt8_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8766____closed__3(); +lean_mark_persistent(l___regBuiltin_UInt8_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8766____closed__3); +l___regBuiltin_UInt8_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8766____closed__4 = _init_l___regBuiltin_UInt8_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8766____closed__4(); +lean_mark_persistent(l___regBuiltin_UInt8_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8766____closed__4); +l___regBuiltin_UInt8_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8766____closed__5 = _init_l___regBuiltin_UInt8_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8766____closed__5(); +lean_mark_persistent(l___regBuiltin_UInt8_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8766____closed__5); +if (builtin) {res = l___regBuiltin_UInt8_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8766_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_UInt8_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10340_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_UInt8_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8768_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_UInt8_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10342_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_UInt8_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8770_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10414____closed__1 = _init_l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10414____closed__1(); -lean_mark_persistent(l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10414____closed__1); -l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10414____closed__2 = _init_l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10414____closed__2(); -lean_mark_persistent(l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10414____closed__2); -l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10414____closed__3 = _init_l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10414____closed__3(); -lean_mark_persistent(l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10414____closed__3); -l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10414____closed__4 = _init_l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10414____closed__4(); -lean_mark_persistent(l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10414____closed__4); -l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10414____closed__5 = _init_l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10414____closed__5(); -lean_mark_persistent(l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10414____closed__5); -l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10414____closed__6 = _init_l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10414____closed__6(); -lean_mark_persistent(l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10414____closed__6); -l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10414____closed__7 = _init_l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10414____closed__7(); -lean_mark_persistent(l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10414____closed__7); -l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10414____closed__8 = _init_l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10414____closed__8(); -lean_mark_persistent(l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10414____closed__8); -l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10414____closed__9 = _init_l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10414____closed__9(); -lean_mark_persistent(l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10414____closed__9); -l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10414____closed__10 = _init_l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10414____closed__10(); -lean_mark_persistent(l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10414____closed__10); -l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10414____closed__11 = _init_l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10414____closed__11(); -lean_mark_persistent(l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10414____closed__11); -l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10414____closed__12 = _init_l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10414____closed__12(); -lean_mark_persistent(l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10414____closed__12); -l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10414____closed__13 = _init_l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10414____closed__13(); -lean_mark_persistent(l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10414____closed__13); -l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10414____closed__14 = _init_l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10414____closed__14(); -lean_mark_persistent(l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10414____closed__14); -l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10414____closed__15 = _init_l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10414____closed__15(); -lean_mark_persistent(l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10414____closed__15); -l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10414____closed__16 = _init_l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10414____closed__16(); -lean_mark_persistent(l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10414____closed__16); -if (builtin) {res = l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10414_(lean_io_mk_world()); +}l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8842____closed__1 = _init_l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8842____closed__1(); +lean_mark_persistent(l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8842____closed__1); +l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8842____closed__2 = _init_l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8842____closed__2(); +lean_mark_persistent(l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8842____closed__2); +l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8842____closed__3 = _init_l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8842____closed__3(); +lean_mark_persistent(l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8842____closed__3); +l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8842____closed__4 = _init_l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8842____closed__4(); +lean_mark_persistent(l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8842____closed__4); +l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8842____closed__5 = _init_l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8842____closed__5(); +lean_mark_persistent(l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8842____closed__5); +l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8842____closed__6 = _init_l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8842____closed__6(); +lean_mark_persistent(l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8842____closed__6); +l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8842____closed__7 = _init_l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8842____closed__7(); +lean_mark_persistent(l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8842____closed__7); +l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8842____closed__8 = _init_l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8842____closed__8(); +lean_mark_persistent(l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8842____closed__8); +l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8842____closed__9 = _init_l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8842____closed__9(); +lean_mark_persistent(l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8842____closed__9); +l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8842____closed__10 = _init_l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8842____closed__10(); +lean_mark_persistent(l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8842____closed__10); +l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8842____closed__11 = _init_l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8842____closed__11(); +lean_mark_persistent(l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8842____closed__11); +l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8842____closed__12 = _init_l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8842____closed__12(); +lean_mark_persistent(l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8842____closed__12); +l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8842____closed__13 = _init_l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8842____closed__13(); +lean_mark_persistent(l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8842____closed__13); +l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8842____closed__14 = _init_l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8842____closed__14(); +lean_mark_persistent(l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8842____closed__14); +l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8842____closed__15 = _init_l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8842____closed__15(); +lean_mark_persistent(l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8842____closed__15); +l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8842____closed__16 = _init_l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8842____closed__16(); +lean_mark_persistent(l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8842____closed__16); +if (builtin) {res = l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8842_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8978__10416_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_UInt8_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7515__8844_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); }l_UInt16_fromExpr___closed__1 = _init_l_UInt16_fromExpr___closed__1(); lean_mark_persistent(l_UInt16_fromExpr___closed__1); l_UInt16_fromExpr___closed__2 = _init_l_UInt16_fromExpr___closed__2(); lean_mark_persistent(l_UInt16_fromExpr___closed__2); -l_UInt16_toExprCore___closed__1 = _init_l_UInt16_toExprCore___closed__1(); -lean_mark_persistent(l_UInt16_toExprCore___closed__1); -l_UInt16_toExprCore___closed__2 = _init_l_UInt16_toExprCore___closed__2(); -lean_mark_persistent(l_UInt16_toExprCore___closed__2); -l_UInt16_toExprCore___closed__3 = _init_l_UInt16_toExprCore___closed__3(); -lean_mark_persistent(l_UInt16_toExprCore___closed__3); -l_UInt16_toExpr___closed__1 = _init_l_UInt16_toExpr___closed__1(); -lean_mark_persistent(l_UInt16_toExpr___closed__1); -l___regBuiltin_UInt16_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11057____closed__1 = _init_l___regBuiltin_UInt16_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11057____closed__1(); -lean_mark_persistent(l___regBuiltin_UInt16_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11057____closed__1); -l___regBuiltin_UInt16_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11057____closed__2 = _init_l___regBuiltin_UInt16_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11057____closed__2(); -lean_mark_persistent(l___regBuiltin_UInt16_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11057____closed__2); -l___regBuiltin_UInt16_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11057____closed__3 = _init_l___regBuiltin_UInt16_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11057____closed__3(); -lean_mark_persistent(l___regBuiltin_UInt16_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11057____closed__3); -l___regBuiltin_UInt16_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11057____closed__4 = _init_l___regBuiltin_UInt16_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11057____closed__4(); -lean_mark_persistent(l___regBuiltin_UInt16_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11057____closed__4); -l___regBuiltin_UInt16_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11057____closed__5 = _init_l___regBuiltin_UInt16_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11057____closed__5(); -lean_mark_persistent(l___regBuiltin_UInt16_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11057____closed__5); -l___regBuiltin_UInt16_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11057____closed__6 = _init_l___regBuiltin_UInt16_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11057____closed__6(); -lean_mark_persistent(l___regBuiltin_UInt16_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11057____closed__6); -l___regBuiltin_UInt16_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11057____closed__7 = _init_l___regBuiltin_UInt16_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11057____closed__7(); -lean_mark_persistent(l___regBuiltin_UInt16_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11057____closed__7); -l___regBuiltin_UInt16_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11057____closed__8 = _init_l___regBuiltin_UInt16_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11057____closed__8(); -lean_mark_persistent(l___regBuiltin_UInt16_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11057____closed__8); -l___regBuiltin_UInt16_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11057____closed__9 = _init_l___regBuiltin_UInt16_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11057____closed__9(); -lean_mark_persistent(l___regBuiltin_UInt16_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11057____closed__9); -if (builtin) {res = l___regBuiltin_UInt16_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11057_(lean_io_mk_world()); +l_UInt16_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847____lambda__1___closed__1 = _init_l_UInt16_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847____lambda__1___closed__1(); +lean_mark_persistent(l_UInt16_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847____lambda__1___closed__1); +l_UInt16_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847____lambda__1___closed__2 = _init_l_UInt16_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847____lambda__1___closed__2(); +lean_mark_persistent(l_UInt16_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847____lambda__1___closed__2); +l_UInt16_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847____lambda__1___closed__3 = _init_l_UInt16_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847____lambda__1___closed__3(); +lean_mark_persistent(l_UInt16_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847____lambda__1___closed__3); +l___regBuiltin_UInt16_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9381____closed__1 = _init_l___regBuiltin_UInt16_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9381____closed__1(); +lean_mark_persistent(l___regBuiltin_UInt16_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9381____closed__1); +l___regBuiltin_UInt16_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9381____closed__2 = _init_l___regBuiltin_UInt16_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9381____closed__2(); +lean_mark_persistent(l___regBuiltin_UInt16_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9381____closed__2); +l___regBuiltin_UInt16_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9381____closed__3 = _init_l___regBuiltin_UInt16_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9381____closed__3(); +lean_mark_persistent(l___regBuiltin_UInt16_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9381____closed__3); +l___regBuiltin_UInt16_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9381____closed__4 = _init_l___regBuiltin_UInt16_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9381____closed__4(); +lean_mark_persistent(l___regBuiltin_UInt16_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9381____closed__4); +l___regBuiltin_UInt16_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9381____closed__5 = _init_l___regBuiltin_UInt16_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9381____closed__5(); +lean_mark_persistent(l___regBuiltin_UInt16_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9381____closed__5); +l___regBuiltin_UInt16_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9381____closed__6 = _init_l___regBuiltin_UInt16_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9381____closed__6(); +lean_mark_persistent(l___regBuiltin_UInt16_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9381____closed__6); +l___regBuiltin_UInt16_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9381____closed__7 = _init_l___regBuiltin_UInt16_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9381____closed__7(); +lean_mark_persistent(l___regBuiltin_UInt16_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9381____closed__7); +l___regBuiltin_UInt16_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9381____closed__8 = _init_l___regBuiltin_UInt16_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9381____closed__8(); +lean_mark_persistent(l___regBuiltin_UInt16_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9381____closed__8); +l___regBuiltin_UInt16_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9381____closed__9 = _init_l___regBuiltin_UInt16_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9381____closed__9(); +lean_mark_persistent(l___regBuiltin_UInt16_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9381____closed__9); +if (builtin) {res = l___regBuiltin_UInt16_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9381_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_UInt16_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11059_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_UInt16_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9383_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_UInt16_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11061_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_UInt16_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9385_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}l___regBuiltin_UInt16_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11097____closed__1 = _init_l___regBuiltin_UInt16_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11097____closed__1(); -lean_mark_persistent(l___regBuiltin_UInt16_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11097____closed__1); -l___regBuiltin_UInt16_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11097____closed__2 = _init_l___regBuiltin_UInt16_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11097____closed__2(); -lean_mark_persistent(l___regBuiltin_UInt16_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11097____closed__2); -l___regBuiltin_UInt16_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11097____closed__3 = _init_l___regBuiltin_UInt16_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11097____closed__3(); -lean_mark_persistent(l___regBuiltin_UInt16_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11097____closed__3); -l___regBuiltin_UInt16_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11097____closed__4 = _init_l___regBuiltin_UInt16_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11097____closed__4(); -lean_mark_persistent(l___regBuiltin_UInt16_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11097____closed__4); -l___regBuiltin_UInt16_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11097____closed__5 = _init_l___regBuiltin_UInt16_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11097____closed__5(); -lean_mark_persistent(l___regBuiltin_UInt16_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11097____closed__5); -l___regBuiltin_UInt16_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11097____closed__6 = _init_l___regBuiltin_UInt16_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11097____closed__6(); -lean_mark_persistent(l___regBuiltin_UInt16_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11097____closed__6); -l___regBuiltin_UInt16_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11097____closed__7 = _init_l___regBuiltin_UInt16_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11097____closed__7(); -lean_mark_persistent(l___regBuiltin_UInt16_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11097____closed__7); -l___regBuiltin_UInt16_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11097____closed__8 = _init_l___regBuiltin_UInt16_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11097____closed__8(); -lean_mark_persistent(l___regBuiltin_UInt16_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11097____closed__8); -if (builtin) {res = l___regBuiltin_UInt16_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11097_(lean_io_mk_world()); +}l___regBuiltin_UInt16_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9421____closed__1 = _init_l___regBuiltin_UInt16_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9421____closed__1(); +lean_mark_persistent(l___regBuiltin_UInt16_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9421____closed__1); +l___regBuiltin_UInt16_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9421____closed__2 = _init_l___regBuiltin_UInt16_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9421____closed__2(); +lean_mark_persistent(l___regBuiltin_UInt16_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9421____closed__2); +l___regBuiltin_UInt16_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9421____closed__3 = _init_l___regBuiltin_UInt16_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9421____closed__3(); +lean_mark_persistent(l___regBuiltin_UInt16_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9421____closed__3); +l___regBuiltin_UInt16_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9421____closed__4 = _init_l___regBuiltin_UInt16_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9421____closed__4(); +lean_mark_persistent(l___regBuiltin_UInt16_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9421____closed__4); +l___regBuiltin_UInt16_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9421____closed__5 = _init_l___regBuiltin_UInt16_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9421____closed__5(); +lean_mark_persistent(l___regBuiltin_UInt16_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9421____closed__5); +l___regBuiltin_UInt16_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9421____closed__6 = _init_l___regBuiltin_UInt16_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9421____closed__6(); +lean_mark_persistent(l___regBuiltin_UInt16_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9421____closed__6); +l___regBuiltin_UInt16_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9421____closed__7 = _init_l___regBuiltin_UInt16_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9421____closed__7(); +lean_mark_persistent(l___regBuiltin_UInt16_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9421____closed__7); +l___regBuiltin_UInt16_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9421____closed__8 = _init_l___regBuiltin_UInt16_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9421____closed__8(); +lean_mark_persistent(l___regBuiltin_UInt16_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9421____closed__8); +if (builtin) {res = l___regBuiltin_UInt16_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9421_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_UInt16_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11099_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_UInt16_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9423_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_UInt16_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11101_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_UInt16_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9425_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}l___regBuiltin_UInt16_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11137____closed__1 = _init_l___regBuiltin_UInt16_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11137____closed__1(); -lean_mark_persistent(l___regBuiltin_UInt16_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11137____closed__1); -l___regBuiltin_UInt16_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11137____closed__2 = _init_l___regBuiltin_UInt16_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11137____closed__2(); -lean_mark_persistent(l___regBuiltin_UInt16_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11137____closed__2); -l___regBuiltin_UInt16_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11137____closed__3 = _init_l___regBuiltin_UInt16_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11137____closed__3(); -lean_mark_persistent(l___regBuiltin_UInt16_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11137____closed__3); -l___regBuiltin_UInt16_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11137____closed__4 = _init_l___regBuiltin_UInt16_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11137____closed__4(); -lean_mark_persistent(l___regBuiltin_UInt16_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11137____closed__4); -l___regBuiltin_UInt16_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11137____closed__5 = _init_l___regBuiltin_UInt16_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11137____closed__5(); -lean_mark_persistent(l___regBuiltin_UInt16_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11137____closed__5); -l___regBuiltin_UInt16_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11137____closed__6 = _init_l___regBuiltin_UInt16_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11137____closed__6(); -lean_mark_persistent(l___regBuiltin_UInt16_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11137____closed__6); -l___regBuiltin_UInt16_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11137____closed__7 = _init_l___regBuiltin_UInt16_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11137____closed__7(); -lean_mark_persistent(l___regBuiltin_UInt16_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11137____closed__7); -l___regBuiltin_UInt16_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11137____closed__8 = _init_l___regBuiltin_UInt16_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11137____closed__8(); -lean_mark_persistent(l___regBuiltin_UInt16_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11137____closed__8); -if (builtin) {res = l___regBuiltin_UInt16_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11137_(lean_io_mk_world()); +}l___regBuiltin_UInt16_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9461____closed__1 = _init_l___regBuiltin_UInt16_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9461____closed__1(); +lean_mark_persistent(l___regBuiltin_UInt16_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9461____closed__1); +l___regBuiltin_UInt16_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9461____closed__2 = _init_l___regBuiltin_UInt16_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9461____closed__2(); +lean_mark_persistent(l___regBuiltin_UInt16_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9461____closed__2); +l___regBuiltin_UInt16_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9461____closed__3 = _init_l___regBuiltin_UInt16_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9461____closed__3(); +lean_mark_persistent(l___regBuiltin_UInt16_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9461____closed__3); +l___regBuiltin_UInt16_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9461____closed__4 = _init_l___regBuiltin_UInt16_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9461____closed__4(); +lean_mark_persistent(l___regBuiltin_UInt16_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9461____closed__4); +l___regBuiltin_UInt16_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9461____closed__5 = _init_l___regBuiltin_UInt16_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9461____closed__5(); +lean_mark_persistent(l___regBuiltin_UInt16_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9461____closed__5); +l___regBuiltin_UInt16_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9461____closed__6 = _init_l___regBuiltin_UInt16_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9461____closed__6(); +lean_mark_persistent(l___regBuiltin_UInt16_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9461____closed__6); +l___regBuiltin_UInt16_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9461____closed__7 = _init_l___regBuiltin_UInt16_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9461____closed__7(); +lean_mark_persistent(l___regBuiltin_UInt16_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9461____closed__7); +l___regBuiltin_UInt16_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9461____closed__8 = _init_l___regBuiltin_UInt16_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9461____closed__8(); +lean_mark_persistent(l___regBuiltin_UInt16_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9461____closed__8); +if (builtin) {res = l___regBuiltin_UInt16_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9461_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_UInt16_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11139_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_UInt16_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9463_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_UInt16_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11141_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_UInt16_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9465_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}l___regBuiltin_UInt16_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11177____closed__1 = _init_l___regBuiltin_UInt16_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11177____closed__1(); -lean_mark_persistent(l___regBuiltin_UInt16_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11177____closed__1); -l___regBuiltin_UInt16_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11177____closed__2 = _init_l___regBuiltin_UInt16_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11177____closed__2(); -lean_mark_persistent(l___regBuiltin_UInt16_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11177____closed__2); -l___regBuiltin_UInt16_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11177____closed__3 = _init_l___regBuiltin_UInt16_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11177____closed__3(); -lean_mark_persistent(l___regBuiltin_UInt16_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11177____closed__3); -l___regBuiltin_UInt16_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11177____closed__4 = _init_l___regBuiltin_UInt16_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11177____closed__4(); -lean_mark_persistent(l___regBuiltin_UInt16_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11177____closed__4); -l___regBuiltin_UInt16_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11177____closed__5 = _init_l___regBuiltin_UInt16_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11177____closed__5(); -lean_mark_persistent(l___regBuiltin_UInt16_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11177____closed__5); -l___regBuiltin_UInt16_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11177____closed__6 = _init_l___regBuiltin_UInt16_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11177____closed__6(); -lean_mark_persistent(l___regBuiltin_UInt16_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11177____closed__6); -l___regBuiltin_UInt16_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11177____closed__7 = _init_l___regBuiltin_UInt16_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11177____closed__7(); -lean_mark_persistent(l___regBuiltin_UInt16_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11177____closed__7); -l___regBuiltin_UInt16_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11177____closed__8 = _init_l___regBuiltin_UInt16_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11177____closed__8(); -lean_mark_persistent(l___regBuiltin_UInt16_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11177____closed__8); -if (builtin) {res = l___regBuiltin_UInt16_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11177_(lean_io_mk_world()); +}l___regBuiltin_UInt16_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9501____closed__1 = _init_l___regBuiltin_UInt16_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9501____closed__1(); +lean_mark_persistent(l___regBuiltin_UInt16_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9501____closed__1); +l___regBuiltin_UInt16_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9501____closed__2 = _init_l___regBuiltin_UInt16_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9501____closed__2(); +lean_mark_persistent(l___regBuiltin_UInt16_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9501____closed__2); +l___regBuiltin_UInt16_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9501____closed__3 = _init_l___regBuiltin_UInt16_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9501____closed__3(); +lean_mark_persistent(l___regBuiltin_UInt16_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9501____closed__3); +l___regBuiltin_UInt16_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9501____closed__4 = _init_l___regBuiltin_UInt16_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9501____closed__4(); +lean_mark_persistent(l___regBuiltin_UInt16_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9501____closed__4); +l___regBuiltin_UInt16_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9501____closed__5 = _init_l___regBuiltin_UInt16_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9501____closed__5(); +lean_mark_persistent(l___regBuiltin_UInt16_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9501____closed__5); +l___regBuiltin_UInt16_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9501____closed__6 = _init_l___regBuiltin_UInt16_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9501____closed__6(); +lean_mark_persistent(l___regBuiltin_UInt16_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9501____closed__6); +l___regBuiltin_UInt16_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9501____closed__7 = _init_l___regBuiltin_UInt16_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9501____closed__7(); +lean_mark_persistent(l___regBuiltin_UInt16_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9501____closed__7); +l___regBuiltin_UInt16_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9501____closed__8 = _init_l___regBuiltin_UInt16_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9501____closed__8(); +lean_mark_persistent(l___regBuiltin_UInt16_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9501____closed__8); +if (builtin) {res = l___regBuiltin_UInt16_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9501_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_UInt16_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11179_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_UInt16_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9503_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_UInt16_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11181_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_UInt16_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9505_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}l___regBuiltin_UInt16_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11217____closed__1 = _init_l___regBuiltin_UInt16_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11217____closed__1(); -lean_mark_persistent(l___regBuiltin_UInt16_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11217____closed__1); -l___regBuiltin_UInt16_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11217____closed__2 = _init_l___regBuiltin_UInt16_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11217____closed__2(); -lean_mark_persistent(l___regBuiltin_UInt16_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11217____closed__2); -l___regBuiltin_UInt16_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11217____closed__3 = _init_l___regBuiltin_UInt16_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11217____closed__3(); -lean_mark_persistent(l___regBuiltin_UInt16_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11217____closed__3); -l___regBuiltin_UInt16_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11217____closed__4 = _init_l___regBuiltin_UInt16_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11217____closed__4(); -lean_mark_persistent(l___regBuiltin_UInt16_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11217____closed__4); -l___regBuiltin_UInt16_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11217____closed__5 = _init_l___regBuiltin_UInt16_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11217____closed__5(); -lean_mark_persistent(l___regBuiltin_UInt16_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11217____closed__5); -l___regBuiltin_UInt16_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11217____closed__6 = _init_l___regBuiltin_UInt16_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11217____closed__6(); -lean_mark_persistent(l___regBuiltin_UInt16_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11217____closed__6); -l___regBuiltin_UInt16_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11217____closed__7 = _init_l___regBuiltin_UInt16_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11217____closed__7(); -lean_mark_persistent(l___regBuiltin_UInt16_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11217____closed__7); -l___regBuiltin_UInt16_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11217____closed__8 = _init_l___regBuiltin_UInt16_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11217____closed__8(); -lean_mark_persistent(l___regBuiltin_UInt16_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11217____closed__8); -if (builtin) {res = l___regBuiltin_UInt16_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11217_(lean_io_mk_world()); +}l___regBuiltin_UInt16_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9541____closed__1 = _init_l___regBuiltin_UInt16_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9541____closed__1(); +lean_mark_persistent(l___regBuiltin_UInt16_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9541____closed__1); +l___regBuiltin_UInt16_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9541____closed__2 = _init_l___regBuiltin_UInt16_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9541____closed__2(); +lean_mark_persistent(l___regBuiltin_UInt16_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9541____closed__2); +l___regBuiltin_UInt16_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9541____closed__3 = _init_l___regBuiltin_UInt16_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9541____closed__3(); +lean_mark_persistent(l___regBuiltin_UInt16_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9541____closed__3); +l___regBuiltin_UInt16_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9541____closed__4 = _init_l___regBuiltin_UInt16_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9541____closed__4(); +lean_mark_persistent(l___regBuiltin_UInt16_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9541____closed__4); +l___regBuiltin_UInt16_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9541____closed__5 = _init_l___regBuiltin_UInt16_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9541____closed__5(); +lean_mark_persistent(l___regBuiltin_UInt16_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9541____closed__5); +l___regBuiltin_UInt16_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9541____closed__6 = _init_l___regBuiltin_UInt16_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9541____closed__6(); +lean_mark_persistent(l___regBuiltin_UInt16_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9541____closed__6); +l___regBuiltin_UInt16_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9541____closed__7 = _init_l___regBuiltin_UInt16_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9541____closed__7(); +lean_mark_persistent(l___regBuiltin_UInt16_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9541____closed__7); +l___regBuiltin_UInt16_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9541____closed__8 = _init_l___regBuiltin_UInt16_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9541____closed__8(); +lean_mark_persistent(l___regBuiltin_UInt16_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9541____closed__8); +if (builtin) {res = l___regBuiltin_UInt16_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9541_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_UInt16_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11219_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_UInt16_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9543_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_UInt16_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11221_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_UInt16_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9545_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}l___regBuiltin_UInt16_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11258____closed__1 = _init_l___regBuiltin_UInt16_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11258____closed__1(); -lean_mark_persistent(l___regBuiltin_UInt16_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11258____closed__1); -l___regBuiltin_UInt16_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11258____closed__2 = _init_l___regBuiltin_UInt16_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11258____closed__2(); -lean_mark_persistent(l___regBuiltin_UInt16_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11258____closed__2); -l___regBuiltin_UInt16_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11258____closed__3 = _init_l___regBuiltin_UInt16_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11258____closed__3(); -lean_mark_persistent(l___regBuiltin_UInt16_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11258____closed__3); -l___regBuiltin_UInt16_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11258____closed__4 = _init_l___regBuiltin_UInt16_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11258____closed__4(); -lean_mark_persistent(l___regBuiltin_UInt16_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11258____closed__4); -l___regBuiltin_UInt16_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11258____closed__5 = _init_l___regBuiltin_UInt16_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11258____closed__5(); -lean_mark_persistent(l___regBuiltin_UInt16_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11258____closed__5); -l___regBuiltin_UInt16_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11258____closed__6 = _init_l___regBuiltin_UInt16_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11258____closed__6(); -lean_mark_persistent(l___regBuiltin_UInt16_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11258____closed__6); -if (builtin) {res = l___regBuiltin_UInt16_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11258_(lean_io_mk_world()); +}l___regBuiltin_UInt16_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9582____closed__1 = _init_l___regBuiltin_UInt16_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9582____closed__1(); +lean_mark_persistent(l___regBuiltin_UInt16_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9582____closed__1); +l___regBuiltin_UInt16_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9582____closed__2 = _init_l___regBuiltin_UInt16_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9582____closed__2(); +lean_mark_persistent(l___regBuiltin_UInt16_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9582____closed__2); +l___regBuiltin_UInt16_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9582____closed__3 = _init_l___regBuiltin_UInt16_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9582____closed__3(); +lean_mark_persistent(l___regBuiltin_UInt16_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9582____closed__3); +l___regBuiltin_UInt16_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9582____closed__4 = _init_l___regBuiltin_UInt16_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9582____closed__4(); +lean_mark_persistent(l___regBuiltin_UInt16_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9582____closed__4); +l___regBuiltin_UInt16_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9582____closed__5 = _init_l___regBuiltin_UInt16_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9582____closed__5(); +lean_mark_persistent(l___regBuiltin_UInt16_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9582____closed__5); +l___regBuiltin_UInt16_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9582____closed__6 = _init_l___regBuiltin_UInt16_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9582____closed__6(); +lean_mark_persistent(l___regBuiltin_UInt16_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9582____closed__6); +if (builtin) {res = l___regBuiltin_UInt16_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9582_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_UInt16_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11260_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_UInt16_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9584_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_UInt16_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11262_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_UInt16_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9586_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}l___regBuiltin_UInt16_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11299____closed__1 = _init_l___regBuiltin_UInt16_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11299____closed__1(); -lean_mark_persistent(l___regBuiltin_UInt16_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11299____closed__1); -l___regBuiltin_UInt16_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11299____closed__2 = _init_l___regBuiltin_UInt16_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11299____closed__2(); -lean_mark_persistent(l___regBuiltin_UInt16_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11299____closed__2); -l___regBuiltin_UInt16_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11299____closed__3 = _init_l___regBuiltin_UInt16_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11299____closed__3(); -lean_mark_persistent(l___regBuiltin_UInt16_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11299____closed__3); -l___regBuiltin_UInt16_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11299____closed__4 = _init_l___regBuiltin_UInt16_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11299____closed__4(); -lean_mark_persistent(l___regBuiltin_UInt16_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11299____closed__4); -l___regBuiltin_UInt16_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11299____closed__5 = _init_l___regBuiltin_UInt16_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11299____closed__5(); -lean_mark_persistent(l___regBuiltin_UInt16_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11299____closed__5); -l___regBuiltin_UInt16_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11299____closed__6 = _init_l___regBuiltin_UInt16_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11299____closed__6(); -lean_mark_persistent(l___regBuiltin_UInt16_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11299____closed__6); -if (builtin) {res = l___regBuiltin_UInt16_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11299_(lean_io_mk_world()); +}l___regBuiltin_UInt16_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9623____closed__1 = _init_l___regBuiltin_UInt16_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9623____closed__1(); +lean_mark_persistent(l___regBuiltin_UInt16_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9623____closed__1); +l___regBuiltin_UInt16_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9623____closed__2 = _init_l___regBuiltin_UInt16_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9623____closed__2(); +lean_mark_persistent(l___regBuiltin_UInt16_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9623____closed__2); +l___regBuiltin_UInt16_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9623____closed__3 = _init_l___regBuiltin_UInt16_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9623____closed__3(); +lean_mark_persistent(l___regBuiltin_UInt16_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9623____closed__3); +l___regBuiltin_UInt16_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9623____closed__4 = _init_l___regBuiltin_UInt16_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9623____closed__4(); +lean_mark_persistent(l___regBuiltin_UInt16_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9623____closed__4); +l___regBuiltin_UInt16_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9623____closed__5 = _init_l___regBuiltin_UInt16_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9623____closed__5(); +lean_mark_persistent(l___regBuiltin_UInt16_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9623____closed__5); +l___regBuiltin_UInt16_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9623____closed__6 = _init_l___regBuiltin_UInt16_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9623____closed__6(); +lean_mark_persistent(l___regBuiltin_UInt16_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9623____closed__6); +if (builtin) {res = l___regBuiltin_UInt16_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9623_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_UInt16_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11301_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_UInt16_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9625_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_UInt16_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11303_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_UInt16_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9627_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}l___regBuiltin_UInt16_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11340____closed__1 = _init_l___regBuiltin_UInt16_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11340____closed__1(); -lean_mark_persistent(l___regBuiltin_UInt16_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11340____closed__1); -l___regBuiltin_UInt16_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11340____closed__2 = _init_l___regBuiltin_UInt16_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11340____closed__2(); -lean_mark_persistent(l___regBuiltin_UInt16_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11340____closed__2); -if (builtin) {res = l___regBuiltin_UInt16_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11340_(lean_io_mk_world()); +}l___regBuiltin_UInt16_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9664____closed__1 = _init_l___regBuiltin_UInt16_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9664____closed__1(); +lean_mark_persistent(l___regBuiltin_UInt16_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9664____closed__1); +l___regBuiltin_UInt16_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9664____closed__2 = _init_l___regBuiltin_UInt16_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9664____closed__2(); +lean_mark_persistent(l___regBuiltin_UInt16_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9664____closed__2); +if (builtin) {res = l___regBuiltin_UInt16_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9664_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_UInt16_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11342_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_UInt16_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9666_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_UInt16_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11344_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_UInt16_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9668_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}l___regBuiltin_UInt16_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11381____closed__1 = _init_l___regBuiltin_UInt16_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11381____closed__1(); -lean_mark_persistent(l___regBuiltin_UInt16_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11381____closed__1); -l___regBuiltin_UInt16_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11381____closed__2 = _init_l___regBuiltin_UInt16_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11381____closed__2(); -lean_mark_persistent(l___regBuiltin_UInt16_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11381____closed__2); -if (builtin) {res = l___regBuiltin_UInt16_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11381_(lean_io_mk_world()); +}l___regBuiltin_UInt16_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9705____closed__1 = _init_l___regBuiltin_UInt16_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9705____closed__1(); +lean_mark_persistent(l___regBuiltin_UInt16_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9705____closed__1); +l___regBuiltin_UInt16_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9705____closed__2 = _init_l___regBuiltin_UInt16_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9705____closed__2(); +lean_mark_persistent(l___regBuiltin_UInt16_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9705____closed__2); +if (builtin) {res = l___regBuiltin_UInt16_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9705_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_UInt16_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11383_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_UInt16_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9707_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_UInt16_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11385_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_UInt16_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9709_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}l___regBuiltin_UInt16_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11422____closed__1 = _init_l___regBuiltin_UInt16_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11422____closed__1(); -lean_mark_persistent(l___regBuiltin_UInt16_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11422____closed__1); -l___regBuiltin_UInt16_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11422____closed__2 = _init_l___regBuiltin_UInt16_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11422____closed__2(); -lean_mark_persistent(l___regBuiltin_UInt16_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11422____closed__2); -l___regBuiltin_UInt16_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11422____closed__3 = _init_l___regBuiltin_UInt16_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11422____closed__3(); -lean_mark_persistent(l___regBuiltin_UInt16_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11422____closed__3); -l___regBuiltin_UInt16_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11422____closed__4 = _init_l___regBuiltin_UInt16_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11422____closed__4(); -lean_mark_persistent(l___regBuiltin_UInt16_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11422____closed__4); -l___regBuiltin_UInt16_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11422____closed__5 = _init_l___regBuiltin_UInt16_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11422____closed__5(); -lean_mark_persistent(l___regBuiltin_UInt16_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11422____closed__5); -l___regBuiltin_UInt16_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11422____closed__6 = _init_l___regBuiltin_UInt16_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11422____closed__6(); -lean_mark_persistent(l___regBuiltin_UInt16_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11422____closed__6); -l___regBuiltin_UInt16_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11422____closed__7 = _init_l___regBuiltin_UInt16_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11422____closed__7(); -lean_mark_persistent(l___regBuiltin_UInt16_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11422____closed__7); -l___regBuiltin_UInt16_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11422____closed__8 = _init_l___regBuiltin_UInt16_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11422____closed__8(); -lean_mark_persistent(l___regBuiltin_UInt16_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11422____closed__8); -l___regBuiltin_UInt16_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11422____closed__9 = _init_l___regBuiltin_UInt16_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11422____closed__9(); -lean_mark_persistent(l___regBuiltin_UInt16_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11422____closed__9); -l___regBuiltin_UInt16_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11422____closed__10 = _init_l___regBuiltin_UInt16_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11422____closed__10(); -lean_mark_persistent(l___regBuiltin_UInt16_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11422____closed__10); -l___regBuiltin_UInt16_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11422____closed__11 = _init_l___regBuiltin_UInt16_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11422____closed__11(); -lean_mark_persistent(l___regBuiltin_UInt16_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11422____closed__11); -l___regBuiltin_UInt16_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11422____closed__12 = _init_l___regBuiltin_UInt16_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11422____closed__12(); -lean_mark_persistent(l___regBuiltin_UInt16_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11422____closed__12); -l___regBuiltin_UInt16_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11422____closed__13 = _init_l___regBuiltin_UInt16_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11422____closed__13(); -lean_mark_persistent(l___regBuiltin_UInt16_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11422____closed__13); -l___regBuiltin_UInt16_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11422____closed__14 = _init_l___regBuiltin_UInt16_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11422____closed__14(); -lean_mark_persistent(l___regBuiltin_UInt16_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11422____closed__14); -if (builtin) {res = l___regBuiltin_UInt16_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11422_(lean_io_mk_world()); +}l___regBuiltin_UInt16_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9746____closed__1 = _init_l___regBuiltin_UInt16_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9746____closed__1(); +lean_mark_persistent(l___regBuiltin_UInt16_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9746____closed__1); +l___regBuiltin_UInt16_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9746____closed__2 = _init_l___regBuiltin_UInt16_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9746____closed__2(); +lean_mark_persistent(l___regBuiltin_UInt16_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9746____closed__2); +l___regBuiltin_UInt16_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9746____closed__3 = _init_l___regBuiltin_UInt16_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9746____closed__3(); +lean_mark_persistent(l___regBuiltin_UInt16_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9746____closed__3); +l___regBuiltin_UInt16_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9746____closed__4 = _init_l___regBuiltin_UInt16_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9746____closed__4(); +lean_mark_persistent(l___regBuiltin_UInt16_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9746____closed__4); +l___regBuiltin_UInt16_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9746____closed__5 = _init_l___regBuiltin_UInt16_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9746____closed__5(); +lean_mark_persistent(l___regBuiltin_UInt16_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9746____closed__5); +l___regBuiltin_UInt16_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9746____closed__6 = _init_l___regBuiltin_UInt16_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9746____closed__6(); +lean_mark_persistent(l___regBuiltin_UInt16_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9746____closed__6); +l___regBuiltin_UInt16_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9746____closed__7 = _init_l___regBuiltin_UInt16_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9746____closed__7(); +lean_mark_persistent(l___regBuiltin_UInt16_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9746____closed__7); +l___regBuiltin_UInt16_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9746____closed__8 = _init_l___regBuiltin_UInt16_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9746____closed__8(); +lean_mark_persistent(l___regBuiltin_UInt16_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9746____closed__8); +l___regBuiltin_UInt16_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9746____closed__9 = _init_l___regBuiltin_UInt16_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9746____closed__9(); +lean_mark_persistent(l___regBuiltin_UInt16_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9746____closed__9); +l___regBuiltin_UInt16_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9746____closed__10 = _init_l___regBuiltin_UInt16_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9746____closed__10(); +lean_mark_persistent(l___regBuiltin_UInt16_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9746____closed__10); +l___regBuiltin_UInt16_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9746____closed__11 = _init_l___regBuiltin_UInt16_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9746____closed__11(); +lean_mark_persistent(l___regBuiltin_UInt16_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9746____closed__11); +l___regBuiltin_UInt16_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9746____closed__12 = _init_l___regBuiltin_UInt16_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9746____closed__12(); +lean_mark_persistent(l___regBuiltin_UInt16_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9746____closed__12); +l___regBuiltin_UInt16_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9746____closed__13 = _init_l___regBuiltin_UInt16_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9746____closed__13(); +lean_mark_persistent(l___regBuiltin_UInt16_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9746____closed__13); +l___regBuiltin_UInt16_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9746____closed__14 = _init_l___regBuiltin_UInt16_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9746____closed__14(); +lean_mark_persistent(l___regBuiltin_UInt16_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9746____closed__14); +if (builtin) {res = l___regBuiltin_UInt16_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9746_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_UInt16_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11424_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_UInt16_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9748_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_UInt16_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11426_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_UInt16_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9750_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}l___regBuiltin_UInt16_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11462____closed__1 = _init_l___regBuiltin_UInt16_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11462____closed__1(); -lean_mark_persistent(l___regBuiltin_UInt16_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11462____closed__1); -l___regBuiltin_UInt16_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11462____closed__2 = _init_l___regBuiltin_UInt16_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11462____closed__2(); -lean_mark_persistent(l___regBuiltin_UInt16_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11462____closed__2); -l___regBuiltin_UInt16_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11462____closed__3 = _init_l___regBuiltin_UInt16_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11462____closed__3(); -lean_mark_persistent(l___regBuiltin_UInt16_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11462____closed__3); -l___regBuiltin_UInt16_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11462____closed__4 = _init_l___regBuiltin_UInt16_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11462____closed__4(); -lean_mark_persistent(l___regBuiltin_UInt16_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11462____closed__4); -l___regBuiltin_UInt16_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11462____closed__5 = _init_l___regBuiltin_UInt16_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11462____closed__5(); -lean_mark_persistent(l___regBuiltin_UInt16_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11462____closed__5); -l___regBuiltin_UInt16_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11462____closed__6 = _init_l___regBuiltin_UInt16_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11462____closed__6(); -lean_mark_persistent(l___regBuiltin_UInt16_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11462____closed__6); -l___regBuiltin_UInt16_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11462____closed__7 = _init_l___regBuiltin_UInt16_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11462____closed__7(); -lean_mark_persistent(l___regBuiltin_UInt16_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11462____closed__7); -l___regBuiltin_UInt16_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11462____closed__8 = _init_l___regBuiltin_UInt16_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11462____closed__8(); -lean_mark_persistent(l___regBuiltin_UInt16_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11462____closed__8); -l___regBuiltin_UInt16_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11462____closed__9 = _init_l___regBuiltin_UInt16_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11462____closed__9(); -lean_mark_persistent(l___regBuiltin_UInt16_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11462____closed__9); -l___regBuiltin_UInt16_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11462____closed__10 = _init_l___regBuiltin_UInt16_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11462____closed__10(); -lean_mark_persistent(l___regBuiltin_UInt16_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11462____closed__10); -l___regBuiltin_UInt16_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11462____closed__11 = _init_l___regBuiltin_UInt16_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11462____closed__11(); -lean_mark_persistent(l___regBuiltin_UInt16_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11462____closed__11); -l___regBuiltin_UInt16_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11462____closed__12 = _init_l___regBuiltin_UInt16_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11462____closed__12(); -lean_mark_persistent(l___regBuiltin_UInt16_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11462____closed__12); -l___regBuiltin_UInt16_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11462____closed__13 = _init_l___regBuiltin_UInt16_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11462____closed__13(); -lean_mark_persistent(l___regBuiltin_UInt16_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11462____closed__13); -l___regBuiltin_UInt16_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11462____closed__14 = _init_l___regBuiltin_UInt16_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11462____closed__14(); -lean_mark_persistent(l___regBuiltin_UInt16_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11462____closed__14); -if (builtin) {res = l___regBuiltin_UInt16_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11462_(lean_io_mk_world()); +}l___regBuiltin_UInt16_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9786____closed__1 = _init_l___regBuiltin_UInt16_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9786____closed__1(); +lean_mark_persistent(l___regBuiltin_UInt16_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9786____closed__1); +l___regBuiltin_UInt16_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9786____closed__2 = _init_l___regBuiltin_UInt16_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9786____closed__2(); +lean_mark_persistent(l___regBuiltin_UInt16_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9786____closed__2); +l___regBuiltin_UInt16_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9786____closed__3 = _init_l___regBuiltin_UInt16_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9786____closed__3(); +lean_mark_persistent(l___regBuiltin_UInt16_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9786____closed__3); +l___regBuiltin_UInt16_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9786____closed__4 = _init_l___regBuiltin_UInt16_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9786____closed__4(); +lean_mark_persistent(l___regBuiltin_UInt16_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9786____closed__4); +l___regBuiltin_UInt16_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9786____closed__5 = _init_l___regBuiltin_UInt16_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9786____closed__5(); +lean_mark_persistent(l___regBuiltin_UInt16_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9786____closed__5); +l___regBuiltin_UInt16_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9786____closed__6 = _init_l___regBuiltin_UInt16_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9786____closed__6(); +lean_mark_persistent(l___regBuiltin_UInt16_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9786____closed__6); +l___regBuiltin_UInt16_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9786____closed__7 = _init_l___regBuiltin_UInt16_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9786____closed__7(); +lean_mark_persistent(l___regBuiltin_UInt16_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9786____closed__7); +l___regBuiltin_UInt16_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9786____closed__8 = _init_l___regBuiltin_UInt16_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9786____closed__8(); +lean_mark_persistent(l___regBuiltin_UInt16_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9786____closed__8); +l___regBuiltin_UInt16_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9786____closed__9 = _init_l___regBuiltin_UInt16_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9786____closed__9(); +lean_mark_persistent(l___regBuiltin_UInt16_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9786____closed__9); +l___regBuiltin_UInt16_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9786____closed__10 = _init_l___regBuiltin_UInt16_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9786____closed__10(); +lean_mark_persistent(l___regBuiltin_UInt16_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9786____closed__10); +l___regBuiltin_UInt16_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9786____closed__11 = _init_l___regBuiltin_UInt16_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9786____closed__11(); +lean_mark_persistent(l___regBuiltin_UInt16_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9786____closed__11); +l___regBuiltin_UInt16_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9786____closed__12 = _init_l___regBuiltin_UInt16_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9786____closed__12(); +lean_mark_persistent(l___regBuiltin_UInt16_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9786____closed__12); +l___regBuiltin_UInt16_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9786____closed__13 = _init_l___regBuiltin_UInt16_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9786____closed__13(); +lean_mark_persistent(l___regBuiltin_UInt16_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9786____closed__13); +l___regBuiltin_UInt16_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9786____closed__14 = _init_l___regBuiltin_UInt16_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9786____closed__14(); +lean_mark_persistent(l___regBuiltin_UInt16_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9786____closed__14); +if (builtin) {res = l___regBuiltin_UInt16_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9786_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_UInt16_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11464_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_UInt16_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9788_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_UInt16_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11466_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_UInt16_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9790_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}l___regBuiltin_UInt16_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11503____closed__1 = _init_l___regBuiltin_UInt16_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11503____closed__1(); -lean_mark_persistent(l___regBuiltin_UInt16_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11503____closed__1); -l___regBuiltin_UInt16_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11503____closed__2 = _init_l___regBuiltin_UInt16_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11503____closed__2(); -lean_mark_persistent(l___regBuiltin_UInt16_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11503____closed__2); -l___regBuiltin_UInt16_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11503____closed__3 = _init_l___regBuiltin_UInt16_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11503____closed__3(); -lean_mark_persistent(l___regBuiltin_UInt16_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11503____closed__3); -l___regBuiltin_UInt16_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11503____closed__4 = _init_l___regBuiltin_UInt16_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11503____closed__4(); -lean_mark_persistent(l___regBuiltin_UInt16_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11503____closed__4); -l___regBuiltin_UInt16_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11503____closed__5 = _init_l___regBuiltin_UInt16_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11503____closed__5(); -lean_mark_persistent(l___regBuiltin_UInt16_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11503____closed__5); -l___regBuiltin_UInt16_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11503____closed__6 = _init_l___regBuiltin_UInt16_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11503____closed__6(); -lean_mark_persistent(l___regBuiltin_UInt16_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11503____closed__6); -l___regBuiltin_UInt16_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11503____closed__7 = _init_l___regBuiltin_UInt16_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11503____closed__7(); -lean_mark_persistent(l___regBuiltin_UInt16_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11503____closed__7); -l___regBuiltin_UInt16_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11503____closed__8 = _init_l___regBuiltin_UInt16_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11503____closed__8(); -lean_mark_persistent(l___regBuiltin_UInt16_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11503____closed__8); -l___regBuiltin_UInt16_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11503____closed__9 = _init_l___regBuiltin_UInt16_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11503____closed__9(); -lean_mark_persistent(l___regBuiltin_UInt16_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11503____closed__9); -l___regBuiltin_UInt16_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11503____closed__10 = _init_l___regBuiltin_UInt16_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11503____closed__10(); -lean_mark_persistent(l___regBuiltin_UInt16_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11503____closed__10); -l___regBuiltin_UInt16_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11503____closed__11 = _init_l___regBuiltin_UInt16_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11503____closed__11(); -lean_mark_persistent(l___regBuiltin_UInt16_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11503____closed__11); -l___regBuiltin_UInt16_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11503____closed__12 = _init_l___regBuiltin_UInt16_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11503____closed__12(); -lean_mark_persistent(l___regBuiltin_UInt16_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11503____closed__12); -l___regBuiltin_UInt16_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11503____closed__13 = _init_l___regBuiltin_UInt16_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11503____closed__13(); -lean_mark_persistent(l___regBuiltin_UInt16_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11503____closed__13); -l___regBuiltin_UInt16_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11503____closed__14 = _init_l___regBuiltin_UInt16_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11503____closed__14(); -lean_mark_persistent(l___regBuiltin_UInt16_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11503____closed__14); -l___regBuiltin_UInt16_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11503____closed__15 = _init_l___regBuiltin_UInt16_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11503____closed__15(); -lean_mark_persistent(l___regBuiltin_UInt16_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11503____closed__15); -if (builtin) {res = l___regBuiltin_UInt16_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11503_(lean_io_mk_world()); +}l___regBuiltin_UInt16_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9827____closed__1 = _init_l___regBuiltin_UInt16_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9827____closed__1(); +lean_mark_persistent(l___regBuiltin_UInt16_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9827____closed__1); +l___regBuiltin_UInt16_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9827____closed__2 = _init_l___regBuiltin_UInt16_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9827____closed__2(); +lean_mark_persistent(l___regBuiltin_UInt16_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9827____closed__2); +l___regBuiltin_UInt16_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9827____closed__3 = _init_l___regBuiltin_UInt16_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9827____closed__3(); +lean_mark_persistent(l___regBuiltin_UInt16_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9827____closed__3); +l___regBuiltin_UInt16_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9827____closed__4 = _init_l___regBuiltin_UInt16_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9827____closed__4(); +lean_mark_persistent(l___regBuiltin_UInt16_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9827____closed__4); +l___regBuiltin_UInt16_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9827____closed__5 = _init_l___regBuiltin_UInt16_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9827____closed__5(); +lean_mark_persistent(l___regBuiltin_UInt16_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9827____closed__5); +l___regBuiltin_UInt16_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9827____closed__6 = _init_l___regBuiltin_UInt16_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9827____closed__6(); +lean_mark_persistent(l___regBuiltin_UInt16_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9827____closed__6); +l___regBuiltin_UInt16_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9827____closed__7 = _init_l___regBuiltin_UInt16_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9827____closed__7(); +lean_mark_persistent(l___regBuiltin_UInt16_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9827____closed__7); +l___regBuiltin_UInt16_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9827____closed__8 = _init_l___regBuiltin_UInt16_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9827____closed__8(); +lean_mark_persistent(l___regBuiltin_UInt16_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9827____closed__8); +l___regBuiltin_UInt16_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9827____closed__9 = _init_l___regBuiltin_UInt16_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9827____closed__9(); +lean_mark_persistent(l___regBuiltin_UInt16_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9827____closed__9); +l___regBuiltin_UInt16_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9827____closed__10 = _init_l___regBuiltin_UInt16_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9827____closed__10(); +lean_mark_persistent(l___regBuiltin_UInt16_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9827____closed__10); +l___regBuiltin_UInt16_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9827____closed__11 = _init_l___regBuiltin_UInt16_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9827____closed__11(); +lean_mark_persistent(l___regBuiltin_UInt16_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9827____closed__11); +l___regBuiltin_UInt16_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9827____closed__12 = _init_l___regBuiltin_UInt16_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9827____closed__12(); +lean_mark_persistent(l___regBuiltin_UInt16_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9827____closed__12); +l___regBuiltin_UInt16_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9827____closed__13 = _init_l___regBuiltin_UInt16_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9827____closed__13(); +lean_mark_persistent(l___regBuiltin_UInt16_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9827____closed__13); +l___regBuiltin_UInt16_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9827____closed__14 = _init_l___regBuiltin_UInt16_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9827____closed__14(); +lean_mark_persistent(l___regBuiltin_UInt16_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9827____closed__14); +l___regBuiltin_UInt16_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9827____closed__15 = _init_l___regBuiltin_UInt16_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9827____closed__15(); +lean_mark_persistent(l___regBuiltin_UInt16_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9827____closed__15); +if (builtin) {res = l___regBuiltin_UInt16_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9827_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_UInt16_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11505_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_UInt16_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9829_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_UInt16_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11507_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_UInt16_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9831_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}l___regBuiltin_UInt16_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11543____closed__1 = _init_l___regBuiltin_UInt16_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11543____closed__1(); -lean_mark_persistent(l___regBuiltin_UInt16_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11543____closed__1); -l___regBuiltin_UInt16_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11543____closed__2 = _init_l___regBuiltin_UInt16_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11543____closed__2(); -lean_mark_persistent(l___regBuiltin_UInt16_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11543____closed__2); -l___regBuiltin_UInt16_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11543____closed__3 = _init_l___regBuiltin_UInt16_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11543____closed__3(); -lean_mark_persistent(l___regBuiltin_UInt16_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11543____closed__3); -l___regBuiltin_UInt16_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11543____closed__4 = _init_l___regBuiltin_UInt16_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11543____closed__4(); -lean_mark_persistent(l___regBuiltin_UInt16_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11543____closed__4); -l___regBuiltin_UInt16_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11543____closed__5 = _init_l___regBuiltin_UInt16_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11543____closed__5(); -lean_mark_persistent(l___regBuiltin_UInt16_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11543____closed__5); -l___regBuiltin_UInt16_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11543____closed__6 = _init_l___regBuiltin_UInt16_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11543____closed__6(); -lean_mark_persistent(l___regBuiltin_UInt16_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11543____closed__6); -l___regBuiltin_UInt16_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11543____closed__7 = _init_l___regBuiltin_UInt16_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11543____closed__7(); -lean_mark_persistent(l___regBuiltin_UInt16_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11543____closed__7); -l___regBuiltin_UInt16_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11543____closed__8 = _init_l___regBuiltin_UInt16_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11543____closed__8(); -lean_mark_persistent(l___regBuiltin_UInt16_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11543____closed__8); -l___regBuiltin_UInt16_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11543____closed__9 = _init_l___regBuiltin_UInt16_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11543____closed__9(); -lean_mark_persistent(l___regBuiltin_UInt16_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11543____closed__9); -l___regBuiltin_UInt16_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11543____closed__10 = _init_l___regBuiltin_UInt16_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11543____closed__10(); -lean_mark_persistent(l___regBuiltin_UInt16_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11543____closed__10); -l___regBuiltin_UInt16_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11543____closed__11 = _init_l___regBuiltin_UInt16_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11543____closed__11(); -lean_mark_persistent(l___regBuiltin_UInt16_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11543____closed__11); -l___regBuiltin_UInt16_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11543____closed__12 = _init_l___regBuiltin_UInt16_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11543____closed__12(); -lean_mark_persistent(l___regBuiltin_UInt16_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11543____closed__12); -l___regBuiltin_UInt16_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11543____closed__13 = _init_l___regBuiltin_UInt16_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11543____closed__13(); -lean_mark_persistent(l___regBuiltin_UInt16_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11543____closed__13); -l___regBuiltin_UInt16_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11543____closed__14 = _init_l___regBuiltin_UInt16_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11543____closed__14(); -lean_mark_persistent(l___regBuiltin_UInt16_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11543____closed__14); -l___regBuiltin_UInt16_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11543____closed__15 = _init_l___regBuiltin_UInt16_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11543____closed__15(); -lean_mark_persistent(l___regBuiltin_UInt16_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11543____closed__15); -if (builtin) {res = l___regBuiltin_UInt16_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11543_(lean_io_mk_world()); +}l___regBuiltin_UInt16_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9867____closed__1 = _init_l___regBuiltin_UInt16_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9867____closed__1(); +lean_mark_persistent(l___regBuiltin_UInt16_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9867____closed__1); +l___regBuiltin_UInt16_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9867____closed__2 = _init_l___regBuiltin_UInt16_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9867____closed__2(); +lean_mark_persistent(l___regBuiltin_UInt16_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9867____closed__2); +l___regBuiltin_UInt16_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9867____closed__3 = _init_l___regBuiltin_UInt16_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9867____closed__3(); +lean_mark_persistent(l___regBuiltin_UInt16_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9867____closed__3); +l___regBuiltin_UInt16_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9867____closed__4 = _init_l___regBuiltin_UInt16_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9867____closed__4(); +lean_mark_persistent(l___regBuiltin_UInt16_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9867____closed__4); +l___regBuiltin_UInt16_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9867____closed__5 = _init_l___regBuiltin_UInt16_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9867____closed__5(); +lean_mark_persistent(l___regBuiltin_UInt16_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9867____closed__5); +l___regBuiltin_UInt16_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9867____closed__6 = _init_l___regBuiltin_UInt16_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9867____closed__6(); +lean_mark_persistent(l___regBuiltin_UInt16_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9867____closed__6); +l___regBuiltin_UInt16_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9867____closed__7 = _init_l___regBuiltin_UInt16_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9867____closed__7(); +lean_mark_persistent(l___regBuiltin_UInt16_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9867____closed__7); +l___regBuiltin_UInt16_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9867____closed__8 = _init_l___regBuiltin_UInt16_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9867____closed__8(); +lean_mark_persistent(l___regBuiltin_UInt16_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9867____closed__8); +l___regBuiltin_UInt16_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9867____closed__9 = _init_l___regBuiltin_UInt16_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9867____closed__9(); +lean_mark_persistent(l___regBuiltin_UInt16_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9867____closed__9); +l___regBuiltin_UInt16_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9867____closed__10 = _init_l___regBuiltin_UInt16_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9867____closed__10(); +lean_mark_persistent(l___regBuiltin_UInt16_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9867____closed__10); +l___regBuiltin_UInt16_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9867____closed__11 = _init_l___regBuiltin_UInt16_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9867____closed__11(); +lean_mark_persistent(l___regBuiltin_UInt16_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9867____closed__11); +l___regBuiltin_UInt16_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9867____closed__12 = _init_l___regBuiltin_UInt16_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9867____closed__12(); +lean_mark_persistent(l___regBuiltin_UInt16_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9867____closed__12); +l___regBuiltin_UInt16_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9867____closed__13 = _init_l___regBuiltin_UInt16_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9867____closed__13(); +lean_mark_persistent(l___regBuiltin_UInt16_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9867____closed__13); +l___regBuiltin_UInt16_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9867____closed__14 = _init_l___regBuiltin_UInt16_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9867____closed__14(); +lean_mark_persistent(l___regBuiltin_UInt16_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9867____closed__14); +l___regBuiltin_UInt16_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9867____closed__15 = _init_l___regBuiltin_UInt16_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9867____closed__15(); +lean_mark_persistent(l___regBuiltin_UInt16_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9867____closed__15); +if (builtin) {res = l___regBuiltin_UInt16_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9867_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_UInt16_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11545_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_UInt16_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9869_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_UInt16_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11547_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_UInt16_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__9871_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); }l_UInt16_reduceOfNatCore___closed__1 = _init_l_UInt16_reduceOfNatCore___closed__1(); lean_mark_persistent(l_UInt16_reduceOfNatCore___closed__1); -l___regBuiltin_UInt16_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11663____closed__1 = _init_l___regBuiltin_UInt16_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11663____closed__1(); -lean_mark_persistent(l___regBuiltin_UInt16_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11663____closed__1); -l___regBuiltin_UInt16_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11663____closed__2 = _init_l___regBuiltin_UInt16_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11663____closed__2(); -lean_mark_persistent(l___regBuiltin_UInt16_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11663____closed__2); -l___regBuiltin_UInt16_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11663____closed__3 = _init_l___regBuiltin_UInt16_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11663____closed__3(); -lean_mark_persistent(l___regBuiltin_UInt16_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11663____closed__3); -l___regBuiltin_UInt16_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11663____closed__4 = _init_l___regBuiltin_UInt16_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11663____closed__4(); -lean_mark_persistent(l___regBuiltin_UInt16_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11663____closed__4); -l___regBuiltin_UInt16_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11663____closed__5 = _init_l___regBuiltin_UInt16_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11663____closed__5(); -lean_mark_persistent(l___regBuiltin_UInt16_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11663____closed__5); -l___regBuiltin_UInt16_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11663____closed__6 = _init_l___regBuiltin_UInt16_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11663____closed__6(); -lean_mark_persistent(l___regBuiltin_UInt16_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11663____closed__6); -if (builtin) {res = l___regBuiltin_UInt16_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11663_(lean_io_mk_world()); +l___regBuiltin_UInt16_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9982____closed__1 = _init_l___regBuiltin_UInt16_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9982____closed__1(); +lean_mark_persistent(l___regBuiltin_UInt16_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9982____closed__1); +l___regBuiltin_UInt16_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9982____closed__2 = _init_l___regBuiltin_UInt16_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9982____closed__2(); +lean_mark_persistent(l___regBuiltin_UInt16_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9982____closed__2); +l___regBuiltin_UInt16_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9982____closed__3 = _init_l___regBuiltin_UInt16_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9982____closed__3(); +lean_mark_persistent(l___regBuiltin_UInt16_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9982____closed__3); +l___regBuiltin_UInt16_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9982____closed__4 = _init_l___regBuiltin_UInt16_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9982____closed__4(); +lean_mark_persistent(l___regBuiltin_UInt16_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9982____closed__4); +l___regBuiltin_UInt16_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9982____closed__5 = _init_l___regBuiltin_UInt16_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9982____closed__5(); +lean_mark_persistent(l___regBuiltin_UInt16_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9982____closed__5); +l___regBuiltin_UInt16_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9982____closed__6 = _init_l___regBuiltin_UInt16_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9982____closed__6(); +lean_mark_persistent(l___regBuiltin_UInt16_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9982____closed__6); +if (builtin) {res = l___regBuiltin_UInt16_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9982_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_UInt16_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11665_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_UInt16_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9984_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_UInt16_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11667_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_UInt16_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9986_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); }l_UInt16_reduceToNat___closed__1 = _init_l_UInt16_reduceToNat___closed__1(); lean_mark_persistent(l_UInt16_reduceToNat___closed__1); -l___regBuiltin_UInt16_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11779____closed__1 = _init_l___regBuiltin_UInt16_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11779____closed__1(); -lean_mark_persistent(l___regBuiltin_UInt16_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11779____closed__1); -l___regBuiltin_UInt16_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11779____closed__2 = _init_l___regBuiltin_UInt16_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11779____closed__2(); -lean_mark_persistent(l___regBuiltin_UInt16_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11779____closed__2); -l___regBuiltin_UInt16_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11779____closed__3 = _init_l___regBuiltin_UInt16_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11779____closed__3(); -lean_mark_persistent(l___regBuiltin_UInt16_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11779____closed__3); -l___regBuiltin_UInt16_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11779____closed__4 = _init_l___regBuiltin_UInt16_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11779____closed__4(); -lean_mark_persistent(l___regBuiltin_UInt16_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11779____closed__4); -l___regBuiltin_UInt16_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11779____closed__5 = _init_l___regBuiltin_UInt16_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11779____closed__5(); -lean_mark_persistent(l___regBuiltin_UInt16_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11779____closed__5); -if (builtin) {res = l___regBuiltin_UInt16_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11779_(lean_io_mk_world()); +l___regBuiltin_UInt16_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10098____closed__1 = _init_l___regBuiltin_UInt16_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10098____closed__1(); +lean_mark_persistent(l___regBuiltin_UInt16_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10098____closed__1); +l___regBuiltin_UInt16_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10098____closed__2 = _init_l___regBuiltin_UInt16_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10098____closed__2(); +lean_mark_persistent(l___regBuiltin_UInt16_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10098____closed__2); +l___regBuiltin_UInt16_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10098____closed__3 = _init_l___regBuiltin_UInt16_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10098____closed__3(); +lean_mark_persistent(l___regBuiltin_UInt16_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10098____closed__3); +l___regBuiltin_UInt16_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10098____closed__4 = _init_l___regBuiltin_UInt16_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10098____closed__4(); +lean_mark_persistent(l___regBuiltin_UInt16_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10098____closed__4); +l___regBuiltin_UInt16_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10098____closed__5 = _init_l___regBuiltin_UInt16_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10098____closed__5(); +lean_mark_persistent(l___regBuiltin_UInt16_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10098____closed__5); +if (builtin) {res = l___regBuiltin_UInt16_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10098_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_UInt16_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11781_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_UInt16_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10100_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_UInt16_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11783_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_UInt16_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10102_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}l___regBuiltin_UInt16_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11855____closed__1 = _init_l___regBuiltin_UInt16_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11855____closed__1(); -lean_mark_persistent(l___regBuiltin_UInt16_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11855____closed__1); -l___regBuiltin_UInt16_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11855____closed__2 = _init_l___regBuiltin_UInt16_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11855____closed__2(); -lean_mark_persistent(l___regBuiltin_UInt16_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11855____closed__2); -l___regBuiltin_UInt16_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11855____closed__3 = _init_l___regBuiltin_UInt16_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11855____closed__3(); -lean_mark_persistent(l___regBuiltin_UInt16_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11855____closed__3); -l___regBuiltin_UInt16_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11855____closed__4 = _init_l___regBuiltin_UInt16_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11855____closed__4(); -lean_mark_persistent(l___regBuiltin_UInt16_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11855____closed__4); -l___regBuiltin_UInt16_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11855____closed__5 = _init_l___regBuiltin_UInt16_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11855____closed__5(); -lean_mark_persistent(l___regBuiltin_UInt16_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11855____closed__5); -l___regBuiltin_UInt16_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11855____closed__6 = _init_l___regBuiltin_UInt16_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11855____closed__6(); -lean_mark_persistent(l___regBuiltin_UInt16_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11855____closed__6); -l___regBuiltin_UInt16_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11855____closed__7 = _init_l___regBuiltin_UInt16_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11855____closed__7(); -lean_mark_persistent(l___regBuiltin_UInt16_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11855____closed__7); -l___regBuiltin_UInt16_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11855____closed__8 = _init_l___regBuiltin_UInt16_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11855____closed__8(); -lean_mark_persistent(l___regBuiltin_UInt16_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11855____closed__8); -l___regBuiltin_UInt16_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11855____closed__9 = _init_l___regBuiltin_UInt16_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11855____closed__9(); -lean_mark_persistent(l___regBuiltin_UInt16_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11855____closed__9); -l___regBuiltin_UInt16_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11855____closed__10 = _init_l___regBuiltin_UInt16_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11855____closed__10(); -lean_mark_persistent(l___regBuiltin_UInt16_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11855____closed__10); -l___regBuiltin_UInt16_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11855____closed__11 = _init_l___regBuiltin_UInt16_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11855____closed__11(); -lean_mark_persistent(l___regBuiltin_UInt16_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11855____closed__11); -l___regBuiltin_UInt16_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11855____closed__12 = _init_l___regBuiltin_UInt16_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11855____closed__12(); -lean_mark_persistent(l___regBuiltin_UInt16_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11855____closed__12); -l___regBuiltin_UInt16_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11855____closed__13 = _init_l___regBuiltin_UInt16_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11855____closed__13(); -lean_mark_persistent(l___regBuiltin_UInt16_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11855____closed__13); -l___regBuiltin_UInt16_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11855____closed__14 = _init_l___regBuiltin_UInt16_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11855____closed__14(); -lean_mark_persistent(l___regBuiltin_UInt16_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11855____closed__14); -if (builtin) {res = l___regBuiltin_UInt16_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11855_(lean_io_mk_world()); +}l___regBuiltin_UInt16_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__10174____closed__1 = _init_l___regBuiltin_UInt16_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__10174____closed__1(); +lean_mark_persistent(l___regBuiltin_UInt16_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__10174____closed__1); +l___regBuiltin_UInt16_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__10174____closed__2 = _init_l___regBuiltin_UInt16_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__10174____closed__2(); +lean_mark_persistent(l___regBuiltin_UInt16_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__10174____closed__2); +l___regBuiltin_UInt16_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__10174____closed__3 = _init_l___regBuiltin_UInt16_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__10174____closed__3(); +lean_mark_persistent(l___regBuiltin_UInt16_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__10174____closed__3); +l___regBuiltin_UInt16_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__10174____closed__4 = _init_l___regBuiltin_UInt16_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__10174____closed__4(); +lean_mark_persistent(l___regBuiltin_UInt16_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__10174____closed__4); +l___regBuiltin_UInt16_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__10174____closed__5 = _init_l___regBuiltin_UInt16_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__10174____closed__5(); +lean_mark_persistent(l___regBuiltin_UInt16_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__10174____closed__5); +l___regBuiltin_UInt16_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__10174____closed__6 = _init_l___regBuiltin_UInt16_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__10174____closed__6(); +lean_mark_persistent(l___regBuiltin_UInt16_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__10174____closed__6); +l___regBuiltin_UInt16_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__10174____closed__7 = _init_l___regBuiltin_UInt16_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__10174____closed__7(); +lean_mark_persistent(l___regBuiltin_UInt16_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__10174____closed__7); +l___regBuiltin_UInt16_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__10174____closed__8 = _init_l___regBuiltin_UInt16_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__10174____closed__8(); +lean_mark_persistent(l___regBuiltin_UInt16_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__10174____closed__8); +l___regBuiltin_UInt16_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__10174____closed__9 = _init_l___regBuiltin_UInt16_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__10174____closed__9(); +lean_mark_persistent(l___regBuiltin_UInt16_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__10174____closed__9); +l___regBuiltin_UInt16_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__10174____closed__10 = _init_l___regBuiltin_UInt16_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__10174____closed__10(); +lean_mark_persistent(l___regBuiltin_UInt16_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__10174____closed__10); +l___regBuiltin_UInt16_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__10174____closed__11 = _init_l___regBuiltin_UInt16_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__10174____closed__11(); +lean_mark_persistent(l___regBuiltin_UInt16_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__10174____closed__11); +l___regBuiltin_UInt16_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__10174____closed__12 = _init_l___regBuiltin_UInt16_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__10174____closed__12(); +lean_mark_persistent(l___regBuiltin_UInt16_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__10174____closed__12); +l___regBuiltin_UInt16_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__10174____closed__13 = _init_l___regBuiltin_UInt16_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__10174____closed__13(); +lean_mark_persistent(l___regBuiltin_UInt16_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__10174____closed__13); +l___regBuiltin_UInt16_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__10174____closed__14 = _init_l___regBuiltin_UInt16_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__10174____closed__14(); +lean_mark_persistent(l___regBuiltin_UInt16_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__10174____closed__14); +if (builtin) {res = l___regBuiltin_UInt16_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__10174_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_UInt16_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10419__11857_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_UInt16_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8847__10176_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); }l_UInt32_fromExpr___closed__1 = _init_l_UInt32_fromExpr___closed__1(); lean_mark_persistent(l_UInt32_fromExpr___closed__1); l_UInt32_fromExpr___closed__2 = _init_l_UInt32_fromExpr___closed__2(); lean_mark_persistent(l_UInt32_fromExpr___closed__2); -l_UInt32_toExprCore___closed__1 = _init_l_UInt32_toExprCore___closed__1(); -lean_mark_persistent(l_UInt32_toExprCore___closed__1); -l_UInt32_toExprCore___closed__2 = _init_l_UInt32_toExprCore___closed__2(); -lean_mark_persistent(l_UInt32_toExprCore___closed__2); -l_UInt32_toExprCore___closed__3 = _init_l_UInt32_toExprCore___closed__3(); -lean_mark_persistent(l_UInt32_toExprCore___closed__3); -l_UInt32_toExpr___closed__1 = _init_l_UInt32_toExpr___closed__1(); -lean_mark_persistent(l_UInt32_toExpr___closed__1); -l___regBuiltin_UInt32_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12498____closed__1 = _init_l___regBuiltin_UInt32_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12498____closed__1(); -lean_mark_persistent(l___regBuiltin_UInt32_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12498____closed__1); -l___regBuiltin_UInt32_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12498____closed__2 = _init_l___regBuiltin_UInt32_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12498____closed__2(); -lean_mark_persistent(l___regBuiltin_UInt32_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12498____closed__2); -l___regBuiltin_UInt32_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12498____closed__3 = _init_l___regBuiltin_UInt32_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12498____closed__3(); -lean_mark_persistent(l___regBuiltin_UInt32_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12498____closed__3); -l___regBuiltin_UInt32_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12498____closed__4 = _init_l___regBuiltin_UInt32_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12498____closed__4(); -lean_mark_persistent(l___regBuiltin_UInt32_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12498____closed__4); -l___regBuiltin_UInt32_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12498____closed__5 = _init_l___regBuiltin_UInt32_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12498____closed__5(); -lean_mark_persistent(l___regBuiltin_UInt32_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12498____closed__5); -l___regBuiltin_UInt32_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12498____closed__6 = _init_l___regBuiltin_UInt32_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12498____closed__6(); -lean_mark_persistent(l___regBuiltin_UInt32_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12498____closed__6); -l___regBuiltin_UInt32_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12498____closed__7 = _init_l___regBuiltin_UInt32_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12498____closed__7(); -lean_mark_persistent(l___regBuiltin_UInt32_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12498____closed__7); -l___regBuiltin_UInt32_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12498____closed__8 = _init_l___regBuiltin_UInt32_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12498____closed__8(); -lean_mark_persistent(l___regBuiltin_UInt32_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12498____closed__8); -l___regBuiltin_UInt32_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12498____closed__9 = _init_l___regBuiltin_UInt32_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12498____closed__9(); -lean_mark_persistent(l___regBuiltin_UInt32_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12498____closed__9); -if (builtin) {res = l___regBuiltin_UInt32_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12498_(lean_io_mk_world()); +l_UInt32_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179____lambda__1___closed__1 = _init_l_UInt32_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179____lambda__1___closed__1(); +lean_mark_persistent(l_UInt32_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179____lambda__1___closed__1); +l_UInt32_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179____lambda__1___closed__2 = _init_l_UInt32_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179____lambda__1___closed__2(); +lean_mark_persistent(l_UInt32_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179____lambda__1___closed__2); +l_UInt32_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179____lambda__1___closed__3 = _init_l_UInt32_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179____lambda__1___closed__3(); +lean_mark_persistent(l_UInt32_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179____lambda__1___closed__3); +l___regBuiltin_UInt32_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10713____closed__1 = _init_l___regBuiltin_UInt32_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10713____closed__1(); +lean_mark_persistent(l___regBuiltin_UInt32_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10713____closed__1); +l___regBuiltin_UInt32_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10713____closed__2 = _init_l___regBuiltin_UInt32_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10713____closed__2(); +lean_mark_persistent(l___regBuiltin_UInt32_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10713____closed__2); +l___regBuiltin_UInt32_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10713____closed__3 = _init_l___regBuiltin_UInt32_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10713____closed__3(); +lean_mark_persistent(l___regBuiltin_UInt32_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10713____closed__3); +l___regBuiltin_UInt32_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10713____closed__4 = _init_l___regBuiltin_UInt32_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10713____closed__4(); +lean_mark_persistent(l___regBuiltin_UInt32_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10713____closed__4); +l___regBuiltin_UInt32_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10713____closed__5 = _init_l___regBuiltin_UInt32_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10713____closed__5(); +lean_mark_persistent(l___regBuiltin_UInt32_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10713____closed__5); +l___regBuiltin_UInt32_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10713____closed__6 = _init_l___regBuiltin_UInt32_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10713____closed__6(); +lean_mark_persistent(l___regBuiltin_UInt32_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10713____closed__6); +l___regBuiltin_UInt32_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10713____closed__7 = _init_l___regBuiltin_UInt32_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10713____closed__7(); +lean_mark_persistent(l___regBuiltin_UInt32_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10713____closed__7); +l___regBuiltin_UInt32_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10713____closed__8 = _init_l___regBuiltin_UInt32_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10713____closed__8(); +lean_mark_persistent(l___regBuiltin_UInt32_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10713____closed__8); +l___regBuiltin_UInt32_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10713____closed__9 = _init_l___regBuiltin_UInt32_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10713____closed__9(); +lean_mark_persistent(l___regBuiltin_UInt32_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10713____closed__9); +if (builtin) {res = l___regBuiltin_UInt32_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10713_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_UInt32_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12500_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_UInt32_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10715_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_UInt32_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12502_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_UInt32_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10717_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}l___regBuiltin_UInt32_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12538____closed__1 = _init_l___regBuiltin_UInt32_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12538____closed__1(); -lean_mark_persistent(l___regBuiltin_UInt32_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12538____closed__1); -l___regBuiltin_UInt32_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12538____closed__2 = _init_l___regBuiltin_UInt32_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12538____closed__2(); -lean_mark_persistent(l___regBuiltin_UInt32_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12538____closed__2); -l___regBuiltin_UInt32_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12538____closed__3 = _init_l___regBuiltin_UInt32_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12538____closed__3(); -lean_mark_persistent(l___regBuiltin_UInt32_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12538____closed__3); -l___regBuiltin_UInt32_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12538____closed__4 = _init_l___regBuiltin_UInt32_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12538____closed__4(); -lean_mark_persistent(l___regBuiltin_UInt32_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12538____closed__4); -l___regBuiltin_UInt32_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12538____closed__5 = _init_l___regBuiltin_UInt32_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12538____closed__5(); -lean_mark_persistent(l___regBuiltin_UInt32_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12538____closed__5); -l___regBuiltin_UInt32_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12538____closed__6 = _init_l___regBuiltin_UInt32_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12538____closed__6(); -lean_mark_persistent(l___regBuiltin_UInt32_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12538____closed__6); -l___regBuiltin_UInt32_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12538____closed__7 = _init_l___regBuiltin_UInt32_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12538____closed__7(); -lean_mark_persistent(l___regBuiltin_UInt32_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12538____closed__7); -l___regBuiltin_UInt32_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12538____closed__8 = _init_l___regBuiltin_UInt32_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12538____closed__8(); -lean_mark_persistent(l___regBuiltin_UInt32_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12538____closed__8); -if (builtin) {res = l___regBuiltin_UInt32_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12538_(lean_io_mk_world()); +}l___regBuiltin_UInt32_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10753____closed__1 = _init_l___regBuiltin_UInt32_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10753____closed__1(); +lean_mark_persistent(l___regBuiltin_UInt32_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10753____closed__1); +l___regBuiltin_UInt32_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10753____closed__2 = _init_l___regBuiltin_UInt32_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10753____closed__2(); +lean_mark_persistent(l___regBuiltin_UInt32_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10753____closed__2); +l___regBuiltin_UInt32_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10753____closed__3 = _init_l___regBuiltin_UInt32_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10753____closed__3(); +lean_mark_persistent(l___regBuiltin_UInt32_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10753____closed__3); +l___regBuiltin_UInt32_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10753____closed__4 = _init_l___regBuiltin_UInt32_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10753____closed__4(); +lean_mark_persistent(l___regBuiltin_UInt32_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10753____closed__4); +l___regBuiltin_UInt32_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10753____closed__5 = _init_l___regBuiltin_UInt32_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10753____closed__5(); +lean_mark_persistent(l___regBuiltin_UInt32_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10753____closed__5); +l___regBuiltin_UInt32_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10753____closed__6 = _init_l___regBuiltin_UInt32_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10753____closed__6(); +lean_mark_persistent(l___regBuiltin_UInt32_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10753____closed__6); +l___regBuiltin_UInt32_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10753____closed__7 = _init_l___regBuiltin_UInt32_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10753____closed__7(); +lean_mark_persistent(l___regBuiltin_UInt32_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10753____closed__7); +l___regBuiltin_UInt32_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10753____closed__8 = _init_l___regBuiltin_UInt32_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10753____closed__8(); +lean_mark_persistent(l___regBuiltin_UInt32_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10753____closed__8); +if (builtin) {res = l___regBuiltin_UInt32_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10753_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_UInt32_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12540_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_UInt32_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10755_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_UInt32_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12542_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_UInt32_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10757_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}l___regBuiltin_UInt32_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12578____closed__1 = _init_l___regBuiltin_UInt32_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12578____closed__1(); -lean_mark_persistent(l___regBuiltin_UInt32_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12578____closed__1); -l___regBuiltin_UInt32_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12578____closed__2 = _init_l___regBuiltin_UInt32_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12578____closed__2(); -lean_mark_persistent(l___regBuiltin_UInt32_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12578____closed__2); -l___regBuiltin_UInt32_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12578____closed__3 = _init_l___regBuiltin_UInt32_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12578____closed__3(); -lean_mark_persistent(l___regBuiltin_UInt32_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12578____closed__3); -l___regBuiltin_UInt32_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12578____closed__4 = _init_l___regBuiltin_UInt32_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12578____closed__4(); -lean_mark_persistent(l___regBuiltin_UInt32_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12578____closed__4); -l___regBuiltin_UInt32_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12578____closed__5 = _init_l___regBuiltin_UInt32_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12578____closed__5(); -lean_mark_persistent(l___regBuiltin_UInt32_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12578____closed__5); -l___regBuiltin_UInt32_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12578____closed__6 = _init_l___regBuiltin_UInt32_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12578____closed__6(); -lean_mark_persistent(l___regBuiltin_UInt32_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12578____closed__6); -l___regBuiltin_UInt32_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12578____closed__7 = _init_l___regBuiltin_UInt32_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12578____closed__7(); -lean_mark_persistent(l___regBuiltin_UInt32_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12578____closed__7); -l___regBuiltin_UInt32_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12578____closed__8 = _init_l___regBuiltin_UInt32_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12578____closed__8(); -lean_mark_persistent(l___regBuiltin_UInt32_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12578____closed__8); -if (builtin) {res = l___regBuiltin_UInt32_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12578_(lean_io_mk_world()); +}l___regBuiltin_UInt32_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10793____closed__1 = _init_l___regBuiltin_UInt32_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10793____closed__1(); +lean_mark_persistent(l___regBuiltin_UInt32_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10793____closed__1); +l___regBuiltin_UInt32_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10793____closed__2 = _init_l___regBuiltin_UInt32_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10793____closed__2(); +lean_mark_persistent(l___regBuiltin_UInt32_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10793____closed__2); +l___regBuiltin_UInt32_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10793____closed__3 = _init_l___regBuiltin_UInt32_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10793____closed__3(); +lean_mark_persistent(l___regBuiltin_UInt32_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10793____closed__3); +l___regBuiltin_UInt32_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10793____closed__4 = _init_l___regBuiltin_UInt32_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10793____closed__4(); +lean_mark_persistent(l___regBuiltin_UInt32_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10793____closed__4); +l___regBuiltin_UInt32_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10793____closed__5 = _init_l___regBuiltin_UInt32_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10793____closed__5(); +lean_mark_persistent(l___regBuiltin_UInt32_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10793____closed__5); +l___regBuiltin_UInt32_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10793____closed__6 = _init_l___regBuiltin_UInt32_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10793____closed__6(); +lean_mark_persistent(l___regBuiltin_UInt32_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10793____closed__6); +l___regBuiltin_UInt32_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10793____closed__7 = _init_l___regBuiltin_UInt32_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10793____closed__7(); +lean_mark_persistent(l___regBuiltin_UInt32_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10793____closed__7); +l___regBuiltin_UInt32_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10793____closed__8 = _init_l___regBuiltin_UInt32_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10793____closed__8(); +lean_mark_persistent(l___regBuiltin_UInt32_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10793____closed__8); +if (builtin) {res = l___regBuiltin_UInt32_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10793_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_UInt32_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12580_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_UInt32_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10795_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_UInt32_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12582_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_UInt32_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10797_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}l___regBuiltin_UInt32_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12618____closed__1 = _init_l___regBuiltin_UInt32_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12618____closed__1(); -lean_mark_persistent(l___regBuiltin_UInt32_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12618____closed__1); -l___regBuiltin_UInt32_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12618____closed__2 = _init_l___regBuiltin_UInt32_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12618____closed__2(); -lean_mark_persistent(l___regBuiltin_UInt32_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12618____closed__2); -l___regBuiltin_UInt32_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12618____closed__3 = _init_l___regBuiltin_UInt32_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12618____closed__3(); -lean_mark_persistent(l___regBuiltin_UInt32_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12618____closed__3); -l___regBuiltin_UInt32_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12618____closed__4 = _init_l___regBuiltin_UInt32_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12618____closed__4(); -lean_mark_persistent(l___regBuiltin_UInt32_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12618____closed__4); -l___regBuiltin_UInt32_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12618____closed__5 = _init_l___regBuiltin_UInt32_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12618____closed__5(); -lean_mark_persistent(l___regBuiltin_UInt32_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12618____closed__5); -l___regBuiltin_UInt32_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12618____closed__6 = _init_l___regBuiltin_UInt32_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12618____closed__6(); -lean_mark_persistent(l___regBuiltin_UInt32_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12618____closed__6); -l___regBuiltin_UInt32_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12618____closed__7 = _init_l___regBuiltin_UInt32_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12618____closed__7(); -lean_mark_persistent(l___regBuiltin_UInt32_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12618____closed__7); -l___regBuiltin_UInt32_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12618____closed__8 = _init_l___regBuiltin_UInt32_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12618____closed__8(); -lean_mark_persistent(l___regBuiltin_UInt32_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12618____closed__8); -if (builtin) {res = l___regBuiltin_UInt32_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12618_(lean_io_mk_world()); +}l___regBuiltin_UInt32_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10833____closed__1 = _init_l___regBuiltin_UInt32_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10833____closed__1(); +lean_mark_persistent(l___regBuiltin_UInt32_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10833____closed__1); +l___regBuiltin_UInt32_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10833____closed__2 = _init_l___regBuiltin_UInt32_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10833____closed__2(); +lean_mark_persistent(l___regBuiltin_UInt32_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10833____closed__2); +l___regBuiltin_UInt32_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10833____closed__3 = _init_l___regBuiltin_UInt32_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10833____closed__3(); +lean_mark_persistent(l___regBuiltin_UInt32_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10833____closed__3); +l___regBuiltin_UInt32_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10833____closed__4 = _init_l___regBuiltin_UInt32_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10833____closed__4(); +lean_mark_persistent(l___regBuiltin_UInt32_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10833____closed__4); +l___regBuiltin_UInt32_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10833____closed__5 = _init_l___regBuiltin_UInt32_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10833____closed__5(); +lean_mark_persistent(l___regBuiltin_UInt32_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10833____closed__5); +l___regBuiltin_UInt32_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10833____closed__6 = _init_l___regBuiltin_UInt32_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10833____closed__6(); +lean_mark_persistent(l___regBuiltin_UInt32_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10833____closed__6); +l___regBuiltin_UInt32_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10833____closed__7 = _init_l___regBuiltin_UInt32_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10833____closed__7(); +lean_mark_persistent(l___regBuiltin_UInt32_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10833____closed__7); +l___regBuiltin_UInt32_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10833____closed__8 = _init_l___regBuiltin_UInt32_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10833____closed__8(); +lean_mark_persistent(l___regBuiltin_UInt32_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10833____closed__8); +if (builtin) {res = l___regBuiltin_UInt32_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10833_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_UInt32_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12620_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_UInt32_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10835_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_UInt32_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12622_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_UInt32_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10837_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}l___regBuiltin_UInt32_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12658____closed__1 = _init_l___regBuiltin_UInt32_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12658____closed__1(); -lean_mark_persistent(l___regBuiltin_UInt32_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12658____closed__1); -l___regBuiltin_UInt32_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12658____closed__2 = _init_l___regBuiltin_UInt32_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12658____closed__2(); -lean_mark_persistent(l___regBuiltin_UInt32_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12658____closed__2); -l___regBuiltin_UInt32_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12658____closed__3 = _init_l___regBuiltin_UInt32_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12658____closed__3(); -lean_mark_persistent(l___regBuiltin_UInt32_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12658____closed__3); -l___regBuiltin_UInt32_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12658____closed__4 = _init_l___regBuiltin_UInt32_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12658____closed__4(); -lean_mark_persistent(l___regBuiltin_UInt32_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12658____closed__4); -l___regBuiltin_UInt32_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12658____closed__5 = _init_l___regBuiltin_UInt32_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12658____closed__5(); -lean_mark_persistent(l___regBuiltin_UInt32_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12658____closed__5); -l___regBuiltin_UInt32_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12658____closed__6 = _init_l___regBuiltin_UInt32_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12658____closed__6(); -lean_mark_persistent(l___regBuiltin_UInt32_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12658____closed__6); -l___regBuiltin_UInt32_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12658____closed__7 = _init_l___regBuiltin_UInt32_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12658____closed__7(); -lean_mark_persistent(l___regBuiltin_UInt32_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12658____closed__7); -l___regBuiltin_UInt32_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12658____closed__8 = _init_l___regBuiltin_UInt32_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12658____closed__8(); -lean_mark_persistent(l___regBuiltin_UInt32_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12658____closed__8); -if (builtin) {res = l___regBuiltin_UInt32_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12658_(lean_io_mk_world()); +}l___regBuiltin_UInt32_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10873____closed__1 = _init_l___regBuiltin_UInt32_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10873____closed__1(); +lean_mark_persistent(l___regBuiltin_UInt32_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10873____closed__1); +l___regBuiltin_UInt32_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10873____closed__2 = _init_l___regBuiltin_UInt32_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10873____closed__2(); +lean_mark_persistent(l___regBuiltin_UInt32_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10873____closed__2); +l___regBuiltin_UInt32_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10873____closed__3 = _init_l___regBuiltin_UInt32_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10873____closed__3(); +lean_mark_persistent(l___regBuiltin_UInt32_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10873____closed__3); +l___regBuiltin_UInt32_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10873____closed__4 = _init_l___regBuiltin_UInt32_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10873____closed__4(); +lean_mark_persistent(l___regBuiltin_UInt32_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10873____closed__4); +l___regBuiltin_UInt32_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10873____closed__5 = _init_l___regBuiltin_UInt32_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10873____closed__5(); +lean_mark_persistent(l___regBuiltin_UInt32_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10873____closed__5); +l___regBuiltin_UInt32_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10873____closed__6 = _init_l___regBuiltin_UInt32_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10873____closed__6(); +lean_mark_persistent(l___regBuiltin_UInt32_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10873____closed__6); +l___regBuiltin_UInt32_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10873____closed__7 = _init_l___regBuiltin_UInt32_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10873____closed__7(); +lean_mark_persistent(l___regBuiltin_UInt32_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10873____closed__7); +l___regBuiltin_UInt32_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10873____closed__8 = _init_l___regBuiltin_UInt32_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10873____closed__8(); +lean_mark_persistent(l___regBuiltin_UInt32_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10873____closed__8); +if (builtin) {res = l___regBuiltin_UInt32_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10873_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_UInt32_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12660_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_UInt32_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10875_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_UInt32_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12662_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_UInt32_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10877_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}l___regBuiltin_UInt32_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12699____closed__1 = _init_l___regBuiltin_UInt32_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12699____closed__1(); -lean_mark_persistent(l___regBuiltin_UInt32_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12699____closed__1); -l___regBuiltin_UInt32_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12699____closed__2 = _init_l___regBuiltin_UInt32_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12699____closed__2(); -lean_mark_persistent(l___regBuiltin_UInt32_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12699____closed__2); -l___regBuiltin_UInt32_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12699____closed__3 = _init_l___regBuiltin_UInt32_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12699____closed__3(); -lean_mark_persistent(l___regBuiltin_UInt32_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12699____closed__3); -l___regBuiltin_UInt32_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12699____closed__4 = _init_l___regBuiltin_UInt32_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12699____closed__4(); -lean_mark_persistent(l___regBuiltin_UInt32_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12699____closed__4); -l___regBuiltin_UInt32_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12699____closed__5 = _init_l___regBuiltin_UInt32_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12699____closed__5(); -lean_mark_persistent(l___regBuiltin_UInt32_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12699____closed__5); -l___regBuiltin_UInt32_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12699____closed__6 = _init_l___regBuiltin_UInt32_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12699____closed__6(); -lean_mark_persistent(l___regBuiltin_UInt32_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12699____closed__6); -if (builtin) {res = l___regBuiltin_UInt32_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12699_(lean_io_mk_world()); +}l___regBuiltin_UInt32_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10914____closed__1 = _init_l___regBuiltin_UInt32_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10914____closed__1(); +lean_mark_persistent(l___regBuiltin_UInt32_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10914____closed__1); +l___regBuiltin_UInt32_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10914____closed__2 = _init_l___regBuiltin_UInt32_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10914____closed__2(); +lean_mark_persistent(l___regBuiltin_UInt32_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10914____closed__2); +l___regBuiltin_UInt32_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10914____closed__3 = _init_l___regBuiltin_UInt32_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10914____closed__3(); +lean_mark_persistent(l___regBuiltin_UInt32_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10914____closed__3); +l___regBuiltin_UInt32_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10914____closed__4 = _init_l___regBuiltin_UInt32_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10914____closed__4(); +lean_mark_persistent(l___regBuiltin_UInt32_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10914____closed__4); +l___regBuiltin_UInt32_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10914____closed__5 = _init_l___regBuiltin_UInt32_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10914____closed__5(); +lean_mark_persistent(l___regBuiltin_UInt32_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10914____closed__5); +l___regBuiltin_UInt32_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10914____closed__6 = _init_l___regBuiltin_UInt32_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10914____closed__6(); +lean_mark_persistent(l___regBuiltin_UInt32_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10914____closed__6); +if (builtin) {res = l___regBuiltin_UInt32_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10914_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_UInt32_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12701_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_UInt32_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10916_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_UInt32_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12703_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_UInt32_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10918_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}l___regBuiltin_UInt32_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12740____closed__1 = _init_l___regBuiltin_UInt32_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12740____closed__1(); -lean_mark_persistent(l___regBuiltin_UInt32_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12740____closed__1); -l___regBuiltin_UInt32_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12740____closed__2 = _init_l___regBuiltin_UInt32_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12740____closed__2(); -lean_mark_persistent(l___regBuiltin_UInt32_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12740____closed__2); -l___regBuiltin_UInt32_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12740____closed__3 = _init_l___regBuiltin_UInt32_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12740____closed__3(); -lean_mark_persistent(l___regBuiltin_UInt32_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12740____closed__3); -l___regBuiltin_UInt32_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12740____closed__4 = _init_l___regBuiltin_UInt32_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12740____closed__4(); -lean_mark_persistent(l___regBuiltin_UInt32_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12740____closed__4); -l___regBuiltin_UInt32_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12740____closed__5 = _init_l___regBuiltin_UInt32_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12740____closed__5(); -lean_mark_persistent(l___regBuiltin_UInt32_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12740____closed__5); -l___regBuiltin_UInt32_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12740____closed__6 = _init_l___regBuiltin_UInt32_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12740____closed__6(); -lean_mark_persistent(l___regBuiltin_UInt32_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12740____closed__6); -if (builtin) {res = l___regBuiltin_UInt32_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12740_(lean_io_mk_world()); +}l___regBuiltin_UInt32_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10955____closed__1 = _init_l___regBuiltin_UInt32_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10955____closed__1(); +lean_mark_persistent(l___regBuiltin_UInt32_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10955____closed__1); +l___regBuiltin_UInt32_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10955____closed__2 = _init_l___regBuiltin_UInt32_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10955____closed__2(); +lean_mark_persistent(l___regBuiltin_UInt32_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10955____closed__2); +l___regBuiltin_UInt32_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10955____closed__3 = _init_l___regBuiltin_UInt32_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10955____closed__3(); +lean_mark_persistent(l___regBuiltin_UInt32_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10955____closed__3); +l___regBuiltin_UInt32_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10955____closed__4 = _init_l___regBuiltin_UInt32_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10955____closed__4(); +lean_mark_persistent(l___regBuiltin_UInt32_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10955____closed__4); +l___regBuiltin_UInt32_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10955____closed__5 = _init_l___regBuiltin_UInt32_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10955____closed__5(); +lean_mark_persistent(l___regBuiltin_UInt32_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10955____closed__5); +l___regBuiltin_UInt32_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10955____closed__6 = _init_l___regBuiltin_UInt32_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10955____closed__6(); +lean_mark_persistent(l___regBuiltin_UInt32_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10955____closed__6); +if (builtin) {res = l___regBuiltin_UInt32_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10955_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_UInt32_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12742_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_UInt32_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10957_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_UInt32_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12744_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_UInt32_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10959_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}l___regBuiltin_UInt32_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12781____closed__1 = _init_l___regBuiltin_UInt32_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12781____closed__1(); -lean_mark_persistent(l___regBuiltin_UInt32_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12781____closed__1); -l___regBuiltin_UInt32_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12781____closed__2 = _init_l___regBuiltin_UInt32_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12781____closed__2(); -lean_mark_persistent(l___regBuiltin_UInt32_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12781____closed__2); -if (builtin) {res = l___regBuiltin_UInt32_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12781_(lean_io_mk_world()); +}l___regBuiltin_UInt32_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10996____closed__1 = _init_l___regBuiltin_UInt32_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10996____closed__1(); +lean_mark_persistent(l___regBuiltin_UInt32_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10996____closed__1); +l___regBuiltin_UInt32_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10996____closed__2 = _init_l___regBuiltin_UInt32_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10996____closed__2(); +lean_mark_persistent(l___regBuiltin_UInt32_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10996____closed__2); +if (builtin) {res = l___regBuiltin_UInt32_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10996_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_UInt32_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12783_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_UInt32_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10998_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_UInt32_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12785_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_UInt32_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11000_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}l___regBuiltin_UInt32_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12822____closed__1 = _init_l___regBuiltin_UInt32_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12822____closed__1(); -lean_mark_persistent(l___regBuiltin_UInt32_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12822____closed__1); -l___regBuiltin_UInt32_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12822____closed__2 = _init_l___regBuiltin_UInt32_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12822____closed__2(); -lean_mark_persistent(l___regBuiltin_UInt32_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12822____closed__2); -if (builtin) {res = l___regBuiltin_UInt32_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12822_(lean_io_mk_world()); +}l___regBuiltin_UInt32_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11037____closed__1 = _init_l___regBuiltin_UInt32_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11037____closed__1(); +lean_mark_persistent(l___regBuiltin_UInt32_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11037____closed__1); +l___regBuiltin_UInt32_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11037____closed__2 = _init_l___regBuiltin_UInt32_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11037____closed__2(); +lean_mark_persistent(l___regBuiltin_UInt32_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11037____closed__2); +if (builtin) {res = l___regBuiltin_UInt32_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11037_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_UInt32_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12824_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_UInt32_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11039_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_UInt32_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12826_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_UInt32_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11041_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}l___regBuiltin_UInt32_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12863____closed__1 = _init_l___regBuiltin_UInt32_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12863____closed__1(); -lean_mark_persistent(l___regBuiltin_UInt32_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12863____closed__1); -l___regBuiltin_UInt32_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12863____closed__2 = _init_l___regBuiltin_UInt32_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12863____closed__2(); -lean_mark_persistent(l___regBuiltin_UInt32_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12863____closed__2); -l___regBuiltin_UInt32_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12863____closed__3 = _init_l___regBuiltin_UInt32_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12863____closed__3(); -lean_mark_persistent(l___regBuiltin_UInt32_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12863____closed__3); -l___regBuiltin_UInt32_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12863____closed__4 = _init_l___regBuiltin_UInt32_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12863____closed__4(); -lean_mark_persistent(l___regBuiltin_UInt32_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12863____closed__4); -l___regBuiltin_UInt32_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12863____closed__5 = _init_l___regBuiltin_UInt32_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12863____closed__5(); -lean_mark_persistent(l___regBuiltin_UInt32_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12863____closed__5); -l___regBuiltin_UInt32_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12863____closed__6 = _init_l___regBuiltin_UInt32_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12863____closed__6(); -lean_mark_persistent(l___regBuiltin_UInt32_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12863____closed__6); -l___regBuiltin_UInt32_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12863____closed__7 = _init_l___regBuiltin_UInt32_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12863____closed__7(); -lean_mark_persistent(l___regBuiltin_UInt32_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12863____closed__7); -l___regBuiltin_UInt32_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12863____closed__8 = _init_l___regBuiltin_UInt32_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12863____closed__8(); -lean_mark_persistent(l___regBuiltin_UInt32_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12863____closed__8); -l___regBuiltin_UInt32_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12863____closed__9 = _init_l___regBuiltin_UInt32_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12863____closed__9(); -lean_mark_persistent(l___regBuiltin_UInt32_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12863____closed__9); -l___regBuiltin_UInt32_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12863____closed__10 = _init_l___regBuiltin_UInt32_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12863____closed__10(); -lean_mark_persistent(l___regBuiltin_UInt32_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12863____closed__10); -l___regBuiltin_UInt32_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12863____closed__11 = _init_l___regBuiltin_UInt32_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12863____closed__11(); -lean_mark_persistent(l___regBuiltin_UInt32_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12863____closed__11); -l___regBuiltin_UInt32_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12863____closed__12 = _init_l___regBuiltin_UInt32_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12863____closed__12(); -lean_mark_persistent(l___regBuiltin_UInt32_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12863____closed__12); -l___regBuiltin_UInt32_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12863____closed__13 = _init_l___regBuiltin_UInt32_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12863____closed__13(); -lean_mark_persistent(l___regBuiltin_UInt32_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12863____closed__13); -l___regBuiltin_UInt32_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12863____closed__14 = _init_l___regBuiltin_UInt32_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12863____closed__14(); -lean_mark_persistent(l___regBuiltin_UInt32_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12863____closed__14); -if (builtin) {res = l___regBuiltin_UInt32_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12863_(lean_io_mk_world()); +}l___regBuiltin_UInt32_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11078____closed__1 = _init_l___regBuiltin_UInt32_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11078____closed__1(); +lean_mark_persistent(l___regBuiltin_UInt32_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11078____closed__1); +l___regBuiltin_UInt32_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11078____closed__2 = _init_l___regBuiltin_UInt32_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11078____closed__2(); +lean_mark_persistent(l___regBuiltin_UInt32_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11078____closed__2); +l___regBuiltin_UInt32_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11078____closed__3 = _init_l___regBuiltin_UInt32_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11078____closed__3(); +lean_mark_persistent(l___regBuiltin_UInt32_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11078____closed__3); +l___regBuiltin_UInt32_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11078____closed__4 = _init_l___regBuiltin_UInt32_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11078____closed__4(); +lean_mark_persistent(l___regBuiltin_UInt32_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11078____closed__4); +l___regBuiltin_UInt32_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11078____closed__5 = _init_l___regBuiltin_UInt32_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11078____closed__5(); +lean_mark_persistent(l___regBuiltin_UInt32_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11078____closed__5); +l___regBuiltin_UInt32_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11078____closed__6 = _init_l___regBuiltin_UInt32_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11078____closed__6(); +lean_mark_persistent(l___regBuiltin_UInt32_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11078____closed__6); +l___regBuiltin_UInt32_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11078____closed__7 = _init_l___regBuiltin_UInt32_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11078____closed__7(); +lean_mark_persistent(l___regBuiltin_UInt32_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11078____closed__7); +l___regBuiltin_UInt32_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11078____closed__8 = _init_l___regBuiltin_UInt32_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11078____closed__8(); +lean_mark_persistent(l___regBuiltin_UInt32_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11078____closed__8); +l___regBuiltin_UInt32_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11078____closed__9 = _init_l___regBuiltin_UInt32_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11078____closed__9(); +lean_mark_persistent(l___regBuiltin_UInt32_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11078____closed__9); +l___regBuiltin_UInt32_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11078____closed__10 = _init_l___regBuiltin_UInt32_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11078____closed__10(); +lean_mark_persistent(l___regBuiltin_UInt32_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11078____closed__10); +l___regBuiltin_UInt32_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11078____closed__11 = _init_l___regBuiltin_UInt32_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11078____closed__11(); +lean_mark_persistent(l___regBuiltin_UInt32_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11078____closed__11); +l___regBuiltin_UInt32_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11078____closed__12 = _init_l___regBuiltin_UInt32_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11078____closed__12(); +lean_mark_persistent(l___regBuiltin_UInt32_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11078____closed__12); +l___regBuiltin_UInt32_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11078____closed__13 = _init_l___regBuiltin_UInt32_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11078____closed__13(); +lean_mark_persistent(l___regBuiltin_UInt32_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11078____closed__13); +l___regBuiltin_UInt32_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11078____closed__14 = _init_l___regBuiltin_UInt32_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11078____closed__14(); +lean_mark_persistent(l___regBuiltin_UInt32_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11078____closed__14); +if (builtin) {res = l___regBuiltin_UInt32_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11078_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_UInt32_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12865_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_UInt32_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11080_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_UInt32_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12867_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_UInt32_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11082_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}l___regBuiltin_UInt32_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12903____closed__1 = _init_l___regBuiltin_UInt32_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12903____closed__1(); -lean_mark_persistent(l___regBuiltin_UInt32_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12903____closed__1); -l___regBuiltin_UInt32_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12903____closed__2 = _init_l___regBuiltin_UInt32_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12903____closed__2(); -lean_mark_persistent(l___regBuiltin_UInt32_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12903____closed__2); -l___regBuiltin_UInt32_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12903____closed__3 = _init_l___regBuiltin_UInt32_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12903____closed__3(); -lean_mark_persistent(l___regBuiltin_UInt32_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12903____closed__3); -l___regBuiltin_UInt32_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12903____closed__4 = _init_l___regBuiltin_UInt32_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12903____closed__4(); -lean_mark_persistent(l___regBuiltin_UInt32_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12903____closed__4); -l___regBuiltin_UInt32_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12903____closed__5 = _init_l___regBuiltin_UInt32_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12903____closed__5(); -lean_mark_persistent(l___regBuiltin_UInt32_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12903____closed__5); -l___regBuiltin_UInt32_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12903____closed__6 = _init_l___regBuiltin_UInt32_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12903____closed__6(); -lean_mark_persistent(l___regBuiltin_UInt32_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12903____closed__6); -l___regBuiltin_UInt32_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12903____closed__7 = _init_l___regBuiltin_UInt32_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12903____closed__7(); -lean_mark_persistent(l___regBuiltin_UInt32_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12903____closed__7); -l___regBuiltin_UInt32_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12903____closed__8 = _init_l___regBuiltin_UInt32_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12903____closed__8(); -lean_mark_persistent(l___regBuiltin_UInt32_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12903____closed__8); -l___regBuiltin_UInt32_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12903____closed__9 = _init_l___regBuiltin_UInt32_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12903____closed__9(); -lean_mark_persistent(l___regBuiltin_UInt32_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12903____closed__9); -l___regBuiltin_UInt32_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12903____closed__10 = _init_l___regBuiltin_UInt32_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12903____closed__10(); -lean_mark_persistent(l___regBuiltin_UInt32_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12903____closed__10); -l___regBuiltin_UInt32_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12903____closed__11 = _init_l___regBuiltin_UInt32_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12903____closed__11(); -lean_mark_persistent(l___regBuiltin_UInt32_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12903____closed__11); -l___regBuiltin_UInt32_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12903____closed__12 = _init_l___regBuiltin_UInt32_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12903____closed__12(); -lean_mark_persistent(l___regBuiltin_UInt32_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12903____closed__12); -l___regBuiltin_UInt32_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12903____closed__13 = _init_l___regBuiltin_UInt32_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12903____closed__13(); -lean_mark_persistent(l___regBuiltin_UInt32_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12903____closed__13); -l___regBuiltin_UInt32_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12903____closed__14 = _init_l___regBuiltin_UInt32_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12903____closed__14(); -lean_mark_persistent(l___regBuiltin_UInt32_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12903____closed__14); -if (builtin) {res = l___regBuiltin_UInt32_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12903_(lean_io_mk_world()); +}l___regBuiltin_UInt32_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11118____closed__1 = _init_l___regBuiltin_UInt32_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11118____closed__1(); +lean_mark_persistent(l___regBuiltin_UInt32_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11118____closed__1); +l___regBuiltin_UInt32_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11118____closed__2 = _init_l___regBuiltin_UInt32_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11118____closed__2(); +lean_mark_persistent(l___regBuiltin_UInt32_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11118____closed__2); +l___regBuiltin_UInt32_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11118____closed__3 = _init_l___regBuiltin_UInt32_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11118____closed__3(); +lean_mark_persistent(l___regBuiltin_UInt32_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11118____closed__3); +l___regBuiltin_UInt32_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11118____closed__4 = _init_l___regBuiltin_UInt32_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11118____closed__4(); +lean_mark_persistent(l___regBuiltin_UInt32_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11118____closed__4); +l___regBuiltin_UInt32_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11118____closed__5 = _init_l___regBuiltin_UInt32_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11118____closed__5(); +lean_mark_persistent(l___regBuiltin_UInt32_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11118____closed__5); +l___regBuiltin_UInt32_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11118____closed__6 = _init_l___regBuiltin_UInt32_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11118____closed__6(); +lean_mark_persistent(l___regBuiltin_UInt32_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11118____closed__6); +l___regBuiltin_UInt32_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11118____closed__7 = _init_l___regBuiltin_UInt32_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11118____closed__7(); +lean_mark_persistent(l___regBuiltin_UInt32_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11118____closed__7); +l___regBuiltin_UInt32_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11118____closed__8 = _init_l___regBuiltin_UInt32_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11118____closed__8(); +lean_mark_persistent(l___regBuiltin_UInt32_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11118____closed__8); +l___regBuiltin_UInt32_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11118____closed__9 = _init_l___regBuiltin_UInt32_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11118____closed__9(); +lean_mark_persistent(l___regBuiltin_UInt32_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11118____closed__9); +l___regBuiltin_UInt32_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11118____closed__10 = _init_l___regBuiltin_UInt32_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11118____closed__10(); +lean_mark_persistent(l___regBuiltin_UInt32_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11118____closed__10); +l___regBuiltin_UInt32_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11118____closed__11 = _init_l___regBuiltin_UInt32_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11118____closed__11(); +lean_mark_persistent(l___regBuiltin_UInt32_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11118____closed__11); +l___regBuiltin_UInt32_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11118____closed__12 = _init_l___regBuiltin_UInt32_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11118____closed__12(); +lean_mark_persistent(l___regBuiltin_UInt32_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11118____closed__12); +l___regBuiltin_UInt32_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11118____closed__13 = _init_l___regBuiltin_UInt32_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11118____closed__13(); +lean_mark_persistent(l___regBuiltin_UInt32_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11118____closed__13); +l___regBuiltin_UInt32_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11118____closed__14 = _init_l___regBuiltin_UInt32_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11118____closed__14(); +lean_mark_persistent(l___regBuiltin_UInt32_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11118____closed__14); +if (builtin) {res = l___regBuiltin_UInt32_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11118_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_UInt32_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12905_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_UInt32_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11120_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_UInt32_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12907_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_UInt32_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11122_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}l___regBuiltin_UInt32_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12944____closed__1 = _init_l___regBuiltin_UInt32_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12944____closed__1(); -lean_mark_persistent(l___regBuiltin_UInt32_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12944____closed__1); -l___regBuiltin_UInt32_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12944____closed__2 = _init_l___regBuiltin_UInt32_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12944____closed__2(); -lean_mark_persistent(l___regBuiltin_UInt32_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12944____closed__2); -l___regBuiltin_UInt32_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12944____closed__3 = _init_l___regBuiltin_UInt32_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12944____closed__3(); -lean_mark_persistent(l___regBuiltin_UInt32_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12944____closed__3); -l___regBuiltin_UInt32_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12944____closed__4 = _init_l___regBuiltin_UInt32_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12944____closed__4(); -lean_mark_persistent(l___regBuiltin_UInt32_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12944____closed__4); -l___regBuiltin_UInt32_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12944____closed__5 = _init_l___regBuiltin_UInt32_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12944____closed__5(); -lean_mark_persistent(l___regBuiltin_UInt32_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12944____closed__5); -l___regBuiltin_UInt32_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12944____closed__6 = _init_l___regBuiltin_UInt32_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12944____closed__6(); -lean_mark_persistent(l___regBuiltin_UInt32_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12944____closed__6); -l___regBuiltin_UInt32_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12944____closed__7 = _init_l___regBuiltin_UInt32_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12944____closed__7(); -lean_mark_persistent(l___regBuiltin_UInt32_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12944____closed__7); -l___regBuiltin_UInt32_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12944____closed__8 = _init_l___regBuiltin_UInt32_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12944____closed__8(); -lean_mark_persistent(l___regBuiltin_UInt32_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12944____closed__8); -l___regBuiltin_UInt32_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12944____closed__9 = _init_l___regBuiltin_UInt32_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12944____closed__9(); -lean_mark_persistent(l___regBuiltin_UInt32_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12944____closed__9); -l___regBuiltin_UInt32_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12944____closed__10 = _init_l___regBuiltin_UInt32_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12944____closed__10(); -lean_mark_persistent(l___regBuiltin_UInt32_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12944____closed__10); -l___regBuiltin_UInt32_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12944____closed__11 = _init_l___regBuiltin_UInt32_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12944____closed__11(); -lean_mark_persistent(l___regBuiltin_UInt32_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12944____closed__11); -l___regBuiltin_UInt32_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12944____closed__12 = _init_l___regBuiltin_UInt32_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12944____closed__12(); -lean_mark_persistent(l___regBuiltin_UInt32_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12944____closed__12); -l___regBuiltin_UInt32_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12944____closed__13 = _init_l___regBuiltin_UInt32_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12944____closed__13(); -lean_mark_persistent(l___regBuiltin_UInt32_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12944____closed__13); -l___regBuiltin_UInt32_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12944____closed__14 = _init_l___regBuiltin_UInt32_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12944____closed__14(); -lean_mark_persistent(l___regBuiltin_UInt32_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12944____closed__14); -l___regBuiltin_UInt32_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12944____closed__15 = _init_l___regBuiltin_UInt32_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12944____closed__15(); -lean_mark_persistent(l___regBuiltin_UInt32_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12944____closed__15); -if (builtin) {res = l___regBuiltin_UInt32_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12944_(lean_io_mk_world()); +}l___regBuiltin_UInt32_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11159____closed__1 = _init_l___regBuiltin_UInt32_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11159____closed__1(); +lean_mark_persistent(l___regBuiltin_UInt32_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11159____closed__1); +l___regBuiltin_UInt32_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11159____closed__2 = _init_l___regBuiltin_UInt32_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11159____closed__2(); +lean_mark_persistent(l___regBuiltin_UInt32_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11159____closed__2); +l___regBuiltin_UInt32_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11159____closed__3 = _init_l___regBuiltin_UInt32_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11159____closed__3(); +lean_mark_persistent(l___regBuiltin_UInt32_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11159____closed__3); +l___regBuiltin_UInt32_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11159____closed__4 = _init_l___regBuiltin_UInt32_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11159____closed__4(); +lean_mark_persistent(l___regBuiltin_UInt32_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11159____closed__4); +l___regBuiltin_UInt32_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11159____closed__5 = _init_l___regBuiltin_UInt32_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11159____closed__5(); +lean_mark_persistent(l___regBuiltin_UInt32_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11159____closed__5); +l___regBuiltin_UInt32_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11159____closed__6 = _init_l___regBuiltin_UInt32_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11159____closed__6(); +lean_mark_persistent(l___regBuiltin_UInt32_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11159____closed__6); +l___regBuiltin_UInt32_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11159____closed__7 = _init_l___regBuiltin_UInt32_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11159____closed__7(); +lean_mark_persistent(l___regBuiltin_UInt32_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11159____closed__7); +l___regBuiltin_UInt32_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11159____closed__8 = _init_l___regBuiltin_UInt32_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11159____closed__8(); +lean_mark_persistent(l___regBuiltin_UInt32_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11159____closed__8); +l___regBuiltin_UInt32_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11159____closed__9 = _init_l___regBuiltin_UInt32_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11159____closed__9(); +lean_mark_persistent(l___regBuiltin_UInt32_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11159____closed__9); +l___regBuiltin_UInt32_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11159____closed__10 = _init_l___regBuiltin_UInt32_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11159____closed__10(); +lean_mark_persistent(l___regBuiltin_UInt32_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11159____closed__10); +l___regBuiltin_UInt32_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11159____closed__11 = _init_l___regBuiltin_UInt32_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11159____closed__11(); +lean_mark_persistent(l___regBuiltin_UInt32_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11159____closed__11); +l___regBuiltin_UInt32_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11159____closed__12 = _init_l___regBuiltin_UInt32_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11159____closed__12(); +lean_mark_persistent(l___regBuiltin_UInt32_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11159____closed__12); +l___regBuiltin_UInt32_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11159____closed__13 = _init_l___regBuiltin_UInt32_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11159____closed__13(); +lean_mark_persistent(l___regBuiltin_UInt32_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11159____closed__13); +l___regBuiltin_UInt32_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11159____closed__14 = _init_l___regBuiltin_UInt32_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11159____closed__14(); +lean_mark_persistent(l___regBuiltin_UInt32_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11159____closed__14); +l___regBuiltin_UInt32_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11159____closed__15 = _init_l___regBuiltin_UInt32_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11159____closed__15(); +lean_mark_persistent(l___regBuiltin_UInt32_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11159____closed__15); +if (builtin) {res = l___regBuiltin_UInt32_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11159_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_UInt32_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12946_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_UInt32_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11161_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_UInt32_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12948_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_UInt32_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11163_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}l___regBuiltin_UInt32_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12984____closed__1 = _init_l___regBuiltin_UInt32_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12984____closed__1(); -lean_mark_persistent(l___regBuiltin_UInt32_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12984____closed__1); -l___regBuiltin_UInt32_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12984____closed__2 = _init_l___regBuiltin_UInt32_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12984____closed__2(); -lean_mark_persistent(l___regBuiltin_UInt32_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12984____closed__2); -l___regBuiltin_UInt32_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12984____closed__3 = _init_l___regBuiltin_UInt32_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12984____closed__3(); -lean_mark_persistent(l___regBuiltin_UInt32_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12984____closed__3); -l___regBuiltin_UInt32_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12984____closed__4 = _init_l___regBuiltin_UInt32_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12984____closed__4(); -lean_mark_persistent(l___regBuiltin_UInt32_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12984____closed__4); -l___regBuiltin_UInt32_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12984____closed__5 = _init_l___regBuiltin_UInt32_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12984____closed__5(); -lean_mark_persistent(l___regBuiltin_UInt32_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12984____closed__5); -l___regBuiltin_UInt32_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12984____closed__6 = _init_l___regBuiltin_UInt32_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12984____closed__6(); -lean_mark_persistent(l___regBuiltin_UInt32_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12984____closed__6); -l___regBuiltin_UInt32_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12984____closed__7 = _init_l___regBuiltin_UInt32_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12984____closed__7(); -lean_mark_persistent(l___regBuiltin_UInt32_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12984____closed__7); -l___regBuiltin_UInt32_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12984____closed__8 = _init_l___regBuiltin_UInt32_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12984____closed__8(); -lean_mark_persistent(l___regBuiltin_UInt32_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12984____closed__8); -l___regBuiltin_UInt32_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12984____closed__9 = _init_l___regBuiltin_UInt32_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12984____closed__9(); -lean_mark_persistent(l___regBuiltin_UInt32_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12984____closed__9); -l___regBuiltin_UInt32_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12984____closed__10 = _init_l___regBuiltin_UInt32_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12984____closed__10(); -lean_mark_persistent(l___regBuiltin_UInt32_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12984____closed__10); -l___regBuiltin_UInt32_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12984____closed__11 = _init_l___regBuiltin_UInt32_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12984____closed__11(); -lean_mark_persistent(l___regBuiltin_UInt32_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12984____closed__11); -l___regBuiltin_UInt32_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12984____closed__12 = _init_l___regBuiltin_UInt32_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12984____closed__12(); -lean_mark_persistent(l___regBuiltin_UInt32_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12984____closed__12); -l___regBuiltin_UInt32_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12984____closed__13 = _init_l___regBuiltin_UInt32_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12984____closed__13(); -lean_mark_persistent(l___regBuiltin_UInt32_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12984____closed__13); -l___regBuiltin_UInt32_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12984____closed__14 = _init_l___regBuiltin_UInt32_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12984____closed__14(); -lean_mark_persistent(l___regBuiltin_UInt32_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12984____closed__14); -l___regBuiltin_UInt32_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12984____closed__15 = _init_l___regBuiltin_UInt32_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12984____closed__15(); -lean_mark_persistent(l___regBuiltin_UInt32_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12984____closed__15); -if (builtin) {res = l___regBuiltin_UInt32_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12984_(lean_io_mk_world()); +}l___regBuiltin_UInt32_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11199____closed__1 = _init_l___regBuiltin_UInt32_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11199____closed__1(); +lean_mark_persistent(l___regBuiltin_UInt32_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11199____closed__1); +l___regBuiltin_UInt32_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11199____closed__2 = _init_l___regBuiltin_UInt32_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11199____closed__2(); +lean_mark_persistent(l___regBuiltin_UInt32_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11199____closed__2); +l___regBuiltin_UInt32_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11199____closed__3 = _init_l___regBuiltin_UInt32_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11199____closed__3(); +lean_mark_persistent(l___regBuiltin_UInt32_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11199____closed__3); +l___regBuiltin_UInt32_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11199____closed__4 = _init_l___regBuiltin_UInt32_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11199____closed__4(); +lean_mark_persistent(l___regBuiltin_UInt32_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11199____closed__4); +l___regBuiltin_UInt32_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11199____closed__5 = _init_l___regBuiltin_UInt32_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11199____closed__5(); +lean_mark_persistent(l___regBuiltin_UInt32_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11199____closed__5); +l___regBuiltin_UInt32_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11199____closed__6 = _init_l___regBuiltin_UInt32_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11199____closed__6(); +lean_mark_persistent(l___regBuiltin_UInt32_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11199____closed__6); +l___regBuiltin_UInt32_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11199____closed__7 = _init_l___regBuiltin_UInt32_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11199____closed__7(); +lean_mark_persistent(l___regBuiltin_UInt32_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11199____closed__7); +l___regBuiltin_UInt32_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11199____closed__8 = _init_l___regBuiltin_UInt32_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11199____closed__8(); +lean_mark_persistent(l___regBuiltin_UInt32_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11199____closed__8); +l___regBuiltin_UInt32_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11199____closed__9 = _init_l___regBuiltin_UInt32_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11199____closed__9(); +lean_mark_persistent(l___regBuiltin_UInt32_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11199____closed__9); +l___regBuiltin_UInt32_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11199____closed__10 = _init_l___regBuiltin_UInt32_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11199____closed__10(); +lean_mark_persistent(l___regBuiltin_UInt32_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11199____closed__10); +l___regBuiltin_UInt32_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11199____closed__11 = _init_l___regBuiltin_UInt32_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11199____closed__11(); +lean_mark_persistent(l___regBuiltin_UInt32_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11199____closed__11); +l___regBuiltin_UInt32_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11199____closed__12 = _init_l___regBuiltin_UInt32_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11199____closed__12(); +lean_mark_persistent(l___regBuiltin_UInt32_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11199____closed__12); +l___regBuiltin_UInt32_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11199____closed__13 = _init_l___regBuiltin_UInt32_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11199____closed__13(); +lean_mark_persistent(l___regBuiltin_UInt32_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11199____closed__13); +l___regBuiltin_UInt32_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11199____closed__14 = _init_l___regBuiltin_UInt32_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11199____closed__14(); +lean_mark_persistent(l___regBuiltin_UInt32_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11199____closed__14); +l___regBuiltin_UInt32_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11199____closed__15 = _init_l___regBuiltin_UInt32_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11199____closed__15(); +lean_mark_persistent(l___regBuiltin_UInt32_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11199____closed__15); +if (builtin) {res = l___regBuiltin_UInt32_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11199_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_UInt32_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12986_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_UInt32_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11201_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_UInt32_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__12988_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_UInt32_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11203_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); }l_UInt32_reduceOfNatCore___closed__1 = _init_l_UInt32_reduceOfNatCore___closed__1(); lean_mark_persistent(l_UInt32_reduceOfNatCore___closed__1); -l___regBuiltin_UInt32_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13104____closed__1 = _init_l___regBuiltin_UInt32_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13104____closed__1(); -lean_mark_persistent(l___regBuiltin_UInt32_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13104____closed__1); -l___regBuiltin_UInt32_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13104____closed__2 = _init_l___regBuiltin_UInt32_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13104____closed__2(); -lean_mark_persistent(l___regBuiltin_UInt32_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13104____closed__2); -l___regBuiltin_UInt32_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13104____closed__3 = _init_l___regBuiltin_UInt32_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13104____closed__3(); -lean_mark_persistent(l___regBuiltin_UInt32_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13104____closed__3); -l___regBuiltin_UInt32_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13104____closed__4 = _init_l___regBuiltin_UInt32_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13104____closed__4(); -lean_mark_persistent(l___regBuiltin_UInt32_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13104____closed__4); -l___regBuiltin_UInt32_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13104____closed__5 = _init_l___regBuiltin_UInt32_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13104____closed__5(); -lean_mark_persistent(l___regBuiltin_UInt32_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13104____closed__5); -l___regBuiltin_UInt32_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13104____closed__6 = _init_l___regBuiltin_UInt32_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13104____closed__6(); -lean_mark_persistent(l___regBuiltin_UInt32_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13104____closed__6); -if (builtin) {res = l___regBuiltin_UInt32_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13104_(lean_io_mk_world()); +l___regBuiltin_UInt32_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11314____closed__1 = _init_l___regBuiltin_UInt32_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11314____closed__1(); +lean_mark_persistent(l___regBuiltin_UInt32_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11314____closed__1); +l___regBuiltin_UInt32_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11314____closed__2 = _init_l___regBuiltin_UInt32_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11314____closed__2(); +lean_mark_persistent(l___regBuiltin_UInt32_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11314____closed__2); +l___regBuiltin_UInt32_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11314____closed__3 = _init_l___regBuiltin_UInt32_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11314____closed__3(); +lean_mark_persistent(l___regBuiltin_UInt32_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11314____closed__3); +l___regBuiltin_UInt32_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11314____closed__4 = _init_l___regBuiltin_UInt32_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11314____closed__4(); +lean_mark_persistent(l___regBuiltin_UInt32_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11314____closed__4); +l___regBuiltin_UInt32_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11314____closed__5 = _init_l___regBuiltin_UInt32_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11314____closed__5(); +lean_mark_persistent(l___regBuiltin_UInt32_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11314____closed__5); +l___regBuiltin_UInt32_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11314____closed__6 = _init_l___regBuiltin_UInt32_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11314____closed__6(); +lean_mark_persistent(l___regBuiltin_UInt32_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11314____closed__6); +if (builtin) {res = l___regBuiltin_UInt32_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11314_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_UInt32_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13106_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_UInt32_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11316_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_UInt32_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13108_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_UInt32_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11318_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); }l_UInt32_reduceToNat___closed__1 = _init_l_UInt32_reduceToNat___closed__1(); lean_mark_persistent(l_UInt32_reduceToNat___closed__1); -l___regBuiltin_UInt32_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13220____closed__1 = _init_l___regBuiltin_UInt32_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13220____closed__1(); -lean_mark_persistent(l___regBuiltin_UInt32_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13220____closed__1); -l___regBuiltin_UInt32_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13220____closed__2 = _init_l___regBuiltin_UInt32_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13220____closed__2(); -lean_mark_persistent(l___regBuiltin_UInt32_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13220____closed__2); -l___regBuiltin_UInt32_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13220____closed__3 = _init_l___regBuiltin_UInt32_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13220____closed__3(); -lean_mark_persistent(l___regBuiltin_UInt32_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13220____closed__3); -l___regBuiltin_UInt32_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13220____closed__4 = _init_l___regBuiltin_UInt32_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13220____closed__4(); -lean_mark_persistent(l___regBuiltin_UInt32_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13220____closed__4); -l___regBuiltin_UInt32_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13220____closed__5 = _init_l___regBuiltin_UInt32_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13220____closed__5(); -lean_mark_persistent(l___regBuiltin_UInt32_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13220____closed__5); -if (builtin) {res = l___regBuiltin_UInt32_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13220_(lean_io_mk_world()); +l___regBuiltin_UInt32_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11430____closed__1 = _init_l___regBuiltin_UInt32_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11430____closed__1(); +lean_mark_persistent(l___regBuiltin_UInt32_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11430____closed__1); +l___regBuiltin_UInt32_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11430____closed__2 = _init_l___regBuiltin_UInt32_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11430____closed__2(); +lean_mark_persistent(l___regBuiltin_UInt32_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11430____closed__2); +l___regBuiltin_UInt32_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11430____closed__3 = _init_l___regBuiltin_UInt32_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11430____closed__3(); +lean_mark_persistent(l___regBuiltin_UInt32_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11430____closed__3); +l___regBuiltin_UInt32_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11430____closed__4 = _init_l___regBuiltin_UInt32_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11430____closed__4(); +lean_mark_persistent(l___regBuiltin_UInt32_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11430____closed__4); +l___regBuiltin_UInt32_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11430____closed__5 = _init_l___regBuiltin_UInt32_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11430____closed__5(); +lean_mark_persistent(l___regBuiltin_UInt32_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11430____closed__5); +if (builtin) {res = l___regBuiltin_UInt32_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11430_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_UInt32_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13222_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_UInt32_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11432_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_UInt32_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13224_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_UInt32_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11434_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}l___regBuiltin_UInt32_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__13296____closed__1 = _init_l___regBuiltin_UInt32_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__13296____closed__1(); -lean_mark_persistent(l___regBuiltin_UInt32_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__13296____closed__1); -l___regBuiltin_UInt32_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__13296____closed__2 = _init_l___regBuiltin_UInt32_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__13296____closed__2(); -lean_mark_persistent(l___regBuiltin_UInt32_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__13296____closed__2); -l___regBuiltin_UInt32_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__13296____closed__3 = _init_l___regBuiltin_UInt32_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__13296____closed__3(); -lean_mark_persistent(l___regBuiltin_UInt32_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__13296____closed__3); -l___regBuiltin_UInt32_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__13296____closed__4 = _init_l___regBuiltin_UInt32_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__13296____closed__4(); -lean_mark_persistent(l___regBuiltin_UInt32_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__13296____closed__4); -l___regBuiltin_UInt32_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__13296____closed__5 = _init_l___regBuiltin_UInt32_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__13296____closed__5(); -lean_mark_persistent(l___regBuiltin_UInt32_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__13296____closed__5); -l___regBuiltin_UInt32_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__13296____closed__6 = _init_l___regBuiltin_UInt32_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__13296____closed__6(); -lean_mark_persistent(l___regBuiltin_UInt32_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__13296____closed__6); -l___regBuiltin_UInt32_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__13296____closed__7 = _init_l___regBuiltin_UInt32_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__13296____closed__7(); -lean_mark_persistent(l___regBuiltin_UInt32_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__13296____closed__7); -l___regBuiltin_UInt32_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__13296____closed__8 = _init_l___regBuiltin_UInt32_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__13296____closed__8(); -lean_mark_persistent(l___regBuiltin_UInt32_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__13296____closed__8); -l___regBuiltin_UInt32_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__13296____closed__9 = _init_l___regBuiltin_UInt32_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__13296____closed__9(); -lean_mark_persistent(l___regBuiltin_UInt32_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__13296____closed__9); -l___regBuiltin_UInt32_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__13296____closed__10 = _init_l___regBuiltin_UInt32_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__13296____closed__10(); -lean_mark_persistent(l___regBuiltin_UInt32_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__13296____closed__10); -l___regBuiltin_UInt32_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__13296____closed__11 = _init_l___regBuiltin_UInt32_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__13296____closed__11(); -lean_mark_persistent(l___regBuiltin_UInt32_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__13296____closed__11); -l___regBuiltin_UInt32_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__13296____closed__12 = _init_l___regBuiltin_UInt32_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__13296____closed__12(); -lean_mark_persistent(l___regBuiltin_UInt32_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__13296____closed__12); -l___regBuiltin_UInt32_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__13296____closed__13 = _init_l___regBuiltin_UInt32_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__13296____closed__13(); -lean_mark_persistent(l___regBuiltin_UInt32_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__13296____closed__13); -l___regBuiltin_UInt32_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__13296____closed__14 = _init_l___regBuiltin_UInt32_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__13296____closed__14(); -lean_mark_persistent(l___regBuiltin_UInt32_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__13296____closed__14); -if (builtin) {res = l___regBuiltin_UInt32_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__13296_(lean_io_mk_world()); +}l___regBuiltin_UInt32_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11506____closed__1 = _init_l___regBuiltin_UInt32_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11506____closed__1(); +lean_mark_persistent(l___regBuiltin_UInt32_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11506____closed__1); +l___regBuiltin_UInt32_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11506____closed__2 = _init_l___regBuiltin_UInt32_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11506____closed__2(); +lean_mark_persistent(l___regBuiltin_UInt32_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11506____closed__2); +l___regBuiltin_UInt32_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11506____closed__3 = _init_l___regBuiltin_UInt32_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11506____closed__3(); +lean_mark_persistent(l___regBuiltin_UInt32_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11506____closed__3); +l___regBuiltin_UInt32_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11506____closed__4 = _init_l___regBuiltin_UInt32_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11506____closed__4(); +lean_mark_persistent(l___regBuiltin_UInt32_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11506____closed__4); +l___regBuiltin_UInt32_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11506____closed__5 = _init_l___regBuiltin_UInt32_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11506____closed__5(); +lean_mark_persistent(l___regBuiltin_UInt32_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11506____closed__5); +l___regBuiltin_UInt32_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11506____closed__6 = _init_l___regBuiltin_UInt32_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11506____closed__6(); +lean_mark_persistent(l___regBuiltin_UInt32_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11506____closed__6); +l___regBuiltin_UInt32_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11506____closed__7 = _init_l___regBuiltin_UInt32_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11506____closed__7(); +lean_mark_persistent(l___regBuiltin_UInt32_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11506____closed__7); +l___regBuiltin_UInt32_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11506____closed__8 = _init_l___regBuiltin_UInt32_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11506____closed__8(); +lean_mark_persistent(l___regBuiltin_UInt32_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11506____closed__8); +l___regBuiltin_UInt32_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11506____closed__9 = _init_l___regBuiltin_UInt32_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11506____closed__9(); +lean_mark_persistent(l___regBuiltin_UInt32_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11506____closed__9); +l___regBuiltin_UInt32_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11506____closed__10 = _init_l___regBuiltin_UInt32_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11506____closed__10(); +lean_mark_persistent(l___regBuiltin_UInt32_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11506____closed__10); +l___regBuiltin_UInt32_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11506____closed__11 = _init_l___regBuiltin_UInt32_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11506____closed__11(); +lean_mark_persistent(l___regBuiltin_UInt32_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11506____closed__11); +l___regBuiltin_UInt32_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11506____closed__12 = _init_l___regBuiltin_UInt32_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11506____closed__12(); +lean_mark_persistent(l___regBuiltin_UInt32_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11506____closed__12); +l___regBuiltin_UInt32_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11506____closed__13 = _init_l___regBuiltin_UInt32_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11506____closed__13(); +lean_mark_persistent(l___regBuiltin_UInt32_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11506____closed__13); +l___regBuiltin_UInt32_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11506____closed__14 = _init_l___regBuiltin_UInt32_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11506____closed__14(); +lean_mark_persistent(l___regBuiltin_UInt32_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11506____closed__14); +if (builtin) {res = l___regBuiltin_UInt32_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11506_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_UInt32_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11860__13298_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_UInt32_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10179__11508_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); }l_UInt64_fromExpr___closed__1 = _init_l_UInt64_fromExpr___closed__1(); lean_mark_persistent(l_UInt64_fromExpr___closed__1); l_UInt64_fromExpr___closed__2 = _init_l_UInt64_fromExpr___closed__2(); lean_mark_persistent(l_UInt64_fromExpr___closed__2); -l_UInt64_toExprCore___closed__1 = _init_l_UInt64_toExprCore___closed__1(); -lean_mark_persistent(l_UInt64_toExprCore___closed__1); -l_UInt64_toExprCore___closed__2 = _init_l_UInt64_toExprCore___closed__2(); -lean_mark_persistent(l_UInt64_toExprCore___closed__2); -l_UInt64_toExprCore___closed__3 = _init_l_UInt64_toExprCore___closed__3(); -lean_mark_persistent(l_UInt64_toExprCore___closed__3); -l_UInt64_toExpr___closed__1 = _init_l_UInt64_toExpr___closed__1(); -lean_mark_persistent(l_UInt64_toExpr___closed__1); -l___regBuiltin_UInt64_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13939____closed__1 = _init_l___regBuiltin_UInt64_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13939____closed__1(); -lean_mark_persistent(l___regBuiltin_UInt64_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13939____closed__1); -l___regBuiltin_UInt64_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13939____closed__2 = _init_l___regBuiltin_UInt64_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13939____closed__2(); -lean_mark_persistent(l___regBuiltin_UInt64_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13939____closed__2); -l___regBuiltin_UInt64_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13939____closed__3 = _init_l___regBuiltin_UInt64_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13939____closed__3(); -lean_mark_persistent(l___regBuiltin_UInt64_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13939____closed__3); -l___regBuiltin_UInt64_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13939____closed__4 = _init_l___regBuiltin_UInt64_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13939____closed__4(); -lean_mark_persistent(l___regBuiltin_UInt64_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13939____closed__4); -l___regBuiltin_UInt64_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13939____closed__5 = _init_l___regBuiltin_UInt64_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13939____closed__5(); -lean_mark_persistent(l___regBuiltin_UInt64_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13939____closed__5); -l___regBuiltin_UInt64_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13939____closed__6 = _init_l___regBuiltin_UInt64_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13939____closed__6(); -lean_mark_persistent(l___regBuiltin_UInt64_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13939____closed__6); -l___regBuiltin_UInt64_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13939____closed__7 = _init_l___regBuiltin_UInt64_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13939____closed__7(); -lean_mark_persistent(l___regBuiltin_UInt64_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13939____closed__7); -l___regBuiltin_UInt64_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13939____closed__8 = _init_l___regBuiltin_UInt64_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13939____closed__8(); -lean_mark_persistent(l___regBuiltin_UInt64_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13939____closed__8); -l___regBuiltin_UInt64_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13939____closed__9 = _init_l___regBuiltin_UInt64_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13939____closed__9(); -lean_mark_persistent(l___regBuiltin_UInt64_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13939____closed__9); -if (builtin) {res = l___regBuiltin_UInt64_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13939_(lean_io_mk_world()); +l_UInt64_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511____lambda__1___closed__1 = _init_l_UInt64_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511____lambda__1___closed__1(); +lean_mark_persistent(l_UInt64_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511____lambda__1___closed__1); +l_UInt64_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511____lambda__1___closed__2 = _init_l_UInt64_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511____lambda__1___closed__2(); +lean_mark_persistent(l_UInt64_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511____lambda__1___closed__2); +l_UInt64_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511____lambda__1___closed__3 = _init_l_UInt64_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511____lambda__1___closed__3(); +lean_mark_persistent(l_UInt64_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511____lambda__1___closed__3); +l___regBuiltin_UInt64_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12045____closed__1 = _init_l___regBuiltin_UInt64_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12045____closed__1(); +lean_mark_persistent(l___regBuiltin_UInt64_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12045____closed__1); +l___regBuiltin_UInt64_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12045____closed__2 = _init_l___regBuiltin_UInt64_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12045____closed__2(); +lean_mark_persistent(l___regBuiltin_UInt64_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12045____closed__2); +l___regBuiltin_UInt64_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12045____closed__3 = _init_l___regBuiltin_UInt64_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12045____closed__3(); +lean_mark_persistent(l___regBuiltin_UInt64_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12045____closed__3); +l___regBuiltin_UInt64_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12045____closed__4 = _init_l___regBuiltin_UInt64_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12045____closed__4(); +lean_mark_persistent(l___regBuiltin_UInt64_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12045____closed__4); +l___regBuiltin_UInt64_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12045____closed__5 = _init_l___regBuiltin_UInt64_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12045____closed__5(); +lean_mark_persistent(l___regBuiltin_UInt64_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12045____closed__5); +l___regBuiltin_UInt64_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12045____closed__6 = _init_l___regBuiltin_UInt64_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12045____closed__6(); +lean_mark_persistent(l___regBuiltin_UInt64_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12045____closed__6); +l___regBuiltin_UInt64_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12045____closed__7 = _init_l___regBuiltin_UInt64_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12045____closed__7(); +lean_mark_persistent(l___regBuiltin_UInt64_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12045____closed__7); +l___regBuiltin_UInt64_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12045____closed__8 = _init_l___regBuiltin_UInt64_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12045____closed__8(); +lean_mark_persistent(l___regBuiltin_UInt64_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12045____closed__8); +l___regBuiltin_UInt64_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12045____closed__9 = _init_l___regBuiltin_UInt64_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12045____closed__9(); +lean_mark_persistent(l___regBuiltin_UInt64_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12045____closed__9); +if (builtin) {res = l___regBuiltin_UInt64_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12045_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_UInt64_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13941_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_UInt64_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12047_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_UInt64_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13943_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_UInt64_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12049_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}l___regBuiltin_UInt64_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13979____closed__1 = _init_l___regBuiltin_UInt64_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13979____closed__1(); -lean_mark_persistent(l___regBuiltin_UInt64_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13979____closed__1); -l___regBuiltin_UInt64_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13979____closed__2 = _init_l___regBuiltin_UInt64_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13979____closed__2(); -lean_mark_persistent(l___regBuiltin_UInt64_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13979____closed__2); -l___regBuiltin_UInt64_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13979____closed__3 = _init_l___regBuiltin_UInt64_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13979____closed__3(); -lean_mark_persistent(l___regBuiltin_UInt64_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13979____closed__3); -l___regBuiltin_UInt64_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13979____closed__4 = _init_l___regBuiltin_UInt64_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13979____closed__4(); -lean_mark_persistent(l___regBuiltin_UInt64_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13979____closed__4); -l___regBuiltin_UInt64_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13979____closed__5 = _init_l___regBuiltin_UInt64_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13979____closed__5(); -lean_mark_persistent(l___regBuiltin_UInt64_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13979____closed__5); -l___regBuiltin_UInt64_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13979____closed__6 = _init_l___regBuiltin_UInt64_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13979____closed__6(); -lean_mark_persistent(l___regBuiltin_UInt64_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13979____closed__6); -l___regBuiltin_UInt64_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13979____closed__7 = _init_l___regBuiltin_UInt64_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13979____closed__7(); -lean_mark_persistent(l___regBuiltin_UInt64_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13979____closed__7); -l___regBuiltin_UInt64_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13979____closed__8 = _init_l___regBuiltin_UInt64_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13979____closed__8(); -lean_mark_persistent(l___regBuiltin_UInt64_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13979____closed__8); -if (builtin) {res = l___regBuiltin_UInt64_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13979_(lean_io_mk_world()); +}l___regBuiltin_UInt64_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12085____closed__1 = _init_l___regBuiltin_UInt64_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12085____closed__1(); +lean_mark_persistent(l___regBuiltin_UInt64_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12085____closed__1); +l___regBuiltin_UInt64_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12085____closed__2 = _init_l___regBuiltin_UInt64_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12085____closed__2(); +lean_mark_persistent(l___regBuiltin_UInt64_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12085____closed__2); +l___regBuiltin_UInt64_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12085____closed__3 = _init_l___regBuiltin_UInt64_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12085____closed__3(); +lean_mark_persistent(l___regBuiltin_UInt64_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12085____closed__3); +l___regBuiltin_UInt64_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12085____closed__4 = _init_l___regBuiltin_UInt64_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12085____closed__4(); +lean_mark_persistent(l___regBuiltin_UInt64_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12085____closed__4); +l___regBuiltin_UInt64_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12085____closed__5 = _init_l___regBuiltin_UInt64_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12085____closed__5(); +lean_mark_persistent(l___regBuiltin_UInt64_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12085____closed__5); +l___regBuiltin_UInt64_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12085____closed__6 = _init_l___regBuiltin_UInt64_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12085____closed__6(); +lean_mark_persistent(l___regBuiltin_UInt64_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12085____closed__6); +l___regBuiltin_UInt64_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12085____closed__7 = _init_l___regBuiltin_UInt64_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12085____closed__7(); +lean_mark_persistent(l___regBuiltin_UInt64_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12085____closed__7); +l___regBuiltin_UInt64_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12085____closed__8 = _init_l___regBuiltin_UInt64_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12085____closed__8(); +lean_mark_persistent(l___regBuiltin_UInt64_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12085____closed__8); +if (builtin) {res = l___regBuiltin_UInt64_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12085_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_UInt64_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13981_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_UInt64_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12087_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_UInt64_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13983_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_UInt64_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12089_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}l___regBuiltin_UInt64_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14019____closed__1 = _init_l___regBuiltin_UInt64_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14019____closed__1(); -lean_mark_persistent(l___regBuiltin_UInt64_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14019____closed__1); -l___regBuiltin_UInt64_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14019____closed__2 = _init_l___regBuiltin_UInt64_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14019____closed__2(); -lean_mark_persistent(l___regBuiltin_UInt64_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14019____closed__2); -l___regBuiltin_UInt64_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14019____closed__3 = _init_l___regBuiltin_UInt64_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14019____closed__3(); -lean_mark_persistent(l___regBuiltin_UInt64_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14019____closed__3); -l___regBuiltin_UInt64_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14019____closed__4 = _init_l___regBuiltin_UInt64_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14019____closed__4(); -lean_mark_persistent(l___regBuiltin_UInt64_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14019____closed__4); -l___regBuiltin_UInt64_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14019____closed__5 = _init_l___regBuiltin_UInt64_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14019____closed__5(); -lean_mark_persistent(l___regBuiltin_UInt64_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14019____closed__5); -l___regBuiltin_UInt64_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14019____closed__6 = _init_l___regBuiltin_UInt64_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14019____closed__6(); -lean_mark_persistent(l___regBuiltin_UInt64_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14019____closed__6); -l___regBuiltin_UInt64_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14019____closed__7 = _init_l___regBuiltin_UInt64_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14019____closed__7(); -lean_mark_persistent(l___regBuiltin_UInt64_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14019____closed__7); -l___regBuiltin_UInt64_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14019____closed__8 = _init_l___regBuiltin_UInt64_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14019____closed__8(); -lean_mark_persistent(l___regBuiltin_UInt64_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14019____closed__8); -if (builtin) {res = l___regBuiltin_UInt64_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14019_(lean_io_mk_world()); +}l___regBuiltin_UInt64_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12125____closed__1 = _init_l___regBuiltin_UInt64_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12125____closed__1(); +lean_mark_persistent(l___regBuiltin_UInt64_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12125____closed__1); +l___regBuiltin_UInt64_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12125____closed__2 = _init_l___regBuiltin_UInt64_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12125____closed__2(); +lean_mark_persistent(l___regBuiltin_UInt64_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12125____closed__2); +l___regBuiltin_UInt64_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12125____closed__3 = _init_l___regBuiltin_UInt64_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12125____closed__3(); +lean_mark_persistent(l___regBuiltin_UInt64_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12125____closed__3); +l___regBuiltin_UInt64_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12125____closed__4 = _init_l___regBuiltin_UInt64_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12125____closed__4(); +lean_mark_persistent(l___regBuiltin_UInt64_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12125____closed__4); +l___regBuiltin_UInt64_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12125____closed__5 = _init_l___regBuiltin_UInt64_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12125____closed__5(); +lean_mark_persistent(l___regBuiltin_UInt64_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12125____closed__5); +l___regBuiltin_UInt64_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12125____closed__6 = _init_l___regBuiltin_UInt64_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12125____closed__6(); +lean_mark_persistent(l___regBuiltin_UInt64_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12125____closed__6); +l___regBuiltin_UInt64_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12125____closed__7 = _init_l___regBuiltin_UInt64_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12125____closed__7(); +lean_mark_persistent(l___regBuiltin_UInt64_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12125____closed__7); +l___regBuiltin_UInt64_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12125____closed__8 = _init_l___regBuiltin_UInt64_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12125____closed__8(); +lean_mark_persistent(l___regBuiltin_UInt64_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12125____closed__8); +if (builtin) {res = l___regBuiltin_UInt64_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12125_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_UInt64_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14021_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_UInt64_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12127_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_UInt64_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14023_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_UInt64_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12129_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}l___regBuiltin_UInt64_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14059____closed__1 = _init_l___regBuiltin_UInt64_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14059____closed__1(); -lean_mark_persistent(l___regBuiltin_UInt64_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14059____closed__1); -l___regBuiltin_UInt64_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14059____closed__2 = _init_l___regBuiltin_UInt64_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14059____closed__2(); -lean_mark_persistent(l___regBuiltin_UInt64_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14059____closed__2); -l___regBuiltin_UInt64_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14059____closed__3 = _init_l___regBuiltin_UInt64_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14059____closed__3(); -lean_mark_persistent(l___regBuiltin_UInt64_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14059____closed__3); -l___regBuiltin_UInt64_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14059____closed__4 = _init_l___regBuiltin_UInt64_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14059____closed__4(); -lean_mark_persistent(l___regBuiltin_UInt64_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14059____closed__4); -l___regBuiltin_UInt64_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14059____closed__5 = _init_l___regBuiltin_UInt64_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14059____closed__5(); -lean_mark_persistent(l___regBuiltin_UInt64_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14059____closed__5); -l___regBuiltin_UInt64_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14059____closed__6 = _init_l___regBuiltin_UInt64_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14059____closed__6(); -lean_mark_persistent(l___regBuiltin_UInt64_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14059____closed__6); -l___regBuiltin_UInt64_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14059____closed__7 = _init_l___regBuiltin_UInt64_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14059____closed__7(); -lean_mark_persistent(l___regBuiltin_UInt64_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14059____closed__7); -l___regBuiltin_UInt64_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14059____closed__8 = _init_l___regBuiltin_UInt64_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14059____closed__8(); -lean_mark_persistent(l___regBuiltin_UInt64_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14059____closed__8); -if (builtin) {res = l___regBuiltin_UInt64_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14059_(lean_io_mk_world()); +}l___regBuiltin_UInt64_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12165____closed__1 = _init_l___regBuiltin_UInt64_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12165____closed__1(); +lean_mark_persistent(l___regBuiltin_UInt64_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12165____closed__1); +l___regBuiltin_UInt64_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12165____closed__2 = _init_l___regBuiltin_UInt64_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12165____closed__2(); +lean_mark_persistent(l___regBuiltin_UInt64_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12165____closed__2); +l___regBuiltin_UInt64_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12165____closed__3 = _init_l___regBuiltin_UInt64_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12165____closed__3(); +lean_mark_persistent(l___regBuiltin_UInt64_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12165____closed__3); +l___regBuiltin_UInt64_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12165____closed__4 = _init_l___regBuiltin_UInt64_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12165____closed__4(); +lean_mark_persistent(l___regBuiltin_UInt64_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12165____closed__4); +l___regBuiltin_UInt64_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12165____closed__5 = _init_l___regBuiltin_UInt64_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12165____closed__5(); +lean_mark_persistent(l___regBuiltin_UInt64_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12165____closed__5); +l___regBuiltin_UInt64_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12165____closed__6 = _init_l___regBuiltin_UInt64_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12165____closed__6(); +lean_mark_persistent(l___regBuiltin_UInt64_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12165____closed__6); +l___regBuiltin_UInt64_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12165____closed__7 = _init_l___regBuiltin_UInt64_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12165____closed__7(); +lean_mark_persistent(l___regBuiltin_UInt64_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12165____closed__7); +l___regBuiltin_UInt64_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12165____closed__8 = _init_l___regBuiltin_UInt64_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12165____closed__8(); +lean_mark_persistent(l___regBuiltin_UInt64_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12165____closed__8); +if (builtin) {res = l___regBuiltin_UInt64_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12165_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_UInt64_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14061_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_UInt64_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12167_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_UInt64_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14063_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_UInt64_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12169_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}l___regBuiltin_UInt64_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14099____closed__1 = _init_l___regBuiltin_UInt64_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14099____closed__1(); -lean_mark_persistent(l___regBuiltin_UInt64_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14099____closed__1); -l___regBuiltin_UInt64_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14099____closed__2 = _init_l___regBuiltin_UInt64_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14099____closed__2(); -lean_mark_persistent(l___regBuiltin_UInt64_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14099____closed__2); -l___regBuiltin_UInt64_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14099____closed__3 = _init_l___regBuiltin_UInt64_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14099____closed__3(); -lean_mark_persistent(l___regBuiltin_UInt64_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14099____closed__3); -l___regBuiltin_UInt64_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14099____closed__4 = _init_l___regBuiltin_UInt64_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14099____closed__4(); -lean_mark_persistent(l___regBuiltin_UInt64_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14099____closed__4); -l___regBuiltin_UInt64_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14099____closed__5 = _init_l___regBuiltin_UInt64_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14099____closed__5(); -lean_mark_persistent(l___regBuiltin_UInt64_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14099____closed__5); -l___regBuiltin_UInt64_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14099____closed__6 = _init_l___regBuiltin_UInt64_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14099____closed__6(); -lean_mark_persistent(l___regBuiltin_UInt64_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14099____closed__6); -l___regBuiltin_UInt64_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14099____closed__7 = _init_l___regBuiltin_UInt64_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14099____closed__7(); -lean_mark_persistent(l___regBuiltin_UInt64_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14099____closed__7); -l___regBuiltin_UInt64_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14099____closed__8 = _init_l___regBuiltin_UInt64_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14099____closed__8(); -lean_mark_persistent(l___regBuiltin_UInt64_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14099____closed__8); -if (builtin) {res = l___regBuiltin_UInt64_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14099_(lean_io_mk_world()); +}l___regBuiltin_UInt64_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12205____closed__1 = _init_l___regBuiltin_UInt64_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12205____closed__1(); +lean_mark_persistent(l___regBuiltin_UInt64_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12205____closed__1); +l___regBuiltin_UInt64_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12205____closed__2 = _init_l___regBuiltin_UInt64_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12205____closed__2(); +lean_mark_persistent(l___regBuiltin_UInt64_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12205____closed__2); +l___regBuiltin_UInt64_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12205____closed__3 = _init_l___regBuiltin_UInt64_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12205____closed__3(); +lean_mark_persistent(l___regBuiltin_UInt64_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12205____closed__3); +l___regBuiltin_UInt64_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12205____closed__4 = _init_l___regBuiltin_UInt64_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12205____closed__4(); +lean_mark_persistent(l___regBuiltin_UInt64_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12205____closed__4); +l___regBuiltin_UInt64_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12205____closed__5 = _init_l___regBuiltin_UInt64_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12205____closed__5(); +lean_mark_persistent(l___regBuiltin_UInt64_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12205____closed__5); +l___regBuiltin_UInt64_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12205____closed__6 = _init_l___regBuiltin_UInt64_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12205____closed__6(); +lean_mark_persistent(l___regBuiltin_UInt64_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12205____closed__6); +l___regBuiltin_UInt64_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12205____closed__7 = _init_l___regBuiltin_UInt64_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12205____closed__7(); +lean_mark_persistent(l___regBuiltin_UInt64_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12205____closed__7); +l___regBuiltin_UInt64_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12205____closed__8 = _init_l___regBuiltin_UInt64_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12205____closed__8(); +lean_mark_persistent(l___regBuiltin_UInt64_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12205____closed__8); +if (builtin) {res = l___regBuiltin_UInt64_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12205_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_UInt64_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14101_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_UInt64_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12207_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_UInt64_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14103_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_UInt64_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12209_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}l___regBuiltin_UInt64_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14140____closed__1 = _init_l___regBuiltin_UInt64_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14140____closed__1(); -lean_mark_persistent(l___regBuiltin_UInt64_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14140____closed__1); -l___regBuiltin_UInt64_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14140____closed__2 = _init_l___regBuiltin_UInt64_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14140____closed__2(); -lean_mark_persistent(l___regBuiltin_UInt64_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14140____closed__2); -l___regBuiltin_UInt64_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14140____closed__3 = _init_l___regBuiltin_UInt64_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14140____closed__3(); -lean_mark_persistent(l___regBuiltin_UInt64_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14140____closed__3); -l___regBuiltin_UInt64_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14140____closed__4 = _init_l___regBuiltin_UInt64_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14140____closed__4(); -lean_mark_persistent(l___regBuiltin_UInt64_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14140____closed__4); -l___regBuiltin_UInt64_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14140____closed__5 = _init_l___regBuiltin_UInt64_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14140____closed__5(); -lean_mark_persistent(l___regBuiltin_UInt64_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14140____closed__5); -l___regBuiltin_UInt64_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14140____closed__6 = _init_l___regBuiltin_UInt64_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14140____closed__6(); -lean_mark_persistent(l___regBuiltin_UInt64_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14140____closed__6); -if (builtin) {res = l___regBuiltin_UInt64_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14140_(lean_io_mk_world()); +}l___regBuiltin_UInt64_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12246____closed__1 = _init_l___regBuiltin_UInt64_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12246____closed__1(); +lean_mark_persistent(l___regBuiltin_UInt64_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12246____closed__1); +l___regBuiltin_UInt64_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12246____closed__2 = _init_l___regBuiltin_UInt64_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12246____closed__2(); +lean_mark_persistent(l___regBuiltin_UInt64_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12246____closed__2); +l___regBuiltin_UInt64_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12246____closed__3 = _init_l___regBuiltin_UInt64_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12246____closed__3(); +lean_mark_persistent(l___regBuiltin_UInt64_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12246____closed__3); +l___regBuiltin_UInt64_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12246____closed__4 = _init_l___regBuiltin_UInt64_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12246____closed__4(); +lean_mark_persistent(l___regBuiltin_UInt64_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12246____closed__4); +l___regBuiltin_UInt64_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12246____closed__5 = _init_l___regBuiltin_UInt64_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12246____closed__5(); +lean_mark_persistent(l___regBuiltin_UInt64_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12246____closed__5); +l___regBuiltin_UInt64_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12246____closed__6 = _init_l___regBuiltin_UInt64_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12246____closed__6(); +lean_mark_persistent(l___regBuiltin_UInt64_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12246____closed__6); +if (builtin) {res = l___regBuiltin_UInt64_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12246_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_UInt64_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14142_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_UInt64_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12248_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_UInt64_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14144_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_UInt64_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12250_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}l___regBuiltin_UInt64_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14181____closed__1 = _init_l___regBuiltin_UInt64_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14181____closed__1(); -lean_mark_persistent(l___regBuiltin_UInt64_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14181____closed__1); -l___regBuiltin_UInt64_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14181____closed__2 = _init_l___regBuiltin_UInt64_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14181____closed__2(); -lean_mark_persistent(l___regBuiltin_UInt64_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14181____closed__2); -l___regBuiltin_UInt64_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14181____closed__3 = _init_l___regBuiltin_UInt64_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14181____closed__3(); -lean_mark_persistent(l___regBuiltin_UInt64_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14181____closed__3); -l___regBuiltin_UInt64_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14181____closed__4 = _init_l___regBuiltin_UInt64_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14181____closed__4(); -lean_mark_persistent(l___regBuiltin_UInt64_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14181____closed__4); -l___regBuiltin_UInt64_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14181____closed__5 = _init_l___regBuiltin_UInt64_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14181____closed__5(); -lean_mark_persistent(l___regBuiltin_UInt64_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14181____closed__5); -l___regBuiltin_UInt64_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14181____closed__6 = _init_l___regBuiltin_UInt64_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14181____closed__6(); -lean_mark_persistent(l___regBuiltin_UInt64_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14181____closed__6); -if (builtin) {res = l___regBuiltin_UInt64_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14181_(lean_io_mk_world()); +}l___regBuiltin_UInt64_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12287____closed__1 = _init_l___regBuiltin_UInt64_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12287____closed__1(); +lean_mark_persistent(l___regBuiltin_UInt64_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12287____closed__1); +l___regBuiltin_UInt64_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12287____closed__2 = _init_l___regBuiltin_UInt64_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12287____closed__2(); +lean_mark_persistent(l___regBuiltin_UInt64_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12287____closed__2); +l___regBuiltin_UInt64_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12287____closed__3 = _init_l___regBuiltin_UInt64_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12287____closed__3(); +lean_mark_persistent(l___regBuiltin_UInt64_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12287____closed__3); +l___regBuiltin_UInt64_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12287____closed__4 = _init_l___regBuiltin_UInt64_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12287____closed__4(); +lean_mark_persistent(l___regBuiltin_UInt64_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12287____closed__4); +l___regBuiltin_UInt64_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12287____closed__5 = _init_l___regBuiltin_UInt64_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12287____closed__5(); +lean_mark_persistent(l___regBuiltin_UInt64_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12287____closed__5); +l___regBuiltin_UInt64_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12287____closed__6 = _init_l___regBuiltin_UInt64_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12287____closed__6(); +lean_mark_persistent(l___regBuiltin_UInt64_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12287____closed__6); +if (builtin) {res = l___regBuiltin_UInt64_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12287_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_UInt64_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14183_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_UInt64_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12289_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_UInt64_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14185_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_UInt64_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12291_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}l___regBuiltin_UInt64_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14222____closed__1 = _init_l___regBuiltin_UInt64_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14222____closed__1(); -lean_mark_persistent(l___regBuiltin_UInt64_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14222____closed__1); -l___regBuiltin_UInt64_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14222____closed__2 = _init_l___regBuiltin_UInt64_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14222____closed__2(); -lean_mark_persistent(l___regBuiltin_UInt64_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14222____closed__2); -if (builtin) {res = l___regBuiltin_UInt64_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14222_(lean_io_mk_world()); +}l___regBuiltin_UInt64_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12328____closed__1 = _init_l___regBuiltin_UInt64_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12328____closed__1(); +lean_mark_persistent(l___regBuiltin_UInt64_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12328____closed__1); +l___regBuiltin_UInt64_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12328____closed__2 = _init_l___regBuiltin_UInt64_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12328____closed__2(); +lean_mark_persistent(l___regBuiltin_UInt64_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12328____closed__2); +if (builtin) {res = l___regBuiltin_UInt64_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12328_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_UInt64_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14224_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_UInt64_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12330_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_UInt64_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14226_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_UInt64_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12332_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}l___regBuiltin_UInt64_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14263____closed__1 = _init_l___regBuiltin_UInt64_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14263____closed__1(); -lean_mark_persistent(l___regBuiltin_UInt64_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14263____closed__1); -l___regBuiltin_UInt64_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14263____closed__2 = _init_l___regBuiltin_UInt64_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14263____closed__2(); -lean_mark_persistent(l___regBuiltin_UInt64_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14263____closed__2); -if (builtin) {res = l___regBuiltin_UInt64_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14263_(lean_io_mk_world()); +}l___regBuiltin_UInt64_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12369____closed__1 = _init_l___regBuiltin_UInt64_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12369____closed__1(); +lean_mark_persistent(l___regBuiltin_UInt64_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12369____closed__1); +l___regBuiltin_UInt64_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12369____closed__2 = _init_l___regBuiltin_UInt64_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12369____closed__2(); +lean_mark_persistent(l___regBuiltin_UInt64_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12369____closed__2); +if (builtin) {res = l___regBuiltin_UInt64_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12369_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_UInt64_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14265_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_UInt64_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12371_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_UInt64_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14267_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_UInt64_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12373_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}l___regBuiltin_UInt64_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14304____closed__1 = _init_l___regBuiltin_UInt64_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14304____closed__1(); -lean_mark_persistent(l___regBuiltin_UInt64_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14304____closed__1); -l___regBuiltin_UInt64_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14304____closed__2 = _init_l___regBuiltin_UInt64_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14304____closed__2(); -lean_mark_persistent(l___regBuiltin_UInt64_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14304____closed__2); -l___regBuiltin_UInt64_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14304____closed__3 = _init_l___regBuiltin_UInt64_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14304____closed__3(); -lean_mark_persistent(l___regBuiltin_UInt64_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14304____closed__3); -l___regBuiltin_UInt64_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14304____closed__4 = _init_l___regBuiltin_UInt64_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14304____closed__4(); -lean_mark_persistent(l___regBuiltin_UInt64_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14304____closed__4); -l___regBuiltin_UInt64_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14304____closed__5 = _init_l___regBuiltin_UInt64_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14304____closed__5(); -lean_mark_persistent(l___regBuiltin_UInt64_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14304____closed__5); -l___regBuiltin_UInt64_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14304____closed__6 = _init_l___regBuiltin_UInt64_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14304____closed__6(); -lean_mark_persistent(l___regBuiltin_UInt64_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14304____closed__6); -l___regBuiltin_UInt64_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14304____closed__7 = _init_l___regBuiltin_UInt64_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14304____closed__7(); -lean_mark_persistent(l___regBuiltin_UInt64_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14304____closed__7); -l___regBuiltin_UInt64_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14304____closed__8 = _init_l___regBuiltin_UInt64_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14304____closed__8(); -lean_mark_persistent(l___regBuiltin_UInt64_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14304____closed__8); -l___regBuiltin_UInt64_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14304____closed__9 = _init_l___regBuiltin_UInt64_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14304____closed__9(); -lean_mark_persistent(l___regBuiltin_UInt64_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14304____closed__9); -l___regBuiltin_UInt64_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14304____closed__10 = _init_l___regBuiltin_UInt64_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14304____closed__10(); -lean_mark_persistent(l___regBuiltin_UInt64_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14304____closed__10); -l___regBuiltin_UInt64_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14304____closed__11 = _init_l___regBuiltin_UInt64_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14304____closed__11(); -lean_mark_persistent(l___regBuiltin_UInt64_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14304____closed__11); -l___regBuiltin_UInt64_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14304____closed__12 = _init_l___regBuiltin_UInt64_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14304____closed__12(); -lean_mark_persistent(l___regBuiltin_UInt64_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14304____closed__12); -l___regBuiltin_UInt64_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14304____closed__13 = _init_l___regBuiltin_UInt64_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14304____closed__13(); -lean_mark_persistent(l___regBuiltin_UInt64_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14304____closed__13); -l___regBuiltin_UInt64_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14304____closed__14 = _init_l___regBuiltin_UInt64_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14304____closed__14(); -lean_mark_persistent(l___regBuiltin_UInt64_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14304____closed__14); -if (builtin) {res = l___regBuiltin_UInt64_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14304_(lean_io_mk_world()); +}l___regBuiltin_UInt64_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12410____closed__1 = _init_l___regBuiltin_UInt64_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12410____closed__1(); +lean_mark_persistent(l___regBuiltin_UInt64_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12410____closed__1); +l___regBuiltin_UInt64_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12410____closed__2 = _init_l___regBuiltin_UInt64_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12410____closed__2(); +lean_mark_persistent(l___regBuiltin_UInt64_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12410____closed__2); +l___regBuiltin_UInt64_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12410____closed__3 = _init_l___regBuiltin_UInt64_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12410____closed__3(); +lean_mark_persistent(l___regBuiltin_UInt64_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12410____closed__3); +l___regBuiltin_UInt64_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12410____closed__4 = _init_l___regBuiltin_UInt64_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12410____closed__4(); +lean_mark_persistent(l___regBuiltin_UInt64_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12410____closed__4); +l___regBuiltin_UInt64_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12410____closed__5 = _init_l___regBuiltin_UInt64_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12410____closed__5(); +lean_mark_persistent(l___regBuiltin_UInt64_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12410____closed__5); +l___regBuiltin_UInt64_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12410____closed__6 = _init_l___regBuiltin_UInt64_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12410____closed__6(); +lean_mark_persistent(l___regBuiltin_UInt64_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12410____closed__6); +l___regBuiltin_UInt64_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12410____closed__7 = _init_l___regBuiltin_UInt64_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12410____closed__7(); +lean_mark_persistent(l___regBuiltin_UInt64_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12410____closed__7); +l___regBuiltin_UInt64_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12410____closed__8 = _init_l___regBuiltin_UInt64_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12410____closed__8(); +lean_mark_persistent(l___regBuiltin_UInt64_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12410____closed__8); +l___regBuiltin_UInt64_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12410____closed__9 = _init_l___regBuiltin_UInt64_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12410____closed__9(); +lean_mark_persistent(l___regBuiltin_UInt64_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12410____closed__9); +l___regBuiltin_UInt64_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12410____closed__10 = _init_l___regBuiltin_UInt64_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12410____closed__10(); +lean_mark_persistent(l___regBuiltin_UInt64_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12410____closed__10); +l___regBuiltin_UInt64_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12410____closed__11 = _init_l___regBuiltin_UInt64_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12410____closed__11(); +lean_mark_persistent(l___regBuiltin_UInt64_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12410____closed__11); +l___regBuiltin_UInt64_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12410____closed__12 = _init_l___regBuiltin_UInt64_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12410____closed__12(); +lean_mark_persistent(l___regBuiltin_UInt64_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12410____closed__12); +l___regBuiltin_UInt64_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12410____closed__13 = _init_l___regBuiltin_UInt64_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12410____closed__13(); +lean_mark_persistent(l___regBuiltin_UInt64_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12410____closed__13); +l___regBuiltin_UInt64_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12410____closed__14 = _init_l___regBuiltin_UInt64_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12410____closed__14(); +lean_mark_persistent(l___regBuiltin_UInt64_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12410____closed__14); +if (builtin) {res = l___regBuiltin_UInt64_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12410_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_UInt64_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14306_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_UInt64_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12412_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_UInt64_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14308_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_UInt64_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12414_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}l___regBuiltin_UInt64_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14344____closed__1 = _init_l___regBuiltin_UInt64_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14344____closed__1(); -lean_mark_persistent(l___regBuiltin_UInt64_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14344____closed__1); -l___regBuiltin_UInt64_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14344____closed__2 = _init_l___regBuiltin_UInt64_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14344____closed__2(); -lean_mark_persistent(l___regBuiltin_UInt64_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14344____closed__2); -l___regBuiltin_UInt64_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14344____closed__3 = _init_l___regBuiltin_UInt64_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14344____closed__3(); -lean_mark_persistent(l___regBuiltin_UInt64_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14344____closed__3); -l___regBuiltin_UInt64_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14344____closed__4 = _init_l___regBuiltin_UInt64_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14344____closed__4(); -lean_mark_persistent(l___regBuiltin_UInt64_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14344____closed__4); -l___regBuiltin_UInt64_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14344____closed__5 = _init_l___regBuiltin_UInt64_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14344____closed__5(); -lean_mark_persistent(l___regBuiltin_UInt64_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14344____closed__5); -l___regBuiltin_UInt64_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14344____closed__6 = _init_l___regBuiltin_UInt64_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14344____closed__6(); -lean_mark_persistent(l___regBuiltin_UInt64_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14344____closed__6); -l___regBuiltin_UInt64_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14344____closed__7 = _init_l___regBuiltin_UInt64_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14344____closed__7(); -lean_mark_persistent(l___regBuiltin_UInt64_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14344____closed__7); -l___regBuiltin_UInt64_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14344____closed__8 = _init_l___regBuiltin_UInt64_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14344____closed__8(); -lean_mark_persistent(l___regBuiltin_UInt64_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14344____closed__8); -l___regBuiltin_UInt64_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14344____closed__9 = _init_l___regBuiltin_UInt64_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14344____closed__9(); -lean_mark_persistent(l___regBuiltin_UInt64_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14344____closed__9); -l___regBuiltin_UInt64_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14344____closed__10 = _init_l___regBuiltin_UInt64_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14344____closed__10(); -lean_mark_persistent(l___regBuiltin_UInt64_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14344____closed__10); -l___regBuiltin_UInt64_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14344____closed__11 = _init_l___regBuiltin_UInt64_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14344____closed__11(); -lean_mark_persistent(l___regBuiltin_UInt64_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14344____closed__11); -l___regBuiltin_UInt64_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14344____closed__12 = _init_l___regBuiltin_UInt64_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14344____closed__12(); -lean_mark_persistent(l___regBuiltin_UInt64_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14344____closed__12); -l___regBuiltin_UInt64_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14344____closed__13 = _init_l___regBuiltin_UInt64_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14344____closed__13(); -lean_mark_persistent(l___regBuiltin_UInt64_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14344____closed__13); -l___regBuiltin_UInt64_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14344____closed__14 = _init_l___regBuiltin_UInt64_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14344____closed__14(); -lean_mark_persistent(l___regBuiltin_UInt64_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14344____closed__14); -if (builtin) {res = l___regBuiltin_UInt64_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14344_(lean_io_mk_world()); +}l___regBuiltin_UInt64_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12450____closed__1 = _init_l___regBuiltin_UInt64_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12450____closed__1(); +lean_mark_persistent(l___regBuiltin_UInt64_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12450____closed__1); +l___regBuiltin_UInt64_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12450____closed__2 = _init_l___regBuiltin_UInt64_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12450____closed__2(); +lean_mark_persistent(l___regBuiltin_UInt64_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12450____closed__2); +l___regBuiltin_UInt64_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12450____closed__3 = _init_l___regBuiltin_UInt64_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12450____closed__3(); +lean_mark_persistent(l___regBuiltin_UInt64_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12450____closed__3); +l___regBuiltin_UInt64_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12450____closed__4 = _init_l___regBuiltin_UInt64_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12450____closed__4(); +lean_mark_persistent(l___regBuiltin_UInt64_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12450____closed__4); +l___regBuiltin_UInt64_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12450____closed__5 = _init_l___regBuiltin_UInt64_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12450____closed__5(); +lean_mark_persistent(l___regBuiltin_UInt64_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12450____closed__5); +l___regBuiltin_UInt64_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12450____closed__6 = _init_l___regBuiltin_UInt64_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12450____closed__6(); +lean_mark_persistent(l___regBuiltin_UInt64_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12450____closed__6); +l___regBuiltin_UInt64_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12450____closed__7 = _init_l___regBuiltin_UInt64_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12450____closed__7(); +lean_mark_persistent(l___regBuiltin_UInt64_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12450____closed__7); +l___regBuiltin_UInt64_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12450____closed__8 = _init_l___regBuiltin_UInt64_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12450____closed__8(); +lean_mark_persistent(l___regBuiltin_UInt64_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12450____closed__8); +l___regBuiltin_UInt64_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12450____closed__9 = _init_l___regBuiltin_UInt64_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12450____closed__9(); +lean_mark_persistent(l___regBuiltin_UInt64_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12450____closed__9); +l___regBuiltin_UInt64_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12450____closed__10 = _init_l___regBuiltin_UInt64_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12450____closed__10(); +lean_mark_persistent(l___regBuiltin_UInt64_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12450____closed__10); +l___regBuiltin_UInt64_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12450____closed__11 = _init_l___regBuiltin_UInt64_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12450____closed__11(); +lean_mark_persistent(l___regBuiltin_UInt64_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12450____closed__11); +l___regBuiltin_UInt64_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12450____closed__12 = _init_l___regBuiltin_UInt64_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12450____closed__12(); +lean_mark_persistent(l___regBuiltin_UInt64_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12450____closed__12); +l___regBuiltin_UInt64_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12450____closed__13 = _init_l___regBuiltin_UInt64_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12450____closed__13(); +lean_mark_persistent(l___regBuiltin_UInt64_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12450____closed__13); +l___regBuiltin_UInt64_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12450____closed__14 = _init_l___regBuiltin_UInt64_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12450____closed__14(); +lean_mark_persistent(l___regBuiltin_UInt64_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12450____closed__14); +if (builtin) {res = l___regBuiltin_UInt64_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12450_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_UInt64_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14346_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_UInt64_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12452_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_UInt64_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14348_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_UInt64_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12454_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}l___regBuiltin_UInt64_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14385____closed__1 = _init_l___regBuiltin_UInt64_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14385____closed__1(); -lean_mark_persistent(l___regBuiltin_UInt64_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14385____closed__1); -l___regBuiltin_UInt64_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14385____closed__2 = _init_l___regBuiltin_UInt64_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14385____closed__2(); -lean_mark_persistent(l___regBuiltin_UInt64_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14385____closed__2); -l___regBuiltin_UInt64_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14385____closed__3 = _init_l___regBuiltin_UInt64_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14385____closed__3(); -lean_mark_persistent(l___regBuiltin_UInt64_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14385____closed__3); -l___regBuiltin_UInt64_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14385____closed__4 = _init_l___regBuiltin_UInt64_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14385____closed__4(); -lean_mark_persistent(l___regBuiltin_UInt64_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14385____closed__4); -l___regBuiltin_UInt64_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14385____closed__5 = _init_l___regBuiltin_UInt64_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14385____closed__5(); -lean_mark_persistent(l___regBuiltin_UInt64_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14385____closed__5); -l___regBuiltin_UInt64_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14385____closed__6 = _init_l___regBuiltin_UInt64_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14385____closed__6(); -lean_mark_persistent(l___regBuiltin_UInt64_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14385____closed__6); -l___regBuiltin_UInt64_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14385____closed__7 = _init_l___regBuiltin_UInt64_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14385____closed__7(); -lean_mark_persistent(l___regBuiltin_UInt64_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14385____closed__7); -l___regBuiltin_UInt64_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14385____closed__8 = _init_l___regBuiltin_UInt64_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14385____closed__8(); -lean_mark_persistent(l___regBuiltin_UInt64_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14385____closed__8); -l___regBuiltin_UInt64_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14385____closed__9 = _init_l___regBuiltin_UInt64_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14385____closed__9(); -lean_mark_persistent(l___regBuiltin_UInt64_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14385____closed__9); -l___regBuiltin_UInt64_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14385____closed__10 = _init_l___regBuiltin_UInt64_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14385____closed__10(); -lean_mark_persistent(l___regBuiltin_UInt64_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14385____closed__10); -l___regBuiltin_UInt64_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14385____closed__11 = _init_l___regBuiltin_UInt64_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14385____closed__11(); -lean_mark_persistent(l___regBuiltin_UInt64_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14385____closed__11); -l___regBuiltin_UInt64_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14385____closed__12 = _init_l___regBuiltin_UInt64_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14385____closed__12(); -lean_mark_persistent(l___regBuiltin_UInt64_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14385____closed__12); -l___regBuiltin_UInt64_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14385____closed__13 = _init_l___regBuiltin_UInt64_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14385____closed__13(); -lean_mark_persistent(l___regBuiltin_UInt64_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14385____closed__13); -l___regBuiltin_UInt64_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14385____closed__14 = _init_l___regBuiltin_UInt64_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14385____closed__14(); -lean_mark_persistent(l___regBuiltin_UInt64_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14385____closed__14); -l___regBuiltin_UInt64_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14385____closed__15 = _init_l___regBuiltin_UInt64_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14385____closed__15(); -lean_mark_persistent(l___regBuiltin_UInt64_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14385____closed__15); -if (builtin) {res = l___regBuiltin_UInt64_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14385_(lean_io_mk_world()); +}l___regBuiltin_UInt64_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12491____closed__1 = _init_l___regBuiltin_UInt64_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12491____closed__1(); +lean_mark_persistent(l___regBuiltin_UInt64_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12491____closed__1); +l___regBuiltin_UInt64_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12491____closed__2 = _init_l___regBuiltin_UInt64_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12491____closed__2(); +lean_mark_persistent(l___regBuiltin_UInt64_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12491____closed__2); +l___regBuiltin_UInt64_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12491____closed__3 = _init_l___regBuiltin_UInt64_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12491____closed__3(); +lean_mark_persistent(l___regBuiltin_UInt64_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12491____closed__3); +l___regBuiltin_UInt64_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12491____closed__4 = _init_l___regBuiltin_UInt64_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12491____closed__4(); +lean_mark_persistent(l___regBuiltin_UInt64_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12491____closed__4); +l___regBuiltin_UInt64_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12491____closed__5 = _init_l___regBuiltin_UInt64_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12491____closed__5(); +lean_mark_persistent(l___regBuiltin_UInt64_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12491____closed__5); +l___regBuiltin_UInt64_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12491____closed__6 = _init_l___regBuiltin_UInt64_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12491____closed__6(); +lean_mark_persistent(l___regBuiltin_UInt64_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12491____closed__6); +l___regBuiltin_UInt64_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12491____closed__7 = _init_l___regBuiltin_UInt64_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12491____closed__7(); +lean_mark_persistent(l___regBuiltin_UInt64_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12491____closed__7); +l___regBuiltin_UInt64_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12491____closed__8 = _init_l___regBuiltin_UInt64_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12491____closed__8(); +lean_mark_persistent(l___regBuiltin_UInt64_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12491____closed__8); +l___regBuiltin_UInt64_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12491____closed__9 = _init_l___regBuiltin_UInt64_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12491____closed__9(); +lean_mark_persistent(l___regBuiltin_UInt64_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12491____closed__9); +l___regBuiltin_UInt64_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12491____closed__10 = _init_l___regBuiltin_UInt64_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12491____closed__10(); +lean_mark_persistent(l___regBuiltin_UInt64_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12491____closed__10); +l___regBuiltin_UInt64_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12491____closed__11 = _init_l___regBuiltin_UInt64_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12491____closed__11(); +lean_mark_persistent(l___regBuiltin_UInt64_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12491____closed__11); +l___regBuiltin_UInt64_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12491____closed__12 = _init_l___regBuiltin_UInt64_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12491____closed__12(); +lean_mark_persistent(l___regBuiltin_UInt64_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12491____closed__12); +l___regBuiltin_UInt64_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12491____closed__13 = _init_l___regBuiltin_UInt64_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12491____closed__13(); +lean_mark_persistent(l___regBuiltin_UInt64_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12491____closed__13); +l___regBuiltin_UInt64_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12491____closed__14 = _init_l___regBuiltin_UInt64_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12491____closed__14(); +lean_mark_persistent(l___regBuiltin_UInt64_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12491____closed__14); +l___regBuiltin_UInt64_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12491____closed__15 = _init_l___regBuiltin_UInt64_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12491____closed__15(); +lean_mark_persistent(l___regBuiltin_UInt64_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12491____closed__15); +if (builtin) {res = l___regBuiltin_UInt64_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12491_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_UInt64_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14387_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_UInt64_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12493_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_UInt64_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14389_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_UInt64_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12495_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}l___regBuiltin_UInt64_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14425____closed__1 = _init_l___regBuiltin_UInt64_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14425____closed__1(); -lean_mark_persistent(l___regBuiltin_UInt64_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14425____closed__1); -l___regBuiltin_UInt64_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14425____closed__2 = _init_l___regBuiltin_UInt64_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14425____closed__2(); -lean_mark_persistent(l___regBuiltin_UInt64_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14425____closed__2); -l___regBuiltin_UInt64_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14425____closed__3 = _init_l___regBuiltin_UInt64_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14425____closed__3(); -lean_mark_persistent(l___regBuiltin_UInt64_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14425____closed__3); -l___regBuiltin_UInt64_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14425____closed__4 = _init_l___regBuiltin_UInt64_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14425____closed__4(); -lean_mark_persistent(l___regBuiltin_UInt64_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14425____closed__4); -l___regBuiltin_UInt64_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14425____closed__5 = _init_l___regBuiltin_UInt64_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14425____closed__5(); -lean_mark_persistent(l___regBuiltin_UInt64_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14425____closed__5); -l___regBuiltin_UInt64_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14425____closed__6 = _init_l___regBuiltin_UInt64_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14425____closed__6(); -lean_mark_persistent(l___regBuiltin_UInt64_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14425____closed__6); -l___regBuiltin_UInt64_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14425____closed__7 = _init_l___regBuiltin_UInt64_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14425____closed__7(); -lean_mark_persistent(l___regBuiltin_UInt64_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14425____closed__7); -l___regBuiltin_UInt64_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14425____closed__8 = _init_l___regBuiltin_UInt64_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14425____closed__8(); -lean_mark_persistent(l___regBuiltin_UInt64_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14425____closed__8); -l___regBuiltin_UInt64_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14425____closed__9 = _init_l___regBuiltin_UInt64_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14425____closed__9(); -lean_mark_persistent(l___regBuiltin_UInt64_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14425____closed__9); -l___regBuiltin_UInt64_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14425____closed__10 = _init_l___regBuiltin_UInt64_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14425____closed__10(); -lean_mark_persistent(l___regBuiltin_UInt64_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14425____closed__10); -l___regBuiltin_UInt64_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14425____closed__11 = _init_l___regBuiltin_UInt64_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14425____closed__11(); -lean_mark_persistent(l___regBuiltin_UInt64_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14425____closed__11); -l___regBuiltin_UInt64_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14425____closed__12 = _init_l___regBuiltin_UInt64_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14425____closed__12(); -lean_mark_persistent(l___regBuiltin_UInt64_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14425____closed__12); -l___regBuiltin_UInt64_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14425____closed__13 = _init_l___regBuiltin_UInt64_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14425____closed__13(); -lean_mark_persistent(l___regBuiltin_UInt64_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14425____closed__13); -l___regBuiltin_UInt64_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14425____closed__14 = _init_l___regBuiltin_UInt64_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14425____closed__14(); -lean_mark_persistent(l___regBuiltin_UInt64_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14425____closed__14); -l___regBuiltin_UInt64_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14425____closed__15 = _init_l___regBuiltin_UInt64_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14425____closed__15(); -lean_mark_persistent(l___regBuiltin_UInt64_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14425____closed__15); -if (builtin) {res = l___regBuiltin_UInt64_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14425_(lean_io_mk_world()); +}l___regBuiltin_UInt64_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12531____closed__1 = _init_l___regBuiltin_UInt64_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12531____closed__1(); +lean_mark_persistent(l___regBuiltin_UInt64_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12531____closed__1); +l___regBuiltin_UInt64_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12531____closed__2 = _init_l___regBuiltin_UInt64_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12531____closed__2(); +lean_mark_persistent(l___regBuiltin_UInt64_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12531____closed__2); +l___regBuiltin_UInt64_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12531____closed__3 = _init_l___regBuiltin_UInt64_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12531____closed__3(); +lean_mark_persistent(l___regBuiltin_UInt64_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12531____closed__3); +l___regBuiltin_UInt64_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12531____closed__4 = _init_l___regBuiltin_UInt64_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12531____closed__4(); +lean_mark_persistent(l___regBuiltin_UInt64_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12531____closed__4); +l___regBuiltin_UInt64_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12531____closed__5 = _init_l___regBuiltin_UInt64_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12531____closed__5(); +lean_mark_persistent(l___regBuiltin_UInt64_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12531____closed__5); +l___regBuiltin_UInt64_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12531____closed__6 = _init_l___regBuiltin_UInt64_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12531____closed__6(); +lean_mark_persistent(l___regBuiltin_UInt64_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12531____closed__6); +l___regBuiltin_UInt64_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12531____closed__7 = _init_l___regBuiltin_UInt64_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12531____closed__7(); +lean_mark_persistent(l___regBuiltin_UInt64_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12531____closed__7); +l___regBuiltin_UInt64_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12531____closed__8 = _init_l___regBuiltin_UInt64_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12531____closed__8(); +lean_mark_persistent(l___regBuiltin_UInt64_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12531____closed__8); +l___regBuiltin_UInt64_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12531____closed__9 = _init_l___regBuiltin_UInt64_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12531____closed__9(); +lean_mark_persistent(l___regBuiltin_UInt64_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12531____closed__9); +l___regBuiltin_UInt64_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12531____closed__10 = _init_l___regBuiltin_UInt64_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12531____closed__10(); +lean_mark_persistent(l___regBuiltin_UInt64_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12531____closed__10); +l___regBuiltin_UInt64_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12531____closed__11 = _init_l___regBuiltin_UInt64_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12531____closed__11(); +lean_mark_persistent(l___regBuiltin_UInt64_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12531____closed__11); +l___regBuiltin_UInt64_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12531____closed__12 = _init_l___regBuiltin_UInt64_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12531____closed__12(); +lean_mark_persistent(l___regBuiltin_UInt64_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12531____closed__12); +l___regBuiltin_UInt64_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12531____closed__13 = _init_l___regBuiltin_UInt64_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12531____closed__13(); +lean_mark_persistent(l___regBuiltin_UInt64_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12531____closed__13); +l___regBuiltin_UInt64_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12531____closed__14 = _init_l___regBuiltin_UInt64_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12531____closed__14(); +lean_mark_persistent(l___regBuiltin_UInt64_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12531____closed__14); +l___regBuiltin_UInt64_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12531____closed__15 = _init_l___regBuiltin_UInt64_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12531____closed__15(); +lean_mark_persistent(l___regBuiltin_UInt64_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12531____closed__15); +if (builtin) {res = l___regBuiltin_UInt64_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12531_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_UInt64_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14427_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_UInt64_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12533_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_UInt64_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14429_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_UInt64_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12535_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); }l_UInt64_reduceOfNatCore___closed__1 = _init_l_UInt64_reduceOfNatCore___closed__1(); lean_mark_persistent(l_UInt64_reduceOfNatCore___closed__1); -l___regBuiltin_UInt64_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14545____closed__1 = _init_l___regBuiltin_UInt64_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14545____closed__1(); -lean_mark_persistent(l___regBuiltin_UInt64_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14545____closed__1); -l___regBuiltin_UInt64_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14545____closed__2 = _init_l___regBuiltin_UInt64_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14545____closed__2(); -lean_mark_persistent(l___regBuiltin_UInt64_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14545____closed__2); -l___regBuiltin_UInt64_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14545____closed__3 = _init_l___regBuiltin_UInt64_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14545____closed__3(); -lean_mark_persistent(l___regBuiltin_UInt64_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14545____closed__3); -l___regBuiltin_UInt64_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14545____closed__4 = _init_l___regBuiltin_UInt64_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14545____closed__4(); -lean_mark_persistent(l___regBuiltin_UInt64_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14545____closed__4); -l___regBuiltin_UInt64_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14545____closed__5 = _init_l___regBuiltin_UInt64_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14545____closed__5(); -lean_mark_persistent(l___regBuiltin_UInt64_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14545____closed__5); -l___regBuiltin_UInt64_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14545____closed__6 = _init_l___regBuiltin_UInt64_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14545____closed__6(); -lean_mark_persistent(l___regBuiltin_UInt64_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14545____closed__6); -if (builtin) {res = l___regBuiltin_UInt64_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14545_(lean_io_mk_world()); +l___regBuiltin_UInt64_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12646____closed__1 = _init_l___regBuiltin_UInt64_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12646____closed__1(); +lean_mark_persistent(l___regBuiltin_UInt64_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12646____closed__1); +l___regBuiltin_UInt64_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12646____closed__2 = _init_l___regBuiltin_UInt64_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12646____closed__2(); +lean_mark_persistent(l___regBuiltin_UInt64_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12646____closed__2); +l___regBuiltin_UInt64_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12646____closed__3 = _init_l___regBuiltin_UInt64_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12646____closed__3(); +lean_mark_persistent(l___regBuiltin_UInt64_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12646____closed__3); +l___regBuiltin_UInt64_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12646____closed__4 = _init_l___regBuiltin_UInt64_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12646____closed__4(); +lean_mark_persistent(l___regBuiltin_UInt64_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12646____closed__4); +l___regBuiltin_UInt64_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12646____closed__5 = _init_l___regBuiltin_UInt64_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12646____closed__5(); +lean_mark_persistent(l___regBuiltin_UInt64_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12646____closed__5); +l___regBuiltin_UInt64_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12646____closed__6 = _init_l___regBuiltin_UInt64_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12646____closed__6(); +lean_mark_persistent(l___regBuiltin_UInt64_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12646____closed__6); +if (builtin) {res = l___regBuiltin_UInt64_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12646_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_UInt64_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14547_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_UInt64_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12648_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_UInt64_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14549_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_UInt64_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12650_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); }l_UInt64_reduceToNat___closed__1 = _init_l_UInt64_reduceToNat___closed__1(); lean_mark_persistent(l_UInt64_reduceToNat___closed__1); -l___regBuiltin_UInt64_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14661____closed__1 = _init_l___regBuiltin_UInt64_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14661____closed__1(); -lean_mark_persistent(l___regBuiltin_UInt64_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14661____closed__1); -l___regBuiltin_UInt64_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14661____closed__2 = _init_l___regBuiltin_UInt64_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14661____closed__2(); -lean_mark_persistent(l___regBuiltin_UInt64_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14661____closed__2); -l___regBuiltin_UInt64_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14661____closed__3 = _init_l___regBuiltin_UInt64_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14661____closed__3(); -lean_mark_persistent(l___regBuiltin_UInt64_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14661____closed__3); -l___regBuiltin_UInt64_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14661____closed__4 = _init_l___regBuiltin_UInt64_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14661____closed__4(); -lean_mark_persistent(l___regBuiltin_UInt64_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14661____closed__4); -l___regBuiltin_UInt64_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14661____closed__5 = _init_l___regBuiltin_UInt64_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14661____closed__5(); -lean_mark_persistent(l___regBuiltin_UInt64_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14661____closed__5); -if (builtin) {res = l___regBuiltin_UInt64_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14661_(lean_io_mk_world()); +l___regBuiltin_UInt64_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12762____closed__1 = _init_l___regBuiltin_UInt64_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12762____closed__1(); +lean_mark_persistent(l___regBuiltin_UInt64_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12762____closed__1); +l___regBuiltin_UInt64_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12762____closed__2 = _init_l___regBuiltin_UInt64_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12762____closed__2(); +lean_mark_persistent(l___regBuiltin_UInt64_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12762____closed__2); +l___regBuiltin_UInt64_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12762____closed__3 = _init_l___regBuiltin_UInt64_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12762____closed__3(); +lean_mark_persistent(l___regBuiltin_UInt64_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12762____closed__3); +l___regBuiltin_UInt64_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12762____closed__4 = _init_l___regBuiltin_UInt64_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12762____closed__4(); +lean_mark_persistent(l___regBuiltin_UInt64_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12762____closed__4); +l___regBuiltin_UInt64_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12762____closed__5 = _init_l___regBuiltin_UInt64_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12762____closed__5(); +lean_mark_persistent(l___regBuiltin_UInt64_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12762____closed__5); +if (builtin) {res = l___regBuiltin_UInt64_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12762_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_UInt64_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14663_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_UInt64_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12764_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_UInt64_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14665_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_UInt64_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12766_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}l___regBuiltin_UInt64_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14737____closed__1 = _init_l___regBuiltin_UInt64_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14737____closed__1(); -lean_mark_persistent(l___regBuiltin_UInt64_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14737____closed__1); -l___regBuiltin_UInt64_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14737____closed__2 = _init_l___regBuiltin_UInt64_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14737____closed__2(); -lean_mark_persistent(l___regBuiltin_UInt64_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14737____closed__2); -l___regBuiltin_UInt64_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14737____closed__3 = _init_l___regBuiltin_UInt64_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14737____closed__3(); -lean_mark_persistent(l___regBuiltin_UInt64_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14737____closed__3); -l___regBuiltin_UInt64_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14737____closed__4 = _init_l___regBuiltin_UInt64_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14737____closed__4(); -lean_mark_persistent(l___regBuiltin_UInt64_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14737____closed__4); -l___regBuiltin_UInt64_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14737____closed__5 = _init_l___regBuiltin_UInt64_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14737____closed__5(); -lean_mark_persistent(l___regBuiltin_UInt64_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14737____closed__5); -l___regBuiltin_UInt64_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14737____closed__6 = _init_l___regBuiltin_UInt64_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14737____closed__6(); -lean_mark_persistent(l___regBuiltin_UInt64_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14737____closed__6); -l___regBuiltin_UInt64_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14737____closed__7 = _init_l___regBuiltin_UInt64_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14737____closed__7(); -lean_mark_persistent(l___regBuiltin_UInt64_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14737____closed__7); -l___regBuiltin_UInt64_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14737____closed__8 = _init_l___regBuiltin_UInt64_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14737____closed__8(); -lean_mark_persistent(l___regBuiltin_UInt64_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14737____closed__8); -l___regBuiltin_UInt64_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14737____closed__9 = _init_l___regBuiltin_UInt64_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14737____closed__9(); -lean_mark_persistent(l___regBuiltin_UInt64_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14737____closed__9); -l___regBuiltin_UInt64_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14737____closed__10 = _init_l___regBuiltin_UInt64_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14737____closed__10(); -lean_mark_persistent(l___regBuiltin_UInt64_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14737____closed__10); -l___regBuiltin_UInt64_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14737____closed__11 = _init_l___regBuiltin_UInt64_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14737____closed__11(); -lean_mark_persistent(l___regBuiltin_UInt64_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14737____closed__11); -l___regBuiltin_UInt64_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14737____closed__12 = _init_l___regBuiltin_UInt64_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14737____closed__12(); -lean_mark_persistent(l___regBuiltin_UInt64_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14737____closed__12); -l___regBuiltin_UInt64_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14737____closed__13 = _init_l___regBuiltin_UInt64_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14737____closed__13(); -lean_mark_persistent(l___regBuiltin_UInt64_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14737____closed__13); -l___regBuiltin_UInt64_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14737____closed__14 = _init_l___regBuiltin_UInt64_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14737____closed__14(); -lean_mark_persistent(l___regBuiltin_UInt64_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14737____closed__14); -if (builtin) {res = l___regBuiltin_UInt64_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14737_(lean_io_mk_world()); +}l___regBuiltin_UInt64_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12838____closed__1 = _init_l___regBuiltin_UInt64_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12838____closed__1(); +lean_mark_persistent(l___regBuiltin_UInt64_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12838____closed__1); +l___regBuiltin_UInt64_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12838____closed__2 = _init_l___regBuiltin_UInt64_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12838____closed__2(); +lean_mark_persistent(l___regBuiltin_UInt64_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12838____closed__2); +l___regBuiltin_UInt64_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12838____closed__3 = _init_l___regBuiltin_UInt64_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12838____closed__3(); +lean_mark_persistent(l___regBuiltin_UInt64_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12838____closed__3); +l___regBuiltin_UInt64_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12838____closed__4 = _init_l___regBuiltin_UInt64_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12838____closed__4(); +lean_mark_persistent(l___regBuiltin_UInt64_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12838____closed__4); +l___regBuiltin_UInt64_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12838____closed__5 = _init_l___regBuiltin_UInt64_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12838____closed__5(); +lean_mark_persistent(l___regBuiltin_UInt64_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12838____closed__5); +l___regBuiltin_UInt64_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12838____closed__6 = _init_l___regBuiltin_UInt64_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12838____closed__6(); +lean_mark_persistent(l___regBuiltin_UInt64_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12838____closed__6); +l___regBuiltin_UInt64_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12838____closed__7 = _init_l___regBuiltin_UInt64_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12838____closed__7(); +lean_mark_persistent(l___regBuiltin_UInt64_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12838____closed__7); +l___regBuiltin_UInt64_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12838____closed__8 = _init_l___regBuiltin_UInt64_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12838____closed__8(); +lean_mark_persistent(l___regBuiltin_UInt64_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12838____closed__8); +l___regBuiltin_UInt64_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12838____closed__9 = _init_l___regBuiltin_UInt64_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12838____closed__9(); +lean_mark_persistent(l___regBuiltin_UInt64_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12838____closed__9); +l___regBuiltin_UInt64_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12838____closed__10 = _init_l___regBuiltin_UInt64_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12838____closed__10(); +lean_mark_persistent(l___regBuiltin_UInt64_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12838____closed__10); +l___regBuiltin_UInt64_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12838____closed__11 = _init_l___regBuiltin_UInt64_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12838____closed__11(); +lean_mark_persistent(l___regBuiltin_UInt64_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12838____closed__11); +l___regBuiltin_UInt64_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12838____closed__12 = _init_l___regBuiltin_UInt64_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12838____closed__12(); +lean_mark_persistent(l___regBuiltin_UInt64_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12838____closed__12); +l___regBuiltin_UInt64_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12838____closed__13 = _init_l___regBuiltin_UInt64_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12838____closed__13(); +lean_mark_persistent(l___regBuiltin_UInt64_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12838____closed__13); +l___regBuiltin_UInt64_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12838____closed__14 = _init_l___regBuiltin_UInt64_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12838____closed__14(); +lean_mark_persistent(l___regBuiltin_UInt64_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12838____closed__14); +if (builtin) {res = l___regBuiltin_UInt64_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12838_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_UInt64_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13301__14739_(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_toExprCore___closed__1 = _init_l_USize_toExprCore___closed__1(); -lean_mark_persistent(l_USize_toExprCore___closed__1); -l_USize_toExprCore___closed__2 = _init_l_USize_toExprCore___closed__2(); -lean_mark_persistent(l_USize_toExprCore___closed__2); -l_USize_toExprCore___closed__3 = _init_l_USize_toExprCore___closed__3(); -lean_mark_persistent(l_USize_toExprCore___closed__3); -l_USize_toExpr___closed__1 = _init_l_USize_toExpr___closed__1(); -lean_mark_persistent(l_USize_toExpr___closed__1); -l___regBuiltin_USize_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15380____closed__1 = _init_l___regBuiltin_USize_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15380____closed__1(); -lean_mark_persistent(l___regBuiltin_USize_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15380____closed__1); -l___regBuiltin_USize_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15380____closed__2 = _init_l___regBuiltin_USize_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15380____closed__2(); -lean_mark_persistent(l___regBuiltin_USize_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15380____closed__2); -l___regBuiltin_USize_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15380____closed__3 = _init_l___regBuiltin_USize_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15380____closed__3(); -lean_mark_persistent(l___regBuiltin_USize_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15380____closed__3); -l___regBuiltin_USize_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15380____closed__4 = _init_l___regBuiltin_USize_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15380____closed__4(); -lean_mark_persistent(l___regBuiltin_USize_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15380____closed__4); -l___regBuiltin_USize_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15380____closed__5 = _init_l___regBuiltin_USize_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15380____closed__5(); -lean_mark_persistent(l___regBuiltin_USize_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15380____closed__5); -l___regBuiltin_USize_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15380____closed__6 = _init_l___regBuiltin_USize_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15380____closed__6(); -lean_mark_persistent(l___regBuiltin_USize_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15380____closed__6); -l___regBuiltin_USize_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15380____closed__7 = _init_l___regBuiltin_USize_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15380____closed__7(); -lean_mark_persistent(l___regBuiltin_USize_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15380____closed__7); -l___regBuiltin_USize_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15380____closed__8 = _init_l___regBuiltin_USize_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15380____closed__8(); -lean_mark_persistent(l___regBuiltin_USize_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15380____closed__8); -l___regBuiltin_USize_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15380____closed__9 = _init_l___regBuiltin_USize_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15380____closed__9(); -lean_mark_persistent(l___regBuiltin_USize_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15380____closed__9); -if (builtin) {res = l___regBuiltin_USize_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15380_(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_USize_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15382_(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_USize_reduceAdd_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15384_(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -}l___regBuiltin_USize_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15420____closed__1 = _init_l___regBuiltin_USize_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15420____closed__1(); -lean_mark_persistent(l___regBuiltin_USize_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15420____closed__1); -l___regBuiltin_USize_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15420____closed__2 = _init_l___regBuiltin_USize_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15420____closed__2(); -lean_mark_persistent(l___regBuiltin_USize_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15420____closed__2); -l___regBuiltin_USize_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15420____closed__3 = _init_l___regBuiltin_USize_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15420____closed__3(); -lean_mark_persistent(l___regBuiltin_USize_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15420____closed__3); -l___regBuiltin_USize_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15420____closed__4 = _init_l___regBuiltin_USize_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15420____closed__4(); -lean_mark_persistent(l___regBuiltin_USize_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15420____closed__4); -l___regBuiltin_USize_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15420____closed__5 = _init_l___regBuiltin_USize_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15420____closed__5(); -lean_mark_persistent(l___regBuiltin_USize_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15420____closed__5); -l___regBuiltin_USize_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15420____closed__6 = _init_l___regBuiltin_USize_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15420____closed__6(); -lean_mark_persistent(l___regBuiltin_USize_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15420____closed__6); -l___regBuiltin_USize_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15420____closed__7 = _init_l___regBuiltin_USize_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15420____closed__7(); -lean_mark_persistent(l___regBuiltin_USize_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15420____closed__7); -l___regBuiltin_USize_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15420____closed__8 = _init_l___regBuiltin_USize_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15420____closed__8(); -lean_mark_persistent(l___regBuiltin_USize_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15420____closed__8); -if (builtin) {res = l___regBuiltin_USize_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15420_(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_USize_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15422_(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_USize_reduceMul_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15424_(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -}l___regBuiltin_USize_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15460____closed__1 = _init_l___regBuiltin_USize_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15460____closed__1(); -lean_mark_persistent(l___regBuiltin_USize_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15460____closed__1); -l___regBuiltin_USize_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15460____closed__2 = _init_l___regBuiltin_USize_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15460____closed__2(); -lean_mark_persistent(l___regBuiltin_USize_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15460____closed__2); -l___regBuiltin_USize_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15460____closed__3 = _init_l___regBuiltin_USize_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15460____closed__3(); -lean_mark_persistent(l___regBuiltin_USize_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15460____closed__3); -l___regBuiltin_USize_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15460____closed__4 = _init_l___regBuiltin_USize_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15460____closed__4(); -lean_mark_persistent(l___regBuiltin_USize_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15460____closed__4); -l___regBuiltin_USize_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15460____closed__5 = _init_l___regBuiltin_USize_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15460____closed__5(); -lean_mark_persistent(l___regBuiltin_USize_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15460____closed__5); -l___regBuiltin_USize_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15460____closed__6 = _init_l___regBuiltin_USize_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15460____closed__6(); -lean_mark_persistent(l___regBuiltin_USize_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15460____closed__6); -l___regBuiltin_USize_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15460____closed__7 = _init_l___regBuiltin_USize_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15460____closed__7(); -lean_mark_persistent(l___regBuiltin_USize_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15460____closed__7); -l___regBuiltin_USize_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15460____closed__8 = _init_l___regBuiltin_USize_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15460____closed__8(); -lean_mark_persistent(l___regBuiltin_USize_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15460____closed__8); -if (builtin) {res = l___regBuiltin_USize_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15460_(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_USize_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15462_(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_USize_reduceSub_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15464_(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -}l___regBuiltin_USize_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15500____closed__1 = _init_l___regBuiltin_USize_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15500____closed__1(); -lean_mark_persistent(l___regBuiltin_USize_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15500____closed__1); -l___regBuiltin_USize_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15500____closed__2 = _init_l___regBuiltin_USize_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15500____closed__2(); -lean_mark_persistent(l___regBuiltin_USize_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15500____closed__2); -l___regBuiltin_USize_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15500____closed__3 = _init_l___regBuiltin_USize_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15500____closed__3(); -lean_mark_persistent(l___regBuiltin_USize_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15500____closed__3); -l___regBuiltin_USize_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15500____closed__4 = _init_l___regBuiltin_USize_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15500____closed__4(); -lean_mark_persistent(l___regBuiltin_USize_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15500____closed__4); -l___regBuiltin_USize_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15500____closed__5 = _init_l___regBuiltin_USize_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15500____closed__5(); -lean_mark_persistent(l___regBuiltin_USize_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15500____closed__5); -l___regBuiltin_USize_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15500____closed__6 = _init_l___regBuiltin_USize_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15500____closed__6(); -lean_mark_persistent(l___regBuiltin_USize_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15500____closed__6); -l___regBuiltin_USize_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15500____closed__7 = _init_l___regBuiltin_USize_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15500____closed__7(); -lean_mark_persistent(l___regBuiltin_USize_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15500____closed__7); -l___regBuiltin_USize_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15500____closed__8 = _init_l___regBuiltin_USize_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15500____closed__8(); -lean_mark_persistent(l___regBuiltin_USize_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15500____closed__8); -if (builtin) {res = l___regBuiltin_USize_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15500_(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_USize_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15502_(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_USize_reduceDiv_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15504_(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -}l___regBuiltin_USize_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15540____closed__1 = _init_l___regBuiltin_USize_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15540____closed__1(); -lean_mark_persistent(l___regBuiltin_USize_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15540____closed__1); -l___regBuiltin_USize_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15540____closed__2 = _init_l___regBuiltin_USize_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15540____closed__2(); -lean_mark_persistent(l___regBuiltin_USize_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15540____closed__2); -l___regBuiltin_USize_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15540____closed__3 = _init_l___regBuiltin_USize_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15540____closed__3(); -lean_mark_persistent(l___regBuiltin_USize_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15540____closed__3); -l___regBuiltin_USize_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15540____closed__4 = _init_l___regBuiltin_USize_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15540____closed__4(); -lean_mark_persistent(l___regBuiltin_USize_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15540____closed__4); -l___regBuiltin_USize_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15540____closed__5 = _init_l___regBuiltin_USize_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15540____closed__5(); -lean_mark_persistent(l___regBuiltin_USize_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15540____closed__5); -l___regBuiltin_USize_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15540____closed__6 = _init_l___regBuiltin_USize_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15540____closed__6(); -lean_mark_persistent(l___regBuiltin_USize_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15540____closed__6); -l___regBuiltin_USize_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15540____closed__7 = _init_l___regBuiltin_USize_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15540____closed__7(); -lean_mark_persistent(l___regBuiltin_USize_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15540____closed__7); -l___regBuiltin_USize_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15540____closed__8 = _init_l___regBuiltin_USize_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15540____closed__8(); -lean_mark_persistent(l___regBuiltin_USize_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15540____closed__8); -if (builtin) {res = l___regBuiltin_USize_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15540_(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_USize_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15542_(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_USize_reduceMod_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15544_(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -}l___regBuiltin_USize_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15581____closed__1 = _init_l___regBuiltin_USize_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15581____closed__1(); -lean_mark_persistent(l___regBuiltin_USize_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15581____closed__1); -l___regBuiltin_USize_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15581____closed__2 = _init_l___regBuiltin_USize_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15581____closed__2(); -lean_mark_persistent(l___regBuiltin_USize_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15581____closed__2); -l___regBuiltin_USize_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15581____closed__3 = _init_l___regBuiltin_USize_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15581____closed__3(); -lean_mark_persistent(l___regBuiltin_USize_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15581____closed__3); -l___regBuiltin_USize_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15581____closed__4 = _init_l___regBuiltin_USize_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15581____closed__4(); -lean_mark_persistent(l___regBuiltin_USize_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15581____closed__4); -l___regBuiltin_USize_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15581____closed__5 = _init_l___regBuiltin_USize_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15581____closed__5(); -lean_mark_persistent(l___regBuiltin_USize_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15581____closed__5); -l___regBuiltin_USize_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15581____closed__6 = _init_l___regBuiltin_USize_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15581____closed__6(); -lean_mark_persistent(l___regBuiltin_USize_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15581____closed__6); -if (builtin) {res = l___regBuiltin_USize_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15581_(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_USize_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15583_(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_USize_reduceLT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15585_(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -}l___regBuiltin_USize_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15622____closed__1 = _init_l___regBuiltin_USize_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15622____closed__1(); -lean_mark_persistent(l___regBuiltin_USize_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15622____closed__1); -l___regBuiltin_USize_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15622____closed__2 = _init_l___regBuiltin_USize_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15622____closed__2(); -lean_mark_persistent(l___regBuiltin_USize_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15622____closed__2); -l___regBuiltin_USize_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15622____closed__3 = _init_l___regBuiltin_USize_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15622____closed__3(); -lean_mark_persistent(l___regBuiltin_USize_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15622____closed__3); -l___regBuiltin_USize_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15622____closed__4 = _init_l___regBuiltin_USize_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15622____closed__4(); -lean_mark_persistent(l___regBuiltin_USize_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15622____closed__4); -l___regBuiltin_USize_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15622____closed__5 = _init_l___regBuiltin_USize_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15622____closed__5(); -lean_mark_persistent(l___regBuiltin_USize_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15622____closed__5); -l___regBuiltin_USize_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15622____closed__6 = _init_l___regBuiltin_USize_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15622____closed__6(); -lean_mark_persistent(l___regBuiltin_USize_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15622____closed__6); -if (builtin) {res = l___regBuiltin_USize_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15622_(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_USize_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15624_(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_USize_reduceLE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15626_(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -}l___regBuiltin_USize_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15663____closed__1 = _init_l___regBuiltin_USize_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15663____closed__1(); -lean_mark_persistent(l___regBuiltin_USize_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15663____closed__1); -l___regBuiltin_USize_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15663____closed__2 = _init_l___regBuiltin_USize_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15663____closed__2(); -lean_mark_persistent(l___regBuiltin_USize_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15663____closed__2); -if (builtin) {res = l___regBuiltin_USize_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15663_(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_USize_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15665_(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_USize_reduceGT_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15667_(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -}l___regBuiltin_USize_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15704____closed__1 = _init_l___regBuiltin_USize_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15704____closed__1(); -lean_mark_persistent(l___regBuiltin_USize_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15704____closed__1); -l___regBuiltin_USize_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15704____closed__2 = _init_l___regBuiltin_USize_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15704____closed__2(); -lean_mark_persistent(l___regBuiltin_USize_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15704____closed__2); -if (builtin) {res = l___regBuiltin_USize_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15704_(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_USize_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15706_(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_USize_reduceGE_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15708_(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -}l___regBuiltin_USize_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15745____closed__1 = _init_l___regBuiltin_USize_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15745____closed__1(); -lean_mark_persistent(l___regBuiltin_USize_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15745____closed__1); -l___regBuiltin_USize_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15745____closed__2 = _init_l___regBuiltin_USize_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15745____closed__2(); -lean_mark_persistent(l___regBuiltin_USize_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15745____closed__2); -l___regBuiltin_USize_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15745____closed__3 = _init_l___regBuiltin_USize_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15745____closed__3(); -lean_mark_persistent(l___regBuiltin_USize_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15745____closed__3); -l___regBuiltin_USize_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15745____closed__4 = _init_l___regBuiltin_USize_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15745____closed__4(); -lean_mark_persistent(l___regBuiltin_USize_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15745____closed__4); -l___regBuiltin_USize_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15745____closed__5 = _init_l___regBuiltin_USize_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15745____closed__5(); -lean_mark_persistent(l___regBuiltin_USize_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15745____closed__5); -l___regBuiltin_USize_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15745____closed__6 = _init_l___regBuiltin_USize_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15745____closed__6(); -lean_mark_persistent(l___regBuiltin_USize_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15745____closed__6); -l___regBuiltin_USize_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15745____closed__7 = _init_l___regBuiltin_USize_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15745____closed__7(); -lean_mark_persistent(l___regBuiltin_USize_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15745____closed__7); -l___regBuiltin_USize_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15745____closed__8 = _init_l___regBuiltin_USize_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15745____closed__8(); -lean_mark_persistent(l___regBuiltin_USize_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15745____closed__8); -l___regBuiltin_USize_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15745____closed__9 = _init_l___regBuiltin_USize_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15745____closed__9(); -lean_mark_persistent(l___regBuiltin_USize_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15745____closed__9); -l___regBuiltin_USize_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15745____closed__10 = _init_l___regBuiltin_USize_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15745____closed__10(); -lean_mark_persistent(l___regBuiltin_USize_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15745____closed__10); -l___regBuiltin_USize_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15745____closed__11 = _init_l___regBuiltin_USize_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15745____closed__11(); -lean_mark_persistent(l___regBuiltin_USize_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15745____closed__11); -l___regBuiltin_USize_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15745____closed__12 = _init_l___regBuiltin_USize_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15745____closed__12(); -lean_mark_persistent(l___regBuiltin_USize_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15745____closed__12); -l___regBuiltin_USize_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15745____closed__13 = _init_l___regBuiltin_USize_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15745____closed__13(); -lean_mark_persistent(l___regBuiltin_USize_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15745____closed__13); -l___regBuiltin_USize_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15745____closed__14 = _init_l___regBuiltin_USize_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15745____closed__14(); -lean_mark_persistent(l___regBuiltin_USize_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15745____closed__14); -if (builtin) {res = l___regBuiltin_USize_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15745_(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_USize_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15747_(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_USize_reduceEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15749_(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -}l___regBuiltin_USize_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15785____closed__1 = _init_l___regBuiltin_USize_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15785____closed__1(); -lean_mark_persistent(l___regBuiltin_USize_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15785____closed__1); -l___regBuiltin_USize_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15785____closed__2 = _init_l___regBuiltin_USize_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15785____closed__2(); -lean_mark_persistent(l___regBuiltin_USize_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15785____closed__2); -l___regBuiltin_USize_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15785____closed__3 = _init_l___regBuiltin_USize_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15785____closed__3(); -lean_mark_persistent(l___regBuiltin_USize_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15785____closed__3); -l___regBuiltin_USize_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15785____closed__4 = _init_l___regBuiltin_USize_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15785____closed__4(); -lean_mark_persistent(l___regBuiltin_USize_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15785____closed__4); -l___regBuiltin_USize_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15785____closed__5 = _init_l___regBuiltin_USize_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15785____closed__5(); -lean_mark_persistent(l___regBuiltin_USize_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15785____closed__5); -l___regBuiltin_USize_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15785____closed__6 = _init_l___regBuiltin_USize_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15785____closed__6(); -lean_mark_persistent(l___regBuiltin_USize_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15785____closed__6); -l___regBuiltin_USize_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15785____closed__7 = _init_l___regBuiltin_USize_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15785____closed__7(); -lean_mark_persistent(l___regBuiltin_USize_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15785____closed__7); -l___regBuiltin_USize_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15785____closed__8 = _init_l___regBuiltin_USize_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15785____closed__8(); -lean_mark_persistent(l___regBuiltin_USize_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15785____closed__8); -l___regBuiltin_USize_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15785____closed__9 = _init_l___regBuiltin_USize_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15785____closed__9(); -lean_mark_persistent(l___regBuiltin_USize_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15785____closed__9); -l___regBuiltin_USize_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15785____closed__10 = _init_l___regBuiltin_USize_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15785____closed__10(); -lean_mark_persistent(l___regBuiltin_USize_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15785____closed__10); -l___regBuiltin_USize_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15785____closed__11 = _init_l___regBuiltin_USize_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15785____closed__11(); -lean_mark_persistent(l___regBuiltin_USize_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15785____closed__11); -l___regBuiltin_USize_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15785____closed__12 = _init_l___regBuiltin_USize_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15785____closed__12(); -lean_mark_persistent(l___regBuiltin_USize_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15785____closed__12); -l___regBuiltin_USize_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15785____closed__13 = _init_l___regBuiltin_USize_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15785____closed__13(); -lean_mark_persistent(l___regBuiltin_USize_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15785____closed__13); -l___regBuiltin_USize_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15785____closed__14 = _init_l___regBuiltin_USize_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15785____closed__14(); -lean_mark_persistent(l___regBuiltin_USize_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15785____closed__14); -if (builtin) {res = l___regBuiltin_USize_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15785_(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_USize_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15787_(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_USize_reduceNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15789_(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -}l___regBuiltin_USize_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15826____closed__1 = _init_l___regBuiltin_USize_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15826____closed__1(); -lean_mark_persistent(l___regBuiltin_USize_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15826____closed__1); -l___regBuiltin_USize_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15826____closed__2 = _init_l___regBuiltin_USize_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15826____closed__2(); -lean_mark_persistent(l___regBuiltin_USize_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15826____closed__2); -l___regBuiltin_USize_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15826____closed__3 = _init_l___regBuiltin_USize_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15826____closed__3(); -lean_mark_persistent(l___regBuiltin_USize_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15826____closed__3); -l___regBuiltin_USize_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15826____closed__4 = _init_l___regBuiltin_USize_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15826____closed__4(); -lean_mark_persistent(l___regBuiltin_USize_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15826____closed__4); -l___regBuiltin_USize_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15826____closed__5 = _init_l___regBuiltin_USize_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15826____closed__5(); -lean_mark_persistent(l___regBuiltin_USize_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15826____closed__5); -l___regBuiltin_USize_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15826____closed__6 = _init_l___regBuiltin_USize_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15826____closed__6(); -lean_mark_persistent(l___regBuiltin_USize_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15826____closed__6); -l___regBuiltin_USize_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15826____closed__7 = _init_l___regBuiltin_USize_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15826____closed__7(); -lean_mark_persistent(l___regBuiltin_USize_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15826____closed__7); -l___regBuiltin_USize_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15826____closed__8 = _init_l___regBuiltin_USize_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15826____closed__8(); -lean_mark_persistent(l___regBuiltin_USize_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15826____closed__8); -l___regBuiltin_USize_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15826____closed__9 = _init_l___regBuiltin_USize_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15826____closed__9(); -lean_mark_persistent(l___regBuiltin_USize_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15826____closed__9); -l___regBuiltin_USize_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15826____closed__10 = _init_l___regBuiltin_USize_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15826____closed__10(); -lean_mark_persistent(l___regBuiltin_USize_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15826____closed__10); -l___regBuiltin_USize_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15826____closed__11 = _init_l___regBuiltin_USize_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15826____closed__11(); -lean_mark_persistent(l___regBuiltin_USize_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15826____closed__11); -l___regBuiltin_USize_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15826____closed__12 = _init_l___regBuiltin_USize_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15826____closed__12(); -lean_mark_persistent(l___regBuiltin_USize_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15826____closed__12); -l___regBuiltin_USize_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15826____closed__13 = _init_l___regBuiltin_USize_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15826____closed__13(); -lean_mark_persistent(l___regBuiltin_USize_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15826____closed__13); -l___regBuiltin_USize_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15826____closed__14 = _init_l___regBuiltin_USize_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15826____closed__14(); -lean_mark_persistent(l___regBuiltin_USize_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15826____closed__14); -l___regBuiltin_USize_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15826____closed__15 = _init_l___regBuiltin_USize_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15826____closed__15(); -lean_mark_persistent(l___regBuiltin_USize_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15826____closed__15); -if (builtin) {res = l___regBuiltin_USize_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15826_(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_USize_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15828_(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_USize_reduceBEq_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15830_(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -}l___regBuiltin_USize_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15866____closed__1 = _init_l___regBuiltin_USize_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15866____closed__1(); -lean_mark_persistent(l___regBuiltin_USize_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15866____closed__1); -l___regBuiltin_USize_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15866____closed__2 = _init_l___regBuiltin_USize_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15866____closed__2(); -lean_mark_persistent(l___regBuiltin_USize_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15866____closed__2); -l___regBuiltin_USize_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15866____closed__3 = _init_l___regBuiltin_USize_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15866____closed__3(); -lean_mark_persistent(l___regBuiltin_USize_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15866____closed__3); -l___regBuiltin_USize_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15866____closed__4 = _init_l___regBuiltin_USize_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15866____closed__4(); -lean_mark_persistent(l___regBuiltin_USize_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15866____closed__4); -l___regBuiltin_USize_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15866____closed__5 = _init_l___regBuiltin_USize_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15866____closed__5(); -lean_mark_persistent(l___regBuiltin_USize_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15866____closed__5); -l___regBuiltin_USize_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15866____closed__6 = _init_l___regBuiltin_USize_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15866____closed__6(); -lean_mark_persistent(l___regBuiltin_USize_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15866____closed__6); -l___regBuiltin_USize_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15866____closed__7 = _init_l___regBuiltin_USize_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15866____closed__7(); -lean_mark_persistent(l___regBuiltin_USize_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15866____closed__7); -l___regBuiltin_USize_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15866____closed__8 = _init_l___regBuiltin_USize_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15866____closed__8(); -lean_mark_persistent(l___regBuiltin_USize_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15866____closed__8); -l___regBuiltin_USize_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15866____closed__9 = _init_l___regBuiltin_USize_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15866____closed__9(); -lean_mark_persistent(l___regBuiltin_USize_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15866____closed__9); -l___regBuiltin_USize_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15866____closed__10 = _init_l___regBuiltin_USize_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15866____closed__10(); -lean_mark_persistent(l___regBuiltin_USize_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15866____closed__10); -l___regBuiltin_USize_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15866____closed__11 = _init_l___regBuiltin_USize_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15866____closed__11(); -lean_mark_persistent(l___regBuiltin_USize_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15866____closed__11); -l___regBuiltin_USize_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15866____closed__12 = _init_l___regBuiltin_USize_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15866____closed__12(); -lean_mark_persistent(l___regBuiltin_USize_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15866____closed__12); -l___regBuiltin_USize_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15866____closed__13 = _init_l___regBuiltin_USize_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15866____closed__13(); -lean_mark_persistent(l___regBuiltin_USize_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15866____closed__13); -l___regBuiltin_USize_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15866____closed__14 = _init_l___regBuiltin_USize_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15866____closed__14(); -lean_mark_persistent(l___regBuiltin_USize_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15866____closed__14); -l___regBuiltin_USize_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15866____closed__15 = _init_l___regBuiltin_USize_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15866____closed__15(); -lean_mark_persistent(l___regBuiltin_USize_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15866____closed__15); -if (builtin) {res = l___regBuiltin_USize_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15866_(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_USize_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15868_(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_USize_reduceBNe_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__15870_(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -}l_USize_reduceOfNatCore___closed__1 = _init_l_USize_reduceOfNatCore___closed__1(); -lean_mark_persistent(l_USize_reduceOfNatCore___closed__1); -l___regBuiltin_USize_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15986____closed__1 = _init_l___regBuiltin_USize_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15986____closed__1(); -lean_mark_persistent(l___regBuiltin_USize_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15986____closed__1); -l___regBuiltin_USize_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15986____closed__2 = _init_l___regBuiltin_USize_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15986____closed__2(); -lean_mark_persistent(l___regBuiltin_USize_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15986____closed__2); -l___regBuiltin_USize_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15986____closed__3 = _init_l___regBuiltin_USize_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15986____closed__3(); -lean_mark_persistent(l___regBuiltin_USize_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15986____closed__3); -l___regBuiltin_USize_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15986____closed__4 = _init_l___regBuiltin_USize_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15986____closed__4(); -lean_mark_persistent(l___regBuiltin_USize_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15986____closed__4); -l___regBuiltin_USize_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15986____closed__5 = _init_l___regBuiltin_USize_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15986____closed__5(); -lean_mark_persistent(l___regBuiltin_USize_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15986____closed__5); -l___regBuiltin_USize_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15986____closed__6 = _init_l___regBuiltin_USize_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15986____closed__6(); -lean_mark_persistent(l___regBuiltin_USize_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15986____closed__6); -if (builtin) {res = l___regBuiltin_USize_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15986_(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_USize_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15988_(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_USize_reduceOfNatCore_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_15990_(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -}l_USize_reduceToNat___closed__1 = _init_l_USize_reduceToNat___closed__1(); -lean_mark_persistent(l_USize_reduceToNat___closed__1); -l___regBuiltin_USize_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_16102____closed__1 = _init_l___regBuiltin_USize_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_16102____closed__1(); -lean_mark_persistent(l___regBuiltin_USize_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_16102____closed__1); -l___regBuiltin_USize_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_16102____closed__2 = _init_l___regBuiltin_USize_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_16102____closed__2(); -lean_mark_persistent(l___regBuiltin_USize_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_16102____closed__2); -l___regBuiltin_USize_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_16102____closed__3 = _init_l___regBuiltin_USize_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_16102____closed__3(); -lean_mark_persistent(l___regBuiltin_USize_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_16102____closed__3); -l___regBuiltin_USize_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_16102____closed__4 = _init_l___regBuiltin_USize_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_16102____closed__4(); -lean_mark_persistent(l___regBuiltin_USize_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_16102____closed__4); -l___regBuiltin_USize_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_16102____closed__5 = _init_l___regBuiltin_USize_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_16102____closed__5(); -lean_mark_persistent(l___regBuiltin_USize_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_16102____closed__5); -if (builtin) {res = l___regBuiltin_USize_reduceToNat_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_16102_(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____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_16104_(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____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_16106_(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -}l___regBuiltin_USize_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__16178____closed__1 = _init_l___regBuiltin_USize_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__16178____closed__1(); -lean_mark_persistent(l___regBuiltin_USize_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__16178____closed__1); -l___regBuiltin_USize_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__16178____closed__2 = _init_l___regBuiltin_USize_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__16178____closed__2(); -lean_mark_persistent(l___regBuiltin_USize_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__16178____closed__2); -l___regBuiltin_USize_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__16178____closed__3 = _init_l___regBuiltin_USize_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__16178____closed__3(); -lean_mark_persistent(l___regBuiltin_USize_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__16178____closed__3); -l___regBuiltin_USize_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__16178____closed__4 = _init_l___regBuiltin_USize_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__16178____closed__4(); -lean_mark_persistent(l___regBuiltin_USize_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__16178____closed__4); -l___regBuiltin_USize_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__16178____closed__5 = _init_l___regBuiltin_USize_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__16178____closed__5(); -lean_mark_persistent(l___regBuiltin_USize_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__16178____closed__5); -l___regBuiltin_USize_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__16178____closed__6 = _init_l___regBuiltin_USize_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__16178____closed__6(); -lean_mark_persistent(l___regBuiltin_USize_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__16178____closed__6); -l___regBuiltin_USize_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__16178____closed__7 = _init_l___regBuiltin_USize_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__16178____closed__7(); -lean_mark_persistent(l___regBuiltin_USize_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__16178____closed__7); -l___regBuiltin_USize_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__16178____closed__8 = _init_l___regBuiltin_USize_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__16178____closed__8(); -lean_mark_persistent(l___regBuiltin_USize_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__16178____closed__8); -l___regBuiltin_USize_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__16178____closed__9 = _init_l___regBuiltin_USize_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__16178____closed__9(); -lean_mark_persistent(l___regBuiltin_USize_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__16178____closed__9); -l___regBuiltin_USize_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__16178____closed__10 = _init_l___regBuiltin_USize_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__16178____closed__10(); -lean_mark_persistent(l___regBuiltin_USize_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__16178____closed__10); -l___regBuiltin_USize_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__16178____closed__11 = _init_l___regBuiltin_USize_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__16178____closed__11(); -lean_mark_persistent(l___regBuiltin_USize_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__16178____closed__11); -l___regBuiltin_USize_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__16178____closed__12 = _init_l___regBuiltin_USize_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__16178____closed__12(); -lean_mark_persistent(l___regBuiltin_USize_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__16178____closed__12); -l___regBuiltin_USize_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__16178____closed__13 = _init_l___regBuiltin_USize_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__16178____closed__13(); -lean_mark_persistent(l___regBuiltin_USize_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__16178____closed__13); -l___regBuiltin_USize_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__16178____closed__14 = _init_l___regBuiltin_USize_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__16178____closed__14(); -lean_mark_persistent(l___regBuiltin_USize_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__16178____closed__14); -if (builtin) {res = l___regBuiltin_USize_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__16178_(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -}if (builtin) {res = l___regBuiltin_USize_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_14742__16180_(lean_io_mk_world()); +}if (builtin) {res = l___regBuiltin_UInt64_isValue_declare____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11511__12840_(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)); diff --git a/stage0/stdlib/Lean/Meta/Tactic/Simp/Main.c b/stage0/stdlib/Lean/Meta/Tactic/Simp/Main.c index d89ce28c1b..bea5435886 100644 --- a/stage0/stdlib/Lean/Meta/Tactic/Simp/Main.c +++ b/stage0/stdlib/Lean/Meta/Tactic/Simp/Main.c @@ -103,6 +103,7 @@ LEAN_EXPORT lean_object* l_Lean_Meta_applySimpResultToFVarId(lean_object*, lean_ uint8_t l_Lean_Expr_isLet(lean_object*); uint8_t l_Lean_Expr_isAppOfArity(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_Simp_Main_0__Lean_Meta_Simp_reduceStep___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*); +uint8_t l_Lean_Expr_isRawNatLit(lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_simpTargetCore___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Meta_Simp_main___closed__1; LEAN_EXPORT lean_object* l_Lean_Meta_Simp_Config_updateArith___boxed(lean_object*, lean_object*, lean_object*, lean_object*); @@ -167,7 +168,6 @@ LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_Meta_dsimpGoal___spe lean_object* lean_environment_find(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_panic___at_Lean_Meta_Simp_simpLet___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_throwNestedTacticEx___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -uint8_t l_Lean_Expr_isNatLit(lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_Simp_simpProj(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT uint8_t l_Array_anyMUnsafe_any___at_Lean_Meta_Simp_simpProj___spec__15(lean_object*, lean_object*, size_t, size_t); LEAN_EXPORT lean_object* l_Lean_Meta_Simp_simpApp(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -453,6 +453,7 @@ LEAN_EXPORT lean_object* l_Lean_Meta_Simp_congr(lean_object*, lean_object*, lean uint8_t l_Lean_Expr_isConstructorApp(lean_object*, lean_object*); static lean_object* l_Lean_Meta_Simp_simpArrow___lambda__4___closed__2; LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_Simp_Main_0__Lean_Meta_Simp_unfold_x3f___lambda__1(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_LocalDecl_isImplementationDetail(lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_Simp_visitFn___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* l_Lean_throwError___at_Lean_Meta_mkSimpCongrTheorem___spec__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Meta_Simp_simpArrow___lambda__4___closed__10; @@ -1080,7 +1081,7 @@ lean_object* x_6; lean_object* x_7; uint8_t x_8; x_6 = l_Lean_Expr_appFn_x21(x_1); x_7 = l_Lean_Expr_appArg_x21(x_6); lean_dec(x_6); -x_8 = l_Lean_Expr_isNatLit(x_7); +x_8 = l_Lean_Expr_isRawNatLit(x_7); lean_dec(x_7); return x_8; } @@ -2845,42 +2846,43 @@ return x_11; LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_Simp_Main_0__Lean_Meta_Simp_reduceFVar(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) { _start: { -uint8_t x_9; -x_9 = lean_ctor_get_uint8(x_1, sizeof(void*)*2 + 16); -if (x_9 == 0) -{ -lean_object* x_10; uint8_t x_11; +lean_object* x_9; lean_inc(x_3); -x_10 = l_Lean_Expr_fvarId_x21(x_3); -x_11 = l_Lean_Meta_SimpTheoremsArray_isLetDeclToUnfold(x_2, x_10); +x_9 = l_Lean_Meta_getFVarLocalDecl(x_3, x_4, x_5, x_6, x_7, x_8); +if (lean_obj_tag(x_9) == 0) +{ +uint8_t x_10; +x_10 = lean_ctor_get_uint8(x_1, sizeof(void*)*2 + 16); +if (x_10 == 0) +{ +uint8_t x_11; +x_11 = !lean_is_exclusive(x_9); if (x_11 == 0) { -lean_object* x_12; -lean_dec(x_4); -x_12 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_12, 0, x_3); -lean_ctor_set(x_12, 1, x_8); -return x_12; +lean_object* x_12; lean_object* x_13; uint8_t x_14; +x_12 = lean_ctor_get(x_9, 0); +lean_inc(x_3); +x_13 = l_Lean_Expr_fvarId_x21(x_3); +x_14 = l_Lean_Meta_SimpTheoremsArray_isLetDeclToUnfold(x_2, x_13); +if (x_14 == 0) +{ +uint8_t x_15; +x_15 = l_Lean_LocalDecl_isImplementationDetail(x_12); +if (x_15 == 0) +{ +lean_dec(x_12); +lean_ctor_set(x_9, 0, x_3); +return x_9; } else { -lean_object* x_13; -lean_inc(x_3); -x_13 = l_Lean_Meta_getFVarLocalDecl(x_3, x_4, x_5, x_6, x_7, x_8); -if (lean_obj_tag(x_13) == 0) -{ -uint8_t x_14; -x_14 = !lean_is_exclusive(x_13); -if (x_14 == 0) -{ -lean_object* x_15; lean_object* x_16; -x_15 = lean_ctor_get(x_13, 0); -x_16 = l_Lean_LocalDecl_value_x3f(x_15); -lean_dec(x_15); +lean_object* x_16; +x_16 = l_Lean_LocalDecl_value_x3f(x_12); +lean_dec(x_12); if (lean_obj_tag(x_16) == 0) { -lean_ctor_set(x_13, 0, x_3); -return x_13; +lean_ctor_set(x_9, 0, x_3); +return x_9; } else { @@ -2889,153 +2891,194 @@ lean_dec(x_3); x_17 = lean_ctor_get(x_16, 0); lean_inc(x_17); lean_dec(x_16); -lean_ctor_set(x_13, 0, x_17); -return x_13; +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_13, 0); -x_19 = lean_ctor_get(x_13, 1); -lean_inc(x_19); -lean_inc(x_18); -lean_dec(x_13); -x_20 = l_Lean_LocalDecl_value_x3f(x_18); -lean_dec(x_18); -if (lean_obj_tag(x_20) == 0) +lean_object* x_18; +x_18 = l_Lean_LocalDecl_value_x3f(x_12); +lean_dec(x_12); +if (lean_obj_tag(x_18) == 0) { -lean_object* x_21; -x_21 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_21, 0, x_3); -lean_ctor_set(x_21, 1, x_19); -return x_21; +lean_ctor_set(x_9, 0, x_3); +return x_9; } else { -lean_object* x_22; lean_object* x_23; +lean_object* x_19; lean_dec(x_3); -x_22 = lean_ctor_get(x_20, 0); -lean_inc(x_22); -lean_dec(x_20); -x_23 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_23, 0, x_22); -lean_ctor_set(x_23, 1, x_19); -return x_23; +x_19 = lean_ctor_get(x_18, 0); +lean_inc(x_19); +lean_dec(x_18); +lean_ctor_set(x_9, 0, x_19); +return x_9; } } } else { +lean_object* x_20; lean_object* x_21; lean_object* x_22; uint8_t x_23; +x_20 = lean_ctor_get(x_9, 0); +x_21 = lean_ctor_get(x_9, 1); +lean_inc(x_21); +lean_inc(x_20); +lean_dec(x_9); +lean_inc(x_3); +x_22 = l_Lean_Expr_fvarId_x21(x_3); +x_23 = l_Lean_Meta_SimpTheoremsArray_isLetDeclToUnfold(x_2, x_22); +if (x_23 == 0) +{ uint8_t x_24; -lean_dec(x_3); -x_24 = !lean_is_exclusive(x_13); +x_24 = l_Lean_LocalDecl_isImplementationDetail(x_20); if (x_24 == 0) { -return x_13; +lean_object* x_25; +lean_dec(x_20); +x_25 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_25, 0, x_3); +lean_ctor_set(x_25, 1, x_21); +return x_25; } else { -lean_object* x_25; lean_object* x_26; lean_object* x_27; -x_25 = lean_ctor_get(x_13, 0); -x_26 = lean_ctor_get(x_13, 1); -lean_inc(x_26); -lean_inc(x_25); -lean_dec(x_13); -x_27 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_27, 0, x_25); -lean_ctor_set(x_27, 1, x_26); +lean_object* x_26; +x_26 = l_Lean_LocalDecl_value_x3f(x_20); +lean_dec(x_20); +if (lean_obj_tag(x_26) == 0) +{ +lean_object* x_27; +x_27 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_27, 0, x_3); +lean_ctor_set(x_27, 1, x_21); return x_27; } -} -} -} else { -lean_object* x_28; -lean_dec(x_2); -lean_inc(x_3); -x_28 = l_Lean_Meta_getFVarLocalDecl(x_3, x_4, x_5, x_6, x_7, x_8); -if (lean_obj_tag(x_28) == 0) -{ -uint8_t x_29; -x_29 = !lean_is_exclusive(x_28); -if (x_29 == 0) -{ -lean_object* x_30; lean_object* x_31; -x_30 = lean_ctor_get(x_28, 0); -x_31 = l_Lean_LocalDecl_value_x3f(x_30); -lean_dec(x_30); -if (lean_obj_tag(x_31) == 0) -{ -lean_ctor_set(x_28, 0, x_3); -return x_28; -} -else -{ -lean_object* x_32; +lean_object* x_28; lean_object* x_29; lean_dec(x_3); -x_32 = lean_ctor_get(x_31, 0); +x_28 = lean_ctor_get(x_26, 0); +lean_inc(x_28); +lean_dec(x_26); +x_29 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_29, 0, x_28); +lean_ctor_set(x_29, 1, x_21); +return x_29; +} +} +} +else +{ +lean_object* x_30; +x_30 = l_Lean_LocalDecl_value_x3f(x_20); +lean_dec(x_20); +if (lean_obj_tag(x_30) == 0) +{ +lean_object* x_31; +x_31 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_31, 0, x_3); +lean_ctor_set(x_31, 1, x_21); +return x_31; +} +else +{ +lean_object* x_32; lean_object* x_33; +lean_dec(x_3); +x_32 = lean_ctor_get(x_30, 0); lean_inc(x_32); -lean_dec(x_31); -lean_ctor_set(x_28, 0, x_32); -return x_28; +lean_dec(x_30); +x_33 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_33, 0, x_32); +lean_ctor_set(x_33, 1, x_21); +return x_33; +} +} } } else { -lean_object* x_33; lean_object* x_34; lean_object* x_35; -x_33 = lean_ctor_get(x_28, 0); -x_34 = lean_ctor_get(x_28, 1); -lean_inc(x_34); -lean_inc(x_33); -lean_dec(x_28); -x_35 = l_Lean_LocalDecl_value_x3f(x_33); -lean_dec(x_33); -if (lean_obj_tag(x_35) == 0) +uint8_t x_34; +lean_dec(x_2); +x_34 = !lean_is_exclusive(x_9); +if (x_34 == 0) { -lean_object* x_36; -x_36 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_36, 0, x_3); -lean_ctor_set(x_36, 1, x_34); -return x_36; -} -else -{ -lean_object* x_37; lean_object* x_38; -lean_dec(x_3); -x_37 = lean_ctor_get(x_35, 0); -lean_inc(x_37); +lean_object* x_35; lean_object* x_36; +x_35 = lean_ctor_get(x_9, 0); +x_36 = l_Lean_LocalDecl_value_x3f(x_35); lean_dec(x_35); -x_38 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_38, 0, x_37); -lean_ctor_set(x_38, 1, x_34); -return x_38; -} -} +if (lean_obj_tag(x_36) == 0) +{ +lean_ctor_set(x_9, 0, x_3); +return x_9; } else { -uint8_t x_39; +lean_object* x_37; lean_dec(x_3); -x_39 = !lean_is_exclusive(x_28); -if (x_39 == 0) -{ -return x_28; +x_37 = lean_ctor_get(x_36, 0); +lean_inc(x_37); +lean_dec(x_36); +lean_ctor_set(x_9, 0, x_37); +return x_9; +} } else { -lean_object* x_40; lean_object* x_41; lean_object* x_42; -x_40 = lean_ctor_get(x_28, 0); -x_41 = lean_ctor_get(x_28, 1); -lean_inc(x_41); -lean_inc(x_40); -lean_dec(x_28); -x_42 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_42, 0, x_40); -lean_ctor_set(x_42, 1, x_41); -return x_42; +lean_object* x_38; lean_object* x_39; lean_object* x_40; +x_38 = lean_ctor_get(x_9, 0); +x_39 = lean_ctor_get(x_9, 1); +lean_inc(x_39); +lean_inc(x_38); +lean_dec(x_9); +x_40 = l_Lean_LocalDecl_value_x3f(x_38); +lean_dec(x_38); +if (lean_obj_tag(x_40) == 0) +{ +lean_object* x_41; +x_41 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_41, 0, x_3); +lean_ctor_set(x_41, 1, x_39); +return x_41; } +else +{ +lean_object* x_42; lean_object* x_43; +lean_dec(x_3); +x_42 = lean_ctor_get(x_40, 0); +lean_inc(x_42); +lean_dec(x_40); +x_43 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_43, 0, x_42); +lean_ctor_set(x_43, 1, x_39); +return x_43; +} +} +} +} +else +{ +uint8_t x_44; +lean_dec(x_3); +lean_dec(x_2); +x_44 = !lean_is_exclusive(x_9); +if (x_44 == 0) +{ +return x_9; +} +else +{ +lean_object* x_45; lean_object* x_46; lean_object* x_47; +x_45 = lean_ctor_get(x_9, 0); +x_46 = lean_ctor_get(x_9, 1); +lean_inc(x_46); +lean_inc(x_45); +lean_dec(x_9); +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; } } } @@ -10047,7 +10090,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__2; x_2 = l_Lean_Meta_Simp_simpProj___lambda__1___closed__3; -x_3 = lean_unsigned_to_nat(1682u); +x_3 = lean_unsigned_to_nat(1701u); x_4 = lean_unsigned_to_nat(18u); x_5 = l_Lean_Meta_Simp_simpProj___lambda__1___closed__4; x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); @@ -11957,7 +12000,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__2; x_2 = l_Lean_Meta_Simp_simpArrow___lambda__1___closed__1; -x_3 = lean_unsigned_to_nat(1708u); +x_3 = lean_unsigned_to_nat(1727u); 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/SimpTheorems.c b/stage0/stdlib/Lean/Meta/Tactic/Simp/SimpTheorems.c index 34d767d38f..13f29776d3 100644 --- a/stage0/stdlib/Lean/Meta/Tactic/Simp/SimpTheorems.c +++ b/stage0/stdlib/Lean/Meta/Tactic/Simp/SimpTheorems.c @@ -16742,7 +16742,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(1649u); +x_3 = lean_unsigned_to_nat(1668u); 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 74b8eacc09..d3a4f7a8a7 100644 --- a/stage0/stdlib/Lean/Meta/Tactic/Simp/Types.c +++ b/stage0/stdlib/Lean/Meta/Tactic/Simp/Types.c @@ -5973,7 +5973,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(1708u); +x_3 = lean_unsigned_to_nat(1727u); 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); diff --git a/stage0/stdlib/Lean/Meta/Tactic/Split.c b/stage0/stdlib/Lean/Meta/Tactic/Split.c index 1df4851027..1f87514a74 100644 --- a/stage0/stdlib/Lean/Meta/Tactic/Split.c +++ b/stage0/stdlib/Lean/Meta/Tactic/Split.c @@ -1,6 +1,6 @@ // Lean compiler output // Module: Lean.Meta.Tactic.Split -// Imports: Lean.Meta.Tactic.Simp.Main Lean.Meta.Tactic.SplitIf Lean.Meta.Tactic.Apply Lean.Meta.Tactic.Generalize +// Imports: Lean.Meta.Match.MatcherApp.Basic Lean.Meta.Tactic.Simp.Main Lean.Meta.Tactic.SplitIf Lean.Meta.Tactic.Apply Lean.Meta.Tactic.Generalize #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -78,6 +78,7 @@ lean_object* l_Lean_MVarId_replaceTargetEq(lean_object*, lean_object*, lean_obje LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_Split_0__Lean_Meta_Split_withEqs_go___rarg___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_array_fget(lean_object*, lean_object*); lean_object* l_Lean_Meta_Simp_main(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Meta_forallTelescope___at_Lean_Meta_mapForallTelescope_x27___spec__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_Match_MatcherInfo_arity(lean_object*); uint8_t l_Lean_Level_isZero(lean_object*); LEAN_EXPORT uint8_t l_Lean_Meta_Split_findSplit_x3f_isCandidate___lambda__1(lean_object*); @@ -252,7 +253,6 @@ static lean_object* l___private_Lean_Meta_Tactic_Split_0__Lean_Meta_Split_genera LEAN_EXPORT lean_object* l_Lean_Meta_Split_applyMatchSplitter___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_Tactic_Split_0__Lean_Meta_Split_generalizeMatchDiscrs_withNewAltEqs_go___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_EXPORT lean_object* l_Lean_Meta_Split_simpMatch_pre(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Init_Util_0__mkPanicMessageWithDecl(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_Split_0__Lean_Meta_Split_simpMatchCore_pre(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_isIte(lean_object*); @@ -3289,7 +3289,7 @@ static lean_object* _init_l_List_forIn_loop___at___private_Lean_Meta_Tactic_Spli _start: { lean_object* x_1; -x_1 = lean_mk_string_from_bytes("Lean.Meta.Match.MatcherInfo", 27); +x_1 = lean_mk_string_from_bytes("Lean.Meta.Match.MatcherApp.Basic", 32); return x_1; } } @@ -3315,7 +3315,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_List_forIn_loop___at___private_Lean_Meta_Tactic_Split_0__Lean_Meta_Split_generalizeMatchDiscrs_mkNewTarget___spec__3___closed__1; x_2 = l_List_forIn_loop___at___private_Lean_Meta_Tactic_Split_0__Lean_Meta_Split_generalizeMatchDiscrs_mkNewTarget___spec__3___closed__2; -x_3 = lean_unsigned_to_nat(183u); +x_3 = lean_unsigned_to_nat(63u); x_4 = lean_unsigned_to_nat(53u); x_5 = l_List_forIn_loop___at___private_Lean_Meta_Tactic_Split_0__Lean_Meta_Split_generalizeMatchDiscrs_mkNewTarget___spec__3___closed__3; x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); @@ -6828,7 +6828,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_Tactic_Split_0__Lean_Meta_Split_generalizeMatchDiscrs___lambda__6___closed__1; x_2 = l___private_Lean_Meta_Tactic_Split_0__Lean_Meta_Split_generalizeMatchDiscrs___lambda__6___closed__2; -x_3 = lean_unsigned_to_nat(114u); +x_3 = lean_unsigned_to_nat(115u); x_4 = lean_unsigned_to_nat(59u); x_5 = l_List_forIn_loop___at___private_Lean_Meta_Tactic_Split_0__Lean_Meta_Split_generalizeMatchDiscrs_mkNewTarget___spec__3___closed__3; x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); @@ -6897,7 +6897,7 @@ lean_inc(x_9); lean_inc(x_8); lean_inc(x_7); lean_inc(x_6); -x_20 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_4, x_19, x_6, x_7, x_8, x_9, x_16); +x_20 = l_Lean_Meta_forallTelescope___at_Lean_Meta_mapForallTelescope_x27___spec__1___rarg(x_4, x_19, x_6, x_7, x_8, x_9, x_16); if (lean_obj_tag(x_20) == 0) { lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; @@ -14070,6 +14070,7 @@ x_5 = l_Lean_registerTraceClass(x_2, x_3, x_4, x_1); return x_5; } } +lean_object* initialize_Lean_Meta_Match_MatcherApp_Basic(uint8_t builtin, lean_object*); lean_object* initialize_Lean_Meta_Tactic_Simp_Main(uint8_t builtin, lean_object*); lean_object* initialize_Lean_Meta_Tactic_SplitIf(uint8_t builtin, lean_object*); lean_object* initialize_Lean_Meta_Tactic_Apply(uint8_t builtin, lean_object*); @@ -14079,6 +14080,9 @@ LEAN_EXPORT lean_object* initialize_Lean_Meta_Tactic_Split(uint8_t builtin, lean lean_object * res; if (_G_initialized) return lean_io_result_mk_ok(lean_box(0)); _G_initialized = true; +res = initialize_Lean_Meta_Match_MatcherApp_Basic(builtin, lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); res = initialize_Lean_Meta_Tactic_Simp_Main(builtin, lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); diff --git a/stage0/stdlib/Lean/Meta/Tactic/TryThis.c b/stage0/stdlib/Lean/Meta/Tactic/TryThis.c index 7dea181ed1..2fd71b8180 100644 --- a/stage0/stdlib/Lean/Meta/Tactic/TryThis.c +++ b/stage0/stdlib/Lean/Meta/Tactic/TryThis.c @@ -1,6 +1,6 @@ // Lean compiler output // Module: Lean.Meta.Tactic.TryThis -// Imports: Lean.Server.CodeActions Lean.Widget.UserWidget Lean.Data.Json.Elab +// Imports: Lean.Server.CodeActions Lean.Widget.UserWidget Lean.Data.Json.Elab Lean.Data.Lsp.Utf16 #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -18,7 +18,7 @@ static lean_object* l_Lean_Syntax_replaceM___at_Lean_Meta_Tactic_TryThis_replace static uint8_t l_Lean_Meta_Tactic_TryThis_SuggestionStyle_value___closed__18; LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Meta_Tactic_TryThis_addRewriteSuggestion___spec__1(size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_format_pretty(lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_FileMap_utf8RangeToLspRange(lean_object*, lean_object*); +lean_object* l_Lean_FileMap_utf8RangeToLspRange(lean_object*, lean_object*); static lean_object* l_Lean_Meta_Tactic_TryThis_addHaveSuggestion___closed__10; static lean_object* l_Lean_Meta_Tactic_TryThis_instInhabitedSuggestion___closed__1; static lean_object* l___private_Lean_Meta_Tactic_TryThis_0__Lean_Meta_Tactic_TryThis_addSuggestionCore___closed__1; @@ -42,11 +42,10 @@ static lean_object* l_Lean_Meta_Tactic_TryThis_addHaveSuggestion___closed__42; static lean_object* l_Lean_Meta_Tactic_TryThis_addRewriteSuggestion___lambda__2___closed__2; LEAN_EXPORT lean_object* l_Std_Range_forIn_x27_loop___at_Lean_Meta_Tactic_TryThis_tryThisProvider___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*); static lean_object* l_Lean_Meta_Tactic_TryThis_addHaveSuggestion___closed__9; -LEAN_EXPORT lean_object* l_Lean_Meta_Tactic_TryThis_instImpl____x40_Lean_Meta_Tactic_TryThis___hyg_65_; lean_object* l_Lean_Json_mkObj(lean_object*); static lean_object* l_Lean_Meta_Tactic_TryThis_addRewriteSuggestion___lambda__2___closed__10; static lean_object* l_Lean_Meta_Tactic_TryThis_addHaveSuggestion___closed__4; -static lean_object* l_Lean_Meta_Tactic_TryThis_initFn____x40_Lean_Meta_Tactic_TryThis___hyg_776____closed__4; +static lean_object* l_Lean_Meta_Tactic_TryThis_instImpl____x40_Lean_Meta_Tactic_TryThis___hyg_50____closed__1; static lean_object* l_Lean_Meta_Tactic_TryThis_addHaveSuggestion___closed__7; static lean_object* l_Array_mapMUnsafe_map___at_Lean_Meta_Tactic_TryThis_addRewriteSuggestion___spec__1___closed__3; LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_TryThis_0__Lean_Meta_Tactic_TryThis_addSuggestionCore___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -67,6 +66,7 @@ LEAN_EXPORT lean_object* l_Lean_Meta_Tactic_TryThis_SuggestionStyle_error(uint8_ static lean_object* l_Lean_Meta_Tactic_TryThis_addRewriteSuggestion___lambda__2___closed__7; lean_object* l_Lean_Syntax_getId(lean_object*); static lean_object* l_Lean_Meta_Tactic_TryThis_addHaveSuggestion___closed__57; +static lean_object* l_Lean_Meta_Tactic_TryThis_instImpl____x40_Lean_Meta_Tactic_TryThis___hyg_50____closed__2; static lean_object* l_Std_Range_forIn_x27_loop___at_Lean_Meta_Tactic_TryThis_tryThisProvider___spec__1___closed__4; lean_object* lean_array_push(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_Tactic_TryThis_replaceMVarsByUnderscores(lean_object*); @@ -74,12 +74,10 @@ static lean_object* l_Lean_Meta_Tactic_TryThis_addHaveSuggestion___closed__40; LEAN_EXPORT lean_object* l_Lean_Meta_Tactic_TryThis_SuggestionStyle_success; uint8_t lean_usize_dec_eq(size_t, size_t); static lean_object* l___private_Lean_Meta_Tactic_TryThis_0__Lean_Meta_Tactic_TryThis_addSuggestionCore___closed__2; -static lean_object* l_Lean_Meta_Tactic_TryThis_initFn____x40_Lean_Meta_Tactic_TryThis___hyg_776____closed__6; static double l_Lean_Meta_Tactic_TryThis_SuggestionStyle_value___closed__4; LEAN_EXPORT lean_object* l_List_mapTR_loop___at_Lean_Meta_Tactic_TryThis_addRewriteSuggestion___spec__2(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_Tactic_TryThis_SuggestionText_pretty(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Meta_Tactic_TryThis_addHaveSuggestion___closed__61; -static lean_object* l_Lean_Meta_Tactic_TryThis_initFn____x40_Lean_Meta_Tactic_TryThis___hyg_776____closed__3; static double l_Lean_Meta_Tactic_TryThis_SuggestionStyle_value___closed__2; lean_object* l_Lean_replaceRef(lean_object*, lean_object*); static lean_object* l_Lean_Meta_Tactic_TryThis_SuggestionStyle_warning___closed__11; @@ -108,6 +106,7 @@ LEAN_EXPORT lean_object* l_Lean_Meta_Tactic_TryThis_addRewriteSuggestion___lambd LEAN_EXPORT lean_object* l_Lean_Meta_Tactic_TryThis_instSuggestionStyleInhabited; uint64_t lean_string_hash(lean_object*); static lean_object* l_Lean_Meta_Tactic_TryThis_addHaveSuggestion___closed__55; +static lean_object* l_Lean_Meta_Tactic_TryThis_initFn____x40_Lean_Meta_Tactic_TryThis___hyg_761____closed__1; lean_object* l_Lean_Elab_InfoTree_foldInfo___rarg(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Meta_Tactic_TryThis_addHaveSuggestion___closed__65; lean_object* l_Lean_Syntax_node5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -171,8 +170,8 @@ static lean_object* l_Lean_Meta_Tactic_TryThis_addSuggestions___closed__1; static lean_object* l___private_Lean_Meta_Tactic_TryThis_0__Lean_Meta_Tactic_TryThis_addSuggestionCore___closed__6; static lean_object* l_Lean_Meta_Tactic_TryThis_SuggestionStyle_warning___closed__8; static lean_object* l_Lean_Meta_Tactic_TryThis_addRewriteSuggestion___closed__1; +static lean_object* l_Lean_Meta_Tactic_TryThis_initFn____x40_Lean_Meta_Tactic_TryThis___hyg_761____closed__7; static lean_object* l_Lean_Meta_Tactic_TryThis_SuggestionStyle_error___closed__20; -static lean_object* l_Lean_Meta_Tactic_TryThis_initFn____x40_Lean_Meta_Tactic_TryThis___hyg_776____closed__2; uint8_t l_instDecidableNot___rarg(uint8_t); static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Meta_Tactic_TryThis_0__Lean_Meta_Tactic_TryThis_addExactSuggestionCore___spec__1___closed__2; LEAN_EXPORT lean_object* l_Lean_Meta_Tactic_TryThis_getIndentAndColumn___lambda__1___boxed(lean_object*); @@ -182,7 +181,6 @@ static lean_object* l_Lean_Meta_Tactic_TryThis_SuggestionStyle_warning___closed_ static lean_object* l_Lean_Meta_Tactic_TryThis_addHaveSuggestion___closed__58; LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Meta_Tactic_TryThis_addSuggestions___spec__1(size_t, size_t, lean_object*); static lean_object* l_Lean_Meta_Tactic_TryThis_SuggestionStyle_asInaccessible___closed__4; -LEAN_EXPORT lean_object* l_Lean_FileMap_utf8RangeToLspRange___boxed(lean_object*, lean_object*); double lean_float_add(double, double); static lean_object* l_Lean_Meta_Tactic_TryThis_addHaveSuggestion___closed__15; LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Meta_Tactic_TryThis_addTermSuggestions___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -198,7 +196,6 @@ LEAN_EXPORT lean_object* l_Lean_Meta_Tactic_TryThis_replaceMVarsByUnderscores___ LEAN_EXPORT lean_object* l_Lean_Meta_Tactic_TryThis_Suggestion_toJsonAndInfoM___lambda__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Meta_Tactic_TryThis_addHaveSuggestion___closed__13; static lean_object* l_Lean_Meta_Tactic_TryThis_addRewriteSuggestion___lambda__2___closed__11; -static lean_object* l_Lean_Meta_Tactic_TryThis_initFn____x40_Lean_Meta_Tactic_TryThis___hyg_776____closed__1; static lean_object* l_Lean_Meta_Tactic_TryThis_addHaveSuggestion___closed__51; LEAN_EXPORT lean_object* l_Lean_Meta_Tactic_TryThis_Suggestion_toJsonAndInfoM___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_Tactic_TryThis_instInhabitedSuggestionText; @@ -215,13 +212,14 @@ LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Meta_Tactic_TryThis_de static lean_object* l_Lean_Meta_Tactic_TryThis_SuggestionStyle_value___closed__10; static lean_object* l_Lean_Meta_Tactic_TryThis_addHaveSuggestion___closed__54; extern lean_object* l_Lean_instToJsonJson; +LEAN_EXPORT lean_object* l_Lean_Meta_Tactic_TryThis_instImpl____x40_Lean_Meta_Tactic_TryThis___hyg_50_; static double l_Lean_Meta_Tactic_TryThis_SuggestionStyle_value___closed__1; static lean_object* l_Lean_Meta_Tactic_TryThis_addHaveSuggestion___closed__43; LEAN_EXPORT lean_object* l_Lean_Meta_Tactic_TryThis_instToMessageDataSuggestionText(lean_object*); +static lean_object* l_Lean_Meta_Tactic_TryThis_initFn____x40_Lean_Meta_Tactic_TryThis___hyg_761____closed__6; LEAN_EXPORT lean_object* l_Lean_Meta_Tactic_TryThis_SuggestionText_prettyExtra___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Meta_Tactic_TryThis_SuggestionStyle_error___closed__9; lean_object* l_Lean_Syntax_node3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_FileMap_utf8PosToLspPos(lean_object*, lean_object*); static lean_object* l_Lean_Meta_Tactic_TryThis_SuggestionStyle_error___closed__23; LEAN_EXPORT lean_object* l_Lean_Meta_Tactic_TryThis_tryThisProvider___lambda__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Meta_Tactic_TryThis_addRewriteSuggestion___lambda__2___closed__9; @@ -313,20 +311,20 @@ static lean_object* l_Lean_Syntax_replaceM___at_Lean_Meta_Tactic_TryThis_replace static lean_object* l_Lean_Meta_Tactic_TryThis_addHaveSuggestion___closed__49; static lean_object* l_Lean_Meta_Tactic_TryThis_SuggestionStyle_error___closed__13; LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_TryThis_0__Lean_Meta_Tactic_TryThis_addExactSuggestionCore___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Meta_Tactic_TryThis_initFn____x40_Lean_Meta_Tactic_TryThis___hyg_761____closed__3; static lean_object* l_Lean_Meta_Tactic_TryThis_addHaveSuggestion___closed__39; LEAN_EXPORT lean_object* l_Lean_Meta_Tactic_TryThis_tryThisWidget___closed__3___boxed__const__1; static lean_object* l_Lean_Meta_Tactic_TryThis_addHaveSuggestion___closed__32; static lean_object* l_Lean_Meta_Tactic_TryThis_SuggestionStyle_error___closed__11; +static lean_object* l_Lean_Meta_Tactic_TryThis_initFn____x40_Lean_Meta_Tactic_TryThis___hyg_761____closed__4; static lean_object* l_List_mapTR_loop___at_Lean_Meta_Tactic_TryThis_addRewriteSuggestion___spec__2___closed__1; static lean_object* l_Lean_Meta_Tactic_TryThis_SuggestionStyle_asHypothesis___closed__4; LEAN_EXPORT lean_object* l_Lean_Syntax_replaceM___at_Lean_Meta_Tactic_TryThis_replaceMVarsByUnderscores___spec__1___rarg___lambda__7(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Meta_Tactic_TryThis_addRewriteSuggestion___spec__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_Lean_Meta_Tactic_TryThis_instImpl____x40_Lean_Meta_Tactic_TryThis___hyg_65____closed__2; LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Meta_Tactic_TryThis_addSuggestions___spec__1___boxed(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Meta_Tactic_TryThis_SuggestionStyle_error___closed__22; LEAN_EXPORT lean_object* l_Lean_Meta_Tactic_TryThis_addHaveSuggestion(lean_object*, 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_String_findAux(lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Meta_Tactic_TryThis_initFn____x40_Lean_Meta_Tactic_TryThis___hyg_776____closed__7; static lean_object* l_Lean_Syntax_replaceM___at_Lean_Meta_Tactic_TryThis_replaceMVarsByUnderscores___spec__1___rarg___closed__2; static lean_object* l_Std_Range_forIn_x27_loop___at_Lean_Meta_Tactic_TryThis_tryThisProvider___spec__1___closed__2; static lean_object* l_Lean_Meta_Tactic_TryThis_addHaveSuggestion___closed__67; @@ -346,6 +344,7 @@ static lean_object* l_Lean_Meta_Tactic_TryThis_tryThisWidget___closed__3; uint8_t lean_nat_dec_eq(lean_object*, lean_object*); uint8_t l_Lean_Name_hasNum(lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_Tactic_TryThis_addHaveSuggestion___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_Lean_Meta_Tactic_TryThis_initFn____x40_Lean_Meta_Tactic_TryThis___hyg_761____closed__5; LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Meta_Tactic_TryThis_addSuggestions___spec__2(lean_object*, size_t, size_t, lean_object*); lean_object* l_Lean_Syntax_SepArray_ofElems(lean_object*, lean_object*); static lean_object* l___regBuiltin_Lean_Meta_Tactic_TryThis_tryThisWidget___closed__1; @@ -399,8 +398,9 @@ static lean_object* l_Lean_Meta_Tactic_TryThis_addHaveSuggestion___closed__35; static lean_object* l___regBuiltin_Lean_Meta_Tactic_TryThis_tryThisWidget___closed__3; static lean_object* l_Lean_Meta_Tactic_TryThis_SuggestionStyle_value___closed__17; static lean_object* l_Lean_Meta_Tactic_TryThis_addRewriteSuggestion___closed__2; +static lean_object* l_Lean_Meta_Tactic_TryThis_initFn____x40_Lean_Meta_Tactic_TryThis___hyg_761____closed__2; static lean_object* l_Lean_Meta_Tactic_TryThis_addRewriteSuggestion___closed__8; -static lean_object* l_Lean_Meta_Tactic_TryThis_initFn____x40_Lean_Meta_Tactic_TryThis___hyg_776____closed__5; +LEAN_EXPORT lean_object* l_Lean_Meta_Tactic_TryThis_initFn____x40_Lean_Meta_Tactic_TryThis___hyg_761_(lean_object*); lean_object* l_List_reverse___rarg(lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_Tactic_TryThis_getInputWidth___boxed(lean_object*); static lean_object* l_Lean_Meta_Tactic_TryThis_SuggestionStyle_error___closed__2; @@ -453,7 +453,6 @@ LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Meta_Tactic_ lean_object* lean_nat_add(lean_object*, lean_object*); static lean_object* l_Lean_Meta_Tactic_TryThis_SuggestionStyle_warning___closed__12; LEAN_EXPORT lean_object* l_Lean_Meta_Tactic_TryThis_addRewriteSuggestion___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_Meta_Tactic_TryThis_initFn____x40_Lean_Meta_Tactic_TryThis___hyg_776_(lean_object*); lean_object* l_Lean_MessageData_bracket(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Meta_Tactic_TryThis_replaceMVarsByUnderscores___spec__2(lean_object*); static lean_object* l_Lean_Meta_Tactic_TryThis_addHaveSuggestion___closed__53; @@ -474,7 +473,6 @@ static lean_object* l_Lean_Meta_Tactic_TryThis_Suggestion_toJsonAndInfoM___lambd static lean_object* l_Std_Range_forIn_x27_loop___at_Lean_Meta_Tactic_TryThis_tryThisProvider___spec__1___closed__1; LEAN_EXPORT lean_object* l_Std_Range_forIn_x27_loop___at_Lean_Meta_Tactic_TryThis_tryThisProvider___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*); static lean_object* l_Lean_Meta_Tactic_TryThis_SuggestionStyle_warning___closed__1; -static lean_object* l_Lean_Meta_Tactic_TryThis_instImpl____x40_Lean_Meta_Tactic_TryThis___hyg_65____closed__1; LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Meta_Tactic_TryThis_replaceMVarsByUnderscores___spec__2___rarg___lambda__1(size_t, lean_object*, lean_object*, lean_object*, size_t, lean_object*); static lean_object* l_Lean_Meta_Tactic_TryThis_SuggestionStyle_error___closed__15; static lean_object* l_Lean_Meta_Tactic_TryThis_addExactSuggestions___closed__1; @@ -493,30 +491,6 @@ static lean_object* l_Array_mapMUnsafe_map___at_Lean_Meta_Tactic_TryThis_addRewr LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Meta_Tactic_TryThis_replaceMVarsByUnderscores___spec__2___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Array_isEmpty___rarg(lean_object*); static lean_object* l_Lean_Meta_Tactic_TryThis_addHaveSuggestion___closed__69; -LEAN_EXPORT lean_object* l_Lean_FileMap_utf8RangeToLspRange(lean_object* x_1, lean_object* x_2) { -_start: -{ -lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; -x_3 = lean_ctor_get(x_2, 0); -x_4 = l_Lean_FileMap_utf8PosToLspPos(x_1, x_3); -x_5 = lean_ctor_get(x_2, 1); -x_6 = l_Lean_FileMap_utf8PosToLspPos(x_1, x_5); -x_7 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_7, 0, x_4); -lean_ctor_set(x_7, 1, x_6); -return x_7; -} -} -LEAN_EXPORT lean_object* l_Lean_FileMap_utf8RangeToLspRange___boxed(lean_object* x_1, lean_object* x_2) { -_start: -{ -lean_object* x_3; -x_3 = l_Lean_FileMap_utf8RangeToLspRange(x_1, x_2); -lean_dec(x_2); -lean_dec(x_1); -return x_3; -} -} static lean_object* _init_l_Lean_Meta_Tactic_TryThis_tryThisWidget___closed__1() { _start: { @@ -626,7 +600,7 @@ x_4 = l_Lean_Widget_addBuiltinModule(x_2, x_3, x_1); return x_4; } } -static lean_object* _init_l_Lean_Meta_Tactic_TryThis_instImpl____x40_Lean_Meta_Tactic_TryThis___hyg_65____closed__1() { +static lean_object* _init_l_Lean_Meta_Tactic_TryThis_instImpl____x40_Lean_Meta_Tactic_TryThis___hyg_50____closed__1() { _start: { lean_object* x_1; @@ -634,7 +608,7 @@ x_1 = lean_mk_string_from_bytes("TryThisInfo", 11); return x_1; } } -static lean_object* _init_l_Lean_Meta_Tactic_TryThis_instImpl____x40_Lean_Meta_Tactic_TryThis___hyg_65____closed__2() { +static lean_object* _init_l_Lean_Meta_Tactic_TryThis_instImpl____x40_Lean_Meta_Tactic_TryThis___hyg_50____closed__2() { _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; @@ -642,16 +616,16 @@ x_1 = l___regBuiltin_Lean_Meta_Tactic_TryThis_tryThisWidget___closed__1; x_2 = l___regBuiltin_Lean_Meta_Tactic_TryThis_tryThisWidget___closed__2; x_3 = l___regBuiltin_Lean_Meta_Tactic_TryThis_tryThisWidget___closed__3; x_4 = l___regBuiltin_Lean_Meta_Tactic_TryThis_tryThisWidget___closed__4; -x_5 = l_Lean_Meta_Tactic_TryThis_instImpl____x40_Lean_Meta_Tactic_TryThis___hyg_65____closed__1; +x_5 = l_Lean_Meta_Tactic_TryThis_instImpl____x40_Lean_Meta_Tactic_TryThis___hyg_50____closed__1; x_6 = l_Lean_Name_mkStr5(x_1, x_2, x_3, x_4, x_5); return x_6; } } -static lean_object* _init_l_Lean_Meta_Tactic_TryThis_instImpl____x40_Lean_Meta_Tactic_TryThis___hyg_65_() { +static lean_object* _init_l_Lean_Meta_Tactic_TryThis_instImpl____x40_Lean_Meta_Tactic_TryThis___hyg_50_() { _start: { lean_object* x_1; -x_1 = l_Lean_Meta_Tactic_TryThis_instImpl____x40_Lean_Meta_Tactic_TryThis___hyg_65____closed__2; +x_1 = l_Lean_Meta_Tactic_TryThis_instImpl____x40_Lean_Meta_Tactic_TryThis___hyg_50____closed__2; return x_1; } } @@ -659,7 +633,7 @@ static lean_object* _init_l_Lean_Meta_Tactic_TryThis_instTypeNameTryThisInfo() { _start: { lean_object* x_1; -x_1 = l_Lean_Meta_Tactic_TryThis_instImpl____x40_Lean_Meta_Tactic_TryThis___hyg_65_; +x_1 = l_Lean_Meta_Tactic_TryThis_instImpl____x40_Lean_Meta_Tactic_TryThis___hyg_50_; return x_1; } } @@ -2920,7 +2894,7 @@ lean_dec(x_2); return x_7; } } -static lean_object* _init_l_Lean_Meta_Tactic_TryThis_initFn____x40_Lean_Meta_Tactic_TryThis___hyg_776____closed__1() { +static lean_object* _init_l_Lean_Meta_Tactic_TryThis_initFn____x40_Lean_Meta_Tactic_TryThis___hyg_761____closed__1() { _start: { lean_object* x_1; @@ -2928,7 +2902,7 @@ x_1 = lean_mk_string_from_bytes("format", 6); return x_1; } } -static lean_object* _init_l_Lean_Meta_Tactic_TryThis_initFn____x40_Lean_Meta_Tactic_TryThis___hyg_776____closed__2() { +static lean_object* _init_l_Lean_Meta_Tactic_TryThis_initFn____x40_Lean_Meta_Tactic_TryThis___hyg_761____closed__2() { _start: { lean_object* x_1; @@ -2936,17 +2910,17 @@ x_1 = lean_mk_string_from_bytes("inputWidth", 10); return x_1; } } -static lean_object* _init_l_Lean_Meta_Tactic_TryThis_initFn____x40_Lean_Meta_Tactic_TryThis___hyg_776____closed__3() { +static lean_object* _init_l_Lean_Meta_Tactic_TryThis_initFn____x40_Lean_Meta_Tactic_TryThis___hyg_761____closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Meta_Tactic_TryThis_initFn____x40_Lean_Meta_Tactic_TryThis___hyg_776____closed__1; -x_2 = l_Lean_Meta_Tactic_TryThis_initFn____x40_Lean_Meta_Tactic_TryThis___hyg_776____closed__2; +x_1 = l_Lean_Meta_Tactic_TryThis_initFn____x40_Lean_Meta_Tactic_TryThis___hyg_761____closed__1; +x_2 = l_Lean_Meta_Tactic_TryThis_initFn____x40_Lean_Meta_Tactic_TryThis___hyg_761____closed__2; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Meta_Tactic_TryThis_initFn____x40_Lean_Meta_Tactic_TryThis___hyg_776____closed__4() { +static lean_object* _init_l_Lean_Meta_Tactic_TryThis_initFn____x40_Lean_Meta_Tactic_TryThis___hyg_761____closed__4() { _start: { lean_object* x_1; @@ -2954,7 +2928,7 @@ x_1 = lean_mk_string_from_bytes("", 0); return x_1; } } -static lean_object* _init_l_Lean_Meta_Tactic_TryThis_initFn____x40_Lean_Meta_Tactic_TryThis___hyg_776____closed__5() { +static lean_object* _init_l_Lean_Meta_Tactic_TryThis_initFn____x40_Lean_Meta_Tactic_TryThis___hyg_761____closed__5() { _start: { lean_object* x_1; @@ -2962,13 +2936,13 @@ x_1 = lean_mk_string_from_bytes("ideal input width", 17); return x_1; } } -static lean_object* _init_l_Lean_Meta_Tactic_TryThis_initFn____x40_Lean_Meta_Tactic_TryThis___hyg_776____closed__6() { +static lean_object* _init_l_Lean_Meta_Tactic_TryThis_initFn____x40_Lean_Meta_Tactic_TryThis___hyg_761____closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; x_1 = lean_unsigned_to_nat(100u); -x_2 = l_Lean_Meta_Tactic_TryThis_initFn____x40_Lean_Meta_Tactic_TryThis___hyg_776____closed__4; -x_3 = l_Lean_Meta_Tactic_TryThis_initFn____x40_Lean_Meta_Tactic_TryThis___hyg_776____closed__5; +x_2 = l_Lean_Meta_Tactic_TryThis_initFn____x40_Lean_Meta_Tactic_TryThis___hyg_761____closed__4; +x_3 = l_Lean_Meta_Tactic_TryThis_initFn____x40_Lean_Meta_Tactic_TryThis___hyg_761____closed__5; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -2976,7 +2950,7 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_Lean_Meta_Tactic_TryThis_initFn____x40_Lean_Meta_Tactic_TryThis___hyg_776____closed__7() { +static lean_object* _init_l_Lean_Meta_Tactic_TryThis_initFn____x40_Lean_Meta_Tactic_TryThis___hyg_761____closed__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; lean_object* x_7; @@ -2984,19 +2958,19 @@ x_1 = l___regBuiltin_Lean_Meta_Tactic_TryThis_tryThisWidget___closed__1; x_2 = l___regBuiltin_Lean_Meta_Tactic_TryThis_tryThisWidget___closed__2; x_3 = l___regBuiltin_Lean_Meta_Tactic_TryThis_tryThisWidget___closed__3; x_4 = l___regBuiltin_Lean_Meta_Tactic_TryThis_tryThisWidget___closed__4; -x_5 = l_Lean_Meta_Tactic_TryThis_initFn____x40_Lean_Meta_Tactic_TryThis___hyg_776____closed__1; -x_6 = l_Lean_Meta_Tactic_TryThis_initFn____x40_Lean_Meta_Tactic_TryThis___hyg_776____closed__2; +x_5 = l_Lean_Meta_Tactic_TryThis_initFn____x40_Lean_Meta_Tactic_TryThis___hyg_761____closed__1; +x_6 = l_Lean_Meta_Tactic_TryThis_initFn____x40_Lean_Meta_Tactic_TryThis___hyg_761____closed__2; x_7 = l_Lean_Name_mkStr6(x_1, x_2, x_3, x_4, x_5, x_6); return x_7; } } -LEAN_EXPORT lean_object* l_Lean_Meta_Tactic_TryThis_initFn____x40_Lean_Meta_Tactic_TryThis___hyg_776_(lean_object* x_1) { +LEAN_EXPORT lean_object* l_Lean_Meta_Tactic_TryThis_initFn____x40_Lean_Meta_Tactic_TryThis___hyg_761_(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_2 = l_Lean_Meta_Tactic_TryThis_initFn____x40_Lean_Meta_Tactic_TryThis___hyg_776____closed__3; -x_3 = l_Lean_Meta_Tactic_TryThis_initFn____x40_Lean_Meta_Tactic_TryThis___hyg_776____closed__6; -x_4 = l_Lean_Meta_Tactic_TryThis_initFn____x40_Lean_Meta_Tactic_TryThis___hyg_776____closed__7; +x_2 = l_Lean_Meta_Tactic_TryThis_initFn____x40_Lean_Meta_Tactic_TryThis___hyg_761____closed__3; +x_3 = l_Lean_Meta_Tactic_TryThis_initFn____x40_Lean_Meta_Tactic_TryThis___hyg_761____closed__6; +x_4 = l_Lean_Meta_Tactic_TryThis_initFn____x40_Lean_Meta_Tactic_TryThis___hyg_761____closed__7; x_5 = l_Lean_Option_register___at_Lean_initFn____x40_Lean_Util_RecDepth___hyg_6____spec__1(x_2, x_3, x_4, x_1); return x_5; } @@ -5381,7 +5355,7 @@ static lean_object* _init_l_Lean_Meta_Tactic_TryThis_addSuggestion___closed__1() _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Meta_Tactic_TryThis_initFn____x40_Lean_Meta_Tactic_TryThis___hyg_776____closed__4; +x_1 = l_Lean_Meta_Tactic_TryThis_initFn____x40_Lean_Meta_Tactic_TryThis___hyg_761____closed__4; x_2 = l_Lean_stringToMessageData(x_1); return x_2; } @@ -7089,7 +7063,7 @@ static lean_object* _init_l_Lean_Meta_Tactic_TryThis_addHaveSuggestion___closed_ _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Meta_Tactic_TryThis_initFn____x40_Lean_Meta_Tactic_TryThis___hyg_776____closed__4; +x_1 = l_Lean_Meta_Tactic_TryThis_initFn____x40_Lean_Meta_Tactic_TryThis___hyg_761____closed__4; x_2 = l_String_toSubstring_x27(x_1); return x_2; } @@ -8481,7 +8455,7 @@ static lean_object* _init_l_List_mapTR_loop___at_Lean_Meta_Tactic_TryThis_addRew _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Meta_Tactic_TryThis_initFn____x40_Lean_Meta_Tactic_TryThis___hyg_776____closed__4; +x_1 = l_Lean_Meta_Tactic_TryThis_initFn____x40_Lean_Meta_Tactic_TryThis___hyg_761____closed__4; x_2 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; @@ -8786,7 +8760,7 @@ lean_ctor_set(x_24, 1, x_23); if (lean_obj_tag(x_5) == 0) { lean_object* x_25; lean_object* x_26; lean_object* x_27; -x_25 = l_Lean_Meta_Tactic_TryThis_initFn____x40_Lean_Meta_Tactic_TryThis___hyg_776____closed__4; +x_25 = l_Lean_Meta_Tactic_TryThis_initFn____x40_Lean_Meta_Tactic_TryThis___hyg_761____closed__4; x_26 = lean_box(0); x_27 = l_Lean_Meta_Tactic_TryThis_addRewriteSuggestion___lambda__1(x_6, x_2, x_3, x_25, x_24, x_26, x_7, x_8, x_9, x_10, x_11, x_12, x_13); lean_dec(x_10); @@ -8831,7 +8805,7 @@ x_40 = lean_format_pretty(x_36, x_38, x_39, x_39); x_41 = l_Lean_Meta_Tactic_TryThis_addRewriteSuggestion___lambda__2___closed__8; x_42 = lean_string_append(x_41, x_40); lean_dec(x_40); -x_43 = l_Lean_Meta_Tactic_TryThis_initFn____x40_Lean_Meta_Tactic_TryThis___hyg_776____closed__4; +x_43 = l_Lean_Meta_Tactic_TryThis_initFn____x40_Lean_Meta_Tactic_TryThis___hyg_761____closed__4; x_44 = lean_string_append(x_42, x_43); x_45 = lean_string_append(x_43, x_44); lean_dec(x_44); @@ -8898,7 +8872,7 @@ lean_ctor_set(x_60, 1, x_59); if (lean_obj_tag(x_5) == 0) { lean_object* x_61; lean_object* x_62; lean_object* x_63; -x_61 = l_Lean_Meta_Tactic_TryThis_initFn____x40_Lean_Meta_Tactic_TryThis___hyg_776____closed__4; +x_61 = l_Lean_Meta_Tactic_TryThis_initFn____x40_Lean_Meta_Tactic_TryThis___hyg_761____closed__4; x_62 = lean_box(0); x_63 = l_Lean_Meta_Tactic_TryThis_addRewriteSuggestion___lambda__1(x_6, x_2, x_3, x_61, x_60, x_62, x_7, x_8, x_9, x_10, x_11, x_12, x_13); lean_dec(x_10); @@ -8943,7 +8917,7 @@ x_76 = lean_format_pretty(x_72, x_74, x_75, x_75); x_77 = l_Lean_Meta_Tactic_TryThis_addRewriteSuggestion___lambda__2___closed__8; x_78 = lean_string_append(x_77, x_76); lean_dec(x_76); -x_79 = l_Lean_Meta_Tactic_TryThis_initFn____x40_Lean_Meta_Tactic_TryThis___hyg_776____closed__4; +x_79 = l_Lean_Meta_Tactic_TryThis_initFn____x40_Lean_Meta_Tactic_TryThis___hyg_761____closed__4; x_80 = lean_string_append(x_78, x_79); x_81 = lean_string_append(x_79, x_80); lean_dec(x_80); @@ -9379,6 +9353,7 @@ return x_14; lean_object* initialize_Lean_Server_CodeActions(uint8_t builtin, lean_object*); lean_object* initialize_Lean_Widget_UserWidget(uint8_t builtin, lean_object*); lean_object* initialize_Lean_Data_Json_Elab(uint8_t builtin, lean_object*); +lean_object* initialize_Lean_Data_Lsp_Utf16(uint8_t builtin, lean_object*); static bool _G_initialized = false; LEAN_EXPORT lean_object* initialize_Lean_Meta_Tactic_TryThis(uint8_t builtin, lean_object* w) { lean_object * res; @@ -9393,6 +9368,9 @@ lean_dec_ref(res); res = initialize_Lean_Data_Json_Elab(builtin, lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +res = initialize_Lean_Data_Lsp_Utf16(builtin, lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); l_Lean_Meta_Tactic_TryThis_tryThisWidget___closed__1 = _init_l_Lean_Meta_Tactic_TryThis_tryThisWidget___closed__1(); lean_mark_persistent(l_Lean_Meta_Tactic_TryThis_tryThisWidget___closed__1); l_Lean_Meta_Tactic_TryThis_tryThisWidget___closed__2 = _init_l_Lean_Meta_Tactic_TryThis_tryThisWidget___closed__2(); @@ -9417,12 +9395,12 @@ lean_mark_persistent(l___regBuiltin_Lean_Meta_Tactic_TryThis_tryThisWidget___clo if (builtin) {res = l___regBuiltin_Lean_Meta_Tactic_TryThis_tryThisWidget(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}l_Lean_Meta_Tactic_TryThis_instImpl____x40_Lean_Meta_Tactic_TryThis___hyg_65____closed__1 = _init_l_Lean_Meta_Tactic_TryThis_instImpl____x40_Lean_Meta_Tactic_TryThis___hyg_65____closed__1(); -lean_mark_persistent(l_Lean_Meta_Tactic_TryThis_instImpl____x40_Lean_Meta_Tactic_TryThis___hyg_65____closed__1); -l_Lean_Meta_Tactic_TryThis_instImpl____x40_Lean_Meta_Tactic_TryThis___hyg_65____closed__2 = _init_l_Lean_Meta_Tactic_TryThis_instImpl____x40_Lean_Meta_Tactic_TryThis___hyg_65____closed__2(); -lean_mark_persistent(l_Lean_Meta_Tactic_TryThis_instImpl____x40_Lean_Meta_Tactic_TryThis___hyg_65____closed__2); -l_Lean_Meta_Tactic_TryThis_instImpl____x40_Lean_Meta_Tactic_TryThis___hyg_65_ = _init_l_Lean_Meta_Tactic_TryThis_instImpl____x40_Lean_Meta_Tactic_TryThis___hyg_65_(); -lean_mark_persistent(l_Lean_Meta_Tactic_TryThis_instImpl____x40_Lean_Meta_Tactic_TryThis___hyg_65_); +}l_Lean_Meta_Tactic_TryThis_instImpl____x40_Lean_Meta_Tactic_TryThis___hyg_50____closed__1 = _init_l_Lean_Meta_Tactic_TryThis_instImpl____x40_Lean_Meta_Tactic_TryThis___hyg_50____closed__1(); +lean_mark_persistent(l_Lean_Meta_Tactic_TryThis_instImpl____x40_Lean_Meta_Tactic_TryThis___hyg_50____closed__1); +l_Lean_Meta_Tactic_TryThis_instImpl____x40_Lean_Meta_Tactic_TryThis___hyg_50____closed__2 = _init_l_Lean_Meta_Tactic_TryThis_instImpl____x40_Lean_Meta_Tactic_TryThis___hyg_50____closed__2(); +lean_mark_persistent(l_Lean_Meta_Tactic_TryThis_instImpl____x40_Lean_Meta_Tactic_TryThis___hyg_50____closed__2); +l_Lean_Meta_Tactic_TryThis_instImpl____x40_Lean_Meta_Tactic_TryThis___hyg_50_ = _init_l_Lean_Meta_Tactic_TryThis_instImpl____x40_Lean_Meta_Tactic_TryThis___hyg_50_(); +lean_mark_persistent(l_Lean_Meta_Tactic_TryThis_instImpl____x40_Lean_Meta_Tactic_TryThis___hyg_50_); l_Lean_Meta_Tactic_TryThis_instTypeNameTryThisInfo = _init_l_Lean_Meta_Tactic_TryThis_instTypeNameTryThisInfo(); lean_mark_persistent(l_Lean_Meta_Tactic_TryThis_instTypeNameTryThisInfo); l_Std_Range_forIn_x27_loop___at_Lean_Meta_Tactic_TryThis_tryThisProvider___spec__1___closed__1 = _init_l_Std_Range_forIn_x27_loop___at_Lean_Meta_Tactic_TryThis_tryThisProvider___spec__1___closed__1(); @@ -9466,21 +9444,21 @@ l_Lean_Syntax_replaceM___at_Lean_Meta_Tactic_TryThis_replaceMVarsByUnderscores__ lean_mark_persistent(l_Lean_Syntax_replaceM___at_Lean_Meta_Tactic_TryThis_replaceMVarsByUnderscores___spec__1___rarg___closed__3); l_Lean_Syntax_replaceM___at_Lean_Meta_Tactic_TryThis_replaceMVarsByUnderscores___spec__1___rarg___closed__4 = _init_l_Lean_Syntax_replaceM___at_Lean_Meta_Tactic_TryThis_replaceMVarsByUnderscores___spec__1___rarg___closed__4(); lean_mark_persistent(l_Lean_Syntax_replaceM___at_Lean_Meta_Tactic_TryThis_replaceMVarsByUnderscores___spec__1___rarg___closed__4); -l_Lean_Meta_Tactic_TryThis_initFn____x40_Lean_Meta_Tactic_TryThis___hyg_776____closed__1 = _init_l_Lean_Meta_Tactic_TryThis_initFn____x40_Lean_Meta_Tactic_TryThis___hyg_776____closed__1(); -lean_mark_persistent(l_Lean_Meta_Tactic_TryThis_initFn____x40_Lean_Meta_Tactic_TryThis___hyg_776____closed__1); -l_Lean_Meta_Tactic_TryThis_initFn____x40_Lean_Meta_Tactic_TryThis___hyg_776____closed__2 = _init_l_Lean_Meta_Tactic_TryThis_initFn____x40_Lean_Meta_Tactic_TryThis___hyg_776____closed__2(); -lean_mark_persistent(l_Lean_Meta_Tactic_TryThis_initFn____x40_Lean_Meta_Tactic_TryThis___hyg_776____closed__2); -l_Lean_Meta_Tactic_TryThis_initFn____x40_Lean_Meta_Tactic_TryThis___hyg_776____closed__3 = _init_l_Lean_Meta_Tactic_TryThis_initFn____x40_Lean_Meta_Tactic_TryThis___hyg_776____closed__3(); -lean_mark_persistent(l_Lean_Meta_Tactic_TryThis_initFn____x40_Lean_Meta_Tactic_TryThis___hyg_776____closed__3); -l_Lean_Meta_Tactic_TryThis_initFn____x40_Lean_Meta_Tactic_TryThis___hyg_776____closed__4 = _init_l_Lean_Meta_Tactic_TryThis_initFn____x40_Lean_Meta_Tactic_TryThis___hyg_776____closed__4(); -lean_mark_persistent(l_Lean_Meta_Tactic_TryThis_initFn____x40_Lean_Meta_Tactic_TryThis___hyg_776____closed__4); -l_Lean_Meta_Tactic_TryThis_initFn____x40_Lean_Meta_Tactic_TryThis___hyg_776____closed__5 = _init_l_Lean_Meta_Tactic_TryThis_initFn____x40_Lean_Meta_Tactic_TryThis___hyg_776____closed__5(); -lean_mark_persistent(l_Lean_Meta_Tactic_TryThis_initFn____x40_Lean_Meta_Tactic_TryThis___hyg_776____closed__5); -l_Lean_Meta_Tactic_TryThis_initFn____x40_Lean_Meta_Tactic_TryThis___hyg_776____closed__6 = _init_l_Lean_Meta_Tactic_TryThis_initFn____x40_Lean_Meta_Tactic_TryThis___hyg_776____closed__6(); -lean_mark_persistent(l_Lean_Meta_Tactic_TryThis_initFn____x40_Lean_Meta_Tactic_TryThis___hyg_776____closed__6); -l_Lean_Meta_Tactic_TryThis_initFn____x40_Lean_Meta_Tactic_TryThis___hyg_776____closed__7 = _init_l_Lean_Meta_Tactic_TryThis_initFn____x40_Lean_Meta_Tactic_TryThis___hyg_776____closed__7(); -lean_mark_persistent(l_Lean_Meta_Tactic_TryThis_initFn____x40_Lean_Meta_Tactic_TryThis___hyg_776____closed__7); -res = l_Lean_Meta_Tactic_TryThis_initFn____x40_Lean_Meta_Tactic_TryThis___hyg_776_(lean_io_mk_world()); +l_Lean_Meta_Tactic_TryThis_initFn____x40_Lean_Meta_Tactic_TryThis___hyg_761____closed__1 = _init_l_Lean_Meta_Tactic_TryThis_initFn____x40_Lean_Meta_Tactic_TryThis___hyg_761____closed__1(); +lean_mark_persistent(l_Lean_Meta_Tactic_TryThis_initFn____x40_Lean_Meta_Tactic_TryThis___hyg_761____closed__1); +l_Lean_Meta_Tactic_TryThis_initFn____x40_Lean_Meta_Tactic_TryThis___hyg_761____closed__2 = _init_l_Lean_Meta_Tactic_TryThis_initFn____x40_Lean_Meta_Tactic_TryThis___hyg_761____closed__2(); +lean_mark_persistent(l_Lean_Meta_Tactic_TryThis_initFn____x40_Lean_Meta_Tactic_TryThis___hyg_761____closed__2); +l_Lean_Meta_Tactic_TryThis_initFn____x40_Lean_Meta_Tactic_TryThis___hyg_761____closed__3 = _init_l_Lean_Meta_Tactic_TryThis_initFn____x40_Lean_Meta_Tactic_TryThis___hyg_761____closed__3(); +lean_mark_persistent(l_Lean_Meta_Tactic_TryThis_initFn____x40_Lean_Meta_Tactic_TryThis___hyg_761____closed__3); +l_Lean_Meta_Tactic_TryThis_initFn____x40_Lean_Meta_Tactic_TryThis___hyg_761____closed__4 = _init_l_Lean_Meta_Tactic_TryThis_initFn____x40_Lean_Meta_Tactic_TryThis___hyg_761____closed__4(); +lean_mark_persistent(l_Lean_Meta_Tactic_TryThis_initFn____x40_Lean_Meta_Tactic_TryThis___hyg_761____closed__4); +l_Lean_Meta_Tactic_TryThis_initFn____x40_Lean_Meta_Tactic_TryThis___hyg_761____closed__5 = _init_l_Lean_Meta_Tactic_TryThis_initFn____x40_Lean_Meta_Tactic_TryThis___hyg_761____closed__5(); +lean_mark_persistent(l_Lean_Meta_Tactic_TryThis_initFn____x40_Lean_Meta_Tactic_TryThis___hyg_761____closed__5); +l_Lean_Meta_Tactic_TryThis_initFn____x40_Lean_Meta_Tactic_TryThis___hyg_761____closed__6 = _init_l_Lean_Meta_Tactic_TryThis_initFn____x40_Lean_Meta_Tactic_TryThis___hyg_761____closed__6(); +lean_mark_persistent(l_Lean_Meta_Tactic_TryThis_initFn____x40_Lean_Meta_Tactic_TryThis___hyg_761____closed__6); +l_Lean_Meta_Tactic_TryThis_initFn____x40_Lean_Meta_Tactic_TryThis___hyg_761____closed__7 = _init_l_Lean_Meta_Tactic_TryThis_initFn____x40_Lean_Meta_Tactic_TryThis___hyg_761____closed__7(); +lean_mark_persistent(l_Lean_Meta_Tactic_TryThis_initFn____x40_Lean_Meta_Tactic_TryThis___hyg_761____closed__7); +res = l_Lean_Meta_Tactic_TryThis_initFn____x40_Lean_Meta_Tactic_TryThis___hyg_761_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; l_Lean_Meta_Tactic_TryThis_format_inputWidth = lean_io_result_get_value(res); lean_mark_persistent(l_Lean_Meta_Tactic_TryThis_format_inputWidth); diff --git a/stage0/stdlib/Lean/Meta/Transform.c b/stage0/stdlib/Lean/Meta/Transform.c index 9e777dc3c3..23657e5ba8 100644 --- a/stage0/stdlib/Lean/Meta/Transform.c +++ b/stage0/stdlib/Lean/Meta/Transform.c @@ -795,7 +795,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(1728u); +x_3 = lean_unsigned_to_nat(1747u); 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); @@ -933,7 +933,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(1708u); +x_3 = lean_unsigned_to_nat(1727u); 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); @@ -1071,7 +1071,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(1737u); +x_3 = lean_unsigned_to_nat(1756u); 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); @@ -1243,7 +1243,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(1671u); +x_3 = lean_unsigned_to_nat(1690u); 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); @@ -1315,7 +1315,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(1682u); +x_3 = lean_unsigned_to_nat(1701u); 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 e6c1c778ec..e07e83672c 100644 --- a/stage0/stdlib/Lean/Meta/WHNF.c +++ b/stage0/stdlib/Lean/Meta/WHNF.c @@ -14,7 +14,6 @@ extern "C" { #endif lean_object* l_Lean_Expr_const___override(lean_object*, lean_object*); -static lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_WHNF___hyg_9901____closed__3; LEAN_EXPORT lean_object* l_Lean_Meta_whnfHeadPred(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_whnfEasyCases___at_Lean_Meta_whnfImp___spec__1___lambda__1(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_reprProjReductionKind____x40_Lean_Meta_WHNF___hyg_3347____boxed(lean_object*, lean_object*); @@ -28,7 +27,6 @@ LEAN_EXPORT lean_object* l_Lean_Meta_reduceRecMatcher_x3f(lean_object*, lean_obj static lean_object* l_Lean_Meta_canUnfoldAtMatcher___closed__1; LEAN_EXPORT lean_object* l_Lean_Meta_reduceBinNatOp___lambda__6___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_mkNatLit(lean_object*); -static lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_WHNF___hyg_9901____closed__5; 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*); @@ -36,6 +34,7 @@ static lean_object* l_Lean_Meta_unfoldDefinition_x3f___closed__1; 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*); +static lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_WHNF___hyg_9913____closed__2; static lean_object* l_Lean_Meta_reduceNat_x3f___closed__5; lean_object* lean_mk_empty_array_with_capacity(lean_object*); lean_object* l_Lean_mkAppN(lean_object*, lean_object*); @@ -54,8 +53,8 @@ static lean_object* l_Lean_Meta_canUnfoldAtMatcher___closed__8; LEAN_EXPORT lean_object* l___private_Lean_Meta_WHNF_0__Lean_Meta_toCtorWhenStructure___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_Meta_unfoldDefinition(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_Meta_getStuckMVar_x3f___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_Meta_initFn____x40_Lean_Meta_WHNF___hyg_9901____closed__10; LEAN_EXPORT lean_object* l_Lean_Meta_getStuckMVar_x3f___lambda__14(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_WHNF___hyg_9913____closed__1; lean_object* l_Lean_getExprMVarAssignment_x3f___at___private_Lean_Meta_Basic_0__Lean_Meta_isClassQuick_x3f___spec__1(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*); LEAN_EXPORT lean_object* l_Lean_Meta_getStuckMVar_x3f___lambda__8(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -87,6 +86,7 @@ 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*); static lean_object* l_Lean_getConstInfoCtor___at___private_Lean_Meta_WHNF_0__Lean_Meta_toCtorWhenStructure___spec__1___closed__4; static lean_object* l_Lean_Meta_markSmartUnfoldingMatchAlt___closed__2; +LEAN_EXPORT lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_WHNF___hyg_9913_(lean_object*); lean_object* l_Lean_Expr_sort___override(lean_object*); uint8_t lean_nat_dec_le(lean_object*, lean_object*); lean_object* lean_array_push(lean_object*, lean_object*); @@ -114,6 +114,7 @@ lean_object* l_Lean_Expr_proj___override(lean_object*, lean_object*, lean_object LEAN_EXPORT lean_object* l_Lean_throwError___at_Lean_Meta_reduceBoolNativeUnsafe___spec__3(lean_object*); lean_object* lean_array_fget(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_getStuckMVar_x3f___lambda__10(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_WHNF___hyg_9913____closed__3; LEAN_EXPORT lean_object* l_Lean_Meta_withLetDecl___at_Lean_Meta_smartUnfoldingReduce_x3f_go___spec__2(lean_object*); static lean_object* l_Lean_Meta_reduceBinNatOp___lambda__3___closed__8; LEAN_EXPORT lean_object* l_Lean_Meta_lambdaTelescope___at_Lean_Meta_smartUnfoldingReduce_x3f_go___spec__1___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -125,6 +126,7 @@ LEAN_EXPORT uint8_t l_Lean_Meta_instInhabitedProjReductionKind; LEAN_EXPORT uint8_t l___private_Lean_Meta_WHNF_0__Lean_Meta_isWFRec(lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_getStuckMVar_x3f___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_canUnfoldAtMatcher___closed__28; +static lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_WHNF___hyg_9913____closed__9; lean_object* lean_environment_find(lean_object*, lean_object*); extern lean_object* l_Lean_matchPatternAttr; LEAN_EXPORT lean_object* l_Lean_throwError___at___private_Lean_Meta_WHNF_0__Lean_Meta_toCtorWhenStructure___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -181,8 +183,10 @@ LEAN_EXPORT lean_object* l_Lean_Meta_withLetDecl___at_Lean_Meta_smartUnfoldingRe static lean_object* l_Lean_Meta_reduceNat_x3f___closed__7; LEAN_EXPORT lean_object* l___private_Lean_Meta_WHNF_0__Lean_Meta_toCtorWhenStructure___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_getConstInfoCtor___at___private_Lean_Meta_WHNF_0__Lean_Meta_toCtorWhenStructure___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_WHNF___hyg_9913____closed__11; LEAN_EXPORT lean_object* l_Lean_Meta_smartUnfolding; static lean_object* l_Lean_Meta_canUnfoldAtMatcher___closed__6; +static lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_WHNF___hyg_9913____closed__8; lean_object* l_Nat_div___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_withNatValue___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_project_x3f(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -214,7 +218,6 @@ LEAN_EXPORT lean_object* l_Lean_Meta_getStuckMVar_x3f___lambda__11___boxed(lean_ static lean_object* l_Lean_Meta_whnfEasyCases___closed__4; lean_object* l___private_Lean_Expr_0__Lean_mkAppRangeAux(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Meta_reduceNat_x3f___closed__19; -static lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_WHNF___hyg_9901____closed__4; static lean_object* l_Lean_Meta_reduceRecMatcher_x3f___closed__1; LEAN_EXPORT lean_object* l___private_Lean_Meta_WHNF_0__Lean_Meta_reduceRec(lean_object*); static lean_object* l___private_Lean_Meta_WHNF_0__Lean_Meta_reprProjReductionKind____x40_Lean_Meta_WHNF___hyg_3347____closed__4; @@ -238,6 +241,7 @@ static lean_object* l_Lean_Meta_markSmartUnfoldingMatchAlt___closed__1; static lean_object* l___private_Lean_Meta_WHNF_0__Lean_Meta_reprProjReductionKind____x40_Lean_Meta_WHNF___hyg_3347____closed__18; static lean_object* l_Lean_Meta_canUnfoldAtMatcher___closed__16; LEAN_EXPORT lean_object* l_Lean_Meta_smartUnfoldingMatch_x3f___boxed(lean_object*); +static lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_WHNF___hyg_9913____closed__13; LEAN_EXPORT lean_object* l_Lean_Meta_reduceMatcher_x3f___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Meta_WHNF_0__Lean_Meta_cache___closed__2; uint8_t lean_is_aux_recursor(lean_object*, lean_object*); @@ -261,6 +265,7 @@ LEAN_EXPORT lean_object* l_Lean_Meta_getStuckMVar_x3f(lean_object*, lean_object* static lean_object* l_Lean_Meta_canUnfoldAtMatcher___closed__39; static lean_object* l_Lean_Meta_reduceNative_x3f___closed__10; LEAN_EXPORT lean_object* l_Lean_Meta_whnfEasyCases___at_Lean_Meta_whnfCore_go___spec__3___lambda__7(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_WHNF___hyg_9913____closed__6; LEAN_EXPORT lean_object* l_Lean_Meta_ProjReductionKind_noConfusion___rarg___lambda__1___boxed(lean_object*); static lean_object* l_Lean_Meta_reduceNat_x3f___closed__9; uint8_t l_Lean_Expr_isMVar(lean_object*); @@ -285,9 +290,9 @@ static lean_object* l_Lean_Meta_reduceNat_x3f___closed__20; static lean_object* l___private_Lean_Meta_WHNF_0__Lean_Meta_isWFRec___closed__5; lean_object* lean_st_ref_get(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_getStuckMVar_x3f___lambda__19(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_WHNF___hyg_9913____closed__5; static lean_object* l_Lean_Meta_canUnfoldAtMatcher___closed__31; static lean_object* l_Lean_Meta_canUnfoldAtMatcher___closed__35; -LEAN_EXPORT lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_WHNF___hyg_9901_(lean_object*); static lean_object* l_Lean_Meta_reduceBinNatOp___lambda__3___closed__1; static lean_object* l_Lean_Meta_ProjReductionKind_noConfusion___rarg___closed__1; LEAN_EXPORT lean_object* l_Lean_Meta_withNatValue(lean_object*); @@ -300,13 +305,11 @@ lean_object* l_Lean_Name_num___override(lean_object*, lean_object*); LEAN_EXPORT uint8_t l_Lean_Meta_instDecidableEqProjReductionKind(uint8_t, uint8_t); lean_object* l_Nat_beq___boxed(lean_object*, lean_object*); static lean_object* l_Lean_Meta_whnfEasyCases___at_Lean_Meta_whnfCore_go___spec__3___closed__1; -static lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_WHNF___hyg_9901____closed__13; static lean_object* l_Lean_Meta_reduceNat_x3f___closed__26; lean_object* l_Lean_getStructureInfo_x3f(lean_object*, lean_object*); static lean_object* l_Lean_Meta_canUnfoldAtMatcher___closed__37; static lean_object* l_Lean_Meta_unfoldDefinition___closed__3; LEAN_EXPORT lean_object* l_Lean_Meta_whnfEasyCases___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_Meta_initFn____x40_Lean_Meta_WHNF___hyg_9901____closed__8; static lean_object* l_Lean_getProjectionFnInfo_x3f___at_Lean_Meta_getStuckMVar_x3f___spec__1___closed__1; extern lean_object* l_Lean_levelZero; lean_object* l___private_Lean_Meta_Basic_0__Lean_Meta_withNewMCtxDepthImp___rarg(uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -349,7 +352,6 @@ lean_object* l___private_Init_Util_0__mkPanicMessageWithDecl(lean_object*, lean_ static lean_object* l_Lean_Meta_canUnfoldAtMatcher___closed__17; lean_object* l_Nat_mul___boxed(lean_object*, lean_object*); static lean_object* l___private_Lean_Meta_WHNF_0__Lean_Meta_cached_x3f___closed__1; -static lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_WHNF___hyg_9901____closed__7; static lean_object* l___private_Lean_Meta_WHNF_0__Lean_Meta_reprProjReductionKind____x40_Lean_Meta_WHNF___hyg_3347____closed__13; static lean_object* l___private_Lean_Meta_WHNF_0__Lean_Meta_reprProjReductionKind____x40_Lean_Meta_WHNF___hyg_3347____closed__20; static lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_WHNF___hyg_33____closed__8; @@ -370,7 +372,6 @@ static lean_object* l_Lean_Meta_reduceBinNatOp___lambda__3___closed__12; lean_object* l_Lean_RecursorVal_getInduct(lean_object*); lean_object* l_Nat_add___boxed(lean_object*, lean_object*); static lean_object* l_Lean_Meta_reduceBinNatOp___lambda__3___closed__4; -static lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_WHNF___hyg_9901____closed__9; LEAN_EXPORT lean_object* l_Lean_Meta_withNewMCtxDepth___at___private_Lean_Meta_WHNF_0__Lean_Meta_toCtorWhenK___spec__1___rarg(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_instInhabitedProjectionFunctionInfo; lean_object* l_Lean_Meta_instInhabitedMetaM___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -385,11 +386,13 @@ lean_object* l_Lean_MessageData_ofExpr(lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_whnfEasyCases___at_Lean_Meta_whnfCore_go___spec__3___lambda__2(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_canUnfoldAtMatcher___closed__36; LEAN_EXPORT lean_object* l___private_Lean_Meta_WHNF_0__Lean_Meta_isQuotRecStuck_x3f(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Meta_canUnfoldAtMatcher___closed__41; lean_object* l_Lean_Meta_getConfig(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Expr_isConstructorApp(lean_object*, lean_object*); LEAN_EXPORT uint8_t l_Lean_Meta_WhnfCoreConfig_zetaDelta___default; lean_object* l_Lean_Expr_toCtorIfLit(lean_object*); static lean_object* l_Lean_Meta_whnfEasyCases___closed__2; +uint8_t l_Lean_LocalDecl_isImplementationDetail(lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_whnfEasyCases___at_Lean_Meta_whnfCore_go___spec__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_reduceBinNatOp___lambda__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_reduceRecMatcher_x3f___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -424,8 +427,8 @@ LEAN_EXPORT lean_object* l_Lean_Meta_reduceBinNatPred___lambda__3(lean_object*, LEAN_EXPORT lean_object* l_Lean_Meta_getStuckMVar_x3f___lambda__5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Meta_WHNF_0__Lean_Meta_reprProjReductionKind____x40_Lean_Meta_WHNF___hyg_3347____closed__11; LEAN_EXPORT lean_object* l_Lean_evalConstCheck___at_Lean_Meta_reduceBoolNativeUnsafe___spec__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_WHNF___hyg_9913____closed__12; static lean_object* l_Lean_Meta_whnfHeadPred___lambda__1___closed__1; -static lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_WHNF___hyg_9901____closed__11; LEAN_EXPORT lean_object* l_Lean_Meta_ProjReductionKind_toCtorIdx(uint8_t); LEAN_EXPORT lean_object* l_Lean_Meta_getStuckMVar_x3f___lambda__14___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Meta_canUnfoldAtMatcher___closed__12; @@ -450,6 +453,7 @@ lean_object* l_Lean_instantiateMVars___at___private_Lean_Meta_Basic_0__Lean_Meta lean_object* l_Lean_mkRawNatLit(lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_getStuckMVar_x3f___lambda__1___boxed(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_getRecRuleFor___boxed(lean_object*, lean_object*); +static lean_object* l_Lean_Meta_canUnfoldAtMatcher___closed__40; LEAN_EXPORT lean_object* l___private_Lean_Meta_WHNF_0__Lean_Meta_deltaBetaDefinition___at_Lean_Meta_unfoldDefinition_x3f___spec__3(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* l_Lean_getExprMVarAssignment_x3f___rarg(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_reduceBinNatPred___lambda__5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -463,14 +467,13 @@ lean_object* l_Array_shrink___rarg(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_reduceBinNatPred___lambda__6(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_WHNF_0__Lean_Meta_reprProjReductionKind____x40_Lean_Meta_WHNF___hyg_3347____closed__7; LEAN_EXPORT lean_object* l___private_Lean_Meta_WHNF_0__Lean_Meta_mkNullaryCtor___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_WHNF___hyg_9901____closed__12; LEAN_EXPORT lean_object* l_Lean_Meta_unfoldDefinition_x3f(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_WHNF___hyg_9901____closed__2; uint8_t l_Lean_Expr_isConstOf(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_reduceBinNatOp___lambda__5(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_Meta_reduceBoolNativeUnsafe___spec__3___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_Meta_getStuckMVar_x3f___spec__8(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_Lean_Meta_instDecidableEqProjReductionKind___boxed(lean_object*, lean_object*); +static lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_WHNF___hyg_9913____closed__4; 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_Lean_Meta_canUnfoldAtMatcher___closed__32; static lean_object* l_Lean_Meta_reduceNative_x3f___closed__5; @@ -522,7 +525,9 @@ LEAN_EXPORT lean_object* l___private_Lean_Meta_WHNF_0__Lean_Meta_deltaBetaDefini static lean_object* l_Lean_Meta_canUnfoldAtMatcher___closed__9; lean_object* l_Lean_PersistentHashMap_find_x3f___at_Lean_getDelayedMVarAssignment_x3f___spec__1(lean_object*, lean_object*); lean_object* l_Lean_PersistentHashMap_find_x3f___at___private_Lean_Meta_InferType_0__Lean_Meta_checkInferTypeCache___spec__1(lean_object*, lean_object*); +static lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_WHNF___hyg_9913____closed__10; static lean_object* l_Lean_Meta_reduceNative_x3f___closed__12; +static lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_WHNF___hyg_9913____closed__7; extern lean_object* l_Lean_noConfusionExt; static lean_object* l_Lean_Meta_reduceBoolNativeUnsafe___closed__2; LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_Meta_reduceMatcher_x3f___spec__2___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -532,7 +537,6 @@ lean_object* l_Lean_isIrreducible___at___private_Lean_Meta_GetUnfoldableConst_0_ LEAN_EXPORT lean_object* l_Lean_Meta_getStuckMVar_x3f___lambda__6(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); size_t lean_usize_add(size_t, size_t); LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_Meta_getStuckMVar_x3f___spec__3(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_Meta_initFn____x40_Lean_Meta_WHNF___hyg_9901____closed__6; static lean_object* l_Lean_Meta_canUnfoldAtMatcher___closed__2; LEAN_EXPORT lean_object* l_Lean_Meta_whnfHeadPred___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Expr_hasFVar(lean_object*); @@ -553,7 +557,6 @@ LEAN_EXPORT lean_object* l___private_Lean_Meta_WHNF_0__Lean_Meta_mkNullaryCtor(l lean_object* l_Lean_addTrace___at_Lean_Meta_processPostponed_loop___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_smartUnfoldingMatch_x3f(lean_object*); lean_object* l_Lean_Name_mkStr4(lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_WHNF___hyg_9901____closed__1; static lean_object* l_Lean_Meta_reduceNat_x3f___closed__14; static lean_object* l_Lean_Meta_reduceNat_x3f___closed__17; static lean_object* l_Lean_Meta_canUnfoldAtMatcher___closed__22; @@ -14383,53 +14386,93 @@ x_20 = lean_ctor_get_uint8(x_3, 4); if (x_20 == 0) { uint8_t x_21; +x_21 = !lean_is_exclusive(x_14); +if (x_21 == 0) +{ +lean_object* x_22; lean_object* x_23; lean_object* x_24; uint8_t x_25; +x_22 = lean_ctor_get(x_14, 1); +x_23 = lean_ctor_get(x_14, 0); +lean_dec(x_23); +x_24 = lean_ctor_get(x_15, 4); +lean_inc(x_24); +x_25 = l_Lean_LocalDecl_isImplementationDetail(x_15); lean_dec(x_15); +if (x_25 == 0) +{ +lean_dec(x_24); lean_dec(x_13); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_2); -x_21 = !lean_is_exclusive(x_14); -if (x_21 == 0) -{ -lean_object* x_22; -x_22 = lean_ctor_get(x_14, 0); -lean_dec(x_22); lean_ctor_set(x_14, 0, x_1); return x_14; } else { -lean_object* x_23; lean_object* x_24; -x_23 = lean_ctor_get(x_14, 1); -lean_inc(x_23); -lean_dec(x_14); -x_24 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_24, 0, x_1); -lean_ctor_set(x_24, 1, x_23); -return x_24; -} -} -else -{ -lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; +lean_object* x_26; lean_object* x_27; +lean_free_object(x_14); lean_dec(x_1); -x_25 = lean_ctor_get(x_14, 1); -lean_inc(x_25); +x_26 = lean_box(0); +x_27 = l_Lean_Meta_whnfEasyCases___lambda__2(x_24, x_2, x_3, x_13, x_26, x_4, x_5, x_6, x_7, x_22); +return x_27; +} +} +else +{ +lean_object* x_28; lean_object* x_29; uint8_t x_30; +x_28 = lean_ctor_get(x_14, 1); +lean_inc(x_28); lean_dec(x_14); -x_26 = lean_ctor_get(x_15, 4); -lean_inc(x_26); +x_29 = lean_ctor_get(x_15, 4); +lean_inc(x_29); +x_30 = l_Lean_LocalDecl_isImplementationDetail(x_15); lean_dec(x_15); -x_27 = lean_box(0); -x_28 = l_Lean_Meta_whnfEasyCases___lambda__2(x_26, x_2, x_3, x_13, x_27, x_4, x_5, x_6, x_7, x_25); -return x_28; +if (x_30 == 0) +{ +lean_object* x_31; +lean_dec(x_29); +lean_dec(x_13); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_2); +x_31 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_31, 0, x_1); +lean_ctor_set(x_31, 1, x_28); +return x_31; +} +else +{ +lean_object* x_32; lean_object* x_33; +lean_dec(x_1); +x_32 = lean_box(0); +x_33 = l_Lean_Meta_whnfEasyCases___lambda__2(x_29, x_2, x_3, x_13, x_32, x_4, x_5, x_6, x_7, x_28); +return x_33; } } } else { -uint8_t x_29; +lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; +lean_dec(x_1); +x_34 = lean_ctor_get(x_14, 1); +lean_inc(x_34); +lean_dec(x_14); +x_35 = lean_ctor_get(x_15, 4); +lean_inc(x_35); +lean_dec(x_15); +x_36 = lean_box(0); +x_37 = l_Lean_Meta_whnfEasyCases___lambda__2(x_35, x_2, x_3, x_13, x_36, x_4, x_5, x_6, x_7, x_34); +return x_37; +} +} +} +else +{ +uint8_t x_38; lean_dec(x_13); lean_dec(x_7); lean_dec(x_6); @@ -14437,162 +14480,162 @@ lean_dec(x_5); lean_dec(x_4); lean_dec(x_2); lean_dec(x_1); -x_29 = !lean_is_exclusive(x_14); -if (x_29 == 0) +x_38 = !lean_is_exclusive(x_14); +if (x_38 == 0) { return x_14; } else { -lean_object* x_30; lean_object* x_31; lean_object* x_32; -x_30 = lean_ctor_get(x_14, 0); -x_31 = lean_ctor_get(x_14, 1); -lean_inc(x_31); -lean_inc(x_30); +lean_object* x_39; lean_object* x_40; lean_object* x_41; +x_39 = lean_ctor_get(x_14, 0); +x_40 = lean_ctor_get(x_14, 1); +lean_inc(x_40); +lean_inc(x_39); lean_dec(x_14); -x_32 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_32, 0, x_30); -lean_ctor_set(x_32, 1, x_31); -return x_32; +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; } } } case 2: { -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_1, 0); -lean_inc(x_33); -x_34 = l_Lean_Meta_instMonadMetaM; -x_35 = l_Lean_Meta_instMonadMCtxMetaM; -x_36 = l_Lean_getExprMVarAssignment_x3f___rarg(x_34, x_35, x_33); +lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; +x_42 = lean_ctor_get(x_1, 0); +lean_inc(x_42); +x_43 = l_Lean_Meta_instMonadMetaM; +x_44 = l_Lean_Meta_instMonadMCtxMetaM; +x_45 = l_Lean_getExprMVarAssignment_x3f___rarg(x_43, x_44, x_42); lean_inc(x_7); lean_inc(x_6); lean_inc(x_5); lean_inc(x_4); -x_37 = lean_apply_5(x_36, x_4, x_5, x_6, x_7, x_8); -if (lean_obj_tag(x_37) == 0) +x_46 = lean_apply_5(x_45, x_4, x_5, x_6, x_7, x_8); +if (lean_obj_tag(x_46) == 0) { -lean_object* x_38; -x_38 = lean_ctor_get(x_37, 0); -lean_inc(x_38); -if (lean_obj_tag(x_38) == 0) +lean_object* x_47; +x_47 = lean_ctor_get(x_46, 0); +lean_inc(x_47); +if (lean_obj_tag(x_47) == 0) { -uint8_t x_39; +uint8_t x_48; lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_2); -x_39 = !lean_is_exclusive(x_37); -if (x_39 == 0) +x_48 = !lean_is_exclusive(x_46); +if (x_48 == 0) { -lean_object* x_40; -x_40 = lean_ctor_get(x_37, 0); -lean_dec(x_40); -lean_ctor_set(x_37, 0, x_1); -return x_37; +lean_object* x_49; +x_49 = lean_ctor_get(x_46, 0); +lean_dec(x_49); +lean_ctor_set(x_46, 0, x_1); +return x_46; } else { -lean_object* x_41; lean_object* x_42; -x_41 = lean_ctor_get(x_37, 1); -lean_inc(x_41); -lean_dec(x_37); -x_42 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_42, 0, x_1); -lean_ctor_set(x_42, 1, x_41); -return x_42; +lean_object* x_50; lean_object* x_51; +x_50 = lean_ctor_get(x_46, 1); +lean_inc(x_50); +lean_dec(x_46); +x_51 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_51, 0, x_1); +lean_ctor_set(x_51, 1, x_50); +return x_51; } } else { -lean_object* x_43; lean_object* x_44; +lean_object* x_52; lean_object* x_53; lean_dec(x_1); -x_43 = lean_ctor_get(x_37, 1); -lean_inc(x_43); -lean_dec(x_37); -x_44 = lean_ctor_get(x_38, 0); -lean_inc(x_44); -lean_dec(x_38); -x_1 = x_44; -x_8 = x_43; +x_52 = lean_ctor_get(x_46, 1); +lean_inc(x_52); +lean_dec(x_46); +x_53 = lean_ctor_get(x_47, 0); +lean_inc(x_53); +lean_dec(x_47); +x_1 = x_53; +x_8 = x_52; goto _start; } } else { -uint8_t x_46; +uint8_t x_55; lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_2); lean_dec(x_1); -x_46 = !lean_is_exclusive(x_37); -if (x_46 == 0) +x_55 = !lean_is_exclusive(x_46); +if (x_55 == 0) { -return x_37; +return x_46; } else { -lean_object* x_47; lean_object* x_48; lean_object* x_49; -x_47 = lean_ctor_get(x_37, 0); -x_48 = lean_ctor_get(x_37, 1); -lean_inc(x_48); -lean_inc(x_47); -lean_dec(x_37); -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_56; lean_object* x_57; lean_object* x_58; +x_56 = lean_ctor_get(x_46, 0); +x_57 = lean_ctor_get(x_46, 1); +lean_inc(x_57); +lean_inc(x_56); +lean_dec(x_46); +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; } } } case 4: { -lean_object* x_50; -x_50 = lean_apply_6(x_2, x_1, x_4, x_5, x_6, x_7, x_8); -return x_50; +lean_object* x_59; +x_59 = lean_apply_6(x_2, x_1, x_4, x_5, x_6, x_7, x_8); +return x_59; } case 5: { -lean_object* x_51; -x_51 = lean_apply_6(x_2, x_1, x_4, x_5, x_6, x_7, x_8); -return x_51; +lean_object* x_60; +x_60 = lean_apply_6(x_2, x_1, x_4, x_5, x_6, x_7, x_8); +return x_60; } case 8: { -lean_object* x_52; -x_52 = lean_apply_6(x_2, x_1, x_4, x_5, x_6, x_7, x_8); -return x_52; +lean_object* x_61; +x_61 = lean_apply_6(x_2, x_1, x_4, x_5, x_6, x_7, x_8); +return x_61; } case 10: { -lean_object* x_53; -x_53 = lean_ctor_get(x_1, 1); -lean_inc(x_53); +lean_object* x_62; +x_62 = lean_ctor_get(x_1, 1); +lean_inc(x_62); lean_dec(x_1); -x_1 = x_53; +x_1 = x_62; goto _start; } case 11: { -lean_object* x_55; -x_55 = lean_apply_6(x_2, x_1, x_4, x_5, x_6, x_7, x_8); -return x_55; +lean_object* x_64; +x_64 = lean_apply_6(x_2, x_1, x_4, x_5, x_6, x_7, x_8); +return x_64; } default: { -lean_object* x_56; +lean_object* x_65; lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_2); -x_56 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_56, 0, x_1); -lean_ctor_set(x_56, 1, x_8); -return x_56; +x_65 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_65, 0, x_1); +lean_ctor_set(x_65, 1, x_8); +return x_65; } } } @@ -14991,7 +15034,7 @@ static lean_object* _init_l_Lean_Meta_canUnfoldAtMatcher___closed__22() { _start: { lean_object* x_1; -x_1 = lean_mk_string_from_bytes("UInt8", 5); +x_1 = lean_mk_string_from_bytes("ofNat'", 6); return x_1; } } @@ -14999,8 +15042,8 @@ static lean_object* _init_l_Lean_Meta_canUnfoldAtMatcher___closed__23() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Meta_canUnfoldAtMatcher___closed__22; -x_2 = l_Lean_Meta_canUnfoldAtMatcher___closed__11; +x_1 = l_Lean_Meta_canUnfoldAtMatcher___closed__20; +x_2 = l_Lean_Meta_canUnfoldAtMatcher___closed__22; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } @@ -15008,27 +15051,27 @@ return x_3; static lean_object* _init_l_Lean_Meta_canUnfoldAtMatcher___closed__24() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Meta_canUnfoldAtMatcher___closed__22; -x_2 = l_Lean_Meta_canUnfoldAtMatcher___closed__6; -x_3 = l_Lean_Name_mkStr2(x_1, x_2); -return x_3; +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("UInt8", 5); +return x_1; } } static lean_object* _init_l_Lean_Meta_canUnfoldAtMatcher___closed__25() { _start: { -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("UInt16", 6); -return x_1; +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Meta_canUnfoldAtMatcher___closed__24; +x_2 = l_Lean_Meta_canUnfoldAtMatcher___closed__11; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; } } static lean_object* _init_l_Lean_Meta_canUnfoldAtMatcher___closed__26() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Meta_canUnfoldAtMatcher___closed__25; -x_2 = l_Lean_Meta_canUnfoldAtMatcher___closed__11; +x_1 = l_Lean_Meta_canUnfoldAtMatcher___closed__24; +x_2 = l_Lean_Meta_canUnfoldAtMatcher___closed__6; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } @@ -15036,27 +15079,27 @@ return x_3; static lean_object* _init_l_Lean_Meta_canUnfoldAtMatcher___closed__27() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Meta_canUnfoldAtMatcher___closed__25; -x_2 = l_Lean_Meta_canUnfoldAtMatcher___closed__6; -x_3 = l_Lean_Name_mkStr2(x_1, x_2); -return x_3; +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("UInt16", 6); +return x_1; } } static lean_object* _init_l_Lean_Meta_canUnfoldAtMatcher___closed__28() { _start: { -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("UInt32", 6); -return x_1; +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Meta_canUnfoldAtMatcher___closed__27; +x_2 = l_Lean_Meta_canUnfoldAtMatcher___closed__11; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; } } static lean_object* _init_l_Lean_Meta_canUnfoldAtMatcher___closed__29() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Meta_canUnfoldAtMatcher___closed__28; -x_2 = l_Lean_Meta_canUnfoldAtMatcher___closed__11; +x_1 = l_Lean_Meta_canUnfoldAtMatcher___closed__27; +x_2 = l_Lean_Meta_canUnfoldAtMatcher___closed__6; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } @@ -15064,27 +15107,27 @@ return x_3; static lean_object* _init_l_Lean_Meta_canUnfoldAtMatcher___closed__30() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Meta_canUnfoldAtMatcher___closed__28; -x_2 = l_Lean_Meta_canUnfoldAtMatcher___closed__6; -x_3 = l_Lean_Name_mkStr2(x_1, x_2); -return x_3; +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("UInt32", 6); +return x_1; } } static lean_object* _init_l_Lean_Meta_canUnfoldAtMatcher___closed__31() { _start: { -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("UInt64", 6); -return x_1; +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Meta_canUnfoldAtMatcher___closed__30; +x_2 = l_Lean_Meta_canUnfoldAtMatcher___closed__11; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; } } static lean_object* _init_l_Lean_Meta_canUnfoldAtMatcher___closed__32() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Meta_canUnfoldAtMatcher___closed__31; -x_2 = l_Lean_Meta_canUnfoldAtMatcher___closed__11; +x_1 = l_Lean_Meta_canUnfoldAtMatcher___closed__30; +x_2 = l_Lean_Meta_canUnfoldAtMatcher___closed__6; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } @@ -15092,14 +15135,32 @@ return x_3; static lean_object* _init_l_Lean_Meta_canUnfoldAtMatcher___closed__33() { _start: { +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("UInt64", 6); +return x_1; +} +} +static lean_object* _init_l_Lean_Meta_canUnfoldAtMatcher___closed__34() { +_start: +{ lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Meta_canUnfoldAtMatcher___closed__31; +x_1 = l_Lean_Meta_canUnfoldAtMatcher___closed__33; +x_2 = l_Lean_Meta_canUnfoldAtMatcher___closed__11; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Meta_canUnfoldAtMatcher___closed__35() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Meta_canUnfoldAtMatcher___closed__33; x_2 = l_Lean_Meta_canUnfoldAtMatcher___closed__6; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Meta_canUnfoldAtMatcher___closed__34() { +static lean_object* _init_l_Lean_Meta_canUnfoldAtMatcher___closed__36() { _start: { lean_object* x_1; @@ -15107,7 +15168,7 @@ x_1 = lean_mk_string_from_bytes("HMod", 4); return x_1; } } -static lean_object* _init_l_Lean_Meta_canUnfoldAtMatcher___closed__35() { +static lean_object* _init_l_Lean_Meta_canUnfoldAtMatcher___closed__37() { _start: { lean_object* x_1; @@ -15115,17 +15176,17 @@ x_1 = lean_mk_string_from_bytes("hMod", 4); return x_1; } } -static lean_object* _init_l_Lean_Meta_canUnfoldAtMatcher___closed__36() { +static lean_object* _init_l_Lean_Meta_canUnfoldAtMatcher___closed__38() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Meta_canUnfoldAtMatcher___closed__34; -x_2 = l_Lean_Meta_canUnfoldAtMatcher___closed__35; +x_1 = l_Lean_Meta_canUnfoldAtMatcher___closed__36; +x_2 = l_Lean_Meta_canUnfoldAtMatcher___closed__37; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Meta_canUnfoldAtMatcher___closed__37() { +static lean_object* _init_l_Lean_Meta_canUnfoldAtMatcher___closed__39() { _start: { lean_object* x_1; @@ -15133,7 +15194,7 @@ x_1 = lean_mk_string_from_bytes("Mod", 3); return x_1; } } -static lean_object* _init_l_Lean_Meta_canUnfoldAtMatcher___closed__38() { +static lean_object* _init_l_Lean_Meta_canUnfoldAtMatcher___closed__40() { _start: { lean_object* x_1; @@ -15141,12 +15202,12 @@ x_1 = lean_mk_string_from_bytes("mod", 3); return x_1; } } -static lean_object* _init_l_Lean_Meta_canUnfoldAtMatcher___closed__39() { +static lean_object* _init_l_Lean_Meta_canUnfoldAtMatcher___closed__41() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Meta_canUnfoldAtMatcher___closed__37; -x_2 = l_Lean_Meta_canUnfoldAtMatcher___closed__38; +x_1 = l_Lean_Meta_canUnfoldAtMatcher___closed__39; +x_2 = l_Lean_Meta_canUnfoldAtMatcher___closed__40; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } @@ -15332,7 +15393,7 @@ x_67 = lean_name_eq(x_31, x_66); if (x_67 == 0) { lean_object* x_68; uint8_t x_69; -x_68 = l_Lean_Meta_canUnfoldAtMatcher___closed__24; +x_68 = l_Lean_Meta_canUnfoldAtMatcher___closed__25; x_69 = lean_name_eq(x_31, x_68); if (x_69 == 0) { @@ -15342,7 +15403,7 @@ x_71 = lean_name_eq(x_31, x_70); if (x_71 == 0) { lean_object* x_72; uint8_t x_73; -x_72 = l_Lean_Meta_canUnfoldAtMatcher___closed__27; +x_72 = l_Lean_Meta_canUnfoldAtMatcher___closed__28; x_73 = lean_name_eq(x_31, x_72); if (x_73 == 0) { @@ -15352,7 +15413,7 @@ x_75 = lean_name_eq(x_31, x_74); if (x_75 == 0) { lean_object* x_76; uint8_t x_77; -x_76 = l_Lean_Meta_canUnfoldAtMatcher___closed__30; +x_76 = l_Lean_Meta_canUnfoldAtMatcher___closed__31; x_77 = lean_name_eq(x_31, x_76); if (x_77 == 0) { @@ -15362,33 +15423,28 @@ x_79 = lean_name_eq(x_31, x_78); if (x_79 == 0) { lean_object* x_80; uint8_t x_81; -x_80 = l_Lean_Meta_canUnfoldAtMatcher___closed__33; +x_80 = l_Lean_Meta_canUnfoldAtMatcher___closed__34; x_81 = lean_name_eq(x_31, x_80); if (x_81 == 0) { lean_object* x_82; uint8_t x_83; -x_82 = l_Lean_Meta_canUnfoldAtMatcher___closed__36; +x_82 = l_Lean_Meta_canUnfoldAtMatcher___closed__35; x_83 = lean_name_eq(x_31, x_82); if (x_83 == 0) { -lean_object* x_84; uint8_t x_85; lean_object* x_86; -x_84 = l_Lean_Meta_canUnfoldAtMatcher___closed__39; +lean_object* x_84; uint8_t x_85; +x_84 = l_Lean_Meta_canUnfoldAtMatcher___closed__38; x_85 = lean_name_eq(x_31, x_84); -lean_dec(x_31); -x_86 = lean_box(x_85); -lean_ctor_set(x_42, 0, x_86); -return x_42; -} -else +if (x_85 == 0) { -uint8_t x_87; lean_object* x_88; +lean_object* x_86; uint8_t x_87; lean_object* x_88; +x_86 = l_Lean_Meta_canUnfoldAtMatcher___closed__41; +x_87 = lean_name_eq(x_31, x_86); lean_dec(x_31); -x_87 = 1; x_88 = lean_box(x_87); lean_ctor_set(x_42, 0, x_88); return x_42; } -} else { uint8_t x_89; lean_object* x_90; @@ -15571,144 +15627,145 @@ return x_42; } else { -lean_object* x_125; lean_object* x_126; lean_object* x_127; lean_object* x_128; uint8_t x_129; -x_125 = lean_ctor_get(x_42, 0); -x_126 = lean_ctor_get(x_42, 1); -lean_inc(x_126); -lean_inc(x_125); +uint8_t x_125; lean_object* x_126; +lean_dec(x_31); +x_125 = 1; +x_126 = lean_box(x_125); +lean_ctor_set(x_42, 0, x_126); +return x_42; +} +} +else +{ +uint8_t x_127; lean_object* x_128; +lean_dec(x_31); +x_127 = 1; +x_128 = lean_box(x_127); +lean_ctor_set(x_42, 0, x_128); +return x_42; +} +} +else +{ +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_42, 0); +x_130 = lean_ctor_get(x_42, 1); +lean_inc(x_130); +lean_inc(x_129); lean_dec(x_42); -x_127 = lean_ctor_get(x_125, 0); -lean_inc(x_127); -lean_dec(x_125); -x_128 = l_Lean_Meta_canUnfoldAtMatcher___closed__1; +x_131 = lean_ctor_get(x_129, 0); +lean_inc(x_131); +lean_dec(x_129); +x_132 = l_Lean_Meta_canUnfoldAtMatcher___closed__1; lean_inc(x_31); -x_129 = l_Lean_TagAttribute_hasTag(x_128, x_127, x_31); -if (x_129 == 0) -{ -lean_object* x_130; uint8_t x_131; -x_130 = l_Lean_Meta_canUnfoldAtMatcher___closed__3; -x_131 = lean_name_eq(x_31, x_130); -if (x_131 == 0) -{ -lean_object* x_132; uint8_t x_133; -x_132 = l_Lean_Meta_canUnfoldAtMatcher___closed__5; -x_133 = lean_name_eq(x_31, x_132); +x_133 = l_Lean_TagAttribute_hasTag(x_132, x_131, x_31); if (x_133 == 0) { lean_object* x_134; uint8_t x_135; -x_134 = l_Lean_Meta_canUnfoldAtMatcher___closed__7; +x_134 = l_Lean_Meta_canUnfoldAtMatcher___closed__3; x_135 = lean_name_eq(x_31, x_134); if (x_135 == 0) { lean_object* x_136; uint8_t x_137; -x_136 = l_Lean_Meta_canUnfoldAtMatcher___closed__9; +x_136 = l_Lean_Meta_canUnfoldAtMatcher___closed__5; x_137 = lean_name_eq(x_31, x_136); if (x_137 == 0) { lean_object* x_138; uint8_t x_139; -x_138 = l_Lean_Meta_canUnfoldAtMatcher___closed__12; +x_138 = l_Lean_Meta_canUnfoldAtMatcher___closed__7; x_139 = lean_name_eq(x_31, x_138); if (x_139 == 0) { lean_object* x_140; uint8_t x_141; -x_140 = l_Lean_Meta_canUnfoldAtMatcher___closed__14; +x_140 = l_Lean_Meta_canUnfoldAtMatcher___closed__9; x_141 = lean_name_eq(x_31, x_140); if (x_141 == 0) { lean_object* x_142; uint8_t x_143; -x_142 = l_Lean_Meta_canUnfoldAtMatcher___closed__16; +x_142 = l_Lean_Meta_canUnfoldAtMatcher___closed__12; x_143 = lean_name_eq(x_31, x_142); if (x_143 == 0) { lean_object* x_144; uint8_t x_145; -x_144 = l_Lean_Meta_canUnfoldAtMatcher___closed__19; +x_144 = l_Lean_Meta_canUnfoldAtMatcher___closed__14; x_145 = lean_name_eq(x_31, x_144); if (x_145 == 0) { lean_object* x_146; uint8_t x_147; -x_146 = l_Lean_Meta_canUnfoldAtMatcher___closed__21; +x_146 = l_Lean_Meta_canUnfoldAtMatcher___closed__16; x_147 = lean_name_eq(x_31, x_146); if (x_147 == 0) { lean_object* x_148; uint8_t x_149; -x_148 = l_Lean_Meta_canUnfoldAtMatcher___closed__23; +x_148 = l_Lean_Meta_canUnfoldAtMatcher___closed__19; x_149 = lean_name_eq(x_31, x_148); if (x_149 == 0) { lean_object* x_150; uint8_t x_151; -x_150 = l_Lean_Meta_canUnfoldAtMatcher___closed__24; +x_150 = l_Lean_Meta_canUnfoldAtMatcher___closed__21; x_151 = lean_name_eq(x_31, x_150); if (x_151 == 0) { lean_object* x_152; uint8_t x_153; -x_152 = l_Lean_Meta_canUnfoldAtMatcher___closed__26; +x_152 = l_Lean_Meta_canUnfoldAtMatcher___closed__23; x_153 = lean_name_eq(x_31, x_152); if (x_153 == 0) { lean_object* x_154; uint8_t x_155; -x_154 = l_Lean_Meta_canUnfoldAtMatcher___closed__27; +x_154 = l_Lean_Meta_canUnfoldAtMatcher___closed__25; x_155 = lean_name_eq(x_31, x_154); if (x_155 == 0) { lean_object* x_156; uint8_t x_157; -x_156 = l_Lean_Meta_canUnfoldAtMatcher___closed__29; +x_156 = l_Lean_Meta_canUnfoldAtMatcher___closed__26; x_157 = lean_name_eq(x_31, x_156); if (x_157 == 0) { lean_object* x_158; uint8_t x_159; -x_158 = l_Lean_Meta_canUnfoldAtMatcher___closed__30; +x_158 = l_Lean_Meta_canUnfoldAtMatcher___closed__28; x_159 = lean_name_eq(x_31, x_158); if (x_159 == 0) { lean_object* x_160; uint8_t x_161; -x_160 = l_Lean_Meta_canUnfoldAtMatcher___closed__32; +x_160 = l_Lean_Meta_canUnfoldAtMatcher___closed__29; x_161 = lean_name_eq(x_31, x_160); if (x_161 == 0) { lean_object* x_162; uint8_t x_163; -x_162 = l_Lean_Meta_canUnfoldAtMatcher___closed__33; +x_162 = l_Lean_Meta_canUnfoldAtMatcher___closed__31; x_163 = lean_name_eq(x_31, x_162); if (x_163 == 0) { lean_object* x_164; uint8_t x_165; -x_164 = l_Lean_Meta_canUnfoldAtMatcher___closed__36; +x_164 = l_Lean_Meta_canUnfoldAtMatcher___closed__32; x_165 = lean_name_eq(x_31, x_164); if (x_165 == 0) { -lean_object* x_166; uint8_t x_167; lean_object* x_168; lean_object* x_169; -x_166 = l_Lean_Meta_canUnfoldAtMatcher___closed__39; +lean_object* x_166; uint8_t x_167; +x_166 = l_Lean_Meta_canUnfoldAtMatcher___closed__34; x_167 = lean_name_eq(x_31, x_166); -lean_dec(x_31); -x_168 = lean_box(x_167); -x_169 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_169, 0, x_168); -lean_ctor_set(x_169, 1, x_126); -return x_169; -} -else +if (x_167 == 0) { -uint8_t x_170; lean_object* x_171; lean_object* x_172; -lean_dec(x_31); -x_170 = 1; -x_171 = lean_box(x_170); -x_172 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_172, 0, x_171); -lean_ctor_set(x_172, 1, x_126); -return x_172; -} -} -else +lean_object* x_168; uint8_t x_169; +x_168 = l_Lean_Meta_canUnfoldAtMatcher___closed__35; +x_169 = lean_name_eq(x_31, x_168); +if (x_169 == 0) { -uint8_t x_173; lean_object* x_174; lean_object* x_175; +lean_object* x_170; uint8_t x_171; +x_170 = l_Lean_Meta_canUnfoldAtMatcher___closed__38; +x_171 = lean_name_eq(x_31, x_170); +if (x_171 == 0) +{ +lean_object* x_172; uint8_t x_173; lean_object* x_174; lean_object* x_175; +x_172 = l_Lean_Meta_canUnfoldAtMatcher___closed__41; +x_173 = lean_name_eq(x_31, x_172); lean_dec(x_31); -x_173 = 1; x_174 = lean_box(x_173); x_175 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_175, 0, x_174); -lean_ctor_set(x_175, 1, x_126); +lean_ctor_set(x_175, 1, x_130); return x_175; } -} else { uint8_t x_176; lean_object* x_177; lean_object* x_178; @@ -15717,7 +15774,7 @@ x_176 = 1; x_177 = lean_box(x_176); x_178 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_178, 0, x_177); -lean_ctor_set(x_178, 1, x_126); +lean_ctor_set(x_178, 1, x_130); return x_178; } } @@ -15729,7 +15786,7 @@ x_179 = 1; x_180 = lean_box(x_179); x_181 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_181, 0, x_180); -lean_ctor_set(x_181, 1, x_126); +lean_ctor_set(x_181, 1, x_130); return x_181; } } @@ -15741,7 +15798,7 @@ x_182 = 1; x_183 = lean_box(x_182); x_184 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_184, 0, x_183); -lean_ctor_set(x_184, 1, x_126); +lean_ctor_set(x_184, 1, x_130); return x_184; } } @@ -15753,7 +15810,7 @@ x_185 = 1; x_186 = lean_box(x_185); x_187 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_187, 0, x_186); -lean_ctor_set(x_187, 1, x_126); +lean_ctor_set(x_187, 1, x_130); return x_187; } } @@ -15765,7 +15822,7 @@ x_188 = 1; x_189 = lean_box(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_126); +lean_ctor_set(x_190, 1, x_130); return x_190; } } @@ -15777,7 +15834,7 @@ x_191 = 1; x_192 = lean_box(x_191); x_193 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_193, 0, x_192); -lean_ctor_set(x_193, 1, x_126); +lean_ctor_set(x_193, 1, x_130); return x_193; } } @@ -15789,7 +15846,7 @@ x_194 = 1; x_195 = lean_box(x_194); x_196 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_196, 0, x_195); -lean_ctor_set(x_196, 1, x_126); +lean_ctor_set(x_196, 1, x_130); return x_196; } } @@ -15801,7 +15858,7 @@ x_197 = 1; x_198 = lean_box(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_126); +lean_ctor_set(x_199, 1, x_130); return x_199; } } @@ -15813,7 +15870,7 @@ x_200 = 1; x_201 = lean_box(x_200); x_202 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_202, 0, x_201); -lean_ctor_set(x_202, 1, x_126); +lean_ctor_set(x_202, 1, x_130); return x_202; } } @@ -15825,7 +15882,7 @@ x_203 = 1; x_204 = lean_box(x_203); x_205 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_205, 0, x_204); -lean_ctor_set(x_205, 1, x_126); +lean_ctor_set(x_205, 1, x_130); return x_205; } } @@ -15837,7 +15894,7 @@ x_206 = 1; x_207 = lean_box(x_206); x_208 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_208, 0, x_207); -lean_ctor_set(x_208, 1, x_126); +lean_ctor_set(x_208, 1, x_130); return x_208; } } @@ -15849,7 +15906,7 @@ x_209 = 1; x_210 = lean_box(x_209); x_211 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_211, 0, x_210); -lean_ctor_set(x_211, 1, x_126); +lean_ctor_set(x_211, 1, x_130); return x_211; } } @@ -15861,7 +15918,7 @@ x_212 = 1; x_213 = lean_box(x_212); x_214 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_214, 0, x_213); -lean_ctor_set(x_214, 1, x_126); +lean_ctor_set(x_214, 1, x_130); return x_214; } } @@ -15873,7 +15930,7 @@ x_215 = 1; x_216 = lean_box(x_215); x_217 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_217, 0, x_216); -lean_ctor_set(x_217, 1, x_126); +lean_ctor_set(x_217, 1, x_130); return x_217; } } @@ -15885,7 +15942,7 @@ x_218 = 1; x_219 = lean_box(x_218); x_220 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_220, 0, x_219); -lean_ctor_set(x_220, 1, x_126); +lean_ctor_set(x_220, 1, x_130); return x_220; } } @@ -15897,7 +15954,7 @@ x_221 = 1; x_222 = lean_box(x_221); x_223 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_223, 0, x_222); -lean_ctor_set(x_223, 1, x_126); +lean_ctor_set(x_223, 1, x_130); return x_223; } } @@ -15909,506 +15966,563 @@ x_224 = 1; x_225 = lean_box(x_224); x_226 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_226, 0, x_225); -lean_ctor_set(x_226, 1, x_126); +lean_ctor_set(x_226, 1, x_130); return x_226; } } -} else { -uint8_t x_227; lean_object* x_228; +uint8_t x_227; lean_object* x_228; lean_object* x_229; lean_dec(x_31); x_227 = 1; x_228 = lean_box(x_227); -lean_ctor_set(x_35, 0, x_228); +x_229 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_229, 0, x_228); +lean_ctor_set(x_229, 1, x_130); +return x_229; +} +} +else +{ +uint8_t x_230; lean_object* x_231; lean_object* x_232; +lean_dec(x_31); +x_230 = 1; +x_231 = lean_box(x_230); +x_232 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_232, 0, x_231); +lean_ctor_set(x_232, 1, x_130); +return x_232; +} +} +else +{ +uint8_t x_233; lean_object* x_234; lean_object* x_235; +lean_dec(x_31); +x_233 = 1; +x_234 = lean_box(x_233); +x_235 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_235, 0, x_234); +lean_ctor_set(x_235, 1, x_130); +return x_235; +} +} +} +else +{ +uint8_t x_236; lean_object* x_237; +lean_dec(x_31); +x_236 = 1; +x_237 = lean_box(x_236); +lean_ctor_set(x_35, 0, x_237); return x_35; } } else { -lean_object* x_229; lean_object* x_230; lean_object* x_231; uint8_t x_232; -x_229 = lean_ctor_get(x_35, 0); -x_230 = lean_ctor_get(x_35, 1); -lean_inc(x_230); -lean_inc(x_229); +lean_object* x_238; lean_object* x_239; lean_object* x_240; uint8_t x_241; +x_238 = lean_ctor_get(x_35, 0); +x_239 = lean_ctor_get(x_35, 1); +lean_inc(x_239); +lean_inc(x_238); lean_dec(x_35); -x_231 = lean_ctor_get(x_229, 0); -lean_inc(x_231); -lean_dec(x_229); +x_240 = lean_ctor_get(x_238, 0); +lean_inc(x_240); +lean_dec(x_238); lean_inc(x_31); -x_232 = lean_is_instance(x_231, x_31); -if (x_232 == 0) -{ -lean_object* x_233; lean_object* x_234; lean_object* x_235; lean_object* x_236; lean_object* x_237; lean_object* x_238; uint8_t x_239; -x_233 = lean_st_ref_get(x_4, x_230); -x_234 = lean_ctor_get(x_233, 0); -lean_inc(x_234); -x_235 = lean_ctor_get(x_233, 1); -lean_inc(x_235); -if (lean_is_exclusive(x_233)) { - lean_ctor_release(x_233, 0); - lean_ctor_release(x_233, 1); - x_236 = x_233; -} else { - lean_dec_ref(x_233); - x_236 = lean_box(0); -} -x_237 = lean_ctor_get(x_234, 0); -lean_inc(x_237); -lean_dec(x_234); -x_238 = l_Lean_Meta_canUnfoldAtMatcher___closed__1; -lean_inc(x_31); -x_239 = l_Lean_TagAttribute_hasTag(x_238, x_237, x_31); -if (x_239 == 0) -{ -lean_object* x_240; uint8_t x_241; -x_240 = l_Lean_Meta_canUnfoldAtMatcher___closed__3; -x_241 = lean_name_eq(x_31, x_240); +x_241 = lean_is_instance(x_240, x_31); if (x_241 == 0) { -lean_object* x_242; uint8_t x_243; -x_242 = l_Lean_Meta_canUnfoldAtMatcher___closed__5; -x_243 = lean_name_eq(x_31, x_242); -if (x_243 == 0) -{ -lean_object* x_244; uint8_t x_245; -x_244 = l_Lean_Meta_canUnfoldAtMatcher___closed__7; -x_245 = lean_name_eq(x_31, x_244); -if (x_245 == 0) -{ -lean_object* x_246; uint8_t x_247; -x_246 = l_Lean_Meta_canUnfoldAtMatcher___closed__9; -x_247 = lean_name_eq(x_31, x_246); -if (x_247 == 0) -{ -lean_object* x_248; uint8_t x_249; -x_248 = l_Lean_Meta_canUnfoldAtMatcher___closed__12; -x_249 = lean_name_eq(x_31, x_248); -if (x_249 == 0) -{ -lean_object* x_250; uint8_t x_251; -x_250 = l_Lean_Meta_canUnfoldAtMatcher___closed__14; -x_251 = lean_name_eq(x_31, x_250); -if (x_251 == 0) -{ -lean_object* x_252; uint8_t x_253; -x_252 = l_Lean_Meta_canUnfoldAtMatcher___closed__16; -x_253 = lean_name_eq(x_31, x_252); -if (x_253 == 0) -{ -lean_object* x_254; uint8_t x_255; -x_254 = l_Lean_Meta_canUnfoldAtMatcher___closed__19; -x_255 = lean_name_eq(x_31, x_254); -if (x_255 == 0) -{ -lean_object* x_256; uint8_t x_257; -x_256 = l_Lean_Meta_canUnfoldAtMatcher___closed__21; -x_257 = lean_name_eq(x_31, x_256); -if (x_257 == 0) -{ -lean_object* x_258; uint8_t x_259; -x_258 = l_Lean_Meta_canUnfoldAtMatcher___closed__23; -x_259 = lean_name_eq(x_31, x_258); -if (x_259 == 0) -{ -lean_object* x_260; uint8_t x_261; -x_260 = l_Lean_Meta_canUnfoldAtMatcher___closed__24; -x_261 = lean_name_eq(x_31, x_260); -if (x_261 == 0) -{ -lean_object* x_262; uint8_t x_263; -x_262 = l_Lean_Meta_canUnfoldAtMatcher___closed__26; -x_263 = lean_name_eq(x_31, x_262); -if (x_263 == 0) -{ -lean_object* x_264; uint8_t x_265; -x_264 = l_Lean_Meta_canUnfoldAtMatcher___closed__27; -x_265 = lean_name_eq(x_31, x_264); -if (x_265 == 0) -{ -lean_object* x_266; uint8_t x_267; -x_266 = l_Lean_Meta_canUnfoldAtMatcher___closed__29; -x_267 = lean_name_eq(x_31, x_266); -if (x_267 == 0) -{ -lean_object* x_268; uint8_t x_269; -x_268 = l_Lean_Meta_canUnfoldAtMatcher___closed__30; -x_269 = lean_name_eq(x_31, x_268); -if (x_269 == 0) -{ -lean_object* x_270; uint8_t x_271; -x_270 = l_Lean_Meta_canUnfoldAtMatcher___closed__32; -x_271 = lean_name_eq(x_31, x_270); -if (x_271 == 0) -{ -lean_object* x_272; uint8_t x_273; -x_272 = l_Lean_Meta_canUnfoldAtMatcher___closed__33; -x_273 = lean_name_eq(x_31, x_272); -if (x_273 == 0) -{ -lean_object* x_274; uint8_t x_275; -x_274 = l_Lean_Meta_canUnfoldAtMatcher___closed__36; -x_275 = lean_name_eq(x_31, x_274); -if (x_275 == 0) -{ -lean_object* x_276; uint8_t x_277; lean_object* x_278; lean_object* x_279; -x_276 = l_Lean_Meta_canUnfoldAtMatcher___closed__39; -x_277 = lean_name_eq(x_31, x_276); -lean_dec(x_31); -x_278 = lean_box(x_277); -if (lean_is_scalar(x_236)) { - x_279 = lean_alloc_ctor(0, 2, 0); +lean_object* x_242; lean_object* x_243; lean_object* x_244; lean_object* x_245; lean_object* x_246; lean_object* x_247; uint8_t x_248; +x_242 = lean_st_ref_get(x_4, x_239); +x_243 = lean_ctor_get(x_242, 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 { - x_279 = x_236; + lean_dec_ref(x_242); + x_245 = lean_box(0); } -lean_ctor_set(x_279, 0, x_278); -lean_ctor_set(x_279, 1, x_235); -return x_279; -} -else +x_246 = lean_ctor_get(x_243, 0); +lean_inc(x_246); +lean_dec(x_243); +x_247 = l_Lean_Meta_canUnfoldAtMatcher___closed__1; +lean_inc(x_31); +x_248 = l_Lean_TagAttribute_hasTag(x_247, x_246, x_31); +if (x_248 == 0) { -uint8_t x_280; lean_object* x_281; lean_object* x_282; +lean_object* x_249; uint8_t x_250; +x_249 = l_Lean_Meta_canUnfoldAtMatcher___closed__3; +x_250 = lean_name_eq(x_31, x_249); +if (x_250 == 0) +{ +lean_object* x_251; uint8_t x_252; +x_251 = l_Lean_Meta_canUnfoldAtMatcher___closed__5; +x_252 = lean_name_eq(x_31, x_251); +if (x_252 == 0) +{ +lean_object* x_253; uint8_t x_254; +x_253 = l_Lean_Meta_canUnfoldAtMatcher___closed__7; +x_254 = lean_name_eq(x_31, x_253); +if (x_254 == 0) +{ +lean_object* x_255; uint8_t x_256; +x_255 = l_Lean_Meta_canUnfoldAtMatcher___closed__9; +x_256 = lean_name_eq(x_31, x_255); +if (x_256 == 0) +{ +lean_object* x_257; uint8_t x_258; +x_257 = l_Lean_Meta_canUnfoldAtMatcher___closed__12; +x_258 = lean_name_eq(x_31, x_257); +if (x_258 == 0) +{ +lean_object* x_259; uint8_t x_260; +x_259 = l_Lean_Meta_canUnfoldAtMatcher___closed__14; +x_260 = lean_name_eq(x_31, x_259); +if (x_260 == 0) +{ +lean_object* x_261; uint8_t x_262; +x_261 = l_Lean_Meta_canUnfoldAtMatcher___closed__16; +x_262 = lean_name_eq(x_31, x_261); +if (x_262 == 0) +{ +lean_object* x_263; uint8_t x_264; +x_263 = l_Lean_Meta_canUnfoldAtMatcher___closed__19; +x_264 = lean_name_eq(x_31, x_263); +if (x_264 == 0) +{ +lean_object* x_265; uint8_t x_266; +x_265 = l_Lean_Meta_canUnfoldAtMatcher___closed__21; +x_266 = lean_name_eq(x_31, x_265); +if (x_266 == 0) +{ +lean_object* x_267; uint8_t x_268; +x_267 = l_Lean_Meta_canUnfoldAtMatcher___closed__23; +x_268 = lean_name_eq(x_31, x_267); +if (x_268 == 0) +{ +lean_object* x_269; uint8_t x_270; +x_269 = l_Lean_Meta_canUnfoldAtMatcher___closed__25; +x_270 = lean_name_eq(x_31, x_269); +if (x_270 == 0) +{ +lean_object* x_271; uint8_t x_272; +x_271 = l_Lean_Meta_canUnfoldAtMatcher___closed__26; +x_272 = lean_name_eq(x_31, x_271); +if (x_272 == 0) +{ +lean_object* x_273; uint8_t x_274; +x_273 = l_Lean_Meta_canUnfoldAtMatcher___closed__28; +x_274 = lean_name_eq(x_31, x_273); +if (x_274 == 0) +{ +lean_object* x_275; uint8_t x_276; +x_275 = l_Lean_Meta_canUnfoldAtMatcher___closed__29; +x_276 = lean_name_eq(x_31, x_275); +if (x_276 == 0) +{ +lean_object* x_277; uint8_t x_278; +x_277 = l_Lean_Meta_canUnfoldAtMatcher___closed__31; +x_278 = lean_name_eq(x_31, x_277); +if (x_278 == 0) +{ +lean_object* x_279; uint8_t x_280; +x_279 = l_Lean_Meta_canUnfoldAtMatcher___closed__32; +x_280 = lean_name_eq(x_31, x_279); +if (x_280 == 0) +{ +lean_object* x_281; uint8_t x_282; +x_281 = l_Lean_Meta_canUnfoldAtMatcher___closed__34; +x_282 = lean_name_eq(x_31, x_281); +if (x_282 == 0) +{ +lean_object* x_283; uint8_t x_284; +x_283 = l_Lean_Meta_canUnfoldAtMatcher___closed__35; +x_284 = lean_name_eq(x_31, x_283); +if (x_284 == 0) +{ +lean_object* x_285; uint8_t x_286; +x_285 = l_Lean_Meta_canUnfoldAtMatcher___closed__38; +x_286 = lean_name_eq(x_31, x_285); +if (x_286 == 0) +{ +lean_object* x_287; uint8_t x_288; lean_object* x_289; lean_object* x_290; +x_287 = l_Lean_Meta_canUnfoldAtMatcher___closed__41; +x_288 = lean_name_eq(x_31, x_287); lean_dec(x_31); -x_280 = 1; -x_281 = lean_box(x_280); -if (lean_is_scalar(x_236)) { - x_282 = lean_alloc_ctor(0, 2, 0); +x_289 = lean_box(x_288); +if (lean_is_scalar(x_245)) { + x_290 = lean_alloc_ctor(0, 2, 0); } else { - x_282 = x_236; -} -lean_ctor_set(x_282, 0, x_281); -lean_ctor_set(x_282, 1, x_235); -return x_282; + x_290 = x_245; } +lean_ctor_set(x_290, 0, x_289); +lean_ctor_set(x_290, 1, x_244); +return x_290; } else { -uint8_t x_283; lean_object* x_284; lean_object* x_285; +uint8_t x_291; lean_object* x_292; lean_object* x_293; lean_dec(x_31); -x_283 = 1; -x_284 = lean_box(x_283); -if (lean_is_scalar(x_236)) { - x_285 = lean_alloc_ctor(0, 2, 0); +x_291 = 1; +x_292 = lean_box(x_291); +if (lean_is_scalar(x_245)) { + x_293 = lean_alloc_ctor(0, 2, 0); } else { - x_285 = x_236; + x_293 = x_245; } -lean_ctor_set(x_285, 0, x_284); -lean_ctor_set(x_285, 1, x_235); -return x_285; +lean_ctor_set(x_293, 0, x_292); +lean_ctor_set(x_293, 1, x_244); +return x_293; } } else { -uint8_t x_286; lean_object* x_287; lean_object* x_288; +uint8_t x_294; lean_object* x_295; lean_object* x_296; lean_dec(x_31); -x_286 = 1; -x_287 = lean_box(x_286); -if (lean_is_scalar(x_236)) { - x_288 = lean_alloc_ctor(0, 2, 0); +x_294 = 1; +x_295 = lean_box(x_294); +if (lean_is_scalar(x_245)) { + x_296 = lean_alloc_ctor(0, 2, 0); } else { - x_288 = x_236; + x_296 = x_245; } -lean_ctor_set(x_288, 0, x_287); -lean_ctor_set(x_288, 1, x_235); -return x_288; +lean_ctor_set(x_296, 0, x_295); +lean_ctor_set(x_296, 1, x_244); +return x_296; } } else { -uint8_t x_289; lean_object* x_290; lean_object* x_291; +uint8_t x_297; lean_object* x_298; lean_object* x_299; lean_dec(x_31); -x_289 = 1; -x_290 = lean_box(x_289); -if (lean_is_scalar(x_236)) { - x_291 = lean_alloc_ctor(0, 2, 0); +x_297 = 1; +x_298 = lean_box(x_297); +if (lean_is_scalar(x_245)) { + x_299 = lean_alloc_ctor(0, 2, 0); } else { - x_291 = x_236; + x_299 = x_245; } -lean_ctor_set(x_291, 0, x_290); -lean_ctor_set(x_291, 1, x_235); -return x_291; +lean_ctor_set(x_299, 0, x_298); +lean_ctor_set(x_299, 1, x_244); +return x_299; } } else { -uint8_t x_292; lean_object* x_293; lean_object* x_294; +uint8_t x_300; lean_object* x_301; lean_object* x_302; lean_dec(x_31); -x_292 = 1; -x_293 = lean_box(x_292); -if (lean_is_scalar(x_236)) { - x_294 = lean_alloc_ctor(0, 2, 0); +x_300 = 1; +x_301 = lean_box(x_300); +if (lean_is_scalar(x_245)) { + x_302 = lean_alloc_ctor(0, 2, 0); } else { - x_294 = x_236; + x_302 = x_245; } -lean_ctor_set(x_294, 0, x_293); -lean_ctor_set(x_294, 1, x_235); -return x_294; +lean_ctor_set(x_302, 0, x_301); +lean_ctor_set(x_302, 1, x_244); +return x_302; } } else { -uint8_t x_295; lean_object* x_296; lean_object* x_297; +uint8_t x_303; lean_object* x_304; lean_object* x_305; lean_dec(x_31); -x_295 = 1; -x_296 = lean_box(x_295); -if (lean_is_scalar(x_236)) { - x_297 = lean_alloc_ctor(0, 2, 0); +x_303 = 1; +x_304 = lean_box(x_303); +if (lean_is_scalar(x_245)) { + x_305 = lean_alloc_ctor(0, 2, 0); } else { - x_297 = x_236; + x_305 = x_245; } -lean_ctor_set(x_297, 0, x_296); -lean_ctor_set(x_297, 1, x_235); -return x_297; +lean_ctor_set(x_305, 0, x_304); +lean_ctor_set(x_305, 1, x_244); +return x_305; } } else { -uint8_t x_298; lean_object* x_299; lean_object* x_300; +uint8_t x_306; lean_object* x_307; lean_object* x_308; lean_dec(x_31); -x_298 = 1; -x_299 = lean_box(x_298); -if (lean_is_scalar(x_236)) { - x_300 = lean_alloc_ctor(0, 2, 0); +x_306 = 1; +x_307 = lean_box(x_306); +if (lean_is_scalar(x_245)) { + x_308 = lean_alloc_ctor(0, 2, 0); } else { - x_300 = x_236; + x_308 = x_245; } -lean_ctor_set(x_300, 0, x_299); -lean_ctor_set(x_300, 1, x_235); -return x_300; +lean_ctor_set(x_308, 0, x_307); +lean_ctor_set(x_308, 1, x_244); +return x_308; } } else { -uint8_t x_301; lean_object* x_302; lean_object* x_303; +uint8_t x_309; lean_object* x_310; lean_object* x_311; lean_dec(x_31); -x_301 = 1; -x_302 = lean_box(x_301); -if (lean_is_scalar(x_236)) { - x_303 = lean_alloc_ctor(0, 2, 0); +x_309 = 1; +x_310 = lean_box(x_309); +if (lean_is_scalar(x_245)) { + x_311 = lean_alloc_ctor(0, 2, 0); } else { - x_303 = x_236; + x_311 = x_245; } -lean_ctor_set(x_303, 0, x_302); -lean_ctor_set(x_303, 1, x_235); -return x_303; +lean_ctor_set(x_311, 0, x_310); +lean_ctor_set(x_311, 1, x_244); +return x_311; } } else { -uint8_t x_304; lean_object* x_305; lean_object* x_306; +uint8_t x_312; lean_object* x_313; lean_object* x_314; lean_dec(x_31); -x_304 = 1; -x_305 = lean_box(x_304); -if (lean_is_scalar(x_236)) { - x_306 = lean_alloc_ctor(0, 2, 0); +x_312 = 1; +x_313 = lean_box(x_312); +if (lean_is_scalar(x_245)) { + x_314 = lean_alloc_ctor(0, 2, 0); } else { - x_306 = x_236; + x_314 = x_245; } -lean_ctor_set(x_306, 0, x_305); -lean_ctor_set(x_306, 1, x_235); -return x_306; +lean_ctor_set(x_314, 0, x_313); +lean_ctor_set(x_314, 1, x_244); +return x_314; } } else { -uint8_t x_307; lean_object* x_308; lean_object* x_309; +uint8_t x_315; lean_object* x_316; lean_object* x_317; lean_dec(x_31); -x_307 = 1; -x_308 = lean_box(x_307); -if (lean_is_scalar(x_236)) { - x_309 = lean_alloc_ctor(0, 2, 0); +x_315 = 1; +x_316 = lean_box(x_315); +if (lean_is_scalar(x_245)) { + x_317 = lean_alloc_ctor(0, 2, 0); } else { - x_309 = x_236; + x_317 = x_245; } -lean_ctor_set(x_309, 0, x_308); -lean_ctor_set(x_309, 1, x_235); -return x_309; +lean_ctor_set(x_317, 0, x_316); +lean_ctor_set(x_317, 1, x_244); +return x_317; } } else { -uint8_t x_310; lean_object* x_311; lean_object* x_312; +uint8_t x_318; lean_object* x_319; lean_object* x_320; lean_dec(x_31); -x_310 = 1; -x_311 = lean_box(x_310); -if (lean_is_scalar(x_236)) { - x_312 = lean_alloc_ctor(0, 2, 0); +x_318 = 1; +x_319 = lean_box(x_318); +if (lean_is_scalar(x_245)) { + x_320 = lean_alloc_ctor(0, 2, 0); } else { - x_312 = x_236; + x_320 = x_245; } -lean_ctor_set(x_312, 0, x_311); -lean_ctor_set(x_312, 1, x_235); -return x_312; +lean_ctor_set(x_320, 0, x_319); +lean_ctor_set(x_320, 1, x_244); +return x_320; } } else { -uint8_t x_313; lean_object* x_314; lean_object* x_315; +uint8_t x_321; lean_object* x_322; lean_object* x_323; lean_dec(x_31); -x_313 = 1; -x_314 = lean_box(x_313); -if (lean_is_scalar(x_236)) { - x_315 = lean_alloc_ctor(0, 2, 0); +x_321 = 1; +x_322 = lean_box(x_321); +if (lean_is_scalar(x_245)) { + x_323 = lean_alloc_ctor(0, 2, 0); } else { - x_315 = x_236; + x_323 = x_245; } -lean_ctor_set(x_315, 0, x_314); -lean_ctor_set(x_315, 1, x_235); -return x_315; +lean_ctor_set(x_323, 0, x_322); +lean_ctor_set(x_323, 1, x_244); +return x_323; } } else { -uint8_t x_316; lean_object* x_317; lean_object* x_318; +uint8_t x_324; lean_object* x_325; lean_object* x_326; lean_dec(x_31); -x_316 = 1; -x_317 = lean_box(x_316); -if (lean_is_scalar(x_236)) { - x_318 = lean_alloc_ctor(0, 2, 0); +x_324 = 1; +x_325 = lean_box(x_324); +if (lean_is_scalar(x_245)) { + x_326 = lean_alloc_ctor(0, 2, 0); } else { - x_318 = x_236; + x_326 = x_245; } -lean_ctor_set(x_318, 0, x_317); -lean_ctor_set(x_318, 1, x_235); -return x_318; +lean_ctor_set(x_326, 0, x_325); +lean_ctor_set(x_326, 1, x_244); +return x_326; } } else { -uint8_t x_319; lean_object* x_320; lean_object* x_321; +uint8_t x_327; lean_object* x_328; lean_object* x_329; lean_dec(x_31); -x_319 = 1; -x_320 = lean_box(x_319); -if (lean_is_scalar(x_236)) { - x_321 = lean_alloc_ctor(0, 2, 0); +x_327 = 1; +x_328 = lean_box(x_327); +if (lean_is_scalar(x_245)) { + x_329 = lean_alloc_ctor(0, 2, 0); } else { - x_321 = x_236; + x_329 = x_245; } -lean_ctor_set(x_321, 0, x_320); -lean_ctor_set(x_321, 1, x_235); -return x_321; +lean_ctor_set(x_329, 0, x_328); +lean_ctor_set(x_329, 1, x_244); +return x_329; } } else { -uint8_t x_322; lean_object* x_323; lean_object* x_324; +uint8_t x_330; lean_object* x_331; lean_object* x_332; lean_dec(x_31); -x_322 = 1; -x_323 = lean_box(x_322); -if (lean_is_scalar(x_236)) { - x_324 = lean_alloc_ctor(0, 2, 0); +x_330 = 1; +x_331 = lean_box(x_330); +if (lean_is_scalar(x_245)) { + x_332 = lean_alloc_ctor(0, 2, 0); } else { - x_324 = x_236; + x_332 = x_245; } -lean_ctor_set(x_324, 0, x_323); -lean_ctor_set(x_324, 1, x_235); -return x_324; +lean_ctor_set(x_332, 0, x_331); +lean_ctor_set(x_332, 1, x_244); +return x_332; } } else { -uint8_t x_325; lean_object* x_326; lean_object* x_327; +uint8_t x_333; lean_object* x_334; lean_object* x_335; lean_dec(x_31); -x_325 = 1; -x_326 = lean_box(x_325); -if (lean_is_scalar(x_236)) { - x_327 = lean_alloc_ctor(0, 2, 0); +x_333 = 1; +x_334 = lean_box(x_333); +if (lean_is_scalar(x_245)) { + x_335 = lean_alloc_ctor(0, 2, 0); } else { - x_327 = x_236; + x_335 = x_245; } -lean_ctor_set(x_327, 0, x_326); -lean_ctor_set(x_327, 1, x_235); -return x_327; +lean_ctor_set(x_335, 0, x_334); +lean_ctor_set(x_335, 1, x_244); +return x_335; } } else { -uint8_t x_328; lean_object* x_329; lean_object* x_330; +uint8_t x_336; lean_object* x_337; lean_object* x_338; lean_dec(x_31); -x_328 = 1; -x_329 = lean_box(x_328); -if (lean_is_scalar(x_236)) { - x_330 = lean_alloc_ctor(0, 2, 0); +x_336 = 1; +x_337 = lean_box(x_336); +if (lean_is_scalar(x_245)) { + x_338 = lean_alloc_ctor(0, 2, 0); } else { - x_330 = x_236; + x_338 = x_245; } -lean_ctor_set(x_330, 0, x_329); -lean_ctor_set(x_330, 1, x_235); -return x_330; +lean_ctor_set(x_338, 0, x_337); +lean_ctor_set(x_338, 1, x_244); +return x_338; } } else { -uint8_t x_331; lean_object* x_332; lean_object* x_333; +uint8_t x_339; lean_object* x_340; lean_object* x_341; lean_dec(x_31); -x_331 = 1; -x_332 = lean_box(x_331); -if (lean_is_scalar(x_236)) { - x_333 = lean_alloc_ctor(0, 2, 0); +x_339 = 1; +x_340 = lean_box(x_339); +if (lean_is_scalar(x_245)) { + x_341 = lean_alloc_ctor(0, 2, 0); } else { - x_333 = x_236; + x_341 = x_245; } -lean_ctor_set(x_333, 0, x_332); -lean_ctor_set(x_333, 1, x_235); -return x_333; +lean_ctor_set(x_341, 0, x_340); +lean_ctor_set(x_341, 1, x_244); +return x_341; } } else { -uint8_t x_334; lean_object* x_335; lean_object* x_336; +uint8_t x_342; lean_object* x_343; lean_object* x_344; lean_dec(x_31); -x_334 = 1; -x_335 = lean_box(x_334); -if (lean_is_scalar(x_236)) { - x_336 = lean_alloc_ctor(0, 2, 0); -} else { - x_336 = x_236; -} -lean_ctor_set(x_336, 0, x_335); -lean_ctor_set(x_336, 1, x_235); -return x_336; -} -} -else -{ -uint8_t x_337; lean_object* x_338; lean_object* x_339; -lean_dec(x_31); -x_337 = 1; -x_338 = lean_box(x_337); -x_339 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_339, 0, x_338); -lean_ctor_set(x_339, 1, x_230); -return x_339; -} -} -} -else -{ -uint8_t x_340; -lean_dec(x_31); -x_340 = !lean_is_exclusive(x_35); -if (x_340 == 0) -{ -lean_object* x_341; uint8_t x_342; lean_object* x_343; -x_341 = lean_ctor_get(x_35, 0); -lean_dec(x_341); x_342 = 1; x_343 = lean_box(x_342); -lean_ctor_set(x_35, 0, x_343); +if (lean_is_scalar(x_245)) { + x_344 = lean_alloc_ctor(0, 2, 0); +} else { + x_344 = x_245; +} +lean_ctor_set(x_344, 0, x_343); +lean_ctor_set(x_344, 1, x_244); +return x_344; +} +} +else +{ +uint8_t x_345; lean_object* x_346; lean_object* x_347; +lean_dec(x_31); +x_345 = 1; +x_346 = lean_box(x_345); +if (lean_is_scalar(x_245)) { + x_347 = lean_alloc_ctor(0, 2, 0); +} else { + x_347 = x_245; +} +lean_ctor_set(x_347, 0, x_346); +lean_ctor_set(x_347, 1, x_244); +return x_347; +} +} +else +{ +uint8_t x_348; lean_object* x_349; lean_object* x_350; +lean_dec(x_31); +x_348 = 1; +x_349 = lean_box(x_348); +if (lean_is_scalar(x_245)) { + x_350 = lean_alloc_ctor(0, 2, 0); +} else { + x_350 = x_245; +} +lean_ctor_set(x_350, 0, x_349); +lean_ctor_set(x_350, 1, x_244); +return x_350; +} +} +else +{ +uint8_t x_351; lean_object* x_352; lean_object* x_353; +lean_dec(x_31); +x_351 = 1; +x_352 = lean_box(x_351); +x_353 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_353, 0, x_352); +lean_ctor_set(x_353, 1, x_239); +return x_353; +} +} +} +else +{ +uint8_t x_354; +lean_dec(x_31); +x_354 = !lean_is_exclusive(x_35); +if (x_354 == 0) +{ +lean_object* x_355; uint8_t x_356; lean_object* x_357; +x_355 = lean_ctor_get(x_35, 0); +lean_dec(x_355); +x_356 = 1; +x_357 = lean_box(x_356); +lean_ctor_set(x_35, 0, x_357); return x_35; } else { -lean_object* x_344; uint8_t x_345; lean_object* x_346; lean_object* x_347; -x_344 = lean_ctor_get(x_35, 1); -lean_inc(x_344); +lean_object* x_358; uint8_t x_359; lean_object* x_360; lean_object* x_361; +x_358 = lean_ctor_get(x_35, 1); +lean_inc(x_358); lean_dec(x_35); -x_345 = 1; -x_346 = lean_box(x_345); -x_347 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_347, 0, x_346); -lean_ctor_set(x_347, 1, x_344); -return x_347; +x_359 = 1; +x_360 = lean_box(x_359); +x_361 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_361, 0, x_360); +lean_ctor_set(x_361, 1, x_358); +return x_361; } } } @@ -19551,7 +19665,20 @@ x_18 = lean_ctor_get_uint8(x_3, 4); if (x_18 == 0) { uint8_t x_19; +x_19 = !lean_is_exclusive(x_12); +if (x_19 == 0) +{ +lean_object* x_20; lean_object* x_21; lean_object* x_22; uint8_t x_23; +x_20 = lean_ctor_get(x_12, 1); +x_21 = lean_ctor_get(x_12, 0); +lean_dec(x_21); +x_22 = lean_ctor_get(x_13, 4); +lean_inc(x_22); +x_23 = l_Lean_LocalDecl_isImplementationDetail(x_13); lean_dec(x_13); +if (x_23 == 0) +{ +lean_dec(x_22); lean_dec(x_11); lean_dec(x_7); lean_dec(x_6); @@ -19559,46 +19686,74 @@ lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_1); -x_19 = !lean_is_exclusive(x_12); -if (x_19 == 0) -{ -lean_object* x_20; -x_20 = lean_ctor_get(x_12, 0); -lean_dec(x_20); lean_ctor_set(x_12, 0, x_2); return x_12; } else { -lean_object* x_21; lean_object* x_22; -x_21 = lean_ctor_get(x_12, 1); -lean_inc(x_21); -lean_dec(x_12); -x_22 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_22, 0, x_2); -lean_ctor_set(x_22, 1, x_21); -return x_22; -} -} -else -{ -lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; +lean_object* x_24; lean_object* x_25; +lean_free_object(x_12); lean_dec(x_2); -x_23 = lean_ctor_get(x_12, 1); -lean_inc(x_23); +x_24 = lean_box(0); +x_25 = l_Lean_Meta_whnfEasyCases___at_Lean_Meta_whnfCore_go___spec__3___lambda__2(x_1, x_22, x_3, x_11, x_24, x_4, x_5, x_6, x_7, x_20); +return x_25; +} +} +else +{ +lean_object* x_26; lean_object* x_27; uint8_t x_28; +x_26 = lean_ctor_get(x_12, 1); +lean_inc(x_26); lean_dec(x_12); -x_24 = lean_ctor_get(x_13, 4); -lean_inc(x_24); +x_27 = lean_ctor_get(x_13, 4); +lean_inc(x_27); +x_28 = l_Lean_LocalDecl_isImplementationDetail(x_13); lean_dec(x_13); -x_25 = lean_box(0); -x_26 = l_Lean_Meta_whnfEasyCases___at_Lean_Meta_whnfCore_go___spec__3___lambda__2(x_1, x_24, x_3, x_11, x_25, x_4, x_5, x_6, x_7, x_23); -return x_26; +if (x_28 == 0) +{ +lean_object* x_29; +lean_dec(x_27); +lean_dec(x_11); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_1); +x_29 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_29, 0, x_2); +lean_ctor_set(x_29, 1, x_26); +return x_29; +} +else +{ +lean_object* x_30; lean_object* x_31; +lean_dec(x_2); +x_30 = lean_box(0); +x_31 = l_Lean_Meta_whnfEasyCases___at_Lean_Meta_whnfCore_go___spec__3___lambda__2(x_1, x_27, x_3, x_11, x_30, x_4, x_5, x_6, x_7, x_26); +return x_31; } } } else { -uint8_t x_27; +lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; +lean_dec(x_2); +x_32 = lean_ctor_get(x_12, 1); +lean_inc(x_32); +lean_dec(x_12); +x_33 = lean_ctor_get(x_13, 4); +lean_inc(x_33); +lean_dec(x_13); +x_34 = lean_box(0); +x_35 = l_Lean_Meta_whnfEasyCases___at_Lean_Meta_whnfCore_go___spec__3___lambda__2(x_1, x_33, x_3, x_11, x_34, x_4, x_5, x_6, x_7, x_32); +return x_35; +} +} +} +else +{ +uint8_t x_36; lean_dec(x_11); lean_dec(x_7); lean_dec(x_6); @@ -19607,299 +19762,299 @@ lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_27 = !lean_is_exclusive(x_12); -if (x_27 == 0) +x_36 = !lean_is_exclusive(x_12); +if (x_36 == 0) { return x_12; } else { -lean_object* x_28; lean_object* x_29; lean_object* x_30; -x_28 = lean_ctor_get(x_12, 0); -x_29 = lean_ctor_get(x_12, 1); -lean_inc(x_29); -lean_inc(x_28); +lean_object* x_37; lean_object* x_38; lean_object* x_39; +x_37 = lean_ctor_get(x_12, 0); +x_38 = lean_ctor_get(x_12, 1); +lean_inc(x_38); +lean_inc(x_37); lean_dec(x_12); -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; +x_39 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_39, 0, x_37); +lean_ctor_set(x_39, 1, x_38); +return x_39; } } } case 2: { -lean_object* x_31; lean_object* x_32; lean_object* x_33; -x_31 = lean_ctor_get(x_2, 0); -lean_inc(x_31); -x_32 = l_Lean_getExprMVarAssignment_x3f___at___private_Lean_Meta_Basic_0__Lean_Meta_isClassQuick_x3f___spec__1(x_31, x_4, x_5, x_6, x_7, x_8); -x_33 = lean_ctor_get(x_32, 0); -lean_inc(x_33); -if (lean_obj_tag(x_33) == 0) +lean_object* x_40; lean_object* x_41; lean_object* x_42; +x_40 = lean_ctor_get(x_2, 0); +lean_inc(x_40); +x_41 = l_Lean_getExprMVarAssignment_x3f___at___private_Lean_Meta_Basic_0__Lean_Meta_isClassQuick_x3f___spec__1(x_40, x_4, x_5, x_6, x_7, x_8); +x_42 = lean_ctor_get(x_41, 0); +lean_inc(x_42); +if (lean_obj_tag(x_42) == 0) { -uint8_t x_34; +uint8_t x_43; lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_1); -x_34 = !lean_is_exclusive(x_32); -if (x_34 == 0) +x_43 = !lean_is_exclusive(x_41); +if (x_43 == 0) { -lean_object* x_35; -x_35 = lean_ctor_get(x_32, 0); -lean_dec(x_35); -lean_ctor_set(x_32, 0, x_2); -return x_32; +lean_object* x_44; +x_44 = lean_ctor_get(x_41, 0); +lean_dec(x_44); +lean_ctor_set(x_41, 0, x_2); +return x_41; } else { -lean_object* x_36; lean_object* x_37; -x_36 = lean_ctor_get(x_32, 1); -lean_inc(x_36); -lean_dec(x_32); -x_37 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_37, 0, x_2); -lean_ctor_set(x_37, 1, x_36); -return x_37; +lean_object* x_45; lean_object* x_46; +x_45 = lean_ctor_get(x_41, 1); +lean_inc(x_45); +lean_dec(x_41); +x_46 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_46, 0, x_2); +lean_ctor_set(x_46, 1, x_45); +return x_46; } } else { -lean_object* x_38; lean_object* x_39; +lean_object* x_47; lean_object* x_48; lean_dec(x_2); -x_38 = lean_ctor_get(x_32, 1); -lean_inc(x_38); -lean_dec(x_32); -x_39 = lean_ctor_get(x_33, 0); -lean_inc(x_39); -lean_dec(x_33); -x_2 = x_39; -x_8 = x_38; +x_47 = lean_ctor_get(x_41, 1); +lean_inc(x_47); +lean_dec(x_41); +x_48 = lean_ctor_get(x_42, 0); +lean_inc(x_48); +lean_dec(x_42); +x_2 = x_48; +x_8 = x_47; goto _start; } } case 4: { -lean_object* x_41; lean_object* x_42; lean_object* x_43; uint8_t x_44; +lean_object* x_50; lean_object* x_51; lean_object* x_52; uint8_t x_53; lean_dec(x_3); lean_dec(x_1); -x_41 = l_Lean_Meta_whnfEasyCases___at_Lean_Meta_whnfCore_go___spec__3___closed__2; -x_42 = l_Lean_isTracingEnabledFor___at_Lean_Meta_processPostponed_loop___spec__1(x_41, x_4, x_5, x_6, x_7, x_8); -x_43 = lean_ctor_get(x_42, 0); -lean_inc(x_43); -x_44 = lean_unbox(x_43); -lean_dec(x_43); -if (x_44 == 0) +x_50 = l_Lean_Meta_whnfEasyCases___at_Lean_Meta_whnfCore_go___spec__3___closed__2; +x_51 = l_Lean_isTracingEnabledFor___at_Lean_Meta_processPostponed_loop___spec__1(x_50, x_4, x_5, x_6, x_7, x_8); +x_52 = lean_ctor_get(x_51, 0); +lean_inc(x_52); +x_53 = lean_unbox(x_52); +lean_dec(x_52); +if (x_53 == 0) { -uint8_t x_45; +uint8_t x_54; lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); -x_45 = !lean_is_exclusive(x_42); -if (x_45 == 0) +x_54 = !lean_is_exclusive(x_51); +if (x_54 == 0) { -lean_object* x_46; -x_46 = lean_ctor_get(x_42, 0); -lean_dec(x_46); -lean_ctor_set(x_42, 0, x_2); -return x_42; -} -else -{ -lean_object* x_47; lean_object* x_48; -x_47 = lean_ctor_get(x_42, 1); -lean_inc(x_47); -lean_dec(x_42); -x_48 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_48, 0, x_2); -lean_ctor_set(x_48, 1, x_47); -return x_48; -} -} -else -{ -lean_object* x_49; lean_object* x_50; lean_object* x_51; uint8_t x_52; -x_49 = lean_ctor_get(x_42, 1); -lean_inc(x_49); -lean_dec(x_42); -lean_inc(x_2); -x_50 = l_Lean_MessageData_ofExpr(x_2); -x_51 = l_Lean_addTrace___at_Lean_Meta_processPostponed_loop___spec__2(x_41, x_50, x_4, x_5, x_6, x_7, x_49); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -x_52 = !lean_is_exclusive(x_51); -if (x_52 == 0) -{ -lean_object* x_53; -x_53 = lean_ctor_get(x_51, 0); -lean_dec(x_53); +lean_object* x_55; +x_55 = lean_ctor_get(x_51, 0); +lean_dec(x_55); lean_ctor_set(x_51, 0, x_2); return x_51; } else { -lean_object* x_54; lean_object* x_55; -x_54 = lean_ctor_get(x_51, 1); -lean_inc(x_54); +lean_object* x_56; lean_object* x_57; +x_56 = lean_ctor_get(x_51, 1); +lean_inc(x_56); lean_dec(x_51); -x_55 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_55, 0, x_2); -lean_ctor_set(x_55, 1, x_54); -return x_55; +x_57 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_57, 0, x_2); +lean_ctor_set(x_57, 1, x_56); +return x_57; +} +} +else +{ +lean_object* x_58; lean_object* x_59; lean_object* x_60; uint8_t x_61; +x_58 = lean_ctor_get(x_51, 1); +lean_inc(x_58); +lean_dec(x_51); +lean_inc(x_2); +x_59 = l_Lean_MessageData_ofExpr(x_2); +x_60 = l_Lean_addTrace___at_Lean_Meta_processPostponed_loop___spec__2(x_50, x_59, x_4, x_5, x_6, x_7, x_58); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +x_61 = !lean_is_exclusive(x_60); +if (x_61 == 0) +{ +lean_object* x_62; +x_62 = lean_ctor_get(x_60, 0); +lean_dec(x_62); +lean_ctor_set(x_60, 0, x_2); +return x_60; +} +else +{ +lean_object* x_63; lean_object* x_64; +x_63 = lean_ctor_get(x_60, 1); +lean_inc(x_63); +lean_dec(x_60); +x_64 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_64, 0, x_2); +lean_ctor_set(x_64, 1, x_63); +return x_64; } } } case 5: { -lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; uint8_t x_60; +lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; uint8_t x_69; lean_dec(x_3); -x_56 = lean_ctor_get(x_2, 0); -lean_inc(x_56); -x_57 = l_Lean_Meta_whnfEasyCases___at_Lean_Meta_whnfCore_go___spec__3___closed__2; -x_58 = l_Lean_isTracingEnabledFor___at_Lean_Meta_processPostponed_loop___spec__1(x_57, x_4, x_5, x_6, x_7, x_8); -x_59 = lean_ctor_get(x_58, 0); -lean_inc(x_59); -x_60 = lean_unbox(x_59); -lean_dec(x_59); -if (x_60 == 0) +x_65 = lean_ctor_get(x_2, 0); +lean_inc(x_65); +x_66 = l_Lean_Meta_whnfEasyCases___at_Lean_Meta_whnfCore_go___spec__3___closed__2; +x_67 = l_Lean_isTracingEnabledFor___at_Lean_Meta_processPostponed_loop___spec__1(x_66, x_4, x_5, x_6, x_7, x_8); +x_68 = lean_ctor_get(x_67, 0); +lean_inc(x_68); +x_69 = lean_unbox(x_68); +lean_dec(x_68); +if (x_69 == 0) { -lean_object* x_61; lean_object* x_62; lean_object* x_63; -x_61 = lean_ctor_get(x_58, 1); -lean_inc(x_61); -lean_dec(x_58); -x_62 = lean_box(0); -x_63 = l_Lean_Meta_whnfEasyCases___at_Lean_Meta_whnfCore_go___spec__3___lambda__5(x_56, x_1, x_2, x_62, x_4, x_5, x_6, x_7, x_61); -return x_63; +lean_object* x_70; lean_object* x_71; lean_object* x_72; +x_70 = lean_ctor_get(x_67, 1); +lean_inc(x_70); +lean_dec(x_67); +x_71 = lean_box(0); +x_72 = l_Lean_Meta_whnfEasyCases___at_Lean_Meta_whnfCore_go___spec__3___lambda__5(x_65, x_1, x_2, x_71, x_4, x_5, x_6, x_7, x_70); +return x_72; } 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; -x_64 = lean_ctor_get(x_58, 1); -lean_inc(x_64); -lean_dec(x_58); +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_73 = lean_ctor_get(x_67, 1); +lean_inc(x_73); +lean_dec(x_67); lean_inc(x_2); -x_65 = l_Lean_MessageData_ofExpr(x_2); -x_66 = l_Lean_addTrace___at_Lean_Meta_processPostponed_loop___spec__2(x_57, x_65, x_4, x_5, x_6, x_7, x_64); -x_67 = lean_ctor_get(x_66, 0); -lean_inc(x_67); -x_68 = lean_ctor_get(x_66, 1); -lean_inc(x_68); -lean_dec(x_66); -x_69 = l_Lean_Meta_whnfEasyCases___at_Lean_Meta_whnfCore_go___spec__3___lambda__5(x_56, x_1, x_2, x_67, x_4, x_5, x_6, x_7, x_68); -return x_69; +x_74 = l_Lean_MessageData_ofExpr(x_2); +x_75 = l_Lean_addTrace___at_Lean_Meta_processPostponed_loop___spec__2(x_66, x_74, x_4, x_5, x_6, x_7, x_73); +x_76 = lean_ctor_get(x_75, 0); +lean_inc(x_76); +x_77 = lean_ctor_get(x_75, 1); +lean_inc(x_77); +lean_dec(x_75); +x_78 = l_Lean_Meta_whnfEasyCases___at_Lean_Meta_whnfCore_go___spec__3___lambda__5(x_65, x_1, x_2, x_76, x_4, x_5, x_6, x_7, x_77); +return x_78; } } case 8: { -lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; uint8_t x_75; +lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; uint8_t x_84; lean_dec(x_3); -x_70 = lean_ctor_get(x_2, 2); -lean_inc(x_70); -x_71 = lean_ctor_get(x_2, 3); -lean_inc(x_71); -x_72 = l_Lean_Meta_whnfEasyCases___at_Lean_Meta_whnfCore_go___spec__3___closed__2; -x_73 = l_Lean_isTracingEnabledFor___at_Lean_Meta_processPostponed_loop___spec__1(x_72, x_4, x_5, x_6, x_7, x_8); -x_74 = lean_ctor_get(x_73, 0); -lean_inc(x_74); -x_75 = lean_unbox(x_74); -lean_dec(x_74); -if (x_75 == 0) +x_79 = lean_ctor_get(x_2, 2); +lean_inc(x_79); +x_80 = lean_ctor_get(x_2, 3); +lean_inc(x_80); +x_81 = l_Lean_Meta_whnfEasyCases___at_Lean_Meta_whnfCore_go___spec__3___closed__2; +x_82 = l_Lean_isTracingEnabledFor___at_Lean_Meta_processPostponed_loop___spec__1(x_81, x_4, x_5, x_6, x_7, x_8); +x_83 = lean_ctor_get(x_82, 0); +lean_inc(x_83); +x_84 = lean_unbox(x_83); +lean_dec(x_83); +if (x_84 == 0) { -lean_object* x_76; lean_object* x_77; lean_object* x_78; -x_76 = lean_ctor_get(x_73, 1); -lean_inc(x_76); -lean_dec(x_73); -x_77 = lean_box(0); -x_78 = l_Lean_Meta_whnfEasyCases___at_Lean_Meta_whnfCore_go___spec__3___lambda__6(x_1, x_2, x_71, x_70, x_77, x_4, x_5, x_6, x_7, x_76); -return x_78; +lean_object* x_85; lean_object* x_86; lean_object* x_87; +x_85 = lean_ctor_get(x_82, 1); +lean_inc(x_85); +lean_dec(x_82); +x_86 = lean_box(0); +x_87 = l_Lean_Meta_whnfEasyCases___at_Lean_Meta_whnfCore_go___spec__3___lambda__6(x_1, x_2, x_80, x_79, x_86, x_4, x_5, x_6, x_7, x_85); +return x_87; } else { -lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; -x_79 = lean_ctor_get(x_73, 1); -lean_inc(x_79); -lean_dec(x_73); +lean_object* x_88; lean_object* x_89; lean_object* x_90; lean_object* x_91; lean_object* x_92; lean_object* x_93; +x_88 = lean_ctor_get(x_82, 1); +lean_inc(x_88); +lean_dec(x_82); lean_inc(x_2); -x_80 = l_Lean_MessageData_ofExpr(x_2); -x_81 = l_Lean_addTrace___at_Lean_Meta_processPostponed_loop___spec__2(x_72, x_80, x_4, x_5, x_6, x_7, x_79); -x_82 = lean_ctor_get(x_81, 0); -lean_inc(x_82); -x_83 = lean_ctor_get(x_81, 1); -lean_inc(x_83); -lean_dec(x_81); -x_84 = l_Lean_Meta_whnfEasyCases___at_Lean_Meta_whnfCore_go___spec__3___lambda__6(x_1, x_2, x_71, x_70, x_82, x_4, x_5, x_6, x_7, x_83); -return x_84; +x_89 = l_Lean_MessageData_ofExpr(x_2); +x_90 = l_Lean_addTrace___at_Lean_Meta_processPostponed_loop___spec__2(x_81, x_89, x_4, x_5, x_6, x_7, x_88); +x_91 = lean_ctor_get(x_90, 0); +lean_inc(x_91); +x_92 = lean_ctor_get(x_90, 1); +lean_inc(x_92); +lean_dec(x_90); +x_93 = l_Lean_Meta_whnfEasyCases___at_Lean_Meta_whnfCore_go___spec__3___lambda__6(x_1, x_2, x_80, x_79, x_91, x_4, x_5, x_6, x_7, x_92); +return x_93; } } case 10: { -lean_object* x_85; -x_85 = lean_ctor_get(x_2, 1); -lean_inc(x_85); +lean_object* x_94; +x_94 = lean_ctor_get(x_2, 1); +lean_inc(x_94); lean_dec(x_2); -x_2 = x_85; +x_2 = x_94; goto _start; } case 11: { -lean_object* x_87; lean_object* x_88; lean_object* x_89; lean_object* x_90; lean_object* x_91; uint8_t x_92; +lean_object* x_96; lean_object* x_97; lean_object* x_98; lean_object* x_99; lean_object* x_100; uint8_t x_101; lean_dec(x_3); -x_87 = lean_ctor_get(x_2, 1); -lean_inc(x_87); -x_88 = lean_ctor_get(x_2, 2); -lean_inc(x_88); -x_89 = l_Lean_Meta_whnfEasyCases___at_Lean_Meta_whnfCore_go___spec__3___closed__2; -x_90 = l_Lean_isTracingEnabledFor___at_Lean_Meta_processPostponed_loop___spec__1(x_89, x_4, x_5, x_6, x_7, x_8); -x_91 = lean_ctor_get(x_90, 0); -lean_inc(x_91); -x_92 = lean_unbox(x_91); -lean_dec(x_91); -if (x_92 == 0) +x_96 = lean_ctor_get(x_2, 1); +lean_inc(x_96); +x_97 = lean_ctor_get(x_2, 2); +lean_inc(x_97); +x_98 = l_Lean_Meta_whnfEasyCases___at_Lean_Meta_whnfCore_go___spec__3___closed__2; +x_99 = l_Lean_isTracingEnabledFor___at_Lean_Meta_processPostponed_loop___spec__1(x_98, x_4, x_5, x_6, x_7, x_8); +x_100 = lean_ctor_get(x_99, 0); +lean_inc(x_100); +x_101 = lean_unbox(x_100); +lean_dec(x_100); +if (x_101 == 0) { -lean_object* x_93; lean_object* x_94; lean_object* x_95; -x_93 = lean_ctor_get(x_90, 1); -lean_inc(x_93); -lean_dec(x_90); -x_94 = lean_box(0); -x_95 = l_Lean_Meta_whnfEasyCases___at_Lean_Meta_whnfCore_go___spec__3___lambda__9(x_87, x_2, x_1, x_88, x_94, x_4, x_5, x_6, x_7, x_93); -return x_95; +lean_object* x_102; lean_object* x_103; lean_object* x_104; +x_102 = lean_ctor_get(x_99, 1); +lean_inc(x_102); +lean_dec(x_99); +x_103 = lean_box(0); +x_104 = l_Lean_Meta_whnfEasyCases___at_Lean_Meta_whnfCore_go___spec__3___lambda__9(x_96, x_2, x_1, x_97, x_103, x_4, x_5, x_6, x_7, x_102); +return x_104; } else { -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_96 = lean_ctor_get(x_90, 1); -lean_inc(x_96); -lean_dec(x_90); +lean_object* x_105; lean_object* x_106; lean_object* x_107; lean_object* x_108; lean_object* x_109; lean_object* x_110; +x_105 = lean_ctor_get(x_99, 1); +lean_inc(x_105); +lean_dec(x_99); lean_inc(x_2); -x_97 = l_Lean_MessageData_ofExpr(x_2); -x_98 = l_Lean_addTrace___at_Lean_Meta_processPostponed_loop___spec__2(x_89, x_97, x_4, x_5, x_6, x_7, x_96); -x_99 = lean_ctor_get(x_98, 0); -lean_inc(x_99); -x_100 = lean_ctor_get(x_98, 1); -lean_inc(x_100); -lean_dec(x_98); -x_101 = l_Lean_Meta_whnfEasyCases___at_Lean_Meta_whnfCore_go___spec__3___lambda__9(x_87, x_2, x_1, x_88, x_99, x_4, x_5, x_6, x_7, x_100); -return x_101; +x_106 = l_Lean_MessageData_ofExpr(x_2); +x_107 = l_Lean_addTrace___at_Lean_Meta_processPostponed_loop___spec__2(x_98, x_106, x_4, x_5, x_6, x_7, x_105); +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); +x_110 = l_Lean_Meta_whnfEasyCases___at_Lean_Meta_whnfCore_go___spec__3___lambda__9(x_96, x_2, x_1, x_97, x_108, x_4, x_5, x_6, x_7, x_109); +return x_110; } } default: { -lean_object* x_102; +lean_object* x_111; lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_1); -x_102 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_102, 0, x_2); -lean_ctor_set(x_102, 1, x_8); -return x_102; +x_111 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_111, 0, x_2); +lean_ctor_set(x_111, 1, x_8); +return x_111; } } } @@ -24784,53 +24939,93 @@ x_18 = lean_ctor_get_uint8(x_3, 4); if (x_18 == 0) { uint8_t x_19; +x_19 = !lean_is_exclusive(x_12); +if (x_19 == 0) +{ +lean_object* x_20; lean_object* x_21; lean_object* x_22; uint8_t x_23; +x_20 = lean_ctor_get(x_12, 1); +x_21 = lean_ctor_get(x_12, 0); +lean_dec(x_21); +x_22 = lean_ctor_get(x_13, 4); +lean_inc(x_22); +x_23 = l_Lean_LocalDecl_isImplementationDetail(x_13); lean_dec(x_13); +if (x_23 == 0) +{ +lean_dec(x_22); lean_dec(x_11); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); -x_19 = !lean_is_exclusive(x_12); -if (x_19 == 0) -{ -lean_object* x_20; -x_20 = lean_ctor_get(x_12, 0); -lean_dec(x_20); lean_ctor_set(x_12, 0, x_2); return x_12; } else { -lean_object* x_21; lean_object* x_22; -x_21 = lean_ctor_get(x_12, 1); -lean_inc(x_21); -lean_dec(x_12); -x_22 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_22, 0, x_2); -lean_ctor_set(x_22, 1, x_21); -return x_22; -} -} -else -{ -lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; +lean_object* x_24; lean_object* x_25; +lean_free_object(x_12); lean_dec(x_2); -x_23 = lean_ctor_get(x_12, 1); -lean_inc(x_23); +x_24 = lean_box(0); +x_25 = l_Lean_Meta_whnfEasyCases___at_Lean_Meta_whnfUntil___spec__2___lambda__2(x_1, x_22, x_3, x_11, x_24, x_4, x_5, x_6, x_7, x_20); +return x_25; +} +} +else +{ +lean_object* x_26; lean_object* x_27; uint8_t x_28; +x_26 = lean_ctor_get(x_12, 1); +lean_inc(x_26); lean_dec(x_12); -x_24 = lean_ctor_get(x_13, 4); -lean_inc(x_24); +x_27 = lean_ctor_get(x_13, 4); +lean_inc(x_27); +x_28 = l_Lean_LocalDecl_isImplementationDetail(x_13); lean_dec(x_13); -x_25 = lean_box(0); -x_26 = l_Lean_Meta_whnfEasyCases___at_Lean_Meta_whnfUntil___spec__2___lambda__2(x_1, x_24, x_3, x_11, x_25, x_4, x_5, x_6, x_7, x_23); -return x_26; +if (x_28 == 0) +{ +lean_object* x_29; +lean_dec(x_27); +lean_dec(x_11); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +x_29 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_29, 0, x_2); +lean_ctor_set(x_29, 1, x_26); +return x_29; +} +else +{ +lean_object* x_30; lean_object* x_31; +lean_dec(x_2); +x_30 = lean_box(0); +x_31 = l_Lean_Meta_whnfEasyCases___at_Lean_Meta_whnfUntil___spec__2___lambda__2(x_1, x_27, x_3, x_11, x_30, x_4, x_5, x_6, x_7, x_26); +return x_31; } } } else { -uint8_t x_27; +lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; +lean_dec(x_2); +x_32 = lean_ctor_get(x_12, 1); +lean_inc(x_32); +lean_dec(x_12); +x_33 = lean_ctor_get(x_13, 4); +lean_inc(x_33); +lean_dec(x_13); +x_34 = lean_box(0); +x_35 = l_Lean_Meta_whnfEasyCases___at_Lean_Meta_whnfUntil___spec__2___lambda__2(x_1, x_33, x_3, x_11, x_34, x_4, x_5, x_6, x_7, x_32); +return x_35; +} +} +} +else +{ +uint8_t x_36; lean_dec(x_11); lean_dec(x_7); lean_dec(x_6); @@ -24838,180 +25033,180 @@ lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); -x_27 = !lean_is_exclusive(x_12); -if (x_27 == 0) +x_36 = !lean_is_exclusive(x_12); +if (x_36 == 0) { return x_12; } else { -lean_object* x_28; lean_object* x_29; lean_object* x_30; -x_28 = lean_ctor_get(x_12, 0); -x_29 = lean_ctor_get(x_12, 1); -lean_inc(x_29); -lean_inc(x_28); +lean_object* x_37; lean_object* x_38; lean_object* x_39; +x_37 = lean_ctor_get(x_12, 0); +x_38 = lean_ctor_get(x_12, 1); +lean_inc(x_38); +lean_inc(x_37); lean_dec(x_12); -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; +x_39 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_39, 0, x_37); +lean_ctor_set(x_39, 1, x_38); +return x_39; } } } case 2: { -lean_object* x_31; lean_object* x_32; lean_object* x_33; -x_31 = lean_ctor_get(x_2, 0); -lean_inc(x_31); -x_32 = l_Lean_getExprMVarAssignment_x3f___at___private_Lean_Meta_Basic_0__Lean_Meta_isClassQuick_x3f___spec__1(x_31, x_4, x_5, x_6, x_7, x_8); -x_33 = lean_ctor_get(x_32, 0); -lean_inc(x_33); -if (lean_obj_tag(x_33) == 0) +lean_object* x_40; lean_object* x_41; lean_object* x_42; +x_40 = lean_ctor_get(x_2, 0); +lean_inc(x_40); +x_41 = l_Lean_getExprMVarAssignment_x3f___at___private_Lean_Meta_Basic_0__Lean_Meta_isClassQuick_x3f___spec__1(x_40, x_4, x_5, x_6, x_7, x_8); +x_42 = lean_ctor_get(x_41, 0); +lean_inc(x_42); +if (lean_obj_tag(x_42) == 0) { -uint8_t x_34; +uint8_t x_43; lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); -x_34 = !lean_is_exclusive(x_32); -if (x_34 == 0) +x_43 = !lean_is_exclusive(x_41); +if (x_43 == 0) { -lean_object* x_35; -x_35 = lean_ctor_get(x_32, 0); -lean_dec(x_35); -lean_ctor_set(x_32, 0, x_2); -return x_32; +lean_object* x_44; +x_44 = lean_ctor_get(x_41, 0); +lean_dec(x_44); +lean_ctor_set(x_41, 0, x_2); +return x_41; } else { -lean_object* x_36; lean_object* x_37; -x_36 = lean_ctor_get(x_32, 1); -lean_inc(x_36); -lean_dec(x_32); -x_37 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_37, 0, x_2); -lean_ctor_set(x_37, 1, x_36); -return x_37; +lean_object* x_45; lean_object* x_46; +x_45 = lean_ctor_get(x_41, 1); +lean_inc(x_45); +lean_dec(x_41); +x_46 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_46, 0, x_2); +lean_ctor_set(x_46, 1, x_45); +return x_46; } } else { -lean_object* x_38; lean_object* x_39; +lean_object* x_47; lean_object* x_48; lean_dec(x_2); -x_38 = lean_ctor_get(x_32, 1); -lean_inc(x_38); -lean_dec(x_32); -x_39 = lean_ctor_get(x_33, 0); -lean_inc(x_39); -lean_dec(x_33); -x_2 = x_39; -x_8 = x_38; +x_47 = lean_ctor_get(x_41, 1); +lean_inc(x_47); +lean_dec(x_41); +x_48 = lean_ctor_get(x_42, 0); +lean_inc(x_48); +lean_dec(x_42); +x_2 = x_48; +x_8 = x_47; goto _start; } } case 4: { -lean_object* x_41; lean_object* x_42; +lean_object* x_50; lean_object* x_51; lean_dec(x_3); -x_41 = l_Lean_Meta_whnfHeadPred___lambda__1___closed__1; +x_50 = l_Lean_Meta_whnfHeadPred___lambda__1___closed__1; lean_inc(x_7); lean_inc(x_6); lean_inc(x_5); lean_inc(x_4); -x_42 = l_Lean_Meta_whnfEasyCases___at_Lean_Meta_whnfCore_go___spec__3(x_41, x_2, x_41, x_4, x_5, x_6, x_7, x_8); -if (lean_obj_tag(x_42) == 0) +x_51 = l_Lean_Meta_whnfEasyCases___at_Lean_Meta_whnfCore_go___spec__3(x_50, x_2, x_50, x_4, x_5, x_6, x_7, x_8); +if (lean_obj_tag(x_51) == 0) { -uint8_t x_43; -x_43 = !lean_is_exclusive(x_42); -if (x_43 == 0) +uint8_t x_52; +x_52 = !lean_is_exclusive(x_51); +if (x_52 == 0) { -lean_object* x_44; lean_object* x_45; uint8_t x_46; -x_44 = lean_ctor_get(x_42, 0); -x_45 = lean_ctor_get(x_42, 1); -x_46 = l_Lean_Expr_isAppOf(x_44, x_1); -if (x_46 == 0) +lean_object* x_53; lean_object* x_54; uint8_t x_55; +x_53 = lean_ctor_get(x_51, 0); +x_54 = lean_ctor_get(x_51, 1); +x_55 = l_Lean_Expr_isAppOf(x_53, x_1); +if (x_55 == 0) { -lean_object* x_47; -lean_free_object(x_42); +lean_object* x_56; +lean_free_object(x_51); lean_inc(x_7); lean_inc(x_6); lean_inc(x_5); lean_inc(x_4); -lean_inc(x_44); -x_47 = l_Lean_Meta_unfoldDefinition_x3f(x_44, x_4, x_5, x_6, x_7, x_45); -if (lean_obj_tag(x_47) == 0) -{ -lean_object* x_48; -x_48 = lean_ctor_get(x_47, 0); -lean_inc(x_48); -if (lean_obj_tag(x_48) == 0) -{ -uint8_t x_49; -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -x_49 = !lean_is_exclusive(x_47); -if (x_49 == 0) -{ -lean_object* x_50; -x_50 = lean_ctor_get(x_47, 0); -lean_dec(x_50); -lean_ctor_set(x_47, 0, x_44); -return x_47; -} -else -{ -lean_object* x_51; lean_object* x_52; -x_51 = lean_ctor_get(x_47, 1); -lean_inc(x_51); -lean_dec(x_47); -x_52 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_52, 0, x_44); -lean_ctor_set(x_52, 1, x_51); -return x_52; -} -} -else -{ -lean_object* x_53; lean_object* x_54; lean_object* x_55; -lean_dec(x_44); -x_53 = lean_ctor_get(x_47, 1); lean_inc(x_53); -lean_dec(x_47); -x_54 = lean_ctor_get(x_48, 0); -lean_inc(x_54); -lean_dec(x_48); -x_55 = l_Lean_Meta_whnfHeadPred___at_Lean_Meta_whnfUntil___spec__1(x_1, x_54, x_4, x_5, x_6, x_7, x_53); -return x_55; -} -} -else +x_56 = l_Lean_Meta_unfoldDefinition_x3f(x_53, x_4, x_5, x_6, x_7, x_54); +if (lean_obj_tag(x_56) == 0) { -uint8_t x_56; -lean_dec(x_44); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -x_56 = !lean_is_exclusive(x_47); -if (x_56 == 0) -{ -return x_47; -} -else -{ -lean_object* x_57; lean_object* x_58; lean_object* x_59; -x_57 = lean_ctor_get(x_47, 0); -x_58 = lean_ctor_get(x_47, 1); -lean_inc(x_58); +lean_object* x_57; +x_57 = lean_ctor_get(x_56, 0); lean_inc(x_57); -lean_dec(x_47); -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; +if (lean_obj_tag(x_57) == 0) +{ +uint8_t x_58; +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +x_58 = !lean_is_exclusive(x_56); +if (x_58 == 0) +{ +lean_object* x_59; +x_59 = lean_ctor_get(x_56, 0); +lean_dec(x_59); +lean_ctor_set(x_56, 0, x_53); +return x_56; +} +else +{ +lean_object* x_60; lean_object* x_61; +x_60 = lean_ctor_get(x_56, 1); +lean_inc(x_60); +lean_dec(x_56); +x_61 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_61, 0, x_53); +lean_ctor_set(x_61, 1, x_60); +return x_61; +} +} +else +{ +lean_object* x_62; lean_object* x_63; lean_object* x_64; +lean_dec(x_53); +x_62 = lean_ctor_get(x_56, 1); +lean_inc(x_62); +lean_dec(x_56); +x_63 = lean_ctor_get(x_57, 0); +lean_inc(x_63); +lean_dec(x_57); +x_64 = l_Lean_Meta_whnfHeadPred___at_Lean_Meta_whnfUntil___spec__1(x_1, x_63, x_4, x_5, x_6, x_7, x_62); +return x_64; +} +} +else +{ +uint8_t x_65; +lean_dec(x_53); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +x_65 = !lean_is_exclusive(x_56); +if (x_65 == 0) +{ +return x_56; +} +else +{ +lean_object* x_66; lean_object* x_67; lean_object* x_68; +x_66 = lean_ctor_get(x_56, 0); +x_67 = lean_ctor_get(x_56, 1); +lean_inc(x_67); +lean_inc(x_66); +lean_dec(x_56); +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; } } } @@ -25021,245 +25216,245 @@ lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); -return x_42; +return x_51; } } else { -lean_object* x_60; lean_object* x_61; uint8_t x_62; -x_60 = lean_ctor_get(x_42, 0); -x_61 = lean_ctor_get(x_42, 1); -lean_inc(x_61); -lean_inc(x_60); -lean_dec(x_42); -x_62 = l_Lean_Expr_isAppOf(x_60, x_1); -if (x_62 == 0) +lean_object* x_69; lean_object* x_70; uint8_t x_71; +x_69 = lean_ctor_get(x_51, 0); +x_70 = lean_ctor_get(x_51, 1); +lean_inc(x_70); +lean_inc(x_69); +lean_dec(x_51); +x_71 = l_Lean_Expr_isAppOf(x_69, x_1); +if (x_71 == 0) { -lean_object* x_63; +lean_object* x_72; lean_inc(x_7); lean_inc(x_6); lean_inc(x_5); lean_inc(x_4); -lean_inc(x_60); -x_63 = l_Lean_Meta_unfoldDefinition_x3f(x_60, x_4, x_5, x_6, x_7, x_61); -if (lean_obj_tag(x_63) == 0) -{ -lean_object* x_64; -x_64 = lean_ctor_get(x_63, 0); -lean_inc(x_64); -if (lean_obj_tag(x_64) == 0) -{ -lean_object* x_65; lean_object* x_66; lean_object* x_67; -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -x_65 = lean_ctor_get(x_63, 1); -lean_inc(x_65); -if (lean_is_exclusive(x_63)) { - lean_ctor_release(x_63, 0); - lean_ctor_release(x_63, 1); - x_66 = x_63; -} else { - lean_dec_ref(x_63); - x_66 = lean_box(0); -} -if (lean_is_scalar(x_66)) { - x_67 = lean_alloc_ctor(0, 2, 0); -} else { - x_67 = x_66; -} -lean_ctor_set(x_67, 0, x_60); -lean_ctor_set(x_67, 1, x_65); -return x_67; -} -else -{ -lean_object* x_68; lean_object* x_69; lean_object* x_70; -lean_dec(x_60); -x_68 = lean_ctor_get(x_63, 1); -lean_inc(x_68); -lean_dec(x_63); -x_69 = lean_ctor_get(x_64, 0); lean_inc(x_69); -lean_dec(x_64); -x_70 = l_Lean_Meta_whnfHeadPred___at_Lean_Meta_whnfUntil___spec__1(x_1, x_69, x_4, x_5, x_6, x_7, x_68); -return x_70; -} -} -else +x_72 = l_Lean_Meta_unfoldDefinition_x3f(x_69, x_4, x_5, x_6, x_7, x_70); +if (lean_obj_tag(x_72) == 0) { -lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; -lean_dec(x_60); +lean_object* x_73; +x_73 = lean_ctor_get(x_72, 0); +lean_inc(x_73); +if (lean_obj_tag(x_73) == 0) +{ +lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); -x_71 = lean_ctor_get(x_63, 0); -lean_inc(x_71); -x_72 = lean_ctor_get(x_63, 1); -lean_inc(x_72); -if (lean_is_exclusive(x_63)) { - lean_ctor_release(x_63, 0); - lean_ctor_release(x_63, 1); - x_73 = x_63; +x_74 = lean_ctor_get(x_72, 1); +lean_inc(x_74); +if (lean_is_exclusive(x_72)) { + lean_ctor_release(x_72, 0); + lean_ctor_release(x_72, 1); + x_75 = x_72; } else { - lean_dec_ref(x_63); - x_73 = lean_box(0); + lean_dec_ref(x_72); + x_75 = lean_box(0); } -if (lean_is_scalar(x_73)) { - x_74 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_75)) { + x_76 = lean_alloc_ctor(0, 2, 0); } else { - x_74 = x_73; + x_76 = x_75; } -lean_ctor_set(x_74, 0, x_71); -lean_ctor_set(x_74, 1, x_72); -return x_74; -} -} -else -{ -lean_object* x_75; -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -x_75 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_75, 0, x_60); -lean_ctor_set(x_75, 1, x_61); -return x_75; -} -} -} -else -{ -uint8_t x_76; -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -x_76 = !lean_is_exclusive(x_42); -if (x_76 == 0) -{ -return x_42; +lean_ctor_set(x_76, 0, x_69); +lean_ctor_set(x_76, 1, x_74); +return x_76; } else { lean_object* x_77; lean_object* x_78; lean_object* x_79; -x_77 = lean_ctor_get(x_42, 0); -x_78 = lean_ctor_get(x_42, 1); -lean_inc(x_78); +lean_dec(x_69); +x_77 = lean_ctor_get(x_72, 1); lean_inc(x_77); -lean_dec(x_42); -x_79 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_79, 0, x_77); -lean_ctor_set(x_79, 1, x_78); +lean_dec(x_72); +x_78 = lean_ctor_get(x_73, 0); +lean_inc(x_78); +lean_dec(x_73); +x_79 = l_Lean_Meta_whnfHeadPred___at_Lean_Meta_whnfUntil___spec__1(x_1, x_78, x_4, x_5, x_6, x_7, x_77); return x_79; } } +else +{ +lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; +lean_dec(x_69); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +x_80 = lean_ctor_get(x_72, 0); +lean_inc(x_80); +x_81 = lean_ctor_get(x_72, 1); +lean_inc(x_81); +if (lean_is_exclusive(x_72)) { + lean_ctor_release(x_72, 0); + lean_ctor_release(x_72, 1); + x_82 = x_72; +} else { + lean_dec_ref(x_72); + x_82 = lean_box(0); +} +if (lean_is_scalar(x_82)) { + x_83 = lean_alloc_ctor(1, 2, 0); +} else { + x_83 = x_82; +} +lean_ctor_set(x_83, 0, x_80); +lean_ctor_set(x_83, 1, x_81); +return x_83; +} +} +else +{ +lean_object* x_84; +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +x_84 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_84, 0, x_69); +lean_ctor_set(x_84, 1, x_70); +return x_84; +} +} +} +else +{ +uint8_t x_85; +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +x_85 = !lean_is_exclusive(x_51); +if (x_85 == 0) +{ +return x_51; +} +else +{ +lean_object* x_86; lean_object* x_87; lean_object* x_88; +x_86 = lean_ctor_get(x_51, 0); +x_87 = lean_ctor_get(x_51, 1); +lean_inc(x_87); +lean_inc(x_86); +lean_dec(x_51); +x_88 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_88, 0, x_86); +lean_ctor_set(x_88, 1, x_87); +return x_88; +} +} } case 5: { -lean_object* x_80; lean_object* x_81; +lean_object* x_89; lean_object* x_90; lean_dec(x_3); -x_80 = l_Lean_Meta_whnfHeadPred___lambda__1___closed__1; +x_89 = l_Lean_Meta_whnfHeadPred___lambda__1___closed__1; lean_inc(x_7); lean_inc(x_6); lean_inc(x_5); lean_inc(x_4); -x_81 = l_Lean_Meta_whnfEasyCases___at_Lean_Meta_whnfCore_go___spec__3(x_80, x_2, x_80, x_4, x_5, x_6, x_7, x_8); -if (lean_obj_tag(x_81) == 0) +x_90 = l_Lean_Meta_whnfEasyCases___at_Lean_Meta_whnfCore_go___spec__3(x_89, x_2, x_89, x_4, x_5, x_6, x_7, x_8); +if (lean_obj_tag(x_90) == 0) { -uint8_t x_82; -x_82 = !lean_is_exclusive(x_81); -if (x_82 == 0) +uint8_t x_91; +x_91 = !lean_is_exclusive(x_90); +if (x_91 == 0) { -lean_object* x_83; lean_object* x_84; uint8_t x_85; -x_83 = lean_ctor_get(x_81, 0); -x_84 = lean_ctor_get(x_81, 1); -x_85 = l_Lean_Expr_isAppOf(x_83, x_1); -if (x_85 == 0) +lean_object* x_92; lean_object* x_93; uint8_t x_94; +x_92 = lean_ctor_get(x_90, 0); +x_93 = lean_ctor_get(x_90, 1); +x_94 = l_Lean_Expr_isAppOf(x_92, x_1); +if (x_94 == 0) { -lean_object* x_86; -lean_free_object(x_81); +lean_object* x_95; +lean_free_object(x_90); lean_inc(x_7); lean_inc(x_6); lean_inc(x_5); lean_inc(x_4); -lean_inc(x_83); -x_86 = l_Lean_Meta_unfoldDefinition_x3f(x_83, x_4, x_5, x_6, x_7, x_84); -if (lean_obj_tag(x_86) == 0) -{ -lean_object* x_87; -x_87 = lean_ctor_get(x_86, 0); -lean_inc(x_87); -if (lean_obj_tag(x_87) == 0) -{ -uint8_t x_88; -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -x_88 = !lean_is_exclusive(x_86); -if (x_88 == 0) -{ -lean_object* x_89; -x_89 = lean_ctor_get(x_86, 0); -lean_dec(x_89); -lean_ctor_set(x_86, 0, x_83); -return x_86; -} -else -{ -lean_object* x_90; lean_object* x_91; -x_90 = lean_ctor_get(x_86, 1); -lean_inc(x_90); -lean_dec(x_86); -x_91 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_91, 0, x_83); -lean_ctor_set(x_91, 1, x_90); -return x_91; -} -} -else -{ -lean_object* x_92; lean_object* x_93; lean_object* x_94; -lean_dec(x_83); -x_92 = lean_ctor_get(x_86, 1); lean_inc(x_92); -lean_dec(x_86); -x_93 = lean_ctor_get(x_87, 0); -lean_inc(x_93); -lean_dec(x_87); -x_94 = l_Lean_Meta_whnfHeadPred___at_Lean_Meta_whnfUntil___spec__1(x_1, x_93, x_4, x_5, x_6, x_7, x_92); -return x_94; -} -} -else +x_95 = l_Lean_Meta_unfoldDefinition_x3f(x_92, x_4, x_5, x_6, x_7, x_93); +if (lean_obj_tag(x_95) == 0) { -uint8_t x_95; -lean_dec(x_83); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -x_95 = !lean_is_exclusive(x_86); -if (x_95 == 0) -{ -return x_86; -} -else -{ -lean_object* x_96; lean_object* x_97; lean_object* x_98; -x_96 = lean_ctor_get(x_86, 0); -x_97 = lean_ctor_get(x_86, 1); -lean_inc(x_97); +lean_object* x_96; +x_96 = lean_ctor_get(x_95, 0); lean_inc(x_96); -lean_dec(x_86); -x_98 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_98, 0, x_96); -lean_ctor_set(x_98, 1, x_97); -return x_98; +if (lean_obj_tag(x_96) == 0) +{ +uint8_t x_97; +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +x_97 = !lean_is_exclusive(x_95); +if (x_97 == 0) +{ +lean_object* x_98; +x_98 = lean_ctor_get(x_95, 0); +lean_dec(x_98); +lean_ctor_set(x_95, 0, x_92); +return x_95; +} +else +{ +lean_object* x_99; lean_object* x_100; +x_99 = lean_ctor_get(x_95, 1); +lean_inc(x_99); +lean_dec(x_95); +x_100 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_100, 0, x_92); +lean_ctor_set(x_100, 1, x_99); +return x_100; +} +} +else +{ +lean_object* x_101; lean_object* x_102; lean_object* x_103; +lean_dec(x_92); +x_101 = lean_ctor_get(x_95, 1); +lean_inc(x_101); +lean_dec(x_95); +x_102 = lean_ctor_get(x_96, 0); +lean_inc(x_102); +lean_dec(x_96); +x_103 = l_Lean_Meta_whnfHeadPred___at_Lean_Meta_whnfUntil___spec__1(x_1, x_102, x_4, x_5, x_6, x_7, x_101); +return x_103; +} +} +else +{ +uint8_t x_104; +lean_dec(x_92); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +x_104 = !lean_is_exclusive(x_95); +if (x_104 == 0) +{ +return x_95; +} +else +{ +lean_object* x_105; lean_object* x_106; lean_object* x_107; +x_105 = lean_ctor_get(x_95, 0); +x_106 = lean_ctor_get(x_95, 1); +lean_inc(x_106); +lean_inc(x_105); +lean_dec(x_95); +x_107 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_107, 0, x_105); +lean_ctor_set(x_107, 1, x_106); +return x_107; } } } @@ -25269,245 +25464,245 @@ lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); -return x_81; +return x_90; } } else { -lean_object* x_99; lean_object* x_100; uint8_t x_101; -x_99 = lean_ctor_get(x_81, 0); -x_100 = lean_ctor_get(x_81, 1); -lean_inc(x_100); -lean_inc(x_99); -lean_dec(x_81); -x_101 = l_Lean_Expr_isAppOf(x_99, x_1); -if (x_101 == 0) +lean_object* x_108; lean_object* x_109; uint8_t x_110; +x_108 = lean_ctor_get(x_90, 0); +x_109 = lean_ctor_get(x_90, 1); +lean_inc(x_109); +lean_inc(x_108); +lean_dec(x_90); +x_110 = l_Lean_Expr_isAppOf(x_108, x_1); +if (x_110 == 0) { -lean_object* x_102; +lean_object* x_111; lean_inc(x_7); lean_inc(x_6); lean_inc(x_5); lean_inc(x_4); -lean_inc(x_99); -x_102 = l_Lean_Meta_unfoldDefinition_x3f(x_99, x_4, x_5, x_6, x_7, x_100); -if (lean_obj_tag(x_102) == 0) -{ -lean_object* x_103; -x_103 = lean_ctor_get(x_102, 0); -lean_inc(x_103); -if (lean_obj_tag(x_103) == 0) -{ -lean_object* x_104; lean_object* x_105; lean_object* x_106; -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -x_104 = lean_ctor_get(x_102, 1); -lean_inc(x_104); -if (lean_is_exclusive(x_102)) { - lean_ctor_release(x_102, 0); - lean_ctor_release(x_102, 1); - x_105 = x_102; -} else { - lean_dec_ref(x_102); - x_105 = lean_box(0); -} -if (lean_is_scalar(x_105)) { - x_106 = lean_alloc_ctor(0, 2, 0); -} else { - x_106 = x_105; -} -lean_ctor_set(x_106, 0, x_99); -lean_ctor_set(x_106, 1, x_104); -return x_106; -} -else -{ -lean_object* x_107; lean_object* x_108; lean_object* x_109; -lean_dec(x_99); -x_107 = lean_ctor_get(x_102, 1); -lean_inc(x_107); -lean_dec(x_102); -x_108 = lean_ctor_get(x_103, 0); lean_inc(x_108); -lean_dec(x_103); -x_109 = l_Lean_Meta_whnfHeadPred___at_Lean_Meta_whnfUntil___spec__1(x_1, x_108, x_4, x_5, x_6, x_7, x_107); -return x_109; -} -} -else +x_111 = l_Lean_Meta_unfoldDefinition_x3f(x_108, x_4, x_5, x_6, x_7, x_109); +if (lean_obj_tag(x_111) == 0) { -lean_object* x_110; lean_object* x_111; lean_object* x_112; lean_object* x_113; -lean_dec(x_99); +lean_object* x_112; +x_112 = lean_ctor_get(x_111, 0); +lean_inc(x_112); +if (lean_obj_tag(x_112) == 0) +{ +lean_object* x_113; lean_object* x_114; lean_object* x_115; lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); -x_110 = lean_ctor_get(x_102, 0); -lean_inc(x_110); -x_111 = lean_ctor_get(x_102, 1); -lean_inc(x_111); -if (lean_is_exclusive(x_102)) { - lean_ctor_release(x_102, 0); - lean_ctor_release(x_102, 1); - x_112 = x_102; +x_113 = lean_ctor_get(x_111, 1); +lean_inc(x_113); +if (lean_is_exclusive(x_111)) { + lean_ctor_release(x_111, 0); + lean_ctor_release(x_111, 1); + x_114 = x_111; } else { - lean_dec_ref(x_102); - x_112 = lean_box(0); + lean_dec_ref(x_111); + x_114 = lean_box(0); } -if (lean_is_scalar(x_112)) { - x_113 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_114)) { + x_115 = lean_alloc_ctor(0, 2, 0); } else { - x_113 = x_112; + x_115 = x_114; } -lean_ctor_set(x_113, 0, x_110); -lean_ctor_set(x_113, 1, x_111); -return x_113; -} -} -else -{ -lean_object* x_114; -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -x_114 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_114, 0, x_99); -lean_ctor_set(x_114, 1, x_100); -return x_114; -} -} -} -else -{ -uint8_t x_115; -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -x_115 = !lean_is_exclusive(x_81); -if (x_115 == 0) -{ -return x_81; +lean_ctor_set(x_115, 0, x_108); +lean_ctor_set(x_115, 1, x_113); +return x_115; } else { lean_object* x_116; lean_object* x_117; lean_object* x_118; -x_116 = lean_ctor_get(x_81, 0); -x_117 = lean_ctor_get(x_81, 1); -lean_inc(x_117); +lean_dec(x_108); +x_116 = lean_ctor_get(x_111, 1); lean_inc(x_116); -lean_dec(x_81); -x_118 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_118, 0, x_116); -lean_ctor_set(x_118, 1, x_117); +lean_dec(x_111); +x_117 = lean_ctor_get(x_112, 0); +lean_inc(x_117); +lean_dec(x_112); +x_118 = l_Lean_Meta_whnfHeadPred___at_Lean_Meta_whnfUntil___spec__1(x_1, x_117, x_4, x_5, x_6, x_7, x_116); return x_118; } } +else +{ +lean_object* x_119; lean_object* x_120; lean_object* x_121; lean_object* x_122; +lean_dec(x_108); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +x_119 = lean_ctor_get(x_111, 0); +lean_inc(x_119); +x_120 = lean_ctor_get(x_111, 1); +lean_inc(x_120); +if (lean_is_exclusive(x_111)) { + lean_ctor_release(x_111, 0); + lean_ctor_release(x_111, 1); + x_121 = x_111; +} else { + lean_dec_ref(x_111); + x_121 = lean_box(0); +} +if (lean_is_scalar(x_121)) { + x_122 = lean_alloc_ctor(1, 2, 0); +} else { + x_122 = x_121; +} +lean_ctor_set(x_122, 0, x_119); +lean_ctor_set(x_122, 1, x_120); +return x_122; +} +} +else +{ +lean_object* x_123; +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +x_123 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_123, 0, x_108); +lean_ctor_set(x_123, 1, x_109); +return x_123; +} +} +} +else +{ +uint8_t x_124; +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +x_124 = !lean_is_exclusive(x_90); +if (x_124 == 0) +{ +return x_90; +} +else +{ +lean_object* x_125; lean_object* x_126; lean_object* x_127; +x_125 = lean_ctor_get(x_90, 0); +x_126 = lean_ctor_get(x_90, 1); +lean_inc(x_126); +lean_inc(x_125); +lean_dec(x_90); +x_127 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_127, 0, x_125); +lean_ctor_set(x_127, 1, x_126); +return x_127; +} +} } case 8: { -lean_object* x_119; lean_object* x_120; +lean_object* x_128; lean_object* x_129; lean_dec(x_3); -x_119 = l_Lean_Meta_whnfHeadPred___lambda__1___closed__1; +x_128 = l_Lean_Meta_whnfHeadPred___lambda__1___closed__1; lean_inc(x_7); lean_inc(x_6); lean_inc(x_5); lean_inc(x_4); -x_120 = l_Lean_Meta_whnfEasyCases___at_Lean_Meta_whnfCore_go___spec__3(x_119, x_2, x_119, x_4, x_5, x_6, x_7, x_8); -if (lean_obj_tag(x_120) == 0) +x_129 = l_Lean_Meta_whnfEasyCases___at_Lean_Meta_whnfCore_go___spec__3(x_128, x_2, x_128, x_4, x_5, x_6, x_7, x_8); +if (lean_obj_tag(x_129) == 0) { -uint8_t x_121; -x_121 = !lean_is_exclusive(x_120); -if (x_121 == 0) +uint8_t x_130; +x_130 = !lean_is_exclusive(x_129); +if (x_130 == 0) { -lean_object* x_122; lean_object* x_123; uint8_t x_124; -x_122 = lean_ctor_get(x_120, 0); -x_123 = lean_ctor_get(x_120, 1); -x_124 = l_Lean_Expr_isAppOf(x_122, x_1); -if (x_124 == 0) +lean_object* x_131; lean_object* x_132; uint8_t x_133; +x_131 = lean_ctor_get(x_129, 0); +x_132 = lean_ctor_get(x_129, 1); +x_133 = l_Lean_Expr_isAppOf(x_131, x_1); +if (x_133 == 0) { -lean_object* x_125; -lean_free_object(x_120); +lean_object* x_134; +lean_free_object(x_129); lean_inc(x_7); lean_inc(x_6); lean_inc(x_5); lean_inc(x_4); -lean_inc(x_122); -x_125 = l_Lean_Meta_unfoldDefinition_x3f(x_122, x_4, x_5, x_6, x_7, x_123); -if (lean_obj_tag(x_125) == 0) -{ -lean_object* x_126; -x_126 = lean_ctor_get(x_125, 0); -lean_inc(x_126); -if (lean_obj_tag(x_126) == 0) -{ -uint8_t x_127; -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -x_127 = !lean_is_exclusive(x_125); -if (x_127 == 0) -{ -lean_object* x_128; -x_128 = lean_ctor_get(x_125, 0); -lean_dec(x_128); -lean_ctor_set(x_125, 0, x_122); -return x_125; -} -else -{ -lean_object* x_129; lean_object* x_130; -x_129 = lean_ctor_get(x_125, 1); -lean_inc(x_129); -lean_dec(x_125); -x_130 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_130, 0, x_122); -lean_ctor_set(x_130, 1, x_129); -return x_130; -} -} -else -{ -lean_object* x_131; lean_object* x_132; lean_object* x_133; -lean_dec(x_122); -x_131 = lean_ctor_get(x_125, 1); lean_inc(x_131); -lean_dec(x_125); -x_132 = lean_ctor_get(x_126, 0); -lean_inc(x_132); -lean_dec(x_126); -x_133 = l_Lean_Meta_whnfHeadPred___at_Lean_Meta_whnfUntil___spec__1(x_1, x_132, x_4, x_5, x_6, x_7, x_131); -return x_133; -} -} -else +x_134 = l_Lean_Meta_unfoldDefinition_x3f(x_131, x_4, x_5, x_6, x_7, x_132); +if (lean_obj_tag(x_134) == 0) { -uint8_t x_134; -lean_dec(x_122); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -x_134 = !lean_is_exclusive(x_125); -if (x_134 == 0) -{ -return x_125; -} -else -{ -lean_object* x_135; lean_object* x_136; lean_object* x_137; -x_135 = lean_ctor_get(x_125, 0); -x_136 = lean_ctor_get(x_125, 1); -lean_inc(x_136); +lean_object* x_135; +x_135 = lean_ctor_get(x_134, 0); lean_inc(x_135); -lean_dec(x_125); -x_137 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_137, 0, x_135); -lean_ctor_set(x_137, 1, x_136); -return x_137; +if (lean_obj_tag(x_135) == 0) +{ +uint8_t x_136; +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +x_136 = !lean_is_exclusive(x_134); +if (x_136 == 0) +{ +lean_object* x_137; +x_137 = lean_ctor_get(x_134, 0); +lean_dec(x_137); +lean_ctor_set(x_134, 0, x_131); +return x_134; +} +else +{ +lean_object* x_138; lean_object* x_139; +x_138 = lean_ctor_get(x_134, 1); +lean_inc(x_138); +lean_dec(x_134); +x_139 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_139, 0, x_131); +lean_ctor_set(x_139, 1, x_138); +return x_139; +} +} +else +{ +lean_object* x_140; lean_object* x_141; lean_object* x_142; +lean_dec(x_131); +x_140 = lean_ctor_get(x_134, 1); +lean_inc(x_140); +lean_dec(x_134); +x_141 = lean_ctor_get(x_135, 0); +lean_inc(x_141); +lean_dec(x_135); +x_142 = l_Lean_Meta_whnfHeadPred___at_Lean_Meta_whnfUntil___spec__1(x_1, x_141, x_4, x_5, x_6, x_7, x_140); +return x_142; +} +} +else +{ +uint8_t x_143; +lean_dec(x_131); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +x_143 = !lean_is_exclusive(x_134); +if (x_143 == 0) +{ +return x_134; +} +else +{ +lean_object* x_144; lean_object* x_145; lean_object* x_146; +x_144 = lean_ctor_get(x_134, 0); +x_145 = lean_ctor_get(x_134, 1); +lean_inc(x_145); +lean_inc(x_144); +lean_dec(x_134); +x_146 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_146, 0, x_144); +lean_ctor_set(x_146, 1, x_145); +return x_146; } } } @@ -25517,254 +25712,254 @@ lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); -return x_120; +return x_129; } } else { -lean_object* x_138; lean_object* x_139; uint8_t x_140; -x_138 = lean_ctor_get(x_120, 0); -x_139 = lean_ctor_get(x_120, 1); -lean_inc(x_139); -lean_inc(x_138); -lean_dec(x_120); -x_140 = l_Lean_Expr_isAppOf(x_138, x_1); -if (x_140 == 0) +lean_object* x_147; lean_object* x_148; uint8_t x_149; +x_147 = lean_ctor_get(x_129, 0); +x_148 = lean_ctor_get(x_129, 1); +lean_inc(x_148); +lean_inc(x_147); +lean_dec(x_129); +x_149 = l_Lean_Expr_isAppOf(x_147, x_1); +if (x_149 == 0) { -lean_object* x_141; +lean_object* x_150; lean_inc(x_7); lean_inc(x_6); lean_inc(x_5); lean_inc(x_4); -lean_inc(x_138); -x_141 = l_Lean_Meta_unfoldDefinition_x3f(x_138, x_4, x_5, x_6, x_7, x_139); -if (lean_obj_tag(x_141) == 0) -{ -lean_object* x_142; -x_142 = lean_ctor_get(x_141, 0); -lean_inc(x_142); -if (lean_obj_tag(x_142) == 0) -{ -lean_object* x_143; lean_object* x_144; lean_object* x_145; -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -x_143 = lean_ctor_get(x_141, 1); -lean_inc(x_143); -if (lean_is_exclusive(x_141)) { - lean_ctor_release(x_141, 0); - lean_ctor_release(x_141, 1); - x_144 = x_141; -} else { - lean_dec_ref(x_141); - x_144 = lean_box(0); -} -if (lean_is_scalar(x_144)) { - x_145 = lean_alloc_ctor(0, 2, 0); -} else { - x_145 = x_144; -} -lean_ctor_set(x_145, 0, x_138); -lean_ctor_set(x_145, 1, x_143); -return x_145; -} -else -{ -lean_object* x_146; lean_object* x_147; lean_object* x_148; -lean_dec(x_138); -x_146 = lean_ctor_get(x_141, 1); -lean_inc(x_146); -lean_dec(x_141); -x_147 = lean_ctor_get(x_142, 0); lean_inc(x_147); -lean_dec(x_142); -x_148 = l_Lean_Meta_whnfHeadPred___at_Lean_Meta_whnfUntil___spec__1(x_1, x_147, x_4, x_5, x_6, x_7, x_146); -return x_148; -} -} -else +x_150 = l_Lean_Meta_unfoldDefinition_x3f(x_147, x_4, x_5, x_6, x_7, x_148); +if (lean_obj_tag(x_150) == 0) { -lean_object* x_149; lean_object* x_150; lean_object* x_151; lean_object* x_152; -lean_dec(x_138); +lean_object* x_151; +x_151 = lean_ctor_get(x_150, 0); +lean_inc(x_151); +if (lean_obj_tag(x_151) == 0) +{ +lean_object* x_152; lean_object* x_153; lean_object* x_154; lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); -x_149 = lean_ctor_get(x_141, 0); -lean_inc(x_149); -x_150 = lean_ctor_get(x_141, 1); -lean_inc(x_150); -if (lean_is_exclusive(x_141)) { - lean_ctor_release(x_141, 0); - lean_ctor_release(x_141, 1); - x_151 = x_141; +x_152 = lean_ctor_get(x_150, 1); +lean_inc(x_152); +if (lean_is_exclusive(x_150)) { + lean_ctor_release(x_150, 0); + lean_ctor_release(x_150, 1); + x_153 = x_150; } else { - lean_dec_ref(x_141); - x_151 = lean_box(0); + lean_dec_ref(x_150); + x_153 = lean_box(0); } -if (lean_is_scalar(x_151)) { - x_152 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_153)) { + x_154 = lean_alloc_ctor(0, 2, 0); } else { - x_152 = x_151; + x_154 = x_153; } -lean_ctor_set(x_152, 0, x_149); -lean_ctor_set(x_152, 1, x_150); -return x_152; -} -} -else -{ -lean_object* x_153; -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -x_153 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_153, 0, x_138); -lean_ctor_set(x_153, 1, x_139); -return x_153; -} -} -} -else -{ -uint8_t x_154; -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -x_154 = !lean_is_exclusive(x_120); -if (x_154 == 0) -{ -return x_120; +lean_ctor_set(x_154, 0, x_147); +lean_ctor_set(x_154, 1, x_152); +return x_154; } else { lean_object* x_155; lean_object* x_156; lean_object* x_157; -x_155 = lean_ctor_get(x_120, 0); -x_156 = lean_ctor_get(x_120, 1); -lean_inc(x_156); +lean_dec(x_147); +x_155 = lean_ctor_get(x_150, 1); lean_inc(x_155); -lean_dec(x_120); -x_157 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_157, 0, x_155); -lean_ctor_set(x_157, 1, x_156); +lean_dec(x_150); +x_156 = lean_ctor_get(x_151, 0); +lean_inc(x_156); +lean_dec(x_151); +x_157 = l_Lean_Meta_whnfHeadPred___at_Lean_Meta_whnfUntil___spec__1(x_1, x_156, x_4, x_5, x_6, x_7, x_155); return x_157; } } +else +{ +lean_object* x_158; lean_object* x_159; lean_object* x_160; lean_object* x_161; +lean_dec(x_147); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +x_158 = lean_ctor_get(x_150, 0); +lean_inc(x_158); +x_159 = lean_ctor_get(x_150, 1); +lean_inc(x_159); +if (lean_is_exclusive(x_150)) { + lean_ctor_release(x_150, 0); + lean_ctor_release(x_150, 1); + x_160 = x_150; +} else { + lean_dec_ref(x_150); + x_160 = lean_box(0); +} +if (lean_is_scalar(x_160)) { + x_161 = lean_alloc_ctor(1, 2, 0); +} else { + x_161 = x_160; +} +lean_ctor_set(x_161, 0, x_158); +lean_ctor_set(x_161, 1, x_159); +return x_161; +} +} +else +{ +lean_object* x_162; +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +x_162 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_162, 0, x_147); +lean_ctor_set(x_162, 1, x_148); +return x_162; +} +} +} +else +{ +uint8_t x_163; +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +x_163 = !lean_is_exclusive(x_129); +if (x_163 == 0) +{ +return x_129; +} +else +{ +lean_object* x_164; lean_object* x_165; lean_object* x_166; +x_164 = lean_ctor_get(x_129, 0); +x_165 = lean_ctor_get(x_129, 1); +lean_inc(x_165); +lean_inc(x_164); +lean_dec(x_129); +x_166 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_166, 0, x_164); +lean_ctor_set(x_166, 1, x_165); +return x_166; +} +} } case 10: { -lean_object* x_158; -x_158 = lean_ctor_get(x_2, 1); -lean_inc(x_158); +lean_object* x_167; +x_167 = lean_ctor_get(x_2, 1); +lean_inc(x_167); lean_dec(x_2); -x_2 = x_158; +x_2 = x_167; goto _start; } case 11: { -lean_object* x_160; lean_object* x_161; +lean_object* x_169; lean_object* x_170; lean_dec(x_3); -x_160 = l_Lean_Meta_whnfHeadPred___lambda__1___closed__1; +x_169 = l_Lean_Meta_whnfHeadPred___lambda__1___closed__1; lean_inc(x_7); lean_inc(x_6); lean_inc(x_5); lean_inc(x_4); -x_161 = l_Lean_Meta_whnfEasyCases___at_Lean_Meta_whnfCore_go___spec__3(x_160, x_2, x_160, x_4, x_5, x_6, x_7, x_8); -if (lean_obj_tag(x_161) == 0) +x_170 = l_Lean_Meta_whnfEasyCases___at_Lean_Meta_whnfCore_go___spec__3(x_169, x_2, x_169, x_4, x_5, x_6, x_7, x_8); +if (lean_obj_tag(x_170) == 0) { -uint8_t x_162; -x_162 = !lean_is_exclusive(x_161); -if (x_162 == 0) +uint8_t x_171; +x_171 = !lean_is_exclusive(x_170); +if (x_171 == 0) { -lean_object* x_163; lean_object* x_164; uint8_t x_165; -x_163 = lean_ctor_get(x_161, 0); -x_164 = lean_ctor_get(x_161, 1); -x_165 = l_Lean_Expr_isAppOf(x_163, x_1); -if (x_165 == 0) +lean_object* x_172; lean_object* x_173; uint8_t x_174; +x_172 = lean_ctor_get(x_170, 0); +x_173 = lean_ctor_get(x_170, 1); +x_174 = l_Lean_Expr_isAppOf(x_172, x_1); +if (x_174 == 0) { -lean_object* x_166; -lean_free_object(x_161); +lean_object* x_175; +lean_free_object(x_170); lean_inc(x_7); lean_inc(x_6); lean_inc(x_5); lean_inc(x_4); -lean_inc(x_163); -x_166 = l_Lean_Meta_unfoldDefinition_x3f(x_163, x_4, x_5, x_6, x_7, x_164); -if (lean_obj_tag(x_166) == 0) -{ -lean_object* x_167; -x_167 = lean_ctor_get(x_166, 0); -lean_inc(x_167); -if (lean_obj_tag(x_167) == 0) -{ -uint8_t x_168; -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -x_168 = !lean_is_exclusive(x_166); -if (x_168 == 0) -{ -lean_object* x_169; -x_169 = lean_ctor_get(x_166, 0); -lean_dec(x_169); -lean_ctor_set(x_166, 0, x_163); -return x_166; -} -else -{ -lean_object* x_170; lean_object* x_171; -x_170 = lean_ctor_get(x_166, 1); -lean_inc(x_170); -lean_dec(x_166); -x_171 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_171, 0, x_163); -lean_ctor_set(x_171, 1, x_170); -return x_171; -} -} -else -{ -lean_object* x_172; lean_object* x_173; lean_object* x_174; -lean_dec(x_163); -x_172 = lean_ctor_get(x_166, 1); lean_inc(x_172); -lean_dec(x_166); -x_173 = lean_ctor_get(x_167, 0); -lean_inc(x_173); -lean_dec(x_167); -x_174 = l_Lean_Meta_whnfHeadPred___at_Lean_Meta_whnfUntil___spec__1(x_1, x_173, x_4, x_5, x_6, x_7, x_172); -return x_174; -} -} -else +x_175 = l_Lean_Meta_unfoldDefinition_x3f(x_172, x_4, x_5, x_6, x_7, x_173); +if (lean_obj_tag(x_175) == 0) { -uint8_t x_175; -lean_dec(x_163); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -x_175 = !lean_is_exclusive(x_166); -if (x_175 == 0) -{ -return x_166; -} -else -{ -lean_object* x_176; lean_object* x_177; lean_object* x_178; -x_176 = lean_ctor_get(x_166, 0); -x_177 = lean_ctor_get(x_166, 1); -lean_inc(x_177); +lean_object* x_176; +x_176 = lean_ctor_get(x_175, 0); lean_inc(x_176); -lean_dec(x_166); -x_178 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_178, 0, x_176); -lean_ctor_set(x_178, 1, x_177); -return x_178; +if (lean_obj_tag(x_176) == 0) +{ +uint8_t x_177; +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +x_177 = !lean_is_exclusive(x_175); +if (x_177 == 0) +{ +lean_object* x_178; +x_178 = lean_ctor_get(x_175, 0); +lean_dec(x_178); +lean_ctor_set(x_175, 0, x_172); +return x_175; +} +else +{ +lean_object* x_179; lean_object* x_180; +x_179 = lean_ctor_get(x_175, 1); +lean_inc(x_179); +lean_dec(x_175); +x_180 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_180, 0, x_172); +lean_ctor_set(x_180, 1, x_179); +return x_180; +} +} +else +{ +lean_object* x_181; lean_object* x_182; lean_object* x_183; +lean_dec(x_172); +x_181 = lean_ctor_get(x_175, 1); +lean_inc(x_181); +lean_dec(x_175); +x_182 = lean_ctor_get(x_176, 0); +lean_inc(x_182); +lean_dec(x_176); +x_183 = l_Lean_Meta_whnfHeadPred___at_Lean_Meta_whnfUntil___spec__1(x_1, x_182, x_4, x_5, x_6, x_7, x_181); +return x_183; +} +} +else +{ +uint8_t x_184; +lean_dec(x_172); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +x_184 = !lean_is_exclusive(x_175); +if (x_184 == 0) +{ +return x_175; +} +else +{ +lean_object* x_185; lean_object* x_186; lean_object* x_187; +x_185 = lean_ctor_get(x_175, 0); +x_186 = lean_ctor_get(x_175, 1); +lean_inc(x_186); +lean_inc(x_185); +lean_dec(x_175); +x_187 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_187, 0, x_185); +lean_ctor_set(x_187, 1, x_186); +return x_187; } } } @@ -25774,155 +25969,155 @@ lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); -return x_161; +return x_170; } } else { -lean_object* x_179; lean_object* x_180; uint8_t x_181; -x_179 = lean_ctor_get(x_161, 0); -x_180 = lean_ctor_get(x_161, 1); -lean_inc(x_180); -lean_inc(x_179); -lean_dec(x_161); -x_181 = l_Lean_Expr_isAppOf(x_179, x_1); -if (x_181 == 0) +lean_object* x_188; lean_object* x_189; uint8_t x_190; +x_188 = lean_ctor_get(x_170, 0); +x_189 = lean_ctor_get(x_170, 1); +lean_inc(x_189); +lean_inc(x_188); +lean_dec(x_170); +x_190 = l_Lean_Expr_isAppOf(x_188, x_1); +if (x_190 == 0) { -lean_object* x_182; +lean_object* x_191; lean_inc(x_7); lean_inc(x_6); lean_inc(x_5); lean_inc(x_4); -lean_inc(x_179); -x_182 = l_Lean_Meta_unfoldDefinition_x3f(x_179, x_4, x_5, x_6, x_7, x_180); -if (lean_obj_tag(x_182) == 0) -{ -lean_object* x_183; -x_183 = lean_ctor_get(x_182, 0); -lean_inc(x_183); -if (lean_obj_tag(x_183) == 0) -{ -lean_object* x_184; lean_object* x_185; lean_object* x_186; -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -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_182); - x_185 = lean_box(0); -} -if (lean_is_scalar(x_185)) { - x_186 = lean_alloc_ctor(0, 2, 0); -} else { - x_186 = x_185; -} -lean_ctor_set(x_186, 0, x_179); -lean_ctor_set(x_186, 1, x_184); -return x_186; -} -else -{ -lean_object* x_187; lean_object* x_188; lean_object* x_189; -lean_dec(x_179); -x_187 = lean_ctor_get(x_182, 1); -lean_inc(x_187); -lean_dec(x_182); -x_188 = lean_ctor_get(x_183, 0); lean_inc(x_188); -lean_dec(x_183); -x_189 = l_Lean_Meta_whnfHeadPred___at_Lean_Meta_whnfUntil___spec__1(x_1, x_188, x_4, x_5, x_6, x_7, x_187); -return x_189; -} -} -else +x_191 = l_Lean_Meta_unfoldDefinition_x3f(x_188, x_4, x_5, x_6, x_7, x_189); +if (lean_obj_tag(x_191) == 0) { -lean_object* x_190; lean_object* x_191; lean_object* x_192; lean_object* x_193; -lean_dec(x_179); +lean_object* x_192; +x_192 = lean_ctor_get(x_191, 0); +lean_inc(x_192); +if (lean_obj_tag(x_192) == 0) +{ +lean_object* x_193; lean_object* x_194; lean_object* x_195; lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); -x_190 = lean_ctor_get(x_182, 0); -lean_inc(x_190); -x_191 = lean_ctor_get(x_182, 1); -lean_inc(x_191); -if (lean_is_exclusive(x_182)) { - lean_ctor_release(x_182, 0); - lean_ctor_release(x_182, 1); - x_192 = x_182; +x_193 = lean_ctor_get(x_191, 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; } else { - lean_dec_ref(x_182); - x_192 = lean_box(0); + lean_dec_ref(x_191); + x_194 = lean_box(0); } -if (lean_is_scalar(x_192)) { - x_193 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_194)) { + x_195 = lean_alloc_ctor(0, 2, 0); } else { - x_193 = x_192; + x_195 = x_194; } -lean_ctor_set(x_193, 0, x_190); -lean_ctor_set(x_193, 1, x_191); -return x_193; -} -} -else -{ -lean_object* x_194; -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -x_194 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_194, 0, x_179); -lean_ctor_set(x_194, 1, x_180); -return x_194; -} -} -} -else -{ -uint8_t x_195; -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -x_195 = !lean_is_exclusive(x_161); -if (x_195 == 0) -{ -return x_161; +lean_ctor_set(x_195, 0, x_188); +lean_ctor_set(x_195, 1, x_193); +return x_195; } else { lean_object* x_196; lean_object* x_197; lean_object* x_198; -x_196 = lean_ctor_get(x_161, 0); -x_197 = lean_ctor_get(x_161, 1); -lean_inc(x_197); +lean_dec(x_188); +x_196 = lean_ctor_get(x_191, 1); lean_inc(x_196); -lean_dec(x_161); -x_198 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_198, 0, x_196); -lean_ctor_set(x_198, 1, x_197); +lean_dec(x_191); +x_197 = lean_ctor_get(x_192, 0); +lean_inc(x_197); +lean_dec(x_192); +x_198 = l_Lean_Meta_whnfHeadPred___at_Lean_Meta_whnfUntil___spec__1(x_1, x_197, x_4, x_5, x_6, x_7, x_196); return x_198; } } +else +{ +lean_object* x_199; lean_object* x_200; lean_object* x_201; lean_object* x_202; +lean_dec(x_188); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +x_199 = lean_ctor_get(x_191, 0); +lean_inc(x_199); +x_200 = lean_ctor_get(x_191, 1); +lean_inc(x_200); +if (lean_is_exclusive(x_191)) { + lean_ctor_release(x_191, 0); + lean_ctor_release(x_191, 1); + x_201 = x_191; +} else { + lean_dec_ref(x_191); + x_201 = lean_box(0); +} +if (lean_is_scalar(x_201)) { + x_202 = lean_alloc_ctor(1, 2, 0); +} else { + x_202 = x_201; +} +lean_ctor_set(x_202, 0, x_199); +lean_ctor_set(x_202, 1, x_200); +return x_202; +} +} +else +{ +lean_object* x_203; +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +x_203 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_203, 0, x_188); +lean_ctor_set(x_203, 1, x_189); +return x_203; +} +} +} +else +{ +uint8_t x_204; +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +x_204 = !lean_is_exclusive(x_170); +if (x_204 == 0) +{ +return x_170; +} +else +{ +lean_object* x_205; lean_object* x_206; lean_object* x_207; +x_205 = lean_ctor_get(x_170, 0); +x_206 = lean_ctor_get(x_170, 1); +lean_inc(x_206); +lean_inc(x_205); +lean_dec(x_170); +x_207 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_207, 0, x_205); +lean_ctor_set(x_207, 1, x_206); +return x_207; +} +} } default: { -lean_object* x_199; +lean_object* x_208; lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); -x_199 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_199, 0, x_2); -lean_ctor_set(x_199, 1, x_8); -return x_199; +x_208 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_208, 0, x_2); +lean_ctor_set(x_208, 1, x_8); +return x_208; } } } @@ -32634,7 +32829,7 @@ x_35 = lean_string_dec_eq(x_22, x_34); if (x_35 == 0) { lean_object* x_36; uint8_t x_37; -x_36 = l_Lean_Meta_canUnfoldAtMatcher___closed__38; +x_36 = l_Lean_Meta_canUnfoldAtMatcher___closed__40; x_37 = lean_string_dec_eq(x_22, x_36); if (x_37 == 0) { @@ -33125,7 +33320,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_whnfEasyCases___closed__2; x_2 = l___private_Lean_Meta_WHNF_0__Lean_Meta_cached_x3f___closed__1; -x_3 = lean_unsigned_to_nat(902u); +x_3 = lean_unsigned_to_nat(905u); x_4 = lean_unsigned_to_nat(18u); x_5 = l___private_Lean_Meta_WHNF_0__Lean_Meta_cached_x3f___closed__2; x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); @@ -33303,7 +33498,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_whnfEasyCases___closed__2; x_2 = l___private_Lean_Meta_WHNF_0__Lean_Meta_cache___closed__1; -x_3 = lean_unsigned_to_nat(911u); +x_3 = lean_unsigned_to_nat(914u); x_4 = lean_unsigned_to_nat(18u); x_5 = l___private_Lean_Meta_WHNF_0__Lean_Meta_cached_x3f___closed__2; x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); @@ -33902,2349 +34097,2388 @@ x_17 = lean_ctor_get_uint8(x_2, 4); if (x_17 == 0) { uint8_t x_18; +x_18 = !lean_is_exclusive(x_11); +if (x_18 == 0) +{ +lean_object* x_19; lean_object* x_20; lean_object* x_21; uint8_t x_22; +x_19 = lean_ctor_get(x_11, 1); +x_20 = lean_ctor_get(x_11, 0); +lean_dec(x_20); +x_21 = lean_ctor_get(x_12, 4); +lean_inc(x_21); +x_22 = l_Lean_LocalDecl_isImplementationDetail(x_12); lean_dec(x_12); +if (x_22 == 0) +{ +lean_dec(x_21); lean_dec(x_10); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); -x_18 = !lean_is_exclusive(x_11); -if (x_18 == 0) -{ -lean_object* x_19; -x_19 = lean_ctor_get(x_11, 0); -lean_dec(x_19); lean_ctor_set(x_11, 0, x_1); return x_11; } else { -lean_object* x_20; lean_object* x_21; -x_20 = lean_ctor_get(x_11, 1); -lean_inc(x_20); -lean_dec(x_11); -x_21 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_21, 0, x_1); -lean_ctor_set(x_21, 1, x_20); -return x_21; -} -} -else -{ -lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; +lean_object* x_23; lean_object* x_24; +lean_free_object(x_11); lean_dec(x_1); -x_22 = lean_ctor_get(x_11, 1); -lean_inc(x_22); +x_23 = lean_box(0); +x_24 = l_Lean_Meta_whnfEasyCases___at_Lean_Meta_whnfImp___spec__1___lambda__2(x_21, x_2, x_10, x_23, x_3, x_4, x_5, x_6, x_19); +return x_24; +} +} +else +{ +lean_object* x_25; lean_object* x_26; uint8_t x_27; +x_25 = lean_ctor_get(x_11, 1); +lean_inc(x_25); lean_dec(x_11); -x_23 = lean_ctor_get(x_12, 4); -lean_inc(x_23); +x_26 = lean_ctor_get(x_12, 4); +lean_inc(x_26); +x_27 = l_Lean_LocalDecl_isImplementationDetail(x_12); lean_dec(x_12); -x_24 = lean_box(0); -x_25 = l_Lean_Meta_whnfEasyCases___at_Lean_Meta_whnfImp___spec__1___lambda__2(x_23, x_2, x_10, x_24, x_3, x_4, x_5, x_6, x_22); -return x_25; +if (x_27 == 0) +{ +lean_object* x_28; +lean_dec(x_26); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +x_28 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_28, 0, x_1); +lean_ctor_set(x_28, 1, x_25); +return x_28; +} +else +{ +lean_object* x_29; lean_object* x_30; +lean_dec(x_1); +x_29 = lean_box(0); +x_30 = l_Lean_Meta_whnfEasyCases___at_Lean_Meta_whnfImp___spec__1___lambda__2(x_26, x_2, x_10, x_29, x_3, x_4, x_5, x_6, x_25); +return x_30; } } } else { -uint8_t x_26; +lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; +lean_dec(x_1); +x_31 = lean_ctor_get(x_11, 1); +lean_inc(x_31); +lean_dec(x_11); +x_32 = lean_ctor_get(x_12, 4); +lean_inc(x_32); +lean_dec(x_12); +x_33 = lean_box(0); +x_34 = l_Lean_Meta_whnfEasyCases___at_Lean_Meta_whnfImp___spec__1___lambda__2(x_32, x_2, x_10, x_33, x_3, x_4, x_5, x_6, x_31); +return x_34; +} +} +} +else +{ +uint8_t x_35; lean_dec(x_10); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_1); -x_26 = !lean_is_exclusive(x_11); -if (x_26 == 0) +x_35 = !lean_is_exclusive(x_11); +if (x_35 == 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_inc(x_28); -lean_inc(x_27); +lean_object* x_36; lean_object* x_37; lean_object* x_38; +x_36 = lean_ctor_get(x_11, 0); +x_37 = lean_ctor_get(x_11, 1); +lean_inc(x_37); +lean_inc(x_36); 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; +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; } } } case 2: { -lean_object* x_30; lean_object* x_31; lean_object* x_32; -x_30 = lean_ctor_get(x_1, 0); -lean_inc(x_30); -x_31 = l_Lean_getExprMVarAssignment_x3f___at___private_Lean_Meta_Basic_0__Lean_Meta_isClassQuick_x3f___spec__1(x_30, x_3, x_4, x_5, x_6, x_7); -x_32 = lean_ctor_get(x_31, 0); -lean_inc(x_32); -if (lean_obj_tag(x_32) == 0) +lean_object* x_39; lean_object* x_40; lean_object* x_41; +x_39 = lean_ctor_get(x_1, 0); +lean_inc(x_39); +x_40 = l_Lean_getExprMVarAssignment_x3f___at___private_Lean_Meta_Basic_0__Lean_Meta_isClassQuick_x3f___spec__1(x_39, x_3, x_4, x_5, x_6, x_7); +x_41 = lean_ctor_get(x_40, 0); +lean_inc(x_41); +if (lean_obj_tag(x_41) == 0) { -uint8_t x_33; +uint8_t x_42; lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); -x_33 = !lean_is_exclusive(x_31); -if (x_33 == 0) +x_42 = !lean_is_exclusive(x_40); +if (x_42 == 0) { -lean_object* x_34; -x_34 = lean_ctor_get(x_31, 0); -lean_dec(x_34); -lean_ctor_set(x_31, 0, x_1); -return x_31; +lean_object* x_43; +x_43 = lean_ctor_get(x_40, 0); +lean_dec(x_43); +lean_ctor_set(x_40, 0, x_1); +return x_40; } else { -lean_object* x_35; lean_object* x_36; -x_35 = lean_ctor_get(x_31, 1); -lean_inc(x_35); -lean_dec(x_31); -x_36 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_36, 0, x_1); -lean_ctor_set(x_36, 1, x_35); -return x_36; +lean_object* x_44; lean_object* x_45; +x_44 = lean_ctor_get(x_40, 1); +lean_inc(x_44); +lean_dec(x_40); +x_45 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_45, 0, x_1); +lean_ctor_set(x_45, 1, x_44); +return x_45; } } else { -lean_object* x_37; lean_object* x_38; +lean_object* x_46; lean_object* x_47; lean_dec(x_1); -x_37 = lean_ctor_get(x_31, 1); -lean_inc(x_37); -lean_dec(x_31); -x_38 = lean_ctor_get(x_32, 0); -lean_inc(x_38); -lean_dec(x_32); -x_1 = x_38; -x_7 = x_37; +x_46 = lean_ctor_get(x_40, 1); +lean_inc(x_46); +lean_dec(x_40); +x_47 = lean_ctor_get(x_41, 0); +lean_inc(x_47); +lean_dec(x_41); +x_1 = x_47; +x_7 = x_46; goto _start; } } case 4: { -lean_object* x_40; lean_object* x_41; -x_40 = l_Lean_Meta_whnfEasyCases___at_Lean_Meta_whnfCore_go___spec__3___closed__1; -x_41 = l_Lean_Core_checkSystem(x_40, x_5, x_6, x_7); -if (lean_obj_tag(x_41) == 0) +lean_object* x_49; lean_object* x_50; +x_49 = l_Lean_Meta_whnfEasyCases___at_Lean_Meta_whnfCore_go___spec__3___closed__1; +x_50 = l_Lean_Core_checkSystem(x_49, x_5, x_6, x_7); +if (lean_obj_tag(x_50) == 0) { -lean_object* x_42; lean_object* x_43; uint8_t x_44; lean_object* x_45; uint8_t x_126; -x_42 = lean_ctor_get(x_41, 1); -lean_inc(x_42); -if (lean_is_exclusive(x_41)) { - lean_ctor_release(x_41, 0); - lean_ctor_release(x_41, 1); - x_43 = x_41; +lean_object* x_51; lean_object* x_52; uint8_t x_53; lean_object* x_54; uint8_t x_135; +x_51 = lean_ctor_get(x_50, 1); +lean_inc(x_51); +if (lean_is_exclusive(x_50)) { + lean_ctor_release(x_50, 0); + lean_ctor_release(x_50, 1); + x_52 = x_50; } else { - lean_dec_ref(x_41); - x_43 = lean_box(0); + lean_dec_ref(x_50); + x_52 = lean_box(0); } -x_126 = l_Lean_Expr_hasFVar(x_1); -if (x_126 == 0) +x_135 = l_Lean_Expr_hasFVar(x_1); +if (x_135 == 0) { -uint8_t x_127; -x_127 = l_Lean_Expr_hasExprMVar(x_1); -if (x_127 == 0) +uint8_t x_136; +x_136 = l_Lean_Expr_hasExprMVar(x_1); +if (x_136 == 0) { -lean_object* x_128; -x_128 = lean_ctor_get(x_3, 5); -lean_inc(x_128); -if (lean_obj_tag(x_128) == 0) +lean_object* x_137; +x_137 = lean_ctor_get(x_3, 5); +lean_inc(x_137); +if (lean_obj_tag(x_137) == 0) { -lean_object* x_129; lean_object* x_130; uint8_t x_131; lean_object* x_132; -x_129 = l_Lean_Meta_getConfig(x_3, x_4, x_5, x_6, x_42); -x_130 = lean_ctor_get(x_129, 0); -lean_inc(x_130); -x_131 = lean_ctor_get_uint8(x_130, 9); -lean_dec(x_130); -x_132 = lean_box(x_131); -switch (lean_obj_tag(x_132)) { +lean_object* x_138; lean_object* x_139; uint8_t x_140; lean_object* x_141; +x_138 = l_Lean_Meta_getConfig(x_3, x_4, x_5, x_6, x_51); +x_139 = lean_ctor_get(x_138, 0); +lean_inc(x_139); +x_140 = lean_ctor_get_uint8(x_139, 9); +lean_dec(x_139); +x_141 = lean_box(x_140); +switch (lean_obj_tag(x_141)) { case 2: { -lean_object* x_133; uint8_t x_134; -x_133 = lean_ctor_get(x_129, 1); -lean_inc(x_133); -lean_dec(x_129); -x_134 = 0; -x_44 = x_134; -x_45 = x_133; -goto block_125; +lean_object* x_142; uint8_t x_143; +x_142 = lean_ctor_get(x_138, 1); +lean_inc(x_142); +lean_dec(x_138); +x_143 = 0; +x_53 = x_143; +x_54 = x_142; +goto block_134; } case 3: { -lean_object* x_135; uint8_t x_136; -x_135 = lean_ctor_get(x_129, 1); -lean_inc(x_135); -lean_dec(x_129); -x_136 = 0; -x_44 = x_136; -x_45 = x_135; -goto block_125; +lean_object* x_144; uint8_t x_145; +x_144 = lean_ctor_get(x_138, 1); +lean_inc(x_144); +lean_dec(x_138); +x_145 = 0; +x_53 = x_145; +x_54 = x_144; +goto block_134; } default: { -lean_object* x_137; uint8_t x_138; -lean_dec(x_132); -x_137 = lean_ctor_get(x_129, 1); -lean_inc(x_137); -lean_dec(x_129); -x_138 = 1; -x_44 = x_138; -x_45 = x_137; -goto block_125; +lean_object* x_146; uint8_t x_147; +lean_dec(x_141); +x_146 = lean_ctor_get(x_138, 1); +lean_inc(x_146); +lean_dec(x_138); +x_147 = 1; +x_53 = x_147; +x_54 = x_146; +goto block_134; } } } else { -uint8_t x_139; -lean_dec(x_128); -x_139 = 0; -x_44 = x_139; -x_45 = x_42; -goto block_125; +uint8_t x_148; +lean_dec(x_137); +x_148 = 0; +x_53 = x_148; +x_54 = x_51; +goto block_134; } } else { -uint8_t x_140; -x_140 = 0; -x_44 = x_140; -x_45 = x_42; -goto block_125; +uint8_t x_149; +x_149 = 0; +x_53 = x_149; +x_54 = x_51; +goto block_134; } } else { -uint8_t x_141; -x_141 = 0; -x_44 = x_141; -x_45 = x_42; -goto block_125; +uint8_t x_150; +x_150 = 0; +x_53 = x_150; +x_54 = x_51; +goto block_134; } -block_125: +block_134: { -lean_object* x_46; lean_object* x_47; -if (x_44 == 0) +lean_object* x_55; lean_object* x_56; +if (x_53 == 0) { -lean_object* x_97; -x_97 = lean_box(0); -x_46 = x_97; -x_47 = x_45; -goto block_96; +lean_object* x_106; +x_106 = lean_box(0); +x_55 = x_106; +x_56 = x_54; +goto block_105; } else { -lean_object* x_98; lean_object* x_99; uint8_t x_100; lean_object* x_101; -x_98 = l_Lean_Meta_getConfig(x_3, x_4, x_5, x_6, x_45); -x_99 = lean_ctor_get(x_98, 0); -lean_inc(x_99); -x_100 = lean_ctor_get_uint8(x_99, 9); -lean_dec(x_99); -x_101 = lean_box(x_100); -switch (lean_obj_tag(x_101)) { +lean_object* x_107; lean_object* x_108; uint8_t x_109; lean_object* x_110; +x_107 = l_Lean_Meta_getConfig(x_3, x_4, x_5, x_6, x_54); +x_108 = lean_ctor_get(x_107, 0); +lean_inc(x_108); +x_109 = lean_ctor_get_uint8(x_108, 9); +lean_dec(x_108); +x_110 = lean_box(x_109); +switch (lean_obj_tag(x_110)) { case 0: { -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; -x_102 = lean_ctor_get(x_98, 1); -lean_inc(x_102); -lean_dec(x_98); -x_103 = lean_st_ref_get(x_4, 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 = lean_ctor_get(x_104, 1); -lean_inc(x_106); -lean_dec(x_104); -x_107 = lean_ctor_get(x_106, 4); -lean_inc(x_107); -lean_dec(x_106); +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; +x_111 = lean_ctor_get(x_107, 1); +lean_inc(x_111); +lean_dec(x_107); +x_112 = lean_st_ref_get(x_4, x_111); +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); +x_115 = lean_ctor_get(x_113, 1); +lean_inc(x_115); +lean_dec(x_113); +x_116 = lean_ctor_get(x_115, 4); +lean_inc(x_116); +lean_dec(x_115); lean_inc(x_1); -x_108 = l_Lean_PersistentHashMap_find_x3f___at___private_Lean_Meta_InferType_0__Lean_Meta_checkInferTypeCache___spec__1(x_107, x_1); -x_46 = x_108; -x_47 = x_105; -goto block_96; +x_117 = l_Lean_PersistentHashMap_find_x3f___at___private_Lean_Meta_InferType_0__Lean_Meta_checkInferTypeCache___spec__1(x_116, x_1); +x_55 = x_117; +x_56 = x_114; +goto block_105; } case 1: { -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; -x_109 = lean_ctor_get(x_98, 1); -lean_inc(x_109); -lean_dec(x_98); -x_110 = lean_st_ref_get(x_4, x_109); -x_111 = lean_ctor_get(x_110, 0); -lean_inc(x_111); -x_112 = lean_ctor_get(x_110, 1); -lean_inc(x_112); -lean_dec(x_110); -x_113 = lean_ctor_get(x_111, 1); -lean_inc(x_113); -lean_dec(x_111); -x_114 = lean_ctor_get(x_113, 3); -lean_inc(x_114); -lean_dec(x_113); +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; +x_118 = lean_ctor_get(x_107, 1); +lean_inc(x_118); +lean_dec(x_107); +x_119 = lean_st_ref_get(x_4, x_118); +x_120 = lean_ctor_get(x_119, 0); +lean_inc(x_120); +x_121 = lean_ctor_get(x_119, 1); +lean_inc(x_121); +lean_dec(x_119); +x_122 = lean_ctor_get(x_120, 1); +lean_inc(x_122); +lean_dec(x_120); +x_123 = lean_ctor_get(x_122, 3); +lean_inc(x_123); +lean_dec(x_122); lean_inc(x_1); -x_115 = l_Lean_PersistentHashMap_find_x3f___at___private_Lean_Meta_InferType_0__Lean_Meta_checkInferTypeCache___spec__1(x_114, x_1); -x_46 = x_115; -x_47 = x_112; -goto block_96; +x_124 = l_Lean_PersistentHashMap_find_x3f___at___private_Lean_Meta_InferType_0__Lean_Meta_checkInferTypeCache___spec__1(x_123, x_1); +x_55 = x_124; +x_56 = x_121; +goto block_105; } default: { -lean_object* x_116; lean_object* x_117; lean_object* x_118; -lean_dec(x_101); -x_116 = lean_ctor_get(x_98, 1); -lean_inc(x_116); -lean_dec(x_98); -x_117 = l___private_Lean_Meta_WHNF_0__Lean_Meta_cached_x3f___closed__3; +lean_object* x_125; lean_object* x_126; lean_object* x_127; +lean_dec(x_110); +x_125 = lean_ctor_get(x_107, 1); +lean_inc(x_125); +lean_dec(x_107); +x_126 = l___private_Lean_Meta_WHNF_0__Lean_Meta_cached_x3f___closed__3; lean_inc(x_6); lean_inc(x_5); lean_inc(x_4); lean_inc(x_3); -x_118 = l_panic___at___private_Lean_Meta_WHNF_0__Lean_Meta_cached_x3f___spec__1(x_117, x_3, x_4, x_5, x_6, x_116); -if (lean_obj_tag(x_118) == 0) +x_127 = l_panic___at___private_Lean_Meta_WHNF_0__Lean_Meta_cached_x3f___spec__1(x_126, x_3, x_4, x_5, x_6, x_125); +if (lean_obj_tag(x_127) == 0) { -lean_object* x_119; lean_object* x_120; -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_46 = x_119; -x_47 = x_120; -goto block_96; +lean_object* x_128; lean_object* x_129; +x_128 = lean_ctor_get(x_127, 0); +lean_inc(x_128); +x_129 = lean_ctor_get(x_127, 1); +lean_inc(x_129); +lean_dec(x_127); +x_55 = x_128; +x_56 = x_129; +goto block_105; } else { -uint8_t x_121; -lean_dec(x_43); +uint8_t x_130; +lean_dec(x_52); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_1); -x_121 = !lean_is_exclusive(x_118); -if (x_121 == 0) +x_130 = !lean_is_exclusive(x_127); +if (x_130 == 0) { -return x_118; +return x_127; } else { -lean_object* x_122; lean_object* x_123; lean_object* x_124; -x_122 = lean_ctor_get(x_118, 0); -x_123 = lean_ctor_get(x_118, 1); -lean_inc(x_123); -lean_inc(x_122); -lean_dec(x_118); -x_124 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_124, 0, x_122); -lean_ctor_set(x_124, 1, x_123); -return x_124; +lean_object* x_131; lean_object* x_132; lean_object* x_133; +x_131 = lean_ctor_get(x_127, 0); +x_132 = lean_ctor_get(x_127, 1); +lean_inc(x_132); +lean_inc(x_131); +lean_dec(x_127); +x_133 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_133, 0, x_131); +lean_ctor_set(x_133, 1, x_132); +return x_133; } } } } } -block_96: +block_105: { -if (lean_obj_tag(x_46) == 0) +if (lean_obj_tag(x_55) == 0) { -lean_object* x_48; lean_object* x_49; -lean_dec(x_43); -x_48 = l_Lean_Meta_whnfHeadPred___lambda__1___closed__1; +lean_object* x_57; lean_object* x_58; +lean_dec(x_52); +x_57 = l_Lean_Meta_whnfHeadPred___lambda__1___closed__1; lean_inc(x_6); lean_inc(x_5); lean_inc(x_4); lean_inc(x_3); lean_inc(x_1); -x_49 = l_Lean_Meta_whnfEasyCases___at_Lean_Meta_whnfCore_go___spec__3(x_48, x_1, x_48, x_3, x_4, x_5, x_6, x_47); -if (lean_obj_tag(x_49) == 0) -{ -lean_object* x_50; lean_object* x_51; lean_object* x_52; -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); -lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_4); -lean_inc(x_3); -lean_inc(x_50); -x_52 = l_Lean_Meta_reduceNat_x3f(x_50, x_3, x_4, x_5, x_6, x_51); -if (lean_obj_tag(x_52) == 0) -{ -lean_object* x_53; -x_53 = lean_ctor_get(x_52, 0); -lean_inc(x_53); -if (lean_obj_tag(x_53) == 0) -{ -lean_object* x_54; lean_object* x_55; -x_54 = lean_ctor_get(x_52, 1); -lean_inc(x_54); -lean_dec(x_52); -lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_4); -lean_inc(x_3); -lean_inc(x_50); -x_55 = l_Lean_Meta_reduceNative_x3f(x_50, x_3, x_4, x_5, x_6, x_54); -if (lean_obj_tag(x_55) == 0) -{ -lean_object* x_56; -x_56 = lean_ctor_get(x_55, 0); -lean_inc(x_56); -if (lean_obj_tag(x_56) == 0) -{ -lean_object* x_57; lean_object* x_58; -x_57 = lean_ctor_get(x_55, 1); -lean_inc(x_57); -lean_dec(x_55); -lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_4); -lean_inc(x_3); -lean_inc(x_50); -x_58 = l_Lean_Meta_unfoldDefinition_x3f(x_50, x_3, x_4, x_5, x_6, x_57); +x_58 = l_Lean_Meta_whnfEasyCases___at_Lean_Meta_whnfCore_go___spec__3(x_57, x_1, x_57, x_3, x_4, x_5, x_6, x_56); if (lean_obj_tag(x_58) == 0) { -lean_object* x_59; +lean_object* x_59; lean_object* x_60; lean_object* x_61; x_59 = lean_ctor_get(x_58, 0); lean_inc(x_59); -if (lean_obj_tag(x_59) == 0) -{ -lean_object* x_60; lean_object* x_61; x_60 = lean_ctor_get(x_58, 1); lean_inc(x_60); lean_dec(x_58); -x_61 = l___private_Lean_Meta_WHNF_0__Lean_Meta_cache(x_44, x_1, x_50, x_3, x_4, x_5, x_6, x_60); -return x_61; -} -else -{ -lean_object* x_62; lean_object* x_63; lean_object* x_64; -lean_dec(x_50); -x_62 = lean_ctor_get(x_58, 1); -lean_inc(x_62); -lean_dec(x_58); -x_63 = lean_ctor_get(x_59, 0); -lean_inc(x_63); -lean_dec(x_59); lean_inc(x_6); lean_inc(x_5); lean_inc(x_4); lean_inc(x_3); -x_64 = lean_whnf(x_63, x_3, x_4, x_5, x_6, x_62); +lean_inc(x_59); +x_61 = l_Lean_Meta_reduceNat_x3f(x_59, x_3, x_4, x_5, x_6, x_60); +if (lean_obj_tag(x_61) == 0) +{ +lean_object* x_62; +x_62 = lean_ctor_get(x_61, 0); +lean_inc(x_62); +if (lean_obj_tag(x_62) == 0) +{ +lean_object* x_63; lean_object* x_64; +x_63 = lean_ctor_get(x_61, 1); +lean_inc(x_63); +lean_dec(x_61); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +lean_inc(x_59); +x_64 = l_Lean_Meta_reduceNative_x3f(x_59, x_3, x_4, x_5, x_6, x_63); if (lean_obj_tag(x_64) == 0) { -lean_object* x_65; lean_object* x_66; lean_object* x_67; +lean_object* x_65; x_65 = lean_ctor_get(x_64, 0); lean_inc(x_65); +if (lean_obj_tag(x_65) == 0) +{ +lean_object* x_66; lean_object* x_67; x_66 = lean_ctor_get(x_64, 1); lean_inc(x_66); lean_dec(x_64); -x_67 = l___private_Lean_Meta_WHNF_0__Lean_Meta_cache(x_44, x_1, x_65, x_3, x_4, x_5, x_6, x_66); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +lean_inc(x_59); +x_67 = l_Lean_Meta_unfoldDefinition_x3f(x_59, x_3, x_4, x_5, x_6, x_66); +if (lean_obj_tag(x_67) == 0) +{ +lean_object* x_68; +x_68 = lean_ctor_get(x_67, 0); +lean_inc(x_68); +if (lean_obj_tag(x_68) == 0) +{ +lean_object* x_69; lean_object* x_70; +x_69 = lean_ctor_get(x_67, 1); +lean_inc(x_69); +lean_dec(x_67); +x_70 = l___private_Lean_Meta_WHNF_0__Lean_Meta_cache(x_53, x_1, x_59, x_3, x_4, x_5, x_6, x_69); +return x_70; +} +else +{ +lean_object* x_71; lean_object* x_72; lean_object* x_73; +lean_dec(x_59); +x_71 = lean_ctor_get(x_67, 1); +lean_inc(x_71); +lean_dec(x_67); +x_72 = lean_ctor_get(x_68, 0); +lean_inc(x_72); +lean_dec(x_68); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +x_73 = lean_whnf(x_72, x_3, x_4, x_5, x_6, x_71); +if (lean_obj_tag(x_73) == 0) +{ +lean_object* x_74; lean_object* x_75; lean_object* x_76; +x_74 = lean_ctor_get(x_73, 0); +lean_inc(x_74); +x_75 = lean_ctor_get(x_73, 1); +lean_inc(x_75); +lean_dec(x_73); +x_76 = l___private_Lean_Meta_WHNF_0__Lean_Meta_cache(x_53, x_1, x_74, x_3, x_4, x_5, x_6, x_75); +return x_76; +} +else +{ +uint8_t x_77; +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_1); +x_77 = !lean_is_exclusive(x_73); +if (x_77 == 0) +{ +return x_73; +} +else +{ +lean_object* x_78; lean_object* x_79; lean_object* x_80; +x_78 = lean_ctor_get(x_73, 0); +x_79 = lean_ctor_get(x_73, 1); +lean_inc(x_79); +lean_inc(x_78); +lean_dec(x_73); +x_80 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_80, 0, x_78); +lean_ctor_set(x_80, 1, x_79); +return x_80; +} +} +} +} +else +{ +uint8_t x_81; +lean_dec(x_59); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_1); +x_81 = !lean_is_exclusive(x_67); +if (x_81 == 0) +{ return x_67; } else { -uint8_t x_68; +lean_object* x_82; lean_object* x_83; lean_object* x_84; +x_82 = lean_ctor_get(x_67, 0); +x_83 = lean_ctor_get(x_67, 1); +lean_inc(x_83); +lean_inc(x_82); +lean_dec(x_67); +x_84 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_84, 0, x_82); +lean_ctor_set(x_84, 1, x_83); +return x_84; +} +} +} +else +{ +lean_object* x_85; lean_object* x_86; lean_object* x_87; +lean_dec(x_59); +x_85 = lean_ctor_get(x_64, 1); +lean_inc(x_85); +lean_dec(x_64); +x_86 = lean_ctor_get(x_65, 0); +lean_inc(x_86); +lean_dec(x_65); +x_87 = l___private_Lean_Meta_WHNF_0__Lean_Meta_cache(x_53, x_1, x_86, x_3, x_4, x_5, x_6, x_85); +return x_87; +} +} +else +{ +uint8_t x_88; +lean_dec(x_59); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_1); -x_68 = !lean_is_exclusive(x_64); -if (x_68 == 0) +x_88 = !lean_is_exclusive(x_64); +if (x_88 == 0) { return x_64; } else { -lean_object* x_69; lean_object* x_70; lean_object* x_71; -x_69 = lean_ctor_get(x_64, 0); -x_70 = lean_ctor_get(x_64, 1); -lean_inc(x_70); -lean_inc(x_69); +lean_object* x_89; lean_object* x_90; lean_object* x_91; +x_89 = lean_ctor_get(x_64, 0); +x_90 = lean_ctor_get(x_64, 1); +lean_inc(x_90); +lean_inc(x_89); lean_dec(x_64); -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_91 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_91, 0, x_89); +lean_ctor_set(x_91, 1, x_90); +return x_91; } } } else { -uint8_t x_72; -lean_dec(x_50); +lean_object* x_92; lean_object* x_93; lean_object* x_94; +lean_dec(x_59); +x_92 = lean_ctor_get(x_61, 1); +lean_inc(x_92); +lean_dec(x_61); +x_93 = lean_ctor_get(x_62, 0); +lean_inc(x_93); +lean_dec(x_62); +x_94 = l___private_Lean_Meta_WHNF_0__Lean_Meta_cache(x_53, x_1, x_93, x_3, x_4, x_5, x_6, x_92); +return x_94; +} +} +else +{ +uint8_t x_95; +lean_dec(x_59); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_1); -x_72 = !lean_is_exclusive(x_58); -if (x_72 == 0) +x_95 = !lean_is_exclusive(x_61); +if (x_95 == 0) +{ +return x_61; +} +else +{ +lean_object* x_96; lean_object* x_97; lean_object* x_98; +x_96 = lean_ctor_get(x_61, 0); +x_97 = lean_ctor_get(x_61, 1); +lean_inc(x_97); +lean_inc(x_96); +lean_dec(x_61); +x_98 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_98, 0, x_96); +lean_ctor_set(x_98, 1, x_97); +return x_98; +} +} +} +else +{ +uint8_t x_99; +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_1); +x_99 = !lean_is_exclusive(x_58); +if (x_99 == 0) { return x_58; } else { -lean_object* x_73; lean_object* x_74; lean_object* x_75; -x_73 = lean_ctor_get(x_58, 0); -x_74 = lean_ctor_get(x_58, 1); -lean_inc(x_74); -lean_inc(x_73); +lean_object* x_100; lean_object* x_101; lean_object* x_102; +x_100 = lean_ctor_get(x_58, 0); +x_101 = lean_ctor_get(x_58, 1); +lean_inc(x_101); +lean_inc(x_100); lean_dec(x_58); -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_102 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_102, 0, x_100); +lean_ctor_set(x_102, 1, x_101); +return x_102; } } } else { -lean_object* x_76; lean_object* x_77; lean_object* x_78; -lean_dec(x_50); -x_76 = lean_ctor_get(x_55, 1); -lean_inc(x_76); +lean_object* x_103; lean_object* x_104; +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_1); +x_103 = lean_ctor_get(x_55, 0); +lean_inc(x_103); lean_dec(x_55); -x_77 = lean_ctor_get(x_56, 0); -lean_inc(x_77); -lean_dec(x_56); -x_78 = l___private_Lean_Meta_WHNF_0__Lean_Meta_cache(x_44, x_1, x_77, x_3, x_4, x_5, x_6, x_76); -return x_78; -} -} -else -{ -uint8_t x_79; -lean_dec(x_50); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_1); -x_79 = !lean_is_exclusive(x_55); -if (x_79 == 0) -{ -return x_55; -} -else -{ -lean_object* x_80; lean_object* x_81; lean_object* x_82; -x_80 = lean_ctor_get(x_55, 0); -x_81 = lean_ctor_get(x_55, 1); -lean_inc(x_81); -lean_inc(x_80); -lean_dec(x_55); -x_82 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_82, 0, x_80); -lean_ctor_set(x_82, 1, x_81); -return x_82; -} -} -} -else -{ -lean_object* x_83; lean_object* x_84; lean_object* x_85; -lean_dec(x_50); -x_83 = lean_ctor_get(x_52, 1); -lean_inc(x_83); -lean_dec(x_52); -x_84 = lean_ctor_get(x_53, 0); -lean_inc(x_84); -lean_dec(x_53); -x_85 = l___private_Lean_Meta_WHNF_0__Lean_Meta_cache(x_44, x_1, x_84, x_3, x_4, x_5, x_6, x_83); -return x_85; -} -} -else -{ -uint8_t x_86; -lean_dec(x_50); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_1); -x_86 = !lean_is_exclusive(x_52); -if (x_86 == 0) -{ -return x_52; -} -else -{ -lean_object* x_87; lean_object* x_88; lean_object* x_89; -x_87 = lean_ctor_get(x_52, 0); -x_88 = lean_ctor_get(x_52, 1); -lean_inc(x_88); -lean_inc(x_87); -lean_dec(x_52); -x_89 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_89, 0, x_87); -lean_ctor_set(x_89, 1, x_88); -return x_89; -} -} -} -else -{ -uint8_t x_90; -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_1); -x_90 = !lean_is_exclusive(x_49); -if (x_90 == 0) -{ -return x_49; -} -else -{ -lean_object* x_91; lean_object* x_92; lean_object* x_93; -x_91 = lean_ctor_get(x_49, 0); -x_92 = lean_ctor_get(x_49, 1); -lean_inc(x_92); -lean_inc(x_91); -lean_dec(x_49); -x_93 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_93, 0, x_91); -lean_ctor_set(x_93, 1, x_92); -return x_93; -} -} -} -else -{ -lean_object* x_94; lean_object* x_95; -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_1); -x_94 = lean_ctor_get(x_46, 0); -lean_inc(x_94); -lean_dec(x_46); -if (lean_is_scalar(x_43)) { - x_95 = lean_alloc_ctor(0, 2, 0); +if (lean_is_scalar(x_52)) { + x_104 = lean_alloc_ctor(0, 2, 0); } else { - x_95 = x_43; + x_104 = x_52; } -lean_ctor_set(x_95, 0, x_94); -lean_ctor_set(x_95, 1, x_47); -return x_95; +lean_ctor_set(x_104, 0, x_103); +lean_ctor_set(x_104, 1, x_56); +return x_104; } } } } else { -uint8_t x_142; +uint8_t x_151; lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_1); -x_142 = !lean_is_exclusive(x_41); -if (x_142 == 0) +x_151 = !lean_is_exclusive(x_50); +if (x_151 == 0) { -return x_41; +return x_50; } else { -lean_object* x_143; lean_object* x_144; lean_object* x_145; -x_143 = lean_ctor_get(x_41, 0); -x_144 = lean_ctor_get(x_41, 1); -lean_inc(x_144); -lean_inc(x_143); -lean_dec(x_41); -x_145 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_145, 0, x_143); -lean_ctor_set(x_145, 1, x_144); -return x_145; +lean_object* x_152; lean_object* x_153; lean_object* x_154; +x_152 = lean_ctor_get(x_50, 0); +x_153 = lean_ctor_get(x_50, 1); +lean_inc(x_153); +lean_inc(x_152); +lean_dec(x_50); +x_154 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_154, 0, x_152); +lean_ctor_set(x_154, 1, x_153); +return x_154; } } } case 5: { -lean_object* x_146; lean_object* x_147; -x_146 = l_Lean_Meta_whnfEasyCases___at_Lean_Meta_whnfCore_go___spec__3___closed__1; -x_147 = l_Lean_Core_checkSystem(x_146, x_5, x_6, x_7); -if (lean_obj_tag(x_147) == 0) +lean_object* x_155; lean_object* x_156; +x_155 = l_Lean_Meta_whnfEasyCases___at_Lean_Meta_whnfCore_go___spec__3___closed__1; +x_156 = l_Lean_Core_checkSystem(x_155, x_5, x_6, x_7); +if (lean_obj_tag(x_156) == 0) { -lean_object* x_148; lean_object* x_149; uint8_t x_150; lean_object* x_151; uint8_t x_232; -x_148 = lean_ctor_get(x_147, 1); -lean_inc(x_148); -if (lean_is_exclusive(x_147)) { - lean_ctor_release(x_147, 0); - lean_ctor_release(x_147, 1); - x_149 = x_147; +lean_object* x_157; lean_object* x_158; uint8_t x_159; lean_object* x_160; uint8_t x_241; +x_157 = lean_ctor_get(x_156, 1); +lean_inc(x_157); +if (lean_is_exclusive(x_156)) { + lean_ctor_release(x_156, 0); + lean_ctor_release(x_156, 1); + x_158 = x_156; } else { - lean_dec_ref(x_147); - x_149 = lean_box(0); + lean_dec_ref(x_156); + x_158 = lean_box(0); } -x_232 = l_Lean_Expr_hasFVar(x_1); -if (x_232 == 0) +x_241 = l_Lean_Expr_hasFVar(x_1); +if (x_241 == 0) { -uint8_t x_233; -x_233 = l_Lean_Expr_hasExprMVar(x_1); -if (x_233 == 0) +uint8_t x_242; +x_242 = l_Lean_Expr_hasExprMVar(x_1); +if (x_242 == 0) { -lean_object* x_234; -x_234 = lean_ctor_get(x_3, 5); -lean_inc(x_234); -if (lean_obj_tag(x_234) == 0) +lean_object* x_243; +x_243 = lean_ctor_get(x_3, 5); +lean_inc(x_243); +if (lean_obj_tag(x_243) == 0) { -lean_object* x_235; lean_object* x_236; uint8_t x_237; lean_object* x_238; -x_235 = l_Lean_Meta_getConfig(x_3, x_4, x_5, x_6, x_148); -x_236 = lean_ctor_get(x_235, 0); -lean_inc(x_236); -x_237 = lean_ctor_get_uint8(x_236, 9); -lean_dec(x_236); -x_238 = lean_box(x_237); -switch (lean_obj_tag(x_238)) { +lean_object* x_244; lean_object* x_245; uint8_t x_246; lean_object* x_247; +x_244 = l_Lean_Meta_getConfig(x_3, x_4, x_5, x_6, x_157); +x_245 = lean_ctor_get(x_244, 0); +lean_inc(x_245); +x_246 = lean_ctor_get_uint8(x_245, 9); +lean_dec(x_245); +x_247 = lean_box(x_246); +switch (lean_obj_tag(x_247)) { case 2: { -lean_object* x_239; uint8_t x_240; -x_239 = lean_ctor_get(x_235, 1); -lean_inc(x_239); -lean_dec(x_235); -x_240 = 0; -x_150 = x_240; -x_151 = x_239; -goto block_231; +lean_object* x_248; uint8_t x_249; +x_248 = lean_ctor_get(x_244, 1); +lean_inc(x_248); +lean_dec(x_244); +x_249 = 0; +x_159 = x_249; +x_160 = x_248; +goto block_240; } case 3: { -lean_object* x_241; uint8_t x_242; -x_241 = lean_ctor_get(x_235, 1); -lean_inc(x_241); -lean_dec(x_235); -x_242 = 0; -x_150 = x_242; -x_151 = x_241; -goto block_231; +lean_object* x_250; uint8_t x_251; +x_250 = lean_ctor_get(x_244, 1); +lean_inc(x_250); +lean_dec(x_244); +x_251 = 0; +x_159 = x_251; +x_160 = x_250; +goto block_240; } default: { -lean_object* x_243; uint8_t x_244; -lean_dec(x_238); -x_243 = lean_ctor_get(x_235, 1); -lean_inc(x_243); -lean_dec(x_235); -x_244 = 1; -x_150 = x_244; -x_151 = x_243; -goto block_231; +lean_object* x_252; uint8_t x_253; +lean_dec(x_247); +x_252 = lean_ctor_get(x_244, 1); +lean_inc(x_252); +lean_dec(x_244); +x_253 = 1; +x_159 = x_253; +x_160 = x_252; +goto block_240; } } } else { -uint8_t x_245; -lean_dec(x_234); -x_245 = 0; -x_150 = x_245; -x_151 = x_148; -goto block_231; +uint8_t x_254; +lean_dec(x_243); +x_254 = 0; +x_159 = x_254; +x_160 = x_157; +goto block_240; } } else { -uint8_t x_246; -x_246 = 0; -x_150 = x_246; -x_151 = x_148; -goto block_231; +uint8_t x_255; +x_255 = 0; +x_159 = x_255; +x_160 = x_157; +goto block_240; } } else { -uint8_t x_247; -x_247 = 0; -x_150 = x_247; -x_151 = x_148; -goto block_231; +uint8_t x_256; +x_256 = 0; +x_159 = x_256; +x_160 = x_157; +goto block_240; } -block_231: +block_240: { -lean_object* x_152; lean_object* x_153; -if (x_150 == 0) +lean_object* x_161; lean_object* x_162; +if (x_159 == 0) { -lean_object* x_203; -x_203 = lean_box(0); -x_152 = x_203; -x_153 = x_151; -goto block_202; +lean_object* x_212; +x_212 = lean_box(0); +x_161 = x_212; +x_162 = x_160; +goto block_211; } else { -lean_object* x_204; lean_object* x_205; uint8_t x_206; lean_object* x_207; -x_204 = l_Lean_Meta_getConfig(x_3, x_4, x_5, x_6, x_151); -x_205 = lean_ctor_get(x_204, 0); -lean_inc(x_205); -x_206 = lean_ctor_get_uint8(x_205, 9); -lean_dec(x_205); -x_207 = lean_box(x_206); -switch (lean_obj_tag(x_207)) { +lean_object* x_213; lean_object* x_214; uint8_t x_215; lean_object* x_216; +x_213 = l_Lean_Meta_getConfig(x_3, x_4, x_5, x_6, x_160); +x_214 = lean_ctor_get(x_213, 0); +lean_inc(x_214); +x_215 = lean_ctor_get_uint8(x_214, 9); +lean_dec(x_214); +x_216 = lean_box(x_215); +switch (lean_obj_tag(x_216)) { case 0: { -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; -x_208 = lean_ctor_get(x_204, 1); -lean_inc(x_208); -lean_dec(x_204); -x_209 = lean_st_ref_get(x_4, x_208); -x_210 = lean_ctor_get(x_209, 0); -lean_inc(x_210); -x_211 = lean_ctor_get(x_209, 1); -lean_inc(x_211); -lean_dec(x_209); -x_212 = lean_ctor_get(x_210, 1); -lean_inc(x_212); -lean_dec(x_210); -x_213 = lean_ctor_get(x_212, 4); -lean_inc(x_213); -lean_dec(x_212); +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; +x_217 = lean_ctor_get(x_213, 1); +lean_inc(x_217); +lean_dec(x_213); +x_218 = lean_st_ref_get(x_4, x_217); +x_219 = lean_ctor_get(x_218, 0); +lean_inc(x_219); +x_220 = lean_ctor_get(x_218, 1); +lean_inc(x_220); +lean_dec(x_218); +x_221 = lean_ctor_get(x_219, 1); +lean_inc(x_221); +lean_dec(x_219); +x_222 = lean_ctor_get(x_221, 4); +lean_inc(x_222); +lean_dec(x_221); lean_inc(x_1); -x_214 = l_Lean_PersistentHashMap_find_x3f___at___private_Lean_Meta_InferType_0__Lean_Meta_checkInferTypeCache___spec__1(x_213, x_1); -x_152 = x_214; -x_153 = x_211; -goto block_202; +x_223 = l_Lean_PersistentHashMap_find_x3f___at___private_Lean_Meta_InferType_0__Lean_Meta_checkInferTypeCache___spec__1(x_222, x_1); +x_161 = x_223; +x_162 = x_220; +goto block_211; } case 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; -x_215 = lean_ctor_get(x_204, 1); -lean_inc(x_215); -lean_dec(x_204); -x_216 = lean_st_ref_get(x_4, x_215); -x_217 = lean_ctor_get(x_216, 0); -lean_inc(x_217); -x_218 = lean_ctor_get(x_216, 1); -lean_inc(x_218); -lean_dec(x_216); -x_219 = lean_ctor_get(x_217, 1); -lean_inc(x_219); -lean_dec(x_217); -x_220 = lean_ctor_get(x_219, 3); -lean_inc(x_220); -lean_dec(x_219); +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; +x_224 = lean_ctor_get(x_213, 1); +lean_inc(x_224); +lean_dec(x_213); +x_225 = lean_st_ref_get(x_4, x_224); +x_226 = lean_ctor_get(x_225, 0); +lean_inc(x_226); +x_227 = lean_ctor_get(x_225, 1); +lean_inc(x_227); +lean_dec(x_225); +x_228 = lean_ctor_get(x_226, 1); +lean_inc(x_228); +lean_dec(x_226); +x_229 = lean_ctor_get(x_228, 3); +lean_inc(x_229); +lean_dec(x_228); lean_inc(x_1); -x_221 = l_Lean_PersistentHashMap_find_x3f___at___private_Lean_Meta_InferType_0__Lean_Meta_checkInferTypeCache___spec__1(x_220, x_1); -x_152 = x_221; -x_153 = x_218; -goto block_202; +x_230 = l_Lean_PersistentHashMap_find_x3f___at___private_Lean_Meta_InferType_0__Lean_Meta_checkInferTypeCache___spec__1(x_229, x_1); +x_161 = x_230; +x_162 = x_227; +goto block_211; } default: { -lean_object* x_222; lean_object* x_223; lean_object* x_224; -lean_dec(x_207); -x_222 = lean_ctor_get(x_204, 1); -lean_inc(x_222); -lean_dec(x_204); -x_223 = l___private_Lean_Meta_WHNF_0__Lean_Meta_cached_x3f___closed__3; +lean_object* x_231; lean_object* x_232; lean_object* x_233; +lean_dec(x_216); +x_231 = lean_ctor_get(x_213, 1); +lean_inc(x_231); +lean_dec(x_213); +x_232 = l___private_Lean_Meta_WHNF_0__Lean_Meta_cached_x3f___closed__3; lean_inc(x_6); lean_inc(x_5); lean_inc(x_4); lean_inc(x_3); -x_224 = l_panic___at___private_Lean_Meta_WHNF_0__Lean_Meta_cached_x3f___spec__1(x_223, x_3, x_4, x_5, x_6, x_222); -if (lean_obj_tag(x_224) == 0) +x_233 = l_panic___at___private_Lean_Meta_WHNF_0__Lean_Meta_cached_x3f___spec__1(x_232, x_3, x_4, x_5, x_6, x_231); +if (lean_obj_tag(x_233) == 0) { -lean_object* x_225; lean_object* x_226; -x_225 = lean_ctor_get(x_224, 0); -lean_inc(x_225); -x_226 = lean_ctor_get(x_224, 1); -lean_inc(x_226); -lean_dec(x_224); -x_152 = x_225; -x_153 = x_226; -goto block_202; +lean_object* x_234; lean_object* x_235; +x_234 = lean_ctor_get(x_233, 0); +lean_inc(x_234); +x_235 = lean_ctor_get(x_233, 1); +lean_inc(x_235); +lean_dec(x_233); +x_161 = x_234; +x_162 = x_235; +goto block_211; } else { -uint8_t x_227; -lean_dec(x_149); +uint8_t x_236; +lean_dec(x_158); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_1); -x_227 = !lean_is_exclusive(x_224); -if (x_227 == 0) +x_236 = !lean_is_exclusive(x_233); +if (x_236 == 0) { -return x_224; +return x_233; } else { -lean_object* x_228; lean_object* x_229; lean_object* x_230; -x_228 = lean_ctor_get(x_224, 0); -x_229 = lean_ctor_get(x_224, 1); -lean_inc(x_229); -lean_inc(x_228); -lean_dec(x_224); -x_230 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_230, 0, x_228); -lean_ctor_set(x_230, 1, x_229); -return x_230; +lean_object* x_237; lean_object* x_238; lean_object* x_239; +x_237 = lean_ctor_get(x_233, 0); +x_238 = lean_ctor_get(x_233, 1); +lean_inc(x_238); +lean_inc(x_237); +lean_dec(x_233); +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; } } } } } -block_202: +block_211: { -if (lean_obj_tag(x_152) == 0) +if (lean_obj_tag(x_161) == 0) { -lean_object* x_154; lean_object* x_155; -lean_dec(x_149); -x_154 = l_Lean_Meta_whnfHeadPred___lambda__1___closed__1; +lean_object* x_163; lean_object* x_164; +lean_dec(x_158); +x_163 = l_Lean_Meta_whnfHeadPred___lambda__1___closed__1; lean_inc(x_6); lean_inc(x_5); lean_inc(x_4); lean_inc(x_3); lean_inc(x_1); -x_155 = l_Lean_Meta_whnfEasyCases___at_Lean_Meta_whnfCore_go___spec__3(x_154, x_1, x_154, x_3, x_4, x_5, x_6, x_153); -if (lean_obj_tag(x_155) == 0) -{ -lean_object* x_156; lean_object* x_157; lean_object* x_158; -x_156 = lean_ctor_get(x_155, 0); -lean_inc(x_156); -x_157 = lean_ctor_get(x_155, 1); -lean_inc(x_157); -lean_dec(x_155); -lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_4); -lean_inc(x_3); -lean_inc(x_156); -x_158 = l_Lean_Meta_reduceNat_x3f(x_156, x_3, x_4, x_5, x_6, x_157); -if (lean_obj_tag(x_158) == 0) -{ -lean_object* x_159; -x_159 = lean_ctor_get(x_158, 0); -lean_inc(x_159); -if (lean_obj_tag(x_159) == 0) -{ -lean_object* x_160; lean_object* x_161; -x_160 = lean_ctor_get(x_158, 1); -lean_inc(x_160); -lean_dec(x_158); -lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_4); -lean_inc(x_3); -lean_inc(x_156); -x_161 = l_Lean_Meta_reduceNative_x3f(x_156, x_3, x_4, x_5, x_6, x_160); -if (lean_obj_tag(x_161) == 0) -{ -lean_object* x_162; -x_162 = lean_ctor_get(x_161, 0); -lean_inc(x_162); -if (lean_obj_tag(x_162) == 0) -{ -lean_object* x_163; lean_object* x_164; -x_163 = lean_ctor_get(x_161, 1); -lean_inc(x_163); -lean_dec(x_161); -lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_4); -lean_inc(x_3); -lean_inc(x_156); -x_164 = l_Lean_Meta_unfoldDefinition_x3f(x_156, x_3, x_4, x_5, x_6, x_163); +x_164 = l_Lean_Meta_whnfEasyCases___at_Lean_Meta_whnfCore_go___spec__3(x_163, x_1, x_163, x_3, x_4, x_5, x_6, x_162); if (lean_obj_tag(x_164) == 0) { -lean_object* x_165; +lean_object* x_165; lean_object* x_166; lean_object* x_167; x_165 = lean_ctor_get(x_164, 0); lean_inc(x_165); -if (lean_obj_tag(x_165) == 0) -{ -lean_object* x_166; lean_object* x_167; x_166 = lean_ctor_get(x_164, 1); lean_inc(x_166); lean_dec(x_164); -x_167 = l___private_Lean_Meta_WHNF_0__Lean_Meta_cache(x_150, x_1, x_156, x_3, x_4, x_5, x_6, x_166); -return x_167; -} -else -{ -lean_object* x_168; lean_object* x_169; lean_object* x_170; -lean_dec(x_156); -x_168 = lean_ctor_get(x_164, 1); -lean_inc(x_168); -lean_dec(x_164); -x_169 = lean_ctor_get(x_165, 0); -lean_inc(x_169); -lean_dec(x_165); lean_inc(x_6); lean_inc(x_5); lean_inc(x_4); lean_inc(x_3); -x_170 = lean_whnf(x_169, x_3, x_4, x_5, x_6, x_168); +lean_inc(x_165); +x_167 = l_Lean_Meta_reduceNat_x3f(x_165, x_3, x_4, x_5, x_6, x_166); +if (lean_obj_tag(x_167) == 0) +{ +lean_object* x_168; +x_168 = lean_ctor_get(x_167, 0); +lean_inc(x_168); +if (lean_obj_tag(x_168) == 0) +{ +lean_object* x_169; lean_object* x_170; +x_169 = lean_ctor_get(x_167, 1); +lean_inc(x_169); +lean_dec(x_167); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +lean_inc(x_165); +x_170 = l_Lean_Meta_reduceNative_x3f(x_165, x_3, x_4, x_5, x_6, x_169); if (lean_obj_tag(x_170) == 0) { -lean_object* x_171; lean_object* x_172; lean_object* x_173; +lean_object* x_171; x_171 = lean_ctor_get(x_170, 0); lean_inc(x_171); +if (lean_obj_tag(x_171) == 0) +{ +lean_object* x_172; lean_object* x_173; x_172 = lean_ctor_get(x_170, 1); lean_inc(x_172); lean_dec(x_170); -x_173 = l___private_Lean_Meta_WHNF_0__Lean_Meta_cache(x_150, x_1, x_171, x_3, x_4, x_5, x_6, x_172); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +lean_inc(x_165); +x_173 = l_Lean_Meta_unfoldDefinition_x3f(x_165, x_3, x_4, x_5, x_6, x_172); +if (lean_obj_tag(x_173) == 0) +{ +lean_object* x_174; +x_174 = lean_ctor_get(x_173, 0); +lean_inc(x_174); +if (lean_obj_tag(x_174) == 0) +{ +lean_object* x_175; lean_object* x_176; +x_175 = lean_ctor_get(x_173, 1); +lean_inc(x_175); +lean_dec(x_173); +x_176 = l___private_Lean_Meta_WHNF_0__Lean_Meta_cache(x_159, x_1, x_165, x_3, x_4, x_5, x_6, x_175); +return x_176; +} +else +{ +lean_object* x_177; lean_object* x_178; lean_object* x_179; +lean_dec(x_165); +x_177 = lean_ctor_get(x_173, 1); +lean_inc(x_177); +lean_dec(x_173); +x_178 = lean_ctor_get(x_174, 0); +lean_inc(x_178); +lean_dec(x_174); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +x_179 = lean_whnf(x_178, x_3, x_4, x_5, x_6, x_177); +if (lean_obj_tag(x_179) == 0) +{ +lean_object* x_180; lean_object* x_181; lean_object* x_182; +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 = l___private_Lean_Meta_WHNF_0__Lean_Meta_cache(x_159, x_1, x_180, x_3, x_4, x_5, x_6, x_181); +return x_182; +} +else +{ +uint8_t x_183; +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_1); +x_183 = !lean_is_exclusive(x_179); +if (x_183 == 0) +{ +return x_179; +} +else +{ +lean_object* x_184; lean_object* x_185; lean_object* x_186; +x_184 = lean_ctor_get(x_179, 0); +x_185 = lean_ctor_get(x_179, 1); +lean_inc(x_185); +lean_inc(x_184); +lean_dec(x_179); +x_186 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_186, 0, x_184); +lean_ctor_set(x_186, 1, x_185); +return x_186; +} +} +} +} +else +{ +uint8_t x_187; +lean_dec(x_165); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_1); +x_187 = !lean_is_exclusive(x_173); +if (x_187 == 0) +{ return x_173; } else { -uint8_t x_174; +lean_object* x_188; lean_object* x_189; lean_object* x_190; +x_188 = lean_ctor_get(x_173, 0); +x_189 = lean_ctor_get(x_173, 1); +lean_inc(x_189); +lean_inc(x_188); +lean_dec(x_173); +x_190 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_190, 0, x_188); +lean_ctor_set(x_190, 1, x_189); +return x_190; +} +} +} +else +{ +lean_object* x_191; lean_object* x_192; lean_object* x_193; +lean_dec(x_165); +x_191 = lean_ctor_get(x_170, 1); +lean_inc(x_191); +lean_dec(x_170); +x_192 = lean_ctor_get(x_171, 0); +lean_inc(x_192); +lean_dec(x_171); +x_193 = l___private_Lean_Meta_WHNF_0__Lean_Meta_cache(x_159, x_1, x_192, x_3, x_4, x_5, x_6, x_191); +return x_193; +} +} +else +{ +uint8_t x_194; +lean_dec(x_165); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_1); -x_174 = !lean_is_exclusive(x_170); -if (x_174 == 0) +x_194 = !lean_is_exclusive(x_170); +if (x_194 == 0) { return x_170; } else { -lean_object* x_175; lean_object* x_176; lean_object* x_177; -x_175 = lean_ctor_get(x_170, 0); -x_176 = lean_ctor_get(x_170, 1); -lean_inc(x_176); -lean_inc(x_175); +lean_object* x_195; lean_object* x_196; lean_object* x_197; +x_195 = lean_ctor_get(x_170, 0); +x_196 = lean_ctor_get(x_170, 1); +lean_inc(x_196); +lean_inc(x_195); lean_dec(x_170); -x_177 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_177, 0, x_175); -lean_ctor_set(x_177, 1, x_176); -return x_177; -} +x_197 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_197, 0, x_195); +lean_ctor_set(x_197, 1, x_196); +return x_197; } } } else { -uint8_t x_178; -lean_dec(x_156); +lean_object* x_198; lean_object* x_199; lean_object* x_200; +lean_dec(x_165); +x_198 = lean_ctor_get(x_167, 1); +lean_inc(x_198); +lean_dec(x_167); +x_199 = lean_ctor_get(x_168, 0); +lean_inc(x_199); +lean_dec(x_168); +x_200 = l___private_Lean_Meta_WHNF_0__Lean_Meta_cache(x_159, x_1, x_199, x_3, x_4, x_5, x_6, x_198); +return x_200; +} +} +else +{ +uint8_t x_201; +lean_dec(x_165); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_1); -x_178 = !lean_is_exclusive(x_164); -if (x_178 == 0) +x_201 = !lean_is_exclusive(x_167); +if (x_201 == 0) +{ +return x_167; +} +else +{ +lean_object* x_202; lean_object* x_203; lean_object* x_204; +x_202 = lean_ctor_get(x_167, 0); +x_203 = lean_ctor_get(x_167, 1); +lean_inc(x_203); +lean_inc(x_202); +lean_dec(x_167); +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; +} +} +} +else +{ +uint8_t x_205; +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_1); +x_205 = !lean_is_exclusive(x_164); +if (x_205 == 0) { return x_164; } else { -lean_object* x_179; lean_object* x_180; lean_object* x_181; -x_179 = lean_ctor_get(x_164, 0); -x_180 = lean_ctor_get(x_164, 1); -lean_inc(x_180); -lean_inc(x_179); +lean_object* x_206; lean_object* x_207; lean_object* x_208; +x_206 = lean_ctor_get(x_164, 0); +x_207 = lean_ctor_get(x_164, 1); +lean_inc(x_207); +lean_inc(x_206); lean_dec(x_164); -x_181 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_181, 0, x_179); -lean_ctor_set(x_181, 1, x_180); -return x_181; +x_208 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_208, 0, x_206); +lean_ctor_set(x_208, 1, x_207); +return x_208; } } } else { -lean_object* x_182; lean_object* x_183; lean_object* x_184; -lean_dec(x_156); -x_182 = lean_ctor_get(x_161, 1); -lean_inc(x_182); +lean_object* x_209; lean_object* x_210; +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_1); +x_209 = lean_ctor_get(x_161, 0); +lean_inc(x_209); lean_dec(x_161); -x_183 = lean_ctor_get(x_162, 0); -lean_inc(x_183); -lean_dec(x_162); -x_184 = l___private_Lean_Meta_WHNF_0__Lean_Meta_cache(x_150, x_1, x_183, x_3, x_4, x_5, x_6, x_182); -return x_184; -} -} -else -{ -uint8_t x_185; -lean_dec(x_156); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_1); -x_185 = !lean_is_exclusive(x_161); -if (x_185 == 0) -{ -return x_161; -} -else -{ -lean_object* x_186; lean_object* x_187; lean_object* x_188; -x_186 = lean_ctor_get(x_161, 0); -x_187 = lean_ctor_get(x_161, 1); -lean_inc(x_187); -lean_inc(x_186); -lean_dec(x_161); -x_188 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_188, 0, x_186); -lean_ctor_set(x_188, 1, x_187); -return x_188; -} -} -} -else -{ -lean_object* x_189; lean_object* x_190; lean_object* x_191; -lean_dec(x_156); -x_189 = lean_ctor_get(x_158, 1); -lean_inc(x_189); -lean_dec(x_158); -x_190 = lean_ctor_get(x_159, 0); -lean_inc(x_190); -lean_dec(x_159); -x_191 = l___private_Lean_Meta_WHNF_0__Lean_Meta_cache(x_150, x_1, x_190, x_3, x_4, x_5, x_6, x_189); -return x_191; -} -} -else -{ -uint8_t x_192; -lean_dec(x_156); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_1); -x_192 = !lean_is_exclusive(x_158); -if (x_192 == 0) -{ -return x_158; -} -else -{ -lean_object* x_193; lean_object* x_194; lean_object* x_195; -x_193 = lean_ctor_get(x_158, 0); -x_194 = lean_ctor_get(x_158, 1); -lean_inc(x_194); -lean_inc(x_193); -lean_dec(x_158); -x_195 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_195, 0, x_193); -lean_ctor_set(x_195, 1, x_194); -return x_195; -} -} -} -else -{ -uint8_t x_196; -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_1); -x_196 = !lean_is_exclusive(x_155); -if (x_196 == 0) -{ -return x_155; -} -else -{ -lean_object* x_197; lean_object* x_198; lean_object* x_199; -x_197 = lean_ctor_get(x_155, 0); -x_198 = lean_ctor_get(x_155, 1); -lean_inc(x_198); -lean_inc(x_197); -lean_dec(x_155); -x_199 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_199, 0, x_197); -lean_ctor_set(x_199, 1, x_198); -return x_199; -} -} -} -else -{ -lean_object* x_200; lean_object* x_201; -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_1); -x_200 = lean_ctor_get(x_152, 0); -lean_inc(x_200); -lean_dec(x_152); -if (lean_is_scalar(x_149)) { - x_201 = lean_alloc_ctor(0, 2, 0); +if (lean_is_scalar(x_158)) { + x_210 = lean_alloc_ctor(0, 2, 0); } else { - x_201 = x_149; + x_210 = x_158; } -lean_ctor_set(x_201, 0, x_200); -lean_ctor_set(x_201, 1, x_153); -return x_201; +lean_ctor_set(x_210, 0, x_209); +lean_ctor_set(x_210, 1, x_162); +return x_210; } } } } else { -uint8_t x_248; +uint8_t x_257; lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_1); -x_248 = !lean_is_exclusive(x_147); -if (x_248 == 0) +x_257 = !lean_is_exclusive(x_156); +if (x_257 == 0) { -return x_147; +return x_156; } else { -lean_object* x_249; lean_object* x_250; lean_object* x_251; -x_249 = lean_ctor_get(x_147, 0); -x_250 = lean_ctor_get(x_147, 1); -lean_inc(x_250); -lean_inc(x_249); -lean_dec(x_147); -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; +lean_object* x_258; lean_object* x_259; lean_object* x_260; +x_258 = lean_ctor_get(x_156, 0); +x_259 = lean_ctor_get(x_156, 1); +lean_inc(x_259); +lean_inc(x_258); +lean_dec(x_156); +x_260 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_260, 0, x_258); +lean_ctor_set(x_260, 1, x_259); +return x_260; } } } case 8: { -lean_object* x_252; lean_object* x_253; -x_252 = l_Lean_Meta_whnfEasyCases___at_Lean_Meta_whnfCore_go___spec__3___closed__1; -x_253 = l_Lean_Core_checkSystem(x_252, x_5, x_6, x_7); -if (lean_obj_tag(x_253) == 0) +lean_object* x_261; lean_object* x_262; +x_261 = l_Lean_Meta_whnfEasyCases___at_Lean_Meta_whnfCore_go___spec__3___closed__1; +x_262 = l_Lean_Core_checkSystem(x_261, x_5, x_6, x_7); +if (lean_obj_tag(x_262) == 0) { -lean_object* x_254; lean_object* x_255; uint8_t x_256; lean_object* x_257; uint8_t x_338; -x_254 = lean_ctor_get(x_253, 1); -lean_inc(x_254); -if (lean_is_exclusive(x_253)) { - lean_ctor_release(x_253, 0); - lean_ctor_release(x_253, 1); - x_255 = x_253; +lean_object* x_263; lean_object* x_264; uint8_t x_265; lean_object* x_266; uint8_t x_347; +x_263 = lean_ctor_get(x_262, 1); +lean_inc(x_263); +if (lean_is_exclusive(x_262)) { + lean_ctor_release(x_262, 0); + lean_ctor_release(x_262, 1); + x_264 = x_262; } else { - lean_dec_ref(x_253); - x_255 = lean_box(0); + lean_dec_ref(x_262); + x_264 = lean_box(0); } -x_338 = l_Lean_Expr_hasFVar(x_1); -if (x_338 == 0) +x_347 = l_Lean_Expr_hasFVar(x_1); +if (x_347 == 0) { -uint8_t x_339; -x_339 = l_Lean_Expr_hasExprMVar(x_1); -if (x_339 == 0) +uint8_t x_348; +x_348 = l_Lean_Expr_hasExprMVar(x_1); +if (x_348 == 0) { -lean_object* x_340; -x_340 = lean_ctor_get(x_3, 5); -lean_inc(x_340); -if (lean_obj_tag(x_340) == 0) +lean_object* x_349; +x_349 = lean_ctor_get(x_3, 5); +lean_inc(x_349); +if (lean_obj_tag(x_349) == 0) { -lean_object* x_341; lean_object* x_342; uint8_t x_343; lean_object* x_344; -x_341 = l_Lean_Meta_getConfig(x_3, x_4, x_5, x_6, x_254); -x_342 = lean_ctor_get(x_341, 0); -lean_inc(x_342); -x_343 = lean_ctor_get_uint8(x_342, 9); -lean_dec(x_342); -x_344 = lean_box(x_343); -switch (lean_obj_tag(x_344)) { +lean_object* x_350; lean_object* x_351; uint8_t x_352; lean_object* x_353; +x_350 = l_Lean_Meta_getConfig(x_3, x_4, x_5, x_6, x_263); +x_351 = lean_ctor_get(x_350, 0); +lean_inc(x_351); +x_352 = lean_ctor_get_uint8(x_351, 9); +lean_dec(x_351); +x_353 = lean_box(x_352); +switch (lean_obj_tag(x_353)) { case 2: { -lean_object* x_345; uint8_t x_346; -x_345 = lean_ctor_get(x_341, 1); -lean_inc(x_345); -lean_dec(x_341); -x_346 = 0; -x_256 = x_346; -x_257 = x_345; -goto block_337; +lean_object* x_354; uint8_t x_355; +x_354 = lean_ctor_get(x_350, 1); +lean_inc(x_354); +lean_dec(x_350); +x_355 = 0; +x_265 = x_355; +x_266 = x_354; +goto block_346; } case 3: { -lean_object* x_347; uint8_t x_348; -x_347 = lean_ctor_get(x_341, 1); -lean_inc(x_347); -lean_dec(x_341); -x_348 = 0; -x_256 = x_348; -x_257 = x_347; -goto block_337; +lean_object* x_356; uint8_t x_357; +x_356 = lean_ctor_get(x_350, 1); +lean_inc(x_356); +lean_dec(x_350); +x_357 = 0; +x_265 = x_357; +x_266 = x_356; +goto block_346; } default: { -lean_object* x_349; uint8_t x_350; -lean_dec(x_344); -x_349 = lean_ctor_get(x_341, 1); -lean_inc(x_349); -lean_dec(x_341); -x_350 = 1; -x_256 = x_350; -x_257 = x_349; -goto block_337; +lean_object* x_358; uint8_t x_359; +lean_dec(x_353); +x_358 = lean_ctor_get(x_350, 1); +lean_inc(x_358); +lean_dec(x_350); +x_359 = 1; +x_265 = x_359; +x_266 = x_358; +goto block_346; } } } else { -uint8_t x_351; -lean_dec(x_340); -x_351 = 0; -x_256 = x_351; -x_257 = x_254; -goto block_337; +uint8_t x_360; +lean_dec(x_349); +x_360 = 0; +x_265 = x_360; +x_266 = x_263; +goto block_346; } } else { -uint8_t x_352; -x_352 = 0; -x_256 = x_352; -x_257 = x_254; -goto block_337; +uint8_t x_361; +x_361 = 0; +x_265 = x_361; +x_266 = x_263; +goto block_346; } } else { -uint8_t x_353; -x_353 = 0; -x_256 = x_353; -x_257 = x_254; -goto block_337; +uint8_t x_362; +x_362 = 0; +x_265 = x_362; +x_266 = x_263; +goto block_346; } -block_337: +block_346: { -lean_object* x_258; lean_object* x_259; -if (x_256 == 0) +lean_object* x_267; lean_object* x_268; +if (x_265 == 0) { -lean_object* x_309; -x_309 = lean_box(0); -x_258 = x_309; -x_259 = x_257; -goto block_308; +lean_object* x_318; +x_318 = lean_box(0); +x_267 = x_318; +x_268 = x_266; +goto block_317; } else { -lean_object* x_310; lean_object* x_311; uint8_t x_312; lean_object* x_313; -x_310 = l_Lean_Meta_getConfig(x_3, x_4, x_5, x_6, x_257); -x_311 = lean_ctor_get(x_310, 0); -lean_inc(x_311); -x_312 = lean_ctor_get_uint8(x_311, 9); -lean_dec(x_311); -x_313 = lean_box(x_312); -switch (lean_obj_tag(x_313)) { +lean_object* x_319; lean_object* x_320; uint8_t x_321; lean_object* x_322; +x_319 = l_Lean_Meta_getConfig(x_3, x_4, x_5, x_6, x_266); +x_320 = lean_ctor_get(x_319, 0); +lean_inc(x_320); +x_321 = lean_ctor_get_uint8(x_320, 9); +lean_dec(x_320); +x_322 = lean_box(x_321); +switch (lean_obj_tag(x_322)) { case 0: { -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_314 = lean_ctor_get(x_310, 1); -lean_inc(x_314); -lean_dec(x_310); -x_315 = lean_st_ref_get(x_4, x_314); -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_ctor_get(x_316, 1); -lean_inc(x_318); -lean_dec(x_316); -x_319 = lean_ctor_get(x_318, 4); -lean_inc(x_319); -lean_dec(x_318); +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; +x_323 = lean_ctor_get(x_319, 1); +lean_inc(x_323); +lean_dec(x_319); +x_324 = lean_st_ref_get(x_4, x_323); +x_325 = lean_ctor_get(x_324, 0); +lean_inc(x_325); +x_326 = lean_ctor_get(x_324, 1); +lean_inc(x_326); +lean_dec(x_324); +x_327 = lean_ctor_get(x_325, 1); +lean_inc(x_327); +lean_dec(x_325); +x_328 = lean_ctor_get(x_327, 4); +lean_inc(x_328); +lean_dec(x_327); lean_inc(x_1); -x_320 = l_Lean_PersistentHashMap_find_x3f___at___private_Lean_Meta_InferType_0__Lean_Meta_checkInferTypeCache___spec__1(x_319, x_1); -x_258 = x_320; -x_259 = x_317; -goto block_308; +x_329 = l_Lean_PersistentHashMap_find_x3f___at___private_Lean_Meta_InferType_0__Lean_Meta_checkInferTypeCache___spec__1(x_328, x_1); +x_267 = x_329; +x_268 = x_326; +goto block_317; } case 1: { -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; -x_321 = lean_ctor_get(x_310, 1); -lean_inc(x_321); -lean_dec(x_310); -x_322 = lean_st_ref_get(x_4, x_321); -x_323 = lean_ctor_get(x_322, 0); -lean_inc(x_323); -x_324 = lean_ctor_get(x_322, 1); -lean_inc(x_324); -lean_dec(x_322); -x_325 = lean_ctor_get(x_323, 1); -lean_inc(x_325); -lean_dec(x_323); -x_326 = lean_ctor_get(x_325, 3); -lean_inc(x_326); -lean_dec(x_325); +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; +x_330 = lean_ctor_get(x_319, 1); +lean_inc(x_330); +lean_dec(x_319); +x_331 = lean_st_ref_get(x_4, x_330); +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_ctor_get(x_332, 1); +lean_inc(x_334); +lean_dec(x_332); +x_335 = lean_ctor_get(x_334, 3); +lean_inc(x_335); +lean_dec(x_334); lean_inc(x_1); -x_327 = l_Lean_PersistentHashMap_find_x3f___at___private_Lean_Meta_InferType_0__Lean_Meta_checkInferTypeCache___spec__1(x_326, x_1); -x_258 = x_327; -x_259 = x_324; -goto block_308; +x_336 = l_Lean_PersistentHashMap_find_x3f___at___private_Lean_Meta_InferType_0__Lean_Meta_checkInferTypeCache___spec__1(x_335, x_1); +x_267 = x_336; +x_268 = x_333; +goto block_317; } default: { -lean_object* x_328; lean_object* x_329; lean_object* x_330; -lean_dec(x_313); -x_328 = lean_ctor_get(x_310, 1); -lean_inc(x_328); -lean_dec(x_310); -x_329 = l___private_Lean_Meta_WHNF_0__Lean_Meta_cached_x3f___closed__3; +lean_object* x_337; lean_object* x_338; lean_object* x_339; +lean_dec(x_322); +x_337 = lean_ctor_get(x_319, 1); +lean_inc(x_337); +lean_dec(x_319); +x_338 = l___private_Lean_Meta_WHNF_0__Lean_Meta_cached_x3f___closed__3; lean_inc(x_6); lean_inc(x_5); lean_inc(x_4); lean_inc(x_3); -x_330 = l_panic___at___private_Lean_Meta_WHNF_0__Lean_Meta_cached_x3f___spec__1(x_329, x_3, x_4, x_5, x_6, x_328); -if (lean_obj_tag(x_330) == 0) +x_339 = l_panic___at___private_Lean_Meta_WHNF_0__Lean_Meta_cached_x3f___spec__1(x_338, x_3, x_4, x_5, x_6, x_337); +if (lean_obj_tag(x_339) == 0) { -lean_object* x_331; lean_object* x_332; -x_331 = lean_ctor_get(x_330, 0); -lean_inc(x_331); -x_332 = lean_ctor_get(x_330, 1); -lean_inc(x_332); -lean_dec(x_330); -x_258 = x_331; -x_259 = x_332; -goto block_308; +lean_object* x_340; lean_object* x_341; +x_340 = lean_ctor_get(x_339, 0); +lean_inc(x_340); +x_341 = lean_ctor_get(x_339, 1); +lean_inc(x_341); +lean_dec(x_339); +x_267 = x_340; +x_268 = x_341; +goto block_317; } else { -uint8_t x_333; -lean_dec(x_255); +uint8_t x_342; +lean_dec(x_264); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_1); -x_333 = !lean_is_exclusive(x_330); -if (x_333 == 0) +x_342 = !lean_is_exclusive(x_339); +if (x_342 == 0) { -return x_330; +return x_339; } else { -lean_object* x_334; lean_object* x_335; lean_object* x_336; -x_334 = lean_ctor_get(x_330, 0); -x_335 = lean_ctor_get(x_330, 1); -lean_inc(x_335); -lean_inc(x_334); -lean_dec(x_330); -x_336 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_336, 0, x_334); -lean_ctor_set(x_336, 1, x_335); -return x_336; +lean_object* x_343; lean_object* x_344; lean_object* x_345; +x_343 = lean_ctor_get(x_339, 0); +x_344 = lean_ctor_get(x_339, 1); +lean_inc(x_344); +lean_inc(x_343); +lean_dec(x_339); +x_345 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_345, 0, x_343); +lean_ctor_set(x_345, 1, x_344); +return x_345; } } } } } -block_308: +block_317: { -if (lean_obj_tag(x_258) == 0) +if (lean_obj_tag(x_267) == 0) { -lean_object* x_260; lean_object* x_261; -lean_dec(x_255); -x_260 = l_Lean_Meta_whnfHeadPred___lambda__1___closed__1; +lean_object* x_269; lean_object* x_270; +lean_dec(x_264); +x_269 = l_Lean_Meta_whnfHeadPred___lambda__1___closed__1; lean_inc(x_6); lean_inc(x_5); lean_inc(x_4); lean_inc(x_3); lean_inc(x_1); -x_261 = l_Lean_Meta_whnfEasyCases___at_Lean_Meta_whnfCore_go___spec__3(x_260, x_1, x_260, x_3, x_4, x_5, x_6, x_259); -if (lean_obj_tag(x_261) == 0) -{ -lean_object* x_262; lean_object* x_263; lean_object* x_264; -x_262 = lean_ctor_get(x_261, 0); -lean_inc(x_262); -x_263 = lean_ctor_get(x_261, 1); -lean_inc(x_263); -lean_dec(x_261); -lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_4); -lean_inc(x_3); -lean_inc(x_262); -x_264 = l_Lean_Meta_reduceNat_x3f(x_262, x_3, x_4, x_5, x_6, x_263); -if (lean_obj_tag(x_264) == 0) -{ -lean_object* x_265; -x_265 = lean_ctor_get(x_264, 0); -lean_inc(x_265); -if (lean_obj_tag(x_265) == 0) -{ -lean_object* x_266; lean_object* x_267; -x_266 = lean_ctor_get(x_264, 1); -lean_inc(x_266); -lean_dec(x_264); -lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_4); -lean_inc(x_3); -lean_inc(x_262); -x_267 = l_Lean_Meta_reduceNative_x3f(x_262, x_3, x_4, x_5, x_6, x_266); -if (lean_obj_tag(x_267) == 0) -{ -lean_object* x_268; -x_268 = lean_ctor_get(x_267, 0); -lean_inc(x_268); -if (lean_obj_tag(x_268) == 0) -{ -lean_object* x_269; lean_object* x_270; -x_269 = lean_ctor_get(x_267, 1); -lean_inc(x_269); -lean_dec(x_267); -lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_4); -lean_inc(x_3); -lean_inc(x_262); -x_270 = l_Lean_Meta_unfoldDefinition_x3f(x_262, x_3, x_4, x_5, x_6, x_269); +x_270 = l_Lean_Meta_whnfEasyCases___at_Lean_Meta_whnfCore_go___spec__3(x_269, x_1, x_269, x_3, x_4, x_5, x_6, x_268); if (lean_obj_tag(x_270) == 0) { -lean_object* x_271; +lean_object* x_271; lean_object* x_272; lean_object* x_273; x_271 = lean_ctor_get(x_270, 0); lean_inc(x_271); -if (lean_obj_tag(x_271) == 0) -{ -lean_object* x_272; lean_object* x_273; x_272 = lean_ctor_get(x_270, 1); lean_inc(x_272); lean_dec(x_270); -x_273 = l___private_Lean_Meta_WHNF_0__Lean_Meta_cache(x_256, x_1, x_262, x_3, x_4, x_5, x_6, x_272); -return x_273; -} -else -{ -lean_object* x_274; lean_object* x_275; lean_object* x_276; -lean_dec(x_262); -x_274 = lean_ctor_get(x_270, 1); -lean_inc(x_274); -lean_dec(x_270); -x_275 = lean_ctor_get(x_271, 0); -lean_inc(x_275); -lean_dec(x_271); lean_inc(x_6); lean_inc(x_5); lean_inc(x_4); lean_inc(x_3); -x_276 = lean_whnf(x_275, x_3, x_4, x_5, x_6, x_274); +lean_inc(x_271); +x_273 = l_Lean_Meta_reduceNat_x3f(x_271, x_3, x_4, x_5, x_6, x_272); +if (lean_obj_tag(x_273) == 0) +{ +lean_object* x_274; +x_274 = lean_ctor_get(x_273, 0); +lean_inc(x_274); +if (lean_obj_tag(x_274) == 0) +{ +lean_object* x_275; lean_object* x_276; +x_275 = lean_ctor_get(x_273, 1); +lean_inc(x_275); +lean_dec(x_273); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +lean_inc(x_271); +x_276 = l_Lean_Meta_reduceNative_x3f(x_271, x_3, x_4, x_5, x_6, x_275); if (lean_obj_tag(x_276) == 0) { -lean_object* x_277; lean_object* x_278; lean_object* x_279; +lean_object* x_277; x_277 = lean_ctor_get(x_276, 0); lean_inc(x_277); +if (lean_obj_tag(x_277) == 0) +{ +lean_object* x_278; lean_object* x_279; x_278 = lean_ctor_get(x_276, 1); lean_inc(x_278); lean_dec(x_276); -x_279 = l___private_Lean_Meta_WHNF_0__Lean_Meta_cache(x_256, x_1, x_277, x_3, x_4, x_5, x_6, x_278); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +lean_inc(x_271); +x_279 = l_Lean_Meta_unfoldDefinition_x3f(x_271, x_3, x_4, x_5, x_6, x_278); +if (lean_obj_tag(x_279) == 0) +{ +lean_object* x_280; +x_280 = lean_ctor_get(x_279, 0); +lean_inc(x_280); +if (lean_obj_tag(x_280) == 0) +{ +lean_object* x_281; lean_object* x_282; +x_281 = lean_ctor_get(x_279, 1); +lean_inc(x_281); +lean_dec(x_279); +x_282 = l___private_Lean_Meta_WHNF_0__Lean_Meta_cache(x_265, x_1, x_271, x_3, x_4, x_5, x_6, x_281); +return x_282; +} +else +{ +lean_object* x_283; lean_object* x_284; lean_object* x_285; +lean_dec(x_271); +x_283 = lean_ctor_get(x_279, 1); +lean_inc(x_283); +lean_dec(x_279); +x_284 = lean_ctor_get(x_280, 0); +lean_inc(x_284); +lean_dec(x_280); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +x_285 = lean_whnf(x_284, x_3, x_4, x_5, x_6, x_283); +if (lean_obj_tag(x_285) == 0) +{ +lean_object* x_286; lean_object* x_287; lean_object* x_288; +x_286 = lean_ctor_get(x_285, 0); +lean_inc(x_286); +x_287 = lean_ctor_get(x_285, 1); +lean_inc(x_287); +lean_dec(x_285); +x_288 = l___private_Lean_Meta_WHNF_0__Lean_Meta_cache(x_265, x_1, x_286, x_3, x_4, x_5, x_6, x_287); +return x_288; +} +else +{ +uint8_t x_289; +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_1); +x_289 = !lean_is_exclusive(x_285); +if (x_289 == 0) +{ +return x_285; +} +else +{ +lean_object* x_290; lean_object* x_291; lean_object* x_292; +x_290 = lean_ctor_get(x_285, 0); +x_291 = lean_ctor_get(x_285, 1); +lean_inc(x_291); +lean_inc(x_290); +lean_dec(x_285); +x_292 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_292, 0, x_290); +lean_ctor_set(x_292, 1, x_291); +return x_292; +} +} +} +} +else +{ +uint8_t x_293; +lean_dec(x_271); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_1); +x_293 = !lean_is_exclusive(x_279); +if (x_293 == 0) +{ return x_279; } else { -uint8_t x_280; +lean_object* x_294; lean_object* x_295; lean_object* x_296; +x_294 = lean_ctor_get(x_279, 0); +x_295 = lean_ctor_get(x_279, 1); +lean_inc(x_295); +lean_inc(x_294); +lean_dec(x_279); +x_296 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_296, 0, x_294); +lean_ctor_set(x_296, 1, x_295); +return x_296; +} +} +} +else +{ +lean_object* x_297; lean_object* x_298; lean_object* x_299; +lean_dec(x_271); +x_297 = lean_ctor_get(x_276, 1); +lean_inc(x_297); +lean_dec(x_276); +x_298 = lean_ctor_get(x_277, 0); +lean_inc(x_298); +lean_dec(x_277); +x_299 = l___private_Lean_Meta_WHNF_0__Lean_Meta_cache(x_265, x_1, x_298, x_3, x_4, x_5, x_6, x_297); +return x_299; +} +} +else +{ +uint8_t x_300; +lean_dec(x_271); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_1); -x_280 = !lean_is_exclusive(x_276); -if (x_280 == 0) +x_300 = !lean_is_exclusive(x_276); +if (x_300 == 0) { return x_276; } else { -lean_object* x_281; lean_object* x_282; lean_object* x_283; -x_281 = lean_ctor_get(x_276, 0); -x_282 = lean_ctor_get(x_276, 1); -lean_inc(x_282); -lean_inc(x_281); +lean_object* x_301; lean_object* x_302; lean_object* x_303; +x_301 = lean_ctor_get(x_276, 0); +x_302 = lean_ctor_get(x_276, 1); +lean_inc(x_302); +lean_inc(x_301); lean_dec(x_276); -x_283 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_283, 0, x_281); -lean_ctor_set(x_283, 1, x_282); -return x_283; -} +x_303 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_303, 0, x_301); +lean_ctor_set(x_303, 1, x_302); +return x_303; } } } else { -uint8_t x_284; -lean_dec(x_262); +lean_object* x_304; lean_object* x_305; lean_object* x_306; +lean_dec(x_271); +x_304 = lean_ctor_get(x_273, 1); +lean_inc(x_304); +lean_dec(x_273); +x_305 = lean_ctor_get(x_274, 0); +lean_inc(x_305); +lean_dec(x_274); +x_306 = l___private_Lean_Meta_WHNF_0__Lean_Meta_cache(x_265, x_1, x_305, x_3, x_4, x_5, x_6, x_304); +return x_306; +} +} +else +{ +uint8_t x_307; +lean_dec(x_271); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_1); -x_284 = !lean_is_exclusive(x_270); -if (x_284 == 0) +x_307 = !lean_is_exclusive(x_273); +if (x_307 == 0) +{ +return x_273; +} +else +{ +lean_object* x_308; lean_object* x_309; lean_object* x_310; +x_308 = lean_ctor_get(x_273, 0); +x_309 = lean_ctor_get(x_273, 1); +lean_inc(x_309); +lean_inc(x_308); +lean_dec(x_273); +x_310 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_310, 0, x_308); +lean_ctor_set(x_310, 1, x_309); +return x_310; +} +} +} +else +{ +uint8_t x_311; +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_1); +x_311 = !lean_is_exclusive(x_270); +if (x_311 == 0) { return x_270; } else { -lean_object* x_285; lean_object* x_286; lean_object* x_287; -x_285 = lean_ctor_get(x_270, 0); -x_286 = lean_ctor_get(x_270, 1); -lean_inc(x_286); -lean_inc(x_285); +lean_object* x_312; lean_object* x_313; lean_object* x_314; +x_312 = lean_ctor_get(x_270, 0); +x_313 = lean_ctor_get(x_270, 1); +lean_inc(x_313); +lean_inc(x_312); lean_dec(x_270); -x_287 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_287, 0, x_285); -lean_ctor_set(x_287, 1, x_286); -return x_287; +x_314 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_314, 0, x_312); +lean_ctor_set(x_314, 1, x_313); +return x_314; } } } else { -lean_object* x_288; lean_object* x_289; lean_object* x_290; -lean_dec(x_262); -x_288 = lean_ctor_get(x_267, 1); -lean_inc(x_288); +lean_object* x_315; lean_object* x_316; +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_1); +x_315 = lean_ctor_get(x_267, 0); +lean_inc(x_315); lean_dec(x_267); -x_289 = lean_ctor_get(x_268, 0); -lean_inc(x_289); -lean_dec(x_268); -x_290 = l___private_Lean_Meta_WHNF_0__Lean_Meta_cache(x_256, x_1, x_289, x_3, x_4, x_5, x_6, x_288); -return x_290; -} -} -else -{ -uint8_t x_291; -lean_dec(x_262); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_1); -x_291 = !lean_is_exclusive(x_267); -if (x_291 == 0) -{ -return x_267; -} -else -{ -lean_object* x_292; lean_object* x_293; lean_object* x_294; -x_292 = lean_ctor_get(x_267, 0); -x_293 = lean_ctor_get(x_267, 1); -lean_inc(x_293); -lean_inc(x_292); -lean_dec(x_267); -x_294 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_294, 0, x_292); -lean_ctor_set(x_294, 1, x_293); -return x_294; -} -} -} -else -{ -lean_object* x_295; lean_object* x_296; lean_object* x_297; -lean_dec(x_262); -x_295 = lean_ctor_get(x_264, 1); -lean_inc(x_295); -lean_dec(x_264); -x_296 = lean_ctor_get(x_265, 0); -lean_inc(x_296); -lean_dec(x_265); -x_297 = l___private_Lean_Meta_WHNF_0__Lean_Meta_cache(x_256, x_1, x_296, x_3, x_4, x_5, x_6, x_295); -return x_297; -} -} -else -{ -uint8_t x_298; -lean_dec(x_262); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_1); -x_298 = !lean_is_exclusive(x_264); -if (x_298 == 0) -{ -return x_264; -} -else -{ -lean_object* x_299; lean_object* x_300; lean_object* x_301; -x_299 = lean_ctor_get(x_264, 0); -x_300 = lean_ctor_get(x_264, 1); -lean_inc(x_300); -lean_inc(x_299); -lean_dec(x_264); -x_301 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_301, 0, x_299); -lean_ctor_set(x_301, 1, x_300); -return x_301; -} -} -} -else -{ -uint8_t x_302; -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_1); -x_302 = !lean_is_exclusive(x_261); -if (x_302 == 0) -{ -return x_261; -} -else -{ -lean_object* x_303; lean_object* x_304; lean_object* x_305; -x_303 = lean_ctor_get(x_261, 0); -x_304 = lean_ctor_get(x_261, 1); -lean_inc(x_304); -lean_inc(x_303); -lean_dec(x_261); -x_305 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_305, 0, x_303); -lean_ctor_set(x_305, 1, x_304); -return x_305; -} -} -} -else -{ -lean_object* x_306; lean_object* x_307; -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_1); -x_306 = lean_ctor_get(x_258, 0); -lean_inc(x_306); -lean_dec(x_258); -if (lean_is_scalar(x_255)) { - x_307 = lean_alloc_ctor(0, 2, 0); +if (lean_is_scalar(x_264)) { + x_316 = lean_alloc_ctor(0, 2, 0); } else { - x_307 = x_255; + x_316 = x_264; } -lean_ctor_set(x_307, 0, x_306); -lean_ctor_set(x_307, 1, x_259); -return x_307; +lean_ctor_set(x_316, 0, x_315); +lean_ctor_set(x_316, 1, x_268); +return x_316; } } } } else { -uint8_t x_354; +uint8_t x_363; lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_1); -x_354 = !lean_is_exclusive(x_253); -if (x_354 == 0) +x_363 = !lean_is_exclusive(x_262); +if (x_363 == 0) { -return x_253; +return x_262; } else { -lean_object* x_355; lean_object* x_356; lean_object* x_357; -x_355 = lean_ctor_get(x_253, 0); -x_356 = lean_ctor_get(x_253, 1); -lean_inc(x_356); -lean_inc(x_355); -lean_dec(x_253); -x_357 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_357, 0, x_355); -lean_ctor_set(x_357, 1, x_356); -return x_357; +lean_object* x_364; lean_object* x_365; lean_object* x_366; +x_364 = lean_ctor_get(x_262, 0); +x_365 = lean_ctor_get(x_262, 1); +lean_inc(x_365); +lean_inc(x_364); +lean_dec(x_262); +x_366 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_366, 0, x_364); +lean_ctor_set(x_366, 1, x_365); +return x_366; } } } case 10: { -lean_object* x_358; -x_358 = lean_ctor_get(x_1, 1); -lean_inc(x_358); +lean_object* x_367; +x_367 = lean_ctor_get(x_1, 1); +lean_inc(x_367); lean_dec(x_1); -x_1 = x_358; +x_1 = x_367; goto _start; } case 11: { -lean_object* x_360; lean_object* x_361; -x_360 = l_Lean_Meta_whnfEasyCases___at_Lean_Meta_whnfCore_go___spec__3___closed__1; -x_361 = l_Lean_Core_checkSystem(x_360, x_5, x_6, x_7); -if (lean_obj_tag(x_361) == 0) +lean_object* x_369; lean_object* x_370; +x_369 = l_Lean_Meta_whnfEasyCases___at_Lean_Meta_whnfCore_go___spec__3___closed__1; +x_370 = l_Lean_Core_checkSystem(x_369, x_5, x_6, x_7); +if (lean_obj_tag(x_370) == 0) { -lean_object* x_362; lean_object* x_363; uint8_t x_364; lean_object* x_365; uint8_t x_446; -x_362 = lean_ctor_get(x_361, 1); -lean_inc(x_362); -if (lean_is_exclusive(x_361)) { - lean_ctor_release(x_361, 0); - lean_ctor_release(x_361, 1); - x_363 = x_361; +lean_object* x_371; lean_object* x_372; uint8_t x_373; lean_object* x_374; uint8_t x_455; +x_371 = lean_ctor_get(x_370, 1); +lean_inc(x_371); +if (lean_is_exclusive(x_370)) { + lean_ctor_release(x_370, 0); + lean_ctor_release(x_370, 1); + x_372 = x_370; } else { - lean_dec_ref(x_361); - x_363 = lean_box(0); + lean_dec_ref(x_370); + x_372 = lean_box(0); } -x_446 = l_Lean_Expr_hasFVar(x_1); -if (x_446 == 0) +x_455 = l_Lean_Expr_hasFVar(x_1); +if (x_455 == 0) { -uint8_t x_447; -x_447 = l_Lean_Expr_hasExprMVar(x_1); -if (x_447 == 0) +uint8_t x_456; +x_456 = l_Lean_Expr_hasExprMVar(x_1); +if (x_456 == 0) { -lean_object* x_448; -x_448 = lean_ctor_get(x_3, 5); -lean_inc(x_448); -if (lean_obj_tag(x_448) == 0) +lean_object* x_457; +x_457 = lean_ctor_get(x_3, 5); +lean_inc(x_457); +if (lean_obj_tag(x_457) == 0) { -lean_object* x_449; lean_object* x_450; uint8_t x_451; lean_object* x_452; -x_449 = l_Lean_Meta_getConfig(x_3, x_4, x_5, x_6, x_362); -x_450 = lean_ctor_get(x_449, 0); -lean_inc(x_450); -x_451 = lean_ctor_get_uint8(x_450, 9); -lean_dec(x_450); -x_452 = lean_box(x_451); -switch (lean_obj_tag(x_452)) { +lean_object* x_458; lean_object* x_459; uint8_t x_460; lean_object* x_461; +x_458 = l_Lean_Meta_getConfig(x_3, x_4, x_5, x_6, x_371); +x_459 = lean_ctor_get(x_458, 0); +lean_inc(x_459); +x_460 = lean_ctor_get_uint8(x_459, 9); +lean_dec(x_459); +x_461 = lean_box(x_460); +switch (lean_obj_tag(x_461)) { case 2: { -lean_object* x_453; uint8_t x_454; -x_453 = lean_ctor_get(x_449, 1); -lean_inc(x_453); -lean_dec(x_449); -x_454 = 0; -x_364 = x_454; -x_365 = x_453; -goto block_445; +lean_object* x_462; uint8_t x_463; +x_462 = lean_ctor_get(x_458, 1); +lean_inc(x_462); +lean_dec(x_458); +x_463 = 0; +x_373 = x_463; +x_374 = x_462; +goto block_454; } case 3: { -lean_object* x_455; uint8_t x_456; -x_455 = lean_ctor_get(x_449, 1); -lean_inc(x_455); -lean_dec(x_449); -x_456 = 0; -x_364 = x_456; -x_365 = x_455; -goto block_445; +lean_object* x_464; uint8_t x_465; +x_464 = lean_ctor_get(x_458, 1); +lean_inc(x_464); +lean_dec(x_458); +x_465 = 0; +x_373 = x_465; +x_374 = x_464; +goto block_454; } default: { -lean_object* x_457; uint8_t x_458; -lean_dec(x_452); -x_457 = lean_ctor_get(x_449, 1); -lean_inc(x_457); -lean_dec(x_449); -x_458 = 1; -x_364 = x_458; -x_365 = x_457; -goto block_445; +lean_object* x_466; uint8_t x_467; +lean_dec(x_461); +x_466 = lean_ctor_get(x_458, 1); +lean_inc(x_466); +lean_dec(x_458); +x_467 = 1; +x_373 = x_467; +x_374 = x_466; +goto block_454; } } } else { -uint8_t x_459; -lean_dec(x_448); -x_459 = 0; -x_364 = x_459; -x_365 = x_362; -goto block_445; +uint8_t x_468; +lean_dec(x_457); +x_468 = 0; +x_373 = x_468; +x_374 = x_371; +goto block_454; } } else { -uint8_t x_460; -x_460 = 0; -x_364 = x_460; -x_365 = x_362; -goto block_445; +uint8_t x_469; +x_469 = 0; +x_373 = x_469; +x_374 = x_371; +goto block_454; } } else { -uint8_t x_461; -x_461 = 0; -x_364 = x_461; -x_365 = x_362; -goto block_445; +uint8_t x_470; +x_470 = 0; +x_373 = x_470; +x_374 = x_371; +goto block_454; } -block_445: +block_454: { -lean_object* x_366; lean_object* x_367; -if (x_364 == 0) +lean_object* x_375; lean_object* x_376; +if (x_373 == 0) { -lean_object* x_417; -x_417 = lean_box(0); -x_366 = x_417; -x_367 = x_365; -goto block_416; +lean_object* x_426; +x_426 = lean_box(0); +x_375 = x_426; +x_376 = x_374; +goto block_425; } else { -lean_object* x_418; lean_object* x_419; uint8_t x_420; lean_object* x_421; -x_418 = l_Lean_Meta_getConfig(x_3, x_4, x_5, x_6, x_365); -x_419 = lean_ctor_get(x_418, 0); -lean_inc(x_419); -x_420 = lean_ctor_get_uint8(x_419, 9); -lean_dec(x_419); -x_421 = lean_box(x_420); -switch (lean_obj_tag(x_421)) { +lean_object* x_427; lean_object* x_428; uint8_t x_429; lean_object* x_430; +x_427 = l_Lean_Meta_getConfig(x_3, x_4, x_5, x_6, x_374); +x_428 = lean_ctor_get(x_427, 0); +lean_inc(x_428); +x_429 = lean_ctor_get_uint8(x_428, 9); +lean_dec(x_428); +x_430 = lean_box(x_429); +switch (lean_obj_tag(x_430)) { case 0: { -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; -x_422 = lean_ctor_get(x_418, 1); -lean_inc(x_422); -lean_dec(x_418); -x_423 = lean_st_ref_get(x_4, x_422); -x_424 = lean_ctor_get(x_423, 0); -lean_inc(x_424); -x_425 = lean_ctor_get(x_423, 1); -lean_inc(x_425); -lean_dec(x_423); -x_426 = lean_ctor_get(x_424, 1); -lean_inc(x_426); -lean_dec(x_424); -x_427 = lean_ctor_get(x_426, 4); -lean_inc(x_427); -lean_dec(x_426); +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; +x_431 = lean_ctor_get(x_427, 1); +lean_inc(x_431); +lean_dec(x_427); +x_432 = lean_st_ref_get(x_4, x_431); +x_433 = lean_ctor_get(x_432, 0); +lean_inc(x_433); +x_434 = lean_ctor_get(x_432, 1); +lean_inc(x_434); +lean_dec(x_432); +x_435 = lean_ctor_get(x_433, 1); +lean_inc(x_435); +lean_dec(x_433); +x_436 = lean_ctor_get(x_435, 4); +lean_inc(x_436); +lean_dec(x_435); lean_inc(x_1); -x_428 = l_Lean_PersistentHashMap_find_x3f___at___private_Lean_Meta_InferType_0__Lean_Meta_checkInferTypeCache___spec__1(x_427, x_1); -x_366 = x_428; -x_367 = x_425; -goto block_416; +x_437 = l_Lean_PersistentHashMap_find_x3f___at___private_Lean_Meta_InferType_0__Lean_Meta_checkInferTypeCache___spec__1(x_436, x_1); +x_375 = x_437; +x_376 = x_434; +goto block_425; } case 1: { -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; -x_429 = lean_ctor_get(x_418, 1); -lean_inc(x_429); -lean_dec(x_418); -x_430 = lean_st_ref_get(x_4, x_429); -x_431 = lean_ctor_get(x_430, 0); -lean_inc(x_431); -x_432 = lean_ctor_get(x_430, 1); -lean_inc(x_432); -lean_dec(x_430); -x_433 = lean_ctor_get(x_431, 1); -lean_inc(x_433); -lean_dec(x_431); -x_434 = lean_ctor_get(x_433, 3); -lean_inc(x_434); -lean_dec(x_433); +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; +x_438 = lean_ctor_get(x_427, 1); +lean_inc(x_438); +lean_dec(x_427); +x_439 = lean_st_ref_get(x_4, x_438); +x_440 = lean_ctor_get(x_439, 0); +lean_inc(x_440); +x_441 = lean_ctor_get(x_439, 1); +lean_inc(x_441); +lean_dec(x_439); +x_442 = lean_ctor_get(x_440, 1); +lean_inc(x_442); +lean_dec(x_440); +x_443 = lean_ctor_get(x_442, 3); +lean_inc(x_443); +lean_dec(x_442); lean_inc(x_1); -x_435 = l_Lean_PersistentHashMap_find_x3f___at___private_Lean_Meta_InferType_0__Lean_Meta_checkInferTypeCache___spec__1(x_434, x_1); -x_366 = x_435; -x_367 = x_432; -goto block_416; +x_444 = l_Lean_PersistentHashMap_find_x3f___at___private_Lean_Meta_InferType_0__Lean_Meta_checkInferTypeCache___spec__1(x_443, x_1); +x_375 = x_444; +x_376 = x_441; +goto block_425; } default: { -lean_object* x_436; lean_object* x_437; lean_object* x_438; -lean_dec(x_421); -x_436 = lean_ctor_get(x_418, 1); -lean_inc(x_436); -lean_dec(x_418); -x_437 = l___private_Lean_Meta_WHNF_0__Lean_Meta_cached_x3f___closed__3; +lean_object* x_445; lean_object* x_446; lean_object* x_447; +lean_dec(x_430); +x_445 = lean_ctor_get(x_427, 1); +lean_inc(x_445); +lean_dec(x_427); +x_446 = l___private_Lean_Meta_WHNF_0__Lean_Meta_cached_x3f___closed__3; lean_inc(x_6); lean_inc(x_5); lean_inc(x_4); lean_inc(x_3); -x_438 = l_panic___at___private_Lean_Meta_WHNF_0__Lean_Meta_cached_x3f___spec__1(x_437, x_3, x_4, x_5, x_6, x_436); -if (lean_obj_tag(x_438) == 0) +x_447 = l_panic___at___private_Lean_Meta_WHNF_0__Lean_Meta_cached_x3f___spec__1(x_446, x_3, x_4, x_5, x_6, x_445); +if (lean_obj_tag(x_447) == 0) { -lean_object* x_439; lean_object* x_440; -x_439 = lean_ctor_get(x_438, 0); -lean_inc(x_439); -x_440 = lean_ctor_get(x_438, 1); -lean_inc(x_440); -lean_dec(x_438); -x_366 = x_439; -x_367 = x_440; -goto block_416; +lean_object* x_448; lean_object* x_449; +x_448 = lean_ctor_get(x_447, 0); +lean_inc(x_448); +x_449 = lean_ctor_get(x_447, 1); +lean_inc(x_449); +lean_dec(x_447); +x_375 = x_448; +x_376 = x_449; +goto block_425; } else { -uint8_t x_441; -lean_dec(x_363); +uint8_t x_450; +lean_dec(x_372); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_1); -x_441 = !lean_is_exclusive(x_438); -if (x_441 == 0) +x_450 = !lean_is_exclusive(x_447); +if (x_450 == 0) { -return x_438; +return x_447; } else { -lean_object* x_442; lean_object* x_443; lean_object* x_444; -x_442 = lean_ctor_get(x_438, 0); -x_443 = lean_ctor_get(x_438, 1); -lean_inc(x_443); -lean_inc(x_442); -lean_dec(x_438); -x_444 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_444, 0, x_442); -lean_ctor_set(x_444, 1, x_443); -return x_444; +lean_object* x_451; lean_object* x_452; lean_object* x_453; +x_451 = lean_ctor_get(x_447, 0); +x_452 = lean_ctor_get(x_447, 1); +lean_inc(x_452); +lean_inc(x_451); +lean_dec(x_447); +x_453 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_453, 0, x_451); +lean_ctor_set(x_453, 1, x_452); +return x_453; } } } } } -block_416: +block_425: { -if (lean_obj_tag(x_366) == 0) +if (lean_obj_tag(x_375) == 0) { -lean_object* x_368; lean_object* x_369; -lean_dec(x_363); -x_368 = l_Lean_Meta_whnfHeadPred___lambda__1___closed__1; +lean_object* x_377; lean_object* x_378; +lean_dec(x_372); +x_377 = l_Lean_Meta_whnfHeadPred___lambda__1___closed__1; lean_inc(x_6); lean_inc(x_5); lean_inc(x_4); lean_inc(x_3); lean_inc(x_1); -x_369 = l_Lean_Meta_whnfEasyCases___at_Lean_Meta_whnfCore_go___spec__3(x_368, x_1, x_368, x_3, x_4, x_5, x_6, x_367); -if (lean_obj_tag(x_369) == 0) -{ -lean_object* x_370; lean_object* x_371; lean_object* x_372; -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_6); -lean_inc(x_5); -lean_inc(x_4); -lean_inc(x_3); -lean_inc(x_370); -x_372 = l_Lean_Meta_reduceNat_x3f(x_370, x_3, x_4, x_5, x_6, x_371); -if (lean_obj_tag(x_372) == 0) -{ -lean_object* x_373; -x_373 = lean_ctor_get(x_372, 0); -lean_inc(x_373); -if (lean_obj_tag(x_373) == 0) -{ -lean_object* x_374; lean_object* x_375; -x_374 = lean_ctor_get(x_372, 1); -lean_inc(x_374); -lean_dec(x_372); -lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_4); -lean_inc(x_3); -lean_inc(x_370); -x_375 = l_Lean_Meta_reduceNative_x3f(x_370, x_3, x_4, x_5, x_6, x_374); -if (lean_obj_tag(x_375) == 0) -{ -lean_object* x_376; -x_376 = lean_ctor_get(x_375, 0); -lean_inc(x_376); -if (lean_obj_tag(x_376) == 0) -{ -lean_object* x_377; lean_object* x_378; -x_377 = lean_ctor_get(x_375, 1); -lean_inc(x_377); -lean_dec(x_375); -lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_4); -lean_inc(x_3); -lean_inc(x_370); -x_378 = l_Lean_Meta_unfoldDefinition_x3f(x_370, x_3, x_4, x_5, x_6, x_377); +x_378 = l_Lean_Meta_whnfEasyCases___at_Lean_Meta_whnfCore_go___spec__3(x_377, x_1, x_377, x_3, x_4, x_5, x_6, x_376); if (lean_obj_tag(x_378) == 0) { -lean_object* x_379; +lean_object* x_379; lean_object* x_380; lean_object* x_381; x_379 = lean_ctor_get(x_378, 0); lean_inc(x_379); -if (lean_obj_tag(x_379) == 0) -{ -lean_object* x_380; lean_object* x_381; x_380 = lean_ctor_get(x_378, 1); lean_inc(x_380); lean_dec(x_378); -x_381 = l___private_Lean_Meta_WHNF_0__Lean_Meta_cache(x_364, x_1, x_370, x_3, x_4, x_5, x_6, x_380); -return x_381; -} -else -{ -lean_object* x_382; lean_object* x_383; lean_object* x_384; -lean_dec(x_370); -x_382 = lean_ctor_get(x_378, 1); -lean_inc(x_382); -lean_dec(x_378); -x_383 = lean_ctor_get(x_379, 0); -lean_inc(x_383); -lean_dec(x_379); lean_inc(x_6); lean_inc(x_5); lean_inc(x_4); lean_inc(x_3); -x_384 = lean_whnf(x_383, x_3, x_4, x_5, x_6, x_382); +lean_inc(x_379); +x_381 = l_Lean_Meta_reduceNat_x3f(x_379, x_3, x_4, x_5, x_6, x_380); +if (lean_obj_tag(x_381) == 0) +{ +lean_object* x_382; +x_382 = lean_ctor_get(x_381, 0); +lean_inc(x_382); +if (lean_obj_tag(x_382) == 0) +{ +lean_object* x_383; lean_object* x_384; +x_383 = lean_ctor_get(x_381, 1); +lean_inc(x_383); +lean_dec(x_381); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +lean_inc(x_379); +x_384 = l_Lean_Meta_reduceNative_x3f(x_379, x_3, x_4, x_5, x_6, x_383); if (lean_obj_tag(x_384) == 0) { -lean_object* x_385; lean_object* x_386; lean_object* x_387; +lean_object* x_385; x_385 = lean_ctor_get(x_384, 0); lean_inc(x_385); +if (lean_obj_tag(x_385) == 0) +{ +lean_object* x_386; lean_object* x_387; x_386 = lean_ctor_get(x_384, 1); lean_inc(x_386); lean_dec(x_384); -x_387 = l___private_Lean_Meta_WHNF_0__Lean_Meta_cache(x_364, x_1, x_385, x_3, x_4, x_5, x_6, x_386); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +lean_inc(x_379); +x_387 = l_Lean_Meta_unfoldDefinition_x3f(x_379, x_3, x_4, x_5, x_6, x_386); +if (lean_obj_tag(x_387) == 0) +{ +lean_object* x_388; +x_388 = lean_ctor_get(x_387, 0); +lean_inc(x_388); +if (lean_obj_tag(x_388) == 0) +{ +lean_object* x_389; lean_object* x_390; +x_389 = lean_ctor_get(x_387, 1); +lean_inc(x_389); +lean_dec(x_387); +x_390 = l___private_Lean_Meta_WHNF_0__Lean_Meta_cache(x_373, x_1, x_379, x_3, x_4, x_5, x_6, x_389); +return x_390; +} +else +{ +lean_object* x_391; lean_object* x_392; lean_object* x_393; +lean_dec(x_379); +x_391 = lean_ctor_get(x_387, 1); +lean_inc(x_391); +lean_dec(x_387); +x_392 = lean_ctor_get(x_388, 0); +lean_inc(x_392); +lean_dec(x_388); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +x_393 = lean_whnf(x_392, x_3, x_4, x_5, x_6, x_391); +if (lean_obj_tag(x_393) == 0) +{ +lean_object* x_394; lean_object* x_395; lean_object* x_396; +x_394 = lean_ctor_get(x_393, 0); +lean_inc(x_394); +x_395 = lean_ctor_get(x_393, 1); +lean_inc(x_395); +lean_dec(x_393); +x_396 = l___private_Lean_Meta_WHNF_0__Lean_Meta_cache(x_373, x_1, x_394, x_3, x_4, x_5, x_6, x_395); +return x_396; +} +else +{ +uint8_t x_397; +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_1); +x_397 = !lean_is_exclusive(x_393); +if (x_397 == 0) +{ +return x_393; +} +else +{ +lean_object* x_398; lean_object* x_399; lean_object* x_400; +x_398 = lean_ctor_get(x_393, 0); +x_399 = lean_ctor_get(x_393, 1); +lean_inc(x_399); +lean_inc(x_398); +lean_dec(x_393); +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; +} +} +} +} +else +{ +uint8_t x_401; +lean_dec(x_379); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_1); +x_401 = !lean_is_exclusive(x_387); +if (x_401 == 0) +{ return x_387; } else { -uint8_t x_388; +lean_object* x_402; lean_object* x_403; lean_object* x_404; +x_402 = lean_ctor_get(x_387, 0); +x_403 = lean_ctor_get(x_387, 1); +lean_inc(x_403); +lean_inc(x_402); +lean_dec(x_387); +x_404 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_404, 0, x_402); +lean_ctor_set(x_404, 1, x_403); +return x_404; +} +} +} +else +{ +lean_object* x_405; lean_object* x_406; lean_object* x_407; +lean_dec(x_379); +x_405 = lean_ctor_get(x_384, 1); +lean_inc(x_405); +lean_dec(x_384); +x_406 = lean_ctor_get(x_385, 0); +lean_inc(x_406); +lean_dec(x_385); +x_407 = l___private_Lean_Meta_WHNF_0__Lean_Meta_cache(x_373, x_1, x_406, x_3, x_4, x_5, x_6, x_405); +return x_407; +} +} +else +{ +uint8_t x_408; +lean_dec(x_379); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_1); -x_388 = !lean_is_exclusive(x_384); -if (x_388 == 0) +x_408 = !lean_is_exclusive(x_384); +if (x_408 == 0) { return x_384; } else { -lean_object* x_389; lean_object* x_390; lean_object* x_391; -x_389 = lean_ctor_get(x_384, 0); -x_390 = lean_ctor_get(x_384, 1); -lean_inc(x_390); -lean_inc(x_389); +lean_object* x_409; lean_object* x_410; lean_object* x_411; +x_409 = lean_ctor_get(x_384, 0); +x_410 = lean_ctor_get(x_384, 1); +lean_inc(x_410); +lean_inc(x_409); lean_dec(x_384); -x_391 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_391, 0, x_389); -lean_ctor_set(x_391, 1, x_390); -return x_391; -} +x_411 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_411, 0, x_409); +lean_ctor_set(x_411, 1, x_410); +return x_411; } } } else { -uint8_t x_392; -lean_dec(x_370); +lean_object* x_412; lean_object* x_413; lean_object* x_414; +lean_dec(x_379); +x_412 = lean_ctor_get(x_381, 1); +lean_inc(x_412); +lean_dec(x_381); +x_413 = lean_ctor_get(x_382, 0); +lean_inc(x_413); +lean_dec(x_382); +x_414 = l___private_Lean_Meta_WHNF_0__Lean_Meta_cache(x_373, x_1, x_413, x_3, x_4, x_5, x_6, x_412); +return x_414; +} +} +else +{ +uint8_t x_415; +lean_dec(x_379); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_1); -x_392 = !lean_is_exclusive(x_378); -if (x_392 == 0) +x_415 = !lean_is_exclusive(x_381); +if (x_415 == 0) +{ +return x_381; +} +else +{ +lean_object* x_416; lean_object* x_417; lean_object* x_418; +x_416 = lean_ctor_get(x_381, 0); +x_417 = lean_ctor_get(x_381, 1); +lean_inc(x_417); +lean_inc(x_416); +lean_dec(x_381); +x_418 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_418, 0, x_416); +lean_ctor_set(x_418, 1, x_417); +return x_418; +} +} +} +else +{ +uint8_t x_419; +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_1); +x_419 = !lean_is_exclusive(x_378); +if (x_419 == 0) { return x_378; } else { -lean_object* x_393; lean_object* x_394; lean_object* x_395; -x_393 = lean_ctor_get(x_378, 0); -x_394 = lean_ctor_get(x_378, 1); -lean_inc(x_394); -lean_inc(x_393); +lean_object* x_420; lean_object* x_421; lean_object* x_422; +x_420 = lean_ctor_get(x_378, 0); +x_421 = lean_ctor_get(x_378, 1); +lean_inc(x_421); +lean_inc(x_420); lean_dec(x_378); -x_395 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_395, 0, x_393); -lean_ctor_set(x_395, 1, x_394); -return x_395; +x_422 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_422, 0, x_420); +lean_ctor_set(x_422, 1, x_421); +return x_422; } } } else { -lean_object* x_396; lean_object* x_397; lean_object* x_398; -lean_dec(x_370); -x_396 = lean_ctor_get(x_375, 1); -lean_inc(x_396); +lean_object* x_423; lean_object* x_424; +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_1); +x_423 = lean_ctor_get(x_375, 0); +lean_inc(x_423); lean_dec(x_375); -x_397 = lean_ctor_get(x_376, 0); -lean_inc(x_397); -lean_dec(x_376); -x_398 = l___private_Lean_Meta_WHNF_0__Lean_Meta_cache(x_364, x_1, x_397, x_3, x_4, x_5, x_6, x_396); -return x_398; -} -} -else -{ -uint8_t x_399; -lean_dec(x_370); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_1); -x_399 = !lean_is_exclusive(x_375); -if (x_399 == 0) -{ -return x_375; -} -else -{ -lean_object* x_400; lean_object* x_401; lean_object* x_402; -x_400 = lean_ctor_get(x_375, 0); -x_401 = lean_ctor_get(x_375, 1); -lean_inc(x_401); -lean_inc(x_400); -lean_dec(x_375); -x_402 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_402, 0, x_400); -lean_ctor_set(x_402, 1, x_401); -return x_402; -} -} -} -else -{ -lean_object* x_403; lean_object* x_404; lean_object* x_405; -lean_dec(x_370); -x_403 = lean_ctor_get(x_372, 1); -lean_inc(x_403); -lean_dec(x_372); -x_404 = lean_ctor_get(x_373, 0); -lean_inc(x_404); -lean_dec(x_373); -x_405 = l___private_Lean_Meta_WHNF_0__Lean_Meta_cache(x_364, x_1, x_404, x_3, x_4, x_5, x_6, x_403); -return x_405; -} -} -else -{ -uint8_t x_406; -lean_dec(x_370); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_1); -x_406 = !lean_is_exclusive(x_372); -if (x_406 == 0) -{ -return x_372; -} -else -{ -lean_object* x_407; lean_object* x_408; lean_object* x_409; -x_407 = lean_ctor_get(x_372, 0); -x_408 = lean_ctor_get(x_372, 1); -lean_inc(x_408); -lean_inc(x_407); -lean_dec(x_372); -x_409 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_409, 0, x_407); -lean_ctor_set(x_409, 1, x_408); -return x_409; -} -} -} -else -{ -uint8_t x_410; -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_1); -x_410 = !lean_is_exclusive(x_369); -if (x_410 == 0) -{ -return x_369; -} -else -{ -lean_object* x_411; lean_object* x_412; lean_object* x_413; -x_411 = lean_ctor_get(x_369, 0); -x_412 = lean_ctor_get(x_369, 1); -lean_inc(x_412); -lean_inc(x_411); -lean_dec(x_369); -x_413 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_413, 0, x_411); -lean_ctor_set(x_413, 1, x_412); -return x_413; -} -} -} -else -{ -lean_object* x_414; lean_object* x_415; -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_1); -x_414 = lean_ctor_get(x_366, 0); -lean_inc(x_414); -lean_dec(x_366); -if (lean_is_scalar(x_363)) { - x_415 = lean_alloc_ctor(0, 2, 0); +if (lean_is_scalar(x_372)) { + x_424 = lean_alloc_ctor(0, 2, 0); } else { - x_415 = x_363; + x_424 = x_372; } -lean_ctor_set(x_415, 0, x_414); -lean_ctor_set(x_415, 1, x_367); -return x_415; +lean_ctor_set(x_424, 0, x_423); +lean_ctor_set(x_424, 1, x_376); +return x_424; } } } } else { -uint8_t x_462; +uint8_t x_471; lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_1); -x_462 = !lean_is_exclusive(x_361); -if (x_462 == 0) +x_471 = !lean_is_exclusive(x_370); +if (x_471 == 0) { -return x_361; +return x_370; } else { -lean_object* x_463; lean_object* x_464; lean_object* x_465; -x_463 = lean_ctor_get(x_361, 0); -x_464 = lean_ctor_get(x_361, 1); -lean_inc(x_464); -lean_inc(x_463); -lean_dec(x_361); -x_465 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_465, 0, x_463); -lean_ctor_set(x_465, 1, x_464); -return x_465; +lean_object* x_472; lean_object* x_473; lean_object* x_474; +x_472 = lean_ctor_get(x_370, 0); +x_473 = lean_ctor_get(x_370, 1); +lean_inc(x_473); +lean_inc(x_472); +lean_dec(x_370); +x_474 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_474, 0, x_472); +lean_ctor_set(x_474, 1, x_473); +return x_474; } } } default: { -lean_object* x_466; +lean_object* x_475; lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); -x_466 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_466, 0, x_1); -lean_ctor_set(x_466, 1, x_7); -return x_466; +x_475 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_475, 0, x_1); +lean_ctor_set(x_475, 1, x_7); +return x_475; } } } @@ -36551,7 +36785,7 @@ return x_38; } } } -static lean_object* _init_l_Lean_Meta_initFn____x40_Lean_Meta_WHNF___hyg_9901____closed__1() { +static lean_object* _init_l_Lean_Meta_initFn____x40_Lean_Meta_WHNF___hyg_9913____closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -36561,17 +36795,17 @@ x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Meta_initFn____x40_Lean_Meta_WHNF___hyg_9901____closed__2() { +static lean_object* _init_l_Lean_Meta_initFn____x40_Lean_Meta_WHNF___hyg_9913____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Meta_initFn____x40_Lean_Meta_WHNF___hyg_9901____closed__1; +x_1 = l_Lean_Meta_initFn____x40_Lean_Meta_WHNF___hyg_9913____closed__1; x_2 = l_Lean_Meta_initFn____x40_Lean_Meta_WHNF___hyg_33____closed__7; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Meta_initFn____x40_Lean_Meta_WHNF___hyg_9901____closed__3() { +static lean_object* _init_l_Lean_Meta_initFn____x40_Lean_Meta_WHNF___hyg_9913____closed__3() { _start: { lean_object* x_1; @@ -36579,17 +36813,17 @@ x_1 = lean_mk_string_from_bytes("initFn", 6); return x_1; } } -static lean_object* _init_l_Lean_Meta_initFn____x40_Lean_Meta_WHNF___hyg_9901____closed__4() { +static lean_object* _init_l_Lean_Meta_initFn____x40_Lean_Meta_WHNF___hyg_9913____closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Meta_initFn____x40_Lean_Meta_WHNF___hyg_9901____closed__2; -x_2 = l_Lean_Meta_initFn____x40_Lean_Meta_WHNF___hyg_9901____closed__3; +x_1 = l_Lean_Meta_initFn____x40_Lean_Meta_WHNF___hyg_9913____closed__2; +x_2 = l_Lean_Meta_initFn____x40_Lean_Meta_WHNF___hyg_9913____closed__3; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Meta_initFn____x40_Lean_Meta_WHNF___hyg_9901____closed__5() { +static lean_object* _init_l_Lean_Meta_initFn____x40_Lean_Meta_WHNF___hyg_9913____closed__5() { _start: { lean_object* x_1; @@ -36597,37 +36831,37 @@ x_1 = lean_mk_string_from_bytes("_@", 2); return x_1; } } -static lean_object* _init_l_Lean_Meta_initFn____x40_Lean_Meta_WHNF___hyg_9901____closed__6() { +static lean_object* _init_l_Lean_Meta_initFn____x40_Lean_Meta_WHNF___hyg_9913____closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Meta_initFn____x40_Lean_Meta_WHNF___hyg_9901____closed__4; -x_2 = l_Lean_Meta_initFn____x40_Lean_Meta_WHNF___hyg_9901____closed__5; +x_1 = l_Lean_Meta_initFn____x40_Lean_Meta_WHNF___hyg_9913____closed__4; +x_2 = l_Lean_Meta_initFn____x40_Lean_Meta_WHNF___hyg_9913____closed__5; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Meta_initFn____x40_Lean_Meta_WHNF___hyg_9901____closed__7() { +static lean_object* _init_l_Lean_Meta_initFn____x40_Lean_Meta_WHNF___hyg_9913____closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Meta_initFn____x40_Lean_Meta_WHNF___hyg_9901____closed__6; +x_1 = l_Lean_Meta_initFn____x40_Lean_Meta_WHNF___hyg_9913____closed__6; x_2 = l_Lean_Meta_initFn____x40_Lean_Meta_WHNF___hyg_33____closed__6; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Meta_initFn____x40_Lean_Meta_WHNF___hyg_9901____closed__8() { +static lean_object* _init_l_Lean_Meta_initFn____x40_Lean_Meta_WHNF___hyg_9913____closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Meta_initFn____x40_Lean_Meta_WHNF___hyg_9901____closed__7; +x_1 = l_Lean_Meta_initFn____x40_Lean_Meta_WHNF___hyg_9913____closed__7; x_2 = l_Lean_Meta_initFn____x40_Lean_Meta_WHNF___hyg_33____closed__7; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Meta_initFn____x40_Lean_Meta_WHNF___hyg_9901____closed__9() { +static lean_object* _init_l_Lean_Meta_initFn____x40_Lean_Meta_WHNF___hyg_9913____closed__9() { _start: { lean_object* x_1; @@ -36635,17 +36869,17 @@ x_1 = lean_mk_string_from_bytes("WHNF", 4); return x_1; } } -static lean_object* _init_l_Lean_Meta_initFn____x40_Lean_Meta_WHNF___hyg_9901____closed__10() { +static lean_object* _init_l_Lean_Meta_initFn____x40_Lean_Meta_WHNF___hyg_9913____closed__10() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Meta_initFn____x40_Lean_Meta_WHNF___hyg_9901____closed__8; -x_2 = l_Lean_Meta_initFn____x40_Lean_Meta_WHNF___hyg_9901____closed__9; +x_1 = l_Lean_Meta_initFn____x40_Lean_Meta_WHNF___hyg_9913____closed__8; +x_2 = l_Lean_Meta_initFn____x40_Lean_Meta_WHNF___hyg_9913____closed__9; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Meta_initFn____x40_Lean_Meta_WHNF___hyg_9901____closed__11() { +static lean_object* _init_l_Lean_Meta_initFn____x40_Lean_Meta_WHNF___hyg_9913____closed__11() { _start: { lean_object* x_1; @@ -36653,33 +36887,33 @@ x_1 = lean_mk_string_from_bytes("_hyg", 4); return x_1; } } -static lean_object* _init_l_Lean_Meta_initFn____x40_Lean_Meta_WHNF___hyg_9901____closed__12() { +static lean_object* _init_l_Lean_Meta_initFn____x40_Lean_Meta_WHNF___hyg_9913____closed__12() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Meta_initFn____x40_Lean_Meta_WHNF___hyg_9901____closed__10; -x_2 = l_Lean_Meta_initFn____x40_Lean_Meta_WHNF___hyg_9901____closed__11; +x_1 = l_Lean_Meta_initFn____x40_Lean_Meta_WHNF___hyg_9913____closed__10; +x_2 = l_Lean_Meta_initFn____x40_Lean_Meta_WHNF___hyg_9913____closed__11; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Meta_initFn____x40_Lean_Meta_WHNF___hyg_9901____closed__13() { +static lean_object* _init_l_Lean_Meta_initFn____x40_Lean_Meta_WHNF___hyg_9913____closed__13() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Meta_initFn____x40_Lean_Meta_WHNF___hyg_9901____closed__12; -x_2 = lean_unsigned_to_nat(9901u); +x_1 = l_Lean_Meta_initFn____x40_Lean_Meta_WHNF___hyg_9913____closed__12; +x_2 = lean_unsigned_to_nat(9913u); x_3 = l_Lean_Name_num___override(x_1, x_2); return x_3; } } -LEAN_EXPORT lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_WHNF___hyg_9901_(lean_object* x_1) { +LEAN_EXPORT lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_WHNF___hyg_9913_(lean_object* x_1) { _start: { lean_object* x_2; uint8_t x_3; lean_object* x_4; lean_object* x_5; x_2 = l_Lean_Meta_whnfEasyCases___at_Lean_Meta_whnfCore_go___spec__3___closed__2; x_3 = 0; -x_4 = l_Lean_Meta_initFn____x40_Lean_Meta_WHNF___hyg_9901____closed__13; +x_4 = l_Lean_Meta_initFn____x40_Lean_Meta_WHNF___hyg_9913____closed__13; x_5 = l_Lean_registerTraceClass(x_2, x_3, x_4, x_1); if (lean_obj_tag(x_5) == 0) { @@ -36941,6 +37175,10 @@ l_Lean_Meta_canUnfoldAtMatcher___closed__38 = _init_l_Lean_Meta_canUnfoldAtMatch lean_mark_persistent(l_Lean_Meta_canUnfoldAtMatcher___closed__38); l_Lean_Meta_canUnfoldAtMatcher___closed__39 = _init_l_Lean_Meta_canUnfoldAtMatcher___closed__39(); lean_mark_persistent(l_Lean_Meta_canUnfoldAtMatcher___closed__39); +l_Lean_Meta_canUnfoldAtMatcher___closed__40 = _init_l_Lean_Meta_canUnfoldAtMatcher___closed__40(); +lean_mark_persistent(l_Lean_Meta_canUnfoldAtMatcher___closed__40); +l_Lean_Meta_canUnfoldAtMatcher___closed__41 = _init_l_Lean_Meta_canUnfoldAtMatcher___closed__41(); +lean_mark_persistent(l_Lean_Meta_canUnfoldAtMatcher___closed__41); l___private_Lean_Meta_WHNF_0__Lean_Meta_whnfMatcher___closed__1 = _init_l___private_Lean_Meta_WHNF_0__Lean_Meta_whnfMatcher___closed__1(); lean_mark_persistent(l___private_Lean_Meta_WHNF_0__Lean_Meta_whnfMatcher___closed__1); l___private_Lean_Meta_WHNF_0__Lean_Meta_whnfMatcher___closed__2 = _init_l___private_Lean_Meta_WHNF_0__Lean_Meta_whnfMatcher___closed__2(); @@ -37093,33 +37331,33 @@ l___private_Lean_Meta_WHNF_0__Lean_Meta_cache___closed__1 = _init_l___private_Le lean_mark_persistent(l___private_Lean_Meta_WHNF_0__Lean_Meta_cache___closed__1); l___private_Lean_Meta_WHNF_0__Lean_Meta_cache___closed__2 = _init_l___private_Lean_Meta_WHNF_0__Lean_Meta_cache___closed__2(); lean_mark_persistent(l___private_Lean_Meta_WHNF_0__Lean_Meta_cache___closed__2); -l_Lean_Meta_initFn____x40_Lean_Meta_WHNF___hyg_9901____closed__1 = _init_l_Lean_Meta_initFn____x40_Lean_Meta_WHNF___hyg_9901____closed__1(); -lean_mark_persistent(l_Lean_Meta_initFn____x40_Lean_Meta_WHNF___hyg_9901____closed__1); -l_Lean_Meta_initFn____x40_Lean_Meta_WHNF___hyg_9901____closed__2 = _init_l_Lean_Meta_initFn____x40_Lean_Meta_WHNF___hyg_9901____closed__2(); -lean_mark_persistent(l_Lean_Meta_initFn____x40_Lean_Meta_WHNF___hyg_9901____closed__2); -l_Lean_Meta_initFn____x40_Lean_Meta_WHNF___hyg_9901____closed__3 = _init_l_Lean_Meta_initFn____x40_Lean_Meta_WHNF___hyg_9901____closed__3(); -lean_mark_persistent(l_Lean_Meta_initFn____x40_Lean_Meta_WHNF___hyg_9901____closed__3); -l_Lean_Meta_initFn____x40_Lean_Meta_WHNF___hyg_9901____closed__4 = _init_l_Lean_Meta_initFn____x40_Lean_Meta_WHNF___hyg_9901____closed__4(); -lean_mark_persistent(l_Lean_Meta_initFn____x40_Lean_Meta_WHNF___hyg_9901____closed__4); -l_Lean_Meta_initFn____x40_Lean_Meta_WHNF___hyg_9901____closed__5 = _init_l_Lean_Meta_initFn____x40_Lean_Meta_WHNF___hyg_9901____closed__5(); -lean_mark_persistent(l_Lean_Meta_initFn____x40_Lean_Meta_WHNF___hyg_9901____closed__5); -l_Lean_Meta_initFn____x40_Lean_Meta_WHNF___hyg_9901____closed__6 = _init_l_Lean_Meta_initFn____x40_Lean_Meta_WHNF___hyg_9901____closed__6(); -lean_mark_persistent(l_Lean_Meta_initFn____x40_Lean_Meta_WHNF___hyg_9901____closed__6); -l_Lean_Meta_initFn____x40_Lean_Meta_WHNF___hyg_9901____closed__7 = _init_l_Lean_Meta_initFn____x40_Lean_Meta_WHNF___hyg_9901____closed__7(); -lean_mark_persistent(l_Lean_Meta_initFn____x40_Lean_Meta_WHNF___hyg_9901____closed__7); -l_Lean_Meta_initFn____x40_Lean_Meta_WHNF___hyg_9901____closed__8 = _init_l_Lean_Meta_initFn____x40_Lean_Meta_WHNF___hyg_9901____closed__8(); -lean_mark_persistent(l_Lean_Meta_initFn____x40_Lean_Meta_WHNF___hyg_9901____closed__8); -l_Lean_Meta_initFn____x40_Lean_Meta_WHNF___hyg_9901____closed__9 = _init_l_Lean_Meta_initFn____x40_Lean_Meta_WHNF___hyg_9901____closed__9(); -lean_mark_persistent(l_Lean_Meta_initFn____x40_Lean_Meta_WHNF___hyg_9901____closed__9); -l_Lean_Meta_initFn____x40_Lean_Meta_WHNF___hyg_9901____closed__10 = _init_l_Lean_Meta_initFn____x40_Lean_Meta_WHNF___hyg_9901____closed__10(); -lean_mark_persistent(l_Lean_Meta_initFn____x40_Lean_Meta_WHNF___hyg_9901____closed__10); -l_Lean_Meta_initFn____x40_Lean_Meta_WHNF___hyg_9901____closed__11 = _init_l_Lean_Meta_initFn____x40_Lean_Meta_WHNF___hyg_9901____closed__11(); -lean_mark_persistent(l_Lean_Meta_initFn____x40_Lean_Meta_WHNF___hyg_9901____closed__11); -l_Lean_Meta_initFn____x40_Lean_Meta_WHNF___hyg_9901____closed__12 = _init_l_Lean_Meta_initFn____x40_Lean_Meta_WHNF___hyg_9901____closed__12(); -lean_mark_persistent(l_Lean_Meta_initFn____x40_Lean_Meta_WHNF___hyg_9901____closed__12); -l_Lean_Meta_initFn____x40_Lean_Meta_WHNF___hyg_9901____closed__13 = _init_l_Lean_Meta_initFn____x40_Lean_Meta_WHNF___hyg_9901____closed__13(); -lean_mark_persistent(l_Lean_Meta_initFn____x40_Lean_Meta_WHNF___hyg_9901____closed__13); -if (builtin) {res = l_Lean_Meta_initFn____x40_Lean_Meta_WHNF___hyg_9901_(lean_io_mk_world()); +l_Lean_Meta_initFn____x40_Lean_Meta_WHNF___hyg_9913____closed__1 = _init_l_Lean_Meta_initFn____x40_Lean_Meta_WHNF___hyg_9913____closed__1(); +lean_mark_persistent(l_Lean_Meta_initFn____x40_Lean_Meta_WHNF___hyg_9913____closed__1); +l_Lean_Meta_initFn____x40_Lean_Meta_WHNF___hyg_9913____closed__2 = _init_l_Lean_Meta_initFn____x40_Lean_Meta_WHNF___hyg_9913____closed__2(); +lean_mark_persistent(l_Lean_Meta_initFn____x40_Lean_Meta_WHNF___hyg_9913____closed__2); +l_Lean_Meta_initFn____x40_Lean_Meta_WHNF___hyg_9913____closed__3 = _init_l_Lean_Meta_initFn____x40_Lean_Meta_WHNF___hyg_9913____closed__3(); +lean_mark_persistent(l_Lean_Meta_initFn____x40_Lean_Meta_WHNF___hyg_9913____closed__3); +l_Lean_Meta_initFn____x40_Lean_Meta_WHNF___hyg_9913____closed__4 = _init_l_Lean_Meta_initFn____x40_Lean_Meta_WHNF___hyg_9913____closed__4(); +lean_mark_persistent(l_Lean_Meta_initFn____x40_Lean_Meta_WHNF___hyg_9913____closed__4); +l_Lean_Meta_initFn____x40_Lean_Meta_WHNF___hyg_9913____closed__5 = _init_l_Lean_Meta_initFn____x40_Lean_Meta_WHNF___hyg_9913____closed__5(); +lean_mark_persistent(l_Lean_Meta_initFn____x40_Lean_Meta_WHNF___hyg_9913____closed__5); +l_Lean_Meta_initFn____x40_Lean_Meta_WHNF___hyg_9913____closed__6 = _init_l_Lean_Meta_initFn____x40_Lean_Meta_WHNF___hyg_9913____closed__6(); +lean_mark_persistent(l_Lean_Meta_initFn____x40_Lean_Meta_WHNF___hyg_9913____closed__6); +l_Lean_Meta_initFn____x40_Lean_Meta_WHNF___hyg_9913____closed__7 = _init_l_Lean_Meta_initFn____x40_Lean_Meta_WHNF___hyg_9913____closed__7(); +lean_mark_persistent(l_Lean_Meta_initFn____x40_Lean_Meta_WHNF___hyg_9913____closed__7); +l_Lean_Meta_initFn____x40_Lean_Meta_WHNF___hyg_9913____closed__8 = _init_l_Lean_Meta_initFn____x40_Lean_Meta_WHNF___hyg_9913____closed__8(); +lean_mark_persistent(l_Lean_Meta_initFn____x40_Lean_Meta_WHNF___hyg_9913____closed__8); +l_Lean_Meta_initFn____x40_Lean_Meta_WHNF___hyg_9913____closed__9 = _init_l_Lean_Meta_initFn____x40_Lean_Meta_WHNF___hyg_9913____closed__9(); +lean_mark_persistent(l_Lean_Meta_initFn____x40_Lean_Meta_WHNF___hyg_9913____closed__9); +l_Lean_Meta_initFn____x40_Lean_Meta_WHNF___hyg_9913____closed__10 = _init_l_Lean_Meta_initFn____x40_Lean_Meta_WHNF___hyg_9913____closed__10(); +lean_mark_persistent(l_Lean_Meta_initFn____x40_Lean_Meta_WHNF___hyg_9913____closed__10); +l_Lean_Meta_initFn____x40_Lean_Meta_WHNF___hyg_9913____closed__11 = _init_l_Lean_Meta_initFn____x40_Lean_Meta_WHNF___hyg_9913____closed__11(); +lean_mark_persistent(l_Lean_Meta_initFn____x40_Lean_Meta_WHNF___hyg_9913____closed__11); +l_Lean_Meta_initFn____x40_Lean_Meta_WHNF___hyg_9913____closed__12 = _init_l_Lean_Meta_initFn____x40_Lean_Meta_WHNF___hyg_9913____closed__12(); +lean_mark_persistent(l_Lean_Meta_initFn____x40_Lean_Meta_WHNF___hyg_9913____closed__12); +l_Lean_Meta_initFn____x40_Lean_Meta_WHNF___hyg_9913____closed__13 = _init_l_Lean_Meta_initFn____x40_Lean_Meta_WHNF___hyg_9913____closed__13(); +lean_mark_persistent(l_Lean_Meta_initFn____x40_Lean_Meta_WHNF___hyg_9913____closed__13); +if (builtin) {res = l_Lean_Meta_initFn____x40_Lean_Meta_WHNF___hyg_9913_(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)); diff --git a/stage0/stdlib/Lean/MetavarContext.c b/stage0/stdlib/Lean/MetavarContext.c index 0888e807db..400f195463 100644 --- a/stage0/stdlib/Lean/MetavarContext.c +++ b/stage0/stdlib/Lean/MetavarContext.c @@ -12886,7 +12886,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_instantiateExprMVars___rarg___lambda__9___closed__1; x_2 = l_Lean_instantiateExprMVars___rarg___lambda__9___closed__2; -x_3 = lean_unsigned_to_nat(1660u); +x_3 = lean_unsigned_to_nat(1679u); x_4 = lean_unsigned_to_nat(14u); x_5 = l_Lean_instantiateExprMVars___rarg___lambda__9___closed__3; x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); @@ -12967,7 +12967,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_instantiateExprMVars___rarg___lambda__9___closed__1; x_2 = l_Lean_instantiateExprMVars___rarg___lambda__10___closed__1; -x_3 = lean_unsigned_to_nat(1649u); +x_3 = lean_unsigned_to_nat(1668u); x_4 = lean_unsigned_to_nat(18u); x_5 = l_Lean_instantiateExprMVars___rarg___lambda__10___closed__2; x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); @@ -13049,7 +13049,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_instantiateExprMVars___rarg___lambda__9___closed__1; x_2 = l_Lean_instantiateExprMVars___rarg___lambda__11___closed__1; -x_3 = lean_unsigned_to_nat(1728u); +x_3 = lean_unsigned_to_nat(1747u); x_4 = lean_unsigned_to_nat(20u); x_5 = l_Lean_instantiateExprMVars___rarg___lambda__11___closed__2; x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); @@ -13187,7 +13187,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_instantiateExprMVars___rarg___lambda__9___closed__1; x_2 = l_Lean_instantiateExprMVars___rarg___lambda__13___closed__1; -x_3 = lean_unsigned_to_nat(1708u); +x_3 = lean_unsigned_to_nat(1727u); x_4 = lean_unsigned_to_nat(24u); x_5 = l_Lean_instantiateExprMVars___rarg___lambda__13___closed__2; x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); @@ -13325,7 +13325,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_instantiateExprMVars___rarg___lambda__9___closed__1; x_2 = l_Lean_instantiateExprMVars___rarg___lambda__15___closed__1; -x_3 = lean_unsigned_to_nat(1737u); +x_3 = lean_unsigned_to_nat(1756u); x_4 = lean_unsigned_to_nat(22u); x_5 = l_Lean_instantiateExprMVars___rarg___lambda__15___closed__2; x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); @@ -13493,7 +13493,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_instantiateExprMVars___rarg___lambda__9___closed__1; x_2 = l_Lean_instantiateExprMVars___rarg___lambda__18___closed__1; -x_3 = lean_unsigned_to_nat(1671u); +x_3 = lean_unsigned_to_nat(1690u); x_4 = lean_unsigned_to_nat(17u); x_5 = l_Lean_instantiateExprMVars___rarg___lambda__18___closed__2; x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); @@ -13577,7 +13577,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_instantiateExprMVars___rarg___lambda__9___closed__1; x_2 = l_Lean_instantiateExprMVars___rarg___lambda__19___closed__1; -x_3 = lean_unsigned_to_nat(1682u); +x_3 = lean_unsigned_to_nat(1701u); x_4 = lean_unsigned_to_nat(18u); x_5 = l_Lean_instantiateExprMVars___rarg___lambda__19___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/ParserCompiler.c b/stage0/stdlib/Lean/ParserCompiler.c index b34767ff89..707dd2dd65 100644 --- a/stage0/stdlib/Lean/ParserCompiler.c +++ b/stage0/stdlib/Lean/ParserCompiler.c @@ -111,6 +111,7 @@ lean_object* l_Lean_Parser_registerParserAttributeHook(lean_object*, lean_object LEAN_EXPORT lean_object* l_Std_Range_forIn_loop___at_Lean_ParserCompiler_compileParserExpr___spec__32___rarg(lean_object*, uint8_t, 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*, lean_object*); lean_object* l_Lean_Expr_proj___override(lean_object*, lean_object*, lean_object*); lean_object* lean_array_fget(lean_object*, lean_object*); +lean_object* l_Lean_Meta_forallTelescope___at_Lean_Meta_mapForallTelescope_x27___spec__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_foldrMUnsafe_fold___at_Lean_ParserCompiler_compileParserExpr___spec__34(lean_object*); static lean_object* l_Lean_Expr_ReplaceImpl_replaceUnsafeM_visit___at_Lean_ParserCompiler_replaceParserTy___spec__1___rarg___closed__3; LEAN_EXPORT lean_object* l_Std_Range_forIn_loop___at_Lean_ParserCompiler_compileParserExpr___spec__9(lean_object*); @@ -311,7 +312,6 @@ LEAN_EXPORT lean_object* l_Array_foldrMUnsafe_fold___at_Lean_ParserCompiler_comp static lean_object* l_Lean_ParserCompiler_compileParserExpr___rarg___closed__9; LEAN_EXPORT lean_object* l_Array_foldrMUnsafe_fold___at_Lean_ParserCompiler_compileParserExpr___spec__10___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_Array_foldrMUnsafe_fold___at_Lean_ParserCompiler_compileParserExpr___spec__51___rarg___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_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_Range_forIn_loop___at_Lean_ParserCompiler_compileParserExpr___spec__70(lean_object*); LEAN_EXPORT lean_object* l_Std_Range_forIn_loop___at_Lean_ParserCompiler_compileParserExpr___spec__65(lean_object*); LEAN_EXPORT lean_object* l_Std_Range_forIn_loop___at_Lean_ParserCompiler_compileParserExpr___spec__3___rarg___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -2395,7 +2395,7 @@ lean_inc(x_26); lean_dec(x_24); x_27 = lean_alloc_closure((void*)(l_Lean_ParserCompiler_parserNodeKind_x3f___lambda__1), 8, 1); lean_closure_set(x_27, 0, x_9); -x_28 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_25, x_27, x_2, x_3, x_4, x_5, x_26); +x_28 = l_Lean_Meta_forallTelescope___at_Lean_Meta_mapForallTelescope_x27___spec__1___rarg(x_25, x_27, x_2, x_3, x_4, x_5, x_26); return x_28; } else @@ -3164,7 +3164,7 @@ lean_inc(x_16); lean_inc(x_15); lean_inc(x_14); lean_inc(x_4); -x_40 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_36, x_4, x_14, x_15, x_16, x_17, x_37); +x_40 = l_Lean_Meta_forallTelescope___at_Lean_Meta_mapForallTelescope_x27___spec__1___rarg(x_36, x_4, x_14, x_15, x_16, x_17, x_37); if (lean_obj_tag(x_40) == 0) { lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; uint8_t x_45; @@ -3408,7 +3408,7 @@ lean_inc(x_16); lean_inc(x_15); lean_inc(x_14); lean_inc(x_4); -x_78 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_75, x_4, x_14, x_15, x_16, x_17, x_76); +x_78 = l_Lean_Meta_forallTelescope___at_Lean_Meta_mapForallTelescope_x27___spec__1___rarg(x_75, x_4, x_14, x_15, x_16, x_17, x_76); if (lean_obj_tag(x_78) == 0) { lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; uint8_t x_83; @@ -3792,7 +3792,7 @@ lean_inc(x_16); lean_inc(x_15); lean_inc(x_14); lean_inc(x_13); -x_40 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_35, x_39, x_13, x_14, x_15, x_16, x_36); +x_40 = l_Lean_Meta_forallTelescope___at_Lean_Meta_mapForallTelescope_x27___spec__1___rarg(x_35, x_39, x_13, x_14, x_15, x_16, x_36); if (lean_obj_tag(x_40) == 0) { lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; uint8_t x_45; @@ -4031,7 +4031,7 @@ lean_inc(x_16); lean_inc(x_15); lean_inc(x_14); lean_inc(x_13); -x_79 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_75, x_78, x_13, x_14, x_15, x_16, x_76); +x_79 = l_Lean_Meta_forallTelescope___at_Lean_Meta_mapForallTelescope_x27___spec__1___rarg(x_75, x_78, x_13, x_14, x_15, x_16, x_76); if (lean_obj_tag(x_79) == 0) { lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; uint8_t x_84; @@ -4391,7 +4391,7 @@ lean_inc(x_16); lean_inc(x_15); lean_inc(x_14); lean_inc(x_4); -x_40 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_36, x_4, x_14, x_15, x_16, x_17, x_37); +x_40 = l_Lean_Meta_forallTelescope___at_Lean_Meta_mapForallTelescope_x27___spec__1___rarg(x_36, x_4, x_14, x_15, x_16, x_17, x_37); if (lean_obj_tag(x_40) == 0) { lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; uint8_t x_45; @@ -4635,7 +4635,7 @@ lean_inc(x_16); lean_inc(x_15); lean_inc(x_14); lean_inc(x_4); -x_78 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_75, x_4, x_14, x_15, x_16, x_17, x_76); +x_78 = l_Lean_Meta_forallTelescope___at_Lean_Meta_mapForallTelescope_x27___spec__1___rarg(x_75, x_4, x_14, x_15, x_16, x_17, x_76); if (lean_obj_tag(x_78) == 0) { lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; uint8_t x_83; @@ -5001,7 +5001,7 @@ lean_inc(x_16); lean_inc(x_15); lean_inc(x_14); lean_inc(x_13); -x_40 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_35, x_39, x_13, x_14, x_15, x_16, x_36); +x_40 = l_Lean_Meta_forallTelescope___at_Lean_Meta_mapForallTelescope_x27___spec__1___rarg(x_35, x_39, x_13, x_14, x_15, x_16, x_36); if (lean_obj_tag(x_40) == 0) { lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; uint8_t x_45; @@ -5240,7 +5240,7 @@ lean_inc(x_16); lean_inc(x_15); lean_inc(x_14); lean_inc(x_13); -x_79 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_75, x_78, x_13, x_14, x_15, x_16, x_76); +x_79 = l_Lean_Meta_forallTelescope___at_Lean_Meta_mapForallTelescope_x27___spec__1___rarg(x_75, x_78, x_13, x_14, x_15, x_16, x_76); if (lean_obj_tag(x_79) == 0) { lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; uint8_t x_84; @@ -5637,7 +5637,7 @@ lean_inc(x_16); lean_inc(x_15); lean_inc(x_14); lean_inc(x_13); -x_40 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_35, x_39, x_13, x_14, x_15, x_16, x_36); +x_40 = l_Lean_Meta_forallTelescope___at_Lean_Meta_mapForallTelescope_x27___spec__1___rarg(x_35, x_39, x_13, x_14, x_15, x_16, x_36); if (lean_obj_tag(x_40) == 0) { lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; uint8_t x_45; @@ -5876,7 +5876,7 @@ lean_inc(x_16); lean_inc(x_15); lean_inc(x_14); lean_inc(x_13); -x_79 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_75, x_78, x_13, x_14, x_15, x_16, x_76); +x_79 = l_Lean_Meta_forallTelescope___at_Lean_Meta_mapForallTelescope_x27___spec__1___rarg(x_75, x_78, x_13, x_14, x_15, x_16, x_76); if (lean_obj_tag(x_79) == 0) { lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; uint8_t x_84; @@ -6235,7 +6235,7 @@ lean_inc(x_16); lean_inc(x_15); lean_inc(x_14); lean_inc(x_13); -x_40 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_35, x_39, x_13, x_14, x_15, x_16, x_36); +x_40 = l_Lean_Meta_forallTelescope___at_Lean_Meta_mapForallTelescope_x27___spec__1___rarg(x_35, x_39, x_13, x_14, x_15, x_16, x_36); if (lean_obj_tag(x_40) == 0) { lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; uint8_t x_45; @@ -6474,7 +6474,7 @@ lean_inc(x_16); lean_inc(x_15); lean_inc(x_14); lean_inc(x_13); -x_79 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_75, x_78, x_13, x_14, x_15, x_16, x_76); +x_79 = l_Lean_Meta_forallTelescope___at_Lean_Meta_mapForallTelescope_x27___spec__1___rarg(x_75, x_78, x_13, x_14, x_15, x_16, x_76); if (lean_obj_tag(x_79) == 0) { lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; uint8_t x_84; @@ -7000,7 +7000,7 @@ lean_inc(x_16); lean_inc(x_15); lean_inc(x_14); lean_inc(x_4); -x_40 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_36, x_4, x_14, x_15, x_16, x_17, x_37); +x_40 = l_Lean_Meta_forallTelescope___at_Lean_Meta_mapForallTelescope_x27___spec__1___rarg(x_36, x_4, x_14, x_15, x_16, x_17, x_37); if (lean_obj_tag(x_40) == 0) { lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; uint8_t x_45; @@ -7244,7 +7244,7 @@ lean_inc(x_16); lean_inc(x_15); lean_inc(x_14); lean_inc(x_4); -x_78 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_75, x_4, x_14, x_15, x_16, x_17, x_76); +x_78 = l_Lean_Meta_forallTelescope___at_Lean_Meta_mapForallTelescope_x27___spec__1___rarg(x_75, x_4, x_14, x_15, x_16, x_17, x_76); if (lean_obj_tag(x_78) == 0) { lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; uint8_t x_83; @@ -7610,7 +7610,7 @@ lean_inc(x_16); lean_inc(x_15); lean_inc(x_14); lean_inc(x_13); -x_40 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_35, x_39, x_13, x_14, x_15, x_16, x_36); +x_40 = l_Lean_Meta_forallTelescope___at_Lean_Meta_mapForallTelescope_x27___spec__1___rarg(x_35, x_39, x_13, x_14, x_15, x_16, x_36); if (lean_obj_tag(x_40) == 0) { lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; uint8_t x_45; @@ -7849,7 +7849,7 @@ lean_inc(x_16); lean_inc(x_15); lean_inc(x_14); lean_inc(x_13); -x_79 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_75, x_78, x_13, x_14, x_15, x_16, x_76); +x_79 = l_Lean_Meta_forallTelescope___at_Lean_Meta_mapForallTelescope_x27___spec__1___rarg(x_75, x_78, x_13, x_14, x_15, x_16, x_76); if (lean_obj_tag(x_79) == 0) { lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; uint8_t x_84; @@ -8209,7 +8209,7 @@ lean_inc(x_16); lean_inc(x_15); lean_inc(x_14); lean_inc(x_4); -x_40 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_36, x_4, x_14, x_15, x_16, x_17, x_37); +x_40 = l_Lean_Meta_forallTelescope___at_Lean_Meta_mapForallTelescope_x27___spec__1___rarg(x_36, x_4, x_14, x_15, x_16, x_17, x_37); if (lean_obj_tag(x_40) == 0) { lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; uint8_t x_45; @@ -8453,7 +8453,7 @@ lean_inc(x_16); lean_inc(x_15); lean_inc(x_14); lean_inc(x_4); -x_78 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_75, x_4, x_14, x_15, x_16, x_17, x_76); +x_78 = l_Lean_Meta_forallTelescope___at_Lean_Meta_mapForallTelescope_x27___spec__1___rarg(x_75, x_4, x_14, x_15, x_16, x_17, x_76); if (lean_obj_tag(x_78) == 0) { lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; uint8_t x_83; @@ -8819,7 +8819,7 @@ lean_inc(x_16); lean_inc(x_15); lean_inc(x_14); lean_inc(x_13); -x_40 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_35, x_39, x_13, x_14, x_15, x_16, x_36); +x_40 = l_Lean_Meta_forallTelescope___at_Lean_Meta_mapForallTelescope_x27___spec__1___rarg(x_35, x_39, x_13, x_14, x_15, x_16, x_36); if (lean_obj_tag(x_40) == 0) { lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; uint8_t x_45; @@ -9058,7 +9058,7 @@ lean_inc(x_16); lean_inc(x_15); lean_inc(x_14); lean_inc(x_13); -x_79 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_75, x_78, x_13, x_14, x_15, x_16, x_76); +x_79 = l_Lean_Meta_forallTelescope___at_Lean_Meta_mapForallTelescope_x27___spec__1___rarg(x_75, x_78, x_13, x_14, x_15, x_16, x_76); if (lean_obj_tag(x_79) == 0) { lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; uint8_t x_84; @@ -9417,7 +9417,7 @@ lean_inc(x_16); lean_inc(x_15); lean_inc(x_14); lean_inc(x_13); -x_40 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_35, x_39, x_13, x_14, x_15, x_16, x_36); +x_40 = l_Lean_Meta_forallTelescope___at_Lean_Meta_mapForallTelescope_x27___spec__1___rarg(x_35, x_39, x_13, x_14, x_15, x_16, x_36); if (lean_obj_tag(x_40) == 0) { lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; uint8_t x_45; @@ -9656,7 +9656,7 @@ lean_inc(x_16); lean_inc(x_15); lean_inc(x_14); lean_inc(x_13); -x_79 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_75, x_78, x_13, x_14, x_15, x_16, x_76); +x_79 = l_Lean_Meta_forallTelescope___at_Lean_Meta_mapForallTelescope_x27___spec__1___rarg(x_75, x_78, x_13, x_14, x_15, x_16, x_76); if (lean_obj_tag(x_79) == 0) { lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; uint8_t x_84; @@ -10015,7 +10015,7 @@ lean_inc(x_16); lean_inc(x_15); lean_inc(x_14); lean_inc(x_13); -x_40 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_35, x_39, x_13, x_14, x_15, x_16, x_36); +x_40 = l_Lean_Meta_forallTelescope___at_Lean_Meta_mapForallTelescope_x27___spec__1___rarg(x_35, x_39, x_13, x_14, x_15, x_16, x_36); if (lean_obj_tag(x_40) == 0) { lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; uint8_t x_45; @@ -10254,7 +10254,7 @@ lean_inc(x_16); lean_inc(x_15); lean_inc(x_14); lean_inc(x_13); -x_79 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_75, x_78, x_13, x_14, x_15, x_16, x_76); +x_79 = l_Lean_Meta_forallTelescope___at_Lean_Meta_mapForallTelescope_x27___spec__1___rarg(x_75, x_78, x_13, x_14, x_15, x_16, x_76); if (lean_obj_tag(x_79) == 0) { lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; uint8_t x_84; @@ -10780,7 +10780,7 @@ lean_inc(x_16); lean_inc(x_15); lean_inc(x_14); lean_inc(x_4); -x_40 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_36, x_4, x_14, x_15, x_16, x_17, x_37); +x_40 = l_Lean_Meta_forallTelescope___at_Lean_Meta_mapForallTelescope_x27___spec__1___rarg(x_36, x_4, x_14, x_15, x_16, x_17, x_37); if (lean_obj_tag(x_40) == 0) { lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; uint8_t x_45; @@ -11024,7 +11024,7 @@ lean_inc(x_16); lean_inc(x_15); lean_inc(x_14); lean_inc(x_4); -x_78 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_75, x_4, x_14, x_15, x_16, x_17, x_76); +x_78 = l_Lean_Meta_forallTelescope___at_Lean_Meta_mapForallTelescope_x27___spec__1___rarg(x_75, x_4, x_14, x_15, x_16, x_17, x_76); if (lean_obj_tag(x_78) == 0) { lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; uint8_t x_83; @@ -11390,7 +11390,7 @@ lean_inc(x_16); lean_inc(x_15); lean_inc(x_14); lean_inc(x_13); -x_40 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_35, x_39, x_13, x_14, x_15, x_16, x_36); +x_40 = l_Lean_Meta_forallTelescope___at_Lean_Meta_mapForallTelescope_x27___spec__1___rarg(x_35, x_39, x_13, x_14, x_15, x_16, x_36); if (lean_obj_tag(x_40) == 0) { lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; uint8_t x_45; @@ -11629,7 +11629,7 @@ lean_inc(x_16); lean_inc(x_15); lean_inc(x_14); lean_inc(x_13); -x_79 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_75, x_78, x_13, x_14, x_15, x_16, x_76); +x_79 = l_Lean_Meta_forallTelescope___at_Lean_Meta_mapForallTelescope_x27___spec__1___rarg(x_75, x_78, x_13, x_14, x_15, x_16, x_76); if (lean_obj_tag(x_79) == 0) { lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; uint8_t x_84; @@ -11989,7 +11989,7 @@ lean_inc(x_16); lean_inc(x_15); lean_inc(x_14); lean_inc(x_4); -x_40 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_36, x_4, x_14, x_15, x_16, x_17, x_37); +x_40 = l_Lean_Meta_forallTelescope___at_Lean_Meta_mapForallTelescope_x27___spec__1___rarg(x_36, x_4, x_14, x_15, x_16, x_17, x_37); if (lean_obj_tag(x_40) == 0) { lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; uint8_t x_45; @@ -12233,7 +12233,7 @@ lean_inc(x_16); lean_inc(x_15); lean_inc(x_14); lean_inc(x_4); -x_78 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_75, x_4, x_14, x_15, x_16, x_17, x_76); +x_78 = l_Lean_Meta_forallTelescope___at_Lean_Meta_mapForallTelescope_x27___spec__1___rarg(x_75, x_4, x_14, x_15, x_16, x_17, x_76); if (lean_obj_tag(x_78) == 0) { lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; uint8_t x_83; @@ -12599,7 +12599,7 @@ lean_inc(x_16); lean_inc(x_15); lean_inc(x_14); lean_inc(x_13); -x_40 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_35, x_39, x_13, x_14, x_15, x_16, x_36); +x_40 = l_Lean_Meta_forallTelescope___at_Lean_Meta_mapForallTelescope_x27___spec__1___rarg(x_35, x_39, x_13, x_14, x_15, x_16, x_36); if (lean_obj_tag(x_40) == 0) { lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; uint8_t x_45; @@ -12838,7 +12838,7 @@ lean_inc(x_16); lean_inc(x_15); lean_inc(x_14); lean_inc(x_13); -x_79 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_75, x_78, x_13, x_14, x_15, x_16, x_76); +x_79 = l_Lean_Meta_forallTelescope___at_Lean_Meta_mapForallTelescope_x27___spec__1___rarg(x_75, x_78, x_13, x_14, x_15, x_16, x_76); if (lean_obj_tag(x_79) == 0) { lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; uint8_t x_84; @@ -13197,7 +13197,7 @@ lean_inc(x_16); lean_inc(x_15); lean_inc(x_14); lean_inc(x_13); -x_40 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_35, x_39, x_13, x_14, x_15, x_16, x_36); +x_40 = l_Lean_Meta_forallTelescope___at_Lean_Meta_mapForallTelescope_x27___spec__1___rarg(x_35, x_39, x_13, x_14, x_15, x_16, x_36); if (lean_obj_tag(x_40) == 0) { lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; uint8_t x_45; @@ -13436,7 +13436,7 @@ lean_inc(x_16); lean_inc(x_15); lean_inc(x_14); lean_inc(x_13); -x_79 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_75, x_78, x_13, x_14, x_15, x_16, x_76); +x_79 = l_Lean_Meta_forallTelescope___at_Lean_Meta_mapForallTelescope_x27___spec__1___rarg(x_75, x_78, x_13, x_14, x_15, x_16, x_76); if (lean_obj_tag(x_79) == 0) { lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; uint8_t x_84; @@ -13795,7 +13795,7 @@ lean_inc(x_16); lean_inc(x_15); lean_inc(x_14); lean_inc(x_13); -x_40 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_35, x_39, x_13, x_14, x_15, x_16, x_36); +x_40 = l_Lean_Meta_forallTelescope___at_Lean_Meta_mapForallTelescope_x27___spec__1___rarg(x_35, x_39, x_13, x_14, x_15, x_16, x_36); if (lean_obj_tag(x_40) == 0) { lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; uint8_t x_45; @@ -14034,7 +14034,7 @@ lean_inc(x_16); lean_inc(x_15); lean_inc(x_14); lean_inc(x_13); -x_79 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_75, x_78, x_13, x_14, x_15, x_16, x_76); +x_79 = l_Lean_Meta_forallTelescope___at_Lean_Meta_mapForallTelescope_x27___spec__1___rarg(x_75, x_78, x_13, x_14, x_15, x_16, x_76); if (lean_obj_tag(x_79) == 0) { lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; uint8_t x_84; @@ -14560,7 +14560,7 @@ lean_inc(x_16); lean_inc(x_15); lean_inc(x_14); lean_inc(x_4); -x_40 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_36, x_4, x_14, x_15, x_16, x_17, x_37); +x_40 = l_Lean_Meta_forallTelescope___at_Lean_Meta_mapForallTelescope_x27___spec__1___rarg(x_36, x_4, x_14, x_15, x_16, x_17, x_37); if (lean_obj_tag(x_40) == 0) { lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; uint8_t x_45; @@ -14804,7 +14804,7 @@ lean_inc(x_16); lean_inc(x_15); lean_inc(x_14); lean_inc(x_4); -x_78 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_75, x_4, x_14, x_15, x_16, x_17, x_76); +x_78 = l_Lean_Meta_forallTelescope___at_Lean_Meta_mapForallTelescope_x27___spec__1___rarg(x_75, x_4, x_14, x_15, x_16, x_17, x_76); if (lean_obj_tag(x_78) == 0) { lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; uint8_t x_83; @@ -15170,7 +15170,7 @@ lean_inc(x_16); lean_inc(x_15); lean_inc(x_14); lean_inc(x_13); -x_40 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_35, x_39, x_13, x_14, x_15, x_16, x_36); +x_40 = l_Lean_Meta_forallTelescope___at_Lean_Meta_mapForallTelescope_x27___spec__1___rarg(x_35, x_39, x_13, x_14, x_15, x_16, x_36); if (lean_obj_tag(x_40) == 0) { lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; uint8_t x_45; @@ -15409,7 +15409,7 @@ lean_inc(x_16); lean_inc(x_15); lean_inc(x_14); lean_inc(x_13); -x_79 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_75, x_78, x_13, x_14, x_15, x_16, x_76); +x_79 = l_Lean_Meta_forallTelescope___at_Lean_Meta_mapForallTelescope_x27___spec__1___rarg(x_75, x_78, x_13, x_14, x_15, x_16, x_76); if (lean_obj_tag(x_79) == 0) { lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; uint8_t x_84; @@ -15769,7 +15769,7 @@ lean_inc(x_16); lean_inc(x_15); lean_inc(x_14); lean_inc(x_4); -x_40 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_36, x_4, x_14, x_15, x_16, x_17, x_37); +x_40 = l_Lean_Meta_forallTelescope___at_Lean_Meta_mapForallTelescope_x27___spec__1___rarg(x_36, x_4, x_14, x_15, x_16, x_17, x_37); if (lean_obj_tag(x_40) == 0) { lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; uint8_t x_45; @@ -16013,7 +16013,7 @@ lean_inc(x_16); lean_inc(x_15); lean_inc(x_14); lean_inc(x_4); -x_78 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_75, x_4, x_14, x_15, x_16, x_17, x_76); +x_78 = l_Lean_Meta_forallTelescope___at_Lean_Meta_mapForallTelescope_x27___spec__1___rarg(x_75, x_4, x_14, x_15, x_16, x_17, x_76); if (lean_obj_tag(x_78) == 0) { lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; uint8_t x_83; @@ -16379,7 +16379,7 @@ lean_inc(x_16); lean_inc(x_15); lean_inc(x_14); lean_inc(x_13); -x_40 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_35, x_39, x_13, x_14, x_15, x_16, x_36); +x_40 = l_Lean_Meta_forallTelescope___at_Lean_Meta_mapForallTelescope_x27___spec__1___rarg(x_35, x_39, x_13, x_14, x_15, x_16, x_36); if (lean_obj_tag(x_40) == 0) { lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; uint8_t x_45; @@ -16618,7 +16618,7 @@ lean_inc(x_16); lean_inc(x_15); lean_inc(x_14); lean_inc(x_13); -x_79 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_75, x_78, x_13, x_14, x_15, x_16, x_76); +x_79 = l_Lean_Meta_forallTelescope___at_Lean_Meta_mapForallTelescope_x27___spec__1___rarg(x_75, x_78, x_13, x_14, x_15, x_16, x_76); if (lean_obj_tag(x_79) == 0) { lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; uint8_t x_84; @@ -16977,7 +16977,7 @@ lean_inc(x_16); lean_inc(x_15); lean_inc(x_14); lean_inc(x_13); -x_40 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_35, x_39, x_13, x_14, x_15, x_16, x_36); +x_40 = l_Lean_Meta_forallTelescope___at_Lean_Meta_mapForallTelescope_x27___spec__1___rarg(x_35, x_39, x_13, x_14, x_15, x_16, x_36); if (lean_obj_tag(x_40) == 0) { lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; uint8_t x_45; @@ -17216,7 +17216,7 @@ lean_inc(x_16); lean_inc(x_15); lean_inc(x_14); lean_inc(x_13); -x_79 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_75, x_78, x_13, x_14, x_15, x_16, x_76); +x_79 = l_Lean_Meta_forallTelescope___at_Lean_Meta_mapForallTelescope_x27___spec__1___rarg(x_75, x_78, x_13, x_14, x_15, x_16, x_76); if (lean_obj_tag(x_79) == 0) { lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; uint8_t x_84; @@ -17575,7 +17575,7 @@ lean_inc(x_16); lean_inc(x_15); lean_inc(x_14); lean_inc(x_13); -x_40 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_35, x_39, x_13, x_14, x_15, x_16, x_36); +x_40 = l_Lean_Meta_forallTelescope___at_Lean_Meta_mapForallTelescope_x27___spec__1___rarg(x_35, x_39, x_13, x_14, x_15, x_16, x_36); if (lean_obj_tag(x_40) == 0) { lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; uint8_t x_45; @@ -17814,7 +17814,7 @@ lean_inc(x_16); lean_inc(x_15); lean_inc(x_14); lean_inc(x_13); -x_79 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_75, x_78, x_13, x_14, x_15, x_16, x_76); +x_79 = l_Lean_Meta_forallTelescope___at_Lean_Meta_mapForallTelescope_x27___spec__1___rarg(x_75, x_78, x_13, x_14, x_15, x_16, x_76); if (lean_obj_tag(x_79) == 0) { lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; uint8_t x_84; @@ -18340,7 +18340,7 @@ lean_inc(x_16); lean_inc(x_15); lean_inc(x_14); lean_inc(x_4); -x_40 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_36, x_4, x_14, x_15, x_16, x_17, x_37); +x_40 = l_Lean_Meta_forallTelescope___at_Lean_Meta_mapForallTelescope_x27___spec__1___rarg(x_36, x_4, x_14, x_15, x_16, x_17, x_37); if (lean_obj_tag(x_40) == 0) { lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; uint8_t x_45; @@ -18584,7 +18584,7 @@ lean_inc(x_16); lean_inc(x_15); lean_inc(x_14); lean_inc(x_4); -x_78 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_75, x_4, x_14, x_15, x_16, x_17, x_76); +x_78 = l_Lean_Meta_forallTelescope___at_Lean_Meta_mapForallTelescope_x27___spec__1___rarg(x_75, x_4, x_14, x_15, x_16, x_17, x_76); if (lean_obj_tag(x_78) == 0) { lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; uint8_t x_83; @@ -18950,7 +18950,7 @@ lean_inc(x_16); lean_inc(x_15); lean_inc(x_14); lean_inc(x_13); -x_40 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_35, x_39, x_13, x_14, x_15, x_16, x_36); +x_40 = l_Lean_Meta_forallTelescope___at_Lean_Meta_mapForallTelescope_x27___spec__1___rarg(x_35, x_39, x_13, x_14, x_15, x_16, x_36); if (lean_obj_tag(x_40) == 0) { lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; uint8_t x_45; @@ -19189,7 +19189,7 @@ lean_inc(x_16); lean_inc(x_15); lean_inc(x_14); lean_inc(x_13); -x_79 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_75, x_78, x_13, x_14, x_15, x_16, x_76); +x_79 = l_Lean_Meta_forallTelescope___at_Lean_Meta_mapForallTelescope_x27___spec__1___rarg(x_75, x_78, x_13, x_14, x_15, x_16, x_76); if (lean_obj_tag(x_79) == 0) { lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; uint8_t x_84; @@ -19549,7 +19549,7 @@ lean_inc(x_16); lean_inc(x_15); lean_inc(x_14); lean_inc(x_4); -x_40 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_36, x_4, x_14, x_15, x_16, x_17, x_37); +x_40 = l_Lean_Meta_forallTelescope___at_Lean_Meta_mapForallTelescope_x27___spec__1___rarg(x_36, x_4, x_14, x_15, x_16, x_17, x_37); if (lean_obj_tag(x_40) == 0) { lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; uint8_t x_45; @@ -19793,7 +19793,7 @@ lean_inc(x_16); lean_inc(x_15); lean_inc(x_14); lean_inc(x_4); -x_78 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_75, x_4, x_14, x_15, x_16, x_17, x_76); +x_78 = l_Lean_Meta_forallTelescope___at_Lean_Meta_mapForallTelescope_x27___spec__1___rarg(x_75, x_4, x_14, x_15, x_16, x_17, x_76); if (lean_obj_tag(x_78) == 0) { lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; uint8_t x_83; @@ -20159,7 +20159,7 @@ lean_inc(x_16); lean_inc(x_15); lean_inc(x_14); lean_inc(x_13); -x_40 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_35, x_39, x_13, x_14, x_15, x_16, x_36); +x_40 = l_Lean_Meta_forallTelescope___at_Lean_Meta_mapForallTelescope_x27___spec__1___rarg(x_35, x_39, x_13, x_14, x_15, x_16, x_36); if (lean_obj_tag(x_40) == 0) { lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; uint8_t x_45; @@ -20398,7 +20398,7 @@ lean_inc(x_16); lean_inc(x_15); lean_inc(x_14); lean_inc(x_13); -x_79 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_75, x_78, x_13, x_14, x_15, x_16, x_76); +x_79 = l_Lean_Meta_forallTelescope___at_Lean_Meta_mapForallTelescope_x27___spec__1___rarg(x_75, x_78, x_13, x_14, x_15, x_16, x_76); if (lean_obj_tag(x_79) == 0) { lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; uint8_t x_84; @@ -20757,7 +20757,7 @@ lean_inc(x_16); lean_inc(x_15); lean_inc(x_14); lean_inc(x_13); -x_40 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_35, x_39, x_13, x_14, x_15, x_16, x_36); +x_40 = l_Lean_Meta_forallTelescope___at_Lean_Meta_mapForallTelescope_x27___spec__1___rarg(x_35, x_39, x_13, x_14, x_15, x_16, x_36); if (lean_obj_tag(x_40) == 0) { lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; uint8_t x_45; @@ -20996,7 +20996,7 @@ lean_inc(x_16); lean_inc(x_15); lean_inc(x_14); lean_inc(x_13); -x_79 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_75, x_78, x_13, x_14, x_15, x_16, x_76); +x_79 = l_Lean_Meta_forallTelescope___at_Lean_Meta_mapForallTelescope_x27___spec__1___rarg(x_75, x_78, x_13, x_14, x_15, x_16, x_76); if (lean_obj_tag(x_79) == 0) { lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; uint8_t x_84; @@ -21355,7 +21355,7 @@ lean_inc(x_16); lean_inc(x_15); lean_inc(x_14); lean_inc(x_13); -x_40 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_35, x_39, x_13, x_14, x_15, x_16, x_36); +x_40 = l_Lean_Meta_forallTelescope___at_Lean_Meta_mapForallTelescope_x27___spec__1___rarg(x_35, x_39, x_13, x_14, x_15, x_16, x_36); if (lean_obj_tag(x_40) == 0) { lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; uint8_t x_45; @@ -21594,7 +21594,7 @@ lean_inc(x_16); lean_inc(x_15); lean_inc(x_14); lean_inc(x_13); -x_79 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_75, x_78, x_13, x_14, x_15, x_16, x_76); +x_79 = l_Lean_Meta_forallTelescope___at_Lean_Meta_mapForallTelescope_x27___spec__1___rarg(x_75, x_78, x_13, x_14, x_15, x_16, x_76); if (lean_obj_tag(x_79) == 0) { lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; uint8_t x_84; @@ -22120,7 +22120,7 @@ lean_inc(x_16); lean_inc(x_15); lean_inc(x_14); lean_inc(x_4); -x_40 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_36, x_4, x_14, x_15, x_16, x_17, x_37); +x_40 = l_Lean_Meta_forallTelescope___at_Lean_Meta_mapForallTelescope_x27___spec__1___rarg(x_36, x_4, x_14, x_15, x_16, x_17, x_37); if (lean_obj_tag(x_40) == 0) { lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; uint8_t x_45; @@ -22364,7 +22364,7 @@ lean_inc(x_16); lean_inc(x_15); lean_inc(x_14); lean_inc(x_4); -x_78 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_75, x_4, x_14, x_15, x_16, x_17, x_76); +x_78 = l_Lean_Meta_forallTelescope___at_Lean_Meta_mapForallTelescope_x27___spec__1___rarg(x_75, x_4, x_14, x_15, x_16, x_17, x_76); if (lean_obj_tag(x_78) == 0) { lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; uint8_t x_83; @@ -22730,7 +22730,7 @@ lean_inc(x_16); lean_inc(x_15); lean_inc(x_14); lean_inc(x_13); -x_40 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_35, x_39, x_13, x_14, x_15, x_16, x_36); +x_40 = l_Lean_Meta_forallTelescope___at_Lean_Meta_mapForallTelescope_x27___spec__1___rarg(x_35, x_39, x_13, x_14, x_15, x_16, x_36); if (lean_obj_tag(x_40) == 0) { lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; uint8_t x_45; @@ -22969,7 +22969,7 @@ lean_inc(x_16); lean_inc(x_15); lean_inc(x_14); lean_inc(x_13); -x_79 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_75, x_78, x_13, x_14, x_15, x_16, x_76); +x_79 = l_Lean_Meta_forallTelescope___at_Lean_Meta_mapForallTelescope_x27___spec__1___rarg(x_75, x_78, x_13, x_14, x_15, x_16, x_76); if (lean_obj_tag(x_79) == 0) { lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; uint8_t x_84; @@ -23329,7 +23329,7 @@ lean_inc(x_16); lean_inc(x_15); lean_inc(x_14); lean_inc(x_4); -x_40 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_36, x_4, x_14, x_15, x_16, x_17, x_37); +x_40 = l_Lean_Meta_forallTelescope___at_Lean_Meta_mapForallTelescope_x27___spec__1___rarg(x_36, x_4, x_14, x_15, x_16, x_17, x_37); if (lean_obj_tag(x_40) == 0) { lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; uint8_t x_45; @@ -23573,7 +23573,7 @@ lean_inc(x_16); lean_inc(x_15); lean_inc(x_14); lean_inc(x_4); -x_78 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_75, x_4, x_14, x_15, x_16, x_17, x_76); +x_78 = l_Lean_Meta_forallTelescope___at_Lean_Meta_mapForallTelescope_x27___spec__1___rarg(x_75, x_4, x_14, x_15, x_16, x_17, x_76); if (lean_obj_tag(x_78) == 0) { lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; uint8_t x_83; @@ -23939,7 +23939,7 @@ lean_inc(x_16); lean_inc(x_15); lean_inc(x_14); lean_inc(x_13); -x_40 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_35, x_39, x_13, x_14, x_15, x_16, x_36); +x_40 = l_Lean_Meta_forallTelescope___at_Lean_Meta_mapForallTelescope_x27___spec__1___rarg(x_35, x_39, x_13, x_14, x_15, x_16, x_36); if (lean_obj_tag(x_40) == 0) { lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; uint8_t x_45; @@ -24178,7 +24178,7 @@ lean_inc(x_16); lean_inc(x_15); lean_inc(x_14); lean_inc(x_13); -x_79 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_75, x_78, x_13, x_14, x_15, x_16, x_76); +x_79 = l_Lean_Meta_forallTelescope___at_Lean_Meta_mapForallTelescope_x27___spec__1___rarg(x_75, x_78, x_13, x_14, x_15, x_16, x_76); if (lean_obj_tag(x_79) == 0) { lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; uint8_t x_84; @@ -24537,7 +24537,7 @@ lean_inc(x_16); lean_inc(x_15); lean_inc(x_14); lean_inc(x_13); -x_40 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_35, x_39, x_13, x_14, x_15, x_16, x_36); +x_40 = l_Lean_Meta_forallTelescope___at_Lean_Meta_mapForallTelescope_x27___spec__1___rarg(x_35, x_39, x_13, x_14, x_15, x_16, x_36); if (lean_obj_tag(x_40) == 0) { lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; uint8_t x_45; @@ -24776,7 +24776,7 @@ lean_inc(x_16); lean_inc(x_15); lean_inc(x_14); lean_inc(x_13); -x_79 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_75, x_78, x_13, x_14, x_15, x_16, x_76); +x_79 = l_Lean_Meta_forallTelescope___at_Lean_Meta_mapForallTelescope_x27___spec__1___rarg(x_75, x_78, x_13, x_14, x_15, x_16, x_76); if (lean_obj_tag(x_79) == 0) { lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; uint8_t x_84; @@ -25135,7 +25135,7 @@ lean_inc(x_16); lean_inc(x_15); lean_inc(x_14); lean_inc(x_13); -x_40 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_35, x_39, x_13, x_14, x_15, x_16, x_36); +x_40 = l_Lean_Meta_forallTelescope___at_Lean_Meta_mapForallTelescope_x27___spec__1___rarg(x_35, x_39, x_13, x_14, x_15, x_16, x_36); if (lean_obj_tag(x_40) == 0) { lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; uint8_t x_45; @@ -25374,7 +25374,7 @@ lean_inc(x_16); lean_inc(x_15); lean_inc(x_14); lean_inc(x_13); -x_79 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_75, x_78, x_13, x_14, x_15, x_16, x_76); +x_79 = l_Lean_Meta_forallTelescope___at_Lean_Meta_mapForallTelescope_x27___spec__1___rarg(x_75, x_78, x_13, x_14, x_15, x_16, x_76); if (lean_obj_tag(x_79) == 0) { lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; uint8_t x_84; @@ -25900,7 +25900,7 @@ lean_inc(x_16); lean_inc(x_15); lean_inc(x_14); lean_inc(x_4); -x_40 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_36, x_4, x_14, x_15, x_16, x_17, x_37); +x_40 = l_Lean_Meta_forallTelescope___at_Lean_Meta_mapForallTelescope_x27___spec__1___rarg(x_36, x_4, x_14, x_15, x_16, x_17, x_37); if (lean_obj_tag(x_40) == 0) { lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; uint8_t x_45; @@ -26144,7 +26144,7 @@ lean_inc(x_16); lean_inc(x_15); lean_inc(x_14); lean_inc(x_4); -x_78 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_75, x_4, x_14, x_15, x_16, x_17, x_76); +x_78 = l_Lean_Meta_forallTelescope___at_Lean_Meta_mapForallTelescope_x27___spec__1___rarg(x_75, x_4, x_14, x_15, x_16, x_17, x_76); if (lean_obj_tag(x_78) == 0) { lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; uint8_t x_83; @@ -26510,7 +26510,7 @@ lean_inc(x_16); lean_inc(x_15); lean_inc(x_14); lean_inc(x_13); -x_40 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_35, x_39, x_13, x_14, x_15, x_16, x_36); +x_40 = l_Lean_Meta_forallTelescope___at_Lean_Meta_mapForallTelescope_x27___spec__1___rarg(x_35, x_39, x_13, x_14, x_15, x_16, x_36); if (lean_obj_tag(x_40) == 0) { lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; uint8_t x_45; @@ -26749,7 +26749,7 @@ lean_inc(x_16); lean_inc(x_15); lean_inc(x_14); lean_inc(x_13); -x_79 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_75, x_78, x_13, x_14, x_15, x_16, x_76); +x_79 = l_Lean_Meta_forallTelescope___at_Lean_Meta_mapForallTelescope_x27___spec__1___rarg(x_75, x_78, x_13, x_14, x_15, x_16, x_76); if (lean_obj_tag(x_79) == 0) { lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; uint8_t x_84; @@ -27109,7 +27109,7 @@ lean_inc(x_16); lean_inc(x_15); lean_inc(x_14); lean_inc(x_4); -x_40 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_36, x_4, x_14, x_15, x_16, x_17, x_37); +x_40 = l_Lean_Meta_forallTelescope___at_Lean_Meta_mapForallTelescope_x27___spec__1___rarg(x_36, x_4, x_14, x_15, x_16, x_17, x_37); if (lean_obj_tag(x_40) == 0) { lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; uint8_t x_45; @@ -27353,7 +27353,7 @@ lean_inc(x_16); lean_inc(x_15); lean_inc(x_14); lean_inc(x_4); -x_78 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_75, x_4, x_14, x_15, x_16, x_17, x_76); +x_78 = l_Lean_Meta_forallTelescope___at_Lean_Meta_mapForallTelescope_x27___spec__1___rarg(x_75, x_4, x_14, x_15, x_16, x_17, x_76); if (lean_obj_tag(x_78) == 0) { lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; uint8_t x_83; @@ -27719,7 +27719,7 @@ lean_inc(x_16); lean_inc(x_15); lean_inc(x_14); lean_inc(x_13); -x_40 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_35, x_39, x_13, x_14, x_15, x_16, x_36); +x_40 = l_Lean_Meta_forallTelescope___at_Lean_Meta_mapForallTelescope_x27___spec__1___rarg(x_35, x_39, x_13, x_14, x_15, x_16, x_36); if (lean_obj_tag(x_40) == 0) { lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; uint8_t x_45; @@ -27958,7 +27958,7 @@ lean_inc(x_16); lean_inc(x_15); lean_inc(x_14); lean_inc(x_13); -x_79 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_75, x_78, x_13, x_14, x_15, x_16, x_76); +x_79 = l_Lean_Meta_forallTelescope___at_Lean_Meta_mapForallTelescope_x27___spec__1___rarg(x_75, x_78, x_13, x_14, x_15, x_16, x_76); if (lean_obj_tag(x_79) == 0) { lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; uint8_t x_84; @@ -28317,7 +28317,7 @@ lean_inc(x_16); lean_inc(x_15); lean_inc(x_14); lean_inc(x_13); -x_40 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_35, x_39, x_13, x_14, x_15, x_16, x_36); +x_40 = l_Lean_Meta_forallTelescope___at_Lean_Meta_mapForallTelescope_x27___spec__1___rarg(x_35, x_39, x_13, x_14, x_15, x_16, x_36); if (lean_obj_tag(x_40) == 0) { lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; uint8_t x_45; @@ -28556,7 +28556,7 @@ lean_inc(x_16); lean_inc(x_15); lean_inc(x_14); lean_inc(x_13); -x_79 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_75, x_78, x_13, x_14, x_15, x_16, x_76); +x_79 = l_Lean_Meta_forallTelescope___at_Lean_Meta_mapForallTelescope_x27___spec__1___rarg(x_75, x_78, x_13, x_14, x_15, x_16, x_76); if (lean_obj_tag(x_79) == 0) { lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; uint8_t x_84; @@ -28915,7 +28915,7 @@ lean_inc(x_16); lean_inc(x_15); lean_inc(x_14); lean_inc(x_13); -x_40 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_35, x_39, x_13, x_14, x_15, x_16, x_36); +x_40 = l_Lean_Meta_forallTelescope___at_Lean_Meta_mapForallTelescope_x27___spec__1___rarg(x_35, x_39, x_13, x_14, x_15, x_16, x_36); if (lean_obj_tag(x_40) == 0) { lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; uint8_t x_45; @@ -29154,7 +29154,7 @@ lean_inc(x_16); lean_inc(x_15); lean_inc(x_14); lean_inc(x_13); -x_79 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_75, x_78, x_13, x_14, x_15, x_16, x_76); +x_79 = l_Lean_Meta_forallTelescope___at_Lean_Meta_mapForallTelescope_x27___spec__1___rarg(x_75, x_78, x_13, x_14, x_15, x_16, x_76); if (lean_obj_tag(x_79) == 0) { lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; uint8_t x_84; @@ -29680,7 +29680,7 @@ lean_inc(x_16); lean_inc(x_15); lean_inc(x_14); lean_inc(x_4); -x_40 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_36, x_4, x_14, x_15, x_16, x_17, x_37); +x_40 = l_Lean_Meta_forallTelescope___at_Lean_Meta_mapForallTelescope_x27___spec__1___rarg(x_36, x_4, x_14, x_15, x_16, x_17, x_37); if (lean_obj_tag(x_40) == 0) { lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; uint8_t x_45; @@ -29924,7 +29924,7 @@ lean_inc(x_16); lean_inc(x_15); lean_inc(x_14); lean_inc(x_4); -x_78 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_75, x_4, x_14, x_15, x_16, x_17, x_76); +x_78 = l_Lean_Meta_forallTelescope___at_Lean_Meta_mapForallTelescope_x27___spec__1___rarg(x_75, x_4, x_14, x_15, x_16, x_17, x_76); if (lean_obj_tag(x_78) == 0) { lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; uint8_t x_83; @@ -30290,7 +30290,7 @@ lean_inc(x_16); lean_inc(x_15); lean_inc(x_14); lean_inc(x_13); -x_40 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_35, x_39, x_13, x_14, x_15, x_16, x_36); +x_40 = l_Lean_Meta_forallTelescope___at_Lean_Meta_mapForallTelescope_x27___spec__1___rarg(x_35, x_39, x_13, x_14, x_15, x_16, x_36); if (lean_obj_tag(x_40) == 0) { lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; uint8_t x_45; @@ -30529,7 +30529,7 @@ lean_inc(x_16); lean_inc(x_15); lean_inc(x_14); lean_inc(x_13); -x_79 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_75, x_78, x_13, x_14, x_15, x_16, x_76); +x_79 = l_Lean_Meta_forallTelescope___at_Lean_Meta_mapForallTelescope_x27___spec__1___rarg(x_75, x_78, x_13, x_14, x_15, x_16, x_76); if (lean_obj_tag(x_79) == 0) { lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; uint8_t x_84; @@ -30889,7 +30889,7 @@ lean_inc(x_16); lean_inc(x_15); lean_inc(x_14); lean_inc(x_4); -x_40 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_36, x_4, x_14, x_15, x_16, x_17, x_37); +x_40 = l_Lean_Meta_forallTelescope___at_Lean_Meta_mapForallTelescope_x27___spec__1___rarg(x_36, x_4, x_14, x_15, x_16, x_17, x_37); if (lean_obj_tag(x_40) == 0) { lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; uint8_t x_45; @@ -31133,7 +31133,7 @@ lean_inc(x_16); lean_inc(x_15); lean_inc(x_14); lean_inc(x_4); -x_78 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_75, x_4, x_14, x_15, x_16, x_17, x_76); +x_78 = l_Lean_Meta_forallTelescope___at_Lean_Meta_mapForallTelescope_x27___spec__1___rarg(x_75, x_4, x_14, x_15, x_16, x_17, x_76); if (lean_obj_tag(x_78) == 0) { lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; uint8_t x_83; @@ -31499,7 +31499,7 @@ lean_inc(x_16); lean_inc(x_15); lean_inc(x_14); lean_inc(x_13); -x_40 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_35, x_39, x_13, x_14, x_15, x_16, x_36); +x_40 = l_Lean_Meta_forallTelescope___at_Lean_Meta_mapForallTelescope_x27___spec__1___rarg(x_35, x_39, x_13, x_14, x_15, x_16, x_36); if (lean_obj_tag(x_40) == 0) { lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; uint8_t x_45; @@ -31738,7 +31738,7 @@ lean_inc(x_16); lean_inc(x_15); lean_inc(x_14); lean_inc(x_13); -x_79 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_75, x_78, x_13, x_14, x_15, x_16, x_76); +x_79 = l_Lean_Meta_forallTelescope___at_Lean_Meta_mapForallTelescope_x27___spec__1___rarg(x_75, x_78, x_13, x_14, x_15, x_16, x_76); if (lean_obj_tag(x_79) == 0) { lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; uint8_t x_84; @@ -32097,7 +32097,7 @@ lean_inc(x_16); lean_inc(x_15); lean_inc(x_14); lean_inc(x_13); -x_40 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_35, x_39, x_13, x_14, x_15, x_16, x_36); +x_40 = l_Lean_Meta_forallTelescope___at_Lean_Meta_mapForallTelescope_x27___spec__1___rarg(x_35, x_39, x_13, x_14, x_15, x_16, x_36); if (lean_obj_tag(x_40) == 0) { lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; uint8_t x_45; @@ -32336,7 +32336,7 @@ lean_inc(x_16); lean_inc(x_15); lean_inc(x_14); lean_inc(x_13); -x_79 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_75, x_78, x_13, x_14, x_15, x_16, x_76); +x_79 = l_Lean_Meta_forallTelescope___at_Lean_Meta_mapForallTelescope_x27___spec__1___rarg(x_75, x_78, x_13, x_14, x_15, x_16, x_76); if (lean_obj_tag(x_79) == 0) { lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; uint8_t x_84; @@ -32695,7 +32695,7 @@ lean_inc(x_16); lean_inc(x_15); lean_inc(x_14); lean_inc(x_13); -x_40 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_35, x_39, x_13, x_14, x_15, x_16, x_36); +x_40 = l_Lean_Meta_forallTelescope___at_Lean_Meta_mapForallTelescope_x27___spec__1___rarg(x_35, x_39, x_13, x_14, x_15, x_16, x_36); if (lean_obj_tag(x_40) == 0) { lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; uint8_t x_45; @@ -32934,7 +32934,7 @@ lean_inc(x_16); lean_inc(x_15); lean_inc(x_14); lean_inc(x_13); -x_79 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_75, x_78, x_13, x_14, x_15, x_16, x_76); +x_79 = l_Lean_Meta_forallTelescope___at_Lean_Meta_mapForallTelescope_x27___spec__1___rarg(x_75, x_78, x_13, x_14, x_15, x_16, x_76); if (lean_obj_tag(x_79) == 0) { lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; uint8_t x_84; @@ -33460,7 +33460,7 @@ lean_inc(x_16); lean_inc(x_15); lean_inc(x_14); lean_inc(x_4); -x_40 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_36, x_4, x_14, x_15, x_16, x_17, x_37); +x_40 = l_Lean_Meta_forallTelescope___at_Lean_Meta_mapForallTelescope_x27___spec__1___rarg(x_36, x_4, x_14, x_15, x_16, x_17, x_37); if (lean_obj_tag(x_40) == 0) { lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; uint8_t x_45; @@ -33704,7 +33704,7 @@ lean_inc(x_16); lean_inc(x_15); lean_inc(x_14); lean_inc(x_4); -x_78 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_75, x_4, x_14, x_15, x_16, x_17, x_76); +x_78 = l_Lean_Meta_forallTelescope___at_Lean_Meta_mapForallTelescope_x27___spec__1___rarg(x_75, x_4, x_14, x_15, x_16, x_17, x_76); if (lean_obj_tag(x_78) == 0) { lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; uint8_t x_83; @@ -34070,7 +34070,7 @@ lean_inc(x_16); lean_inc(x_15); lean_inc(x_14); lean_inc(x_13); -x_40 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_35, x_39, x_13, x_14, x_15, x_16, x_36); +x_40 = l_Lean_Meta_forallTelescope___at_Lean_Meta_mapForallTelescope_x27___spec__1___rarg(x_35, x_39, x_13, x_14, x_15, x_16, x_36); if (lean_obj_tag(x_40) == 0) { lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; uint8_t x_45; @@ -34309,7 +34309,7 @@ lean_inc(x_16); lean_inc(x_15); lean_inc(x_14); lean_inc(x_13); -x_79 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_75, x_78, x_13, x_14, x_15, x_16, x_76); +x_79 = l_Lean_Meta_forallTelescope___at_Lean_Meta_mapForallTelescope_x27___spec__1___rarg(x_75, x_78, x_13, x_14, x_15, x_16, x_76); if (lean_obj_tag(x_79) == 0) { lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; uint8_t x_84; @@ -34669,7 +34669,7 @@ lean_inc(x_16); lean_inc(x_15); lean_inc(x_14); lean_inc(x_4); -x_40 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_36, x_4, x_14, x_15, x_16, x_17, x_37); +x_40 = l_Lean_Meta_forallTelescope___at_Lean_Meta_mapForallTelescope_x27___spec__1___rarg(x_36, x_4, x_14, x_15, x_16, x_17, x_37); if (lean_obj_tag(x_40) == 0) { lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; uint8_t x_45; @@ -34913,7 +34913,7 @@ lean_inc(x_16); lean_inc(x_15); lean_inc(x_14); lean_inc(x_4); -x_78 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_75, x_4, x_14, x_15, x_16, x_17, x_76); +x_78 = l_Lean_Meta_forallTelescope___at_Lean_Meta_mapForallTelescope_x27___spec__1___rarg(x_75, x_4, x_14, x_15, x_16, x_17, x_76); if (lean_obj_tag(x_78) == 0) { lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; uint8_t x_83; @@ -35279,7 +35279,7 @@ lean_inc(x_16); lean_inc(x_15); lean_inc(x_14); lean_inc(x_13); -x_40 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_35, x_39, x_13, x_14, x_15, x_16, x_36); +x_40 = l_Lean_Meta_forallTelescope___at_Lean_Meta_mapForallTelescope_x27___spec__1___rarg(x_35, x_39, x_13, x_14, x_15, x_16, x_36); if (lean_obj_tag(x_40) == 0) { lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; uint8_t x_45; @@ -35518,7 +35518,7 @@ lean_inc(x_16); lean_inc(x_15); lean_inc(x_14); lean_inc(x_13); -x_79 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_75, x_78, x_13, x_14, x_15, x_16, x_76); +x_79 = l_Lean_Meta_forallTelescope___at_Lean_Meta_mapForallTelescope_x27___spec__1___rarg(x_75, x_78, x_13, x_14, x_15, x_16, x_76); if (lean_obj_tag(x_79) == 0) { lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; uint8_t x_84; @@ -35877,7 +35877,7 @@ lean_inc(x_16); lean_inc(x_15); lean_inc(x_14); lean_inc(x_13); -x_40 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_35, x_39, x_13, x_14, x_15, x_16, x_36); +x_40 = l_Lean_Meta_forallTelescope___at_Lean_Meta_mapForallTelescope_x27___spec__1___rarg(x_35, x_39, x_13, x_14, x_15, x_16, x_36); if (lean_obj_tag(x_40) == 0) { lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; uint8_t x_45; @@ -36116,7 +36116,7 @@ lean_inc(x_16); lean_inc(x_15); lean_inc(x_14); lean_inc(x_13); -x_79 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_75, x_78, x_13, x_14, x_15, x_16, x_76); +x_79 = l_Lean_Meta_forallTelescope___at_Lean_Meta_mapForallTelescope_x27___spec__1___rarg(x_75, x_78, x_13, x_14, x_15, x_16, x_76); if (lean_obj_tag(x_79) == 0) { lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; uint8_t x_84; @@ -36475,7 +36475,7 @@ lean_inc(x_16); lean_inc(x_15); lean_inc(x_14); lean_inc(x_13); -x_40 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_35, x_39, x_13, x_14, x_15, x_16, x_36); +x_40 = l_Lean_Meta_forallTelescope___at_Lean_Meta_mapForallTelescope_x27___spec__1___rarg(x_35, x_39, x_13, x_14, x_15, x_16, x_36); if (lean_obj_tag(x_40) == 0) { lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; uint8_t x_45; @@ -36714,7 +36714,7 @@ lean_inc(x_16); lean_inc(x_15); lean_inc(x_14); lean_inc(x_13); -x_79 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_75, x_78, x_13, x_14, x_15, x_16, x_76); +x_79 = l_Lean_Meta_forallTelescope___at_Lean_Meta_mapForallTelescope_x27___spec__1___rarg(x_75, x_78, x_13, x_14, x_15, x_16, x_76); if (lean_obj_tag(x_79) == 0) { lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; uint8_t x_84; @@ -37240,7 +37240,7 @@ lean_inc(x_16); lean_inc(x_15); lean_inc(x_14); lean_inc(x_4); -x_40 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_36, x_4, x_14, x_15, x_16, x_17, x_37); +x_40 = l_Lean_Meta_forallTelescope___at_Lean_Meta_mapForallTelescope_x27___spec__1___rarg(x_36, x_4, x_14, x_15, x_16, x_17, x_37); if (lean_obj_tag(x_40) == 0) { lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; uint8_t x_45; @@ -37484,7 +37484,7 @@ lean_inc(x_16); lean_inc(x_15); lean_inc(x_14); lean_inc(x_4); -x_78 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_75, x_4, x_14, x_15, x_16, x_17, x_76); +x_78 = l_Lean_Meta_forallTelescope___at_Lean_Meta_mapForallTelescope_x27___spec__1___rarg(x_75, x_4, x_14, x_15, x_16, x_17, x_76); if (lean_obj_tag(x_78) == 0) { lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; uint8_t x_83; @@ -37850,7 +37850,7 @@ lean_inc(x_16); lean_inc(x_15); lean_inc(x_14); lean_inc(x_13); -x_40 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_35, x_39, x_13, x_14, x_15, x_16, x_36); +x_40 = l_Lean_Meta_forallTelescope___at_Lean_Meta_mapForallTelescope_x27___spec__1___rarg(x_35, x_39, x_13, x_14, x_15, x_16, x_36); if (lean_obj_tag(x_40) == 0) { lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; uint8_t x_45; @@ -38089,7 +38089,7 @@ lean_inc(x_16); lean_inc(x_15); lean_inc(x_14); lean_inc(x_13); -x_79 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_75, x_78, x_13, x_14, x_15, x_16, x_76); +x_79 = l_Lean_Meta_forallTelescope___at_Lean_Meta_mapForallTelescope_x27___spec__1___rarg(x_75, x_78, x_13, x_14, x_15, x_16, x_76); if (lean_obj_tag(x_79) == 0) { lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; uint8_t x_84; @@ -38449,7 +38449,7 @@ lean_inc(x_16); lean_inc(x_15); lean_inc(x_14); lean_inc(x_4); -x_40 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_36, x_4, x_14, x_15, x_16, x_17, x_37); +x_40 = l_Lean_Meta_forallTelescope___at_Lean_Meta_mapForallTelescope_x27___spec__1___rarg(x_36, x_4, x_14, x_15, x_16, x_17, x_37); if (lean_obj_tag(x_40) == 0) { lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; uint8_t x_45; @@ -38693,7 +38693,7 @@ lean_inc(x_16); lean_inc(x_15); lean_inc(x_14); lean_inc(x_4); -x_78 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_75, x_4, x_14, x_15, x_16, x_17, x_76); +x_78 = l_Lean_Meta_forallTelescope___at_Lean_Meta_mapForallTelescope_x27___spec__1___rarg(x_75, x_4, x_14, x_15, x_16, x_17, x_76); if (lean_obj_tag(x_78) == 0) { lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; uint8_t x_83; @@ -39059,7 +39059,7 @@ lean_inc(x_16); lean_inc(x_15); lean_inc(x_14); lean_inc(x_13); -x_40 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_35, x_39, x_13, x_14, x_15, x_16, x_36); +x_40 = l_Lean_Meta_forallTelescope___at_Lean_Meta_mapForallTelescope_x27___spec__1___rarg(x_35, x_39, x_13, x_14, x_15, x_16, x_36); if (lean_obj_tag(x_40) == 0) { lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; uint8_t x_45; @@ -39298,7 +39298,7 @@ lean_inc(x_16); lean_inc(x_15); lean_inc(x_14); lean_inc(x_13); -x_79 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_75, x_78, x_13, x_14, x_15, x_16, x_76); +x_79 = l_Lean_Meta_forallTelescope___at_Lean_Meta_mapForallTelescope_x27___spec__1___rarg(x_75, x_78, x_13, x_14, x_15, x_16, x_76); if (lean_obj_tag(x_79) == 0) { lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; uint8_t x_84; @@ -39657,7 +39657,7 @@ lean_inc(x_16); lean_inc(x_15); lean_inc(x_14); lean_inc(x_13); -x_40 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_35, x_39, x_13, x_14, x_15, x_16, x_36); +x_40 = l_Lean_Meta_forallTelescope___at_Lean_Meta_mapForallTelescope_x27___spec__1___rarg(x_35, x_39, x_13, x_14, x_15, x_16, x_36); if (lean_obj_tag(x_40) == 0) { lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; uint8_t x_45; @@ -39896,7 +39896,7 @@ lean_inc(x_16); lean_inc(x_15); lean_inc(x_14); lean_inc(x_13); -x_79 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_75, x_78, x_13, x_14, x_15, x_16, x_76); +x_79 = l_Lean_Meta_forallTelescope___at_Lean_Meta_mapForallTelescope_x27___spec__1___rarg(x_75, x_78, x_13, x_14, x_15, x_16, x_76); if (lean_obj_tag(x_79) == 0) { lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; uint8_t x_84; @@ -40255,7 +40255,7 @@ lean_inc(x_16); lean_inc(x_15); lean_inc(x_14); lean_inc(x_13); -x_40 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_35, x_39, x_13, x_14, x_15, x_16, x_36); +x_40 = l_Lean_Meta_forallTelescope___at_Lean_Meta_mapForallTelescope_x27___spec__1___rarg(x_35, x_39, x_13, x_14, x_15, x_16, x_36); if (lean_obj_tag(x_40) == 0) { lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; uint8_t x_45; @@ -40494,7 +40494,7 @@ lean_inc(x_16); lean_inc(x_15); lean_inc(x_14); lean_inc(x_13); -x_79 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_75, x_78, x_13, x_14, x_15, x_16, x_76); +x_79 = l_Lean_Meta_forallTelescope___at_Lean_Meta_mapForallTelescope_x27___spec__1___rarg(x_75, x_78, x_13, x_14, x_15, x_16, x_76); if (lean_obj_tag(x_79) == 0) { lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; uint8_t x_84; @@ -40988,7 +40988,7 @@ lean_closure_set(x_19, 1, x_4); lean_closure_set(x_19, 2, x_17); lean_closure_set(x_19, 3, x_18); lean_closure_set(x_19, 4, x_13); -x_20 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_15, x_19, x_8, x_9, x_10, x_11, x_16); +x_20 = l_Lean_Meta_forallTelescope___at_Lean_Meta_mapForallTelescope_x27___spec__1___rarg(x_15, x_19, x_8, x_9, x_10, x_11, x_16); return x_20; } else @@ -41350,7 +41350,7 @@ lean_inc(x_14); lean_inc(x_13); lean_inc(x_12); lean_inc(x_5); -x_22 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_5, x_21, x_12, x_13, x_14, x_15, x_20); +x_22 = l_Lean_Meta_forallTelescope___at_Lean_Meta_mapForallTelescope_x27___spec__1___rarg(x_5, x_21, x_12, x_13, x_14, x_15, x_20); if (lean_obj_tag(x_22) == 0) { lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; uint8_t 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; @@ -41912,7 +41912,7 @@ lean_closure_set(x_19, 1, x_4); lean_closure_set(x_19, 2, x_17); lean_closure_set(x_19, 3, x_18); lean_closure_set(x_19, 4, x_13); -x_20 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_15, x_19, x_8, x_9, x_10, x_11, x_16); +x_20 = l_Lean_Meta_forallTelescope___at_Lean_Meta_mapForallTelescope_x27___spec__1___rarg(x_15, x_19, x_8, x_9, x_10, x_11, x_16); return x_20; } else @@ -42210,7 +42210,7 @@ lean_inc(x_14); lean_inc(x_13); lean_inc(x_12); lean_inc(x_5); -x_22 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_5, x_21, x_12, x_13, x_14, x_15, x_20); +x_22 = l_Lean_Meta_forallTelescope___at_Lean_Meta_mapForallTelescope_x27___spec__1___rarg(x_5, x_21, x_12, x_13, x_14, x_15, x_20); if (lean_obj_tag(x_22) == 0) { lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; uint8_t 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; @@ -42772,7 +42772,7 @@ lean_closure_set(x_19, 1, x_4); lean_closure_set(x_19, 2, x_17); lean_closure_set(x_19, 3, x_18); lean_closure_set(x_19, 4, x_13); -x_20 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_15, x_19, x_8, x_9, x_10, x_11, x_16); +x_20 = l_Lean_Meta_forallTelescope___at_Lean_Meta_mapForallTelescope_x27___spec__1___rarg(x_15, x_19, x_8, x_9, x_10, x_11, x_16); return x_20; } else @@ -43070,7 +43070,7 @@ lean_inc(x_14); lean_inc(x_13); lean_inc(x_12); lean_inc(x_5); -x_22 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_5, x_21, x_12, x_13, x_14, x_15, x_20); +x_22 = l_Lean_Meta_forallTelescope___at_Lean_Meta_mapForallTelescope_x27___spec__1___rarg(x_5, x_21, x_12, x_13, x_14, x_15, x_20); if (lean_obj_tag(x_22) == 0) { lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; uint8_t 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; @@ -43632,7 +43632,7 @@ lean_closure_set(x_19, 1, x_4); lean_closure_set(x_19, 2, x_17); lean_closure_set(x_19, 3, x_18); lean_closure_set(x_19, 4, x_13); -x_20 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_15, x_19, x_8, x_9, x_10, x_11, x_16); +x_20 = l_Lean_Meta_forallTelescope___at_Lean_Meta_mapForallTelescope_x27___spec__1___rarg(x_15, x_19, x_8, x_9, x_10, x_11, x_16); return x_20; } else @@ -43930,7 +43930,7 @@ lean_inc(x_14); lean_inc(x_13); lean_inc(x_12); lean_inc(x_5); -x_22 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_5, x_21, x_12, x_13, x_14, x_15, x_20); +x_22 = l_Lean_Meta_forallTelescope___at_Lean_Meta_mapForallTelescope_x27___spec__1___rarg(x_5, x_21, x_12, x_13, x_14, x_15, x_20); if (lean_obj_tag(x_22) == 0) { lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; uint8_t 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; @@ -44492,7 +44492,7 @@ lean_closure_set(x_19, 1, x_4); lean_closure_set(x_19, 2, x_17); lean_closure_set(x_19, 3, x_18); lean_closure_set(x_19, 4, x_13); -x_20 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_15, x_19, x_8, x_9, x_10, x_11, x_16); +x_20 = l_Lean_Meta_forallTelescope___at_Lean_Meta_mapForallTelescope_x27___spec__1___rarg(x_15, x_19, x_8, x_9, x_10, x_11, x_16); return x_20; } else @@ -44790,7 +44790,7 @@ lean_inc(x_14); lean_inc(x_13); lean_inc(x_12); lean_inc(x_5); -x_22 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_5, x_21, x_12, x_13, x_14, x_15, x_20); +x_22 = l_Lean_Meta_forallTelescope___at_Lean_Meta_mapForallTelescope_x27___spec__1___rarg(x_5, x_21, x_12, x_13, x_14, x_15, x_20); if (lean_obj_tag(x_22) == 0) { lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; uint8_t 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; @@ -45408,7 +45408,7 @@ lean_closure_set(x_19, 1, x_4); lean_closure_set(x_19, 2, x_17); lean_closure_set(x_19, 3, x_18); lean_closure_set(x_19, 4, x_13); -x_20 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_15, x_19, x_8, x_9, x_10, x_11, x_16); +x_20 = l_Lean_Meta_forallTelescope___at_Lean_Meta_mapForallTelescope_x27___spec__1___rarg(x_15, x_19, x_8, x_9, x_10, x_11, x_16); return x_20; } else @@ -45706,7 +45706,7 @@ lean_inc(x_14); lean_inc(x_13); lean_inc(x_12); lean_inc(x_5); -x_22 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_5, x_21, x_12, x_13, x_14, x_15, x_20); +x_22 = l_Lean_Meta_forallTelescope___at_Lean_Meta_mapForallTelescope_x27___spec__1___rarg(x_5, x_21, x_12, x_13, x_14, x_15, x_20); if (lean_obj_tag(x_22) == 0) { lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; uint8_t 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; @@ -46268,7 +46268,7 @@ lean_closure_set(x_19, 1, x_4); lean_closure_set(x_19, 2, x_17); lean_closure_set(x_19, 3, x_18); lean_closure_set(x_19, 4, x_13); -x_20 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_15, x_19, x_8, x_9, x_10, x_11, x_16); +x_20 = l_Lean_Meta_forallTelescope___at_Lean_Meta_mapForallTelescope_x27___spec__1___rarg(x_15, x_19, x_8, x_9, x_10, x_11, x_16); return x_20; } else @@ -46566,7 +46566,7 @@ lean_inc(x_14); lean_inc(x_13); lean_inc(x_12); lean_inc(x_5); -x_22 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_5, x_21, x_12, x_13, x_14, x_15, x_20); +x_22 = l_Lean_Meta_forallTelescope___at_Lean_Meta_mapForallTelescope_x27___spec__1___rarg(x_5, x_21, x_12, x_13, x_14, x_15, x_20); if (lean_obj_tag(x_22) == 0) { lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; uint8_t 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; @@ -47128,7 +47128,7 @@ lean_closure_set(x_19, 1, x_4); lean_closure_set(x_19, 2, x_17); lean_closure_set(x_19, 3, x_18); lean_closure_set(x_19, 4, x_13); -x_20 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_15, x_19, x_8, x_9, x_10, x_11, x_16); +x_20 = l_Lean_Meta_forallTelescope___at_Lean_Meta_mapForallTelescope_x27___spec__1___rarg(x_15, x_19, x_8, x_9, x_10, x_11, x_16); return x_20; } else @@ -47426,7 +47426,7 @@ lean_inc(x_14); lean_inc(x_13); lean_inc(x_12); lean_inc(x_5); -x_22 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_5, x_21, x_12, x_13, x_14, x_15, x_20); +x_22 = l_Lean_Meta_forallTelescope___at_Lean_Meta_mapForallTelescope_x27___spec__1___rarg(x_5, x_21, x_12, x_13, x_14, x_15, x_20); if (lean_obj_tag(x_22) == 0) { lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; uint8_t 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; @@ -47988,7 +47988,7 @@ lean_closure_set(x_19, 1, x_4); lean_closure_set(x_19, 2, x_17); lean_closure_set(x_19, 3, x_18); lean_closure_set(x_19, 4, x_13); -x_20 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_15, x_19, x_8, x_9, x_10, x_11, x_16); +x_20 = l_Lean_Meta_forallTelescope___at_Lean_Meta_mapForallTelescope_x27___spec__1___rarg(x_15, x_19, x_8, x_9, x_10, x_11, x_16); return x_20; } else @@ -48286,7 +48286,7 @@ lean_inc(x_14); lean_inc(x_13); lean_inc(x_12); lean_inc(x_5); -x_22 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_5, x_21, x_12, x_13, x_14, x_15, x_20); +x_22 = l_Lean_Meta_forallTelescope___at_Lean_Meta_mapForallTelescope_x27___spec__1___rarg(x_5, x_21, x_12, x_13, x_14, x_15, x_20); if (lean_obj_tag(x_22) == 0) { lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; uint8_t 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; @@ -48848,7 +48848,7 @@ lean_closure_set(x_19, 1, x_4); lean_closure_set(x_19, 2, x_17); lean_closure_set(x_19, 3, x_18); lean_closure_set(x_19, 4, x_13); -x_20 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_15, x_19, x_8, x_9, x_10, x_11, x_16); +x_20 = l_Lean_Meta_forallTelescope___at_Lean_Meta_mapForallTelescope_x27___spec__1___rarg(x_15, x_19, x_8, x_9, x_10, x_11, x_16); return x_20; } else @@ -49146,7 +49146,7 @@ lean_inc(x_14); lean_inc(x_13); lean_inc(x_12); lean_inc(x_5); -x_22 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_5, x_21, x_12, x_13, x_14, x_15, x_20); +x_22 = l_Lean_Meta_forallTelescope___at_Lean_Meta_mapForallTelescope_x27___spec__1___rarg(x_5, x_21, x_12, x_13, x_14, x_15, x_20); if (lean_obj_tag(x_22) == 0) { lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; uint8_t 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; @@ -49693,7 +49693,7 @@ lean_inc(x_7); lean_inc(x_6); lean_inc(x_5); lean_inc(x_27); -x_29 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_27, x_28, x_5, x_6, x_7, x_8, x_26); +x_29 = l_Lean_Meta_forallTelescope___at_Lean_Meta_mapForallTelescope_x27___spec__1___rarg(x_27, x_28, x_5, x_6, x_7, x_8, x_26); if (lean_obj_tag(x_29) == 0) { lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_61; uint8_t x_62; @@ -50038,7 +50038,7 @@ lean_closure_set(x_103, 1, x_1); lean_closure_set(x_103, 2, x_101); lean_closure_set(x_103, 3, x_102); lean_closure_set(x_103, 4, x_97); -x_104 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_99, x_103, x_5, x_6, x_7, x_8, x_100); +x_104 = l_Lean_Meta_forallTelescope___at_Lean_Meta_mapForallTelescope_x27___spec__1___rarg(x_99, x_103, x_5, x_6, x_7, x_8, x_100); return x_104; } else @@ -50172,7 +50172,7 @@ lean_inc(x_7); lean_inc(x_6); lean_inc(x_5); lean_inc(x_133); -x_135 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_133, x_134, x_5, x_6, x_7, x_8, x_132); +x_135 = l_Lean_Meta_forallTelescope___at_Lean_Meta_mapForallTelescope_x27___spec__1___rarg(x_133, x_134, x_5, x_6, x_7, x_8, x_132); if (lean_obj_tag(x_135) == 0) { lean_object* x_136; lean_object* x_137; lean_object* x_138; lean_object* x_167; uint8_t x_168; @@ -50517,7 +50517,7 @@ lean_closure_set(x_209, 1, x_1); lean_closure_set(x_209, 2, x_207); lean_closure_set(x_209, 3, x_208); lean_closure_set(x_209, 4, x_203); -x_210 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_205, x_209, x_5, x_6, x_7, x_8, x_206); +x_210 = l_Lean_Meta_forallTelescope___at_Lean_Meta_mapForallTelescope_x27___spec__1___rarg(x_205, x_209, x_5, x_6, x_7, x_8, x_206); return x_210; } else @@ -50623,7 +50623,7 @@ lean_inc(x_7); lean_inc(x_6); lean_inc(x_5); lean_inc(x_235); -x_237 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_235, x_236, x_5, x_6, x_7, x_8, x_234); +x_237 = l_Lean_Meta_forallTelescope___at_Lean_Meta_mapForallTelescope_x27___spec__1___rarg(x_235, x_236, x_5, x_6, x_7, x_8, x_234); if (lean_obj_tag(x_237) == 0) { lean_object* x_238; lean_object* x_239; lean_object* x_240; lean_object* x_269; uint8_t x_270; @@ -50968,7 +50968,7 @@ lean_closure_set(x_311, 1, x_1); lean_closure_set(x_311, 2, x_309); lean_closure_set(x_311, 3, x_310); lean_closure_set(x_311, 4, x_305); -x_312 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_307, x_311, x_5, x_6, x_7, x_8, x_308); +x_312 = l_Lean_Meta_forallTelescope___at_Lean_Meta_mapForallTelescope_x27___spec__1___rarg(x_307, x_311, x_5, x_6, x_7, x_8, x_308); return x_312; } else @@ -51074,7 +51074,7 @@ lean_inc(x_7); lean_inc(x_6); lean_inc(x_5); lean_inc(x_337); -x_339 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_337, x_338, x_5, x_6, x_7, x_8, x_336); +x_339 = l_Lean_Meta_forallTelescope___at_Lean_Meta_mapForallTelescope_x27___spec__1___rarg(x_337, x_338, x_5, x_6, x_7, x_8, x_336); if (lean_obj_tag(x_339) == 0) { lean_object* x_340; lean_object* x_341; lean_object* x_342; lean_object* x_371; uint8_t x_372; @@ -51419,7 +51419,7 @@ lean_closure_set(x_413, 1, x_1); lean_closure_set(x_413, 2, x_411); lean_closure_set(x_413, 3, x_412); lean_closure_set(x_413, 4, x_407); -x_414 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_409, x_413, x_5, x_6, x_7, x_8, x_410); +x_414 = l_Lean_Meta_forallTelescope___at_Lean_Meta_mapForallTelescope_x27___spec__1___rarg(x_409, x_413, x_5, x_6, x_7, x_8, x_410); return x_414; } else @@ -51525,7 +51525,7 @@ lean_inc(x_7); lean_inc(x_6); lean_inc(x_5); lean_inc(x_439); -x_441 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_439, x_440, x_5, x_6, x_7, x_8, x_438); +x_441 = l_Lean_Meta_forallTelescope___at_Lean_Meta_mapForallTelescope_x27___spec__1___rarg(x_439, x_440, x_5, x_6, x_7, x_8, x_438); if (lean_obj_tag(x_441) == 0) { lean_object* x_442; lean_object* x_443; lean_object* x_444; lean_object* x_473; uint8_t x_474; @@ -51870,7 +51870,7 @@ lean_closure_set(x_515, 1, x_1); lean_closure_set(x_515, 2, x_513); lean_closure_set(x_515, 3, x_514); lean_closure_set(x_515, 4, x_509); -x_516 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_511, x_515, x_5, x_6, x_7, x_8, x_512); +x_516 = l_Lean_Meta_forallTelescope___at_Lean_Meta_mapForallTelescope_x27___spec__1___rarg(x_511, x_515, x_5, x_6, x_7, x_8, x_512); return x_516; } else @@ -51992,7 +51992,7 @@ lean_inc(x_7); lean_inc(x_6); lean_inc(x_5); lean_inc(x_547); -x_549 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_547, x_548, x_5, x_6, x_7, x_8, x_546); +x_549 = l_Lean_Meta_forallTelescope___at_Lean_Meta_mapForallTelescope_x27___spec__1___rarg(x_547, x_548, x_5, x_6, x_7, x_8, x_546); if (lean_obj_tag(x_549) == 0) { lean_object* x_550; lean_object* x_551; lean_object* x_552; lean_object* x_581; uint8_t x_582; @@ -52337,7 +52337,7 @@ lean_closure_set(x_623, 1, x_1); lean_closure_set(x_623, 2, x_621); lean_closure_set(x_623, 3, x_622); lean_closure_set(x_623, 4, x_617); -x_624 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_619, x_623, x_5, x_6, x_7, x_8, x_620); +x_624 = l_Lean_Meta_forallTelescope___at_Lean_Meta_mapForallTelescope_x27___spec__1___rarg(x_619, x_623, x_5, x_6, x_7, x_8, x_620); return x_624; } else @@ -52443,7 +52443,7 @@ lean_inc(x_7); lean_inc(x_6); lean_inc(x_5); lean_inc(x_649); -x_651 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_649, x_650, x_5, x_6, x_7, x_8, x_648); +x_651 = l_Lean_Meta_forallTelescope___at_Lean_Meta_mapForallTelescope_x27___spec__1___rarg(x_649, x_650, x_5, x_6, x_7, x_8, x_648); if (lean_obj_tag(x_651) == 0) { lean_object* x_652; lean_object* x_653; lean_object* x_654; lean_object* x_683; uint8_t x_684; @@ -52788,7 +52788,7 @@ lean_closure_set(x_725, 1, x_1); lean_closure_set(x_725, 2, x_723); lean_closure_set(x_725, 3, x_724); lean_closure_set(x_725, 4, x_719); -x_726 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_721, x_725, x_5, x_6, x_7, x_8, x_722); +x_726 = l_Lean_Meta_forallTelescope___at_Lean_Meta_mapForallTelescope_x27___spec__1___rarg(x_721, x_725, x_5, x_6, x_7, x_8, x_722); return x_726; } else @@ -52894,7 +52894,7 @@ lean_inc(x_7); lean_inc(x_6); lean_inc(x_5); lean_inc(x_751); -x_753 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_751, x_752, x_5, x_6, x_7, x_8, x_750); +x_753 = l_Lean_Meta_forallTelescope___at_Lean_Meta_mapForallTelescope_x27___spec__1___rarg(x_751, x_752, x_5, x_6, x_7, x_8, x_750); if (lean_obj_tag(x_753) == 0) { lean_object* x_754; lean_object* x_755; lean_object* x_756; lean_object* x_785; uint8_t x_786; @@ -53239,7 +53239,7 @@ lean_closure_set(x_827, 1, x_1); lean_closure_set(x_827, 2, x_825); lean_closure_set(x_827, 3, x_826); lean_closure_set(x_827, 4, x_821); -x_828 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_823, x_827, x_5, x_6, x_7, x_8, x_824); +x_828 = l_Lean_Meta_forallTelescope___at_Lean_Meta_mapForallTelescope_x27___spec__1___rarg(x_823, x_827, x_5, x_6, x_7, x_8, x_824); return x_828; } else @@ -53345,7 +53345,7 @@ lean_inc(x_7); lean_inc(x_6); lean_inc(x_5); lean_inc(x_853); -x_855 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_853, x_854, x_5, x_6, x_7, x_8, x_852); +x_855 = l_Lean_Meta_forallTelescope___at_Lean_Meta_mapForallTelescope_x27___spec__1___rarg(x_853, x_854, x_5, x_6, x_7, x_8, x_852); if (lean_obj_tag(x_855) == 0) { lean_object* x_856; lean_object* x_857; lean_object* x_858; lean_object* x_887; uint8_t x_888; @@ -53690,7 +53690,7 @@ lean_closure_set(x_929, 1, x_1); lean_closure_set(x_929, 2, x_927); lean_closure_set(x_929, 3, x_928); lean_closure_set(x_929, 4, x_923); -x_930 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_925, x_929, x_5, x_6, x_7, x_8, x_926); +x_930 = l_Lean_Meta_forallTelescope___at_Lean_Meta_mapForallTelescope_x27___spec__1___rarg(x_925, x_929, x_5, x_6, x_7, x_8, x_926); return x_930; } else @@ -53796,7 +53796,7 @@ lean_inc(x_7); lean_inc(x_6); lean_inc(x_5); lean_inc(x_955); -x_957 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_955, x_956, x_5, x_6, x_7, x_8, x_954); +x_957 = l_Lean_Meta_forallTelescope___at_Lean_Meta_mapForallTelescope_x27___spec__1___rarg(x_955, x_956, x_5, x_6, x_7, x_8, x_954); if (lean_obj_tag(x_957) == 0) { lean_object* x_958; lean_object* x_959; lean_object* x_960; lean_object* x_989; uint8_t x_990; @@ -54141,7 +54141,7 @@ lean_closure_set(x_1031, 1, x_1); lean_closure_set(x_1031, 2, x_1029); lean_closure_set(x_1031, 3, x_1030); lean_closure_set(x_1031, 4, x_1025); -x_1032 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_1027, x_1031, x_5, x_6, x_7, x_8, x_1028); +x_1032 = l_Lean_Meta_forallTelescope___at_Lean_Meta_mapForallTelescope_x27___spec__1___rarg(x_1027, x_1031, x_5, x_6, x_7, x_8, x_1028); return x_1032; } else diff --git a/stage0/stdlib/Lean/PrettyPrinter/Delaborator/TopDownAnalyze.c b/stage0/stdlib/Lean/PrettyPrinter/Delaborator/TopDownAnalyze.c index a5d40ff8f2..ca92fdb1eb 100644 --- a/stage0/stdlib/Lean/PrettyPrinter/Delaborator/TopDownAnalyze.c +++ b/stage0/stdlib/Lean/PrettyPrinter/Delaborator/TopDownAnalyze.c @@ -97,6 +97,7 @@ uint8_t l_Lean_Level_hasParam(lean_object*); 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*); LEAN_EXPORT uint8_t l_Lean_PrettyPrinter_Delaborator_TopDownAnalyze_isHBinOp(lean_object*); uint8_t l_Lean_Expr_isAppOfArity(lean_object*, lean_object*, lean_object*); +uint8_t l_Lean_Expr_isRawNatLit(lean_object*); static lean_object* l_Lean_PrettyPrinter_Delaborator_SubExpr_withLetVarType___at_Lean_PrettyPrinter_Delaborator_TopDownAnalyze_analyze_analyzeLet___spec__14___closed__2; LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Delaborator_TopDownAnalyze_analyze_analyzeConst___lambda__1___boxed(lean_object*, 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__10(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -182,7 +183,6 @@ LEAN_EXPORT uint8_t l_Lean_PrettyPrinter_Delaborator_TopDownAnalyze_isHBinOp___l 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_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; -uint8_t l_Lean_Expr_isNatLit(lean_object*); LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Delaborator_TopDownAnalyze_analyze_analyzeProj(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_Range_forIn_loop___at_Lean_PrettyPrinter_Delaborator_TopDownAnalyze_analyzeAppStagedCore_collectHigherOrders___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_Meta_forallTelescopeReducing___at_Lean_Meta_getParamNames___spec__2___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -7953,7 +7953,7 @@ x_12 = l_Lean_Expr_isMVar(x_1); if (x_12 == 0) { uint8_t x_13; -x_13 = l_Lean_Expr_isNatLit(x_1); +x_13 = l_Lean_Expr_isRawNatLit(x_1); if (x_13 == 0) { uint8_t x_14; diff --git a/stage0/stdlib/Lean/Server/CodeActions.c b/stage0/stdlib/Lean/Server/CodeActions.c index 7073b2c322..908f67eb99 100644 --- a/stage0/stdlib/Lean/Server/CodeActions.c +++ b/stage0/stdlib/Lean/Server/CodeActions.c @@ -1,6 +1,6 @@ // Lean compiler output // Module: Lean.Server.CodeActions -// Imports: Lean.Server.FileWorker.RequestHandling Lean.Server.InfoUtils +// Imports: Init Lean.Server.CodeActions.Attr Lean.Server.CodeActions.Basic Lean.Server.CodeActions.Provider #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -13,5503 +13,28 @@ #ifdef __cplusplus extern "C" { #endif -lean_object* l_Lean_JsonNumber_fromNat(lean_object*); -static lean_object* l_Lean_Server_handleCodeAction___closed__3; -LEAN_EXPORT lean_object* l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_1507____spec__1___lambda__1(lean_object*); -lean_object* l_Lean_Expr_const___override(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Server_LazyCodeAction_lazy_x3f___default; -lean_object* l_List_join___rarg(lean_object*); -LEAN_EXPORT lean_object* l_liftExcept___at_Lean_Server_handleCodeActionResolve___spec__1(lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Server_instCodeActionProviderInhabited___lambda__2___closed__1; -LEAN_EXPORT lean_object* l_Lean_Server_handleCodeAction___lambda__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_evalConstCheck___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Json_compress(lean_object*); -lean_object* lean_mk_empty_array_with_capacity(lean_object*); -LEAN_EXPORT lean_object* l_Lean_Server_handleCodeActionResolve___lambda__1(lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Server_handleCodeActionResolve___lambda__2___closed__1; -static lean_object* l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_435____closed__4; -static lean_object* l_Lean_Server_handleCodeActionResolve___lambda__2___closed__3; -LEAN_EXPORT lean_object* l_Lean_throwError___at_Lean_Server_handleCodeAction___spec__4___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____closed__6; -lean_object* l_Lean_Json_mkObj(lean_object*); -static lean_object* l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____closed__15; -static lean_object* l___private_Lean_Server_CodeActions_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions___hyg_117____closed__12; -static lean_object* l_Lean_Server_CodeAction_getFileSource_x21___closed__2; -static lean_object* l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____closed__11; -lean_object* l_Lean_ConstantInfo_type(lean_object*); -LEAN_EXPORT lean_object* l_Lean_Server_instFromJsonCodeActionResolveData; -LEAN_EXPORT lean_object* l_Lean_Server_handleCodeAction___lambda__5(lean_object*, lean_object*); -static lean_object* l___private_Lean_Server_CodeActions_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions___hyg_117____closed__10; -LEAN_EXPORT lean_object* l_Lean_Server_handleCodeAction___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_mkAppB(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Lean_Data_Lsp_CodeActions_0__Lean_Lsp_fromJsonCodeAction____x40_Lean_Data_Lsp_CodeActions___hyg_1186_(lean_object*); -LEAN_EXPORT lean_object* l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____lambda__5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Server_handleCodeAction___spec__5(size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Name_toString(lean_object*, uint8_t); -static lean_object* l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_1177____spec__1___lambda__5___closed__2; -static lean_object* l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____closed__8; -static lean_object* l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____lambda__4___closed__1; -LEAN_EXPORT lean_object* l_Lean_Server_handleCodeAction___lambda__1___boxed(lean_object*, lean_object*); -static lean_object* l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____closed__9; -lean_object* lean_array_push(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_evalConstCheck___at_Lean_Server_handleCodeAction___spec__2___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -uint8_t lean_usize_dec_eq(size_t, size_t); -LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_435____spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_panic___at_Lean_Server_CodeAction_getFileSource_x21___spec__1(lean_object*); -LEAN_EXPORT uint8_t l_Lean_Server_handleCodeAction___lambda__1(lean_object*, lean_object*); -static lean_object* l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____lambda__1___closed__3; -lean_object* l_instInhabitedReaderT___rarg___boxed(lean_object*, lean_object*); -static lean_object* l___private_Lean_Server_CodeActions_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions___hyg_117____closed__19; -lean_object* lean_array_fget(lean_object*, lean_object*); -static lean_object* l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____closed__24; -static lean_object* l_Lean_Server_handleCodeAction___lambda__4___closed__2; -static lean_object* l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_1507____closed__2; -static lean_object* l_Lean_Server_addBuiltinCodeActionProvider___closed__1; -lean_object* l_Lean_Server_RequestM_withWaitFindSnap___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_435____lambda__2___boxed(lean_object*); -LEAN_EXPORT lean_object* l_Lean_Server_instToJsonCodeActionResolveData; -lean_object* l_Lean_Attribute_Builtin_ensureNoArgs(lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Server_instCodeActionProviderInhabited___lambda__2___closed__2; -lean_object* l_Lean_RBNode_insert___at_Lean_NameSet_insert___spec__1(lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Server_handleCodeActionResolve___lambda__2___closed__2; -static lean_object* l_Lean_Server_handleCodeAction___closed__1; -LEAN_EXPORT lean_object* l_Lean_Server_handleCodeActionResolve___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_liftExcept___at_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_1507____spec__3___boxed(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____lambda__7(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*); -static lean_object* l___private_Lean_Server_CodeActions_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions___hyg_117____closed__18; -extern lean_object* l_Lean_Server_requestHandlers; -LEAN_EXPORT lean_object* l___private_Lean_Server_CodeActions_0__Lean_Server_toJsonCodeActionResolveData____x40_Lean_Server_CodeActions___hyg_57_(lean_object*); -static lean_object* l___private_Lean_Server_CodeActions_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions___hyg_117____closed__5; -lean_object* l_Lean_stringToMessageData(lean_object*); -LEAN_EXPORT lean_object* l_Lean_Server_handleCodeActionResolve(lean_object*, lean_object*, lean_object*); -static lean_object* l___private_Lean_Server_CodeActions_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions___hyg_117____closed__20; -lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Elab_Term_Quotation_withNewLocals___spec__1(lean_object*, size_t, size_t, lean_object*); -static lean_object* l_Lean_Server_instCodeActionProviderInhabited___closed__1; -static lean_object* l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____lambda__2___closed__3; -LEAN_EXPORT lean_object* l_Lean_Server_instCodeActionProviderInhabited___lambda__1___boxed(lean_object*); -static lean_object* l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_435____closed__5; -LEAN_EXPORT lean_object* l_Lean_RBNode_find___at_Lean_Server_handleCodeActionResolve___spec__2___boxed(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Server_parseRequestParams___at_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_1177____spec__2(lean_object*); -static lean_object* l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____lambda__2___closed__4; -static lean_object* l___private_Lean_Server_CodeActions_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions___hyg_117____closed__2; -static lean_object* l_Lean_Server_handleCodeActionResolve___closed__1; -static lean_object* l_Lean_Server_CodeAction_getFileSource_x21___closed__3; -lean_object* l_Lean_initializing(lean_object*); -extern lean_object* l_Lean_NameSet_instInhabitedNameSet; -static lean_object* l___private_Lean_Server_CodeActions_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions___hyg_117____closed__14; -static lean_object* l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_435____closed__6; -lean_object* l_Lean_Name_mkStr3(lean_object*, lean_object*, lean_object*); -static lean_object* l___private_Lean_Server_CodeActions_0__Lean_Server_toJsonCodeActionResolveData____x40_Lean_Server_CodeActions___hyg_57____closed__1; -LEAN_EXPORT lean_object* l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____lambda__4(lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Server_instFileSourceCodeAction(lean_object*); -static lean_object* l_Lean_Server_CodeAction_getFileSource_x21___closed__4; -size_t lean_usize_of_nat(lean_object*); -extern lean_object* l_Lean_Server_instInhabitedRequestError; -LEAN_EXPORT lean_object* l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_1507_(lean_object*); -LEAN_EXPORT lean_object* l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_435_(lean_object*); -lean_object* l___private_Lean_Data_Lsp_CodeActions_0__Lean_Lsp_toJsonCodeAction____x40_Lean_Data_Lsp_CodeActions___hyg_1091_(lean_object*); -static lean_object* l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____lambda__1___closed__2; -lean_object* l_Lean_FileMap_lspPosToUtf8Pos(lean_object*, lean_object*); -static lean_object* l___private_Lean_Server_CodeActions_0__Lean_Server_toJsonCodeActionResolveData____x40_Lean_Server_CodeActions___hyg_57____closed__2; -LEAN_EXPORT lean_object* l_Array_mapIdxM_map___at_Lean_Server_handleCodeAction___spec__9(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_Server_instFromJsonCodeActionResolveData___closed__1; -lean_object* lean_st_ref_take(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Server_handleCodeActionResolve___lambda__1___boxed(lean_object*, lean_object*, lean_object*); -lean_object* l_EStateM_instInhabitedEStateM___rarg(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_liftExcept___at_Lean_Server_handleCodeActionResolve___spec__1___boxed(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_1177____spec__1___lambda__3(lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_1177____spec__1___closed__1; -lean_object* l_Lean_declareBuiltin(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_zip___rarg(lean_object*, lean_object*); -extern lean_object* l_String_instInhabitedString; -static lean_object* l___private_Lean_Server_CodeActions_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions___hyg_117____closed__6; -LEAN_EXPORT lean_object* l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____lambda__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Server_instCodeActionProviderInhabited___lambda__1___closed__1; -LEAN_EXPORT lean_object* l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_PersistentEnvExtension_addEntry___rarg(lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____lambda__1___closed__1; -lean_object* l_Lean_Json_getObjValD(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Lean_Server_CodeActions_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions___hyg_117_(lean_object*); -static lean_object* l_Lean_Server_parseRequestParams___at_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_1177____spec__2___closed__1; -LEAN_EXPORT lean_object* l_Lean_throwError___at_Lean_Server_handleCodeAction___spec__4(lean_object*); -LEAN_EXPORT lean_object* l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_1507____spec__1___lambda__4(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Except_map___rarg(lean_object*, lean_object*); -lean_object* l_Lean_setEnv___at_Lean_registerParametricAttribute___spec__3(lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_1177____spec__1___lambda__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -extern lean_object* l_Lean_Server_RequestError_fileChanged; -static lean_object* l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____lambda__2___closed__6; -LEAN_EXPORT lean_object* l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_RBNode_find___at_Lean_Server_handleCodeActionResolve___spec__2(lean_object*, lean_object*); -static lean_object* l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_1177____spec__1___lambda__4___closed__2; -lean_object* lean_st_ref_get(lean_object*, lean_object*); -lean_object* l_Lean_throwError___at_Lean_registerTagAttribute___spec__1(lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Server_instCodeActionProviderInhabited___lambda__1(lean_object*); -LEAN_EXPORT lean_object* l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_390_(lean_object*); -lean_object* lean_st_mk_ref(lean_object*, lean_object*); -lean_object* l_Lean_addMessageContextPartial___at_Lean_Core_instAddMessageContextCoreM___spec__1(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Name_num___override(lean_object*, lean_object*); -lean_object* l_Lean_Json_getObjValAs_x3f___at___private_Lean_Data_Lsp_Basic_0__Lean_Lsp_fromJsonPosition____x40_Lean_Data_Lsp_Basic___hyg_463____spec__1(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Server_handleCodeAction(lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____closed__14; -static lean_object* l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____closed__2; -lean_object* l_Lean_PersistentHashMap_insert___at_Lean_Server_registerLspRequestHandler___spec__2(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_ofExcept___at_Lean_Server_handleCodeAction___spec__3(lean_object*); -static lean_object* l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____closed__20; -static lean_object* l_Lean_Server_instCodeActionProviderInhabited___lambda__1___closed__2; -LEAN_EXPORT lean_object* l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_435____lambda__2(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_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____lambda__7___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_RBTree_toArray___at_Lean_mkModuleData___spec__7(lean_object*); -static lean_object* l___private_Lean_Server_CodeActions_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions___hyg_117____closed__17; -static lean_object* l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____closed__3; -extern lean_object* l_Task_Priority_default; -lean_object* l_Lean_Name_str___override(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Lean_Server_CodeActions_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions___hyg_117____boxed(lean_object*); -static lean_object* l_Lean_Server_handleCodeAction___closed__2; -static lean_object* l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____closed__10; -LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_435____spec__1(lean_object*, size_t, size_t, lean_object*); -LEAN_EXPORT lean_object* l___private_Lean_Server_CodeActions_0__Lean_Server_builtinCodeActionProviders; -LEAN_EXPORT lean_object* l_Lean_Json_getObjValAs_x3f___at___private_Lean_Server_CodeActions_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions___hyg_117____spec__1___boxed(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Server_addBuiltinCodeActionProvider(lean_object*, lean_object*, lean_object*); -static lean_object* l___private_Lean_Server_CodeActions_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions___hyg_117____closed__3; -lean_object* l___private_Init_Util_0__mkPanicMessageWithDecl(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_registerSimplePersistentEnvExtension___rarg(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_1177____spec__1___lambda__1(lean_object*); -LEAN_EXPORT lean_object* l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_435____lambda__1(lean_object*, lean_object*); -static lean_object* l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_1507____spec__1___lambda__2___closed__1; -lean_object* l_ReaderT_pure___at_Lean_Server_FileWorker_handleCompletion___spec__1___rarg___boxed(lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____lambda__3___closed__2; -LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Server_handleCodeAction___spec__10(lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_ofExcept___at_Lean_Server_handleCodeAction___spec__3___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____closed__17; -LEAN_EXPORT lean_object* l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_1177_(lean_object*); -LEAN_EXPORT lean_object* l_Lean_Server_codeActionProviderExt; -LEAN_EXPORT lean_object* l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_1177____spec__1___lambda__4(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Json_getObjValAs_x3f___at___private_Lean_Data_Lsp_Extra_0__Lean_Lsp_fromJsonRpcCallParams____x40_Lean_Data_Lsp_Extra___hyg_1861____spec__1(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_ReaderT_bind___at_Lean_Server_handleCodeAction___spec__8___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_1177____spec__4(size_t, size_t, lean_object*); -static lean_object* l_Lean_Server_handleCodeActionResolve___closed__4; -LEAN_EXPORT lean_object* l_Lean_throwError___at_Lean_Server_handleCodeAction___spec__4___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Json_getObjValAs_x3f___at___private_Lean_Server_CodeActions_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions___hyg_117____spec__1(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Server_instCodeActionProviderInhabited___lambda__2___boxed(lean_object*); -LEAN_EXPORT lean_object* l_Lean_Server_handleCodeAction___lambda__5___boxed(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___private_Lean_Server_CodeActions_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions___hyg_117____closed__11; -LEAN_EXPORT lean_object* l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_1507____spec__1___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_append___rarg(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_liftExcept___at_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_1177____spec__3(lean_object*, lean_object*, lean_object*); -lean_object* l_instInhabitedForAll__1___rarg(lean_object*, lean_object*); -lean_object* l_Lean_Server_RequestM_readDoc___at_Lean_Server_RequestM_withWaitFindSnapAtPos___spec__1(lean_object*, lean_object*); -static lean_object* l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____closed__21; -LEAN_EXPORT lean_object* l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____lambda__3(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____lambda__2___closed__2; -static lean_object* l_Lean_Server_handleCodeActionResolve___closed__3; -LEAN_EXPORT lean_object* l_liftExcept___at_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_1507____spec__3(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_1507____spec__1___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___private_Lean_Server_CodeActions_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions___hyg_117____closed__7; -lean_object* l_Lean_throwError___at_Lean_AttributeImpl_erase___default___spec__1(lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Server_handleCodeAction___lambda__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Server_handleCodeActionResolve___boxed(lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_1507____closed__1; -extern lean_object* l_Lean_NameSet_empty; -LEAN_EXPORT lean_object* l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_435____lambda__3(lean_object*); -static lean_object* l___private_Lean_Server_CodeActions_0__Lean_Server_toJsonCodeActionResolveData____x40_Lean_Server_CodeActions___hyg_57____closed__3; -static lean_object* l___private_Lean_Server_CodeActions_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions___hyg_117____closed__15; -static lean_object* l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_1177____spec__1___lambda__3___closed__1; -static lean_object* l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____closed__5; -uint8_t lean_nat_dec_eq(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_RBNode_revFold___at_Lean_Server_handleCodeAction___spec__7___boxed(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Server_handleCodeAction___spec__10___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -uint8_t lean_nat_dec_lt(lean_object*, lean_object*); -static lean_object* l___private_Lean_Server_CodeActions_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions___hyg_117____closed__9; -LEAN_EXPORT lean_object* l_Lean_Server_instCoeCodeActionLazyCodeAction(lean_object*); -LEAN_EXPORT lean_object* l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___private_Lean_Server_CodeActions_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions___hyg_117____closed__16; -static lean_object* l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_435____closed__3; -LEAN_EXPORT lean_object* l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_1177____spec__1(lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____closed__22; -lean_object* l_Lean_getConstInfo___at_Lean_registerInitAttrUnsafe___spec__1(lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_1507____spec__1___lambda__3___closed__1; -static lean_object* l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____closed__12; -static lean_object* l___private_Lean_Server_CodeActions_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions___hyg_117____closed__13; -static lean_object* l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____closed__4; -LEAN_EXPORT lean_object* l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_1177____spec__1___lambda__2(lean_object*); -static lean_object* l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____closed__1; -uint8_t l___private_Lean_Attributes_0__Lean_beqAttributeKind____x40_Lean_Attributes___hyg_183_(uint8_t, uint8_t); -uint8_t l_Lean_Expr_isConstOf(lean_object*, lean_object*); -static lean_object* l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____closed__23; -static lean_object* l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____closed__18; -lean_object* lean_panic_fn(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_ReaderT_bind___at_Lean_Server_handleCodeAction___spec__8(lean_object*, lean_object*); -static lean_object* l_Lean_Server_handleCodeActionResolve___closed__2; -LEAN_EXPORT lean_object* l_Lean_evalConstCheck___at_Lean_Server_handleCodeAction___spec__2(lean_object*); -lean_object* lean_task_map(lean_object*, lean_object*, lean_object*, uint8_t); -lean_object* lean_nat_sub(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_1507____spec__1(lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____closed__16; -lean_object* l_Lean_SimplePersistentEnvExtension_getState___rarg(lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____lambda__4___closed__2; -lean_object* l_Lean_Environment_evalConstCheck___rarg(lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Server_instCodeActionProviderInhabited___lambda__2(lean_object*); -LEAN_EXPORT lean_object* l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____lambda__6(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_1507____spec__1___lambda__2___closed__2; -lean_object* l_Lean_registerBuiltinAttribute(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Array_mapIdxM_map___at_Lean_Server_handleCodeAction___spec__9___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_1177____closed__1; -LEAN_EXPORT lean_object* l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_1507____spec__1___lambda__3(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Lean_ToExpr_0__Lean_Name_toExprAux(lean_object*); -LEAN_EXPORT lean_object* l_Lean_RBNode_revFold___at_Lean_Server_handleCodeAction___spec__7(lean_object*, lean_object*); -static lean_object* l_Lean_Server_instToJsonCodeActionResolveData___closed__1; -static lean_object* l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_435____closed__1; -uint8_t l_Lean_Name_quickCmp(lean_object*, lean_object*); -static lean_object* l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_1177____closed__2; -static lean_object* l_Lean_Server_CodeAction_getFileSource_x21___closed__1; -size_t lean_usize_add(size_t, size_t); -lean_object* l___private_Lean_Data_Lsp_CodeActions_0__Lean_Lsp_toJsonCodeActionParams____x40_Lean_Data_Lsp_CodeActions___hyg_594_(lean_object*); -static lean_object* l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____lambda__5___closed__1; -lean_object* lean_array_uget(lean_object*, size_t); -static lean_object* l___private_Lean_Server_CodeActions_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions___hyg_117____closed__4; -lean_object* lean_st_ref_set(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Server_handleCodeActionResolve___lambda__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_1177____spec__1___lambda__3___closed__2; -LEAN_EXPORT lean_object* l_Lean_Server_CodeAction_getFileSource_x21(lean_object*); -LEAN_EXPORT lean_object* l___private_Lean_Server_CodeActions_0__Lean_Server_evalCodeActionProviderUnsafe___at_Lean_Server_handleCodeAction___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_List_redLength___rarg(lean_object*); -static lean_object* l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_1177____spec__1___lambda__5___closed__1; -LEAN_EXPORT lean_object* l_Lean_Server_handleCodeAction___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494_(lean_object*); -LEAN_EXPORT lean_object* l_Array_mapIdxM_map___at_Lean_Server_handleCodeAction___spec__9___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Lean_Data_Lsp_CodeActions_0__Lean_Lsp_fromJsonCodeActionParams____x40_Lean_Data_Lsp_CodeActions___hyg_377_(lean_object*); -lean_object* lean_string_append(lean_object*, lean_object*); -static lean_object* l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____lambda__2___closed__5; -uint8_t l_Lean_PersistentHashMap_contains___at_Lean_Server_registerLspRequestHandler___spec__6(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_RBMap_toList___at_Lean_Server_handleCodeAction___spec__6(lean_object*); -lean_object* lean_array_get_size(lean_object*); -static lean_object* l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____closed__13; -LEAN_EXPORT lean_object* l_Array_mapIdxM_map___at_Lean_Server_handleCodeAction___spec__9___boxed(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); -LEAN_EXPORT lean_object* l___private_Lean_Server_CodeActions_0__Lean_Server_evalCodeActionProviderUnsafe(lean_object*); -lean_object* l_Lean_Server_RequestM_runCoreM___rarg(lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Server_handleCodeAction___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Server_parseRequestParams___at_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_1177____spec__2___closed__2; -lean_object* lean_nat_add(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_1177____spec__1___lambda__5(lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____lambda__3___closed__1; -lean_object* l_Lean_Server_RequestError_ofIoError(lean_object*); -LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_1177____spec__4___boxed(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Server_instCodeActionProviderInhabited; -static lean_object* l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____lambda__2___closed__1; -LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Server_handleCodeAction___spec__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Server_handleCodeAction___lambda__4___closed__1; -static lean_object* l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____closed__19; -lean_object* lean_array_uset(lean_object*, size_t, lean_object*); -lean_object* l_Lean_MessageData_ofName(lean_object*); -LEAN_EXPORT lean_object* l___private_Lean_Server_CodeActions_0__Lean_Server_evalCodeActionProviderUnsafe___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_liftExcept___at_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_1177____spec__3___boxed(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_ofExcept___at_Lean_Server_handleCodeAction___spec__3___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____closed__7; -lean_object* l_Lean_Server_Snapshots_Snapshot_endPos(lean_object*); -static lean_object* l_Lean_Server_instCodeActionProviderInhabited___closed__2; -LEAN_EXPORT lean_object* l_Lean_Server_parseRequestParams___at_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_1507____spec__2(lean_object*); -static lean_object* l___private_Lean_Server_CodeActions_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions___hyg_117____closed__1; -lean_object* l_Nat_repr(lean_object*); -static lean_object* l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_435____closed__2; -static lean_object* l___private_Lean_Server_CodeActions_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions___hyg_117____closed__8; -lean_object* l_List_toArrayAux___rarg(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____lambda__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_qsort_sort___at_Lean_mkTagDeclarationExtension___spec__1(lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_1177____spec__1___lambda__4___closed__1; -static lean_object* _init_l_Lean_Server_LazyCodeAction_lazy_x3f___default() { -_start: -{ -lean_object* x_1; -x_1 = lean_box(0); -return x_1; -} -} -static lean_object* _init_l___private_Lean_Server_CodeActions_0__Lean_Server_toJsonCodeActionResolveData____x40_Lean_Server_CodeActions___hyg_57____closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("params", 6); -return x_1; -} -} -static lean_object* _init_l___private_Lean_Server_CodeActions_0__Lean_Server_toJsonCodeActionResolveData____x40_Lean_Server_CodeActions___hyg_57____closed__2() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("providerName", 12); -return x_1; -} -} -static lean_object* _init_l___private_Lean_Server_CodeActions_0__Lean_Server_toJsonCodeActionResolveData____x40_Lean_Server_CodeActions___hyg_57____closed__3() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("providerResultIndex", 19); -return x_1; -} -} -LEAN_EXPORT lean_object* l___private_Lean_Server_CodeActions_0__Lean_Server_toJsonCodeActionResolveData____x40_Lean_Server_CodeActions___hyg_57_(lean_object* x_1) { -_start: -{ -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; uint8_t 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; -x_2 = lean_ctor_get(x_1, 0); -lean_inc(x_2); -x_3 = l___private_Lean_Data_Lsp_CodeActions_0__Lean_Lsp_toJsonCodeActionParams____x40_Lean_Data_Lsp_CodeActions___hyg_594_(x_2); -x_4 = l___private_Lean_Server_CodeActions_0__Lean_Server_toJsonCodeActionResolveData____x40_Lean_Server_CodeActions___hyg_57____closed__1; -x_5 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_5, 0, x_4); -lean_ctor_set(x_5, 1, x_3); -x_6 = lean_box(0); -x_7 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_7, 0, x_5); -lean_ctor_set(x_7, 1, x_6); -x_8 = lean_ctor_get(x_1, 1); -lean_inc(x_8); -x_9 = 1; -x_10 = l_Lean_Name_toString(x_8, x_9); -x_11 = lean_alloc_ctor(3, 1, 0); -lean_ctor_set(x_11, 0, x_10); -x_12 = l___private_Lean_Server_CodeActions_0__Lean_Server_toJsonCodeActionResolveData____x40_Lean_Server_CodeActions___hyg_57____closed__2; -x_13 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_13, 0, x_12); -lean_ctor_set(x_13, 1, x_11); -x_14 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_14, 0, x_13); -lean_ctor_set(x_14, 1, x_6); -x_15 = lean_ctor_get(x_1, 2); -lean_inc(x_15); -lean_dec(x_1); -x_16 = l_Lean_JsonNumber_fromNat(x_15); -x_17 = lean_alloc_ctor(2, 1, 0); -lean_ctor_set(x_17, 0, x_16); -x_18 = l___private_Lean_Server_CodeActions_0__Lean_Server_toJsonCodeActionResolveData____x40_Lean_Server_CodeActions___hyg_57____closed__3; -x_19 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_19, 0, x_18); -lean_ctor_set(x_19, 1, x_17); -x_20 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_20, 0, x_19); -lean_ctor_set(x_20, 1, x_6); -x_21 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_21, 0, x_20); -lean_ctor_set(x_21, 1, x_6); -x_22 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_22, 0, x_14); -lean_ctor_set(x_22, 1, x_21); -x_23 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_23, 0, x_7); -lean_ctor_set(x_23, 1, x_22); -x_24 = l_List_join___rarg(x_23); -x_25 = l_Lean_Json_mkObj(x_24); -return x_25; -} -} -static lean_object* _init_l_Lean_Server_instToJsonCodeActionResolveData___closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l___private_Lean_Server_CodeActions_0__Lean_Server_toJsonCodeActionResolveData____x40_Lean_Server_CodeActions___hyg_57_), 1, 0); -return x_1; -} -} -static lean_object* _init_l_Lean_Server_instToJsonCodeActionResolveData() { -_start: -{ -lean_object* x_1; -x_1 = l_Lean_Server_instToJsonCodeActionResolveData___closed__1; -return x_1; -} -} -LEAN_EXPORT lean_object* l_Lean_Json_getObjValAs_x3f___at___private_Lean_Server_CodeActions_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions___hyg_117____spec__1(lean_object* x_1, lean_object* x_2) { -_start: -{ -lean_object* x_3; lean_object* x_4; -x_3 = l_Lean_Json_getObjValD(x_1, x_2); -x_4 = l___private_Lean_Data_Lsp_CodeActions_0__Lean_Lsp_fromJsonCodeActionParams____x40_Lean_Data_Lsp_CodeActions___hyg_377_(x_3); -lean_dec(x_3); -return x_4; -} -} -static lean_object* _init_l___private_Lean_Server_CodeActions_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions___hyg_117____closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("Lean", 4); -return x_1; -} -} -static lean_object* _init_l___private_Lean_Server_CodeActions_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions___hyg_117____closed__2() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("Server", 6); -return x_1; -} -} -static lean_object* _init_l___private_Lean_Server_CodeActions_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions___hyg_117____closed__3() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("CodeActionResolveData", 21); -return x_1; -} -} -static lean_object* _init_l___private_Lean_Server_CodeActions_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions___hyg_117____closed__4() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___private_Lean_Server_CodeActions_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions___hyg_117____closed__1; -x_2 = l___private_Lean_Server_CodeActions_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions___hyg_117____closed__2; -x_3 = l___private_Lean_Server_CodeActions_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions___hyg_117____closed__3; -x_4 = l_Lean_Name_mkStr3(x_1, x_2, x_3); -return x_4; -} -} -static lean_object* _init_l___private_Lean_Server_CodeActions_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions___hyg_117____closed__5() { -_start: -{ -lean_object* x_1; uint8_t x_2; lean_object* x_3; -x_1 = l___private_Lean_Server_CodeActions_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions___hyg_117____closed__4; -x_2 = 1; -x_3 = l_Lean_Name_toString(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___private_Lean_Server_CodeActions_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions___hyg_117____closed__6() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes(".", 1); -return x_1; -} -} -static lean_object* _init_l___private_Lean_Server_CodeActions_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions___hyg_117____closed__7() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Lean_Server_CodeActions_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions___hyg_117____closed__5; -x_2 = l___private_Lean_Server_CodeActions_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions___hyg_117____closed__6; -x_3 = lean_string_append(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___private_Lean_Server_CodeActions_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions___hyg_117____closed__8() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___private_Lean_Server_CodeActions_0__Lean_Server_toJsonCodeActionResolveData____x40_Lean_Server_CodeActions___hyg_57____closed__1; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___private_Lean_Server_CodeActions_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions___hyg_117____closed__9() { -_start: -{ -lean_object* x_1; uint8_t x_2; lean_object* x_3; -x_1 = l___private_Lean_Server_CodeActions_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions___hyg_117____closed__8; -x_2 = 1; -x_3 = l_Lean_Name_toString(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___private_Lean_Server_CodeActions_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions___hyg_117____closed__10() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Lean_Server_CodeActions_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions___hyg_117____closed__7; -x_2 = l___private_Lean_Server_CodeActions_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions___hyg_117____closed__9; -x_3 = lean_string_append(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___private_Lean_Server_CodeActions_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions___hyg_117____closed__11() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes(": ", 2); -return x_1; -} -} -static lean_object* _init_l___private_Lean_Server_CodeActions_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions___hyg_117____closed__12() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Lean_Server_CodeActions_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions___hyg_117____closed__10; -x_2 = l___private_Lean_Server_CodeActions_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions___hyg_117____closed__11; -x_3 = lean_string_append(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___private_Lean_Server_CodeActions_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions___hyg_117____closed__13() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___private_Lean_Server_CodeActions_0__Lean_Server_toJsonCodeActionResolveData____x40_Lean_Server_CodeActions___hyg_57____closed__2; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___private_Lean_Server_CodeActions_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions___hyg_117____closed__14() { -_start: -{ -lean_object* x_1; uint8_t x_2; lean_object* x_3; -x_1 = l___private_Lean_Server_CodeActions_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions___hyg_117____closed__13; -x_2 = 1; -x_3 = l_Lean_Name_toString(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___private_Lean_Server_CodeActions_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions___hyg_117____closed__15() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Lean_Server_CodeActions_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions___hyg_117____closed__7; -x_2 = l___private_Lean_Server_CodeActions_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions___hyg_117____closed__14; -x_3 = lean_string_append(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___private_Lean_Server_CodeActions_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions___hyg_117____closed__16() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Lean_Server_CodeActions_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions___hyg_117____closed__15; -x_2 = l___private_Lean_Server_CodeActions_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions___hyg_117____closed__11; -x_3 = lean_string_append(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___private_Lean_Server_CodeActions_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions___hyg_117____closed__17() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___private_Lean_Server_CodeActions_0__Lean_Server_toJsonCodeActionResolveData____x40_Lean_Server_CodeActions___hyg_57____closed__3; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___private_Lean_Server_CodeActions_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions___hyg_117____closed__18() { -_start: -{ -lean_object* x_1; uint8_t x_2; lean_object* x_3; -x_1 = l___private_Lean_Server_CodeActions_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions___hyg_117____closed__17; -x_2 = 1; -x_3 = l_Lean_Name_toString(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___private_Lean_Server_CodeActions_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions___hyg_117____closed__19() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Lean_Server_CodeActions_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions___hyg_117____closed__7; -x_2 = l___private_Lean_Server_CodeActions_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions___hyg_117____closed__18; -x_3 = lean_string_append(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___private_Lean_Server_CodeActions_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions___hyg_117____closed__20() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Lean_Server_CodeActions_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions___hyg_117____closed__19; -x_2 = l___private_Lean_Server_CodeActions_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions___hyg_117____closed__11; -x_3 = lean_string_append(x_1, x_2); -return x_3; -} -} -LEAN_EXPORT lean_object* l___private_Lean_Server_CodeActions_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions___hyg_117_(lean_object* x_1) { -_start: -{ -lean_object* x_2; lean_object* x_3; -x_2 = l___private_Lean_Server_CodeActions_0__Lean_Server_toJsonCodeActionResolveData____x40_Lean_Server_CodeActions___hyg_57____closed__1; -x_3 = l_Lean_Json_getObjValAs_x3f___at___private_Lean_Server_CodeActions_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions___hyg_117____spec__1(x_1, x_2); -if (lean_obj_tag(x_3) == 0) -{ -uint8_t x_4; -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 = lean_ctor_get(x_3, 0); -x_6 = l___private_Lean_Server_CodeActions_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions___hyg_117____closed__12; -x_7 = lean_string_append(x_6, x_5); -lean_dec(x_5); -lean_ctor_set(x_3, 0, x_7); -return x_3; -} -else -{ -lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; -x_8 = lean_ctor_get(x_3, 0); -lean_inc(x_8); -lean_dec(x_3); -x_9 = l___private_Lean_Server_CodeActions_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions___hyg_117____closed__12; -x_10 = lean_string_append(x_9, x_8); -lean_dec(x_8); -x_11 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_11, 0, x_10); -return x_11; -} -} -else -{ -lean_object* x_12; lean_object* x_13; lean_object* x_14; -x_12 = lean_ctor_get(x_3, 0); -lean_inc(x_12); -lean_dec(x_3); -x_13 = l___private_Lean_Server_CodeActions_0__Lean_Server_toJsonCodeActionResolveData____x40_Lean_Server_CodeActions___hyg_57____closed__2; -x_14 = l_Lean_Json_getObjValAs_x3f___at___private_Lean_Data_Lsp_Extra_0__Lean_Lsp_fromJsonRpcCallParams____x40_Lean_Data_Lsp_Extra___hyg_1861____spec__1(x_1, x_13); -if (lean_obj_tag(x_14) == 0) -{ -uint8_t x_15; -lean_dec(x_12); -x_15 = !lean_is_exclusive(x_14); -if (x_15 == 0) -{ -lean_object* x_16; lean_object* x_17; lean_object* x_18; -x_16 = lean_ctor_get(x_14, 0); -x_17 = l___private_Lean_Server_CodeActions_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions___hyg_117____closed__16; -x_18 = lean_string_append(x_17, x_16); -lean_dec(x_16); -lean_ctor_set(x_14, 0, x_18); -return x_14; -} -else -{ -lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; -x_19 = lean_ctor_get(x_14, 0); -lean_inc(x_19); -lean_dec(x_14); -x_20 = l___private_Lean_Server_CodeActions_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions___hyg_117____closed__16; -x_21 = lean_string_append(x_20, x_19); -lean_dec(x_19); -x_22 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_22, 0, x_21); -return x_22; -} -} -else -{ -lean_object* x_23; lean_object* x_24; lean_object* x_25; -x_23 = lean_ctor_get(x_14, 0); -lean_inc(x_23); -lean_dec(x_14); -x_24 = l___private_Lean_Server_CodeActions_0__Lean_Server_toJsonCodeActionResolveData____x40_Lean_Server_CodeActions___hyg_57____closed__3; -x_25 = l_Lean_Json_getObjValAs_x3f___at___private_Lean_Data_Lsp_Basic_0__Lean_Lsp_fromJsonPosition____x40_Lean_Data_Lsp_Basic___hyg_463____spec__1(x_1, x_24); -if (lean_obj_tag(x_25) == 0) -{ -uint8_t x_26; -lean_dec(x_23); -lean_dec(x_12); -x_26 = !lean_is_exclusive(x_25); -if (x_26 == 0) -{ -lean_object* x_27; lean_object* x_28; lean_object* x_29; -x_27 = lean_ctor_get(x_25, 0); -x_28 = l___private_Lean_Server_CodeActions_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions___hyg_117____closed__20; -x_29 = lean_string_append(x_28, x_27); -lean_dec(x_27); -lean_ctor_set(x_25, 0, x_29); -return x_25; -} -else -{ -lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; -x_30 = lean_ctor_get(x_25, 0); -lean_inc(x_30); -lean_dec(x_25); -x_31 = l___private_Lean_Server_CodeActions_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions___hyg_117____closed__20; -x_32 = lean_string_append(x_31, x_30); -lean_dec(x_30); -x_33 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_33, 0, x_32); -return x_33; -} -} -else -{ -uint8_t x_34; -x_34 = !lean_is_exclusive(x_25); -if (x_34 == 0) -{ -lean_object* x_35; lean_object* x_36; -x_35 = lean_ctor_get(x_25, 0); -x_36 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_36, 0, x_12); -lean_ctor_set(x_36, 1, x_23); -lean_ctor_set(x_36, 2, x_35); -lean_ctor_set(x_25, 0, x_36); -return x_25; -} -else -{ -lean_object* x_37; lean_object* x_38; lean_object* x_39; -x_37 = lean_ctor_get(x_25, 0); -lean_inc(x_37); -lean_dec(x_25); -x_38 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_38, 0, x_12); -lean_ctor_set(x_38, 1, x_23); -lean_ctor_set(x_38, 2, x_37); -x_39 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_39, 0, x_38); -return x_39; -} -} -} -} -} -} -LEAN_EXPORT lean_object* l_Lean_Json_getObjValAs_x3f___at___private_Lean_Server_CodeActions_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions___hyg_117____spec__1___boxed(lean_object* x_1, lean_object* x_2) { -_start: -{ -lean_object* x_3; -x_3 = l_Lean_Json_getObjValAs_x3f___at___private_Lean_Server_CodeActions_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions___hyg_117____spec__1(x_1, x_2); -lean_dec(x_2); -lean_dec(x_1); -return x_3; -} -} -LEAN_EXPORT lean_object* l___private_Lean_Server_CodeActions_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions___hyg_117____boxed(lean_object* x_1) { -_start: -{ -lean_object* x_2; -x_2 = l___private_Lean_Server_CodeActions_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions___hyg_117_(x_1); -lean_dec(x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Server_instFromJsonCodeActionResolveData___closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l___private_Lean_Server_CodeActions_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions___hyg_117____boxed), 1, 0); -return x_1; -} -} -static lean_object* _init_l_Lean_Server_instFromJsonCodeActionResolveData() { -_start: -{ -lean_object* x_1; -x_1 = l_Lean_Server_instFromJsonCodeActionResolveData___closed__1; -return x_1; -} -} -LEAN_EXPORT lean_object* l_panic___at_Lean_Server_CodeAction_getFileSource_x21___spec__1(lean_object* x_1) { -_start: -{ -lean_object* x_2; lean_object* x_3; -x_2 = l_String_instInhabitedString; -x_3 = lean_panic_fn(x_2, x_1); -return x_3; -} -} -static lean_object* _init_l_Lean_Server_CodeAction_getFileSource_x21___closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("no data param on code action ", 29); -return x_1; -} -} -static lean_object* _init_l_Lean_Server_CodeAction_getFileSource_x21___closed__2() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("", 0); -return x_1; -} -} -static lean_object* _init_l_Lean_Server_CodeAction_getFileSource_x21___closed__3() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("Lean.Server.CodeActions", 23); -return x_1; -} -} -static lean_object* _init_l_Lean_Server_CodeAction_getFileSource_x21___closed__4() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("Lean.Server.CodeAction.getFileSource!", 37); -return x_1; -} -} -LEAN_EXPORT lean_object* l_Lean_Server_CodeAction_getFileSource_x21(lean_object* x_1) { -_start: -{ -lean_object* x_2; -x_2 = lean_ctor_get(x_1, 9); -lean_inc(x_2); -if (lean_obj_tag(x_2) == 0) -{ -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; -x_3 = lean_ctor_get(x_1, 2); -lean_inc(x_3); -lean_dec(x_1); -x_4 = l_Lean_Server_CodeAction_getFileSource_x21___closed__1; -x_5 = lean_string_append(x_4, x_3); -lean_dec(x_3); -x_6 = l_Lean_Server_CodeAction_getFileSource_x21___closed__2; -x_7 = lean_string_append(x_5, x_6); -x_8 = l_Lean_Server_CodeAction_getFileSource_x21___closed__3; -x_9 = l_Lean_Server_CodeAction_getFileSource_x21___closed__4; -x_10 = lean_unsigned_to_nat(44u); -x_11 = lean_unsigned_to_nat(22u); -x_12 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_8, x_9, x_10, x_11, x_7); -lean_dec(x_7); -x_13 = l_panic___at_Lean_Server_CodeAction_getFileSource_x21___spec__1(x_12); -return x_13; -} -else -{ -lean_object* x_14; lean_object* x_15; -lean_dec(x_1); -x_14 = lean_ctor_get(x_2, 0); -lean_inc(x_14); -lean_dec(x_2); -x_15 = l___private_Lean_Server_CodeActions_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions___hyg_117_(x_14); -lean_dec(x_14); -if (lean_obj_tag(x_15) == 0) -{ -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; -x_16 = lean_ctor_get(x_15, 0); -lean_inc(x_16); -lean_dec(x_15); -x_17 = l_Lean_Server_CodeAction_getFileSource_x21___closed__3; -x_18 = l_Lean_Server_CodeAction_getFileSource_x21___closed__4; -x_19 = lean_unsigned_to_nat(44u); -x_20 = lean_unsigned_to_nat(22u); -x_21 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_17, x_18, x_19, x_20, x_16); -lean_dec(x_16); -x_22 = l_panic___at_Lean_Server_CodeAction_getFileSource_x21___spec__1(x_21); -return x_22; -} -else -{ -lean_object* x_23; lean_object* x_24; lean_object* x_25; -x_23 = lean_ctor_get(x_15, 0); -lean_inc(x_23); -lean_dec(x_15); -x_24 = lean_ctor_get(x_23, 0); -lean_inc(x_24); -lean_dec(x_23); -x_25 = lean_ctor_get(x_24, 2); -lean_inc(x_25); -lean_dec(x_24); -return x_25; -} -} -} -} -LEAN_EXPORT lean_object* l_Lean_Server_instFileSourceCodeAction(lean_object* x_1) { -_start: -{ -lean_object* x_2; -x_2 = l_Lean_Server_CodeAction_getFileSource_x21(x_1); -return x_2; -} -} -LEAN_EXPORT lean_object* l_Lean_Server_instCoeCodeActionLazyCodeAction(lean_object* x_1) { -_start: -{ -lean_object* x_2; lean_object* x_3; -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 lean_object* _init_l_Lean_Server_instCodeActionProviderInhabited___lambda__1___closed__1() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Server_instInhabitedRequestError; -x_2 = lean_alloc_closure((void*)(l_EStateM_instInhabitedEStateM___rarg), 2, 1); -lean_closure_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Server_instCodeActionProviderInhabited___lambda__1___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Server_instCodeActionProviderInhabited___lambda__1___closed__1; -x_2 = lean_alloc_closure((void*)(l_instInhabitedReaderT___rarg___boxed), 2, 1); -lean_closure_set(x_2, 0, x_1); -return x_2; -} -} -LEAN_EXPORT lean_object* l_Lean_Server_instCodeActionProviderInhabited___lambda__1(lean_object* x_1) { -_start: -{ -lean_object* x_2; -x_2 = l_Lean_Server_instCodeActionProviderInhabited___lambda__1___closed__2; -return x_2; -} -} -static lean_object* _init_l_Lean_Server_instCodeActionProviderInhabited___lambda__2___closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Server_instCodeActionProviderInhabited___lambda__1___boxed), 1, 0); -return x_1; -} -} -static lean_object* _init_l_Lean_Server_instCodeActionProviderInhabited___lambda__2___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Server_instCodeActionProviderInhabited___lambda__2___closed__1; -x_2 = lean_alloc_closure((void*)(l_instInhabitedForAll__1___rarg), 2, 1); -lean_closure_set(x_2, 0, x_1); -return x_2; -} -} -LEAN_EXPORT lean_object* l_Lean_Server_instCodeActionProviderInhabited___lambda__2(lean_object* x_1) { -_start: -{ -lean_object* x_2; -x_2 = l_Lean_Server_instCodeActionProviderInhabited___lambda__2___closed__2; -return x_2; -} -} -static lean_object* _init_l_Lean_Server_instCodeActionProviderInhabited___closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Server_instCodeActionProviderInhabited___lambda__2___boxed), 1, 0); -return x_1; -} -} -static lean_object* _init_l_Lean_Server_instCodeActionProviderInhabited___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Server_instCodeActionProviderInhabited___closed__1; -x_2 = lean_alloc_closure((void*)(l_instInhabitedForAll__1___rarg), 2, 1); -lean_closure_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Server_instCodeActionProviderInhabited() { -_start: -{ -lean_object* x_1; -x_1 = l_Lean_Server_instCodeActionProviderInhabited___closed__2; -return x_1; -} -} -LEAN_EXPORT lean_object* l_Lean_Server_instCodeActionProviderInhabited___lambda__1___boxed(lean_object* x_1) { -_start: -{ -lean_object* x_2; -x_2 = l_Lean_Server_instCodeActionProviderInhabited___lambda__1(x_1); -lean_dec(x_1); -return x_2; -} -} -LEAN_EXPORT lean_object* l_Lean_Server_instCodeActionProviderInhabited___lambda__2___boxed(lean_object* x_1) { -_start: -{ -lean_object* x_2; -x_2 = l_Lean_Server_instCodeActionProviderInhabited___lambda__2(x_1); -lean_dec(x_1); -return x_2; -} -} -LEAN_EXPORT lean_object* l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_390_(lean_object* x_1) { -_start: -{ -lean_object* x_2; lean_object* x_3; uint8_t x_4; -x_2 = lean_box(0); -x_3 = lean_st_mk_ref(x_2, x_1); -x_4 = !lean_is_exclusive(x_3); -if (x_4 == 0) -{ -return x_3; -} -else -{ -lean_object* x_5; lean_object* x_6; lean_object* x_7; -x_5 = lean_ctor_get(x_3, 0); -x_6 = lean_ctor_get(x_3, 1); -lean_inc(x_6); -lean_inc(x_5); -lean_dec(x_3); -x_7 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_7, 0, x_5); -lean_ctor_set(x_7, 1, x_6); -return x_7; -} -} -} -static lean_object* _init_l_Lean_Server_addBuiltinCodeActionProvider___closed__1() { -_start: -{ -lean_object* x_1; -x_1 = l___private_Lean_Server_CodeActions_0__Lean_Server_builtinCodeActionProviders; -return x_1; -} -} -LEAN_EXPORT lean_object* l_Lean_Server_addBuiltinCodeActionProvider(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; uint8_t x_10; -x_4 = l_Lean_Server_addBuiltinCodeActionProvider___closed__1; -x_5 = lean_st_ref_take(x_4, x_3); -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 = l_Lean_RBNode_insert___at_Lean_NameMap_insert___spec__1___rarg(x_6, x_1, x_2); -x_9 = lean_st_ref_set(x_4, x_8, x_7); -x_10 = !lean_is_exclusive(x_9); -if (x_10 == 0) -{ -return x_9; -} -else -{ -lean_object* x_11; lean_object* x_12; lean_object* x_13; -x_11 = lean_ctor_get(x_9, 0); -x_12 = lean_ctor_get(x_9, 1); -lean_inc(x_12); -lean_inc(x_11); -lean_dec(x_9); -x_13 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_13, 0, x_11); -lean_ctor_set(x_13, 1, x_12); -return x_13; -} -} -} -LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_435____spec__1(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; lean_object* x_7; lean_object* x_8; uint8_t x_9; size_t x_10; size_t x_11; -x_6 = lean_array_uget(x_1, x_2); -x_7 = lean_array_get_size(x_6); -x_8 = lean_unsigned_to_nat(0u); -x_9 = lean_nat_dec_lt(x_8, x_7); -x_10 = 1; -x_11 = lean_usize_add(x_2, x_10); -if (x_9 == 0) -{ -lean_dec(x_7); -lean_dec(x_6); -x_2 = x_11; -goto _start; -} -else -{ -uint8_t x_13; -x_13 = lean_nat_dec_le(x_7, x_7); -if (x_13 == 0) -{ -lean_dec(x_7); -lean_dec(x_6); -x_2 = x_11; -goto _start; -} -else -{ -size_t x_15; size_t x_16; lean_object* x_17; -x_15 = 0; -x_16 = lean_usize_of_nat(x_7); -lean_dec(x_7); -x_17 = l_Array_foldlMUnsafe_fold___at_Lean_Elab_Term_Quotation_withNewLocals___spec__1(x_6, x_15, x_16, x_4); -lean_dec(x_6); -x_2 = x_11; -x_4 = x_17; -goto _start; -} -} -} -else -{ -return x_4; -} -} -} -LEAN_EXPORT lean_object* l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_435____lambda__1(lean_object* x_1, lean_object* x_2) { -_start: -{ -lean_object* x_3; lean_object* x_4; -x_3 = lean_box(0); -x_4 = l_Lean_RBNode_insert___at_Lean_NameSet_insert___spec__1(x_1, x_2, x_3); -return x_4; -} -} -LEAN_EXPORT lean_object* l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_435____lambda__2(lean_object* x_1) { -_start: -{ -lean_object* x_2; lean_object* x_3; uint8_t x_4; -x_2 = lean_array_get_size(x_1); -x_3 = lean_unsigned_to_nat(0u); -x_4 = lean_nat_dec_lt(x_3, x_2); -if (x_4 == 0) -{ -lean_object* x_5; -lean_dec(x_2); -x_5 = l_Lean_NameSet_empty; -return x_5; -} -else -{ -uint8_t x_6; -x_6 = lean_nat_dec_le(x_2, x_2); -if (x_6 == 0) -{ -lean_object* x_7; -lean_dec(x_2); -x_7 = l_Lean_NameSet_empty; -return x_7; -} -else -{ -size_t x_8; size_t x_9; lean_object* x_10; lean_object* x_11; -x_8 = 0; -x_9 = lean_usize_of_nat(x_2); -lean_dec(x_2); -x_10 = l_Lean_NameSet_empty; -x_11 = l_Array_foldlMUnsafe_fold___at_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_435____spec__1(x_1, x_8, x_9, x_10); -return x_11; -} -} -} -} -LEAN_EXPORT lean_object* l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_435____lambda__3(lean_object* x_1) { -_start: -{ -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; -x_2 = l_List_redLength___rarg(x_1); -x_3 = lean_mk_empty_array_with_capacity(x_2); -lean_dec(x_2); -x_4 = l_List_toArrayAux___rarg(x_1, x_3); -x_5 = lean_array_get_size(x_4); -x_6 = lean_unsigned_to_nat(1u); -x_7 = lean_nat_sub(x_5, x_6); -lean_dec(x_5); -x_8 = lean_unsigned_to_nat(0u); -x_9 = l_Array_qsort_sort___at_Lean_mkTagDeclarationExtension___spec__1(x_4, x_8, x_7); -lean_dec(x_7); -return x_9; -} -} -static lean_object* _init_l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_435____closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("codeActionProviderExt", 21); -return x_1; -} -} -static lean_object* _init_l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_435____closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___private_Lean_Server_CodeActions_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions___hyg_117____closed__1; -x_2 = l___private_Lean_Server_CodeActions_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions___hyg_117____closed__2; -x_3 = l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_435____closed__1; -x_4 = l_Lean_Name_mkStr3(x_1, x_2, x_3); -return x_4; -} -} -static lean_object* _init_l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_435____closed__3() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_435____lambda__1), 2, 0); -return x_1; -} -} -static lean_object* _init_l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_435____closed__4() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_435____lambda__2___boxed), 1, 0); -return x_1; -} -} -static lean_object* _init_l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_435____closed__5() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_435____lambda__3), 1, 0); -return x_1; -} -} -static lean_object* _init_l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_435____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_Server_initFn____x40_Lean_Server_CodeActions___hyg_435____closed__2; -x_2 = l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_435____closed__3; -x_3 = l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_435____closed__4; -x_4 = l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_435____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); -lean_ctor_set(x_5, 2, x_3); -lean_ctor_set(x_5, 3, x_4); -return x_5; -} -} -LEAN_EXPORT lean_object* l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_435_(lean_object* x_1) { -_start: -{ -lean_object* x_2; lean_object* x_3; -x_2 = l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_435____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_Server_initFn____x40_Lean_Server_CodeActions___hyg_435____spec__1___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_initFn____x40_Lean_Server_CodeActions___hyg_435____spec__1(x_1, x_5, x_6, x_4); -lean_dec(x_1); -return x_7; -} -} -LEAN_EXPORT lean_object* l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_435____lambda__2___boxed(lean_object* x_1) { -_start: -{ -lean_object* x_2; -x_2 = l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_435____lambda__2(x_1); -lean_dec(x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____lambda__1___closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("addBuiltinCodeActionProvider", 28); -return x_1; -} -} -static lean_object* _init_l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____lambda__1___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___private_Lean_Server_CodeActions_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions___hyg_117____closed__1; -x_2 = l___private_Lean_Server_CodeActions_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions___hyg_117____closed__2; -x_3 = l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____lambda__1___closed__1; -x_4 = l_Lean_Name_mkStr3(x_1, x_2, x_3); -return x_4; -} -} -static lean_object* _init_l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____lambda__1___closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____lambda__1___closed__2; -x_3 = l_Lean_Expr_const___override(x_2, x_1); -return x_3; -} -} -LEAN_EXPORT lean_object* l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { -_start: -{ -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; -x_6 = lean_st_ref_get(x_4, x_5); -x_7 = lean_ctor_get(x_6, 1); -lean_inc(x_7); -lean_dec(x_6); -x_8 = lean_box(0); -lean_inc(x_1); -x_9 = l_Lean_Expr_const___override(x_1, x_8); -lean_inc(x_1); -x_10 = l___private_Lean_ToExpr_0__Lean_Name_toExprAux(x_1); -x_11 = l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____lambda__1___closed__3; -x_12 = l_Lean_mkAppB(x_11, x_10, x_9); -x_13 = l_Lean_declareBuiltin(x_1, x_12, x_3, x_4, x_7); -return x_13; -} -} -static lean_object* _init_l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____lambda__2___closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("CodeActionProvider", 18); -return x_1; -} -} -static lean_object* _init_l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____lambda__2___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___private_Lean_Server_CodeActions_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions___hyg_117____closed__1; -x_2 = l___private_Lean_Server_CodeActions_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions___hyg_117____closed__2; -x_3 = l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____lambda__2___closed__1; -x_4 = l_Lean_Name_mkStr3(x_1, x_2, x_3); -return x_4; -} -} -static lean_object* _init_l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____lambda__2___closed__3() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("invalid attribute '", 19); -return x_1; -} -} -static lean_object* _init_l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____lambda__2___closed__4() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____lambda__2___closed__3; -x_2 = l_Lean_stringToMessageData(x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____lambda__2___closed__5() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("', must be of type `Lean.Server.CodeActionProvider`", 51); -return x_1; -} -} -static lean_object* _init_l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____lambda__2___closed__6() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____lambda__2___closed__5; -x_2 = l_Lean_stringToMessageData(x_1); -return x_2; -} -} -LEAN_EXPORT lean_object* l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____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) { -_start: -{ -lean_object* x_7; -lean_dec(x_3); -lean_inc(x_1); -x_7 = l_Lean_getConstInfo___at_Lean_registerInitAttrUnsafe___spec__1(x_1, x_4, x_5, x_6); -if (lean_obj_tag(x_7) == 0) -{ -lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; uint8_t x_12; -x_8 = lean_ctor_get(x_7, 0); -lean_inc(x_8); -x_9 = lean_ctor_get(x_7, 1); -lean_inc(x_9); -lean_dec(x_7); -x_10 = l_Lean_ConstantInfo_type(x_8); -lean_dec(x_8); -x_11 = l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____lambda__2___closed__2; -x_12 = l_Lean_Expr_isConstOf(x_10, x_11); -lean_dec(x_10); -if (x_12 == 0) -{ -lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; uint8_t x_19; -lean_dec(x_1); -x_13 = l_Lean_MessageData_ofName(x_2); -x_14 = l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____lambda__2___closed__4; -x_15 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_15, 0, x_14); -lean_ctor_set(x_15, 1, x_13); -x_16 = l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____lambda__2___closed__6; -x_17 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_17, 0, x_15); -lean_ctor_set(x_17, 1, x_16); -x_18 = l_Lean_throwError___at_Lean_registerTagAttribute___spec__1(x_17, x_4, x_5, x_9); -lean_dec(x_5); -lean_dec(x_4); -x_19 = !lean_is_exclusive(x_18); -if (x_19 == 0) -{ -return x_18; -} -else -{ -lean_object* x_20; lean_object* x_21; lean_object* x_22; -x_20 = lean_ctor_get(x_18, 0); -x_21 = lean_ctor_get(x_18, 1); -lean_inc(x_21); -lean_inc(x_20); -lean_dec(x_18); -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; -} -} -else -{ -lean_object* x_23; lean_object* x_24; -lean_dec(x_2); -x_23 = lean_box(0); -x_24 = l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____lambda__1(x_1, x_23, x_4, x_5, x_9); -return x_24; -} -} -else -{ -uint8_t x_25; -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_2); -lean_dec(x_1); -x_25 = !lean_is_exclusive(x_7); -if (x_25 == 0) -{ -return x_7; -} -else -{ -lean_object* x_26; lean_object* x_27; lean_object* x_28; -x_26 = lean_ctor_get(x_7, 0); -x_27 = lean_ctor_get(x_7, 1); -lean_inc(x_27); -lean_inc(x_26); -lean_dec(x_7); -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_initFn____x40_Lean_Server_CodeActions___hyg_494____lambda__3___closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("', must be global", 17); -return x_1; -} -} -static lean_object* _init_l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____lambda__3___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____lambda__3___closed__1; -x_2 = l_Lean_stringToMessageData(x_1); -return x_2; -} -} -LEAN_EXPORT lean_object* l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____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) { -_start: -{ -lean_object* x_8; -lean_inc(x_6); -lean_inc(x_5); -x_8 = l_Lean_Attribute_Builtin_ensureNoArgs(x_3, x_5, x_6, x_7); -if (lean_obj_tag(x_8) == 0) -{ -lean_object* x_9; uint8_t x_10; uint8_t x_11; -x_9 = lean_ctor_get(x_8, 1); -lean_inc(x_9); -lean_dec(x_8); -x_10 = 0; -x_11 = l___private_Lean_Attributes_0__Lean_beqAttributeKind____x40_Lean_Attributes___hyg_183_(x_4, x_10); -if (x_11 == 0) -{ -lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; uint8_t x_18; -lean_dec(x_2); -x_12 = l_Lean_MessageData_ofName(x_1); -x_13 = l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____lambda__2___closed__4; -x_14 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_14, 0, x_13); -lean_ctor_set(x_14, 1, x_12); -x_15 = l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____lambda__3___closed__2; -x_16 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_16, 0, x_14); -lean_ctor_set(x_16, 1, x_15); -x_17 = l_Lean_throwError___at_Lean_registerTagAttribute___spec__1(x_16, x_5, x_6, x_9); -lean_dec(x_6); -lean_dec(x_5); -x_18 = !lean_is_exclusive(x_17); -if (x_18 == 0) -{ -return x_17; -} -else -{ -lean_object* x_19; lean_object* x_20; lean_object* x_21; -x_19 = lean_ctor_get(x_17, 0); -x_20 = lean_ctor_get(x_17, 1); -lean_inc(x_20); -lean_inc(x_19); -lean_dec(x_17); -x_21 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_21, 0, x_19); -lean_ctor_set(x_21, 1, x_20); -return x_21; -} -} -else -{ -lean_object* x_22; lean_object* x_23; -x_22 = lean_box(0); -x_23 = l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____lambda__2(x_2, x_1, x_22, x_5, x_6, x_9); -return x_23; -} -} -else -{ -uint8_t x_24; -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_2); -lean_dec(x_1); -x_24 = !lean_is_exclusive(x_8); -if (x_24 == 0) -{ -return x_8; -} -else -{ -lean_object* x_25; lean_object* x_26; lean_object* x_27; -x_25 = lean_ctor_get(x_8, 0); -x_26 = lean_ctor_get(x_8, 1); -lean_inc(x_26); -lean_inc(x_25); -lean_dec(x_8); -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; -} -} -} -} -static lean_object* _init_l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____lambda__4___closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("attribute cannot be erased", 26); -return x_1; -} -} -static lean_object* _init_l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____lambda__4___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____lambda__4___closed__1; -x_2 = l_Lean_stringToMessageData(x_1); -return x_2; -} -} -LEAN_EXPORT lean_object* l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____lambda__4(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; -x_5 = l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____lambda__4___closed__2; -x_6 = l_Lean_throwError___at_Lean_AttributeImpl_erase___default___spec__1(x_5, x_2, x_3, x_4); -return x_6; -} -} -static lean_object* _init_l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____lambda__5___closed__1() { -_start: -{ -lean_object* x_1; -x_1 = l_Lean_Server_codeActionProviderExt; -return x_1; -} -} -LEAN_EXPORT lean_object* l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____lambda__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_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; -x_6 = lean_st_ref_get(x_4, x_5); -x_7 = lean_ctor_get(x_6, 0); -lean_inc(x_7); -x_8 = lean_ctor_get(x_6, 1); -lean_inc(x_8); -lean_dec(x_6); -x_9 = lean_ctor_get(x_7, 0); -lean_inc(x_9); -lean_dec(x_7); -x_10 = l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____lambda__5___closed__1; -x_11 = l_Lean_PersistentEnvExtension_addEntry___rarg(x_10, x_9, x_1); -x_12 = l_Lean_setEnv___at_Lean_registerParametricAttribute___spec__3(x_11, x_3, x_4, x_8); -return x_12; -} -} -LEAN_EXPORT lean_object* l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____lambda__6(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; -lean_dec(x_3); -lean_inc(x_1); -x_7 = l_Lean_getConstInfo___at_Lean_registerInitAttrUnsafe___spec__1(x_1, x_4, x_5, x_6); -if (lean_obj_tag(x_7) == 0) -{ -lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; uint8_t x_12; -x_8 = lean_ctor_get(x_7, 0); -lean_inc(x_8); -x_9 = lean_ctor_get(x_7, 1); -lean_inc(x_9); -lean_dec(x_7); -x_10 = l_Lean_ConstantInfo_type(x_8); -lean_dec(x_8); -x_11 = l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____lambda__2___closed__2; -x_12 = l_Lean_Expr_isConstOf(x_10, x_11); -lean_dec(x_10); -if (x_12 == 0) -{ -lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; uint8_t x_19; -lean_dec(x_1); -x_13 = l_Lean_MessageData_ofName(x_2); -x_14 = l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____lambda__2___closed__4; -x_15 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_15, 0, x_14); -lean_ctor_set(x_15, 1, x_13); -x_16 = l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____lambda__2___closed__6; -x_17 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_17, 0, x_15); -lean_ctor_set(x_17, 1, x_16); -x_18 = l_Lean_throwError___at_Lean_registerTagAttribute___spec__1(x_17, x_4, x_5, x_9); -lean_dec(x_5); -lean_dec(x_4); -x_19 = !lean_is_exclusive(x_18); -if (x_19 == 0) -{ -return x_18; -} -else -{ -lean_object* x_20; lean_object* x_21; lean_object* x_22; -x_20 = lean_ctor_get(x_18, 0); -x_21 = lean_ctor_get(x_18, 1); -lean_inc(x_21); -lean_inc(x_20); -lean_dec(x_18); -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; -} -} -else -{ -lean_object* x_23; lean_object* x_24; -lean_dec(x_2); -x_23 = lean_box(0); -x_24 = l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____lambda__5(x_1, x_23, x_4, x_5, x_9); -lean_dec(x_5); -lean_dec(x_4); -return x_24; -} -} -else -{ -uint8_t x_25; -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_2); -lean_dec(x_1); -x_25 = !lean_is_exclusive(x_7); -if (x_25 == 0) -{ -return x_7; -} -else -{ -lean_object* x_26; lean_object* x_27; lean_object* x_28; -x_26 = lean_ctor_get(x_7, 0); -x_27 = lean_ctor_get(x_7, 1); -lean_inc(x_27); -lean_inc(x_26); -lean_dec(x_7); -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; -} -} -} -} -LEAN_EXPORT lean_object* l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____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) { -_start: -{ -lean_object* x_8; -lean_inc(x_6); -lean_inc(x_5); -x_8 = l_Lean_Attribute_Builtin_ensureNoArgs(x_3, x_5, x_6, x_7); -if (lean_obj_tag(x_8) == 0) -{ -lean_object* x_9; uint8_t x_10; uint8_t x_11; -x_9 = lean_ctor_get(x_8, 1); -lean_inc(x_9); -lean_dec(x_8); -x_10 = 0; -x_11 = l___private_Lean_Attributes_0__Lean_beqAttributeKind____x40_Lean_Attributes___hyg_183_(x_4, x_10); -if (x_11 == 0) -{ -lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; uint8_t x_18; -lean_dec(x_2); -x_12 = l_Lean_MessageData_ofName(x_1); -x_13 = l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____lambda__2___closed__4; -x_14 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_14, 0, x_13); -lean_ctor_set(x_14, 1, x_12); -x_15 = l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____lambda__3___closed__2; -x_16 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_16, 0, x_14); -lean_ctor_set(x_16, 1, x_15); -x_17 = l_Lean_throwError___at_Lean_registerTagAttribute___spec__1(x_16, x_5, x_6, x_9); -lean_dec(x_6); -lean_dec(x_5); -x_18 = !lean_is_exclusive(x_17); -if (x_18 == 0) -{ -return x_17; -} -else -{ -lean_object* x_19; lean_object* x_20; lean_object* x_21; -x_19 = lean_ctor_get(x_17, 0); -x_20 = lean_ctor_get(x_17, 1); -lean_inc(x_20); -lean_inc(x_19); -lean_dec(x_17); -x_21 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_21, 0, x_19); -lean_ctor_set(x_21, 1, x_20); -return x_21; -} -} -else -{ -lean_object* x_22; lean_object* x_23; -x_22 = lean_box(0); -x_23 = l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____lambda__6(x_2, x_1, x_22, x_5, x_6, x_9); -return x_23; -} -} -else -{ -uint8_t x_24; -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_2); -lean_dec(x_1); -x_24 = !lean_is_exclusive(x_8); -if (x_24 == 0) -{ -return x_8; -} -else -{ -lean_object* x_25; lean_object* x_26; lean_object* x_27; -x_25 = lean_ctor_get(x_8, 0); -x_26 = lean_ctor_get(x_8, 1); -lean_inc(x_26); -lean_inc(x_25); -lean_dec(x_8); -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; -} -} -} -} -static lean_object* _init_l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("builtin_code_action_provider", 28); -return x_1; -} -} -static lean_object* _init_l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____closed__1; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___private_Lean_Server_CodeActions_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions___hyg_117____closed__1; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____closed__4() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____closed__3; -x_2 = l___private_Lean_Server_CodeActions_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions___hyg_117____closed__2; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____closed__5() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("initFn", 6); -return x_1; -} -} -static lean_object* _init_l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____closed__6() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____closed__4; -x_2 = l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____closed__5; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____closed__7() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("_@", 2); -return x_1; -} -} -static lean_object* _init_l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____closed__8() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____closed__6; -x_2 = l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____closed__7; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____closed__9() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____closed__8; -x_2 = l___private_Lean_Server_CodeActions_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions___hyg_117____closed__1; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____closed__10() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____closed__9; -x_2 = l___private_Lean_Server_CodeActions_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions___hyg_117____closed__2; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____closed__11() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("CodeActions", 11); -return x_1; -} -} -static lean_object* _init_l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____closed__12() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____closed__10; -x_2 = l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____closed__11; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____closed__13() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("_hyg", 4); -return x_1; -} -} -static lean_object* _init_l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____closed__14() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____closed__12; -x_2 = l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____closed__13; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____closed__15() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____closed__14; -x_2 = lean_unsigned_to_nat(494u); -x_3 = l_Lean_Name_num___override(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____closed__16() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("(builtin) ", 10); -return x_1; -} -} -static lean_object* _init_l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____closed__17() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("Use to decorate methods for suggesting code actions. This is a low-level interface for making code actions.", 107); -return x_1; -} -} -static lean_object* _init_l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____closed__18() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____closed__16; -x_2 = l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____closed__17; -x_3 = lean_string_append(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____closed__19() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; -x_1 = l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____closed__15; -x_2 = l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____closed__2; -x_3 = l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____closed__18; -x_4 = 1; -x_5 = lean_alloc_ctor(0, 3, 1); -lean_ctor_set(x_5, 0, x_1); -lean_ctor_set(x_5, 1, x_2); -lean_ctor_set(x_5, 2, x_3); -lean_ctor_set_uint8(x_5, sizeof(void*)*3, x_4); -return x_5; -} -} -static lean_object* _init_l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____closed__20() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____lambda__4___boxed), 4, 0); -return x_1; -} -} -static lean_object* _init_l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____closed__21() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("code_action_provider", 20); -return x_1; -} -} -static lean_object* _init_l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____closed__22() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____closed__21; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____closed__23() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Server_CodeAction_getFileSource_x21___closed__2; -x_2 = l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____closed__17; -x_3 = lean_string_append(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____closed__24() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; -x_1 = l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____closed__15; -x_2 = l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____closed__22; -x_3 = l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____closed__23; -x_4 = 1; -x_5 = lean_alloc_ctor(0, 3, 1); -lean_ctor_set(x_5, 0, x_1); -lean_ctor_set(x_5, 1, x_2); -lean_ctor_set(x_5, 2, x_3); -lean_ctor_set_uint8(x_5, sizeof(void*)*3, x_4); -return x_5; -} -} -LEAN_EXPORT lean_object* l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494_(lean_object* x_1) { -_start: -{ -lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; -x_2 = l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____closed__2; -x_3 = lean_alloc_closure((void*)(l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____lambda__3___boxed), 7, 1); -lean_closure_set(x_3, 0, x_2); -x_4 = l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____closed__19; -x_5 = l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____closed__20; -x_6 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_6, 0, x_4); -lean_ctor_set(x_6, 1, x_3); -lean_ctor_set(x_6, 2, x_5); -x_7 = l_Lean_registerBuiltinAttribute(x_6, x_1); -if (lean_obj_tag(x_7) == 0) -{ -lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; -x_8 = lean_ctor_get(x_7, 1); -lean_inc(x_8); -lean_dec(x_7); -x_9 = l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____closed__22; -x_10 = lean_alloc_closure((void*)(l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____lambda__7___boxed), 7, 1); -lean_closure_set(x_10, 0, x_9); -x_11 = l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____closed__24; -x_12 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_12, 0, x_11); -lean_ctor_set(x_12, 1, x_10); -lean_ctor_set(x_12, 2, x_5); -x_13 = l_Lean_registerBuiltinAttribute(x_12, x_8); -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_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____lambda__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { -_start: -{ -lean_object* x_6; -x_6 = l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____lambda__1(x_1, x_2, x_3, x_4, x_5); -lean_dec(x_2); -return x_6; -} -} -LEAN_EXPORT lean_object* l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____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) { -_start: -{ -uint8_t x_8; lean_object* x_9; -x_8 = lean_unbox(x_4); -lean_dec(x_4); -x_9 = l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____lambda__3(x_1, x_2, x_3, x_8, x_5, x_6, x_7); -return x_9; -} -} -LEAN_EXPORT lean_object* l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____lambda__4___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_initFn____x40_Lean_Server_CodeActions___hyg_494____lambda__4(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_initFn____x40_Lean_Server_CodeActions___hyg_494____lambda__5___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { -_start: -{ -lean_object* x_6; -x_6 = l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____lambda__5(x_1, x_2, x_3, x_4, x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -return x_6; -} -} -LEAN_EXPORT lean_object* l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____lambda__7___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: -{ -uint8_t x_8; lean_object* x_9; -x_8 = lean_unbox(x_4); -lean_dec(x_4); -x_9 = l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____lambda__7(x_1, x_2, x_3, x_8, x_5, x_6, x_7); -return x_9; -} -} -LEAN_EXPORT lean_object* l___private_Lean_Server_CodeActions_0__Lean_Server_evalCodeActionProviderUnsafe___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { -_start: -{ -lean_object* x_6; lean_object* x_7; -x_6 = l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____lambda__2___closed__2; -x_7 = l_Lean_evalConstCheck___rarg(x_4, x_1, x_3, x_2, lean_box(0), x_6, x_5); -return x_7; -} -} -LEAN_EXPORT lean_object* l___private_Lean_Server_CodeActions_0__Lean_Server_evalCodeActionProviderUnsafe(lean_object* x_1) { -_start: -{ -lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l___private_Lean_Server_CodeActions_0__Lean_Server_evalCodeActionProviderUnsafe___rarg), 5, 0); -return x_2; -} -} -LEAN_EXPORT lean_object* l_Lean_throwError___at_Lean_Server_handleCodeAction___spec__4___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { -_start: -{ -lean_object* x_6; lean_object* x_7; uint8_t x_8; -x_6 = lean_ctor_get(x_3, 5); -x_7 = l_Lean_addMessageContextPartial___at_Lean_Core_instAddMessageContextCoreM___spec__1(x_1, x_3, x_4, x_5); -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_inc(x_6); -x_10 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_10, 0, x_6); -lean_ctor_set(x_10, 1, x_9); -lean_ctor_set_tag(x_7, 1); -lean_ctor_set(x_7, 0, x_10); -return x_7; -} -else -{ -lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; -x_11 = lean_ctor_get(x_7, 0); -x_12 = lean_ctor_get(x_7, 1); -lean_inc(x_12); -lean_inc(x_11); -lean_dec(x_7); -lean_inc(x_6); -x_13 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_13, 0, x_6); -lean_ctor_set(x_13, 1, x_11); -x_14 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_14, 0, x_13); -lean_ctor_set(x_14, 1, x_12); -return x_14; -} -} -} -LEAN_EXPORT lean_object* l_Lean_throwError___at_Lean_Server_handleCodeAction___spec__4(lean_object* x_1) { -_start: -{ -lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l_Lean_throwError___at_Lean_Server_handleCodeAction___spec__4___rarg___boxed), 5, 0); -return x_2; -} -} -LEAN_EXPORT lean_object* l_Lean_ofExcept___at_Lean_Server_handleCodeAction___spec__3___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { -_start: -{ -if (lean_obj_tag(x_1) == 0) -{ -lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; -x_6 = lean_ctor_get(x_1, 0); -lean_inc(x_6); -lean_dec(x_1); -x_7 = lean_alloc_ctor(3, 1, 0); -lean_ctor_set(x_7, 0, x_6); -x_8 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_8, 0, x_7); -x_9 = l_Lean_throwError___at_Lean_Server_handleCodeAction___spec__4___rarg(x_8, x_2, x_3, x_4, x_5); -return x_9; -} -else -{ -uint8_t x_10; -x_10 = !lean_is_exclusive(x_1); -if (x_10 == 0) -{ -lean_object* x_11; -x_11 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_11, 0, x_1); -lean_ctor_set(x_11, 1, x_5); -return x_11; -} -else -{ -lean_object* x_12; lean_object* x_13; lean_object* x_14; -x_12 = lean_ctor_get(x_1, 0); -lean_inc(x_12); -lean_dec(x_1); -x_13 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_13, 0, x_12); -x_14 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_14, 0, x_13); -lean_ctor_set(x_14, 1, x_5); -return x_14; -} -} -} -} -LEAN_EXPORT lean_object* l_Lean_ofExcept___at_Lean_Server_handleCodeAction___spec__3(lean_object* x_1) { -_start: -{ -lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l_Lean_ofExcept___at_Lean_Server_handleCodeAction___spec__3___rarg___boxed), 5, 0); -return x_2; -} -} -LEAN_EXPORT lean_object* l_Lean_evalConstCheck___at_Lean_Server_handleCodeAction___spec__2___rarg(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; lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; -x_7 = lean_st_ref_get(x_5, x_6); -x_8 = lean_ctor_get(x_7, 0); -lean_inc(x_8); -x_9 = lean_ctor_get(x_7, 1); -lean_inc(x_9); -lean_dec(x_7); -x_10 = lean_ctor_get(x_8, 0); -lean_inc(x_10); -lean_dec(x_8); -x_11 = lean_ctor_get(x_4, 2); -lean_inc(x_11); -x_12 = l_Lean_Environment_evalConstCheck___rarg(x_10, x_11, x_1, x_2); -lean_dec(x_11); -x_13 = l_Lean_ofExcept___at_Lean_Server_handleCodeAction___spec__3___rarg(x_12, x_3, x_4, x_5, x_9); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -return x_13; -} -} -LEAN_EXPORT lean_object* l_Lean_evalConstCheck___at_Lean_Server_handleCodeAction___spec__2(lean_object* x_1) { -_start: -{ -lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l_Lean_evalConstCheck___at_Lean_Server_handleCodeAction___spec__2___rarg), 6, 0); -return x_2; -} -} -LEAN_EXPORT lean_object* l___private_Lean_Server_CodeActions_0__Lean_Server_evalCodeActionProviderUnsafe___at_Lean_Server_handleCodeAction___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { -_start: -{ -lean_object* x_6; lean_object* x_7; -x_6 = l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____lambda__2___closed__2; -x_7 = l_Lean_evalConstCheck___at_Lean_Server_handleCodeAction___spec__2___rarg(x_6, x_1, x_2, x_3, x_4, x_5); -return x_7; -} -} -LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Server_handleCodeAction___spec__5(size_t x_1, size_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { -_start: -{ -uint8_t x_8; -x_8 = lean_usize_dec_lt(x_2, x_1); -if (x_8 == 0) -{ -lean_object* x_9; lean_object* x_10; -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -x_9 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_9, 0, x_3); -x_10 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_10, 0, x_9); -lean_ctor_set(x_10, 1, x_7); -return x_10; -} -else -{ -lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; -x_11 = lean_array_uget(x_3, x_2); -x_12 = lean_unsigned_to_nat(0u); -x_13 = lean_array_uset(x_3, x_2, x_12); -lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_4); -x_14 = l___private_Lean_Server_CodeActions_0__Lean_Server_evalCodeActionProviderUnsafe___at_Lean_Server_handleCodeAction___spec__1(x_11, x_4, x_5, x_6, x_7); -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; -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_ctor_get(x_15, 0); -lean_inc(x_17); -lean_dec(x_15); -x_18 = 1; -x_19 = lean_usize_add(x_2, x_18); -x_20 = lean_array_uset(x_13, x_2, x_17); -x_2 = x_19; -x_3 = x_20; -x_7 = x_16; -goto _start; -} -else -{ -uint8_t x_22; -lean_dec(x_13); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -x_22 = !lean_is_exclusive(x_14); -if (x_22 == 0) -{ -return x_14; -} -else -{ -lean_object* x_23; lean_object* x_24; lean_object* x_25; -x_23 = lean_ctor_get(x_14, 0); -x_24 = lean_ctor_get(x_14, 1); -lean_inc(x_24); -lean_inc(x_23); -lean_dec(x_14); -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; -} -} -} -} -} -LEAN_EXPORT lean_object* l_Lean_RBNode_revFold___at_Lean_Server_handleCodeAction___spec__7(lean_object* x_1, lean_object* x_2) { -_start: -{ -if (lean_obj_tag(x_2) == 0) -{ -return x_1; -} -else -{ -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; -x_3 = lean_ctor_get(x_2, 0); -x_4 = lean_ctor_get(x_2, 1); -x_5 = lean_ctor_get(x_2, 2); -x_6 = lean_ctor_get(x_2, 3); -x_7 = l_Lean_RBNode_revFold___at_Lean_Server_handleCodeAction___spec__7(x_1, x_6); -lean_inc(x_5); -lean_inc(x_4); -x_8 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_8, 0, x_4); -lean_ctor_set(x_8, 1, x_5); -x_9 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_9, 0, x_8); -lean_ctor_set(x_9, 1, x_7); -x_1 = x_9; -x_2 = x_3; -goto _start; -} -} -} -LEAN_EXPORT lean_object* l_Lean_RBMap_toList___at_Lean_Server_handleCodeAction___spec__6(lean_object* x_1) { -_start: -{ -lean_object* x_2; lean_object* x_3; -x_2 = lean_box(0); -x_3 = l_Lean_RBNode_revFold___at_Lean_Server_handleCodeAction___spec__7(x_2, x_1); -lean_dec(x_1); -return x_3; -} -} -LEAN_EXPORT lean_object* l_ReaderT_bind___at_Lean_Server_handleCodeAction___spec__8___rarg(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; -lean_inc(x_5); -lean_inc(x_4); -lean_inc(x_3); -x_7 = lean_apply_4(x_1, x_3, x_4, x_5, x_6); -if (lean_obj_tag(x_7) == 0) -{ -lean_object* x_8; -x_8 = lean_ctor_get(x_7, 0); -lean_inc(x_8); -if (lean_obj_tag(x_8) == 0) -{ -uint8_t x_9; -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -x_9 = !lean_is_exclusive(x_7); -if (x_9 == 0) -{ -lean_object* x_10; uint8_t x_11; -x_10 = lean_ctor_get(x_7, 0); -lean_dec(x_10); -x_11 = !lean_is_exclusive(x_8); -if (x_11 == 0) -{ -return x_7; -} -else -{ -lean_object* x_12; lean_object* x_13; -x_12 = lean_ctor_get(x_8, 0); -lean_inc(x_12); -lean_dec(x_8); -x_13 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_13, 0, x_12); -lean_ctor_set(x_7, 0, x_13); -return x_7; -} -} -else -{ -lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; -x_14 = lean_ctor_get(x_7, 1); -lean_inc(x_14); -lean_dec(x_7); -x_15 = lean_ctor_get(x_8, 0); -lean_inc(x_15); -if (lean_is_exclusive(x_8)) { - lean_ctor_release(x_8, 0); - x_16 = x_8; -} else { - lean_dec_ref(x_8); - x_16 = lean_box(0); -} -if (lean_is_scalar(x_16)) { - x_17 = lean_alloc_ctor(0, 1, 0); -} else { - x_17 = x_16; -} -lean_ctor_set(x_17, 0, 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_14); -return x_18; -} -} -else -{ -lean_object* x_19; lean_object* x_20; lean_object* x_21; -x_19 = lean_ctor_get(x_7, 1); -lean_inc(x_19); -lean_dec(x_7); -x_20 = lean_ctor_get(x_8, 0); -lean_inc(x_20); -lean_dec(x_8); -x_21 = lean_apply_5(x_2, x_20, x_3, x_4, x_5, x_19); -return x_21; -} -} -else -{ -uint8_t x_22; -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -x_22 = !lean_is_exclusive(x_7); -if (x_22 == 0) -{ -return x_7; -} -else -{ -lean_object* x_23; lean_object* x_24; lean_object* x_25; -x_23 = lean_ctor_get(x_7, 0); -x_24 = lean_ctor_get(x_7, 1); -lean_inc(x_24); -lean_inc(x_23); -lean_dec(x_7); -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; -} -} -} -} -LEAN_EXPORT lean_object* l_ReaderT_bind___at_Lean_Server_handleCodeAction___spec__8(lean_object* x_1, lean_object* x_2) { -_start: -{ -lean_object* x_3; -x_3 = lean_alloc_closure((void*)(l_ReaderT_bind___at_Lean_Server_handleCodeAction___spec__8___rarg), 6, 0); -return x_3; -} -} -LEAN_EXPORT lean_object* l_Array_mapIdxM_map___at_Lean_Server_handleCodeAction___spec__9___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) { -_start: -{ -lean_object* x_8; lean_object* x_9; lean_object* x_10; uint8_t x_11; -x_8 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_8, 0, x_1); -lean_ctor_set(x_8, 1, x_2); -lean_ctor_set(x_8, 2, x_3); -x_9 = l___private_Lean_Server_CodeActions_0__Lean_Server_toJsonCodeActionResolveData____x40_Lean_Server_CodeActions___hyg_57_(x_8); -x_10 = lean_ctor_get(x_4, 0); -lean_inc(x_10); -lean_dec(x_4); -x_11 = !lean_is_exclusive(x_10); -if (x_11 == 0) -{ -lean_object* x_12; lean_object* x_13; lean_object* x_14; -x_12 = lean_ctor_get(x_10, 9); -lean_dec(x_12); -x_13 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_13, 0, x_9); -lean_ctor_set(x_10, 9, x_13); -x_14 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_14, 0, x_10); -lean_ctor_set(x_14, 1, x_7); -return x_14; -} -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; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; -x_15 = lean_ctor_get(x_10, 0); -x_16 = lean_ctor_get(x_10, 1); -x_17 = lean_ctor_get(x_10, 2); -x_18 = lean_ctor_get(x_10, 3); -x_19 = lean_ctor_get(x_10, 4); -x_20 = lean_ctor_get(x_10, 5); -x_21 = lean_ctor_get(x_10, 6); -x_22 = lean_ctor_get(x_10, 7); -x_23 = lean_ctor_get(x_10, 8); -lean_inc(x_23); -lean_inc(x_22); -lean_inc(x_21); -lean_inc(x_20); -lean_inc(x_19); -lean_inc(x_18); -lean_inc(x_17); -lean_inc(x_16); -lean_inc(x_15); -lean_dec(x_10); -x_24 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_24, 0, x_9); -x_25 = lean_alloc_ctor(0, 10, 0); -lean_ctor_set(x_25, 0, x_15); -lean_ctor_set(x_25, 1, x_16); -lean_ctor_set(x_25, 2, x_17); -lean_ctor_set(x_25, 3, x_18); -lean_ctor_set(x_25, 4, x_19); -lean_ctor_set(x_25, 5, x_20); -lean_ctor_set(x_25, 6, x_21); -lean_ctor_set(x_25, 7, x_22); -lean_ctor_set(x_25, 8, x_23); -lean_ctor_set(x_25, 9, x_24); -x_26 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_26, 0, x_25); -lean_ctor_set(x_26, 1, x_7); -return x_26; -} -} -} -LEAN_EXPORT lean_object* l_Array_mapIdxM_map___at_Lean_Server_handleCodeAction___spec__9(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; uint8_t x_12; -x_11 = lean_unsigned_to_nat(0u); -x_12 = lean_nat_dec_eq(x_5, x_11); -if (x_12 == 0) -{ -lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; -x_13 = lean_unsigned_to_nat(1u); -x_14 = lean_nat_sub(x_5, x_13); -lean_dec(x_5); -x_15 = lean_array_fget(x_4, x_6); -x_16 = lean_ctor_get(x_15, 1); -lean_inc(x_16); -if (lean_obj_tag(x_16) == 0) -{ -lean_object* x_17; lean_object* x_18; lean_object* x_19; -x_17 = lean_ctor_get(x_15, 0); -lean_inc(x_17); -lean_dec(x_15); -x_18 = lean_nat_add(x_6, x_13); -lean_dec(x_6); -x_19 = lean_array_push(x_8, x_17); -x_5 = x_14; -x_6 = x_18; -x_7 = lean_box(0); -x_8 = x_19; -goto _start; -} -else -{ -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_16); -x_21 = lean_box(0); -lean_inc(x_6); -lean_inc(x_2); -lean_inc(x_1); -x_22 = l_Array_mapIdxM_map___at_Lean_Server_handleCodeAction___spec__9___lambda__1(x_1, x_2, x_6, x_15, x_21, x_9, x_10); -x_23 = lean_ctor_get(x_22, 0); -lean_inc(x_23); -x_24 = lean_ctor_get(x_22, 1); -lean_inc(x_24); -lean_dec(x_22); -x_25 = lean_nat_add(x_6, x_13); -lean_dec(x_6); -x_26 = lean_array_push(x_8, x_23); -x_5 = x_14; -x_6 = x_25; -x_7 = lean_box(0); -x_8 = x_26; -x_10 = x_24; -goto _start; -} -} -else -{ -lean_object* x_28; -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_2); -lean_dec(x_1); -x_28 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_28, 0, x_8); -lean_ctor_set(x_28, 1, x_10); -return x_28; -} -} -} -LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Server_handleCodeAction___spec__10(lean_object* x_1, lean_object* x_2, lean_object* x_3, size_t x_4, size_t x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { -_start: -{ -uint8_t x_9; -x_9 = lean_usize_dec_eq(x_4, x_5); -if (x_9 == 0) -{ -lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; -x_10 = lean_array_uget(x_3, x_4); -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); -lean_inc(x_7); -lean_inc(x_2); -lean_inc(x_1); -x_13 = lean_apply_4(x_12, x_1, x_2, x_7, x_8); -if (lean_obj_tag(x_13) == 0) -{ -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; size_t x_23; size_t x_24; -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_array_get_size(x_14); -x_17 = lean_mk_empty_array_with_capacity(x_16); -x_18 = lean_unsigned_to_nat(0u); -lean_inc(x_1); -x_19 = l_Array_mapIdxM_map___at_Lean_Server_handleCodeAction___spec__9(x_1, x_11, x_14, x_14, x_16, x_18, lean_box(0), x_17, x_7, x_15); -lean_dec(x_14); -x_20 = lean_ctor_get(x_19, 0); -lean_inc(x_20); -x_21 = lean_ctor_get(x_19, 1); -lean_inc(x_21); -lean_dec(x_19); -x_22 = l_Array_append___rarg(x_6, x_20); -x_23 = 1; -x_24 = lean_usize_add(x_4, x_23); -x_4 = x_24; -x_6 = x_22; -x_8 = x_21; -goto _start; -} -else -{ -uint8_t x_26; -lean_dec(x_11); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_2); -lean_dec(x_1); -x_26 = !lean_is_exclusive(x_13); -if (x_26 == 0) -{ -return x_13; -} -else -{ -lean_object* x_27; lean_object* x_28; lean_object* x_29; -x_27 = lean_ctor_get(x_13, 0); -x_28 = lean_ctor_get(x_13, 1); -lean_inc(x_28); -lean_inc(x_27); -lean_dec(x_13); -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; -} -} -} -else -{ -lean_object* x_30; -lean_dec(x_7); -lean_dec(x_2); -lean_dec(x_1); -x_30 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_30, 0, x_6); -lean_ctor_set(x_30, 1, x_8); -return x_30; -} -} -} -LEAN_EXPORT uint8_t l_Lean_Server_handleCodeAction___lambda__1(lean_object* x_1, lean_object* x_2) { -_start: -{ -lean_object* x_3; uint8_t x_4; -x_3 = l_Lean_Server_Snapshots_Snapshot_endPos(x_2); -x_4 = lean_nat_dec_le(x_1, x_3); -lean_dec(x_3); -return x_4; -} -} -LEAN_EXPORT lean_object* l_Lean_Server_handleCodeAction___lambda__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { -_start: -{ -lean_object* x_5; uint8_t x_6; -x_5 = lean_st_ref_get(x_3, x_4); -x_6 = !lean_is_exclusive(x_5); -if (x_6 == 0) -{ -lean_object* x_7; lean_object* x_8; lean_object* x_9; -x_7 = lean_ctor_get(x_5, 0); -x_8 = lean_ctor_get(x_7, 0); -lean_inc(x_8); -lean_dec(x_7); -x_9 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_9, 0, x_8); -lean_ctor_set(x_5, 0, x_9); -return x_5; -} -else -{ -lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; -x_10 = lean_ctor_get(x_5, 0); -x_11 = lean_ctor_get(x_5, 1); -lean_inc(x_11); -lean_inc(x_10); -lean_dec(x_5); -x_12 = lean_ctor_get(x_10, 0); -lean_inc(x_12); -lean_dec(x_10); -x_13 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_13, 0, x_12); -x_14 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_14, 0, x_13); -lean_ctor_set(x_14, 1, x_11); -return x_14; -} -} -} -LEAN_EXPORT lean_object* l_Lean_Server_handleCodeAction___lambda__3(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { -_start: -{ -lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; size_t x_11; size_t x_12; lean_object* x_13; -x_6 = l_Lean_NameSet_instInhabitedNameSet; -x_7 = l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____lambda__5___closed__1; -x_8 = l_Lean_SimplePersistentEnvExtension_getState___rarg(x_6, x_7, x_1); -x_9 = l_Lean_RBTree_toArray___at_Lean_mkModuleData___spec__7(x_8); -x_10 = lean_array_get_size(x_9); -x_11 = lean_usize_of_nat(x_10); -lean_dec(x_10); -x_12 = 0; -lean_inc(x_9); -x_13 = l_Array_mapMUnsafe_map___at_Lean_Server_handleCodeAction___spec__5(x_11, x_12, x_9, x_2, x_3, x_4, x_5); -if (lean_obj_tag(x_13) == 0) -{ -lean_object* x_14; lean_object* x_15; uint8_t 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 = !lean_is_exclusive(x_14); -if (x_16 == 0) -{ -lean_object* x_17; lean_object* x_18; lean_object* x_19; uint8_t x_20; -x_17 = lean_ctor_get(x_14, 0); -x_18 = l_Lean_Server_addBuiltinCodeActionProvider___closed__1; -x_19 = lean_st_ref_get(x_18, x_15); -x_20 = !lean_is_exclusive(x_19); -if (x_20 == 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; -x_21 = lean_ctor_get(x_19, 0); -x_22 = l_Lean_RBMap_toList___at_Lean_Server_handleCodeAction___spec__6(x_21); -x_23 = l_List_redLength___rarg(x_22); -x_24 = lean_mk_empty_array_with_capacity(x_23); -lean_dec(x_23); -x_25 = l_List_toArrayAux___rarg(x_22, x_24); -x_26 = l_Array_zip___rarg(x_9, x_17); -lean_dec(x_17); -lean_dec(x_9); -x_27 = l_Array_append___rarg(x_25, x_26); -lean_ctor_set(x_14, 0, x_27); -lean_ctor_set(x_19, 0, x_14); -return x_19; -} -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_object* x_35; lean_object* x_36; -x_28 = lean_ctor_get(x_19, 0); -x_29 = lean_ctor_get(x_19, 1); -lean_inc(x_29); -lean_inc(x_28); -lean_dec(x_19); -x_30 = l_Lean_RBMap_toList___at_Lean_Server_handleCodeAction___spec__6(x_28); -x_31 = l_List_redLength___rarg(x_30); -x_32 = lean_mk_empty_array_with_capacity(x_31); -lean_dec(x_31); -x_33 = l_List_toArrayAux___rarg(x_30, x_32); -x_34 = l_Array_zip___rarg(x_9, x_17); -lean_dec(x_17); -lean_dec(x_9); -x_35 = l_Array_append___rarg(x_33, x_34); -lean_ctor_set(x_14, 0, x_35); -x_36 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_36, 0, x_14); -lean_ctor_set(x_36, 1, x_29); -return x_36; -} -} -else -{ -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; -x_37 = lean_ctor_get(x_14, 0); -lean_inc(x_37); -lean_dec(x_14); -x_38 = l_Lean_Server_addBuiltinCodeActionProvider___closed__1; -x_39 = lean_st_ref_get(x_38, x_15); -x_40 = lean_ctor_get(x_39, 0); -lean_inc(x_40); -x_41 = lean_ctor_get(x_39, 1); -lean_inc(x_41); -if (lean_is_exclusive(x_39)) { - lean_ctor_release(x_39, 0); - lean_ctor_release(x_39, 1); - x_42 = x_39; -} else { - lean_dec_ref(x_39); - x_42 = lean_box(0); -} -x_43 = l_Lean_RBMap_toList___at_Lean_Server_handleCodeAction___spec__6(x_40); -x_44 = l_List_redLength___rarg(x_43); -x_45 = lean_mk_empty_array_with_capacity(x_44); -lean_dec(x_44); -x_46 = l_List_toArrayAux___rarg(x_43, x_45); -x_47 = l_Array_zip___rarg(x_9, x_37); -lean_dec(x_37); -lean_dec(x_9); -x_48 = l_Array_append___rarg(x_46, x_47); -x_49 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_49, 0, x_48); -if (lean_is_scalar(x_42)) { - x_50 = lean_alloc_ctor(0, 2, 0); -} else { - x_50 = x_42; -} -lean_ctor_set(x_50, 0, x_49); -lean_ctor_set(x_50, 1, x_41); -return x_50; -} -} -else -{ -uint8_t x_51; -lean_dec(x_9); -x_51 = !lean_is_exclusive(x_13); -if (x_51 == 0) -{ -return x_13; -} -else -{ -lean_object* x_52; lean_object* x_53; lean_object* x_54; -x_52 = lean_ctor_get(x_13, 0); -x_53 = lean_ctor_get(x_13, 1); -lean_inc(x_53); -lean_inc(x_52); -lean_dec(x_13); -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; -} -} -} -} -static lean_object* _init_l_Lean_Server_handleCodeAction___lambda__4___closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Server_handleCodeAction___lambda__2___boxed), 4, 0); -return x_1; -} -} -static lean_object* _init_l_Lean_Server_handleCodeAction___lambda__4___closed__2() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Server_handleCodeAction___lambda__3___boxed), 5, 0); -return x_1; -} -} -LEAN_EXPORT lean_object* l_Lean_Server_handleCodeAction___lambda__4(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { -_start: -{ -lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; -x_6 = l_Lean_Server_handleCodeAction___lambda__4___closed__1; -x_7 = l_Lean_Server_handleCodeAction___lambda__4___closed__2; -x_8 = lean_alloc_closure((void*)(l_ReaderT_bind___at_Lean_Server_handleCodeAction___spec__8___rarg), 6, 2); -lean_closure_set(x_8, 0, x_6); -lean_closure_set(x_8, 1, x_7); -lean_inc(x_4); -lean_inc(x_3); -x_9 = l_Lean_Server_RequestM_runCoreM___rarg(x_3, x_8, x_4, x_5); -if (lean_obj_tag(x_9) == 0) -{ -uint8_t x_10; -x_10 = !lean_is_exclusive(x_9); -if (x_10 == 0) -{ -lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; uint8_t x_15; -x_11 = lean_ctor_get(x_9, 0); -x_12 = lean_ctor_get(x_9, 1); -x_13 = lean_array_get_size(x_11); -x_14 = lean_unsigned_to_nat(0u); -x_15 = lean_nat_dec_lt(x_14, x_13); -if (x_15 == 0) -{ -lean_dec(x_13); -lean_dec(x_11); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -lean_ctor_set(x_9, 0, x_1); -return x_9; -} -else -{ -uint8_t x_16; -x_16 = lean_nat_dec_le(x_13, x_13); -if (x_16 == 0) -{ -lean_dec(x_13); -lean_dec(x_11); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -lean_ctor_set(x_9, 0, x_1); -return x_9; -} -else -{ -size_t x_17; size_t x_18; lean_object* x_19; -lean_free_object(x_9); -x_17 = 0; -x_18 = lean_usize_of_nat(x_13); -lean_dec(x_13); -x_19 = l_Array_foldlMUnsafe_fold___at_Lean_Server_handleCodeAction___spec__10(x_2, x_3, x_11, x_17, x_18, x_1, x_4, x_12); -lean_dec(x_11); -return x_19; -} -} -} -else -{ -lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; uint8_t x_24; -x_20 = lean_ctor_get(x_9, 0); -x_21 = lean_ctor_get(x_9, 1); -lean_inc(x_21); -lean_inc(x_20); -lean_dec(x_9); -x_22 = lean_array_get_size(x_20); -x_23 = lean_unsigned_to_nat(0u); -x_24 = lean_nat_dec_lt(x_23, x_22); -if (x_24 == 0) -{ -lean_object* x_25; -lean_dec(x_22); -lean_dec(x_20); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -x_25 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_25, 0, x_1); -lean_ctor_set(x_25, 1, x_21); -return x_25; -} -else -{ -uint8_t x_26; -x_26 = lean_nat_dec_le(x_22, x_22); -if (x_26 == 0) -{ -lean_object* x_27; -lean_dec(x_22); -lean_dec(x_20); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -x_27 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_27, 0, x_1); -lean_ctor_set(x_27, 1, x_21); -return x_27; -} -else -{ -size_t x_28; size_t x_29; lean_object* x_30; -x_28 = 0; -x_29 = lean_usize_of_nat(x_22); -lean_dec(x_22); -x_30 = l_Array_foldlMUnsafe_fold___at_Lean_Server_handleCodeAction___spec__10(x_2, x_3, x_20, x_28, x_29, x_1, x_4, x_21); -lean_dec(x_20); -return x_30; -} -} -} -} -else -{ -uint8_t x_31; -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -lean_dec(x_1); -x_31 = !lean_is_exclusive(x_9); -if (x_31 == 0) -{ -return x_9; -} -else -{ -lean_object* x_32; lean_object* x_33; lean_object* x_34; -x_32 = lean_ctor_get(x_9, 0); -x_33 = lean_ctor_get(x_9, 1); -lean_inc(x_33); -lean_inc(x_32); -lean_dec(x_9); -x_34 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_34, 0, x_32); -lean_ctor_set(x_34, 1, x_33); -return x_34; -} -} -} -} -LEAN_EXPORT lean_object* l_Lean_Server_handleCodeAction___lambda__5(lean_object* x_1, lean_object* x_2) { -_start: -{ -lean_object* x_3; lean_object* x_4; -x_3 = l_Lean_Server_RequestError_fileChanged; -x_4 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_4, 0, x_3); -lean_ctor_set(x_4, 1, x_2); -return x_4; -} -} -static lean_object* _init_l_Lean_Server_handleCodeAction___closed__1() { -_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_Server_handleCodeAction___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Server_handleCodeAction___closed__1; -x_2 = lean_alloc_closure((void*)(l_ReaderT_pure___at_Lean_Server_FileWorker_handleCompletion___spec__1___rarg___boxed), 3, 1); -lean_closure_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Server_handleCodeAction___closed__3() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Server_handleCodeAction___lambda__5___boxed), 2, 0); -return x_1; -} -} -LEAN_EXPORT lean_object* l_Lean_Server_handleCodeAction(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; lean_object* x_15; lean_object* x_16; lean_object* x_17; -x_4 = l_Lean_Server_RequestM_readDoc___at_Lean_Server_RequestM_withWaitFindSnapAtPos___spec__1(x_2, x_3); -x_5 = lean_ctor_get(x_4, 0); -lean_inc(x_5); -x_6 = lean_ctor_get(x_4, 1); -lean_inc(x_6); -lean_dec(x_4); -x_7 = lean_ctor_get(x_5, 0); -lean_inc(x_7); -x_8 = lean_ctor_get(x_7, 2); -lean_inc(x_8); -lean_dec(x_7); -x_9 = lean_ctor_get(x_1, 3); -lean_inc(x_9); -x_10 = lean_ctor_get(x_9, 1); -lean_inc(x_10); -lean_dec(x_9); -x_11 = l_Lean_FileMap_lspPosToUtf8Pos(x_8, x_10); -lean_dec(x_8); -x_12 = lean_alloc_closure((void*)(l_Lean_Server_handleCodeAction___lambda__1___boxed), 2, 1); -lean_closure_set(x_12, 0, x_11); -x_13 = l_Lean_Server_handleCodeAction___closed__1; -x_14 = lean_alloc_closure((void*)(l_Lean_Server_handleCodeAction___lambda__4), 5, 2); -lean_closure_set(x_14, 0, x_13); -lean_closure_set(x_14, 1, x_1); -x_15 = l_Lean_Server_handleCodeAction___closed__2; -x_16 = l_Lean_Server_handleCodeAction___closed__3; -x_17 = l_Lean_Server_RequestM_withWaitFindSnap___rarg(x_5, x_12, x_15, x_14, x_16, x_2, x_6); -return x_17; -} -} -LEAN_EXPORT lean_object* l_Lean_throwError___at_Lean_Server_handleCodeAction___spec__4___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { -_start: -{ -lean_object* x_6; -x_6 = l_Lean_throwError___at_Lean_Server_handleCodeAction___spec__4___rarg(x_1, x_2, x_3, x_4, x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -return x_6; -} -} -LEAN_EXPORT lean_object* l_Lean_ofExcept___at_Lean_Server_handleCodeAction___spec__3___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { -_start: -{ -lean_object* x_6; -x_6 = l_Lean_ofExcept___at_Lean_Server_handleCodeAction___spec__3___rarg(x_1, x_2, x_3, x_4, x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -return x_6; -} -} -LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Server_handleCodeAction___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) { -_start: -{ -size_t x_8; size_t x_9; lean_object* x_10; -x_8 = lean_unbox_usize(x_1); -lean_dec(x_1); -x_9 = lean_unbox_usize(x_2); -lean_dec(x_2); -x_10 = l_Array_mapMUnsafe_map___at_Lean_Server_handleCodeAction___spec__5(x_8, x_9, x_3, x_4, x_5, x_6, x_7); -return x_10; -} -} -LEAN_EXPORT lean_object* l_Lean_RBNode_revFold___at_Lean_Server_handleCodeAction___spec__7___boxed(lean_object* x_1, lean_object* x_2) { -_start: -{ -lean_object* x_3; -x_3 = l_Lean_RBNode_revFold___at_Lean_Server_handleCodeAction___spec__7(x_1, x_2); -lean_dec(x_2); -return x_3; -} -} -LEAN_EXPORT lean_object* l_Array_mapIdxM_map___at_Lean_Server_handleCodeAction___spec__9___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) { -_start: -{ -lean_object* x_8; -x_8 = l_Array_mapIdxM_map___at_Lean_Server_handleCodeAction___spec__9___lambda__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7); -lean_dec(x_6); -lean_dec(x_5); -return x_8; -} -} -LEAN_EXPORT lean_object* l_Array_mapIdxM_map___at_Lean_Server_handleCodeAction___spec__9___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_Array_mapIdxM_map___at_Lean_Server_handleCodeAction___spec__9(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_4); -lean_dec(x_3); -return x_11; -} -} -LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Server_handleCodeAction___spec__10___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) { -_start: -{ -size_t x_9; size_t x_10; lean_object* x_11; -x_9 = lean_unbox_usize(x_4); -lean_dec(x_4); -x_10 = lean_unbox_usize(x_5); -lean_dec(x_5); -x_11 = l_Array_foldlMUnsafe_fold___at_Lean_Server_handleCodeAction___spec__10(x_1, x_2, x_3, x_9, x_10, x_6, x_7, x_8); -lean_dec(x_3); -return x_11; -} -} -LEAN_EXPORT lean_object* l_Lean_Server_handleCodeAction___lambda__1___boxed(lean_object* x_1, lean_object* x_2) { -_start: -{ -uint8_t x_3; lean_object* x_4; -x_3 = l_Lean_Server_handleCodeAction___lambda__1(x_1, x_2); -lean_dec(x_2); -lean_dec(x_1); -x_4 = lean_box(x_3); -return x_4; -} -} -LEAN_EXPORT lean_object* l_Lean_Server_handleCodeAction___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_Lean_Server_handleCodeAction___lambda__2(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_handleCodeAction___lambda__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { -_start: -{ -lean_object* x_6; -x_6 = l_Lean_Server_handleCodeAction___lambda__3(x_1, x_2, x_3, x_4, x_5); -lean_dec(x_1); -return x_6; -} -} -LEAN_EXPORT lean_object* l_Lean_Server_handleCodeAction___lambda__5___boxed(lean_object* x_1, lean_object* x_2) { -_start: -{ -lean_object* x_3; -x_3 = l_Lean_Server_handleCodeAction___lambda__5(x_1, x_2); -lean_dec(x_1); -return x_3; -} -} -static lean_object* _init_l_Lean_Server_parseRequestParams___at_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_1177____spec__2___closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("Cannot parse request params: ", 29); -return x_1; -} -} -static lean_object* _init_l_Lean_Server_parseRequestParams___at_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_1177____spec__2___closed__2() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("\n", 1); -return x_1; -} -} -LEAN_EXPORT lean_object* l_Lean_Server_parseRequestParams___at_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_1177____spec__2(lean_object* x_1) { -_start: -{ -lean_object* x_2; -x_2 = l___private_Lean_Data_Lsp_CodeActions_0__Lean_Lsp_fromJsonCodeActionParams____x40_Lean_Data_Lsp_CodeActions___hyg_377_(x_1); -if (lean_obj_tag(x_2) == 0) -{ -uint8_t x_3; -x_3 = !lean_is_exclusive(x_2); -if (x_3 == 0) -{ -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; lean_object* x_14; -x_4 = lean_ctor_get(x_2, 0); -x_5 = l_Lean_Json_compress(x_1); -x_6 = l_Lean_Server_parseRequestParams___at_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_1177____spec__2___closed__1; -x_7 = lean_string_append(x_6, x_5); -lean_dec(x_5); -x_8 = l_Lean_Server_parseRequestParams___at_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_1177____spec__2___closed__2; -x_9 = lean_string_append(x_7, x_8); -x_10 = lean_string_append(x_9, x_4); -lean_dec(x_4); -x_11 = l_Lean_Server_CodeAction_getFileSource_x21___closed__2; -x_12 = lean_string_append(x_10, x_11); -x_13 = 0; -x_14 = lean_alloc_ctor(0, 1, 1); -lean_ctor_set(x_14, 0, x_12); -lean_ctor_set_uint8(x_14, sizeof(void*)*1, x_13); -lean_ctor_set(x_2, 0, x_14); -return x_2; -} -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; lean_object* x_22; lean_object* x_23; uint8_t x_24; lean_object* x_25; lean_object* x_26; -x_15 = lean_ctor_get(x_2, 0); -lean_inc(x_15); -lean_dec(x_2); -x_16 = l_Lean_Json_compress(x_1); -x_17 = l_Lean_Server_parseRequestParams___at_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_1177____spec__2___closed__1; -x_18 = lean_string_append(x_17, x_16); -lean_dec(x_16); -x_19 = l_Lean_Server_parseRequestParams___at_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_1177____spec__2___closed__2; -x_20 = lean_string_append(x_18, x_19); -x_21 = lean_string_append(x_20, x_15); -lean_dec(x_15); -x_22 = l_Lean_Server_CodeAction_getFileSource_x21___closed__2; -x_23 = lean_string_append(x_21, x_22); -x_24 = 0; -x_25 = lean_alloc_ctor(0, 1, 1); -lean_ctor_set(x_25, 0, x_23); -lean_ctor_set_uint8(x_25, sizeof(void*)*1, x_24); -x_26 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_26, 0, x_25); -return x_26; -} -} -else -{ -uint8_t x_27; -lean_dec(x_1); -x_27 = !lean_is_exclusive(x_2); -if (x_27 == 0) -{ -return x_2; -} -else -{ -lean_object* x_28; lean_object* x_29; -x_28 = lean_ctor_get(x_2, 0); -lean_inc(x_28); -lean_dec(x_2); -x_29 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_29, 0, x_28); -return x_29; -} -} -} -} -LEAN_EXPORT lean_object* l_liftExcept___at_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_1177____spec__3(lean_object* x_1, lean_object* x_2, lean_object* x_3) { -_start: -{ -if (lean_obj_tag(x_1) == 0) -{ -lean_object* x_4; lean_object* x_5; -x_4 = lean_ctor_get(x_1, 0); -lean_inc(x_4); -x_5 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_5, 0, x_4); -lean_ctor_set(x_5, 1, x_3); -return x_5; -} -else -{ -lean_object* x_6; lean_object* x_7; -x_6 = lean_ctor_get(x_1, 0); -lean_inc(x_6); -x_7 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_7, 0, x_6); -lean_ctor_set(x_7, 1, x_3); -return x_7; -} -} -} -LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_1177____spec__4(size_t x_1, size_t x_2, lean_object* x_3) { -_start: -{ -uint8_t x_4; -x_4 = lean_usize_dec_lt(x_2, x_1); -if (x_4 == 0) -{ -return x_3; -} -else -{ -lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; size_t x_9; size_t x_10; lean_object* x_11; -x_5 = lean_array_uget(x_3, x_2); -x_6 = lean_unsigned_to_nat(0u); -x_7 = lean_array_uset(x_3, x_2, x_6); -x_8 = l___private_Lean_Data_Lsp_CodeActions_0__Lean_Lsp_toJsonCodeAction____x40_Lean_Data_Lsp_CodeActions___hyg_1091_(x_5); -x_9 = 1; -x_10 = lean_usize_add(x_2, x_9); -x_11 = lean_array_uset(x_7, x_2, x_8); -x_2 = x_10; -x_3 = x_11; -goto _start; -} -} -} -LEAN_EXPORT lean_object* l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_1177____spec__1___lambda__1(lean_object* x_1) { -_start: -{ -lean_object* x_2; -x_2 = l_Lean_Server_parseRequestParams___at_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_1177____spec__2(x_1); -if (lean_obj_tag(x_2) == 0) -{ -uint8_t x_3; -x_3 = !lean_is_exclusive(x_2); -if (x_3 == 0) -{ -return x_2; -} -else -{ -lean_object* x_4; lean_object* x_5; -x_4 = lean_ctor_get(x_2, 0); -lean_inc(x_4); -lean_dec(x_2); -x_5 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_5, 0, x_4); -return x_5; -} -} -else -{ -uint8_t x_6; -x_6 = !lean_is_exclusive(x_2); -if (x_6 == 0) -{ -lean_object* x_7; lean_object* x_8; -x_7 = lean_ctor_get(x_2, 0); -x_8 = lean_ctor_get(x_7, 2); -lean_inc(x_8); -lean_dec(x_7); -lean_ctor_set(x_2, 0, x_8); -return x_2; -} -else -{ -lean_object* x_9; lean_object* x_10; lean_object* x_11; -x_9 = lean_ctor_get(x_2, 0); -lean_inc(x_9); -lean_dec(x_2); -x_10 = lean_ctor_get(x_9, 2); -lean_inc(x_10); -lean_dec(x_9); -x_11 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_11, 0, x_10); -return x_11; -} -} -} -} -LEAN_EXPORT lean_object* l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_1177____spec__1___lambda__2(lean_object* x_1) { -_start: -{ -lean_object* x_2; size_t x_3; size_t x_4; lean_object* x_5; lean_object* x_6; -x_2 = lean_array_get_size(x_1); -x_3 = lean_usize_of_nat(x_2); -lean_dec(x_2); -x_4 = 0; -x_5 = l_Array_mapMUnsafe_map___at_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_1177____spec__4(x_3, x_4, x_1); -x_6 = lean_alloc_ctor(4, 1, 0); -lean_ctor_set(x_6, 0, x_5); -return x_6; -} -} -static lean_object* _init_l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_1177____spec__1___lambda__3___closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_1177____spec__1___lambda__2), 1, 0); -return x_1; -} -} -static lean_object* _init_l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_1177____spec__1___lambda__3___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_1177____spec__1___lambda__3___closed__1; -x_2 = lean_alloc_closure((void*)(l_Except_map___rarg), 2, 1); -lean_closure_set(x_2, 0, x_1); -return x_2; -} -} -LEAN_EXPORT lean_object* l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_1177____spec__1___lambda__3(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; -x_5 = l_Lean_Server_parseRequestParams___at_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_1177____spec__2(x_2); -x_6 = l_liftExcept___at_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_1177____spec__3(x_5, x_3, x_4); -lean_dec(x_5); -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_6, 0); -lean_inc(x_7); -x_8 = lean_ctor_get(x_6, 1); -lean_inc(x_8); -lean_dec(x_6); -x_9 = lean_apply_3(x_1, x_7, x_3, x_8); -if (lean_obj_tag(x_9) == 0) -{ -uint8_t x_10; -x_10 = !lean_is_exclusive(x_9); -if (x_10 == 0) -{ -lean_object* x_11; lean_object* x_12; lean_object* x_13; uint8_t x_14; lean_object* x_15; -x_11 = lean_ctor_get(x_9, 0); -x_12 = l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_1177____spec__1___lambda__3___closed__2; -x_13 = l_Task_Priority_default; -x_14 = 0; -x_15 = lean_task_map(x_12, x_11, x_13, x_14); -lean_ctor_set(x_9, 0, x_15); -return x_9; -} -else -{ -lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; uint8_t x_20; lean_object* x_21; lean_object* x_22; -x_16 = lean_ctor_get(x_9, 0); -x_17 = lean_ctor_get(x_9, 1); -lean_inc(x_17); -lean_inc(x_16); -lean_dec(x_9); -x_18 = l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_1177____spec__1___lambda__3___closed__2; -x_19 = l_Task_Priority_default; -x_20 = 0; -x_21 = lean_task_map(x_18, x_16, x_19, x_20); -x_22 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_22, 0, x_21); -lean_ctor_set(x_22, 1, x_17); -return x_22; -} -} -else -{ -uint8_t x_23; -x_23 = !lean_is_exclusive(x_9); -if (x_23 == 0) -{ -return x_9; -} -else -{ -lean_object* x_24; lean_object* x_25; lean_object* x_26; -x_24 = lean_ctor_get(x_9, 0); -x_25 = lean_ctor_get(x_9, 1); -lean_inc(x_25); -lean_inc(x_24); -lean_dec(x_9); -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 -{ -uint8_t x_27; -lean_dec(x_3); -lean_dec(x_1); -x_27 = !lean_is_exclusive(x_6); -if (x_27 == 0) -{ -return x_6; -} -else -{ -lean_object* x_28; lean_object* x_29; lean_object* x_30; -x_28 = lean_ctor_get(x_6, 0); -x_29 = lean_ctor_get(x_6, 1); -lean_inc(x_29); -lean_inc(x_28); -lean_dec(x_6); -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; -} -} -} -} -static lean_object* _init_l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_1177____spec__1___lambda__4___closed__1() { -_start: -{ -lean_object* x_1; -x_1 = l_Lean_Server_requestHandlers; -return x_1; -} -} -static lean_object* _init_l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_1177____spec__1___lambda__4___closed__2() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_1177____spec__1___lambda__1), 1, 0); -return x_1; -} -} -LEAN_EXPORT lean_object* l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_1177____spec__1___lambda__4(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; 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; -x_5 = lean_alloc_closure((void*)(l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_1177____spec__1___lambda__3), 4, 1); -lean_closure_set(x_5, 0, x_1); -x_6 = l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_1177____spec__1___lambda__4___closed__1; -x_7 = lean_st_ref_take(x_6, x_4); -x_8 = lean_ctor_get(x_7, 0); -lean_inc(x_8); -x_9 = lean_ctor_get(x_7, 1); -lean_inc(x_9); -lean_dec(x_7); -x_10 = l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_1177____spec__1___lambda__4___closed__2; -x_11 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_11, 0, x_10); -lean_ctor_set(x_11, 1, x_5); -x_12 = l_Lean_PersistentHashMap_insert___at_Lean_Server_registerLspRequestHandler___spec__2(x_8, x_2, x_11); -x_13 = lean_st_ref_set(x_6, x_12, x_9); -x_14 = !lean_is_exclusive(x_13); -if (x_14 == 0) -{ -return x_13; -} -else -{ -lean_object* x_15; lean_object* x_16; lean_object* x_17; -x_15 = lean_ctor_get(x_13, 0); -x_16 = lean_ctor_get(x_13, 1); -lean_inc(x_16); -lean_inc(x_15); -lean_dec(x_13); -x_17 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_17, 0, x_15); -lean_ctor_set(x_17, 1, x_16); -return x_17; -} -} -} -static lean_object* _init_l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_1177____spec__1___lambda__5___closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("Failed to register LSP request handler for '", 44); -return x_1; -} -} -static lean_object* _init_l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_1177____spec__1___lambda__5___closed__2() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("': already registered", 21); -return x_1; -} -} -LEAN_EXPORT lean_object* l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_1177____spec__1___lambda__5(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; uint8_t x_7; -lean_dec(x_3); -x_5 = l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_1177____spec__1___lambda__4___closed__1; -x_6 = lean_st_ref_get(x_5, x_4); -x_7 = !lean_is_exclusive(x_6); -if (x_7 == 0) -{ -lean_object* x_8; lean_object* x_9; uint8_t x_10; -x_8 = lean_ctor_get(x_6, 0); -x_9 = lean_ctor_get(x_6, 1); -lean_inc(x_2); -x_10 = l_Lean_PersistentHashMap_contains___at_Lean_Server_registerLspRequestHandler___spec__6(x_8, x_2); -if (x_10 == 0) -{ -lean_object* x_11; lean_object* x_12; -lean_free_object(x_6); -x_11 = lean_box(0); -x_12 = l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_1177____spec__1___lambda__4(x_1, x_2, x_11, x_9); -return x_12; -} -else -{ -lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; -lean_dec(x_1); -x_13 = l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_1177____spec__1___lambda__5___closed__1; -x_14 = lean_string_append(x_13, x_2); -lean_dec(x_2); -x_15 = l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_1177____spec__1___lambda__5___closed__2; -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_tag(x_6, 1); -lean_ctor_set(x_6, 0, x_17); -return x_6; -} -} -else -{ -lean_object* x_18; lean_object* x_19; uint8_t x_20; -x_18 = lean_ctor_get(x_6, 0); -x_19 = lean_ctor_get(x_6, 1); -lean_inc(x_19); -lean_inc(x_18); -lean_dec(x_6); -lean_inc(x_2); -x_20 = l_Lean_PersistentHashMap_contains___at_Lean_Server_registerLspRequestHandler___spec__6(x_18, x_2); -if (x_20 == 0) -{ -lean_object* x_21; lean_object* x_22; -x_21 = lean_box(0); -x_22 = l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_1177____spec__1___lambda__4(x_1, x_2, x_21, x_19); -return x_22; -} -else -{ -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_dec(x_1); -x_23 = l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_1177____spec__1___lambda__5___closed__1; -x_24 = lean_string_append(x_23, x_2); -lean_dec(x_2); -x_25 = l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_1177____spec__1___lambda__5___closed__2; -x_26 = lean_string_append(x_24, x_25); -x_27 = lean_alloc_ctor(18, 1, 0); -lean_ctor_set(x_27, 0, x_26); -x_28 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_28, 0, x_27); -lean_ctor_set(x_28, 1, x_19); -return x_28; -} -} -} -} -static lean_object* _init_l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_1177____spec__1___closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("': only possible during initialization", 38); -return x_1; -} -} -LEAN_EXPORT lean_object* l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_1177____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; -x_4 = l_Lean_initializing(x_3); -x_5 = lean_ctor_get(x_4, 0); -lean_inc(x_5); -x_6 = lean_unbox(x_5); -lean_dec(x_5); -if (x_6 == 0) -{ -uint8_t x_7; -lean_dec(x_2); -x_7 = !lean_is_exclusive(x_4); -if (x_7 == 0) -{ -lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; -x_8 = lean_ctor_get(x_4, 0); -lean_dec(x_8); -x_9 = l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_1177____spec__1___lambda__5___closed__1; -x_10 = lean_string_append(x_9, x_1); -lean_dec(x_1); -x_11 = l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_1177____spec__1___closed__1; -x_12 = lean_string_append(x_10, x_11); -x_13 = lean_alloc_ctor(18, 1, 0); -lean_ctor_set(x_13, 0, x_12); -lean_ctor_set_tag(x_4, 1); -lean_ctor_set(x_4, 0, x_13); -return x_4; -} -else -{ -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; -x_14 = lean_ctor_get(x_4, 1); -lean_inc(x_14); -lean_dec(x_4); -x_15 = l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_1177____spec__1___lambda__5___closed__1; -x_16 = lean_string_append(x_15, x_1); -lean_dec(x_1); -x_17 = l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_1177____spec__1___closed__1; -x_18 = lean_string_append(x_16, x_17); -x_19 = lean_alloc_ctor(18, 1, 0); -lean_ctor_set(x_19, 0, x_18); -x_20 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_20, 0, x_19); -lean_ctor_set(x_20, 1, x_14); -return x_20; -} -} -else -{ -lean_object* x_21; lean_object* x_22; lean_object* x_23; -x_21 = lean_ctor_get(x_4, 1); -lean_inc(x_21); -lean_dec(x_4); -x_22 = lean_box(0); -x_23 = l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_1177____spec__1___lambda__5(x_2, x_1, x_22, x_21); -return x_23; -} -} -} -static lean_object* _init_l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_1177____closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("textDocument/codeAction", 23); -return x_1; -} -} -static lean_object* _init_l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_1177____closed__2() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Server_handleCodeAction), 3, 0); -return x_1; -} -} -LEAN_EXPORT lean_object* l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_1177_(lean_object* x_1) { -_start: -{ -lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_2 = l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_1177____closed__1; -x_3 = l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_1177____closed__2; -x_4 = l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_1177____spec__1(x_2, x_3, x_1); -return x_4; -} -} -LEAN_EXPORT lean_object* l_liftExcept___at_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_1177____spec__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { -_start: -{ -lean_object* x_4; -x_4 = l_liftExcept___at_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_1177____spec__3(x_1, x_2, x_3); -lean_dec(x_2); -lean_dec(x_1); -return x_4; -} -} -LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_1177____spec__4___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { -_start: -{ -size_t x_4; size_t x_5; lean_object* x_6; -x_4 = lean_unbox_usize(x_1); -lean_dec(x_1); -x_5 = lean_unbox_usize(x_2); -lean_dec(x_2); -x_6 = l_Array_mapMUnsafe_map___at_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_1177____spec__4(x_4, x_5, x_3); -return x_6; -} -} -LEAN_EXPORT lean_object* l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_1177____spec__1___lambda__4___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_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_1177____spec__1___lambda__4(x_1, x_2, x_3, x_4); -lean_dec(x_3); -return x_5; -} -} -LEAN_EXPORT lean_object* l_liftExcept___at_Lean_Server_handleCodeActionResolve___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { -_start: -{ -if (lean_obj_tag(x_1) == 0) -{ -lean_object* x_4; lean_object* x_5; -x_4 = lean_ctor_get(x_1, 0); -lean_inc(x_4); -x_5 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_5, 0, x_4); -lean_ctor_set(x_5, 1, x_3); -return x_5; -} -else -{ -lean_object* x_6; lean_object* x_7; -x_6 = lean_ctor_get(x_1, 0); -lean_inc(x_6); -x_7 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_7, 0, x_6); -lean_ctor_set(x_7, 1, x_3); -return x_7; -} -} -} -LEAN_EXPORT lean_object* l_Lean_RBNode_find___at_Lean_Server_handleCodeActionResolve___spec__2(lean_object* x_1, lean_object* x_2) { -_start: -{ -if (lean_obj_tag(x_1) == 0) -{ -lean_object* x_3; -x_3 = lean_box(0); -return x_3; -} -else -{ -lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; uint8_t x_8; -x_4 = lean_ctor_get(x_1, 0); -x_5 = lean_ctor_get(x_1, 1); -x_6 = lean_ctor_get(x_1, 2); -x_7 = lean_ctor_get(x_1, 3); -x_8 = l_Lean_Name_quickCmp(x_2, x_5); -switch (x_8) { -case 0: -{ -x_1 = x_4; -goto _start; -} -case 1: -{ -lean_object* x_10; -lean_inc(x_6); -x_10 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_10, 0, x_6); -return x_10; -} -default: -{ -x_1 = x_7; -goto _start; -} -} -} -} -} -LEAN_EXPORT lean_object* l_Lean_Server_handleCodeActionResolve___lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { -_start: -{ -lean_object* x_4; -x_4 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_4, 0, x_1); -lean_ctor_set(x_4, 1, x_3); -return x_4; -} -} -static lean_object* _init_l_Lean_Server_handleCodeActionResolve___lambda__2___closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("Failed to resolve code action index ", 36); -return x_1; -} -} -static lean_object* _init_l_Lean_Server_handleCodeActionResolve___lambda__2___closed__2() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("Can't resolve; nothing further to resolve.", 42); -return x_1; -} -} -static lean_object* _init_l_Lean_Server_handleCodeActionResolve___lambda__2___closed__3() { -_start: -{ -uint8_t x_1; lean_object* x_2; lean_object* x_3; -x_1 = 4; -x_2 = l_Lean_Server_handleCodeActionResolve___lambda__2___closed__2; -x_3 = lean_alloc_ctor(0, 1, 1); -lean_ctor_set(x_3, 0, x_2); -lean_ctor_set_uint8(x_3, sizeof(void*)*1, x_1); -return x_3; -} -} -LEAN_EXPORT lean_object* l_Lean_Server_handleCodeActionResolve___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) { -_start: -{ -lean_object* x_7; -x_7 = lean_apply_4(x_4, x_1, x_2, x_5, x_6); -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; lean_object* x_11; lean_object* x_12; uint8_t x_13; -x_9 = lean_ctor_get(x_7, 0); -x_10 = lean_ctor_get(x_7, 1); -x_11 = lean_ctor_get(x_3, 2); -lean_inc(x_11); -lean_dec(x_3); -x_12 = lean_array_get_size(x_9); -x_13 = lean_nat_dec_lt(x_11, x_12); -lean_dec(x_12); -if (x_13 == 0) -{ -lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; uint8_t x_19; lean_object* x_20; -lean_dec(x_9); -x_14 = l_Nat_repr(x_11); -x_15 = l_Lean_Server_handleCodeActionResolve___lambda__2___closed__1; -x_16 = lean_string_append(x_15, x_14); -lean_dec(x_14); -x_17 = l___private_Lean_Server_CodeActions_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions___hyg_117____closed__6; -x_18 = lean_string_append(x_16, x_17); -x_19 = 4; -x_20 = lean_alloc_ctor(0, 1, 1); -lean_ctor_set(x_20, 0, x_18); -lean_ctor_set_uint8(x_20, sizeof(void*)*1, x_19); -lean_ctor_set_tag(x_7, 1); -lean_ctor_set(x_7, 0, x_20); -return x_7; -} -else -{ -lean_object* x_21; lean_object* x_22; -x_21 = lean_array_fget(x_9, x_11); -lean_dec(x_11); -lean_dec(x_9); -x_22 = lean_ctor_get(x_21, 1); -lean_inc(x_22); -lean_dec(x_21); -if (lean_obj_tag(x_22) == 0) -{ -lean_object* x_23; -x_23 = l_Lean_Server_handleCodeActionResolve___lambda__2___closed__3; -lean_ctor_set_tag(x_7, 1); -lean_ctor_set(x_7, 0, x_23); -return x_7; -} -else -{ -lean_object* x_24; lean_object* x_25; -lean_free_object(x_7); -x_24 = lean_ctor_get(x_22, 0); -lean_inc(x_24); -lean_dec(x_22); -x_25 = lean_apply_1(x_24, x_10); -if (lean_obj_tag(x_25) == 0) -{ -uint8_t x_26; -x_26 = !lean_is_exclusive(x_25); -if (x_26 == 0) -{ -return x_25; -} -else -{ -lean_object* x_27; lean_object* x_28; lean_object* x_29; -x_27 = lean_ctor_get(x_25, 0); -x_28 = lean_ctor_get(x_25, 1); -lean_inc(x_28); -lean_inc(x_27); -lean_dec(x_25); -x_29 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_29, 0, x_27); -lean_ctor_set(x_29, 1, x_28); -return x_29; -} -} -else -{ -uint8_t x_30; -x_30 = !lean_is_exclusive(x_25); -if (x_30 == 0) -{ -lean_object* x_31; lean_object* x_32; -x_31 = lean_ctor_get(x_25, 0); -x_32 = l_Lean_Server_RequestError_ofIoError(x_31); -lean_ctor_set(x_25, 0, x_32); -return x_25; -} -else -{ -lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; -x_33 = lean_ctor_get(x_25, 0); -x_34 = lean_ctor_get(x_25, 1); -lean_inc(x_34); -lean_inc(x_33); -lean_dec(x_25); -x_35 = l_Lean_Server_RequestError_ofIoError(x_33); -x_36 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_36, 0, x_35); -lean_ctor_set(x_36, 1, x_34); -return x_36; -} -} -} -} -} -else -{ -lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; uint8_t x_41; -x_37 = lean_ctor_get(x_7, 0); -x_38 = lean_ctor_get(x_7, 1); -lean_inc(x_38); -lean_inc(x_37); -lean_dec(x_7); -x_39 = lean_ctor_get(x_3, 2); -lean_inc(x_39); -lean_dec(x_3); -x_40 = lean_array_get_size(x_37); -x_41 = lean_nat_dec_lt(x_39, x_40); -lean_dec(x_40); -if (x_41 == 0) -{ -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_dec(x_37); -x_42 = l_Nat_repr(x_39); -x_43 = l_Lean_Server_handleCodeActionResolve___lambda__2___closed__1; -x_44 = lean_string_append(x_43, x_42); -lean_dec(x_42); -x_45 = l___private_Lean_Server_CodeActions_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions___hyg_117____closed__6; -x_46 = lean_string_append(x_44, x_45); -x_47 = 4; -x_48 = lean_alloc_ctor(0, 1, 1); -lean_ctor_set(x_48, 0, x_46); -lean_ctor_set_uint8(x_48, sizeof(void*)*1, x_47); -x_49 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_49, 0, x_48); -lean_ctor_set(x_49, 1, x_38); -return x_49; -} -else -{ -lean_object* x_50; lean_object* x_51; -x_50 = lean_array_fget(x_37, x_39); -lean_dec(x_39); -lean_dec(x_37); -x_51 = lean_ctor_get(x_50, 1); -lean_inc(x_51); -lean_dec(x_50); -if (lean_obj_tag(x_51) == 0) -{ -lean_object* x_52; lean_object* x_53; -x_52 = l_Lean_Server_handleCodeActionResolve___lambda__2___closed__3; -x_53 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_53, 0, x_52); -lean_ctor_set(x_53, 1, x_38); -return x_53; -} -else -{ -lean_object* x_54; lean_object* x_55; -x_54 = lean_ctor_get(x_51, 0); -lean_inc(x_54); -lean_dec(x_51); -x_55 = lean_apply_1(x_54, x_38); -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_55); - x_58 = lean_box(0); -} -if (lean_is_scalar(x_58)) { - x_59 = lean_alloc_ctor(0, 2, 0); -} else { - x_59 = x_58; -} -lean_ctor_set(x_59, 0, x_56); -lean_ctor_set(x_59, 1, x_57); -return x_59; -} -else -{ -lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; -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_55); - x_62 = lean_box(0); -} -x_63 = l_Lean_Server_RequestError_ofIoError(x_60); -if (lean_is_scalar(x_62)) { - x_64 = lean_alloc_ctor(1, 2, 0); -} else { - x_64 = x_62; -} -lean_ctor_set(x_64, 0, x_63); -lean_ctor_set(x_64, 1, x_61); -return x_64; -} -} -} -} -} -else -{ -uint8_t x_65; -lean_dec(x_3); -x_65 = !lean_is_exclusive(x_7); -if (x_65 == 0) -{ -return x_7; -} -else -{ -lean_object* x_66; lean_object* x_67; lean_object* x_68; -x_66 = lean_ctor_get(x_7, 0); -x_67 = lean_ctor_get(x_7, 1); -lean_inc(x_67); -lean_inc(x_66); -lean_dec(x_7); -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_EXPORT lean_object* l_Lean_Server_handleCodeActionResolve___lambda__3(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { -_start: -{ -lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; -x_6 = l_Lean_Server_addBuiltinCodeActionProvider___closed__1; -x_7 = lean_st_ref_get(x_6, x_5); -x_8 = lean_ctor_get(x_7, 0); -lean_inc(x_8); -x_9 = lean_ctor_get(x_7, 1); -lean_inc(x_9); -lean_dec(x_7); -x_10 = lean_ctor_get(x_2, 1); -lean_inc(x_10); -x_11 = l_Lean_RBNode_find___at_Lean_Server_handleCodeActionResolve___spec__2(x_8, x_10); -lean_dec(x_8); -if (lean_obj_tag(x_11) == 0) -{ -lean_object* x_12; lean_object* x_13; -x_12 = lean_alloc_closure((void*)(l___private_Lean_Server_CodeActions_0__Lean_Server_evalCodeActionProviderUnsafe___at_Lean_Server_handleCodeAction___spec__1), 5, 1); -lean_closure_set(x_12, 0, x_10); -lean_inc(x_4); -lean_inc(x_3); -x_13 = l_Lean_Server_RequestM_runCoreM___rarg(x_3, x_12, x_4, x_9); -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_Server_handleCodeActionResolve___lambda__2(x_1, x_3, x_2, x_14, x_4, x_15); -return x_16; -} -else -{ -uint8_t x_17; -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -lean_dec(x_1); -x_17 = !lean_is_exclusive(x_13); -if (x_17 == 0) -{ -return x_13; -} -else -{ -lean_object* x_18; lean_object* x_19; lean_object* x_20; -x_18 = lean_ctor_get(x_13, 0); -x_19 = lean_ctor_get(x_13, 1); -lean_inc(x_19); -lean_inc(x_18); -lean_dec(x_13); -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; lean_object* x_22; -lean_dec(x_10); -x_21 = lean_ctor_get(x_11, 0); -lean_inc(x_21); -lean_dec(x_11); -x_22 = l_Lean_Server_handleCodeActionResolve___lambda__2(x_1, x_3, x_2, x_21, x_4, x_9); -return x_22; -} -} -} -static lean_object* _init_l_Lean_Server_handleCodeActionResolve___closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("Expected a data field on CodeAction.", 36); -return x_1; -} -} -static lean_object* _init_l_Lean_Server_handleCodeActionResolve___closed__2() { -_start: -{ -uint8_t x_1; lean_object* x_2; lean_object* x_3; -x_1 = 3; -x_2 = l_Lean_Server_handleCodeActionResolve___closed__1; -x_3 = lean_alloc_ctor(0, 1, 1); -lean_ctor_set(x_3, 0, x_2); -lean_ctor_set_uint8(x_3, sizeof(void*)*1, x_1); -return x_3; -} -} -static lean_object* _init_l_Lean_Server_handleCodeActionResolve___closed__3() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("snapshot not found", 18); -return x_1; -} -} -static lean_object* _init_l_Lean_Server_handleCodeActionResolve___closed__4() { -_start: -{ -uint8_t x_1; lean_object* x_2; lean_object* x_3; -x_1 = 4; -x_2 = l_Lean_Server_handleCodeActionResolve___closed__3; -x_3 = lean_alloc_ctor(0, 1, 1); -lean_ctor_set(x_3, 0, x_2); -lean_ctor_set_uint8(x_3, sizeof(void*)*1, x_1); -return x_3; -} -} -LEAN_EXPORT lean_object* l_Lean_Server_handleCodeActionResolve(lean_object* x_1, lean_object* x_2, lean_object* x_3) { -_start: -{ -lean_object* x_4; lean_object* x_5; -x_4 = l_Lean_Server_RequestM_readDoc___at_Lean_Server_RequestM_withWaitFindSnapAtPos___spec__1(x_2, x_3); -x_5 = lean_ctor_get(x_1, 9); -if (lean_obj_tag(x_5) == 0) -{ -uint8_t x_6; -lean_dec(x_2); -x_6 = !lean_is_exclusive(x_4); -if (x_6 == 0) -{ -lean_object* x_7; lean_object* x_8; -x_7 = lean_ctor_get(x_4, 0); -lean_dec(x_7); -x_8 = l_Lean_Server_handleCodeActionResolve___closed__2; -lean_ctor_set_tag(x_4, 1); -lean_ctor_set(x_4, 0, x_8); -return x_4; -} -else -{ -lean_object* x_9; lean_object* x_10; lean_object* x_11; -x_9 = lean_ctor_get(x_4, 1); -lean_inc(x_9); -lean_dec(x_4); -x_10 = l_Lean_Server_handleCodeActionResolve___closed__2; -x_11 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_11, 0, x_10); -lean_ctor_set(x_11, 1, x_9); -return x_11; -} -} -else -{ -lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; -x_12 = lean_ctor_get(x_4, 0); -lean_inc(x_12); -x_13 = lean_ctor_get(x_4, 1); -lean_inc(x_13); -lean_dec(x_4); -x_14 = lean_ctor_get(x_5, 0); -x_15 = l___private_Lean_Server_CodeActions_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions___hyg_117_(x_14); -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; uint8_t x_18; lean_object* x_19; lean_object* x_20; -x_17 = lean_ctor_get(x_15, 0); -x_18 = 3; -x_19 = lean_alloc_ctor(0, 1, 1); -lean_ctor_set(x_19, 0, x_17); -lean_ctor_set_uint8(x_19, sizeof(void*)*1, x_18); -lean_ctor_set(x_15, 0, x_19); -x_20 = l_liftExcept___at_Lean_Server_handleCodeActionResolve___spec__1(x_15, x_2, x_13); -lean_dec(x_15); -if (lean_obj_tag(x_20) == 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_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_21 = lean_ctor_get(x_20, 0); -lean_inc(x_21); -x_22 = lean_ctor_get(x_20, 1); -lean_inc(x_22); -lean_dec(x_20); -x_23 = lean_ctor_get(x_12, 0); -lean_inc(x_23); -x_24 = lean_ctor_get(x_23, 2); -lean_inc(x_24); -lean_dec(x_23); -x_25 = lean_ctor_get(x_21, 0); -lean_inc(x_25); -x_26 = lean_ctor_get(x_25, 3); -lean_inc(x_26); -x_27 = lean_ctor_get(x_26, 1); -lean_inc(x_27); -lean_dec(x_26); -x_28 = l_Lean_FileMap_lspPosToUtf8Pos(x_24, x_27); -lean_dec(x_24); -x_29 = lean_alloc_closure((void*)(l_Lean_Server_handleCodeAction___lambda__1___boxed), 2, 1); -lean_closure_set(x_29, 0, x_28); -x_30 = l_Lean_Server_handleCodeActionResolve___closed__4; -x_31 = lean_alloc_closure((void*)(l_Lean_Server_handleCodeActionResolve___lambda__1___boxed), 3, 1); -lean_closure_set(x_31, 0, x_30); -x_32 = lean_alloc_closure((void*)(l_Lean_Server_handleCodeActionResolve___lambda__3), 5, 2); -lean_closure_set(x_32, 0, x_25); -lean_closure_set(x_32, 1, x_21); -x_33 = l_Lean_Server_handleCodeAction___closed__3; -x_34 = l_Lean_Server_RequestM_withWaitFindSnap___rarg(x_12, x_29, x_31, x_32, x_33, x_2, x_22); -return x_34; -} -else -{ -uint8_t x_35; -lean_dec(x_12); -lean_dec(x_2); -x_35 = !lean_is_exclusive(x_20); -if (x_35 == 0) -{ -return x_20; -} -else -{ -lean_object* x_36; lean_object* x_37; lean_object* x_38; -x_36 = lean_ctor_get(x_20, 0); -x_37 = lean_ctor_get(x_20, 1); -lean_inc(x_37); -lean_inc(x_36); -lean_dec(x_20); -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; -} -} -} -else -{ -lean_object* x_39; uint8_t x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; -x_39 = lean_ctor_get(x_15, 0); -lean_inc(x_39); -lean_dec(x_15); -x_40 = 3; -x_41 = lean_alloc_ctor(0, 1, 1); -lean_ctor_set(x_41, 0, x_39); -lean_ctor_set_uint8(x_41, sizeof(void*)*1, x_40); -x_42 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_42, 0, x_41); -x_43 = l_liftExcept___at_Lean_Server_handleCodeActionResolve___spec__1(x_42, x_2, x_13); -lean_dec(x_42); -if (lean_obj_tag(x_43) == 0) -{ -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; -x_44 = lean_ctor_get(x_43, 0); -lean_inc(x_44); -x_45 = lean_ctor_get(x_43, 1); -lean_inc(x_45); -lean_dec(x_43); -x_46 = lean_ctor_get(x_12, 0); -lean_inc(x_46); -x_47 = lean_ctor_get(x_46, 2); -lean_inc(x_47); -lean_dec(x_46); -x_48 = lean_ctor_get(x_44, 0); -lean_inc(x_48); -x_49 = lean_ctor_get(x_48, 3); -lean_inc(x_49); -x_50 = lean_ctor_get(x_49, 1); -lean_inc(x_50); -lean_dec(x_49); -x_51 = l_Lean_FileMap_lspPosToUtf8Pos(x_47, x_50); -lean_dec(x_47); -x_52 = lean_alloc_closure((void*)(l_Lean_Server_handleCodeAction___lambda__1___boxed), 2, 1); -lean_closure_set(x_52, 0, x_51); -x_53 = l_Lean_Server_handleCodeActionResolve___closed__4; -x_54 = lean_alloc_closure((void*)(l_Lean_Server_handleCodeActionResolve___lambda__1___boxed), 3, 1); -lean_closure_set(x_54, 0, x_53); -x_55 = lean_alloc_closure((void*)(l_Lean_Server_handleCodeActionResolve___lambda__3), 5, 2); -lean_closure_set(x_55, 0, x_48); -lean_closure_set(x_55, 1, x_44); -x_56 = l_Lean_Server_handleCodeAction___closed__3; -x_57 = l_Lean_Server_RequestM_withWaitFindSnap___rarg(x_12, x_52, x_54, x_55, x_56, x_2, x_45); -return x_57; -} -else -{ -lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; -lean_dec(x_12); -lean_dec(x_2); -x_58 = lean_ctor_get(x_43, 0); -lean_inc(x_58); -x_59 = lean_ctor_get(x_43, 1); -lean_inc(x_59); -if (lean_is_exclusive(x_43)) { - lean_ctor_release(x_43, 0); - lean_ctor_release(x_43, 1); - x_60 = x_43; -} else { - lean_dec_ref(x_43); - x_60 = lean_box(0); -} -if (lean_is_scalar(x_60)) { - x_61 = lean_alloc_ctor(1, 2, 0); -} else { - x_61 = x_60; -} -lean_ctor_set(x_61, 0, x_58); -lean_ctor_set(x_61, 1, x_59); -return x_61; -} -} -} -else -{ -uint8_t x_62; -x_62 = !lean_is_exclusive(x_15); -if (x_62 == 0) -{ -lean_object* x_63; -x_63 = l_liftExcept___at_Lean_Server_handleCodeActionResolve___spec__1(x_15, x_2, x_13); -lean_dec(x_15); -if (lean_obj_tag(x_63) == 0) -{ -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; -x_64 = lean_ctor_get(x_63, 0); -lean_inc(x_64); -x_65 = lean_ctor_get(x_63, 1); -lean_inc(x_65); -lean_dec(x_63); -x_66 = lean_ctor_get(x_12, 0); -lean_inc(x_66); -x_67 = lean_ctor_get(x_66, 2); -lean_inc(x_67); -lean_dec(x_66); -x_68 = lean_ctor_get(x_64, 0); -lean_inc(x_68); -x_69 = lean_ctor_get(x_68, 3); -lean_inc(x_69); -x_70 = lean_ctor_get(x_69, 1); -lean_inc(x_70); -lean_dec(x_69); -x_71 = l_Lean_FileMap_lspPosToUtf8Pos(x_67, x_70); -lean_dec(x_67); -x_72 = lean_alloc_closure((void*)(l_Lean_Server_handleCodeAction___lambda__1___boxed), 2, 1); -lean_closure_set(x_72, 0, x_71); -x_73 = l_Lean_Server_handleCodeActionResolve___closed__4; -x_74 = lean_alloc_closure((void*)(l_Lean_Server_handleCodeActionResolve___lambda__1___boxed), 3, 1); -lean_closure_set(x_74, 0, x_73); -x_75 = lean_alloc_closure((void*)(l_Lean_Server_handleCodeActionResolve___lambda__3), 5, 2); -lean_closure_set(x_75, 0, x_68); -lean_closure_set(x_75, 1, x_64); -x_76 = l_Lean_Server_handleCodeAction___closed__3; -x_77 = l_Lean_Server_RequestM_withWaitFindSnap___rarg(x_12, x_72, x_74, x_75, x_76, x_2, x_65); -return x_77; -} -else -{ -uint8_t x_78; -lean_dec(x_12); -lean_dec(x_2); -x_78 = !lean_is_exclusive(x_63); -if (x_78 == 0) -{ -return x_63; -} -else -{ -lean_object* x_79; lean_object* x_80; lean_object* x_81; -x_79 = lean_ctor_get(x_63, 0); -x_80 = lean_ctor_get(x_63, 1); -lean_inc(x_80); -lean_inc(x_79); -lean_dec(x_63); -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 -{ -lean_object* x_82; lean_object* x_83; lean_object* x_84; -x_82 = lean_ctor_get(x_15, 0); -lean_inc(x_82); -lean_dec(x_15); -x_83 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_83, 0, x_82); -x_84 = l_liftExcept___at_Lean_Server_handleCodeActionResolve___spec__1(x_83, x_2, x_13); -lean_dec(x_83); -if (lean_obj_tag(x_84) == 0) -{ -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; -x_85 = lean_ctor_get(x_84, 0); -lean_inc(x_85); -x_86 = lean_ctor_get(x_84, 1); -lean_inc(x_86); -lean_dec(x_84); -x_87 = lean_ctor_get(x_12, 0); -lean_inc(x_87); -x_88 = lean_ctor_get(x_87, 2); -lean_inc(x_88); -lean_dec(x_87); -x_89 = lean_ctor_get(x_85, 0); -lean_inc(x_89); -x_90 = lean_ctor_get(x_89, 3); -lean_inc(x_90); -x_91 = lean_ctor_get(x_90, 1); -lean_inc(x_91); -lean_dec(x_90); -x_92 = l_Lean_FileMap_lspPosToUtf8Pos(x_88, x_91); -lean_dec(x_88); -x_93 = lean_alloc_closure((void*)(l_Lean_Server_handleCodeAction___lambda__1___boxed), 2, 1); -lean_closure_set(x_93, 0, x_92); -x_94 = l_Lean_Server_handleCodeActionResolve___closed__4; -x_95 = lean_alloc_closure((void*)(l_Lean_Server_handleCodeActionResolve___lambda__1___boxed), 3, 1); -lean_closure_set(x_95, 0, x_94); -x_96 = lean_alloc_closure((void*)(l_Lean_Server_handleCodeActionResolve___lambda__3), 5, 2); -lean_closure_set(x_96, 0, x_89); -lean_closure_set(x_96, 1, x_85); -x_97 = l_Lean_Server_handleCodeAction___closed__3; -x_98 = l_Lean_Server_RequestM_withWaitFindSnap___rarg(x_12, x_93, x_95, x_96, x_97, x_2, x_86); -return x_98; -} -else -{ -lean_object* x_99; lean_object* x_100; lean_object* x_101; lean_object* x_102; -lean_dec(x_12); -lean_dec(x_2); -x_99 = lean_ctor_get(x_84, 0); -lean_inc(x_99); -x_100 = lean_ctor_get(x_84, 1); -lean_inc(x_100); -if (lean_is_exclusive(x_84)) { - lean_ctor_release(x_84, 0); - lean_ctor_release(x_84, 1); - x_101 = x_84; -} else { - lean_dec_ref(x_84); - x_101 = lean_box(0); -} -if (lean_is_scalar(x_101)) { - x_102 = lean_alloc_ctor(1, 2, 0); -} else { - x_102 = x_101; -} -lean_ctor_set(x_102, 0, x_99); -lean_ctor_set(x_102, 1, x_100); -return x_102; -} -} -} -} -} -} -LEAN_EXPORT lean_object* l_liftExcept___at_Lean_Server_handleCodeActionResolve___spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { -_start: -{ -lean_object* x_4; -x_4 = l_liftExcept___at_Lean_Server_handleCodeActionResolve___spec__1(x_1, x_2, x_3); -lean_dec(x_2); -lean_dec(x_1); -return x_4; -} -} -LEAN_EXPORT lean_object* l_Lean_RBNode_find___at_Lean_Server_handleCodeActionResolve___spec__2___boxed(lean_object* x_1, lean_object* x_2) { -_start: -{ -lean_object* x_3; -x_3 = l_Lean_RBNode_find___at_Lean_Server_handleCodeActionResolve___spec__2(x_1, x_2); -lean_dec(x_2); -lean_dec(x_1); -return x_3; -} -} -LEAN_EXPORT lean_object* l_Lean_Server_handleCodeActionResolve___lambda__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { -_start: -{ -lean_object* x_4; -x_4 = l_Lean_Server_handleCodeActionResolve___lambda__1(x_1, x_2, x_3); -lean_dec(x_2); -return x_4; -} -} -LEAN_EXPORT lean_object* l_Lean_Server_handleCodeActionResolve___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { -_start: -{ -lean_object* x_4; -x_4 = l_Lean_Server_handleCodeActionResolve(x_1, x_2, x_3); -lean_dec(x_1); -return x_4; -} -} -LEAN_EXPORT lean_object* l_Lean_Server_parseRequestParams___at_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_1507____spec__2(lean_object* x_1) { -_start: -{ -lean_object* x_2; -x_2 = l___private_Lean_Data_Lsp_CodeActions_0__Lean_Lsp_fromJsonCodeAction____x40_Lean_Data_Lsp_CodeActions___hyg_1186_(x_1); -if (lean_obj_tag(x_2) == 0) -{ -uint8_t x_3; -x_3 = !lean_is_exclusive(x_2); -if (x_3 == 0) -{ -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; lean_object* x_14; -x_4 = lean_ctor_get(x_2, 0); -x_5 = l_Lean_Json_compress(x_1); -x_6 = l_Lean_Server_parseRequestParams___at_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_1177____spec__2___closed__1; -x_7 = lean_string_append(x_6, x_5); -lean_dec(x_5); -x_8 = l_Lean_Server_parseRequestParams___at_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_1177____spec__2___closed__2; -x_9 = lean_string_append(x_7, x_8); -x_10 = lean_string_append(x_9, x_4); -lean_dec(x_4); -x_11 = l_Lean_Server_CodeAction_getFileSource_x21___closed__2; -x_12 = lean_string_append(x_10, x_11); -x_13 = 0; -x_14 = lean_alloc_ctor(0, 1, 1); -lean_ctor_set(x_14, 0, x_12); -lean_ctor_set_uint8(x_14, sizeof(void*)*1, x_13); -lean_ctor_set(x_2, 0, x_14); -return x_2; -} -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; lean_object* x_22; lean_object* x_23; uint8_t x_24; lean_object* x_25; lean_object* x_26; -x_15 = lean_ctor_get(x_2, 0); -lean_inc(x_15); -lean_dec(x_2); -x_16 = l_Lean_Json_compress(x_1); -x_17 = l_Lean_Server_parseRequestParams___at_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_1177____spec__2___closed__1; -x_18 = lean_string_append(x_17, x_16); -lean_dec(x_16); -x_19 = l_Lean_Server_parseRequestParams___at_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_1177____spec__2___closed__2; -x_20 = lean_string_append(x_18, x_19); -x_21 = lean_string_append(x_20, x_15); -lean_dec(x_15); -x_22 = l_Lean_Server_CodeAction_getFileSource_x21___closed__2; -x_23 = lean_string_append(x_21, x_22); -x_24 = 0; -x_25 = lean_alloc_ctor(0, 1, 1); -lean_ctor_set(x_25, 0, x_23); -lean_ctor_set_uint8(x_25, sizeof(void*)*1, x_24); -x_26 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_26, 0, x_25); -return x_26; -} -} -else -{ -uint8_t x_27; -lean_dec(x_1); -x_27 = !lean_is_exclusive(x_2); -if (x_27 == 0) -{ -return x_2; -} -else -{ -lean_object* x_28; lean_object* x_29; -x_28 = lean_ctor_get(x_2, 0); -lean_inc(x_28); -lean_dec(x_2); -x_29 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_29, 0, x_28); -return x_29; -} -} -} -} -LEAN_EXPORT lean_object* l_liftExcept___at_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_1507____spec__3(lean_object* x_1, lean_object* x_2, lean_object* x_3) { -_start: -{ -if (lean_obj_tag(x_1) == 0) -{ -lean_object* x_4; lean_object* x_5; -x_4 = lean_ctor_get(x_1, 0); -lean_inc(x_4); -x_5 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_5, 0, x_4); -lean_ctor_set(x_5, 1, x_3); -return x_5; -} -else -{ -lean_object* x_6; lean_object* x_7; -x_6 = lean_ctor_get(x_1, 0); -lean_inc(x_6); -x_7 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_7, 0, x_6); -lean_ctor_set(x_7, 1, x_3); -return x_7; -} -} -} -LEAN_EXPORT lean_object* l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_1507____spec__1___lambda__1(lean_object* x_1) { -_start: -{ -lean_object* x_2; -x_2 = l_Lean_Server_parseRequestParams___at_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_1507____spec__2(x_1); -if (lean_obj_tag(x_2) == 0) -{ -uint8_t x_3; -x_3 = !lean_is_exclusive(x_2); -if (x_3 == 0) -{ -return x_2; -} -else -{ -lean_object* x_4; lean_object* x_5; -x_4 = lean_ctor_get(x_2, 0); -lean_inc(x_4); -lean_dec(x_2); -x_5 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_5, 0, x_4); -return x_5; -} -} -else -{ -uint8_t x_6; -x_6 = !lean_is_exclusive(x_2); -if (x_6 == 0) -{ -lean_object* x_7; lean_object* x_8; -x_7 = lean_ctor_get(x_2, 0); -x_8 = l_Lean_Server_CodeAction_getFileSource_x21(x_7); -lean_ctor_set(x_2, 0, x_8); -return x_2; -} -else -{ -lean_object* x_9; lean_object* x_10; lean_object* x_11; -x_9 = lean_ctor_get(x_2, 0); -lean_inc(x_9); -lean_dec(x_2); -x_10 = l_Lean_Server_CodeAction_getFileSource_x21(x_9); -x_11 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_11, 0, x_10); -return x_11; -} -} -} -} -static lean_object* _init_l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_1507____spec__1___lambda__2___closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l___private_Lean_Data_Lsp_CodeActions_0__Lean_Lsp_toJsonCodeAction____x40_Lean_Data_Lsp_CodeActions___hyg_1091_), 1, 0); -return x_1; -} -} -static lean_object* _init_l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_1507____spec__1___lambda__2___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_1507____spec__1___lambda__2___closed__1; -x_2 = lean_alloc_closure((void*)(l_Except_map___rarg), 2, 1); -lean_closure_set(x_2, 0, x_1); -return x_2; -} -} -LEAN_EXPORT lean_object* l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_1507____spec__1___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; -x_5 = l_Lean_Server_parseRequestParams___at_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_1507____spec__2(x_2); -x_6 = l_liftExcept___at_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_1507____spec__3(x_5, x_3, x_4); -lean_dec(x_5); -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_6, 0); -lean_inc(x_7); -x_8 = lean_ctor_get(x_6, 1); -lean_inc(x_8); -lean_dec(x_6); -x_9 = lean_apply_3(x_1, x_7, x_3, x_8); -if (lean_obj_tag(x_9) == 0) -{ -uint8_t x_10; -x_10 = !lean_is_exclusive(x_9); -if (x_10 == 0) -{ -lean_object* x_11; lean_object* x_12; lean_object* x_13; uint8_t x_14; lean_object* x_15; -x_11 = lean_ctor_get(x_9, 0); -x_12 = l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_1507____spec__1___lambda__2___closed__2; -x_13 = l_Task_Priority_default; -x_14 = 0; -x_15 = lean_task_map(x_12, x_11, x_13, x_14); -lean_ctor_set(x_9, 0, x_15); -return x_9; -} -else -{ -lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; uint8_t x_20; lean_object* x_21; lean_object* x_22; -x_16 = lean_ctor_get(x_9, 0); -x_17 = lean_ctor_get(x_9, 1); -lean_inc(x_17); -lean_inc(x_16); -lean_dec(x_9); -x_18 = l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_1507____spec__1___lambda__2___closed__2; -x_19 = l_Task_Priority_default; -x_20 = 0; -x_21 = lean_task_map(x_18, x_16, x_19, x_20); -x_22 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_22, 0, x_21); -lean_ctor_set(x_22, 1, x_17); -return x_22; -} -} -else -{ -uint8_t x_23; -x_23 = !lean_is_exclusive(x_9); -if (x_23 == 0) -{ -return x_9; -} -else -{ -lean_object* x_24; lean_object* x_25; lean_object* x_26; -x_24 = lean_ctor_get(x_9, 0); -x_25 = lean_ctor_get(x_9, 1); -lean_inc(x_25); -lean_inc(x_24); -lean_dec(x_9); -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 -{ -uint8_t x_27; -lean_dec(x_3); -lean_dec(x_1); -x_27 = !lean_is_exclusive(x_6); -if (x_27 == 0) -{ -return x_6; -} -else -{ -lean_object* x_28; lean_object* x_29; lean_object* x_30; -x_28 = lean_ctor_get(x_6, 0); -x_29 = lean_ctor_get(x_6, 1); -lean_inc(x_29); -lean_inc(x_28); -lean_dec(x_6); -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; -} -} -} -} -static lean_object* _init_l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_1507____spec__1___lambda__3___closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_1507____spec__1___lambda__1), 1, 0); -return x_1; -} -} -LEAN_EXPORT lean_object* l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_1507____spec__1___lambda__3(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; 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; -x_5 = lean_alloc_closure((void*)(l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_1507____spec__1___lambda__2), 4, 1); -lean_closure_set(x_5, 0, x_1); -x_6 = l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_1177____spec__1___lambda__4___closed__1; -x_7 = lean_st_ref_take(x_6, x_4); -x_8 = lean_ctor_get(x_7, 0); -lean_inc(x_8); -x_9 = lean_ctor_get(x_7, 1); -lean_inc(x_9); -lean_dec(x_7); -x_10 = l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_1507____spec__1___lambda__3___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_5); -x_12 = l_Lean_PersistentHashMap_insert___at_Lean_Server_registerLspRequestHandler___spec__2(x_8, x_2, x_11); -x_13 = lean_st_ref_set(x_6, x_12, x_9); -x_14 = !lean_is_exclusive(x_13); -if (x_14 == 0) -{ -return x_13; -} -else -{ -lean_object* x_15; lean_object* x_16; lean_object* x_17; -x_15 = lean_ctor_get(x_13, 0); -x_16 = lean_ctor_get(x_13, 1); -lean_inc(x_16); -lean_inc(x_15); -lean_dec(x_13); -x_17 = lean_alloc_ctor(0, 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_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_1507____spec__1___lambda__4(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; uint8_t x_7; -lean_dec(x_3); -x_5 = l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_1177____spec__1___lambda__4___closed__1; -x_6 = lean_st_ref_get(x_5, x_4); -x_7 = !lean_is_exclusive(x_6); -if (x_7 == 0) -{ -lean_object* x_8; lean_object* x_9; uint8_t x_10; -x_8 = lean_ctor_get(x_6, 0); -x_9 = lean_ctor_get(x_6, 1); -lean_inc(x_2); -x_10 = l_Lean_PersistentHashMap_contains___at_Lean_Server_registerLspRequestHandler___spec__6(x_8, x_2); -if (x_10 == 0) -{ -lean_object* x_11; lean_object* x_12; -lean_free_object(x_6); -x_11 = lean_box(0); -x_12 = l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_1507____spec__1___lambda__3(x_1, x_2, x_11, x_9); -return x_12; -} -else -{ -lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; -lean_dec(x_1); -x_13 = l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_1177____spec__1___lambda__5___closed__1; -x_14 = lean_string_append(x_13, x_2); -lean_dec(x_2); -x_15 = l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_1177____spec__1___lambda__5___closed__2; -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_tag(x_6, 1); -lean_ctor_set(x_6, 0, x_17); -return x_6; -} -} -else -{ -lean_object* x_18; lean_object* x_19; uint8_t x_20; -x_18 = lean_ctor_get(x_6, 0); -x_19 = lean_ctor_get(x_6, 1); -lean_inc(x_19); -lean_inc(x_18); -lean_dec(x_6); -lean_inc(x_2); -x_20 = l_Lean_PersistentHashMap_contains___at_Lean_Server_registerLspRequestHandler___spec__6(x_18, x_2); -if (x_20 == 0) -{ -lean_object* x_21; lean_object* x_22; -x_21 = lean_box(0); -x_22 = l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_1507____spec__1___lambda__3(x_1, x_2, x_21, x_19); -return x_22; -} -else -{ -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_dec(x_1); -x_23 = l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_1177____spec__1___lambda__5___closed__1; -x_24 = lean_string_append(x_23, x_2); -lean_dec(x_2); -x_25 = l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_1177____spec__1___lambda__5___closed__2; -x_26 = lean_string_append(x_24, x_25); -x_27 = lean_alloc_ctor(18, 1, 0); -lean_ctor_set(x_27, 0, x_26); -x_28 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_28, 0, x_27); -lean_ctor_set(x_28, 1, x_19); -return x_28; -} -} -} -} -LEAN_EXPORT lean_object* l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_1507____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; -x_4 = l_Lean_initializing(x_3); -x_5 = lean_ctor_get(x_4, 0); -lean_inc(x_5); -x_6 = lean_unbox(x_5); -lean_dec(x_5); -if (x_6 == 0) -{ -uint8_t x_7; -lean_dec(x_2); -x_7 = !lean_is_exclusive(x_4); -if (x_7 == 0) -{ -lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; -x_8 = lean_ctor_get(x_4, 0); -lean_dec(x_8); -x_9 = l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_1177____spec__1___lambda__5___closed__1; -x_10 = lean_string_append(x_9, x_1); -lean_dec(x_1); -x_11 = l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_1177____spec__1___closed__1; -x_12 = lean_string_append(x_10, x_11); -x_13 = lean_alloc_ctor(18, 1, 0); -lean_ctor_set(x_13, 0, x_12); -lean_ctor_set_tag(x_4, 1); -lean_ctor_set(x_4, 0, x_13); -return x_4; -} -else -{ -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; -x_14 = lean_ctor_get(x_4, 1); -lean_inc(x_14); -lean_dec(x_4); -x_15 = l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_1177____spec__1___lambda__5___closed__1; -x_16 = lean_string_append(x_15, x_1); -lean_dec(x_1); -x_17 = l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_1177____spec__1___closed__1; -x_18 = lean_string_append(x_16, x_17); -x_19 = lean_alloc_ctor(18, 1, 0); -lean_ctor_set(x_19, 0, x_18); -x_20 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_20, 0, x_19); -lean_ctor_set(x_20, 1, x_14); -return x_20; -} -} -else -{ -lean_object* x_21; lean_object* x_22; lean_object* x_23; -x_21 = lean_ctor_get(x_4, 1); -lean_inc(x_21); -lean_dec(x_4); -x_22 = lean_box(0); -x_23 = l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_1507____spec__1___lambda__4(x_2, x_1, x_22, x_21); -return x_23; -} -} -} -static lean_object* _init_l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_1507____closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("codeAction/resolve", 18); -return x_1; -} -} -static lean_object* _init_l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_1507____closed__2() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Server_handleCodeActionResolve___boxed), 3, 0); -return x_1; -} -} -LEAN_EXPORT lean_object* l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_1507_(lean_object* x_1) { -_start: -{ -lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_2 = l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_1507____closed__1; -x_3 = l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_1507____closed__2; -x_4 = l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_1507____spec__1(x_2, x_3, x_1); -return x_4; -} -} -LEAN_EXPORT lean_object* l_liftExcept___at_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_1507____spec__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { -_start: -{ -lean_object* x_4; -x_4 = l_liftExcept___at_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_1507____spec__3(x_1, x_2, x_3); -lean_dec(x_2); -lean_dec(x_1); -return x_4; -} -} -LEAN_EXPORT lean_object* l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_1507____spec__1___lambda__3___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_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_1507____spec__1___lambda__3(x_1, x_2, x_3, x_4); -lean_dec(x_3); -return x_5; -} -} -lean_object* initialize_Lean_Server_FileWorker_RequestHandling(uint8_t builtin, lean_object*); -lean_object* initialize_Lean_Server_InfoUtils(uint8_t builtin, lean_object*); +lean_object* initialize_Init(uint8_t builtin, lean_object*); +lean_object* initialize_Lean_Server_CodeActions_Attr(uint8_t builtin, lean_object*); +lean_object* initialize_Lean_Server_CodeActions_Basic(uint8_t builtin, lean_object*); +lean_object* initialize_Lean_Server_CodeActions_Provider(uint8_t builtin, lean_object*); static bool _G_initialized = false; LEAN_EXPORT lean_object* initialize_Lean_Server_CodeActions(uint8_t builtin, lean_object* w) { lean_object * res; if (_G_initialized) return lean_io_result_mk_ok(lean_box(0)); _G_initialized = true; -res = initialize_Lean_Server_FileWorker_RequestHandling(builtin, lean_io_mk_world()); +res = initialize_Init(builtin, lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Lean_Server_InfoUtils(builtin, lean_io_mk_world()); +res = initialize_Lean_Server_CodeActions_Attr(builtin, lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -l_Lean_Server_LazyCodeAction_lazy_x3f___default = _init_l_Lean_Server_LazyCodeAction_lazy_x3f___default(); -lean_mark_persistent(l_Lean_Server_LazyCodeAction_lazy_x3f___default); -l___private_Lean_Server_CodeActions_0__Lean_Server_toJsonCodeActionResolveData____x40_Lean_Server_CodeActions___hyg_57____closed__1 = _init_l___private_Lean_Server_CodeActions_0__Lean_Server_toJsonCodeActionResolveData____x40_Lean_Server_CodeActions___hyg_57____closed__1(); -lean_mark_persistent(l___private_Lean_Server_CodeActions_0__Lean_Server_toJsonCodeActionResolveData____x40_Lean_Server_CodeActions___hyg_57____closed__1); -l___private_Lean_Server_CodeActions_0__Lean_Server_toJsonCodeActionResolveData____x40_Lean_Server_CodeActions___hyg_57____closed__2 = _init_l___private_Lean_Server_CodeActions_0__Lean_Server_toJsonCodeActionResolveData____x40_Lean_Server_CodeActions___hyg_57____closed__2(); -lean_mark_persistent(l___private_Lean_Server_CodeActions_0__Lean_Server_toJsonCodeActionResolveData____x40_Lean_Server_CodeActions___hyg_57____closed__2); -l___private_Lean_Server_CodeActions_0__Lean_Server_toJsonCodeActionResolveData____x40_Lean_Server_CodeActions___hyg_57____closed__3 = _init_l___private_Lean_Server_CodeActions_0__Lean_Server_toJsonCodeActionResolveData____x40_Lean_Server_CodeActions___hyg_57____closed__3(); -lean_mark_persistent(l___private_Lean_Server_CodeActions_0__Lean_Server_toJsonCodeActionResolveData____x40_Lean_Server_CodeActions___hyg_57____closed__3); -l_Lean_Server_instToJsonCodeActionResolveData___closed__1 = _init_l_Lean_Server_instToJsonCodeActionResolveData___closed__1(); -lean_mark_persistent(l_Lean_Server_instToJsonCodeActionResolveData___closed__1); -l_Lean_Server_instToJsonCodeActionResolveData = _init_l_Lean_Server_instToJsonCodeActionResolveData(); -lean_mark_persistent(l_Lean_Server_instToJsonCodeActionResolveData); -l___private_Lean_Server_CodeActions_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions___hyg_117____closed__1 = _init_l___private_Lean_Server_CodeActions_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions___hyg_117____closed__1(); -lean_mark_persistent(l___private_Lean_Server_CodeActions_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions___hyg_117____closed__1); -l___private_Lean_Server_CodeActions_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions___hyg_117____closed__2 = _init_l___private_Lean_Server_CodeActions_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions___hyg_117____closed__2(); -lean_mark_persistent(l___private_Lean_Server_CodeActions_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions___hyg_117____closed__2); -l___private_Lean_Server_CodeActions_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions___hyg_117____closed__3 = _init_l___private_Lean_Server_CodeActions_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions___hyg_117____closed__3(); -lean_mark_persistent(l___private_Lean_Server_CodeActions_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions___hyg_117____closed__3); -l___private_Lean_Server_CodeActions_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions___hyg_117____closed__4 = _init_l___private_Lean_Server_CodeActions_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions___hyg_117____closed__4(); -lean_mark_persistent(l___private_Lean_Server_CodeActions_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions___hyg_117____closed__4); -l___private_Lean_Server_CodeActions_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions___hyg_117____closed__5 = _init_l___private_Lean_Server_CodeActions_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions___hyg_117____closed__5(); -lean_mark_persistent(l___private_Lean_Server_CodeActions_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions___hyg_117____closed__5); -l___private_Lean_Server_CodeActions_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions___hyg_117____closed__6 = _init_l___private_Lean_Server_CodeActions_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions___hyg_117____closed__6(); -lean_mark_persistent(l___private_Lean_Server_CodeActions_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions___hyg_117____closed__6); -l___private_Lean_Server_CodeActions_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions___hyg_117____closed__7 = _init_l___private_Lean_Server_CodeActions_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions___hyg_117____closed__7(); -lean_mark_persistent(l___private_Lean_Server_CodeActions_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions___hyg_117____closed__7); -l___private_Lean_Server_CodeActions_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions___hyg_117____closed__8 = _init_l___private_Lean_Server_CodeActions_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions___hyg_117____closed__8(); -lean_mark_persistent(l___private_Lean_Server_CodeActions_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions___hyg_117____closed__8); -l___private_Lean_Server_CodeActions_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions___hyg_117____closed__9 = _init_l___private_Lean_Server_CodeActions_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions___hyg_117____closed__9(); -lean_mark_persistent(l___private_Lean_Server_CodeActions_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions___hyg_117____closed__9); -l___private_Lean_Server_CodeActions_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions___hyg_117____closed__10 = _init_l___private_Lean_Server_CodeActions_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions___hyg_117____closed__10(); -lean_mark_persistent(l___private_Lean_Server_CodeActions_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions___hyg_117____closed__10); -l___private_Lean_Server_CodeActions_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions___hyg_117____closed__11 = _init_l___private_Lean_Server_CodeActions_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions___hyg_117____closed__11(); -lean_mark_persistent(l___private_Lean_Server_CodeActions_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions___hyg_117____closed__11); -l___private_Lean_Server_CodeActions_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions___hyg_117____closed__12 = _init_l___private_Lean_Server_CodeActions_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions___hyg_117____closed__12(); -lean_mark_persistent(l___private_Lean_Server_CodeActions_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions___hyg_117____closed__12); -l___private_Lean_Server_CodeActions_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions___hyg_117____closed__13 = _init_l___private_Lean_Server_CodeActions_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions___hyg_117____closed__13(); -lean_mark_persistent(l___private_Lean_Server_CodeActions_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions___hyg_117____closed__13); -l___private_Lean_Server_CodeActions_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions___hyg_117____closed__14 = _init_l___private_Lean_Server_CodeActions_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions___hyg_117____closed__14(); -lean_mark_persistent(l___private_Lean_Server_CodeActions_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions___hyg_117____closed__14); -l___private_Lean_Server_CodeActions_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions___hyg_117____closed__15 = _init_l___private_Lean_Server_CodeActions_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions___hyg_117____closed__15(); -lean_mark_persistent(l___private_Lean_Server_CodeActions_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions___hyg_117____closed__15); -l___private_Lean_Server_CodeActions_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions___hyg_117____closed__16 = _init_l___private_Lean_Server_CodeActions_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions___hyg_117____closed__16(); -lean_mark_persistent(l___private_Lean_Server_CodeActions_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions___hyg_117____closed__16); -l___private_Lean_Server_CodeActions_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions___hyg_117____closed__17 = _init_l___private_Lean_Server_CodeActions_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions___hyg_117____closed__17(); -lean_mark_persistent(l___private_Lean_Server_CodeActions_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions___hyg_117____closed__17); -l___private_Lean_Server_CodeActions_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions___hyg_117____closed__18 = _init_l___private_Lean_Server_CodeActions_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions___hyg_117____closed__18(); -lean_mark_persistent(l___private_Lean_Server_CodeActions_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions___hyg_117____closed__18); -l___private_Lean_Server_CodeActions_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions___hyg_117____closed__19 = _init_l___private_Lean_Server_CodeActions_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions___hyg_117____closed__19(); -lean_mark_persistent(l___private_Lean_Server_CodeActions_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions___hyg_117____closed__19); -l___private_Lean_Server_CodeActions_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions___hyg_117____closed__20 = _init_l___private_Lean_Server_CodeActions_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions___hyg_117____closed__20(); -lean_mark_persistent(l___private_Lean_Server_CodeActions_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions___hyg_117____closed__20); -l_Lean_Server_instFromJsonCodeActionResolveData___closed__1 = _init_l_Lean_Server_instFromJsonCodeActionResolveData___closed__1(); -lean_mark_persistent(l_Lean_Server_instFromJsonCodeActionResolveData___closed__1); -l_Lean_Server_instFromJsonCodeActionResolveData = _init_l_Lean_Server_instFromJsonCodeActionResolveData(); -lean_mark_persistent(l_Lean_Server_instFromJsonCodeActionResolveData); -l_Lean_Server_CodeAction_getFileSource_x21___closed__1 = _init_l_Lean_Server_CodeAction_getFileSource_x21___closed__1(); -lean_mark_persistent(l_Lean_Server_CodeAction_getFileSource_x21___closed__1); -l_Lean_Server_CodeAction_getFileSource_x21___closed__2 = _init_l_Lean_Server_CodeAction_getFileSource_x21___closed__2(); -lean_mark_persistent(l_Lean_Server_CodeAction_getFileSource_x21___closed__2); -l_Lean_Server_CodeAction_getFileSource_x21___closed__3 = _init_l_Lean_Server_CodeAction_getFileSource_x21___closed__3(); -lean_mark_persistent(l_Lean_Server_CodeAction_getFileSource_x21___closed__3); -l_Lean_Server_CodeAction_getFileSource_x21___closed__4 = _init_l_Lean_Server_CodeAction_getFileSource_x21___closed__4(); -lean_mark_persistent(l_Lean_Server_CodeAction_getFileSource_x21___closed__4); -l_Lean_Server_instCodeActionProviderInhabited___lambda__1___closed__1 = _init_l_Lean_Server_instCodeActionProviderInhabited___lambda__1___closed__1(); -lean_mark_persistent(l_Lean_Server_instCodeActionProviderInhabited___lambda__1___closed__1); -l_Lean_Server_instCodeActionProviderInhabited___lambda__1___closed__2 = _init_l_Lean_Server_instCodeActionProviderInhabited___lambda__1___closed__2(); -lean_mark_persistent(l_Lean_Server_instCodeActionProviderInhabited___lambda__1___closed__2); -l_Lean_Server_instCodeActionProviderInhabited___lambda__2___closed__1 = _init_l_Lean_Server_instCodeActionProviderInhabited___lambda__2___closed__1(); -lean_mark_persistent(l_Lean_Server_instCodeActionProviderInhabited___lambda__2___closed__1); -l_Lean_Server_instCodeActionProviderInhabited___lambda__2___closed__2 = _init_l_Lean_Server_instCodeActionProviderInhabited___lambda__2___closed__2(); -lean_mark_persistent(l_Lean_Server_instCodeActionProviderInhabited___lambda__2___closed__2); -l_Lean_Server_instCodeActionProviderInhabited___closed__1 = _init_l_Lean_Server_instCodeActionProviderInhabited___closed__1(); -lean_mark_persistent(l_Lean_Server_instCodeActionProviderInhabited___closed__1); -l_Lean_Server_instCodeActionProviderInhabited___closed__2 = _init_l_Lean_Server_instCodeActionProviderInhabited___closed__2(); -lean_mark_persistent(l_Lean_Server_instCodeActionProviderInhabited___closed__2); -l_Lean_Server_instCodeActionProviderInhabited = _init_l_Lean_Server_instCodeActionProviderInhabited(); -lean_mark_persistent(l_Lean_Server_instCodeActionProviderInhabited); -if (builtin) {res = l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_390_(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -l___private_Lean_Server_CodeActions_0__Lean_Server_builtinCodeActionProviders = lean_io_result_get_value(res); -lean_mark_persistent(l___private_Lean_Server_CodeActions_0__Lean_Server_builtinCodeActionProviders); -lean_dec_ref(res); -}l_Lean_Server_addBuiltinCodeActionProvider___closed__1 = _init_l_Lean_Server_addBuiltinCodeActionProvider___closed__1(); -lean_mark_persistent(l_Lean_Server_addBuiltinCodeActionProvider___closed__1); -l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_435____closed__1 = _init_l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_435____closed__1(); -lean_mark_persistent(l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_435____closed__1); -l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_435____closed__2 = _init_l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_435____closed__2(); -lean_mark_persistent(l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_435____closed__2); -l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_435____closed__3 = _init_l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_435____closed__3(); -lean_mark_persistent(l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_435____closed__3); -l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_435____closed__4 = _init_l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_435____closed__4(); -lean_mark_persistent(l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_435____closed__4); -l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_435____closed__5 = _init_l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_435____closed__5(); -lean_mark_persistent(l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_435____closed__5); -l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_435____closed__6 = _init_l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_435____closed__6(); -lean_mark_persistent(l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_435____closed__6); -if (builtin) {res = l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_435_(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -l_Lean_Server_codeActionProviderExt = lean_io_result_get_value(res); -lean_mark_persistent(l_Lean_Server_codeActionProviderExt); -lean_dec_ref(res); -}l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____lambda__1___closed__1 = _init_l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____lambda__1___closed__1(); -lean_mark_persistent(l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____lambda__1___closed__1); -l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____lambda__1___closed__2 = _init_l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____lambda__1___closed__2(); -lean_mark_persistent(l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____lambda__1___closed__2); -l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____lambda__1___closed__3 = _init_l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____lambda__1___closed__3(); -lean_mark_persistent(l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____lambda__1___closed__3); -l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____lambda__2___closed__1 = _init_l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____lambda__2___closed__1(); -lean_mark_persistent(l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____lambda__2___closed__1); -l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____lambda__2___closed__2 = _init_l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____lambda__2___closed__2(); -lean_mark_persistent(l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____lambda__2___closed__2); -l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____lambda__2___closed__3 = _init_l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____lambda__2___closed__3(); -lean_mark_persistent(l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____lambda__2___closed__3); -l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____lambda__2___closed__4 = _init_l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____lambda__2___closed__4(); -lean_mark_persistent(l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____lambda__2___closed__4); -l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____lambda__2___closed__5 = _init_l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____lambda__2___closed__5(); -lean_mark_persistent(l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____lambda__2___closed__5); -l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____lambda__2___closed__6 = _init_l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____lambda__2___closed__6(); -lean_mark_persistent(l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____lambda__2___closed__6); -l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____lambda__3___closed__1 = _init_l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____lambda__3___closed__1(); -lean_mark_persistent(l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____lambda__3___closed__1); -l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____lambda__3___closed__2 = _init_l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____lambda__3___closed__2(); -lean_mark_persistent(l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____lambda__3___closed__2); -l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____lambda__4___closed__1 = _init_l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____lambda__4___closed__1(); -lean_mark_persistent(l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____lambda__4___closed__1); -l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____lambda__4___closed__2 = _init_l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____lambda__4___closed__2(); -lean_mark_persistent(l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____lambda__4___closed__2); -l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____lambda__5___closed__1 = _init_l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____lambda__5___closed__1(); -lean_mark_persistent(l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____lambda__5___closed__1); -l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____closed__1 = _init_l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____closed__1(); -lean_mark_persistent(l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____closed__1); -l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____closed__2 = _init_l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____closed__2(); -lean_mark_persistent(l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____closed__2); -l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____closed__3 = _init_l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____closed__3(); -lean_mark_persistent(l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____closed__3); -l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____closed__4 = _init_l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____closed__4(); -lean_mark_persistent(l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____closed__4); -l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____closed__5 = _init_l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____closed__5(); -lean_mark_persistent(l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____closed__5); -l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____closed__6 = _init_l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____closed__6(); -lean_mark_persistent(l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____closed__6); -l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____closed__7 = _init_l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____closed__7(); -lean_mark_persistent(l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____closed__7); -l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____closed__8 = _init_l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____closed__8(); -lean_mark_persistent(l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____closed__8); -l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____closed__9 = _init_l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____closed__9(); -lean_mark_persistent(l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____closed__9); -l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____closed__10 = _init_l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____closed__10(); -lean_mark_persistent(l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____closed__10); -l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____closed__11 = _init_l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____closed__11(); -lean_mark_persistent(l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____closed__11); -l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____closed__12 = _init_l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____closed__12(); -lean_mark_persistent(l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____closed__12); -l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____closed__13 = _init_l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____closed__13(); -lean_mark_persistent(l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____closed__13); -l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____closed__14 = _init_l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____closed__14(); -lean_mark_persistent(l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____closed__14); -l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____closed__15 = _init_l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____closed__15(); -lean_mark_persistent(l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____closed__15); -l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____closed__16 = _init_l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____closed__16(); -lean_mark_persistent(l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____closed__16); -l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____closed__17 = _init_l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____closed__17(); -lean_mark_persistent(l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____closed__17); -l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____closed__18 = _init_l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____closed__18(); -lean_mark_persistent(l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____closed__18); -l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____closed__19 = _init_l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____closed__19(); -lean_mark_persistent(l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____closed__19); -l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____closed__20 = _init_l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____closed__20(); -lean_mark_persistent(l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____closed__20); -l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____closed__21 = _init_l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____closed__21(); -lean_mark_persistent(l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____closed__21); -l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____closed__22 = _init_l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____closed__22(); -lean_mark_persistent(l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____closed__22); -l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____closed__23 = _init_l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____closed__23(); -lean_mark_persistent(l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____closed__23); -l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____closed__24 = _init_l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____closed__24(); -lean_mark_persistent(l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494____closed__24); -if (builtin) {res = l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_494_(lean_io_mk_world()); +res = initialize_Lean_Server_CodeActions_Basic(builtin, lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}l_Lean_Server_handleCodeAction___lambda__4___closed__1 = _init_l_Lean_Server_handleCodeAction___lambda__4___closed__1(); -lean_mark_persistent(l_Lean_Server_handleCodeAction___lambda__4___closed__1); -l_Lean_Server_handleCodeAction___lambda__4___closed__2 = _init_l_Lean_Server_handleCodeAction___lambda__4___closed__2(); -lean_mark_persistent(l_Lean_Server_handleCodeAction___lambda__4___closed__2); -l_Lean_Server_handleCodeAction___closed__1 = _init_l_Lean_Server_handleCodeAction___closed__1(); -lean_mark_persistent(l_Lean_Server_handleCodeAction___closed__1); -l_Lean_Server_handleCodeAction___closed__2 = _init_l_Lean_Server_handleCodeAction___closed__2(); -lean_mark_persistent(l_Lean_Server_handleCodeAction___closed__2); -l_Lean_Server_handleCodeAction___closed__3 = _init_l_Lean_Server_handleCodeAction___closed__3(); -lean_mark_persistent(l_Lean_Server_handleCodeAction___closed__3); -l_Lean_Server_parseRequestParams___at_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_1177____spec__2___closed__1 = _init_l_Lean_Server_parseRequestParams___at_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_1177____spec__2___closed__1(); -lean_mark_persistent(l_Lean_Server_parseRequestParams___at_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_1177____spec__2___closed__1); -l_Lean_Server_parseRequestParams___at_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_1177____spec__2___closed__2 = _init_l_Lean_Server_parseRequestParams___at_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_1177____spec__2___closed__2(); -lean_mark_persistent(l_Lean_Server_parseRequestParams___at_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_1177____spec__2___closed__2); -l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_1177____spec__1___lambda__3___closed__1 = _init_l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_1177____spec__1___lambda__3___closed__1(); -lean_mark_persistent(l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_1177____spec__1___lambda__3___closed__1); -l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_1177____spec__1___lambda__3___closed__2 = _init_l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_1177____spec__1___lambda__3___closed__2(); -lean_mark_persistent(l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_1177____spec__1___lambda__3___closed__2); -l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_1177____spec__1___lambda__4___closed__1 = _init_l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_1177____spec__1___lambda__4___closed__1(); -lean_mark_persistent(l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_1177____spec__1___lambda__4___closed__1); -l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_1177____spec__1___lambda__4___closed__2 = _init_l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_1177____spec__1___lambda__4___closed__2(); -lean_mark_persistent(l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_1177____spec__1___lambda__4___closed__2); -l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_1177____spec__1___lambda__5___closed__1 = _init_l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_1177____spec__1___lambda__5___closed__1(); -lean_mark_persistent(l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_1177____spec__1___lambda__5___closed__1); -l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_1177____spec__1___lambda__5___closed__2 = _init_l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_1177____spec__1___lambda__5___closed__2(); -lean_mark_persistent(l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_1177____spec__1___lambda__5___closed__2); -l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_1177____spec__1___closed__1 = _init_l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_1177____spec__1___closed__1(); -lean_mark_persistent(l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_1177____spec__1___closed__1); -l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_1177____closed__1 = _init_l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_1177____closed__1(); -lean_mark_persistent(l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_1177____closed__1); -l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_1177____closed__2 = _init_l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_1177____closed__2(); -lean_mark_persistent(l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_1177____closed__2); -if (builtin) {res = l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_1177_(lean_io_mk_world()); +res = initialize_Lean_Server_CodeActions_Provider(builtin, lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}l_Lean_Server_handleCodeActionResolve___lambda__2___closed__1 = _init_l_Lean_Server_handleCodeActionResolve___lambda__2___closed__1(); -lean_mark_persistent(l_Lean_Server_handleCodeActionResolve___lambda__2___closed__1); -l_Lean_Server_handleCodeActionResolve___lambda__2___closed__2 = _init_l_Lean_Server_handleCodeActionResolve___lambda__2___closed__2(); -lean_mark_persistent(l_Lean_Server_handleCodeActionResolve___lambda__2___closed__2); -l_Lean_Server_handleCodeActionResolve___lambda__2___closed__3 = _init_l_Lean_Server_handleCodeActionResolve___lambda__2___closed__3(); -lean_mark_persistent(l_Lean_Server_handleCodeActionResolve___lambda__2___closed__3); -l_Lean_Server_handleCodeActionResolve___closed__1 = _init_l_Lean_Server_handleCodeActionResolve___closed__1(); -lean_mark_persistent(l_Lean_Server_handleCodeActionResolve___closed__1); -l_Lean_Server_handleCodeActionResolve___closed__2 = _init_l_Lean_Server_handleCodeActionResolve___closed__2(); -lean_mark_persistent(l_Lean_Server_handleCodeActionResolve___closed__2); -l_Lean_Server_handleCodeActionResolve___closed__3 = _init_l_Lean_Server_handleCodeActionResolve___closed__3(); -lean_mark_persistent(l_Lean_Server_handleCodeActionResolve___closed__3); -l_Lean_Server_handleCodeActionResolve___closed__4 = _init_l_Lean_Server_handleCodeActionResolve___closed__4(); -lean_mark_persistent(l_Lean_Server_handleCodeActionResolve___closed__4); -l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_1507____spec__1___lambda__2___closed__1 = _init_l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_1507____spec__1___lambda__2___closed__1(); -lean_mark_persistent(l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_1507____spec__1___lambda__2___closed__1); -l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_1507____spec__1___lambda__2___closed__2 = _init_l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_1507____spec__1___lambda__2___closed__2(); -lean_mark_persistent(l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_1507____spec__1___lambda__2___closed__2); -l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_1507____spec__1___lambda__3___closed__1 = _init_l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_1507____spec__1___lambda__3___closed__1(); -lean_mark_persistent(l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_1507____spec__1___lambda__3___closed__1); -l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_1507____closed__1 = _init_l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_1507____closed__1(); -lean_mark_persistent(l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_1507____closed__1); -l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_1507____closed__2 = _init_l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_1507____closed__2(); -lean_mark_persistent(l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_1507____closed__2); -if (builtin) {res = l_Lean_Server_initFn____x40_Lean_Server_CodeActions___hyg_1507_(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)); +return lean_io_result_mk_ok(lean_box(0)); } #ifdef __cplusplus } diff --git a/stage0/stdlib/Lean/Server/CodeActions/Attr.c b/stage0/stdlib/Lean/Server/CodeActions/Attr.c new file mode 100644 index 0000000000..117ae92346 --- /dev/null +++ b/stage0/stdlib/Lean/Server/CodeActions/Attr.c @@ -0,0 +1,2998 @@ +// Lean compiler output +// Module: Lean.Server.CodeActions.Attr +// Imports: Init Lean.Server.CodeActions.Basic +#include +#if defined(__clang__) +#pragma clang diagnostic ignored "-Wunused-parameter" +#pragma clang diagnostic ignored "-Wunused-label" +#elif defined(__GNUC__) && !defined(__CLANG__) +#pragma GCC diagnostic ignored "-Wunused-parameter" +#pragma GCC diagnostic ignored "-Wunused-label" +#pragma GCC diagnostic ignored "-Wunused-but-set-variable" +#endif +#ifdef __cplusplus +extern "C" { +#endif +LEAN_EXPORT lean_object* l_Lean_CodeAction_CommandCodeActions_onCmd___default; +lean_object* lean_mk_empty_array_with_capacity(lean_object*); +LEAN_EXPORT lean_object* l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_739_(lean_object*); +LEAN_EXPORT lean_object* l_IO_ofExcept___at_Lean_CodeAction_mkCommandCodeAction___spec__1___boxed(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____closed__11; +LEAN_EXPORT lean_object* l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____lambda__3(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_IO_ofExcept___at_Lean_CodeAction_mkHoleCodeAction___spec__1___boxed(lean_object*, lean_object*); +static lean_object* l_Lean_CodeAction_mkHoleCodeAction_unsafe__1___closed__4; +LEAN_EXPORT lean_object* l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_981____lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_CodeAction_mkHoleCodeAction_unsafe__1___boxed(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297_(lean_object*); +static lean_object* l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____closed__4; +lean_object* lean_array_push(lean_object*, lean_object*); +static lean_object* l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____closed__2; +static lean_object* l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_82____closed__5; +uint8_t lean_usize_dec_eq(size_t, size_t); +lean_object* l_Lean_Syntax_getArgs(lean_object*); +static lean_object* l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_981____closed__3; +static lean_object* l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____closed__15; +static lean_object* l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_739____closed__4; +lean_object* l_Lean_Attribute_Builtin_ensureNoArgs(lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____lambda__3___closed__1; +LEAN_EXPORT lean_object* l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____lambda__4(lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____lambda__1___closed__2; +uint8_t l_Lean_Syntax_isOfKind(lean_object*, lean_object*); +static lean_object* l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_981____closed__2; +static lean_object* l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____lambda__1___closed__4; +lean_object* l_Lean_stringToMessageData(lean_object*); +LEAN_EXPORT lean_object* l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____lambda__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_739____closed__3; +LEAN_EXPORT lean_object* l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_82____lambda__3(lean_object*); +static lean_object* l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____lambda__3___closed__2; +LEAN_EXPORT lean_object* l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_981_(lean_object*); +LEAN_EXPORT lean_object* l_IO_ofExcept___at_Lean_CodeAction_mkHoleCodeAction___spec__1(lean_object*, lean_object*); +lean_object* l_Lean_Elab_resolveGlobalConstNoOverloadWithInfo___at_Lean_registerInitAttrUnsafe___spec__4(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_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_82____lambda__4___boxed(lean_object*); +static lean_object* l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_981____lambda__3___closed__2; +size_t lean_usize_of_nat(lean_object*); +LEAN_EXPORT lean_object* l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_82____lambda__2(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_82____lambda__3___boxed(lean_object*); +static lean_object* l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_981____lambda__2___closed__1; +LEAN_EXPORT lean_object* l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_82____lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_82____closed__8; +lean_object* lean_st_ref_take(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_981____lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_981____lambda__1___closed__1; +static lean_object* l_Lean_CodeAction_instInhabitedCommandCodeActionEntry___closed__1; +static lean_object* l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____closed__19; +lean_object* l_Lean_registerPersistentEnvExtensionUnsafe___rarg(lean_object*, lean_object*); +static lean_object* l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____lambda__4___closed__1; +static lean_object* l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____closed__16; +LEAN_EXPORT lean_object* l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_981____lambda__3(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_PersistentEnvExtension_addEntry___rarg(lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____lambda__4___closed__2; +LEAN_EXPORT lean_object* l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_82____lambda__4(lean_object*); +LEAN_EXPORT lean_object* l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_981____lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_CodeAction_CommandCodeActions_insert___spec__2(lean_object*, lean_object*, size_t, size_t, lean_object*); +static lean_object* l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____closed__23; +LEAN_EXPORT lean_object* l_Lean_CodeAction_cmdCodeActionExt; +static lean_object* l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_981____lambda__2___closed__2; +LEAN_EXPORT lean_object* l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_981____lambda__3___closed__1; +lean_object* lean_decl_get_sorry_dep(lean_object*, lean_object*); +static lean_object* l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____closed__12; +lean_object* lean_st_ref_get(lean_object*, lean_object*); +lean_object* l_Lean_throwError___at_Lean_registerTagAttribute___spec__1(lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_82____spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____closed__20; +lean_object* l_Lean_Name_num___override(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_RBNode_find___at_Lean_CodeAction_CommandCodeActions_insert___spec__1(lean_object*, lean_object*); +static lean_object* l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_981____closed__1; +lean_object* l_EStateM_pure___rarg(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_RBNode_find___at_Lean_CodeAction_CommandCodeActions_insert___spec__1___boxed(lean_object*, lean_object*); +lean_object* l_Lean_RBNode_insert___at_Lean_NameMap_insert___spec__1___rarg(lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_739____closed__2; +static lean_object* l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____closed__1; +LEAN_EXPORT lean_object* l_IO_ofExcept___at_Lean_CodeAction_mkCommandCodeAction___spec__1(lean_object*, lean_object*); +static lean_object* l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____closed__21; +LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_739____spec__1(lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Name_str___override(lean_object*, lean_object*); +static lean_object* l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____closed__5; +static lean_object* l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_82____closed__6; +lean_object* l_Lean_Syntax_getArg(lean_object*, lean_object*); +static lean_object* l_Lean_CodeAction_mkHoleCodeAction_unsafe__1___closed__3; +static lean_object* l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____closed__17; +LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_82____spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_739____closed__5; +LEAN_EXPORT lean_object* l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_739____lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_981____spec__1(size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_82____closed__2; +static lean_object* l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____closed__6; +LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_CodeAction_CommandCodeActions_insert___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_82____spec__2(lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_82____lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_CodeAction_CommandCodeActions_insert___boxed(lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_82____closed__1; +static lean_object* l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____closed__9; +LEAN_EXPORT lean_object* l_Lean_CodeAction_mkHoleCodeAction_unsafe__1(lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____lambda__1___closed__3; +static lean_object* l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____lambda__1___closed__1; +static lean_object* l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____closed__18; +LEAN_EXPORT lean_object* l_Lean_CodeAction_mkCommandCodeAction(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_throwError___at_Lean_AttributeImpl_erase___default___spec__1(lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_82____closed__3; +LEAN_EXPORT lean_object* l_Lean_CodeAction_CommandCodeActions_onAnyCmd___default; +LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_739____spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_82____closed__4; +LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_82____spec__1(lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____closed__13; +uint8_t lean_nat_dec_lt(lean_object*, lean_object*); +static lean_object* l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____closed__8; +static lean_object* l_Lean_CodeAction_mkCommandCodeAction_unsafe__1___closed__1; +LEAN_EXPORT lean_object* l_Lean_CodeAction_CommandCodeActions_insert(lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_981____closed__5; +lean_object* l_Lean_Name_mkStr2(lean_object*, lean_object*); +static lean_object* l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____closed__3; +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_981____spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +uint8_t l___private_Lean_Attributes_0__Lean_beqAttributeKind____x40_Lean_Attributes___hyg_183_(uint8_t, uint8_t); +LEAN_EXPORT lean_object* l_Lean_CodeAction_mkCommandCodeAction_unsafe__1___boxed(lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____closed__14; +LEAN_EXPORT lean_object* l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_981____lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_739____lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_981____closed__6; +static lean_object* l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_981____closed__4; +static lean_object* l_Lean_CodeAction_mkHoleCodeAction_unsafe__1___closed__1; +static lean_object* l_Lean_CodeAction_instInhabitedCommandCodeActions___closed__1; +static lean_object* l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____closed__22; +LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_739____spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_CodeAction_mkCommandCodeAction_unsafe__1___closed__2; +lean_object* l_Lean_Environment_evalConstCheck___rarg(lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_CodeAction_mkHoleCodeAction(lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____closed__10; +lean_object* l_Lean_PersistentHashMap_mkEmptyEntriesArray(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_CodeAction_instInhabitedCommandCodeActionEntry; +lean_object* l_Lean_registerBuiltinAttribute(lean_object*, lean_object*); +uint8_t l_Lean_Name_quickCmp(lean_object*, lean_object*); +size_t lean_usize_add(size_t, size_t); +lean_object* lean_array_uget(lean_object*, size_t); +LEAN_EXPORT lean_object* l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_82_(lean_object*); +lean_object* lean_io_error_to_string(lean_object*); +lean_object* lean_st_ref_set(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_739____spec__2(lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*); +lean_object* lean_array_get_size(lean_object*); +uint8_t lean_nat_dec_le(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_CodeAction_mkCommandCodeAction_unsafe__1(lean_object*, lean_object*, lean_object*); +uint8_t lean_usize_dec_lt(size_t, size_t); +static lean_object* l_Lean_CodeAction_mkHoleCodeAction_unsafe__1___closed__2; +LEAN_EXPORT lean_object* l_Lean_CodeAction_instInhabitedCommandCodeActions; +static lean_object* l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____closed__7; +LEAN_EXPORT lean_object* l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* lean_array_uset(lean_object*, size_t, lean_object*); +LEAN_EXPORT lean_object* l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_82____closed__7; +LEAN_EXPORT lean_object* l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_739____lambda__2(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_CodeAction_holeCodeActionExt; +static lean_object* l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_739____closed__1; +uint8_t l_Array_isEmpty___rarg(lean_object*); +static lean_object* l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____lambda__1___closed__5; +static lean_object* _init_l_Lean_CodeAction_mkHoleCodeAction_unsafe__1___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("Lean", 4); +return x_1; +} +} +static lean_object* _init_l_Lean_CodeAction_mkHoleCodeAction_unsafe__1___closed__2() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("CodeAction", 10); +return x_1; +} +} +static lean_object* _init_l_Lean_CodeAction_mkHoleCodeAction_unsafe__1___closed__3() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("HoleCodeAction", 14); +return x_1; +} +} +static lean_object* _init_l_Lean_CodeAction_mkHoleCodeAction_unsafe__1___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_CodeAction_mkHoleCodeAction_unsafe__1___closed__1; +x_2 = l_Lean_CodeAction_mkHoleCodeAction_unsafe__1___closed__2; +x_3 = l_Lean_CodeAction_mkHoleCodeAction_unsafe__1___closed__3; +x_4 = l_Lean_Name_mkStr3(x_1, x_2, x_3); +return x_4; +} +} +LEAN_EXPORT lean_object* l_Lean_CodeAction_mkHoleCodeAction_unsafe__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +lean_object* x_4; lean_object* x_5; +x_4 = l_Lean_CodeAction_mkHoleCodeAction_unsafe__1___closed__4; +x_5 = l_Lean_Environment_evalConstCheck___rarg(x_2, x_3, x_4, x_1); +return x_5; +} +} +LEAN_EXPORT lean_object* l_Lean_CodeAction_mkHoleCodeAction_unsafe__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +lean_object* x_4; +x_4 = l_Lean_CodeAction_mkHoleCodeAction_unsafe__1(x_1, x_2, x_3); +lean_dec(x_3); +return x_4; +} +} +LEAN_EXPORT lean_object* l_IO_ofExcept___at_Lean_CodeAction_mkHoleCodeAction___spec__1(lean_object* x_1, lean_object* x_2) { +_start: +{ +if (lean_obj_tag(x_1) == 0) +{ +lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_3 = lean_ctor_get(x_1, 0); +lean_inc(x_3); +x_4 = lean_alloc_ctor(18, 1, 0); +lean_ctor_set(x_4, 0, x_3); +x_5 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_5, 0, x_4); +lean_ctor_set(x_5, 1, x_2); +return x_5; +} +else +{ +lean_object* x_6; lean_object* x_7; +x_6 = lean_ctor_get(x_1, 0); +lean_inc(x_6); +x_7 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_7, 0, x_6); +lean_ctor_set(x_7, 1, x_2); +return x_7; +} +} +} +LEAN_EXPORT lean_object* l_Lean_CodeAction_mkHoleCodeAction(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; +x_4 = lean_ctor_get(x_2, 0); +lean_inc(x_4); +x_5 = lean_ctor_get(x_2, 1); +lean_inc(x_5); +lean_dec(x_2); +x_6 = l_Lean_CodeAction_mkHoleCodeAction_unsafe__1(x_1, x_4, x_5); +lean_dec(x_5); +x_7 = l_IO_ofExcept___at_Lean_CodeAction_mkHoleCodeAction___spec__1(x_6, x_3); +lean_dec(x_6); +return x_7; +} +} +LEAN_EXPORT lean_object* l_IO_ofExcept___at_Lean_CodeAction_mkHoleCodeAction___spec__1___boxed(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; +x_3 = l_IO_ofExcept___at_Lean_CodeAction_mkHoleCodeAction___spec__1(x_1, x_2); +lean_dec(x_1); +return x_3; +} +} +LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_82____spec__1(lean_object* x_1, size_t x_2, size_t x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +_start: +{ +uint8_t x_7; +x_7 = lean_usize_dec_eq(x_2, x_3); +if (x_7 == 0) +{ +lean_object* x_8; lean_object* x_9; +x_8 = lean_array_uget(x_1, x_2); +lean_inc(x_5); +x_9 = l_Lean_CodeAction_mkHoleCodeAction(x_8, x_5, x_6); +if (lean_obj_tag(x_9) == 0) +{ +lean_object* x_10; lean_object* x_11; lean_object* x_12; size_t x_13; size_t x_14; +x_10 = lean_ctor_get(x_9, 0); +lean_inc(x_10); +x_11 = lean_ctor_get(x_9, 1); +lean_inc(x_11); +lean_dec(x_9); +x_12 = lean_array_push(x_4, x_10); +x_13 = 1; +x_14 = lean_usize_add(x_2, x_13); +x_2 = x_14; +x_4 = x_12; +x_6 = x_11; +goto _start; +} +else +{ +uint8_t x_16; +lean_dec(x_5); +lean_dec(x_4); +x_16 = !lean_is_exclusive(x_9); +if (x_16 == 0) +{ +return x_9; +} +else +{ +lean_object* x_17; lean_object* x_18; lean_object* x_19; +x_17 = lean_ctor_get(x_9, 0); +x_18 = lean_ctor_get(x_9, 1); +lean_inc(x_18); +lean_inc(x_17); +lean_dec(x_9); +x_19 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_19, 0, x_17); +lean_ctor_set(x_19, 1, x_18); +return x_19; +} +} +} +else +{ +lean_object* x_20; +lean_dec(x_5); +x_20 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_20, 0, x_4); +lean_ctor_set(x_20, 1, x_6); +return x_20; +} +} +} +LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_82____spec__2(lean_object* x_1, size_t x_2, size_t x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +_start: +{ +uint8_t x_7; +x_7 = lean_usize_dec_eq(x_2, x_3); +if (x_7 == 0) +{ +lean_object* x_8; lean_object* x_9; lean_object* x_10; uint8_t x_11; +x_8 = lean_array_uget(x_1, x_2); +x_9 = lean_array_get_size(x_8); +x_10 = lean_unsigned_to_nat(0u); +x_11 = lean_nat_dec_lt(x_10, x_9); +if (x_11 == 0) +{ +size_t x_12; size_t x_13; +lean_dec(x_9); +lean_dec(x_8); +x_12 = 1; +x_13 = lean_usize_add(x_2, x_12); +x_2 = x_13; +goto _start; +} +else +{ +uint8_t x_15; +x_15 = lean_nat_dec_le(x_9, x_9); +if (x_15 == 0) +{ +size_t x_16; size_t x_17; +lean_dec(x_9); +lean_dec(x_8); +x_16 = 1; +x_17 = lean_usize_add(x_2, x_16); +x_2 = x_17; +goto _start; +} +else +{ +size_t x_19; size_t x_20; lean_object* x_21; +x_19 = 0; +x_20 = lean_usize_of_nat(x_9); +lean_dec(x_9); +lean_inc(x_5); +x_21 = l_Array_foldlMUnsafe_fold___at_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_82____spec__1(x_8, x_19, x_20, x_4, x_5, x_6); +lean_dec(x_8); +if (lean_obj_tag(x_21) == 0) +{ +lean_object* x_22; lean_object* x_23; size_t x_24; size_t x_25; +x_22 = lean_ctor_get(x_21, 0); +lean_inc(x_22); +x_23 = lean_ctor_get(x_21, 1); +lean_inc(x_23); +lean_dec(x_21); +x_24 = 1; +x_25 = lean_usize_add(x_2, x_24); +x_2 = x_25; +x_4 = x_22; +x_6 = x_23; +goto _start; +} +else +{ +uint8_t x_27; +lean_dec(x_5); +x_27 = !lean_is_exclusive(x_21); +if (x_27 == 0) +{ +return x_21; +} +else +{ +lean_object* x_28; lean_object* x_29; lean_object* x_30; +x_28 = lean_ctor_get(x_21, 0); +x_29 = lean_ctor_get(x_21, 1); +lean_inc(x_29); +lean_inc(x_28); +lean_dec(x_21); +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; +} +} +} +} +} +else +{ +lean_object* x_31; +lean_dec(x_5); +x_31 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_31, 0, x_4); +lean_ctor_set(x_31, 1, x_6); +return x_31; +} +} +} +LEAN_EXPORT lean_object* l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_82____lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +_start: +{ +lean_object* x_6; lean_object* x_7; uint8_t x_8; +x_6 = lean_array_get_size(x_3); +x_7 = lean_unsigned_to_nat(0u); +x_8 = lean_nat_dec_lt(x_7, x_6); +if (x_8 == 0) +{ +lean_object* x_9; +lean_dec(x_6); +lean_dec(x_4); +lean_dec(x_2); +x_9 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_9, 0, x_1); +lean_ctor_set(x_9, 1, x_5); +return x_9; +} +else +{ +uint8_t x_10; +x_10 = lean_nat_dec_le(x_6, x_6); +if (x_10 == 0) +{ +lean_object* x_11; +lean_dec(x_6); +lean_dec(x_4); +lean_dec(x_2); +x_11 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_11, 0, x_1); +lean_ctor_set(x_11, 1, x_5); +return x_11; +} +else +{ +size_t x_12; size_t x_13; lean_object* x_14; +lean_dec(x_1); +x_12 = 0; +x_13 = lean_usize_of_nat(x_6); +lean_dec(x_6); +lean_inc(x_2); +x_14 = l_Array_foldlMUnsafe_fold___at_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_82____spec__2(x_3, x_12, x_13, x_2, x_4, x_5); +if (lean_obj_tag(x_14) == 0) +{ +uint8_t x_15; +x_15 = !lean_is_exclusive(x_14); +if (x_15 == 0) +{ +lean_object* x_16; lean_object* x_17; +x_16 = lean_ctor_get(x_14, 0); +x_17 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_17, 0, x_2); +lean_ctor_set(x_17, 1, x_16); +lean_ctor_set(x_14, 0, x_17); +return x_14; +} +else +{ +lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; +x_18 = lean_ctor_get(x_14, 0); +x_19 = lean_ctor_get(x_14, 1); +lean_inc(x_19); +lean_inc(x_18); +lean_dec(x_14); +x_20 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_20, 0, x_2); +lean_ctor_set(x_20, 1, x_18); +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_14); +if (x_22 == 0) +{ +return x_14; +} +else +{ +lean_object* x_23; lean_object* x_24; lean_object* x_25; +x_23 = lean_ctor_get(x_14, 0); +x_24 = lean_ctor_get(x_14, 1); +lean_inc(x_24); +lean_inc(x_23); +lean_dec(x_14); +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; +} +} +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_82____lambda__2(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; lean_object* x_4; uint8_t x_5; +x_3 = lean_ctor_get(x_1, 0); +lean_inc(x_3); +x_4 = lean_ctor_get(x_1, 1); +lean_inc(x_4); +lean_dec(x_1); +x_5 = !lean_is_exclusive(x_2); +if (x_5 == 0) +{ +lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; +x_6 = lean_ctor_get(x_2, 0); +x_7 = lean_ctor_get(x_2, 1); +x_8 = lean_array_push(x_3, x_6); +x_9 = lean_array_push(x_4, x_7); +lean_ctor_set(x_2, 1, x_9); +lean_ctor_set(x_2, 0, x_8); +return x_2; +} +else +{ +lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; +x_10 = lean_ctor_get(x_2, 0); +x_11 = lean_ctor_get(x_2, 1); +lean_inc(x_11); +lean_inc(x_10); +lean_dec(x_2); +x_12 = lean_array_push(x_3, x_10); +x_13 = lean_array_push(x_4, x_11); +x_14 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_14, 0, x_12); +lean_ctor_set(x_14, 1, x_13); +return x_14; +} +} +} +LEAN_EXPORT lean_object* l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_82____lambda__3(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = lean_ctor_get(x_1, 0); +lean_inc(x_2); +return x_2; +} +} +LEAN_EXPORT lean_object* l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_82____lambda__4(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = lean_box(0); +return x_2; +} +} +static lean_object* _init_l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_82____closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("holeCodeActionExt", 17); +return x_1; +} +} +static lean_object* _init_l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_82____closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_CodeAction_mkHoleCodeAction_unsafe__1___closed__1; +x_2 = l_Lean_CodeAction_mkHoleCodeAction_unsafe__1___closed__2; +x_3 = l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_82____closed__1; +x_4 = l_Lean_Name_mkStr3(x_1, x_2, x_3); +return x_4; +} +} +static lean_object* _init_l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_82____closed__3() { +_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_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_82____closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_82____closed__3; +x_2 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_2, 0, x_1); +lean_ctor_set(x_2, 1, x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_82____closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_82____closed__4; +x_2 = lean_alloc_closure((void*)(l_EStateM_pure___rarg), 2, 1); +lean_closure_set(x_2, 0, x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_82____closed__6() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_82____lambda__2), 2, 0); +return x_1; +} +} +static lean_object* _init_l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_82____closed__7() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_82____lambda__3___boxed), 1, 0); +return x_1; +} +} +static lean_object* _init_l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_82____closed__8() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_82____lambda__4___boxed), 1, 0); +return x_1; +} +} +LEAN_EXPORT lean_object* l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_82_(lean_object* x_1) { +_start: +{ +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; +x_2 = l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_82____closed__4; +x_3 = l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_82____closed__3; +x_4 = lean_alloc_closure((void*)(l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_82____lambda__1___boxed), 5, 2); +lean_closure_set(x_4, 0, x_2); +lean_closure_set(x_4, 1, x_3); +x_5 = l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_82____closed__2; +x_6 = l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_82____closed__5; +x_7 = l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_82____closed__6; +x_8 = l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_82____closed__7; +x_9 = l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_82____closed__8; +x_10 = lean_alloc_ctor(0, 6, 0); +lean_ctor_set(x_10, 0, x_5); +lean_ctor_set(x_10, 1, x_6); +lean_ctor_set(x_10, 2, x_4); +lean_ctor_set(x_10, 3, x_7); +lean_ctor_set(x_10, 4, x_8); +lean_ctor_set(x_10, 5, x_9); +x_11 = l_Lean_registerPersistentEnvExtensionUnsafe___rarg(x_10, x_1); +return x_11; +} +} +LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_82____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) { +_start: +{ +size_t x_7; size_t x_8; lean_object* x_9; +x_7 = lean_unbox_usize(x_2); +lean_dec(x_2); +x_8 = lean_unbox_usize(x_3); +lean_dec(x_3); +x_9 = l_Array_foldlMUnsafe_fold___at_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_82____spec__1(x_1, x_7, x_8, x_4, x_5, x_6); +lean_dec(x_1); +return x_9; +} +} +LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_82____spec__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) { +_start: +{ +size_t x_7; size_t x_8; lean_object* x_9; +x_7 = lean_unbox_usize(x_2); +lean_dec(x_2); +x_8 = lean_unbox_usize(x_3); +lean_dec(x_3); +x_9 = l_Array_foldlMUnsafe_fold___at_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_82____spec__2(x_1, x_7, x_8, x_4, x_5, x_6); +lean_dec(x_1); +return x_9; +} +} +LEAN_EXPORT lean_object* l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_82____lambda__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +_start: +{ +lean_object* x_6; +x_6 = l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_82____lambda__1(x_1, x_2, x_3, x_4, x_5); +lean_dec(x_3); +return x_6; +} +} +LEAN_EXPORT lean_object* l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_82____lambda__3___boxed(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_82____lambda__3(x_1); +lean_dec(x_1); +return x_2; +} +} +LEAN_EXPORT lean_object* l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_82____lambda__4___boxed(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_82____lambda__4(x_1); +lean_dec(x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____lambda__1___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = l_Lean_CodeAction_holeCodeActionExt; +return x_1; +} +} +static lean_object* _init_l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____lambda__1___closed__2() { +_start: +{ +lean_object* x_1; +x_1 = l_Lean_PersistentHashMap_mkEmptyEntriesArray(lean_box(0), lean_box(0)); +return x_1; +} +} +static lean_object* _init_l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____lambda__1___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____lambda__1___closed__2; +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_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____lambda__1___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____lambda__1___closed__3; +x_2 = lean_unsigned_to_nat(0u); +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_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____lambda__1___closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____lambda__1___closed__4; +x_2 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_2, 0, x_1); +lean_ctor_set(x_2, 1, x_1); +return x_2; +} +} +LEAN_EXPORT lean_object* l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +_start: +{ +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; +x_6 = lean_st_ref_get(x_4, x_5); +x_7 = lean_ctor_get(x_6, 0); +lean_inc(x_7); +x_8 = lean_ctor_get(x_6, 1); +lean_inc(x_8); +lean_dec(x_6); +x_9 = lean_ctor_get(x_7, 0); +lean_inc(x_9); +lean_dec(x_7); +x_10 = lean_ctor_get(x_3, 2); +lean_inc(x_10); +x_11 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_11, 0, x_9); +lean_ctor_set(x_11, 1, x_10); +x_12 = lean_ctor_get(x_3, 5); +lean_inc(x_1); +x_13 = l_Lean_CodeAction_mkHoleCodeAction(x_1, x_11, x_8); +if (lean_obj_tag(x_13) == 0) +{ +lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; uint8_t x_19; +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_st_ref_take(x_4, x_15); +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_is_exclusive(x_17); +if (x_19 == 0) +{ +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; +x_20 = lean_ctor_get(x_17, 0); +x_21 = lean_ctor_get(x_17, 4); +lean_dec(x_21); +x_22 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_22, 0, x_1); +lean_ctor_set(x_22, 1, x_14); +x_23 = l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____lambda__1___closed__1; +x_24 = l_Lean_PersistentEnvExtension_addEntry___rarg(x_23, x_20, x_22); +x_25 = l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____lambda__1___closed__5; +lean_ctor_set(x_17, 4, x_25); +lean_ctor_set(x_17, 0, x_24); +x_26 = lean_st_ref_set(x_4, x_17, x_18); +x_27 = !lean_is_exclusive(x_26); +if (x_27 == 0) +{ +lean_object* x_28; lean_object* x_29; +x_28 = lean_ctor_get(x_26, 0); +lean_dec(x_28); +x_29 = lean_box(0); +lean_ctor_set(x_26, 0, x_29); +return x_26; +} +else +{ +lean_object* x_30; lean_object* x_31; lean_object* x_32; +x_30 = lean_ctor_get(x_26, 1); +lean_inc(x_30); +lean_dec(x_26); +x_31 = lean_box(0); +x_32 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_32, 0, x_31); +lean_ctor_set(x_32, 1, x_30); +return x_32; +} +} +else +{ +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; +x_33 = lean_ctor_get(x_17, 0); +x_34 = lean_ctor_get(x_17, 1); +x_35 = lean_ctor_get(x_17, 2); +x_36 = lean_ctor_get(x_17, 3); +x_37 = lean_ctor_get(x_17, 5); +x_38 = lean_ctor_get(x_17, 6); +lean_inc(x_38); +lean_inc(x_37); +lean_inc(x_36); +lean_inc(x_35); +lean_inc(x_34); +lean_inc(x_33); +lean_dec(x_17); +x_39 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_39, 0, x_1); +lean_ctor_set(x_39, 1, x_14); +x_40 = l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____lambda__1___closed__1; +x_41 = l_Lean_PersistentEnvExtension_addEntry___rarg(x_40, x_33, x_39); +x_42 = l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____lambda__1___closed__5; +x_43 = lean_alloc_ctor(0, 7, 0); +lean_ctor_set(x_43, 0, x_41); +lean_ctor_set(x_43, 1, x_34); +lean_ctor_set(x_43, 2, x_35); +lean_ctor_set(x_43, 3, x_36); +lean_ctor_set(x_43, 4, x_42); +lean_ctor_set(x_43, 5, x_37); +lean_ctor_set(x_43, 6, x_38); +x_44 = lean_st_ref_set(x_4, x_43, x_18); +x_45 = lean_ctor_get(x_44, 1); +lean_inc(x_45); +if (lean_is_exclusive(x_44)) { + lean_ctor_release(x_44, 0); + lean_ctor_release(x_44, 1); + x_46 = x_44; +} else { + lean_dec_ref(x_44); + x_46 = lean_box(0); +} +x_47 = lean_box(0); +if (lean_is_scalar(x_46)) { + x_48 = lean_alloc_ctor(0, 2, 0); +} else { + x_48 = x_46; +} +lean_ctor_set(x_48, 0, x_47); +lean_ctor_set(x_48, 1, x_45); +return x_48; +} +} +else +{ +uint8_t x_49; +lean_dec(x_1); +x_49 = !lean_is_exclusive(x_13); +if (x_49 == 0) +{ +lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; +x_50 = lean_ctor_get(x_13, 0); +x_51 = lean_io_error_to_string(x_50); +x_52 = lean_alloc_ctor(3, 1, 0); +lean_ctor_set(x_52, 0, x_51); +x_53 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_53, 0, x_52); +lean_inc(x_12); +x_54 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_54, 0, x_12); +lean_ctor_set(x_54, 1, x_53); +lean_ctor_set(x_13, 0, x_54); +return x_13; +} +else +{ +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; +x_55 = lean_ctor_get(x_13, 0); +x_56 = lean_ctor_get(x_13, 1); +lean_inc(x_56); +lean_inc(x_55); +lean_dec(x_13); +x_57 = lean_io_error_to_string(x_55); +x_58 = lean_alloc_ctor(3, 1, 0); +lean_ctor_set(x_58, 0, x_57); +x_59 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_59, 0, x_58); +lean_inc(x_12); +x_60 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_60, 0, x_12); +lean_ctor_set(x_60, 1, x_59); +x_61 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_61, 0, x_60); +lean_ctor_set(x_61, 1, x_56); +return x_61; +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____lambda__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +_start: +{ +lean_object* x_6; uint8_t x_7; +lean_dec(x_2); +x_6 = lean_st_ref_get(x_4, x_5); +x_7 = !lean_is_exclusive(x_6); +if (x_7 == 0) +{ +lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; +x_8 = lean_ctor_get(x_6, 0); +x_9 = lean_ctor_get(x_6, 1); +x_10 = lean_ctor_get(x_8, 0); +lean_inc(x_10); +lean_dec(x_8); +lean_inc(x_1); +x_11 = lean_decl_get_sorry_dep(x_10, x_1); +if (lean_obj_tag(x_11) == 0) +{ +lean_object* x_12; lean_object* x_13; +lean_free_object(x_6); +x_12 = lean_box(0); +x_13 = l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____lambda__1(x_1, x_12, x_3, x_4, x_9); +return x_13; +} +else +{ +lean_object* x_14; +lean_dec(x_11); +lean_dec(x_1); +x_14 = lean_box(0); +lean_ctor_set(x_6, 0, x_14); +return x_6; +} +} +else +{ +lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; +x_15 = lean_ctor_get(x_6, 0); +x_16 = lean_ctor_get(x_6, 1); +lean_inc(x_16); +lean_inc(x_15); +lean_dec(x_6); +x_17 = lean_ctor_get(x_15, 0); +lean_inc(x_17); +lean_dec(x_15); +lean_inc(x_1); +x_18 = lean_decl_get_sorry_dep(x_17, x_1); +if (lean_obj_tag(x_18) == 0) +{ +lean_object* x_19; lean_object* x_20; +x_19 = lean_box(0); +x_20 = l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____lambda__1(x_1, x_19, x_3, x_4, x_16); +return x_20; +} +else +{ +lean_object* x_21; lean_object* x_22; +lean_dec(x_18); +lean_dec(x_1); +x_21 = lean_box(0); +x_22 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_22, 0, x_21); +lean_ctor_set(x_22, 1, x_16); +return x_22; +} +} +} +} +static lean_object* _init_l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____lambda__3___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("invalid attribute 'hole_code_action', must be global", 52); +return x_1; +} +} +static lean_object* _init_l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____lambda__3___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____lambda__3___closed__1; +x_2 = l_Lean_stringToMessageData(x_1); +return x_2; +} +} +LEAN_EXPORT lean_object* l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____lambda__3(lean_object* x_1, lean_object* x_2, uint8_t x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +_start: +{ +lean_object* x_7; +lean_inc(x_5); +lean_inc(x_4); +x_7 = l_Lean_Attribute_Builtin_ensureNoArgs(x_2, x_4, x_5, x_6); +if (lean_obj_tag(x_7) == 0) +{ +lean_object* x_8; uint8_t x_9; uint8_t x_10; +x_8 = lean_ctor_get(x_7, 1); +lean_inc(x_8); +lean_dec(x_7); +x_9 = 0; +x_10 = l___private_Lean_Attributes_0__Lean_beqAttributeKind____x40_Lean_Attributes___hyg_183_(x_3, x_9); +if (x_10 == 0) +{ +lean_object* x_11; lean_object* x_12; uint8_t x_13; +lean_dec(x_1); +x_11 = l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____lambda__3___closed__2; +x_12 = l_Lean_throwError___at_Lean_registerTagAttribute___spec__1(x_11, x_4, x_5, x_8); +lean_dec(x_5); +lean_dec(x_4); +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(1, 2, 0); +lean_ctor_set(x_16, 0, x_14); +lean_ctor_set(x_16, 1, x_15); +return x_16; +} +} +else +{ +lean_object* x_17; lean_object* x_18; +x_17 = lean_box(0); +x_18 = l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____lambda__2(x_1, x_17, x_4, x_5, x_8); +lean_dec(x_5); +lean_dec(x_4); +return x_18; +} +} +else +{ +uint8_t x_19; +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_1); +x_19 = !lean_is_exclusive(x_7); +if (x_19 == 0) +{ +return x_7; +} +else +{ +lean_object* x_20; lean_object* x_21; lean_object* x_22; +x_20 = lean_ctor_get(x_7, 0); +x_21 = lean_ctor_get(x_7, 1); +lean_inc(x_21); +lean_inc(x_20); +lean_dec(x_7); +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; +} +} +} +} +static lean_object* _init_l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____lambda__4___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("attribute cannot be erased", 26); +return x_1; +} +} +static lean_object* _init_l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____lambda__4___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____lambda__4___closed__1; +x_2 = l_Lean_stringToMessageData(x_1); +return x_2; +} +} +LEAN_EXPORT lean_object* l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____lambda__4(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; +x_5 = l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____lambda__4___closed__2; +x_6 = l_Lean_throwError___at_Lean_AttributeImpl_erase___default___spec__1(x_5, x_2, x_3, x_4); +return x_6; +} +} +static lean_object* _init_l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_CodeAction_mkHoleCodeAction_unsafe__1___closed__1; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____closed__1; +x_2 = l_Lean_CodeAction_mkHoleCodeAction_unsafe__1___closed__2; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____closed__3() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("initFn", 6); +return x_1; +} +} +static lean_object* _init_l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____closed__2; +x_2 = l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____closed__3; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____closed__5() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("_@", 2); +return x_1; +} +} +static lean_object* _init_l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____closed__6() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____closed__4; +x_2 = l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____closed__5; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____closed__7() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____closed__6; +x_2 = l_Lean_CodeAction_mkHoleCodeAction_unsafe__1___closed__1; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____closed__8() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("Server", 6); +return x_1; +} +} +static lean_object* _init_l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____closed__9() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____closed__7; +x_2 = l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____closed__8; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____closed__10() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("CodeActions", 11); +return x_1; +} +} +static lean_object* _init_l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____closed__11() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____closed__9; +x_2 = l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____closed__10; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____closed__12() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("Attr", 4); +return x_1; +} +} +static lean_object* _init_l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____closed__13() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____closed__11; +x_2 = l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____closed__12; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____closed__14() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("_hyg", 4); +return x_1; +} +} +static lean_object* _init_l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____closed__15() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____closed__13; +x_2 = l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____closed__14; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____closed__16() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____closed__15; +x_2 = lean_unsigned_to_nat(297u); +x_3 = l_Lean_Name_num___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____closed__17() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("hole_code_action", 16); +return x_1; +} +} +static lean_object* _init_l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____closed__18() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____closed__17; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____closed__19() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("Declare a new hole code action, to appear in the code actions on \?_ and _", 73); +return x_1; +} +} +static lean_object* _init_l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____closed__20() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; +x_1 = l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____closed__16; +x_2 = l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____closed__18; +x_3 = l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____closed__19; +x_4 = 1; +x_5 = lean_alloc_ctor(0, 3, 1); +lean_ctor_set(x_5, 0, x_1); +lean_ctor_set(x_5, 1, x_2); +lean_ctor_set(x_5, 2, x_3); +lean_ctor_set_uint8(x_5, sizeof(void*)*3, x_4); +return x_5; +} +} +static lean_object* _init_l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____closed__21() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____lambda__3___boxed), 6, 0); +return x_1; +} +} +static lean_object* _init_l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____closed__22() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____lambda__4___boxed), 4, 0); +return x_1; +} +} +static lean_object* _init_l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____closed__23() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____closed__20; +x_2 = l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____closed__21; +x_3 = l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____closed__22; +x_4 = lean_alloc_ctor(0, 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; +} +} +LEAN_EXPORT lean_object* l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297_(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; +x_2 = l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____closed__23; +x_3 = l_Lean_registerBuiltinAttribute(x_2, x_1); +return x_3; +} +} +LEAN_EXPORT lean_object* l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____lambda__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +_start: +{ +lean_object* x_6; +x_6 = l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____lambda__1(x_1, x_2, x_3, x_4, x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +return x_6; +} +} +LEAN_EXPORT lean_object* l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____lambda__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +_start: +{ +lean_object* x_6; +x_6 = l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____lambda__2(x_1, x_2, x_3, x_4, x_5); +lean_dec(x_4); +lean_dec(x_3); +return x_6; +} +} +LEAN_EXPORT lean_object* l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____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) { +_start: +{ +uint8_t x_7; lean_object* x_8; +x_7 = lean_unbox(x_3); +lean_dec(x_3); +x_8 = l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____lambda__3(x_1, x_2, x_7, x_4, x_5, x_6); +return x_8; +} +} +LEAN_EXPORT lean_object* l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____lambda__4___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_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____lambda__4(x_1, x_2, x_3, x_4); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +return x_5; +} +} +static lean_object* _init_l_Lean_CodeAction_mkCommandCodeAction_unsafe__1___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("CommandCodeAction", 17); +return x_1; +} +} +static lean_object* _init_l_Lean_CodeAction_mkCommandCodeAction_unsafe__1___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_CodeAction_mkHoleCodeAction_unsafe__1___closed__1; +x_2 = l_Lean_CodeAction_mkHoleCodeAction_unsafe__1___closed__2; +x_3 = l_Lean_CodeAction_mkCommandCodeAction_unsafe__1___closed__1; +x_4 = l_Lean_Name_mkStr3(x_1, x_2, x_3); +return x_4; +} +} +LEAN_EXPORT lean_object* l_Lean_CodeAction_mkCommandCodeAction_unsafe__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +lean_object* x_4; lean_object* x_5; +x_4 = l_Lean_CodeAction_mkCommandCodeAction_unsafe__1___closed__2; +x_5 = l_Lean_Environment_evalConstCheck___rarg(x_2, x_3, x_4, x_1); +return x_5; +} +} +LEAN_EXPORT lean_object* l_Lean_CodeAction_mkCommandCodeAction_unsafe__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +lean_object* x_4; +x_4 = l_Lean_CodeAction_mkCommandCodeAction_unsafe__1(x_1, x_2, x_3); +lean_dec(x_3); +return x_4; +} +} +LEAN_EXPORT lean_object* l_IO_ofExcept___at_Lean_CodeAction_mkCommandCodeAction___spec__1(lean_object* x_1, lean_object* x_2) { +_start: +{ +if (lean_obj_tag(x_1) == 0) +{ +lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_3 = lean_ctor_get(x_1, 0); +lean_inc(x_3); +x_4 = lean_alloc_ctor(18, 1, 0); +lean_ctor_set(x_4, 0, x_3); +x_5 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_5, 0, x_4); +lean_ctor_set(x_5, 1, x_2); +return x_5; +} +else +{ +lean_object* x_6; lean_object* x_7; +x_6 = lean_ctor_get(x_1, 0); +lean_inc(x_6); +x_7 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_7, 0, x_6); +lean_ctor_set(x_7, 1, x_2); +return x_7; +} +} +} +LEAN_EXPORT lean_object* l_Lean_CodeAction_mkCommandCodeAction(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; +x_4 = lean_ctor_get(x_2, 0); +lean_inc(x_4); +x_5 = lean_ctor_get(x_2, 1); +lean_inc(x_5); +lean_dec(x_2); +x_6 = l_Lean_CodeAction_mkCommandCodeAction_unsafe__1(x_1, x_4, x_5); +lean_dec(x_5); +x_7 = l_IO_ofExcept___at_Lean_CodeAction_mkCommandCodeAction___spec__1(x_6, x_3); +lean_dec(x_6); +return x_7; +} +} +LEAN_EXPORT lean_object* l_IO_ofExcept___at_Lean_CodeAction_mkCommandCodeAction___spec__1___boxed(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; +x_3 = l_IO_ofExcept___at_Lean_CodeAction_mkCommandCodeAction___spec__1(x_1, x_2); +lean_dec(x_1); +return x_3; +} +} +static lean_object* _init_l_Lean_CodeAction_instInhabitedCommandCodeActionEntry___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_82____closed__3; +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_CodeAction_instInhabitedCommandCodeActionEntry() { +_start: +{ +lean_object* x_1; +x_1 = l_Lean_CodeAction_instInhabitedCommandCodeActionEntry___closed__1; +return x_1; +} +} +static lean_object* _init_l_Lean_CodeAction_CommandCodeActions_onAnyCmd___default() { +_start: +{ +lean_object* x_1; +x_1 = l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_82____closed__3; +return x_1; +} +} +static lean_object* _init_l_Lean_CodeAction_CommandCodeActions_onCmd___default() { +_start: +{ +lean_object* x_1; +x_1 = lean_box(0); +return x_1; +} +} +static lean_object* _init_l_Lean_CodeAction_instInhabitedCommandCodeActions___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_82____closed__3; +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_Lean_CodeAction_instInhabitedCommandCodeActions() { +_start: +{ +lean_object* x_1; +x_1 = l_Lean_CodeAction_instInhabitedCommandCodeActions___closed__1; +return x_1; +} +} +LEAN_EXPORT lean_object* l_Lean_RBNode_find___at_Lean_CodeAction_CommandCodeActions_insert___spec__1(lean_object* x_1, lean_object* x_2) { +_start: +{ +if (lean_obj_tag(x_1) == 0) +{ +lean_object* x_3; +x_3 = lean_box(0); +return x_3; +} +else +{ +lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; uint8_t x_8; +x_4 = lean_ctor_get(x_1, 0); +x_5 = lean_ctor_get(x_1, 1); +x_6 = lean_ctor_get(x_1, 2); +x_7 = lean_ctor_get(x_1, 3); +x_8 = l_Lean_Name_quickCmp(x_2, x_5); +switch (x_8) { +case 0: +{ +x_1 = x_4; +goto _start; +} +case 1: +{ +lean_object* x_10; +lean_inc(x_6); +x_10 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_10, 0, x_6); +return x_10; +} +default: +{ +x_1 = x_7; +goto _start; +} +} +} +} +} +LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_CodeAction_CommandCodeActions_insert___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; +x_6 = lean_usize_dec_eq(x_3, x_4); +if (x_6 == 0) +{ +lean_object* x_7; size_t x_8; size_t x_9; lean_object* x_10; +x_7 = lean_array_uget(x_2, x_3); +x_8 = 1; +x_9 = lean_usize_add(x_3, x_8); +x_10 = l_Lean_RBNode_find___at_Lean_CodeAction_CommandCodeActions_insert___spec__1(x_5, x_7); +if (lean_obj_tag(x_10) == 0) +{ +lean_object* x_11; lean_object* x_12; lean_object* x_13; +x_11 = l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_82____closed__3; +lean_inc(x_1); +x_12 = lean_array_push(x_11, x_1); +x_13 = l_Lean_RBNode_insert___at_Lean_NameMap_insert___spec__1___rarg(x_5, x_7, x_12); +x_3 = x_9; +x_5 = x_13; +goto _start; +} +else +{ +lean_object* x_15; lean_object* x_16; lean_object* x_17; +x_15 = lean_ctor_get(x_10, 0); +lean_inc(x_15); +lean_dec(x_10); +lean_inc(x_1); +x_16 = lean_array_push(x_15, x_1); +x_17 = l_Lean_RBNode_insert___at_Lean_NameMap_insert___spec__1___rarg(x_5, x_7, x_16); +x_3 = x_9; +x_5 = x_17; +goto _start; +} +} +else +{ +lean_dec(x_1); +return x_5; +} +} +} +LEAN_EXPORT lean_object* l_Lean_CodeAction_CommandCodeActions_insert(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +uint8_t x_4; +x_4 = l_Array_isEmpty___rarg(x_2); +if (x_4 == 0) +{ +uint8_t x_5; +x_5 = !lean_is_exclusive(x_1); +if (x_5 == 0) +{ +lean_object* x_6; lean_object* x_7; lean_object* x_8; uint8_t x_9; +x_6 = lean_ctor_get(x_1, 1); +x_7 = lean_array_get_size(x_2); +x_8 = lean_unsigned_to_nat(0u); +x_9 = lean_nat_dec_lt(x_8, x_7); +if (x_9 == 0) +{ +lean_dec(x_7); +lean_dec(x_3); +return x_1; +} +else +{ +uint8_t x_10; +x_10 = lean_nat_dec_le(x_7, x_7); +if (x_10 == 0) +{ +lean_dec(x_7); +lean_dec(x_3); +return x_1; +} +else +{ +size_t x_11; size_t x_12; lean_object* x_13; +x_11 = 0; +x_12 = lean_usize_of_nat(x_7); +lean_dec(x_7); +x_13 = l_Array_foldlMUnsafe_fold___at_Lean_CodeAction_CommandCodeActions_insert___spec__2(x_3, x_2, x_11, x_12, x_6); +lean_ctor_set(x_1, 1, x_13); +return x_1; +} +} +} +else +{ +lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; uint8_t x_18; +x_14 = lean_ctor_get(x_1, 0); +x_15 = lean_ctor_get(x_1, 1); +lean_inc(x_15); +lean_inc(x_14); +lean_dec(x_1); +x_16 = lean_array_get_size(x_2); +x_17 = lean_unsigned_to_nat(0u); +x_18 = lean_nat_dec_lt(x_17, x_16); +if (x_18 == 0) +{ +lean_object* x_19; +lean_dec(x_16); +lean_dec(x_3); +x_19 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_19, 0, x_14); +lean_ctor_set(x_19, 1, x_15); +return x_19; +} +else +{ +uint8_t x_20; +x_20 = lean_nat_dec_le(x_16, x_16); +if (x_20 == 0) +{ +lean_object* x_21; +lean_dec(x_16); +lean_dec(x_3); +x_21 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_21, 0, x_14); +lean_ctor_set(x_21, 1, x_15); +return x_21; +} +else +{ +size_t x_22; size_t x_23; lean_object* x_24; lean_object* x_25; +x_22 = 0; +x_23 = lean_usize_of_nat(x_16); +lean_dec(x_16); +x_24 = l_Array_foldlMUnsafe_fold___at_Lean_CodeAction_CommandCodeActions_insert___spec__2(x_3, x_2, x_22, x_23, x_15); +x_25 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_25, 0, x_14); +lean_ctor_set(x_25, 1, x_24); +return x_25; +} +} +} +} +else +{ +uint8_t x_26; +x_26 = !lean_is_exclusive(x_1); +if (x_26 == 0) +{ +lean_object* x_27; lean_object* x_28; +x_27 = lean_ctor_get(x_1, 0); +x_28 = lean_array_push(x_27, x_3); +lean_ctor_set(x_1, 0, x_28); +return x_1; +} +else +{ +lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; +x_29 = lean_ctor_get(x_1, 0); +x_30 = lean_ctor_get(x_1, 1); +lean_inc(x_30); +lean_inc(x_29); +lean_dec(x_1); +x_31 = lean_array_push(x_29, x_3); +x_32 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_32, 0, x_31); +lean_ctor_set(x_32, 1, x_30); +return x_32; +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_RBNode_find___at_Lean_CodeAction_CommandCodeActions_insert___spec__1___boxed(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; +x_3 = l_Lean_RBNode_find___at_Lean_CodeAction_CommandCodeActions_insert___spec__1(x_1, x_2); +lean_dec(x_2); +lean_dec(x_1); +return x_3; +} +} +LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_CodeAction_CommandCodeActions_insert___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; +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_CodeAction_CommandCodeActions_insert___spec__2(x_1, x_2, x_6, x_7, x_5); +lean_dec(x_2); +return x_8; +} +} +LEAN_EXPORT lean_object* l_Lean_CodeAction_CommandCodeActions_insert___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +lean_object* x_4; +x_4 = l_Lean_CodeAction_CommandCodeActions_insert(x_1, x_2, x_3); +lean_dec(x_2); +return x_4; +} +} +LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_739____spec__1(lean_object* x_1, size_t x_2, size_t x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +_start: +{ +uint8_t x_7; +x_7 = lean_usize_dec_eq(x_2, x_3); +if (x_7 == 0) +{ +lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; +x_8 = lean_array_uget(x_1, x_2); +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); +lean_inc(x_5); +x_11 = l_Lean_CodeAction_mkCommandCodeAction(x_9, x_5, x_6); +if (lean_obj_tag(x_11) == 0) +{ +lean_object* x_12; lean_object* x_13; lean_object* x_14; size_t x_15; size_t x_16; +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); +x_14 = l_Lean_CodeAction_CommandCodeActions_insert(x_4, x_10, x_12); +lean_dec(x_10); +x_15 = 1; +x_16 = lean_usize_add(x_2, x_15); +x_2 = x_16; +x_4 = x_14; +x_6 = x_13; +goto _start; +} +else +{ +uint8_t x_18; +lean_dec(x_10); +lean_dec(x_5); +lean_dec(x_4); +x_18 = !lean_is_exclusive(x_11); +if (x_18 == 0) +{ +return x_11; +} +else +{ +lean_object* x_19; lean_object* x_20; lean_object* x_21; +x_19 = lean_ctor_get(x_11, 0); +x_20 = lean_ctor_get(x_11, 1); +lean_inc(x_20); +lean_inc(x_19); +lean_dec(x_11); +x_21 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_21, 0, x_19); +lean_ctor_set(x_21, 1, x_20); +return x_21; +} +} +} +else +{ +lean_object* x_22; +lean_dec(x_5); +x_22 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_22, 0, x_4); +lean_ctor_set(x_22, 1, x_6); +return x_22; +} +} +} +LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_739____spec__2(lean_object* x_1, size_t x_2, size_t x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +_start: +{ +uint8_t x_7; +x_7 = lean_usize_dec_eq(x_2, x_3); +if (x_7 == 0) +{ +lean_object* x_8; lean_object* x_9; lean_object* x_10; uint8_t x_11; +x_8 = lean_array_uget(x_1, x_2); +x_9 = lean_array_get_size(x_8); +x_10 = lean_unsigned_to_nat(0u); +x_11 = lean_nat_dec_lt(x_10, x_9); +if (x_11 == 0) +{ +size_t x_12; size_t x_13; +lean_dec(x_9); +lean_dec(x_8); +x_12 = 1; +x_13 = lean_usize_add(x_2, x_12); +x_2 = x_13; +goto _start; +} +else +{ +uint8_t x_15; +x_15 = lean_nat_dec_le(x_9, x_9); +if (x_15 == 0) +{ +size_t x_16; size_t x_17; +lean_dec(x_9); +lean_dec(x_8); +x_16 = 1; +x_17 = lean_usize_add(x_2, x_16); +x_2 = x_17; +goto _start; +} +else +{ +size_t x_19; size_t x_20; lean_object* x_21; +x_19 = 0; +x_20 = lean_usize_of_nat(x_9); +lean_dec(x_9); +lean_inc(x_5); +x_21 = l_Array_foldlMUnsafe_fold___at_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_739____spec__1(x_8, x_19, x_20, x_4, x_5, x_6); +lean_dec(x_8); +if (lean_obj_tag(x_21) == 0) +{ +lean_object* x_22; lean_object* x_23; size_t x_24; size_t x_25; +x_22 = lean_ctor_get(x_21, 0); +lean_inc(x_22); +x_23 = lean_ctor_get(x_21, 1); +lean_inc(x_23); +lean_dec(x_21); +x_24 = 1; +x_25 = lean_usize_add(x_2, x_24); +x_2 = x_25; +x_4 = x_22; +x_6 = x_23; +goto _start; +} +else +{ +uint8_t x_27; +lean_dec(x_5); +x_27 = !lean_is_exclusive(x_21); +if (x_27 == 0) +{ +return x_21; +} +else +{ +lean_object* x_28; lean_object* x_29; lean_object* x_30; +x_28 = lean_ctor_get(x_21, 0); +x_29 = lean_ctor_get(x_21, 1); +lean_inc(x_29); +lean_inc(x_28); +lean_dec(x_21); +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; +} +} +} +} +} +else +{ +lean_object* x_31; +lean_dec(x_5); +x_31 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_31, 0, x_4); +lean_ctor_set(x_31, 1, x_6); +return x_31; +} +} +} +LEAN_EXPORT lean_object* l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_739____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; lean_object* x_8; uint8_t x_9; +x_7 = lean_array_get_size(x_4); +x_8 = lean_unsigned_to_nat(0u); +x_9 = lean_nat_dec_lt(x_8, x_7); +if (x_9 == 0) +{ +lean_object* x_10; +lean_dec(x_7); +lean_dec(x_5); +lean_dec(x_3); +lean_dec(x_2); +x_10 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_10, 0, x_1); +lean_ctor_set(x_10, 1, x_6); +return x_10; +} +else +{ +uint8_t x_11; +x_11 = lean_nat_dec_le(x_7, x_7); +if (x_11 == 0) +{ +lean_object* x_12; +lean_dec(x_7); +lean_dec(x_5); +lean_dec(x_3); +lean_dec(x_2); +x_12 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_12, 0, x_1); +lean_ctor_set(x_12, 1, x_6); +return x_12; +} +else +{ +size_t x_13; size_t x_14; lean_object* x_15; +lean_dec(x_1); +x_13 = 0; +x_14 = lean_usize_of_nat(x_7); +lean_dec(x_7); +x_15 = l_Array_foldlMUnsafe_fold___at_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_739____spec__2(x_4, x_13, x_14, x_2, x_5, x_6); +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; lean_object* x_18; +x_17 = lean_ctor_get(x_15, 0); +x_18 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_18, 0, x_3); +lean_ctor_set(x_18, 1, x_17); +lean_ctor_set(x_15, 0, x_18); +return x_15; +} +else +{ +lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; +x_19 = lean_ctor_get(x_15, 0); +x_20 = lean_ctor_get(x_15, 1); +lean_inc(x_20); +lean_inc(x_19); +lean_dec(x_15); +x_21 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_21, 0, x_3); +lean_ctor_set(x_21, 1, x_19); +x_22 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_22, 0, x_21); +lean_ctor_set(x_22, 1, x_20); +return x_22; +} +} +else +{ +uint8_t x_23; +lean_dec(x_3); +x_23 = !lean_is_exclusive(x_15); +if (x_23 == 0) +{ +return x_15; +} +else +{ +lean_object* x_24; lean_object* x_25; lean_object* x_26; +x_24 = lean_ctor_get(x_15, 0); +x_25 = lean_ctor_get(x_15, 1); +lean_inc(x_25); +lean_inc(x_24); +lean_dec(x_15); +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; +} +} +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_739____lambda__2(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; lean_object* x_4; uint8_t x_5; +x_3 = lean_ctor_get(x_1, 0); +lean_inc(x_3); +x_4 = lean_ctor_get(x_1, 1); +lean_inc(x_4); +lean_dec(x_1); +x_5 = !lean_is_exclusive(x_2); +if (x_5 == 0) +{ +lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; +x_6 = lean_ctor_get(x_2, 0); +x_7 = lean_ctor_get(x_2, 1); +lean_inc(x_6); +x_8 = lean_array_push(x_3, x_6); +x_9 = lean_ctor_get(x_6, 1); +lean_inc(x_9); +lean_dec(x_6); +x_10 = l_Lean_CodeAction_CommandCodeActions_insert(x_4, x_9, x_7); +lean_dec(x_9); +lean_ctor_set(x_2, 1, x_10); +lean_ctor_set(x_2, 0, x_8); +return x_2; +} +else +{ +lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; +x_11 = lean_ctor_get(x_2, 0); +x_12 = lean_ctor_get(x_2, 1); +lean_inc(x_12); +lean_inc(x_11); +lean_dec(x_2); +lean_inc(x_11); +x_13 = lean_array_push(x_3, x_11); +x_14 = lean_ctor_get(x_11, 1); +lean_inc(x_14); +lean_dec(x_11); +x_15 = l_Lean_CodeAction_CommandCodeActions_insert(x_4, x_14, x_12); +lean_dec(x_14); +x_16 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_16, 0, x_13); +lean_ctor_set(x_16, 1, x_15); +return x_16; +} +} +} +static lean_object* _init_l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_739____closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("cmdCodeActionExt", 16); +return x_1; +} +} +static lean_object* _init_l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_739____closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_CodeAction_mkHoleCodeAction_unsafe__1___closed__1; +x_2 = l_Lean_CodeAction_mkHoleCodeAction_unsafe__1___closed__2; +x_3 = l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_739____closed__1; +x_4 = l_Lean_Name_mkStr3(x_1, x_2, x_3); +return x_4; +} +} +static lean_object* _init_l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_739____closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_82____closed__3; +x_2 = l_Lean_CodeAction_instInhabitedCommandCodeActions___closed__1; +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_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_739____closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_739____closed__3; +x_2 = lean_alloc_closure((void*)(l_EStateM_pure___rarg), 2, 1); +lean_closure_set(x_2, 0, x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_739____closed__5() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_739____lambda__2), 2, 0); +return x_1; +} +} +LEAN_EXPORT lean_object* l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_739_(lean_object* x_1) { +_start: +{ +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; +x_2 = l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_739____closed__3; +x_3 = l_Lean_CodeAction_instInhabitedCommandCodeActions___closed__1; +x_4 = l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_82____closed__3; +x_5 = lean_alloc_closure((void*)(l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_739____lambda__1___boxed), 6, 3); +lean_closure_set(x_5, 0, x_2); +lean_closure_set(x_5, 1, x_3); +lean_closure_set(x_5, 2, x_4); +x_6 = l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_739____closed__2; +x_7 = l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_739____closed__4; +x_8 = l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_739____closed__5; +x_9 = l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_82____closed__7; +x_10 = l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_82____closed__8; +x_11 = lean_alloc_ctor(0, 6, 0); +lean_ctor_set(x_11, 0, x_6); +lean_ctor_set(x_11, 1, x_7); +lean_ctor_set(x_11, 2, x_5); +lean_ctor_set(x_11, 3, x_8); +lean_ctor_set(x_11, 4, x_9); +lean_ctor_set(x_11, 5, x_10); +x_12 = l_Lean_registerPersistentEnvExtensionUnsafe___rarg(x_11, x_1); +return x_12; +} +} +LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_739____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) { +_start: +{ +size_t x_7; size_t x_8; lean_object* x_9; +x_7 = lean_unbox_usize(x_2); +lean_dec(x_2); +x_8 = lean_unbox_usize(x_3); +lean_dec(x_3); +x_9 = l_Array_foldlMUnsafe_fold___at_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_739____spec__1(x_1, x_7, x_8, x_4, x_5, x_6); +lean_dec(x_1); +return x_9; +} +} +LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_739____spec__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) { +_start: +{ +size_t x_7; size_t x_8; lean_object* x_9; +x_7 = lean_unbox_usize(x_2); +lean_dec(x_2); +x_8 = lean_unbox_usize(x_3); +lean_dec(x_3); +x_9 = l_Array_foldlMUnsafe_fold___at_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_739____spec__2(x_1, x_7, x_8, x_4, x_5, x_6); +lean_dec(x_1); +return x_9; +} +} +LEAN_EXPORT lean_object* l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_739____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_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_739____lambda__1(x_1, x_2, x_3, x_4, x_5, x_6); +lean_dec(x_4); +return x_7; +} +} +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_981____spec__1(size_t x_1, size_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +_start: +{ +uint8_t x_7; +x_7 = lean_usize_dec_lt(x_2, x_1); +if (x_7 == 0) +{ +lean_object* x_8; +lean_dec(x_5); +lean_dec(x_4); +x_8 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_8, 0, x_3); +lean_ctor_set(x_8, 1, x_6); +return x_8; +} +else +{ +lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; +x_9 = lean_array_uget(x_3, x_2); +x_10 = lean_unsigned_to_nat(0u); +x_11 = lean_array_uset(x_3, x_2, x_10); +x_12 = lean_box(0); +lean_inc(x_5); +lean_inc(x_4); +x_13 = l_Lean_Elab_resolveGlobalConstNoOverloadWithInfo___at_Lean_registerInitAttrUnsafe___spec__4(x_9, x_12, x_4, x_5, x_6); +if (lean_obj_tag(x_13) == 0) +{ +lean_object* x_14; lean_object* x_15; size_t x_16; size_t x_17; lean_object* x_18; +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 = 1; +x_17 = lean_usize_add(x_2, x_16); +x_18 = lean_array_uset(x_11, x_2, x_14); +x_2 = x_17; +x_3 = x_18; +x_6 = x_15; +goto _start; +} +else +{ +uint8_t x_20; +lean_dec(x_11); +lean_dec(x_5); +lean_dec(x_4); +x_20 = !lean_is_exclusive(x_13); +if (x_20 == 0) +{ +return x_13; +} +else +{ +lean_object* x_21; lean_object* x_22; lean_object* x_23; +x_21 = lean_ctor_get(x_13, 0); +x_22 = lean_ctor_get(x_13, 1); +lean_inc(x_22); +lean_inc(x_21); +lean_dec(x_13); +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; +} +} +} +} +} +static lean_object* _init_l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_981____lambda__1___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = l_Lean_CodeAction_cmdCodeActionExt; +return x_1; +} +} +LEAN_EXPORT lean_object* l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_981____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; 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_7 = lean_st_ref_get(x_5, x_6); +x_8 = lean_ctor_get(x_7, 0); +lean_inc(x_8); +x_9 = lean_ctor_get(x_7, 1); +lean_inc(x_9); +lean_dec(x_7); +x_10 = lean_ctor_get(x_8, 0); +lean_inc(x_10); +lean_dec(x_8); +x_11 = lean_ctor_get(x_4, 2); +lean_inc(x_11); +x_12 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_12, 0, x_10); +lean_ctor_set(x_12, 1, x_11); +x_13 = lean_ctor_get(x_4, 5); +lean_inc(x_1); +x_14 = l_Lean_CodeAction_mkCommandCodeAction(x_1, x_12, x_9); +if (lean_obj_tag(x_14) == 0) +{ +lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; uint8_t x_20; +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_st_ref_take(x_5, x_16); +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 = !lean_is_exclusive(x_18); +if (x_20 == 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_object* x_28; uint8_t x_29; +x_21 = lean_ctor_get(x_18, 0); +x_22 = lean_ctor_get(x_18, 4); +lean_dec(x_22); +x_23 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_23, 0, x_1); +lean_ctor_set(x_23, 1, x_2); +x_24 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_24, 0, x_23); +lean_ctor_set(x_24, 1, x_15); +x_25 = l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_981____lambda__1___closed__1; +x_26 = l_Lean_PersistentEnvExtension_addEntry___rarg(x_25, x_21, x_24); +x_27 = l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____lambda__1___closed__5; +lean_ctor_set(x_18, 4, x_27); +lean_ctor_set(x_18, 0, x_26); +x_28 = lean_st_ref_set(x_5, x_18, x_19); +x_29 = !lean_is_exclusive(x_28); +if (x_29 == 0) +{ +lean_object* x_30; lean_object* x_31; +x_30 = lean_ctor_get(x_28, 0); +lean_dec(x_30); +x_31 = lean_box(0); +lean_ctor_set(x_28, 0, x_31); +return x_28; +} +else +{ +lean_object* x_32; lean_object* x_33; lean_object* x_34; +x_32 = lean_ctor_get(x_28, 1); +lean_inc(x_32); +lean_dec(x_28); +x_33 = lean_box(0); +x_34 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_34, 0, x_33); +lean_ctor_set(x_34, 1, x_32); +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_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_35 = lean_ctor_get(x_18, 0); +x_36 = lean_ctor_get(x_18, 1); +x_37 = lean_ctor_get(x_18, 2); +x_38 = lean_ctor_get(x_18, 3); +x_39 = lean_ctor_get(x_18, 5); +x_40 = lean_ctor_get(x_18, 6); +lean_inc(x_40); +lean_inc(x_39); +lean_inc(x_38); +lean_inc(x_37); +lean_inc(x_36); +lean_inc(x_35); +lean_dec(x_18); +x_41 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_41, 0, x_1); +lean_ctor_set(x_41, 1, x_2); +x_42 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_42, 0, x_41); +lean_ctor_set(x_42, 1, x_15); +x_43 = l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_981____lambda__1___closed__1; +x_44 = l_Lean_PersistentEnvExtension_addEntry___rarg(x_43, x_35, x_42); +x_45 = l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____lambda__1___closed__5; +x_46 = lean_alloc_ctor(0, 7, 0); +lean_ctor_set(x_46, 0, x_44); +lean_ctor_set(x_46, 1, x_36); +lean_ctor_set(x_46, 2, x_37); +lean_ctor_set(x_46, 3, x_38); +lean_ctor_set(x_46, 4, x_45); +lean_ctor_set(x_46, 5, x_39); +lean_ctor_set(x_46, 6, x_40); +x_47 = lean_st_ref_set(x_5, x_46, x_19); +x_48 = lean_ctor_get(x_47, 1); +lean_inc(x_48); +if (lean_is_exclusive(x_47)) { + lean_ctor_release(x_47, 0); + lean_ctor_release(x_47, 1); + x_49 = x_47; +} else { + lean_dec_ref(x_47); + x_49 = lean_box(0); +} +x_50 = lean_box(0); +if (lean_is_scalar(x_49)) { + x_51 = lean_alloc_ctor(0, 2, 0); +} else { + x_51 = x_49; +} +lean_ctor_set(x_51, 0, x_50); +lean_ctor_set(x_51, 1, x_48); +return x_51; +} +} +else +{ +uint8_t x_52; +lean_dec(x_2); +lean_dec(x_1); +x_52 = !lean_is_exclusive(x_14); +if (x_52 == 0) +{ +lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; +x_53 = lean_ctor_get(x_14, 0); +x_54 = lean_io_error_to_string(x_53); +x_55 = lean_alloc_ctor(3, 1, 0); +lean_ctor_set(x_55, 0, x_54); +x_56 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_56, 0, x_55); +lean_inc(x_13); +x_57 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_57, 0, x_13); +lean_ctor_set(x_57, 1, x_56); +lean_ctor_set(x_14, 0, x_57); +return x_14; +} +else +{ +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; +x_58 = lean_ctor_get(x_14, 0); +x_59 = lean_ctor_get(x_14, 1); +lean_inc(x_59); +lean_inc(x_58); +lean_dec(x_14); +x_60 = lean_io_error_to_string(x_58); +x_61 = lean_alloc_ctor(3, 1, 0); +lean_ctor_set(x_61, 0, x_60); +x_62 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_62, 0, x_61); +lean_inc(x_13); +x_63 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_63, 0, x_13); +lean_ctor_set(x_63, 1, x_62); +x_64 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_64, 0, x_63); +lean_ctor_set(x_64, 1, x_59); +return x_64; +} +} +} +} +static lean_object* _init_l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_981____lambda__2___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("command_code_action", 19); +return x_1; +} +} +static lean_object* _init_l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_981____lambda__2___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_CodeAction_mkHoleCodeAction_unsafe__1___closed__1; +x_2 = l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_981____lambda__2___closed__1; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; +} +} +LEAN_EXPORT lean_object* l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_981____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) { +_start: +{ +lean_object* x_7; uint8_t x_8; +lean_dec(x_3); +x_7 = l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_981____lambda__2___closed__2; +lean_inc(x_1); +x_8 = l_Lean_Syntax_isOfKind(x_1, x_7); +if (x_8 == 0) +{ +lean_object* x_9; lean_object* x_10; +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_2); +lean_dec(x_1); +x_9 = lean_box(0); +x_10 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_10, 0, x_9); +lean_ctor_set(x_10, 1, x_6); +return x_10; +} +else +{ +lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; size_t x_15; size_t x_16; lean_object* x_17; +x_11 = lean_unsigned_to_nat(1u); +x_12 = l_Lean_Syntax_getArg(x_1, x_11); +lean_dec(x_1); +x_13 = l_Lean_Syntax_getArgs(x_12); +lean_dec(x_12); +x_14 = lean_array_get_size(x_13); +x_15 = lean_usize_of_nat(x_14); +lean_dec(x_14); +x_16 = 0; +lean_inc(x_5); +lean_inc(x_4); +x_17 = l_Array_mapMUnsafe_map___at_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_981____spec__1(x_15, x_16, x_13, x_4, x_5, x_6); +if (lean_obj_tag(x_17) == 0) +{ +lean_object* x_18; lean_object* x_19; lean_object* x_20; uint8_t x_21; +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 = lean_st_ref_get(x_5, x_19); +x_21 = !lean_is_exclusive(x_20); +if (x_21 == 0) +{ +lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; +x_22 = lean_ctor_get(x_20, 0); +x_23 = lean_ctor_get(x_20, 1); +x_24 = lean_ctor_get(x_22, 0); +lean_inc(x_24); +lean_dec(x_22); +lean_inc(x_2); +x_25 = lean_decl_get_sorry_dep(x_24, x_2); +if (lean_obj_tag(x_25) == 0) +{ +lean_object* x_26; lean_object* x_27; +lean_free_object(x_20); +x_26 = lean_box(0); +x_27 = l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_981____lambda__1(x_2, x_18, x_26, x_4, x_5, x_23); +lean_dec(x_5); +lean_dec(x_4); +return x_27; +} +else +{ +lean_object* x_28; +lean_dec(x_25); +lean_dec(x_18); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_2); +x_28 = lean_box(0); +lean_ctor_set(x_20, 0, x_28); +return x_20; +} +} +else +{ +lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; +x_29 = lean_ctor_get(x_20, 0); +x_30 = lean_ctor_get(x_20, 1); +lean_inc(x_30); +lean_inc(x_29); +lean_dec(x_20); +x_31 = lean_ctor_get(x_29, 0); +lean_inc(x_31); +lean_dec(x_29); +lean_inc(x_2); +x_32 = lean_decl_get_sorry_dep(x_31, x_2); +if (lean_obj_tag(x_32) == 0) +{ +lean_object* x_33; lean_object* x_34; +x_33 = lean_box(0); +x_34 = l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_981____lambda__1(x_2, x_18, x_33, x_4, x_5, x_30); +lean_dec(x_5); +lean_dec(x_4); +return x_34; +} +else +{ +lean_object* x_35; lean_object* x_36; +lean_dec(x_32); +lean_dec(x_18); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_2); +x_35 = lean_box(0); +x_36 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_36, 0, x_35); +lean_ctor_set(x_36, 1, x_30); +return x_36; +} +} +} +else +{ +uint8_t x_37; +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_2); +x_37 = !lean_is_exclusive(x_17); +if (x_37 == 0) +{ +return x_17; +} +else +{ +lean_object* x_38; lean_object* x_39; lean_object* x_40; +x_38 = lean_ctor_get(x_17, 0); +x_39 = lean_ctor_get(x_17, 1); +lean_inc(x_39); +lean_inc(x_38); +lean_dec(x_17); +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; +} +} +} +} +} +static lean_object* _init_l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_981____lambda__3___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("invalid attribute 'command_code_action', must be global", 55); +return x_1; +} +} +static lean_object* _init_l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_981____lambda__3___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_981____lambda__3___closed__1; +x_2 = l_Lean_stringToMessageData(x_1); +return x_2; +} +} +LEAN_EXPORT lean_object* l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_981____lambda__3(lean_object* x_1, lean_object* x_2, uint8_t x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +_start: +{ +uint8_t x_7; uint8_t x_8; +x_7 = 0; +x_8 = l___private_Lean_Attributes_0__Lean_beqAttributeKind____x40_Lean_Attributes___hyg_183_(x_3, x_7); +if (x_8 == 0) +{ +lean_object* x_9; lean_object* x_10; uint8_t x_11; +lean_dec(x_2); +lean_dec(x_1); +x_9 = l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_981____lambda__3___closed__2; +x_10 = l_Lean_throwError___at_Lean_registerTagAttribute___spec__1(x_9, x_4, x_5, x_6); +lean_dec(x_5); +lean_dec(x_4); +x_11 = !lean_is_exclusive(x_10); +if (x_11 == 0) +{ +return x_10; +} +else +{ +lean_object* x_12; lean_object* x_13; lean_object* x_14; +x_12 = lean_ctor_get(x_10, 0); +x_13 = lean_ctor_get(x_10, 1); +lean_inc(x_13); +lean_inc(x_12); +lean_dec(x_10); +x_14 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_14, 0, x_12); +lean_ctor_set(x_14, 1, x_13); +return x_14; +} +} +else +{ +lean_object* x_15; lean_object* x_16; +x_15 = lean_box(0); +x_16 = l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_981____lambda__2(x_2, x_1, x_15, x_4, x_5, x_6); +return x_16; +} +} +} +static lean_object* _init_l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_981____closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____closed__15; +x_2 = lean_unsigned_to_nat(981u); +x_3 = l_Lean_Name_num___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_981____closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_981____lambda__2___closed__1; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_981____closed__3() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("Declare a new command code action, to appear in the code actions on commands", 76); +return x_1; +} +} +static lean_object* _init_l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_981____closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; +x_1 = l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_981____closed__1; +x_2 = l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_981____closed__2; +x_3 = l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_981____closed__3; +x_4 = 1; +x_5 = lean_alloc_ctor(0, 3, 1); +lean_ctor_set(x_5, 0, x_1); +lean_ctor_set(x_5, 1, x_2); +lean_ctor_set(x_5, 2, x_3); +lean_ctor_set_uint8(x_5, sizeof(void*)*3, x_4); +return x_5; +} +} +static lean_object* _init_l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_981____closed__5() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_981____lambda__3___boxed), 6, 0); +return x_1; +} +} +static lean_object* _init_l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_981____closed__6() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_981____closed__4; +x_2 = l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_981____closed__5; +x_3 = l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____closed__22; +x_4 = lean_alloc_ctor(0, 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; +} +} +LEAN_EXPORT lean_object* l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_981_(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; +x_2 = l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_981____closed__6; +x_3 = l_Lean_registerBuiltinAttribute(x_2, x_1); +return x_3; +} +} +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_981____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) { +_start: +{ +size_t x_7; size_t x_8; lean_object* x_9; +x_7 = lean_unbox_usize(x_1); +lean_dec(x_1); +x_8 = lean_unbox_usize(x_2); +lean_dec(x_2); +x_9 = l_Array_mapMUnsafe_map___at_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_981____spec__1(x_7, x_8, x_3, x_4, x_5, x_6); +return x_9; +} +} +LEAN_EXPORT lean_object* l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_981____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_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_981____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); +return x_7; +} +} +LEAN_EXPORT lean_object* l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_981____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) { +_start: +{ +uint8_t x_7; lean_object* x_8; +x_7 = lean_unbox(x_3); +lean_dec(x_3); +x_8 = l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_981____lambda__3(x_1, x_2, x_7, x_4, x_5, x_6); +return x_8; +} +} +lean_object* initialize_Init(uint8_t builtin, lean_object*); +lean_object* initialize_Lean_Server_CodeActions_Basic(uint8_t builtin, lean_object*); +static bool _G_initialized = false; +LEAN_EXPORT lean_object* initialize_Lean_Server_CodeActions_Attr(uint8_t builtin, lean_object* w) { +lean_object * res; +if (_G_initialized) return lean_io_result_mk_ok(lean_box(0)); +_G_initialized = true; +res = initialize_Init(builtin, lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +res = initialize_Lean_Server_CodeActions_Basic(builtin, lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +l_Lean_CodeAction_mkHoleCodeAction_unsafe__1___closed__1 = _init_l_Lean_CodeAction_mkHoleCodeAction_unsafe__1___closed__1(); +lean_mark_persistent(l_Lean_CodeAction_mkHoleCodeAction_unsafe__1___closed__1); +l_Lean_CodeAction_mkHoleCodeAction_unsafe__1___closed__2 = _init_l_Lean_CodeAction_mkHoleCodeAction_unsafe__1___closed__2(); +lean_mark_persistent(l_Lean_CodeAction_mkHoleCodeAction_unsafe__1___closed__2); +l_Lean_CodeAction_mkHoleCodeAction_unsafe__1___closed__3 = _init_l_Lean_CodeAction_mkHoleCodeAction_unsafe__1___closed__3(); +lean_mark_persistent(l_Lean_CodeAction_mkHoleCodeAction_unsafe__1___closed__3); +l_Lean_CodeAction_mkHoleCodeAction_unsafe__1___closed__4 = _init_l_Lean_CodeAction_mkHoleCodeAction_unsafe__1___closed__4(); +lean_mark_persistent(l_Lean_CodeAction_mkHoleCodeAction_unsafe__1___closed__4); +l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_82____closed__1 = _init_l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_82____closed__1(); +lean_mark_persistent(l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_82____closed__1); +l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_82____closed__2 = _init_l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_82____closed__2(); +lean_mark_persistent(l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_82____closed__2); +l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_82____closed__3 = _init_l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_82____closed__3(); +lean_mark_persistent(l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_82____closed__3); +l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_82____closed__4 = _init_l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_82____closed__4(); +lean_mark_persistent(l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_82____closed__4); +l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_82____closed__5 = _init_l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_82____closed__5(); +lean_mark_persistent(l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_82____closed__5); +l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_82____closed__6 = _init_l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_82____closed__6(); +lean_mark_persistent(l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_82____closed__6); +l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_82____closed__7 = _init_l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_82____closed__7(); +lean_mark_persistent(l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_82____closed__7); +l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_82____closed__8 = _init_l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_82____closed__8(); +lean_mark_persistent(l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_82____closed__8); +if (builtin) {res = l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_82_(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +l_Lean_CodeAction_holeCodeActionExt = lean_io_result_get_value(res); +lean_mark_persistent(l_Lean_CodeAction_holeCodeActionExt); +lean_dec_ref(res); +}l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____lambda__1___closed__1 = _init_l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____lambda__1___closed__1(); +lean_mark_persistent(l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____lambda__1___closed__1); +l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____lambda__1___closed__2 = _init_l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____lambda__1___closed__2(); +lean_mark_persistent(l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____lambda__1___closed__2); +l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____lambda__1___closed__3 = _init_l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____lambda__1___closed__3(); +lean_mark_persistent(l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____lambda__1___closed__3); +l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____lambda__1___closed__4 = _init_l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____lambda__1___closed__4(); +lean_mark_persistent(l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____lambda__1___closed__4); +l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____lambda__1___closed__5 = _init_l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____lambda__1___closed__5(); +lean_mark_persistent(l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____lambda__1___closed__5); +l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____lambda__3___closed__1 = _init_l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____lambda__3___closed__1(); +lean_mark_persistent(l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____lambda__3___closed__1); +l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____lambda__3___closed__2 = _init_l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____lambda__3___closed__2(); +lean_mark_persistent(l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____lambda__3___closed__2); +l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____lambda__4___closed__1 = _init_l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____lambda__4___closed__1(); +lean_mark_persistent(l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____lambda__4___closed__1); +l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____lambda__4___closed__2 = _init_l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____lambda__4___closed__2(); +lean_mark_persistent(l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____lambda__4___closed__2); +l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____closed__1 = _init_l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____closed__1(); +lean_mark_persistent(l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____closed__1); +l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____closed__2 = _init_l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____closed__2(); +lean_mark_persistent(l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____closed__2); +l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____closed__3 = _init_l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____closed__3(); +lean_mark_persistent(l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____closed__3); +l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____closed__4 = _init_l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____closed__4(); +lean_mark_persistent(l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____closed__4); +l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____closed__5 = _init_l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____closed__5(); +lean_mark_persistent(l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____closed__5); +l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____closed__6 = _init_l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____closed__6(); +lean_mark_persistent(l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____closed__6); +l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____closed__7 = _init_l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____closed__7(); +lean_mark_persistent(l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____closed__7); +l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____closed__8 = _init_l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____closed__8(); +lean_mark_persistent(l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____closed__8); +l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____closed__9 = _init_l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____closed__9(); +lean_mark_persistent(l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____closed__9); +l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____closed__10 = _init_l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____closed__10(); +lean_mark_persistent(l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____closed__10); +l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____closed__11 = _init_l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____closed__11(); +lean_mark_persistent(l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____closed__11); +l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____closed__12 = _init_l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____closed__12(); +lean_mark_persistent(l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____closed__12); +l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____closed__13 = _init_l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____closed__13(); +lean_mark_persistent(l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____closed__13); +l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____closed__14 = _init_l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____closed__14(); +lean_mark_persistent(l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____closed__14); +l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____closed__15 = _init_l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____closed__15(); +lean_mark_persistent(l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____closed__15); +l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____closed__16 = _init_l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____closed__16(); +lean_mark_persistent(l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____closed__16); +l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____closed__17 = _init_l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____closed__17(); +lean_mark_persistent(l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____closed__17); +l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____closed__18 = _init_l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____closed__18(); +lean_mark_persistent(l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____closed__18); +l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____closed__19 = _init_l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____closed__19(); +lean_mark_persistent(l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____closed__19); +l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____closed__20 = _init_l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____closed__20(); +lean_mark_persistent(l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____closed__20); +l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____closed__21 = _init_l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____closed__21(); +lean_mark_persistent(l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____closed__21); +l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____closed__22 = _init_l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____closed__22(); +lean_mark_persistent(l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____closed__22); +l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____closed__23 = _init_l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____closed__23(); +lean_mark_persistent(l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297____closed__23); +if (builtin) {res = l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_297_(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +}l_Lean_CodeAction_mkCommandCodeAction_unsafe__1___closed__1 = _init_l_Lean_CodeAction_mkCommandCodeAction_unsafe__1___closed__1(); +lean_mark_persistent(l_Lean_CodeAction_mkCommandCodeAction_unsafe__1___closed__1); +l_Lean_CodeAction_mkCommandCodeAction_unsafe__1___closed__2 = _init_l_Lean_CodeAction_mkCommandCodeAction_unsafe__1___closed__2(); +lean_mark_persistent(l_Lean_CodeAction_mkCommandCodeAction_unsafe__1___closed__2); +l_Lean_CodeAction_instInhabitedCommandCodeActionEntry___closed__1 = _init_l_Lean_CodeAction_instInhabitedCommandCodeActionEntry___closed__1(); +lean_mark_persistent(l_Lean_CodeAction_instInhabitedCommandCodeActionEntry___closed__1); +l_Lean_CodeAction_instInhabitedCommandCodeActionEntry = _init_l_Lean_CodeAction_instInhabitedCommandCodeActionEntry(); +lean_mark_persistent(l_Lean_CodeAction_instInhabitedCommandCodeActionEntry); +l_Lean_CodeAction_CommandCodeActions_onAnyCmd___default = _init_l_Lean_CodeAction_CommandCodeActions_onAnyCmd___default(); +lean_mark_persistent(l_Lean_CodeAction_CommandCodeActions_onAnyCmd___default); +l_Lean_CodeAction_CommandCodeActions_onCmd___default = _init_l_Lean_CodeAction_CommandCodeActions_onCmd___default(); +lean_mark_persistent(l_Lean_CodeAction_CommandCodeActions_onCmd___default); +l_Lean_CodeAction_instInhabitedCommandCodeActions___closed__1 = _init_l_Lean_CodeAction_instInhabitedCommandCodeActions___closed__1(); +lean_mark_persistent(l_Lean_CodeAction_instInhabitedCommandCodeActions___closed__1); +l_Lean_CodeAction_instInhabitedCommandCodeActions = _init_l_Lean_CodeAction_instInhabitedCommandCodeActions(); +lean_mark_persistent(l_Lean_CodeAction_instInhabitedCommandCodeActions); +l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_739____closed__1 = _init_l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_739____closed__1(); +lean_mark_persistent(l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_739____closed__1); +l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_739____closed__2 = _init_l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_739____closed__2(); +lean_mark_persistent(l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_739____closed__2); +l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_739____closed__3 = _init_l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_739____closed__3(); +lean_mark_persistent(l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_739____closed__3); +l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_739____closed__4 = _init_l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_739____closed__4(); +lean_mark_persistent(l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_739____closed__4); +l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_739____closed__5 = _init_l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_739____closed__5(); +lean_mark_persistent(l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_739____closed__5); +if (builtin) {res = l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_739_(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +l_Lean_CodeAction_cmdCodeActionExt = lean_io_result_get_value(res); +lean_mark_persistent(l_Lean_CodeAction_cmdCodeActionExt); +lean_dec_ref(res); +}l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_981____lambda__1___closed__1 = _init_l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_981____lambda__1___closed__1(); +lean_mark_persistent(l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_981____lambda__1___closed__1); +l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_981____lambda__2___closed__1 = _init_l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_981____lambda__2___closed__1(); +lean_mark_persistent(l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_981____lambda__2___closed__1); +l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_981____lambda__2___closed__2 = _init_l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_981____lambda__2___closed__2(); +lean_mark_persistent(l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_981____lambda__2___closed__2); +l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_981____lambda__3___closed__1 = _init_l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_981____lambda__3___closed__1(); +lean_mark_persistent(l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_981____lambda__3___closed__1); +l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_981____lambda__3___closed__2 = _init_l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_981____lambda__3___closed__2(); +lean_mark_persistent(l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_981____lambda__3___closed__2); +l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_981____closed__1 = _init_l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_981____closed__1(); +lean_mark_persistent(l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_981____closed__1); +l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_981____closed__2 = _init_l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_981____closed__2(); +lean_mark_persistent(l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_981____closed__2); +l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_981____closed__3 = _init_l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_981____closed__3(); +lean_mark_persistent(l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_981____closed__3); +l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_981____closed__4 = _init_l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_981____closed__4(); +lean_mark_persistent(l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_981____closed__4); +l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_981____closed__5 = _init_l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_981____closed__5(); +lean_mark_persistent(l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_981____closed__5); +l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_981____closed__6 = _init_l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_981____closed__6(); +lean_mark_persistent(l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_981____closed__6); +if (builtin) {res = l_Lean_CodeAction_initFn____x40_Lean_Server_CodeActions_Attr___hyg_981_(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +}return lean_io_result_mk_ok(lean_box(0)); +} +#ifdef __cplusplus +} +#endif diff --git a/stage0/stdlib/Lean/Server/CodeActions/Basic.c b/stage0/stdlib/Lean/Server/CodeActions/Basic.c new file mode 100644 index 0000000000..0dae2c69d4 --- /dev/null +++ b/stage0/stdlib/Lean/Server/CodeActions/Basic.c @@ -0,0 +1,5540 @@ +// Lean compiler output +// Module: Lean.Server.CodeActions.Basic +// Imports: Lean.Server.FileWorker.RequestHandling Lean.Server.InfoUtils +#include +#if defined(__clang__) +#pragma clang diagnostic ignored "-Wunused-parameter" +#pragma clang diagnostic ignored "-Wunused-label" +#elif defined(__GNUC__) && !defined(__CLANG__) +#pragma GCC diagnostic ignored "-Wunused-parameter" +#pragma GCC diagnostic ignored "-Wunused-label" +#pragma GCC diagnostic ignored "-Wunused-but-set-variable" +#endif +#ifdef __cplusplus +extern "C" { +#endif +lean_object* l_Lean_JsonNumber_fromNat(lean_object*); +static lean_object* l___private_Lean_Server_CodeActions_Basic_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions_Basic___hyg_117____closed__14; +static lean_object* l_Lean_Server_handleCodeAction___closed__3; +lean_object* l_Lean_Expr_const___override(lean_object*, lean_object*); +static lean_object* l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____closed__3; +static lean_object* l___private_Lean_Server_CodeActions_Basic_0__Lean_Server_toJsonCodeActionResolveData____x40_Lean_Server_CodeActions_Basic___hyg_57____closed__3; +static lean_object* l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____closed__19; +LEAN_EXPORT lean_object* l_Lean_Server_LazyCodeAction_lazy_x3f___default; +static lean_object* l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_1179____spec__1___lambda__5___closed__2; +lean_object* l_List_join___rarg(lean_object*); +LEAN_EXPORT lean_object* l_liftExcept___at_Lean_Server_handleCodeActionResolve___spec__1(lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Server_instCodeActionProviderInhabited___lambda__2___closed__1; +LEAN_EXPORT lean_object* l_Lean_Server_handleCodeAction___lambda__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_435____lambda__2___boxed(lean_object*); +lean_object* l_Lean_evalConstCheck___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_1179____spec__1___lambda__4(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Json_compress(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_435____lambda__1(lean_object*, lean_object*); +lean_object* lean_mk_empty_array_with_capacity(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Server_handleCodeActionResolve___lambda__1(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_1509____spec__1(lean_object*, lean_object*, lean_object*); +static lean_object* l___private_Lean_Server_CodeActions_Basic_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions_Basic___hyg_117____closed__6; +LEAN_EXPORT lean_object* l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_1179____spec__1___lambda__3(lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Server_handleCodeActionResolve___lambda__2___closed__1; +static lean_object* l_Lean_Server_handleCodeActionResolve___lambda__2___closed__3; +LEAN_EXPORT lean_object* l_Lean_throwError___at_Lean_Server_handleCodeAction___spec__4___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Json_mkObj(lean_object*); +static lean_object* l_Lean_Server_CodeAction_getFileSource_x21___closed__2; +lean_object* l_Lean_ConstantInfo_type(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Server_instFromJsonCodeActionResolveData; +LEAN_EXPORT lean_object* l_Lean_Server_handleCodeAction___lambda__5(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Server_handleCodeAction___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_mkAppB(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Data_Lsp_CodeActions_0__Lean_Lsp_fromJsonCodeAction____x40_Lean_Data_Lsp_CodeActions___hyg_1186_(lean_object*); +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Server_handleCodeAction___spec__5(size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_1179____spec__1___lambda__4___closed__1; +static lean_object* l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____closed__26; +lean_object* l_Lean_Name_toString(lean_object*, uint8_t); +static lean_object* l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____closed__25; +static lean_object* l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_1509____spec__1___lambda__2___closed__2; +LEAN_EXPORT lean_object* l_Lean_Server_handleCodeAction___lambda__1___boxed(lean_object*, lean_object*); +static lean_object* l___private_Lean_Server_CodeActions_Basic_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions_Basic___hyg_117____closed__13; +lean_object* lean_array_push(lean_object*, lean_object*); +static lean_object* l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_1179____spec__1___lambda__5___closed__1; +static lean_object* l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____closed__22; +LEAN_EXPORT lean_object* l_Lean_evalConstCheck___at_Lean_Server_handleCodeAction___spec__2___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_435____closed__5; +static lean_object* l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____closed__10; +uint8_t lean_usize_dec_eq(size_t, size_t); +LEAN_EXPORT lean_object* l_panic___at_Lean_Server_CodeAction_getFileSource_x21___spec__1(lean_object*); +LEAN_EXPORT uint8_t l_Lean_Server_handleCodeAction___lambda__1(lean_object*, lean_object*); +static lean_object* l___private_Lean_Server_CodeActions_Basic_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions_Basic___hyg_117____closed__15; +lean_object* l_instInhabitedReaderT___rarg___boxed(lean_object*, lean_object*); +static lean_object* l___private_Lean_Server_CodeActions_Basic_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions_Basic___hyg_117____closed__5; +lean_object* lean_array_fget(lean_object*, lean_object*); +static lean_object* l_Lean_Server_handleCodeAction___lambda__4___closed__2; +static lean_object* l___private_Lean_Server_CodeActions_Basic_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions_Basic___hyg_117____closed__18; +static lean_object* l_Lean_Server_addBuiltinCodeActionProvider___closed__1; +lean_object* l_Lean_Server_RequestM_withWaitFindSnap___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___private_Lean_Server_CodeActions_Basic_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions_Basic___hyg_117____closed__2; +LEAN_EXPORT lean_object* l_Lean_Server_instToJsonCodeActionResolveData; +static lean_object* l___private_Lean_Server_CodeActions_Basic_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions_Basic___hyg_117____closed__7; +LEAN_EXPORT lean_object* l___private_Lean_Server_CodeActions_Basic_0__Lean_Server_evalCodeActionProviderUnsafe___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Attribute_Builtin_ensureNoArgs(lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Server_instCodeActionProviderInhabited___lambda__2___closed__2; +lean_object* l_Lean_RBNode_insert___at_Lean_NameSet_insert___spec__1(lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Server_handleCodeActionResolve___lambda__2___closed__2; +LEAN_EXPORT lean_object* l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_1179____spec__4___boxed(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____lambda__6(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Server_handleCodeAction___closed__1; +LEAN_EXPORT lean_object* l_Lean_Server_handleCodeActionResolve___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Server_parseRequestParams___at_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_1179____spec__2___closed__2; +extern lean_object* l_Lean_Server_requestHandlers; +LEAN_EXPORT lean_object* l_Lean_Json_getObjValAs_x3f___at___private_Lean_Server_CodeActions_Basic_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions_Basic___hyg_117____spec__1___boxed(lean_object*, lean_object*); +lean_object* l_Lean_stringToMessageData(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Server_handleCodeActionResolve(lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____closed__21; +LEAN_EXPORT lean_object* l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_435_(lean_object*); +static lean_object* l___private_Lean_Server_CodeActions_Basic_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions_Basic___hyg_117____closed__4; +lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Elab_Term_Quotation_withNewLocals___spec__1(lean_object*, size_t, size_t, lean_object*); +static lean_object* l_Lean_Server_instCodeActionProviderInhabited___closed__1; +static lean_object* l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____closed__15; +static lean_object* l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_1179____closed__1; +LEAN_EXPORT lean_object* l_Lean_Server_instCodeActionProviderInhabited___lambda__1___boxed(lean_object*); +LEAN_EXPORT lean_object* l_Lean_RBNode_find___at_Lean_Server_handleCodeActionResolve___spec__2___boxed(lean_object*, lean_object*); +static lean_object* l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_1509____spec__1___lambda__2___closed__1; +static lean_object* l_Lean_Server_handleCodeActionResolve___closed__1; +LEAN_EXPORT lean_object* l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____lambda__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____closed__9; +static lean_object* l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_1179____spec__1___closed__1; +LEAN_EXPORT lean_object* l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_1509____spec__1___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Server_CodeAction_getFileSource_x21___closed__3; +LEAN_EXPORT lean_object* l___private_Lean_Server_CodeActions_Basic_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions_Basic___hyg_117____boxed(lean_object*); +static lean_object* l___private_Lean_Server_CodeActions_Basic_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions_Basic___hyg_117____closed__9; +lean_object* l_Lean_initializing(lean_object*); +extern lean_object* l_Lean_NameSet_instInhabitedNameSet; +LEAN_EXPORT lean_object* l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_1509____spec__1___lambda__4(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_Server_instFileSourceCodeAction(lean_object*); +static lean_object* l_Lean_Server_CodeAction_getFileSource_x21___closed__4; +size_t lean_usize_of_nat(lean_object*); +extern lean_object* l_Lean_Server_instInhabitedRequestError; +static lean_object* l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____closed__13; +lean_object* l___private_Lean_Data_Lsp_CodeActions_0__Lean_Lsp_toJsonCodeAction____x40_Lean_Data_Lsp_CodeActions___hyg_1091_(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_435____lambda__2(lean_object*); +lean_object* l_Lean_FileMap_lspPosToUtf8Pos(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_mapIdxM_map___at_Lean_Server_handleCodeAction___spec__9(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_Server_instFromJsonCodeActionResolveData___closed__1; +lean_object* lean_st_ref_take(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Server_handleCodeActionResolve___lambda__1___boxed(lean_object*, lean_object*, lean_object*); +lean_object* l_EStateM_instInhabitedEStateM___rarg(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_liftExcept___at_Lean_Server_handleCodeActionResolve___spec__1___boxed(lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_1179____closed__2; +lean_object* l_Lean_declareBuiltin(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___private_Lean_Server_CodeActions_Basic_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions_Basic___hyg_117____closed__19; +lean_object* l_Array_zip___rarg(lean_object*, lean_object*); +static lean_object* l___private_Lean_Server_CodeActions_Basic_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions_Basic___hyg_117____closed__3; +static lean_object* l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____closed__6; +extern lean_object* l_String_instInhabitedString; +static lean_object* l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____closed__5; +static lean_object* l_Lean_Server_instCodeActionProviderInhabited___lambda__1___closed__1; +static lean_object* l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____lambda__2___closed__1; +static lean_object* l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_435____closed__3; +static lean_object* l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____closed__16; +lean_object* l_Lean_PersistentEnvExtension_addEntry___rarg(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Json_getObjValD(lean_object*, lean_object*); +static lean_object* l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____closed__8; +static lean_object* l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____lambda__2___closed__4; +LEAN_EXPORT lean_object* l_Lean_throwError___at_Lean_Server_handleCodeAction___spec__4(lean_object*); +static lean_object* l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_1509____spec__1___lambda__3___closed__1; +lean_object* l_Except_map___rarg(lean_object*, lean_object*); +lean_object* l_Lean_setEnv___at_Lean_registerParametricAttribute___spec__3(lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_liftExcept___at_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_1179____spec__3(lean_object*, lean_object*, lean_object*); +extern lean_object* l_Lean_Server_RequestError_fileChanged; +static lean_object* l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____lambda__3___closed__1; +LEAN_EXPORT lean_object* l_Lean_RBNode_find___at_Lean_Server_handleCodeActionResolve___spec__2(lean_object*, lean_object*); +lean_object* lean_st_ref_get(lean_object*, lean_object*); +static lean_object* l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____closed__18; +lean_object* l_Lean_throwError___at_Lean_registerTagAttribute___spec__1(lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Server_instCodeActionProviderInhabited___lambda__1(lean_object*); +lean_object* lean_st_mk_ref(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_1509_(lean_object*); +lean_object* l_Lean_addMessageContextPartial___at_Lean_Core_instAddMessageContextCoreM___spec__1(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Name_num___override(lean_object*, lean_object*); +lean_object* l_Lean_Json_getObjValAs_x3f___at___private_Lean_Data_Lsp_Basic_0__Lean_Lsp_fromJsonPosition____x40_Lean_Data_Lsp_Basic___hyg_463____spec__1(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Server_handleCodeAction(lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____closed__17; +static lean_object* l___private_Lean_Server_CodeActions_Basic_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions_Basic___hyg_117____closed__8; +static lean_object* l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_1179____spec__1___lambda__4___closed__2; +lean_object* l_Lean_PersistentHashMap_insert___at_Lean_Server_registerLspRequestHandler___spec__2(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_ofExcept___at_Lean_Server_handleCodeAction___spec__3(lean_object*); +static lean_object* l_Lean_Server_instCodeActionProviderInhabited___lambda__1___closed__2; +lean_object* l_Lean_RBNode_insert___at_Lean_NameMap_insert___spec__1___rarg(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_RBTree_toArray___at_Lean_mkModuleData___spec__7(lean_object*); +static lean_object* l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____closed__12; +static lean_object* l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_1179____spec__1___lambda__3___closed__1; +static lean_object* l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____lambda__2___closed__6; +extern lean_object* l_Task_Priority_default; +lean_object* l_Lean_Name_str___override(lean_object*, lean_object*); +static lean_object* l___private_Lean_Server_CodeActions_Basic_0__Lean_Server_toJsonCodeActionResolveData____x40_Lean_Server_CodeActions_Basic___hyg_57____closed__1; +LEAN_EXPORT lean_object* l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____lambda__4(lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Server_handleCodeAction___closed__2; +static lean_object* l___private_Lean_Server_CodeActions_Basic_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions_Basic___hyg_117____closed__11; +LEAN_EXPORT lean_object* l_Lean_Server_addBuiltinCodeActionProvider(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Init_Util_0__mkPanicMessageWithDecl(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_registerSimplePersistentEnvExtension___rarg(lean_object*, lean_object*); +lean_object* l_ReaderT_pure___at_Lean_Server_FileWorker_handleCompletion___spec__1___rarg___boxed(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Server_handleCodeAction___spec__10(lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_ofExcept___at_Lean_Server_handleCodeAction___spec__3___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Server_codeActionProviderExt; +LEAN_EXPORT lean_object* l_liftExcept___at_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_1179____spec__3___boxed(lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____lambda__4___closed__2; +lean_object* l_Lean_Json_getObjValAs_x3f___at___private_Lean_Data_Lsp_Extra_0__Lean_Lsp_fromJsonRpcCallParams____x40_Lean_Data_Lsp_Extra___hyg_1861____spec__1(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_ReaderT_bind___at_Lean_Server_handleCodeAction___spec__8___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Server_handleCodeActionResolve___closed__4; +LEAN_EXPORT lean_object* l_Lean_throwError___at_Lean_Server_handleCodeAction___spec__4___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____closed__20; +LEAN_EXPORT lean_object* l_Lean_Server_instCodeActionProviderInhabited___lambda__2___boxed(lean_object*); +static lean_object* l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_435____closed__1; +LEAN_EXPORT lean_object* l_Lean_Server_handleCodeAction___lambda__5___boxed(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Server_CodeActions_Basic_0__Lean_Server_builtinCodeActionProviders; +LEAN_EXPORT lean_object* l_liftExcept___at_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_1509____spec__3___boxed(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_1179____spec__1___lambda__2(lean_object*); +lean_object* l_Array_append___rarg(lean_object*, lean_object*); +static lean_object* l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_435____closed__6; +LEAN_EXPORT lean_object* l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____lambda__5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_1179____spec__4(size_t, size_t, lean_object*); +LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_435____spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_instInhabitedForAll__1___rarg(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Server_CodeActions_Basic_0__Lean_Server_evalCodeActionProviderUnsafe(lean_object*); +lean_object* l_Lean_Server_RequestM_readDoc___at_Lean_Server_RequestM_withWaitFindSnapAtPos___spec__1(lean_object*, lean_object*); +static lean_object* l___private_Lean_Server_CodeActions_Basic_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions_Basic___hyg_117____closed__1; +LEAN_EXPORT lean_object* l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____lambda__7___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Server_CodeActions_Basic_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions_Basic___hyg_117_(lean_object*); +static lean_object* l_Lean_Server_handleCodeActionResolve___closed__3; +static lean_object* l___private_Lean_Server_CodeActions_Basic_0__Lean_Server_toJsonCodeActionResolveData____x40_Lean_Server_CodeActions_Basic___hyg_57____closed__2; +lean_object* l_Lean_throwError___at_Lean_AttributeImpl_erase___default___spec__1(lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Server_handleCodeAction___lambda__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Json_getObjValAs_x3f___at___private_Lean_Server_CodeActions_Basic_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions_Basic___hyg_117____spec__1(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Server_handleCodeActionResolve___boxed(lean_object*, lean_object*, lean_object*); +extern lean_object* l_Lean_NameSet_empty; +static lean_object* l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____lambda__2___closed__2; +uint8_t lean_nat_dec_eq(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_RBNode_revFold___at_Lean_Server_handleCodeAction___spec__7___boxed(lean_object*, lean_object*); +static lean_object* l___private_Lean_Server_CodeActions_Basic_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions_Basic___hyg_117____closed__12; +static lean_object* l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____closed__24; +LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Server_handleCodeAction___spec__10___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +uint8_t lean_nat_dec_lt(lean_object*, lean_object*); +static lean_object* l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_1509____closed__2; +LEAN_EXPORT lean_object* l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_390_(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Server_instCoeCodeActionLazyCodeAction(lean_object*); +static lean_object* l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____lambda__2___closed__5; +LEAN_EXPORT lean_object* l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_1179_(lean_object*); +static lean_object* l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____closed__14; +LEAN_EXPORT lean_object* l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_1509____spec__1___lambda__1(lean_object*); +lean_object* l_Lean_getConstInfo___at_Lean_registerInitAttrUnsafe___spec__1(lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Server_parseRequestParams___at_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_1179____spec__2(lean_object*); +uint8_t l___private_Lean_Attributes_0__Lean_beqAttributeKind____x40_Lean_Attributes___hyg_183_(uint8_t, uint8_t); +uint8_t l_Lean_Expr_isConstOf(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_1179____spec__1___lambda__5(lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____closed__1; +static lean_object* l_Lean_Server_parseRequestParams___at_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_1179____spec__2___closed__1; +lean_object* lean_panic_fn(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_ReaderT_bind___at_Lean_Server_handleCodeAction___spec__8(lean_object*, lean_object*); +static lean_object* l_Lean_Server_handleCodeActionResolve___closed__2; +LEAN_EXPORT lean_object* l_Lean_evalConstCheck___at_Lean_Server_handleCodeAction___spec__2(lean_object*); +lean_object* lean_task_map(lean_object*, lean_object*, lean_object*, uint8_t); +lean_object* lean_nat_sub(lean_object*, lean_object*); +static lean_object* l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____closed__11; +LEAN_EXPORT lean_object* l_liftExcept___at_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_1509____spec__3(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Server_CodeActions_Basic_0__Lean_Server_evalCodeActionProviderUnsafe___at_Lean_Server_handleCodeAction___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_SimplePersistentEnvExtension_getState___rarg(lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____lambda__1___closed__3; +static lean_object* l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____lambda__2___closed__3; +lean_object* l_Lean_Environment_evalConstCheck___rarg(lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Server_instCodeActionProviderInhabited___lambda__2(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_1509____spec__1___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_1179____spec__1(lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____lambda__4___closed__1; +lean_object* l_Lean_registerBuiltinAttribute(lean_object*, lean_object*); +static lean_object* l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____lambda__1___closed__1; +LEAN_EXPORT lean_object* l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_435____lambda__3(lean_object*); +LEAN_EXPORT lean_object* l_Array_mapIdxM_map___at_Lean_Server_handleCodeAction___spec__9___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_ToExpr_0__Lean_Name_toExprAux(lean_object*); +LEAN_EXPORT lean_object* l_Lean_RBNode_revFold___at_Lean_Server_handleCodeAction___spec__7(lean_object*, lean_object*); +static lean_object* l_Lean_Server_instToJsonCodeActionResolveData___closed__1; +uint8_t l_Lean_Name_quickCmp(lean_object*, lean_object*); +static lean_object* l_Lean_Server_CodeAction_getFileSource_x21___closed__1; +size_t lean_usize_add(size_t, size_t); +LEAN_EXPORT lean_object* l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_1179____spec__1___lambda__1(lean_object*); +lean_object* l___private_Lean_Data_Lsp_CodeActions_0__Lean_Lsp_toJsonCodeActionParams____x40_Lean_Data_Lsp_CodeActions___hyg_594_(lean_object*); +static lean_object* l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____closed__4; +LEAN_EXPORT lean_object* l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____lambda__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_1179____spec__1___lambda__3___closed__2; +lean_object* lean_array_uget(lean_object*, size_t); +static lean_object* l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____closed__23; +LEAN_EXPORT lean_object* l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494_(lean_object*); +lean_object* lean_st_ref_set(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Server_handleCodeActionResolve___lambda__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Server_CodeAction_getFileSource_x21(lean_object*); +static lean_object* l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____lambda__5___closed__1; +lean_object* l_List_redLength___rarg(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____lambda__7(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Server_handleCodeAction___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___private_Lean_Server_CodeActions_Basic_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions_Basic___hyg_117____closed__16; +LEAN_EXPORT lean_object* l_Array_mapIdxM_map___at_Lean_Server_handleCodeAction___spec__9___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Data_Lsp_CodeActions_0__Lean_Lsp_fromJsonCodeActionParams____x40_Lean_Data_Lsp_CodeActions___hyg_377_(lean_object*); +lean_object* lean_string_append(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_1509____spec__1___lambda__3(lean_object*, lean_object*, lean_object*, lean_object*); +uint8_t l_Lean_PersistentHashMap_contains___at_Lean_Server_registerLspRequestHandler___spec__6(lean_object*, lean_object*); +static lean_object* l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____closed__2; +LEAN_EXPORT lean_object* l_Lean_RBMap_toList___at_Lean_Server_handleCodeAction___spec__6(lean_object*); +static lean_object* l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_435____closed__2; +lean_object* lean_array_get_size(lean_object*); +static lean_object* l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_435____closed__4; +LEAN_EXPORT lean_object* l_Array_mapIdxM_map___at_Lean_Server_handleCodeAction___spec__9___boxed(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*); +LEAN_EXPORT lean_object* l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____lambda__3(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___private_Lean_Server_CodeActions_Basic_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions_Basic___hyg_117____closed__17; +uint8_t lean_usize_dec_lt(size_t, size_t); +lean_object* l_Lean_Server_RequestM_runCoreM___rarg(lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Server_handleCodeAction___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_1179____spec__1___lambda__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* lean_nat_add(lean_object*, lean_object*); +lean_object* l_Lean_Server_RequestError_ofIoError(lean_object*); +static lean_object* l___private_Lean_Server_CodeActions_Basic_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions_Basic___hyg_117____closed__20; +LEAN_EXPORT lean_object* l_Lean_Server_instCodeActionProviderInhabited; +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Server_handleCodeAction___spec__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___private_Lean_Server_CodeActions_Basic_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions_Basic___hyg_117____closed__10; +static lean_object* l_Lean_Server_handleCodeAction___lambda__4___closed__1; +lean_object* lean_array_uset(lean_object*, size_t, lean_object*); +lean_object* l_Lean_MessageData_ofName(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____closed__7; +LEAN_EXPORT lean_object* l_Lean_ofExcept___at_Lean_Server_handleCodeAction___spec__3___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Server_parseRequestParams___at_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_1509____spec__2(lean_object*); +lean_object* l_Lean_Server_Snapshots_Snapshot_endPos(lean_object*); +static lean_object* l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____lambda__1___closed__2; +static lean_object* l_Lean_Server_instCodeActionProviderInhabited___closed__2; +LEAN_EXPORT lean_object* l___private_Lean_Server_CodeActions_Basic_0__Lean_Server_toJsonCodeActionResolveData____x40_Lean_Server_CodeActions_Basic___hyg_57_(lean_object*); +static lean_object* l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____lambda__3___closed__2; +lean_object* l_Nat_repr(lean_object*); +lean_object* l_List_toArrayAux___rarg(lean_object*, lean_object*); +lean_object* l_Array_qsort_sort___at_Lean_mkTagDeclarationExtension___spec__1(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_435____spec__1(lean_object*, size_t, size_t, lean_object*); +static lean_object* l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_1509____closed__1; +static lean_object* _init_l_Lean_Server_LazyCodeAction_lazy_x3f___default() { +_start: +{ +lean_object* x_1; +x_1 = lean_box(0); +return x_1; +} +} +static lean_object* _init_l___private_Lean_Server_CodeActions_Basic_0__Lean_Server_toJsonCodeActionResolveData____x40_Lean_Server_CodeActions_Basic___hyg_57____closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("params", 6); +return x_1; +} +} +static lean_object* _init_l___private_Lean_Server_CodeActions_Basic_0__Lean_Server_toJsonCodeActionResolveData____x40_Lean_Server_CodeActions_Basic___hyg_57____closed__2() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("providerName", 12); +return x_1; +} +} +static lean_object* _init_l___private_Lean_Server_CodeActions_Basic_0__Lean_Server_toJsonCodeActionResolveData____x40_Lean_Server_CodeActions_Basic___hyg_57____closed__3() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("providerResultIndex", 19); +return x_1; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Server_CodeActions_Basic_0__Lean_Server_toJsonCodeActionResolveData____x40_Lean_Server_CodeActions_Basic___hyg_57_(lean_object* x_1) { +_start: +{ +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; uint8_t 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; +x_2 = lean_ctor_get(x_1, 0); +lean_inc(x_2); +x_3 = l___private_Lean_Data_Lsp_CodeActions_0__Lean_Lsp_toJsonCodeActionParams____x40_Lean_Data_Lsp_CodeActions___hyg_594_(x_2); +x_4 = l___private_Lean_Server_CodeActions_Basic_0__Lean_Server_toJsonCodeActionResolveData____x40_Lean_Server_CodeActions_Basic___hyg_57____closed__1; +x_5 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_5, 0, x_4); +lean_ctor_set(x_5, 1, x_3); +x_6 = lean_box(0); +x_7 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_7, 0, x_5); +lean_ctor_set(x_7, 1, x_6); +x_8 = lean_ctor_get(x_1, 1); +lean_inc(x_8); +x_9 = 1; +x_10 = l_Lean_Name_toString(x_8, x_9); +x_11 = lean_alloc_ctor(3, 1, 0); +lean_ctor_set(x_11, 0, x_10); +x_12 = l___private_Lean_Server_CodeActions_Basic_0__Lean_Server_toJsonCodeActionResolveData____x40_Lean_Server_CodeActions_Basic___hyg_57____closed__2; +x_13 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_13, 0, x_12); +lean_ctor_set(x_13, 1, x_11); +x_14 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_14, 0, x_13); +lean_ctor_set(x_14, 1, x_6); +x_15 = lean_ctor_get(x_1, 2); +lean_inc(x_15); +lean_dec(x_1); +x_16 = l_Lean_JsonNumber_fromNat(x_15); +x_17 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_17, 0, x_16); +x_18 = l___private_Lean_Server_CodeActions_Basic_0__Lean_Server_toJsonCodeActionResolveData____x40_Lean_Server_CodeActions_Basic___hyg_57____closed__3; +x_19 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_19, 0, x_18); +lean_ctor_set(x_19, 1, x_17); +x_20 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_20, 0, x_19); +lean_ctor_set(x_20, 1, x_6); +x_21 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_21, 0, x_20); +lean_ctor_set(x_21, 1, x_6); +x_22 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_22, 0, x_14); +lean_ctor_set(x_22, 1, x_21); +x_23 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_23, 0, x_7); +lean_ctor_set(x_23, 1, x_22); +x_24 = l_List_join___rarg(x_23); +x_25 = l_Lean_Json_mkObj(x_24); +return x_25; +} +} +static lean_object* _init_l_Lean_Server_instToJsonCodeActionResolveData___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l___private_Lean_Server_CodeActions_Basic_0__Lean_Server_toJsonCodeActionResolveData____x40_Lean_Server_CodeActions_Basic___hyg_57_), 1, 0); +return x_1; +} +} +static lean_object* _init_l_Lean_Server_instToJsonCodeActionResolveData() { +_start: +{ +lean_object* x_1; +x_1 = l_Lean_Server_instToJsonCodeActionResolveData___closed__1; +return x_1; +} +} +LEAN_EXPORT lean_object* l_Lean_Json_getObjValAs_x3f___at___private_Lean_Server_CodeActions_Basic_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions_Basic___hyg_117____spec__1(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; lean_object* x_4; +x_3 = l_Lean_Json_getObjValD(x_1, x_2); +x_4 = l___private_Lean_Data_Lsp_CodeActions_0__Lean_Lsp_fromJsonCodeActionParams____x40_Lean_Data_Lsp_CodeActions___hyg_377_(x_3); +lean_dec(x_3); +return x_4; +} +} +static lean_object* _init_l___private_Lean_Server_CodeActions_Basic_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions_Basic___hyg_117____closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("Lean", 4); +return x_1; +} +} +static lean_object* _init_l___private_Lean_Server_CodeActions_Basic_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions_Basic___hyg_117____closed__2() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("Server", 6); +return x_1; +} +} +static lean_object* _init_l___private_Lean_Server_CodeActions_Basic_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions_Basic___hyg_117____closed__3() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("CodeActionResolveData", 21); +return x_1; +} +} +static lean_object* _init_l___private_Lean_Server_CodeActions_Basic_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions_Basic___hyg_117____closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l___private_Lean_Server_CodeActions_Basic_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions_Basic___hyg_117____closed__1; +x_2 = l___private_Lean_Server_CodeActions_Basic_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions_Basic___hyg_117____closed__2; +x_3 = l___private_Lean_Server_CodeActions_Basic_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions_Basic___hyg_117____closed__3; +x_4 = l_Lean_Name_mkStr3(x_1, x_2, x_3); +return x_4; +} +} +static lean_object* _init_l___private_Lean_Server_CodeActions_Basic_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions_Basic___hyg_117____closed__5() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; +x_1 = l___private_Lean_Server_CodeActions_Basic_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions_Basic___hyg_117____closed__4; +x_2 = 1; +x_3 = l_Lean_Name_toString(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___private_Lean_Server_CodeActions_Basic_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions_Basic___hyg_117____closed__6() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes(".", 1); +return x_1; +} +} +static lean_object* _init_l___private_Lean_Server_CodeActions_Basic_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions_Basic___hyg_117____closed__7() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___private_Lean_Server_CodeActions_Basic_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions_Basic___hyg_117____closed__5; +x_2 = l___private_Lean_Server_CodeActions_Basic_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions_Basic___hyg_117____closed__6; +x_3 = lean_string_append(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___private_Lean_Server_CodeActions_Basic_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions_Basic___hyg_117____closed__8() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___private_Lean_Server_CodeActions_Basic_0__Lean_Server_toJsonCodeActionResolveData____x40_Lean_Server_CodeActions_Basic___hyg_57____closed__1; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___private_Lean_Server_CodeActions_Basic_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions_Basic___hyg_117____closed__9() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; +x_1 = l___private_Lean_Server_CodeActions_Basic_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions_Basic___hyg_117____closed__8; +x_2 = 1; +x_3 = l_Lean_Name_toString(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___private_Lean_Server_CodeActions_Basic_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions_Basic___hyg_117____closed__10() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___private_Lean_Server_CodeActions_Basic_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions_Basic___hyg_117____closed__7; +x_2 = l___private_Lean_Server_CodeActions_Basic_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions_Basic___hyg_117____closed__9; +x_3 = lean_string_append(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___private_Lean_Server_CodeActions_Basic_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions_Basic___hyg_117____closed__11() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes(": ", 2); +return x_1; +} +} +static lean_object* _init_l___private_Lean_Server_CodeActions_Basic_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions_Basic___hyg_117____closed__12() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___private_Lean_Server_CodeActions_Basic_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions_Basic___hyg_117____closed__10; +x_2 = l___private_Lean_Server_CodeActions_Basic_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions_Basic___hyg_117____closed__11; +x_3 = lean_string_append(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___private_Lean_Server_CodeActions_Basic_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions_Basic___hyg_117____closed__13() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___private_Lean_Server_CodeActions_Basic_0__Lean_Server_toJsonCodeActionResolveData____x40_Lean_Server_CodeActions_Basic___hyg_57____closed__2; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___private_Lean_Server_CodeActions_Basic_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions_Basic___hyg_117____closed__14() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; +x_1 = l___private_Lean_Server_CodeActions_Basic_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions_Basic___hyg_117____closed__13; +x_2 = 1; +x_3 = l_Lean_Name_toString(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___private_Lean_Server_CodeActions_Basic_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions_Basic___hyg_117____closed__15() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___private_Lean_Server_CodeActions_Basic_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions_Basic___hyg_117____closed__7; +x_2 = l___private_Lean_Server_CodeActions_Basic_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions_Basic___hyg_117____closed__14; +x_3 = lean_string_append(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___private_Lean_Server_CodeActions_Basic_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions_Basic___hyg_117____closed__16() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___private_Lean_Server_CodeActions_Basic_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions_Basic___hyg_117____closed__15; +x_2 = l___private_Lean_Server_CodeActions_Basic_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions_Basic___hyg_117____closed__11; +x_3 = lean_string_append(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___private_Lean_Server_CodeActions_Basic_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions_Basic___hyg_117____closed__17() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___private_Lean_Server_CodeActions_Basic_0__Lean_Server_toJsonCodeActionResolveData____x40_Lean_Server_CodeActions_Basic___hyg_57____closed__3; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___private_Lean_Server_CodeActions_Basic_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions_Basic___hyg_117____closed__18() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; +x_1 = l___private_Lean_Server_CodeActions_Basic_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions_Basic___hyg_117____closed__17; +x_2 = 1; +x_3 = l_Lean_Name_toString(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___private_Lean_Server_CodeActions_Basic_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions_Basic___hyg_117____closed__19() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___private_Lean_Server_CodeActions_Basic_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions_Basic___hyg_117____closed__7; +x_2 = l___private_Lean_Server_CodeActions_Basic_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions_Basic___hyg_117____closed__18; +x_3 = lean_string_append(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___private_Lean_Server_CodeActions_Basic_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions_Basic___hyg_117____closed__20() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___private_Lean_Server_CodeActions_Basic_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions_Basic___hyg_117____closed__19; +x_2 = l___private_Lean_Server_CodeActions_Basic_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions_Basic___hyg_117____closed__11; +x_3 = lean_string_append(x_1, x_2); +return x_3; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Server_CodeActions_Basic_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions_Basic___hyg_117_(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; +x_2 = l___private_Lean_Server_CodeActions_Basic_0__Lean_Server_toJsonCodeActionResolveData____x40_Lean_Server_CodeActions_Basic___hyg_57____closed__1; +x_3 = l_Lean_Json_getObjValAs_x3f___at___private_Lean_Server_CodeActions_Basic_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions_Basic___hyg_117____spec__1(x_1, x_2); +if (lean_obj_tag(x_3) == 0) +{ +uint8_t x_4; +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 = lean_ctor_get(x_3, 0); +x_6 = l___private_Lean_Server_CodeActions_Basic_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions_Basic___hyg_117____closed__12; +x_7 = lean_string_append(x_6, x_5); +lean_dec(x_5); +lean_ctor_set(x_3, 0, x_7); +return x_3; +} +else +{ +lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; +x_8 = lean_ctor_get(x_3, 0); +lean_inc(x_8); +lean_dec(x_3); +x_9 = l___private_Lean_Server_CodeActions_Basic_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions_Basic___hyg_117____closed__12; +x_10 = lean_string_append(x_9, x_8); +lean_dec(x_8); +x_11 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_11, 0, x_10); +return x_11; +} +} +else +{ +lean_object* x_12; lean_object* x_13; lean_object* x_14; +x_12 = lean_ctor_get(x_3, 0); +lean_inc(x_12); +lean_dec(x_3); +x_13 = l___private_Lean_Server_CodeActions_Basic_0__Lean_Server_toJsonCodeActionResolveData____x40_Lean_Server_CodeActions_Basic___hyg_57____closed__2; +x_14 = l_Lean_Json_getObjValAs_x3f___at___private_Lean_Data_Lsp_Extra_0__Lean_Lsp_fromJsonRpcCallParams____x40_Lean_Data_Lsp_Extra___hyg_1861____spec__1(x_1, x_13); +if (lean_obj_tag(x_14) == 0) +{ +uint8_t x_15; +lean_dec(x_12); +x_15 = !lean_is_exclusive(x_14); +if (x_15 == 0) +{ +lean_object* x_16; lean_object* x_17; lean_object* x_18; +x_16 = lean_ctor_get(x_14, 0); +x_17 = l___private_Lean_Server_CodeActions_Basic_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions_Basic___hyg_117____closed__16; +x_18 = lean_string_append(x_17, x_16); +lean_dec(x_16); +lean_ctor_set(x_14, 0, x_18); +return x_14; +} +else +{ +lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; +x_19 = lean_ctor_get(x_14, 0); +lean_inc(x_19); +lean_dec(x_14); +x_20 = l___private_Lean_Server_CodeActions_Basic_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions_Basic___hyg_117____closed__16; +x_21 = lean_string_append(x_20, x_19); +lean_dec(x_19); +x_22 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_22, 0, x_21); +return x_22; +} +} +else +{ +lean_object* x_23; lean_object* x_24; lean_object* x_25; +x_23 = lean_ctor_get(x_14, 0); +lean_inc(x_23); +lean_dec(x_14); +x_24 = l___private_Lean_Server_CodeActions_Basic_0__Lean_Server_toJsonCodeActionResolveData____x40_Lean_Server_CodeActions_Basic___hyg_57____closed__3; +x_25 = l_Lean_Json_getObjValAs_x3f___at___private_Lean_Data_Lsp_Basic_0__Lean_Lsp_fromJsonPosition____x40_Lean_Data_Lsp_Basic___hyg_463____spec__1(x_1, x_24); +if (lean_obj_tag(x_25) == 0) +{ +uint8_t x_26; +lean_dec(x_23); +lean_dec(x_12); +x_26 = !lean_is_exclusive(x_25); +if (x_26 == 0) +{ +lean_object* x_27; lean_object* x_28; lean_object* x_29; +x_27 = lean_ctor_get(x_25, 0); +x_28 = l___private_Lean_Server_CodeActions_Basic_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions_Basic___hyg_117____closed__20; +x_29 = lean_string_append(x_28, x_27); +lean_dec(x_27); +lean_ctor_set(x_25, 0, x_29); +return x_25; +} +else +{ +lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; +x_30 = lean_ctor_get(x_25, 0); +lean_inc(x_30); +lean_dec(x_25); +x_31 = l___private_Lean_Server_CodeActions_Basic_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions_Basic___hyg_117____closed__20; +x_32 = lean_string_append(x_31, x_30); +lean_dec(x_30); +x_33 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_33, 0, x_32); +return x_33; +} +} +else +{ +uint8_t x_34; +x_34 = !lean_is_exclusive(x_25); +if (x_34 == 0) +{ +lean_object* x_35; lean_object* x_36; +x_35 = lean_ctor_get(x_25, 0); +x_36 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_36, 0, x_12); +lean_ctor_set(x_36, 1, x_23); +lean_ctor_set(x_36, 2, x_35); +lean_ctor_set(x_25, 0, x_36); +return x_25; +} +else +{ +lean_object* x_37; lean_object* x_38; lean_object* x_39; +x_37 = lean_ctor_get(x_25, 0); +lean_inc(x_37); +lean_dec(x_25); +x_38 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_38, 0, x_12); +lean_ctor_set(x_38, 1, x_23); +lean_ctor_set(x_38, 2, x_37); +x_39 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_39, 0, x_38); +return x_39; +} +} +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_Json_getObjValAs_x3f___at___private_Lean_Server_CodeActions_Basic_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions_Basic___hyg_117____spec__1___boxed(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; +x_3 = l_Lean_Json_getObjValAs_x3f___at___private_Lean_Server_CodeActions_Basic_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions_Basic___hyg_117____spec__1(x_1, x_2); +lean_dec(x_2); +lean_dec(x_1); +return x_3; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Server_CodeActions_Basic_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions_Basic___hyg_117____boxed(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = l___private_Lean_Server_CodeActions_Basic_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions_Basic___hyg_117_(x_1); +lean_dec(x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Server_instFromJsonCodeActionResolveData___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l___private_Lean_Server_CodeActions_Basic_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions_Basic___hyg_117____boxed), 1, 0); +return x_1; +} +} +static lean_object* _init_l_Lean_Server_instFromJsonCodeActionResolveData() { +_start: +{ +lean_object* x_1; +x_1 = l_Lean_Server_instFromJsonCodeActionResolveData___closed__1; +return x_1; +} +} +LEAN_EXPORT lean_object* l_panic___at_Lean_Server_CodeAction_getFileSource_x21___spec__1(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; +x_2 = l_String_instInhabitedString; +x_3 = lean_panic_fn(x_2, x_1); +return x_3; +} +} +static lean_object* _init_l_Lean_Server_CodeAction_getFileSource_x21___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("no data param on code action ", 29); +return x_1; +} +} +static lean_object* _init_l_Lean_Server_CodeAction_getFileSource_x21___closed__2() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("", 0); +return x_1; +} +} +static lean_object* _init_l_Lean_Server_CodeAction_getFileSource_x21___closed__3() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("Lean.Server.CodeActions.Basic", 29); +return x_1; +} +} +static lean_object* _init_l_Lean_Server_CodeAction_getFileSource_x21___closed__4() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("Lean.Server.CodeAction.getFileSource!", 37); +return x_1; +} +} +LEAN_EXPORT lean_object* l_Lean_Server_CodeAction_getFileSource_x21(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = lean_ctor_get(x_1, 9); +lean_inc(x_2); +if (lean_obj_tag(x_2) == 0) +{ +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; +x_3 = lean_ctor_get(x_1, 2); +lean_inc(x_3); +lean_dec(x_1); +x_4 = l_Lean_Server_CodeAction_getFileSource_x21___closed__1; +x_5 = lean_string_append(x_4, x_3); +lean_dec(x_3); +x_6 = l_Lean_Server_CodeAction_getFileSource_x21___closed__2; +x_7 = lean_string_append(x_5, x_6); +x_8 = l_Lean_Server_CodeAction_getFileSource_x21___closed__3; +x_9 = l_Lean_Server_CodeAction_getFileSource_x21___closed__4; +x_10 = lean_unsigned_to_nat(44u); +x_11 = lean_unsigned_to_nat(22u); +x_12 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_8, x_9, x_10, x_11, x_7); +lean_dec(x_7); +x_13 = l_panic___at_Lean_Server_CodeAction_getFileSource_x21___spec__1(x_12); +return x_13; +} +else +{ +lean_object* x_14; lean_object* x_15; +lean_dec(x_1); +x_14 = lean_ctor_get(x_2, 0); +lean_inc(x_14); +lean_dec(x_2); +x_15 = l___private_Lean_Server_CodeActions_Basic_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions_Basic___hyg_117_(x_14); +lean_dec(x_14); +if (lean_obj_tag(x_15) == 0) +{ +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; +x_16 = lean_ctor_get(x_15, 0); +lean_inc(x_16); +lean_dec(x_15); +x_17 = l_Lean_Server_CodeAction_getFileSource_x21___closed__3; +x_18 = l_Lean_Server_CodeAction_getFileSource_x21___closed__4; +x_19 = lean_unsigned_to_nat(44u); +x_20 = lean_unsigned_to_nat(22u); +x_21 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_17, x_18, x_19, x_20, x_16); +lean_dec(x_16); +x_22 = l_panic___at_Lean_Server_CodeAction_getFileSource_x21___spec__1(x_21); +return x_22; +} +else +{ +lean_object* x_23; lean_object* x_24; lean_object* x_25; +x_23 = lean_ctor_get(x_15, 0); +lean_inc(x_23); +lean_dec(x_15); +x_24 = lean_ctor_get(x_23, 0); +lean_inc(x_24); +lean_dec(x_23); +x_25 = lean_ctor_get(x_24, 2); +lean_inc(x_25); +lean_dec(x_24); +return x_25; +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_Server_instFileSourceCodeAction(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = l_Lean_Server_CodeAction_getFileSource_x21(x_1); +return x_2; +} +} +LEAN_EXPORT lean_object* l_Lean_Server_instCoeCodeActionLazyCodeAction(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; +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 lean_object* _init_l_Lean_Server_instCodeActionProviderInhabited___lambda__1___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Server_instInhabitedRequestError; +x_2 = lean_alloc_closure((void*)(l_EStateM_instInhabitedEStateM___rarg), 2, 1); +lean_closure_set(x_2, 0, x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Server_instCodeActionProviderInhabited___lambda__1___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Server_instCodeActionProviderInhabited___lambda__1___closed__1; +x_2 = lean_alloc_closure((void*)(l_instInhabitedReaderT___rarg___boxed), 2, 1); +lean_closure_set(x_2, 0, x_1); +return x_2; +} +} +LEAN_EXPORT lean_object* l_Lean_Server_instCodeActionProviderInhabited___lambda__1(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = l_Lean_Server_instCodeActionProviderInhabited___lambda__1___closed__2; +return x_2; +} +} +static lean_object* _init_l_Lean_Server_instCodeActionProviderInhabited___lambda__2___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Server_instCodeActionProviderInhabited___lambda__1___boxed), 1, 0); +return x_1; +} +} +static lean_object* _init_l_Lean_Server_instCodeActionProviderInhabited___lambda__2___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Server_instCodeActionProviderInhabited___lambda__2___closed__1; +x_2 = lean_alloc_closure((void*)(l_instInhabitedForAll__1___rarg), 2, 1); +lean_closure_set(x_2, 0, x_1); +return x_2; +} +} +LEAN_EXPORT lean_object* l_Lean_Server_instCodeActionProviderInhabited___lambda__2(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = l_Lean_Server_instCodeActionProviderInhabited___lambda__2___closed__2; +return x_2; +} +} +static lean_object* _init_l_Lean_Server_instCodeActionProviderInhabited___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Server_instCodeActionProviderInhabited___lambda__2___boxed), 1, 0); +return x_1; +} +} +static lean_object* _init_l_Lean_Server_instCodeActionProviderInhabited___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Server_instCodeActionProviderInhabited___closed__1; +x_2 = lean_alloc_closure((void*)(l_instInhabitedForAll__1___rarg), 2, 1); +lean_closure_set(x_2, 0, x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Server_instCodeActionProviderInhabited() { +_start: +{ +lean_object* x_1; +x_1 = l_Lean_Server_instCodeActionProviderInhabited___closed__2; +return x_1; +} +} +LEAN_EXPORT lean_object* l_Lean_Server_instCodeActionProviderInhabited___lambda__1___boxed(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = l_Lean_Server_instCodeActionProviderInhabited___lambda__1(x_1); +lean_dec(x_1); +return x_2; +} +} +LEAN_EXPORT lean_object* l_Lean_Server_instCodeActionProviderInhabited___lambda__2___boxed(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = l_Lean_Server_instCodeActionProviderInhabited___lambda__2(x_1); +lean_dec(x_1); +return x_2; +} +} +LEAN_EXPORT lean_object* l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_390_(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; uint8_t x_4; +x_2 = lean_box(0); +x_3 = lean_st_mk_ref(x_2, x_1); +x_4 = !lean_is_exclusive(x_3); +if (x_4 == 0) +{ +return x_3; +} +else +{ +lean_object* x_5; lean_object* x_6; lean_object* x_7; +x_5 = lean_ctor_get(x_3, 0); +x_6 = lean_ctor_get(x_3, 1); +lean_inc(x_6); +lean_inc(x_5); +lean_dec(x_3); +x_7 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_7, 0, x_5); +lean_ctor_set(x_7, 1, x_6); +return x_7; +} +} +} +static lean_object* _init_l_Lean_Server_addBuiltinCodeActionProvider___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = l___private_Lean_Server_CodeActions_Basic_0__Lean_Server_builtinCodeActionProviders; +return x_1; +} +} +LEAN_EXPORT lean_object* l_Lean_Server_addBuiltinCodeActionProvider(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; uint8_t x_10; +x_4 = l_Lean_Server_addBuiltinCodeActionProvider___closed__1; +x_5 = lean_st_ref_take(x_4, x_3); +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 = l_Lean_RBNode_insert___at_Lean_NameMap_insert___spec__1___rarg(x_6, x_1, x_2); +x_9 = lean_st_ref_set(x_4, x_8, x_7); +x_10 = !lean_is_exclusive(x_9); +if (x_10 == 0) +{ +return x_9; +} +else +{ +lean_object* x_11; lean_object* x_12; lean_object* x_13; +x_11 = lean_ctor_get(x_9, 0); +x_12 = lean_ctor_get(x_9, 1); +lean_inc(x_12); +lean_inc(x_11); +lean_dec(x_9); +x_13 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_13, 0, x_11); +lean_ctor_set(x_13, 1, x_12); +return x_13; +} +} +} +LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_435____spec__1(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; lean_object* x_7; lean_object* x_8; uint8_t x_9; size_t x_10; size_t x_11; +x_6 = lean_array_uget(x_1, x_2); +x_7 = lean_array_get_size(x_6); +x_8 = lean_unsigned_to_nat(0u); +x_9 = lean_nat_dec_lt(x_8, x_7); +x_10 = 1; +x_11 = lean_usize_add(x_2, x_10); +if (x_9 == 0) +{ +lean_dec(x_7); +lean_dec(x_6); +x_2 = x_11; +goto _start; +} +else +{ +uint8_t x_13; +x_13 = lean_nat_dec_le(x_7, x_7); +if (x_13 == 0) +{ +lean_dec(x_7); +lean_dec(x_6); +x_2 = x_11; +goto _start; +} +else +{ +size_t x_15; size_t x_16; lean_object* x_17; +x_15 = 0; +x_16 = lean_usize_of_nat(x_7); +lean_dec(x_7); +x_17 = l_Array_foldlMUnsafe_fold___at_Lean_Elab_Term_Quotation_withNewLocals___spec__1(x_6, x_15, x_16, x_4); +lean_dec(x_6); +x_2 = x_11; +x_4 = x_17; +goto _start; +} +} +} +else +{ +return x_4; +} +} +} +LEAN_EXPORT lean_object* l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_435____lambda__1(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; lean_object* x_4; +x_3 = lean_box(0); +x_4 = l_Lean_RBNode_insert___at_Lean_NameSet_insert___spec__1(x_1, x_2, x_3); +return x_4; +} +} +LEAN_EXPORT lean_object* l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_435____lambda__2(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; uint8_t x_4; +x_2 = lean_array_get_size(x_1); +x_3 = lean_unsigned_to_nat(0u); +x_4 = lean_nat_dec_lt(x_3, x_2); +if (x_4 == 0) +{ +lean_object* x_5; +lean_dec(x_2); +x_5 = l_Lean_NameSet_empty; +return x_5; +} +else +{ +uint8_t x_6; +x_6 = lean_nat_dec_le(x_2, x_2); +if (x_6 == 0) +{ +lean_object* x_7; +lean_dec(x_2); +x_7 = l_Lean_NameSet_empty; +return x_7; +} +else +{ +size_t x_8; size_t x_9; lean_object* x_10; lean_object* x_11; +x_8 = 0; +x_9 = lean_usize_of_nat(x_2); +lean_dec(x_2); +x_10 = l_Lean_NameSet_empty; +x_11 = l_Array_foldlMUnsafe_fold___at_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_435____spec__1(x_1, x_8, x_9, x_10); +return x_11; +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_435____lambda__3(lean_object* x_1) { +_start: +{ +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; +x_2 = l_List_redLength___rarg(x_1); +x_3 = lean_mk_empty_array_with_capacity(x_2); +lean_dec(x_2); +x_4 = l_List_toArrayAux___rarg(x_1, x_3); +x_5 = lean_array_get_size(x_4); +x_6 = lean_unsigned_to_nat(1u); +x_7 = lean_nat_sub(x_5, x_6); +lean_dec(x_5); +x_8 = lean_unsigned_to_nat(0u); +x_9 = l_Array_qsort_sort___at_Lean_mkTagDeclarationExtension___spec__1(x_4, x_8, x_7); +lean_dec(x_7); +return x_9; +} +} +static lean_object* _init_l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_435____closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("codeActionProviderExt", 21); +return x_1; +} +} +static lean_object* _init_l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_435____closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l___private_Lean_Server_CodeActions_Basic_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions_Basic___hyg_117____closed__1; +x_2 = l___private_Lean_Server_CodeActions_Basic_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions_Basic___hyg_117____closed__2; +x_3 = l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_435____closed__1; +x_4 = l_Lean_Name_mkStr3(x_1, x_2, x_3); +return x_4; +} +} +static lean_object* _init_l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_435____closed__3() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_435____lambda__1), 2, 0); +return x_1; +} +} +static lean_object* _init_l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_435____closed__4() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_435____lambda__2___boxed), 1, 0); +return x_1; +} +} +static lean_object* _init_l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_435____closed__5() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_435____lambda__3), 1, 0); +return x_1; +} +} +static lean_object* _init_l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_435____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_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_435____closed__2; +x_2 = l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_435____closed__3; +x_3 = l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_435____closed__4; +x_4 = l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_435____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); +lean_ctor_set(x_5, 2, x_3); +lean_ctor_set(x_5, 3, x_4); +return x_5; +} +} +LEAN_EXPORT lean_object* l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_435_(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; +x_2 = l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_435____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_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_435____spec__1___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_initFn____x40_Lean_Server_CodeActions_Basic___hyg_435____spec__1(x_1, x_5, x_6, x_4); +lean_dec(x_1); +return x_7; +} +} +LEAN_EXPORT lean_object* l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_435____lambda__2___boxed(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_435____lambda__2(x_1); +lean_dec(x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____lambda__1___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("addBuiltinCodeActionProvider", 28); +return x_1; +} +} +static lean_object* _init_l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____lambda__1___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l___private_Lean_Server_CodeActions_Basic_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions_Basic___hyg_117____closed__1; +x_2 = l___private_Lean_Server_CodeActions_Basic_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions_Basic___hyg_117____closed__2; +x_3 = l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____lambda__1___closed__1; +x_4 = l_Lean_Name_mkStr3(x_1, x_2, x_3); +return x_4; +} +} +static lean_object* _init_l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____lambda__1___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____lambda__1___closed__2; +x_3 = l_Lean_Expr_const___override(x_2, x_1); +return x_3; +} +} +LEAN_EXPORT lean_object* l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +_start: +{ +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; +x_6 = lean_st_ref_get(x_4, x_5); +x_7 = lean_ctor_get(x_6, 1); +lean_inc(x_7); +lean_dec(x_6); +x_8 = lean_box(0); +lean_inc(x_1); +x_9 = l_Lean_Expr_const___override(x_1, x_8); +lean_inc(x_1); +x_10 = l___private_Lean_ToExpr_0__Lean_Name_toExprAux(x_1); +x_11 = l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____lambda__1___closed__3; +x_12 = l_Lean_mkAppB(x_11, x_10, x_9); +x_13 = l_Lean_declareBuiltin(x_1, x_12, x_3, x_4, x_7); +return x_13; +} +} +static lean_object* _init_l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____lambda__2___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("CodeActionProvider", 18); +return x_1; +} +} +static lean_object* _init_l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____lambda__2___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l___private_Lean_Server_CodeActions_Basic_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions_Basic___hyg_117____closed__1; +x_2 = l___private_Lean_Server_CodeActions_Basic_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions_Basic___hyg_117____closed__2; +x_3 = l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____lambda__2___closed__1; +x_4 = l_Lean_Name_mkStr3(x_1, x_2, x_3); +return x_4; +} +} +static lean_object* _init_l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____lambda__2___closed__3() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("invalid attribute '", 19); +return x_1; +} +} +static lean_object* _init_l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____lambda__2___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____lambda__2___closed__3; +x_2 = l_Lean_stringToMessageData(x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____lambda__2___closed__5() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("', must be of type `Lean.Server.CodeActionProvider`", 51); +return x_1; +} +} +static lean_object* _init_l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____lambda__2___closed__6() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____lambda__2___closed__5; +x_2 = l_Lean_stringToMessageData(x_1); +return x_2; +} +} +LEAN_EXPORT lean_object* l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____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) { +_start: +{ +lean_object* x_7; +lean_dec(x_3); +lean_inc(x_1); +x_7 = l_Lean_getConstInfo___at_Lean_registerInitAttrUnsafe___spec__1(x_1, x_4, x_5, x_6); +if (lean_obj_tag(x_7) == 0) +{ +lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; uint8_t x_12; +x_8 = lean_ctor_get(x_7, 0); +lean_inc(x_8); +x_9 = lean_ctor_get(x_7, 1); +lean_inc(x_9); +lean_dec(x_7); +x_10 = l_Lean_ConstantInfo_type(x_8); +lean_dec(x_8); +x_11 = l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____lambda__2___closed__2; +x_12 = l_Lean_Expr_isConstOf(x_10, x_11); +lean_dec(x_10); +if (x_12 == 0) +{ +lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; uint8_t x_19; +lean_dec(x_1); +x_13 = l_Lean_MessageData_ofName(x_2); +x_14 = l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____lambda__2___closed__4; +x_15 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_15, 0, x_14); +lean_ctor_set(x_15, 1, x_13); +x_16 = l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____lambda__2___closed__6; +x_17 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_17, 0, x_15); +lean_ctor_set(x_17, 1, x_16); +x_18 = l_Lean_throwError___at_Lean_registerTagAttribute___spec__1(x_17, x_4, x_5, x_9); +lean_dec(x_5); +lean_dec(x_4); +x_19 = !lean_is_exclusive(x_18); +if (x_19 == 0) +{ +return x_18; +} +else +{ +lean_object* x_20; lean_object* x_21; lean_object* x_22; +x_20 = lean_ctor_get(x_18, 0); +x_21 = lean_ctor_get(x_18, 1); +lean_inc(x_21); +lean_inc(x_20); +lean_dec(x_18); +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; +} +} +else +{ +lean_object* x_23; lean_object* x_24; +lean_dec(x_2); +x_23 = lean_box(0); +x_24 = l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____lambda__1(x_1, x_23, x_4, x_5, x_9); +return x_24; +} +} +else +{ +uint8_t x_25; +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_2); +lean_dec(x_1); +x_25 = !lean_is_exclusive(x_7); +if (x_25 == 0) +{ +return x_7; +} +else +{ +lean_object* x_26; lean_object* x_27; lean_object* x_28; +x_26 = lean_ctor_get(x_7, 0); +x_27 = lean_ctor_get(x_7, 1); +lean_inc(x_27); +lean_inc(x_26); +lean_dec(x_7); +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_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____lambda__3___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("', must be global", 17); +return x_1; +} +} +static lean_object* _init_l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____lambda__3___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____lambda__3___closed__1; +x_2 = l_Lean_stringToMessageData(x_1); +return x_2; +} +} +LEAN_EXPORT lean_object* l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____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) { +_start: +{ +lean_object* x_8; +lean_inc(x_6); +lean_inc(x_5); +x_8 = l_Lean_Attribute_Builtin_ensureNoArgs(x_3, x_5, x_6, x_7); +if (lean_obj_tag(x_8) == 0) +{ +lean_object* x_9; uint8_t x_10; uint8_t x_11; +x_9 = lean_ctor_get(x_8, 1); +lean_inc(x_9); +lean_dec(x_8); +x_10 = 0; +x_11 = l___private_Lean_Attributes_0__Lean_beqAttributeKind____x40_Lean_Attributes___hyg_183_(x_4, x_10); +if (x_11 == 0) +{ +lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; uint8_t x_18; +lean_dec(x_2); +x_12 = l_Lean_MessageData_ofName(x_1); +x_13 = l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____lambda__2___closed__4; +x_14 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_14, 0, x_13); +lean_ctor_set(x_14, 1, x_12); +x_15 = l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____lambda__3___closed__2; +x_16 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_16, 0, x_14); +lean_ctor_set(x_16, 1, x_15); +x_17 = l_Lean_throwError___at_Lean_registerTagAttribute___spec__1(x_16, x_5, x_6, x_9); +lean_dec(x_6); +lean_dec(x_5); +x_18 = !lean_is_exclusive(x_17); +if (x_18 == 0) +{ +return x_17; +} +else +{ +lean_object* x_19; lean_object* x_20; lean_object* x_21; +x_19 = lean_ctor_get(x_17, 0); +x_20 = lean_ctor_get(x_17, 1); +lean_inc(x_20); +lean_inc(x_19); +lean_dec(x_17); +x_21 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_21, 0, x_19); +lean_ctor_set(x_21, 1, x_20); +return x_21; +} +} +else +{ +lean_object* x_22; lean_object* x_23; +x_22 = lean_box(0); +x_23 = l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____lambda__2(x_2, x_1, x_22, x_5, x_6, x_9); +return x_23; +} +} +else +{ +uint8_t x_24; +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_2); +lean_dec(x_1); +x_24 = !lean_is_exclusive(x_8); +if (x_24 == 0) +{ +return x_8; +} +else +{ +lean_object* x_25; lean_object* x_26; lean_object* x_27; +x_25 = lean_ctor_get(x_8, 0); +x_26 = lean_ctor_get(x_8, 1); +lean_inc(x_26); +lean_inc(x_25); +lean_dec(x_8); +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; +} +} +} +} +static lean_object* _init_l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____lambda__4___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("attribute cannot be erased", 26); +return x_1; +} +} +static lean_object* _init_l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____lambda__4___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____lambda__4___closed__1; +x_2 = l_Lean_stringToMessageData(x_1); +return x_2; +} +} +LEAN_EXPORT lean_object* l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____lambda__4(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; +x_5 = l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____lambda__4___closed__2; +x_6 = l_Lean_throwError___at_Lean_AttributeImpl_erase___default___spec__1(x_5, x_2, x_3, x_4); +return x_6; +} +} +static lean_object* _init_l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____lambda__5___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = l_Lean_Server_codeActionProviderExt; +return x_1; +} +} +LEAN_EXPORT lean_object* l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____lambda__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_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; +x_6 = lean_st_ref_get(x_4, x_5); +x_7 = lean_ctor_get(x_6, 0); +lean_inc(x_7); +x_8 = lean_ctor_get(x_6, 1); +lean_inc(x_8); +lean_dec(x_6); +x_9 = lean_ctor_get(x_7, 0); +lean_inc(x_9); +lean_dec(x_7); +x_10 = l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____lambda__5___closed__1; +x_11 = l_Lean_PersistentEnvExtension_addEntry___rarg(x_10, x_9, x_1); +x_12 = l_Lean_setEnv___at_Lean_registerParametricAttribute___spec__3(x_11, x_3, x_4, x_8); +return x_12; +} +} +LEAN_EXPORT lean_object* l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____lambda__6(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; +lean_dec(x_3); +lean_inc(x_1); +x_7 = l_Lean_getConstInfo___at_Lean_registerInitAttrUnsafe___spec__1(x_1, x_4, x_5, x_6); +if (lean_obj_tag(x_7) == 0) +{ +lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; uint8_t x_12; +x_8 = lean_ctor_get(x_7, 0); +lean_inc(x_8); +x_9 = lean_ctor_get(x_7, 1); +lean_inc(x_9); +lean_dec(x_7); +x_10 = l_Lean_ConstantInfo_type(x_8); +lean_dec(x_8); +x_11 = l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____lambda__2___closed__2; +x_12 = l_Lean_Expr_isConstOf(x_10, x_11); +lean_dec(x_10); +if (x_12 == 0) +{ +lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; uint8_t x_19; +lean_dec(x_1); +x_13 = l_Lean_MessageData_ofName(x_2); +x_14 = l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____lambda__2___closed__4; +x_15 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_15, 0, x_14); +lean_ctor_set(x_15, 1, x_13); +x_16 = l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____lambda__2___closed__6; +x_17 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_17, 0, x_15); +lean_ctor_set(x_17, 1, x_16); +x_18 = l_Lean_throwError___at_Lean_registerTagAttribute___spec__1(x_17, x_4, x_5, x_9); +lean_dec(x_5); +lean_dec(x_4); +x_19 = !lean_is_exclusive(x_18); +if (x_19 == 0) +{ +return x_18; +} +else +{ +lean_object* x_20; lean_object* x_21; lean_object* x_22; +x_20 = lean_ctor_get(x_18, 0); +x_21 = lean_ctor_get(x_18, 1); +lean_inc(x_21); +lean_inc(x_20); +lean_dec(x_18); +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; +} +} +else +{ +lean_object* x_23; lean_object* x_24; +lean_dec(x_2); +x_23 = lean_box(0); +x_24 = l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____lambda__5(x_1, x_23, x_4, x_5, x_9); +lean_dec(x_5); +lean_dec(x_4); +return x_24; +} +} +else +{ +uint8_t x_25; +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_2); +lean_dec(x_1); +x_25 = !lean_is_exclusive(x_7); +if (x_25 == 0) +{ +return x_7; +} +else +{ +lean_object* x_26; lean_object* x_27; lean_object* x_28; +x_26 = lean_ctor_get(x_7, 0); +x_27 = lean_ctor_get(x_7, 1); +lean_inc(x_27); +lean_inc(x_26); +lean_dec(x_7); +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; +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____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) { +_start: +{ +lean_object* x_8; +lean_inc(x_6); +lean_inc(x_5); +x_8 = l_Lean_Attribute_Builtin_ensureNoArgs(x_3, x_5, x_6, x_7); +if (lean_obj_tag(x_8) == 0) +{ +lean_object* x_9; uint8_t x_10; uint8_t x_11; +x_9 = lean_ctor_get(x_8, 1); +lean_inc(x_9); +lean_dec(x_8); +x_10 = 0; +x_11 = l___private_Lean_Attributes_0__Lean_beqAttributeKind____x40_Lean_Attributes___hyg_183_(x_4, x_10); +if (x_11 == 0) +{ +lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; uint8_t x_18; +lean_dec(x_2); +x_12 = l_Lean_MessageData_ofName(x_1); +x_13 = l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____lambda__2___closed__4; +x_14 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_14, 0, x_13); +lean_ctor_set(x_14, 1, x_12); +x_15 = l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____lambda__3___closed__2; +x_16 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_16, 0, x_14); +lean_ctor_set(x_16, 1, x_15); +x_17 = l_Lean_throwError___at_Lean_registerTagAttribute___spec__1(x_16, x_5, x_6, x_9); +lean_dec(x_6); +lean_dec(x_5); +x_18 = !lean_is_exclusive(x_17); +if (x_18 == 0) +{ +return x_17; +} +else +{ +lean_object* x_19; lean_object* x_20; lean_object* x_21; +x_19 = lean_ctor_get(x_17, 0); +x_20 = lean_ctor_get(x_17, 1); +lean_inc(x_20); +lean_inc(x_19); +lean_dec(x_17); +x_21 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_21, 0, x_19); +lean_ctor_set(x_21, 1, x_20); +return x_21; +} +} +else +{ +lean_object* x_22; lean_object* x_23; +x_22 = lean_box(0); +x_23 = l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____lambda__6(x_2, x_1, x_22, x_5, x_6, x_9); +return x_23; +} +} +else +{ +uint8_t x_24; +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_2); +lean_dec(x_1); +x_24 = !lean_is_exclusive(x_8); +if (x_24 == 0) +{ +return x_8; +} +else +{ +lean_object* x_25; lean_object* x_26; lean_object* x_27; +x_25 = lean_ctor_get(x_8, 0); +x_26 = lean_ctor_get(x_8, 1); +lean_inc(x_26); +lean_inc(x_25); +lean_dec(x_8); +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; +} +} +} +} +static lean_object* _init_l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("builtin_code_action_provider", 28); +return x_1; +} +} +static lean_object* _init_l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____closed__1; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___private_Lean_Server_CodeActions_Basic_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions_Basic___hyg_117____closed__1; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____closed__3; +x_2 = l___private_Lean_Server_CodeActions_Basic_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions_Basic___hyg_117____closed__2; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____closed__5() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("initFn", 6); +return x_1; +} +} +static lean_object* _init_l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____closed__6() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____closed__4; +x_2 = l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____closed__5; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____closed__7() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("_@", 2); +return x_1; +} +} +static lean_object* _init_l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____closed__8() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____closed__6; +x_2 = l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____closed__7; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____closed__9() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____closed__8; +x_2 = l___private_Lean_Server_CodeActions_Basic_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions_Basic___hyg_117____closed__1; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____closed__10() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____closed__9; +x_2 = l___private_Lean_Server_CodeActions_Basic_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions_Basic___hyg_117____closed__2; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____closed__11() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("CodeActions", 11); +return x_1; +} +} +static lean_object* _init_l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____closed__12() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____closed__10; +x_2 = l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____closed__11; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____closed__13() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("Basic", 5); +return x_1; +} +} +static lean_object* _init_l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____closed__14() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____closed__12; +x_2 = l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____closed__13; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____closed__15() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("_hyg", 4); +return x_1; +} +} +static lean_object* _init_l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____closed__16() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____closed__14; +x_2 = l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____closed__15; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____closed__17() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____closed__16; +x_2 = lean_unsigned_to_nat(494u); +x_3 = l_Lean_Name_num___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____closed__18() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("(builtin) ", 10); +return x_1; +} +} +static lean_object* _init_l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____closed__19() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("Use to decorate methods for suggesting code actions. This is a low-level interface for making code actions.", 107); +return x_1; +} +} +static lean_object* _init_l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____closed__20() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____closed__18; +x_2 = l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____closed__19; +x_3 = lean_string_append(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____closed__21() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; +x_1 = l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____closed__17; +x_2 = l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____closed__2; +x_3 = l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____closed__20; +x_4 = 1; +x_5 = lean_alloc_ctor(0, 3, 1); +lean_ctor_set(x_5, 0, x_1); +lean_ctor_set(x_5, 1, x_2); +lean_ctor_set(x_5, 2, x_3); +lean_ctor_set_uint8(x_5, sizeof(void*)*3, x_4); +return x_5; +} +} +static lean_object* _init_l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____closed__22() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____lambda__4___boxed), 4, 0); +return x_1; +} +} +static lean_object* _init_l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____closed__23() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("code_action_provider", 20); +return x_1; +} +} +static lean_object* _init_l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____closed__24() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____closed__23; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____closed__25() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Server_CodeAction_getFileSource_x21___closed__2; +x_2 = l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____closed__19; +x_3 = lean_string_append(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____closed__26() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; +x_1 = l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____closed__17; +x_2 = l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____closed__24; +x_3 = l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____closed__25; +x_4 = 1; +x_5 = lean_alloc_ctor(0, 3, 1); +lean_ctor_set(x_5, 0, x_1); +lean_ctor_set(x_5, 1, x_2); +lean_ctor_set(x_5, 2, x_3); +lean_ctor_set_uint8(x_5, sizeof(void*)*3, x_4); +return x_5; +} +} +LEAN_EXPORT lean_object* l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494_(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; +x_2 = l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____closed__2; +x_3 = lean_alloc_closure((void*)(l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____lambda__3___boxed), 7, 1); +lean_closure_set(x_3, 0, x_2); +x_4 = l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____closed__21; +x_5 = l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____closed__22; +x_6 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_6, 0, x_4); +lean_ctor_set(x_6, 1, x_3); +lean_ctor_set(x_6, 2, x_5); +x_7 = l_Lean_registerBuiltinAttribute(x_6, x_1); +if (lean_obj_tag(x_7) == 0) +{ +lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; +x_8 = lean_ctor_get(x_7, 1); +lean_inc(x_8); +lean_dec(x_7); +x_9 = l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____closed__24; +x_10 = lean_alloc_closure((void*)(l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____lambda__7___boxed), 7, 1); +lean_closure_set(x_10, 0, x_9); +x_11 = l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____closed__26; +x_12 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_12, 0, x_11); +lean_ctor_set(x_12, 1, x_10); +lean_ctor_set(x_12, 2, x_5); +x_13 = l_Lean_registerBuiltinAttribute(x_12, x_8); +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_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____lambda__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +_start: +{ +lean_object* x_6; +x_6 = l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____lambda__1(x_1, x_2, x_3, x_4, x_5); +lean_dec(x_2); +return x_6; +} +} +LEAN_EXPORT lean_object* l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____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) { +_start: +{ +uint8_t x_8; lean_object* x_9; +x_8 = lean_unbox(x_4); +lean_dec(x_4); +x_9 = l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____lambda__3(x_1, x_2, x_3, x_8, x_5, x_6, x_7); +return x_9; +} +} +LEAN_EXPORT lean_object* l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____lambda__4___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_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____lambda__4(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_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____lambda__5___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +_start: +{ +lean_object* x_6; +x_6 = l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____lambda__5(x_1, x_2, x_3, x_4, x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +return x_6; +} +} +LEAN_EXPORT lean_object* l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____lambda__7___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: +{ +uint8_t x_8; lean_object* x_9; +x_8 = lean_unbox(x_4); +lean_dec(x_4); +x_9 = l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____lambda__7(x_1, x_2, x_3, x_8, x_5, x_6, x_7); +return x_9; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Server_CodeActions_Basic_0__Lean_Server_evalCodeActionProviderUnsafe___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +_start: +{ +lean_object* x_6; lean_object* x_7; +x_6 = l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____lambda__2___closed__2; +x_7 = l_Lean_evalConstCheck___rarg(x_4, x_1, x_3, x_2, lean_box(0), x_6, x_5); +return x_7; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Server_CodeActions_Basic_0__Lean_Server_evalCodeActionProviderUnsafe(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = lean_alloc_closure((void*)(l___private_Lean_Server_CodeActions_Basic_0__Lean_Server_evalCodeActionProviderUnsafe___rarg), 5, 0); +return x_2; +} +} +LEAN_EXPORT lean_object* l_Lean_throwError___at_Lean_Server_handleCodeAction___spec__4___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +_start: +{ +lean_object* x_6; lean_object* x_7; uint8_t x_8; +x_6 = lean_ctor_get(x_3, 5); +x_7 = l_Lean_addMessageContextPartial___at_Lean_Core_instAddMessageContextCoreM___spec__1(x_1, x_3, x_4, x_5); +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_inc(x_6); +x_10 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_10, 0, x_6); +lean_ctor_set(x_10, 1, x_9); +lean_ctor_set_tag(x_7, 1); +lean_ctor_set(x_7, 0, x_10); +return x_7; +} +else +{ +lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; +x_11 = lean_ctor_get(x_7, 0); +x_12 = lean_ctor_get(x_7, 1); +lean_inc(x_12); +lean_inc(x_11); +lean_dec(x_7); +lean_inc(x_6); +x_13 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_13, 0, x_6); +lean_ctor_set(x_13, 1, x_11); +x_14 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_14, 0, x_13); +lean_ctor_set(x_14, 1, x_12); +return x_14; +} +} +} +LEAN_EXPORT lean_object* l_Lean_throwError___at_Lean_Server_handleCodeAction___spec__4(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = lean_alloc_closure((void*)(l_Lean_throwError___at_Lean_Server_handleCodeAction___spec__4___rarg___boxed), 5, 0); +return x_2; +} +} +LEAN_EXPORT lean_object* l_Lean_ofExcept___at_Lean_Server_handleCodeAction___spec__3___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +_start: +{ +if (lean_obj_tag(x_1) == 0) +{ +lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; +x_6 = lean_ctor_get(x_1, 0); +lean_inc(x_6); +lean_dec(x_1); +x_7 = lean_alloc_ctor(3, 1, 0); +lean_ctor_set(x_7, 0, x_6); +x_8 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_8, 0, x_7); +x_9 = l_Lean_throwError___at_Lean_Server_handleCodeAction___spec__4___rarg(x_8, x_2, x_3, x_4, x_5); +return x_9; +} +else +{ +uint8_t x_10; +x_10 = !lean_is_exclusive(x_1); +if (x_10 == 0) +{ +lean_object* x_11; +x_11 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_11, 0, x_1); +lean_ctor_set(x_11, 1, x_5); +return x_11; +} +else +{ +lean_object* x_12; lean_object* x_13; lean_object* x_14; +x_12 = lean_ctor_get(x_1, 0); +lean_inc(x_12); +lean_dec(x_1); +x_13 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_13, 0, x_12); +x_14 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_14, 0, x_13); +lean_ctor_set(x_14, 1, x_5); +return x_14; +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_ofExcept___at_Lean_Server_handleCodeAction___spec__3(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = lean_alloc_closure((void*)(l_Lean_ofExcept___at_Lean_Server_handleCodeAction___spec__3___rarg___boxed), 5, 0); +return x_2; +} +} +LEAN_EXPORT lean_object* l_Lean_evalConstCheck___at_Lean_Server_handleCodeAction___spec__2___rarg(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; lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; +x_7 = lean_st_ref_get(x_5, x_6); +x_8 = lean_ctor_get(x_7, 0); +lean_inc(x_8); +x_9 = lean_ctor_get(x_7, 1); +lean_inc(x_9); +lean_dec(x_7); +x_10 = lean_ctor_get(x_8, 0); +lean_inc(x_10); +lean_dec(x_8); +x_11 = lean_ctor_get(x_4, 2); +lean_inc(x_11); +x_12 = l_Lean_Environment_evalConstCheck___rarg(x_10, x_11, x_1, x_2); +lean_dec(x_11); +x_13 = l_Lean_ofExcept___at_Lean_Server_handleCodeAction___spec__3___rarg(x_12, x_3, x_4, x_5, x_9); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +return x_13; +} +} +LEAN_EXPORT lean_object* l_Lean_evalConstCheck___at_Lean_Server_handleCodeAction___spec__2(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = lean_alloc_closure((void*)(l_Lean_evalConstCheck___at_Lean_Server_handleCodeAction___spec__2___rarg), 6, 0); +return x_2; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Server_CodeActions_Basic_0__Lean_Server_evalCodeActionProviderUnsafe___at_Lean_Server_handleCodeAction___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +_start: +{ +lean_object* x_6; lean_object* x_7; +x_6 = l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____lambda__2___closed__2; +x_7 = l_Lean_evalConstCheck___at_Lean_Server_handleCodeAction___spec__2___rarg(x_6, x_1, x_2, x_3, x_4, x_5); +return x_7; +} +} +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Server_handleCodeAction___spec__5(size_t x_1, size_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +_start: +{ +uint8_t x_8; +x_8 = lean_usize_dec_lt(x_2, x_1); +if (x_8 == 0) +{ +lean_object* x_9; lean_object* x_10; +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +x_9 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_9, 0, x_3); +x_10 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_10, 0, x_9); +lean_ctor_set(x_10, 1, x_7); +return x_10; +} +else +{ +lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; +x_11 = lean_array_uget(x_3, x_2); +x_12 = lean_unsigned_to_nat(0u); +x_13 = lean_array_uset(x_3, x_2, x_12); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +x_14 = l___private_Lean_Server_CodeActions_Basic_0__Lean_Server_evalCodeActionProviderUnsafe___at_Lean_Server_handleCodeAction___spec__1(x_11, x_4, x_5, x_6, x_7); +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; +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_ctor_get(x_15, 0); +lean_inc(x_17); +lean_dec(x_15); +x_18 = 1; +x_19 = lean_usize_add(x_2, x_18); +x_20 = lean_array_uset(x_13, x_2, x_17); +x_2 = x_19; +x_3 = x_20; +x_7 = x_16; +goto _start; +} +else +{ +uint8_t x_22; +lean_dec(x_13); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +x_22 = !lean_is_exclusive(x_14); +if (x_22 == 0) +{ +return x_14; +} +else +{ +lean_object* x_23; lean_object* x_24; lean_object* x_25; +x_23 = lean_ctor_get(x_14, 0); +x_24 = lean_ctor_get(x_14, 1); +lean_inc(x_24); +lean_inc(x_23); +lean_dec(x_14); +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; +} +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_RBNode_revFold___at_Lean_Server_handleCodeAction___spec__7(lean_object* x_1, lean_object* x_2) { +_start: +{ +if (lean_obj_tag(x_2) == 0) +{ +return x_1; +} +else +{ +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; +x_3 = lean_ctor_get(x_2, 0); +x_4 = lean_ctor_get(x_2, 1); +x_5 = lean_ctor_get(x_2, 2); +x_6 = lean_ctor_get(x_2, 3); +x_7 = l_Lean_RBNode_revFold___at_Lean_Server_handleCodeAction___spec__7(x_1, x_6); +lean_inc(x_5); +lean_inc(x_4); +x_8 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_8, 0, x_4); +lean_ctor_set(x_8, 1, x_5); +x_9 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_9, 0, x_8); +lean_ctor_set(x_9, 1, x_7); +x_1 = x_9; +x_2 = x_3; +goto _start; +} +} +} +LEAN_EXPORT lean_object* l_Lean_RBMap_toList___at_Lean_Server_handleCodeAction___spec__6(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; +x_2 = lean_box(0); +x_3 = l_Lean_RBNode_revFold___at_Lean_Server_handleCodeAction___spec__7(x_2, x_1); +lean_dec(x_1); +return x_3; +} +} +LEAN_EXPORT lean_object* l_ReaderT_bind___at_Lean_Server_handleCodeAction___spec__8___rarg(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; +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +x_7 = lean_apply_4(x_1, x_3, x_4, x_5, x_6); +if (lean_obj_tag(x_7) == 0) +{ +lean_object* x_8; +x_8 = lean_ctor_get(x_7, 0); +lean_inc(x_8); +if (lean_obj_tag(x_8) == 0) +{ +uint8_t x_9; +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_9 = !lean_is_exclusive(x_7); +if (x_9 == 0) +{ +lean_object* x_10; uint8_t x_11; +x_10 = lean_ctor_get(x_7, 0); +lean_dec(x_10); +x_11 = !lean_is_exclusive(x_8); +if (x_11 == 0) +{ +return x_7; +} +else +{ +lean_object* x_12; lean_object* x_13; +x_12 = lean_ctor_get(x_8, 0); +lean_inc(x_12); +lean_dec(x_8); +x_13 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_13, 0, x_12); +lean_ctor_set(x_7, 0, x_13); +return x_7; +} +} +else +{ +lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; +x_14 = lean_ctor_get(x_7, 1); +lean_inc(x_14); +lean_dec(x_7); +x_15 = lean_ctor_get(x_8, 0); +lean_inc(x_15); +if (lean_is_exclusive(x_8)) { + lean_ctor_release(x_8, 0); + x_16 = x_8; +} else { + lean_dec_ref(x_8); + x_16 = lean_box(0); +} +if (lean_is_scalar(x_16)) { + x_17 = lean_alloc_ctor(0, 1, 0); +} else { + x_17 = x_16; +} +lean_ctor_set(x_17, 0, 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_14); +return x_18; +} +} +else +{ +lean_object* x_19; lean_object* x_20; lean_object* x_21; +x_19 = lean_ctor_get(x_7, 1); +lean_inc(x_19); +lean_dec(x_7); +x_20 = lean_ctor_get(x_8, 0); +lean_inc(x_20); +lean_dec(x_8); +x_21 = lean_apply_5(x_2, x_20, x_3, x_4, x_5, x_19); +return x_21; +} +} +else +{ +uint8_t x_22; +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_22 = !lean_is_exclusive(x_7); +if (x_22 == 0) +{ +return x_7; +} +else +{ +lean_object* x_23; lean_object* x_24; lean_object* x_25; +x_23 = lean_ctor_get(x_7, 0); +x_24 = lean_ctor_get(x_7, 1); +lean_inc(x_24); +lean_inc(x_23); +lean_dec(x_7); +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; +} +} +} +} +LEAN_EXPORT lean_object* l_ReaderT_bind___at_Lean_Server_handleCodeAction___spec__8(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; +x_3 = lean_alloc_closure((void*)(l_ReaderT_bind___at_Lean_Server_handleCodeAction___spec__8___rarg), 6, 0); +return x_3; +} +} +LEAN_EXPORT lean_object* l_Array_mapIdxM_map___at_Lean_Server_handleCodeAction___spec__9___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) { +_start: +{ +lean_object* x_8; lean_object* x_9; lean_object* x_10; uint8_t x_11; +x_8 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_8, 0, x_1); +lean_ctor_set(x_8, 1, x_2); +lean_ctor_set(x_8, 2, x_3); +x_9 = l___private_Lean_Server_CodeActions_Basic_0__Lean_Server_toJsonCodeActionResolveData____x40_Lean_Server_CodeActions_Basic___hyg_57_(x_8); +x_10 = lean_ctor_get(x_4, 0); +lean_inc(x_10); +lean_dec(x_4); +x_11 = !lean_is_exclusive(x_10); +if (x_11 == 0) +{ +lean_object* x_12; lean_object* x_13; lean_object* x_14; +x_12 = lean_ctor_get(x_10, 9); +lean_dec(x_12); +x_13 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_13, 0, x_9); +lean_ctor_set(x_10, 9, x_13); +x_14 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_14, 0, x_10); +lean_ctor_set(x_14, 1, x_7); +return x_14; +} +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; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; +x_15 = lean_ctor_get(x_10, 0); +x_16 = lean_ctor_get(x_10, 1); +x_17 = lean_ctor_get(x_10, 2); +x_18 = lean_ctor_get(x_10, 3); +x_19 = lean_ctor_get(x_10, 4); +x_20 = lean_ctor_get(x_10, 5); +x_21 = lean_ctor_get(x_10, 6); +x_22 = lean_ctor_get(x_10, 7); +x_23 = lean_ctor_get(x_10, 8); +lean_inc(x_23); +lean_inc(x_22); +lean_inc(x_21); +lean_inc(x_20); +lean_inc(x_19); +lean_inc(x_18); +lean_inc(x_17); +lean_inc(x_16); +lean_inc(x_15); +lean_dec(x_10); +x_24 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_24, 0, x_9); +x_25 = lean_alloc_ctor(0, 10, 0); +lean_ctor_set(x_25, 0, x_15); +lean_ctor_set(x_25, 1, x_16); +lean_ctor_set(x_25, 2, x_17); +lean_ctor_set(x_25, 3, x_18); +lean_ctor_set(x_25, 4, x_19); +lean_ctor_set(x_25, 5, x_20); +lean_ctor_set(x_25, 6, x_21); +lean_ctor_set(x_25, 7, x_22); +lean_ctor_set(x_25, 8, x_23); +lean_ctor_set(x_25, 9, x_24); +x_26 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_26, 0, x_25); +lean_ctor_set(x_26, 1, x_7); +return x_26; +} +} +} +LEAN_EXPORT lean_object* l_Array_mapIdxM_map___at_Lean_Server_handleCodeAction___spec__9(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; uint8_t x_12; +x_11 = lean_unsigned_to_nat(0u); +x_12 = lean_nat_dec_eq(x_5, x_11); +if (x_12 == 0) +{ +lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; +x_13 = lean_unsigned_to_nat(1u); +x_14 = lean_nat_sub(x_5, x_13); +lean_dec(x_5); +x_15 = lean_array_fget(x_4, x_6); +x_16 = lean_ctor_get(x_15, 1); +lean_inc(x_16); +if (lean_obj_tag(x_16) == 0) +{ +lean_object* x_17; lean_object* x_18; lean_object* x_19; +x_17 = lean_ctor_get(x_15, 0); +lean_inc(x_17); +lean_dec(x_15); +x_18 = lean_nat_add(x_6, x_13); +lean_dec(x_6); +x_19 = lean_array_push(x_8, x_17); +x_5 = x_14; +x_6 = x_18; +x_7 = lean_box(0); +x_8 = x_19; +goto _start; +} +else +{ +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_16); +x_21 = lean_box(0); +lean_inc(x_6); +lean_inc(x_2); +lean_inc(x_1); +x_22 = l_Array_mapIdxM_map___at_Lean_Server_handleCodeAction___spec__9___lambda__1(x_1, x_2, x_6, x_15, x_21, x_9, x_10); +x_23 = lean_ctor_get(x_22, 0); +lean_inc(x_23); +x_24 = lean_ctor_get(x_22, 1); +lean_inc(x_24); +lean_dec(x_22); +x_25 = lean_nat_add(x_6, x_13); +lean_dec(x_6); +x_26 = lean_array_push(x_8, x_23); +x_5 = x_14; +x_6 = x_25; +x_7 = lean_box(0); +x_8 = x_26; +x_10 = x_24; +goto _start; +} +} +else +{ +lean_object* x_28; +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_2); +lean_dec(x_1); +x_28 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_28, 0, x_8); +lean_ctor_set(x_28, 1, x_10); +return x_28; +} +} +} +LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Server_handleCodeAction___spec__10(lean_object* x_1, lean_object* x_2, lean_object* x_3, size_t x_4, size_t x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { +_start: +{ +uint8_t x_9; +x_9 = lean_usize_dec_eq(x_4, x_5); +if (x_9 == 0) +{ +lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; +x_10 = lean_array_uget(x_3, x_4); +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); +lean_inc(x_7); +lean_inc(x_2); +lean_inc(x_1); +x_13 = lean_apply_4(x_12, x_1, x_2, x_7, x_8); +if (lean_obj_tag(x_13) == 0) +{ +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; size_t x_23; size_t x_24; +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_array_get_size(x_14); +x_17 = lean_mk_empty_array_with_capacity(x_16); +x_18 = lean_unsigned_to_nat(0u); +lean_inc(x_1); +x_19 = l_Array_mapIdxM_map___at_Lean_Server_handleCodeAction___spec__9(x_1, x_11, x_14, x_14, x_16, x_18, lean_box(0), x_17, x_7, x_15); +lean_dec(x_14); +x_20 = lean_ctor_get(x_19, 0); +lean_inc(x_20); +x_21 = lean_ctor_get(x_19, 1); +lean_inc(x_21); +lean_dec(x_19); +x_22 = l_Array_append___rarg(x_6, x_20); +x_23 = 1; +x_24 = lean_usize_add(x_4, x_23); +x_4 = x_24; +x_6 = x_22; +x_8 = x_21; +goto _start; +} +else +{ +uint8_t x_26; +lean_dec(x_11); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_2); +lean_dec(x_1); +x_26 = !lean_is_exclusive(x_13); +if (x_26 == 0) +{ +return x_13; +} +else +{ +lean_object* x_27; lean_object* x_28; lean_object* x_29; +x_27 = lean_ctor_get(x_13, 0); +x_28 = lean_ctor_get(x_13, 1); +lean_inc(x_28); +lean_inc(x_27); +lean_dec(x_13); +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; +} +} +} +else +{ +lean_object* x_30; +lean_dec(x_7); +lean_dec(x_2); +lean_dec(x_1); +x_30 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_30, 0, x_6); +lean_ctor_set(x_30, 1, x_8); +return x_30; +} +} +} +LEAN_EXPORT uint8_t l_Lean_Server_handleCodeAction___lambda__1(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; uint8_t x_4; +x_3 = l_Lean_Server_Snapshots_Snapshot_endPos(x_2); +x_4 = lean_nat_dec_le(x_1, x_3); +lean_dec(x_3); +return x_4; +} +} +LEAN_EXPORT lean_object* l_Lean_Server_handleCodeAction___lambda__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +_start: +{ +lean_object* x_5; uint8_t x_6; +x_5 = lean_st_ref_get(x_3, x_4); +x_6 = !lean_is_exclusive(x_5); +if (x_6 == 0) +{ +lean_object* x_7; lean_object* x_8; lean_object* x_9; +x_7 = lean_ctor_get(x_5, 0); +x_8 = lean_ctor_get(x_7, 0); +lean_inc(x_8); +lean_dec(x_7); +x_9 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_9, 0, x_8); +lean_ctor_set(x_5, 0, x_9); +return x_5; +} +else +{ +lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; +x_10 = lean_ctor_get(x_5, 0); +x_11 = lean_ctor_get(x_5, 1); +lean_inc(x_11); +lean_inc(x_10); +lean_dec(x_5); +x_12 = lean_ctor_get(x_10, 0); +lean_inc(x_12); +lean_dec(x_10); +x_13 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_13, 0, x_12); +x_14 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_14, 0, x_13); +lean_ctor_set(x_14, 1, x_11); +return x_14; +} +} +} +LEAN_EXPORT lean_object* l_Lean_Server_handleCodeAction___lambda__3(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +_start: +{ +lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; size_t x_11; size_t x_12; lean_object* x_13; +x_6 = l_Lean_NameSet_instInhabitedNameSet; +x_7 = l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____lambda__5___closed__1; +x_8 = l_Lean_SimplePersistentEnvExtension_getState___rarg(x_6, x_7, x_1); +x_9 = l_Lean_RBTree_toArray___at_Lean_mkModuleData___spec__7(x_8); +x_10 = lean_array_get_size(x_9); +x_11 = lean_usize_of_nat(x_10); +lean_dec(x_10); +x_12 = 0; +lean_inc(x_9); +x_13 = l_Array_mapMUnsafe_map___at_Lean_Server_handleCodeAction___spec__5(x_11, x_12, x_9, x_2, x_3, x_4, x_5); +if (lean_obj_tag(x_13) == 0) +{ +lean_object* x_14; lean_object* x_15; uint8_t 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 = !lean_is_exclusive(x_14); +if (x_16 == 0) +{ +lean_object* x_17; lean_object* x_18; lean_object* x_19; uint8_t x_20; +x_17 = lean_ctor_get(x_14, 0); +x_18 = l_Lean_Server_addBuiltinCodeActionProvider___closed__1; +x_19 = lean_st_ref_get(x_18, x_15); +x_20 = !lean_is_exclusive(x_19); +if (x_20 == 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; +x_21 = lean_ctor_get(x_19, 0); +x_22 = l_Lean_RBMap_toList___at_Lean_Server_handleCodeAction___spec__6(x_21); +x_23 = l_List_redLength___rarg(x_22); +x_24 = lean_mk_empty_array_with_capacity(x_23); +lean_dec(x_23); +x_25 = l_List_toArrayAux___rarg(x_22, x_24); +x_26 = l_Array_zip___rarg(x_9, x_17); +lean_dec(x_17); +lean_dec(x_9); +x_27 = l_Array_append___rarg(x_25, x_26); +lean_ctor_set(x_14, 0, x_27); +lean_ctor_set(x_19, 0, x_14); +return x_19; +} +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_object* x_35; lean_object* x_36; +x_28 = lean_ctor_get(x_19, 0); +x_29 = lean_ctor_get(x_19, 1); +lean_inc(x_29); +lean_inc(x_28); +lean_dec(x_19); +x_30 = l_Lean_RBMap_toList___at_Lean_Server_handleCodeAction___spec__6(x_28); +x_31 = l_List_redLength___rarg(x_30); +x_32 = lean_mk_empty_array_with_capacity(x_31); +lean_dec(x_31); +x_33 = l_List_toArrayAux___rarg(x_30, x_32); +x_34 = l_Array_zip___rarg(x_9, x_17); +lean_dec(x_17); +lean_dec(x_9); +x_35 = l_Array_append___rarg(x_33, x_34); +lean_ctor_set(x_14, 0, x_35); +x_36 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_36, 0, x_14); +lean_ctor_set(x_36, 1, x_29); +return x_36; +} +} +else +{ +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; +x_37 = lean_ctor_get(x_14, 0); +lean_inc(x_37); +lean_dec(x_14); +x_38 = l_Lean_Server_addBuiltinCodeActionProvider___closed__1; +x_39 = lean_st_ref_get(x_38, x_15); +x_40 = lean_ctor_get(x_39, 0); +lean_inc(x_40); +x_41 = lean_ctor_get(x_39, 1); +lean_inc(x_41); +if (lean_is_exclusive(x_39)) { + lean_ctor_release(x_39, 0); + lean_ctor_release(x_39, 1); + x_42 = x_39; +} else { + lean_dec_ref(x_39); + x_42 = lean_box(0); +} +x_43 = l_Lean_RBMap_toList___at_Lean_Server_handleCodeAction___spec__6(x_40); +x_44 = l_List_redLength___rarg(x_43); +x_45 = lean_mk_empty_array_with_capacity(x_44); +lean_dec(x_44); +x_46 = l_List_toArrayAux___rarg(x_43, x_45); +x_47 = l_Array_zip___rarg(x_9, x_37); +lean_dec(x_37); +lean_dec(x_9); +x_48 = l_Array_append___rarg(x_46, x_47); +x_49 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_49, 0, x_48); +if (lean_is_scalar(x_42)) { + x_50 = lean_alloc_ctor(0, 2, 0); +} else { + x_50 = x_42; +} +lean_ctor_set(x_50, 0, x_49); +lean_ctor_set(x_50, 1, x_41); +return x_50; +} +} +else +{ +uint8_t x_51; +lean_dec(x_9); +x_51 = !lean_is_exclusive(x_13); +if (x_51 == 0) +{ +return x_13; +} +else +{ +lean_object* x_52; lean_object* x_53; lean_object* x_54; +x_52 = lean_ctor_get(x_13, 0); +x_53 = lean_ctor_get(x_13, 1); +lean_inc(x_53); +lean_inc(x_52); +lean_dec(x_13); +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; +} +} +} +} +static lean_object* _init_l_Lean_Server_handleCodeAction___lambda__4___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Server_handleCodeAction___lambda__2___boxed), 4, 0); +return x_1; +} +} +static lean_object* _init_l_Lean_Server_handleCodeAction___lambda__4___closed__2() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Server_handleCodeAction___lambda__3___boxed), 5, 0); +return x_1; +} +} +LEAN_EXPORT lean_object* l_Lean_Server_handleCodeAction___lambda__4(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +_start: +{ +lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; +x_6 = l_Lean_Server_handleCodeAction___lambda__4___closed__1; +x_7 = l_Lean_Server_handleCodeAction___lambda__4___closed__2; +x_8 = lean_alloc_closure((void*)(l_ReaderT_bind___at_Lean_Server_handleCodeAction___spec__8___rarg), 6, 2); +lean_closure_set(x_8, 0, x_6); +lean_closure_set(x_8, 1, x_7); +lean_inc(x_4); +lean_inc(x_3); +x_9 = l_Lean_Server_RequestM_runCoreM___rarg(x_3, x_8, x_4, x_5); +if (lean_obj_tag(x_9) == 0) +{ +uint8_t x_10; +x_10 = !lean_is_exclusive(x_9); +if (x_10 == 0) +{ +lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; uint8_t x_15; +x_11 = lean_ctor_get(x_9, 0); +x_12 = lean_ctor_get(x_9, 1); +x_13 = lean_array_get_size(x_11); +x_14 = lean_unsigned_to_nat(0u); +x_15 = lean_nat_dec_lt(x_14, x_13); +if (x_15 == 0) +{ +lean_dec(x_13); +lean_dec(x_11); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +lean_ctor_set(x_9, 0, x_1); +return x_9; +} +else +{ +uint8_t x_16; +x_16 = lean_nat_dec_le(x_13, x_13); +if (x_16 == 0) +{ +lean_dec(x_13); +lean_dec(x_11); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +lean_ctor_set(x_9, 0, x_1); +return x_9; +} +else +{ +size_t x_17; size_t x_18; lean_object* x_19; +lean_free_object(x_9); +x_17 = 0; +x_18 = lean_usize_of_nat(x_13); +lean_dec(x_13); +x_19 = l_Array_foldlMUnsafe_fold___at_Lean_Server_handleCodeAction___spec__10(x_2, x_3, x_11, x_17, x_18, x_1, x_4, x_12); +lean_dec(x_11); +return x_19; +} +} +} +else +{ +lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; uint8_t x_24; +x_20 = lean_ctor_get(x_9, 0); +x_21 = lean_ctor_get(x_9, 1); +lean_inc(x_21); +lean_inc(x_20); +lean_dec(x_9); +x_22 = lean_array_get_size(x_20); +x_23 = lean_unsigned_to_nat(0u); +x_24 = lean_nat_dec_lt(x_23, x_22); +if (x_24 == 0) +{ +lean_object* x_25; +lean_dec(x_22); +lean_dec(x_20); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_25 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_25, 0, x_1); +lean_ctor_set(x_25, 1, x_21); +return x_25; +} +else +{ +uint8_t x_26; +x_26 = lean_nat_dec_le(x_22, x_22); +if (x_26 == 0) +{ +lean_object* x_27; +lean_dec(x_22); +lean_dec(x_20); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_27 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_27, 0, x_1); +lean_ctor_set(x_27, 1, x_21); +return x_27; +} +else +{ +size_t x_28; size_t x_29; lean_object* x_30; +x_28 = 0; +x_29 = lean_usize_of_nat(x_22); +lean_dec(x_22); +x_30 = l_Array_foldlMUnsafe_fold___at_Lean_Server_handleCodeAction___spec__10(x_2, x_3, x_20, x_28, x_29, x_1, x_4, x_21); +lean_dec(x_20); +return x_30; +} +} +} +} +else +{ +uint8_t x_31; +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +x_31 = !lean_is_exclusive(x_9); +if (x_31 == 0) +{ +return x_9; +} +else +{ +lean_object* x_32; lean_object* x_33; lean_object* x_34; +x_32 = lean_ctor_get(x_9, 0); +x_33 = lean_ctor_get(x_9, 1); +lean_inc(x_33); +lean_inc(x_32); +lean_dec(x_9); +x_34 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_34, 0, x_32); +lean_ctor_set(x_34, 1, x_33); +return x_34; +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_Server_handleCodeAction___lambda__5(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; lean_object* x_4; +x_3 = l_Lean_Server_RequestError_fileChanged; +x_4 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_4, 0, x_3); +lean_ctor_set(x_4, 1, x_2); +return x_4; +} +} +static lean_object* _init_l_Lean_Server_handleCodeAction___closed__1() { +_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_Server_handleCodeAction___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Server_handleCodeAction___closed__1; +x_2 = lean_alloc_closure((void*)(l_ReaderT_pure___at_Lean_Server_FileWorker_handleCompletion___spec__1___rarg___boxed), 3, 1); +lean_closure_set(x_2, 0, x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Server_handleCodeAction___closed__3() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Server_handleCodeAction___lambda__5___boxed), 2, 0); +return x_1; +} +} +LEAN_EXPORT lean_object* l_Lean_Server_handleCodeAction(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; lean_object* x_15; lean_object* x_16; lean_object* x_17; +x_4 = l_Lean_Server_RequestM_readDoc___at_Lean_Server_RequestM_withWaitFindSnapAtPos___spec__1(x_2, x_3); +x_5 = lean_ctor_get(x_4, 0); +lean_inc(x_5); +x_6 = lean_ctor_get(x_4, 1); +lean_inc(x_6); +lean_dec(x_4); +x_7 = lean_ctor_get(x_5, 0); +lean_inc(x_7); +x_8 = lean_ctor_get(x_7, 2); +lean_inc(x_8); +lean_dec(x_7); +x_9 = lean_ctor_get(x_1, 3); +lean_inc(x_9); +x_10 = lean_ctor_get(x_9, 1); +lean_inc(x_10); +lean_dec(x_9); +x_11 = l_Lean_FileMap_lspPosToUtf8Pos(x_8, x_10); +lean_dec(x_8); +x_12 = lean_alloc_closure((void*)(l_Lean_Server_handleCodeAction___lambda__1___boxed), 2, 1); +lean_closure_set(x_12, 0, x_11); +x_13 = l_Lean_Server_handleCodeAction___closed__1; +x_14 = lean_alloc_closure((void*)(l_Lean_Server_handleCodeAction___lambda__4), 5, 2); +lean_closure_set(x_14, 0, x_13); +lean_closure_set(x_14, 1, x_1); +x_15 = l_Lean_Server_handleCodeAction___closed__2; +x_16 = l_Lean_Server_handleCodeAction___closed__3; +x_17 = l_Lean_Server_RequestM_withWaitFindSnap___rarg(x_5, x_12, x_15, x_14, x_16, x_2, x_6); +return x_17; +} +} +LEAN_EXPORT lean_object* l_Lean_throwError___at_Lean_Server_handleCodeAction___spec__4___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +_start: +{ +lean_object* x_6; +x_6 = l_Lean_throwError___at_Lean_Server_handleCodeAction___spec__4___rarg(x_1, x_2, x_3, x_4, x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +return x_6; +} +} +LEAN_EXPORT lean_object* l_Lean_ofExcept___at_Lean_Server_handleCodeAction___spec__3___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +_start: +{ +lean_object* x_6; +x_6 = l_Lean_ofExcept___at_Lean_Server_handleCodeAction___spec__3___rarg(x_1, x_2, x_3, x_4, x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +return x_6; +} +} +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Server_handleCodeAction___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) { +_start: +{ +size_t x_8; size_t x_9; lean_object* x_10; +x_8 = lean_unbox_usize(x_1); +lean_dec(x_1); +x_9 = lean_unbox_usize(x_2); +lean_dec(x_2); +x_10 = l_Array_mapMUnsafe_map___at_Lean_Server_handleCodeAction___spec__5(x_8, x_9, x_3, x_4, x_5, x_6, x_7); +return x_10; +} +} +LEAN_EXPORT lean_object* l_Lean_RBNode_revFold___at_Lean_Server_handleCodeAction___spec__7___boxed(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; +x_3 = l_Lean_RBNode_revFold___at_Lean_Server_handleCodeAction___spec__7(x_1, x_2); +lean_dec(x_2); +return x_3; +} +} +LEAN_EXPORT lean_object* l_Array_mapIdxM_map___at_Lean_Server_handleCodeAction___spec__9___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) { +_start: +{ +lean_object* x_8; +x_8 = l_Array_mapIdxM_map___at_Lean_Server_handleCodeAction___spec__9___lambda__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +lean_dec(x_6); +lean_dec(x_5); +return x_8; +} +} +LEAN_EXPORT lean_object* l_Array_mapIdxM_map___at_Lean_Server_handleCodeAction___spec__9___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_Array_mapIdxM_map___at_Lean_Server_handleCodeAction___spec__9(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_4); +lean_dec(x_3); +return x_11; +} +} +LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Server_handleCodeAction___spec__10___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) { +_start: +{ +size_t x_9; size_t x_10; lean_object* x_11; +x_9 = lean_unbox_usize(x_4); +lean_dec(x_4); +x_10 = lean_unbox_usize(x_5); +lean_dec(x_5); +x_11 = l_Array_foldlMUnsafe_fold___at_Lean_Server_handleCodeAction___spec__10(x_1, x_2, x_3, x_9, x_10, x_6, x_7, x_8); +lean_dec(x_3); +return x_11; +} +} +LEAN_EXPORT lean_object* l_Lean_Server_handleCodeAction___lambda__1___boxed(lean_object* x_1, lean_object* x_2) { +_start: +{ +uint8_t x_3; lean_object* x_4; +x_3 = l_Lean_Server_handleCodeAction___lambda__1(x_1, x_2); +lean_dec(x_2); +lean_dec(x_1); +x_4 = lean_box(x_3); +return x_4; +} +} +LEAN_EXPORT lean_object* l_Lean_Server_handleCodeAction___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_Lean_Server_handleCodeAction___lambda__2(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_handleCodeAction___lambda__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +_start: +{ +lean_object* x_6; +x_6 = l_Lean_Server_handleCodeAction___lambda__3(x_1, x_2, x_3, x_4, x_5); +lean_dec(x_1); +return x_6; +} +} +LEAN_EXPORT lean_object* l_Lean_Server_handleCodeAction___lambda__5___boxed(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; +x_3 = l_Lean_Server_handleCodeAction___lambda__5(x_1, x_2); +lean_dec(x_1); +return x_3; +} +} +static lean_object* _init_l_Lean_Server_parseRequestParams___at_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_1179____spec__2___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("Cannot parse request params: ", 29); +return x_1; +} +} +static lean_object* _init_l_Lean_Server_parseRequestParams___at_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_1179____spec__2___closed__2() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("\n", 1); +return x_1; +} +} +LEAN_EXPORT lean_object* l_Lean_Server_parseRequestParams___at_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_1179____spec__2(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = l___private_Lean_Data_Lsp_CodeActions_0__Lean_Lsp_fromJsonCodeActionParams____x40_Lean_Data_Lsp_CodeActions___hyg_377_(x_1); +if (lean_obj_tag(x_2) == 0) +{ +uint8_t x_3; +x_3 = !lean_is_exclusive(x_2); +if (x_3 == 0) +{ +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; lean_object* x_14; +x_4 = lean_ctor_get(x_2, 0); +x_5 = l_Lean_Json_compress(x_1); +x_6 = l_Lean_Server_parseRequestParams___at_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_1179____spec__2___closed__1; +x_7 = lean_string_append(x_6, x_5); +lean_dec(x_5); +x_8 = l_Lean_Server_parseRequestParams___at_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_1179____spec__2___closed__2; +x_9 = lean_string_append(x_7, x_8); +x_10 = lean_string_append(x_9, x_4); +lean_dec(x_4); +x_11 = l_Lean_Server_CodeAction_getFileSource_x21___closed__2; +x_12 = lean_string_append(x_10, x_11); +x_13 = 0; +x_14 = lean_alloc_ctor(0, 1, 1); +lean_ctor_set(x_14, 0, x_12); +lean_ctor_set_uint8(x_14, sizeof(void*)*1, x_13); +lean_ctor_set(x_2, 0, x_14); +return x_2; +} +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; lean_object* x_22; lean_object* x_23; uint8_t x_24; lean_object* x_25; lean_object* x_26; +x_15 = lean_ctor_get(x_2, 0); +lean_inc(x_15); +lean_dec(x_2); +x_16 = l_Lean_Json_compress(x_1); +x_17 = l_Lean_Server_parseRequestParams___at_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_1179____spec__2___closed__1; +x_18 = lean_string_append(x_17, x_16); +lean_dec(x_16); +x_19 = l_Lean_Server_parseRequestParams___at_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_1179____spec__2___closed__2; +x_20 = lean_string_append(x_18, x_19); +x_21 = lean_string_append(x_20, x_15); +lean_dec(x_15); +x_22 = l_Lean_Server_CodeAction_getFileSource_x21___closed__2; +x_23 = lean_string_append(x_21, x_22); +x_24 = 0; +x_25 = lean_alloc_ctor(0, 1, 1); +lean_ctor_set(x_25, 0, x_23); +lean_ctor_set_uint8(x_25, sizeof(void*)*1, x_24); +x_26 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_26, 0, x_25); +return x_26; +} +} +else +{ +uint8_t x_27; +lean_dec(x_1); +x_27 = !lean_is_exclusive(x_2); +if (x_27 == 0) +{ +return x_2; +} +else +{ +lean_object* x_28; lean_object* x_29; +x_28 = lean_ctor_get(x_2, 0); +lean_inc(x_28); +lean_dec(x_2); +x_29 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_29, 0, x_28); +return x_29; +} +} +} +} +LEAN_EXPORT lean_object* l_liftExcept___at_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_1179____spec__3(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +if (lean_obj_tag(x_1) == 0) +{ +lean_object* x_4; lean_object* x_5; +x_4 = lean_ctor_get(x_1, 0); +lean_inc(x_4); +x_5 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_5, 0, x_4); +lean_ctor_set(x_5, 1, x_3); +return x_5; +} +else +{ +lean_object* x_6; lean_object* x_7; +x_6 = lean_ctor_get(x_1, 0); +lean_inc(x_6); +x_7 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_7, 0, x_6); +lean_ctor_set(x_7, 1, x_3); +return x_7; +} +} +} +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_1179____spec__4(size_t x_1, size_t x_2, lean_object* x_3) { +_start: +{ +uint8_t x_4; +x_4 = lean_usize_dec_lt(x_2, x_1); +if (x_4 == 0) +{ +return x_3; +} +else +{ +lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; size_t x_9; size_t x_10; lean_object* x_11; +x_5 = lean_array_uget(x_3, x_2); +x_6 = lean_unsigned_to_nat(0u); +x_7 = lean_array_uset(x_3, x_2, x_6); +x_8 = l___private_Lean_Data_Lsp_CodeActions_0__Lean_Lsp_toJsonCodeAction____x40_Lean_Data_Lsp_CodeActions___hyg_1091_(x_5); +x_9 = 1; +x_10 = lean_usize_add(x_2, x_9); +x_11 = lean_array_uset(x_7, x_2, x_8); +x_2 = x_10; +x_3 = x_11; +goto _start; +} +} +} +LEAN_EXPORT lean_object* l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_1179____spec__1___lambda__1(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = l_Lean_Server_parseRequestParams___at_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_1179____spec__2(x_1); +if (lean_obj_tag(x_2) == 0) +{ +uint8_t x_3; +x_3 = !lean_is_exclusive(x_2); +if (x_3 == 0) +{ +return x_2; +} +else +{ +lean_object* x_4; lean_object* x_5; +x_4 = lean_ctor_get(x_2, 0); +lean_inc(x_4); +lean_dec(x_2); +x_5 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_5, 0, x_4); +return x_5; +} +} +else +{ +uint8_t x_6; +x_6 = !lean_is_exclusive(x_2); +if (x_6 == 0) +{ +lean_object* x_7; lean_object* x_8; +x_7 = lean_ctor_get(x_2, 0); +x_8 = lean_ctor_get(x_7, 2); +lean_inc(x_8); +lean_dec(x_7); +lean_ctor_set(x_2, 0, x_8); +return x_2; +} +else +{ +lean_object* x_9; lean_object* x_10; lean_object* x_11; +x_9 = lean_ctor_get(x_2, 0); +lean_inc(x_9); +lean_dec(x_2); +x_10 = lean_ctor_get(x_9, 2); +lean_inc(x_10); +lean_dec(x_9); +x_11 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_11, 0, x_10); +return x_11; +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_1179____spec__1___lambda__2(lean_object* x_1) { +_start: +{ +lean_object* x_2; size_t x_3; size_t x_4; lean_object* x_5; lean_object* x_6; +x_2 = lean_array_get_size(x_1); +x_3 = lean_usize_of_nat(x_2); +lean_dec(x_2); +x_4 = 0; +x_5 = l_Array_mapMUnsafe_map___at_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_1179____spec__4(x_3, x_4, x_1); +x_6 = lean_alloc_ctor(4, 1, 0); +lean_ctor_set(x_6, 0, x_5); +return x_6; +} +} +static lean_object* _init_l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_1179____spec__1___lambda__3___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_1179____spec__1___lambda__2), 1, 0); +return x_1; +} +} +static lean_object* _init_l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_1179____spec__1___lambda__3___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_1179____spec__1___lambda__3___closed__1; +x_2 = lean_alloc_closure((void*)(l_Except_map___rarg), 2, 1); +lean_closure_set(x_2, 0, x_1); +return x_2; +} +} +LEAN_EXPORT lean_object* l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_1179____spec__1___lambda__3(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; +x_5 = l_Lean_Server_parseRequestParams___at_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_1179____spec__2(x_2); +x_6 = l_liftExcept___at_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_1179____spec__3(x_5, x_3, x_4); +lean_dec(x_5); +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_6, 0); +lean_inc(x_7); +x_8 = lean_ctor_get(x_6, 1); +lean_inc(x_8); +lean_dec(x_6); +x_9 = lean_apply_3(x_1, x_7, x_3, x_8); +if (lean_obj_tag(x_9) == 0) +{ +uint8_t x_10; +x_10 = !lean_is_exclusive(x_9); +if (x_10 == 0) +{ +lean_object* x_11; lean_object* x_12; lean_object* x_13; uint8_t x_14; lean_object* x_15; +x_11 = lean_ctor_get(x_9, 0); +x_12 = l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_1179____spec__1___lambda__3___closed__2; +x_13 = l_Task_Priority_default; +x_14 = 0; +x_15 = lean_task_map(x_12, x_11, x_13, x_14); +lean_ctor_set(x_9, 0, x_15); +return x_9; +} +else +{ +lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; uint8_t x_20; lean_object* x_21; lean_object* x_22; +x_16 = lean_ctor_get(x_9, 0); +x_17 = lean_ctor_get(x_9, 1); +lean_inc(x_17); +lean_inc(x_16); +lean_dec(x_9); +x_18 = l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_1179____spec__1___lambda__3___closed__2; +x_19 = l_Task_Priority_default; +x_20 = 0; +x_21 = lean_task_map(x_18, x_16, x_19, x_20); +x_22 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_22, 0, x_21); +lean_ctor_set(x_22, 1, x_17); +return x_22; +} +} +else +{ +uint8_t x_23; +x_23 = !lean_is_exclusive(x_9); +if (x_23 == 0) +{ +return x_9; +} +else +{ +lean_object* x_24; lean_object* x_25; lean_object* x_26; +x_24 = lean_ctor_get(x_9, 0); +x_25 = lean_ctor_get(x_9, 1); +lean_inc(x_25); +lean_inc(x_24); +lean_dec(x_9); +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 +{ +uint8_t x_27; +lean_dec(x_3); +lean_dec(x_1); +x_27 = !lean_is_exclusive(x_6); +if (x_27 == 0) +{ +return x_6; +} +else +{ +lean_object* x_28; lean_object* x_29; lean_object* x_30; +x_28 = lean_ctor_get(x_6, 0); +x_29 = lean_ctor_get(x_6, 1); +lean_inc(x_29); +lean_inc(x_28); +lean_dec(x_6); +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; +} +} +} +} +static lean_object* _init_l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_1179____spec__1___lambda__4___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = l_Lean_Server_requestHandlers; +return x_1; +} +} +static lean_object* _init_l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_1179____spec__1___lambda__4___closed__2() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_1179____spec__1___lambda__1), 1, 0); +return x_1; +} +} +LEAN_EXPORT lean_object* l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_1179____spec__1___lambda__4(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; 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; +x_5 = lean_alloc_closure((void*)(l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_1179____spec__1___lambda__3), 4, 1); +lean_closure_set(x_5, 0, x_1); +x_6 = l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_1179____spec__1___lambda__4___closed__1; +x_7 = lean_st_ref_take(x_6, x_4); +x_8 = lean_ctor_get(x_7, 0); +lean_inc(x_8); +x_9 = lean_ctor_get(x_7, 1); +lean_inc(x_9); +lean_dec(x_7); +x_10 = l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_1179____spec__1___lambda__4___closed__2; +x_11 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_11, 0, x_10); +lean_ctor_set(x_11, 1, x_5); +x_12 = l_Lean_PersistentHashMap_insert___at_Lean_Server_registerLspRequestHandler___spec__2(x_8, x_2, x_11); +x_13 = lean_st_ref_set(x_6, x_12, x_9); +x_14 = !lean_is_exclusive(x_13); +if (x_14 == 0) +{ +return x_13; +} +else +{ +lean_object* x_15; lean_object* x_16; lean_object* x_17; +x_15 = lean_ctor_get(x_13, 0); +x_16 = lean_ctor_get(x_13, 1); +lean_inc(x_16); +lean_inc(x_15); +lean_dec(x_13); +x_17 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_17, 0, x_15); +lean_ctor_set(x_17, 1, x_16); +return x_17; +} +} +} +static lean_object* _init_l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_1179____spec__1___lambda__5___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("Failed to register LSP request handler for '", 44); +return x_1; +} +} +static lean_object* _init_l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_1179____spec__1___lambda__5___closed__2() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("': already registered", 21); +return x_1; +} +} +LEAN_EXPORT lean_object* l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_1179____spec__1___lambda__5(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; uint8_t x_7; +lean_dec(x_3); +x_5 = l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_1179____spec__1___lambda__4___closed__1; +x_6 = lean_st_ref_get(x_5, x_4); +x_7 = !lean_is_exclusive(x_6); +if (x_7 == 0) +{ +lean_object* x_8; lean_object* x_9; uint8_t x_10; +x_8 = lean_ctor_get(x_6, 0); +x_9 = lean_ctor_get(x_6, 1); +lean_inc(x_2); +x_10 = l_Lean_PersistentHashMap_contains___at_Lean_Server_registerLspRequestHandler___spec__6(x_8, x_2); +if (x_10 == 0) +{ +lean_object* x_11; lean_object* x_12; +lean_free_object(x_6); +x_11 = lean_box(0); +x_12 = l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_1179____spec__1___lambda__4(x_1, x_2, x_11, x_9); +return x_12; +} +else +{ +lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; +lean_dec(x_1); +x_13 = l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_1179____spec__1___lambda__5___closed__1; +x_14 = lean_string_append(x_13, x_2); +lean_dec(x_2); +x_15 = l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_1179____spec__1___lambda__5___closed__2; +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_tag(x_6, 1); +lean_ctor_set(x_6, 0, x_17); +return x_6; +} +} +else +{ +lean_object* x_18; lean_object* x_19; uint8_t x_20; +x_18 = lean_ctor_get(x_6, 0); +x_19 = lean_ctor_get(x_6, 1); +lean_inc(x_19); +lean_inc(x_18); +lean_dec(x_6); +lean_inc(x_2); +x_20 = l_Lean_PersistentHashMap_contains___at_Lean_Server_registerLspRequestHandler___spec__6(x_18, x_2); +if (x_20 == 0) +{ +lean_object* x_21; lean_object* x_22; +x_21 = lean_box(0); +x_22 = l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_1179____spec__1___lambda__4(x_1, x_2, x_21, x_19); +return x_22; +} +else +{ +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_dec(x_1); +x_23 = l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_1179____spec__1___lambda__5___closed__1; +x_24 = lean_string_append(x_23, x_2); +lean_dec(x_2); +x_25 = l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_1179____spec__1___lambda__5___closed__2; +x_26 = lean_string_append(x_24, x_25); +x_27 = lean_alloc_ctor(18, 1, 0); +lean_ctor_set(x_27, 0, x_26); +x_28 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_28, 0, x_27); +lean_ctor_set(x_28, 1, x_19); +return x_28; +} +} +} +} +static lean_object* _init_l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_1179____spec__1___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("': only possible during initialization", 38); +return x_1; +} +} +LEAN_EXPORT lean_object* l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_1179____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; +x_4 = l_Lean_initializing(x_3); +x_5 = lean_ctor_get(x_4, 0); +lean_inc(x_5); +x_6 = lean_unbox(x_5); +lean_dec(x_5); +if (x_6 == 0) +{ +uint8_t x_7; +lean_dec(x_2); +x_7 = !lean_is_exclusive(x_4); +if (x_7 == 0) +{ +lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; +x_8 = lean_ctor_get(x_4, 0); +lean_dec(x_8); +x_9 = l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_1179____spec__1___lambda__5___closed__1; +x_10 = lean_string_append(x_9, x_1); +lean_dec(x_1); +x_11 = l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_1179____spec__1___closed__1; +x_12 = lean_string_append(x_10, x_11); +x_13 = lean_alloc_ctor(18, 1, 0); +lean_ctor_set(x_13, 0, x_12); +lean_ctor_set_tag(x_4, 1); +lean_ctor_set(x_4, 0, x_13); +return x_4; +} +else +{ +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; +x_14 = lean_ctor_get(x_4, 1); +lean_inc(x_14); +lean_dec(x_4); +x_15 = l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_1179____spec__1___lambda__5___closed__1; +x_16 = lean_string_append(x_15, x_1); +lean_dec(x_1); +x_17 = l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_1179____spec__1___closed__1; +x_18 = lean_string_append(x_16, x_17); +x_19 = lean_alloc_ctor(18, 1, 0); +lean_ctor_set(x_19, 0, x_18); +x_20 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_20, 0, x_19); +lean_ctor_set(x_20, 1, x_14); +return x_20; +} +} +else +{ +lean_object* x_21; lean_object* x_22; lean_object* x_23; +x_21 = lean_ctor_get(x_4, 1); +lean_inc(x_21); +lean_dec(x_4); +x_22 = lean_box(0); +x_23 = l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_1179____spec__1___lambda__5(x_2, x_1, x_22, x_21); +return x_23; +} +} +} +static lean_object* _init_l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_1179____closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("textDocument/codeAction", 23); +return x_1; +} +} +static lean_object* _init_l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_1179____closed__2() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Server_handleCodeAction), 3, 0); +return x_1; +} +} +LEAN_EXPORT lean_object* l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_1179_(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_2 = l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_1179____closed__1; +x_3 = l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_1179____closed__2; +x_4 = l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_1179____spec__1(x_2, x_3, x_1); +return x_4; +} +} +LEAN_EXPORT lean_object* l_liftExcept___at_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_1179____spec__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +lean_object* x_4; +x_4 = l_liftExcept___at_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_1179____spec__3(x_1, x_2, x_3); +lean_dec(x_2); +lean_dec(x_1); +return x_4; +} +} +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_1179____spec__4___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +size_t x_4; size_t x_5; lean_object* x_6; +x_4 = lean_unbox_usize(x_1); +lean_dec(x_1); +x_5 = lean_unbox_usize(x_2); +lean_dec(x_2); +x_6 = l_Array_mapMUnsafe_map___at_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_1179____spec__4(x_4, x_5, x_3); +return x_6; +} +} +LEAN_EXPORT lean_object* l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_1179____spec__1___lambda__4___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_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_1179____spec__1___lambda__4(x_1, x_2, x_3, x_4); +lean_dec(x_3); +return x_5; +} +} +LEAN_EXPORT lean_object* l_liftExcept___at_Lean_Server_handleCodeActionResolve___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +if (lean_obj_tag(x_1) == 0) +{ +lean_object* x_4; lean_object* x_5; +x_4 = lean_ctor_get(x_1, 0); +lean_inc(x_4); +x_5 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_5, 0, x_4); +lean_ctor_set(x_5, 1, x_3); +return x_5; +} +else +{ +lean_object* x_6; lean_object* x_7; +x_6 = lean_ctor_get(x_1, 0); +lean_inc(x_6); +x_7 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_7, 0, x_6); +lean_ctor_set(x_7, 1, x_3); +return x_7; +} +} +} +LEAN_EXPORT lean_object* l_Lean_RBNode_find___at_Lean_Server_handleCodeActionResolve___spec__2(lean_object* x_1, lean_object* x_2) { +_start: +{ +if (lean_obj_tag(x_1) == 0) +{ +lean_object* x_3; +x_3 = lean_box(0); +return x_3; +} +else +{ +lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; uint8_t x_8; +x_4 = lean_ctor_get(x_1, 0); +x_5 = lean_ctor_get(x_1, 1); +x_6 = lean_ctor_get(x_1, 2); +x_7 = lean_ctor_get(x_1, 3); +x_8 = l_Lean_Name_quickCmp(x_2, x_5); +switch (x_8) { +case 0: +{ +x_1 = x_4; +goto _start; +} +case 1: +{ +lean_object* x_10; +lean_inc(x_6); +x_10 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_10, 0, x_6); +return x_10; +} +default: +{ +x_1 = x_7; +goto _start; +} +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_Server_handleCodeActionResolve___lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +lean_object* x_4; +x_4 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_4, 0, x_1); +lean_ctor_set(x_4, 1, x_3); +return x_4; +} +} +static lean_object* _init_l_Lean_Server_handleCodeActionResolve___lambda__2___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("Failed to resolve code action index ", 36); +return x_1; +} +} +static lean_object* _init_l_Lean_Server_handleCodeActionResolve___lambda__2___closed__2() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("Can't resolve; nothing further to resolve.", 42); +return x_1; +} +} +static lean_object* _init_l_Lean_Server_handleCodeActionResolve___lambda__2___closed__3() { +_start: +{ +uint8_t x_1; lean_object* x_2; lean_object* x_3; +x_1 = 4; +x_2 = l_Lean_Server_handleCodeActionResolve___lambda__2___closed__2; +x_3 = lean_alloc_ctor(0, 1, 1); +lean_ctor_set(x_3, 0, x_2); +lean_ctor_set_uint8(x_3, sizeof(void*)*1, x_1); +return x_3; +} +} +LEAN_EXPORT lean_object* l_Lean_Server_handleCodeActionResolve___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) { +_start: +{ +lean_object* x_7; +x_7 = lean_apply_4(x_4, x_1, x_2, x_5, x_6); +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; lean_object* x_11; lean_object* x_12; uint8_t x_13; +x_9 = lean_ctor_get(x_7, 0); +x_10 = lean_ctor_get(x_7, 1); +x_11 = lean_ctor_get(x_3, 2); +lean_inc(x_11); +lean_dec(x_3); +x_12 = lean_array_get_size(x_9); +x_13 = lean_nat_dec_lt(x_11, x_12); +lean_dec(x_12); +if (x_13 == 0) +{ +lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; uint8_t x_19; lean_object* x_20; +lean_dec(x_9); +x_14 = l_Nat_repr(x_11); +x_15 = l_Lean_Server_handleCodeActionResolve___lambda__2___closed__1; +x_16 = lean_string_append(x_15, x_14); +lean_dec(x_14); +x_17 = l___private_Lean_Server_CodeActions_Basic_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions_Basic___hyg_117____closed__6; +x_18 = lean_string_append(x_16, x_17); +x_19 = 4; +x_20 = lean_alloc_ctor(0, 1, 1); +lean_ctor_set(x_20, 0, x_18); +lean_ctor_set_uint8(x_20, sizeof(void*)*1, x_19); +lean_ctor_set_tag(x_7, 1); +lean_ctor_set(x_7, 0, x_20); +return x_7; +} +else +{ +lean_object* x_21; lean_object* x_22; +x_21 = lean_array_fget(x_9, x_11); +lean_dec(x_11); +lean_dec(x_9); +x_22 = lean_ctor_get(x_21, 1); +lean_inc(x_22); +lean_dec(x_21); +if (lean_obj_tag(x_22) == 0) +{ +lean_object* x_23; +x_23 = l_Lean_Server_handleCodeActionResolve___lambda__2___closed__3; +lean_ctor_set_tag(x_7, 1); +lean_ctor_set(x_7, 0, x_23); +return x_7; +} +else +{ +lean_object* x_24; lean_object* x_25; +lean_free_object(x_7); +x_24 = lean_ctor_get(x_22, 0); +lean_inc(x_24); +lean_dec(x_22); +x_25 = lean_apply_1(x_24, x_10); +if (lean_obj_tag(x_25) == 0) +{ +uint8_t x_26; +x_26 = !lean_is_exclusive(x_25); +if (x_26 == 0) +{ +return x_25; +} +else +{ +lean_object* x_27; lean_object* x_28; lean_object* x_29; +x_27 = lean_ctor_get(x_25, 0); +x_28 = lean_ctor_get(x_25, 1); +lean_inc(x_28); +lean_inc(x_27); +lean_dec(x_25); +x_29 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_29, 0, x_27); +lean_ctor_set(x_29, 1, x_28); +return x_29; +} +} +else +{ +uint8_t x_30; +x_30 = !lean_is_exclusive(x_25); +if (x_30 == 0) +{ +lean_object* x_31; lean_object* x_32; +x_31 = lean_ctor_get(x_25, 0); +x_32 = l_Lean_Server_RequestError_ofIoError(x_31); +lean_ctor_set(x_25, 0, x_32); +return x_25; +} +else +{ +lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; +x_33 = lean_ctor_get(x_25, 0); +x_34 = lean_ctor_get(x_25, 1); +lean_inc(x_34); +lean_inc(x_33); +lean_dec(x_25); +x_35 = l_Lean_Server_RequestError_ofIoError(x_33); +x_36 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_36, 0, x_35); +lean_ctor_set(x_36, 1, x_34); +return x_36; +} +} +} +} +} +else +{ +lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; uint8_t x_41; +x_37 = lean_ctor_get(x_7, 0); +x_38 = lean_ctor_get(x_7, 1); +lean_inc(x_38); +lean_inc(x_37); +lean_dec(x_7); +x_39 = lean_ctor_get(x_3, 2); +lean_inc(x_39); +lean_dec(x_3); +x_40 = lean_array_get_size(x_37); +x_41 = lean_nat_dec_lt(x_39, x_40); +lean_dec(x_40); +if (x_41 == 0) +{ +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_dec(x_37); +x_42 = l_Nat_repr(x_39); +x_43 = l_Lean_Server_handleCodeActionResolve___lambda__2___closed__1; +x_44 = lean_string_append(x_43, x_42); +lean_dec(x_42); +x_45 = l___private_Lean_Server_CodeActions_Basic_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions_Basic___hyg_117____closed__6; +x_46 = lean_string_append(x_44, x_45); +x_47 = 4; +x_48 = lean_alloc_ctor(0, 1, 1); +lean_ctor_set(x_48, 0, x_46); +lean_ctor_set_uint8(x_48, sizeof(void*)*1, x_47); +x_49 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_49, 0, x_48); +lean_ctor_set(x_49, 1, x_38); +return x_49; +} +else +{ +lean_object* x_50; lean_object* x_51; +x_50 = lean_array_fget(x_37, x_39); +lean_dec(x_39); +lean_dec(x_37); +x_51 = lean_ctor_get(x_50, 1); +lean_inc(x_51); +lean_dec(x_50); +if (lean_obj_tag(x_51) == 0) +{ +lean_object* x_52; lean_object* x_53; +x_52 = l_Lean_Server_handleCodeActionResolve___lambda__2___closed__3; +x_53 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_53, 0, x_52); +lean_ctor_set(x_53, 1, x_38); +return x_53; +} +else +{ +lean_object* x_54; lean_object* x_55; +x_54 = lean_ctor_get(x_51, 0); +lean_inc(x_54); +lean_dec(x_51); +x_55 = lean_apply_1(x_54, x_38); +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_55); + x_58 = lean_box(0); +} +if (lean_is_scalar(x_58)) { + x_59 = lean_alloc_ctor(0, 2, 0); +} else { + x_59 = x_58; +} +lean_ctor_set(x_59, 0, x_56); +lean_ctor_set(x_59, 1, x_57); +return x_59; +} +else +{ +lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; +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_55); + x_62 = lean_box(0); +} +x_63 = l_Lean_Server_RequestError_ofIoError(x_60); +if (lean_is_scalar(x_62)) { + x_64 = lean_alloc_ctor(1, 2, 0); +} else { + x_64 = x_62; +} +lean_ctor_set(x_64, 0, x_63); +lean_ctor_set(x_64, 1, x_61); +return x_64; +} +} +} +} +} +else +{ +uint8_t x_65; +lean_dec(x_3); +x_65 = !lean_is_exclusive(x_7); +if (x_65 == 0) +{ +return x_7; +} +else +{ +lean_object* x_66; lean_object* x_67; lean_object* x_68; +x_66 = lean_ctor_get(x_7, 0); +x_67 = lean_ctor_get(x_7, 1); +lean_inc(x_67); +lean_inc(x_66); +lean_dec(x_7); +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_EXPORT lean_object* l_Lean_Server_handleCodeActionResolve___lambda__3(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +_start: +{ +lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; +x_6 = l_Lean_Server_addBuiltinCodeActionProvider___closed__1; +x_7 = lean_st_ref_get(x_6, x_5); +x_8 = lean_ctor_get(x_7, 0); +lean_inc(x_8); +x_9 = lean_ctor_get(x_7, 1); +lean_inc(x_9); +lean_dec(x_7); +x_10 = lean_ctor_get(x_2, 1); +lean_inc(x_10); +x_11 = l_Lean_RBNode_find___at_Lean_Server_handleCodeActionResolve___spec__2(x_8, x_10); +lean_dec(x_8); +if (lean_obj_tag(x_11) == 0) +{ +lean_object* x_12; lean_object* x_13; +x_12 = lean_alloc_closure((void*)(l___private_Lean_Server_CodeActions_Basic_0__Lean_Server_evalCodeActionProviderUnsafe___at_Lean_Server_handleCodeAction___spec__1), 5, 1); +lean_closure_set(x_12, 0, x_10); +lean_inc(x_4); +lean_inc(x_3); +x_13 = l_Lean_Server_RequestM_runCoreM___rarg(x_3, x_12, x_4, x_9); +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_Server_handleCodeActionResolve___lambda__2(x_1, x_3, x_2, x_14, x_4, x_15); +return x_16; +} +else +{ +uint8_t x_17; +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +x_17 = !lean_is_exclusive(x_13); +if (x_17 == 0) +{ +return x_13; +} +else +{ +lean_object* x_18; lean_object* x_19; lean_object* x_20; +x_18 = lean_ctor_get(x_13, 0); +x_19 = lean_ctor_get(x_13, 1); +lean_inc(x_19); +lean_inc(x_18); +lean_dec(x_13); +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; lean_object* x_22; +lean_dec(x_10); +x_21 = lean_ctor_get(x_11, 0); +lean_inc(x_21); +lean_dec(x_11); +x_22 = l_Lean_Server_handleCodeActionResolve___lambda__2(x_1, x_3, x_2, x_21, x_4, x_9); +return x_22; +} +} +} +static lean_object* _init_l_Lean_Server_handleCodeActionResolve___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("Expected a data field on CodeAction.", 36); +return x_1; +} +} +static lean_object* _init_l_Lean_Server_handleCodeActionResolve___closed__2() { +_start: +{ +uint8_t x_1; lean_object* x_2; lean_object* x_3; +x_1 = 3; +x_2 = l_Lean_Server_handleCodeActionResolve___closed__1; +x_3 = lean_alloc_ctor(0, 1, 1); +lean_ctor_set(x_3, 0, x_2); +lean_ctor_set_uint8(x_3, sizeof(void*)*1, x_1); +return x_3; +} +} +static lean_object* _init_l_Lean_Server_handleCodeActionResolve___closed__3() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("snapshot not found", 18); +return x_1; +} +} +static lean_object* _init_l_Lean_Server_handleCodeActionResolve___closed__4() { +_start: +{ +uint8_t x_1; lean_object* x_2; lean_object* x_3; +x_1 = 4; +x_2 = l_Lean_Server_handleCodeActionResolve___closed__3; +x_3 = lean_alloc_ctor(0, 1, 1); +lean_ctor_set(x_3, 0, x_2); +lean_ctor_set_uint8(x_3, sizeof(void*)*1, x_1); +return x_3; +} +} +LEAN_EXPORT lean_object* l_Lean_Server_handleCodeActionResolve(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +lean_object* x_4; lean_object* x_5; +x_4 = l_Lean_Server_RequestM_readDoc___at_Lean_Server_RequestM_withWaitFindSnapAtPos___spec__1(x_2, x_3); +x_5 = lean_ctor_get(x_1, 9); +if (lean_obj_tag(x_5) == 0) +{ +uint8_t x_6; +lean_dec(x_2); +x_6 = !lean_is_exclusive(x_4); +if (x_6 == 0) +{ +lean_object* x_7; lean_object* x_8; +x_7 = lean_ctor_get(x_4, 0); +lean_dec(x_7); +x_8 = l_Lean_Server_handleCodeActionResolve___closed__2; +lean_ctor_set_tag(x_4, 1); +lean_ctor_set(x_4, 0, x_8); +return x_4; +} +else +{ +lean_object* x_9; lean_object* x_10; lean_object* x_11; +x_9 = lean_ctor_get(x_4, 1); +lean_inc(x_9); +lean_dec(x_4); +x_10 = l_Lean_Server_handleCodeActionResolve___closed__2; +x_11 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_11, 0, x_10); +lean_ctor_set(x_11, 1, x_9); +return x_11; +} +} +else +{ +lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; +x_12 = lean_ctor_get(x_4, 0); +lean_inc(x_12); +x_13 = lean_ctor_get(x_4, 1); +lean_inc(x_13); +lean_dec(x_4); +x_14 = lean_ctor_get(x_5, 0); +x_15 = l___private_Lean_Server_CodeActions_Basic_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions_Basic___hyg_117_(x_14); +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; uint8_t x_18; lean_object* x_19; lean_object* x_20; +x_17 = lean_ctor_get(x_15, 0); +x_18 = 3; +x_19 = lean_alloc_ctor(0, 1, 1); +lean_ctor_set(x_19, 0, x_17); +lean_ctor_set_uint8(x_19, sizeof(void*)*1, x_18); +lean_ctor_set(x_15, 0, x_19); +x_20 = l_liftExcept___at_Lean_Server_handleCodeActionResolve___spec__1(x_15, x_2, x_13); +lean_dec(x_15); +if (lean_obj_tag(x_20) == 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_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_21 = lean_ctor_get(x_20, 0); +lean_inc(x_21); +x_22 = lean_ctor_get(x_20, 1); +lean_inc(x_22); +lean_dec(x_20); +x_23 = lean_ctor_get(x_12, 0); +lean_inc(x_23); +x_24 = lean_ctor_get(x_23, 2); +lean_inc(x_24); +lean_dec(x_23); +x_25 = lean_ctor_get(x_21, 0); +lean_inc(x_25); +x_26 = lean_ctor_get(x_25, 3); +lean_inc(x_26); +x_27 = lean_ctor_get(x_26, 1); +lean_inc(x_27); +lean_dec(x_26); +x_28 = l_Lean_FileMap_lspPosToUtf8Pos(x_24, x_27); +lean_dec(x_24); +x_29 = lean_alloc_closure((void*)(l_Lean_Server_handleCodeAction___lambda__1___boxed), 2, 1); +lean_closure_set(x_29, 0, x_28); +x_30 = l_Lean_Server_handleCodeActionResolve___closed__4; +x_31 = lean_alloc_closure((void*)(l_Lean_Server_handleCodeActionResolve___lambda__1___boxed), 3, 1); +lean_closure_set(x_31, 0, x_30); +x_32 = lean_alloc_closure((void*)(l_Lean_Server_handleCodeActionResolve___lambda__3), 5, 2); +lean_closure_set(x_32, 0, x_25); +lean_closure_set(x_32, 1, x_21); +x_33 = l_Lean_Server_handleCodeAction___closed__3; +x_34 = l_Lean_Server_RequestM_withWaitFindSnap___rarg(x_12, x_29, x_31, x_32, x_33, x_2, x_22); +return x_34; +} +else +{ +uint8_t x_35; +lean_dec(x_12); +lean_dec(x_2); +x_35 = !lean_is_exclusive(x_20); +if (x_35 == 0) +{ +return x_20; +} +else +{ +lean_object* x_36; lean_object* x_37; lean_object* x_38; +x_36 = lean_ctor_get(x_20, 0); +x_37 = lean_ctor_get(x_20, 1); +lean_inc(x_37); +lean_inc(x_36); +lean_dec(x_20); +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; +} +} +} +else +{ +lean_object* x_39; uint8_t x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; +x_39 = lean_ctor_get(x_15, 0); +lean_inc(x_39); +lean_dec(x_15); +x_40 = 3; +x_41 = lean_alloc_ctor(0, 1, 1); +lean_ctor_set(x_41, 0, x_39); +lean_ctor_set_uint8(x_41, sizeof(void*)*1, x_40); +x_42 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_42, 0, x_41); +x_43 = l_liftExcept___at_Lean_Server_handleCodeActionResolve___spec__1(x_42, x_2, x_13); +lean_dec(x_42); +if (lean_obj_tag(x_43) == 0) +{ +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; +x_44 = lean_ctor_get(x_43, 0); +lean_inc(x_44); +x_45 = lean_ctor_get(x_43, 1); +lean_inc(x_45); +lean_dec(x_43); +x_46 = lean_ctor_get(x_12, 0); +lean_inc(x_46); +x_47 = lean_ctor_get(x_46, 2); +lean_inc(x_47); +lean_dec(x_46); +x_48 = lean_ctor_get(x_44, 0); +lean_inc(x_48); +x_49 = lean_ctor_get(x_48, 3); +lean_inc(x_49); +x_50 = lean_ctor_get(x_49, 1); +lean_inc(x_50); +lean_dec(x_49); +x_51 = l_Lean_FileMap_lspPosToUtf8Pos(x_47, x_50); +lean_dec(x_47); +x_52 = lean_alloc_closure((void*)(l_Lean_Server_handleCodeAction___lambda__1___boxed), 2, 1); +lean_closure_set(x_52, 0, x_51); +x_53 = l_Lean_Server_handleCodeActionResolve___closed__4; +x_54 = lean_alloc_closure((void*)(l_Lean_Server_handleCodeActionResolve___lambda__1___boxed), 3, 1); +lean_closure_set(x_54, 0, x_53); +x_55 = lean_alloc_closure((void*)(l_Lean_Server_handleCodeActionResolve___lambda__3), 5, 2); +lean_closure_set(x_55, 0, x_48); +lean_closure_set(x_55, 1, x_44); +x_56 = l_Lean_Server_handleCodeAction___closed__3; +x_57 = l_Lean_Server_RequestM_withWaitFindSnap___rarg(x_12, x_52, x_54, x_55, x_56, x_2, x_45); +return x_57; +} +else +{ +lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; +lean_dec(x_12); +lean_dec(x_2); +x_58 = lean_ctor_get(x_43, 0); +lean_inc(x_58); +x_59 = lean_ctor_get(x_43, 1); +lean_inc(x_59); +if (lean_is_exclusive(x_43)) { + lean_ctor_release(x_43, 0); + lean_ctor_release(x_43, 1); + x_60 = x_43; +} else { + lean_dec_ref(x_43); + x_60 = lean_box(0); +} +if (lean_is_scalar(x_60)) { + x_61 = lean_alloc_ctor(1, 2, 0); +} else { + x_61 = x_60; +} +lean_ctor_set(x_61, 0, x_58); +lean_ctor_set(x_61, 1, x_59); +return x_61; +} +} +} +else +{ +uint8_t x_62; +x_62 = !lean_is_exclusive(x_15); +if (x_62 == 0) +{ +lean_object* x_63; +x_63 = l_liftExcept___at_Lean_Server_handleCodeActionResolve___spec__1(x_15, x_2, x_13); +lean_dec(x_15); +if (lean_obj_tag(x_63) == 0) +{ +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; +x_64 = lean_ctor_get(x_63, 0); +lean_inc(x_64); +x_65 = lean_ctor_get(x_63, 1); +lean_inc(x_65); +lean_dec(x_63); +x_66 = lean_ctor_get(x_12, 0); +lean_inc(x_66); +x_67 = lean_ctor_get(x_66, 2); +lean_inc(x_67); +lean_dec(x_66); +x_68 = lean_ctor_get(x_64, 0); +lean_inc(x_68); +x_69 = lean_ctor_get(x_68, 3); +lean_inc(x_69); +x_70 = lean_ctor_get(x_69, 1); +lean_inc(x_70); +lean_dec(x_69); +x_71 = l_Lean_FileMap_lspPosToUtf8Pos(x_67, x_70); +lean_dec(x_67); +x_72 = lean_alloc_closure((void*)(l_Lean_Server_handleCodeAction___lambda__1___boxed), 2, 1); +lean_closure_set(x_72, 0, x_71); +x_73 = l_Lean_Server_handleCodeActionResolve___closed__4; +x_74 = lean_alloc_closure((void*)(l_Lean_Server_handleCodeActionResolve___lambda__1___boxed), 3, 1); +lean_closure_set(x_74, 0, x_73); +x_75 = lean_alloc_closure((void*)(l_Lean_Server_handleCodeActionResolve___lambda__3), 5, 2); +lean_closure_set(x_75, 0, x_68); +lean_closure_set(x_75, 1, x_64); +x_76 = l_Lean_Server_handleCodeAction___closed__3; +x_77 = l_Lean_Server_RequestM_withWaitFindSnap___rarg(x_12, x_72, x_74, x_75, x_76, x_2, x_65); +return x_77; +} +else +{ +uint8_t x_78; +lean_dec(x_12); +lean_dec(x_2); +x_78 = !lean_is_exclusive(x_63); +if (x_78 == 0) +{ +return x_63; +} +else +{ +lean_object* x_79; lean_object* x_80; lean_object* x_81; +x_79 = lean_ctor_get(x_63, 0); +x_80 = lean_ctor_get(x_63, 1); +lean_inc(x_80); +lean_inc(x_79); +lean_dec(x_63); +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 +{ +lean_object* x_82; lean_object* x_83; lean_object* x_84; +x_82 = lean_ctor_get(x_15, 0); +lean_inc(x_82); +lean_dec(x_15); +x_83 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_83, 0, x_82); +x_84 = l_liftExcept___at_Lean_Server_handleCodeActionResolve___spec__1(x_83, x_2, x_13); +lean_dec(x_83); +if (lean_obj_tag(x_84) == 0) +{ +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; +x_85 = lean_ctor_get(x_84, 0); +lean_inc(x_85); +x_86 = lean_ctor_get(x_84, 1); +lean_inc(x_86); +lean_dec(x_84); +x_87 = lean_ctor_get(x_12, 0); +lean_inc(x_87); +x_88 = lean_ctor_get(x_87, 2); +lean_inc(x_88); +lean_dec(x_87); +x_89 = lean_ctor_get(x_85, 0); +lean_inc(x_89); +x_90 = lean_ctor_get(x_89, 3); +lean_inc(x_90); +x_91 = lean_ctor_get(x_90, 1); +lean_inc(x_91); +lean_dec(x_90); +x_92 = l_Lean_FileMap_lspPosToUtf8Pos(x_88, x_91); +lean_dec(x_88); +x_93 = lean_alloc_closure((void*)(l_Lean_Server_handleCodeAction___lambda__1___boxed), 2, 1); +lean_closure_set(x_93, 0, x_92); +x_94 = l_Lean_Server_handleCodeActionResolve___closed__4; +x_95 = lean_alloc_closure((void*)(l_Lean_Server_handleCodeActionResolve___lambda__1___boxed), 3, 1); +lean_closure_set(x_95, 0, x_94); +x_96 = lean_alloc_closure((void*)(l_Lean_Server_handleCodeActionResolve___lambda__3), 5, 2); +lean_closure_set(x_96, 0, x_89); +lean_closure_set(x_96, 1, x_85); +x_97 = l_Lean_Server_handleCodeAction___closed__3; +x_98 = l_Lean_Server_RequestM_withWaitFindSnap___rarg(x_12, x_93, x_95, x_96, x_97, x_2, x_86); +return x_98; +} +else +{ +lean_object* x_99; lean_object* x_100; lean_object* x_101; lean_object* x_102; +lean_dec(x_12); +lean_dec(x_2); +x_99 = lean_ctor_get(x_84, 0); +lean_inc(x_99); +x_100 = lean_ctor_get(x_84, 1); +lean_inc(x_100); +if (lean_is_exclusive(x_84)) { + lean_ctor_release(x_84, 0); + lean_ctor_release(x_84, 1); + x_101 = x_84; +} else { + lean_dec_ref(x_84); + x_101 = lean_box(0); +} +if (lean_is_scalar(x_101)) { + x_102 = lean_alloc_ctor(1, 2, 0); +} else { + x_102 = x_101; +} +lean_ctor_set(x_102, 0, x_99); +lean_ctor_set(x_102, 1, x_100); +return x_102; +} +} +} +} +} +} +LEAN_EXPORT lean_object* l_liftExcept___at_Lean_Server_handleCodeActionResolve___spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +lean_object* x_4; +x_4 = l_liftExcept___at_Lean_Server_handleCodeActionResolve___spec__1(x_1, x_2, x_3); +lean_dec(x_2); +lean_dec(x_1); +return x_4; +} +} +LEAN_EXPORT lean_object* l_Lean_RBNode_find___at_Lean_Server_handleCodeActionResolve___spec__2___boxed(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; +x_3 = l_Lean_RBNode_find___at_Lean_Server_handleCodeActionResolve___spec__2(x_1, x_2); +lean_dec(x_2); +lean_dec(x_1); +return x_3; +} +} +LEAN_EXPORT lean_object* l_Lean_Server_handleCodeActionResolve___lambda__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +lean_object* x_4; +x_4 = l_Lean_Server_handleCodeActionResolve___lambda__1(x_1, x_2, x_3); +lean_dec(x_2); +return x_4; +} +} +LEAN_EXPORT lean_object* l_Lean_Server_handleCodeActionResolve___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +lean_object* x_4; +x_4 = l_Lean_Server_handleCodeActionResolve(x_1, x_2, x_3); +lean_dec(x_1); +return x_4; +} +} +LEAN_EXPORT lean_object* l_Lean_Server_parseRequestParams___at_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_1509____spec__2(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = l___private_Lean_Data_Lsp_CodeActions_0__Lean_Lsp_fromJsonCodeAction____x40_Lean_Data_Lsp_CodeActions___hyg_1186_(x_1); +if (lean_obj_tag(x_2) == 0) +{ +uint8_t x_3; +x_3 = !lean_is_exclusive(x_2); +if (x_3 == 0) +{ +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; lean_object* x_14; +x_4 = lean_ctor_get(x_2, 0); +x_5 = l_Lean_Json_compress(x_1); +x_6 = l_Lean_Server_parseRequestParams___at_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_1179____spec__2___closed__1; +x_7 = lean_string_append(x_6, x_5); +lean_dec(x_5); +x_8 = l_Lean_Server_parseRequestParams___at_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_1179____spec__2___closed__2; +x_9 = lean_string_append(x_7, x_8); +x_10 = lean_string_append(x_9, x_4); +lean_dec(x_4); +x_11 = l_Lean_Server_CodeAction_getFileSource_x21___closed__2; +x_12 = lean_string_append(x_10, x_11); +x_13 = 0; +x_14 = lean_alloc_ctor(0, 1, 1); +lean_ctor_set(x_14, 0, x_12); +lean_ctor_set_uint8(x_14, sizeof(void*)*1, x_13); +lean_ctor_set(x_2, 0, x_14); +return x_2; +} +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; lean_object* x_22; lean_object* x_23; uint8_t x_24; lean_object* x_25; lean_object* x_26; +x_15 = lean_ctor_get(x_2, 0); +lean_inc(x_15); +lean_dec(x_2); +x_16 = l_Lean_Json_compress(x_1); +x_17 = l_Lean_Server_parseRequestParams___at_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_1179____spec__2___closed__1; +x_18 = lean_string_append(x_17, x_16); +lean_dec(x_16); +x_19 = l_Lean_Server_parseRequestParams___at_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_1179____spec__2___closed__2; +x_20 = lean_string_append(x_18, x_19); +x_21 = lean_string_append(x_20, x_15); +lean_dec(x_15); +x_22 = l_Lean_Server_CodeAction_getFileSource_x21___closed__2; +x_23 = lean_string_append(x_21, x_22); +x_24 = 0; +x_25 = lean_alloc_ctor(0, 1, 1); +lean_ctor_set(x_25, 0, x_23); +lean_ctor_set_uint8(x_25, sizeof(void*)*1, x_24); +x_26 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_26, 0, x_25); +return x_26; +} +} +else +{ +uint8_t x_27; +lean_dec(x_1); +x_27 = !lean_is_exclusive(x_2); +if (x_27 == 0) +{ +return x_2; +} +else +{ +lean_object* x_28; lean_object* x_29; +x_28 = lean_ctor_get(x_2, 0); +lean_inc(x_28); +lean_dec(x_2); +x_29 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_29, 0, x_28); +return x_29; +} +} +} +} +LEAN_EXPORT lean_object* l_liftExcept___at_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_1509____spec__3(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +if (lean_obj_tag(x_1) == 0) +{ +lean_object* x_4; lean_object* x_5; +x_4 = lean_ctor_get(x_1, 0); +lean_inc(x_4); +x_5 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_5, 0, x_4); +lean_ctor_set(x_5, 1, x_3); +return x_5; +} +else +{ +lean_object* x_6; lean_object* x_7; +x_6 = lean_ctor_get(x_1, 0); +lean_inc(x_6); +x_7 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_7, 0, x_6); +lean_ctor_set(x_7, 1, x_3); +return x_7; +} +} +} +LEAN_EXPORT lean_object* l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_1509____spec__1___lambda__1(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = l_Lean_Server_parseRequestParams___at_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_1509____spec__2(x_1); +if (lean_obj_tag(x_2) == 0) +{ +uint8_t x_3; +x_3 = !lean_is_exclusive(x_2); +if (x_3 == 0) +{ +return x_2; +} +else +{ +lean_object* x_4; lean_object* x_5; +x_4 = lean_ctor_get(x_2, 0); +lean_inc(x_4); +lean_dec(x_2); +x_5 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_5, 0, x_4); +return x_5; +} +} +else +{ +uint8_t x_6; +x_6 = !lean_is_exclusive(x_2); +if (x_6 == 0) +{ +lean_object* x_7; lean_object* x_8; +x_7 = lean_ctor_get(x_2, 0); +x_8 = l_Lean_Server_CodeAction_getFileSource_x21(x_7); +lean_ctor_set(x_2, 0, x_8); +return x_2; +} +else +{ +lean_object* x_9; lean_object* x_10; lean_object* x_11; +x_9 = lean_ctor_get(x_2, 0); +lean_inc(x_9); +lean_dec(x_2); +x_10 = l_Lean_Server_CodeAction_getFileSource_x21(x_9); +x_11 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_11, 0, x_10); +return x_11; +} +} +} +} +static lean_object* _init_l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_1509____spec__1___lambda__2___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l___private_Lean_Data_Lsp_CodeActions_0__Lean_Lsp_toJsonCodeAction____x40_Lean_Data_Lsp_CodeActions___hyg_1091_), 1, 0); +return x_1; +} +} +static lean_object* _init_l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_1509____spec__1___lambda__2___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_1509____spec__1___lambda__2___closed__1; +x_2 = lean_alloc_closure((void*)(l_Except_map___rarg), 2, 1); +lean_closure_set(x_2, 0, x_1); +return x_2; +} +} +LEAN_EXPORT lean_object* l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_1509____spec__1___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; +x_5 = l_Lean_Server_parseRequestParams___at_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_1509____spec__2(x_2); +x_6 = l_liftExcept___at_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_1509____spec__3(x_5, x_3, x_4); +lean_dec(x_5); +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_6, 0); +lean_inc(x_7); +x_8 = lean_ctor_get(x_6, 1); +lean_inc(x_8); +lean_dec(x_6); +x_9 = lean_apply_3(x_1, x_7, x_3, x_8); +if (lean_obj_tag(x_9) == 0) +{ +uint8_t x_10; +x_10 = !lean_is_exclusive(x_9); +if (x_10 == 0) +{ +lean_object* x_11; lean_object* x_12; lean_object* x_13; uint8_t x_14; lean_object* x_15; +x_11 = lean_ctor_get(x_9, 0); +x_12 = l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_1509____spec__1___lambda__2___closed__2; +x_13 = l_Task_Priority_default; +x_14 = 0; +x_15 = lean_task_map(x_12, x_11, x_13, x_14); +lean_ctor_set(x_9, 0, x_15); +return x_9; +} +else +{ +lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; uint8_t x_20; lean_object* x_21; lean_object* x_22; +x_16 = lean_ctor_get(x_9, 0); +x_17 = lean_ctor_get(x_9, 1); +lean_inc(x_17); +lean_inc(x_16); +lean_dec(x_9); +x_18 = l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_1509____spec__1___lambda__2___closed__2; +x_19 = l_Task_Priority_default; +x_20 = 0; +x_21 = lean_task_map(x_18, x_16, x_19, x_20); +x_22 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_22, 0, x_21); +lean_ctor_set(x_22, 1, x_17); +return x_22; +} +} +else +{ +uint8_t x_23; +x_23 = !lean_is_exclusive(x_9); +if (x_23 == 0) +{ +return x_9; +} +else +{ +lean_object* x_24; lean_object* x_25; lean_object* x_26; +x_24 = lean_ctor_get(x_9, 0); +x_25 = lean_ctor_get(x_9, 1); +lean_inc(x_25); +lean_inc(x_24); +lean_dec(x_9); +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 +{ +uint8_t x_27; +lean_dec(x_3); +lean_dec(x_1); +x_27 = !lean_is_exclusive(x_6); +if (x_27 == 0) +{ +return x_6; +} +else +{ +lean_object* x_28; lean_object* x_29; lean_object* x_30; +x_28 = lean_ctor_get(x_6, 0); +x_29 = lean_ctor_get(x_6, 1); +lean_inc(x_29); +lean_inc(x_28); +lean_dec(x_6); +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; +} +} +} +} +static lean_object* _init_l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_1509____spec__1___lambda__3___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_1509____spec__1___lambda__1), 1, 0); +return x_1; +} +} +LEAN_EXPORT lean_object* l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_1509____spec__1___lambda__3(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; 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; +x_5 = lean_alloc_closure((void*)(l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_1509____spec__1___lambda__2), 4, 1); +lean_closure_set(x_5, 0, x_1); +x_6 = l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_1179____spec__1___lambda__4___closed__1; +x_7 = lean_st_ref_take(x_6, x_4); +x_8 = lean_ctor_get(x_7, 0); +lean_inc(x_8); +x_9 = lean_ctor_get(x_7, 1); +lean_inc(x_9); +lean_dec(x_7); +x_10 = l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_1509____spec__1___lambda__3___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_5); +x_12 = l_Lean_PersistentHashMap_insert___at_Lean_Server_registerLspRequestHandler___spec__2(x_8, x_2, x_11); +x_13 = lean_st_ref_set(x_6, x_12, x_9); +x_14 = !lean_is_exclusive(x_13); +if (x_14 == 0) +{ +return x_13; +} +else +{ +lean_object* x_15; lean_object* x_16; lean_object* x_17; +x_15 = lean_ctor_get(x_13, 0); +x_16 = lean_ctor_get(x_13, 1); +lean_inc(x_16); +lean_inc(x_15); +lean_dec(x_13); +x_17 = lean_alloc_ctor(0, 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_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_1509____spec__1___lambda__4(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; uint8_t x_7; +lean_dec(x_3); +x_5 = l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_1179____spec__1___lambda__4___closed__1; +x_6 = lean_st_ref_get(x_5, x_4); +x_7 = !lean_is_exclusive(x_6); +if (x_7 == 0) +{ +lean_object* x_8; lean_object* x_9; uint8_t x_10; +x_8 = lean_ctor_get(x_6, 0); +x_9 = lean_ctor_get(x_6, 1); +lean_inc(x_2); +x_10 = l_Lean_PersistentHashMap_contains___at_Lean_Server_registerLspRequestHandler___spec__6(x_8, x_2); +if (x_10 == 0) +{ +lean_object* x_11; lean_object* x_12; +lean_free_object(x_6); +x_11 = lean_box(0); +x_12 = l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_1509____spec__1___lambda__3(x_1, x_2, x_11, x_9); +return x_12; +} +else +{ +lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; +lean_dec(x_1); +x_13 = l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_1179____spec__1___lambda__5___closed__1; +x_14 = lean_string_append(x_13, x_2); +lean_dec(x_2); +x_15 = l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_1179____spec__1___lambda__5___closed__2; +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_tag(x_6, 1); +lean_ctor_set(x_6, 0, x_17); +return x_6; +} +} +else +{ +lean_object* x_18; lean_object* x_19; uint8_t x_20; +x_18 = lean_ctor_get(x_6, 0); +x_19 = lean_ctor_get(x_6, 1); +lean_inc(x_19); +lean_inc(x_18); +lean_dec(x_6); +lean_inc(x_2); +x_20 = l_Lean_PersistentHashMap_contains___at_Lean_Server_registerLspRequestHandler___spec__6(x_18, x_2); +if (x_20 == 0) +{ +lean_object* x_21; lean_object* x_22; +x_21 = lean_box(0); +x_22 = l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_1509____spec__1___lambda__3(x_1, x_2, x_21, x_19); +return x_22; +} +else +{ +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_dec(x_1); +x_23 = l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_1179____spec__1___lambda__5___closed__1; +x_24 = lean_string_append(x_23, x_2); +lean_dec(x_2); +x_25 = l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_1179____spec__1___lambda__5___closed__2; +x_26 = lean_string_append(x_24, x_25); +x_27 = lean_alloc_ctor(18, 1, 0); +lean_ctor_set(x_27, 0, x_26); +x_28 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_28, 0, x_27); +lean_ctor_set(x_28, 1, x_19); +return x_28; +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_1509____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; +x_4 = l_Lean_initializing(x_3); +x_5 = lean_ctor_get(x_4, 0); +lean_inc(x_5); +x_6 = lean_unbox(x_5); +lean_dec(x_5); +if (x_6 == 0) +{ +uint8_t x_7; +lean_dec(x_2); +x_7 = !lean_is_exclusive(x_4); +if (x_7 == 0) +{ +lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; +x_8 = lean_ctor_get(x_4, 0); +lean_dec(x_8); +x_9 = l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_1179____spec__1___lambda__5___closed__1; +x_10 = lean_string_append(x_9, x_1); +lean_dec(x_1); +x_11 = l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_1179____spec__1___closed__1; +x_12 = lean_string_append(x_10, x_11); +x_13 = lean_alloc_ctor(18, 1, 0); +lean_ctor_set(x_13, 0, x_12); +lean_ctor_set_tag(x_4, 1); +lean_ctor_set(x_4, 0, x_13); +return x_4; +} +else +{ +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; +x_14 = lean_ctor_get(x_4, 1); +lean_inc(x_14); +lean_dec(x_4); +x_15 = l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_1179____spec__1___lambda__5___closed__1; +x_16 = lean_string_append(x_15, x_1); +lean_dec(x_1); +x_17 = l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_1179____spec__1___closed__1; +x_18 = lean_string_append(x_16, x_17); +x_19 = lean_alloc_ctor(18, 1, 0); +lean_ctor_set(x_19, 0, x_18); +x_20 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_20, 0, x_19); +lean_ctor_set(x_20, 1, x_14); +return x_20; +} +} +else +{ +lean_object* x_21; lean_object* x_22; lean_object* x_23; +x_21 = lean_ctor_get(x_4, 1); +lean_inc(x_21); +lean_dec(x_4); +x_22 = lean_box(0); +x_23 = l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_1509____spec__1___lambda__4(x_2, x_1, x_22, x_21); +return x_23; +} +} +} +static lean_object* _init_l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_1509____closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("codeAction/resolve", 18); +return x_1; +} +} +static lean_object* _init_l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_1509____closed__2() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Server_handleCodeActionResolve___boxed), 3, 0); +return x_1; +} +} +LEAN_EXPORT lean_object* l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_1509_(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_2 = l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_1509____closed__1; +x_3 = l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_1509____closed__2; +x_4 = l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_1509____spec__1(x_2, x_3, x_1); +return x_4; +} +} +LEAN_EXPORT lean_object* l_liftExcept___at_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_1509____spec__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +lean_object* x_4; +x_4 = l_liftExcept___at_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_1509____spec__3(x_1, x_2, x_3); +lean_dec(x_2); +lean_dec(x_1); +return x_4; +} +} +LEAN_EXPORT lean_object* l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_1509____spec__1___lambda__3___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_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_1509____spec__1___lambda__3(x_1, x_2, x_3, x_4); +lean_dec(x_3); +return x_5; +} +} +lean_object* initialize_Lean_Server_FileWorker_RequestHandling(uint8_t builtin, lean_object*); +lean_object* initialize_Lean_Server_InfoUtils(uint8_t builtin, lean_object*); +static bool _G_initialized = false; +LEAN_EXPORT lean_object* initialize_Lean_Server_CodeActions_Basic(uint8_t builtin, lean_object* w) { +lean_object * res; +if (_G_initialized) return lean_io_result_mk_ok(lean_box(0)); +_G_initialized = true; +res = initialize_Lean_Server_FileWorker_RequestHandling(builtin, lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +res = initialize_Lean_Server_InfoUtils(builtin, lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +l_Lean_Server_LazyCodeAction_lazy_x3f___default = _init_l_Lean_Server_LazyCodeAction_lazy_x3f___default(); +lean_mark_persistent(l_Lean_Server_LazyCodeAction_lazy_x3f___default); +l___private_Lean_Server_CodeActions_Basic_0__Lean_Server_toJsonCodeActionResolveData____x40_Lean_Server_CodeActions_Basic___hyg_57____closed__1 = _init_l___private_Lean_Server_CodeActions_Basic_0__Lean_Server_toJsonCodeActionResolveData____x40_Lean_Server_CodeActions_Basic___hyg_57____closed__1(); +lean_mark_persistent(l___private_Lean_Server_CodeActions_Basic_0__Lean_Server_toJsonCodeActionResolveData____x40_Lean_Server_CodeActions_Basic___hyg_57____closed__1); +l___private_Lean_Server_CodeActions_Basic_0__Lean_Server_toJsonCodeActionResolveData____x40_Lean_Server_CodeActions_Basic___hyg_57____closed__2 = _init_l___private_Lean_Server_CodeActions_Basic_0__Lean_Server_toJsonCodeActionResolveData____x40_Lean_Server_CodeActions_Basic___hyg_57____closed__2(); +lean_mark_persistent(l___private_Lean_Server_CodeActions_Basic_0__Lean_Server_toJsonCodeActionResolveData____x40_Lean_Server_CodeActions_Basic___hyg_57____closed__2); +l___private_Lean_Server_CodeActions_Basic_0__Lean_Server_toJsonCodeActionResolveData____x40_Lean_Server_CodeActions_Basic___hyg_57____closed__3 = _init_l___private_Lean_Server_CodeActions_Basic_0__Lean_Server_toJsonCodeActionResolveData____x40_Lean_Server_CodeActions_Basic___hyg_57____closed__3(); +lean_mark_persistent(l___private_Lean_Server_CodeActions_Basic_0__Lean_Server_toJsonCodeActionResolveData____x40_Lean_Server_CodeActions_Basic___hyg_57____closed__3); +l_Lean_Server_instToJsonCodeActionResolveData___closed__1 = _init_l_Lean_Server_instToJsonCodeActionResolveData___closed__1(); +lean_mark_persistent(l_Lean_Server_instToJsonCodeActionResolveData___closed__1); +l_Lean_Server_instToJsonCodeActionResolveData = _init_l_Lean_Server_instToJsonCodeActionResolveData(); +lean_mark_persistent(l_Lean_Server_instToJsonCodeActionResolveData); +l___private_Lean_Server_CodeActions_Basic_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions_Basic___hyg_117____closed__1 = _init_l___private_Lean_Server_CodeActions_Basic_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions_Basic___hyg_117____closed__1(); +lean_mark_persistent(l___private_Lean_Server_CodeActions_Basic_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions_Basic___hyg_117____closed__1); +l___private_Lean_Server_CodeActions_Basic_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions_Basic___hyg_117____closed__2 = _init_l___private_Lean_Server_CodeActions_Basic_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions_Basic___hyg_117____closed__2(); +lean_mark_persistent(l___private_Lean_Server_CodeActions_Basic_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions_Basic___hyg_117____closed__2); +l___private_Lean_Server_CodeActions_Basic_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions_Basic___hyg_117____closed__3 = _init_l___private_Lean_Server_CodeActions_Basic_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions_Basic___hyg_117____closed__3(); +lean_mark_persistent(l___private_Lean_Server_CodeActions_Basic_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions_Basic___hyg_117____closed__3); +l___private_Lean_Server_CodeActions_Basic_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions_Basic___hyg_117____closed__4 = _init_l___private_Lean_Server_CodeActions_Basic_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions_Basic___hyg_117____closed__4(); +lean_mark_persistent(l___private_Lean_Server_CodeActions_Basic_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions_Basic___hyg_117____closed__4); +l___private_Lean_Server_CodeActions_Basic_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions_Basic___hyg_117____closed__5 = _init_l___private_Lean_Server_CodeActions_Basic_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions_Basic___hyg_117____closed__5(); +lean_mark_persistent(l___private_Lean_Server_CodeActions_Basic_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions_Basic___hyg_117____closed__5); +l___private_Lean_Server_CodeActions_Basic_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions_Basic___hyg_117____closed__6 = _init_l___private_Lean_Server_CodeActions_Basic_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions_Basic___hyg_117____closed__6(); +lean_mark_persistent(l___private_Lean_Server_CodeActions_Basic_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions_Basic___hyg_117____closed__6); +l___private_Lean_Server_CodeActions_Basic_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions_Basic___hyg_117____closed__7 = _init_l___private_Lean_Server_CodeActions_Basic_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions_Basic___hyg_117____closed__7(); +lean_mark_persistent(l___private_Lean_Server_CodeActions_Basic_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions_Basic___hyg_117____closed__7); +l___private_Lean_Server_CodeActions_Basic_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions_Basic___hyg_117____closed__8 = _init_l___private_Lean_Server_CodeActions_Basic_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions_Basic___hyg_117____closed__8(); +lean_mark_persistent(l___private_Lean_Server_CodeActions_Basic_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions_Basic___hyg_117____closed__8); +l___private_Lean_Server_CodeActions_Basic_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions_Basic___hyg_117____closed__9 = _init_l___private_Lean_Server_CodeActions_Basic_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions_Basic___hyg_117____closed__9(); +lean_mark_persistent(l___private_Lean_Server_CodeActions_Basic_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions_Basic___hyg_117____closed__9); +l___private_Lean_Server_CodeActions_Basic_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions_Basic___hyg_117____closed__10 = _init_l___private_Lean_Server_CodeActions_Basic_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions_Basic___hyg_117____closed__10(); +lean_mark_persistent(l___private_Lean_Server_CodeActions_Basic_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions_Basic___hyg_117____closed__10); +l___private_Lean_Server_CodeActions_Basic_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions_Basic___hyg_117____closed__11 = _init_l___private_Lean_Server_CodeActions_Basic_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions_Basic___hyg_117____closed__11(); +lean_mark_persistent(l___private_Lean_Server_CodeActions_Basic_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions_Basic___hyg_117____closed__11); +l___private_Lean_Server_CodeActions_Basic_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions_Basic___hyg_117____closed__12 = _init_l___private_Lean_Server_CodeActions_Basic_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions_Basic___hyg_117____closed__12(); +lean_mark_persistent(l___private_Lean_Server_CodeActions_Basic_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions_Basic___hyg_117____closed__12); +l___private_Lean_Server_CodeActions_Basic_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions_Basic___hyg_117____closed__13 = _init_l___private_Lean_Server_CodeActions_Basic_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions_Basic___hyg_117____closed__13(); +lean_mark_persistent(l___private_Lean_Server_CodeActions_Basic_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions_Basic___hyg_117____closed__13); +l___private_Lean_Server_CodeActions_Basic_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions_Basic___hyg_117____closed__14 = _init_l___private_Lean_Server_CodeActions_Basic_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions_Basic___hyg_117____closed__14(); +lean_mark_persistent(l___private_Lean_Server_CodeActions_Basic_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions_Basic___hyg_117____closed__14); +l___private_Lean_Server_CodeActions_Basic_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions_Basic___hyg_117____closed__15 = _init_l___private_Lean_Server_CodeActions_Basic_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions_Basic___hyg_117____closed__15(); +lean_mark_persistent(l___private_Lean_Server_CodeActions_Basic_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions_Basic___hyg_117____closed__15); +l___private_Lean_Server_CodeActions_Basic_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions_Basic___hyg_117____closed__16 = _init_l___private_Lean_Server_CodeActions_Basic_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions_Basic___hyg_117____closed__16(); +lean_mark_persistent(l___private_Lean_Server_CodeActions_Basic_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions_Basic___hyg_117____closed__16); +l___private_Lean_Server_CodeActions_Basic_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions_Basic___hyg_117____closed__17 = _init_l___private_Lean_Server_CodeActions_Basic_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions_Basic___hyg_117____closed__17(); +lean_mark_persistent(l___private_Lean_Server_CodeActions_Basic_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions_Basic___hyg_117____closed__17); +l___private_Lean_Server_CodeActions_Basic_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions_Basic___hyg_117____closed__18 = _init_l___private_Lean_Server_CodeActions_Basic_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions_Basic___hyg_117____closed__18(); +lean_mark_persistent(l___private_Lean_Server_CodeActions_Basic_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions_Basic___hyg_117____closed__18); +l___private_Lean_Server_CodeActions_Basic_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions_Basic___hyg_117____closed__19 = _init_l___private_Lean_Server_CodeActions_Basic_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions_Basic___hyg_117____closed__19(); +lean_mark_persistent(l___private_Lean_Server_CodeActions_Basic_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions_Basic___hyg_117____closed__19); +l___private_Lean_Server_CodeActions_Basic_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions_Basic___hyg_117____closed__20 = _init_l___private_Lean_Server_CodeActions_Basic_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions_Basic___hyg_117____closed__20(); +lean_mark_persistent(l___private_Lean_Server_CodeActions_Basic_0__Lean_Server_fromJsonCodeActionResolveData____x40_Lean_Server_CodeActions_Basic___hyg_117____closed__20); +l_Lean_Server_instFromJsonCodeActionResolveData___closed__1 = _init_l_Lean_Server_instFromJsonCodeActionResolveData___closed__1(); +lean_mark_persistent(l_Lean_Server_instFromJsonCodeActionResolveData___closed__1); +l_Lean_Server_instFromJsonCodeActionResolveData = _init_l_Lean_Server_instFromJsonCodeActionResolveData(); +lean_mark_persistent(l_Lean_Server_instFromJsonCodeActionResolveData); +l_Lean_Server_CodeAction_getFileSource_x21___closed__1 = _init_l_Lean_Server_CodeAction_getFileSource_x21___closed__1(); +lean_mark_persistent(l_Lean_Server_CodeAction_getFileSource_x21___closed__1); +l_Lean_Server_CodeAction_getFileSource_x21___closed__2 = _init_l_Lean_Server_CodeAction_getFileSource_x21___closed__2(); +lean_mark_persistent(l_Lean_Server_CodeAction_getFileSource_x21___closed__2); +l_Lean_Server_CodeAction_getFileSource_x21___closed__3 = _init_l_Lean_Server_CodeAction_getFileSource_x21___closed__3(); +lean_mark_persistent(l_Lean_Server_CodeAction_getFileSource_x21___closed__3); +l_Lean_Server_CodeAction_getFileSource_x21___closed__4 = _init_l_Lean_Server_CodeAction_getFileSource_x21___closed__4(); +lean_mark_persistent(l_Lean_Server_CodeAction_getFileSource_x21___closed__4); +l_Lean_Server_instCodeActionProviderInhabited___lambda__1___closed__1 = _init_l_Lean_Server_instCodeActionProviderInhabited___lambda__1___closed__1(); +lean_mark_persistent(l_Lean_Server_instCodeActionProviderInhabited___lambda__1___closed__1); +l_Lean_Server_instCodeActionProviderInhabited___lambda__1___closed__2 = _init_l_Lean_Server_instCodeActionProviderInhabited___lambda__1___closed__2(); +lean_mark_persistent(l_Lean_Server_instCodeActionProviderInhabited___lambda__1___closed__2); +l_Lean_Server_instCodeActionProviderInhabited___lambda__2___closed__1 = _init_l_Lean_Server_instCodeActionProviderInhabited___lambda__2___closed__1(); +lean_mark_persistent(l_Lean_Server_instCodeActionProviderInhabited___lambda__2___closed__1); +l_Lean_Server_instCodeActionProviderInhabited___lambda__2___closed__2 = _init_l_Lean_Server_instCodeActionProviderInhabited___lambda__2___closed__2(); +lean_mark_persistent(l_Lean_Server_instCodeActionProviderInhabited___lambda__2___closed__2); +l_Lean_Server_instCodeActionProviderInhabited___closed__1 = _init_l_Lean_Server_instCodeActionProviderInhabited___closed__1(); +lean_mark_persistent(l_Lean_Server_instCodeActionProviderInhabited___closed__1); +l_Lean_Server_instCodeActionProviderInhabited___closed__2 = _init_l_Lean_Server_instCodeActionProviderInhabited___closed__2(); +lean_mark_persistent(l_Lean_Server_instCodeActionProviderInhabited___closed__2); +l_Lean_Server_instCodeActionProviderInhabited = _init_l_Lean_Server_instCodeActionProviderInhabited(); +lean_mark_persistent(l_Lean_Server_instCodeActionProviderInhabited); +if (builtin) {res = l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_390_(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +l___private_Lean_Server_CodeActions_Basic_0__Lean_Server_builtinCodeActionProviders = lean_io_result_get_value(res); +lean_mark_persistent(l___private_Lean_Server_CodeActions_Basic_0__Lean_Server_builtinCodeActionProviders); +lean_dec_ref(res); +}l_Lean_Server_addBuiltinCodeActionProvider___closed__1 = _init_l_Lean_Server_addBuiltinCodeActionProvider___closed__1(); +lean_mark_persistent(l_Lean_Server_addBuiltinCodeActionProvider___closed__1); +l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_435____closed__1 = _init_l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_435____closed__1(); +lean_mark_persistent(l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_435____closed__1); +l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_435____closed__2 = _init_l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_435____closed__2(); +lean_mark_persistent(l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_435____closed__2); +l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_435____closed__3 = _init_l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_435____closed__3(); +lean_mark_persistent(l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_435____closed__3); +l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_435____closed__4 = _init_l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_435____closed__4(); +lean_mark_persistent(l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_435____closed__4); +l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_435____closed__5 = _init_l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_435____closed__5(); +lean_mark_persistent(l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_435____closed__5); +l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_435____closed__6 = _init_l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_435____closed__6(); +lean_mark_persistent(l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_435____closed__6); +if (builtin) {res = l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_435_(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +l_Lean_Server_codeActionProviderExt = lean_io_result_get_value(res); +lean_mark_persistent(l_Lean_Server_codeActionProviderExt); +lean_dec_ref(res); +}l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____lambda__1___closed__1 = _init_l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____lambda__1___closed__1(); +lean_mark_persistent(l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____lambda__1___closed__1); +l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____lambda__1___closed__2 = _init_l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____lambda__1___closed__2(); +lean_mark_persistent(l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____lambda__1___closed__2); +l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____lambda__1___closed__3 = _init_l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____lambda__1___closed__3(); +lean_mark_persistent(l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____lambda__1___closed__3); +l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____lambda__2___closed__1 = _init_l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____lambda__2___closed__1(); +lean_mark_persistent(l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____lambda__2___closed__1); +l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____lambda__2___closed__2 = _init_l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____lambda__2___closed__2(); +lean_mark_persistent(l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____lambda__2___closed__2); +l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____lambda__2___closed__3 = _init_l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____lambda__2___closed__3(); +lean_mark_persistent(l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____lambda__2___closed__3); +l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____lambda__2___closed__4 = _init_l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____lambda__2___closed__4(); +lean_mark_persistent(l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____lambda__2___closed__4); +l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____lambda__2___closed__5 = _init_l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____lambda__2___closed__5(); +lean_mark_persistent(l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____lambda__2___closed__5); +l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____lambda__2___closed__6 = _init_l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____lambda__2___closed__6(); +lean_mark_persistent(l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____lambda__2___closed__6); +l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____lambda__3___closed__1 = _init_l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____lambda__3___closed__1(); +lean_mark_persistent(l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____lambda__3___closed__1); +l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____lambda__3___closed__2 = _init_l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____lambda__3___closed__2(); +lean_mark_persistent(l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____lambda__3___closed__2); +l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____lambda__4___closed__1 = _init_l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____lambda__4___closed__1(); +lean_mark_persistent(l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____lambda__4___closed__1); +l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____lambda__4___closed__2 = _init_l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____lambda__4___closed__2(); +lean_mark_persistent(l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____lambda__4___closed__2); +l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____lambda__5___closed__1 = _init_l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____lambda__5___closed__1(); +lean_mark_persistent(l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____lambda__5___closed__1); +l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____closed__1 = _init_l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____closed__1(); +lean_mark_persistent(l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____closed__1); +l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____closed__2 = _init_l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____closed__2(); +lean_mark_persistent(l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____closed__2); +l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____closed__3 = _init_l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____closed__3(); +lean_mark_persistent(l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____closed__3); +l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____closed__4 = _init_l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____closed__4(); +lean_mark_persistent(l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____closed__4); +l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____closed__5 = _init_l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____closed__5(); +lean_mark_persistent(l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____closed__5); +l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____closed__6 = _init_l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____closed__6(); +lean_mark_persistent(l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____closed__6); +l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____closed__7 = _init_l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____closed__7(); +lean_mark_persistent(l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____closed__7); +l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____closed__8 = _init_l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____closed__8(); +lean_mark_persistent(l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____closed__8); +l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____closed__9 = _init_l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____closed__9(); +lean_mark_persistent(l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____closed__9); +l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____closed__10 = _init_l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____closed__10(); +lean_mark_persistent(l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____closed__10); +l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____closed__11 = _init_l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____closed__11(); +lean_mark_persistent(l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____closed__11); +l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____closed__12 = _init_l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____closed__12(); +lean_mark_persistent(l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____closed__12); +l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____closed__13 = _init_l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____closed__13(); +lean_mark_persistent(l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____closed__13); +l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____closed__14 = _init_l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____closed__14(); +lean_mark_persistent(l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____closed__14); +l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____closed__15 = _init_l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____closed__15(); +lean_mark_persistent(l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____closed__15); +l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____closed__16 = _init_l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____closed__16(); +lean_mark_persistent(l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____closed__16); +l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____closed__17 = _init_l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____closed__17(); +lean_mark_persistent(l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____closed__17); +l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____closed__18 = _init_l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____closed__18(); +lean_mark_persistent(l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____closed__18); +l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____closed__19 = _init_l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____closed__19(); +lean_mark_persistent(l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____closed__19); +l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____closed__20 = _init_l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____closed__20(); +lean_mark_persistent(l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____closed__20); +l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____closed__21 = _init_l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____closed__21(); +lean_mark_persistent(l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____closed__21); +l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____closed__22 = _init_l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____closed__22(); +lean_mark_persistent(l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____closed__22); +l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____closed__23 = _init_l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____closed__23(); +lean_mark_persistent(l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____closed__23); +l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____closed__24 = _init_l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____closed__24(); +lean_mark_persistent(l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____closed__24); +l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____closed__25 = _init_l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____closed__25(); +lean_mark_persistent(l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____closed__25); +l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____closed__26 = _init_l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____closed__26(); +lean_mark_persistent(l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494____closed__26); +if (builtin) {res = l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_494_(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +}l_Lean_Server_handleCodeAction___lambda__4___closed__1 = _init_l_Lean_Server_handleCodeAction___lambda__4___closed__1(); +lean_mark_persistent(l_Lean_Server_handleCodeAction___lambda__4___closed__1); +l_Lean_Server_handleCodeAction___lambda__4___closed__2 = _init_l_Lean_Server_handleCodeAction___lambda__4___closed__2(); +lean_mark_persistent(l_Lean_Server_handleCodeAction___lambda__4___closed__2); +l_Lean_Server_handleCodeAction___closed__1 = _init_l_Lean_Server_handleCodeAction___closed__1(); +lean_mark_persistent(l_Lean_Server_handleCodeAction___closed__1); +l_Lean_Server_handleCodeAction___closed__2 = _init_l_Lean_Server_handleCodeAction___closed__2(); +lean_mark_persistent(l_Lean_Server_handleCodeAction___closed__2); +l_Lean_Server_handleCodeAction___closed__3 = _init_l_Lean_Server_handleCodeAction___closed__3(); +lean_mark_persistent(l_Lean_Server_handleCodeAction___closed__3); +l_Lean_Server_parseRequestParams___at_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_1179____spec__2___closed__1 = _init_l_Lean_Server_parseRequestParams___at_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_1179____spec__2___closed__1(); +lean_mark_persistent(l_Lean_Server_parseRequestParams___at_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_1179____spec__2___closed__1); +l_Lean_Server_parseRequestParams___at_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_1179____spec__2___closed__2 = _init_l_Lean_Server_parseRequestParams___at_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_1179____spec__2___closed__2(); +lean_mark_persistent(l_Lean_Server_parseRequestParams___at_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_1179____spec__2___closed__2); +l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_1179____spec__1___lambda__3___closed__1 = _init_l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_1179____spec__1___lambda__3___closed__1(); +lean_mark_persistent(l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_1179____spec__1___lambda__3___closed__1); +l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_1179____spec__1___lambda__3___closed__2 = _init_l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_1179____spec__1___lambda__3___closed__2(); +lean_mark_persistent(l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_1179____spec__1___lambda__3___closed__2); +l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_1179____spec__1___lambda__4___closed__1 = _init_l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_1179____spec__1___lambda__4___closed__1(); +lean_mark_persistent(l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_1179____spec__1___lambda__4___closed__1); +l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_1179____spec__1___lambda__4___closed__2 = _init_l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_1179____spec__1___lambda__4___closed__2(); +lean_mark_persistent(l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_1179____spec__1___lambda__4___closed__2); +l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_1179____spec__1___lambda__5___closed__1 = _init_l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_1179____spec__1___lambda__5___closed__1(); +lean_mark_persistent(l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_1179____spec__1___lambda__5___closed__1); +l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_1179____spec__1___lambda__5___closed__2 = _init_l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_1179____spec__1___lambda__5___closed__2(); +lean_mark_persistent(l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_1179____spec__1___lambda__5___closed__2); +l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_1179____spec__1___closed__1 = _init_l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_1179____spec__1___closed__1(); +lean_mark_persistent(l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_1179____spec__1___closed__1); +l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_1179____closed__1 = _init_l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_1179____closed__1(); +lean_mark_persistent(l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_1179____closed__1); +l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_1179____closed__2 = _init_l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_1179____closed__2(); +lean_mark_persistent(l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_1179____closed__2); +if (builtin) {res = l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_1179_(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +}l_Lean_Server_handleCodeActionResolve___lambda__2___closed__1 = _init_l_Lean_Server_handleCodeActionResolve___lambda__2___closed__1(); +lean_mark_persistent(l_Lean_Server_handleCodeActionResolve___lambda__2___closed__1); +l_Lean_Server_handleCodeActionResolve___lambda__2___closed__2 = _init_l_Lean_Server_handleCodeActionResolve___lambda__2___closed__2(); +lean_mark_persistent(l_Lean_Server_handleCodeActionResolve___lambda__2___closed__2); +l_Lean_Server_handleCodeActionResolve___lambda__2___closed__3 = _init_l_Lean_Server_handleCodeActionResolve___lambda__2___closed__3(); +lean_mark_persistent(l_Lean_Server_handleCodeActionResolve___lambda__2___closed__3); +l_Lean_Server_handleCodeActionResolve___closed__1 = _init_l_Lean_Server_handleCodeActionResolve___closed__1(); +lean_mark_persistent(l_Lean_Server_handleCodeActionResolve___closed__1); +l_Lean_Server_handleCodeActionResolve___closed__2 = _init_l_Lean_Server_handleCodeActionResolve___closed__2(); +lean_mark_persistent(l_Lean_Server_handleCodeActionResolve___closed__2); +l_Lean_Server_handleCodeActionResolve___closed__3 = _init_l_Lean_Server_handleCodeActionResolve___closed__3(); +lean_mark_persistent(l_Lean_Server_handleCodeActionResolve___closed__3); +l_Lean_Server_handleCodeActionResolve___closed__4 = _init_l_Lean_Server_handleCodeActionResolve___closed__4(); +lean_mark_persistent(l_Lean_Server_handleCodeActionResolve___closed__4); +l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_1509____spec__1___lambda__2___closed__1 = _init_l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_1509____spec__1___lambda__2___closed__1(); +lean_mark_persistent(l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_1509____spec__1___lambda__2___closed__1); +l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_1509____spec__1___lambda__2___closed__2 = _init_l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_1509____spec__1___lambda__2___closed__2(); +lean_mark_persistent(l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_1509____spec__1___lambda__2___closed__2); +l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_1509____spec__1___lambda__3___closed__1 = _init_l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_1509____spec__1___lambda__3___closed__1(); +lean_mark_persistent(l_Lean_Server_registerLspRequestHandler___at_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_1509____spec__1___lambda__3___closed__1); +l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_1509____closed__1 = _init_l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_1509____closed__1(); +lean_mark_persistent(l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_1509____closed__1); +l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_1509____closed__2 = _init_l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_1509____closed__2(); +lean_mark_persistent(l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_1509____closed__2); +if (builtin) {res = l_Lean_Server_initFn____x40_Lean_Server_CodeActions_Basic___hyg_1509_(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +}return lean_io_result_mk_ok(lean_box(0)); +} +#ifdef __cplusplus +} +#endif diff --git a/stage0/stdlib/Lean/Server/CodeActions/Provider.c b/stage0/stdlib/Lean/Server/CodeActions/Provider.c new file mode 100644 index 0000000000..e74ded072c --- /dev/null +++ b/stage0/stdlib/Lean/Server/CodeActions/Provider.c @@ -0,0 +1,4544 @@ +// Lean compiler output +// Module: Lean.Server.CodeActions.Provider +// Imports: Init Lean.Elab.BuiltinTerm Lean.Elab.BuiltinNotation Lean.Server.InfoUtils Lean.Server.CodeActions.Attr +#include +#if defined(__clang__) +#pragma clang diagnostic ignored "-Wunused-parameter" +#pragma clang diagnostic ignored "-Wunused-label" +#elif defined(__GNUC__) && !defined(__CLANG__) +#pragma GCC diagnostic ignored "-Wunused-parameter" +#pragma GCC diagnostic ignored "-Wunused-label" +#pragma GCC diagnostic ignored "-Wunused-but-set-variable" +#endif +#ifdef __cplusplus +extern "C" { +#endif +static lean_object* l_Lean_CodeAction_holeCodeActionProvider___lambda__3___closed__6; +LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_CodeAction_holeCodeActionProvider___spec__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___private_Lean_Syntax_0__String_beqRange____x40_Lean_Syntax___hyg_91_(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_PersistentArray_forInAux___at_Lean_CodeAction_findInfoTree_x3f___spec__2___lambda__1___boxed(lean_object*, lean_object*); +lean_object* l_Lean_Server_Snapshots_Snapshot_infoTree(lean_object*); +lean_object* lean_mk_empty_array_with_capacity(lean_object*); +static lean_object* l_Lean_CodeAction_findTactic_x3f_go___closed__4; +LEAN_EXPORT lean_object* l_Lean_CodeAction_cmdCodeActionProvider(lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Std_Range_forIn_loop___at_Lean_CodeAction_findTactic_x3f_go___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_CodeAction_holeCodeActionProvider___closed__3; +LEAN_EXPORT lean_object* l_Std_Range_forIn_loop___at_Lean_CodeAction_findTactic_x3f_go___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_Range_forIn_loop___at_Lean_CodeAction_findTactic_x3f_go___spec__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_CodeAction_findTactic_x3f_visit(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_CodeAction_findInfoTree_x3f___spec__5(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*); +static lean_object* l_panic___at_Lean_CodeAction_cmdCodeActionProvider___spec__1___closed__1; +LEAN_EXPORT lean_object* l_Lean_CodeAction_holeCodeActionProvider___lambda__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_CodeAction_findTactic_x3f_go___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +uint8_t l_List_elem___at_Lean_NameHashSet_insert___spec__2(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_CodeAction_findTactic_x3f_visit___boxed(lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_CodeAction_holeCodeActionProvider___lambda__3___closed__12; +lean_object* lean_array_push(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_CodeAction_holeCodeActionProvider___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_CodeAction_holeCodeActionProvider(lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_PersistentArray_forIn___at_Lean_CodeAction_findInfoTree_x3f___spec__1___lambda__1___boxed(lean_object*, lean_object*); +uint8_t lean_usize_dec_eq(size_t, size_t); +lean_object* l_instInhabitedReaderT___rarg___boxed(lean_object*, lean_object*); +lean_object* l_Lean_Syntax_getPos_x3f(lean_object*, uint8_t); +lean_object* lean_array_fget(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_CodeAction_holeCodeActionProvider___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Syntax_getTailPos_x3f(lean_object*, uint8_t); +LEAN_EXPORT lean_object* l_Lean_CodeAction_cmdCodeActionProvider___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_CodeAction_cmdCodeActionProvider___spec__4___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_CodeAction_holeCodeActionProvider___lambda__3___closed__1; +static lean_object* l_Lean_CodeAction_findTactic_x3f_go___closed__3; +lean_object* l_Lean_Elab_InfoTree_foldInfo___rarg(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_panic___at_Lean_CodeAction_cmdCodeActionProvider___spec__1(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_CodeAction_findTactic_x3f_merge(lean_object*, lean_object*); +static lean_object* l_Lean_CodeAction_holeCodeActionProvider___lambda__3___closed__7; +lean_object* l_Lean_Syntax_getNumArgs(lean_object*); +static lean_object* l_Lean_CodeAction_findTactic_x3f_visit___closed__1; +static lean_object* l_Lean_CodeAction_cmdCodeActionProvider___closed__1; +static lean_object* l_Lean_CodeAction_holeCodeActionProvider___lambda__3___closed__5; +LEAN_EXPORT lean_object* l_Lean_CodeAction_findTactic_x3f_merge___boxed(lean_object*, lean_object*); +size_t lean_usize_of_nat(lean_object*); +extern lean_object* l_Lean_Server_instInhabitedRequestError; +LEAN_EXPORT lean_object* l_Lean_CodeAction_findTactic_x3f_go(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_FileMap_lspPosToUtf8Pos(lean_object*, lean_object*); +static lean_object* l_Lean_CodeAction_holeCodeActionProvider___lambda__3___closed__9; +LEAN_EXPORT lean_object* l_Lean_CodeAction_holeCodeActionProvider___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_CodeAction_holeCodeActionProvider___lambda__3___closed__11; +lean_object* l_EStateM_instInhabitedEStateM___rarg(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_CodeAction_holeCodeActionProvider___spec__1(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_Lean_CodeAction_findInfoTree_x3f___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Std_Range_forIn_loop___at_Lean_CodeAction_findTactic_x3f_go___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Std_Range_forIn_loop___at_Lean_CodeAction_findTactic_x3f_go___spec__2___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Std_Range_forIn_loop___at_Lean_CodeAction_findTactic_x3f_go___spec__2___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* lean_nat_div(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_CodeAction_findInfoTree_x3f___spec__3(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*); +lean_object* l_Lean_Elab_Info_updateContext_x3f(lean_object*, lean_object*); +lean_object* l_Lean_PersistentEnvExtension_getState___rarg(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Std_Range_forIn_loop___at_Lean_CodeAction_findTactic_x3f_go___spec__1___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_PersistentArray_forInAux___at_Lean_CodeAction_findInfoTree_x3f___spec__2___lambda__1(lean_object*, lean_object*); +lean_object* l_Lean_Elab_PartialContextInfo_mergeIntoOuter_x3f(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_CodeAction_cmdCodeActionProvider___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*); +extern lean_object* l_Lean_CodeAction_cmdCodeActionExt; +lean_object* l_Lean_Syntax_getKind(lean_object*); +LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_CodeAction_findInfoTree_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_object* l_Lean_Server_Snapshots_Snapshot_env(lean_object*); +LEAN_EXPORT lean_object* l_Lean_CodeAction_findInfoTree_x3f___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_CodeAction_cmdCodeActionProvider___closed__2; +LEAN_EXPORT lean_object* l_Lean_CodeAction_holeCodeActionProvider___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Std_Range_forIn_loop___at_Lean_CodeAction_findTactic_x3f_go___spec__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_Std_Range_forIn_loop___at_Lean_CodeAction_findTactic_x3f_go___spec__1___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_RBNode_find___at_Lean_CodeAction_CommandCodeActions_insert___spec__1(lean_object*, lean_object*); +static lean_object* l_Lean_CodeAction_holeCodeActionProvider___lambda__3___closed__4; +LEAN_EXPORT lean_object* l_Std_Range_forIn_loop___at_Lean_CodeAction_findTactic_x3f_go___spec__1___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Std_Range_forIn_loop___at_Lean_CodeAction_findTactic_x3f_go___spec__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +uint8_t lean_name_eq(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_CodeAction_findInfoTree_x3f___spec__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_Syntax_getTailInfo(lean_object*); +lean_object* l_Lean_Syntax_getArg(lean_object*, lean_object*); +lean_object* l___private_Init_Util_0__mkPanicMessageWithDecl(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_CodeAction_holeCodeActionProvider___lambda__3___closed__10; +LEAN_EXPORT lean_object* l_Lean_CodeAction_findTactic_x3f_go___lambda__1___boxed(lean_object*, lean_object*); +static lean_object* l_Lean_CodeAction_holeCodeActionProvider___closed__2; +LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_CodeAction_findInfoTree_x3f___spec__4(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*); +LEAN_EXPORT lean_object* l_Lean_CodeAction_findInfoTree_x3f___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_CodeAction_cmdCodeActionProvider___spec__4(lean_object*, lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_CodeAction_holeCodeActionProvider___lambda__3___closed__8; +lean_object* l_Array_append___rarg(lean_object*, lean_object*); +static lean_object* l_Lean_CodeAction_findTactic_x3f_go___closed__7; +static lean_object* l_Lean_CodeAction_findTactic_x3f_go___closed__6; +static lean_object* l_Array_forInUnsafe_loop___at_Lean_CodeAction_cmdCodeActionProvider___spec__4___closed__1; +static lean_object* l_Array_forInUnsafe_loop___at_Lean_CodeAction_cmdCodeActionProvider___spec__4___closed__3; +static lean_object* l_Array_forInUnsafe_loop___at_Lean_CodeAction_cmdCodeActionProvider___spec__4___closed__2; +LEAN_EXPORT lean_object* l_Lean_PersistentArray_forInAux___at_Lean_CodeAction_findInfoTree_x3f___spec__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_Array_forInUnsafe_loop___at_Lean_CodeAction_findInfoTree_x3f___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*); +lean_object* l_Lean_Server_RequestM_readDoc___at_Lean_Server_RequestM_withWaitFindSnapAtPos___spec__1(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_CodeAction_findInfoTree_x3f___spec__6(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*); +static lean_object* l_Lean_CodeAction_holeCodeActionProvider___lambda__3___closed__3; +LEAN_EXPORT lean_object* l_Lean_PersistentArray_forInAux___at_Lean_CodeAction_findInfoTree_x3f___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_CodeAction_holeCodeActionProvider___lambda__3___closed__2; +uint8_t lean_nat_dec_eq(lean_object*, lean_object*); +uint8_t lean_nat_dec_lt(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_CodeAction_findInfoTree_x3f___spec__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_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_CodeAction_cmdCodeActionProvider___spec__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_Array_forInUnsafe_loop___at_Lean_CodeAction_cmdCodeActionProvider___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_panic_fn(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_PersistentArray_forIn___at_Lean_CodeAction_findInfoTree_x3f___spec__1___lambda__1(lean_object*, lean_object*); +lean_object* lean_nat_sub(lean_object*, lean_object*); +lean_object* lean_nat_mul(lean_object*, lean_object*); +lean_object* l_Lean_Syntax_getRange_x3f(lean_object*, uint8_t); +LEAN_EXPORT lean_object* l_Lean_CodeAction_findInfoTree_x3f___lambda__1___boxed(lean_object*, lean_object*); +static lean_object* l_Lean_CodeAction_findTactic_x3f_go___closed__2; +LEAN_EXPORT lean_object* l_Lean_CodeAction_findTactic_x3f_go___lambda__1(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Std_Range_forIn_loop___at_Lean_CodeAction_findTactic_x3f_go___spec__1___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +size_t lean_usize_add(size_t, size_t); +LEAN_EXPORT lean_object* l_Lean_PersistentArray_forIn___at_Lean_CodeAction_findInfoTree_x3f___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* lean_array_uget(lean_object*, size_t); +static lean_object* l_panic___at_Lean_CodeAction_cmdCodeActionProvider___spec__1___closed__2; +lean_object* l_Lean_Name_mkStr4(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Elab_InfoTree_foldInfoTree___rarg(lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_CodeAction_findTactic_x3f_go___closed__5; +lean_object* lean_array_get_size(lean_object*); +static lean_object* l_Lean_CodeAction_holeCodeActionProvider___closed__1; +static lean_object* l_Lean_CodeAction_findTactic_x3f_go___closed__1; +LEAN_EXPORT lean_object* l_Lean_CodeAction_findTactic_x3f(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); +LEAN_EXPORT lean_object* l_Lean_CodeAction_findInfoTree_x3f___lambda__1(lean_object*, lean_object*); +lean_object* lean_nat_add(lean_object*, lean_object*); +lean_object* l_Lean_Elab_Info_stx(lean_object*); +extern lean_object* l_Lean_CodeAction_instInhabitedCommandCodeActions; +LEAN_EXPORT lean_object* l_Lean_PersistentArray_forIn___at_Lean_CodeAction_findInfoTree_x3f___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_Lean_CodeAction_findTactic_x3f___boxed(lean_object*, lean_object*, lean_object*); +static lean_object* l_Array_forInUnsafe_loop___at_Lean_CodeAction_cmdCodeActionProvider___spec__4___closed__4; +LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_CodeAction_cmdCodeActionProvider___spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_CodeAction_cmdCodeActionProvider___spec__4___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_CodeAction_cmdCodeActionProvider___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l_Lean_CodeAction_holeCodeActionExt; +LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_CodeAction_cmdCodeActionProvider___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_CodeAction_findInfoTree_x3f(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t); +LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_CodeAction_holeCodeActionProvider___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, lean_object* x_10) { +_start: +{ +uint8_t x_11; +x_11 = lean_usize_dec_eq(x_6, x_7); +if (x_11 == 0) +{ +lean_object* x_12; lean_object* x_13; +x_12 = lean_array_uget(x_5, x_6); +lean_inc(x_9); +lean_inc(x_4); +lean_inc(x_3); +lean_inc(x_2); +lean_inc(x_1); +x_13 = lean_apply_6(x_12, x_1, x_2, x_3, x_4, x_9, x_10); +if (lean_obj_tag(x_13) == 0) +{ +lean_object* x_14; lean_object* x_15; lean_object* x_16; size_t x_17; size_t x_18; +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_Array_append___rarg(x_8, x_14); +x_17 = 1; +x_18 = lean_usize_add(x_6, x_17); +x_6 = x_18; +x_8 = x_16; +x_10 = x_15; +goto _start; +} +else +{ +uint8_t x_20; +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +x_20 = !lean_is_exclusive(x_13); +if (x_20 == 0) +{ +return x_13; +} +else +{ +lean_object* x_21; lean_object* x_22; lean_object* x_23; +x_21 = lean_ctor_get(x_13, 0); +x_22 = lean_ctor_get(x_13, 1); +lean_inc(x_22); +lean_inc(x_21); +lean_dec(x_13); +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_dec(x_9); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +x_24 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_24, 0, x_8); +lean_ctor_set(x_24, 1, x_10); +return x_24; +} +} +} +LEAN_EXPORT lean_object* l_Lean_CodeAction_holeCodeActionProvider___lambda__1(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; +x_5 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_5, 0, x_1); +lean_ctor_set(x_5, 1, x_2); +x_6 = lean_array_push(x_3, x_5); +return x_6; +} +} +LEAN_EXPORT lean_object* l_Lean_CodeAction_holeCodeActionProvider___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) { +_start: +{ +lean_object* x_7; lean_object* x_8; uint8_t x_9; lean_object* x_10; +x_7 = lean_ctor_get(x_1, 0); +lean_inc(x_7); +x_8 = lean_ctor_get(x_7, 1); +lean_inc(x_8); +lean_dec(x_7); +x_9 = 1; +x_10 = l_Lean_Syntax_getPos_x3f(x_8, x_9); +if (lean_obj_tag(x_10) == 0) +{ +lean_dec(x_8); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_1); +return x_2; +} +else +{ +lean_object* x_11; lean_object* x_12; +x_11 = lean_ctor_get(x_10, 0); +lean_inc(x_11); +lean_dec(x_10); +x_12 = l_Lean_Syntax_getTailPos_x3f(x_8, x_9); +if (lean_obj_tag(x_12) == 0) +{ +lean_dec(x_11); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_1); +return x_2; +} +else +{ +lean_object* x_13; uint8_t x_14; +x_13 = lean_ctor_get(x_12, 0); +lean_inc(x_13); +lean_dec(x_12); +x_14 = lean_nat_dec_le(x_11, x_4); +lean_dec(x_4); +lean_dec(x_11); +if (x_14 == 0) +{ +lean_dec(x_13); +lean_dec(x_3); +lean_dec(x_1); +return x_2; +} +else +{ +uint8_t x_15; +x_15 = lean_nat_dec_le(x_5, x_13); +lean_dec(x_13); +if (x_15 == 0) +{ +lean_dec(x_3); +lean_dec(x_1); +return x_2; +} +else +{ +lean_object* x_16; lean_object* x_17; +x_16 = lean_box(0); +x_17 = l_Lean_CodeAction_holeCodeActionProvider___lambda__1(x_3, x_1, x_2, x_16); +return x_17; +} +} +} +} +} +} +static lean_object* _init_l_Lean_CodeAction_holeCodeActionProvider___lambda__3___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("Lean", 4); +return x_1; +} +} +static lean_object* _init_l_Lean_CodeAction_holeCodeActionProvider___lambda__3___closed__2() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("Elab", 4); +return x_1; +} +} +static lean_object* _init_l_Lean_CodeAction_holeCodeActionProvider___lambda__3___closed__3() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("Term", 4); +return x_1; +} +} +static lean_object* _init_l_Lean_CodeAction_holeCodeActionProvider___lambda__3___closed__4() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("elabHole", 8); +return x_1; +} +} +static lean_object* _init_l_Lean_CodeAction_holeCodeActionProvider___lambda__3___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_Lean_CodeAction_holeCodeActionProvider___lambda__3___closed__1; +x_2 = l_Lean_CodeAction_holeCodeActionProvider___lambda__3___closed__2; +x_3 = l_Lean_CodeAction_holeCodeActionProvider___lambda__3___closed__3; +x_4 = l_Lean_CodeAction_holeCodeActionProvider___lambda__3___closed__4; +x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); +return x_5; +} +} +static lean_object* _init_l_Lean_CodeAction_holeCodeActionProvider___lambda__3___closed__6() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("elabSyntheticHole", 17); +return x_1; +} +} +static lean_object* _init_l_Lean_CodeAction_holeCodeActionProvider___lambda__3___closed__7() { +_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_CodeAction_holeCodeActionProvider___lambda__3___closed__1; +x_2 = l_Lean_CodeAction_holeCodeActionProvider___lambda__3___closed__2; +x_3 = l_Lean_CodeAction_holeCodeActionProvider___lambda__3___closed__3; +x_4 = l_Lean_CodeAction_holeCodeActionProvider___lambda__3___closed__6; +x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); +return x_5; +} +} +static lean_object* _init_l_Lean_CodeAction_holeCodeActionProvider___lambda__3___closed__8() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("elabSorry", 9); +return x_1; +} +} +static lean_object* _init_l_Lean_CodeAction_holeCodeActionProvider___lambda__3___closed__9() { +_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_CodeAction_holeCodeActionProvider___lambda__3___closed__1; +x_2 = l_Lean_CodeAction_holeCodeActionProvider___lambda__3___closed__2; +x_3 = l_Lean_CodeAction_holeCodeActionProvider___lambda__3___closed__3; +x_4 = l_Lean_CodeAction_holeCodeActionProvider___lambda__3___closed__8; +x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); +return x_5; +} +} +static lean_object* _init_l_Lean_CodeAction_holeCodeActionProvider___lambda__3___closed__10() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_CodeAction_holeCodeActionProvider___lambda__3___closed__9; +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_Lean_CodeAction_holeCodeActionProvider___lambda__3___closed__11() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_CodeAction_holeCodeActionProvider___lambda__3___closed__7; +x_2 = l_Lean_CodeAction_holeCodeActionProvider___lambda__3___closed__10; +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_Lean_CodeAction_holeCodeActionProvider___lambda__3___closed__12() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_CodeAction_holeCodeActionProvider___lambda__3___closed__5; +x_2 = l_Lean_CodeAction_holeCodeActionProvider___lambda__3___closed__11; +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; +} +} +LEAN_EXPORT lean_object* l_Lean_CodeAction_holeCodeActionProvider___lambda__3(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +_start: +{ +if (lean_obj_tag(x_4) == 1) +{ +lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; uint8_t x_10; +x_6 = lean_ctor_get(x_4, 0); +lean_inc(x_6); +lean_dec(x_4); +x_7 = lean_ctor_get(x_6, 0); +lean_inc(x_7); +x_8 = lean_ctor_get(x_7, 0); +lean_inc(x_8); +lean_dec(x_7); +x_9 = l_Lean_CodeAction_holeCodeActionProvider___lambda__3___closed__12; +x_10 = l_List_elem___at_Lean_NameHashSet_insert___spec__2(x_8, x_9); +lean_dec(x_8); +if (x_10 == 0) +{ +lean_dec(x_6); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +return x_5; +} +else +{ +lean_object* x_11; lean_object* x_12; +x_11 = lean_box(0); +x_12 = l_Lean_CodeAction_holeCodeActionProvider___lambda__2(x_6, x_5, x_3, x_1, x_2, x_11); +lean_dec(x_2); +return x_12; +} +} +else +{ +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +return x_5; +} +} +} +static lean_object* _init_l_Lean_CodeAction_holeCodeActionProvider___closed__1() { +_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_CodeAction_holeCodeActionProvider___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_CodeAction_holeCodeActionProvider___closed__1; +x_2 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_2, 0, x_1); +lean_ctor_set(x_2, 1, x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_CodeAction_holeCodeActionProvider___closed__3() { +_start: +{ +lean_object* x_1; +x_1 = l_Lean_CodeAction_holeCodeActionExt; +return x_1; +} +} +LEAN_EXPORT lean_object* l_Lean_CodeAction_holeCodeActionProvider(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +_start: +{ +lean_object* x_5; uint8_t x_6; +x_5 = l_Lean_Server_RequestM_readDoc___at_Lean_Server_RequestM_withWaitFindSnapAtPos___spec__1(x_3, x_4); +x_6 = !lean_is_exclusive(x_5); +if (x_6 == 0) +{ +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; uint8_t x_22; +x_7 = lean_ctor_get(x_5, 0); +x_8 = lean_ctor_get(x_5, 1); +x_9 = lean_ctor_get(x_7, 0); +lean_inc(x_9); +lean_dec(x_7); +x_10 = lean_ctor_get(x_9, 2); +lean_inc(x_10); +lean_dec(x_9); +x_11 = lean_ctor_get(x_1, 3); +lean_inc(x_11); +x_12 = lean_ctor_get(x_11, 0); +lean_inc(x_12); +x_13 = l_Lean_FileMap_lspPosToUtf8Pos(x_10, x_12); +x_14 = lean_ctor_get(x_11, 1); +lean_inc(x_14); +lean_dec(x_11); +x_15 = l_Lean_FileMap_lspPosToUtf8Pos(x_10, x_14); +lean_dec(x_10); +x_16 = lean_alloc_closure((void*)(l_Lean_CodeAction_holeCodeActionProvider___lambda__3), 5, 2); +lean_closure_set(x_16, 0, x_15); +lean_closure_set(x_16, 1, x_13); +lean_inc(x_2); +x_17 = l_Lean_Server_Snapshots_Snapshot_infoTree(x_2); +x_18 = l_Lean_CodeAction_holeCodeActionProvider___closed__1; +x_19 = l_Lean_Elab_InfoTree_foldInfo___rarg(x_16, x_18, x_17); +x_20 = lean_array_get_size(x_19); +x_21 = lean_unsigned_to_nat(1u); +x_22 = lean_nat_dec_eq(x_20, x_21); +lean_dec(x_20); +if (x_22 == 0) +{ +lean_dec(x_19); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +lean_ctor_set(x_5, 0, x_18); +return x_5; +} +else +{ +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; uint8_t x_33; +x_23 = lean_unsigned_to_nat(0u); +x_24 = lean_array_fget(x_19, x_23); +lean_dec(x_19); +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_Snapshots_Snapshot_env(x_2); +x_28 = l_Lean_CodeAction_holeCodeActionProvider___closed__2; +x_29 = l_Lean_CodeAction_holeCodeActionProvider___closed__3; +x_30 = l_Lean_PersistentEnvExtension_getState___rarg(x_28, x_29, x_27); +lean_dec(x_27); +x_31 = lean_ctor_get(x_30, 1); +lean_inc(x_31); +lean_dec(x_30); +x_32 = lean_array_get_size(x_31); +x_33 = lean_nat_dec_lt(x_23, x_32); +if (x_33 == 0) +{ +lean_dec(x_32); +lean_dec(x_31); +lean_dec(x_26); +lean_dec(x_25); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +lean_ctor_set(x_5, 0, x_18); +return x_5; +} +else +{ +uint8_t x_34; +x_34 = lean_nat_dec_le(x_32, x_32); +if (x_34 == 0) +{ +lean_dec(x_32); +lean_dec(x_31); +lean_dec(x_26); +lean_dec(x_25); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +lean_ctor_set(x_5, 0, x_18); +return x_5; +} +else +{ +size_t x_35; size_t x_36; lean_object* x_37; +lean_free_object(x_5); +x_35 = 0; +x_36 = lean_usize_of_nat(x_32); +lean_dec(x_32); +x_37 = l_Array_foldlMUnsafe_fold___at_Lean_CodeAction_holeCodeActionProvider___spec__1(x_1, x_2, x_25, x_26, x_31, x_35, x_36, x_18, x_3, x_8); +lean_dec(x_31); +return x_37; +} +} +} +} +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_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; uint8_t x_53; +x_38 = lean_ctor_get(x_5, 0); +x_39 = lean_ctor_get(x_5, 1); +lean_inc(x_39); +lean_inc(x_38); +lean_dec(x_5); +x_40 = lean_ctor_get(x_38, 0); +lean_inc(x_40); +lean_dec(x_38); +x_41 = lean_ctor_get(x_40, 2); +lean_inc(x_41); +lean_dec(x_40); +x_42 = lean_ctor_get(x_1, 3); +lean_inc(x_42); +x_43 = lean_ctor_get(x_42, 0); +lean_inc(x_43); +x_44 = l_Lean_FileMap_lspPosToUtf8Pos(x_41, x_43); +x_45 = lean_ctor_get(x_42, 1); +lean_inc(x_45); +lean_dec(x_42); +x_46 = l_Lean_FileMap_lspPosToUtf8Pos(x_41, x_45); +lean_dec(x_41); +x_47 = lean_alloc_closure((void*)(l_Lean_CodeAction_holeCodeActionProvider___lambda__3), 5, 2); +lean_closure_set(x_47, 0, x_46); +lean_closure_set(x_47, 1, x_44); +lean_inc(x_2); +x_48 = l_Lean_Server_Snapshots_Snapshot_infoTree(x_2); +x_49 = l_Lean_CodeAction_holeCodeActionProvider___closed__1; +x_50 = l_Lean_Elab_InfoTree_foldInfo___rarg(x_47, x_49, x_48); +x_51 = lean_array_get_size(x_50); +x_52 = lean_unsigned_to_nat(1u); +x_53 = lean_nat_dec_eq(x_51, x_52); +lean_dec(x_51); +if (x_53 == 0) +{ +lean_object* x_54; +lean_dec(x_50); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +x_54 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_54, 0, x_49); +lean_ctor_set(x_54, 1, x_39); +return x_54; +} +else +{ +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; uint8_t x_65; +x_55 = lean_unsigned_to_nat(0u); +x_56 = lean_array_fget(x_50, x_55); +lean_dec(x_50); +x_57 = lean_ctor_get(x_56, 0); +lean_inc(x_57); +x_58 = lean_ctor_get(x_56, 1); +lean_inc(x_58); +lean_dec(x_56); +x_59 = l_Lean_Server_Snapshots_Snapshot_env(x_2); +x_60 = l_Lean_CodeAction_holeCodeActionProvider___closed__2; +x_61 = l_Lean_CodeAction_holeCodeActionProvider___closed__3; +x_62 = l_Lean_PersistentEnvExtension_getState___rarg(x_60, x_61, x_59); +lean_dec(x_59); +x_63 = lean_ctor_get(x_62, 1); +lean_inc(x_63); +lean_dec(x_62); +x_64 = lean_array_get_size(x_63); +x_65 = lean_nat_dec_lt(x_55, x_64); +if (x_65 == 0) +{ +lean_object* x_66; +lean_dec(x_64); +lean_dec(x_63); +lean_dec(x_58); +lean_dec(x_57); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +x_66 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_66, 0, x_49); +lean_ctor_set(x_66, 1, x_39); +return x_66; +} +else +{ +uint8_t x_67; +x_67 = lean_nat_dec_le(x_64, x_64); +if (x_67 == 0) +{ +lean_object* x_68; +lean_dec(x_64); +lean_dec(x_63); +lean_dec(x_58); +lean_dec(x_57); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +x_68 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_68, 0, x_49); +lean_ctor_set(x_68, 1, x_39); +return x_68; +} +else +{ +size_t x_69; size_t x_70; lean_object* x_71; +x_69 = 0; +x_70 = lean_usize_of_nat(x_64); +lean_dec(x_64); +x_71 = l_Array_foldlMUnsafe_fold___at_Lean_CodeAction_holeCodeActionProvider___spec__1(x_1, x_2, x_57, x_58, x_63, x_69, x_70, x_49, x_3, x_39); +lean_dec(x_63); +return x_71; +} +} +} +} +} +} +LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_CodeAction_holeCodeActionProvider___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, 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_foldlMUnsafe_fold___at_Lean_CodeAction_holeCodeActionProvider___spec__1(x_1, x_2, x_3, x_4, x_5, x_11, x_12, x_8, x_9, x_10); +lean_dec(x_5); +return x_13; +} +} +LEAN_EXPORT lean_object* l_Lean_CodeAction_holeCodeActionProvider___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_CodeAction_holeCodeActionProvider___lambda__1(x_1, x_2, x_3, x_4); +lean_dec(x_4); +return x_5; +} +} +LEAN_EXPORT lean_object* l_Lean_CodeAction_holeCodeActionProvider___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) { +_start: +{ +lean_object* x_7; +x_7 = l_Lean_CodeAction_holeCodeActionProvider___lambda__2(x_1, x_2, x_3, x_4, x_5, x_6); +lean_dec(x_6); +lean_dec(x_5); +return x_7; +} +} +static lean_object* _init_l_Lean_CodeAction_findTactic_x3f_visit___closed__1() { +_start: +{ +uint8_t x_1; lean_object* x_2; lean_object* x_3; +x_1 = 0; +x_2 = lean_box(x_1); +x_3 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_3, 0, x_2); +return x_3; +} +} +LEAN_EXPORT lean_object* l_Lean_CodeAction_findTactic_x3f_visit(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +uint8_t x_4; lean_object* x_5; +x_4 = 1; +x_5 = l_Lean_Syntax_getPos_x3f(x_2, x_4); +if (lean_obj_tag(x_5) == 0) +{ +lean_object* x_6; +x_6 = lean_box(0); +return x_6; +} +else +{ +lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; +x_7 = lean_ctor_get(x_5, 0); +lean_inc(x_7); +if (lean_is_exclusive(x_5)) { + lean_ctor_release(x_5, 0); + x_8 = x_5; +} else { + lean_dec_ref(x_5); + x_8 = lean_box(0); +} +x_9 = lean_ctor_get(x_1, 0); +if (lean_obj_tag(x_3) == 0) +{ +uint8_t x_28; +x_28 = lean_nat_dec_le(x_7, x_9); +if (x_28 == 0) +{ +lean_object* x_29; +lean_dec(x_8); +lean_dec(x_7); +x_29 = lean_box(0); +return x_29; +} +else +{ +lean_object* x_30; +x_30 = lean_box(0); +x_10 = x_30; +goto block_27; +} +} +else +{ +lean_object* x_31; uint8_t x_32; +x_31 = lean_ctor_get(x_3, 0); +x_32 = lean_nat_dec_le(x_31, x_9); +if (x_32 == 0) +{ +lean_object* x_33; +lean_dec(x_8); +lean_dec(x_7); +x_33 = lean_box(0); +return x_33; +} +else +{ +lean_object* x_34; +x_34 = lean_box(0); +x_10 = x_34; +goto block_27; +} +} +block_27: +{ +lean_object* x_11; +lean_dec(x_10); +x_11 = l_Lean_Syntax_getTailInfo(x_2); +if (lean_obj_tag(x_11) == 0) +{ +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; uint8_t x_19; +x_12 = lean_ctor_get(x_11, 2); +lean_inc(x_12); +x_13 = lean_ctor_get(x_11, 3); +lean_inc(x_13); +lean_dec(x_11); +x_14 = lean_ctor_get(x_1, 1); +x_15 = lean_ctor_get(x_12, 1); +lean_inc(x_15); +x_16 = lean_ctor_get(x_12, 2); +lean_inc(x_16); +lean_dec(x_12); +x_17 = lean_nat_sub(x_16, x_15); +lean_dec(x_15); +lean_dec(x_16); +x_18 = lean_nat_add(x_13, x_17); +lean_dec(x_17); +x_19 = lean_nat_dec_le(x_14, x_18); +lean_dec(x_18); +if (x_19 == 0) +{ +lean_object* x_20; +lean_dec(x_13); +lean_dec(x_8); +lean_dec(x_7); +x_20 = lean_box(0); +return x_20; +} +else +{ +uint8_t x_21; +x_21 = lean_nat_dec_le(x_7, x_9); +lean_dec(x_7); +if (x_21 == 0) +{ +lean_object* x_22; +lean_dec(x_13); +lean_dec(x_8); +x_22 = l_Lean_CodeAction_findTactic_x3f_visit___closed__1; +return x_22; +} +else +{ +uint8_t x_23; lean_object* x_24; lean_object* x_25; +x_23 = lean_nat_dec_le(x_14, x_13); +lean_dec(x_13); +x_24 = lean_box(x_23); +if (lean_is_scalar(x_8)) { + x_25 = lean_alloc_ctor(1, 1, 0); +} else { + x_25 = x_8; +} +lean_ctor_set(x_25, 0, x_24); +return x_25; +} +} +} +else +{ +lean_object* x_26; +lean_dec(x_11); +lean_dec(x_8); +lean_dec(x_7); +x_26 = lean_box(0); +return x_26; +} +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_CodeAction_findTactic_x3f_visit___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +lean_object* x_4; +x_4 = l_Lean_CodeAction_findTactic_x3f_visit(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_Lean_CodeAction_findTactic_x3f_merge(lean_object* x_1, lean_object* x_2) { +_start: +{ +if (lean_obj_tag(x_1) == 0) +{ +lean_inc(x_2); +return x_2; +} +else +{ +lean_object* x_3; +x_3 = lean_ctor_get(x_1, 0); +if (lean_obj_tag(x_3) == 0) +{ +lean_inc(x_2); +return x_2; +} +else +{ +uint8_t x_4; +x_4 = lean_ctor_get_uint8(x_3, sizeof(void*)*2); +if (x_4 == 0) +{ +lean_inc(x_2); +return x_2; +} +else +{ +if (lean_obj_tag(x_2) == 0) +{ +lean_inc(x_2); +return x_2; +} +else +{ +uint8_t x_5; +x_5 = lean_ctor_get_uint8(x_2, sizeof(void*)*2); +if (x_5 == 0) +{ +lean_inc(x_3); +return x_3; +} +else +{ +lean_inc(x_2); +return x_2; +} +} +} +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_CodeAction_findTactic_x3f_merge___boxed(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; +x_3 = l_Lean_CodeAction_findTactic_x3f_merge(x_1, x_2); +lean_dec(x_2); +lean_dec(x_1); +return x_3; +} +} +LEAN_EXPORT lean_object* l_Std_Range_forIn_loop___at_Lean_CodeAction_findTactic_x3f_go___spec__1___lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +_start: +{ +lean_object* x_6; uint8_t x_7; lean_object* x_8; +x_6 = l_Lean_Syntax_getArg(x_1, x_2); +x_7 = 1; +x_8 = l_Lean_Syntax_getTailPos_x3f(x_6, x_7); +if (lean_obj_tag(x_8) == 0) +{ +lean_object* x_9; lean_object* x_10; lean_object* x_11; +x_9 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_9, 0, x_3); +lean_ctor_set(x_9, 1, x_4); +x_10 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_10, 0, x_9); +x_11 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_11, 0, x_10); +return x_11; +} +else +{ +uint8_t x_12; +lean_dec(x_4); +x_12 = !lean_is_exclusive(x_8); +if (x_12 == 0) +{ +lean_object* x_13; lean_object* x_14; lean_object* x_15; +x_13 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_13, 0, x_3); +lean_ctor_set(x_13, 1, x_8); +x_14 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_14, 0, x_13); +x_15 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_15, 0, x_14); +return x_15; +} +else +{ +lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; +x_16 = lean_ctor_get(x_8, 0); +lean_inc(x_16); +lean_dec(x_8); +x_17 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_17, 0, x_16); +x_18 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_18, 0, x_3); +lean_ctor_set(x_18, 1, x_17); +x_19 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_19, 0, x_18); +x_20 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_20, 0, x_19); +return x_20; +} +} +} +} +LEAN_EXPORT lean_object* l_Std_Range_forIn_loop___at_Lean_CodeAction_findTactic_x3f_go___spec__1___lambda__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +_start: +{ +lean_object* x_6; lean_object* x_7; lean_object* x_8; +x_6 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_6, 0, x_1); +x_7 = lean_box(0); +x_8 = lean_apply_3(x_2, x_6, x_3, x_7); +return x_8; +} +} +LEAN_EXPORT lean_object* l_Std_Range_forIn_loop___at_Lean_CodeAction_findTactic_x3f_go___spec__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) { +_start: +{ +uint8_t x_10; +x_10 = lean_nat_dec_le(x_7, x_6); +if (x_10 == 0) +{ +lean_object* x_11; uint8_t x_12; +x_11 = lean_unsigned_to_nat(0u); +x_12 = lean_nat_dec_eq(x_5, x_11); +if (x_12 == 0) +{ +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; +x_13 = lean_unsigned_to_nat(1u); +x_14 = lean_nat_sub(x_5, x_13); +lean_dec(x_5); +x_15 = lean_ctor_get(x_9, 0); +lean_inc(x_15); +x_16 = lean_ctor_get(x_9, 1); +lean_inc(x_16); +lean_dec(x_9); +lean_inc(x_6); +lean_inc(x_4); +x_17 = lean_alloc_closure((void*)(l_Std_Range_forIn_loop___at_Lean_CodeAction_findTactic_x3f_go___spec__1___lambda__1___boxed), 5, 2); +lean_closure_set(x_17, 0, x_4); +lean_closure_set(x_17, 1, x_6); +x_18 = l_Lean_Syntax_getArg(x_4, x_6); +x_19 = l_Lean_CodeAction_findTactic_x3f_visit(x_2, x_18, x_16); +if (lean_obj_tag(x_19) == 0) +{ +lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; +lean_dec(x_18); +lean_dec(x_17); +x_20 = lean_box(0); +x_21 = l_Std_Range_forIn_loop___at_Lean_CodeAction_findTactic_x3f_go___spec__1___lambda__1(x_4, x_6, x_15, x_16, x_20); +x_22 = lean_ctor_get(x_21, 0); +lean_inc(x_22); +lean_dec(x_21); +x_23 = lean_ctor_get(x_22, 0); +lean_inc(x_23); +lean_dec(x_22); +x_24 = lean_nat_add(x_6, x_8); +lean_dec(x_6); +x_5 = x_14; +x_6 = x_24; +x_9 = x_23; +goto _start; +} +else +{ +lean_object* x_26; lean_object* x_27; lean_object* x_28; +lean_dec(x_19); +lean_inc(x_6); +lean_inc(x_4); +x_26 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_26, 0, x_4); +lean_ctor_set(x_26, 1, x_6); +lean_inc(x_3); +x_27 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_27, 0, x_26); +lean_ctor_set(x_27, 1, x_3); +lean_inc(x_16); +lean_inc(x_1); +x_28 = l_Lean_CodeAction_findTactic_x3f_go(x_1, x_2, x_27, x_18, x_16); +if (lean_obj_tag(x_28) == 0) +{ +lean_object* x_29; +lean_dec(x_17); +lean_dec(x_16); +lean_dec(x_15); +lean_dec(x_14); +lean_dec(x_6); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_1); +x_29 = lean_box(0); +return x_29; +} +else +{ +lean_object* x_30; +x_30 = lean_ctor_get(x_28, 0); +lean_inc(x_30); +lean_dec(x_28); +if (lean_obj_tag(x_30) == 0) +{ +lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; +lean_dec(x_17); +x_31 = lean_box(0); +x_32 = l_Std_Range_forIn_loop___at_Lean_CodeAction_findTactic_x3f_go___spec__1___lambda__1(x_4, x_6, x_15, x_16, x_31); +x_33 = lean_ctor_get(x_32, 0); +lean_inc(x_33); +lean_dec(x_32); +x_34 = lean_ctor_get(x_33, 0); +lean_inc(x_34); +lean_dec(x_33); +x_35 = lean_nat_add(x_6, x_8); +lean_dec(x_6); +x_5 = x_14; +x_6 = x_35; +x_9 = x_34; +goto _start; +} +else +{ +if (lean_obj_tag(x_15) == 0) +{ +lean_object* x_37; lean_object* x_38; lean_object* x_39; +x_37 = lean_ctor_get(x_30, 0); +lean_inc(x_37); +lean_dec(x_30); +x_38 = lean_box(0); +x_39 = l_Std_Range_forIn_loop___at_Lean_CodeAction_findTactic_x3f_go___spec__1___lambda__2(x_37, x_17, x_16, x_15, x_38); +if (lean_obj_tag(x_39) == 0) +{ +lean_object* x_40; +lean_dec(x_14); +lean_dec(x_6); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_1); +x_40 = lean_box(0); +return x_40; +} +else +{ +uint8_t x_41; +x_41 = !lean_is_exclusive(x_39); +if (x_41 == 0) +{ +lean_object* x_42; +x_42 = lean_ctor_get(x_39, 0); +if (lean_obj_tag(x_42) == 0) +{ +lean_object* x_43; +lean_dec(x_14); +lean_dec(x_6); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_1); +x_43 = lean_ctor_get(x_42, 0); +lean_inc(x_43); +lean_dec(x_42); +lean_ctor_set(x_39, 0, x_43); +return x_39; +} +else +{ +lean_object* x_44; lean_object* x_45; +lean_free_object(x_39); +x_44 = lean_ctor_get(x_42, 0); +lean_inc(x_44); +lean_dec(x_42); +x_45 = lean_nat_add(x_6, x_8); +lean_dec(x_6); +x_5 = x_14; +x_6 = x_45; +x_9 = x_44; +goto _start; +} +} +else +{ +lean_object* x_47; +x_47 = lean_ctor_get(x_39, 0); +lean_inc(x_47); +lean_dec(x_39); +if (lean_obj_tag(x_47) == 0) +{ +lean_object* x_48; lean_object* x_49; +lean_dec(x_14); +lean_dec(x_6); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_1); +x_48 = lean_ctor_get(x_47, 0); +lean_inc(x_48); +lean_dec(x_47); +x_49 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_49, 0, x_48); +return x_49; +} +else +{ +lean_object* x_50; lean_object* x_51; +x_50 = lean_ctor_get(x_47, 0); +lean_inc(x_50); +lean_dec(x_47); +x_51 = lean_nat_add(x_6, x_8); +lean_dec(x_6); +x_5 = x_14; +x_6 = x_51; +x_9 = x_50; +goto _start; +} +} +} +} +else +{ +lean_object* x_53; +lean_dec(x_30); +lean_dec(x_17); +lean_dec(x_16); +lean_dec(x_15); +lean_dec(x_14); +lean_dec(x_6); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_1); +x_53 = lean_box(0); +return x_53; +} +} +} +} +} +else +{ +lean_object* x_54; +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_1); +x_54 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_54, 0, x_9); +return x_54; +} +} +else +{ +lean_object* x_55; +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_1); +x_55 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_55, 0, x_9); +return x_55; +} +} +} +LEAN_EXPORT lean_object* l_Std_Range_forIn_loop___at_Lean_CodeAction_findTactic_x3f_go___spec__2___lambda__1(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; lean_object* x_7; lean_object* x_8; +x_5 = l_Lean_CodeAction_findTactic_x3f_merge(x_1, x_2); +x_6 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_6, 0, x_5); +x_7 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_7, 0, x_6); +x_8 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_8, 0, x_7); +return x_8; +} +} +LEAN_EXPORT lean_object* l_Std_Range_forIn_loop___at_Lean_CodeAction_findTactic_x3f_go___spec__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) { +_start: +{ +uint8_t x_11; +x_11 = lean_nat_dec_le(x_8, x_7); +if (x_11 == 0) +{ +lean_object* x_12; uint8_t x_13; +x_12 = lean_unsigned_to_nat(0u); +x_13 = lean_nat_dec_eq(x_6, x_12); +if (x_13 == 0) +{ +lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_21; lean_object* x_22; lean_object* x_23; +x_14 = lean_unsigned_to_nat(1u); +x_15 = lean_nat_sub(x_6, x_14); +lean_dec(x_6); +x_21 = l_Lean_Syntax_getArg(x_4, x_7); +x_22 = lean_box(0); +x_23 = l_Lean_CodeAction_findTactic_x3f_visit(x_2, x_21, x_22); +if (lean_obj_tag(x_23) == 0) +{ +lean_object* x_24; +lean_dec(x_21); +x_24 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_24, 0, x_10); +x_16 = x_24; +goto block_20; +} +else +{ +lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; +x_25 = lean_ctor_get(x_23, 0); +lean_inc(x_25); +lean_dec(x_23); +lean_inc(x_7); +lean_inc(x_4); +x_26 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_26, 0, x_4); +lean_ctor_set(x_26, 1, x_7); +lean_inc(x_3); +x_27 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_27, 0, x_26); +lean_ctor_set(x_27, 1, x_3); +lean_inc(x_21); +lean_inc(x_27); +lean_inc(x_1); +x_28 = l_Lean_CodeAction_findTactic_x3f_go(x_1, x_2, x_27, x_21, x_22); +if (lean_obj_tag(x_28) == 0) +{ +lean_object* x_29; +lean_dec(x_27); +lean_dec(x_25); +lean_dec(x_21); +lean_dec(x_15); +lean_dec(x_10); +lean_dec(x_7); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_1); +x_29 = lean_box(0); +return x_29; +} +else +{ +lean_object* x_30; +x_30 = lean_ctor_get(x_28, 0); +lean_inc(x_30); +lean_dec(x_28); +if (lean_obj_tag(x_30) == 0) +{ +uint8_t x_31; +x_31 = lean_unbox(x_25); +lean_dec(x_25); +if (x_31 == 0) +{ +lean_object* x_32; +lean_dec(x_27); +lean_dec(x_21); +x_32 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_32, 0, x_10); +x_16 = x_32; +goto block_20; +} +else +{ +if (lean_obj_tag(x_10) == 0) +{ +lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; +x_33 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_33, 0, x_21); +lean_ctor_set(x_33, 1, x_12); +x_34 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_34, 0, x_33); +lean_ctor_set(x_34, 1, x_27); +x_35 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_35, 0, x_34); +x_36 = lean_box(0); +x_37 = l_Std_Range_forIn_loop___at_Lean_CodeAction_findTactic_x3f_go___spec__2___lambda__1(x_5, x_35, x_10, x_36); +lean_dec(x_35); +x_38 = lean_ctor_get(x_37, 0); +lean_inc(x_38); +lean_dec(x_37); +x_16 = x_38; +goto block_20; +} +else +{ +lean_object* x_39; +lean_dec(x_27); +lean_dec(x_21); +lean_dec(x_15); +lean_dec(x_10); +lean_dec(x_7); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_1); +x_39 = lean_box(0); +return x_39; +} +} +} +else +{ +lean_dec(x_27); +lean_dec(x_25); +lean_dec(x_21); +if (lean_obj_tag(x_10) == 0) +{ +lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; +x_40 = lean_ctor_get(x_30, 0); +lean_inc(x_40); +lean_dec(x_30); +x_41 = lean_box(0); +x_42 = l_Std_Range_forIn_loop___at_Lean_CodeAction_findTactic_x3f_go___spec__2___lambda__1(x_5, x_40, x_10, x_41); +lean_dec(x_40); +x_43 = lean_ctor_get(x_42, 0); +lean_inc(x_43); +lean_dec(x_42); +x_16 = x_43; +goto block_20; +} +else +{ +lean_object* x_44; +lean_dec(x_30); +lean_dec(x_15); +lean_dec(x_10); +lean_dec(x_7); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_1); +x_44 = lean_box(0); +return x_44; +} +} +} +} +block_20: +{ +lean_object* x_17; lean_object* x_18; +x_17 = lean_ctor_get(x_16, 0); +lean_inc(x_17); +lean_dec(x_16); +x_18 = lean_nat_add(x_7, x_9); +lean_dec(x_7); +x_6 = x_15; +x_7 = x_18; +x_10 = x_17; +goto _start; +} +} +else +{ +lean_object* x_45; +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_1); +x_45 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_45, 0, x_10); +return x_45; +} +} +else +{ +lean_object* x_46; +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_1); +x_46 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_46, 0, x_10); +return x_46; +} +} +} +LEAN_EXPORT lean_object* l_Std_Range_forIn_loop___at_Lean_CodeAction_findTactic_x3f_go___spec__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) { +_start: +{ +uint8_t x_9; +x_9 = lean_nat_dec_le(x_6, x_5); +if (x_9 == 0) +{ +lean_object* x_10; uint8_t x_11; +x_10 = lean_unsigned_to_nat(0u); +x_11 = lean_nat_dec_eq(x_4, x_10); +if (x_11 == 0) +{ +lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; uint8_t x_17; lean_object* x_18; +x_12 = lean_unsigned_to_nat(1u); +x_13 = lean_nat_sub(x_4, x_12); +lean_dec(x_4); +x_14 = lean_unsigned_to_nat(2u); +x_15 = lean_nat_mul(x_14, x_5); +x_16 = l_Lean_Syntax_getArg(x_2, x_15); +lean_dec(x_15); +x_17 = 0; +x_18 = l_Lean_Syntax_getPos_x3f(x_16, x_17); +lean_dec(x_16); +if (lean_obj_tag(x_18) == 0) +{ +lean_object* x_19; +x_19 = lean_nat_add(x_5, x_7); +lean_dec(x_5); +{ +lean_object* _tmp_3 = x_13; +lean_object* _tmp_4 = x_19; +lean_object* _tmp_7 = x_3; +x_4 = _tmp_3; +x_5 = _tmp_4; +x_8 = _tmp_7; +} +goto _start; +} +else +{ +uint8_t x_21; +x_21 = !lean_is_exclusive(x_18); +if (x_21 == 0) +{ +lean_object* x_22; lean_object* x_23; uint8_t x_24; +x_22 = lean_ctor_get(x_18, 0); +x_23 = lean_ctor_get(x_1, 1); +x_24 = lean_nat_dec_lt(x_23, x_22); +lean_dec(x_22); +if (x_24 == 0) +{ +lean_object* x_25; +lean_free_object(x_18); +x_25 = lean_nat_add(x_5, x_7); +lean_dec(x_5); +{ +lean_object* _tmp_3 = x_13; +lean_object* _tmp_4 = x_25; +lean_object* _tmp_7 = x_3; +x_4 = _tmp_3; +x_5 = _tmp_4; +x_8 = _tmp_7; +} +goto _start; +} +else +{ +lean_object* x_27; lean_object* x_28; +lean_dec(x_13); +lean_ctor_set(x_18, 0, x_5); +x_27 = lean_box(0); +x_28 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_28, 0, x_18); +lean_ctor_set(x_28, 1, x_27); +return x_28; +} +} +else +{ +lean_object* x_29; lean_object* x_30; uint8_t x_31; +x_29 = lean_ctor_get(x_18, 0); +lean_inc(x_29); +lean_dec(x_18); +x_30 = lean_ctor_get(x_1, 1); +x_31 = lean_nat_dec_lt(x_30, x_29); +lean_dec(x_29); +if (x_31 == 0) +{ +lean_object* x_32; +x_32 = lean_nat_add(x_5, x_7); +lean_dec(x_5); +{ +lean_object* _tmp_3 = x_13; +lean_object* _tmp_4 = x_32; +lean_object* _tmp_7 = x_3; +x_4 = _tmp_3; +x_5 = _tmp_4; +x_8 = _tmp_7; +} +goto _start; +} +else +{ +lean_object* x_34; lean_object* x_35; lean_object* x_36; +lean_dec(x_13); +x_34 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_34, 0, x_5); +x_35 = lean_box(0); +x_36 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_36, 0, x_34); +lean_ctor_set(x_36, 1, x_35); +return x_36; +} +} +} +} +else +{ +lean_dec(x_5); +lean_dec(x_4); +lean_inc(x_8); +return x_8; +} +} +else +{ +lean_dec(x_5); +lean_dec(x_4); +lean_inc(x_8); +return x_8; +} +} +} +LEAN_EXPORT lean_object* l_Lean_CodeAction_findTactic_x3f_go___lambda__1(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; +x_3 = lean_unsigned_to_nat(1u); +x_4 = lean_nat_add(x_1, x_3); +x_5 = lean_unsigned_to_nat(2u); +x_6 = lean_nat_div(x_4, x_5); +lean_dec(x_4); +return x_6; +} +} +static lean_object* _init_l_Lean_CodeAction_findTactic_x3f_go___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("Parser", 6); +return x_1; +} +} +static lean_object* _init_l_Lean_CodeAction_findTactic_x3f_go___closed__2() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("Tactic", 6); +return x_1; +} +} +static lean_object* _init_l_Lean_CodeAction_findTactic_x3f_go___closed__3() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("tacticSeq", 9); +return x_1; +} +} +static lean_object* _init_l_Lean_CodeAction_findTactic_x3f_go___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_CodeAction_holeCodeActionProvider___lambda__3___closed__1; +x_2 = l_Lean_CodeAction_findTactic_x3f_go___closed__1; +x_3 = l_Lean_CodeAction_findTactic_x3f_go___closed__2; +x_4 = l_Lean_CodeAction_findTactic_x3f_go___closed__3; +x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); +return x_5; +} +} +static lean_object* _init_l_Lean_CodeAction_findTactic_x3f_go___closed__5() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("tacticSeqBracketed", 18); +return x_1; +} +} +static lean_object* _init_l_Lean_CodeAction_findTactic_x3f_go___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_CodeAction_holeCodeActionProvider___lambda__3___closed__1; +x_2 = l_Lean_CodeAction_findTactic_x3f_go___closed__1; +x_3 = l_Lean_CodeAction_findTactic_x3f_go___closed__2; +x_4 = l_Lean_CodeAction_findTactic_x3f_go___closed__5; +x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); +return x_5; +} +} +static lean_object* _init_l_Lean_CodeAction_findTactic_x3f_go___closed__7() { +_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_Lean_CodeAction_findTactic_x3f_go(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +_start: +{ +lean_object* x_6; lean_object* x_7; uint8_t x_8; +lean_inc(x_4); +x_6 = l_Lean_Syntax_getKind(x_4); +x_7 = l_Lean_CodeAction_findTactic_x3f_go___closed__4; +x_8 = lean_name_eq(x_6, x_7); +lean_dec(x_6); +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; +x_9 = lean_box(0); +x_10 = l_Lean_Syntax_getNumArgs(x_4); +x_11 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_11, 0, x_9); +lean_ctor_set(x_11, 1, x_5); +x_12 = lean_unsigned_to_nat(0u); +x_13 = lean_unsigned_to_nat(1u); +lean_inc(x_10); +x_14 = l_Std_Range_forIn_loop___at_Lean_CodeAction_findTactic_x3f_go___spec__1(x_1, x_2, x_3, x_4, x_10, x_12, x_10, x_13, x_11); +lean_dec(x_10); +if (lean_obj_tag(x_14) == 0) +{ +lean_object* x_15; +x_15 = lean_box(0); +return x_15; +} +else +{ +uint8_t x_16; +x_16 = !lean_is_exclusive(x_14); +if (x_16 == 0) +{ +lean_object* x_17; lean_object* x_18; +x_17 = lean_ctor_get(x_14, 0); +x_18 = lean_ctor_get(x_17, 0); +lean_inc(x_18); +lean_dec(x_17); +lean_ctor_set(x_14, 0, x_18); +return x_14; +} +else +{ +lean_object* x_19; lean_object* x_20; lean_object* x_21; +x_19 = lean_ctor_get(x_14, 0); +lean_inc(x_19); +lean_dec(x_14); +x_20 = lean_ctor_get(x_19, 0); +lean_inc(x_20); +lean_dec(x_19); +x_21 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_21, 0, x_20); +return x_21; +} +} +} +else +{ +lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; uint8_t x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; +lean_dec(x_5); +x_22 = lean_unsigned_to_nat(0u); +x_23 = l_Lean_Syntax_getArg(x_4, x_22); +lean_inc(x_23); +x_24 = l_Lean_Syntax_getKind(x_23); +x_25 = l_Lean_CodeAction_findTactic_x3f_go___closed__6; +x_26 = lean_name_eq(x_24, x_25); +lean_dec(x_24); +x_27 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_27, 0, x_4); +lean_ctor_set(x_27, 1, x_22); +x_28 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_28, 0, x_27); +lean_ctor_set(x_28, 1, x_3); +x_29 = lean_box(0); +if (x_26 == 0) +{ +x_30 = x_22; +goto block_114; +} +else +{ +lean_object* x_115; +x_115 = lean_unsigned_to_nat(1u); +x_30 = x_115; +goto block_114; +} +block_114: +{ +lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; uint8_t x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; +lean_inc(x_30); +lean_inc(x_23); +x_31 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_31, 0, x_23); +lean_ctor_set(x_31, 1, x_30); +x_32 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_32, 0, x_31); +lean_ctor_set(x_32, 1, x_28); +x_33 = l_Lean_Syntax_getArg(x_23, x_30); +lean_dec(x_30); +lean_dec(x_23); +x_34 = l_Lean_Syntax_getArg(x_33, x_22); +x_35 = 0; +x_36 = l_Lean_Syntax_getPos_x3f(x_34, x_35); +lean_dec(x_34); +x_37 = l_Lean_Syntax_getNumArgs(x_33); +if (lean_obj_tag(x_36) == 0) +{ +x_38 = x_29; +goto block_53; +} +else +{ +uint8_t x_54; +x_54 = !lean_is_exclusive(x_36); +if (x_54 == 0) +{ +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; +x_55 = lean_ctor_get(x_36, 0); +x_56 = l_Lean_CodeAction_findTactic_x3f_go___closed__7; +x_57 = lean_unsigned_to_nat(1u); +lean_inc(x_37); +x_58 = l_Std_Range_forIn_loop___at_Lean_CodeAction_findTactic_x3f_go___spec__3(x_2, x_33, x_56, x_37, x_22, x_37, x_57, x_56); +x_59 = lean_ctor_get(x_58, 0); +lean_inc(x_59); +lean_dec(x_58); +lean_inc(x_33); +x_60 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_60, 0, x_33); +lean_ctor_set(x_60, 1, x_22); +lean_inc(x_32); +x_61 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_61, 0, x_60); +lean_ctor_set(x_61, 1, x_32); +if (lean_obj_tag(x_59) == 0) +{ +lean_object* x_62; lean_object* x_63; +x_62 = lean_box(0); +x_63 = l_Lean_CodeAction_findTactic_x3f_go___lambda__1(x_37, x_62); +if (x_26 == 0) +{ +lean_object* x_64; uint8_t x_65; lean_object* x_66; +lean_inc(x_1); +x_64 = lean_apply_1(x_1, x_55); +x_65 = lean_unbox(x_64); +lean_dec(x_64); +x_66 = lean_alloc_ctor(1, 2, 1); +lean_ctor_set(x_66, 0, x_63); +lean_ctor_set(x_66, 1, x_61); +lean_ctor_set_uint8(x_66, sizeof(void*)*2, x_65); +lean_ctor_set(x_36, 0, x_66); +x_38 = x_36; +goto block_53; +} +else +{ +uint8_t x_67; lean_object* x_68; +lean_dec(x_55); +x_67 = 1; +x_68 = lean_alloc_ctor(1, 2, 1); +lean_ctor_set(x_68, 0, x_63); +lean_ctor_set(x_68, 1, x_61); +lean_ctor_set_uint8(x_68, sizeof(void*)*2, x_67); +lean_ctor_set(x_36, 0, x_68); +x_38 = x_36; +goto block_53; +} +} +else +{ +lean_free_object(x_36); +if (x_26 == 0) +{ +uint8_t x_69; +x_69 = !lean_is_exclusive(x_59); +if (x_69 == 0) +{ +lean_object* x_70; lean_object* x_71; uint8_t x_72; lean_object* x_73; +x_70 = lean_ctor_get(x_59, 0); +lean_inc(x_1); +x_71 = lean_apply_1(x_1, x_55); +x_72 = lean_unbox(x_71); +lean_dec(x_71); +x_73 = lean_alloc_ctor(1, 2, 1); +lean_ctor_set(x_73, 0, x_70); +lean_ctor_set(x_73, 1, x_61); +lean_ctor_set_uint8(x_73, sizeof(void*)*2, x_72); +lean_ctor_set(x_59, 0, x_73); +x_38 = x_59; +goto block_53; +} +else +{ +lean_object* x_74; lean_object* x_75; uint8_t x_76; lean_object* x_77; lean_object* x_78; +x_74 = lean_ctor_get(x_59, 0); +lean_inc(x_74); +lean_dec(x_59); +lean_inc(x_1); +x_75 = lean_apply_1(x_1, x_55); +x_76 = lean_unbox(x_75); +lean_dec(x_75); +x_77 = lean_alloc_ctor(1, 2, 1); +lean_ctor_set(x_77, 0, x_74); +lean_ctor_set(x_77, 1, x_61); +lean_ctor_set_uint8(x_77, sizeof(void*)*2, x_76); +x_78 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_78, 0, x_77); +x_38 = x_78; +goto block_53; +} +} +else +{ +uint8_t x_79; +lean_dec(x_55); +x_79 = !lean_is_exclusive(x_59); +if (x_79 == 0) +{ +lean_object* x_80; uint8_t x_81; lean_object* x_82; +x_80 = lean_ctor_get(x_59, 0); +x_81 = 1; +x_82 = lean_alloc_ctor(1, 2, 1); +lean_ctor_set(x_82, 0, x_80); +lean_ctor_set(x_82, 1, x_61); +lean_ctor_set_uint8(x_82, sizeof(void*)*2, x_81); +lean_ctor_set(x_59, 0, x_82); +x_38 = x_59; +goto block_53; +} +else +{ +lean_object* x_83; uint8_t x_84; lean_object* x_85; lean_object* x_86; +x_83 = lean_ctor_get(x_59, 0); +lean_inc(x_83); +lean_dec(x_59); +x_84 = 1; +x_85 = lean_alloc_ctor(1, 2, 1); +lean_ctor_set(x_85, 0, x_83); +lean_ctor_set(x_85, 1, x_61); +lean_ctor_set_uint8(x_85, sizeof(void*)*2, x_84); +x_86 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_86, 0, x_85); +x_38 = x_86; +goto block_53; +} +} +} +} +else +{ +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; +x_87 = lean_ctor_get(x_36, 0); +lean_inc(x_87); +lean_dec(x_36); +x_88 = l_Lean_CodeAction_findTactic_x3f_go___closed__7; +x_89 = lean_unsigned_to_nat(1u); +lean_inc(x_37); +x_90 = l_Std_Range_forIn_loop___at_Lean_CodeAction_findTactic_x3f_go___spec__3(x_2, x_33, x_88, x_37, x_22, x_37, x_89, x_88); +x_91 = lean_ctor_get(x_90, 0); +lean_inc(x_91); +lean_dec(x_90); +lean_inc(x_33); +x_92 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_92, 0, x_33); +lean_ctor_set(x_92, 1, x_22); +lean_inc(x_32); +x_93 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_93, 0, x_92); +lean_ctor_set(x_93, 1, x_32); +if (lean_obj_tag(x_91) == 0) +{ +lean_object* x_94; lean_object* x_95; +x_94 = lean_box(0); +x_95 = l_Lean_CodeAction_findTactic_x3f_go___lambda__1(x_37, x_94); +if (x_26 == 0) +{ +lean_object* x_96; uint8_t x_97; lean_object* x_98; lean_object* x_99; +lean_inc(x_1); +x_96 = lean_apply_1(x_1, x_87); +x_97 = lean_unbox(x_96); +lean_dec(x_96); +x_98 = lean_alloc_ctor(1, 2, 1); +lean_ctor_set(x_98, 0, x_95); +lean_ctor_set(x_98, 1, x_93); +lean_ctor_set_uint8(x_98, sizeof(void*)*2, x_97); +x_99 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_99, 0, x_98); +x_38 = x_99; +goto block_53; +} +else +{ +uint8_t x_100; lean_object* x_101; lean_object* x_102; +lean_dec(x_87); +x_100 = 1; +x_101 = lean_alloc_ctor(1, 2, 1); +lean_ctor_set(x_101, 0, x_95); +lean_ctor_set(x_101, 1, x_93); +lean_ctor_set_uint8(x_101, sizeof(void*)*2, x_100); +x_102 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_102, 0, x_101); +x_38 = x_102; +goto block_53; +} +} +else +{ +if (x_26 == 0) +{ +lean_object* x_103; lean_object* x_104; lean_object* x_105; uint8_t x_106; lean_object* x_107; lean_object* x_108; +x_103 = lean_ctor_get(x_91, 0); +lean_inc(x_103); +if (lean_is_exclusive(x_91)) { + lean_ctor_release(x_91, 0); + x_104 = x_91; +} else { + lean_dec_ref(x_91); + x_104 = lean_box(0); +} +lean_inc(x_1); +x_105 = lean_apply_1(x_1, x_87); +x_106 = lean_unbox(x_105); +lean_dec(x_105); +x_107 = lean_alloc_ctor(1, 2, 1); +lean_ctor_set(x_107, 0, x_103); +lean_ctor_set(x_107, 1, x_93); +lean_ctor_set_uint8(x_107, sizeof(void*)*2, x_106); +if (lean_is_scalar(x_104)) { + x_108 = lean_alloc_ctor(1, 1, 0); +} else { + x_108 = x_104; +} +lean_ctor_set(x_108, 0, x_107); +x_38 = x_108; +goto block_53; +} +else +{ +lean_object* x_109; lean_object* x_110; uint8_t x_111; lean_object* x_112; lean_object* x_113; +lean_dec(x_87); +x_109 = lean_ctor_get(x_91, 0); +lean_inc(x_109); +if (lean_is_exclusive(x_91)) { + lean_ctor_release(x_91, 0); + x_110 = x_91; +} else { + lean_dec_ref(x_91); + x_110 = lean_box(0); +} +x_111 = 1; +x_112 = lean_alloc_ctor(1, 2, 1); +lean_ctor_set(x_112, 0, x_109); +lean_ctor_set(x_112, 1, x_93); +lean_ctor_set_uint8(x_112, sizeof(void*)*2, x_111); +if (lean_is_scalar(x_110)) { + x_113 = lean_alloc_ctor(1, 1, 0); +} else { + x_113 = x_110; +} +lean_ctor_set(x_113, 0, x_112); +x_38 = x_113; +goto block_53; +} +} +} +} +block_53: +{ +lean_object* x_39; lean_object* x_40; +x_39 = lean_unsigned_to_nat(2u); +lean_inc(x_37); +x_40 = l_Std_Range_forIn_loop___at_Lean_CodeAction_findTactic_x3f_go___spec__2(x_1, x_2, x_32, x_33, x_38, x_37, x_22, x_37, x_39, x_29); +lean_dec(x_37); +if (lean_obj_tag(x_40) == 0) +{ +lean_object* x_41; +lean_dec(x_38); +x_41 = lean_box(0); +return x_41; +} +else +{ +uint8_t x_42; +x_42 = !lean_is_exclusive(x_40); +if (x_42 == 0) +{ +lean_object* x_43; +x_43 = lean_ctor_get(x_40, 0); +if (lean_obj_tag(x_43) == 0) +{ +lean_ctor_set(x_40, 0, x_38); +return x_40; +} +else +{ +uint8_t x_44; +lean_dec(x_38); +x_44 = !lean_is_exclusive(x_43); +if (x_44 == 0) +{ +return x_40; +} +else +{ +lean_object* x_45; lean_object* x_46; +x_45 = lean_ctor_get(x_43, 0); +lean_inc(x_45); +lean_dec(x_43); +x_46 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_46, 0, x_45); +lean_ctor_set(x_40, 0, x_46); +return x_40; +} +} +} +else +{ +lean_object* x_47; +x_47 = lean_ctor_get(x_40, 0); +lean_inc(x_47); +lean_dec(x_40); +if (lean_obj_tag(x_47) == 0) +{ +lean_object* x_48; +x_48 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_48, 0, x_38); +return x_48; +} +else +{ +lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; +lean_dec(x_38); +x_49 = lean_ctor_get(x_47, 0); +lean_inc(x_49); +if (lean_is_exclusive(x_47)) { + lean_ctor_release(x_47, 0); + x_50 = x_47; +} else { + lean_dec_ref(x_47); + x_50 = lean_box(0); +} +if (lean_is_scalar(x_50)) { + x_51 = lean_alloc_ctor(1, 1, 0); +} else { + x_51 = x_50; +} +lean_ctor_set(x_51, 0, x_49); +x_52 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_52, 0, x_51); +return x_52; +} +} +} +} +} +} +} +} +LEAN_EXPORT lean_object* l_Std_Range_forIn_loop___at_Lean_CodeAction_findTactic_x3f_go___spec__1___lambda__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +_start: +{ +lean_object* x_6; +x_6 = l_Std_Range_forIn_loop___at_Lean_CodeAction_findTactic_x3f_go___spec__1___lambda__1(x_1, x_2, x_3, x_4, x_5); +lean_dec(x_5); +lean_dec(x_2); +lean_dec(x_1); +return x_6; +} +} +LEAN_EXPORT lean_object* l_Std_Range_forIn_loop___at_Lean_CodeAction_findTactic_x3f_go___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) { +_start: +{ +lean_object* x_6; +x_6 = l_Std_Range_forIn_loop___at_Lean_CodeAction_findTactic_x3f_go___spec__1___lambda__2(x_1, x_2, x_3, x_4, x_5); +lean_dec(x_5); +lean_dec(x_4); +return x_6; +} +} +LEAN_EXPORT lean_object* l_Std_Range_forIn_loop___at_Lean_CodeAction_findTactic_x3f_go___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: +{ +lean_object* x_10; +x_10 = l_Std_Range_forIn_loop___at_Lean_CodeAction_findTactic_x3f_go___spec__1(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_2); +return x_10; +} +} +LEAN_EXPORT lean_object* l_Std_Range_forIn_loop___at_Lean_CodeAction_findTactic_x3f_go___spec__2___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_Std_Range_forIn_loop___at_Lean_CodeAction_findTactic_x3f_go___spec__2___lambda__1(x_1, x_2, x_3, x_4); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +return x_5; +} +} +LEAN_EXPORT lean_object* l_Std_Range_forIn_loop___at_Lean_CodeAction_findTactic_x3f_go___spec__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) { +_start: +{ +lean_object* x_11; +x_11 = l_Std_Range_forIn_loop___at_Lean_CodeAction_findTactic_x3f_go___spec__2(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); +lean_dec(x_2); +return x_11; +} +} +LEAN_EXPORT lean_object* l_Std_Range_forIn_loop___at_Lean_CodeAction_findTactic_x3f_go___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) { +_start: +{ +lean_object* x_9; +x_9 = l_Std_Range_forIn_loop___at_Lean_CodeAction_findTactic_x3f_go___spec__3(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +return x_9; +} +} +LEAN_EXPORT lean_object* l_Lean_CodeAction_findTactic_x3f_go___lambda__1___boxed(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; +x_3 = l_Lean_CodeAction_findTactic_x3f_go___lambda__1(x_1, x_2); +lean_dec(x_2); +lean_dec(x_1); +return x_3; +} +} +LEAN_EXPORT lean_object* l_Lean_CodeAction_findTactic_x3f_go___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +_start: +{ +lean_object* x_6; +x_6 = l_Lean_CodeAction_findTactic_x3f_go(x_1, x_2, x_3, x_4, x_5); +lean_dec(x_2); +return x_6; +} +} +LEAN_EXPORT lean_object* l_Lean_CodeAction_findTactic_x3f(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +lean_object* x_4; lean_object* x_5; +x_4 = lean_box(0); +x_5 = l_Lean_CodeAction_findTactic_x3f_visit(x_2, x_3, x_4); +if (lean_obj_tag(x_5) == 0) +{ +lean_object* x_6; +lean_dec(x_3); +lean_dec(x_1); +x_6 = lean_box(0); +return x_6; +} +else +{ +lean_object* x_7; lean_object* x_8; +lean_dec(x_5); +x_7 = lean_box(0); +x_8 = l_Lean_CodeAction_findTactic_x3f_go(x_1, x_2, x_7, x_3, x_4); +if (lean_obj_tag(x_8) == 0) +{ +lean_object* x_9; +x_9 = lean_box(0); +return x_9; +} +else +{ +lean_object* x_10; +x_10 = lean_ctor_get(x_8, 0); +lean_inc(x_10); +lean_dec(x_8); +return x_10; +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_CodeAction_findTactic_x3f___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +lean_object* x_4; +x_4 = l_Lean_CodeAction_findTactic_x3f(x_1, x_2, x_3); +lean_dec(x_2); +return x_4; +} +} +LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_CodeAction_findInfoTree_x3f___spec__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, size_t x_11, size_t x_12, lean_object* x_13) { +_start: +{ +uint8_t x_14; +x_14 = lean_usize_dec_lt(x_12, x_11); +if (x_14 == 0) +{ +lean_object* x_15; +lean_dec(x_9); +lean_dec(x_7); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +x_15 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_15, 0, x_13); +return x_15; +} +else +{ +lean_object* x_16; uint8_t x_17; +x_16 = lean_array_uget(x_10, x_12); +x_17 = !lean_is_exclusive(x_13); +if (x_17 == 0) +{ +lean_object* x_18; lean_object* x_19; lean_object* x_20; uint8_t x_21; +x_18 = lean_ctor_get(x_13, 1); +x_19 = lean_ctor_get(x_13, 0); +lean_dec(x_19); +lean_inc(x_18); +lean_inc(x_7); +lean_inc(x_4); +lean_inc(x_3); +lean_inc(x_2); +lean_inc(x_1); +x_20 = l_Lean_PersistentArray_forInAux___at_Lean_CodeAction_findInfoTree_x3f___spec__2(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_16, x_18); +lean_dec(x_16); +x_21 = !lean_is_exclusive(x_20); +if (x_21 == 0) +{ +lean_object* x_22; +x_22 = lean_ctor_get(x_20, 0); +if (lean_obj_tag(x_22) == 0) +{ +lean_object* x_23; +lean_dec(x_9); +lean_dec(x_7); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +lean_ctor_set(x_13, 0, x_20); +x_23 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_23, 0, x_13); +return x_23; +} +else +{ +lean_object* x_24; size_t x_25; size_t x_26; +lean_free_object(x_20); +lean_dec(x_18); +x_24 = lean_ctor_get(x_22, 0); +lean_inc(x_24); +lean_dec(x_22); +lean_inc(x_9); +lean_ctor_set(x_13, 1, x_24); +lean_ctor_set(x_13, 0, x_9); +x_25 = 1; +x_26 = lean_usize_add(x_12, x_25); +x_12 = x_26; +goto _start; +} +} +else +{ +lean_object* x_28; +x_28 = lean_ctor_get(x_20, 0); +lean_inc(x_28); +lean_dec(x_20); +if (lean_obj_tag(x_28) == 0) +{ +lean_object* x_29; lean_object* x_30; +lean_dec(x_9); +lean_dec(x_7); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +x_29 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_29, 0, x_28); +lean_ctor_set(x_13, 0, x_29); +x_30 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_30, 0, x_13); +return x_30; +} +else +{ +lean_object* x_31; size_t x_32; size_t x_33; +lean_dec(x_18); +x_31 = lean_ctor_get(x_28, 0); +lean_inc(x_31); +lean_dec(x_28); +lean_inc(x_9); +lean_ctor_set(x_13, 1, x_31); +lean_ctor_set(x_13, 0, x_9); +x_32 = 1; +x_33 = lean_usize_add(x_12, x_32); +x_12 = x_33; +goto _start; +} +} +} +else +{ +lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; +x_35 = lean_ctor_get(x_13, 1); +lean_inc(x_35); +lean_dec(x_13); +lean_inc(x_35); +lean_inc(x_7); +lean_inc(x_4); +lean_inc(x_3); +lean_inc(x_2); +lean_inc(x_1); +x_36 = l_Lean_PersistentArray_forInAux___at_Lean_CodeAction_findInfoTree_x3f___spec__2(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_16, x_35); +lean_dec(x_16); +x_37 = lean_ctor_get(x_36, 0); +lean_inc(x_37); +if (lean_is_exclusive(x_36)) { + lean_ctor_release(x_36, 0); + x_38 = x_36; +} else { + lean_dec_ref(x_36); + x_38 = lean_box(0); +} +if (lean_obj_tag(x_37) == 0) +{ +lean_object* x_39; lean_object* x_40; lean_object* x_41; +lean_dec(x_9); +lean_dec(x_7); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +if (lean_is_scalar(x_38)) { + x_39 = lean_alloc_ctor(1, 1, 0); +} else { + x_39 = x_38; +} +lean_ctor_set(x_39, 0, x_37); +x_40 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_40, 0, x_39); +lean_ctor_set(x_40, 1, x_35); +x_41 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_41, 0, x_40); +return x_41; +} +else +{ +lean_object* x_42; lean_object* x_43; size_t x_44; size_t x_45; +lean_dec(x_38); +lean_dec(x_35); +x_42 = lean_ctor_get(x_37, 0); +lean_inc(x_42); +lean_dec(x_37); +lean_inc(x_9); +x_43 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_43, 0, x_9); +lean_ctor_set(x_43, 1, x_42); +x_44 = 1; +x_45 = lean_usize_add(x_12, x_44); +x_12 = x_45; +x_13 = x_43; +goto _start; +} +} +} +} +} +LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_CodeAction_findInfoTree_x3f___spec__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, size_t x_10, size_t x_11, lean_object* x_12) { +_start: +{ +uint8_t x_13; +x_13 = lean_usize_dec_lt(x_11, x_10); +if (x_13 == 0) +{ +lean_object* x_14; +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +x_14 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_14, 0, x_12); +return x_14; +} +else +{ +lean_object* x_15; uint8_t x_16; +x_15 = lean_array_uget(x_9, x_11); +x_16 = !lean_is_exclusive(x_12); +if (x_16 == 0) +{ +lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; +x_17 = lean_ctor_get(x_12, 1); +x_18 = lean_ctor_get(x_12, 0); +lean_dec(x_18); +lean_inc(x_3); +x_19 = l_Lean_Elab_Info_updateContext_x3f(x_3, x_6); +lean_inc(x_4); +lean_inc(x_2); +lean_inc(x_1); +x_20 = l_Lean_CodeAction_findInfoTree_x3f(x_1, x_2, x_19, x_15, x_4, x_5); +if (lean_obj_tag(x_20) == 0) +{ +size_t x_21; size_t x_22; +lean_dec(x_17); +lean_inc(x_7); +lean_inc(x_8); +lean_ctor_set(x_12, 1, x_7); +lean_ctor_set(x_12, 0, x_8); +x_21 = 1; +x_22 = lean_usize_add(x_11, x_21); +x_11 = x_22; +goto _start; +} +else +{ +uint8_t x_24; +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +x_24 = !lean_is_exclusive(x_20); +if (x_24 == 0) +{ +lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; +x_25 = lean_box(0); +lean_ctor_set(x_12, 1, x_25); +lean_ctor_set(x_12, 0, x_20); +x_26 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_26, 0, x_12); +x_27 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_27, 0, x_26); +x_28 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_28, 0, x_27); +lean_ctor_set(x_28, 1, x_17); +x_29 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_29, 0, x_28); +return x_29; +} +else +{ +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; +x_30 = lean_ctor_get(x_20, 0); +lean_inc(x_30); +lean_dec(x_20); +x_31 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_31, 0, x_30); +x_32 = lean_box(0); +lean_ctor_set(x_12, 1, x_32); +lean_ctor_set(x_12, 0, x_31); +x_33 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_33, 0, x_12); +x_34 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_34, 0, x_33); +x_35 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_35, 0, x_34); +lean_ctor_set(x_35, 1, x_17); +x_36 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_36, 0, x_35); +return x_36; +} +} +} +else +{ +lean_object* x_37; lean_object* x_38; lean_object* x_39; +x_37 = lean_ctor_get(x_12, 1); +lean_inc(x_37); +lean_dec(x_12); +lean_inc(x_3); +x_38 = l_Lean_Elab_Info_updateContext_x3f(x_3, x_6); +lean_inc(x_4); +lean_inc(x_2); +lean_inc(x_1); +x_39 = l_Lean_CodeAction_findInfoTree_x3f(x_1, x_2, x_38, x_15, x_4, x_5); +if (lean_obj_tag(x_39) == 0) +{ +lean_object* x_40; size_t x_41; size_t x_42; +lean_dec(x_37); +lean_inc(x_7); +lean_inc(x_8); +x_40 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_40, 0, x_8); +lean_ctor_set(x_40, 1, x_7); +x_41 = 1; +x_42 = lean_usize_add(x_11, x_41); +x_11 = x_42; +x_12 = x_40; +goto _start; +} +else +{ +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_dec(x_8); +lean_dec(x_7); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +x_44 = lean_ctor_get(x_39, 0); +lean_inc(x_44); +if (lean_is_exclusive(x_39)) { + lean_ctor_release(x_39, 0); + x_45 = x_39; +} else { + lean_dec_ref(x_39); + x_45 = lean_box(0); +} +if (lean_is_scalar(x_45)) { + x_46 = lean_alloc_ctor(1, 1, 0); +} else { + x_46 = x_45; +} +lean_ctor_set(x_46, 0, x_44); +x_47 = lean_box(0); +x_48 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_48, 0, x_46); +lean_ctor_set(x_48, 1, x_47); +x_49 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_49, 0, x_48); +x_50 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_50, 0, x_49); +x_51 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_51, 0, x_50); +lean_ctor_set(x_51, 1, x_37); +x_52 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_52, 0, x_51); +return x_52; +} +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_PersistentArray_forInAux___at_Lean_CodeAction_findInfoTree_x3f___spec__2___lambda__1(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; lean_object* x_4; +x_3 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_3, 0, x_1); +x_4 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_4, 0, x_3); +return x_4; +} +} +LEAN_EXPORT lean_object* l_Lean_PersistentArray_forInAux___at_Lean_CodeAction_findInfoTree_x3f___spec__2(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) { +_start: +{ +if (lean_obj_tag(x_9) == 0) +{ +lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; size_t x_15; size_t x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; +x_11 = lean_ctor_get(x_9, 0); +x_12 = lean_box(0); +x_13 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_13, 0, x_12); +lean_ctor_set(x_13, 1, x_10); +x_14 = lean_array_get_size(x_11); +x_15 = lean_usize_of_nat(x_14); +lean_dec(x_14); +x_16 = 0; +x_17 = l_Array_forInUnsafe_loop___at_Lean_CodeAction_findInfoTree_x3f___spec__3(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_12, x_11, x_15, x_16, x_13); +x_18 = lean_ctor_get(x_17, 0); +lean_inc(x_18); +lean_dec(x_17); +x_19 = lean_ctor_get(x_18, 0); +lean_inc(x_19); +if (lean_obj_tag(x_19) == 0) +{ +lean_object* x_20; lean_object* x_21; lean_object* x_22; +x_20 = lean_ctor_get(x_18, 1); +lean_inc(x_20); +lean_dec(x_18); +x_21 = lean_box(0); +x_22 = l_Lean_PersistentArray_forInAux___at_Lean_CodeAction_findInfoTree_x3f___spec__2___lambda__1(x_20, x_21); +return x_22; +} +else +{ +uint8_t x_23; +lean_dec(x_18); +x_23 = !lean_is_exclusive(x_19); +if (x_23 == 0) +{ +return x_19; +} +else +{ +lean_object* x_24; lean_object* x_25; +x_24 = lean_ctor_get(x_19, 0); +lean_inc(x_24); +lean_dec(x_19); +x_25 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_25, 0, x_24); +return x_25; +} +} +} +else +{ +lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; size_t x_30; size_t x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; +x_26 = lean_ctor_get(x_9, 0); +x_27 = lean_box(0); +x_28 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_28, 0, x_27); +lean_ctor_set(x_28, 1, x_10); +x_29 = lean_array_get_size(x_26); +x_30 = lean_usize_of_nat(x_29); +lean_dec(x_29); +x_31 = 0; +x_32 = l_Array_forInUnsafe_loop___at_Lean_CodeAction_findInfoTree_x3f___spec__4(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_27, x_26, x_30, x_31, x_28); +x_33 = lean_ctor_get(x_32, 0); +lean_inc(x_33); +lean_dec(x_32); +x_34 = lean_ctor_get(x_33, 0); +lean_inc(x_34); +if (lean_obj_tag(x_34) == 0) +{ +lean_object* x_35; lean_object* x_36; lean_object* x_37; +x_35 = lean_ctor_get(x_33, 1); +lean_inc(x_35); +lean_dec(x_33); +x_36 = lean_box(0); +x_37 = l_Lean_PersistentArray_forInAux___at_Lean_CodeAction_findInfoTree_x3f___spec__2___lambda__1(x_35, x_36); +return x_37; +} +else +{ +uint8_t x_38; +lean_dec(x_33); +x_38 = !lean_is_exclusive(x_34); +if (x_38 == 0) +{ +return x_34; +} +else +{ +lean_object* x_39; lean_object* x_40; +x_39 = lean_ctor_get(x_34, 0); +lean_inc(x_39); +lean_dec(x_34); +x_40 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_40, 0, x_39); +return x_40; +} +} +} +} +} +LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_CodeAction_findInfoTree_x3f___spec__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, size_t x_10, size_t x_11, lean_object* x_12) { +_start: +{ +uint8_t x_13; +x_13 = lean_usize_dec_lt(x_11, x_10); +if (x_13 == 0) +{ +lean_object* x_14; +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +x_14 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_14, 0, x_12); +return x_14; +} +else +{ +lean_object* x_15; uint8_t x_16; +x_15 = lean_array_uget(x_9, x_11); +x_16 = !lean_is_exclusive(x_12); +if (x_16 == 0) +{ +lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; +x_17 = lean_ctor_get(x_12, 1); +x_18 = lean_ctor_get(x_12, 0); +lean_dec(x_18); +lean_inc(x_3); +x_19 = l_Lean_Elab_Info_updateContext_x3f(x_3, x_6); +lean_inc(x_4); +lean_inc(x_2); +lean_inc(x_1); +x_20 = l_Lean_CodeAction_findInfoTree_x3f(x_1, x_2, x_19, x_15, x_4, x_5); +if (lean_obj_tag(x_20) == 0) +{ +size_t x_21; size_t x_22; +lean_dec(x_17); +lean_inc(x_7); +lean_inc(x_8); +lean_ctor_set(x_12, 1, x_7); +lean_ctor_set(x_12, 0, x_8); +x_21 = 1; +x_22 = lean_usize_add(x_11, x_21); +x_11 = x_22; +goto _start; +} +else +{ +uint8_t x_24; +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +x_24 = !lean_is_exclusive(x_20); +if (x_24 == 0) +{ +lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; +x_25 = lean_box(0); +lean_ctor_set(x_12, 1, x_25); +lean_ctor_set(x_12, 0, x_20); +x_26 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_26, 0, x_12); +x_27 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_27, 0, x_26); +lean_ctor_set(x_27, 1, x_17); +x_28 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_28, 0, x_27); +return x_28; +} +else +{ +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_29 = lean_ctor_get(x_20, 0); +lean_inc(x_29); +lean_dec(x_20); +x_30 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_30, 0, x_29); +x_31 = lean_box(0); +lean_ctor_set(x_12, 1, x_31); +lean_ctor_set(x_12, 0, x_30); +x_32 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_32, 0, x_12); +x_33 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_33, 0, x_32); +lean_ctor_set(x_33, 1, x_17); +x_34 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_34, 0, x_33); +return x_34; +} +} +} +else +{ +lean_object* x_35; lean_object* x_36; lean_object* x_37; +x_35 = lean_ctor_get(x_12, 1); +lean_inc(x_35); +lean_dec(x_12); +lean_inc(x_3); +x_36 = l_Lean_Elab_Info_updateContext_x3f(x_3, x_6); +lean_inc(x_4); +lean_inc(x_2); +lean_inc(x_1); +x_37 = l_Lean_CodeAction_findInfoTree_x3f(x_1, x_2, x_36, x_15, x_4, x_5); +if (lean_obj_tag(x_37) == 0) +{ +lean_object* x_38; size_t x_39; size_t x_40; +lean_dec(x_35); +lean_inc(x_7); +lean_inc(x_8); +x_38 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_38, 0, x_8); +lean_ctor_set(x_38, 1, x_7); +x_39 = 1; +x_40 = lean_usize_add(x_11, x_39); +x_11 = x_40; +x_12 = x_38; +goto _start; +} +else +{ +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_dec(x_8); +lean_dec(x_7); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +x_42 = lean_ctor_get(x_37, 0); +lean_inc(x_42); +if (lean_is_exclusive(x_37)) { + lean_ctor_release(x_37, 0); + x_43 = x_37; +} else { + lean_dec_ref(x_37); + x_43 = lean_box(0); +} +if (lean_is_scalar(x_43)) { + x_44 = lean_alloc_ctor(1, 1, 0); +} else { + x_44 = x_43; +} +lean_ctor_set(x_44, 0, x_42); +x_45 = lean_box(0); +x_46 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_46, 0, x_44); +lean_ctor_set(x_46, 1, x_45); +x_47 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_47, 0, x_46); +x_48 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_48, 0, x_47); +lean_ctor_set(x_48, 1, x_35); +x_49 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_49, 0, x_48); +return x_49; +} +} +} +} +} +LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_CodeAction_findInfoTree_x3f___spec__6(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, size_t x_10, size_t x_11, lean_object* x_12) { +_start: +{ +uint8_t x_13; +x_13 = lean_usize_dec_lt(x_11, x_10); +if (x_13 == 0) +{ +lean_object* x_14; +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +x_14 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_14, 0, x_12); +return x_14; +} +else +{ +lean_object* x_15; uint8_t x_16; +x_15 = lean_array_uget(x_9, x_11); +x_16 = !lean_is_exclusive(x_12); +if (x_16 == 0) +{ +lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; +x_17 = lean_ctor_get(x_12, 1); +x_18 = lean_ctor_get(x_12, 0); +lean_dec(x_18); +lean_inc(x_3); +x_19 = l_Lean_Elab_Info_updateContext_x3f(x_3, x_6); +lean_inc(x_4); +lean_inc(x_2); +lean_inc(x_1); +x_20 = l_Lean_CodeAction_findInfoTree_x3f(x_1, x_2, x_19, x_15, x_4, x_5); +if (lean_obj_tag(x_20) == 0) +{ +size_t x_21; size_t x_22; +lean_dec(x_17); +lean_inc(x_7); +lean_inc(x_8); +lean_ctor_set(x_12, 1, x_7); +lean_ctor_set(x_12, 0, x_8); +x_21 = 1; +x_22 = lean_usize_add(x_11, x_21); +x_11 = x_22; +goto _start; +} +else +{ +uint8_t x_24; +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +x_24 = !lean_is_exclusive(x_20); +if (x_24 == 0) +{ +lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; +x_25 = lean_box(0); +lean_ctor_set(x_12, 1, x_25); +lean_ctor_set(x_12, 0, x_20); +x_26 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_26, 0, x_12); +x_27 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_27, 0, x_26); +lean_ctor_set(x_27, 1, x_17); +x_28 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_28, 0, x_27); +return x_28; +} +else +{ +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_29 = lean_ctor_get(x_20, 0); +lean_inc(x_29); +lean_dec(x_20); +x_30 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_30, 0, x_29); +x_31 = lean_box(0); +lean_ctor_set(x_12, 1, x_31); +lean_ctor_set(x_12, 0, x_30); +x_32 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_32, 0, x_12); +x_33 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_33, 0, x_32); +lean_ctor_set(x_33, 1, x_17); +x_34 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_34, 0, x_33); +return x_34; +} +} +} +else +{ +lean_object* x_35; lean_object* x_36; lean_object* x_37; +x_35 = lean_ctor_get(x_12, 1); +lean_inc(x_35); +lean_dec(x_12); +lean_inc(x_3); +x_36 = l_Lean_Elab_Info_updateContext_x3f(x_3, x_6); +lean_inc(x_4); +lean_inc(x_2); +lean_inc(x_1); +x_37 = l_Lean_CodeAction_findInfoTree_x3f(x_1, x_2, x_36, x_15, x_4, x_5); +if (lean_obj_tag(x_37) == 0) +{ +lean_object* x_38; size_t x_39; size_t x_40; +lean_dec(x_35); +lean_inc(x_7); +lean_inc(x_8); +x_38 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_38, 0, x_8); +lean_ctor_set(x_38, 1, x_7); +x_39 = 1; +x_40 = lean_usize_add(x_11, x_39); +x_11 = x_40; +x_12 = x_38; +goto _start; +} +else +{ +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_dec(x_8); +lean_dec(x_7); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +x_42 = lean_ctor_get(x_37, 0); +lean_inc(x_42); +if (lean_is_exclusive(x_37)) { + lean_ctor_release(x_37, 0); + x_43 = x_37; +} else { + lean_dec_ref(x_37); + x_43 = lean_box(0); +} +if (lean_is_scalar(x_43)) { + x_44 = lean_alloc_ctor(1, 1, 0); +} else { + x_44 = x_43; +} +lean_ctor_set(x_44, 0, x_42); +x_45 = lean_box(0); +x_46 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_46, 0, x_44); +lean_ctor_set(x_46, 1, x_45); +x_47 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_47, 0, x_46); +x_48 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_48, 0, x_47); +lean_ctor_set(x_48, 1, x_35); +x_49 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_49, 0, x_48); +return x_49; +} +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_PersistentArray_forIn___at_Lean_CodeAction_findInfoTree_x3f___spec__1___lambda__1(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; +x_3 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_3, 0, x_1); +return x_3; +} +} +LEAN_EXPORT lean_object* l_Lean_PersistentArray_forIn___at_Lean_CodeAction_findInfoTree_x3f___spec__1(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) { +_start: +{ +lean_object* x_10; lean_object* x_11; uint8_t x_12; +x_10 = lean_ctor_get(x_8, 0); +lean_inc(x_9); +lean_inc(x_7); +lean_inc(x_4); +lean_inc(x_3); +lean_inc(x_2); +lean_inc(x_1); +x_11 = l_Lean_PersistentArray_forInAux___at_Lean_CodeAction_findInfoTree_x3f___spec__2(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_9, x_10, x_9); +lean_dec(x_9); +x_12 = !lean_is_exclusive(x_11); +if (x_12 == 0) +{ +lean_object* x_13; +x_13 = lean_ctor_get(x_11, 0); +if (lean_obj_tag(x_13) == 0) +{ +lean_object* x_14; +lean_dec(x_7); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +x_14 = lean_ctor_get(x_13, 0); +lean_inc(x_14); +lean_dec(x_13); +lean_ctor_set(x_11, 0, x_14); +return x_11; +} +else +{ +lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; size_t x_20; size_t x_21; lean_object* x_22; uint8_t x_23; +lean_free_object(x_11); +x_15 = lean_ctor_get(x_13, 0); +lean_inc(x_15); +lean_dec(x_13); +x_16 = lean_ctor_get(x_8, 1); +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_15); +x_19 = lean_array_get_size(x_16); +x_20 = lean_usize_of_nat(x_19); +lean_dec(x_19); +x_21 = 0; +x_22 = l_Array_forInUnsafe_loop___at_Lean_CodeAction_findInfoTree_x3f___spec__6(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_17, x_16, x_20, x_21, x_18); +x_23 = !lean_is_exclusive(x_22); +if (x_23 == 0) +{ +lean_object* x_24; lean_object* x_25; +x_24 = lean_ctor_get(x_22, 0); +x_25 = lean_ctor_get(x_24, 0); +lean_inc(x_25); +if (lean_obj_tag(x_25) == 0) +{ +lean_object* x_26; +x_26 = lean_ctor_get(x_24, 1); +lean_inc(x_26); +lean_dec(x_24); +lean_ctor_set(x_22, 0, x_26); +return x_22; +} +else +{ +uint8_t x_27; +lean_free_object(x_22); +lean_dec(x_24); +x_27 = !lean_is_exclusive(x_25); +if (x_27 == 0) +{ +return x_25; +} +else +{ +lean_object* x_28; lean_object* x_29; +x_28 = lean_ctor_get(x_25, 0); +lean_inc(x_28); +lean_dec(x_25); +x_29 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_29, 0, x_28); +return x_29; +} +} +} +else +{ +lean_object* x_30; lean_object* x_31; +x_30 = lean_ctor_get(x_22, 0); +lean_inc(x_30); +lean_dec(x_22); +x_31 = lean_ctor_get(x_30, 0); +lean_inc(x_31); +if (lean_obj_tag(x_31) == 0) +{ +lean_object* x_32; lean_object* x_33; +x_32 = lean_ctor_get(x_30, 1); +lean_inc(x_32); +lean_dec(x_30); +x_33 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_33, 0, x_32); +return x_33; +} +else +{ +lean_object* x_34; lean_object* x_35; lean_object* x_36; +lean_dec(x_30); +x_34 = lean_ctor_get(x_31, 0); +lean_inc(x_34); +if (lean_is_exclusive(x_31)) { + lean_ctor_release(x_31, 0); + x_35 = x_31; +} else { + lean_dec_ref(x_31); + x_35 = lean_box(0); +} +if (lean_is_scalar(x_35)) { + x_36 = lean_alloc_ctor(1, 1, 0); +} else { + x_36 = x_35; +} +lean_ctor_set(x_36, 0, x_34); +return x_36; +} +} +} +} +else +{ +lean_object* x_37; +x_37 = lean_ctor_get(x_11, 0); +lean_inc(x_37); +lean_dec(x_11); +if (lean_obj_tag(x_37) == 0) +{ +lean_object* x_38; lean_object* x_39; +lean_dec(x_7); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +x_38 = lean_ctor_get(x_37, 0); +lean_inc(x_38); +lean_dec(x_37); +x_39 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_39, 0, x_38); +return x_39; +} +else +{ +lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; size_t x_45; size_t x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; +x_40 = lean_ctor_get(x_37, 0); +lean_inc(x_40); +lean_dec(x_37); +x_41 = lean_ctor_get(x_8, 1); +x_42 = lean_box(0); +x_43 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_43, 0, x_42); +lean_ctor_set(x_43, 1, x_40); +x_44 = lean_array_get_size(x_41); +x_45 = lean_usize_of_nat(x_44); +lean_dec(x_44); +x_46 = 0; +x_47 = l_Array_forInUnsafe_loop___at_Lean_CodeAction_findInfoTree_x3f___spec__6(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_42, x_41, x_45, x_46, x_43); +x_48 = lean_ctor_get(x_47, 0); +lean_inc(x_48); +if (lean_is_exclusive(x_47)) { + lean_ctor_release(x_47, 0); + x_49 = x_47; +} else { + lean_dec_ref(x_47); + x_49 = lean_box(0); +} +x_50 = lean_ctor_get(x_48, 0); +lean_inc(x_50); +if (lean_obj_tag(x_50) == 0) +{ +lean_object* x_51; lean_object* x_52; +x_51 = lean_ctor_get(x_48, 1); +lean_inc(x_51); +lean_dec(x_48); +if (lean_is_scalar(x_49)) { + x_52 = lean_alloc_ctor(1, 1, 0); +} else { + x_52 = x_49; +} +lean_ctor_set(x_52, 0, x_51); +return x_52; +} +else +{ +lean_object* x_53; lean_object* x_54; lean_object* x_55; +lean_dec(x_49); +lean_dec(x_48); +x_53 = lean_ctor_get(x_50, 0); +lean_inc(x_53); +if (lean_is_exclusive(x_50)) { + lean_ctor_release(x_50, 0); + x_54 = x_50; +} else { + lean_dec_ref(x_50); + x_54 = lean_box(0); +} +if (lean_is_scalar(x_54)) { + x_55 = lean_alloc_ctor(1, 1, 0); +} else { + x_55 = x_54; +} +lean_ctor_set(x_55, 0, x_53); +return x_55; +} +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_CodeAction_findInfoTree_x3f___lambda__1(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_inc(x_1); +return x_1; +} +} +LEAN_EXPORT lean_object* l_Lean_CodeAction_findInfoTree_x3f___lambda__2(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) { +_start: +{ +lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; +x_9 = lean_box(0); +x_10 = l_Lean_CodeAction_findTactic_x3f_go___closed__7; +x_11 = l_Lean_PersistentArray_forIn___at_Lean_CodeAction_findInfoTree_x3f___spec__1(x_1, x_2, x_3, x_4, x_5, x_6, x_10, x_7, x_10); +x_12 = lean_ctor_get(x_11, 0); +lean_inc(x_12); +lean_dec(x_11); +x_13 = lean_ctor_get(x_12, 0); +lean_inc(x_13); +lean_dec(x_12); +if (lean_obj_tag(x_13) == 0) +{ +return x_9; +} +else +{ +uint8_t x_14; +x_14 = !lean_is_exclusive(x_13); +if (x_14 == 0) +{ +return x_13; +} +else +{ +lean_object* x_15; lean_object* x_16; +x_15 = lean_ctor_get(x_13, 0); +lean_inc(x_15); +lean_dec(x_13); +x_16 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_16, 0, x_15); +return x_16; +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_CodeAction_findInfoTree_x3f(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, uint8_t x_6) { +_start: +{ +switch (lean_obj_tag(x_4)) { +case 0: +{ +lean_object* x_7; lean_object* x_8; lean_object* x_9; +x_7 = lean_ctor_get(x_4, 0); +lean_inc(x_7); +x_8 = lean_ctor_get(x_4, 1); +lean_inc(x_8); +lean_dec(x_4); +x_9 = l_Lean_Elab_PartialContextInfo_mergeIntoOuter_x3f(x_7, x_3); +x_3 = x_9; +x_4 = x_8; +goto _start; +} +case 1: +{ +if (lean_obj_tag(x_3) == 0) +{ +lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; +x_11 = lean_ctor_get(x_4, 0); +lean_inc(x_11); +x_12 = lean_ctor_get(x_4, 1); +lean_inc(x_12); +lean_dec(x_4); +x_13 = lean_box(0); +x_14 = l_Lean_CodeAction_findInfoTree_x3f___lambda__2(x_1, x_2, x_3, x_5, x_6, x_11, x_12, x_13); +lean_dec(x_12); +lean_dec(x_11); +return x_14; +} +else +{ +lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; +x_15 = lean_ctor_get(x_4, 0); +lean_inc(x_15); +x_16 = lean_ctor_get(x_4, 1); +lean_inc(x_16); +x_17 = lean_ctor_get(x_3, 0); +lean_inc(x_17); +x_18 = l_Lean_Elab_Info_stx(x_15); +lean_inc(x_18); +x_19 = l_Lean_Syntax_getRange_x3f(x_18, x_6); +if (lean_obj_tag(x_19) == 0) +{ +lean_object* x_20; lean_object* x_21; +lean_dec(x_18); +lean_dec(x_17); +lean_dec(x_4); +x_20 = lean_box(0); +x_21 = l_Lean_CodeAction_findInfoTree_x3f___lambda__2(x_1, x_2, x_3, x_5, x_6, x_15, x_16, x_20); +lean_dec(x_16); +lean_dec(x_15); +return x_21; +} +else +{ +uint8_t x_22; +x_22 = !lean_is_exclusive(x_19); +if (x_22 == 0) +{ +lean_object* x_23; lean_object* x_24; uint8_t x_25; +x_23 = lean_ctor_get(x_19, 0); +x_24 = l_Lean_Syntax_getKind(x_18); +x_25 = lean_name_eq(x_24, x_1); +lean_dec(x_24); +if (x_25 == 0) +{ +lean_object* x_26; lean_object* x_27; +lean_free_object(x_19); +lean_dec(x_23); +lean_dec(x_17); +lean_dec(x_4); +x_26 = lean_box(0); +x_27 = l_Lean_CodeAction_findInfoTree_x3f___lambda__2(x_1, x_2, x_3, x_5, x_6, x_15, x_16, x_26); +lean_dec(x_16); +lean_dec(x_15); +return x_27; +} +else +{ +uint8_t x_28; +x_28 = l___private_Lean_Syntax_0__String_beqRange____x40_Lean_Syntax___hyg_91_(x_23, x_2); +lean_dec(x_23); +if (x_28 == 0) +{ +lean_object* x_29; lean_object* x_30; +lean_free_object(x_19); +lean_dec(x_17); +lean_dec(x_4); +x_29 = lean_box(0); +x_30 = l_Lean_CodeAction_findInfoTree_x3f___lambda__2(x_1, x_2, x_3, x_5, x_6, x_15, x_16, x_29); +lean_dec(x_16); +lean_dec(x_15); +return x_30; +} +else +{ +lean_object* x_31; uint8_t x_32; +lean_inc(x_5); +lean_inc(x_15); +lean_inc(x_17); +x_31 = lean_apply_2(x_5, x_17, x_15); +x_32 = lean_unbox(x_31); +lean_dec(x_31); +if (x_32 == 0) +{ +lean_object* x_33; lean_object* x_34; +lean_free_object(x_19); +lean_dec(x_17); +lean_dec(x_4); +x_33 = lean_box(0); +x_34 = l_Lean_CodeAction_findInfoTree_x3f___lambda__2(x_1, x_2, x_3, x_5, x_6, x_15, x_16, x_33); +lean_dec(x_16); +lean_dec(x_15); +return x_34; +} +else +{ +lean_object* x_35; +lean_dec(x_16); +lean_dec(x_15); +lean_dec(x_5); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +x_35 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_35, 0, x_17); +lean_ctor_set(x_35, 1, x_4); +lean_ctor_set(x_19, 0, x_35); +return x_19; +} +} +} +} +else +{ +lean_object* x_36; lean_object* x_37; uint8_t x_38; +x_36 = lean_ctor_get(x_19, 0); +lean_inc(x_36); +lean_dec(x_19); +x_37 = l_Lean_Syntax_getKind(x_18); +x_38 = lean_name_eq(x_37, x_1); +lean_dec(x_37); +if (x_38 == 0) +{ +lean_object* x_39; lean_object* x_40; +lean_dec(x_36); +lean_dec(x_17); +lean_dec(x_4); +x_39 = lean_box(0); +x_40 = l_Lean_CodeAction_findInfoTree_x3f___lambda__2(x_1, x_2, x_3, x_5, x_6, x_15, x_16, x_39); +lean_dec(x_16); +lean_dec(x_15); +return x_40; +} +else +{ +uint8_t x_41; +x_41 = l___private_Lean_Syntax_0__String_beqRange____x40_Lean_Syntax___hyg_91_(x_36, x_2); +lean_dec(x_36); +if (x_41 == 0) +{ +lean_object* x_42; lean_object* x_43; +lean_dec(x_17); +lean_dec(x_4); +x_42 = lean_box(0); +x_43 = l_Lean_CodeAction_findInfoTree_x3f___lambda__2(x_1, x_2, x_3, x_5, x_6, x_15, x_16, x_42); +lean_dec(x_16); +lean_dec(x_15); +return x_43; +} +else +{ +lean_object* x_44; uint8_t x_45; +lean_inc(x_5); +lean_inc(x_15); +lean_inc(x_17); +x_44 = lean_apply_2(x_5, x_17, x_15); +x_45 = lean_unbox(x_44); +lean_dec(x_44); +if (x_45 == 0) +{ +lean_object* x_46; lean_object* x_47; +lean_dec(x_17); +lean_dec(x_4); +x_46 = lean_box(0); +x_47 = l_Lean_CodeAction_findInfoTree_x3f___lambda__2(x_1, x_2, x_3, x_5, x_6, x_15, x_16, x_46); +lean_dec(x_16); +lean_dec(x_15); +return x_47; +} +else +{ +lean_object* x_48; lean_object* x_49; +lean_dec(x_16); +lean_dec(x_15); +lean_dec(x_5); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +x_48 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_48, 0, x_17); +lean_ctor_set(x_48, 1, x_4); +x_49 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_49, 0, x_48); +return x_49; +} +} +} +} +} +} +} +default: +{ +lean_object* x_50; +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +x_50 = lean_box(0); +return x_50; +} +} +} +} +LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_CodeAction_findInfoTree_x3f___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, lean_object* x_11, lean_object* x_12, lean_object* x_13) { +_start: +{ +uint8_t x_14; size_t x_15; size_t x_16; lean_object* x_17; +x_14 = lean_unbox(x_5); +lean_dec(x_5); +x_15 = lean_unbox_usize(x_11); +lean_dec(x_11); +x_16 = lean_unbox_usize(x_12); +lean_dec(x_12); +x_17 = l_Array_forInUnsafe_loop___at_Lean_CodeAction_findInfoTree_x3f___spec__3(x_1, x_2, x_3, x_4, x_14, x_6, x_7, x_8, x_9, x_10, x_15, x_16, x_13); +lean_dec(x_10); +lean_dec(x_8); +lean_dec(x_6); +return x_17; +} +} +LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_CodeAction_findInfoTree_x3f___spec__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) { +_start: +{ +uint8_t x_13; size_t x_14; size_t x_15; lean_object* x_16; +x_13 = lean_unbox(x_5); +lean_dec(x_5); +x_14 = lean_unbox_usize(x_10); +lean_dec(x_10); +x_15 = lean_unbox_usize(x_11); +lean_dec(x_11); +x_16 = l_Array_forInUnsafe_loop___at_Lean_CodeAction_findInfoTree_x3f___spec__4(x_1, x_2, x_3, x_4, x_13, x_6, x_7, x_8, x_9, x_14, x_15, x_12); +lean_dec(x_9); +lean_dec(x_6); +return x_16; +} +} +LEAN_EXPORT lean_object* l_Lean_PersistentArray_forInAux___at_Lean_CodeAction_findInfoTree_x3f___spec__2___lambda__1___boxed(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; +x_3 = l_Lean_PersistentArray_forInAux___at_Lean_CodeAction_findInfoTree_x3f___spec__2___lambda__1(x_1, x_2); +lean_dec(x_2); +return x_3; +} +} +LEAN_EXPORT lean_object* l_Lean_PersistentArray_forInAux___at_Lean_CodeAction_findInfoTree_x3f___spec__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) { +_start: +{ +uint8_t x_11; lean_object* x_12; +x_11 = lean_unbox(x_5); +lean_dec(x_5); +x_12 = l_Lean_PersistentArray_forInAux___at_Lean_CodeAction_findInfoTree_x3f___spec__2(x_1, x_2, x_3, x_4, x_11, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_6); +return x_12; +} +} +LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_CodeAction_findInfoTree_x3f___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, lean_object* x_12) { +_start: +{ +uint8_t x_13; size_t x_14; size_t x_15; lean_object* x_16; +x_13 = lean_unbox(x_5); +lean_dec(x_5); +x_14 = lean_unbox_usize(x_10); +lean_dec(x_10); +x_15 = lean_unbox_usize(x_11); +lean_dec(x_11); +x_16 = l_Array_forInUnsafe_loop___at_Lean_CodeAction_findInfoTree_x3f___spec__5(x_1, x_2, x_3, x_4, x_13, x_6, x_7, x_8, x_9, x_14, x_15, x_12); +lean_dec(x_9); +lean_dec(x_6); +return x_16; +} +} +LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_CodeAction_findInfoTree_x3f___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, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +_start: +{ +uint8_t x_13; size_t x_14; size_t x_15; lean_object* x_16; +x_13 = lean_unbox(x_5); +lean_dec(x_5); +x_14 = lean_unbox_usize(x_10); +lean_dec(x_10); +x_15 = lean_unbox_usize(x_11); +lean_dec(x_11); +x_16 = l_Array_forInUnsafe_loop___at_Lean_CodeAction_findInfoTree_x3f___spec__6(x_1, x_2, x_3, x_4, x_13, x_6, x_7, x_8, x_9, x_14, x_15, x_12); +lean_dec(x_9); +lean_dec(x_6); +return x_16; +} +} +LEAN_EXPORT lean_object* l_Lean_PersistentArray_forIn___at_Lean_CodeAction_findInfoTree_x3f___spec__1___lambda__1___boxed(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; +x_3 = l_Lean_PersistentArray_forIn___at_Lean_CodeAction_findInfoTree_x3f___spec__1___lambda__1(x_1, x_2); +lean_dec(x_2); +return x_3; +} +} +LEAN_EXPORT lean_object* l_Lean_PersistentArray_forIn___at_Lean_CodeAction_findInfoTree_x3f___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: +{ +uint8_t x_10; lean_object* x_11; +x_10 = lean_unbox(x_5); +lean_dec(x_5); +x_11 = l_Lean_PersistentArray_forIn___at_Lean_CodeAction_findInfoTree_x3f___spec__1(x_1, x_2, x_3, x_4, x_10, x_6, x_7, x_8, x_9); +lean_dec(x_8); +lean_dec(x_6); +return x_11; +} +} +LEAN_EXPORT lean_object* l_Lean_CodeAction_findInfoTree_x3f___lambda__1___boxed(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; +x_3 = l_Lean_CodeAction_findInfoTree_x3f___lambda__1(x_1, x_2); +lean_dec(x_2); +lean_dec(x_1); +return x_3; +} +} +LEAN_EXPORT lean_object* l_Lean_CodeAction_findInfoTree_x3f___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) { +_start: +{ +uint8_t x_9; lean_object* x_10; +x_9 = lean_unbox(x_5); +lean_dec(x_5); +x_10 = l_Lean_CodeAction_findInfoTree_x3f___lambda__2(x_1, x_2, x_3, x_4, x_9, x_6, x_7, x_8); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +return x_10; +} +} +LEAN_EXPORT lean_object* l_Lean_CodeAction_findInfoTree_x3f___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_7; lean_object* x_8; +x_7 = lean_unbox(x_6); +lean_dec(x_6); +x_8 = l_Lean_CodeAction_findInfoTree_x3f(x_1, x_2, x_3, x_4, x_5, x_7); +return x_8; +} +} +static lean_object* _init_l_panic___at_Lean_CodeAction_cmdCodeActionProvider___spec__1___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Server_instInhabitedRequestError; +x_2 = lean_alloc_closure((void*)(l_EStateM_instInhabitedEStateM___rarg), 2, 1); +lean_closure_set(x_2, 0, x_1); +return x_2; +} +} +static lean_object* _init_l_panic___at_Lean_CodeAction_cmdCodeActionProvider___spec__1___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_panic___at_Lean_CodeAction_cmdCodeActionProvider___spec__1___closed__1; +x_2 = lean_alloc_closure((void*)(l_instInhabitedReaderT___rarg___boxed), 2, 1); +lean_closure_set(x_2, 0, x_1); +return x_2; +} +} +LEAN_EXPORT lean_object* l_panic___at_Lean_CodeAction_cmdCodeActionProvider___spec__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; +x_4 = l_panic___at_Lean_CodeAction_cmdCodeActionProvider___spec__1___closed__2; +x_5 = lean_panic_fn(x_4, x_1); +x_6 = lean_apply_2(x_5, x_2, x_3); +return x_6; +} +} +LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_CodeAction_cmdCodeActionProvider___spec__2(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; +lean_dec(x_9); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +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 +{ +lean_object* x_13; lean_object* x_14; +x_13 = lean_array_uget(x_5, x_7); +lean_inc(x_9); +lean_inc(x_4); +lean_inc(x_3); +lean_inc(x_2); +lean_inc(x_1); +x_14 = lean_apply_6(x_13, x_1, x_2, x_3, x_4, x_9, x_10); +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; +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 = l_Array_append___rarg(x_8, x_15); +x_18 = 1; +x_19 = lean_usize_add(x_7, x_18); +x_7 = x_19; +x_8 = x_17; +x_10 = x_16; +goto _start; +} +else +{ +lean_object* x_21; size_t x_22; size_t x_23; +x_21 = lean_ctor_get(x_14, 1); +lean_inc(x_21); +lean_dec(x_14); +x_22 = 1; +x_23 = lean_usize_add(x_7, x_22); +x_7 = x_23; +x_10 = x_21; +goto _start; +} +} +} +} +LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_CodeAction_cmdCodeActionProvider___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; +lean_dec(x_9); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +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 +{ +lean_object* x_13; lean_object* x_14; +x_13 = lean_array_uget(x_5, x_7); +lean_inc(x_9); +lean_inc(x_4); +lean_inc(x_3); +lean_inc(x_2); +lean_inc(x_1); +x_14 = lean_apply_6(x_13, x_1, x_2, x_3, x_4, x_9, x_10); +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; +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 = l_Array_append___rarg(x_8, x_15); +x_18 = 1; +x_19 = lean_usize_add(x_7, x_18); +x_7 = x_19; +x_8 = x_17; +x_10 = x_16; +goto _start; +} +else +{ +lean_object* x_21; size_t x_22; size_t x_23; +x_21 = lean_ctor_get(x_14, 1); +lean_inc(x_21); +lean_dec(x_14); +x_22 = 1; +x_23 = lean_usize_add(x_7, x_22); +x_7 = x_23; +x_10 = x_21; +goto _start; +} +} +} +} +LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_CodeAction_cmdCodeActionProvider___spec__4___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) { +_start: +{ +lean_object* x_10; lean_object* x_11; size_t x_12; size_t x_13; lean_object* x_14; uint8_t x_15; +x_10 = lean_ctor_get(x_1, 0); +x_11 = lean_array_get_size(x_10); +x_12 = lean_usize_of_nat(x_11); +lean_dec(x_11); +x_13 = 0; +x_14 = l_Array_forInUnsafe_loop___at_Lean_CodeAction_cmdCodeActionProvider___spec__2(x_2, x_3, x_4, x_5, x_10, x_12, x_13, x_6, x_8, x_9); +x_15 = !lean_is_exclusive(x_14); +if (x_15 == 0) +{ +lean_object* x_16; lean_object* x_17; +x_16 = lean_ctor_get(x_14, 0); +x_17 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_17, 0, x_16); +lean_ctor_set(x_14, 0, x_17); +return x_14; +} +else +{ +lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; +x_18 = lean_ctor_get(x_14, 0); +x_19 = lean_ctor_get(x_14, 1); +lean_inc(x_19); +lean_inc(x_18); +lean_dec(x_14); +x_20 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_20, 0, x_18); +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; +} +} +} +static lean_object* _init_l_Array_forInUnsafe_loop___at_Lean_CodeAction_cmdCodeActionProvider___spec__4___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("Lean.Server.CodeActions.Provider", 32); +return x_1; +} +} +static lean_object* _init_l_Array_forInUnsafe_loop___at_Lean_CodeAction_cmdCodeActionProvider___spec__4___closed__2() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("Lean.CodeAction.cmdCodeActionProvider", 37); +return x_1; +} +} +static lean_object* _init_l_Array_forInUnsafe_loop___at_Lean_CodeAction_cmdCodeActionProvider___spec__4___closed__3() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("unreachable code has been reached", 33); +return x_1; +} +} +static lean_object* _init_l_Array_forInUnsafe_loop___at_Lean_CodeAction_cmdCodeActionProvider___spec__4___closed__4() { +_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_Array_forInUnsafe_loop___at_Lean_CodeAction_cmdCodeActionProvider___spec__4___closed__1; +x_2 = l_Array_forInUnsafe_loop___at_Lean_CodeAction_cmdCodeActionProvider___spec__4___closed__2; +x_3 = lean_unsigned_to_nat(179u); +x_4 = lean_unsigned_to_nat(48u); +x_5 = l_Array_forInUnsafe_loop___at_Lean_CodeAction_cmdCodeActionProvider___spec__4___closed__3; +x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); +return x_6; +} +} +LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_CodeAction_cmdCodeActionProvider___spec__4(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: +{ +lean_object* x_10; lean_object* x_11; uint8_t x_17; +x_17 = lean_usize_dec_lt(x_6, x_5); +if (x_17 == 0) +{ +lean_object* x_18; +lean_dec(x_8); +lean_dec(x_2); +lean_dec(x_1); +x_18 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_18, 0, x_7); +lean_ctor_set(x_18, 1, x_9); +return x_18; +} +else +{ +lean_object* x_19; lean_object* x_20; +x_19 = lean_array_uget(x_4, x_6); +x_20 = lean_ctor_get(x_19, 1); +lean_inc(x_20); +if (lean_obj_tag(x_20) == 1) +{ +lean_object* x_21; +x_21 = lean_ctor_get(x_20, 0); +lean_inc(x_21); +if (lean_obj_tag(x_21) == 2) +{ +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_22 = lean_ctor_get(x_19, 0); +lean_inc(x_22); +lean_dec(x_19); +x_23 = lean_ctor_get(x_21, 0); +lean_inc(x_23); +lean_dec(x_21); +x_24 = lean_ctor_get(x_3, 1); +x_25 = lean_ctor_get(x_23, 1); +lean_inc(x_25); +lean_dec(x_23); +x_26 = l_Lean_Syntax_getKind(x_25); +x_27 = l_Lean_RBNode_find___at_Lean_CodeAction_CommandCodeActions_insert___spec__1(x_24, x_26); +lean_dec(x_26); +if (lean_obj_tag(x_27) == 0) +{ +lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; +x_28 = lean_box(0); +lean_inc(x_8); +lean_inc(x_2); +lean_inc(x_1); +x_29 = l_Array_forInUnsafe_loop___at_Lean_CodeAction_cmdCodeActionProvider___spec__4___lambda__1(x_3, x_1, x_2, x_22, x_20, x_7, x_28, x_8, x_9); +x_30 = lean_ctor_get(x_29, 0); +lean_inc(x_30); +x_31 = lean_ctor_get(x_29, 1); +lean_inc(x_31); +lean_dec(x_29); +x_10 = x_30; +x_11 = x_31; +goto block_16; +} +else +{ +lean_object* x_32; lean_object* x_33; size_t x_34; size_t 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; +x_32 = lean_ctor_get(x_27, 0); +lean_inc(x_32); +lean_dec(x_27); +x_33 = lean_array_get_size(x_32); +x_34 = lean_usize_of_nat(x_33); +lean_dec(x_33); +x_35 = 0; +lean_inc(x_8); +lean_inc(x_20); +lean_inc(x_22); +lean_inc(x_2); +lean_inc(x_1); +x_36 = l_Array_forInUnsafe_loop___at_Lean_CodeAction_cmdCodeActionProvider___spec__3(x_1, x_2, x_22, x_20, x_32, x_34, x_35, x_7, x_8, x_9); +lean_dec(x_32); +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 = lean_box(0); +lean_inc(x_8); +lean_inc(x_2); +lean_inc(x_1); +x_40 = l_Array_forInUnsafe_loop___at_Lean_CodeAction_cmdCodeActionProvider___spec__4___lambda__1(x_3, x_1, x_2, x_22, x_20, x_37, x_39, x_8, x_38); +x_41 = lean_ctor_get(x_40, 0); +lean_inc(x_41); +x_42 = lean_ctor_get(x_40, 1); +lean_inc(x_42); +lean_dec(x_40); +x_10 = x_41; +x_11 = x_42; +goto block_16; +} +} +else +{ +lean_object* x_43; lean_object* x_44; +lean_dec(x_21); +lean_dec(x_20); +lean_dec(x_19); +x_43 = l_Array_forInUnsafe_loop___at_Lean_CodeAction_cmdCodeActionProvider___spec__4___closed__4; +lean_inc(x_8); +x_44 = l_panic___at_Lean_CodeAction_cmdCodeActionProvider___spec__1(x_43, x_8, x_9); +if (lean_obj_tag(x_44) == 0) +{ +lean_object* x_45; lean_object* x_46; +x_45 = lean_ctor_get(x_44, 1); +lean_inc(x_45); +lean_dec(x_44); +x_46 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_46, 0, x_7); +x_10 = x_46; +x_11 = x_45; +goto block_16; +} +else +{ +uint8_t x_47; +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_2); +lean_dec(x_1); +x_47 = !lean_is_exclusive(x_44); +if (x_47 == 0) +{ +return x_44; +} +else +{ +lean_object* x_48; lean_object* x_49; lean_object* x_50; +x_48 = lean_ctor_get(x_44, 0); +x_49 = lean_ctor_get(x_44, 1); +lean_inc(x_49); +lean_inc(x_48); +lean_dec(x_44); +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 +{ +lean_object* x_51; lean_object* x_52; +lean_dec(x_20); +lean_dec(x_19); +x_51 = l_Array_forInUnsafe_loop___at_Lean_CodeAction_cmdCodeActionProvider___spec__4___closed__4; +lean_inc(x_8); +x_52 = l_panic___at_Lean_CodeAction_cmdCodeActionProvider___spec__1(x_51, x_8, x_9); +if (lean_obj_tag(x_52) == 0) +{ +lean_object* x_53; lean_object* x_54; +x_53 = lean_ctor_get(x_52, 1); +lean_inc(x_53); +lean_dec(x_52); +x_54 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_54, 0, x_7); +x_10 = x_54; +x_11 = x_53; +goto block_16; +} +else +{ +uint8_t x_55; +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_2); +lean_dec(x_1); +x_55 = !lean_is_exclusive(x_52); +if (x_55 == 0) +{ +return x_52; +} +else +{ +lean_object* x_56; lean_object* x_57; lean_object* x_58; +x_56 = lean_ctor_get(x_52, 0); +x_57 = lean_ctor_get(x_52, 1); +lean_inc(x_57); +lean_inc(x_56); +lean_dec(x_52); +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; +} +} +} +} +block_16: +{ +lean_object* x_12; size_t x_13; size_t x_14; +x_12 = lean_ctor_get(x_10, 0); +lean_inc(x_12); +lean_dec(x_10); +x_13 = 1; +x_14 = lean_usize_add(x_6, x_13); +x_6 = x_14; +x_7 = x_12; +x_9 = x_11; +goto _start; +} +} +} +LEAN_EXPORT lean_object* l_Lean_CodeAction_cmdCodeActionProvider___lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +_start: +{ +if (lean_obj_tag(x_4) == 1) +{ +lean_object* x_6; +x_6 = lean_ctor_get(x_4, 0); +lean_inc(x_6); +if (lean_obj_tag(x_6) == 2) +{ +lean_object* x_7; lean_object* x_8; uint8_t x_9; lean_object* x_10; +x_7 = lean_ctor_get(x_6, 0); +lean_inc(x_7); +lean_dec(x_6); +x_8 = lean_ctor_get(x_7, 1); +lean_inc(x_8); +lean_dec(x_7); +x_9 = 1; +x_10 = l_Lean_Syntax_getPos_x3f(x_8, x_9); +if (lean_obj_tag(x_10) == 0) +{ +lean_dec(x_8); +lean_dec(x_4); +lean_dec(x_3); +return x_5; +} +else +{ +lean_object* x_11; lean_object* x_12; +x_11 = lean_ctor_get(x_10, 0); +lean_inc(x_11); +lean_dec(x_10); +x_12 = l_Lean_Syntax_getTailPos_x3f(x_8, x_9); +if (lean_obj_tag(x_12) == 0) +{ +lean_dec(x_11); +lean_dec(x_4); +lean_dec(x_3); +return x_5; +} +else +{ +lean_object* x_13; uint8_t x_14; +x_13 = lean_ctor_get(x_12, 0); +lean_inc(x_13); +lean_dec(x_12); +x_14 = lean_nat_dec_le(x_11, x_1); +lean_dec(x_11); +if (x_14 == 0) +{ +lean_dec(x_13); +lean_dec(x_4); +lean_dec(x_3); +return x_5; +} +else +{ +uint8_t x_15; +x_15 = lean_nat_dec_le(x_2, x_13); +lean_dec(x_13); +if (x_15 == 0) +{ +lean_dec(x_4); +lean_dec(x_3); +return x_5; +} +else +{ +lean_object* x_16; lean_object* x_17; +x_16 = lean_box(0); +x_17 = l_Lean_CodeAction_holeCodeActionProvider___lambda__1(x_3, x_4, x_5, x_16); +return x_17; +} +} +} +} +} +else +{ +lean_dec(x_6); +lean_dec(x_4); +lean_dec(x_3); +return x_5; +} +} +else +{ +lean_dec(x_4); +lean_dec(x_3); +return x_5; +} +} +} +static lean_object* _init_l_Lean_CodeAction_cmdCodeActionProvider___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_CodeAction_holeCodeActionProvider___closed__1; +x_2 = l_Lean_CodeAction_instInhabitedCommandCodeActions; +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_CodeAction_cmdCodeActionProvider___closed__2() { +_start: +{ +lean_object* x_1; +x_1 = l_Lean_CodeAction_cmdCodeActionExt; +return x_1; +} +} +LEAN_EXPORT lean_object* l_Lean_CodeAction_cmdCodeActionProvider(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; 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; size_t x_25; size_t x_26; lean_object* x_27; +x_5 = l_Lean_Server_RequestM_readDoc___at_Lean_Server_RequestM_withWaitFindSnapAtPos___spec__1(x_3, 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_6, 0); +lean_inc(x_8); +lean_dec(x_6); +x_9 = lean_ctor_get(x_8, 2); +lean_inc(x_9); +lean_dec(x_8); +x_10 = lean_ctor_get(x_1, 3); +lean_inc(x_10); +x_11 = lean_ctor_get(x_10, 0); +lean_inc(x_11); +x_12 = l_Lean_FileMap_lspPosToUtf8Pos(x_9, x_11); +x_13 = lean_ctor_get(x_10, 1); +lean_inc(x_13); +lean_dec(x_10); +x_14 = l_Lean_FileMap_lspPosToUtf8Pos(x_9, x_13); +lean_dec(x_9); +x_15 = lean_alloc_closure((void*)(l_Lean_CodeAction_cmdCodeActionProvider___lambda__1___boxed), 5, 2); +lean_closure_set(x_15, 0, x_14); +lean_closure_set(x_15, 1, x_12); +lean_inc(x_2); +x_16 = l_Lean_Server_Snapshots_Snapshot_infoTree(x_2); +x_17 = l_Lean_CodeAction_holeCodeActionProvider___closed__1; +x_18 = l_Lean_Elab_InfoTree_foldInfoTree___rarg(x_17, x_15, x_16); +x_19 = l_Lean_Server_Snapshots_Snapshot_env(x_2); +x_20 = l_Lean_CodeAction_cmdCodeActionProvider___closed__1; +x_21 = l_Lean_CodeAction_cmdCodeActionProvider___closed__2; +x_22 = l_Lean_PersistentEnvExtension_getState___rarg(x_20, x_21, x_19); +lean_dec(x_19); +x_23 = lean_ctor_get(x_22, 1); +lean_inc(x_23); +lean_dec(x_22); +x_24 = lean_array_get_size(x_18); +x_25 = lean_usize_of_nat(x_24); +lean_dec(x_24); +x_26 = 0; +x_27 = l_Array_forInUnsafe_loop___at_Lean_CodeAction_cmdCodeActionProvider___spec__4(x_1, x_2, x_23, x_18, x_25, x_26, x_17, x_3, x_7); +lean_dec(x_18); +lean_dec(x_23); +if (lean_obj_tag(x_27) == 0) +{ +uint8_t x_28; +x_28 = !lean_is_exclusive(x_27); +if (x_28 == 0) +{ +return x_27; +} +else +{ +lean_object* x_29; lean_object* x_30; lean_object* x_31; +x_29 = lean_ctor_get(x_27, 0); +x_30 = lean_ctor_get(x_27, 1); +lean_inc(x_30); +lean_inc(x_29); +lean_dec(x_27); +x_31 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_31, 0, x_29); +lean_ctor_set(x_31, 1, x_30); +return x_31; +} +} +else +{ +uint8_t x_32; +x_32 = !lean_is_exclusive(x_27); +if (x_32 == 0) +{ +return x_27; +} +else +{ +lean_object* x_33; lean_object* x_34; lean_object* x_35; +x_33 = lean_ctor_get(x_27, 0); +x_34 = lean_ctor_get(x_27, 1); +lean_inc(x_34); +lean_inc(x_33); +lean_dec(x_27); +x_35 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_35, 0, x_33); +lean_ctor_set(x_35, 1, x_34); +return x_35; +} +} +} +} +LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_CodeAction_cmdCodeActionProvider___spec__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) { +_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_forInUnsafe_loop___at_Lean_CodeAction_cmdCodeActionProvider___spec__2(x_1, x_2, x_3, x_4, x_5, x_11, x_12, x_8, x_9, x_10); +lean_dec(x_5); +return x_13; +} +} +LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_CodeAction_cmdCodeActionProvider___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_forInUnsafe_loop___at_Lean_CodeAction_cmdCodeActionProvider___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_5); +return x_13; +} +} +LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_CodeAction_cmdCodeActionProvider___spec__4___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) { +_start: +{ +lean_object* x_10; +x_10 = l_Array_forInUnsafe_loop___at_Lean_CodeAction_cmdCodeActionProvider___spec__4___lambda__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +lean_dec(x_7); +lean_dec(x_1); +return x_10; +} +} +LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_CodeAction_cmdCodeActionProvider___spec__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) { +_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_forInUnsafe_loop___at_Lean_CodeAction_cmdCodeActionProvider___spec__4(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); +return x_12; +} +} +LEAN_EXPORT lean_object* l_Lean_CodeAction_cmdCodeActionProvider___lambda__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +_start: +{ +lean_object* x_6; +x_6 = l_Lean_CodeAction_cmdCodeActionProvider___lambda__1(x_1, x_2, x_3, x_4, x_5); +lean_dec(x_2); +lean_dec(x_1); +return x_6; +} +} +lean_object* initialize_Init(uint8_t builtin, lean_object*); +lean_object* initialize_Lean_Elab_BuiltinTerm(uint8_t builtin, lean_object*); +lean_object* initialize_Lean_Elab_BuiltinNotation(uint8_t builtin, lean_object*); +lean_object* initialize_Lean_Server_InfoUtils(uint8_t builtin, lean_object*); +lean_object* initialize_Lean_Server_CodeActions_Attr(uint8_t builtin, lean_object*); +static bool _G_initialized = false; +LEAN_EXPORT lean_object* initialize_Lean_Server_CodeActions_Provider(uint8_t builtin, lean_object* w) { +lean_object * res; +if (_G_initialized) return lean_io_result_mk_ok(lean_box(0)); +_G_initialized = true; +res = initialize_Init(builtin, lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +res = initialize_Lean_Elab_BuiltinTerm(builtin, lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +res = initialize_Lean_Elab_BuiltinNotation(builtin, lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +res = initialize_Lean_Server_InfoUtils(builtin, lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +res = initialize_Lean_Server_CodeActions_Attr(builtin, lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +l_Lean_CodeAction_holeCodeActionProvider___lambda__3___closed__1 = _init_l_Lean_CodeAction_holeCodeActionProvider___lambda__3___closed__1(); +lean_mark_persistent(l_Lean_CodeAction_holeCodeActionProvider___lambda__3___closed__1); +l_Lean_CodeAction_holeCodeActionProvider___lambda__3___closed__2 = _init_l_Lean_CodeAction_holeCodeActionProvider___lambda__3___closed__2(); +lean_mark_persistent(l_Lean_CodeAction_holeCodeActionProvider___lambda__3___closed__2); +l_Lean_CodeAction_holeCodeActionProvider___lambda__3___closed__3 = _init_l_Lean_CodeAction_holeCodeActionProvider___lambda__3___closed__3(); +lean_mark_persistent(l_Lean_CodeAction_holeCodeActionProvider___lambda__3___closed__3); +l_Lean_CodeAction_holeCodeActionProvider___lambda__3___closed__4 = _init_l_Lean_CodeAction_holeCodeActionProvider___lambda__3___closed__4(); +lean_mark_persistent(l_Lean_CodeAction_holeCodeActionProvider___lambda__3___closed__4); +l_Lean_CodeAction_holeCodeActionProvider___lambda__3___closed__5 = _init_l_Lean_CodeAction_holeCodeActionProvider___lambda__3___closed__5(); +lean_mark_persistent(l_Lean_CodeAction_holeCodeActionProvider___lambda__3___closed__5); +l_Lean_CodeAction_holeCodeActionProvider___lambda__3___closed__6 = _init_l_Lean_CodeAction_holeCodeActionProvider___lambda__3___closed__6(); +lean_mark_persistent(l_Lean_CodeAction_holeCodeActionProvider___lambda__3___closed__6); +l_Lean_CodeAction_holeCodeActionProvider___lambda__3___closed__7 = _init_l_Lean_CodeAction_holeCodeActionProvider___lambda__3___closed__7(); +lean_mark_persistent(l_Lean_CodeAction_holeCodeActionProvider___lambda__3___closed__7); +l_Lean_CodeAction_holeCodeActionProvider___lambda__3___closed__8 = _init_l_Lean_CodeAction_holeCodeActionProvider___lambda__3___closed__8(); +lean_mark_persistent(l_Lean_CodeAction_holeCodeActionProvider___lambda__3___closed__8); +l_Lean_CodeAction_holeCodeActionProvider___lambda__3___closed__9 = _init_l_Lean_CodeAction_holeCodeActionProvider___lambda__3___closed__9(); +lean_mark_persistent(l_Lean_CodeAction_holeCodeActionProvider___lambda__3___closed__9); +l_Lean_CodeAction_holeCodeActionProvider___lambda__3___closed__10 = _init_l_Lean_CodeAction_holeCodeActionProvider___lambda__3___closed__10(); +lean_mark_persistent(l_Lean_CodeAction_holeCodeActionProvider___lambda__3___closed__10); +l_Lean_CodeAction_holeCodeActionProvider___lambda__3___closed__11 = _init_l_Lean_CodeAction_holeCodeActionProvider___lambda__3___closed__11(); +lean_mark_persistent(l_Lean_CodeAction_holeCodeActionProvider___lambda__3___closed__11); +l_Lean_CodeAction_holeCodeActionProvider___lambda__3___closed__12 = _init_l_Lean_CodeAction_holeCodeActionProvider___lambda__3___closed__12(); +lean_mark_persistent(l_Lean_CodeAction_holeCodeActionProvider___lambda__3___closed__12); +l_Lean_CodeAction_holeCodeActionProvider___closed__1 = _init_l_Lean_CodeAction_holeCodeActionProvider___closed__1(); +lean_mark_persistent(l_Lean_CodeAction_holeCodeActionProvider___closed__1); +l_Lean_CodeAction_holeCodeActionProvider___closed__2 = _init_l_Lean_CodeAction_holeCodeActionProvider___closed__2(); +lean_mark_persistent(l_Lean_CodeAction_holeCodeActionProvider___closed__2); +l_Lean_CodeAction_holeCodeActionProvider___closed__3 = _init_l_Lean_CodeAction_holeCodeActionProvider___closed__3(); +lean_mark_persistent(l_Lean_CodeAction_holeCodeActionProvider___closed__3); +l_Lean_CodeAction_findTactic_x3f_visit___closed__1 = _init_l_Lean_CodeAction_findTactic_x3f_visit___closed__1(); +lean_mark_persistent(l_Lean_CodeAction_findTactic_x3f_visit___closed__1); +l_Lean_CodeAction_findTactic_x3f_go___closed__1 = _init_l_Lean_CodeAction_findTactic_x3f_go___closed__1(); +lean_mark_persistent(l_Lean_CodeAction_findTactic_x3f_go___closed__1); +l_Lean_CodeAction_findTactic_x3f_go___closed__2 = _init_l_Lean_CodeAction_findTactic_x3f_go___closed__2(); +lean_mark_persistent(l_Lean_CodeAction_findTactic_x3f_go___closed__2); +l_Lean_CodeAction_findTactic_x3f_go___closed__3 = _init_l_Lean_CodeAction_findTactic_x3f_go___closed__3(); +lean_mark_persistent(l_Lean_CodeAction_findTactic_x3f_go___closed__3); +l_Lean_CodeAction_findTactic_x3f_go___closed__4 = _init_l_Lean_CodeAction_findTactic_x3f_go___closed__4(); +lean_mark_persistent(l_Lean_CodeAction_findTactic_x3f_go___closed__4); +l_Lean_CodeAction_findTactic_x3f_go___closed__5 = _init_l_Lean_CodeAction_findTactic_x3f_go___closed__5(); +lean_mark_persistent(l_Lean_CodeAction_findTactic_x3f_go___closed__5); +l_Lean_CodeAction_findTactic_x3f_go___closed__6 = _init_l_Lean_CodeAction_findTactic_x3f_go___closed__6(); +lean_mark_persistent(l_Lean_CodeAction_findTactic_x3f_go___closed__6); +l_Lean_CodeAction_findTactic_x3f_go___closed__7 = _init_l_Lean_CodeAction_findTactic_x3f_go___closed__7(); +lean_mark_persistent(l_Lean_CodeAction_findTactic_x3f_go___closed__7); +l_panic___at_Lean_CodeAction_cmdCodeActionProvider___spec__1___closed__1 = _init_l_panic___at_Lean_CodeAction_cmdCodeActionProvider___spec__1___closed__1(); +lean_mark_persistent(l_panic___at_Lean_CodeAction_cmdCodeActionProvider___spec__1___closed__1); +l_panic___at_Lean_CodeAction_cmdCodeActionProvider___spec__1___closed__2 = _init_l_panic___at_Lean_CodeAction_cmdCodeActionProvider___spec__1___closed__2(); +lean_mark_persistent(l_panic___at_Lean_CodeAction_cmdCodeActionProvider___spec__1___closed__2); +l_Array_forInUnsafe_loop___at_Lean_CodeAction_cmdCodeActionProvider___spec__4___closed__1 = _init_l_Array_forInUnsafe_loop___at_Lean_CodeAction_cmdCodeActionProvider___spec__4___closed__1(); +lean_mark_persistent(l_Array_forInUnsafe_loop___at_Lean_CodeAction_cmdCodeActionProvider___spec__4___closed__1); +l_Array_forInUnsafe_loop___at_Lean_CodeAction_cmdCodeActionProvider___spec__4___closed__2 = _init_l_Array_forInUnsafe_loop___at_Lean_CodeAction_cmdCodeActionProvider___spec__4___closed__2(); +lean_mark_persistent(l_Array_forInUnsafe_loop___at_Lean_CodeAction_cmdCodeActionProvider___spec__4___closed__2); +l_Array_forInUnsafe_loop___at_Lean_CodeAction_cmdCodeActionProvider___spec__4___closed__3 = _init_l_Array_forInUnsafe_loop___at_Lean_CodeAction_cmdCodeActionProvider___spec__4___closed__3(); +lean_mark_persistent(l_Array_forInUnsafe_loop___at_Lean_CodeAction_cmdCodeActionProvider___spec__4___closed__3); +l_Array_forInUnsafe_loop___at_Lean_CodeAction_cmdCodeActionProvider___spec__4___closed__4 = _init_l_Array_forInUnsafe_loop___at_Lean_CodeAction_cmdCodeActionProvider___spec__4___closed__4(); +lean_mark_persistent(l_Array_forInUnsafe_loop___at_Lean_CodeAction_cmdCodeActionProvider___spec__4___closed__4); +l_Lean_CodeAction_cmdCodeActionProvider___closed__1 = _init_l_Lean_CodeAction_cmdCodeActionProvider___closed__1(); +lean_mark_persistent(l_Lean_CodeAction_cmdCodeActionProvider___closed__1); +l_Lean_CodeAction_cmdCodeActionProvider___closed__2 = _init_l_Lean_CodeAction_cmdCodeActionProvider___closed__2(); +lean_mark_persistent(l_Lean_CodeAction_cmdCodeActionProvider___closed__2); +return lean_io_result_mk_ok(lean_box(0)); +} +#ifdef __cplusplus +} +#endif diff --git a/stage0/stdlib/Lean/Server/Requests.c b/stage0/stdlib/Lean/Server/Requests.c index d59e411286..1cdd7db02c 100644 --- a/stage0/stdlib/Lean/Server/Requests.c +++ b/stage0/stdlib/Lean/Server/Requests.c @@ -29,6 +29,7 @@ LEAN_EXPORT lean_object* l_liftExcept___at_Lean_Server_chainLspRequestHandler___ lean_object* l_String_decEq___boxed(lean_object*, lean_object*); uint8_t lean_usize_dec_le(size_t, size_t); lean_object* l_Lean_MessageData_toString(lean_object*, lean_object*); +static lean_object* l_Lean_Server_initFn____x40_Lean_Server_Requests___hyg_1153____closed__2; LEAN_EXPORT lean_object* l_Lean_Server_RequestM_runCommandElabM___rarg(lean_object*, lean_object*, lean_object*, lean_object*); size_t lean_uint64_to_usize(uint64_t); lean_object* lean_io_as_task(lean_object*, lean_object*, lean_object*); @@ -46,9 +47,7 @@ LEAN_EXPORT lean_object* l_Lean_Server_registerLspRequestHandler___lambda__1(lea LEAN_EXPORT lean_object* l_Lean_Server_RequestTask_pure___rarg(lean_object*); LEAN_EXPORT lean_object* l_Lean_Server_RequestM_withWaitFindSnapAtPos___rarg___lambda__2___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Server_RequestM_withWaitFindSnapAtPos___rarg___lambda__3(lean_object*, lean_object*); -static lean_object* l_Lean_Server_initFn____x40_Lean_Server_Requests___hyg_1183____closed__2; LEAN_EXPORT lean_object* l_Lean_Server_chainLspRequestHandler___lambda__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_liftExcept___at_Lean_Server_RequestM_mapTask___spec__1(lean_object*); lean_object* l_IO_AsyncList_waitFind_x3f___rarg(lean_object*, lean_object*); uint64_t lean_string_hash(lean_object*); LEAN_EXPORT lean_object* l_Lean_Server_parseRequestParams___rarg(lean_object*, lean_object*); @@ -59,7 +58,6 @@ LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_contains___at_Lean_Server_regi lean_object* l_Lean_Exception_toMessageData(lean_object*); static lean_object* l_Lean_Server_registerLspRequestHandler___lambda__4___closed__1; static lean_object* l_Lean_Server_registerLspRequestHandler___lambda__4___closed__2; -static lean_object* l_Lean_Server_initFn____x40_Lean_Server_Requests___hyg_1183____closed__1; LEAN_EXPORT lean_object* l_Lean_Server_instMonadLiftIORequestM___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_initializing(lean_object*); LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux___at_Lean_Server_registerLspRequestHandler___spec__3(lean_object*, size_t, size_t, lean_object*, lean_object*); @@ -68,7 +66,6 @@ LEAN_EXPORT lean_object* l_Lean_Server_RequestError_toLspResponseError___boxed(l LEAN_EXPORT lean_object* l_Lean_Server_instMonadLiftEIOExceptionRequestM___rarg(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Server_instInhabitedRequestError; LEAN_EXPORT lean_object* l_Lean_Server_RequestM_bindWaitFindSnap___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Server_initFn____x40_Lean_Server_Requests___hyg_1183_(lean_object*); lean_object* lean_task_pure(lean_object*); lean_object* l_Lean_FileMap_lspPosToUtf8Pos(lean_object*, lean_object*); static lean_object* l_Lean_Server_registerLspRequestHandler___closed__1; @@ -83,6 +80,7 @@ LEAN_EXPORT lean_object* l_Lean_Server_RequestM_withWaitFindSnapAtPos___rarg___l LEAN_EXPORT lean_object* l_Lean_Server_RequestError_internalError(lean_object*); static size_t l_Lean_PersistentHashMap_insertAux___at_Lean_Server_registerLspRequestHandler___spec__3___closed__2; lean_object* l_Except_map___rarg(lean_object*, lean_object*); +static lean_object* l_Lean_Server_initFn____x40_Lean_Server_Requests___hyg_1153____closed__5; LEAN_EXPORT lean_object* l_Lean_Server_RequestError_fileChanged; lean_object* lean_st_ref_get(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_liftExcept___at_Lean_Server_registerLspRequestHandler___spec__1___rarg(lean_object*, lean_object*, lean_object*); @@ -93,6 +91,7 @@ lean_object* lean_st_mk_ref(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Server_instMonadLiftEIOExceptionRequestM___rarg___boxed(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Server_chainLspRequestHandler___lambda__3___closed__2; static lean_object* l_Lean_Server_parseRequestParams___rarg___closed__2; +static lean_object* l_Lean_Server_initFn____x40_Lean_Server_Requests___hyg_1153____closed__3; lean_object* lean_io_map_task(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*); LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insert___at_Lean_Server_registerLspRequestHandler___spec__2(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux___at_Lean_Server_registerLspRequestHandler___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -100,36 +99,34 @@ LEAN_EXPORT uint8_t l_Lean_PersistentHashMap_containsAtAux___at_Lean_Server_regi LEAN_EXPORT lean_object* l_Lean_Server_RequestM_asTask___rarg(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Server_RequestM_withWaitFindSnapAtPos___rarg___closed__4; LEAN_EXPORT lean_object* l_Lean_Server_registerLspRequestHandler(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_liftExcept___at_Lean_Server_RequestM_asTask___spec__1(lean_object*); static lean_object* l_Lean_Server_RequestM_withWaitFindSnapAtPos___rarg___closed__3; extern lean_object* l_Task_Priority_default; LEAN_EXPORT lean_object* l_Lean_Server_chainLspRequestHandler(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Server_RequestError_toLspResponseError(lean_object*, lean_object*); -static lean_object* l_Lean_Server_initFn____x40_Lean_Server_Requests___hyg_1183____closed__4; +LEAN_EXPORT lean_object* l_Lean_Server_initFn____x40_Lean_Server_Requests___hyg_1153_(lean_object*); LEAN_EXPORT lean_object* l_Lean_Server_RequestM_runCoreM(lean_object*); LEAN_EXPORT lean_object* l_Lean_Server_RequestError_methodNotFound(lean_object*); -LEAN_EXPORT lean_object* l_liftExcept___at_Lean_Server_RequestM_mapTask___spec__1___rarg(lean_object*); static lean_object* l_Lean_Server_RequestError_methodNotFound___closed__1; LEAN_EXPORT lean_object* l_Lean_Server_chainLspRequestHandler___lambda__1___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Server_Snapshots_Snapshot_runCommandElabM___rarg(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Server_RequestM_bindTask___rarg___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_usize_to_nat(size_t); -static lean_object* l_Lean_Server_initFn____x40_Lean_Server_Requests___hyg_1183____closed__5; LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_findAux___at_Lean_Server_lookupLspRequestHandler___spec__2___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Server_Snapshots_Snapshot_runTermElabM___rarg(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Server_RequestM_readDoc___at_Lean_Server_RequestM_withWaitFindSnapAtPos___spec__1(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Server_registerLspRequestHandler___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Server_initFn____x40_Lean_Server_Requests___hyg_1153____closed__4; LEAN_EXPORT lean_object* l_Lean_Server_instMonadLiftIORequestM(lean_object*); LEAN_EXPORT lean_object* l_Lean_Server_RequestM_bindTask(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Server_registerLspRequestHandler___lambda__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_liftExcept___at_Lean_Server_chainLspRequestHandler___spec__1___rarg___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Server_RequestM_withWaitFindSnapAtPos___rarg(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Server_instInhabitedRequestError___closed__2; +static lean_object* l_Lean_Server_initFn____x40_Lean_Server_Requests___hyg_1153____closed__1; static lean_object* l_Lean_Server_chainLspRequestHandler___lambda__3___closed__1; static lean_object* l_Lean_Server_RequestM_withWaitFindSnapAtPos___rarg___closed__5; LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_findAtAux___at_Lean_Server_lookupLspRequestHandler___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t lean_nat_dec_lt(lean_object*, lean_object*); -static lean_object* l_Lean_Server_initFn____x40_Lean_Server_Requests___hyg_1183____closed__3; LEAN_EXPORT lean_object* l_Lean_Server_chainLspRequestHandler___lambda__2(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_RequestTask_pure(lean_object*); LEAN_EXPORT lean_object* l_Lean_Server_RequestM_readDoc(lean_object*); @@ -182,7 +179,6 @@ LEAN_EXPORT lean_object* l_Lean_Server_RequestM_waitFindSnapAux___rarg(lean_obje lean_object* lean_nat_add(lean_object*, lean_object*); lean_object* l_Lean_PersistentHashMap_getCollisionNodeSize___rarg(lean_object*); LEAN_EXPORT lean_object* l_Lean_Server_RequestError_ofIoError(lean_object*); -LEAN_EXPORT lean_object* l_liftExcept___at_Lean_Server_RequestM_asTask___spec__1___rarg(lean_object*); LEAN_EXPORT lean_object* l_Lean_Server_RequestM_mapTask(lean_object*, lean_object*); lean_object* lean_array_get(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Server_handleLspRequest(lean_object*, lean_object*, lean_object*, lean_object*); @@ -745,57 +741,6 @@ x_2 = lean_alloc_closure((void*)(l_Lean_Server_RequestM_readDoc___rarg), 2, 0); return x_2; } } -LEAN_EXPORT lean_object* l_liftExcept___at_Lean_Server_RequestM_asTask___spec__1___rarg(lean_object* x_1) { -_start: -{ -if (lean_obj_tag(x_1) == 0) -{ -uint8_t x_2; -x_2 = !lean_is_exclusive(x_1); -if (x_2 == 0) -{ -return x_1; -} -else -{ -lean_object* x_3; lean_object* x_4; -x_3 = lean_ctor_get(x_1, 0); -lean_inc(x_3); -lean_dec(x_1); -x_4 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_4, 0, x_3); -return x_4; -} -} -else -{ -uint8_t x_5; -x_5 = !lean_is_exclusive(x_1); -if (x_5 == 0) -{ -return x_1; -} -else -{ -lean_object* x_6; lean_object* x_7; -x_6 = lean_ctor_get(x_1, 0); -lean_inc(x_6); -lean_dec(x_1); -x_7 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_7, 0, x_6); -return x_7; -} -} -} -} -LEAN_EXPORT lean_object* l_liftExcept___at_Lean_Server_RequestM_asTask___spec__1(lean_object* x_1) { -_start: -{ -lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l_liftExcept___at_Lean_Server_RequestM_asTask___spec__1___rarg), 1, 0); -return x_2; -} -} LEAN_EXPORT lean_object* l_Lean_Server_RequestM_asTask___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { @@ -808,29 +753,20 @@ x_7 = lean_io_as_task(x_5, x_6, x_3); x_8 = !lean_is_exclusive(x_7); if (x_8 == 0) { -lean_object* x_9; lean_object* x_10; uint8_t x_11; lean_object* x_12; -x_9 = lean_ctor_get(x_7, 0); -x_10 = lean_alloc_closure((void*)(l_liftExcept___at_Lean_Server_RequestM_asTask___spec__1___rarg), 1, 0); -x_11 = 0; -x_12 = lean_task_map(x_10, x_9, x_6, x_11); -lean_ctor_set(x_7, 0, x_12); return x_7; } else { -lean_object* x_13; lean_object* x_14; lean_object* x_15; uint8_t x_16; lean_object* x_17; lean_object* x_18; -x_13 = lean_ctor_get(x_7, 0); -x_14 = lean_ctor_get(x_7, 1); -lean_inc(x_14); -lean_inc(x_13); +lean_object* x_9; lean_object* x_10; lean_object* x_11; +x_9 = lean_ctor_get(x_7, 0); +x_10 = lean_ctor_get(x_7, 1); +lean_inc(x_10); +lean_inc(x_9); lean_dec(x_7); -x_15 = lean_alloc_closure((void*)(l_liftExcept___at_Lean_Server_RequestM_asTask___spec__1___rarg), 1, 0); -x_16 = 0; -x_17 = lean_task_map(x_15, x_13, x_6, x_16); -x_18 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_18, 0, x_17); -lean_ctor_set(x_18, 1, x_14); -return x_18; +x_11 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_11, 0, x_9); +lean_ctor_set(x_11, 1, x_10); +return x_11; } } } @@ -842,57 +778,6 @@ x_2 = lean_alloc_closure((void*)(l_Lean_Server_RequestM_asTask___rarg), 3, 0); return x_2; } } -LEAN_EXPORT lean_object* l_liftExcept___at_Lean_Server_RequestM_mapTask___spec__1___rarg(lean_object* x_1) { -_start: -{ -if (lean_obj_tag(x_1) == 0) -{ -uint8_t x_2; -x_2 = !lean_is_exclusive(x_1); -if (x_2 == 0) -{ -return x_1; -} -else -{ -lean_object* x_3; lean_object* x_4; -x_3 = lean_ctor_get(x_1, 0); -lean_inc(x_3); -lean_dec(x_1); -x_4 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_4, 0, x_3); -return x_4; -} -} -else -{ -uint8_t x_5; -x_5 = !lean_is_exclusive(x_1); -if (x_5 == 0) -{ -return x_1; -} -else -{ -lean_object* x_6; lean_object* x_7; -x_6 = lean_ctor_get(x_1, 0); -lean_inc(x_6); -lean_dec(x_1); -x_7 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_7, 0, x_6); -return x_7; -} -} -} -} -LEAN_EXPORT lean_object* l_liftExcept___at_Lean_Server_RequestM_mapTask___spec__1(lean_object* x_1) { -_start: -{ -lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l_liftExcept___at_Lean_Server_RequestM_mapTask___spec__1___rarg), 1, 0); -return x_2; -} -} LEAN_EXPORT lean_object* l_Lean_Server_RequestM_mapTask___rarg___lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { @@ -972,27 +857,20 @@ x_8 = lean_io_map_task(x_5, x_1, x_6, x_7, x_4); x_9 = !lean_is_exclusive(x_8); if (x_9 == 0) { -lean_object* x_10; lean_object* x_11; lean_object* x_12; -x_10 = lean_ctor_get(x_8, 0); -x_11 = lean_alloc_closure((void*)(l_liftExcept___at_Lean_Server_RequestM_mapTask___spec__1___rarg), 1, 0); -x_12 = lean_task_map(x_11, x_10, x_6, x_7); -lean_ctor_set(x_8, 0, x_12); return x_8; } else { -lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; -x_13 = lean_ctor_get(x_8, 0); -x_14 = lean_ctor_get(x_8, 1); -lean_inc(x_14); -lean_inc(x_13); +lean_object* x_10; lean_object* x_11; lean_object* x_12; +x_10 = lean_ctor_get(x_8, 0); +x_11 = lean_ctor_get(x_8, 1); +lean_inc(x_11); +lean_inc(x_10); lean_dec(x_8); -x_15 = lean_alloc_closure((void*)(l_liftExcept___at_Lean_Server_RequestM_mapTask___spec__1___rarg), 1, 0); -x_16 = lean_task_map(x_15, x_13, x_6, x_7); -x_17 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_17, 0, x_16); -lean_ctor_set(x_17, 1, x_14); -return x_17; +x_12 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_12, 0, x_10); +lean_ctor_set(x_12, 1, x_11); +return x_12; } } } @@ -1846,7 +1724,7 @@ x_2 = lean_alloc_closure((void*)(l_Lean_Server_RequestM_runTermElabM___rarg), 4, return x_2; } } -static lean_object* _init_l_Lean_Server_initFn____x40_Lean_Server_Requests___hyg_1183____closed__1() { +static lean_object* _init_l_Lean_Server_initFn____x40_Lean_Server_Requests___hyg_1153____closed__1() { _start: { lean_object* x_1; @@ -1854,17 +1732,17 @@ x_1 = lean_alloc_closure((void*)(l_String_decEq___boxed), 2, 0); return x_1; } } -static lean_object* _init_l_Lean_Server_initFn____x40_Lean_Server_Requests___hyg_1183____closed__2() { +static lean_object* _init_l_Lean_Server_initFn____x40_Lean_Server_Requests___hyg_1153____closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Server_initFn____x40_Lean_Server_Requests___hyg_1183____closed__1; +x_1 = l_Lean_Server_initFn____x40_Lean_Server_Requests___hyg_1153____closed__1; x_2 = lean_alloc_closure((void*)(l_instBEq___rarg), 3, 1); lean_closure_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Server_initFn____x40_Lean_Server_Requests___hyg_1183____closed__3() { +static lean_object* _init_l_Lean_Server_initFn____x40_Lean_Server_Requests___hyg_1153____closed__3() { _start: { lean_object* x_1; @@ -1872,21 +1750,21 @@ x_1 = l_Lean_PersistentHashMap_mkEmptyEntriesArray(lean_box(0), lean_box(0)); return x_1; } } -static lean_object* _init_l_Lean_Server_initFn____x40_Lean_Server_Requests___hyg_1183____closed__4() { +static lean_object* _init_l_Lean_Server_initFn____x40_Lean_Server_Requests___hyg_1153____closed__4() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Server_initFn____x40_Lean_Server_Requests___hyg_1183____closed__3; +x_1 = l_Lean_Server_initFn____x40_Lean_Server_Requests___hyg_1153____closed__3; 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_Server_initFn____x40_Lean_Server_Requests___hyg_1183____closed__5() { +static lean_object* _init_l_Lean_Server_initFn____x40_Lean_Server_Requests___hyg_1153____closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Server_initFn____x40_Lean_Server_Requests___hyg_1183____closed__4; +x_1 = l_Lean_Server_initFn____x40_Lean_Server_Requests___hyg_1153____closed__4; x_2 = lean_unsigned_to_nat(0u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -1894,11 +1772,11 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -LEAN_EXPORT lean_object* l_Lean_Server_initFn____x40_Lean_Server_Requests___hyg_1183_(lean_object* x_1) { +LEAN_EXPORT lean_object* l_Lean_Server_initFn____x40_Lean_Server_Requests___hyg_1153_(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; uint8_t x_4; -x_2 = l_Lean_Server_initFn____x40_Lean_Server_Requests___hyg_1183____closed__5; +x_2 = l_Lean_Server_initFn____x40_Lean_Server_Requests___hyg_1153____closed__5; x_3 = lean_st_mk_ref(x_2, x_1); x_4 = !lean_is_exclusive(x_3); if (x_4 == 0) @@ -4044,17 +3922,17 @@ l_Lean_Server_RequestM_withWaitFindSnapAtPos___rarg___closed__4 = _init_l_Lean_S lean_mark_persistent(l_Lean_Server_RequestM_withWaitFindSnapAtPos___rarg___closed__4); l_Lean_Server_RequestM_withWaitFindSnapAtPos___rarg___closed__5 = _init_l_Lean_Server_RequestM_withWaitFindSnapAtPos___rarg___closed__5(); lean_mark_persistent(l_Lean_Server_RequestM_withWaitFindSnapAtPos___rarg___closed__5); -l_Lean_Server_initFn____x40_Lean_Server_Requests___hyg_1183____closed__1 = _init_l_Lean_Server_initFn____x40_Lean_Server_Requests___hyg_1183____closed__1(); -lean_mark_persistent(l_Lean_Server_initFn____x40_Lean_Server_Requests___hyg_1183____closed__1); -l_Lean_Server_initFn____x40_Lean_Server_Requests___hyg_1183____closed__2 = _init_l_Lean_Server_initFn____x40_Lean_Server_Requests___hyg_1183____closed__2(); -lean_mark_persistent(l_Lean_Server_initFn____x40_Lean_Server_Requests___hyg_1183____closed__2); -l_Lean_Server_initFn____x40_Lean_Server_Requests___hyg_1183____closed__3 = _init_l_Lean_Server_initFn____x40_Lean_Server_Requests___hyg_1183____closed__3(); -lean_mark_persistent(l_Lean_Server_initFn____x40_Lean_Server_Requests___hyg_1183____closed__3); -l_Lean_Server_initFn____x40_Lean_Server_Requests___hyg_1183____closed__4 = _init_l_Lean_Server_initFn____x40_Lean_Server_Requests___hyg_1183____closed__4(); -lean_mark_persistent(l_Lean_Server_initFn____x40_Lean_Server_Requests___hyg_1183____closed__4); -l_Lean_Server_initFn____x40_Lean_Server_Requests___hyg_1183____closed__5 = _init_l_Lean_Server_initFn____x40_Lean_Server_Requests___hyg_1183____closed__5(); -lean_mark_persistent(l_Lean_Server_initFn____x40_Lean_Server_Requests___hyg_1183____closed__5); -if (builtin) {res = l_Lean_Server_initFn____x40_Lean_Server_Requests___hyg_1183_(lean_io_mk_world()); +l_Lean_Server_initFn____x40_Lean_Server_Requests___hyg_1153____closed__1 = _init_l_Lean_Server_initFn____x40_Lean_Server_Requests___hyg_1153____closed__1(); +lean_mark_persistent(l_Lean_Server_initFn____x40_Lean_Server_Requests___hyg_1153____closed__1); +l_Lean_Server_initFn____x40_Lean_Server_Requests___hyg_1153____closed__2 = _init_l_Lean_Server_initFn____x40_Lean_Server_Requests___hyg_1153____closed__2(); +lean_mark_persistent(l_Lean_Server_initFn____x40_Lean_Server_Requests___hyg_1153____closed__2); +l_Lean_Server_initFn____x40_Lean_Server_Requests___hyg_1153____closed__3 = _init_l_Lean_Server_initFn____x40_Lean_Server_Requests___hyg_1153____closed__3(); +lean_mark_persistent(l_Lean_Server_initFn____x40_Lean_Server_Requests___hyg_1153____closed__3); +l_Lean_Server_initFn____x40_Lean_Server_Requests___hyg_1153____closed__4 = _init_l_Lean_Server_initFn____x40_Lean_Server_Requests___hyg_1153____closed__4(); +lean_mark_persistent(l_Lean_Server_initFn____x40_Lean_Server_Requests___hyg_1153____closed__4); +l_Lean_Server_initFn____x40_Lean_Server_Requests___hyg_1153____closed__5 = _init_l_Lean_Server_initFn____x40_Lean_Server_Requests___hyg_1153____closed__5(); +lean_mark_persistent(l_Lean_Server_initFn____x40_Lean_Server_Requests___hyg_1153____closed__5); +if (builtin) {res = l_Lean_Server_initFn____x40_Lean_Server_Requests___hyg_1153_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; l_Lean_Server_requestHandlers = lean_io_result_get_value(res); lean_mark_persistent(l_Lean_Server_requestHandlers); diff --git a/stage0/stdlib/Lean/ToExpr.c b/stage0/stdlib/Lean/ToExpr.c index 5e2673699d..9eb8d7e764 100644 --- a/stage0/stdlib/Lean/ToExpr.c +++ b/stage0/stdlib/Lean/ToExpr.c @@ -1,6 +1,6 @@ // Lean compiler output // Module: Lean.ToExpr -// Imports: Lean.Expr +// Imports: Lean.Expr Init.Data.BitVec.Basic #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -13,12 +13,15 @@ #ifdef __cplusplus extern "C" { #endif +static lean_object* l_Lean_instToExprInt_mkNat___closed__9; +static lean_object* l_Lean_instToExprUInt16___lambda__1___closed__5; lean_object* l_Lean_Expr_const___override(lean_object*, lean_object*); static lean_object* l_Lean_instToExprProd___rarg___closed__1; static lean_object* l_Lean_instToExprChar___closed__2; static lean_object* l_Lean_instToExprBool___closed__4; static lean_object* l_Lean_instToExprOption___rarg___lambda__1___closed__7; static lean_object* l_Lean_instToExprList___rarg___closed__3; +static lean_object* l_Lean_instToExprUInt64___closed__2; static lean_object* l_Lean_instToExprChar___lambda__1___closed__1; static lean_object* l_Lean_instToExprUnit___lambda__1___closed__2; static lean_object* l_Lean_Expr_toCtorIfLit___closed__11; @@ -26,9 +29,11 @@ lean_object* l_Lean_mkNatLit(lean_object*); LEAN_EXPORT lean_object* l_Lean_instToExprBool; static lean_object* l_Lean_Expr_toCtorIfLit___closed__8; LEAN_EXPORT lean_object* l_Lean_instToExprBool___lambda__1(uint8_t); +LEAN_EXPORT lean_object* l_Lean_instToExprUInt8; static lean_object* l_Lean_instToExprList___rarg___closed__6; lean_object* lean_mk_empty_array_with_capacity(lean_object*); lean_object* l_Lean_mkAppN(lean_object*, lean_object*); +static lean_object* l_Lean_instToExprUSize___lambda__1___closed__5; LEAN_EXPORT lean_object* l_Lean_instToExprArray___rarg(lean_object*); LEAN_EXPORT lean_object* l_Lean_instToExprArray(lean_object*); static lean_object* l_Lean_instToExprString___closed__2; @@ -42,30 +47,44 @@ static lean_object* l_Lean_instToExprList___rarg___closed__4; static lean_object* l_Lean_instToExprString___closed__4; static lean_object* l_Lean_instToExprProd___rarg___lambda__1___closed__1; static lean_object* l___private_Lean_ToExpr_0__Lean_Name_toExprAux_mkStr___closed__1; +static lean_object* l_Lean_instToExprUInt16___lambda__1___closed__3; static lean_object* l___private_Lean_ToExpr_0__Lean_Name_toExprAux___closed__1; +LEAN_EXPORT lean_object* l_Lean_instToExprUInt16___lambda__1(uint16_t); lean_object* l_Lean_mkAppB(lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_instToExprUInt16___closed__2; static lean_object* l_Lean_instToExprInt___lambda__1___closed__7; static lean_object* l_Lean_instToExprLiteral___lambda__1___closed__4; +static lean_object* l_Lean_instToExprInt_mkNat___closed__12; static lean_object* l_Lean_Expr_toCtorIfLit___closed__3; +static lean_object* l_Lean_instToExprInt_mkNat___closed__2; static lean_object* l_Lean_instToExprLiteral___lambda__1___closed__1; static lean_object* l_Lean_instToExprBool___lambda__1___closed__4; LEAN_EXPORT lean_object* l_Lean_instToExprString; +static lean_object* l_Lean_instToExprUInt8___closed__2; static lean_object* l_Lean_instToExprProd___rarg___lambda__1___closed__3; static lean_object* l_Lean_instToExprList___rarg___closed__7; static lean_object* l___private_Lean_ToExpr_0__Lean_Name_toExprAux_go___closed__7; lean_object* l_Lean_Expr_lit___override(lean_object*); +static lean_object* l_Lean_instToExprUInt16___closed__3; static lean_object* l_Lean_instToExprOption___rarg___lambda__1___closed__2; static lean_object* l_Lean_instToExprProd___rarg___closed__2; static lean_object* l_Lean_instToExprNat___closed__3; static lean_object* l_Lean_instToExprList___rarg___closed__2; lean_object* lean_array_push(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_instToExprUInt64___lambda__1___boxed(lean_object*); +static lean_object* l_Lean_instToExprInt_mkNat___closed__11; static lean_object* l_Lean_instToExprInt___closed__1; static lean_object* l_Lean_instToExprProd___rarg___lambda__1___closed__5; +static lean_object* l_Lean_instToExprInt_mkNat___closed__6; static lean_object* l_Lean_instToExprBool___lambda__1___closed__7; LEAN_EXPORT lean_object* l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Expr_toCtorIfLit___spec__1(lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_instToExprUInt64___lambda__1___closed__4; +static lean_object* l_Lean_instToExprUInt32___lambda__1___closed__3; static lean_object* l_Lean_instToExprOption___rarg___closed__1; LEAN_EXPORT lean_object* l_Lean_instToExprOption___rarg___lambda__1(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_instToExprBool___closed__3; +static lean_object* l_Lean_instToExprFin___lambda__1___closed__5; +static lean_object* l_Lean_instToExprUInt32___closed__2; LEAN_EXPORT lean_object* l_Lean_instToExprInt___lambda__1___boxed(lean_object*); LEAN_EXPORT lean_object* l_Lean_instToExprFVarId___lambda__1(lean_object*); static lean_object* l_Lean_instToExprLiteral___closed__3; @@ -78,102 +97,148 @@ static lean_object* l_Lean_instToExprFVarId___closed__3; static lean_object* l_Lean_instToExprFVarId___closed__2; lean_object* l_Lean_mkApp4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_instToExprBool___lambda__1___closed__5; +uint8_t lean_int_dec_le(lean_object*, lean_object*); static lean_object* l_Lean_instToExprFVarId___closed__4; static lean_object* l_Lean_instToExprProd___rarg___lambda__1___closed__2; +lean_object* l_Lean_Level_ofNat(lean_object*); LEAN_EXPORT lean_object* l_Lean_instToExprBool___lambda__1___boxed(lean_object*); +static lean_object* l_Lean_instToExprFin___lambda__1___closed__4; static lean_object* l_Lean_instToExprInt___closed__2; static lean_object* l_Lean_instToExprName___closed__2; LEAN_EXPORT uint8_t l___private_Lean_ToExpr_0__Lean_Name_toExprAux_isSimple(lean_object*, lean_object*); static lean_object* l_Lean_instToExprInt___lambda__1___closed__3; lean_object* l_Lean_Name_mkStr3(lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_instToExprUInt8___lambda__1___closed__4; +static lean_object* l_Lean_instToExprUSize___closed__2; static lean_object* l_Lean_instToExprUnit___closed__2; +static lean_object* l_Lean_instToExprUInt16___lambda__1___closed__4; lean_object* l_Lean_mkStrLit(lean_object*); lean_object* lean_string_data(lean_object*); lean_object* l_Array_reverse___rarg(lean_object*); +LEAN_EXPORT lean_object* l_Lean_instToExprUInt64; +static lean_object* l_Lean_instToExprUInt8___closed__3; static lean_object* l_Lean_instToExprUnit___closed__4; uint8_t lean_nat_dec_eq(lean_object*, lean_object*); static lean_object* l_Lean_instToExprArray___rarg___lambda__1___closed__2; static lean_object* l_Lean_instToExprName___closed__3; +lean_object* lean_uint16_to_nat(uint16_t); LEAN_EXPORT lean_object* l_Lean_instToExprChar; LEAN_EXPORT lean_object* l_Lean_instToExprName; +static lean_object* l_Lean_instToExprUSize___lambda__1___closed__1; +static lean_object* l_Lean_instToExprInt_mkNat___closed__3; +LEAN_EXPORT lean_object* l_Lean_instToExprUInt16___lambda__1___boxed(lean_object*); lean_object* lean_nat_to_int(lean_object*); static lean_object* l_Lean_instToExprArray___rarg___closed__1; static lean_object* l_Lean_instToExprChar___lambda__1___closed__3; static lean_object* l___private_Lean_ToExpr_0__Lean_Name_toExprAux_mkStr___closed__7; +lean_object* lean_uint64_to_nat(uint64_t); LEAN_EXPORT lean_object* l___private_Lean_ToExpr_0__Lean_List_toExprAux___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_instToExprBitVec___lambda__1___closed__1; static lean_object* l_Lean_Expr_toCtorIfLit___closed__6; -static lean_object* l_Lean_instToExprInt___closed__4; +static lean_object* l_Lean_instToExprUInt8___lambda__1___closed__2; static lean_object* l_Lean_instToExprList___rarg___closed__8; +static lean_object* l_Lean_instToExprInt_mkNat___closed__10; static lean_object* l___private_Lean_ToExpr_0__Lean_Name_toExprAux_mkStr___closed__8; +static lean_object* l_Lean_instToExprUInt32___closed__3; +static lean_object* l_Lean_instToExprUInt64___closed__1; +static lean_object* l_Lean_instToExprUInt64___lambda__1___closed__5; LEAN_EXPORT lean_object* l_Lean_instToExprList___rarg(lean_object*); static lean_object* l_Lean_instToExprName___closed__1; LEAN_EXPORT lean_object* l_Lean_instToExprInt___lambda__1(lean_object*); static lean_object* l_Lean_instToExprChar___closed__1; static lean_object* l_Lean_instToExprProd___rarg___lambda__1___closed__4; lean_object* lean_array_to_list(lean_object*, lean_object*); +static lean_object* l_Lean_instToExprFin___closed__1; LEAN_EXPORT lean_object* l_Lean_instToExprProd(lean_object*, lean_object*); +static lean_object* l_Lean_instToExprUInt32___lambda__1___closed__5; LEAN_EXPORT lean_object* l_Lean_instToExprNat; +static lean_object* l_Lean_instToExprUInt64___closed__3; extern lean_object* l_Lean_levelZero; static lean_object* l_Lean_instToExprArray___rarg___lambda__1___closed__4; +static lean_object* l_Lean_instToExprUInt32___lambda__1___closed__1; static lean_object* l___private_Lean_ToExpr_0__Lean_Name_toExprAux_mkStr___closed__3; static lean_object* l___private_Lean_ToExpr_0__Lean_Name_toExprAux_go___closed__4; lean_object* l_panic___at_Lean_Expr_appFn_x21___spec__1(lean_object*); static lean_object* l_Lean_instToExprUnit___lambda__1___closed__4; static lean_object* l_Lean_instToExprArray___rarg___closed__2; LEAN_EXPORT lean_object* l_Lean_instToExprArray___rarg___lambda__1(lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_instToExprBitVec___closed__2; +LEAN_EXPORT lean_object* l_Lean_instToExprFin___lambda__1(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_instToExprLiteral; +static lean_object* l_Lean_instToExprUInt8___lambda__1___closed__1; +static lean_object* l_Lean_instToExprUInt16___closed__1; lean_object* l_Lean_Name_str___override(lean_object*, lean_object*); static lean_object* l_Lean_instToExprLiteral___lambda__1___closed__5; static lean_object* l___private_Lean_ToExpr_0__Lean_Name_toExprAux_go___closed__9; +static lean_object* l_Lean_instToExprFin___lambda__1___closed__2; static lean_object* l_Lean_instToExprLiteral___lambda__1___closed__2; lean_object* l___private_Init_Util_0__mkPanicMessageWithDecl(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_ToExpr_0__Lean_Name_toExprAux_mkStr___closed__4; static lean_object* l_Lean_instToExprFVarId___lambda__1___closed__1; static lean_object* l_Lean_instToExprOption___rarg___lambda__1___closed__3; static lean_object* l___private_Lean_ToExpr_0__Lean_Name_toExprAux_go___closed__8; +static lean_object* l_Lean_instToExprUSize___lambda__1___closed__4; +static lean_object* l_Lean_instToExprUInt64___lambda__1___closed__2; LEAN_EXPORT lean_object* l_Lean_instToExprInt; LEAN_EXPORT lean_object* l_Lean_instToExprChar___lambda__1___boxed(lean_object*); +lean_object* lean_usize_to_nat(size_t); +static lean_object* l_Lean_instToExprInt_mkNat___closed__5; LEAN_EXPORT lean_object* l___private_Lean_ToExpr_0__Lean_List_toExprAux(lean_object*); +LEAN_EXPORT lean_object* l_Lean_instToExprUInt64___lambda__1(uint64_t); static lean_object* l___private_Lean_ToExpr_0__Lean_Name_toExprAux_go___closed__1; static lean_object* l_Lean_instToExprList___rarg___closed__5; +static lean_object* l_Lean_instToExprInt_mkNat___closed__4; static lean_object* l_Lean_instToExprBool___lambda__1___closed__6; LEAN_EXPORT lean_object* l_Lean_instToExprProd___rarg___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_ToExpr_0__Lean_List_toExprAux___rarg(lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_instToExprBitVec___lambda__1___closed__3; static lean_object* l_Lean_instToExprBool___lambda__1___closed__3; LEAN_EXPORT lean_object* l_Lean_Expr_toCtorIfLit(lean_object*); +LEAN_EXPORT lean_object* l_Lean_instToExprUInt16; static lean_object* l_Lean_instToExprArray___rarg___lambda__1___closed__1; static lean_object* l_Lean_instToExprInt___lambda__1___closed__8; LEAN_EXPORT lean_object* l_Lean_instToExprLiteral___lambda__1(lean_object*); static lean_object* l_Lean_instToExprNat___closed__2; LEAN_EXPORT lean_object* l___private_Lean_ToExpr_0__Lean_Name_toExprAux_mkStr(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Expr_toCtorIfLit___closed__1; +static lean_object* l_Lean_instToExprUInt32___closed__1; LEAN_EXPORT lean_object* l_Lean_instToExprList(lean_object*); +LEAN_EXPORT lean_object* l_Lean_instToExprUSize___lambda__1(size_t); static lean_object* l___private_Lean_ToExpr_0__Lean_Name_toExprAux_go___closed__5; -lean_object* lean_nat_abs(lean_object*); static lean_object* l___private_Lean_ToExpr_0__Lean_Name_toExprAux_go___closed__2; LEAN_EXPORT lean_object* l___private_Lean_ToExpr_0__Lean_Name_toExprAux_isSimple___boxed(lean_object*, lean_object*); static lean_object* l_Lean_instToExprList___rarg___closed__9; static lean_object* l_Lean_instToExprLiteral___lambda__1___closed__6; static lean_object* l_Lean_instToExprLiteral___closed__1; static lean_object* l_Lean_instToExprUnit___closed__3; +static lean_object* l_Lean_instToExprUSize___closed__3; lean_object* l_Lean_Expr_app___override(lean_object*, lean_object*); +static lean_object* l_Lean_instToExprUInt32___lambda__1___closed__2; +lean_object* l_Lean_mkApp3(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_instToExprArray___rarg___closed__3; uint8_t lean_nat_dec_lt(lean_object*, lean_object*); static lean_object* l_Lean_instToExprInt___lambda__1___closed__5; lean_object* l_Lean_mkRawNatLit(lean_object*); +LEAN_EXPORT lean_object* l_Lean_instToExprBitVec___lambda__1(lean_object*, lean_object*); +static lean_object* l_Lean_instToExprInt_mkNat___closed__1; static lean_object* l_Lean_instToExprFVarId___lambda__1___closed__3; lean_object* l_Lean_Name_mkStr2(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_instToExprUnit; static lean_object* l_Lean_instToExprChar___lambda__1___closed__2; static lean_object* l_Lean_instToExprBool___closed__1; static lean_object* l_Lean_instToExprFVarId___closed__1; +LEAN_EXPORT lean_object* l_Lean_instToExprUInt32___lambda__1___boxed(lean_object*); static lean_object* l_Lean_instToExprBool___closed__2; +LEAN_EXPORT lean_object* l_Lean_instToExprUInt8___lambda__1(uint8_t); +static lean_object* l_Lean_instToExprUInt8___lambda__1___closed__3; static lean_object* l___private_Lean_ToExpr_0__Lean_Name_toExprAux_go___closed__6; static lean_object* l___private_Lean_ToExpr_0__Lean_Name_toExprAux_go___closed__3; LEAN_EXPORT lean_object* l_Lean_instToExprChar___lambda__1(uint32_t); +lean_object* l_Int_toNat(lean_object*); static lean_object* l_Lean_instToExprInt___lambda__1___closed__1; static lean_object* l_Lean_instToExprFVarId___lambda__1___closed__2; -uint8_t lean_int_dec_lt(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_instToExprUInt8___lambda__1___boxed(lean_object*); +LEAN_EXPORT lean_object* l_Lean_instToExprUInt32; static lean_object* l_Lean_instToExprInt___lambda__1___closed__6; lean_object* lean_nat_sub(lean_object*, lean_object*); static lean_object* l_Lean_instToExprOption___rarg___lambda__1___closed__4; @@ -184,6 +249,7 @@ static lean_object* l_Lean_instToExprOption___rarg___lambda__1___closed__6; static lean_object* l_Lean_instToExprLiteral___closed__4; static lean_object* l_Lean_instToExprInt___closed__3; static lean_object* l_Lean_instToExprOption___rarg___closed__2; +static lean_object* l_Lean_instToExprFin___lambda__1___closed__3; LEAN_EXPORT lean_object* l_Lean_instToExprUnit___lambda__1___boxed(lean_object*); static lean_object* l_Lean_instToExprNat___closed__5; LEAN_EXPORT lean_object* l___private_Lean_ToExpr_0__Lean_Name_toExprAux_go(lean_object*); @@ -191,31 +257,55 @@ static lean_object* l_Lean_Expr_toCtorIfLit___closed__10; static lean_object* l___private_Lean_ToExpr_0__Lean_Name_toExprAux_mkStr___closed__6; LEAN_EXPORT lean_object* l___private_Lean_ToExpr_0__Lean_Name_toExprAux(lean_object*); LEAN_EXPORT lean_object* l_Lean_instToExprOption(lean_object*); +static lean_object* l_Lean_instToExprUInt64___lambda__1___closed__3; static lean_object* l_Lean_instToExprChar___closed__3; +static lean_object* l_Lean_instToExprUSize___lambda__1___closed__2; LEAN_EXPORT lean_object* l_Lean_instToExprOption___rarg(lean_object*); +LEAN_EXPORT lean_object* l_Lean_instToExprInt_mkNat(lean_object*); static lean_object* l_Lean_instToExprOption___rarg___lambda__1___closed__5; static lean_object* l_Lean_Expr_toCtorIfLit___closed__5; +static lean_object* l_Lean_instToExprBitVec___lambda__1___closed__2; +static lean_object* l_Lean_instToExprUSize___lambda__1___closed__3; static lean_object* l_Lean_instToExprLiteral___lambda__1___closed__3; +LEAN_EXPORT lean_object* l_Lean_instToExprUInt32___lambda__1(uint32_t); +static lean_object* l_Lean_instToExprUInt8___lambda__1___closed__5; LEAN_EXPORT lean_object* l_Lean_instToExprFVarId; lean_object* lean_string_append(lean_object*, lean_object*); +static lean_object* l_Lean_instToExprFin___lambda__1___closed__1; static lean_object* l_Lean_instToExprUnit___closed__1; static lean_object* l___private_Lean_ToExpr_0__Lean_Name_toExprAux_mkStr___closed__2; static lean_object* l_Lean_instToExprNat___closed__4; static lean_object* l_Lean_Expr_toCtorIfLit___closed__4; +lean_object* lean_int_neg(lean_object*); +LEAN_EXPORT lean_object* l_Lean_instToExprBitVec(lean_object*); uint8_t lean_nat_dec_le(lean_object*, lean_object*); static lean_object* l_Lean_instToExprLiteral___closed__2; +static lean_object* l_Lean_instToExprInt_mkNat___closed__7; static lean_object* l_Lean_instToExprList___rarg___closed__1; static lean_object* l_Lean_instToExprString___closed__3; lean_object* lean_nat_add(lean_object*, lean_object*); +static lean_object* l_Lean_instToExprUInt16___lambda__1___closed__1; +static lean_object* l_Lean_instToExprBitVec___closed__1; +static lean_object* l_Lean_instToExprUInt16___lambda__1___closed__2; LEAN_EXPORT lean_object* l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Expr_toCtorIfLit___spec__1___boxed(lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_instToExprUInt64___lambda__1___closed__1; static lean_object* l_Lean_instToExprOption___rarg___lambda__1___closed__8; +static lean_object* l_Lean_instToExprUInt8___closed__1; static lean_object* l_Lean_instToExprArray___rarg___lambda__1___closed__3; static lean_object* l_Lean_instToExprString___closed__1; static lean_object* l_Lean_instToExprBool___lambda__1___closed__2; +lean_object* lean_uint32_to_nat(uint32_t); +static lean_object* l_Lean_instToExprUInt32___lambda__1___closed__4; static lean_object* l_Lean_instToExprString___closed__5; +static lean_object* l_Lean_instToExprInt_mkNat___closed__8; lean_object* l_Nat_repr(lean_object*); static lean_object* l___private_Lean_ToExpr_0__Lean_Name_toExprAux_mkStr___closed__5; +LEAN_EXPORT lean_object* l_Lean_instToExprFin(lean_object*); +static lean_object* l_Lean_instToExprUSize___closed__1; static lean_object* l_Lean_instToExprBool___lambda__1___closed__1; +LEAN_EXPORT lean_object* l_Lean_instToExprUSize___lambda__1___boxed(lean_object*); +LEAN_EXPORT lean_object* l_Lean_instToExprUSize; +lean_object* lean_uint8_to_nat(uint8_t); static lean_object* _init_l_Lean_instToExprNat___closed__1() { _start: { @@ -272,6 +362,133 @@ x_1 = l_Lean_instToExprNat___closed__5; return x_1; } } +static lean_object* _init_l_Lean_instToExprInt_mkNat___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("OfNat", 5); +return x_1; +} +} +static lean_object* _init_l_Lean_instToExprInt_mkNat___closed__2() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("ofNat", 5); +return x_1; +} +} +static lean_object* _init_l_Lean_instToExprInt_mkNat___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_instToExprInt_mkNat___closed__1; +x_2 = l_Lean_instToExprInt_mkNat___closed__2; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_instToExprInt_mkNat___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = lean_unsigned_to_nat(0u); +x_2 = l_Lean_Level_ofNat(x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_instToExprInt_mkNat___closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_instToExprInt_mkNat___closed__4; +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_Lean_instToExprInt_mkNat___closed__6() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_instToExprInt_mkNat___closed__3; +x_2 = l_Lean_instToExprInt_mkNat___closed__5; +x_3 = l_Lean_Expr_const___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_instToExprInt_mkNat___closed__7() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("Int", 3); +return x_1; +} +} +static lean_object* _init_l_Lean_instToExprInt_mkNat___closed__8() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_instToExprInt_mkNat___closed__7; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_instToExprInt_mkNat___closed__9() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_instToExprInt_mkNat___closed__8; +x_3 = l_Lean_Expr_const___override(x_2, x_1); +return x_3; +} +} +static lean_object* _init_l_Lean_instToExprInt_mkNat___closed__10() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("instOfNat", 9); +return x_1; +} +} +static lean_object* _init_l_Lean_instToExprInt_mkNat___closed__11() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_instToExprInt_mkNat___closed__10; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_instToExprInt_mkNat___closed__12() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_instToExprInt_mkNat___closed__11; +x_3 = l_Lean_Expr_const___override(x_2, x_1); +return x_3; +} +} +LEAN_EXPORT lean_object* l_Lean_instToExprInt_mkNat(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; +x_2 = l_Lean_mkRawNatLit(x_1); +x_3 = l_Lean_instToExprInt_mkNat___closed__12; +lean_inc(x_2); +x_4 = l_Lean_Expr_app___override(x_3, x_2); +x_5 = l_Lean_instToExprInt_mkNat___closed__6; +x_6 = l_Lean_instToExprInt_mkNat___closed__9; +x_7 = l_Lean_mkApp3(x_5, x_6, x_2, x_4); +return x_7; +} +} static lean_object* _init_l_Lean_instToExprInt___lambda__1___closed__1() { _start: { @@ -285,7 +502,7 @@ static lean_object* _init_l_Lean_instToExprInt___lambda__1___closed__2() { _start: { lean_object* x_1; -x_1 = lean_mk_string_from_bytes("Int", 3); +x_1 = lean_mk_string_from_bytes("Neg", 3); return x_1; } } @@ -293,7 +510,7 @@ static lean_object* _init_l_Lean_instToExprInt___lambda__1___closed__3() { _start: { lean_object* x_1; -x_1 = lean_mk_string_from_bytes("ofNat", 5); +x_1 = lean_mk_string_from_bytes("neg", 3); return x_1; } } @@ -311,9 +528,9 @@ static lean_object* _init_l_Lean_instToExprInt___lambda__1___closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l_Lean_instToExprInt___lambda__1___closed__4; -x_3 = l_Lean_Expr_const___override(x_2, x_1); +x_1 = l_Lean_instToExprInt___lambda__1___closed__4; +x_2 = l_Lean_instToExprInt_mkNat___closed__5; +x_3 = l_Lean_Expr_const___override(x_1, x_2); return x_3; } } @@ -321,7 +538,7 @@ static lean_object* _init_l_Lean_instToExprInt___lambda__1___closed__6() { _start: { lean_object* x_1; -x_1 = lean_mk_string_from_bytes("negSucc", 7); +x_1 = lean_mk_string_from_bytes("instNegInt", 10); return x_1; } } @@ -329,7 +546,7 @@ static lean_object* _init_l_Lean_instToExprInt___lambda__1___closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_instToExprInt___lambda__1___closed__2; +x_1 = l_Lean_instToExprInt_mkNat___closed__7; x_2 = l_Lean_instToExprInt___lambda__1___closed__6; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; @@ -350,27 +567,26 @@ _start: { lean_object* x_2; uint8_t x_3; x_2 = l_Lean_instToExprInt___lambda__1___closed__1; -x_3 = lean_int_dec_lt(x_1, x_2); +x_3 = lean_int_dec_le(x_2, x_1); if (x_3 == 0) { -lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; -x_4 = lean_nat_abs(x_1); -x_5 = l_Lean_mkNatLit(x_4); -x_6 = l_Lean_instToExprInt___lambda__1___closed__5; -x_7 = l_Lean_Expr_app___override(x_6, x_5); -return x_7; +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; +x_4 = lean_int_neg(x_1); +x_5 = l_Int_toNat(x_4); +lean_dec(x_4); +x_6 = l_Lean_instToExprInt_mkNat(x_5); +x_7 = l_Lean_instToExprInt___lambda__1___closed__5; +x_8 = l_Lean_instToExprInt_mkNat___closed__9; +x_9 = l_Lean_instToExprInt___lambda__1___closed__8; +x_10 = l_Lean_mkApp3(x_7, x_8, x_9, x_6); +return x_10; } else { -lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; -x_8 = lean_nat_abs(x_1); -x_9 = lean_unsigned_to_nat(1u); -x_10 = lean_nat_sub(x_8, x_9); -lean_dec(x_8); -x_11 = l_Lean_mkNatLit(x_10); -x_12 = l_Lean_instToExprInt___lambda__1___closed__8; -x_13 = l_Lean_Expr_app___override(x_12, x_11); -return x_13; +lean_object* x_11; lean_object* x_12; +x_11 = l_Int_toNat(x_1); +x_12 = l_Lean_instToExprInt_mkNat(x_11); +return x_12; } } } @@ -379,22 +595,12 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_instToExprInt___lambda__1___closed__2; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_instToExprInt___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l_Lean_instToExprInt___closed__1; +x_2 = l_Lean_instToExprInt_mkNat___closed__8; x_3 = l_Lean_Expr_const___override(x_2, x_1); return x_3; } } -static lean_object* _init_l_Lean_instToExprInt___closed__3() { +static lean_object* _init_l_Lean_instToExprInt___closed__2() { _start: { lean_object* x_1; @@ -402,12 +608,12 @@ x_1 = lean_alloc_closure((void*)(l_Lean_instToExprInt___lambda__1___boxed), 1, 0 return x_1; } } -static lean_object* _init_l_Lean_instToExprInt___closed__4() { +static lean_object* _init_l_Lean_instToExprInt___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_instToExprInt___closed__3; -x_2 = l_Lean_instToExprInt___closed__2; +x_1 = l_Lean_instToExprInt___closed__2; +x_2 = l_Lean_instToExprInt___closed__1; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); lean_ctor_set(x_3, 1, x_2); @@ -418,7 +624,7 @@ static lean_object* _init_l_Lean_instToExprInt() { _start: { lean_object* x_1; -x_1 = l_Lean_instToExprInt___closed__4; +x_1 = l_Lean_instToExprInt___closed__3; return x_1; } } @@ -431,6 +637,731 @@ lean_dec(x_1); return x_2; } } +static lean_object* _init_l_Lean_instToExprFin___lambda__1___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("Fin", 3); +return x_1; +} +} +static lean_object* _init_l_Lean_instToExprFin___lambda__1___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_instToExprFin___lambda__1___closed__1; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_instToExprFin___lambda__1___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_instToExprFin___lambda__1___closed__2; +x_3 = l_Lean_Expr_const___override(x_2, x_1); +return x_3; +} +} +static lean_object* _init_l_Lean_instToExprFin___lambda__1___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_instToExprFin___lambda__1___closed__1; +x_2 = l_Lean_instToExprInt_mkNat___closed__10; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_instToExprFin___lambda__1___closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_instToExprFin___lambda__1___closed__4; +x_3 = l_Lean_Expr_const___override(x_2, x_1); +return x_3; +} +} +LEAN_EXPORT lean_object* l_Lean_instToExprFin___lambda__1(lean_object* x_1, lean_object* x_2) { +_start: +{ +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; +x_3 = l_Lean_mkRawNatLit(x_2); +lean_inc(x_1); +x_4 = l_Lean_mkNatLit(x_1); +x_5 = l_Lean_instToExprFin___lambda__1___closed__3; +x_6 = l_Lean_Expr_app___override(x_5, x_4); +x_7 = lean_unsigned_to_nat(1u); +x_8 = lean_nat_sub(x_1, x_7); +lean_dec(x_1); +x_9 = l_Lean_mkNatLit(x_8); +x_10 = l_Lean_instToExprFin___lambda__1___closed__5; +lean_inc(x_3); +x_11 = l_Lean_mkAppB(x_10, x_9, x_3); +x_12 = l_Lean_instToExprInt_mkNat___closed__6; +x_13 = l_Lean_mkApp3(x_12, x_6, x_3, x_11); +return x_13; +} +} +static lean_object* _init_l_Lean_instToExprFin___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_instToExprFin___lambda__1___closed__2; +x_3 = l_Lean_Expr_const___override(x_2, x_1); +return x_3; +} +} +LEAN_EXPORT lean_object* l_Lean_instToExprFin(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; +lean_inc(x_1); +x_2 = lean_alloc_closure((void*)(l_Lean_instToExprFin___lambda__1), 2, 1); +lean_closure_set(x_2, 0, x_1); +x_3 = l_Lean_mkNatLit(x_1); +x_4 = l_Lean_instToExprFin___closed__1; +x_5 = l_Lean_Expr_app___override(x_4, x_3); +x_6 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_6, 0, x_2); +lean_ctor_set(x_6, 1, x_5); +return x_6; +} +} +static lean_object* _init_l_Lean_instToExprBitVec___lambda__1___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("BitVec", 6); +return x_1; +} +} +static lean_object* _init_l_Lean_instToExprBitVec___lambda__1___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_instToExprBitVec___lambda__1___closed__1; +x_2 = l_Lean_instToExprInt_mkNat___closed__2; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_instToExprBitVec___lambda__1___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_instToExprBitVec___lambda__1___closed__2; +x_3 = l_Lean_Expr_const___override(x_2, x_1); +return x_3; +} +} +LEAN_EXPORT lean_object* l_Lean_instToExprBitVec___lambda__1(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; +x_3 = l_Lean_mkNatLit(x_1); +x_4 = l_Lean_mkNatLit(x_2); +x_5 = l_Lean_instToExprBitVec___lambda__1___closed__3; +x_6 = l_Lean_mkAppB(x_5, x_3, x_4); +return x_6; +} +} +static lean_object* _init_l_Lean_instToExprBitVec___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_instToExprBitVec___lambda__1___closed__1; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_instToExprBitVec___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_instToExprBitVec___closed__1; +x_3 = l_Lean_Expr_const___override(x_2, x_1); +return x_3; +} +} +LEAN_EXPORT lean_object* l_Lean_instToExprBitVec(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; +lean_inc(x_1); +x_2 = lean_alloc_closure((void*)(l_Lean_instToExprBitVec___lambda__1), 2, 1); +lean_closure_set(x_2, 0, x_1); +x_3 = l_Lean_mkNatLit(x_1); +x_4 = l_Lean_instToExprBitVec___closed__2; +x_5 = l_Lean_Expr_app___override(x_4, x_3); +x_6 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_6, 0, x_2); +lean_ctor_set(x_6, 1, x_5); +return x_6; +} +} +static lean_object* _init_l_Lean_instToExprUInt8___lambda__1___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("UInt8", 5); +return x_1; +} +} +static lean_object* _init_l_Lean_instToExprUInt8___lambda__1___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_instToExprUInt8___lambda__1___closed__1; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_instToExprUInt8___lambda__1___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_instToExprUInt8___lambda__1___closed__2; +x_3 = l_Lean_Expr_const___override(x_2, x_1); +return x_3; +} +} +static lean_object* _init_l_Lean_instToExprUInt8___lambda__1___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_instToExprUInt8___lambda__1___closed__1; +x_2 = l_Lean_instToExprInt_mkNat___closed__10; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_instToExprUInt8___lambda__1___closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_instToExprUInt8___lambda__1___closed__4; +x_3 = l_Lean_Expr_const___override(x_2, x_1); +return x_3; +} +} +LEAN_EXPORT lean_object* l_Lean_instToExprUInt8___lambda__1(uint8_t x_1) { +_start: +{ +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; +x_2 = lean_uint8_to_nat(x_1); +x_3 = l_Lean_mkRawNatLit(x_2); +x_4 = l_Lean_instToExprUInt8___lambda__1___closed__5; +lean_inc(x_3); +x_5 = l_Lean_Expr_app___override(x_4, x_3); +x_6 = l_Lean_instToExprInt_mkNat___closed__6; +x_7 = l_Lean_instToExprUInt8___lambda__1___closed__3; +x_8 = l_Lean_mkApp3(x_6, x_7, x_3, x_5); +return x_8; +} +} +static lean_object* _init_l_Lean_instToExprUInt8___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_instToExprUInt8___lambda__1___closed__2; +x_3 = l_Lean_Expr_const___override(x_2, x_1); +return x_3; +} +} +static lean_object* _init_l_Lean_instToExprUInt8___closed__2() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_instToExprUInt8___lambda__1___boxed), 1, 0); +return x_1; +} +} +static lean_object* _init_l_Lean_instToExprUInt8___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_instToExprUInt8___closed__2; +x_2 = l_Lean_instToExprUInt8___closed__1; +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_instToExprUInt8() { +_start: +{ +lean_object* x_1; +x_1 = l_Lean_instToExprUInt8___closed__3; +return x_1; +} +} +LEAN_EXPORT lean_object* l_Lean_instToExprUInt8___lambda__1___boxed(lean_object* x_1) { +_start: +{ +uint8_t x_2; lean_object* x_3; +x_2 = lean_unbox(x_1); +lean_dec(x_1); +x_3 = l_Lean_instToExprUInt8___lambda__1(x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_instToExprUInt16___lambda__1___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("UInt16", 6); +return x_1; +} +} +static lean_object* _init_l_Lean_instToExprUInt16___lambda__1___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_instToExprUInt16___lambda__1___closed__1; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_instToExprUInt16___lambda__1___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_instToExprUInt16___lambda__1___closed__2; +x_3 = l_Lean_Expr_const___override(x_2, x_1); +return x_3; +} +} +static lean_object* _init_l_Lean_instToExprUInt16___lambda__1___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_instToExprUInt16___lambda__1___closed__1; +x_2 = l_Lean_instToExprInt_mkNat___closed__10; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_instToExprUInt16___lambda__1___closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_instToExprUInt16___lambda__1___closed__4; +x_3 = l_Lean_Expr_const___override(x_2, x_1); +return x_3; +} +} +LEAN_EXPORT lean_object* l_Lean_instToExprUInt16___lambda__1(uint16_t x_1) { +_start: +{ +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; +x_2 = lean_uint16_to_nat(x_1); +x_3 = l_Lean_mkRawNatLit(x_2); +x_4 = l_Lean_instToExprUInt16___lambda__1___closed__5; +lean_inc(x_3); +x_5 = l_Lean_Expr_app___override(x_4, x_3); +x_6 = l_Lean_instToExprInt_mkNat___closed__6; +x_7 = l_Lean_instToExprUInt16___lambda__1___closed__3; +x_8 = l_Lean_mkApp3(x_6, x_7, x_3, x_5); +return x_8; +} +} +static lean_object* _init_l_Lean_instToExprUInt16___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_instToExprUInt16___lambda__1___closed__2; +x_3 = l_Lean_Expr_const___override(x_2, x_1); +return x_3; +} +} +static lean_object* _init_l_Lean_instToExprUInt16___closed__2() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_instToExprUInt16___lambda__1___boxed), 1, 0); +return x_1; +} +} +static lean_object* _init_l_Lean_instToExprUInt16___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_instToExprUInt16___closed__2; +x_2 = l_Lean_instToExprUInt16___closed__1; +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_instToExprUInt16() { +_start: +{ +lean_object* x_1; +x_1 = l_Lean_instToExprUInt16___closed__3; +return x_1; +} +} +LEAN_EXPORT lean_object* l_Lean_instToExprUInt16___lambda__1___boxed(lean_object* x_1) { +_start: +{ +uint16_t x_2; lean_object* x_3; +x_2 = lean_unbox(x_1); +lean_dec(x_1); +x_3 = l_Lean_instToExprUInt16___lambda__1(x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_instToExprUInt32___lambda__1___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("UInt32", 6); +return x_1; +} +} +static lean_object* _init_l_Lean_instToExprUInt32___lambda__1___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_instToExprUInt32___lambda__1___closed__1; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_instToExprUInt32___lambda__1___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_instToExprUInt32___lambda__1___closed__2; +x_3 = l_Lean_Expr_const___override(x_2, x_1); +return x_3; +} +} +static lean_object* _init_l_Lean_instToExprUInt32___lambda__1___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_instToExprUInt32___lambda__1___closed__1; +x_2 = l_Lean_instToExprInt_mkNat___closed__10; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_instToExprUInt32___lambda__1___closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_instToExprUInt32___lambda__1___closed__4; +x_3 = l_Lean_Expr_const___override(x_2, x_1); +return x_3; +} +} +LEAN_EXPORT lean_object* l_Lean_instToExprUInt32___lambda__1(uint32_t x_1) { +_start: +{ +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; +x_2 = lean_uint32_to_nat(x_1); +x_3 = l_Lean_mkRawNatLit(x_2); +x_4 = l_Lean_instToExprUInt32___lambda__1___closed__5; +lean_inc(x_3); +x_5 = l_Lean_Expr_app___override(x_4, x_3); +x_6 = l_Lean_instToExprInt_mkNat___closed__6; +x_7 = l_Lean_instToExprUInt32___lambda__1___closed__3; +x_8 = l_Lean_mkApp3(x_6, x_7, x_3, x_5); +return x_8; +} +} +static lean_object* _init_l_Lean_instToExprUInt32___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_instToExprUInt32___lambda__1___closed__2; +x_3 = l_Lean_Expr_const___override(x_2, x_1); +return x_3; +} +} +static lean_object* _init_l_Lean_instToExprUInt32___closed__2() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_instToExprUInt32___lambda__1___boxed), 1, 0); +return x_1; +} +} +static lean_object* _init_l_Lean_instToExprUInt32___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_instToExprUInt32___closed__2; +x_2 = l_Lean_instToExprUInt32___closed__1; +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_instToExprUInt32() { +_start: +{ +lean_object* x_1; +x_1 = l_Lean_instToExprUInt32___closed__3; +return x_1; +} +} +LEAN_EXPORT lean_object* l_Lean_instToExprUInt32___lambda__1___boxed(lean_object* x_1) { +_start: +{ +uint32_t x_2; lean_object* x_3; +x_2 = lean_unbox_uint32(x_1); +lean_dec(x_1); +x_3 = l_Lean_instToExprUInt32___lambda__1(x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_instToExprUInt64___lambda__1___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("UInt64", 6); +return x_1; +} +} +static lean_object* _init_l_Lean_instToExprUInt64___lambda__1___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_instToExprUInt64___lambda__1___closed__1; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_instToExprUInt64___lambda__1___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_instToExprUInt64___lambda__1___closed__2; +x_3 = l_Lean_Expr_const___override(x_2, x_1); +return x_3; +} +} +static lean_object* _init_l_Lean_instToExprUInt64___lambda__1___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_instToExprUInt64___lambda__1___closed__1; +x_2 = l_Lean_instToExprInt_mkNat___closed__10; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_instToExprUInt64___lambda__1___closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_instToExprUInt64___lambda__1___closed__4; +x_3 = l_Lean_Expr_const___override(x_2, x_1); +return x_3; +} +} +LEAN_EXPORT lean_object* l_Lean_instToExprUInt64___lambda__1(uint64_t x_1) { +_start: +{ +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; +x_2 = lean_uint64_to_nat(x_1); +x_3 = l_Lean_mkRawNatLit(x_2); +x_4 = l_Lean_instToExprUInt64___lambda__1___closed__5; +lean_inc(x_3); +x_5 = l_Lean_Expr_app___override(x_4, x_3); +x_6 = l_Lean_instToExprInt_mkNat___closed__6; +x_7 = l_Lean_instToExprUInt64___lambda__1___closed__3; +x_8 = l_Lean_mkApp3(x_6, x_7, x_3, x_5); +return x_8; +} +} +static lean_object* _init_l_Lean_instToExprUInt64___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_instToExprUInt64___lambda__1___closed__2; +x_3 = l_Lean_Expr_const___override(x_2, x_1); +return x_3; +} +} +static lean_object* _init_l_Lean_instToExprUInt64___closed__2() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_instToExprUInt64___lambda__1___boxed), 1, 0); +return x_1; +} +} +static lean_object* _init_l_Lean_instToExprUInt64___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_instToExprUInt64___closed__2; +x_2 = l_Lean_instToExprUInt64___closed__1; +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_instToExprUInt64() { +_start: +{ +lean_object* x_1; +x_1 = l_Lean_instToExprUInt64___closed__3; +return x_1; +} +} +LEAN_EXPORT lean_object* l_Lean_instToExprUInt64___lambda__1___boxed(lean_object* x_1) { +_start: +{ +uint64_t x_2; lean_object* x_3; +x_2 = lean_unbox_uint64(x_1); +lean_dec(x_1); +x_3 = l_Lean_instToExprUInt64___lambda__1(x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_instToExprUSize___lambda__1___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("USize", 5); +return x_1; +} +} +static lean_object* _init_l_Lean_instToExprUSize___lambda__1___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_instToExprUSize___lambda__1___closed__1; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_instToExprUSize___lambda__1___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_instToExprUSize___lambda__1___closed__2; +x_3 = l_Lean_Expr_const___override(x_2, x_1); +return x_3; +} +} +static lean_object* _init_l_Lean_instToExprUSize___lambda__1___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_instToExprUSize___lambda__1___closed__1; +x_2 = l_Lean_instToExprInt_mkNat___closed__10; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_instToExprUSize___lambda__1___closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_instToExprUSize___lambda__1___closed__4; +x_3 = l_Lean_Expr_const___override(x_2, x_1); +return x_3; +} +} +LEAN_EXPORT lean_object* l_Lean_instToExprUSize___lambda__1(size_t x_1) { +_start: +{ +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; +x_2 = lean_usize_to_nat(x_1); +x_3 = l_Lean_mkRawNatLit(x_2); +x_4 = l_Lean_instToExprUSize___lambda__1___closed__5; +lean_inc(x_3); +x_5 = l_Lean_Expr_app___override(x_4, x_3); +x_6 = l_Lean_instToExprInt_mkNat___closed__6; +x_7 = l_Lean_instToExprUSize___lambda__1___closed__3; +x_8 = l_Lean_mkApp3(x_6, x_7, x_3, x_5); +return x_8; +} +} +static lean_object* _init_l_Lean_instToExprUSize___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_instToExprUSize___lambda__1___closed__2; +x_3 = l_Lean_Expr_const___override(x_2, x_1); +return x_3; +} +} +static lean_object* _init_l_Lean_instToExprUSize___closed__2() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_instToExprUSize___lambda__1___boxed), 1, 0); +return x_1; +} +} +static lean_object* _init_l_Lean_instToExprUSize___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_instToExprUSize___closed__2; +x_2 = l_Lean_instToExprUSize___closed__1; +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_instToExprUSize() { +_start: +{ +lean_object* x_1; +x_1 = l_Lean_instToExprUSize___closed__3; +return x_1; +} +} +LEAN_EXPORT lean_object* l_Lean_instToExprUSize___lambda__1___boxed(lean_object* x_1) { +_start: +{ +size_t x_2; lean_object* x_3; +x_2 = lean_unbox_usize(x_1); +lean_dec(x_1); +x_3 = l_Lean_instToExprUSize___lambda__1(x_2); +return x_3; +} +} static lean_object* _init_l_Lean_instToExprBool___lambda__1___closed__1() { _start: { @@ -583,7 +1514,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_instToExprChar___lambda__1___closed__1; -x_2 = l_Lean_instToExprInt___lambda__1___closed__3; +x_2 = l_Lean_instToExprInt_mkNat___closed__2; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } @@ -944,7 +1875,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_ToExpr_0__Lean_Name_toExprAux_mkStr___closed__5; x_2 = l___private_Lean_ToExpr_0__Lean_Name_toExprAux_mkStr___closed__6; -x_3 = lean_unsigned_to_nat(70u); +x_3 = lean_unsigned_to_nat(125u); x_4 = lean_unsigned_to_nat(11u); x_5 = l___private_Lean_ToExpr_0__Lean_Name_toExprAux_mkStr___closed__7; x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); @@ -2163,6 +3094,7 @@ return x_4; } } lean_object* initialize_Lean_Expr(uint8_t builtin, lean_object*); +lean_object* initialize_Init_Data_BitVec_Basic(uint8_t builtin, lean_object*); static bool _G_initialized = false; LEAN_EXPORT lean_object* initialize_Lean_ToExpr(uint8_t builtin, lean_object* w) { lean_object * res; @@ -2171,6 +3103,9 @@ _G_initialized = true; res = initialize_Lean_Expr(builtin, lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +res = initialize_Init_Data_BitVec_Basic(builtin, lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); l_Lean_instToExprNat___closed__1 = _init_l_Lean_instToExprNat___closed__1(); lean_mark_persistent(l_Lean_instToExprNat___closed__1); l_Lean_instToExprNat___closed__2 = _init_l_Lean_instToExprNat___closed__2(); @@ -2183,6 +3118,30 @@ l_Lean_instToExprNat___closed__5 = _init_l_Lean_instToExprNat___closed__5(); lean_mark_persistent(l_Lean_instToExprNat___closed__5); l_Lean_instToExprNat = _init_l_Lean_instToExprNat(); lean_mark_persistent(l_Lean_instToExprNat); +l_Lean_instToExprInt_mkNat___closed__1 = _init_l_Lean_instToExprInt_mkNat___closed__1(); +lean_mark_persistent(l_Lean_instToExprInt_mkNat___closed__1); +l_Lean_instToExprInt_mkNat___closed__2 = _init_l_Lean_instToExprInt_mkNat___closed__2(); +lean_mark_persistent(l_Lean_instToExprInt_mkNat___closed__2); +l_Lean_instToExprInt_mkNat___closed__3 = _init_l_Lean_instToExprInt_mkNat___closed__3(); +lean_mark_persistent(l_Lean_instToExprInt_mkNat___closed__3); +l_Lean_instToExprInt_mkNat___closed__4 = _init_l_Lean_instToExprInt_mkNat___closed__4(); +lean_mark_persistent(l_Lean_instToExprInt_mkNat___closed__4); +l_Lean_instToExprInt_mkNat___closed__5 = _init_l_Lean_instToExprInt_mkNat___closed__5(); +lean_mark_persistent(l_Lean_instToExprInt_mkNat___closed__5); +l_Lean_instToExprInt_mkNat___closed__6 = _init_l_Lean_instToExprInt_mkNat___closed__6(); +lean_mark_persistent(l_Lean_instToExprInt_mkNat___closed__6); +l_Lean_instToExprInt_mkNat___closed__7 = _init_l_Lean_instToExprInt_mkNat___closed__7(); +lean_mark_persistent(l_Lean_instToExprInt_mkNat___closed__7); +l_Lean_instToExprInt_mkNat___closed__8 = _init_l_Lean_instToExprInt_mkNat___closed__8(); +lean_mark_persistent(l_Lean_instToExprInt_mkNat___closed__8); +l_Lean_instToExprInt_mkNat___closed__9 = _init_l_Lean_instToExprInt_mkNat___closed__9(); +lean_mark_persistent(l_Lean_instToExprInt_mkNat___closed__9); +l_Lean_instToExprInt_mkNat___closed__10 = _init_l_Lean_instToExprInt_mkNat___closed__10(); +lean_mark_persistent(l_Lean_instToExprInt_mkNat___closed__10); +l_Lean_instToExprInt_mkNat___closed__11 = _init_l_Lean_instToExprInt_mkNat___closed__11(); +lean_mark_persistent(l_Lean_instToExprInt_mkNat___closed__11); +l_Lean_instToExprInt_mkNat___closed__12 = _init_l_Lean_instToExprInt_mkNat___closed__12(); +lean_mark_persistent(l_Lean_instToExprInt_mkNat___closed__12); l_Lean_instToExprInt___lambda__1___closed__1 = _init_l_Lean_instToExprInt___lambda__1___closed__1(); lean_mark_persistent(l_Lean_instToExprInt___lambda__1___closed__1); l_Lean_instToExprInt___lambda__1___closed__2 = _init_l_Lean_instToExprInt___lambda__1___closed__2(); @@ -2205,10 +3164,120 @@ l_Lean_instToExprInt___closed__2 = _init_l_Lean_instToExprInt___closed__2(); lean_mark_persistent(l_Lean_instToExprInt___closed__2); l_Lean_instToExprInt___closed__3 = _init_l_Lean_instToExprInt___closed__3(); lean_mark_persistent(l_Lean_instToExprInt___closed__3); -l_Lean_instToExprInt___closed__4 = _init_l_Lean_instToExprInt___closed__4(); -lean_mark_persistent(l_Lean_instToExprInt___closed__4); l_Lean_instToExprInt = _init_l_Lean_instToExprInt(); lean_mark_persistent(l_Lean_instToExprInt); +l_Lean_instToExprFin___lambda__1___closed__1 = _init_l_Lean_instToExprFin___lambda__1___closed__1(); +lean_mark_persistent(l_Lean_instToExprFin___lambda__1___closed__1); +l_Lean_instToExprFin___lambda__1___closed__2 = _init_l_Lean_instToExprFin___lambda__1___closed__2(); +lean_mark_persistent(l_Lean_instToExprFin___lambda__1___closed__2); +l_Lean_instToExprFin___lambda__1___closed__3 = _init_l_Lean_instToExprFin___lambda__1___closed__3(); +lean_mark_persistent(l_Lean_instToExprFin___lambda__1___closed__3); +l_Lean_instToExprFin___lambda__1___closed__4 = _init_l_Lean_instToExprFin___lambda__1___closed__4(); +lean_mark_persistent(l_Lean_instToExprFin___lambda__1___closed__4); +l_Lean_instToExprFin___lambda__1___closed__5 = _init_l_Lean_instToExprFin___lambda__1___closed__5(); +lean_mark_persistent(l_Lean_instToExprFin___lambda__1___closed__5); +l_Lean_instToExprFin___closed__1 = _init_l_Lean_instToExprFin___closed__1(); +lean_mark_persistent(l_Lean_instToExprFin___closed__1); +l_Lean_instToExprBitVec___lambda__1___closed__1 = _init_l_Lean_instToExprBitVec___lambda__1___closed__1(); +lean_mark_persistent(l_Lean_instToExprBitVec___lambda__1___closed__1); +l_Lean_instToExprBitVec___lambda__1___closed__2 = _init_l_Lean_instToExprBitVec___lambda__1___closed__2(); +lean_mark_persistent(l_Lean_instToExprBitVec___lambda__1___closed__2); +l_Lean_instToExprBitVec___lambda__1___closed__3 = _init_l_Lean_instToExprBitVec___lambda__1___closed__3(); +lean_mark_persistent(l_Lean_instToExprBitVec___lambda__1___closed__3); +l_Lean_instToExprBitVec___closed__1 = _init_l_Lean_instToExprBitVec___closed__1(); +lean_mark_persistent(l_Lean_instToExprBitVec___closed__1); +l_Lean_instToExprBitVec___closed__2 = _init_l_Lean_instToExprBitVec___closed__2(); +lean_mark_persistent(l_Lean_instToExprBitVec___closed__2); +l_Lean_instToExprUInt8___lambda__1___closed__1 = _init_l_Lean_instToExprUInt8___lambda__1___closed__1(); +lean_mark_persistent(l_Lean_instToExprUInt8___lambda__1___closed__1); +l_Lean_instToExprUInt8___lambda__1___closed__2 = _init_l_Lean_instToExprUInt8___lambda__1___closed__2(); +lean_mark_persistent(l_Lean_instToExprUInt8___lambda__1___closed__2); +l_Lean_instToExprUInt8___lambda__1___closed__3 = _init_l_Lean_instToExprUInt8___lambda__1___closed__3(); +lean_mark_persistent(l_Lean_instToExprUInt8___lambda__1___closed__3); +l_Lean_instToExprUInt8___lambda__1___closed__4 = _init_l_Lean_instToExprUInt8___lambda__1___closed__4(); +lean_mark_persistent(l_Lean_instToExprUInt8___lambda__1___closed__4); +l_Lean_instToExprUInt8___lambda__1___closed__5 = _init_l_Lean_instToExprUInt8___lambda__1___closed__5(); +lean_mark_persistent(l_Lean_instToExprUInt8___lambda__1___closed__5); +l_Lean_instToExprUInt8___closed__1 = _init_l_Lean_instToExprUInt8___closed__1(); +lean_mark_persistent(l_Lean_instToExprUInt8___closed__1); +l_Lean_instToExprUInt8___closed__2 = _init_l_Lean_instToExprUInt8___closed__2(); +lean_mark_persistent(l_Lean_instToExprUInt8___closed__2); +l_Lean_instToExprUInt8___closed__3 = _init_l_Lean_instToExprUInt8___closed__3(); +lean_mark_persistent(l_Lean_instToExprUInt8___closed__3); +l_Lean_instToExprUInt8 = _init_l_Lean_instToExprUInt8(); +lean_mark_persistent(l_Lean_instToExprUInt8); +l_Lean_instToExprUInt16___lambda__1___closed__1 = _init_l_Lean_instToExprUInt16___lambda__1___closed__1(); +lean_mark_persistent(l_Lean_instToExprUInt16___lambda__1___closed__1); +l_Lean_instToExprUInt16___lambda__1___closed__2 = _init_l_Lean_instToExprUInt16___lambda__1___closed__2(); +lean_mark_persistent(l_Lean_instToExprUInt16___lambda__1___closed__2); +l_Lean_instToExprUInt16___lambda__1___closed__3 = _init_l_Lean_instToExprUInt16___lambda__1___closed__3(); +lean_mark_persistent(l_Lean_instToExprUInt16___lambda__1___closed__3); +l_Lean_instToExprUInt16___lambda__1___closed__4 = _init_l_Lean_instToExprUInt16___lambda__1___closed__4(); +lean_mark_persistent(l_Lean_instToExprUInt16___lambda__1___closed__4); +l_Lean_instToExprUInt16___lambda__1___closed__5 = _init_l_Lean_instToExprUInt16___lambda__1___closed__5(); +lean_mark_persistent(l_Lean_instToExprUInt16___lambda__1___closed__5); +l_Lean_instToExprUInt16___closed__1 = _init_l_Lean_instToExprUInt16___closed__1(); +lean_mark_persistent(l_Lean_instToExprUInt16___closed__1); +l_Lean_instToExprUInt16___closed__2 = _init_l_Lean_instToExprUInt16___closed__2(); +lean_mark_persistent(l_Lean_instToExprUInt16___closed__2); +l_Lean_instToExprUInt16___closed__3 = _init_l_Lean_instToExprUInt16___closed__3(); +lean_mark_persistent(l_Lean_instToExprUInt16___closed__3); +l_Lean_instToExprUInt16 = _init_l_Lean_instToExprUInt16(); +lean_mark_persistent(l_Lean_instToExprUInt16); +l_Lean_instToExprUInt32___lambda__1___closed__1 = _init_l_Lean_instToExprUInt32___lambda__1___closed__1(); +lean_mark_persistent(l_Lean_instToExprUInt32___lambda__1___closed__1); +l_Lean_instToExprUInt32___lambda__1___closed__2 = _init_l_Lean_instToExprUInt32___lambda__1___closed__2(); +lean_mark_persistent(l_Lean_instToExprUInt32___lambda__1___closed__2); +l_Lean_instToExprUInt32___lambda__1___closed__3 = _init_l_Lean_instToExprUInt32___lambda__1___closed__3(); +lean_mark_persistent(l_Lean_instToExprUInt32___lambda__1___closed__3); +l_Lean_instToExprUInt32___lambda__1___closed__4 = _init_l_Lean_instToExprUInt32___lambda__1___closed__4(); +lean_mark_persistent(l_Lean_instToExprUInt32___lambda__1___closed__4); +l_Lean_instToExprUInt32___lambda__1___closed__5 = _init_l_Lean_instToExprUInt32___lambda__1___closed__5(); +lean_mark_persistent(l_Lean_instToExprUInt32___lambda__1___closed__5); +l_Lean_instToExprUInt32___closed__1 = _init_l_Lean_instToExprUInt32___closed__1(); +lean_mark_persistent(l_Lean_instToExprUInt32___closed__1); +l_Lean_instToExprUInt32___closed__2 = _init_l_Lean_instToExprUInt32___closed__2(); +lean_mark_persistent(l_Lean_instToExprUInt32___closed__2); +l_Lean_instToExprUInt32___closed__3 = _init_l_Lean_instToExprUInt32___closed__3(); +lean_mark_persistent(l_Lean_instToExprUInt32___closed__3); +l_Lean_instToExprUInt32 = _init_l_Lean_instToExprUInt32(); +lean_mark_persistent(l_Lean_instToExprUInt32); +l_Lean_instToExprUInt64___lambda__1___closed__1 = _init_l_Lean_instToExprUInt64___lambda__1___closed__1(); +lean_mark_persistent(l_Lean_instToExprUInt64___lambda__1___closed__1); +l_Lean_instToExprUInt64___lambda__1___closed__2 = _init_l_Lean_instToExprUInt64___lambda__1___closed__2(); +lean_mark_persistent(l_Lean_instToExprUInt64___lambda__1___closed__2); +l_Lean_instToExprUInt64___lambda__1___closed__3 = _init_l_Lean_instToExprUInt64___lambda__1___closed__3(); +lean_mark_persistent(l_Lean_instToExprUInt64___lambda__1___closed__3); +l_Lean_instToExprUInt64___lambda__1___closed__4 = _init_l_Lean_instToExprUInt64___lambda__1___closed__4(); +lean_mark_persistent(l_Lean_instToExprUInt64___lambda__1___closed__4); +l_Lean_instToExprUInt64___lambda__1___closed__5 = _init_l_Lean_instToExprUInt64___lambda__1___closed__5(); +lean_mark_persistent(l_Lean_instToExprUInt64___lambda__1___closed__5); +l_Lean_instToExprUInt64___closed__1 = _init_l_Lean_instToExprUInt64___closed__1(); +lean_mark_persistent(l_Lean_instToExprUInt64___closed__1); +l_Lean_instToExprUInt64___closed__2 = _init_l_Lean_instToExprUInt64___closed__2(); +lean_mark_persistent(l_Lean_instToExprUInt64___closed__2); +l_Lean_instToExprUInt64___closed__3 = _init_l_Lean_instToExprUInt64___closed__3(); +lean_mark_persistent(l_Lean_instToExprUInt64___closed__3); +l_Lean_instToExprUInt64 = _init_l_Lean_instToExprUInt64(); +lean_mark_persistent(l_Lean_instToExprUInt64); +l_Lean_instToExprUSize___lambda__1___closed__1 = _init_l_Lean_instToExprUSize___lambda__1___closed__1(); +lean_mark_persistent(l_Lean_instToExprUSize___lambda__1___closed__1); +l_Lean_instToExprUSize___lambda__1___closed__2 = _init_l_Lean_instToExprUSize___lambda__1___closed__2(); +lean_mark_persistent(l_Lean_instToExprUSize___lambda__1___closed__2); +l_Lean_instToExprUSize___lambda__1___closed__3 = _init_l_Lean_instToExprUSize___lambda__1___closed__3(); +lean_mark_persistent(l_Lean_instToExprUSize___lambda__1___closed__3); +l_Lean_instToExprUSize___lambda__1___closed__4 = _init_l_Lean_instToExprUSize___lambda__1___closed__4(); +lean_mark_persistent(l_Lean_instToExprUSize___lambda__1___closed__4); +l_Lean_instToExprUSize___lambda__1___closed__5 = _init_l_Lean_instToExprUSize___lambda__1___closed__5(); +lean_mark_persistent(l_Lean_instToExprUSize___lambda__1___closed__5); +l_Lean_instToExprUSize___closed__1 = _init_l_Lean_instToExprUSize___closed__1(); +lean_mark_persistent(l_Lean_instToExprUSize___closed__1); +l_Lean_instToExprUSize___closed__2 = _init_l_Lean_instToExprUSize___closed__2(); +lean_mark_persistent(l_Lean_instToExprUSize___closed__2); +l_Lean_instToExprUSize___closed__3 = _init_l_Lean_instToExprUSize___closed__3(); +lean_mark_persistent(l_Lean_instToExprUSize___closed__3); +l_Lean_instToExprUSize = _init_l_Lean_instToExprUSize(); +lean_mark_persistent(l_Lean_instToExprUSize); l_Lean_instToExprBool___lambda__1___closed__1 = _init_l_Lean_instToExprBool___lambda__1___closed__1(); lean_mark_persistent(l_Lean_instToExprBool___lambda__1___closed__1); l_Lean_instToExprBool___lambda__1___closed__2 = _init_l_Lean_instToExprBool___lambda__1___closed__2(); diff --git a/stage0/stdlib/Lean/Util.c b/stage0/stdlib/Lean/Util.c index 3809c6abe1..90e77b3bd2 100644 --- a/stage0/stdlib/Lean/Util.c +++ b/stage0/stdlib/Lean/Util.c @@ -1,6 +1,6 @@ // Lean compiler output // Module: Lean.Util -// Imports: Lean.Util.CollectFVars Lean.Util.CollectLevelParams Lean.Util.CollectMVars Lean.Util.FindMVar Lean.Util.FindLevelMVar Lean.Util.MonadCache Lean.Util.PPExt Lean.Util.Path Lean.Util.Profile Lean.Util.RecDepth Lean.Util.ShareCommon Lean.Util.Sorry Lean.Util.Trace Lean.Util.FindExpr Lean.Util.ReplaceExpr Lean.Util.ForEachExpr Lean.Util.ForEachExprWhere Lean.Util.ReplaceLevel Lean.Util.FoldConsts Lean.Util.SCC Lean.Util.TestExtern Lean.Util.OccursCheck Lean.Util.HasConstCache Lean.Util.FileSetupInfo +// Imports: Lean.Util.CollectFVars Lean.Util.CollectLevelParams Lean.Util.CollectMVars Lean.Util.FindMVar Lean.Util.FindLevelMVar Lean.Util.MonadCache Lean.Util.PPExt Lean.Util.Path Lean.Util.Profile Lean.Util.RecDepth Lean.Util.ShareCommon Lean.Util.Sorry Lean.Util.Trace Lean.Util.FindExpr Lean.Util.ReplaceExpr Lean.Util.ForEachExpr Lean.Util.ForEachExprWhere Lean.Util.ReplaceLevel Lean.Util.FoldConsts Lean.Util.SCC Lean.Util.TestExtern Lean.Util.OccursCheck Lean.Util.HasConstCache Lean.Util.FileSetupInfo Lean.Util.Heartbeats #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -37,6 +37,7 @@ lean_object* initialize_Lean_Util_TestExtern(uint8_t builtin, lean_object*); lean_object* initialize_Lean_Util_OccursCheck(uint8_t builtin, lean_object*); lean_object* initialize_Lean_Util_HasConstCache(uint8_t builtin, lean_object*); lean_object* initialize_Lean_Util_FileSetupInfo(uint8_t builtin, lean_object*); +lean_object* initialize_Lean_Util_Heartbeats(uint8_t builtin, lean_object*); static bool _G_initialized = false; LEAN_EXPORT lean_object* initialize_Lean_Util(uint8_t builtin, lean_object* w) { lean_object * res; @@ -114,6 +115,9 @@ lean_dec_ref(res); res = initialize_Lean_Util_FileSetupInfo(builtin, lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +res = initialize_Lean_Util_Heartbeats(builtin, lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); return lean_io_result_mk_ok(lean_box(0)); } #ifdef __cplusplus diff --git a/stage0/stdlib/Lean/Util/Heartbeats.c b/stage0/stdlib/Lean/Util/Heartbeats.c new file mode 100644 index 0000000000..99b04d464d --- /dev/null +++ b/stage0/stdlib/Lean/Util/Heartbeats.c @@ -0,0 +1,436 @@ +// Lean compiler output +// Module: Lean.Util.Heartbeats +// Imports: Lean.CoreM +#include +#if defined(__clang__) +#pragma clang diagnostic ignored "-Wunused-parameter" +#pragma clang diagnostic ignored "-Wunused-label" +#elif defined(__GNUC__) && !defined(__CLANG__) +#pragma GCC diagnostic ignored "-Wunused-parameter" +#pragma GCC diagnostic ignored "-Wunused-label" +#pragma GCC diagnostic ignored "-Wunused-but-set-variable" +#endif +#ifdef __cplusplus +extern "C" { +#endif +lean_object* l_IO_getNumHeartbeats___boxed(lean_object*); +lean_object* l_Lean_Name_toString(lean_object*, uint8_t); +lean_object* lean_io_get_num_heartbeats(lean_object*); +LEAN_EXPORT lean_object* l_Lean_getRemainingHeartbeats___boxed(lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_withHeartbeats___rarg___closed__1; +lean_object* lean_nat_div(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_reportOutOfHeartbeats___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withHeartbeats___rarg___lambda__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_reportOutOfHeartbeats___closed__2; +LEAN_EXPORT lean_object* l_Lean_heartbeatsPercent(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_getRemainingHeartbeats(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_reportOutOfHeartbeats(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_getInitHeartbeats(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withHeartbeats(lean_object*, lean_object*); +static lean_object* l_Lean_reportOutOfHeartbeats___closed__1; +LEAN_EXPORT lean_object* l_Lean_withHeartbeats___rarg___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_getMaxHeartbeats___boxed(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_getInitHeartbeats___boxed(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withHeartbeats___rarg___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withHeartbeats___rarg___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_heartbeatsPercent___boxed(lean_object*, lean_object*, lean_object*); +lean_object* lean_nat_sub(lean_object*, lean_object*); +lean_object* lean_nat_mul(lean_object*, lean_object*); +lean_object* l_Lean_logAt___at_Lean_addDecl___spec__6(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*); +lean_object* lean_string_append(lean_object*, lean_object*); +uint8_t lean_nat_dec_le(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withHeartbeats___rarg(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_getMaxHeartbeats(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withHeartbeats___rarg___lambda__1(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; lean_object* x_7; lean_object* x_8; lean_object* x_9; +x_5 = lean_ctor_get(x_1, 0); +lean_inc(x_5); +lean_dec(x_1); +x_6 = lean_ctor_get(x_5, 1); +lean_inc(x_6); +lean_dec(x_5); +x_7 = lean_nat_sub(x_4, x_2); +x_8 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_8, 0, x_3); +lean_ctor_set(x_8, 1, x_7); +x_9 = lean_apply_2(x_6, lean_box(0), x_8); +return x_9; +} +} +LEAN_EXPORT lean_object* l_Lean_withHeartbeats___rarg___lambda__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +_start: +{ +lean_object* x_6; lean_object* x_7; +x_6 = lean_alloc_closure((void*)(l_Lean_withHeartbeats___rarg___lambda__1___boxed), 4, 3); +lean_closure_set(x_6, 0, x_1); +lean_closure_set(x_6, 1, x_2); +lean_closure_set(x_6, 2, x_5); +x_7 = lean_apply_4(x_3, lean_box(0), lean_box(0), x_4, x_6); +return x_7; +} +} +LEAN_EXPORT lean_object* l_Lean_withHeartbeats___rarg___lambda__3(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +_start: +{ +lean_object* x_6; lean_object* x_7; +lean_inc(x_2); +x_6 = lean_alloc_closure((void*)(l_Lean_withHeartbeats___rarg___lambda__2), 5, 4); +lean_closure_set(x_6, 0, x_1); +lean_closure_set(x_6, 1, x_5); +lean_closure_set(x_6, 2, x_2); +lean_closure_set(x_6, 3, x_3); +x_7 = lean_apply_4(x_2, lean_box(0), lean_box(0), x_4, x_6); +return x_7; +} +} +static lean_object* _init_l_Lean_withHeartbeats___rarg___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_IO_getNumHeartbeats___boxed), 1, 0); +return x_1; +} +} +LEAN_EXPORT lean_object* l_Lean_withHeartbeats___rarg(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; +x_4 = lean_ctor_get(x_1, 1); +lean_inc(x_4); +x_5 = l_Lean_withHeartbeats___rarg___closed__1; +x_6 = lean_apply_2(x_2, lean_box(0), x_5); +lean_inc(x_6); +lean_inc(x_4); +x_7 = lean_alloc_closure((void*)(l_Lean_withHeartbeats___rarg___lambda__3), 5, 4); +lean_closure_set(x_7, 0, x_1); +lean_closure_set(x_7, 1, x_4); +lean_closure_set(x_7, 2, x_6); +lean_closure_set(x_7, 3, x_3); +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_withHeartbeats(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; +x_3 = lean_alloc_closure((void*)(l_Lean_withHeartbeats___rarg), 3, 0); +return x_3; +} +} +LEAN_EXPORT lean_object* l_Lean_withHeartbeats___rarg___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_withHeartbeats___rarg___lambda__1(x_1, x_2, x_3, x_4); +lean_dec(x_4); +lean_dec(x_2); +return x_5; +} +} +LEAN_EXPORT lean_object* l_Lean_getMaxHeartbeats(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, 9); +lean_inc(x_4); +x_5 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_5, 0, x_4); +lean_ctor_set(x_5, 1, x_3); +return x_5; +} +} +LEAN_EXPORT lean_object* l_Lean_getMaxHeartbeats___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +lean_object* x_4; +x_4 = l_Lean_getMaxHeartbeats(x_1, x_2, x_3); +lean_dec(x_2); +lean_dec(x_1); +return x_4; +} +} +LEAN_EXPORT lean_object* l_Lean_getInitHeartbeats(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, 8); +lean_inc(x_4); +x_5 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_5, 0, x_4); +lean_ctor_set(x_5, 1, x_3); +return x_5; +} +} +LEAN_EXPORT lean_object* l_Lean_getInitHeartbeats___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +lean_object* x_4; +x_4 = l_Lean_getInitHeartbeats(x_1, x_2, x_3); +lean_dec(x_2); +lean_dec(x_1); +return x_4; +} +} +LEAN_EXPORT lean_object* l_Lean_getRemainingHeartbeats(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; uint8_t x_11; +x_4 = l_Lean_getMaxHeartbeats(x_1, x_2, x_3); +x_5 = lean_ctor_get(x_4, 0); +lean_inc(x_5); +x_6 = lean_ctor_get(x_4, 1); +lean_inc(x_6); +lean_dec(x_4); +x_7 = lean_io_get_num_heartbeats(x_6); +x_8 = lean_ctor_get(x_7, 0); +lean_inc(x_8); +x_9 = lean_ctor_get(x_7, 1); +lean_inc(x_9); +lean_dec(x_7); +x_10 = l_Lean_getInitHeartbeats(x_1, x_2, x_9); +x_11 = !lean_is_exclusive(x_10); +if (x_11 == 0) +{ +lean_object* x_12; lean_object* x_13; lean_object* x_14; +x_12 = lean_ctor_get(x_10, 0); +x_13 = lean_nat_sub(x_8, x_12); +lean_dec(x_12); +lean_dec(x_8); +x_14 = lean_nat_sub(x_5, x_13); +lean_dec(x_13); +lean_dec(x_5); +lean_ctor_set(x_10, 0, x_14); +return x_10; +} +else +{ +lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; +x_15 = lean_ctor_get(x_10, 0); +x_16 = lean_ctor_get(x_10, 1); +lean_inc(x_16); +lean_inc(x_15); +lean_dec(x_10); +x_17 = lean_nat_sub(x_8, x_15); +lean_dec(x_15); +lean_dec(x_8); +x_18 = lean_nat_sub(x_5, x_17); +lean_dec(x_17); +lean_dec(x_5); +x_19 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_19, 0, x_18); +lean_ctor_set(x_19, 1, x_16); +return x_19; +} +} +} +LEAN_EXPORT lean_object* l_Lean_getRemainingHeartbeats___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +lean_object* x_4; +x_4 = l_Lean_getRemainingHeartbeats(x_1, x_2, x_3); +lean_dec(x_2); +lean_dec(x_1); +return x_4; +} +} +LEAN_EXPORT lean_object* l_Lean_heartbeatsPercent(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; uint8_t x_11; +x_4 = lean_io_get_num_heartbeats(x_3); +x_5 = lean_ctor_get(x_4, 0); +lean_inc(x_5); +x_6 = lean_ctor_get(x_4, 1); +lean_inc(x_6); +lean_dec(x_4); +x_7 = l_Lean_getInitHeartbeats(x_1, x_2, x_6); +x_8 = lean_ctor_get(x_7, 0); +lean_inc(x_8); +x_9 = lean_ctor_get(x_7, 1); +lean_inc(x_9); +lean_dec(x_7); +x_10 = l_Lean_getMaxHeartbeats(x_1, x_2, x_9); +x_11 = !lean_is_exclusive(x_10); +if (x_11 == 0) +{ +lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; +x_12 = lean_ctor_get(x_10, 0); +x_13 = lean_nat_sub(x_5, x_8); +lean_dec(x_8); +lean_dec(x_5); +x_14 = lean_unsigned_to_nat(100u); +x_15 = lean_nat_mul(x_13, x_14); +lean_dec(x_13); +x_16 = lean_nat_div(x_15, x_12); +lean_dec(x_12); +lean_dec(x_15); +lean_ctor_set(x_10, 0, x_16); +return x_10; +} +else +{ +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_17 = lean_ctor_get(x_10, 0); +x_18 = lean_ctor_get(x_10, 1); +lean_inc(x_18); +lean_inc(x_17); +lean_dec(x_10); +x_19 = lean_nat_sub(x_5, x_8); +lean_dec(x_8); +lean_dec(x_5); +x_20 = lean_unsigned_to_nat(100u); +x_21 = lean_nat_mul(x_19, x_20); +lean_dec(x_19); +x_22 = lean_nat_div(x_21, x_17); +lean_dec(x_17); +lean_dec(x_21); +x_23 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_23, 0, x_22); +lean_ctor_set(x_23, 1, x_18); +return x_23; +} +} +} +LEAN_EXPORT lean_object* l_Lean_heartbeatsPercent___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +lean_object* x_4; +x_4 = l_Lean_heartbeatsPercent(x_1, x_2, x_3); +lean_dec(x_2); +lean_dec(x_1); +return x_4; +} +} +static lean_object* _init_l_Lean_reportOutOfHeartbeats___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("`", 1); +return x_1; +} +} +static lean_object* _init_l_Lean_reportOutOfHeartbeats___closed__2() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("` stopped because it was running out of time.\nYou may get better results using `set_option maxHeartbeats 0`.", 108); +return x_1; +} +} +LEAN_EXPORT lean_object* l_Lean_reportOutOfHeartbeats(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; +x_7 = l_Lean_heartbeatsPercent(x_4, x_5, x_6); +x_8 = !lean_is_exclusive(x_7); +if (x_8 == 0) +{ +lean_object* x_9; lean_object* x_10; uint8_t x_11; +x_9 = lean_ctor_get(x_7, 0); +x_10 = lean_ctor_get(x_7, 1); +x_11 = lean_nat_dec_le(x_3, x_9); +lean_dec(x_9); +if (x_11 == 0) +{ +lean_object* x_12; +lean_dec(x_1); +x_12 = lean_box(0); +lean_ctor_set(x_7, 0, x_12); +return x_7; +} +else +{ +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; uint8_t x_21; lean_object* x_22; +lean_free_object(x_7); +x_13 = 1; +x_14 = l_Lean_Name_toString(x_1, x_13); +x_15 = l_Lean_reportOutOfHeartbeats___closed__1; +x_16 = lean_string_append(x_15, x_14); +lean_dec(x_14); +x_17 = l_Lean_reportOutOfHeartbeats___closed__2; +x_18 = lean_string_append(x_16, x_17); +x_19 = lean_alloc_ctor(3, 1, 0); +lean_ctor_set(x_19, 0, x_18); +x_20 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_20, 0, x_19); +x_21 = 0; +x_22 = l_Lean_logAt___at_Lean_addDecl___spec__6(x_2, x_20, x_21, x_4, x_5, x_10); +return x_22; +} +} +else +{ +lean_object* x_23; lean_object* x_24; uint8_t x_25; +x_23 = lean_ctor_get(x_7, 0); +x_24 = lean_ctor_get(x_7, 1); +lean_inc(x_24); +lean_inc(x_23); +lean_dec(x_7); +x_25 = lean_nat_dec_le(x_3, x_23); +lean_dec(x_23); +if (x_25 == 0) +{ +lean_object* x_26; lean_object* x_27; +lean_dec(x_1); +x_26 = lean_box(0); +x_27 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_27, 0, x_26); +lean_ctor_set(x_27, 1, x_24); +return x_27; +} +else +{ +uint8_t 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; uint8_t x_36; lean_object* x_37; +x_28 = 1; +x_29 = l_Lean_Name_toString(x_1, x_28); +x_30 = l_Lean_reportOutOfHeartbeats___closed__1; +x_31 = lean_string_append(x_30, x_29); +lean_dec(x_29); +x_32 = l_Lean_reportOutOfHeartbeats___closed__2; +x_33 = lean_string_append(x_31, x_32); +x_34 = lean_alloc_ctor(3, 1, 0); +lean_ctor_set(x_34, 0, x_33); +x_35 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_35, 0, x_34); +x_36 = 0; +x_37 = l_Lean_logAt___at_Lean_addDecl___spec__6(x_2, x_35, x_36, x_4, x_5, x_24); +return x_37; +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_reportOutOfHeartbeats___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_Lean_reportOutOfHeartbeats(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_object* initialize_Lean_CoreM(uint8_t builtin, lean_object*); +static bool _G_initialized = false; +LEAN_EXPORT lean_object* initialize_Lean_Util_Heartbeats(uint8_t builtin, lean_object* w) { +lean_object * res; +if (_G_initialized) return lean_io_result_mk_ok(lean_box(0)); +_G_initialized = true; +res = initialize_Lean_CoreM(builtin, lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +l_Lean_withHeartbeats___rarg___closed__1 = _init_l_Lean_withHeartbeats___rarg___closed__1(); +lean_mark_persistent(l_Lean_withHeartbeats___rarg___closed__1); +l_Lean_reportOutOfHeartbeats___closed__1 = _init_l_Lean_reportOutOfHeartbeats___closed__1(); +lean_mark_persistent(l_Lean_reportOutOfHeartbeats___closed__1); +l_Lean_reportOutOfHeartbeats___closed__2 = _init_l_Lean_reportOutOfHeartbeats___closed__2(); +lean_mark_persistent(l_Lean_reportOutOfHeartbeats___closed__2); +return lean_io_result_mk_ok(lean_box(0)); +} +#ifdef __cplusplus +} +#endif